diff --git a/nlp/4_0_Intro_NLP.ipynb b/nlp/4_0_Intro_NLP.ipynb new file mode 100644 index 0000000..8736193 --- /dev/null +++ b/nlp/4_0_Intro_NLP.ipynb @@ -0,0 +1,92 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](images/EscUpmPolit_p.gif \"UPM\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Course Notes for Learning Intelligent Systems" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Introduction to Natural Language Processing\n", + " \n", + "In this lab session, we are going to learn how to analyze texts and apply machine learning techniques on textual data sources.\n", + "\n", + "# Objectives\n", + "\n", + "The main objectives of this session are:\n", + "* Learn how to obtain lexical, syntactic and semantic features from texts\n", + "* Learn to use some libraries, such as NLTK, Scikit-learn and gensim for NLP" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Table of Contents" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. [Home](4_0_Intro_NLP.ipynb)\n", + "1. [Lexical processing](4_1_Lexical_Processing.ipynb)\n", + "1. [Syntactic processing](4_2_Syntactic_Processing.ipynb)\n", + "2. [Vector representation](4_3_Vector_Representation.ipynb)\n", + "3. [Classification](4_4_Classification.ipynb)\n", + "1. [Semantic models](4_5_Semantic_Models.ipynb)\n", + "1. [Combining features](4_6_Combining_Features.ipynb)\n", + "5. [Exercises](4_7_Exercises.ipynb)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Licence\n", + "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "\n", + "© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/nlp/4_1_Lexical_Processing.ipynb b/nlp/4_1_Lexical_Processing.ipynb new file mode 100644 index 0000000..ae2c889 --- /dev/null +++ b/nlp/4_1_Lexical_Processing.ipynb @@ -0,0 +1,644 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](images/EscUpmPolit_p.gif \"UPM\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Course Notes for Learning Intelligent Systems" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Lexical Processing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Table of Contents\n", + "* [Objectives](#Objectives)\n", + "* [Tools](#Tools)\n", + "* [Cleansing](#Cleansing)\n", + "* [Tokenization](#Tokenization)\n", + "* [Sentence Splitter](#Sentence-Splitter)\n", + "* [Word Splitter](#Word-Splitter)\n", + "* [Stemming and Lemmatization](#Stemming-and-Lemmatization)\n", + "* [Stop word removal](#Stop-word-removal)\n", + "* [Punctuation removal](#Punctuation-removal)\n", + "* [Rare words and spelling](#Rare-words-and-spelling)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Objectives" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this session we are going to learn how to preprocess texts, also known as *text wrangling*. This task involves data munging, text cleansing, specific preprocessing, tokenization, stemming or lemmatization and stop word removal.\n", + "\n", + "The main objectives of this session are:\n", + "* Learn how to preprocess text sources\n", + "* Learn to use some of the most popular NLP libraries\n", + "\n", + "We are going to use as an example part of a computer review included in [Liu's Product Review of IJCA 2015](https://www.cs.uic.edu/~liub/FBS/sentiment-analysis.html#datasets) and a tweet from the [Semeval 2013 Task 2 dataset](https://www.cs.york.ac.uk/semeval-2013/task2/data/uploads/datasets/readme.txt), slightly modified for learning purposes." + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "review = \"\"\"I purchased this monitor because of budgetary concerns. This item was the most inexpensive 17 inch monitor \n", + "available to me at the time I made the purchase. My overall experience with this monitor was very poor. When the \n", + "screen wasn't contracting or glitching the overall picture quality was poor to fair. I've viewed numerous different \n", + "monitor models since I 'm a college student and this particular monitor had as poor of picture quality as \n", + "any I 've seen.\"\"\"\n", + "\n", + "tweet = \"\"\"@concert Lady Gaga is actually at the Britney Spears Femme Fatale Concert tonight!!! She still listens to \n", + " her music!!!! WOW!!! #ladygaga #britney\"\"\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tools" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this session we are going to use several libraries, which provide complementary features:\n", + "* [NLTK](nltk.org/book_1ed/) - provides functionalities for sentence splitting, tokenization, lemmatization, NER, collocations ... and access to many lexical resources (WordNet, Corpora, ...)\n", + "* [Gensim](https://radimrehurek.com/gensim/) - provides functionalities for corpora management, LDA and LSI, among others.\n", + "* [TextBlob](http://textblob.readthedocs.io/) - provides a simple way to access to many of the NLP functions. It is simpler than NLTK and integrates additional functionatities, such as language detection, spelling or even sentiment analysis.\n", + "* [CLiPS](http://www.clips.ua.ac.be/pages/pattern-en#parser) -- contains a fast part-of-speech tagger for English (identifies nouns, adjectives, verbs, etc. in a sentence), sentiment and mood analysis, tools for English verb conjugation and noun singularization & pluralization, and a WordNet interface. Unfortunately, it does not support Python 3 yet.\n", + "\n", + "\n", + "In order to use nltk, we should download first the lexical resources we are going to use. We can updated them later. For this, you need:\n", + "* import nltk\n", + "* Run *nltk.download()* (the first time we use it). A window will appear. You should select just the corpus 'book' and press download.\n", + "If you inspect the window, you can get an overview of available lexical resources (corpora, lexicons and grammars). For example, you can find some relevant sentiment lexicons in corpora (SentiWordNet, Sentence Polarity Dataset, Vader, Opinion Lexicon or VADER Sentiment Lexicon)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "import nltk\n", + "ntlk.download()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Cleansing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this case we will use raw text. In case you need to clean the documents (eliminate HTML markup, etc.), you can use libraries such as [BeautifulSoup4](https://www.crummy.com/software/BeautifulSoup/bs4/doc/)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tokenization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Tokenization is the process of transforming a text into tokens. Depending on the input, we can want to split the text into sentences or words. Moreover, some input such as Twitter can require taking into account processing special tokens, such as hashtags.\n", + "\n", + "NLTK provides good support for [tokenization](http://www.nltk.org/api/nltk.tokenize.html).\n", + "\n", + "Next we are going to practice several of these features." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Sentence Splitter" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can use a standard sentence splitter (*sent_tokenize* which uses *PunkTonenizer*), or train a sentence splitter, using the class [*PunktSentenceTokenizer*](http://www.nltk.org/api/nltk.tokenize.html).\n", + "\n", + "If the text is multilingual, we can install [*textblob*](http://textblob.readthedocs.io/) or [*langdetect*](https://pypi.python.org/pypi/langdetect?) to detect the text language and select the most suitable sentence splitter. NLTK comes with 17 trained languages for sentence splitting." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['I purchased this monitor because of budgetary concerns.', 'This item was the most inexpensive 17 inch monitor \\navailable to me at the time I made the purchase.', 'My overall experience with this monitor was very poor.', \"When the \\nscreen wasn't contracting or glitching the overall picture quality was poor to fair.\", \"I've viewed numerous different \\nmonitor models since I 'm a college student and this particular monitor had as poor of picture quality as \\nany I 've seen.\"]\n" + ] + } + ], + "source": [ + "from nltk.tokenize import sent_tokenize, word_tokenize\n", + "\n", + "sentences = sent_tokenize(review, language='english')\n", + "print(sentences)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Word Splitter" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next stem is dividing every sentence (or the full step) into words." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false, + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[['I', 'purchased', 'this', 'monitor', 'because', 'of', 'budgetary', 'concerns', '.'], ['This', 'item', 'was', 'the', 'most', 'inexpensive', '17', 'inch', 'monitor', 'available', 'to', 'me', 'at', 'the', 'time', 'I', 'made', 'the', 'purchase', '.'], ['My', 'overall', 'experience', 'with', 'this', 'monitor', 'was', 'very', 'poor', '.'], ['When', 'the', 'screen', 'was', \"n't\", 'contracting', 'or', 'glitching', 'the', 'overall', 'picture', 'quality', 'was', 'poor', 'to', 'fair', '.'], ['I', \"'ve\", 'viewed', 'numerous', 'different', 'monitor', 'models', 'since', 'I', \"'m\", 'a', 'college', 'student', 'and', 'this', 'particular', 'monitor', 'had', 'as', 'poor', 'of', 'picture', 'quality', 'as', 'any', 'I', \"'ve\", 'seen', '.']]\n" + ] + } + ], + "source": [ + "words = [word_tokenize(t) for t in sent_tokenize(review)]\n", + "print(words)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In our case, we are not interested in processing every sentence, we have split into sentence just for learning purposes. So, we are going to get the word tokens." + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['I', 'purchased', 'this', 'monitor', 'because', 'of', 'budgetary', 'concerns', '.', 'This', 'item', 'was', 'the', 'most', 'inexpensive', '17', 'inch', 'monitor', 'available', 'to', 'me', 'at', 'the', 'time', 'I', 'made', 'the', 'purchase', '.', 'My', 'overall', 'experience', 'with', 'this', 'monitor', 'was', 'very', 'poor', '.', 'When', 'the', 'screen', 'was', \"n't\", 'contracting', 'or', 'glitching', 'the', 'overall', 'picture', 'quality', 'was', 'poor', 'to', 'fair', '.', 'I', \"'ve\", 'viewed', 'numerous', 'different', 'monitor', 'models', 'since', 'I', \"'m\", 'a', 'college', 'student', 'and', 'this', 'particular', 'monitor', 'had', 'as', 'poor', 'of', 'picture', 'quality', 'as', 'any', 'I', \"'ve\", 'seen', '.']\n" + ] + } + ], + "source": [ + "words = word_tokenize(review)\n", + "print(words)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can define our own word tokenizer using regular expressions (and using the class [*RegexpTokenizer*](http://www.nltk.org/api/nltk.tokenize.html).\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "With TweetTokenizer Lady Gaga is actually at the Britney Spears Femme Fatale Concert tonight ! ! ! She still listens to her music ! ! ! WOW ! ! ! #ladygaga #britney\n", + "With word_tokenizer @ concert Lady Gaga is actually at the Britney Spears Femme Fatale Concert tonight ! ! ! She still listens to her music ! ! ! ! WOW ! ! ! # ladygaga # britney\n" + ] + } + ], + "source": [ + "from nltk.tokenize import TweetTokenizer\n", + "tknzr = TweetTokenizer(strip_handles=True, reduce_len=True)\n", + "tweet_tokens = tknzr.tokenize(tweet)\n", + "print (\"With TweetTokenizer \" + \" \".join(tweet_tokens))\n", + "print(\"With word_tokenizer \" + \" \".join(word_tokenize(tweet)))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Stemming and Lemmatization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "NLTK provides support for stemming in the package [*stem*](http://www.nltk.org/api/nltk.stem.html). There are several available stemmers:PorterStemmer, lancaster or WordNetLemmatizer. Check the API for more details." + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Porter: boy children are have is ha Madrid\n", + "Execution time: 0.00093841552734375\n", + "Lancaster: boy childr ar hav is has madrid\n", + "Execution time: 0.0014300346374511719\n", + "WordNet: boy child are have is ha Madrid\n", + "Execution time: 0.0008304119110107422\n", + "SnowBall: boy children are have is has madrid\n", + "Execution time: 0.0017843246459960938\n" + ] + } + ], + "source": [ + "from nltk.stem import PorterStemmer, LancasterStemmer, WordNetLemmatizer\n", + "from nltk.stem.snowball import EnglishStemmer\n", + "import time\n", + "\n", + "porter = PorterStemmer()\n", + "lancaster = LancasterStemmer()\n", + "wordnet = WordNetLemmatizer()\n", + "snowball = EnglishStemmer()\n", + "\n", + "words = \"boys children are have is has Madrid\"\n", + "\n", + "start = time.time()\n", + "print(\"Porter: \" + \" \".join([porter.stem(w) for w in word_tokenize(words)]))\n", + "end = time.time()\n", + "print(\"Execution time: \" + str(end - start))\n", + "start = time.time()\n", + "print(\"Lancaster: \" + \" \".join([lancaster.stem(w) for w in word_tokenize(words)]))\n", + "end = time.time()\n", + "print(\"Execution time: \" + str(end - start))\n", + "start = time.time()\n", + "print(\"WordNet: \" + \" \".join([wordnet.lemmatize(w) for w in word_tokenize(words)]))\n", + "end = time.time()\n", + "print(\"Execution time: \" + str(end - start))\n", + "start = time.time()\n", + "print(\"SnowBall: \" + \" \".join([snowball.stem(w) for w in word_tokenize(words)]))\n", + "end = time.time()\n", + "print(\"Execution time: \" + str(end - start))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "As we can see, we get the forms *are* and *is* instead of *be*. This is because we have not introduce the Part-Of-Speech (POS), and the default POS is 'n' (name).\n", + "\n", + "The main difference between stemmers and lemmatizers is that stemmers operate in isolated words, while lemmatizers take into account the context (e.g. POS). However, stemmers are quicker and require fewer resources.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "WordNet: be cry be have have\n" + ] + } + ], + "source": [ + "verbs = \"are crying is have has\"\n", + "print(\"WordNet: \" + \" \".join([wordnet.lemmatize(w, pos='v') for w in word_tokenize(verbs)]))\n" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "Depending of the application, we can select stemmers or lemmatizers. \n", + "\n", + "Regarding Twitter, we could use specialised software for managing tweets, such as [*TweetNLP*](http://www.cs.cmu.edu/~ark/TweetNLP/).\n", + "\n", + "Now we go back to our example and we apply stemming." + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['i', 'purchas', 'thi', 'monitor', 'becaus', 'of', 'budgetari', 'concern', '.', 'thi', 'item', 'wa', 'the', 'most', 'inexpens', '17', 'inch', 'monitor', 'avail', 'to', 'me', 'at', 'the', 'time', 'i', 'made', 'the', 'purchas', '.', 'my', 'overal', 'experi', 'with', 'thi', 'monitor', 'wa', 'veri', 'poor', '.', 'when', 'the', 'screen', 'wa', \"n't\", 'contract', 'or', 'glitch', 'the', 'overal', 'pictur', 'qualiti', 'wa', 'poor', 'to', 'fair', '.', 'i', \"'ve\", 'view', 'numer', 'differ', 'monitor', 'model', 'sinc', 'i', \"'m\", 'a', 'colleg', 'student', 'and', 'thi', 'particular', 'monitor', 'had', 'as', 'poor', 'of', 'pictur', 'qualiti', 'as', 'ani', 'i', \"'ve\", 'seen', '.']\n", + "['Ladi', 'Gaga', 'is', 'actual', 'at', 'the', 'Britney', 'Spear', 'Femm', 'Fatal', 'Concert', 'tonight', '!', '!', '!', 'She', 'still', 'listen', 'to', 'her', 'music', '!', '!', '!', 'WOW', '!', '!', '!', '#ladygaga', '#britney']\n" + ] + } + ], + "source": [ + "def preprocess(words, type='doc'):\n", + " if (type == 'tweet'):\n", + " tknzr = TweetTokenizer(strip_handles=True, reduce_len=True)\n", + " tokens = tknzr.tokenize(tweet)\n", + " else:\n", + " tokens = nltk.word_tokenize(words.lower())\n", + " porter = nltk.PorterStemmer()\n", + " lemmas = [porter.stem(t) for t in tokens]\n", + " return lemmas\n", + "print(preprocess(review))\n", + "print(preprocess(tweet, type='tweet'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Stop word removal" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next step is removing stop words." + ] + }, + { + "cell_type": "code", + "execution_count": 86, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', 'her', 'hers', 'herself', 'it', 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', 'should', 'now', 'd', 'll', 'm', 'o', 're', 've', 'y', 'ain', 'aren', 'couldn', 'didn', 'doesn', 'hadn', 'hasn', 'haven', 'isn', 'ma', 'mightn', 'mustn', 'needn', 'shan', 'shouldn', 'wasn', 'weren', 'won', 'wouldn']\n" + ] + } + ], + "source": [ + "from nltk.corpus import stopwords\n", + "\n", + "stoplist = stopwords.words('english')\n", + "print(stoplist)" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['purchas', 'thi', 'monitor', 'becaus', 'budgetari', 'concern', '.', 'thi', 'item', 'wa', 'inexpens', '17', 'inch', 'monitor', 'avail', 'time', 'made', 'purchas', '.', 'overal', 'experi', 'thi', 'monitor', 'wa', 'veri', 'poor', '.', 'screen', 'wa', \"n't\", 'contract', 'glitch', 'overal', 'pictur', 'qualiti', 'wa', 'poor', 'fair', '.', \"'ve\", 'view', 'numer', 'differ', 'monitor', 'model', 'sinc', \"'m\", 'colleg', 'student', 'thi', 'particular', 'monitor', 'poor', 'pictur', 'qualiti', 'ani', \"'ve\", 'seen', '.']\n", + "['Ladi', 'Gaga', 'actual', 'Britney', 'Spear', 'Femm', 'Fatal', 'Concert', 'tonight', '!', '!', '!', 'She', 'still', 'listen', 'music', '!', '!', '!', 'WOW', '!', '!', '!', '#ladygaga', '#britney']\n" + ] + } + ], + "source": [ + "def preprocess(words, type='doc'):\n", + " if (type == 'tweet'):\n", + " tknzr = TweetTokenizer(strip_handles=True, reduce_len=True)\n", + " tokens = tknzr.tokenize(tweet)\n", + " else:\n", + " tokens = nltk.word_tokenize(words.lower())\n", + " porter = nltk.PorterStemmer()\n", + " lemmas = [porter.stem(t) for t in tokens]\n", + " stoplist = stopwords.words('english')\n", + " lemmas_clean = [w for w in lemmas if w not in stoplist]\n", + " return lemmas_clean\n", + "\n", + "print(preprocess(review))\n", + "print(preprocess(tweet, type='tweet'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Punctuation removal" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Punctuation is useful for sentence splitting and POS tagging. Once we have used it, we can remove it easily." + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['purchas', 'thi', 'monitor', 'becaus', 'budgetari', 'concern', 'thi', 'item', 'wa', 'inexpens', '17', 'inch', 'monitor', 'avail', 'time', 'made', 'purchas', 'overal', 'experi', 'thi', 'monitor', 'wa', 'veri', 'poor', 'screen', 'wa', \"n't\", 'contract', 'glitch', 'overal', 'pictur', 'qualiti', 'wa', 'poor', 'fair', \"'ve\", 'view', 'numer', 'differ', 'monitor', 'model', 'sinc', \"'m\", 'colleg', 'student', 'thi', 'particular', 'monitor', 'poor', 'pictur', 'qualiti', 'ani', \"'ve\", 'seen']\n", + "['Ladi', 'Gaga', 'actual', 'Britney', 'Spear', 'Femm', 'Fatal', 'Concert', 'tonight', 'She', 'still', 'listen', 'music', 'WOW', '#ladygaga', '#britney']\n" + ] + } + ], + "source": [ + "import string\n", + "\n", + "def preprocess(words, type='doc'):\n", + " if (type == 'tweet'):\n", + " tknzr = TweetTokenizer(strip_handles=True, reduce_len=True)\n", + " tokens = tknzr.tokenize(tweet)\n", + " else:\n", + " tokens = nltk.word_tokenize(words.lower())\n", + " porter = nltk.PorterStemmer()\n", + " lemmas = [porter.stem(t) for t in tokens]\n", + " stoplist = stopwords.words('english')\n", + " lemmas_clean = [w for w in lemmas if w not in stoplist]\n", + " punctuation = set(string.punctuation)\n", + " words = [w for w in lemmas_clean if w not in punctuation]\n", + " return words\n", + "\n", + "print(preprocess(review))\n", + "print(preprocess(tweet, type='tweet'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Rare words and spelling" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In large corpus, we may want to clean rare words (probably they are typos) and correct spelling. \n", + "\n", + "For the first task, you can exclude the least frequent words (or compare with their frequency in a corpus). NLTK provides facilities for calculating frequencies.\n", + "\n", + "For the second task, you can use spell-checker packages such as [*textblob*](http://textblob.readthedocs.io/) or [*autocorrect*](https://pypi.python.org/pypi/autocorrect/)." + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Most frequent\n", + "[('.', 5), ('I', 5), ('the', 5), ('monitor', 5), ('was', 4), ('this', 3), ('poor', 3), ('as', 2), ('overall', 2), ('picture', 2)]\n", + "Least frequent\n", + "['models', '17', 'purchase', 'different', 'most', \"n't\", 'monitor', \"'m\", 'was', 'My']\n" + ] + } + ], + "source": [ + "frec = nltk.FreqDist(nltk.word_tokenize(review))\n", + "print(\"Most frequent\")\n", + "print(frec.most_common(10))\n", + "print(\"Least frequent\")\n", + "print(list(frec.keys())[-10:])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## References\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* [NLTK Book. Natural Language Processing with Python. Steven Bird, Ewan Klein, and Edward Loper. O'Reilly Media, 2009 ](http://www.nltk.org/book_1ed/)\n", + "* [NLTK Essentials, Nitin Hardeniya, Packt Publishing, 2015](http://proquest.safaribooksonline.com/search?q=NLTK%20Essentials)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Licence" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "\n", + "© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/nlp/4_2_Syntactic_Processing.ipynb b/nlp/4_2_Syntactic_Processing.ipynb new file mode 100644 index 0000000..28c91d7 --- /dev/null +++ b/nlp/4_2_Syntactic_Processing.ipynb @@ -0,0 +1,595 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](images/EscUpmPolit_p.gif \"UPM\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Course Notes for Learning Intelligent Systems" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Syntactic Processing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Table of Contents\n", + "\n", + "* [Objectives](#Objectives)\n", + "* [POS Tagging](#POS-Tagging)\n", + "* [NER](#NER)\n", + "* [Parsing and Chunking](#Parsing-and-Chunking)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Objectives" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this session we are going to learn how to analyse the syntax of text. In particular, we will learn\n", + "* Understand and perform POS (Part of Speech) tagging\n", + "* Understand and perform NER (Named Entity Recognition)\n", + "* Understand and parse texts\n", + "\n", + "We will use the same examples than in the previous notebook, slightly modified for learning purposes." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "review = \"\"\"I purchased this Dell monitor because of budgetary concerns. This item was the most inexpensive 17 inch Apple monitor \n", + "available to me at the time I made the purchase. My overall experience with this monitor was very poor. When the \n", + "screen wasn't contracting or glitching the overall picture quality was poor to fair. I've viewed numerous different \n", + "monitor models since I 'm a college student at UPM in Madrid and this particular monitor had as poor of picture quality as \n", + "any I 've seen.\"\"\"\n", + "\n", + "tweet = \"\"\"@concert Lady Gaga is actually at the Britney Spears Femme Fatale Concert tonight!!! She still listens to \n", + " her music!!!! WOW!!! #ladygaga #britney\"\"\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# POS Tagging" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "POS Tagging is the process of assigning a grammatical category (known as *part of speech*, POS) to a word. For this purpose, the most common approach is using an annotated corpus such as Penn Treebank. The tag set (categories) depends on the corpus annotation. Fortunately, nltk defines a [universal tagset](http://www.nltk.org/book/ch05.html):\n", + "\n", + "\n", + "Tag\t| Meaning | English Examples\n", + "----|---------|------------------\n", + "ADJ\t| adjective | new, good, high, special, big, local\n", + "ADP\t| adposition | on, of, at, with, by, into, under\n", + "ADV\t| adverb | really, already, still, early, now\n", + "CONJ| conjunction | and, or, but, if, while, although\n", + "DET | determiner, article | the, a, some, most, every, no, which\n", + "NOUN | noun\t | year, home, costs, time, Africa\n", + "NUM\t| numeral | twenty-four, fourth, 1991, 14:24\n", + "PRT | particle | at, on, out, over per, that, up, with\n", + "PRON | pronoun | he, their, her, its, my, I, us\n", + "VERB | verb\t| is, say, told, given, playing, would\n", + ". | punctuation marks | . , ; !\n", + "X | other | ersatz, esprit, dunno, gr8, univeristy" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('I', 'PRON'), ('purchased', 'VERB'), ('this', 'DET'), ('Dell', 'NOUN'), ('monitor', 'NOUN'), ('because', 'ADP'), ('of', 'ADP'), ('budgetary', 'ADJ'), ('concerns', 'NOUN'), ('.', '.'), ('This', 'DET'), ('item', 'NOUN'), ('was', 'VERB'), ('the', 'DET'), ('most', 'ADV'), ('inexpensive', 'ADJ'), ('17', 'NUM'), ('inch', 'NOUN'), ('Apple', 'NOUN'), ('monitor', 'NOUN'), ('available', 'ADJ'), ('to', 'PRT'), ('me', 'PRON'), ('at', 'ADP'), ('the', 'DET'), ('time', 'NOUN'), ('I', 'PRON'), ('made', 'VERB'), ('the', 'DET'), ('purchase', 'NOUN'), ('.', '.'), ('My', 'PRON'), ('overall', 'ADJ'), ('experience', 'NOUN'), ('with', 'ADP'), ('this', 'DET'), ('monitor', 'NOUN'), ('was', 'VERB'), ('very', 'ADV'), ('poor', 'ADJ'), ('.', '.'), ('When', 'ADV'), ('the', 'DET'), ('screen', 'NOUN'), ('was', 'VERB'), (\"n't\", 'ADV'), ('contracting', 'VERB'), ('or', 'CONJ'), ('glitching', 'VERB'), ('the', 'DET'), ('overall', 'ADJ'), ('picture', 'NOUN'), ('quality', 'NOUN'), ('was', 'VERB'), ('poor', 'ADJ'), ('to', 'PRT'), ('fair', 'VERB'), ('.', '.'), ('I', 'PRON'), (\"'ve\", 'VERB'), ('viewed', 'VERB'), ('numerous', 'ADJ'), ('different', 'ADJ'), ('monitor', 'NOUN'), ('models', 'NOUN'), ('since', 'ADP'), ('I', 'PRON'), (\"'m\", 'VERB'), ('a', 'DET'), ('college', 'NOUN'), ('student', 'NOUN'), ('at', 'ADP'), ('UPM', 'NOUN'), ('in', 'ADP'), ('Madrid', 'NOUN'), ('and', 'CONJ'), ('this', 'DET'), ('particular', 'ADJ'), ('monitor', 'NOUN'), ('had', 'VERB'), ('as', 'ADP'), ('poor', 'ADJ'), ('of', 'ADP'), ('picture', 'NOUN'), ('quality', 'NOUN'), ('as', 'ADP'), ('any', 'DET'), ('I', 'PRON'), (\"'ve\", 'VERB'), ('seen', 'VERB'), ('.', '.')]\n" + ] + } + ], + "source": [ + "from nltk import pos_tag, word_tokenize\n", + "print (pos_tag(word_tokenize(review), tagset='universal'))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Based on this POS info, we could use correctly now the WordNetLemmatizer. The WordNetLemmatizer only is interesting for 4 POS categories: ADJ, ADV, NOUN, and VERB." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['I', 'purchase', 'Dell', 'monitor', 'because', 'of', 'budgetary', 'concern', 'item', 'be', 'most', 'inexpensive', '17', 'inch', 'Apple', 'monitor', 'available', 'me', 'at', 'time', 'I', 'make', 'purchase', 'My', 'overall', 'experience', 'with', 'monitor', 'be', 'very', 'poor', 'When', 'screen', 'be', \"n't\", 'contract', 'or', 'glitching', 'overall', 'picture', 'quality', 'be', 'poor', 'fair', 'I', \"'ve\", 'view', 'numerous', 'different', 'monitor', 'model', 'since', 'I', \"'m\", 'college', 'student', 'at', 'UPM', 'in', 'Madrid', 'and', 'particular', 'monitor', 'have', 'a', 'poor', 'of', 'picture', 'quality', 'a', 'I', \"'ve\", 'see']\n" + ] + } + ], + "source": [ + "from nltk.stem import WordNetLemmatizer\n", + "\n", + "review_postagged = pos_tag(word_tokenize(review), tagset='universal')\n", + "pos_mapping = {'NOUN': 'n', 'ADJ': 'a', 'VERB': 'v', 'ADV': 'r', 'ADP': 'n', 'CONJ': 'n', \n", + " 'PRON': 'n', 'NUM': 'n', 'X': 'n' }\n", + "\n", + "wordnet = WordNetLemmatizer()\n", + "lemmas = [wordnet.lemmatize(w, pos=pos_mapping[tag]) for (w,tag) in review_postagged if tag in pos_mapping.keys()]\n", + "print(lemmas)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# NER" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Named Entity Recognition (NER) is an information retrieval for identifying named entities of places, organisation of persons. NER usually relies in a tagged corpus. NER algorithms can be trained for new corpora." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " I/PRP\n", + " purchased/VBD\n", + " this/DT\n", + " (ORGANIZATION Dell/NNP)\n", + " monitor/NN\n", + " because/IN\n", + " of/IN\n", + " budgetary/JJ\n", + " concerns/NNS\n", + " ./.\n", + " This/DT\n", + " item/NN\n", + " was/VBD\n", + " the/DT\n", + " most/RBS\n", + " inexpensive/JJ\n", + " 17/CD\n", + " inch/NN\n", + " Apple/NNP\n", + " monitor/NN\n", + " available/JJ\n", + " to/TO\n", + " me/PRP\n", + " at/IN\n", + " the/DT\n", + " time/NN\n", + " I/PRP\n", + " made/VBD\n", + " the/DT\n", + " purchase/NN\n", + " ./.\n", + " My/PRP$\n", + " overall/JJ\n", + " experience/NN\n", + " with/IN\n", + " this/DT\n", + " monitor/NN\n", + " was/VBD\n", + " very/RB\n", + " poor/JJ\n", + " ./.\n", + " When/WRB\n", + " the/DT\n", + " screen/NN\n", + " was/VBD\n", + " n't/RB\n", + " contracting/VBG\n", + " or/CC\n", + " glitching/VBG\n", + " the/DT\n", + " overall/JJ\n", + " picture/NN\n", + " quality/NN\n", + " was/VBD\n", + " poor/JJ\n", + " to/TO\n", + " fair/VB\n", + " ./.\n", + " I/PRP\n", + " 've/VBP\n", + " viewed/VBN\n", + " numerous/JJ\n", + " different/JJ\n", + " monitor/NN\n", + " models/NNS\n", + " since/IN\n", + " I/PRP\n", + " 'm/VBP\n", + " a/DT\n", + " college/NN\n", + " student/NN\n", + " at/IN\n", + " (ORGANIZATION UPM/NNP)\n", + " in/IN\n", + " (GPE Madrid/NNP)\n", + " and/CC\n", + " this/DT\n", + " particular/JJ\n", + " monitor/NN\n", + " had/VBD\n", + " as/IN\n", + " poor/JJ\n", + " of/IN\n", + " picture/NN\n", + " quality/NN\n", + " as/IN\n", + " any/DT\n", + " I/PRP\n", + " 've/VBP\n", + " seen/VBN\n", + " ./.)\n" + ] + } + ], + "source": [ + "from nltk import ne_chunk, pos_tag, word_tokenize\n", + "ne_tagged = ne_chunk(pos_tag(word_tokenize(review)), binary=False)\n", + "print(ne_tagged) " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "NLTK comes with other NER implementations. We can also use online services, such as [OpenCalais](http://www.opencalais.com/), [DBpedia Spotlight](https://github.com/dbpedia-spotlight/dbpedia-spotlight/wiki/Web-service) or [TagME](http://tagme.di.unipi.it/)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Parsing and Chunking" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Parsing** is the process of obtaining a parsing tree given a grammar. It which can be very useful to understand the relationship among the words.\n", + "\n", + "As we have seen in class, we can follow a traditional approach and obtain a full parsing tree or shallow parsing (chunking) and obtain a partial tree.\n", + "\n", + "We can use the StandfordParser that is integrated in NLTK, but it requires to configure the CLASSPATH, which can be a bit annoying. Instead, we are going to see some demos to understand how grammars work. In case you are interested, you can consult the [manual](http://www.nltk.org/api/nltk.parse.html) to run it.\n", + "\n", + "In the following example, you will run an interactive context-free parser, called [shift-reduce parser](http://www.nltk.org/book/ch08.html).\n", + "The pane on the left shows the grammar as a list of production rules. The pane on the right contains the stack and the remaining input.\n", + "\n", + "You should:\n", + "* Run pressing 'step' until the sentence is fully analyzed. With each step, the parser either shifts one word onto the stack or reduces two subtrees of the stack into a new subtree.\n", + "* Try to act as the parser. Instead of pressing 'step', press 'shift' and 'reduce'. Follow the 'always shift before reduce' rule. It is likely you will reach a state where the parser cannot proceed. You can go back with 'Undo'." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from nltk.app import srparser_app\n", + "srparser_app.app()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Chunking** o **shallow parsing** aims at extracting relevant parts of the sentence. There are (two main approaches)[http://www.nltk.org/book/ch07.html] to chunking: using regular expressions based on POS tags, or training a chunk parser.\n", + "\n", + "We are going to illustrate the first technique for extracting NP chunks.\n", + "\n", + "We define regular expressions for the chunks we want to get." + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(S\n", + " I/PRON\n", + " purchased/VERB\n", + " (NP this/DET Dell/NOUN monitor/NOUN)\n", + " because/ADP\n", + " of/ADP\n", + " (NP budgetary/ADJ concerns/NOUN)\n", + " ./.\n", + " (NP This/DET item/NOUN)\n", + " was/VERB\n", + " (NP\n", + " the/DET\n", + " most/ADV\n", + " inexpensive/ADJ\n", + " 17/NUM\n", + " inch/NOUN\n", + " Apple/NOUN\n", + " monitor/NOUN)\n", + " available/ADJ\n", + " to/PRT\n", + " me/PRON\n", + " at/ADP\n", + " (NP the/DET time/NOUN)\n", + " I/PRON\n", + " made/VERB\n", + " (NP the/DET purchase/NOUN)\n", + " ./.\n", + " (NP My/PRON overall/ADJ experience/NOUN)\n", + " with/ADP\n", + " (NP this/DET monitor/NOUN)\n", + " was/VERB\n", + " very/ADV\n", + " poor/ADJ\n", + " ./.\n", + " When/ADV\n", + " (NP the/DET screen/NOUN)\n", + " was/VERB\n", + " n't/ADV\n", + " contracting/VERB\n", + " or/CONJ\n", + " glitching/VERB\n", + " (NP the/DET overall/ADJ picture/NOUN quality/NOUN)\n", + " was/VERB\n", + " poor/ADJ\n", + " to/PRT\n", + " fair/VERB\n", + " ./.\n", + " I/PRON\n", + " 've/VERB\n", + " viewed/VERB\n", + " (NP numerous/ADJ different/ADJ monitor/NOUN models/NOUN)\n", + " since/ADP\n", + " I/PRON\n", + " 'm/VERB\n", + " (NP a/DET college/NOUN student/NOUN)\n", + " at/ADP\n", + " (NP UPM/NOUN)\n", + " in/ADP\n", + " (NP Madrid/NOUN)\n", + " and/CONJ\n", + " (NP this/DET particular/ADJ monitor/NOUN)\n", + " had/VERB\n", + " as/ADP\n", + " poor/ADJ\n", + " of/ADP\n", + " (NP picture/NOUN quality/NOUN)\n", + " as/ADP\n", + " any/DET\n", + " I/PRON\n", + " 've/VERB\n", + " seen/VERB\n", + " ./.)\n" + ] + } + ], + "source": [ + "from nltk.chunk.regexp import *\n", + "pattern = \"\"\"NP: {+} \n", + " {??*?+}\n", + " \"\"\"\n", + "NPChunker = RegexpParser(pattern)\n", + "\n", + "reviews_pos = (pos_tag(word_tokenize(review), tagset='universal'))\n", + "\n", + "chunks_np = NPChunker.parse(reviews_pos)\n", + "print(chunks_np)\n", + "chunks_np.draw()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now we can traverse the trees and obtain the strings as follows." + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[Tree('NP', [('this', 'DET'), ('Dell', 'NOUN'), ('monitor', 'NOUN')]),\n", + " Tree('NP', [('budgetary', 'ADJ'), ('concerns', 'NOUN')]),\n", + " Tree('NP', [('This', 'DET'), ('item', 'NOUN')]),\n", + " Tree('NP', [('the', 'DET'), ('most', 'ADV'), ('inexpensive', 'ADJ'), ('17', 'NUM'), ('inch', 'NOUN'), ('Apple', 'NOUN'), ('monitor', 'NOUN')]),\n", + " Tree('NP', [('the', 'DET'), ('time', 'NOUN')]),\n", + " Tree('NP', [('the', 'DET'), ('purchase', 'NOUN')]),\n", + " Tree('NP', [('My', 'PRON'), ('overall', 'ADJ'), ('experience', 'NOUN')]),\n", + " Tree('NP', [('this', 'DET'), ('monitor', 'NOUN')]),\n", + " Tree('NP', [('the', 'DET'), ('screen', 'NOUN')]),\n", + " Tree('NP', [('the', 'DET'), ('overall', 'ADJ'), ('picture', 'NOUN'), ('quality', 'NOUN')]),\n", + " Tree('NP', [('numerous', 'ADJ'), ('different', 'ADJ'), ('monitor', 'NOUN'), ('models', 'NOUN')]),\n", + " Tree('NP', [('a', 'DET'), ('college', 'NOUN'), ('student', 'NOUN')]),\n", + " Tree('NP', [('UPM', 'NOUN')]),\n", + " Tree('NP', [('Madrid', 'NOUN')]),\n", + " Tree('NP', [('this', 'DET'), ('particular', 'ADJ'), ('monitor', 'NOUN')]),\n", + " Tree('NP', [('picture', 'NOUN'), ('quality', 'NOUN')])]" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def extractTrees(parsed_tree, category='NP'):\n", + " return list(parsed_tree.subtrees(filter=lambda x: x.label()==category))\n", + "\n", + "extractTrees(chunks_np, 'NP')" + ] + }, + { + "cell_type": "code", + "execution_count": 90, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['this Dell monitor',\n", + " 'budgetary concerns',\n", + " 'This item',\n", + " 'the most inexpensive 17 inch Apple monitor',\n", + " 'the time',\n", + " 'the purchase',\n", + " 'My overall experience',\n", + " 'this monitor',\n", + " 'the screen',\n", + " 'the overall picture quality',\n", + " 'numerous different monitor models',\n", + " 'a college student',\n", + " 'UPM',\n", + " 'Madrid',\n", + " 'this particular monitor',\n", + " 'picture quality']" + ] + }, + "execution_count": 90, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def extractStrings(parsed_tree, category='NP'):\n", + " return [\" \".join(word for word, pos in vp.leaves()) for vp in extractTrees(parsed_tree, category)]\n", + " \n", + "extractStrings(chunks_np)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## References\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* [NLTK Book. Natural Language Processing with Python. Steven Bird, Ewan Klein, and Edward Loper. O'Reilly Media, 2009 ](http://www.nltk.org/book_1ed/)\n", + "* [NLTK Essentials, Nitin Hardeniya, Packt Publishing, 2015](http://proquest.safaribooksonline.com/search?q=NLTK%20Essentials)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Licence" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "\n", + "© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/nlp/4_3_Vector_Representation.ipynb b/nlp/4_3_Vector_Representation.ipynb new file mode 100644 index 0000000..8feac81 --- /dev/null +++ b/nlp/4_3_Vector_Representation.ipynb @@ -0,0 +1,742 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](images/EscUpmPolit_p.gif \"UPM\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Course Notes for Learning Intelligent Systems" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Vector Representation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Table of Contents\n", + "* [Objectives](#Objectives)\n", + "* [Tools](#Tools)\n", + "* [Vector representation: Count vector](#Vector-representation:-Count-vector)\n", + "* [Binary vectors](#Binary-vectors)\n", + "* [Bigram vectors](#Bigram-vectors)\n", + "* [Tf-idf vector representation](#Tf-idf-vector-representation)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Objectives" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this notebook we are going to transform text into feature vectors, using several representations as presented in class.\n", + "\n", + "We are going to use the examples from the slides." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "doc1 = 'Summer is coming but Summer is short'\n", + "doc2 = 'I like the Summer and I like the Winter'\n", + "doc3 = 'I like sandwiches and I like the Winter'\n", + "documents = [doc1, doc2, doc3]" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "# Tools" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The different tools we have presented so far (NLTK, Scikit-Learn, TextBlob and CLiPS) provide overlapping functionalities for obtaining vector representations and apply machine learning algorithms.\n", + "\n", + "We are going to focus on the use of scikit-learn so that we can also use easily Pandas as we saw in the previous topic.\n", + "\n", + "Scikit-learn provides specific facililities for processing texts, as described in the [manual](http://scikit-learn.org/stable/modules/feature_extraction.html)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Vector representation: Count vector" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Scikit-learn provides two classes for binary vectors: [CountVectorizer](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.CountVectorizer.html#sklearn.feature_extraction.text.CountVectorizer) and [HashingVectorizer](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.HashingVectorizer.html). The latter is more efficient but does not allow to understand which features are more important, so we use the first class. Nevertheless, they are compatible, so, they can be interchanged for production environments.\n", + "\n", + "The first step for vectorizing with scikit-learn is creating a CountVectorizer object and then we should call 'fit_transform' to fit the vocabulary." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "CountVectorizer(analyzer='word', binary=False, decode_error='strict',\n", + " dtype=, encoding='utf-8', input='content',\n", + " lowercase=True, max_df=1.0, max_features=5000, min_df=1,\n", + " ngram_range=(1, 1), preprocessor=None, stop_words=None,\n", + " strip_accents=None, token_pattern='(?u)\\\\b\\\\w\\\\w+\\\\b',\n", + " tokenizer=None, vocabulary=None)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "vectorizer = CountVectorizer(analyzer = \"word\", max_features = 5000) \n", + "vectorizer" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "As we can see, [CountVectorizer](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.CountVectorizer.html#sklearn.feature_extraction.text.CountVectorizer) comes with many options. We can define many configuration options, such as the maximum or minimum frequency of a term (*min_fd*, *max_df*), maximum number of features (*max_features*), if we analyze words or characters (*analyzer*), or if the output is binary or not (*binary*). *CountVectorizer* also allows us to include if we want to preprocess the input (*preprocessor*) before tokenizing it (*tokenizer*) and exclude stop words (*stop_words*).\n", + "\n", + "We can use NLTK preprocessing and tokenizer functions to tune *CountVectorizer* using these parameters.\n", + "\n", + "We are going to see how the vectors look like." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "<3x10 sparse matrix of type ''\n", + "\twith 15 stored elements in Compressed Sparse Row format>" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectors = vectorizer.fit_transform(documents)\n", + "vectors" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "We see the vectors are stored as a sparse matrix of 3x6 dimensions.\n", + "We can print the matrix as well as the feature names." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[0 1 1 2 0 0 1 2 0 0]\n", + " [1 0 0 0 2 0 0 1 2 1]\n", + " [1 0 0 0 2 1 0 0 1 1]]\n", + "['and', 'but', 'coming', 'is', 'like', 'sandwiches', 'short', 'summer', 'the', 'winter']\n" + ] + } + ], + "source": [ + "print(vectors.toarray())\n", + "print(vectorizer.get_feature_names())" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "As you can see, the pronoun 'I' has been removed because of the default token_pattern. \n", + "We can change this as follows." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['and',\n", + " 'but',\n", + " 'coming',\n", + " 'i',\n", + " 'is',\n", + " 'like',\n", + " 'sandwiches',\n", + " 'short',\n", + " 'summer',\n", + " 'the',\n", + " 'winter']" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectorizer = CountVectorizer(analyzer=\"word\", stop_words=None, token_pattern='(?u)\\\\b\\\\w+\\\\b') \n", + "vectors = vectorizer.fit_transform(documents)\n", + "vectorizer.get_feature_names()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can now filter the stop words (it will remove 'and', 'but', 'I', 'is' and 'the')." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['coming', 'like', 'sandwiches', 'short', 'summer', 'winter']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectorizer = CountVectorizer(analyzer=\"word\", stop_words='english', token_pattern='(?u)\\\\b\\\\w+\\\\b') \n", + "vectors = vectorizer.fit_transform(documents)\n", + "vectorizer.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "frozenset({'could', 'sixty', 'onto', 'by', 'against', 'up', 'a', 'everything', 'other', 'otherwise', 'ourselves', 'beside', 'nowhere', 'then', 'below', 'put', 'ten', 'such', 'cannot', 'either', 'due', 'hasnt', 'whereupon', 'were', 'once', 'at', 'for', 'front', 'get', 'whereas', 'that', 'eight', 'another', 'except', 'of', 'wherever', 'over', 'to', 'whom', 'you', 'former', 'behind', 'yours', 'yourself', 'what', 'even', 'however', 'go', 'less', 'bottom', 'may', 'along', 'is', 'can', 'move', 'eg', 'somewhere', 'latterly', 'seemed', 'thence', 'becoming', 'himself', 'whether', 'six', 'first', 'off', 'do', 'many', 'namely', 'never', 'because', 'mostly', 'nevertheless', 'thereupon', 'here', 'least', 'anyone', 'one', 'others', 'cry', 'they', 'thereby', 'ie', 'am', 'this', 'would', 'any', 'while', 'see', 'too', 'your', 'somehow', 'within', 'same', 'sometimes', 'thereafter', 'must', 'take', 're', 'both', 'fill', 'nor', 'sometime', 'he', 'third', 'more', 'also', 'most', 'during', 'much', 'our', 'thick', 'enough', 'full', 'toward', 'with', 'mill', 'anyhow', 'nobody', 'why', 'thru', 'although', 'nothing', 'meanwhile', 'or', 'some', 'ltd', 'wherein', 'thus', 'someone', 'whereby', 'who', 'un', 'are', 'hundred', 'whereafter', 'fire', 'twenty', 'only', 'several', 'among', 'no', 'than', 'before', 'been', 'else', 'find', 'fifteen', 'hence', 'ours', 'already', 'be', 'besides', 'next', 'interest', 'whither', 'whole', 'eleven', 'without', 'five', 'show', 'in', 'throughout', 'own', 'amongst', 'will', 'neither', 'everywhere', 'part', 'give', 'my', 'hers', 'his', 'upon', 'well', 'him', 'yourselves', 'whatever', 'cant', 'though', 'had', 'again', 'every', 'noone', 'top', 'which', 'de', 'almost', 'system', 'under', 'down', 'latter', 'above', 'whence', 'found', 'myself', 'three', 'those', 'become', 'moreover', 'but', 'anyway', 'beyond', 'from', 'now', 'as', 'seeming', 'con', 'themselves', 'hereupon', 'each', 'serious', 'two', 'across', 'out', 'the', 'therein', 'between', 'inc', 'where', 'anything', 'seem', 'co', 'therefore', 'whoever', 'herein', 'about', 'herself', 'should', 'anywhere', 'how', 'we', 'after', 'describe', 'being', 'etc', 'very', 'not', 'an', 'me', 'call', 'per', 'detail', 'still', 'around', 'hereby', 'sincere', 'their', 'has', 'became', 'beforehand', 'everyone', 'hereafter', 'made', 'ever', 'indeed', 'itself', 'something', 'afterwards', 'none', 'done', 'nine', 'alone', 'please', 'its', 'name', 'since', 'on', 'she', 'bill', 'have', 'mine', 'few', 'her', 'seems', 'always', 'side', 'forty', 'further', 'via', 'last', 'amount', 'towards', 'fify', 'through', 'whose', 'couldnt', 'perhaps', 'thin', 'until', 'becomes', 'elsewhere', 'and', 'i', 'them', 'together', 'us', 'was', 'when', 'rather', 'whenever', 'formerly', 'keep', 'so', 'back', 'there', 'amoungst', 'might', 'these', 'all', 'empty', 'often', 'into', 'it', 'twelve', 'yet', 'if', 'four'})\n" + ] + } + ], + "source": [ + "#stop words in scikit-learn for English\n", + "print(vectorizer.get_stop_words())" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[1, 0, 0, 1, 2, 0],\n", + " [0, 2, 0, 0, 1, 1],\n", + " [0, 2, 1, 0, 0, 1]], dtype=int64)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Vectors\n", + "f_array = vectors.toarray()\n", + "f_array" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can compute now the **distance** between vectors." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.666666666667 1.0 0.166666666667\n" + ] + } + ], + "source": [ + "from scipy.spatial.distance import cosine\n", + "d12 = cosine(f_array[0], f_array[1])\n", + "d13 = cosine(f_array[0], f_array[2])\n", + "d23 = cosine(f_array[1], f_array[2])\n", + "print(d12, d13, d23)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Binary vectors" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can also get **binary vectors** as follows." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['coming', 'like', 'sandwiches', 'short', 'summer', 'winter']" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectorizer = CountVectorizer(analyzer=\"word\", stop_words='english', binary=True) \n", + "vectors = vectorizer.fit_transform(documents)\n", + "vectorizer.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[1, 0, 0, 1, 1, 0],\n", + " [0, 1, 0, 0, 1, 1],\n", + " [0, 1, 1, 0, 0, 1]], dtype=int64)" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectors.toarray()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bigram vectors" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "It is also easy to get bigram vectors." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['coming summer',\n", + " 'like sandwiches',\n", + " 'like summer',\n", + " 'like winter',\n", + " 'sandwiches like',\n", + " 'summer coming',\n", + " 'summer like',\n", + " 'summer short']" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectorizer = CountVectorizer(analyzer=\"word\", stop_words='english', ngram_range=[2,2]) \n", + "vectors = vectorizer.fit_transform(documents)\n", + "vectorizer.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[1, 0, 0, 0, 0, 1, 0, 1],\n", + " [0, 0, 1, 1, 0, 0, 1, 0],\n", + " [0, 1, 0, 1, 1, 0, 0, 0]], dtype=int64)" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectors.toarray()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tf-idf vector representation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, we can also get a tf-idf vector representation using the class [TfidfVectorizer](http://scikit-learn.org/stable/modules/generated/sklearn.feature_extraction.text.TfidfVectorizer.html#sklearn.feature_extraction.text.TfidfVectorizer) instead of CountVectorizer." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['coming', 'like', 'sandwiches', 'short', 'summer', 'winter']" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "\n", + "vectorizer = TfidfVectorizer(analyzer=\"word\", stop_words='english')\n", + "vectors = vectorizer.fit_transform(documents)\n", + "vectorizer.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0.48148213, 0. , 0. , 0.48148213, 0.73235914,\n", + " 0. ],\n", + " [ 0. , 0.81649658, 0. , 0. , 0.40824829,\n", + " 0.40824829],\n", + " [ 0. , 0.77100584, 0.50689001, 0. , 0. ,\n", + " 0.38550292]])" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectors.toarray()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can now compute the similarity of a query and a set of documents as follows." + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['coming', 'like', 'sandwiches', 'short', 'summer', 'winter']" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train = [doc1, doc2, doc3]\n", + "vectorizer = TfidfVectorizer(analyzer=\"word\", stop_words='english')\n", + "\n", + "# We learn the vocabulary (fit) and tranform the docs into vectors\n", + "vectors = vectorizer.fit_transform(train)\n", + "vectorizer.get_feature_names()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false, + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0.48148213, 0. , 0. , 0.48148213, 0.73235914,\n", + " 0. ],\n", + " [ 0. , 0.81649658, 0. , 0. , 0.40824829,\n", + " 0.40824829],\n", + " [ 0. , 0.77100584, 0.50689001, 0. , 0. ,\n", + " 0.38550292]])" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vectors.toarray()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Scikit-learn provides a method to calculate the cosine similarity between one vector and a set of vectors. Based on this, we can rank the similarity. In this case, the ranking for the query is [d1, d2, d3]." + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0.38324078, 0.24713249, 0.23336362]])" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.metrics.pairwise import cosine_similarity\n", + "\n", + "query = ['winter short']\n", + "\n", + "# We transform the query into a vector of the learnt vocabulary\n", + "vector_query = vectorizer.transform(query)\n", + "\n", + "# Here we calculate the distance of the query to the docs\n", + "cosine_similarity(vector_query, vectors)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The same result can be obtained with pairwise metrics (kernels in ML terminology) if we use the linear kernel." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([ 0.38324078, 0.24713249, 0.23336362])" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.metrics.pairwise import linear_kernel\n", + "cosine_similarity = linear_kernel(vector_query, vectors).flatten()\n", + "cosine_similarity" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## References\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* [Scikit-learn](http://scikit-learn.org/stable/datasets/twenty_newsgroups.html#converting-text-to-vectors) Scikit-learn Convert Text to Vectors" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Licence" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "\n", + "© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/nlp/4_4_Classification.ipynb b/nlp/4_4_Classification.ipynb new file mode 100644 index 0000000..ceba5a7 --- /dev/null +++ b/nlp/4_4_Classification.ipynb @@ -0,0 +1,439 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](images/EscUpmPolit_p.gif \"UPM\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Course Notes for Learning Intelligent Systems" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Text Classification" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Table of Contents\n", + "* [Objectives](#Objectives)\n", + "* [Corpus](#Corpus)\n", + "* [Classifier](#Classifier)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Objectives" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this session we provide a quick overview of how the vector models we have presented previously can be used for applying machine learning techniques, such as classification.\n", + "\n", + "The main objectives of this session are:\n", + "* Understand how to apply machine learning techniques on textual sources\n", + "* Learn the facilities provided by scikit-learn" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Corpus" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We are going to use on of the corpus that come prepackaged with Scikit-learn: the [20 newsgroup datase](http://qwone.com/~jason/20Newsgroups/). The 20 newsgroup dataset contains 20k documents that belong to 20 topics.\n", + "\n", + "We inspect now the corpus using the facilities from Scikit-learn, as explain in [scikit-learn](http://scikit-learn.org/stable/datasets/twenty_newsgroups.html#newsgroups)" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['alt.atheism', 'comp.graphics', 'comp.os.ms-windows.misc', 'comp.sys.ibm.pc.hardware', 'comp.sys.mac.hardware', 'comp.windows.x', 'misc.forsale', 'rec.autos', 'rec.motorcycles', 'rec.sport.baseball', 'rec.sport.hockey', 'sci.crypt', 'sci.electronics', 'sci.med', 'sci.space', 'soc.religion.christian', 'talk.politics.guns', 'talk.politics.mideast', 'talk.politics.misc', 'talk.religion.misc']\n" + ] + } + ], + "source": [ + "from sklearn.datasets import fetch_20newsgroups\n", + "\n", + "# We remove metadata to avoid bias in the classification\n", + "newsgroups_train = fetch_20newsgroups(subset='train', remove=('headers', 'footers', 'quotes'))\n", + "newsgroups_test = fetch_20newsgroups(subset='test', remove=('headers', 'footers', 'quotes'))\n", + "\n", + "# print categories\n", + "print(list(newsgroups_train.target_names))" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "20\n" + ] + } + ], + "source": [ + "#Number of categories\n", + "print(len(newsgroups_train.target_names))" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Category id 4 comp.sys.mac.hardware\n", + "Doc A fair number of brave souls who upgraded their SI clock oscillator have\n", + "shared their experiences for this poll. Please send a brief message detailing\n", + "your experiences with the procedure. Top speed attained, CPU rated speed,\n", + "add on cards and adapters, heat sinks, hour of usage per day, floppy disk\n", + "functionality with 800 and 1.4 m floppies are especially requested.\n", + "\n", + "I will be summarizing in the next two days, so please add to the network\n", + "knowledge base if you have done the clock upgrade and haven't answered this\n", + "poll. Thanks.\n" + ] + } + ], + "source": [ + "# Show a document\n", + "docid = 1\n", + "doc = newsgroups_train.data[docid]\n", + "cat = newsgroups_train.target[docid]\n", + "\n", + "print(\"Category id \" + str(cat) + \" \" + newsgroups_train.target_names[cat])\n", + "print(\"Doc \" + doc)" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(11314,)" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Number of files\n", + "newsgroups_train.filenames.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(11314, 101323)" + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Obtain a vector\n", + "\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "\n", + "vectorizer = TfidfVectorizer(analyzer='word', stop_words='english')\n", + "\n", + "vectors_train = vectorizer.fit_transform(newsgroups_train.data)\n", + "vectors_train.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "66.80510871486653" + ] + }, + "execution_count": 97, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# The tf-idf vectors are very sparse with an average of 66 non zero components in 101.323 dimensions (.06%)\n", + "vectors_train.nnz / float(vectors_train.shape[0])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Classifier" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Once we have vectors, we can create classifiers (or other machine learning algorithms such as clustering) as we saw previously in the notebooks of machine learning with scikit-learn." + ] + }, + { + "cell_type": "code", + "execution_count": 138, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "0.69545360719001303" + ] + }, + "execution_count": 138, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.naive_bayes import MultinomialNB\n", + "\n", + "from sklearn import metrics\n", + "\n", + "\n", + "# We learn the vocabulary (fit) with the train dataset and transform into vectors (fit_transform)\n", + "# Nevertheless, we only transform the test dataset into vectors (transform, not fit_transform)\n", + "\n", + "model = MultinomialNB(alpha=.01)\n", + "model.fit(vectors_train, newsgroups_train.target)\n", + "\n", + "\n", + "pred = model.predict(vectors_test)\n", + "\n", + "metrics.f1_score(newsgroups_test.target, pred, average='weighted')\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We are getting F1 of 0.69 for 20 categories this could be improved (optimization, preprocessing, etc.)" + ] + }, + { + "cell_type": "code", + "execution_count": 141, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "dimensionality: 101323\n", + "density: 1.000000\n" + ] + } + ], + "source": [ + "from sklearn.utils.extmath import density\n", + "\n", + "print(\"dimensionality: %d\" % model.coef_.shape[1])\n", + "print(\"density: %f\" % density(model.coef_))" + ] + }, + { + "cell_type": "code", + "execution_count": 140, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "alt.atheism: islam atheists say just religion atheism think don people god\n", + "comp.graphics: looking format 3d know program file files thanks image graphics\n", + "comp.os.ms-windows.misc: card problem thanks driver drivers use files dos file windows\n", + "comp.sys.ibm.pc.hardware: monitor disk thanks pc ide controller bus card scsi drive\n", + "comp.sys.mac.hardware: know monitor does quadra simms thanks problem drive apple mac\n", + "comp.windows.x: using windows x11r5 use application thanks widget server motif window\n", + "misc.forsale: asking email sell price condition new shipping offer 00 sale\n", + "rec.autos: don ford new good dealer just engine like cars car\n", + "rec.motorcycles: don just helmet riding like motorcycle ride bikes dod bike\n", + "rec.sport.baseball: braves players pitching hit runs games game baseball team year\n", + "rec.sport.hockey: league year nhl games season players play hockey team game\n", + "sci.crypt: people use escrow nsa keys government chip clipper encryption key\n", + "sci.electronics: don thanks voltage used know does like circuit power use\n", + "sci.med: skepticism cadre dsl banks chastity n3jxp pitt gordon geb msg\n", + "sci.space: just lunar earth shuttle like moon launch orbit nasa space\n", + "soc.religion.christian: believe faith christian christ bible people christians church jesus god\n", + "talk.politics.guns: just law firearms government fbi don weapons people guns gun\n", + "talk.politics.mideast: said arabs arab turkish people armenians armenian jews israeli israel\n", + "talk.politics.misc: know state clinton president just think tax don government people\n", + "talk.religion.misc: think don koresh objective christians bible people christian jesus god\n" + ] + } + ], + "source": [ + "# We can review the top features per topic in Bayes (attribute coef_)\n", + "import numpy as np\n", + "\n", + "def show_top10(classifier, vectorizer, categories):\n", + " feature_names = np.asarray(vectorizer.get_feature_names())\n", + " for i, category in enumerate(categories):\n", + " top10 = np.argsort(classifier.coef_[i])[-10:]\n", + " print(\"%s: %s\" % (category, \" \".join(feature_names[top10])))\n", + "\n", + " \n", + "show_top10(model, vectorizer, newsgroups_train.target_names)" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[ 3 15]\n", + "['comp.sys.ibm.pc.hardware', 'soc.religion.christian']\n" + ] + } + ], + "source": [ + "# We try the classifier in two new docs\n", + "\n", + "new_docs = ['This is a survey of PC computers', 'God is love']\n", + "new_vectors = vectorizer.transform(new_docs)\n", + "\n", + "pred_docs = model.predict(new_vectors)\n", + "print(pred_docs)\n", + "print([newsgroups_train.target_names[i] for i in pred_docs])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## References\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* [NLTK Book. Natural Language Processing with Python. Steven Bird, Ewan Klein, and Edward Loper. O'Reilly Media, 2009 ](http://www.nltk.org/book_1ed/)\n", + "* [NLTK Essentials, Nitin Hardeniya, Packt Publishing, 2015](http://proquest.safaribooksonline.com/search?q=NLTK%20Essentials)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Licence" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "\n", + "© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/nlp/4_5_Semantic_Models.ipynb b/nlp/4_5_Semantic_Models.ipynb new file mode 100644 index 0000000..5ffccf1 --- /dev/null +++ b/nlp/4_5_Semantic_Models.ipynb @@ -0,0 +1,663 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](images/EscUpmPolit_p.gif \"UPM\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Course Notes for Learning Intelligent Systems" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Semantic Models" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Table of Contents\n", + "* [Objectives](#Objectives)\n", + "* [Corpus](#Corpus)\n", + "* [Converting Scikit-learn to gensim](#Converting-Scikit-learn-to-gensim)\n", + "* [Latent Dirichlet Allocation (LDA)](#Latent-Dirichlet-Allocation-%28LDA%29)\n", + "* [Latent Semantic Indexing (LSI)](#Latent-Semantic-Indexing-%28LSI%29)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Objectives" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In this session we provide a quick overview of the semantic models presented during the classes. In this case, we will use a real corpus so that we can extract meaningful patterns.\n", + "\n", + "The main objectives of this session are:\n", + "* Understand the models and their differences\n", + "* Learn to use some of the most popular NLP libraries" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Corpus" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We are going to use on of the corpus that come prepackaged with Scikit-learn: the [20 newsgroup datase](http://qwone.com/~jason/20Newsgroups/). The 20 newsgroup dataset contains 20k documents that belong to 20 topics.\n", + "\n", + "We inspect now the corpus using the facilities from Scikit-learn, as explain in [scikit-learn](http://scikit-learn.org/stable/datasets/twenty_newsgroups.html#newsgroups)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(2034, 2807)" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn.datasets import fetch_20newsgroups\n", + "\n", + "# We filter only some categories, otherwise we have 20 categories\n", + "categories = ['alt.atheism', 'talk.religion.misc', 'comp.graphics', 'sci.space']\n", + "# We remove metadata to avoid bias in the classification\n", + "newsgroups_train = fetch_20newsgroups(subset='train', \n", + " remove=('headers', 'footers', 'quotes'), \n", + " categories=categories)\n", + "newsgroups_test = fetch_20newsgroups(subset='test', remove=('headers', 'footers', 'quotes'),\n", + " categories=categories)\n", + "\n", + "\n", + "# Obtain a vector\n", + "\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "\n", + "vectorizer = TfidfVectorizer(analyzer='word', stop_words='english', min_df=10)\n", + "\n", + "vectors_train = vectorizer.fit_transform(newsgroups_train.data)\n", + "vectors_train.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Converting Scikit-learn to gensim" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Although scikit-learn provides an LDA implementation, it is more popular the package *gensim*, which also provides an LSI implementation, as well as other functionalities. Fortunately, scikit-learn sparse matrices can be used in Gensim using the function *matutils.Sparse2Corpus()*. Anyway, if you are using intensively LDA,it can be convenient to create the corpus with their functions.\n", + "\n", + "You should install first *gensim*. Run 'conda install -c anaconda gensim=0.12.4' in a terminal." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from gensim import matutils\n", + "\n", + "vocab = vectorizer.get_feature_names()\n", + "\n", + "dictionary = dict([(i, s) for i, s in enumerate(vectorizer.get_feature_names())])\n", + "corpus_tfidf = matutils.Sparse2Corpus(vectors_train)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Latent Dirichlet Allocation (LDA)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Although scikit-learn provides an LDA implementation, it is more popular the package *gensim*, which also provides an LSI implementation, as well as other functionalities. Fortunately, scikit-learn sparse matrices can be used in Gensim using the function *matutils.Sparse2Corpus()*." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from gensim.models.ldamodel import LdaModel\n", + "\n", + "# It takes a long time\n", + "\n", + "# train the lda model, choosing number of topics equal to 4\n", + "lda = LdaModel(corpus_tfidf, num_topics=4, passes=20, id2word=dictionary)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[(0,\n", + " '0.004*objects + 0.004*obtained + 0.003*comets + 0.003*manhattan + 0.003*member + 0.003*beginning + 0.003*center + 0.003*groups + 0.003*aware + 0.003*increased'),\n", + " (1,\n", + " '0.003*activity + 0.002*objects + 0.002*professional + 0.002*eyes + 0.002*manhattan + 0.002*pressure + 0.002*netters + 0.002*chosen + 0.002*attempted + 0.002*medical'),\n", + " (2,\n", + " '0.003*mechanism + 0.003*led + 0.003*platform + 0.003*frank + 0.003*mormons + 0.003*aeronautics + 0.002*concepts + 0.002*header + 0.002*forces + 0.002*profit'),\n", + " (3,\n", + " '0.005*diameter + 0.005*having + 0.004*complex + 0.004*conclusions + 0.004*activity + 0.004*looking + 0.004*action + 0.004*inflatable + 0.004*defined + 0.004*association')]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check the topics\n", + "lda.print_topics(4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Since there are some problems for translating the corpus from Scikit-Learn to LSI, we are now going to create 'natively' the corpus with Gensim." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# import the gensim.corpora module to generate dictionary\n", + "from gensim import corpora\n", + "\n", + "from nltk import word_tokenize\n", + "from nltk.corpus import stopwords\n", + "from nltk import RegexpTokenizer\n", + "\n", + "import string\n", + "\n", + "def preprocess(words):\n", + " tokenizer = RegexpTokenizer('[A-Z]\\w+')\n", + " tokens = [w.lower() for w in tokenizer.tokenize(words)]\n", + " stoplist = stopwords.words('english')\n", + " tokens_stop = [w for w in tokens if w not in stoplist]\n", + " punctuation = set(string.punctuation)\n", + " tokens_clean = [w for w in tokens_stop if w not in punctuation]\n", + " return tokens_clean\n", + "\n", + "#words = preprocess(newsgroups_train.data)\n", + "#dictionary = corpora.Dictionary(newsgroups_train.data)\n", + "\n", + "texts = [preprocess(document) for document in newsgroups_train.data]\n", + "\n", + "dictionary = corpora.Dictionary(texts)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dictionary(10913 unique tokens: ['whose', 'used', 'hoc', 'transfinite', 'newtek']...)\n" + ] + } + ], + "source": [ + "# You can save the dictionary\n", + "dictionary.save('newsgroup.dict')\n", + "\n", + "print(dictionary)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# Generate a list of docs, where each doc is a list of words\n", + "\n", + "docs = [preprocess(doc) for doc in newsgroups_train.data]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# import the gensim.corpora module to generate dictionary\n", + "from gensim import corpora\n", + "\n", + "dictionary = corpora.Dictionary(docs)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# You can optionally save the dictionary \n", + "\n", + "dictionary.save('newsgroups.dict')\n", + "lda = LdaModel.load('newsgroups.lda')" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Dictionary(10913 unique tokens: ['whose', 'used', 'hoc', 'transfinite', 'newtek']...)\n" + ] + } + ], + "source": [ + "# We can print the dictionary, it is a mappying of id and tokens\n", + "\n", + "print(dictionary)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# construct the corpus representing each document as a bag-of-words (bow) vector\n", + "corpus = [dictionary.doc2bow(doc) for doc in docs]" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from gensim.models import TfidfModel\n", + "\n", + "# calculate tfidf\n", + "tfidf_model = TfidfModel(corpus)\n", + "corpus_tfidf = tfidf_model[corpus]" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[(0, 0.1598114653031772), (1, 0.10438175896914427), (2, 0.5700978153855775), (3, 0.24093628445650234), (4, 0.722808853369507), (5, 0.24093628445650234)]\n" + ] + } + ], + "source": [ + "#print tf-idf of first document\n", + "print(corpus_tfidf[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from gensim.models.ldamodel import LdaModel\n", + "\n", + "# train the lda model, choosing number of topics equal to 4, it takes a long time\n", + "\n", + "lda_model = LdaModel(corpus_tfidf, num_topics=4, passes=20, id2word=dictionary)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[(0,\n", + " '0.010*targa + 0.007*ns + 0.006*thanks + 0.006*davidian + 0.006*ssrt + 0.006*yayayay + 0.005*craig + 0.005*bull + 0.005*gerald + 0.005*sorry'),\n", + " (1,\n", + " '0.011*god + 0.010*mary + 0.008*baptist + 0.008*islam + 0.006*zoroastrians + 0.006*joseph + 0.006*lucky + 0.006*khomeini + 0.006*samaritan + 0.005*crusades'),\n", + " (2,\n", + " '0.007*koresh + 0.007*moon + 0.007*western + 0.006*plane + 0.006*jeff + 0.006*unix + 0.005*bible + 0.005*also + 0.005*basically + 0.005*bob'),\n", + " (3,\n", + " '0.011*whatever + 0.008*joy + 0.007*happy + 0.006*virtual + 0.006*reality + 0.004*really + 0.003*samuel___ + 0.003*oh + 0.003*virtually + 0.003*toaster')]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check the topics\n", + "lda_model.print_topics(4)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[(0, 0.085176135689180726), (1, 0.6919655173835938), (2, 0.1377903468164027), (3, 0.0850680001108228)]\n" + ] + } + ], + "source": [ + "# check the lsa vector for the first document\n", + "corpus_lda = lda_model[corpus_tfidf]\n", + "print(corpus_lda[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('lord', 1), ('god', 2)]\n" + ] + } + ], + "source": [ + "#predict topics of a new doc\n", + "new_doc = \"God is love and God is the Lord\"\n", + "#transform into BOW space\n", + "bow_vector = dictionary.doc2bow(preprocess(new_doc))\n", + "print([(dictionary[id], count) for id, count in bow_vector])" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[(0, 0.062509420435514051), (1, 0.81246608790618835), (2, 0.062508281488992554), (3, 0.062516210169305114)]\n" + ] + } + ], + "source": [ + "#transform into LDA space\n", + "lda_vector = lda_model[bow_vector]\n", + "print(lda_vector)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.011*god + 0.010*mary + 0.008*baptist + 0.008*islam + 0.006*zoroastrians + 0.006*joseph + 0.006*lucky + 0.006*khomeini + 0.006*samaritan + 0.005*crusades\n" + ] + } + ], + "source": [ + "# print the document's single most prominent LDA topic\n", + "print(lda_model.print_topic(max(lda_vector, key=lambda item: item[1])[0]))" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[(0, 0.10392179866025079), (1, 0.68822094221870811), (2, 0.10391916429993264), (3, 0.10393809482110833)]\n", + "0.011*god + 0.010*mary + 0.008*baptist + 0.008*islam + 0.006*zoroastrians + 0.006*joseph + 0.006*lucky + 0.006*khomeini + 0.006*samaritan + 0.005*crusades\n" + ] + } + ], + "source": [ + "lda_vector_tfidf = lda_model[tfidf_model[bow_vector]]\n", + "print(lda_vector_tfidf)\n", + "# print the document's single most prominent LDA topic\n", + "print(lda_model.print_topic(max(lda_vector_tfidf, key=lambda item: item[1])[0]))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Latent Semantic Indexing (LSI)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from gensim.models.lsimodel import LsiModel\n", + "\n", + "#It takes a long time\n", + "\n", + "# train the lsi model, choosing number of topics equal to 20\n", + "\n", + "\n", + "lsi_model = LsiModel(corpus_tfidf, num_topics=4, id2word=dictionary)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[(0,\n", + " '0.769*\"god\" + 0.346*\"jesus\" + 0.235*\"bible\" + 0.204*\"christian\" + 0.149*\"christians\" + 0.107*\"christ\" + 0.090*\"well\" + 0.085*\"koresh\" + 0.081*\"kent\" + 0.080*\"christianity\"'),\n", + " (1,\n", + " '-0.863*\"thanks\" + -0.255*\"please\" + -0.159*\"hello\" + -0.153*\"hi\" + 0.123*\"god\" + -0.112*\"sorry\" + -0.087*\"could\" + -0.074*\"windows\" + -0.067*\"jpeg\" + -0.063*\"vga\"'),\n", + " (2,\n", + " '0.780*\"well\" + -0.229*\"god\" + 0.165*\"yes\" + -0.153*\"thanks\" + 0.133*\"ico\" + 0.133*\"tek\" + 0.130*\"bronx\" + 0.130*\"beauchaine\" + 0.130*\"queens\" + 0.129*\"manhattan\"'),\n", + " (3,\n", + " '0.340*\"well\" + -0.335*\"ico\" + -0.334*\"tek\" + -0.328*\"beauchaine\" + -0.328*\"bronx\" + -0.328*\"queens\" + -0.326*\"manhattan\" + -0.305*\"bob\" + -0.305*\"com\" + -0.072*\"god\"')]" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# check the topics\n", + "lsi_model.print_topics(4)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[(0, 0.1598114653031772), (1, 0.10438175896914427), (2, 0.5700978153855775), (3, 0.24093628445650234), (4, 0.722808853369507), (5, 0.24093628445650234)]\n" + ] + } + ], + "source": [ + "# check the lsi vector for the first document\n", + "print(corpus_tfidf[0])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# References" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* [NLTK Book. Natural Language Processing with Python. Steven Bird, Ewan Klein, and Edward Loper. O'Reilly Media, 2009 ](http://www.nltk.org/book_1ed/)\n", + "* [NLTK Essentials, Nitin Hardeniya, Packt Publishing, 2015](http://proquest.safaribooksonline.com/search?q=NLTK%20Essentials)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Licence" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "\n", + "© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/nlp/4_6_Combining_Features.ipynb b/nlp/4_6_Combining_Features.ipynb new file mode 100644 index 0000000..0014062 --- /dev/null +++ b/nlp/4_6_Combining_Features.ipynb @@ -0,0 +1,797 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](images/EscUpmPolit_p.gif \"UPM\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Course Notes for Learning Intelligent Systems" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Combining Features" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Table of Contents\n", + "* [Objectives](#Objectives)\n", + "* [Dataset](#Dataset)\n", + "* [Loading the dataset](#Loading-the-dataset)\n", + "* [Transformers](#Transformers)\n", + "* [Lexical features](#Lexical-features)\n", + "* [Syntactic features](#Syntactic-features)\n", + "* [Feature Extraction Pipelines](#Feature-Extraction-Pipelines)\n", + "* [Feature Union Pipeline](#Feature-Union-Pipeline)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Objectives" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the previous section we have seen how to analyse lexical, syntactic and semantic features. All these features can help in machine learning techniques.\n", + "\n", + "In this notebook we are going to learn how to combine them. \n", + "\n", + "There are several approaches for combining features, at character, lexical, syntactical, semantic or behavioural levels. \n", + "\n", + "Some authors obtain the different featuras as lists and then join these lists, a good example is shown [here](http://www.aicbt.com/authorship-attribution/) for authorship attribution. Other authors use *FeatureUnion* to join the different sparse matrices, as shown [here](http://es.slideshare.net/PyData/authorship-attribution-forensic-linguistics-with-python-scikit-learn-pandas-kostas-perifanos) and [here](http://zacstewart.com/2014/08/05/pipelines-of-featureunions-of-pipelines.html). Finally, other authors use FeatureUnions with weights, as shown in [scikit-learn documentation](http://scikit-learn.org/stable/auto_examples/hetero_feature_union.html).\n", + "\n", + "A *FeatureUnion* is built using a list of (key, value) pairs, where the key is the name you want to give to a given transformation (an arbitrary string; it only serves as an identifier) and value is an estimator object.\n", + "\n", + "In this chapter we are going to follow the combination of Pipelines and FeatureUnions, as described in scikit-learn, [Zac Stewart](http://zacstewart.com/2014/08/05/pipelines-of-featureunions-of-pipelines.html), his [Kaggle submission](https://github.com/zacstewart/kaggle_seeclickfix/blob/master/estimator.py), and [Michelle Fullwood](https://michelleful.github.io/code-blog/2015/06/20/pipelines/), since it provides a simple and structured approach." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We are going to use one [dataset from Kaggle](https://www.kaggle.com/c/asap-aes/) for automatic essay scoring, a very interesting area for teachers.\n", + "\n", + "The labeled data set consists of 50,000 IMDB movie reviews, specially selected for sentiment analysis. The sentiment of reviews is binary, meaning the IMDB rating < 5 results in a sentiment score of 0, and rating >=7 have a sentiment score of 1. No individual movie has more than 30 reviews. The 25,000 review labeled training set does not include any of the same movies as the 25,000 review test set. In addition, there are another 50,000 IMDB reviews provided without any rating labels.For this competition, there are eight essay sets. Each of the sets of essays was generated from a single prompt. Selected essays range from an average length of 150 to 550 words per response. Some of the essays are dependent upon source information and others are not. All responses were written by students ranging in grade levels from Grade 7 to Grade 10. All essays were hand graded and were double-scored. Each of the eight data sets has its own unique characteristics. The variability is intended to test the limits of your scoring engine's capabilities.\n", + "\n", + "Each of these files contains 28 columns:\n", + "\n", + "* essay_id: A unique identifier for each individual student essay\n", + "* essay_set: 1-8, an id for each set of essays\n", + "* essay: The ascii text of a student's response\n", + "* rater1_domain1: Rater 1's domain 1 score; all essays have this\n", + "* rater2_domain1: Rater 2's domain 1 score; all essays have this\n", + "* rater3_domain1: Rater 3's domain 1 score; only some essays in set 8 have this.\n", + "* domain1_score: Resolved score between the raters; all essays have this\n", + "* rater1_domain2: Rater 1's domain 2 score; only essays in set 2 have this\n", + "* rater2_domain2: Rater 2's domain 2 score; only essays in set 2 have this\n", + "* domain2_score: Resolved score between the raters; only essays in set 2 have this\n", + "* rater1_trait1 score - rater3_trait6 score: trait scores for sets 7-8\n", + "\n", + "The dataset is provided in the folder *data-kaggle/training_set_rel3.tsv*.\n", + "\n", + "There are cases in the training set that contain ???, \"illegible\", or \"not legible\" on some words. You may choose to discard them if you wish, and essays with illegible words will not be present in the validation or test sets.\n", + "\n", + "The dataset has been anonymized to remove personally identifying information from the essays using the Named Entity Recognizer (NER) from the Stanford Natural Language Processing group and a variety of other approaches. The relevant entities are identified in the text and then replaced with a string such as \"@PERSON1.\"\n", + "\n", + "The entitities identified by NER are: \"PERSON\", \"ORGANIZATION\", \"LOCATION\", \"DATE\", \"TIME\", \"MONEY\", \"PERCENT\"\n", + "\n", + "Other replacements made: \"MONTH\" (any month name not tagged as a date by the NER), \"EMAIL\" (anything that looks like an e-mail address), \"NUM\" (word containing digits or non-alphanumeric symbols), and \"CAPS\" (any capitalized word that doesn't begin a sentence, except in essays where more than 20% of the characters are capitalized letters), \"DR\" (any word following \"Dr.\" with or without the period, with any capitalization, that doesn't fall into any of the above), \"CITY\" and \"STATE\" (various cities and states)." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Loading the dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We will use Pandas to load the dataset. We will not go deeper in analysing the dataset, using the techniques already seen previously." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
essay_idessay_setessayrater1_domain1rater2_domain1rater3_domain1domain1_scorerater1_domain2rater2_domain2domain2_score...rater2_trait3rater2_trait4rater2_trait5rater2_trait6rater3_trait1rater3_trait2rater3_trait3rater3_trait4rater3_trait5rater3_trait6
011Dear local newspaper, I think effects computer...44NaN8NaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
121Dear @CAPS1 @CAPS2, I believe that using compu...54NaN9NaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
231Dear, @CAPS1 @CAPS2 @CAPS3 More and more peopl...43NaN7NaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
341Dear Local Newspaper, @CAPS1 I have found that...55NaN10NaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "

4 rows × 28 columns

\n", + "
" + ], + "text/plain": [ + " essay_id essay_set essay \\\n", + "0 1 1 Dear local newspaper, I think effects computer... \n", + "1 2 1 Dear @CAPS1 @CAPS2, I believe that using compu... \n", + "2 3 1 Dear, @CAPS1 @CAPS2 @CAPS3 More and more peopl... \n", + "3 4 1 Dear Local Newspaper, @CAPS1 I have found that... \n", + "\n", + " rater1_domain1 rater2_domain1 rater3_domain1 domain1_score \\\n", + "0 4 4 NaN 8 \n", + "1 5 4 NaN 9 \n", + "2 4 3 NaN 7 \n", + "3 5 5 NaN 10 \n", + "\n", + " rater1_domain2 rater2_domain2 domain2_score ... \\\n", + "0 NaN NaN NaN ... \n", + "1 NaN NaN NaN ... \n", + "2 NaN NaN NaN ... \n", + "3 NaN NaN NaN ... \n", + "\n", + " rater2_trait3 rater2_trait4 rater2_trait5 rater2_trait6 rater3_trait1 \\\n", + "0 NaN NaN NaN NaN NaN \n", + "1 NaN NaN NaN NaN NaN \n", + "2 NaN NaN NaN NaN NaN \n", + "3 NaN NaN NaN NaN NaN \n", + "\n", + " rater3_trait2 rater3_trait3 rater3_trait4 rater3_trait5 rater3_trait6 \n", + "0 NaN NaN NaN NaN NaN \n", + "1 NaN NaN NaN NaN NaN \n", + "2 NaN NaN NaN NaN NaN \n", + "3 NaN NaN NaN NaN NaN \n", + "\n", + "[4 rows x 28 columns]" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "# The files are coded in ISO-8859-1\n", + "\n", + "df_orig = pd.read_csv(\"data-essays/training_set_rel3.tsv\", encoding='ISO-8859-1', delimiter=\"\\t\", header=0)\n", + "df_orig[0:4]" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(12976, 28)" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_orig.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(1783, 3)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# We filter the data of the essay_set number 1, and we keep only two columns for this \n", + "# example\n", + "\n", + "df = df_orig[df_orig['essay_set'] == 1][['essay_id', 'essay', 'domain1_score']].copy()\n", + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
essay_idessaydomain1_score
01Dear local newspaper, I think effects computer...8
12Dear @CAPS1 @CAPS2, I believe that using compu...9
23Dear, @CAPS1 @CAPS2 @CAPS3 More and more peopl...7
34Dear Local Newspaper, @CAPS1 I have found that...10
45Dear @LOCATION1, I know having computers has a...8
\n", + "
" + ], + "text/plain": [ + " essay_id essay domain1_score\n", + "0 1 Dear local newspaper, I think effects computer... 8\n", + "1 2 Dear @CAPS1 @CAPS2, I believe that using compu... 9\n", + "2 3 Dear, @CAPS1 @CAPS2 @CAPS3 More and more peopl... 7\n", + "3 4 Dear Local Newspaper, @CAPS1 I have found that... 10\n", + "4 5 Dear @LOCATION1, I know having computers has a... 8" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[0:5]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# Define X and Y\n", + "X = df['essay'].values\n", + "y = df['domain1_score'].values" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Transformers" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Every feature extractor should be implemented as a custom Transformer. A transformer can be seen as an object that receives data, applies some changes, and returns the data, usually with the same same that the input. The methods we should implement are:\n", + "* *fit* method, in case we need to learn and train for extracting the feature\n", + "* *transform method*, that applies the defined transformation to unseen data" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now we show the general approach to develop transformers" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "# Generic Transformer \n", + "from sklearn.base import BaseEstimator, TransformerMixin\n", + "\n", + "class GenericTransformer(BaseEstimator, TransformerMixin):\n", + "\n", + " def transform(self, X, y=None):\n", + " return do_something_to(X, self.vars) # where the actual feature extraction happens\n", + "\n", + " def fit(self, X, y=None):\n", + " return self # used if the feature requires training, for example, clustering" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Scikit-learn provides a class [FunctionTransformer](http://scikit-learn.org/stable/modules/generated/sklearn.preprocessing.FunctionTransformer.html) that makes easy to create new transformers. We have to provide a function that is executed in the method transform()." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Lexical features" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we include some examples of lexical features. We have omitted character features (for example, number of exclamation marks)." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "# Sample of statistics using nltk\n", + "# Another option is defining a function and pass it as a parameter to FunctionTransformer\n", + "\n", + "from sklearn.base import BaseEstimator, TransformerMixin\n", + "from nltk.tokenize import sent_tokenize, word_tokenize\n", + "\n", + "class LexicalStats (BaseEstimator, TransformerMixin):\n", + " \"\"\"Extract lexical features from each document\"\"\"\n", + " \n", + " def number_sentences(self, doc):\n", + " sentences = sent_tokenize(doc, language='english')\n", + " return len(sentences)\n", + "\n", + " def fit(self, x, y=None):\n", + " return self\n", + "\n", + " def transform(self, docs):\n", + " return [{'length': len(doc),\n", + " 'num_sentences': self.number_sentences(doc)}\n", + " for doc in docs]\n", + "\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.base import BaseEstimator, TransformerMixin\n", + "from nltk.stem import PorterStemmer\n", + "from nltk import word_tokenize\n", + "from nltk.corpus import stopwords\n", + "import string\n", + "\n", + "def custom_tokenizer(words):\n", + " \"\"\"Preprocessing tokens as seen in the lexical notebook\"\"\"\n", + " tokens = word_tokenize(words.lower())\n", + " porter = PorterStemmer()\n", + " lemmas = [porter.stem(t) for t in tokens]\n", + " stoplist = stopwords.words('english')\n", + " lemmas_clean = [w for w in lemmas if w not in stoplist]\n", + " punctuation = set(string.punctuation)\n", + " lemmas_punct = [w for w in lemmas_clean if w not in punctuation]\n", + " return lemmas_punct" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Syntactic features" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we include and example of syntactic feature extraction." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.base import BaseEstimator, TransformerMixin\n", + "from nltk import pos_tag\n", + "from collections import Counter \n", + "\n", + "class PosStats(BaseEstimator, TransformerMixin):\n", + " \"\"\"Obtain number of tokens with POS categories\"\"\"\n", + "\n", + " def stats(self, doc):\n", + " tokens = custom_tokenizer(doc)\n", + " tagged = pos_tag(tokens, tagset='universal')\n", + " counts = Counter(tag for word,tag in tagged)\n", + " total = sum(counts.values())\n", + " #copy tags so that we return always the same number of features\n", + " pos_features = {'NOUN': 0, 'ADJ': 0, 'VERB': 0, 'ADV': 0, 'CONJ': 0, \n", + " 'ADP': 0, 'PRON':0, 'NUM': 0}\n", + " \n", + " pos_dic = dict((tag, float(count)/total) for tag,count in counts.items())\n", + " for k in pos_dic:\n", + " if k in pos_features:\n", + " pos_features[k] = pos_dic[k]\n", + " return pos_features\n", + " \n", + " def transform(self, docs, y=None):\n", + " return [self.stats(doc) for doc in docs]\n", + " \n", + " def fit(self, docs, y=None):\n", + " \"\"\"Returns `self` unless something different happens in train and test\"\"\"\n", + " return self" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Feature Extraction Pipelines" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We define Pipelines to extract the desired features.\n", + "\n", + "In case we want to apply different processing techniques to different part of the corpus (e.g. title or body or, ...), look [here](http://scikit-learn.org/stable/auto_examples/hetero_feature_union.html) for an example of how to extract and process the different parts into a Pipeline." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.pipeline import Pipeline, FeatureUnion\n", + "from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer, TfidfTransformer\n", + "\n", + "\n", + "ngrams_featurizer = Pipeline([\n", + " ('count_vectorizer', CountVectorizer(ngram_range = (1, 3), encoding = 'ISO-8859-1', \n", + " tokenizer=custom_tokenizer)),\n", + " ('tfidf_transformer', TfidfTransformer())\n", + "])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Feature Union Pipeline" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now we can ensemble the different pipelines to define which features we want to extract, how to combine them, and apply later machine learning techniques to the resulting feature set.\n", + "\n", + "In Feature Union we can pass either a pipeline or a transformer.\n", + "\n", + "The basic idea is:\n", + "* **Pipelines** consist of sequential steps: one step works on the results of the previous step\n", + "* ** FeatureUnions** consist of parallel tasks whose result is grouped when all have finished." + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scores in every iteration [ 0.39798206 0.27497194]\n", + "Accuracy: 0.34 (+/- 0.12)\n" + ] + } + ], + "source": [ + "from sklearn.naive_bayes import MultinomialNB\n", + "from sklearn.cross_validation import cross_val_score, KFold\n", + "from sklearn.metrics import classification_report\n", + "from sklearn.feature_extraction import DictVectorizer\n", + "from sklearn.preprocessing import FunctionTransformer\n", + "from sklearn.decomposition import NMF, LatentDirichletAllocation\n", + "\n", + "\n", + "\n", + "## All the steps of the Pipeline should end with a sparse vector as the input data\n", + "\n", + "pipeline = Pipeline([\n", + " ('features', FeatureUnion([\n", + " ('lexical_stats', Pipeline([\n", + " ('stats', LexicalStats()),\n", + " ('vectors', DictVectorizer())\n", + " ])),\n", + " ('words', TfidfVectorizer(tokenizer=custom_tokenizer)),\n", + " ('ngrams', ngrams_featurizer),\n", + " ('pos_stats', Pipeline([\n", + " ('pos_stats', PosStats()),\n", + " ('vectors', DictVectorizer())\n", + " ])),\n", + " ('lda', Pipeline([ \n", + " ('count', CountVectorizer(tokenizer=custom_tokenizer)),\n", + " ('lda', LatentDirichletAllocation(n_topics=4, max_iter=5,\n", + " learning_method='online', \n", + " learning_offset=50.,\n", + " random_state=0))\n", + " ])),\n", + " ])),\n", + " \n", + " ('clf', MultinomialNB(alpha=.01)) # classifier\n", + " ])\n", + "\n", + "# Using KFold validation\n", + "\n", + "cv = KFold(X.shape[0], 2, shuffle=True, random_state=33)\n", + "scores = cross_val_score(pipeline, X, y, cv=cv)\n", + "print(\"Scores in every iteration\", scores)\n", + "print(\"Accuracy: %0.2f (+/- %0.2f)\" % (scores.mean(), scores.std() * 2))" + ] + }, + { + "cell_type": "markdown", + "metadata": { + "collapsed": true + }, + "source": [ + "The result is not very good :(." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# References" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* [NLTK Book. Natural Language Processing with Python. Steven Bird, Ewan Klein, and Edward Loper. O'Reilly Media, 2009 ](http://www.nltk.org/book_1ed/)\n", + "* [NLTK Essentials, Nitin Hardeniya, Packt Publishing, 2015](http://proquest.safaribooksonline.com/search?q=NLTK%20Essentials)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Licence" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "\n", + "© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/nlp/4_7_Exercises.ipynb b/nlp/4_7_Exercises.ipynb new file mode 100644 index 0000000..2cce0e9 --- /dev/null +++ b/nlp/4_7_Exercises.ipynb @@ -0,0 +1,144 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![](images/EscUpmPolit_p.gif \"UPM\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Course Notes for Learning Intelligent Systems" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exercises" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Table of Contents\n", + "\n", + "* [Exercises](#Exercises)\n", + "\t* [Exercise 1 - Sentiment classification for Twitter](#Exercise-1---Sentiment-classification-for-Twitter)\n", + "\t* [Exercise 2 - Spam classification](#Exercise-2---Spam-classification)\n", + "\t* [Exercise 3 - Automatic essay classification](#Exercise-3---Automatic-essay-classification)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Exercises" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here we propose several exercises, it is recommended to work only in one of them." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exercise 1 - Sentiment classification for Twitter" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The purpose of this exercise is:\n", + "* Collect geolocated tweets\n", + "* Analyse their sentiment\n", + "* Represent the result in a map, so that one can understand the sentiment in a geographic region.\n", + "\n", + "The steps (and most of the code) can be found [here](http://pybonacci.org/2015/11/24/como-hacer-analisis-de-sentimiento-en-espanol-2/). \n", + "\n", + "You can select the tweets in any language." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exercise 2 - Spam classification" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The classification of spam is a classical problem. [Here](http://zacstewart.com/2015/04/28/document-classification-with-scikit-learn.html) you can find a detailed example of how to do it using the datasets Enron-Spama and SpamAssassin. You can try to test yourself the classification." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exercise 3 - Automatic essay classification" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As you have seen, we did not got great results in the previous notebook. You can try to improve them." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Licence" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n", + "\n", + "© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.5.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/nlp/data-essays/training_set_rel3.tsv b/nlp/data-essays/training_set_rel3.tsv new file mode 100644 index 0000000..40f909d --- /dev/null +++ b/nlp/data-essays/training_set_rel3.tsv @@ -0,0 +1,12979 @@ +essay_id essay_set essay rater1_domain1 rater2_domain1 rater3_domain1 domain1_score rater1_domain2 rater2_domain2 domain2_score rater1_trait1 rater1_trait2 rater1_trait3 rater1_trait4 rater1_trait5 rater1_trait6 rater2_trait1 rater2_trait2 rater2_trait3 rater2_trait4 rater2_trait5 rater2_trait6 rater3_trait1 rater3_trait2 rater3_trait3 rater3_trait4 rater3_trait5 rater3_trait6 +1 1 "Dear local newspaper, I think effects computers have on people are great learning skills/affects because they give us time to chat with friends/new people, helps us learn about the globe(astronomy) and keeps us out of troble! Thing about! Dont you think so? How would you feel if your teenager is always on the phone with friends! Do you ever time to chat with your friends or buisness partner about things. Well now - there's a new way to chat the computer, theirs plenty of sites on the internet to do so: @ORGANIZATION1, @ORGANIZATION2, @CAPS1, facebook, myspace ect. Just think now while your setting up meeting with your boss on the computer, your teenager is having fun on the phone not rushing to get off cause you want to use it. How did you learn about other countrys/states outside of yours? Well I have by computer/internet, it's a new way to learn about what going on in our time! You might think your child spends a lot of time on the computer, but ask them so question about the economy, sea floor spreading or even about the @DATE1's you'll be surprise at how much he/she knows. Believe it or not the computer is much interesting then in class all day reading out of books. If your child is home on your computer or at a local library, it's better than being out with friends being fresh, or being perpressured to doing something they know isnt right. You might not know where your child is, @CAPS2 forbidde in a hospital bed because of a drive-by. Rather than your child on the computer learning, chatting or just playing games, safe and sound in your home or community place. Now I hope you have reached a point to understand and agree with me, because computers can have great effects on you or child because it gives us time to chat with friends/new people, helps us learn about the globe and believe or not keeps us out of troble. Thank you for listening." 4 4 8 +2 1 "Dear @CAPS1 @CAPS2, I believe that using computers will benefit us in many ways like talking and becoming friends will others through websites like facebook and mysace. Using computers can help us find coordibates, locations, and able ourselfs to millions of information. Also computers will benefit us by helping with jobs as in planning a house plan and typing a @NUM1 page report for one of our jobs in less than writing it. Now lets go into the wonder world of technology. Using a computer will help us in life by talking or making friends on line. Many people have myspace, facebooks, aim, these all benefit us by having conversations with one another. Many people believe computers are bad but how can you make friends if you can never talk to them? I am very fortunate for having a computer that can help with not only school work but my social life and how I make friends. Computers help us with finding our locations, coordibates and millions of information online. If we didn't go on the internet a lot we wouldn't know how to go onto websites that @MONTH1 help us with locations and coordinates like @LOCATION1. Would you rather use a computer or be in @LOCATION3. When your supposed to be vacationing in @LOCATION2. Million of information is found on the internet. You can as almost every question and a computer will have it. Would you rather easily draw up a house plan on the computers or take @NUM1 hours doing one by hand with ugly erazer marks all over it, you are garrenteed that to find a job with a drawing like that. Also when appling for a job many workers must write very long papers like a @NUM3 word essay on why this job fits you the most, and many people I know don't like writing @NUM3 words non-stopp for hours when it could take them I hav an a computer. That is why computers we needed a lot now adays. I hope this essay has impacted your descion on computers because they are great machines to work with. The other day I showed my mom how to use a computer and she said it was the greatest invention sense sliced bread! Now go out and buy a computer to help you chat online with friends, find locations and millions of information on one click of the button and help your self with getting a job with neat, prepared, printed work that your boss will love." 5 4 9 +3 1 "Dear, @CAPS1 @CAPS2 @CAPS3 More and more people use computers, but not everyone agrees that this benefits society. Those who support advances in technology believe that computers have a positive effect on people. Others have different ideas. A great amount in the world today are using computers, some for work and spme for the fun of it. Computers is one of mans greatest accomplishments. Computers are helpful in so many ways, @CAPS4, news, and live streams. Don't get me wrong way to much people spend time on the computer and they should be out interacting with others but who are we to tell them what to do. When I grow up I want to be a author or a journalist and I know for a fact that both of those jobs involve lots of time on time on the computer, one @MONTH1 spend more time then the other but you know exactly what @CAPS5 getting at. So what if some expert think people are spending to much time on the computer and not exercising, enjoying natures and interacting with family and friends. For all the expert knows that its how must people make a living and we don't know why people choose to use the computer for a great amount of time and to be honest it's non of my concern and it shouldn't be the so called experts concern. People interact a thousand times a day on the computers. Computers keep lots of kids of the streets instead of being out and causing trouble. Computers helps the @ORGANIZATION1 locate most wanted criminals. As you can see computers are more useful to society then you think, computers benefit society." 4 3 7 +4 1 "Dear Local Newspaper, @CAPS1 I have found that many experts say that computers do not benifit our society. In some cases this is true but in most cases studdies show that computers can help people. While nothing beats talking in person computers can get really close such examples are webcams or e-mail. @PERCENT1 of students who get good grades refer to reliable websites for reasearch or to help find good books. Also online catalouges or advertisments help the economy of stores worldwide. @CAPS2 people were not allowed to use computers most of the modern would not exist. @PERSON1 said that the best form of modern communication is the computer because of the ability to write, talk, or write back for much cheaper! Almost every single event i go to is planed on a computer by communication such as e-mail ""@CAPS2 a student ever needs homework because lam out sick or needs help studying for a test then contact their teacher through the best form of communication for them always e-mail. Even the post office uses computers to get letters and boxes to people. The president of the post office, @PERSON2 said ""@CAPS3 would be imposible to get mail to our coustmers @CAPS2 @CAPS3 were not for computers telling us where a zip code is or how heavy a box is."" @CAPS4 that tell people what is happening around the world would not exist @CAPS2 @CAPS3 were not for the moder communication abilities that computer provid us. Because information can be commucated so quick. so can reasearch. When the country of @LOCATION2 took a pole @PERCENT2 of people used computer for any type of reasearch, of those @PERCENT3 were students currently in school and @PERCENT4 of them have good grades. When the same survey was taken in the @LOCATION1 @PERCENT5 of people used computers fore reasons and @PERCENT2 were students who had good grade @CAPS2 @CAPS3 were not posible for me to access documents in the @CAPS5 @CAPS6 online I probably would not have gotten an A+ on my @CAPS7 assignment! Could you amagine @CAPS2 suddenly your Newspaper reporters couldn't use the internet to work on their reports? The articles would probably be @NUM1 after the events occur. Most buissness, including the Newspaper, use the internet to advertise, shop, or read. The association of @ORGANIZATION1 reported that in @PERCENT1 of @ORGANIZATION1 used a website and of them @PERCENT5 were in good positions. The president of @CAPS8 @NUM2 imports said that they use an online catalouge because @CAPS3 is cheaper, but they can also promote that @CAPS3 is to save trees, or for the castomer's convinence. Small @ORGANIZATION1 can make websites to promote them selves and explain their star to potential coustomers. @PERSON3, the owner of @ORGANIZATION2's said that the internet saved her resturant. @CAPS2 @CAPS3 wer not for the internet @NUM3 more people would be jobless in @LOCATION3. In conclusion computer help everyday people and without them most convinences would not exist. They help communicate around the world. Computers help people reaserch subjects for school reports, and they make the current economy get better everyday. In moderation computers are the most useful tool out there." 5 5 10 +5 1 "Dear @LOCATION1, I know having computers has a positive effect on people. The computers connect families, contain information which is great for peoples education, and are very conveint. Computors are a step into the future and we should take advantage of it. First off the internet or e-mail will help family members connect. My family, which lives @NUM1 hours away by car, love to talk with me by e-mail. This helps me connect with my family and is just another reason why we should have computors. Another reason that includes family is when the family is just sitting around and are calling everywhere just to find a board game, it would just be easier to go online to find it. This way it would be quick and easy to find that one board game. The last reason why a computer would help a family is if a family wants to get in to any kinds of activities and they need the number they could just go online. On the internet the family could find the numbers, the and some information about it. This way more and more families can do activities together. As one can see the computer is bringing more and more families together. An other reason why the computers are good for society is educations. With information at the tip of your fingers more and more people will want to learn. Now a days people try to find the out, but will all the tools on the computers mae people get the education. Secondly computers are another way to go to collage. If you arn't up to going to school/collage because your sick. You wouldn't have to miss anything because with a click of a button you will have the materials needed for what was missed. Lastly everyone knows that in @LOCATION2 most classrooms can't afford one computer. The children want computors so hard. If they were to get one it would change so much. They would be able to learn so much more than before. The children could lean about different countries far away. As a result computers would improve the way we learn. The last reason why computers are so helpful is convience. Now a say the world is crazy, so if we don't have to go out or talk to someone we won't. The computer will offer the ability to confrence will other people so that there would be communication between work parttners. With the ability to talk with another for work would make us a lighter nation. This is only one of the many reasons computers are very conviente, subssiquently computers are conviente because you could book flights, vacations, rentals, and much more. With a click of a button you should be going to @CAPS1 or a nice vacation." 4 4 8 +6 1 "Dear @LOCATION1, I think that computers have a negative affect on us! How many people have acess to a camputer daily in america.. @NUM1 and how many people go on at least an hour a @NUM2. That means that @NUM3 people cant exercise are wasting many are have the posibility of physical @CAPS1 that sound good to you? Think of everything you done when you write a letter. I got up and got all the materials and sit back down. After In done writing have to put all the materials away and then put the letter in the mailbox and walk all the way back. Well this is what I had to do. Now think how you write an email sitdown and move your fingers. Do you see the difference? @CAPS2 instead of getting a good walk to your friends house to talk to you just in him/er. Did you know that you can literally but from on your computer. Instead of around with this that can add anything you your computer gives away information they information lead to that and then everthing you have wouldbe gone. All this so you can go online. Believe it or not, you can phisically get hurt for being on the computer, to long. @NUM4 thing is that when you at a computer @CAPS2 what happened to my grandpa is that when you are in a wood chair all day you can get ardthritis in your muscle @CAPS3 thing th." 4 4 8 +7 1 "Did you know that more and more people these days are depending on computers for their safety, natural education, and their social life? In my opinion, the increasing use of computers is not benefiting society. Initially, ones safety while using a computer is at risk. To begin, when someone is talking to another on a computer, they @MONTH1 never know who is at the other end of it. For example, @CAPS1 a small girl was playing a game on the computer and a person began talking to her, it could be a predator. She will never know unless they meet us somewhere. At this point, it maybe too late. Moreover, studies show that @PERCENT1 of people's information is more widely exposed in the last @NUM1 years due to the new chat websites. Such as myspace and facebook. In these websites, people share their information. With this, their safety is at risk. Finally, people should stop using computers as much as they are now, in order to keep their safety safe. Furthermore, enjoying nature is a must, in our world full of immense landscapes, wide waters, dense forests, and lush valleys. @CAPS1 you depend on your computer to teach you about the world, you should cease this use. One must actually be outside, experiencing the feel, the smell, and even the taste of nature. A recent study shows that people who actually went to the grand canyon could write a @NUM1 page essay on what they had learned. The people who didn't go and simply read information off their computer, could not write this much. Finally, society needs to back away from their computers, and stop into. Thirdly, a person's social life could be ruined from the use of computers for many reasons. One reasons for this could be that a person spends all their time on their computer instead of spending time with their family and friends. Sure, you can chat with people online, but that's nothing like chatting in person. There is no need to talk to a friend or family member online, when you could do it in person. Finally, @CAPS1 someone takes an embarrasing picture of you and puts it on their computer, it is there forever. Thus, you can lose friends, whether you're the person in the picture or the addict who put the picture on. With this, you can easily ruin your family/social life by using your computer too often. How would you feel @CAPS1 it was your fault that someone's safety is at risk? Wouldn't you rather enjoy nature in person instead of which it on your computer and not get the fall effect? Couldn't you talk to your friends and family in person rather than ignore them to use your computer? There are numerous ways in which the increasing rate of computer use does not benefit society. I encourage you to agree with me that computers can put one safety at risk decrease their education of nature and ruin their social life." 5 5 10 +8 1 "@PERCENT1 of people agree that computers make life less complicated. I also agree with this. Using computers teaches hand-eye coordination, gives people the ability to learn about faraway places and people, and lets people talk online with other people. I think that these are all very important. Why wouldn't you want to have strong hand-eye coordination? I think this a very important skill. Computers help teach hand-eye coordination and they keep it strong. While you're looking at the screen your hand is moving the mouse where you want it to go. Good hand-eye coordination is used for a lot of things; mostly everything. If you play some sports like baseball, hand-eye is one of the most important elements. Why not make that stronger off of the feild? Also, hand-eye can be used to @ORGANIZATION1 while taking notes. Hand-eye is involved with almost everything you do. you can't have a poor hand-eye coordination or else you won't be able to function properly. @NUM1 out of @NUM2 doctors agree that hand-eye very important for healthy living. "I love to travel, but I want to know about the place I'm going to before I get on the phone to go there." said @PERSON1, a science teacher at @ORGANIZATION1. He feels the way, I'm sure, a lot of people feel. They want to know about the place they are going to and they want it to be current. The computer has plenty information about a lot of different places in the world. Some books don't offer as much information or they need to be updated. Computers are also very good for learning about other cultures and traditions. No one wants to be ignorant right? People want to know what's going on in the world quick and easy. The computer does this. I remember when I was about @NUM2, our phone broke in our house. We couldn't go out and get one right away either. The only way we were able to communicate with our family and friends was by computer. The computer made it easier to e-mail everyone and tell them why we weren't answering our house phone. This happens more often than you think. People need to communicate through computer a lot. At work, if you need to talk to an employee or co-worker and you can't leave your desk, you can just e-mail the information to them. @NUM4 out of @NUM2 employees say that it is much faster and easier to e-mail information as opposed to talking them on the phone or in person. A lot of people agree that computer make life a lot easier. Computers teach hand-eye coordination and they let you communicate with other people. The most critical reason is that computers let people learn about faraway places and people. You can make a difference in the way people feel about computers. Write to your local newspaper. It's now or never!" 5 5 10 +9 1 "Dear reader, @ORGANIZATION1 has had a dramatic effect on human life. It has changed the way we do almost everything today. The most well know, is the computer. This device has allowed people do buy things online, talk to people online, and also provides entertainment for some people. All good qualities that make everyones lives easier. Imagine you look into your refrigerator and you notice it's almost empty. Someone is using the car and you need to go grocery shopping and the store is too far. What do you do? Well you could go on a computer and look for food online. Ther are many great deals and some companies even deliver for free! The amazing and easy way to buy food without leaving your house. But food isn't all you can purchase. Many products are sold through the computer. Need new toys for kids? Or how about a new hat for your friend? Maybe even more curtains for your room? Well at the easy access of internet on a computer, you can buy all those items and more. The computer has also the way of communication. Let's say someone wants to talk to a friend or relative that lives far away in another country. @CAPS1 someone dosen't own a phone or @CAPS1 they can't make the call, all these is to be in you on the computer. You can communicate with anyone just by using your email adress. Now friends and families can talk to each other over the ease of the computer. Just type to want to say and ""boom,"" instant, on the chat. Let's face it. No matter what a child or even teenager . But now with a computer all that can change. With just one click you could actually be watching a movie from the comfort of your own home. But what @CAPS1 you don't want a movie? No entertainment like listing to musics, watching fun, and probable the most popular playing games. Everyone loves to play a game every once in a while, and with the selection of thousands of online games, these isn't or person who can't fled atleast our game enjoyable. There are even games for educational fun that many kids love. With all the entertainment a computer can produce; who could hate it? All in all the computer is a revolutinizing device that has changes the way we shop, communicate, and find exciting entertainment. To be able to do so much with just a couple clicks; new that I find extravagant. It blows my mind to see and think, ""@CAPS1 we can do this now, I wonder what we can accomplish in the future." 4 5 9 +10 1 "In the @LOCATION1 we have the technology of a computer. Some say that the computers are good for the society. I disagree, I believe that it is bad for a few reasons. Some of the reasons are obesity, cramps, more sexual harrassment and even cyber bullying. First if people don't get off the computers and go out to exercise then it will cause obesity. Think of it this way, if you watch a kid that didn't have to go to school his entire life and he started off at @NUM1 pounds. The only thing the kid will want to do is play on the computer and he will gain weight. Next, tip-top-tip-top, that's all you hear when a kid is on the computer, @CAPS1 teens come home from school and go straight to the computer and don't get off about on a school night. These are the kids that are @CAPS1 likely to get bad cramps. they get the cramps form typing to fast, hard and too long. They also can get the cramps from just sitting down for to long then trying to get up but can't because it hurts to much to decide to move anywhere. There's also a lot more of sexual harassment that is going on some kids goin to a chat room to talk to their friends about some great news, but when they get out of the chat room they are all mad and pissed off. The reason is because someone was making fun of them and they didn't like it. This happens maybe close to @PERCENT1 of the time that teens and even parents go into chat rooms online. This is the third reason on why computers have an huge effect on people. The last reason that computers have a huge effect on people is because of cyberbullying. cyberbullying is when someone bullies you but just online instead. Have you realized that children became poor or sick because they dont want to be hurt or killed over something very stupid? Well, I have and it's not nice, and now the god thing is if a kid goes to school online he/she @MONTH1 get cyberbullied because he's not smart enough or if he/she don't have the money to go to school. The cyberbullying normally occures in a chat room online. There is where all of the family will either become broke with no money or food. They @MONTH1 even lose their kid or the house that they live in because someone wanted to act all big and bad to be popular in school. In conclusion, these are only a few ways that computers effects people. The obesity, cramps, sexual harrassment and cyberbullying are not a joke and it's not fun to get done to you. Now it's your turn to tell us what you think about the computers. Do you think computers are good and benefits society or is it bad a rot little kids brains to make their lives horrible for them to live with?" 5 4 9 +11 1 "Dear @LOCATION1, @CAPS1 people acknowledge the great advances that computers give us, but they also put us at @CAPS1 disadvantages. Computers have been known to help develop health issues. As people become more intune with the online world, they tend to interact with their family less. Don't forget the danger of online predators - they're deadly. @CAPS1 people who do nothing, but watch television are often refered to as cauch potatoes. Those who are glued to their computer screens are no better. It is stated by numerous of @LOCATION2's top doctors that too much time spent on the computer can cause damage to your health. Exercise is highly stressed by doctors around the globe and the only exercise a computer addict will be doing is typing up a storm. They can submerge themselves into obesity. This often causes depression as it begins to sink in. Addition itself is a serious health issue. I wouldn't be surprised if they add a computer wing to rehab centers sometime in the near future. These problems are slowly spreading and we must come together to abolish them! Family time is an treasured value, to the @CAPS2 people, but lately, computers are ruining this tradition. With so @CAPS1 people absorbed with online drama, friends, and even video games, family interaction is declining. People slowly remove themselves from reality and enter an alternate world of cyberspace. They @MONTH1 only emerge from their rooms to use the bathroom and eat, scarcely resting. This can cause great tension or sorrow in @CAPS1 families. Who can erase the horrifying stories of abduction from their memories? Online predators are highly dangerous and extremely clever. Your children could be talking to someone they believe is another teenager looking for a friend to console in when, really, they are a forty-year-old serial killer waiting to find the right time to attack. Studies show that one fourth of online users have had an encounter with a dangerous person." 4 4 8 +12 1 Dear @CAPS1 @CAPS2 I feel that computers do take away from peoples life and arent as important than the other factors of life. First of all you know that the world is becoming obease because of lack of exercise. Also people don't realize that @CAPS3 warming is becomeing a big problum. Finally familys arn't as close as they used to be. these are all the reasons why computers arn't important to human socioty. First of the world is becomeing obease and cumputers play a huge part in this. Computers don't make people exercise they basicly just sit down on there couch and use the computer this won't help amarica get back into shape. Also computers become a habbit if a person uses a computer everyday of there life it will become an addiction then they won't be able to stop. Finally when people use the computer they don't realize the lack exersise there getting. This is the first reason why computeres are a bad thing. Next @CAPS3 warming is mealting the polar ice caps. Computers play a part in @CAPS3 warming because they use electricty and thjen the electrisity melts the polar ice caps. If this keeps happining then they will all melt and we will not have a shorline and half of the world will be fluded. Finally computers play a huge part in @CAPS3 warming because of the fact that they are so popular. This is another reason why computers are bad. Finally the last reason why computers are bad is because they take away from your family life. For instance there are more and more familys splitting up now and sientest sat that @PERCENT1 of the time it's because of technolagy. When on peroson is on the computer the other people feel that they love the computer more than they love themselfs. Then they split up for good. This is the last reason why I feel computers are bad. In conclution you can see that computeres are a bad thing. First of all you can see that amarica is becomeing obease because of the computers. Also computers are causeing @CAPS3 warming and are eventually goung to flood the earth. And last but not least computers take away from peoples family life and cause them to split up and become unhappy. These are all the reasons why computers are bad. 4 4 8 +13 1 Dear local newspaper I raed ur argument on the computers and I think they are a positive effect on people. The first reson I think they are a good effect is because you can do so much with them like if you live in mane and ur cuzin lives in califan you and him could have a wed chat. The second thing you could do is look up news any were in the world you could be stuck on a plane and it would be vary boring when you can take but ur computer and go on ur computer at work and start doing work. When you said it takes away from exirsis well some people use the computer for that too to chart how fast they run or how meny miles they want and sometimes what they eat. The thrid reson is some peolpe jobs are on the computers or making computers for exmple when you made this artical you didnt use a type writer you used a computer and printed it out if we didnt have computers it would make ur @CAPS1 a lot harder. Thank you for reading and whe you are thinking adout it agen pleas consiter my thrie resons. 4 3 7 +14 1 My three detaileds for this news paper article is one state you opinion about the effects of computers. Seconde give detailed resons that will persuade of the local newspaper to agree with yor postition. This are my three ideas to the news paper article. To bigin my opinion about the computer effects are wast time. Many people wast time computers like fat people insted by insted by in the computer go and run or exercising. Insted be computer go out ur girlfriend or family or family or friends to have fun. So be incomputer to long is bad many kids wach bad stuff like for adults. Is good to be in computer but not to long. To start you shod agree with me becasue my detailed and my reason. My resons are many airs the bas stuff like porn. Many kids wach that it ruins ther mainly and the futur. They get addicted to that watching. So people that use computer for good stuff its old for mids for good ganes of good. This are my detailed and resons for yor with me. To bigin and going to organize my ideas and well and present them clearly. It good to be at the computer but not the long insted go out plat and exersus. abd yor can enjoy life insted be in computer. The bad things many kids wach bad stuff and cmputer has relly bad staff. The computer is use for evrye thing this days. This how organize my ideas. In conclusion this are my ideas for the news papaer. Ols I state my opinion on computer effects. I give detailed and resons that will persuade local news paper and to agree with me. Think I organize my ideas as much present them clearly. This are my ideas so could new papaer to se computers effects. 3 3 6 +15 1 "Dear, In this world today we should have everyone useing computers. Computers have a positive effect on people. They teach hand-eye coordination, give people the ability to learn about faraway places and people, and even allow people to talk online with other people. Today computers are like the worlds biggest book of knowledge. everything you need to know is in a computer. You can look up faraway places, and zap theres everything you need to know write in front of you. Computers are fast and easy, everyone can use them. Today kids are so addicted to computers everyday they are on them. There are so many websites that kids and teens go on, like @CAPS1, and facebook ect. on these websites kids as young as ten years old are chatting with friends and putting up pictures. Thers is also webchat websites that allow you to use a webcame and talk to people anywhere in the world. Computers are a great way to get in touch with people. Everyone should have a computer in there home today." 3 3 6 +16 1 "Dear @ORGANIZATION1, The computer blinked to life and an image of a blonde haired girl filled the screen. It was easy to find out how life was in @LOCATION2, thanks to the actual @CAPS1 girl explaining it. Going to the library wouldn't have filled one with this priceless information and human interection. Computers are a nessessity of life if soceity wishes to grow and expand. They should be supported because they teach hand eye coordination, give people the ability to learn about faraway places, and allow people to talk to others online. Firstly, computers help teach hand eye coordination. Hand-eye coordination is a useful ability that is usod to excel in sports. In a recent survey, @PERCENT1 of kids felt their hand eye coordination improves after computer use. Even a simple thing like tying can build up this skill. Famous neurologist @CAPS2 @PERSON1 stated in an article last week that, ""@CAPS3 and computer strength the @CAPS2. When on the computer, you automatically process what the eyes see into a command for your hands."" @CAPS4 hand eye coordination can improve people in sports such as baseball and basketball. If someone wan't to become better in these sports, all they'd need to do was turn on the computer. Once people become better at sports, they're more likely to play them and become more healthy. In reality, computers can help with exercising instead of decreasing it. Additionaly, computers allow people to access information about faraway places and people. If someone wanted to reasearch @LOCATION1, all they'd need to do was type in a search would be presented to them in it would link forever to search through countless things. Also, having the ability to learn about cultures can make peole peole and their cultures, they understand others something. Increase tolerance people are. Computers are a resourceful tool that they can help people in every different aspect of life. Lastly, computer and in technology can allow people to chat. Computer chat and video chat can help the all different nations. Bring on good terms places other than can help us understand story comes out about something that happend in @LOCATION3, people can just go on their computer and ask an actual @LOCATION3 citizen their take on the matter. Also, video chat and online conversation can cut down on expensive phone bills. No one wants to pay more than they have to in this economy. Another good point is that you can acess family members you scaresly visit. It can help you connect within your own family more. Oviously, computers are a useful aid in todays era. their advancements push the world foreward to a better place. Computers can help people because they help teach handeye coordination, give people the bility to learn about faraway places and people, and allow people to talk online with others. Think of a world with no computers or technologicall advancements. The world would be sectored and unified, contact between people scare, and information even. The internet is like thousands or librarys put together. Nobody would know much about other nations and news would travel slower. Is that the kind of palce you want people to live in?" 6 6 12 +17 1 "Dear Local Newspaper, I belive that computers have a negative effect on peoples lives. I belive this because who spend to much time on the computer don't get out as much as they should, don't spend enough time with their family, and the computer can't do everything. My first reason is I belive that people need to get out more. When they don't get out, they don't exersise and that is very unhealthy. Instead of watching the games or the scores they should get out and play the game. I also belive that they should enjoy nature because I feel like they are wasting the beauty of nature all around them. We wouldn't want to waste our abilities and privalges would we? Another reason is that they do not spend enough time with family. If you have family near you, then you should take advantage of that and interact with one another. You can have fun with your family by playing games. You can also have fun by just hanging out, which boost your social skills and the computer can't always do that, which brings me to my next point. The computer can't do everything, so take advantage of what you have now. Some computer time is fine, but it can be very dangerous by getting addictted to it. The computer @MONTH1 have lots of information, but there is nothing that you can't find in a book. Your computer can't love your dog, so there is a reason why we should get off the computer. There are pleanty of other things that you can do that you can't do on the computer, including sports, taking care of family, and any of your hobbys. Remember that the computer @MONTH1 be great from time to time, but it can not live your life for you. That is why I belive that we should spend less time on the computer, and more time getting out, and having fun with family, and that the the computer can't do everything." 4 4 8 +18 1 "Dear Local Newspaper, I must admit that the experts are centainly right cause I know people that stay on the computer all day and thats really not good if you ask me. Instead of being on computers learning about faraway places, and talking to other people, you should go exercising, you should relax, and you should interact with family and friends. Exercising is much more better than being on a computer, and I say that to say this. When your on a computer just sitting there playing online games and checking other things out, or whatever the case @MONTH1 be, you get board, and hungry, and I know theres some snacks around you while your doing whatever your doing. Instead of being on a computer for @NUM1 or @NUM2 hours or maybe even all day getting fat. There are many ways you can exercise. You can take walks, you can go joggin, you could play a sport, I mean there are a lot of things you can do when your not on a computer. I know some people that could be workin all day and still come home to there computer. Rest is good also. You don't always have to jump on your computer, you could just relax watch a movie, eat some pop corn and just enjoy yourself, you could even take a nap for a little while or something but you don't always have to get straight on your computer if you really don't have to use it. The way I see it is family, and computers are always going to be there but at the same time which one is more important. Friends aren't always dependable so you really don't need them around only a selected few, but thats not the point. Both family, and your true friends have feelings, and if your not spending time with them over a computer that your gonna have when you leave, and come back home too something isn't right. Tomorrow isn't promised, we live for today. So enjoy life while you got the chance, and spend time doing something active, with family and friends, and if your really into computers, try to balance your time out." 4 4 8 +19 1 I aegre waf the evansmant ov tnachnolage. The evansmant ov tnachnolige is being to halp fined a kohar froi alnsas. Tnanchnolage waf ont ot we wod not go to the moon. Tnachnologe evans as we maech at. The people are in tnacholege to the frchr fror the good ov live. Famas invanyor ues tnacholage leki lena orde dvanse and his fling mashine. Tnachologe is the grat 2 2 4 +20 1 "Well computers can be a good or a bad thing. I don'@CAPS1 realy see @CAPS2 computers can be a bad thing for me. I also know @CAPS2 computers can or will help people all around the world. I think computers has positive effects on people like me. Computers teaches hand-eye coordination. It can help if you need to find out reasearch for a school project. You can create lots of things on computers like music, desiner @CAPS1-shirts, logos, banners and lots of other creative things. With computer you can look up available homes and apartments. You can even go online and fill out a job application and save trips to stores @CAPS2 cool is that!! Well im a regular person not rich not famous but computers provide lot of information people use today. Thats why I think that computers has a positive effects on people and you don'@CAPS1 have to be super smart to use one." 3 3 6 +21 1 "Dear @CAPS1 of the @CAPS2 @CAPS3 daily, I am writing you to address the issue of computers in our society today. Each day new discoverys are made from the people that use computers in our society, however many people say that computers are harmful to are communtiy. Today I am going to convince you and society that computers are not as much as on issue as some people say they are. To begin with discoverys in our nation have been advancing rapidly. Each day new discoverys are benefiting our society however they are only being made possible by the help of computers. Without computers some for dieseases would have never been discovered and more people. Would have died. Secondly, computers have also increased medical care and have been the cave between life or death. Finnaly, computers help speed up production rates of cars household neccessitys, and many more objects. Have you ever been bored at home and looking for something to do on that dark, rainy, chilly night? Yes, exactly what I thought well the new technology advances in social-networking can even help the most bored and lonelyest people and give them something to do. Even if your just looking to talk to someone you can easily do that on the internet. So you people out there looking for that special someone will always be able to look somewhere. With all the social networks like twitter, myspace, facebook, and youtube you will always have something to do. During this economic recestion it seems that finding a job is so hard, however the internet comes to the rescue yet again. The internet can help you find a job twice if not three times as fast. Many people also speed up their word by using the computer. With microsoft things are lot easier to do work that you need to make up I hope that everyone can understand how much the computer help you, rather then hurt you. @CAPS1 of the newspaper, I hope you and the rest of the community can see that computer help you more that they hurt you. Thank you very much for your time and effort that you put in to listen to me." 4 4 8 +22 1 Dear local Newspaper @CAPS1 a take all your computer and given to the people around the world for the can stay in their houses chating with their family and friend. Computers help people around the world to connect with other people computer help kids do their homework and look up staff that happen around the world. 2 1 3 +23 1 "Dear local newspaper, @CAPS1 you ever see a child on the computer for hours and nothing could get them off? Well I believe that this is very harmful for the child since it doesn't allow them to exersice, interact face to face with people or use their minds to the best of their @NUM1. The more and more we advance in society we get laziar and forget to about these essential things. I think taking a step back from using computers could benefit society more than using them. Obesity in the @LOCATION2 is at its highest @PERCENT1 of kids in the @LOCATION3 agree that they only exersice once a week and would rather spend time on the computer. Think of this, @PERCENT1 of kids. Thats more than @NUM2 of @CAPS2 children. I took the and compared it in @CAPS3 children who don't the benefit of this technology. I learned that @PERCENT1 of children there exersice only once a week. That's for less what these computers are doing to @LOCATION3 @PERCENT2 of children are overweight and @PERCENT3 of them develope heart of blood problems as adults. I by exercise in to go and play with friends or bike, or go for a jog. It doesn't sound hard does it? If we make a to spend this than on computers I think we can reduce this obesity amount and I believe @CAPS2 ran as on overall country. On the computer we have popular websites like @CAPS5, @CAPS6, and @CAPS7. More websites allow you interact with people over the island. This could be in more ways than one. These computer websites are allowing anyone to talk in people who could have the interest in mind. More than @NUM3 out of @NUM4 people in my school say they have one of these accounts and have personal posted on them. With this personal info, could and with these websites the crime rate has gone up @PERCENT4. Also, these websites cause people to their social skills. People spend hours on these websites talking to people and forget how to talk face to face. @PERCENT2 of @LOCATION1 students say they would say something online that they wouldn't say to someone's face. This creates more problems in schools and could possibly make someone hurt someone else or themselves. I've heard all over the news about suicides and because of computers and I believe with less of them people would spend more time with their family and or nation would be closer and safer. Computers dont allow you to explore nature and use your mind to the best of its ability. Computers make it easy and I myself, think it makes me laziar because it allow me to read a book there or read about other people, instead of going to a library and getting a book. Computers take away time to actually use your mind and problem solve in real life solution. There's years and I've learned I can be on the computer for hours playing them and not realize it at all. Without them, would make a difference. Kids are living through computers and we can change them." 5 5 10 +24 1 "Dear local newspaper, I've heard that not many people think computers benefit society. I disagree with that. Computers benefit society by teaching hand-eye coordination, allowing people to learn about foregin places, and allow people to communicate with others online. Some people were basically born with hand-eye coordination, but most people weren't, like me, for example. But, thanks to computers, my hand-eye coordination has gone up! ""On average, computers can increase a persons hand-eye coordination by up to @PERCENT1 says @PERSON2. Think of it, just by learning to tye, your hand-eye coordination can go up @PERCENT1.! That's amazing! Having good hand-eye coordination will get you far in life, and helps with small, everyday things such as playing an instrument, or doing household chores. It also helps in sports. You need good hand-eye coordination to throw, catch, and aim. If more people spend more time on the computer, then the population's hand-eye coordination would increase, and who wouldn't want thats. Have you ever heard of @LOCATION1? It is a country in @LOCATION2 that no one really knows much about. By looking it up on the computer, you can become an expert on the country! The computer gives us access to a lot of knowledge, and will make us more of people around the world. This can improve our travel. Instead of going to the same place every vacation, you can go to a place you saw online that looks just as exciting. Also, by learning about other countries and the people in them, we gain respect for them. We @MONTH1 also learn about their traditions, and culture. ""The internet gives us access to the world,"" says @PERSON1, ""we can learn so many new things that will make us more of people, countries, and the environment."" @CAPS1 is right, we can also be aware of the environment. Since global warming is a problem, we can learn how o preserve foreign places by learning about them on the internet. With a click of a mouse you can virtually have the whose world at your fingertips! In a recent study @PERCENT2 of people said they don't have time to meet with old friends. The internet, however has made it quick and easy to talk to people online. Websites like @CAPS2, @CAPS3, and @CAPS4 can keep your social life in tact, and can even reunite yu with old friends. For example, @CAPS2 suggest family. You can keep in touch wih many people trough @CAPS2! Also, you can make new friends. Most teens say they are always willing to meet new people, and the internet is a great way to do so! Sites like @CAPS7, and @CAPS8 can can help you find friends by connecting you in a chat room to a random person, just to talk. I once talked with someone on @CAPS7 for over an hour! We found that we both have @CAPS4 accounts and keep in touch there! This also helps you gain confidence because you @MONTH1 have the courage to say something over the computer that you would't say real life. The computer can really amp up your social life. As you can see. computers don't just ""your barain,"" they imprdove hand-eye coordination, help you learn about far away places, and improve your social life by allowing you to talk to others. Computers benefit the society more than anymore will ever know!" 6 5 11 +25 1 "Dear @CAPS1, @CAPS2 off, I beileve that computers are very helpfull to many people by looking up information, or talking to friends. Although many kids should be spending their time outside, the computer is a well-occupied environment that helps kids learn and interact with others. I believe kids should have the right to stay on the computer as long as they desire. Although, they should always make time go outside, hang out with friends, ect. The computer @MONTH1 be fun but its always important to get outside and enjoy nature. Another reason why students should not spend all their time on the computer is because of their health. If a child gets addicted to the computer it will affect how he interacts with other and @MONTH1 do serious damage to their brain. Although, I believe children should have the right on the computer, it's always important to spend time outside enjoying nature. Another reason why I think children should have the right to the computer is because of the information they learn and discover. Many kids grow up to have a career in computer makings or program designing. Some kids @MONTH1 have their education online or to teach others. The computer is a non-stop generation of intelligence based to help people learn, play and discover. Many people have dream to one day build a computer or make new programs. All students should have the right to spend time on the computer but also to save time to spend outside and with friends. Everyone has their own perspective on how they think and if staying on the computer all day is a good thing. I do not think kids should do this because it might affect their health and how other think of them." 4 4 8 +26 1 "Do you think that computers are useless? Or do you think they could be useful in many ways? I remember @CAPS4 my older sister had to do some research on @CAPS1, the computer gave her all of the information she needed. The issue to grapple with is, more and more people use computers, but not everyone agrees that this benefits society. I strongly think that @CAPS2 does benifit society in many ways! Heres why, the computer allows you to get in touch with friends, research people, places or things, and relax and enjoy playing on a fun, entertaining website! My first reason is that @CAPS2 allows you to talk to family or friends so you all get back in touch if a friend of yours moved to a diffrent state, then you can easily get back in touch straight from the computer. ""@CAPS2's nice to send emails or pictures to friends, but if you do @CAPS2 from the computer then @CAPS2 gets done so much faster!"" @CAPS3 @PERSON1, one of my neighbors. My next reason is that you can research anything you want like people, places or things and all refferances will come up. @CAPS2 is good to research for any projects, or school assignments you @MONTH1 have. I remember @CAPS4 my brother was working on his project. Everything he had trouble with, he found directly on the computer! My final reason is that there are alot of fun and exciting websites that you can relax and play on! These websites can keep you busy, and you wont be bored while playing! ""@CAPS4 im bored I go on the computer and play games, that I find on @CAPS5.com,"" @CAPS3 my younger cousin, @PERSON2. Computers @MONTH1 make people become adicted to them. Yes but, you will be learning some interesting things on how the internet works. More and more people use computers, but not everyone agrees that this benefits society. I strongly beleive that they do benefit society, heres why you can get in touch with people, you can research, and play fun games! @CAPS2's now or never to decide what you think! Call me and we will talk this through." 5 4 9 +27 1 "Computers a good because you can get infermation, you can play games, you can get pictures, But when you on the computer you might find something or someone that is bad or is viris. If ther is a vris you might want shut off the computers so it does not get worse. The are websites for kids, like games, there are teen games, there are adult games. Also pictures are bad for kids because most of the time they lead to inapropreit pictures. You should only look up infermation that you need not things like wepons or knifes. Also there are differnt kinds of companies like @CAPS1&t @CAPS2. @CAPS2 is a good place to get computers @CAPS1 so is @CAPS1&t." 2 2 4 +28 1 "Dear Newspaper, Computers are high tec and have expanded in an everyday thing. They play a big role in society. Computers have been improved to do many different things without them we would barely get any thing done. Although kids should start goind outside more, computers teaches kids new things, and it is useful. With computers kids are rarely going outside. A lot of our population of the @LOCATION1 are obese, including kids. Because of this they are staying inside and on their computer. Kids need to go outside evry once and while to get some fresh air and exercise. If they limit their time on the computer and do some active game it would be better for the child. Since computers are rapidly growing and adapting kids spend half of the day on it just stareing at the screen playing some flash game, like run escape. Instead of wasteing their time doing that they should go outside, take a walk just do something! Computers teaches kids new things. Google something like trees. You would get bunch of websites containg information about trees. Kids also play games, if they don't know it, some of the games they play are teaching them stuff, for an example, my little sister, goes on a site called nickeloden.com I see that right and it teaches her stuff she didn't know before. from those types of games it prepared her for kindergarden. Now a days more and more sites keep adapting and becoming known like bing. Computers are real useful. suppose you want to know whats goind on at work. So click your mouse on internet explorer and get your email. With computers, you could go on social networking sites, like facebook and connect with friends. You can also go on instant messageing site to talk to friends and see what there up to. For your entertainment you could play games. Remember though to not stay on too long. Computers are big deal in our community. Life would be very difficult without them. But remember not to stay on too long! Although kids should start going outside, computers, teaches kids new things, and is useful." 5 4 9 +29 1 "Dear local newspaper, @CAPS1 people throughout the world use, or own computers. Although there are @CAPS1 people who think computers are good for you, others could say different. While you are on the computer you can become more socal by talking with friends or family. Also, while you are on the computer you @MONTH1 not notice it but; your hand-eye coordination is improving, and finally, you are able to search with a click of a button, instead of searching your topic through dozens of books. Computers have very @CAPS1 benefits. One being chating, or talking online to friends, and family. You @MONTH1 have a distant friend that you haven't talked to in a while. With a computre you are able to re connect with your buddy. If you have an acount that is safe to chat on, you @MONTH1 be able to make new friends. That would be good for you, socally. It is always good to have friends, and stay in touch with family. Some people find it hard to play a piano because they cannot look at the music and have their hands be doing something else. On a computre your hand-eye-coordination improves over time because, you are searching a topic as your hands are typing. Also, this is a great memory excirsise for your fingers. You eventually memorize where all of the keys are located. People without computres have to search through @CAPS1 books to find information on their topic. Others with computers, just have to type in their topic and all the information they need is right infront of them. You are able to see pictures of your topic or even video's! Not @CAPS1 books that I know, can search a topic, show you pictures, and videos of it with one resource! @CAPS1 people debate the fact if computres are good for you or not. If you ask me, computres are great for people. It allows people to be socal, and talk to old friends; it also improves your hand-eye coordination, and finally; it gives you the option to search a topic without all the hastle of searching through dozens of books. So now the question is up to you; are computers good for people, or not?" 5 4 9 +30 1 "Dear Newspaper People, I think that computers do benefit society for a few reasons. Computers make work easier they can do things people can't like solve difficult problems, and kids like playing games on them. Computers make work easier and neater. Typing is often faster than writing, and is always easier to read. Studies have also shown that people who use computers to do work finish faster and have up to @PERCENT1 more free time to do whatever they want. Computers also have e-mail, which allows you to send work that you have done to your boss without printing it and wasting paper. Computers can solve difficult problems that people either can't do, or don't want to waste their time doing. If you need to solve a math problem you use a calculated or a computer. So you don't have to figure it out yourself. I have to do a lot of math problems for homework and I think it is much easier to use a calculator. My last reason why computers are good is that kids like playing games on them. A lot of people say that kids shouldn't play computer games but some of them are educational. Even non-educational games help kids to have fun and have something to look forward to after their work is done. @PERCENT2 of kids say that they are happier when they have something fun to look forward to, and happier kids do better work. I hope that after reading this you will understand how much computers contribute to society." 4 4 8 +31 1 "I agree that computers deffinately are an advantage to our society. I think this because they help us communicate and video chat with family and friends online, used as a great tool with school work, or work purposes. Most of all for the enjoyment of children and now the fun computer games help them prepare for real life consequences,like how the game webkinz teaches kids to care for pets. ""@CAPS1 you have a @CAPS2?"" @CAPS3 @CAPS4, my @CAPS5. ""@CAPS6, please friend request me"", I replied. Later that night, I get home and check my @CAPS2, a new notification pops up and I am now friends with my @CAPS5 @CAPS4. My entire family is on @CAPS2 and I think it's so usefull for several reasons, like making plans and parties. I hate writing invitations, but now every year for my birthday party I just type them up, taking less than five minutes. Or, for an even simpler way of sending invatations you can even just type an email or @CAPS2 message. In fact, I just got invited to a party yesterday over @CAPS2. It's so easy, you just create an event and tag all of your friends in the note. Also, it's so easy to get @CAPS13's because you automatically get notified. Technology like this drastically makes life easier. For example, have you ever gotten something new and just can't wait to show your friends? Well, now you can, in the comfort of your own home. All you need is a webcam and you can instantly connect with one of your friends that have one too. ""@CAPS14, @PERSON1! I love what you've done to your room, the pink wallpaper is so cute!"" I said. ""@CAPS15 you! I love your hair today. It's so pretty,"" says @PERSON1. I love webcamming with my friends because you can see and hear them as if they were in the same exact you. As you can see, webcamming is so much easier than spending more time money, and my moms time and getting a ride over her house. Computers make life so much more convienent. Another example how this is so much easier is now computers help you with school work. Have you ever had to write a report? Well, now many times teachers especially enjoy them typed because many students have messy hand writing and most kids won't like writing it anyways. Like myself, I type faster than I write and that's why I agree @PERCENT1 that computers benefit society. Most importantly, computers can help you find a good job online and even help type a great resume for you. How impressive would that be? If I was applying for a professional position of a job, I know I'll type my resume. In conclusion, that's how computers are so helpful, beneficial, important and fun to our society." 4 6 10 +32 1 "Dear Local Newspaper, @CAPS1 name is @PERSON1 and I am a @ORGANIZATION1 citizen. I believe that computers do NOT benefit society of all! In @CAPS1 opinion, they make our town worse. People spend way too much time on their computers and less time exercising, enjoying nature, and interacting with family and friends. All of these things are @CAPS3 computers are doing to our society and it's time to make a stop to it! First of all, people are on the computer way too much. Teens are on social networking sites, adults are on chatrooms, and kids are playing computer games. Instead of that, people should be playing outside, or going for a walk in the park. Did you know that @PERCENT1 of adults are overweight? If people cut back the amount of time indoors, we could probably bring that number way down. Also, who knows @CAPS3 teens are doing on the computer. Computers have good things but they can also be bad. For example, chatrooms who knows @CAPS3 kind of people are in chatrooms. Children need to be careful about @CAPS3 they say or show on the internet. Instead of playing games or talking to their boyfriends and girlfriends, teens should go outside and exercise. Second, more citizens need to enjoy nature and the beautiful senery around them. Were all so busy running to check our e-mail, we don't notice @CAPS3 a beautiful day it is outside. On a nice @DATE1 or @DATE2 day, people should take this kids to a local park or pond. This reminds me of last @DATE2 when I went to @CAPS1 cousins house. @CAPS1 aunt only allowed us to watch one hour as a day, that included the computer. We were outside every single day, even if we were just staring into the clouds. This kept us active and enjoy the environment. @CAPS1 last reason why computers are badly affecting society is that computers take time away from interacting with family and friends. I know @CAPS3 your thinking, when your on the computer you are talking to family and friends, but it isn't the same. Instead of instant messaging call them. Maybe even invite them our to talk face to face. That reminds me of @CAPS1 sister. When I get home, she will normally be on @CAPS2. Now, instead of getting up and coming to talk to me she will text me ""@CAPS3's up?"" or ""@CAPS4 was your day?"" Computers help people communicate, but they also take communication away. As you can see, I have given you three reasons why I strongly believe computers are badly @ORGANIZATION1. Not only @ORGANIZATION1 but everywhere! You need to open your eyes and understand that people spend way too much time on computers, they allow people to not enjoy nature, or interact with their families. Please I'm asking you to understand that our society will crash it we don't fix this issue. So @CAPS3 are you going to do about it?" 5 5 10 +33 1 "Dear, @ORGANIZATION1 I think the effects that computers do on people are really positive. Computers can be used for all sorts of things. Examples like finding things out about history. People that changed the world and other information. Computers give the power for children to learn. For example, their are lots of websites that offer online tutoring or good ways to help you pass school. Other positive way is online dateing sites. You can meet new people and is a good way to make life even better. Popular sites like @CAPS1, @CAPS2, @CAPS3, and so on make a good way to keep in touch with friends from your past, or even make new ones. But the most that I think thats the best in my opinion is going to school online. Once your done with colloge and you are a nuse, for an example you can get a higher degree like a registered nurse then being a @ORGANIZATION2. I think computers has a positive effect on people." 3 3 6 +34 1 "Dear @LOCATION1, @CAPS1 is a rumor going around saying that computers are a negitive affect in a childs life. I disagree. A computer can help a kid in so many ways, it can help students with homework, let students talk to friends, and help with school projects. And besides, most kids don't don't stay on the computer very long anyways. Homeworks, it's a big role in school, if you don't do it or worse don't get it can you down. That's why computers have websites that help a child learn how do do a problem or a social studies question if they don't know. If you go to the school web page then theres a link that brings you in a math games. Theres even a to a science website. This helps a child so they don't get stressed out over homework. A computer also helps a students interact with friends. A social life is very important to a @NUM1 grater. This is where a computer can have aim, facebook, and even myspace help a kid impact with friends. If a kid got into a fight at school can come home and to work it out and not leave it unseatled. A computer also new friends from other towns. Teens need to and make new friesnd will helps as in life. If a teen helps with a then they can ask a for help. Every student gets a take home project at social point in the time of running out to the store to buy paper and pencils. you can stay home, have money and typee the essay. Computers can help with a social studies or a science project. You can print pictures and find information. Drawing can be a hastle and messy, so it saves time and the mess. If @CAPS1 are words you dont understandd then you can look them out. Computers are and best way to do a project. Computers, everyone uses them, they help our parents just as much as uss. They help us with homework, let us talk to friends, and even help us do our projects! Computers are one of the best technology we have @DATE1." 4 4 8 +35 1 "Dear @CAPS1 @CAPS2, I think computers have a positive effect on people. Where would we be without them? Computers teach hand-eye coordination, give people the ability to learn about any subject they want, and allow people to communicate with each other, no matter how far away. Obviously, computers are beneficial. I think computers have a positive effect on people. They teach hand-eye coordination, as I said earlier. I know people say that where you are on be computer, you spend less time exercising, but the computers help you with you throwing skills. Hand ey coordination also applies for if you want to be a surgeon/doctor. You need to have steady hands. What we ready to do whatever is needed. See, they do have a positive effect. I think computers have a positive effect on people. They give people the ability to learn about anything they want on the internet. Say you want to be an engineer when you grow up, you might want to learn anything and everything you can to be successful later on in that carer. What about a doctor, you would want to know how many years of college and med school are required to get your medical degree. A computer helps you learn about those things. It can also teach you about tons of other things. Again, how could they not be positive. I think computers have a positive effect on people. Another thing they can do out of a hundred others is let you communicate with other people no matter how far away. Mail can so my where with enough, yes, but @CAPS3-mail is free and gets there in less than a minutes where mail can lake weeks to go far. For example, what if you came from another country. You wouldn't want to lose touch with people you grew-up with. With a computer, you could use skype to see now new the person. Talking on the phone or mailing doesn't even compare to that. You could never lose touch! Computers help people do all kinds of things. I conclusion, computers have a positive effect on people. They teach hand-eye coordination, give people the ability to learn about any subject they want, and allow people to communicate with each other, no matter how far away. There are no bad reason that could top any of these. They make sense. So, what do you think? Do you think they are good for us, or do we need less computers?" 4 5 9 +36 1 "Dear @CAPS1 @CAPS2, Have you ever wondered what effect computers have on people? It is a very negative effect. Computers are one of the main reasons of why kids do not exercise and become obese, it can effect students' grades, and by being on the @CAPS6, you are isolating yourself from your loved ones. First of all, more and more kids are using computers way more often than they should. The result of this, you @MONTH1 ask? Since computers are used daily, especially by young adolescents, it is likely for that child to become obese. Researches from well-known colleges, such as @ORGANIZATION2 and @LOCATION2, discovered that @PERCENT1 of kids who spend more than two hours on the @CAPS6 are obese or will become heavier when they are older. After speaking with @PERSON1, graduate from @LOCATION1, he told me that when children spend more time on the @CAPS6, they are doing nothing but staring at a bright screen that can damage their eyes, and not spending their time outside enjoying the beautiful weather. As a consequence, kids start to gain body fat from sitting on a coach staring at the @CAPS6 all day instead of exercising! My second reason of why computers are a negative effects on kids is that it can harm your grades! After I spoke with a current student at @ORGANIZATION1, she told me that the reason why her grades drop is because she is too busy on @CAPS3, @CAPS4, @CAPS5, etc. She does not focus on her @ORGANIZATION1 work like she should and because she doesn't, her grades go from @NUM1's to low @NUM2's. This shows that even ""A"" students are getting bad grades from being on the @CAPS6. Additionally, from being on the @CAPS6 so much and not paying attention at @ORGANIZATION1 work, it can effect your best grades on the @ORGANIZATION3's! This shows that by always going on the @CAPS6 you hurt your academic skills. My last and final reason of why computers have a negative effect on children is because it harms your social skills of being on outgoing, talkative individual! Everytime you log into that death trap device, your selfesteem becomes lower because you never talk to friends or call them. You just sit on a hard chair, looking at an electronics device that is going to take you no where in life. Also, you are pushing your loved ones away by being on @CAPS6 @NUM3. You will end up never spend time with them and you will never call your friends to see what they are up to if you keep on going on the @CAPS6. Furthermore, if your mom or dad tells you to get off your @CAPS6, you become cranky and rude to your family just becuase you want to go back on your favorite electronic device. Do you really want to act that way to your family? So, in summing up, computers are a negative effect on many young individuals, and the reasons for this are that you have less time to exercise, it harms your grades, and you are not able to be as interactive with people by being on the @CAPS6. The real question is, though, is do you think computers have a negative or positive effect on people?" 5 5 10 +37 1 "Dear @ORGANIZATION1, @CAPS1 has been brought to my attention that some people feel that computers are bad for us. Some people say that they are a distraction to our physicaland mental health. Although I can see how some people would think this, I believe that computers are a good benifit to all society. I believe this because computers can help people learn, stay intach with friends or family that live faraway, and stay orginized. Sometimes people are on the computer, learning and they don't even know @CAPS1. Simply by visiting the @ORGANIZATION2 homepage, you automaticly see the news feeds of things happening around the world. Other times people go online diliberatly to learn. If someone is thinking about going to @LOCATION1 then they would probably go on the internet to learn about @CAPS1. Simply by searching equadore many choices will pop up you climate, sesonal weather, hotel options, and other farts. But thats not the only way people are learning on the internet. Now, many college students have the option of taking their lessons online. This is because some students like calm quietness or own house the distractions of sitting in class. Friends could be a big distraction in class, but how can you stay intouch with your friends if they moved away? I remember in second grade my bestfriend, @LOCATION2, move away. I was so sad. I badey ever talked to her, but then one day our parents set us up on a vidio chat! I felt like I was right their with her! This was great, and I though about how many people could use this to talk to relatives or friends. Another great way to stay intouch into friends and family is through e-mail. By writing a message and sending @CAPS1 can make staying in touch so easey, and your personal wants can chat and emails are a easey thing to send world wide. So many people love to type on a keyboard as well, but so many different papers that you type could be lost. I, for me, hate clutter, and I have so many school binders for papers to be lost in. This is why I take great advantage of typing my paper every chance I get. My computer keeps me orginiced because I could never loose my work. File save, is an idiot proof way to keep all your files in a safe place. Then all you have to do is press print to get a hard copy. I am sure that many people love using their computer for the same reason. Also, I myself am a much faster typer than I am writer so my work is a lot needey on the computer. As you can see their are plenty of reasons why using a computer is goof for our society you can learn, stay intouch with friends and family, and stay orginiced. Many people, could agree with me. Don't you?" 6 6 12 +38 1 "Dear local Newspaper, @CAPS1 in the society we live in, more and more people are using computer including me. The computor in my opinion has to be one of the best inventions ever. The bad part is that these ""exports"" think spending time on the computer is a bad idea when they fail to see the good in computers. Student can use computers to get information on almost about anything, you could use computer to talk to friend and family members, and you confuse it as a navigator to find directions to a certain location if you cant find your way or if your lost. One of the best things about computers is that you can find various amounts of information. That opition is useful for children that attend school , looking to find information for a certain project they need to finish. You can also use the information on the computer to study if your textbook isnt doing you only good. Also if a student is looking for a job in their local area they look on the internet for jobs needing employees. Computers also can be used for communication. You could have a long lost realtive you havent spoken to in a while, you can easily find him on the internet. Online communicating is also good for chatting with schoolmates if you forgot the homework or need help with homework. Im not a big fan of this but online chatting can be use for online dating if your to lazy to go out. One of my favorite options on the computer is that you can use it to navigate a certain location you want to go to. Lets just say you forgot where a relatives house is you can easily type in your address and his address and easily get directions. You can use this method for almost anywhere you want to go. If this did not convince you that that a computer is a great piece of technology, then your crazy. The computers is like a magical box that can be used for anything so I advice you get one." 4 4 8 +39 1 "Dear local Newspaper A lot more people uses computers daily but not everyone agrees that it benefits society. Those people who supports advsnces in technology believe that computers have a positive effect on the people and I agree on some circumstances but looking at the situation cleary I dont agree due to the fact that its better not spending to much time on the computers. First because its way better excercising, @CAPS1 enjoying nature and lastly interacting with family. @CAPS2 why I dont agree that people should be in ther computer more their doing things better in life. First, becacuse it's useful to exercise. Talking a walk around the nieghborhood of just going for a hike with people you know. Even better going to the gym its such a better way to spend your evening instead sitting infront of a computer doing nothing but to look at a screen all day and plus exercising makes you stay in perfect fit, healthy and strong for as long as you live. A computer can just kill you not in reality but sitting all day only on the computer eating when you feel like it and no exercise that is whats going to kill you and make you become so lazy to do nothing. I know nobody would want that for sure. @CAPS1, enjoy nature live life the way it needs to. Gods creations of nature is the must beautiful thing in this world dont let it go all to waist. Jump off a waterfall or go to the park let the wind hit your face. Make imaginations become real and just enjoy what natures about. Third and last, interact with your family and friends. Spend time with them and watch movies or any sports channels. Go with them for some ice cream. Dont let them feel left out or unloved. The mall is a great way to spend time with your friends or family also going to water parks like six flag or lake compound of place like nomads or chuckie cheese its a great way places to spend and interact with your family and friends it also can bring closer as well. This is why I think sitting infront of a computer screen all day, first its a waist of time when you go do some exercise or @CAPS1 enjoy nature or lastly interact with your family and friends, @CAPS2 why sitting infront of a computer as a waist of time and negative why to spend your days of living life. Technology holds you back from the real things in life. Thank you for reading my letter and hope you take it in consideration. Good day!" 5 5 10 +40 1 "Dear local newspaper, my name is @PERSON1 I am @NUM1 and I go to naylor school. I am writing to you convince that computers have a positive effect on people. Please read the following reasons. Computers have a positive effect on people. Your able to communicate with people all over the world. When my brother goes on the computer he get's to talk to my family in @LOCATION1 I like to use skpye because when we talk to family in @CAPS1.R we use a webcam to keep in touch with my family. They teach hand eye coordination and help me in ping-pong. It help me wacth the ball in computer and I do the same in the wreak. You have lot's of access to different information, my mom found a job in the computer. Everybody have access to weather or news, Some say it's a lack of exercise. People get addicted to the computer. Some can get obese and mess with your love life. These are the reasons why I belive computers are good for society. This is why people should agree that advance in technology. Technology keeps on upgrading." 4 3 7 +41 1 I think computers are good because you can talk to your friends and family on the computers. People needs computers to look for a job. Some people spend to much time on the computers then on homework people need to stop. 1 1 2 +42 1 Dear @CAPS1 @CAPS2 @CAPS3: Computers have a negitive affect on people and their to connect with others because they always are on the computer and never outside. My first reason is that computers hurt your eyes after a long time sitting at them. People I know have complained of their eyes hurting after using the computer. Studys show taht @PERCENT1 of all people who use the computer after a long time are more likly to loose their eye sight than people who are outside all day. Another one of my reasons is people who are inside on electronics all day are less likly to have good people skills. If you don't have good people skills then you probibly wont have alot of friends and if you need them it would probibly be over the computer. And you never know what they could be like. Also if your inside all day then you will not get the proper excersize could be very bad you and others. My third and final reason is that people will makes fun of you if you sit inside all day don't come out because your on the computer. If you ar on the computer you are more likly to fail in school you don't do your homework or projects but instead your on the computer playing games. And your more likly to get into fights with your parents or guardians because your on the computer and they never see you or hear from you. Also they wont be able to go online and pay their bills witch could be bad for everyone. So these are just some of the reasons I think computers could be bad. Thank you. 4 4 8 +43 1 "The effect of people using computers isn't anything bad couse you learn a lot from it. In some ways when you use the computer and you type, the typing exercises your fingers. Your fingers will get muscle and will teach you to remember where to type without looking down on the keyboard. People sometimes using computer is good because if your writing letters you don't have to use pencil you can just type it and print. The typing does all the work for you so you won't spend hours writing to someone. Computers are helpful to people for example, ir your researching about @CAPS1 or @LOCATION1 you can find almost all the information on the computer in a instant click. Computers save time and does a lot of work. Computers are helpful piece of technology and one of the best." 3 3 6 +44 1 "People are spending too much time on computers. People that spend to much time on the computer do not have time to interact with family or friends. People spened to much time on the computer. The kids that spend time on the computer get bad grades. They also get tired every easy. First of all people spend to much time on the computer. @PERCENT1 of kids spend @NUM1 to @NUM2 hours on the computer. I once spent @NUM3 hours on my computer on @CAPS1. A lot of kids go on @CAPS1, @CAPS2 and iTunes. My friend spent @NUM4 hours on those websites. People spend way to long on the computer. Another reason, kids that spend time on the computer get bad grades. @PERCENT2 of kids that spend a lot of time on the computer forget to study for test. Once I spent all night on the computer and the next day I failed a test. Kids forget to do homework to. My friend was having so much fun on the computer he forget to do his homework. Kids should get off the computer and worry about school. My final reason, kids get tired from being on the computer for so long. @PERCENT3 of kids get so tired they can't do anything once they get off the computer. I got so tired from being on the computer for so long I took a nap. @PERCENT4 of kids forget they made plans after school. One kid was so tired he blow the plans off that he made with his friends. Kids need to get away from the computer. In conclusion, kids spend to much time on computers. People spend to much time on computer. Kid end up getting bad grade because they spend time on the computer. Aslo, kids get tired very quickly from being on the computer. Something has to be done about this." 4 4 8 +45 1 "Dear @LOCATION1, @CAPS1 you think the computers don't help you with research? Well, if you really think about it computers @CAPS1 help you. You can't always gain wait by just looking or staying on a computer. And you can defenetly still talk with kids, friends, and family members on computer. @CAPS1 you no if books have all the information you need for school project, or your own family history. Maybe books have our history of wars and of our heros. Try and see if you can find the first ancestor of your family. The computer are the reasons why we no our history and know about actors, slaves, sergents, and much more. Have you gain weight just from staying on the computer for too long. I haven't gain a pound or an ounce since I've been on computer. Not only can you gain weight or lose weight just by being on the computer. How @CAPS1 you know if the person on the computer is not looking for diet foods or fat free things? Or if the person is eating while being on the computer. @CAPS1 you get large phone bills just for a two minute long distance call? Why @CAPS1 you think we have enternet websites such as myspace, facebook, twitter, msn and lots more. Most of my family members life in @LOCATION3, @LOCATION4, and @LOCATION2 and just for a call its like ten dollars for a minute. While you can be on the internet for about day to night and still pay the same price. So what @CAPS1 you choose pay over thirty dollars just for a long distance call or stay on the computer. Or get bad grades for doing the bad research. Its you chooce, choose now if either talk with family and friends on phone and pay over your bill money or stay on web chat for how long you want and still get the same bill price." 4 4 8 +46 1 "Dear, Local Newspaper @CAPS1 here to inform you that the time we spend on computers is needed because it helps you with information, it helps you to become smarter and it helps you with hand-eye coordination. I will now explain to you why the time we spend on computers is needed by stating these three reason. My first reason I'll like to state that will convince you with the time we spend on computer's are needed is it helps us with information and it teaches stuff about place's, people, culture and more it teaches us useful information which takes a while to learn so the time we spend on computeres is needed to learn new information. My second reason I'll like to state that will convince you with. The time we spend on computer's are needed is it helps us to become smarter. Say if you needed help with fractions you can go on a math site it helps you with it. Computers make you become become smarter. And at the end of the day it's about who's smarter not who does more excerise. My third and final reason which contribute to why we spend the time we spend on computer are needed because it teaches you good hand-eye coordination because it help with typing and become more faster to do essay's and when you have good hand-eye coordination you dont make a lot of mistake's typing. So I have come to my conclusion why a lot of computer time is needed because it helps with information, you become smarter, and it teaches good hand-eye coordination this is why a lot of computer time is needed probably even more computer time is needed. A lot of computer time is needed because you get smarter plus it beneifts society." 4 4 8 +47 1 "Dear newspaper, I feel as though internet or computers act as an advantage in sosiety rather than a problem. They help with school work, like projects or email. You can even take college online now! People also use the internet for media or to simply catch up with friends. One of the most important reasons to have a computer is for school orenented reasons. Like having a project that you need to get notes for or making a power poin presentation. One other great reson is for the teachers. There computers can help them teach a class in a way that is both fun and easy to undersand. The new uprizing in computer use has brought about new ways of getting a college degree. Now you even just simply get in bed turn on your lap top and take college classes right on your computer! I dont know about you guy's but I'd much rather take college in the own comfort of my home then drive to a campus all the time. Another great use for the internet is e-mail to e-mail makes our lives a lot easier now that more people use it. It can send us school starts like a early dismiste or a way to catch up with old highschool frends. Another great reson for the internet is for mention or just to have fun and relax. @PERCENT1 of people that have computers use them for media or fun reasons, like gamelry, or to go on to youtube. Please add this article into your news paper so that the computer can be put out there as a helping add, and not something that is going to make the whole world obise because thats not just from computers. Its the people who use computers, felt that they dont get exercise not the computers. So why put them out in a bad way." 4 4 8 +48 1 "Have you ever had the time completely fly by while you're on the computer? You go on at @TIME1pm and all of a sudden it's seven at night. People should spend less time on the computer because they should be outside, it takes away time with your family, and there are other ways to look up information. You should be outside, enjoying the fresh air and playing sports, not stuck inside all day with your eyes glued to a screen. When you're on the computer all day, you're just sitting there. You're not moving around at all. Seventy-two percent of kids who spend all their time on the computer are over weight. Being on the computer on a beautiful is like blocking out the birds' songs on the first day of @DATE1. Nature is amazing, and you should be outside enjoying it, not cooped up in a stuffy room leaning over a man-made machine. People should spend a lot less time on their computer. When you're on the computer, time really flies by. You lose your whole day to it, and wouldn't you rather be doing something more fun? You can be alone on the computer in a dark room. You should be with your family and and friends. Computers are going to be around for a long time, and when they die down it will only be because something better came along. Your baby brother won't be a baby forever and your grandparents might not even be there tomorrow. Don't you want to spend as much time as you can with them? You're changing too, so you @MONTH1 be off to college or have to move far away for buissness. ""They grow up so fast. They're adults in a blink of an eye."" my grandma said to my mom. Almost @PERCENT1 of parents feel that same way. So, don't spend all your time alone with a machine, be with your loving family and chairish each moment. People should spend less time on the computer because there are other ways to look up information and learn about new places. There are so many books in the world, about any topic you can imagine. Using books to look up information is better than typing in the word into google because it's important to learn how to use an index and find the book on the shelf. A trip to the library @MONTH1 not be your cup of sunshine, so if you want to learn about a place, why don't you go to that place? If you're doing a report on @LOCATION2 for school it would be a lot of fun to go to @LOCATION2 for a few days to learn about it. And you can take pictures with your own camera, not just a picture you found online. It would be a really fun family trip. Even if you're doing your report on a place as boring as @LOCATION1, you could still probably have a lot of fun, hanging out with your family together. In conclusion, people should spend less time on the computer and more time being outside, with family, and at really fun places. Why would you want to stare at a screen all day when you could be having this much fun?" 6 5 11 +49 1 "Dear local newspaper, I am writing this letter to you to show on how people get effected from computers. It effects people very well and teaches people many things for just one technology. Computers effects many people for what it does. Computers have many advantages that people learn very quickly. Many people love computers. It is one of the most best inventions to everyone around the world. They teach positive things for people to learn. Computer even have a positive effect on people across the world. They teach many things for people to learn and that have already learned. Such as, hand-eye cordination. When you type up words it teaches you to see better with your eyes. Computers also, give people the ability to see, understand, and gives information about people across the world. Celebraties are very popular on computers or other technologies. Computers help you learn things better than any other technologies. Anything you can get on any other technologies. There is a guarantee of you will find it on your computer. Computers are just like other technologies but in some categories they're much better than the others. Computers are very important in life because without computers we would not learn how to communicate with each other. If we did not have phones to use to call someone. On the computer if you go online you can maybe talk to someone by their email address. You can talk to someone that you have not talk to in years. You can look images or videos that you haven't seen in years. On computers, you can find out information from news that week of or even the day of. In conclusion all I say is that without computers in this world. What would it be like? Most technologies that are not as good computers will be popular without computers. I wonder what it will be like?" 3 3 6 +50 1 "Computers are the greatest tool mankind has. They give people acsess to more information than anything else in the world. they ler us connect faraway places with one click of the button without computers people would never know and learn or do as much as can without computers modern planes or cars would not exist. without computer this very test probaly would not exist so no sconclusion to much time on the computor, because theres more to do than one can doin lifetime" 2 3 5 +51 1 "Dear Local Newspaper, Have you ever wondered how to get somewhere and you didn't have a map or @CAPS1 near you and the only thing that was the near you was a @CAPS3. Well I am saying you should go on it and search were you want to go. Computers are very helpful in every one's daily life they have so many facts and interesting things on them, @CAPS2 about again trying to figure out were someone lives it's very easy, go on google and type in someones's adress and there you go. The @CAPS3 is also very good because have you ever thought about one of your friends or a special someone and you havent seen them in like a really long time and you miss them well no problem mostley all computers have some sort of camera in them were you could video chat or just chat regular on the enternet. That is very helpful because even though you could just go on the phone and call them it's better to do it online because how about if you havent seen them you want to see a picture of them they could just send it to you on some sort of chat page or just your email. It is so much better then mailing one picture in the mail and it takes days for the mail to come if you could do it the faster way on line and on video chat it will be better.. The @CAPS3 is also very helpful because how about one day you want to go some were and you dont know what the weather is going to be well you could go to put on the tv and see but there is so many communications and you cant really see because they move the weather days fast. On the @CAPS3 you could type the weather in for one week and it will tell you and you could look at it for as long as you want and it will stay there so you could see the whole week without the screen having fast as the image is not in the light light or if it's to dark. The @CAPS3 is so helpful. People do say that it is good to get off the @CAPS3 and go for a walk outside in nature I do agree with that but people and children do get their exercising by walking around the house and going outside going shopping. Computers are helpful and nice and another thing is say one day you are online and you are looking at clothes or shoes and you want to buy them but you dont want to go to the mall a half hour away from were you live you could just buy them online and they will be shipped to your house and you dont even have to lift a fingure. They are also good because they have like a dictionary on it were if you dont know how to spell a word you type it in the best way you can and it corrects your spelling and tells you what the word is, also the computers have pictures of everything, if you want to see how something looks like you can type it in and shows you. with all the facts I have given you I hope you agree with me that computers are very helpful nice and safe." 5 4 9 +52 1 "Dear @CAPS1 of society I am writing this letter to you to explain the many benefits towards computers. My first reason will explain the many ways computers help you @CAPS2 beleive that people using computers is a very good idea. They beleive this because computers make you really focus and pay attention. This gives you really great eye sight and amazing hand eye cordonation. A important ability that computers have is they are able to teach you about far away places depending on were you live. The reason people would probobility want to visit one of these places on a website would probobility be for vacational purposes. My third reason to why I feel we should keep computers is. There is a lot of websites you can join so that you can speak to your friends as long as there online. IAM, @CAPS3, @CAPS4 exc. These are all great uses for computers. Also people who own a well paying email system on these computer that tells them who wants to sell a piece of machinary, or anything that involves buisness ethics. Now you know my three very important reasons to why computers are a great way to get hand eye cordonation. A great way to learn about other states. And so you can talk to friends and have a email for buisness purposes. I hope you have enjoyed reading this and hope to see you on my side toward this topic." 3 4 7 +53 1 "Dear @ORGANIZATION1, To begin, I understand that people don't like computers because they are over used. If the computers are so bad then they shouldn't be used, but how I see it is that they also bring more good than bad. These points to computer wellfare are they bring sourses, their is interaction between people, and computers are going to advance more over time. Even though these people think they are overused they still use them. So, even I use the computer a lot, but it could be used for good. First and foremost, these computers can get sources online that can't be found in books. Their are search engines that you can find your topics on. Then, when you find your source it has info that could have been skipped over. They can show the other side of they story that they didn't say in the book. your projects that you used to have to go to the library for you now can do from home, that itself is a step that you aren't considering. For instance if people are on a lot @PERCENT1 of the time is research. Furthermore, people can interact with friends over the computer. They can talk, send pictures, or play games. For example, i play xbox and I talk to my friends over that a lot of the time. Even a video game is fun as being with them, quoted from @CAPS1 @CAPS2 ""I have a computer not for friends, but for work"". This shows that even large important still use it for work. people say using a computer is like learning to ride a bike. My mom told me a story that she met my dad because he fixed her computer at her job. So, I am here with my parents because of a computer. None the less, the computers are at their begining and they will further improve. So people that are on have a reason for why they are on the computer. This advancement is going to advance again and again so there won't be a way to stop it thus, people will be on it only more and more so there is no chance of stopping the outbreak of computers. Then you will try to stop them with ""computers eat your brain"". We all know that is garbage. To conclude, I implore you not to try and change the habits of others. I @CAPS3 that if people want to use computer they can. I say this with the sources, the friends and the advanement." 4 4 8 +54 1 "Dear Local Newspaper, @CAPS1! I am an @NUM1 grade student at @PERSON1. I was reading your paper and I notice you had an article on how people are spending too much time on the computer and not enough time going outside, getting exercise, enjoying nature, and that it doesn't benifit society. i completly disagree with these comments. let me explain... Having computers definatly benifits for all students. Sometimes kids forget their text books at school. But if they have a computer, they can just google the information. That way they get there homework done, and don't have to take a zero. Another thing is, I am sure you have heard of a website called, study island. If you havn't, i'ts a website for all the students in the @LOCATION1 to take online courses for math, reading, and science. They are time consuming, but they count for a huge chunk of our grade. So, if we get an @CAPS2 on study island we get an @CAPS2 in one of our classes.. Not only does the computer help students but it helps me in a kind of personal way. I love the piano. But, there are no instructions in my area. However, there is a program on the computer called synewnisia. It helps you learn all kinds of songs on your keyboard or piano. The piano helps my hand-eye coordination as well as it teaches discipline and dedication. Now, synewnesia isn't the only free instrument learning program. There are many others! This helps people who can't afford lessons, and learning an instrument can help you acheive things later in life. Now, one thing you said in your article is that people aren't getting enough exercise because of sitting in front of a computer all day. This is not completly true. In fact, most people go on the computer researching diet plans or local gyms. How do I know this? Well one day when I went on google the top search of the day was, ""weight watchers diet plan"". Also, my mom uses an online video workout website, for her bad back. So not only does the computer help for diets, they can help physical therapy also. So with this letter I hope you realize that the computer does benifite our society, yes, we should not spend too much time on it. But, online learning sessions can be time consuming. It helps many people figure out the right deit and workouts so they can stay happy and healthy." 5 5 10 +55 1 "ARE YOU @CAPS1!! Computers are great, they're great because of these @NUM1 reasons. Kids can do homework on computers, also you could video chat with friends and family finally because you could look up just about anything you want on the computer. Computers are great because kids can do there homework on the computer, thats good because if they forgot there book in school or something like that then they could just get the answers of the computer. Its also good for business men because they count on computers for all there files. Computer are also great because you can video chat with friends and family. Video chatins is awesome because if a friend or relative goes out of town they could just brings there labtop of webcam and then you can talk to them whenever. Video chatins is also good for company's if there buyer is in a different country they could just video chat all the information.Finally, computers are great because they are so resourceful. There are hundreds of websites where all you have to do is type in what you want to know and there will be thousands of links for you to search and get your answer. They ere also resourceful for pictures or maybe even powerpoint presentation! In conclusion, computers are great because, kids can get there homework done, also its good for video chat finally because the internet is very resourceful." 4 4 8 +56 1 "Over the past decade, the percentage of people using computers has increased by approximately @PERCENT1. All of a sudden the world and its people have become dependent on information that computers provide. The variety of data bases and resources the increased communication and the skills computers allow you to portray and prove that they are essential for this generation. Communication over computers benefit now society can interact between one another. Personally I have been able to talk and see my family who live overseas through the advanced technology on computers. Different communication programs include @CAPS1 @CAPS2 and e-mail, the most commonly used cite. Without having access to a computer and its contents residents have a difficult time embarking themselves within the rest of society. For school events, sport schedules, and keeping in touch with far away family and friends. Computers allow all of these essentials to be part of society, and the way this generation has decided to start our lives. Paretns and teenagers these days have become very lazy in comparison to the way they used to behave. They are nit interested in going to the library in order to research information on people, places, and family heritage. Computers have been a huge convenience in a persons life by allowing all the information that was once in books to be contained throughout the internet. For example if you are doing a project for school. the internet will provide you with any information you need. It is truely astonishing how much one electronic instrument can impact and influence a life. Being a student, I am commonly curious about what references teachers are making and additional information that is not provided. The internet allows any person in possesion of a computer to research what they have wondered about and to give a response on the subject almost immediately the benefits of computers can practically cover the few negative effects as it is a way to let a person discover various information on any desired subject. Besides searching for information, computers can be used to document data of your own. Microsoft has invented several applications of which allow you to graph information design presentations, and neatly record drafts of writing. No person is flawless and is incapable of mistakes. Microsoft helps take your exentuated imperfections and hide them by doing things as little as making a neater copy of your essay, or putting your lists of data into graph form to make it more eye-friendly to viewers. Society has become reliant to sources scattered throughout the date bases on computers and by directly looking at the negative effects that a computer can have on aperson and therefore putting restrictions on this information source will enable society to have to positive donations that computers these days have on our way of life." 5 5 10 +57 1 "in @DATE1 has become far more advanced. Computers are one of the most futiristic objects. The computer is good for connecting to people around the world. However, computers have bad effects on people's lives. Children are taking time out of their homework to go on the computer, citizens are gaining weight, and children are being kidnapped. School is very important and valuable if you want to suceed in life. However, computers have made it difficult for students to concentrat on their homework. This is a horrible habbit and a bad effect on students every where. Students grades will suffer and will not obtain class credits if this problem is not mentioned. Obesity is a huge problem in @LOCATION1, five out of every ten @CAPS1 are either overweight or obese. This can lead to death. The problem is that people are spending hours on the computer each day. Most of that time can be used to exercise. Exercising can be an important benefit to someone's life. If this problem is not addressed millions of americans will be overweight, @CAPS2 is a very serious and dangerous topic. Every month dozend of kids are kidnapped. Since the internet was invented there is a twenty percent increase rate of kids missing children will go on poppular networking websites such as @CAPS3, @CAPS4, and twitter and give out their important information. Pedophiles use the internet to trick children in to giving their address. This problem needs to stop and be addressed by the police. Everyday, more and more people use computers. Compuers have good and bad effects on peoples lives. The bad effects are very serious and dangerous. How would you feel if your child fails school, gains weight, or gets kidnapped because of the computer?" 5 4 9 +58 1 "Dear Newspaper, I'm writing to you about the debate that you are having asking if people should use computers. The article stated ""more and more people use computers, but not everyone agrees that this benefits society."" I think people should not use computers. Also technolgy needs to slow down, it's getting to advanced. My first reason why people need to stop spending time on computers is, you don't want to always say to your on your honeymoon ""we could to @LOCATION1 from our computer. And your life will go by fast and you want notice it, your all fat and old. Also @PERCENT1 of people who use computers are over weight because they don't exercis. Secondly the more technology there is, we are going to have less. In addition it feels better when you work and not just sit on your computer, getting a mounthly cheak. In conclusion you live a happier life when explore the. In @PERCENT2 of people who use computer commit suicide. Also if it was or to me I would the use of computers. Bead all the about computers and you will think but like me. I use to be a computer geek." 4 3 7 +59 1 "You @MONTH1 find this hard to beleive, but many people think computers put a negative attitude on people. Now you @MONTH1 be saying thats not true, that everyone has a computer, but the truth is they don't and they believe it puts negative attitude on people. People have many reasons for owning a computer and one is friends. Did you @CAPS5 some people own computers because they want to stay in touch with friends from differnt states who live far away. For example, many people use @CAPS1 or @CAPS2 to connect with friends. I can make a connection because I have both a @CAPS1 and @CAPS2 that I use to stay in contact with family friends from all over. Some people, like myself, even have friends from different countries! I @CAPS5 that many people want to learn about people from differnt countries and this is one way to do it right now I am learning some new things about the @LOCATION1 because I am friends with someone who lives in @LOCATION2. While on this wonderful adventure of learning you @MONTH1 even get yourself into a vacation adventure. A recent test was taking stating that @NUM1 out of @NUM2 people like to travel but don't @CAPS5 where. Some people say that people spend to much time on the computer but not enough enjoying nature.These people are wrong if one is on a computer and they are chating with someone from a differnt state or country then that person might persuade them to take a visit there. For example they would be able to go to the internet type in the place they want to visit and get photographs and information about the place. As a result, people would still get to enjoy nature. Sometimes using the computer could be educational. Many people @MONTH1 disagree with that statement but its true. For example when on the computer many people in their senior year of high school use it to take online college courses to get their degree because going to a regular college @MONTH1 affect their work scheduale. This could also help students in any grade learn more about the topic they are studing. It would also help them on their reports. For example they would be able to get pictures and other information anytime they wanted to. As a result, the students grades would increase. I hope many of you agree with my statement and help spread the word that computers could be positive on the mind. As a result for those who didn't agree with the statement that they are positive not negative I hope that you will redecide on your opion." 4 4 8 +60 1 "Dear @CAPS1, I, agree that computers are benefits society. The computers have positive effect on people like hand-eye coordination. I helps you learn about other country religios, and other thing. You can communicate, meet other people, and chat tru computers. Another positive fact about computer is that you can find all the information you need and fast. In other words is that computer help a lot of people." 2 2 4 +61 1 "Do you spend all or most of your freetime sitting at your computer? People are spending too much time on computers. Obesity is a growing problem in today's society, people need to interact with eachother, and we need to get some fresh air. Computer are ruining these things for people. Unplug yourself from your computer. More and more people are becoming obese. This is do to spending too much time sitting down in front of computers. There is absolutely no exercise involved with being on your computer. People need to get outside and go jogging, play games or ride their bikes. Cutting back on computer time would cut back on the obesity problem in our society. Top scientists and researchers say that it is extremely important for people to interact with others face to face. To our whole life, we will have to interact and socialize with others. If you don't develop these skills, you won't be happy where you end up. Talking to people over the computer is nowhere near close to talking to someone face to face. Get out and get some fresh air. Go experience nature. Bring out on the beach, hiking in the woods or even just sitting on the swing in your backyard can be the most. Fresh air clear your mind. Time says that kids who spend time outside receive better grades than they would if they were inside on the computer. People need to releave stress so go outside. Click turn off your computers and get out of your chair. Go get some exercise, go interact with friendsand family, or even just go outside and get some fresh air while relaxing. People are wasting too much time on their computers and it's flushing our society down the toilet, so just turn off your computer." 4 4 8 +62 1 "I think it is okay for people to use computers because they get to learn new things and meet new people. I don't think it's a bad idea to use computers because some people who have jobs works on computers all day. @NUM1 each sometimes computers can be a distraction but computers can help you alot. I think using computers can help you learn new things and meet new people. Slick, slack, slick, thats the sound of people typing ont he computer and meeting new friends and having a good time. When you learn something new like a rat is as big as a house. You get excited and feel your the smartest person in the world. I dont think its a bad idea to use computers because some peole who have jobs work on computers all day. I think people who uses computers all day while the're at work dont have to be classy, topuler or trendy, they just working to help themselves and theior family. YEah sometimes computers can be a distraction but computers can help you alot. They can help you learn new things meet new friends and give you something to do when your bored. i remember the time when I was bored and I went on the computer to google who @PERSON1 was and I found out she was a famous sinher, someone I didn't know but heard about. Chantrail @CAPS1 a @NUM2 grade student says ""only people who want to learn something or meet new friends will use the computers. If you want to learn something new or meet new people then I suggest you stop eating those chips, get off that couch and use the computer." 4 4 8 +63 1 "Dear local newspaper, I think that computers have a good effect on people. They are good because you can learn things educational. You can hear the latest stories on everything, and you can keep your information down for yourself. Computers are a good thing to have because you can learn information. @CAPS1 you have a question or don't know what something means, you can find out on the internet. These are some internet sources that are @NUM1 to answer questions. @CAPS1 we didnt have computers, then @CAPS1 you have a question, then you would have to go find a book to read in and that takes much more work. Another reason why computers are a good things is because you can catch up on all of the recent stories. You can learn about whats happenings in other parts of the world, you can learn things about celebrities, and you can look at the weather. You can find all this cut on television, but you never knows when it would come on. With computers, you can search all the latest stories and find things cut when you want to know them. With Computers, you can also keep information down. You could use @ORGANIZATION1 and keep everything you need to know in a nice and fashion. You can also make graphs on the computer. This way your graphs will nice have alright time and @CAPS1 you would to go information that in a @CAPS1 there were no computers then your information would not be as and you can it. I believe that computers are a good thing to have because you can hear about the latest stories, and you can keep your own information neat. I believe computers positive effect in people." 4 4 8 +64 1 Dear news paper I think computers good for you because you can use the internet and myspace and videos and some school work like math and essays so yes I do think that computers are good for you because you can do all kind of things on computers. And computers can help you with school a lot and you can print out lots of things and why computers can help you is with your math writing spelling and most defyntly is science and ant also literature. The reason why I chose those @NUM1 things is because you can look those @NUM1 things up on. Computer and get the answer to math and spelling right like read @NUM3 helps you write and spell thats one at the reasons why I like computers because I can get on read @NUM3 and I love doing read @NUM3 a lot and I like the read @NUM3 class also because the computers sometimes I like reading on the computers but not all the time but I have to read that's how I'll first learn how to read by forsing my self forward to read. That's how I'll first learned how to read by computers and putting forse to my self. That's why computers is more important to me and look words up. 4 3 7 +65 1 "Dear Newspaper, People are spending way too much time on the computer and it is not right. They should be excercising, and interacting with friends and family. Having a computer also distracts them from schoolwork. Computers normally have effects like this on the people that use them. Instead of sitting at the computer all @DATE1 people should be out getting exercise. The @LOCATION1 is one of the coubtries with the most overweight people. Many teenagers are inside all @DATE1 at the computer waiting for their friends screename to pop up so they can talk to them. They don't need to be completely gone, but while they're waiting for their friend they could be exercising. All they need to do is put on some fun music and start dancing around, that will get them the excercise they need for the @DATE1. They also could do ten pushups and twenty curlups, or even more if they wanted to. Instead of sitting at the computer all @DATE1 exercise. Having a computer effects the owner because they don't have a lot of face-to-face converstions with friends and family. You can call your friend up and have them come over your house instead. If they can be at home on the computer for hours then they probably can hang out in real life. Instead of videochatting with your cousins in another state, lan for them to come visit you guys one @DATE1. That way you can actually talk to them and see what they're doing to. You could also play board games, hide and seek, etc. It is much more fun to be with someone in real life, then to talk with them online. The last but deffidently not least effect that computers have on peoples lives is it distracts them from school. Once you start talking with one of your friends, it's pretty hard to stop. Many people don't know how to stop so they don't do the homework they were supposed to do, or they didn't study for the big test the @DATE1, therefore they end up failing it. Some kids will do homework and a on the computer at the same time, the homework is probably wrong because they weren't concentrating on it hard enough. Having a computer effects your life in many different ways, some positive and some negative. Some ways are it ""stops"" you from exercising, it doesn't let you have face-to-face interaction with friends and family and it distracts many kids from school." 5 4 9 +66 1 "Wouldnt it be great to use computers in everyday life? In this country we can. You can use it to talk to people you never thought you would see again. Looking at places far away is always an option. You can even simply use it to help with homework essays. Locating and researching, even going to different countries, even different continents is possible to do on the computer. You can buy plan tickets. reserve rooms, even reserve tables at resturants in different countries by just a few clicks. Another thing is, you can research countries, towns, and cities with google instead of having to go out and get books. Reading about and talking to people from different countries is always an option. Being able to talk. and read about people and go to countries just by a clicking a button is pretty amazing. Computers also allow us to talk and communicate to people when there is no other way. The computers give people the ability to talk and see people they they the would never communicate with anymore. An example of this is my father hadn't see his father since he was two, but he started communicating with him and we were able to see him and chat with him through web chat. So these web chatting websites; ooVoo, facebook, myspce, skype, etc, is allowing people to reconnect. This advantage is allowing friendships and relationships to continue, is that really bad? Computers can help people with their homework and essays. For instint, they can type and print their essays instead of having to write it on paper. This helps because first it makes their, it also can be changed quicker and easier. They also can get information about what they are studying quickly and more efficiently. Instead of searching for a word in a big dictionary they can use an online dictionary and just have to type in the word. Online dictionary also have prounociation help and different langages. This helps so much so they can get their work done and exercise, enjoy nature, or interact with family and friends. I hope you will take my opinion seriously and think about it is using computers for daily needs really that bad?" 5 4 9 +67 1 "Do you think computers effect people's society? Computers help people of age first, computers let you chat with friends and family. Also, computers let you learn a lot about history. Finally, computer is a great way to keep busy. First computer is a great way to chat with friend that you havent spoke to in a long time. Also, it helps you meet new friends and to keep in touch with them in the long run. Finally the computer technologies is outstanding cause it allows you to chat with family memebers across state through video chat or even websites such as myspace, facebook and twitter. Secondly, @ORGANIZATION1 is a great way to learn about history. You can find history on almost everything from the past to the present. You can learn history about famous people places and events. That why I think the computer technologie is so outstanding what you think will happen if we didnt have today? Finally, computer is a great way to keep busy because you take the time looking up information for school projects. Also, you can spent your spare time playing games that help you learn or even book flight ticket for vacation. Finally, the technologie is here for a reason so we should use it for anything like getting up with friends or jus going on to look up information on anything you need to find out. In conclusion, I just told you why computer technologie is good to have. First, it lets you friends and family. Also, computers let you learn a lot about history. Finally, computer is a great way to keep busy. Now I just told you why @ORGANIZATION1 technologie is a good thing to have. I hope agree with my point of view." 4 4 8 +68 1 "Dear Local Newspaper @CAPS1, I am writing to you about my opinion on the effects computers have on people. I believe that there can be both good and bad effects. Computers make things easier for people, but they are also too dependent on. Man-kind should use books for research also not just computers. Computers are very helpful for people. For example, if you really wanted to see a certain movie but you don't want to stand in line, people can go to movie tickets.com and purchase their tickets. Then, once you get to the movie theater, all that's left to do is walk over to the kiosk and redeem your tickets. Another example is that computers allow people to pay their taxes. There is special software that is able to be downloaded onto your computer. Once the software has been installed, it will usually lead you, step by step, through the process of paying your bills. It's much faster and much easier than paying ""manually"". These are some really good effects that computers have on people. Computers also have their flaws. Over time, computers have caused most people to be lazy. Some people have become too dependant on their computers. Business owners, or businessmen and women in general, are @CAPS2 on their laplops or blackberries. Everywhere you look there is another adult on the internet or e-mail. Not only adult's do this though. Students are becoming more dependant on the internet. For every assignment practically, students use google or bing. Sometimes they use or wikipedia. Students should just take the time to use their extbooks. The student body would rather watch @CAPS3, play video games, or text than do homework. This is understandds because homework can be boring but it all pays off in the end. Taking the extra @NUM1 minutes to use a textbook won't kill anyone. No one has died yet from using a book instead of google. Also, in using a textbook, you will understand how to do whatever you're doing. That isn't so bad, is it? Computers, as you can see, have both good and bad effects. It's easy to use the internet for homework but that doesn't really help you. Making purchases is fun though. It saves gas money and time. I hope you and the readers of this paper see my point of view." 5 4 9 +69 1 "Some people think it is a good idea and same do not. My opinion is that, I think that people spend a lot of time for good reasons. Here are three reasons why, @NUM1. grownups working, @NUM2. students learning how to type, and @NUM3. communicating with others. My first reason is that parents do a lot of work on computer. For example, they do taxes, paperwork, airline tickets, and the bank. And those are usually all done on the computer so it would be easier if people don't drive. My second reason is students need to learn how to type so they can email or even write on paper. It helps them build learning ability and also, so they can know how to sing the @ORGANIZATION1's. Computers are suppose to be fun for people of any age. My last reason is, communicating with others is a great skill to have so you can talk in person. Computers help because if you mess up of what your trying to say then you could just erase what your trying to say. And in person, you can't. Also you can make plans with one of your friend on something if they live really far or something like that. In my opinion. I think people should be able to go on the computers to do work, playgames, no sites, and many more other things to go on, only if you have a computer at home." 3 4 7 +70 1 "Dear @CAPS1 @CAPS2, @CAPS3 life without computers. There would be no quick access to information, no way to socialize, and no way to keep your health records or other personal information safe. Without this technology where would we be? I believe that the world is benefiting from the advances in technology today. As a student, computers are a crucial element to allow me to get my work done. without the guidance from @ORGANIZATION2 @CAPS7, @CAPS4 @CAPS5, or other applications, @CAPS6 woudn't be possible for me to reach my full potential a assignments. How could a student be so certain their grammar is perfect on their homework without asking a teacher? There is a way. It is called @ORGANIZATION2 tools. However, the only way to access this is through a computer or @ORGANIZATION2 @CAPS7 @ORGANIZATION2 tools allows you to check your spelling, grammar, and punctuation with just a click of your mouse. Computers are an essential learning tool for school system today. Not only are computers used to educate, but they are helpful in the real world. Many business rely on the work of Computers entirely. In facts, @CAPS8 to @PERSON1 @CAPS9 @ORGANIZATION1, a local business ""@LOCATION1,"" In our job, we continuously we work with. this wouldn't be possible without the effort of our typist on the computer. ""@CAPS6 business and companies around the nation are relying on the advances in technology, why change anything? We should continue to progress in this groth @PERCENT1 of business in @LOCATION1 say they would have to close dawn @CAPS6 not for computers with so many business doing this, our economy would drop. This would not help. We all know computers and other technology are great sources of entertainments. What you @MONTH1 not now, however, is that they supply a great amount of knowledge to the average person. For example, lets say you finished watching a special on the discovery channel about @LOCATION2. You want to know more, so you pull out your iPod touch. All you have to do is log on to the internet and search ""@CAPS11 of @LOCATION3, @LOCATION2"" @CAPS12 seconds, you would have your information. People @MONTH1 not believe so, but it is true that you canlearn a great deal of information from various forms of technology. You can have all the resources you'll ever reed right at your fingertips. Computer supply so much more then just entertainment. All reasonable people would agree advances in technology are extremely helpul to the public. there is so much guidance for our daily lines through computers." 6 6 12 +71 1 "Computers have helped people tramendisly over the past years. Thanks to computers scientist have found cures for desesse, jobs have become easier . I believe that computers have a baseline effect on people. Because they educate people with their jobs, and give people a chance to talk to people having to pay for anything. If someone to a country that they have they might go on the computer to learn more about that country and their culture. Another thing they might do @CAPS1 go to a website that could help them find affordable . If a child @CAPS1 doing a report about a country in @LOCATION1 thay can go on the computer to find out facts on that country. Computers educate people about about places all over the world, you can go on a website that has videos and written sheet clips about what has been goin on around the world and learn about current events. My grandmother would tell me stories about @CAPS3 @CAPS4 before they had computers, now my dad works on @CAPS3 @CAPS4 and he tells me stories about his day. when you compair the two different decades it saids like computers help out a lot within @CAPS3 @CAPS4. Before computers stores would have to do math in their pad when they were giving change back to people, now people save by punching in the numbers in the computer. I think the computers have helped people with their jobs. When you talk on the phone to someone it costs you money. When you just want to see someone I'l costs you money to get on a phone . with computers you can , or onstant message people with any costs. If you want to see a friend for her @CAPS9 but dont have the money to fly halfway around the world to see her you can vidieo chat with her. Computers help people save money by talking on the computers with friends, family and even co-workers. Computers have been very helpful ever since they were invented. They help people learn about places all over the world and about anything you want to learn about. They also make jobs and work easier and also help people save a lot of money by talking to people on the computers insted of on the phone. Computers have improved demastrecly over the years, the screens use to be so small and you would have to press all these buttons just to open it up and now computers can be as big as a flat @CAPS10 and can turn them on with just a push on a button,, Who knows what computers will be like @NUM1 years from now?" 5 5 10 +72 1 "Hello, I decided to write in to the paper on the topic of computers, and how they benefit society. Comuters are powerful machines, and can be used completing otherwise menial and boring tasks. They benefit people in many ways, like they are very useful in buissness, helpful in education, and connect friends and family together. Computers are uselful in buissness and are an extremely important tool in a common workplace today, and make work get done much more efficiently than if they didn't have computers. One reason Computers are so useful in the workplace is because computers can storee far more data that can be put on paper. Also, they can do jobs and processes very quickly, which is important in the workplace. They can also be used for sending important information quickly and without much trouble. These are all valid reasons comuters are beneficial in buissness, and help things get done. Computers are important today's schools and educational programs becasue they can help students work in a more efficient fashion. ""@PERCENT1 of all surveyed students said they would rather type a paper for school than write on by hand, and shows that they value them in their education."" said @PERSON2, a professor at @ORGANIZATION1. This shows that Computers are important to students, and are used their benefit. In addition to students writing papers, computers are being used by teachers and school systems for grading, attendance records, and more. The teachers at my school are using @CAPS1 @CAPS2, pieces of hardware that are directly connected to computers, and can be used instead of white @CAPS2, and I see that students are getting more involved in class, and focused, because this computer technology is being used. All of these @CAPS3 are reasons computers are helpful in educational proceeses, and should continue to be used. Many people want to be able talk to there friends and family when they are bored, and because of computers and social networking websites, and instant messaging programs, this is made much easier. ""@PERCENT2 of teens have at least one sacial networking site they visit on a regular basis."" said @PERSON1, a phycologist, who speciaizes in teens, This shows that people use these sites, and that they like them. Families that are separated because one @MONTH1 have moved out of the house recently might want to communicate with one another, and because of computers, they can. There are multiple ways that they could use their computers to keep in touch, like instant messaging systems mentioned before. Being able to communicate with one another makes theses people happy, and benefits society. Overall, being able to communicate through computers is an enjoyable thing for many people, and is important to society today. To conclude, computers contribute to society in ways that make it much better for everyone. Whether it's through helping buissnesses being more efficient, giving students the ability to work faster, and in a way they prefer, or if it's helping people stay in touch, computers are always benefiting society. These machines hardly ever slow people more thant manually doing the work would, and the positive influence they have far outweighs the bad they do." 5 5 10 +73 1 "Dear The @ORGANIZATION1, ""@CAPS1, @CAPS1, @CAPS1"" goes the floor. ""@CAPS4 oh here comes pete."" ""@CAPS5, is he getting fat"". ""all he does is play on the computer all day long."" @CAPS6 is on increasing amount or teenagers throught the @LOCATION1 who are playing on the computer too much. This is needs to stop. ""@CAPS7 playing on computers is one of the worst things that they can do with their time."" @CAPS8 @PERSON1 of the international health committee. @CAPS6 are always going to be obesse people around the world but in the past @NUM1 years @LOCATION2 has doubled the amount of obese @CAPS7 in all of @LOCATION3."" @CAPS9 show that over @PERCENT1 of the american population is obese and very much so. The future of american is all obese lazy @CAPS7 who only want to sit down in front of a screen all day. @PERCENT2 of @CAPS7 who don't experience nature at a young age never fully appreciate it. Since they play on the computers all day they don't ever use nature, they won't care for it and litter and pollute even more. Just @CAPS7 playing on the computer can be very bad for the environment like it is bad for themselves. Not only do the computers hurt the @CAPS7 and the environment it hurts the family and friend, @CAPS7 who are on the computer all day aren't spending enough time with their family and friends families are supposed to be close and they can't be if someone is playing on the computer all day. Just a couple of weeks ago @PERSON2 rayfield @CAPS8 that he got grounded because he was playing on the computer so much he didn't talk to his many in two weeks. @PERCENT3 of people who get divorced happen because of the arguements over the amount of time spent on the computer. ""@CAPS8 @PERSON3 from the yale marriage research center. If @CAPS7 knew that they might cause their parents to diverse they might stop playing on the computer so much. Therefore @CAPS7 shouldn't spend that amount of time on their computer because of the health, the environment, and their families. So its up to the people really, do you want a nice physically fit nation where every family is close or and rundown obese hole in the wall that is ""called"" the @LOCATION4" 4 4 8 +74 1 "I believe that computers have good effects on people. Computers allow people to stay in touch with long distance friends or family. Computers have games for kids that help them learn, and, also, people learn new things, too. My first reason is that, computers allow people to stay in touch. If someone in their family live long distance then they could always use e-mails to talk. That way they wont lose each other. Also, sometimes, friends move away and you always want to keep in touch. Another thing is that, if they want to send photos to each other, they can use e-mail. Also, because, thru an mail takes forever. Please, let the people stay in touch! My second reason is that, computers has games kids play. The games kids play could help them learn more. Sometimes watching t.v. don't help. If they acutually play the game and see what their doing, then they will got smarter. That's what we want for our kids, right? Also, kids have fun playing these games. Do you really want to take the learning experience away? My third reason is, computers help people learn new things. Like, they could go on the computer and learn what's happening in the world. People can learn new words they never knew about. Also, pictures on the computer help, too. For example, if someone is traveling somewhere, and they don't know how the price. They can get on the computer and check it out, right? So, in conclusion, I believe that computers are good use. They help people stay in touch, help kids learn by playing games and help people learn new things about the world and more. So, I'm saying, please, keep the computers. They are not a waste of our time. Turst me!" 4 3 7 +75 1 "Dear @ORGANIZATION1, In the past ten years, advances in technology have completely changed the world. Technology makes peoples lives much easier and helps keep more and more people connected throughout the world. More jobs are created and help speed up ordinary events such as taxes, messages, news, and teaching. However, many people have proven that too much use of technology can make teens and adults addicted to the internet. In this addiction many people can lose time with their family, time to exercise and enjoy nature. Since being part of the generation growing up in the new technology era, I have had a first hand experience with the benifits of the new technology. I believe that this technology is a great help to society today. Many more jobs are being created because of this technology. For example, think about how many people could be employed if a new computer system was created. There would be thousands of people working on many things such as the founder, manager, creater of new ideas or just working at the new companies retail store. Running a business or a corporation is a very difficult job to do. But because of the advances in technology, running a business can become much easier and not as much time is wasted. With the new technology, people can send emails within seconds instead of running around the entire office giving out memos. Also for businesses, their stocks of the company can be updated every minute. These advances will make easier to run and make them more efficent. With the advances in technology average people can be updated on the new around the world every minute. Also when it comes time to pay taxes, fill them out and pay on line. None the less, there is more entertainment open to everyone. Through todays new technology, peoples lives are made much easier. They can work faster, get more arrands accomplished, learn more, connect to people around the world, and be caught up with local and international news. Technology is benifiting society and will hopefully continue making life easier." 4 4 8 +76 1 "Dear local newspaper, @CAPS1 best friend, @LOCATION2, was once a nerd with no hand-eye coordination, @CAPS2, he started to use a computer and now he has better hand-eye coordination than me. Computer not only teaches hand-eye coordination, but @CAPS3 gives people the ability to learn about far away places and people,and millons people to talk on line with other people. @CAPS1 friend wasn't the only person who learn hand-eye coordination. About @PERCENT1 of people learn hand-eyes coordination using a computer. @CAPS3 might takes some month to learn, but once a child knows @CAPS3, they will be outside for hours. Who would not want to learn hand-eye coordination? In addition, computer gives people the ability to learn about far away places and people. Computer engineer, @PERSON1, says, ""@NUM1 in every @NUM2 people learn about places and people threw the internet."" @CAPS3 will take a few hours, but you will be educated. Why would someone think we are spending too much time in the internet if we are being educated? Addionally, don't you have a friend who live more than @NUM3 miles away from you? If you do, @CAPS2 a computer will solve your problem of communication. @CAPS1 friend, @LOCATION1, lives @NUM4 miles away from me. We communicate using hotmail, yahoo, and facebook. The best thing of all is that is free unlike a telephone. Futhermore, computer specialist, @PERSON2, says, ""I learned hand-eye coordination using a computer. Most importantly, i was able to hand in @CAPS1 essay on time because of the information a computer provides and i was able to communicate with @CAPS1 family."" I didn't want to tell you this, but i was also a nerd with no hand-eye coordination and i learned just like @LOCATION2 learned. We aren't spending too much time, we are just being educated." 4 4 8 +77 1 "Dear Newspaper, In @DATE1's world we are dependent on computers. @DATE1 computers have become the most helpful source of technology. We need computers for so many things, and they benefit society. They can help people talk online, they're educational, and they improve hand eye cordination. It has been amazing how computers help us so much. We need computers like we need water. If we didn't how would we survive? Computers have become the glue to friendships. They help keep friendships when you don't see the friend constantly. I have a friend that moved to @LOCATION1 last year. It was way too expensive to just call ot text her. So as a result, I keep in contact with her through the computer. Everyday we @CAPS1 and use skype to keep intouch. Those cost @MONEY1 per year. If I were to call her each call would cost @MONEY2. if it weren't for the internet I seriously know that our friendship would collapse. Computers have been so helpful for many people with this same problem. Computers have become the number one source to find information. They have become more popular than the library and text books combined. So many essential resources are on computers. Text books, calculators, and even homework are online. Many people say that computers aren't educational, but scientists say it can move a students grade from a @CAPS2- to an A+. Teachers say the same thing too. one of my fellow students said that computers changed his life. He used to be forgetting to write down his homework, but he looks online and he has all of it. Now he knows what pages to read from the science book. If you don't think that computers have changed students lives, well think again. There are also games that improves hand eye cordination. Many sports teams like the @CAPS3 use this. It has increased there hand eye cordination by @PERCENT1. the team says if it wasn't for the hand eye cordination game, then they would have never have won the @CAPS4 @CAPS5. this game is also free online for anyone to use. Everyone that has used it said it really improved there reaction time. The games are also fun and non violent. They have games like baseball, hockey, and hurdles. This game has made a great improvement on people's lives. If we don't have computers then our hand eye cordination will decrease by @PERCENT2. would you want to be the person to take away computers? In conclusions computers have made a great impact on @DATE1's society. Computers are educational, you get to talk to friends, and improve your hand eye cordination. Computers have made a big improvement on how we live, and it's for the better. If we didn't have computers then friendships would break, grades would decrease, and hand eye cordination would plummit. We need computers they have been so beneficial to billions of people across the globe. Many people depend on computers. So if we take away computers then you'll be letting many lives down. No sane person would want to take away computers. Computers have benifited society in so many ways. " 5 5 10 +78 1 "Dear Local Newspaper, @CAPS1 opinion for using ""too much"" computer time is an outrage. I think people should have more ideas. Such as as exercise, socialize with family and friends, and lastly, ""you time"" which means to do whatever you would like to do indoors BUT @CAPS2 computers. For excersice you can do any sport that you like outside. For @CAPS3 and spending time with family and friends you can have a nice family reunion at their house @CAPS5 just ""hangout with your friends. Four ""you time you can draw, @CAPS5 read a book. Their is a lot of ideas instead of ""computer time @CAPS6 the time!"" With exercising can go outside and play sport such as basketball, soccer @CAPS5 baseball, etc. You could even play hide and seek with your friends @CAPS5 even tag. Anything that keeps you moving out of the house ins tead of using computers! If you exercise everyday such as ""workout"" to get fit you will definatelly manage that instead of using ""computer time"". Exercising is a good idea ins tead of using ""computer time!"" @CAPS3 with family and friends is a good use instead of ""computer time because you can finally have the time to spend time with then like talk to them, play games @CAPS5 eat dinner together. That's called ""@CAPS3"" Your family @CAPS5 friends will love to spend time together by eating dinner together and have a nice conversation. You could also play any board games such as ""monopoly"" too. With your friends you ran go to the movies, have a sleepover @CAPS5 play outside. Many good little ideas to do with family and friends instead of using ""computer time."" The last idea for ins tead of using ""computer time"" lis doing ""you time indoors. WARNING! But @CAPS2 computer time! You could do something quite like draw a nice picture. That's something nice and quite to do instead of using ""computer time."" @CAPS5 you could even read a book too. Maybe you have to catch up on your nightly reading for language arts and you want start reading your goal book. If you choose to do ""you time, you will definately manage to undo that useless ""computer time!"" @CAPS6 of these ""ideas"" for not using the computer is very easy. It's not healthey to sit around the computer @CAPS6 day! Instead you can exercise. You could also socialize with family and friends. Lastly, do ""you time. but don't use a computer!!! If you want to achieve a goal you can mange that!!!" 5 5 10 +79 1 "Computers have caused many people money, friends and time. In fact, since that the computers came out this year, lots of people has been spending web to much time of them. Which can cause people to loose time and friends. Computers and technology today have had a very influence on very many people. Spending too much time on computers can cause to loose time and money. For example, my oldest brother was very large at the age of @NUM1 or @NUM2 because our computer started working, but this had a positive impact on him, he started participating in sports such as basketball and lacrosse and that he was very at them and followed lacrosse through highschool. While doing this he and saves my parents money. This is @CAPS1 reason how computers have had a negative effect on people. The new technology has caused people to loose lots of time when they could be doing other things that would them in life. For example, many people in the @LOCATION1 have half of their day to computers, and not getting the exercise of this are video games of the day on computers. This is @CAPS1 affect that computers can have on people is loosing or with friends. For example, I used to be friends a person, but then he did not talk to me for almost the entire @DATE1 because he was always on the computer, which made me think that he did not want to be friends but actually he just deleted almost all of the the @DATE1 to the computer. Since this helped I have been over to his house about @NUM3 times this year as to every @DATE2. This is @CAPS1 way computers can change your life. The time has come to decide whether to have a computer or not to have in computers. In my mind I that it would be best for everyone if we did not have the on computers, but if you do that we should have the an computers than put a certain time wait on computers. In your so you and your family members don't loose time, exercise time, or friends. Overall, I think that it would be best for everyone if we had a time on computers to the whole day on them." 5 5 10 +80 1 "Dear @CAPS1, @CAPS2 name is @PERSON1 and I do not believe that computers are very beneficial to our society. Computers donot benefit us because they are stoping many people @CAPS3 exercising and healthy life, playing sports, and enjoying the outdoors. Computers are stoping many people, particular the younger generations, @CAPS3 exercising. Now a days instead of bitting the gym many people are home on the computer talking to friends or playing computer games. As a result many people are not as healthy as they should be. It's also recorded that any person who is on the computer for large amounts of times are hurting thier eyes, resulting in an increase of people wearing glasses. If people were to go and start doing things besides the computer they will live a happier, healthier, and better life. Unfortunatly, many young people are not getting in to play sports. During this decade many sports games have come out for the computer. Now instead of pushing themselves to work hard for aspact, kids ethier play with no heart or dont play at all. The reason for this is because they can instead work extremly hard on thier custom @CAPS4 or @ORGANIZATION1 teams in @PERSON2 or @NUM1. Also the computer is not the only electronic stoping kids @CAPS3 playing sports, xbox, playstation, xbox @NUM2, psp, @NUM3, gamecube and gameboy are some of the few console systems that play games that distract kids. I myself, had been caught thinking more about on xbox game then @CAPS2 own hackey game! not olny are these electronics pulling kids in like magnets but the parents are they are alarming thier kids to play video games or stay on the computer for hours on end. Many of us dont know what its truly like to go outside and camp. do not to spend time with thier family. I came @CAPS3 on @CAPS5 family and many @CAPS5 families are very close, so its natural to be doing things with @CAPS2 father or brother or whole or cousin. However not to many families are as close as so they do not do something togther. If some fathers took thier sons fishing or camping, it would get them away @CAPS3 computers and the father/son band will become stronger. These are @CAPS2 reason sir and they should be thought over far quite sometime. Just remember that many people need to exercise, many play sports, and many families got to exprience the outdoors." 4 4 8 +81 1 "Dear Local Newspaper, I think that using computers is a good thing and it does not effect on exercising, enjoying nature, and interacting with family and friends. Here are three reasons to support my oppinion people learn more on the internet, children at school can go online to find what was for homework, and how the internet does not effect everyday life. My first reason why I think using computers is good because people learn more on the internet, You know what people say, you learn something new everyday. Well, if you are wondering about something or if you're think about something, the internet can help you find what you're looking for, @ORGANIZATION1 is a great site to find what you're looking for. It also has its own images if you need a picture for your project you need. My second main reason to why using the internet is good because if your a @CAPS1, you can go online to check what you have for each subject. If your a @CAPS1 and you don't want to do homework at recessthe next day from being sick. No, you can go online to your schools website and click on your teachers names to see what you have for homework. This way you can still have time to go out side, play with friends, and interact with family members. My third and final reason to why using the internet is good is that it effects everyday life, in a good way. If you don't have a t.v. and you have no idea what the weather is like, you can go online to see if it's going to be snowy, or rainy. This can tell you if you need a jacket or a rain jack, if you need to use a shovel or hold an umbrella. The internet can be useful in everyday life. In conclusion, I think using the internet is very good and will not effect your exercise, or interacting with family. To support this I stated, people learn more on the internet now, children can access homework if you missed a day, and how the internet effects your everyday life in a good way." 4 4 8 +82 1 "Do you remember the last time you locked something up on the computer? Many people use Computers, but not everyone agrees that this benefits society. Those who support a trances in technology believe that computer have a positive effect on people. I support computers because they help with writing, locking up information and provide communication. One reason I support computers is because they help with writing. You can tell I do not have the greatest hand writing. To help this, I type almost all of my papers. Computers can also help people with spelling and gramar. There are even systems now that let you say something and @CAPS1 will appear on the screen. This is just one reason I support computers. Next, computers are benifical because of the information they can provide. ""before computers you would need to go to the libary and find around ten books that might not even have what your looking for. Now you can find hundreds of articals on any topic in minutes. The amount of information out there is un imageinable. I think computers are a great of technology because of the information they can provide. Finally, I believe computer are a benifit to us because of comunication. One term of communication that came out recently is @CAPS2. @CAPS1 is a website that let's you sent messages to a friend, share picture, videos and many more things. E-mail let's you send letters to people via internet instantly. I could go on forever about forms of comunication on the internet. This is the last reason I support computers. Computers are a great benifit to society. They help with writing, communication, and everyone could benifit form computers." 4 4 8 +83 1 "Dear Newspaper Computers have been a great learning source and i think it's time we give them some cridit insted of worrying over them. I will be telling you about how I think computers are great. One reason they are vary helpful is that books dont always have all of the information. So if you need to know a fact or need more information for a project you can go on the computer and it's all right there and you will have known more facts then when you started. The second reason is that you can be almost anywhere and half acess to a computer and you might not have a phone but you can talk or send a message. Not everyone has a phone but computers are a secondary way to have a conversation with someone. Another reason, is its not always sunny outside and when it is a rainy day you have a fun way to play and learn without having to be outside. The computer dosnt replace the outdores or exercising it is just a passtime when you dont have the oppertunity to be outside. I hope you liked and understod my reasons and will take them in to concideration when going over the topic." 3 4 7 +84 1 I think computers help people out because you can learn about at here thing like @CAPS1 you want a job you can look it up in the computers. Also @CAPS1 you have a problem they will help you out. @CAPS1 you what to go some where you could go and be on the computer and look how it is and @CAPS1 you like it you could go @CAPS1 not look some where else you what to go. I think it a great thing @CAPS1 you look for people in the computer because you could talk to them and see them it realy cool. You can look for coltures in your computer what you want to learn. Like @CAPS1 you have a favert person you what to know about you can look it up in the computer and she videos or you can look up different sites it really cool. There games you can play online there alot of game and fun game learning games. Math game science game different games you what. Also you can us othere people that are planing the game game as you. It realy cool. I think the computer isn't bad for people computer help them a lot. 3 3 6 +85 1 "Dear local newspaper, Computers are they a good benifit for society or a bad benifit for society? What do you think would you enjoy always being on the computer? I wouldn't, so this is why I believe that computers have a negative impact on society. First reason why I think computers have a negative impact is because you can become addicted to always having to be on the computer. Becoming addicted to the computer leads to serious consequences. For example you spend less time exercising and that isn't healthy for your body physically. Not exercising leads to many things like being over weight, health problems, diseases like dieabeties, and many other things, but usually these are the main problems. You can aviode this by turning of the computer and just go for a small walk, but because of what computers have to offer now these day people want do this. Thats one reason why computers have a negative impact on the society. Another reason for why computers have a negative impact on society is because you won't spend as much time with your friends and family. Even if you don't know this if you spend more time on the computer than with your family and friends this affects them in many ways. They can feel dissapointed worried about you, even concerned. When you are always on the computer you're ignoring your family and this hurts them emotionally. Think about how would you feel if you had a best friend you always hung out with. You two did everthing together, and the all of a sudden your best friend suddenly stops calling you; or visiting you and hanging out with you. You would feel dissapointed because you loss your best friend over a computer. These things can happen if you go overboard when using the computer. This is why is think computers don't do good they do more harm in my personal opinion. The final reason why I say that computers aren't way good is for a main reason safty. Those days computers have all the websites like @CAPS1, @CAPS2, twitter, and others. There are so many kids who chat with people they don't even know. Also they're posting pictures of themselves without even thinking that this is a dangerous thing to do. Once you post those pictures they will always be there no matter if you even try to delete them. Another thing when you're on the computer people don't even think about their safty and thats how things happen. For example you can think you're talking to a friend but as it turns out you were talking to some stranger. Then you go meet up with your friend when it really wasn't. So you see safty is a real big problem with these computers. That's why I believe computers have a really negative impact on society. As a result, do you still believe that computers are a good beifit for society or bad beifit? My opinion stillis the same and I'm sure that there are others who believe the same. So this is why I think that computers are a bad benifit for society, and that computers can lead to more harm than do any good for people who use the computer." 5 5 10 +86 1 "Dear Newspaper, @CAPS1 computers become more and more a part of everyday life people begin to question wether or not they have a positive impact on people. Computers are a technological wonder that has a positive effect on people. The world wide web, unlimited socialization and simulations are just a few of the benefits of computers. The internet provides acess to the world wide we. Infinite amounts of information can be found on your computer. ""@CAPS2 in almost everyday school rely on the internet to gain information stated education secretary, @PERSON1. Also search engines provide acess to thousands of information loaded pages. In addition to unlimited information the web olds thousands of different web pages. With these people can learn about other peoples opinions or spend time playing games. The web is only one thing out of hundreds of great things about computers. Socialization is a huge of the moders life style. Web cames @CAPS1 on computers allow people to talk with friends who live miles away. No longer will people have to take an airplane to talk with friends on the other side of the world. Also, instant messaging and email is the main comunication system for thousands of people. It is the most efficient way to talk to friends. In fact, I became re connected with a lot of people I didn't talked to in a long time by getting email. Every body loves taking with their friends and family and this is made easier by using computers. Simulations are a huge benifit of computers. Many simulation programs are used to help people in their lives. Many proffessions using simulations on computers to help learn hot to do their job nine out of ten medical schools have the use of surgery simulations @CAPS1 part of their training course. Also, simulations and gaming on computers reveal interest for many people. I myself have a greater interest in history now after playing many historical themed computer games. Also many games and computer simulation have helped many people learn new things, @CAPS3 are countless learning games and simulations that are acessable by computer. Simulations add huge benifets to owning a computer. @CAPS1 technology advances people are opened up to many possibilities suck @CAPS1 information via the web unlimited socialization and simulations. The benifits of computers are many and the problems few. So, how can you keep up in a world where computer users hold the advantage if you deny the benifits of computers? Computers affect people in a positive way." 4 4 8 +87 1 "Computers. One of the much enjoyed pieces of technology. But it is also one of the many distractions. Many people ponder if computers are really beneficial. I am one of those thinkers. I think that computers don't always benefit society. They have many, many distractions such as facebook, online games, and even inappropriate images and videos. If you really think of it, are computers as beneficial as we think? My friend, @PERSON2 was just told about facebook, and got a membership. It just started out as a 'na big deal' kind of thing. She went online often, just to check on her status and if she had any messages in her inbox, and that's @CAPS2. But then, she was full-blown addicted. She applied for @CAPS2 the clubs and groups, and she started getting behind in school. She was obtaining a plethora of @CAPS1's on most of her tests after not studying because she was on for almost six hours everyday. @PERSON2 would come home and not even bother to do homework, but would just immediately go online. After one month of being a member, she was failing @CAPS2 of her classes, and her mom took her computer priveleges away. See, she was distracted by one, little thing, and her whole life was almost destroyed. ""But, mom, i'm in the middle of a game! And I'm winning!"" @PERSON1 says vistoriously. @PERSON1 loves online games, and he wins almost @PERCENT1 of the time. But, that's not the point. He plays games @CAPS2 the TIME. @PERSON1's game playing gets in the way with the interaction of him and his family. He @CAPS3't played eith his four year old sister, @PERSON3 since she was two years old. his mother also often eats dinner alone. Sometimes, he even views inappropriate pictures when his mom is out shopping. When he's playing a game, a girl @CAPS4 him, ""@CAPS5 at my pic. They're hot! and he looks at them. He thinks they're harmless but that's not what his mother thinks. his gaming has gotten in the way of his family and social life. most people think that computers are beneficial because you can find cool information. But, you can get @CAPS2 kinds of information from books. Instead of typing '@ORGANIZATION1', you could just @CAPS5 for it in a library. It takes less time, and you won't get carpal tunnel as easily. See? Computers aren't as beneficial as most think. There are @CAPS2 kinds of distraction, and these are only a few." 5 5 10 +88 1 "Dear Newspaper, ""@CAPS1 no!' I forgot the deffinition to this homework problem and I dont have my notes. Now, in this situation a computer would be very helpful to just type in the word and get a whole bunch of results. This is why I believe having access to a computer at all times is very helpfull because you can find information that you've been needing. You can get in touch with a friend if you need to or just to talk to lostly if you are just sitting around and having nothing to do you can just go on the computer and discover things you @MONTH1 not have known. Having access to a computer is a real and very helpfull because if your just having a conversation with someone and you forget a name of an important fact you want to tell them, you can always just look it up. For me, a lot of the times I just need information about maybe a sports player of facts about a famous event. Since our technology is so up to date the computer is right there sitting with many of the helpfull facts we would like to know. Friends are a big part of my life and I love just to talk to them and see how they are doing. Again, our technology is so advanced now that there is a bunch of websites where we can talk and see how we are doing. A big reason why being able to talk to friends and family is helpful is for taking to people that are very far away and the ones you dont normally see. On a computer you can talk to people from not only all over the @CAPS2.S.A but even in other countrys! Finally, the times I find having a computer around me most helpfull is when I am just bored with nothing to do! I can just visit a whole bunch of educational websites on things I @MONTH1 have learned in school or wanted to learn. On the internet there are many things to keep you occupied like games or ou can even watch movies from your home onto the computer! If you have a computer around your house you should not be bored because there is many things you can be doing or even learning! Having a computer around your house is so helpfull, you can have fun but your even learning how to be good with technology at the same time. Computers are the future and its a good one. So I suggest you pick one up and just have a blast, you wont be sorry." 4 5 9 +89 1 "Computers do benefit are society. They have changed the world alot. You can do many things on the internet. On the computer, you can chat with people everywhere. The computer helps the world. These are ways how computers do benefit our society. There are many things you can do on the internet. You can play games with people. You can talk to people on certain websites. You can look up vaction spots. If your tired of being home, then just go on the internet. These are things you can do on the internet. On the computer, there are many settings. Out of all of them, chatting is the best. You can be playing a game and still chat. If you chatting with someone, you can still chat with another person. You can chat with people from across the world. This is why chatting is the best setting. Computer helps the world in many ways. It helps kids if they need to research something. It helps the cops catch the bad people. The computer helps parents get from their children by vaction ads. This is has the computer helps the world. The computer does benifit our society. It has change the world. You can do many things on it. On the computer, you can chat with people from anywhere. The computer helps the world everyday. This is how the computer benifits our society." 3 3 6 +90 1 "Dear @CAPS1 and @CAPS2 of the @LOCATION1 @CAPS3 I think that computers are a good thing to use. I know that some people do use the computer instead of enjoying a or exercising, but not everyone does that, The computer is a good resource to invest time in. The effects computers have on people is good (for the most part). The statement is true, people that use the computer can talk with people online and get information quickly than the library. I believe that the effects a computer has on a person, are good effects. When people use a computer they can get information which for research and work (word) That's because, when your on a computer you can simply relax but get available amount of work done. You can also do things while your on the computer, hold your dog, hold your cat, eat, drink, text, call. It's very multi propose (use). But some computers is a bad thing because not how the very expensive and same dont have the money to buy a computer but if you do have, you because they're of people or example @CAPS4 cheated and not a computer he could have good so rich and rumors because the computer is what he needs to be succesful with microsoft so computers are useful and the effect they have on people is a positive one." 3 4 7 +91 1 "Dear Newspaper, I think computers are great. There really helpful. They can teach us about things. Also they have fun games and websites which is always a plus. Computers are helpful in lots of things, like if you need to look something up for school you can just easily go on the computer and find it also some teachers have websites now where insted of bringing a big social studies book home, you can go on the internet and use the online book. Did you know that @PERCENT1 of @CAPS1 students rather use the internet book then taking the actual one home. Also if you forgot to write down your homework theres a website to lookup all the homework you have. Also computers can teach us things. There are websites that have math games and school related things. Also you can easilly go on google and look up things and they can give you thousands of information. Lastly the internet is a good source for fun they have millions of games on the internet and also fun websites like facebook. Did you know @PERCENT2 of @CAPS1 students use the computer for the games and online talking. This also gives kids lots of things to do on a rainy day. So weither your using the internet for it's helpfulness its resources, or just for the fun games and websites. Computers are really helpful." 4 4 8 +92 1 "Dear local Newspaper; @CAPS1 you know that computers teach you to do many things? You probably do! I understand you would like to know my opinion on whether or not computers have a positive or negative effect on people. Well, I think that it has a positive effect. Computers teach you how to type and learn the moun keys. It also helps you to look things up like people, states, and etc. Lastly, it helps you to interact with other students when not in school. i encourage you to continue reading to hear my wonderful and strategic ideas. First of all, I think that computers have a positive effect on people because it gives you the learning skills to learn how to type I remember last year in @NUM1 grade, the tech ed teacher, ma @LOCATION4, told to go on a website that was all about learning how to type. It told us that the main keys were. A,@CAPS2,@CAPS3,@CAPS4 and @CAPS5,@CAPS6,@CAPS7, and colon(;). It was very helpful. From then on I typed like that. I think that learning how to type is an excellent thing. Typing helps you if you want to become a secretary or even a newspaper editor. My mother is a secretary down town at the low form called: @ORGANIZATION1. She works for three houses so she learned to type really fast. Typing is a big part of your life. You can use it for a project that you have to do for class, or an essay lthat you have to type to apply for a scholarship ro colege. Typing is used everywhere, even in math class my teacher types up things and pits them on the @CAPS8 @CAPS9. In addition, computers have a positive affect on people because they help look up famous people, states, countries, and etc. I remember on @NUM2 grade I @CAPS1 a project on @CAPS10, and in @NUM3 grade I @CAPS1 a powerpoint on I've also done a project on @LOCATION1 in @NUM1 grade, I @CAPS1 one on @PERSON1 this year for music, and I'm beginning one on @LOCATION2 and @LOCATION3. As you can tell, I've been using a computer, basically my whole life, except when I was a baby, but now that I think about it, when @CAPS11 a baby I got a little fake computer. i know computers are @LOCATION1 but they do have a positive effect on people. When was the last time you need a computer to help you look up something or someone? Priority not too long ago. Computers are the real dael. They can help you do anything. They've helped me my whole life. To be continued, computers have a positive effect on people. They help interact with other people students, and fa mily members, when not in contact. I remember when my cousin moved away. i was so sad. I didn't went her to leave. So then she gave me her email to contact her on the computer so I could talk to her. The computer has many websites where people can interact like: @CAPS12, @CAPS14, @CAPS13, aol, msn, yahoo, g-mail, twitter, and many more. i like talking to people from all over the country. I talk to my friend when I'm at home. i talk to family members. My favorite website is @CAPS14. I am a fanatic of it. It'@CAPS2 spo much fun. Do you have a favorite interaction website? @CAPS1 you have any interaction websites? If you don't you should get one. This is why computers have a positive effect on people. In conclusion, i think that computers have a positive effect on people. One because they can interact with others. Two: they can look up things to help them. Three, they can develop a sense of typing. Thank you for reading my letter which I 'm sure has persuaded you to agree with me on how computers have a positive effect on people." 5 6 11 +93 1 "Readers of ""@LOCATION2 @CAPS1"" should be well informed of the benifets of computers to society. Not only do they teach hand-eye coordination, but they give people the ability to learn about faraway places and provide a means to easy, online communication. In this day and age, good coordination is esencial to prospering in society. Using computers provides a method of both establishing and improving hand-eye coordination from the comfort of your own household or workplace. Dr. @DR1, of @ORGANIZATION1 medical center, says that a recent study shows @NUM1 out of every @NUM2 computers users have better hand-eye coordination than people who do not operate on a computer regularly. In a local primary school, students have begun to ""@CAPS2 to learn"", a program that promotes quick typing. School officials have seen a dramatic increase in the typing speed of children since the program was started in @DATE1. In this way, the computer provides a secure route to better hand-eye coordination. Even more importantly, the hand-eye coordination gained from using a computer can increase the chances of getting a job involving computer hand-eye coordination as an adult such as the position of a secretary or grafic designer. While hand-eye coordination is a factor of computers that has an extremely positive effect on people, the ability to learn about distant places with the touch of a keyboard is even more benificial towards all users. Website such as google and yahoo can track down millions of results in a matter of seconds if you search the name of a city or country. This can be handy when working on school projects as well; instead of having to lug tens of books home to finish an essay on @LOCATION1, you can simply look up the information on a computer at your house. When summertime comes around, and the last school bell rings, you can instead research faraway places that could turn into vacation spots instead of homework assignments. All of the travel information from plane tickets to the right currency is at your fingertips on a computer. If ""@LOCATION2 @CAPS1"" readers were aware of this, lots of trouble would be prevented and lots of time would be saved. The one component of computers that is used even more than research is online communication. State officials, governers, and even the president can post messages on websites for citizens to view while they check the weather or their email. This is a much easier way to hear goverment statements than waiting through endless commercials to hear speeches on the @CAPS4. Social networking sites are also immensly popular, and on pages like facebook and twitter you can reconnect with people who you don't have the chance to see everyday, or don't lie relative vincinity. If your cousin is going to school abroad, and did not have access to an international phone, you could communicate with them through email on the computer, and it would be as if they never left. It is ridiculous to think that someone could find computers - the gateway to faraway places, good hand-eye coordination, and the connection ten distant friends and family - a concern to society. They help town in countless ways and ""@CAPS5 @CAPS1"" readers should be aware of this." 5 6 11 +94 1 "Dear Newspaper people, I'm here to tell you that computers have a bad effect on people. The computer @MONTH1 hold lots of information but does it always hold the right information? You could do lots of other stuff than lay on the computer. Also, the computer is very distracting. The computer @MONTH1 give you the wrong info. Instead of going through the process of turning on your computer, search for the info and turn it off takes more time than find a book, open it, find the info close it and put it back. Books more often are correct. Computers take time to find into than a book. Computers give you too much information than a book. There's plenty of other stuff to do than play on the computer. You could read a book or draw. You could also play outside and shoot hoops or ride your bike. You can call up your friends and play with them. If you're really bored and you don't know what to do, make up a game. At times, computers could distract you. If you want to get homework done and you have a computer, it gets you off topic. If you're at work with a computer, it's tempting. Even other people on computers is distracting. if you're working on the computer, it does not take much to to take the thing you need to search like @ORGANIZATION1 and change it to something you want to search like @ORGANIZATION1 company. See what I mean by a negative effect? It doesn't give you the right info always, you could do better things in life and is very distracting. It is what makes the workers to the procrastinators and the fit to the lazy. Computers have entered our world and have altered all of our lives! Computers have made a big change to everyday life. Please agree with me." 4 4 8 +95 1 "Although some people believe that computers turn us children into zombies, I believe that they effect us in a posotive way. Computers can help us explore far away places that we @MONTH1 never go to. Maybe help us connect with an old friend or just a little help on homeworks. One reason why I think computers are only helping us is they help us explore othe places. I know for a fact that every kid dreams of a place that they would love to visit. But not at all of us can afford to travel far away. Most families however, do have computers. With these computers, kids with a parents permission, can use the internet to learn tons of cool facts about their place. ""I have always wanted to go to @LOCATION1 but my parents just don't have the proper incomg"" said @PERSON1 of @CAPS1-@CAPS2 @CAPS3 school @CAPS4 I used my @CAPS6 and the internet to discover. HUNDREDS of amazing facts on it."" @CAPS4 as you can see computers can help people realize their dreams. Another reason why I think computers are good is they help you connect with friends. If you are like me, you like to talk to your friends. A @CAPS5! But sometimes they are too far away to call if you don't want to pay for it. A solution a new wonderful machine called. The @CAPS6! You can chat long distances without being for it. This is especially good for me because not too long ago, one of my best friends moved away to @LOCATION2. I thoughy I would never talk to him again. Then I learned about @CAPS7 @CAPS8. It allows you to talk whenever you want, whenever you want! Now, me and my friend can stay in touch and @CAPS4 can you! My finale reason as to why I think computers are good is they can help you on homework too. Even have a tricky math problem you couldn't figure out? How about the capital of a state that visit, slipped your mined? Well the @CAPS6 can solve both of those problems and more! @PERCENT1 of computers these days come with soft wear in them that comes with a calculator. For the other @PERCENT1 you can download and install softwear onto your @CAPS6 for a low price. And every @CAPS6 made in this world has internet capabilities. All's you need to do is it on and get ready for a ride! @CAPS4 don'y worry about too much @CAPS6 use, because computers can only help us not hurt us. @CAPS4 remember, computers help us live our dreams to the full extent. they also help us connect with no another, and help us excel in school. @CAPS4 get on, and get goin. Have you used your @CAPS6 today?" 5 5 10 +96 1 "The use of computers is definetly correct. It is helpful, you can discover new things and much more. Computers makes peoples lives just so much simpler. Computers can help people in magnificent ways by looking for things you despretly need. Like if you were a student and you had to write a paper on @PERSON1. The computer has internet and that like billions of facts @PERSON1 and much more information about every thing. It can be helpful also by looking up the wheather, the new, even things that are happening around the world and even answering questions you have. Discovering things on the computer is something that happens every day. For example I read an article about the @CAPS1 and the @CAPS2 @CAPS3 the next day my teachers gave us a pop quiz on that and I got @NUM1. If a computer can get somebad a @NUM1 on their test think of what else it could do for the world. It might even help sae lives. Of course a computer can be helpful. In way like cheeking the score from yesterdays game, see whats going on in your community, watch videoes, hear music, talk to your friends, relatives get information on places, medical stuff. A computer can basicly do every thing from looking up the games scores to saving a life. The use of computers is, obviously the best dicision." 3 4 7 +97 1 "Dear Local @CAPS1, I think computers benefit society greaty. Most of what we do today could not happen without computers. The biggest use of computers is comunication. If you're in @LOCATION1 on a buisnoss trip but need to send a letter to your company, you can send an emil which is much less expensive than paying for as piece of @CAPS1. The experts concerns that people aren't spending enough time with family and friends is a point. Many people cominucate with family and friends through computers. I would hardely yet to talk to my cousin if I couldn't go on facebook. I would have had to wait another month to find out my other cousin was engaged if I didn't follow her on @CAPS2. If the concern is face to face contact, the computer has a cure for that, too, a video messaging site called ooVoo. Another way computers allow comunication is through the shareing of information. Many facts needed for school are spread out in hundreds of books. Over the @CAPS3, I've done research for a project and have been able to get facts from the @ORGANIZATION1 and @ORGANIZATION2 about crime stats. Many times researching an animal will take you online because more modern books note good website to travel to for more information. Without the @CAPS3, a simple reasearch project could take for months. Some scientists think people are spending too much time on the computer. This both right and wrong. Sitting at a computer watching youtube for hours is not nessasarily the best thing. However, the @CAPS4 is also for computer. The @CAPS4 has designed a game so that you can have fun while getting excersize. Computers are like chocolate. They can be good, but too much is a bad thing." 4 4 8 +98 1 "Dear @ORGANIZATION1, In this new digital age, computors are beaming more and more advanced. You can do just about anything with computors now from talking to people, to learning about faraway places. It is not all as wonderful as it seems, though for people's lives have been ruined because of the internet. It is for that reason that computors are not a benefit to our society. With computors we can learn anyting, go shopping, and contact friends. For many, this deletes the purpose of going outside. You can live your entire life indoors. This lack of exercise can lead to obesity. Also, living this secluded lifestyle can cut off ties with your friends and family. In order to use computors wisely, we have to learn how to balance computor time with an active lifestyle. The problem is, not many people do that. Furthermore, going online too much has been known to produce a second life. With websites like @CAPS1, @CAPS2, and @CAPS3 you can have a whole different online life, with friends that you haven't even seen before. Sometimes, people have even been known to think that their online life is better and get sucked into it. Take @CAPS4 of @CAPS5 for example. It is very popular, but also extremly addicitve. Some play until their entire lives are devoted to playing. Same with @CAPS6 of @CAPS7. This obsession with online games or @CAPS8 is not what internet was made for. Also, peoples lives and reputations have been ruined by computors. Cyber bullying is spreading like wildfire. Its anonymous, and can be detrimental to the lives of others. Internet videos of people acting like idiots never go away. There is one video of a college guy playing with a golf hall retriever like asword called @CAPS9 kid. The video has been viewed over @NUM1 million times. The guy in the video was made fun of for years, sued the people who put the tape online, and was forced into depression. Moving on, people can literally get their lives taken away with computors too. Identity and credit card theft is becoming more and more common. Even my dad had is credit card account stolen last year. Computors must help, but they can hurt much more. In conclusion, computors are a detriment to society. the can hurt people, cause addiction, and seclude your life. Surely this isn't the grounds for something to help society. Truly this is a good thing to let people use." 5 6 11 +99 1 "Dear @CAPS1: Have you been sent a photo of a @NUM1 year old child with no clothes on? Well, if you have this is called sexting. It can be put on the computer or any type of device. People should stop using Computers more because it can lead to bad things like sexting from teens, bad for the younger kids, and teens could be, talking to someone they don't know. Lexi @NUM1, says that ""she has goting facebook texts to her cell phone of other teenage kids that are excuset"". @PERCENT1 of @LOCATION1 population teenagers have @CAPS2, @CAPS3 and @CAPS4 chat. Any of these websites can ford photos to their mobile device. This has goting out of the hand and what ever is on the computer now will be on forever. More childern under the age of @NUM3 years old are on the computer know. Where there are chat rooms were they can interact with others. For example, @PERSON1 is a childerns game that has a chating interaction, were you can talk to who ever. But, we you create this @PERSON1 you child has to give a parents email address were they have to read the following terms to chose for their child. But, most parents don't even read it . @PERCENT2 of these parents just agree to these terms and don't even read them. @PERSON2, was followed home from soccer practice when a man about @NUM4"" and around the age of @NUM5 said ""@PERSON2 come get some candy"" @PERSON2 said ""how do you know my name""? ""@CAPS5 said cause I play with you all the time"" @PERSON2 quickly ran home and @CAPS5 told his parents. @PERSON2 plays on @CAPS6 another intraction game and told this stranger @CAPS5 lives in @LOCATION2 field and @CAPS5 goes to @LOCATION2 @CAPS7. Giving strangers you information they can trace you down and find the street you live on. We need to keep our children safe and off of the computers more so sexting, and young children stay off, so kidnapping stops. Help @LOCATION1, @CAPS8 to become a safe place for our childern." 4 4 8 +100 1 "Dear local newspaper, @CAPS1 you know how long you go on the computer for? Well get up and go outside. Thats one of my reasons why I think people spend to much time on it my other reason is your eyesit can go bad. Its a nice sunny day dont wast your time on the computer! Go outside! All, kids @CAPS1 is sit on the computer all day not getting exercis. Did you know @NUM1 out of @NUM2 kids that sit on the computers all day gain at least @NUM3? @PERSON1 told me that. I mean I believe him because its true kids dont get up.There missing a nice day out would you wanna miss a nice sunny day? My finall reason is kids eyesight can go bad. I mean having them stare at a screen all day, thats bad. @PERSON1 told me if your on the computer for @NUM4 hours on the computer for @NUM4 hours straight your eyes can get worst. I remember a tiny when I was on the computer for @NUM4 1/@NUM4 hours my eyes were killing me everything I blink. I know the computer is fun playing games, talking to friends but you should take a break and @CAPS1 something ples. In conclusion just go outside and have fun! @CAPS1 you want to wast a nice sunny day by staying in doors hurting your eyes? I know I @CAPS1!" 3 4 7 +101 1 "Dear Local Newspaper, Have you ever gone somewhere, taken pictures, and posted them on the computer? If you have you will remember where you visited. But atleast you went to @ORGANIZATION1, or @LOCATION1 or somewhere. There are some people who are on the computer all day. Instead of experiencing nature and taken on @CAPS1 life brings to them, they are on facebook or youtube all day. This disgusts me because there are many fun, beautiful, and entertainings things to do. In @CAPS2 opinion I think computers have negative effects on people. People miss out on enjoying nature or interacting with friends and family. Some people do not get exercise anymore and it hurts to see obese people just sit ther and do nothing about there lives. First I'd like to talk about obesity. Did you know that @PERCENT1 of children are obese at young a young age? Computers take the place of exercising for a young boy or girl. They should go outside and play sports like basketball or soccer. Another thing is those game websites. Children get so caught up in a computer game, everything around them just disappears. All they worry about is winning the game. While playing this game they might eating doritos. Sooner or later five pounds is gained. Then they will regret not exercising and not be able to move. Later in life, when things are bad for them, they will realized on how many fantastic things they missed. Then they will say ""@CAPS1 did I do with @CAPS2 life?"" @CAPS2 next point shows that people are not enjoying nature. Have you ever taken a nice walk in the park? I know I have. Well people sit inside all day just taking a peek out the window, but don't think about going outside. Nature is beautiful, smells nice, even refreshing at times. But no. People sit on there butt all day. On the computer accomplishing absolutely nothing. Why can't they go outsite for a walk or a jog? People can see animals like squirrels climbing up a tree. How cute. But instead they play a virtual game where you shoot squirrels with a paint ball gun. So much is missed because of computers. As much as not enjoying nature upsets me, some people blow off their own family just to watch a re-run of family guy on youtube. @CAPS1 have we come to? Some children hit their parents because the parents shut the computer off. I'd rather enjoy a meal with @CAPS2 family and then just sit down, relax, and talk. Also some people don't get sleep becuse they are ""doing something important"" and miss a family trip or even school. In conclusion I believe that computers are bad because of obesity, missing nature, and not enjoying company of family & friends." 5 5 10 +102 1 "Dear Local Newspaper, Experts should not be concerned about other people that stay on the computer for a while. Maybe people know what they are doing and have to stay on computers for a long time. They also might like to learn things that they never thought about learning. Most people try not to be overweight. Experts should Not try to have less people on the computer. One reason is that people can chat with one another. It can be friends, families, and more. About @PERCENT1 of people chat online with families or friends. Chatting can also help you like if there is an emergency. You can tell someone what is going on and call the cops. Without a doubt chatting online is a great way to use the computer during the time your on it. Another reason is that you can search anything you need to know. Maybe if you have to search something for school, the computer can help you. This can have positive effects on people. It can make someone a better person. You can't agree that getting to search anything is a fantastic way of using a computer for a while. A third reason is that it can teach you hand-eye coordination and gives people the ability to learn about faraway places and people. Learning about things you have never dreamed about learning. There are many people and places in the world that you still have to learn about. Is it surprising to you that almost everyone and anyplace that is famous is on the internet. Using the computer this way is another terrific idea. These are all great ways of using the computer. Being on the for a while is not a waste of time. People can you their time wisly on the computer. Surprisingly it is true that all of the reasons are good for the time being on the computer. So you should try to make people be on the computer less often." 4 4 8 +103 1 "Dear Local Newspaper, Have you ever been running late to a party and just realize you don't have the directions to the person's house? Have you ever had to write a paper and there wen't any books or encyclopedias available? Or have you ever just wanted to catch up with an old friend? @CAPS1 you answered yes to at least one of these questions, there is a good chance you have used a computer in your lifetime. Computers have positive effects because they can give you quick and reliable @CAPS2 and the can be fun too. To begin with let's go back to that example in the paragraph above. Have you ever been running late to a party and realize you do not have the direction's to the person's house? @CAPS1 you have, there are two things you can do in that situation. You can call up the person who probably wan't answer because they're @CAPS4 fun at their party, or you can go on the computer, type the person's address in and you will have your directions in seconds. Call me crazy, but this way seems quicker more efficient and reliable. My mother always says to me, ""@CAPS1 you're @CAPS4 trouble finding @CAPS2, go on the computer,"" because she knows that there is all the @CAPS2 in books on the @CAPS3, and more. And it's just one click away, @CAPS4 sold that, the computer has positive effects on you because it gives you quick and reliable @CAPS2 In addition, computers have positive effects on you when you're trying to have fun. For example, @CAPS5. @CAPS5 is used by teens and adults like, and for one reason only, to socialize with friends via computer. @CAPS1 you to another date and wait to see what your last friend's up the best thing to do would be to go on @CAPS5 and ask A @ORGANIZATION1 shows that in a family of five, four of them use the @CAPS3 to communicate and socialize with friends. Obviously, this is how computers have a positive effect. In conclusion, whether you're bored at home and it's a rainy day, or @CAPS1 you have to nght a research paper you saved until the last minute, a computer will be there for you. Positive effects computers have - are that they are quick and reliable, and they are fun to use." 5 4 9 +104 1 "Dear The @CAPS1, @CAPS2 has been an argument wheter computers do or do not have a positive effect on people. Some believe, that computers have negative effets on people for example spending too much time, not exercising, and not interacting with family and friends. However, I believe computers have a positive effect on people because it teaches hand-eye coordination, lets people know about faraway places, and allows people to talk online. To conclude, computers have a positive effect on people. Did you know hand-eye coordination can be helpful at times? Well, it true because if you are in distress and the phone is broken and you don't have a cellphone then send an emergency e-mail to one of your friends informing them to call all and since you have hand-eye coordination you can type without having to look down. Also if your in college and have an important essay due tomorrow then hand-eye coordination can really help you write down notes without having to look back at the writing paper. Finally, with hand-eye coordination it can help you can join the army because if you spot a threat you can aim and shoot quickly without having to take out the gun after threat attacks. To conclude, computers teaches hand-eye coordination. Have you ever wanted to go to a forgein places? Well with computers you can do that you can just search the place and see what the place has. Fethermore, if you want to learn to speak a forgein language you can all you have to do is type in the language with a question and search its so easy a baby can do it. Finally, if you want to learn how to cook like forgein places do then type in the type of food or its name and search. To summarize, computers lets people know about forgein places. Have you ever have the feeling that you want to talk to somebody? I know I have this is why computers can help you talk to people online just tree the person's e-mail adresses and type the message. Also you don't have to waste money on paper and envelopes. Finally, having an e-mail is free so you can talk all you want. To conclude, computers help people talk online. In summarization, computers have a positive effect on people. It helps them have hand-eye coordination, learn about new places, and lets them talk." 5 5 10 +105 1 "Computers are used world wide everyday, and most of the time @CAPS2 is used for a good reason. Computers help out by making @CAPS2 possible to get all the info you want, like for a trip. @CAPS1 you wanted to go to a close but fancy restaurant you @MONTH1 use a computer so you know how far. Computers also help out, making @CAPS2 possible to talk to friends that you haven't seen for years. @CAPS2 is also great way to meet new people. Let's say you are really stressed at work or school and you forget your book, you can usually bring @CAPS2 up on the computer and do @CAPS2 there. First, computers help out with traveling, sight seeing and lots more. When you travel, dont you want to know everything? And the biggest detail you want to know is the cost and the computer can usually give you a close to exact price for everything. Now that help's out a bunch when your traveling the world. And also when your site seeing you usually want to find either the most amazing or romantic spot were you are. And @CAPS1 you type in ""the most romantic spot in somers"" @CAPS2 should come up with a bunch of spots. So dont drive to miles just to get a map or brochure, use your computer and print one off. Second, @CAPS1 there was a friend you haven't seen in years and you want to talk, you can go on the computer. The computer helps in so many ways @CAPS2 could even tell you were this person lives and you could surprise visit him/her. When your on the computer, you can even meet new friends and have conversations with them. and even meet them someday. And @CAPS1 you and that new friend get along then mabey you and that person could be best friends. So @CAPS1 you haven't seen or talked to someone in a while that you knew use the computer to have a chat. Third, say your teacher or boss yelled at you today and no one has been nice to you all day and you forget your homework book or paperwork. Were do you go? the computer, @CAPS2 can bring most any paper work or work book you need to get the job done. @CAPS1 you forgot your homework book, you dont want to get a falling grade. on this homework. So you go to your computer from there. And @CAPS1 you forgot your paper work, and @CAPS1 you didn't finish this project for work tonight you would be fired, you could just go on the computer, find the work and finish @CAPS2. Also save your job. So that why computers help out so much in this lifetime. Last, that is why in this lifetime you need computers. They help us with our vacation trips. They help with conversation with old friends we haven't seen forever. Also they help with your school and job work. At least @PERCENT1 of our population use computers every day and with out them our society would colaps/ @DATE1. So think about the decision you are making and @CAPS1 @CAPS2 will benefit our society or make our society @DATE1 to its knees." 4 5 9 +106 1 "Dear Newspaper @CAPS1, I firmly believe that computers are beneficial to today's society. Not only do computers help us connect with peopl, but think of how efficiant they can be. And you can't neglect the fact that computers offer a profusion of entertainment. So before you say, ""Computers are ruining our society."", please read my reasons why computers are essential. What is the first thing that comes to mind when I you hear 'computers'. Many people think of the chatrooms and @CAPS2's. Those are two examples of how a computer can bring people together. Imagine you doing a report on life in @LOCATION1. However, all you can find are those generic articles in old books. A simple solution is talking online to an actual person who lives in @LOCATION1. Computers can even help connect family members who live long distances from each other. I know that i would be overflowing with bliss if an aunt or uncle contacted me through '@CAPS3' or e-mail. In addition to connecting with people, computers are very efficiant. As students mature, homework is taken seriously. For instance, one of my friends handed in an essay and our teacher did not accept it. Her penmenship was not legible. Typing homework is an easy alternative to handing in messy, unsophisticated work. The efficiency of a computer is also recognized when trying to accomplish seemingly simple tasks. Just imagine how often you'd get lost without your directions from. Or how much you'd mess up if you didn't print out a recipe for dinner. Most importantly, computers are the virtual gateway to all sorts of entertainment. Whether you like playing computer games or even if shopping for the best deal is you game; a computer will suit you. There are. Thousand of website to visit and even more games just waiting to be played. A computer is anyone's passport to leisure and enjoyments. So you make the choice. Is a computer going to benefit society, or will they have catastrophic results. I urge you to remember; computer are a way to connect with people and they are efficiant. Most of all, remember how much you can achieve with a computer." 5 6 11 +107 1 "Dear @LOCATION1, @CAPS1 your computer ever crashed, and you needed to do a presentation? Well if so, that means you probably had to do your presentation on paper, the old fashioned way. Recently, there @CAPS1 been a debate going on between experts about computers. Some think they make your life more efficient while others think they make you spend too much time on them rather than outdoors. I believe that computers make our lives easier and that the advances in technology have a positive effect on people. I think this because it teaches you skills and updates you on info. around the world, it's efficient for work and helps the environment, and lastly, it let's people stay in touch. Computers have a positive effect on people because it let's family members stay in touch. Emails are an example of this. Instead of mailing a letter, you are electronically sending it. The person recieves it quicker and can answer ina more timely manner. Also, social networking sites help families keep in touch. One example of this is facebook. You can see what the person is doing and chat with them using facebook chat. I relate to this. My cousin lives in @LOCATION2, so I don't see him a lot. Through facebook, we can talk and update each other on our lives. Lastly, you can see pictures of your family. Many families have accounts on photo sharing sites. This enables them to see pictures or recent vacations or sporting events. They can comment and every member of the family can see how everyone looks/changes throughout the year. That is how computers let people stay in touch. Another reason why computers have a positive effect on people is because it teaches you skills and updates you on information. Computers teach you hand-eye coordination. When you type with a keyboard, you have to know where each letter is. This makes it possible to lok at the screen to recognize my errors. Hand eye coordination is a good skill for everyone to know. Computers update you on world news. Many homepage on the internet have news engines built into them. These news engines keep people updates on major news events. For example, the war in @LOCATION5, or more recently, the @LOCATION3 and @LOCATION4 earthquakes. Without the internet, we would be very behind on important news updates around the world. My last reason why computers have a positive effect on people is because it is efficient for work and they help the environment. Computers help the environment because you are not using as much paper. Throughout the year, @CAPS2 use billions of sheets of paper to write letters. With computers that number goes down into the thousands. Why you @MONTH1 ask? Emails don't recquire paper. They are electronic, which means no paper. They are also environmentally friendly because news paper companies are going out of buisness. Due to online news paper news is becoming less and less popular. Computers are efficient for work because it is so easy to make presentations. There are so many programs to use, that making a big presentation could take minutes. That is why computers make work easy but help the environment at the same time. As you can see, computers have many positive effect on people. They let family members stay in touch, they teach you skills, and they are efficient for work while being environmentally friendly. That is why I believe computers have a positive effect on people. Let me ask you this question again. @CAPS1 your computer ever crashed when you needed to do a big project? Now you know that computers make life efficient. What would you do without them? So now it's your turn, go out and buy a computer because you will be thankful you did." 5 5 10 +108 1 "I saw in one of the news papers I got in the mail that had an overnight for people to state their opinion on kids computer useage. I took the idea of waiting this letter. Multiple people do have to use computers for multiple things. Such as: homework assignments such as essays, sometimes peoples family members go off to was but can't use cell phones, also online job alpications. To start off with, kids have homework assignment right? Most of the time people have to do essays. I ask my mom lots of times if I can do an essay for school, she say, ""why don't you stay after to do it?"" @CAPS1 have lives so they can't stay after, also at school the computers don't let you go on most websites unlike at home which does. That's mostly one main reasons kids use computers alot. Next,, some family members go off to war. Normally for safly and privacy, they wont let the soldiers life their cellphones, but for other reasons they can use their computers. Usually your family members know that you have a computer and want to contact you so that they to know their ok so they don't have to for two years. So, the base they ace at you can talk to them over video mail. I have an @CAPS2 that went to @ORGANIZATION1 and is now in @LOCATION2, and we sometimes talk to him over chat when he was in @LOCATION1. Lastly, job aplications. Most of the time people are home bound but need a job. Tons of @CAPS3 commertials show avertisements for jobs online. This is good for all types for people, homebound, elderly, ect. But mostly its good because they sometimes let you have your own business and you get good pay still. In conclution, Some people don't go online just to be online they actually are doing something such as talking to their loved ones that they wont see for along period of time, also school assignments. Plus, if people don't know people very well how do they know if they're active or not kids, and adults, should still be able to use computers when ever they want." 4 4 8 +109 1 "Dear editor, @CAPS1 name is @PERSON1, and I believe that computers are a benefit to the world, and people as well. I say this because lots of people can talk to family of friends long distance. Also the computer can teach you lots of thing. Finally it makes you more social. In @CAPS1 strong opinion computers are better for the world. Firstly, many people can talk long distance with family of friends. You have web cam and that allows you to chat and see the person. Also @CAPS2 is another site where you can talk to friends and then you can have a lot and put pictures of yourself and even videos, even though you can talk on the phone and do all this but on the phone it costs money for a plan. When you use a computer it is completely free. Secondly, the computer teaches you things that help you later on in life, and it let's you know things as well. The computer people made programs that can computers and more really cool. The programs teach you how to type, it is called type to learn or type for fun. Also they have programs that let you know how to read. It is great for kids because they need to know these things any ways. Finally, the computer makes you more social. This is because you have @CAPS2 and it let's you know things that happen in school or out of school. You can talk to people on @CAPS2 or email each other and have a conversation with them. You can also meet new people from other places and have a good relationship with them. You have friends with and know who they are and won't need to figure it out. So, this is why I believe that having a computer is a good idea, and good to have. You can talk to people long distance. The computer teaches you things for life. Finally it makes you more social with people. So in @CAPS1 strong opinion it is a good idea to have a computer." 4 4 8 +110 1 "Dear @ORGANIZATION1, I think computers are good to society, because you can read the news paper online, email your friends and family, and can play games and watch videos or movies. Knowing the latest news is very important, news paper are okay but you have to pay for them with the news paper online you can get the latest news for free! This way you can save money and trees. Heres another way of saving trees. E-mailing is a good to talk so some one far away and it's a lot faster than just regular old mailing. E-mail is also good for e-mailing links to cool websites, on e-mail can send a funny picture or a video or an important notice. So, Computers can be your news paper and a good and fast way of communication. It also can be useful for entertainment. Computers are one of the most popular entertainment sources. Computers allow you to go on game sites, watch videos or movies or play on online game on just a regular @CAPS1 game. I know whenever I'm bore I go on my computer and I can always find something to don on line or find a movie to watch. So, computers are very popular, in many areas computers are helpful in news, communication, and entertainment. People just need to look at the positive aspects of computers, then they will see how great they are" 3 3 6 +111 1 "@CAPS1 judgment comes from expirience, and expirience comes from bad judgement, qouted from my uncle's dad. Computers haven't been around all that long for the public, so the public has little experience. Therefore, the public also lacks @CAPS1 judgement in using computers and the detrimental effects are starting to show. Computers have caused damage to people! To begin with, computers can be a @CAPS2 issue for people. In studies in @LOCATION1, @NUM1 out of @NUM2 @CAPS3 who spend their time (@NUM3 or more hours) are wearing glasses. Because of bad @CAPS2 effects the screen has on your eyes. Furthermore, computer games are made to be addicting, which causes @CAPS3 to sit in front of the computer instead of excercising. This @MONTH1 be one of the biggest causes of obesity in @LOCATION2! My little brother used to be addicted to a flying game, and he sat in front of it for hours every day and started to get fat. As soon as he stopped playing it and going outside more he immediatly started to lose fat. Therefore, people need to move around more instead of sitting in front of the computer. To continue, my second argument is about detrimental effects computers have on the enviroment. First, computers need electricity to run. That electricity comes from power plants. Over @PERCENT1 of @LOCATION2's powerplants are coal, petroleum, or natural gas based. When people turn on the computer because they are bored, it wastes electricity that doesn't need to be used. Furthermore, scientists suspect humans are now a major cause of global warming. It is common sense that those powerplants burn their respective fuels to create electricity. In other words there is a definite connection between computers and global warming. Also, the powerplants release pollutants into the air that can eventually cause acid rain. To end with, my last argument is about people's skills. In a school survey, @CAPS3 who used their computers for more than @NUM4 hours per day didn't know how to cook or how to even light a match! There is a definite connection between the two as most people just put something in the microwave to eat to be able to go back to the computers as fast as possible. The matches are lit by parents to light fires or candles, But what happens when a natural disaster strikes like in @LOCATION3 or @LOCATION4? How will @CAPS3 be able to fend for themselves? The only way to cook would be with fire. There wouldn't be microwaves to cook canned food with. Furthermore, how would @CAPS3 be able to even start a fire without @CAPS4 how to light a match? Evidently excessive computer use could have very detrimental effects in a natural disaster, even to adults, so we need to stop it! Do you want @LOCATION2 to be thought of as @CAPS5 and @CAPS6? Should the enviroment, our only home, suffer because of a few bored people? How will we handle a major natural disaster? In conclusion, people are spending too much time on their computers, and they need to stop! People are becoming @CAPS6, @CAPS7 the environment, and losing important life skills. We need to all come together and cooperate to keep people healthy, to retain our life skills, but most importantly ssave our one and only beautiful @LOCATION5." 6 5 11 +112 1 "Dear @PERSON1, @CAPS1 these days are telling kids to go outside instead of vegging out in front of a computer. Computers can but promote bad habits. I try not to use the computer unless I have too for school or to get homework. Please consider the negative effects which are exercising in apropprate content and less interaction with friends/family. Yes internets can be used to find diets and exercise plans but if you would just go to the gym to burn of those pounds everything would be just fine! Internet and computers are designed to suck in your brain, and attack you to all the websites and neat little things. It is more effective just to go to a local @ORGANIZATION2 or @ORGANIZATION1 to work out. I swim on a swim team for a @ORGANIZATION2. I love swimming better than going on the computer. It satisfies my personal needs of exercising. I lost @NUM1 pounds by just swimming for a month. I will run on the tred mill to help me burn of stress or anger. Gyms are way better than computers. I know most of us have seen something inapropprate on the computer. Yes computers give people jobs but there is no need to post pictures or messages that will hurt peoples feelings. I know the other day I saw a really mean comment that made me feel bad for the victim. I know youtube is trying to stop inappropriate content, so hurray for them. Once you give something to the internet it is lost forever. Yes computers have ways to keep in touch with friends but it is better to @CAPS3 or visit in person. Like my @CAPS2 always said,"" @CAPS3 more, it builds character!"" @CAPS4 ever I get the chance I @CAPS3 my best buddies instead of using the computer. Kids theses days can be mean with out try. You disconnect yourself from your family. Because computers attrack users, there are times where you don't pay attention to others around you. @PERCENT1 of kids donot do there home work because of computers. Thank you for your time. I think computers are bad and everyone would be happy with out them. They help the obesity level in the nation, let cyber bullying and inappronrate content flow around the internet and lastly block you out from the world. ( @CAPS5.S someday computers are going to take over the world and you will be sorry you didn't listen to me.)" 5 4 9 +113 1 "Dear @CAPS1 paper, @CAPS2 name is @PERSON1 and I am writing this letter on the count of the computer issue. @CAPS2 look on this subject is the oppisite. People @MONTH1 spend more time on the computer then exercising, but theycould still be social in chat rooms. People can use laptops out doors. You can spread your imagination with the games you can play. Lets get onto @CAPS2 first point, being social. The experts say that people are spending less time with there friends and family then on the computer. They @MONTH1 be spending less time with there friend and family physicly, but who said there not being social. Theres facebook, @CAPS3, and chat rooms. You can talk to your friend on there so they on being social. Not being physicly social but verbily social. On to @CAPS2 next subject the expert say were not enjoying out doors, but the over looked something here it is. If were not enjoying outdoors then half of amarica would be as plae as can be. Then theres laptops. You can use thoughs out doors. People that have laptops can go outside on a sunny day grab some fruit and relax. You could stay out there till the batterie deis. Then just grab the pluge and keep relaxing its easy. Computers also help your imagination. Some computer games help expand your imagination because when your playing games you think of things that could make the game better. Simulaters help you design or even controll things. Some games allow you design and play as a character you created. They help you jobs that you might be intrested in. For me computer games expanded @CAPS2 drawing. All these thing can be reversed. No one is a robot that repeats what they do over and over again. Humanity has the power to get off the computer, and go outside or be social. As I just proved everything you can physicly you can do on the computer." 4 4 8 +114 1 "Dear @CAPS1 @CAPS2, Computers do put possitive affect on people and it also teaches us. So I think computers are very important and they are needed in people lives. We learn information about the world and about what is going on. It also helps us comunicate with friends and family. Lastly it can help us gather information for homework and projects. First, while we are on the computer it tells us baout the world and different countries. The computers tell us how the war is and about what the president is doing. The computer also gives us information about local news such as weather, traffic reports and if there has been a crime that has happended. We also can find out about the stockmarket which is very important to many people. Second, the computer gives the ability to talk with friends and family. AIM, @CAPS3, and @CAPS4 are all different ways to interact with each other. Also if we didn't hand something in at school we could always just e-mail our teachers the information that they might need by a spacific date, if a student forgets what the homework was we can just ask on the computer. Many people find old friends that they haven't seen in years, and getting to see them again and how their family is, it could make someone feel happy about knowing that their old friend has grown happy. Lastly, if students have project or homework that they need information on the computer could always help. On the computer there is a lot of information about people, places, thing, and anything you want to know. The computer gives you answer to question you @MONTH1 have. You can get pictures and information of the thing you are looking up. It also gives you location and dates of different events that have happened in what you are looking up. Computers are very useful when it comes to sudents education. In conclusion, Computers are a very important part of everyones life. To learn about information that is happening in the world, to talk to friends or family, and to help with school work. Even if people aren't exercising they are increasing their education by finding information. You can still enjoy nature, but not as much as ussuall; you still spend time with family and friends by comunicating on the computer. Computers are one of the gratest inventions, and does have a positive effect on people. " 4 4 8 +115 1 "Dear Newspaper people, @CAPS1! Isn't computers just swell? I mean why aren't they you can one learn up on your knowledge, two you can play alot of fun games, and last but not least we can talk to our friend. Well I hope you enjoy my essay about the computer world. Have you ever had any diffuclty finding something in a libery? Well forget your libery cards just go on the computer's @CAPS2. On there you can fin what ever your looking for. One time I was doing a project on my favorite rocker @ORGANIZATION1, so my mom told me to check the libery for a book on him but I couldn't find one. So instead I just jumped on my computer but not really jump on @CAPS4 but any way so I went on the @CAPS2 and guess what! I found all I needed to know about him getting me that rocking at on my project. i mean ther's alot more you can learn with the computer like what's going on in the world around us or even learn about little world around us or even learn about little insects to big plants. Well that's what I got for using the @CAPS2 for knowledge. Welcome back! Well now I'm going to tell you about a few games you can play on the computer. The game I'm going to tell you about is my favorite game and @CAPS4's called left @NUM1 dead @NUM2; @CAPS5 you never played the game your probably like that game sound really hard and scary well @CAPS4 is. i'm just kidding @CAPS4 can be hard at first and a little scary but @CAPS4's still fun. Another game I enjoy playing is a online game called, '@PERSON1,"" the game is fun and all but @CAPS4 takes a while to do and kill the fun stuff. For example I'm a lvl. @NUM3 mage and I can take on lvl. @NUM4 @CAPS7 because I can use high leveled spells. but anyways there alot of things to do on a computer. Like me you can kill zombie hared or just do a quest or two, who cares @CAPS4's in you hands have fun. Now the last thing I'm going to tell you about is how you can talk to you friends over the @CAPS2. well like me I moved so I couldn't really hangout with my friends so I got there @CAPS9-mail so now I can talk and see my friends on a webcam. Another good reason to be able to use the @CAPS10 or computer is you can talk to family members who joined the @ORGANIZATION2. My uncle joined the @ORGANIZATION2 and he's going to be leaving soon so I'm to be wanting to see him so I'll see him on webcam or be able to chat with him. Well that my reason why @CAPS4's a good reason to have a computer. One you can use @CAPS4 to learn, two some hard care gaming, and three just talk to friends. Thank you and have a nice day." 5 4 9 +116 1 "I agree with the newspaper, people are spending too much time on the computer and not exercising. everyone knows computers addictive. but people need to get out more. but people making it more addicting by creating things such as never ending games and its distracting people from there life, family, work and exercise." 2 2 4 +117 1 "Dear Local Newspaper: @CAPS1 you think computers are great for everyone? I think computers are one of the greatest inventions ever. What's really great about them is how much you can learn from computers. You can learn hand-eye coordination, learn about faraway places, and talk online to people. Surely, read on to see why computers are very important to us all. Many people think that computers are bad for our mind, but actually they're not. When on computers you can learn hand-eye coordination. You can be able to type well and very fast after a while and improve your eye sight by reading your writing or notes for a paper. Lastly, you can even have fun, relax, and type out your papers for reports. Definitely, read on to see what computers can @CAPS1 too. They're a lot of faraway places that have their own specil way of showing you a great time. On the internet, that have a list of vacation spots or places that grab your attention to visit. They give you details on why to visit it and a fair price. Think about it, would it be cool to visit a great place, like @LOCATION1. Without a doubt, continue reading. Have you ever wanted to play outside but it was raining or your friends were not around. Well, on the computer you can talk online to your friends. You can see how their doing or what their doing and still have a good time. Not to mention, you can even make new friends. Lots of kids and teens go online to make new friends. Surely, you should agree that computers are great. I think computers are very unique and important. That's why so many kids to adults use it the computers so much. They use it to learn hand-eye coordination, learn about faraway places, and talk online to other. Thank you for reading my paper local newspaper." 4 4 8 +118 1 "Dear Local Newspaper @CAPS1, @CAPS2 our technology advance, so do are lives. Computers are a perfect way to better our way of life in ways that are benificial to us and future generations. The use of computers, and the @CAPS5 alone allow us to learn about the way of life in other places on @LOCATION4 talk to people faraway, and express ourselves. Computers give us a bright future. First many people, actually @PERCENT1 of the worlds population are generally stationary, and line in a local town or city environments. This is why computers are so helpful because they give @CAPS2 a way to research other places around the globe. @CAPS3 can create an interest in other cultures, and shape our opinions @CAPS2 @CAPS3 discover things about other places. From there, @CAPS3 can look at different topics in a wide spread point of view. In doing this @CAPS3 will connect to other ways of life. @CAPS2 philosopher and poet @PERSON1 state"" @CAPS3 learn about ourselves through the discovery of others."" @CAPS4, another particularly handy function of the @CAPS5 through computers is @CAPS3 can communicate with people who live far away, when @CAPS3 couldn't visit otherwise. A @LOCATION2 study showed that actually @PERCENT2 of use of the computer is communication with sites like facebook or @CAPS9. A scientist in @LOCATION3, @PERSON3, says @CAPS3 @CAPS2 humans tend to enjoy communication because it gives @CAPS2 a sense of unity. This is why so many companies are realizing that sites like @ORGANIZATION2, @CAPS6, and @ORGANIZATION1 are gaining in popularity."" And this is true. It is enjoyable to @CAPS7, talk, or email others. Without computers, this couldn't be possible. Lastly, computers give us the chance to express our ideas like never before. Now, stars aren't only made in @LOCATION1, but now you can make yourself famous on @CAPS8 or @CAPS9. Just ask @PERSON2, who's voice reached out and caught the attention of a major record company. Now, everyone knows his name and listens to his music. Like @PERSON2, the more wordy folks can express themselves by blogging their opinions. "" About half of computer use, "" says @CAPS1 to computer weekly, @PERSON4,"" is using blogs and videos to state one's ideas."" @CAPS3 can persuade others to think @CAPS2 @CAPS3 do and discover thngs that @CAPS3 have discovered. Self-expression is very important to society, and this is why computers have such an affect on people. @CAPS2 it is clear, computers have a positive affect on people and society. They allow us to learn about faraway places, communicate with others, and inspire the world around us with our ideas. Welcome to the future." 6 6 12 +119 1 "Dear People of @LOCATION2, @CAPS1 many hours a day do you spend being active? Now answer me this, @CAPS1 much time do you spend on you computer? To many @CAPS2 today are sitting down in front of a computer, laptop, ecetra, while not enough are lacing up their shoes for a jog. Computers are ruining us, they deter our social skills, damage our health and cause us to be lazy. They are unbenificial to our society. To start with, millions of people sign up for @CAPS3, @CAPS4, and other website like these to reconnect with people. Do you realize what this means? Now no one has to get in a car and go visit any one else. There is no longer a need to interact with other life forms, nor is there a want to. Lets say there's a woman sitting on her couch. All of a sudden her face lights up with the thought of her friend @PERSON1. She gets up to go start the car, but hey eye catches on the computer. She bites her lip, trying to decide wether to go see her, or have an online chat. Feeling lazy, she sits down. Do you really want that happening to everyone? To late it already has. Moving along, i'd like to take a moment to talk about our health. As most of us knows, fresh air is good for us. Imagine this, you're walking through the woods on a trail. The crisp, cool air, tickles you skin, and breathing it in just makes you smile. Your entire body feels energized from the treking. With passels of days like this ahead, you can'@CAPS7 wait. Now imagine this, your sitting in front of a computer, in a hot, stuffy room. You back aches from being in this posistion so long. Plus you think your getting a cold and you have migrane. You'd get off, but you have another app request. You @CAPS6'@CAPS7 feel like moving back to reality which do you prefer? Above and beyond all this, there's exercise to worry about. I mean, when's the last time that you yourself went on a bike ride? I'm sure you know that it's good for your body if you exercise, but your to busy on the computer. I think it's safe to say that half of @LOCATION1 would rather update their @CAPS4 than get up and move. It's crucial to our health that we get active. To sum up, alot of us are pondering wether or not to spend more time on the compuer. Well here's you answer, ""@CAPS6'@CAPS7."" Not enough people are interacting now a days, their spending the best years of their lifes stuffed up in a house, and most importantly, let's face it, their getting fat. Computers are taking over our lives it's now, or never, make the change to a better and more satisying lifestyle. Please @LOCATION1, turn off the computer." 5 5 10 +120 1 "Dear @CAPS1: The effects that computers have on me is that it teaches me hand-eye coordination. I learn stuff from the computer, and it is a fun thing to go on. But, I mean those are only my opinions. Well im gonna just go ahead and explain them to you. The good thing about computers is that it teaches you hand-eye coordination which helps you see better with your eyes. Also it helps you with your hands by making you learn how to catch stuff and how to react quickly with your hands. For example I was playing baseball and I couldn't catch very good and I was also learning how to use the computer and because I was able to type fast my hands reacted when I got grounders and pop fly's hit to me. So I was so happy that I lerned how to use the computer and type. But for sure the computer is the best because you can research stuff and you find out more important facts. Also you are learnen more when ever you research anything. I'll tell you one thing though, I like the computer so much because it helps me find out important details and facts about the person that I am doing my project on. Yes I know the computer is so fun because you can go on different websites such as myspace.com, youtube.com, and funnyjunk.com. I go on mspace to talk to my friends and to meet new people that's what I like about myspace I meet new people and make new friends. I go on youtube because I like to listen to music and I watch music videos on their also I watch skate board videos too cause I love to skate! But one thing for sure is that I go on funnyjunk.com to play games cause they have so much fun games that you can play. But my favorite game is @CAPS2 the hedgehog. In conclusion those are @NUM1 opinions and @NUM1 reasons to support the effects about computers. So I want you to think about some effects about computers and your opinions about computers and compare them to my opinions? But hey! That's up to you only if you want to." 4 4 8 +121 1 "Do you think computers are helpful? Well you should because, They are the most help full object on the market, also @CAPS8 famly members live far away you can im, facebook them or even send @CAPS1 and to them. The main thing for tenes or chidren is easly the enjoyment you could watch your favort showes with a click of the mouse or even play freefun games. The coumputer is a very help full object. @CAPS4 you have bad handwriting and a report is due you go and tipe @CAPS8 up on your computer, and your teacher will think you spent all night. Doing @CAPS8 when @CAPS8 was easy you will also get a better grade. @CAPS4 a big famly trip is coming up you can go online and get the trip easer then you would have , and at low price. Also you can shop @CAPS4 its a birth day of @PERSON1 you can get gifts for a very low price ever @PERCENT1 @CAPS2!!! @CAPS4 your family lives far and you dont get to see them a lot the internet is the place to gp, you could talk to them with instant messgr or you could facebook then. You could them @CAPS3 or, also you could talk to them you can see them on your screen and they can see you on their screen and @CAPS8 would be like they in the house with you, @CAPS4 the a vecation you could send them @CAPS3 and maps of werere your what go even info about the plases. Enjoy ment is the teen favort. @CAPS4 you mst your favort show you could got o @CAPS6 and sec the show for free!!! Youtube is were you could see something funny, excites, or @CAPS9 plain grose. @CAPS4 someone like @PERSON2 @CAPS9 did a asom trick and you mist @CAPS8 look @CAPS8 up . There are two tipes of games you could play games on the internet like addicting games com or play @NUM1, @CAPS7 online are play with freinds. Know you know why the internet is great @CAPS8 has games be close to your famly or even @CAPS9 get help. So chus to say you think the internet is good its your dicision." 4 4 8 +122 1 "Dear Local Newspaper, @CAPS1 @PERCENT1 in town use the computer for at least five hours each day. The people are spending way too much time and not benefiting. Computers have an effect on people but in a negative way. People get adicted and distracted and can't get work done. Many inappropriate things are written in computers that children and adults shouldn't read. Lastly people stare at a computer screen all day which can cause brain damage. Effects from computers can be very negative and not beneficial at all. With children at school and adults at jobs, there is most likely a lot of work to get done, but computers should make a person not get the work done. The other day in class the teacher was collecting homework, but @NUM1 out of the @NUM2 kids in our class didn't have the homework. When the teacher asked why the kids didn't do their homework, they said that they were on the computer and forgot about the homework. When the children and adults don't get their work done then grades could be dropped, or people could get fired. The effect is very harmful, and all this happened just because of the adiction and distraction of computers. Since some internet sources are very social, and not all people are kind, mean and inappropriate articles and language could be read. Many children don't know a lot of bad words and certainly no one wants them to be exposed to learning more, so why let them go on the computer and read about these bad things? Adults @MONTH1 know more about the harmful language, but why influence them to write the bad things or comment using mean tones. If adults and children aren't exposed to these bad uses of language then our world could easily be made up of better and kinder people. Studies show that if a person stares at a computer screen for at least three hours a day, then in about two weeks time the person brain could be damaged. The screen of the computer in some way with the human brain and if stared at for too long the screen could permenately damage the brain. A @ORGANIZATION1 student, who studies computer mechanics, quoted, ""@CAPS2 help prevent brain damage by limiting the use of computers to only what needs to be done. The mechanics to make the computer screen are not healthy for you!"" Who wants to have a damaged brain? Surely this effect could be very serious. So, in the end people should know that computers are not benefiticial. Computers effect people for sure, but not in a way that people would want to be effected. Adiction and distraction from the computer could cause important work to be ignored. Children and adults do not need to learn or be influenced by inappropriate language on the computer. Brain damage could be a serious problem that could be caused by something as simple as looking at a computer screen. @CAPS2 try to prevent all these negative effects by limiting the use of your computer. It is very easy to stay clear of any negative effects but it is your choice whether to do so or not." 5 4 9 +123 1 "Every where you look people are using computers. Just about everyone has one. Some say that computers are bad for you but they can really benefit society. Computers are used for research, socializing and almost all of our @CAPS1 work is done on computers. One of the main things that computers provide is research information. If you want to find out anything, you can find it on the internet. It is an efficient way to study or find information for school. Before the internet and computers, it would take weeks to find enough information for a paper or business work. This was because all information was found in books. Books did not always give you the information you needed whatever was written was all you got. Because of saearch engines and websites, you can type in whatever you want to look up. It is much easier to log onto a computer and type in a question than search an entire book to find an answer. Computers are the best way to research a topic. Computers are also used to socialize. You can chat with almost anyone on the internet. Being social is one of the most important parts of life. It has been proven by science that social people live longer than people who never talk to anyone. The person you're talking to phnes only give you audio and that doesn't give you the some thing. video chat can allow you to show someone a picture or an expression. Computers allow you to see people that you can't see otherwise. For example, if you have a relative that lives far way and you cant him or her, you can see them through video that socializing through computers is pne of the best ways to talk to people. Our @CAPS1 is mainly run on computers, without them, it would be very difficult to be aware of an on coming attack or threat. The @CAPS1 uses computers to store thir legal files of court cases laws, etc. It is much easier to transfer files digitally than actually sending a paper copy. The store market is also run on computers. You need them to see how you are doing financially computers are essential to our @CAPS1 and economy. Although some experts say that computers do us no good, computers benefit our society very much. They help us research, socialize and they help our @CAPS1 and economy. Computers are essential to our way of life." 5 5 10 +124 1 "I think that the computers are good to be used because anybody can use them at anytime or go on it whenever they want to. The reason why I think it is good is because you can contact someone that you know and talk to them whenever you want. Another reason is because you can play games or look for something or even make a research on stuff that you want to know or about something that you were always curious about. A computer is also usefull for better things like using it for when going to work or when a kid in school needs to do a report of project and needs to do it in typing and also to save stuff that you don't want nobody to use. Computers can sometimes be helpfull to people that really need it and that actually need to use it, but it can also be a fun activity to do if anybody doesnt have nothing to do. I think that the computer is awsome because anybody enough can open up their own website and create something what. A lot of people can go on the internet and open an account on a website; for example a @CAPS1 or a @CAPS2 or a @CAPS3 for that what to have an account. These are a lot of people that use the computer in a good way and use it for things that it can actually be used for. So I think that the computers are avery helpfull to people that like seaching for stuff that there curious about or to have to use it for good needs." 4 3 7 +125 1 Computers dont have any affect on kids we just love going on cause we use it for help and this persuade the readers of the local newspaper cause we need to be able to communicate also do writing essays and doing social studies or science homework my ideas are let us go computers cause were not bothering u can just leave us alone and let us do what you need to do cause what computers are what give us information for we have to do and were to do wat we gotta do and u people can just leave us alone cause arent addicting to me or anyone and if we were it still would it matter cause a computers a computer u dont punish it because just punish us from the computer punish us because of it cause its the computer fault it can be addicting cause the computer is device that gives us wat we need and the information we also the computer does favors for us the computer is a amazing thing 3 2 5 +126 1 "Dear, @ORGANIZATION1 concerned with an issue that people are using computers and not exersising. This is a very bad thing and we need to let the word out of what can happen if we don't exercise. The first reason why I disagree of the fact that computers help people is because computers really affect your health you will become fat you start having problems with your heart and it can lead to something fatal. Another reason why I think computers are healthy is because comptuers affect the economy alot in so many ways for example computers use up so much electricity it affects the power in all states. Computers also ruin jobs and this is very bad for the economy people will be addictied to computers for so long they wont bother looking for jobs they will just stay on the computer and gamble or buy stuff. The last reason why I think computers are bad is because of some of the illegal stuff people do on computers there are alot of cyber predetors that prey on kids and they end up finding the kid and kidnapp them. There are also other illegal stuff like bad websites or popups that can get you arrested so if kids go on computers they will not no what something means and they will click on it and it can traumitize a kid their whole life. So @NUM1 I hope you can take this letter into recognation and do something about it cause thes computers can affect my health your health and even your childrens health. That is why I have written this letter to you. If you agree with me I thank you." 4 4 8 +127 1 "Computers can affect the way people are and how they interact. Why is there a need to spend your precious life sitting in front of a compute all day?When you can be getting exercise for example going to your local gym. Computers become a distraction to your social life, thats why you should use them for emergency's and spend more time with your wonderful family and friends. Lastly you can enjoy you surrounding and appreciate life and nature. Computers are meant for business not for people to sit around and to nonsense things. Exercise is very important it helps the human body grow and stay in fit. If your sitting in front of a computer all day your body is going to shut down and won't get the proper exercise. Sports can be just as enjoyable and helps build the human body and gives you the right amount of exercise that your body needs. Sports also build hand and eye coordination just like if your sitting on the couch using a computer. In conclusion exercising can give you all of the same utensils that computers give you but it also benefits citizens more. Family is a wonderful thing in life, but they don't live forever. That's why we should cherries every last moment we have with them. A complete citizens and drives them from family and friends. Computers can take away your social life and you never do go out and meet people and friends. To sum things up computers are a to citizens and cause them to drive out family and friends. Nature is exotic and beautiful and all of us should take care of it and appreciate what we have. Computers can become harmful to nature and destroy homes for animals, for example when you print something from your computer it prints if out on paper. This causes more trees to be knocked down and cut for paper. We should only use paper for emergency's and not splurge on it. We all want the world to be a better place so stop destroying it for our own benefits! In conclusion computers just in the and will cause chaos and destruction. Instead of using them we could be getting the right amount of exercise, and spending it with family, and lastly enjoying nature and our surroundings. I strongly consider that you take my ideas into consideration and hopefully agree with them. " 4 5 9 +128 1 "@ORGANIZATION1, In my opinion computers can be entertaining and educational, but should not replace everyday living. Therefore I think that computers harm people and effect them in ways they do not realize. Three reasons that support my decision are the difference between reality and fantacy, family and friends, and your health. Many children and young adults are vulnerable to the assumtion that everything you see on the computer is true. Well, as some find out it is everything but that. The addictive games and electronic features lead you to believe that the people or @CAPS1 @CAPS2 you see are real life situations and activities. Computers are showing kids the wrong mind frame they need to be in. It affects school work and how they behave. They need to be in the right state of mind and get back to reality. Your family and friends have always been there for you. By your side even through your worst. Unfourtunetly, this addiction to the computer has brought you farther away from them. They are not happy with the way you treat them. They want a change so you can enjoy life again. Interact with a human being, not some graphic designed computer picture. That's all it is anyway, and that picture isn't going to be there for you. Your family and friends last longer than that. Your body is special and your health is important. A computer @MONTH1 suggest exercise but you are not going to really do it. You know that and the people who make computer sites know that. Your going to stay there and burn your eyes out from looking at a screen all day. It is not healthy for you or anyone else. Moving you fingers and pushing buttons is not exercise. Your already sitting anyway, so you are not doing anything helpful to yourself. You need to go outside and breathe in air and be in nature. Run around or play a bill game, but not on the computer. In conclusion, you can see how a computer can effect a person. Not only do they mistake fantacy and reality as the same thing, but you lose interaction with your friends and loved ones. Your health is also at risk when you spend hours staring and not moving anything but maybe two fingers. Please consider the risks and believe the facts because honestly, we are losing the chance to live and enjoy the world." 5 4 9 +129 1 "Hi! My name is @PERSON1 and I think computers are not bad. I think this because yes, people do play the computer to much, but they can also learn a lot of things. Another reason is that some kids like bullys can stop bulling and spend time on the computer to stay away from stress. You can also talk to your friends and even video chat with them too. Computers can teach you a lot. For example @CAPS1 your computer breaks or has virus you can just figure out the problem by yourself. You can also learn or read the news that your missing. For example you can also ask questions that you don't understand and people would answer your question. In moder afoot kids, teens, and even adult computers to look up things that they don't understand. For example, when I read along a book and read a word that I don't know and read around @CAPS1 I still don't now I would go to @LOCATION1 and find what the words mean. Bullys and other people like street people that have computers should stay on the computer and you can just play games. They can play hitting games, shooting games, and even board games. You can even watch fights @CAPS1 you want. What ever you want you got it. This is a good thing because then no one will get and everyone will be happy. Bullys can also go on the computer to relax and stay away from people that they hate. The computers can make you relax because you don't have to be around people and you can just tell the computer to do what ever you want. Kids, teens, and adult don't have to leave the house justto talk to a friend or two. I said this because most computers hace a microcam and you can comminicate with others. For example my dad is trying to get a computer with a micro-cam so that he can be incontact with my mom, my brother, my sister, and I. He has to get one because the doesn't live with us any more. He had to leave and go back to @LOCATION2. Another example, would be that @CAPS1 one of your friends move far, far away you can just talk to them on the micro-cam or even send message back and forth. So I think computers are not a bad idea or a bad things. I say this because you can learn, stay good, and communicate." 5 5 10 +130 1 "Dear Newspaper of @LOCATION1, The use of the computer is a controversial topic. Many people have varying opinions & beliefs, But I personally believe that computers have a positive effect on the people who use & operate them. These remarkable devices give people the ability to talk & be social with friends and family members. They let people know what is going on in the world, and give updates on the condition of countries and events. They will also provide information, and give people the ability to research and learn more about a topic or idea. A computer is a necessity in todays society, & to go against it is a proposterous motion. Many people young & old are starting to use the computer to be social with friends & family members through various types of websites & programs. A computer is to talk to someone without physically being there. The social aspect of a computer is rising in popularity and many people are using computers to be social. Social networking sites, and instant messaging programs are just two at the many ways to be socially active on a computer. A social networking site as a website that allows you to make an account and post pictures and information for your friends to see. To take away the computer would take away many peoples social lives. The computer benefits many people socially and this has a positive effect on their lives. Todays news is always with exciting events and horrible disaters that many people like to be updated with. Most people do not like to wait for the newspaper to arrive to read about the fastest news. So they check online and find about it there. Online news is widely popular & extremely beneficial to many people. It provides them with the lastest stories and updated events. Online news was extremely crucial in the lastest disaster, the earthquake in @LOCATION2. Because online news is so fast and easy to acess. People were donating & helping @LOCATION2 just a day after the earthquake happened. The fast response is what is helping @LOCATION2 rebuild from the rubble. Computers provide people with online news & this is definitely beneficial to their lives. Before people starting using computers to research topics & ideas they would use books. They would have to shuffle through piles of pages and articles in newspapers. This is a very inefficient & disorganized way to be research. Now we have the computer. The computer allows you to recall through endless information and topics. It is not possible to an article or essay with information because it will always be in the same place. This allows for guide and efficient research. There are also websites called online databases on the internet. All have to do is type in a keyword or phrase and you have instant research on whatever you wont you wont information on. All this takes time off of research and put it on whatevers else you would wanting to be doing, whether it is writing a paper or doing a presentation. The computer allows for quick and beneficial research. The computer hasn't been in use for that long and it is already helping society expand & grow. It provides a social aspect where you can talk to friends & family. You can provide yourself with the lastest news & stories, and you can do quick & easy research. A computer without a doubt has a positive effect on society and we as people. The experts can say what they want, but the computer is and always will be benefit to society." 5 5 10 +131 1 "Dear @ORGANIZATION1 @CAPS1 @CAPS2, Computers are beginning to be a problem in many households. I feel that too many people are becoming addicted to computers. People like this are more likely to gain weight, have little social time, and spend too much time inside. In @CAPS6 article I have recently read in the @ORGANIZATION1, it was about @CAPS6 experiment on computer use. Dr. @PERSON1, a @CAPS3 professor stated that his findings showed that people who are addicted to computers only leave their homes to run errands. When this happens, it interferes with their lives as well as their bodies, because our bodies need sunlight. Furthermore, his study also showed that people who go outside more and not on the computer as much tend to be happier. @PERCENT1 of the study's patients started to be more joyful once they stopped going on the computer as often. I like when the people around me are happy, not grouchy, don't you? I have been noticing some kids in my school that are gaining weight. These are kids who have recently started going on the computer for a couple hours at a time everyday. This is very bad for your health and body. If someone sits at their computer all day eating the food is not being worked off, so it all turn to fat. Moreover, statistics show that @PERCENT2 of all obese people in a weight loss class had gained their extra weight from sitting at the computer all day. If people treat their bodies this way, they could end up with some type of condition. Last week, @CAPS4 @CAPS5 @NUM1 intervied @NUM2 year old @PERSON2. @PERSON2's best friend has been ignoring @PERSON2 because he got a @ORGANIZATION1 computer. Now, @PERSON2's friend doesn't want to hang out with @PERSON2, or any of his other friends. In addition, when people become addicted to computers, they become less social with friends and other people like parents, teachers, and more. When people push aside their social time for computer games, chat rooms, or movie websites, they lose a large portion of their life. This can be stopped if parents put their foot down, set limits, and make kids spend more time outside. As you can clearly see, computers @MONTH1 have some benefits, but they have many disadvantages. Addicted compuer users become less social, they don't go outside and start to ""pack on the pounds."" @CAPS6 effect of this is a world full of people who sit on the computer all day eating food and gaining weight." 5 5 10 +132 1 "Dear @ORGANIZATION1, I understand that the idea of advances in technology benefiting society is a very controversal topic. However, I support these advances in technology and I believe that computers have a positive effect on people. They allow friends and family who live far away from each other to communicate and stay in touch. Computers @CAPS7 allow easy access to the news and online textbooks which provides an enourmous amount of benifits to today's society. In the long run, doing more things by computer instead of on paper will save billions of trees! @CAPS7, computers teach us hand-eye coordination which is a tremenciously important skill. These advances in technology are extremely benefitial to our society and should be taken advantage of! ""@CAPS1, @CAPS1!"" @CAPS3 computer wails as I recieve a video call from @CAPS3 cousin, @PERSON4. The advantage in technology has provided many new ways for @CAPS3 family and I to communicate with each other. @CAPS3 cousins and I rarely see one another, but computers make it possible for us to stay connected. Four out of five teenagers would agree that without computers or technological advances, their long-distance relationships with family and friends wouldn't be possible. For example; I go on oovoo once a week to video chat with @CAPS3 cousin whom I only see on holidays. Teen @CAPS4, @PERSON2 says: ""Technology such as computers and cell phones are great for teens, but it should be monitored and not used excessively."" Computers are great for keeping in touch with family and friends at a distance! Next, computers allow easy access to the news and online textbooks. @CAPS5 more people took advantage of this, we could sace millions of trees and have a healthier environment. Environmentalist, @PERSON3 says: ""@CAPS5 more schools switched to online textbooks they would end up saving thousands of dollars that can be put elsewhere."" I agree, @CAPS3 friend @PERSON1 says. ""@CAPS5 we didnt have to take home so many textbooks everyday, I might not have scoliousis!"" @CAPS7, computers allow quick access to the news, so we can find out about accidents right away instead of waiting for the newspaper to come. @CAPS7, computers help children develop hand-eye coordination, which is a very important skill. Computer activities keep our brain excercising and @MONTH1 even help us hit more accurately next baseball season! Three out of five kids at @ORGANIZATION2 say that @CAPS5 they didn't have a computer growing up, they wouldn't be as good at their sport. Computers are an extremely useful recource for many things that we need to take advantages of!" 6 5 11 +133 1 "Dear @CAPS1 of the Newspaper, @CAPS2 is no doubt that computers don'@CAPS6 benefit society. First of all, most people only have a limited amount of time to things. Secondly, many friends would get mad if you can'@CAPS6 see them. Last but not least, you have to watch out for your health. To sum up, computers aren'@CAPS6 always a good thing. From my point of view, time is a big thing. When people get so involved with something, its hard to back away. Thats just like smoking. The nicotine attracks you so once you start, it is very hard to quit. Many lazy people like to put things on hold. In other words, you waste time. The time that you could be spending on homework or even working on a job, your wasting it. Other people know that they need to do something but keep putting it off. For example, you need to paint your house or fix the motor in the car but you keep putting it off. @NUM1 out of @NUM2 people do this in @LOCATION1 everyday. As you of all people can see, many @CAPS3 don'@CAPS6 think too much about time. The next big topic is @CAPS4. You and I both know that every one needs a @CAPS5. When you don'@CAPS6 interact with your Friends, your friends might not bother trying to talk to you. The might not even go near you if you forget about them. Pets on the other hand need you. They usually just sleep around the house when they are lonely. I'm sure that you know pets need love and need you to play with them. Parents need to be @CAPS2 for their kids. When you were little, didn'@CAPS6 you need help? I know I did. Thats why parents need to interact a lot. In conclusion, the more you stick with your friends and stay away from the computer the better you will be. That leads us to the next big topic, health. Staying healthy's no joke. If you want to live long and watch you rkids grow up, the healthier you are the hotter you'll be. Everyone needs exercise. Exercise helps prevent against diseases as well as keepin gyou in shape. @NUM3 out of @NUM1 eople are over weight. When you are sitting in front of a computer screenplay games or sending e-mails, that's just as as palying video games on your @CAPS6.V. You know as well as anyone, most video games are not good for you. Last but not least, most people don'@CAPS6 eat healthy when they play video games or go on the computer. You and I both know, a healthy diet and exersice will give you a happy life. From my point of view, computers don'@CAPS6 benefit society. Time is a big thing which many @CAPS3 don'@CAPS6 realize. Secondly, @CAPS4 which everyone needs is another important thing to look into. Last but no least, everyone everywhere needds to stay healthy. For a long happy life. As you can see, many people would be better off without computers!" 5 5 10 +134 1 "Computers are the way of the future. I believe that computers benefit society. I believe this because computers enable you to talk to family and friends online. It also gives you thousands of websites to learn valuable information from. Lastly it teached hand-eye coordination. First computers alow you to socialize online. I know @CAPS1 I get home from school I can talk to virtually any friends online. People against computers say it takes away time from interacting with family, however, this is not true. I talk to all of my aunts via facebook and other social websites. Also @CAPS1 my parents are at work the are abile to message me over the computer with out having to go get a phone and call my house. My last reason for this is that it helps me and my friends get intouch easier lets say I'm having a friend come over, but he got sick. He woulden't have to go look up a number and call me, he could just send me a message of the internet. My second reason is that computers help with education. I know that @CAPS1 I'm stuck on a problem at home, I'll just go on the computer and look up the answer. Also, @CAPS1 I have to do projects, the computer is very helpful for me and many other kids, @CAPS1 doing a project, I can't getall of my information from one book so I go on the computer and look up information about the subject. This really improves students grades, because they had more resources and more information to choose from, instead of only the information in the book. My last reason is that using a computer can help with hand-eye coordination. On the computer there are many sites that have very interactive sites the you can really benefit from I know of one website that was able to help me with my fielding in baseball because it had interactive games that would actually help with things is real life, like fielding in baseball. I know there are other websites like this for many other sports like basketball and foot ball. So the computer actually helped with real life activities. To sum it all up I think computers can benefit society a lot. Like being able to communicate with your friends. Also being able to look up school work with. Lastly helping with hand-eye coordination." 5 5 10 +135 1 "Dear @CAPS1 @CAPS2 @CAPS3, I am writing to tell you about the effects computers have on people. They teach hand-eye coordination, lets people search @CAPS1 places, talk online with people like family and friends. First, the computers teach hand eye coordination it helps you become a better speller and type fast or type without looking at the keys I know it helped me and im sure it will help you too. Secondly, computers lets you interact with family and friends and lets you make friends like myspace you talk to your friends and make @CAPS1 ones facebook is more mature if you ask me twitter also its just away for you too talk to your friends yahoo, gmail, aol. Even teacher es lets the teachers communicate with parents so it helps you communicate without everyone being in your conversation on the phone. Next, it helps you search @CAPS1 and old places like landmarks or bussnesses like salons, nail palors. Gyms and @CAPS1 resturant you can even search when a movie is goin to come out. A computer can help you very much in this type of case. In conculsion computers are good they help you inform you and they can teach you I love my computer it helps me with homework and helps me study. Say you cant talk with someone over the phone, you can email or chat with them and it's so cool/fun and it interesting how you can learn @CAPS1 things it lets you upload pictures, music videos and you can type essays. The computer is very educational." 3 4 7 +136 1 "There are so many different sides to this computer problem, well it's simple computers ruin our lives. Now think if it how many @CAPS1 do you see your kid on it? Computers messes up kids grades. It stops people from taking a car ride to @ORGANIZATION1's house. Also people don't ride their bikes a lot. Computers are an outrage. It first starts off with grades. The parents tell their kid go and start your paper. They sayd ok, and then they are down there on facebook. More @CAPS1 then not kids and parents abuse the computer. In fact @PERCENT2 of america do uses it, that might seem like a small percent but thats more than half the country. Me I don't abuse the computer be I need to keep @CAPS6 grades up. Most students have @CAPS2-average because studies show it's because of computers. Also if your son has a lapttop they're not doing work if that is what you think. I have computers, but we have, books for a reason, no spank, pop ups, or no distractions while working. Like one time I was working on a project, a pop-up came up and read trafic rush free to your computer. So dume me downloads it and @CAPS6 parents caught me playing. Has this changed your mind. Since you probably haven't changed your mind here is another thing way computer bad, your car. All guys love cars. Computers are holding more thand @PERCENT3 of people working or driving their cars. Te only person it hasn't affected is @CAPS6 dad, he works on his cars day in and day out. @CAPS6 grandmom said something interesting to me the after day,""@CAPS3 your dad comes up to visit me more can @CAPS6 other sons, @CAPS6 ohter sons are carzy for computers.""People go bannas for computers today. Latly I have seen less and less people outside anymore. There is only reason for that, all people are shaved in their basement in the dark, so when their light it gurns their eyes it's so bright. Come on did this change your mind yet now. Well since you are still reading on that means you cannot make up your mind. Well here's this people are starting to not want to ride their bikes anymore. That is facebook, this is what they thinks,""@CAPS4 it talk now why I need to ride to talk in person?"" That @PERCENT1 right for what they are think. Because we task a test of all the kids who have facebook, and that's what around all of them said. I know amazing @CAPS5 a at home mother said,"" @CAPS6 son's gaining weight, all her does is eat and go on facebook. When he not on during they day, I catch him at night too."" That is a sad story for that mohter. I ride @CAPS6 bike a lot, this is a real life story: once I was sitting around doing nothing really did @CAPS6 mom said we are riding bikes for @NUM1 miles. I got up end did it too. That had to change your mind, or nothing will. So, in conclusing I have no more ideas for no computers and why. But just remember your grades, cars, and your weight. So please, change your mind." 4 5 9 +137 1 "Dear, news paper I think computers are good, this is because you can learn thing's about faraway places using them, you can also hear about the most recent news and you can communicate with people. In school a lot of the research projects on other places focus on other places around the world. When you use a computer you can read articles about the place and also get pictures and use them in a slideshow or photo story. Their are also educational websites that kids can go on to learn their math facts to multuplication tables @CAPS1 the computer is a good learning tool. The computer can keep you up-to-date with the news to! their are news website that post minute to minute things about world news and tell the world what kind of desaster happened in some far away place on the other side of the world. A lot of the time families are spread all over the world, you can chat with family or friend's that have moved by a simple chat room and you can catch up on what has been happening in each other's lives and that's a good tool for family to stay in touch @CAPS1 the computer has lots of benefits that a lot of people all around the world can use, from learning. About a faraway country to chatting with cuson that lives in california and also knowing whats going on in your own home town." 3 4 7 +138 1 "@ORGANIZATION1, @CAPS1 has been a lot of discusion of whether computers effect people in a positive way or in a negative way. I believe that computers effect most people negatively. I think this because people lose their "people skills" by talking through the computer, computers @MONTH1 also lead to danger, and because people tend to forget about their priorities in life. From what i know. most people that use computers use them to talk to friends and other people around the world. Instead of hangingout with their friends they talk through the computer and if that what they do, more than hanging in person then they won't reconize the facial expressions given to them by certin people, while talking in person you get the full on experience of communicating with them. You get the tome of voide in addition to the facial expressions. You also get the body language which you can't get from on the computer unless you are using webcam. Computers have led to many dangers. These dangers effect every user and their families. @CAPS1 have been many cases of young teenagers being tricked by ader users into showing them parts of their body to making the teens believe that the older user can relate to their problems and are the same age. sometime the teen is persuade to leave their home and neighbor hood to meet the other user. Also, another type of danger is cyberbulling. Cybe bulles lower yourself-esteem. The bullies call you names and pick on you and sometimes make you feel suicidal. If we hadnt had any computer then none of these dangers would be occuring. With computers people have lost their judgement in top priorites. Some computers uses tend to forget about the important things in life such as family, schools work, and their own health. Some people would rather stay on the computer than hangout with family and friends. Others tend to choose not to do their homework and work on their social life on the computer instead. Since they are on the computer alot they seem to ignore their health. They don't exercise as much and don't eat as healthy. So in my opinion, life without computers would be good for everyone. People would still have the people skills they had before, their wouldn't be as much danger, and people would focus more on the important thins than their online social lives." 4 6 10 +139 1 "Dear, @ORGANIZATION1, I think computers do have a positive affect on people but I don't think because of computers is the reason people don't exercise or enjoy nature. People make their own choices in life. The computer is just there. If somebody chooses to be on the computer instead of spending time with their family well thats their choice and problem not the computers. Me for example I love working and playing on the computer. Even though I'm on the computer I still do things like talk to my family, I play basketball, and I chill with my homies. Now thats my choice to do all of that. I can easily just sit up in my room and be on the computer all the time. It's nothing wrong with doing that because that is my choice in life. Nobody should be able to tell you to get off the computer because that is your choice in life. If you want to be on the computer instead of going outside thats your choice. Only you know what is best for you." 3 4 7 +140 1 "Dear editor, I have heard that some experts are saying that @CAPS1 spend too much time online. I thoroughly believe they are mistaken. With the use of internet people can learn about faraway places without spending money to go there. Our military uses internet to talk to their family and friends stateside. Also it helps us aquire great hand-eye coordination. If someone was planning a trip to @LOCATION1 they would check the internet often. Firstly, they would check out sites to go to in @LOCATION1. Second, they would check and compare hotels in @LOCATION1. Thirdly, they would check the weather in @LOCATION1. Finally, they would check airports for flights going to and from @LOCATION1. Without the internet planning vacations would be close to impossible. People not only use the internet for pleasure but for communication purphases too. They use web cams to talk online to people in faraway places. It is fast, free, and convinent way to communicate to other people. Our military uses web cams to let the soliders talk to their families. How would you feel if you were a solider fighting for you country and the means to talk to your family is out there, but you could not use it. It is cruel and unjust to keep soliders from talking to their families. Internet also gives us something usefull. It helps us build hand-eye coordination. Hand-eye coordination is used in many things. In basketball you need to be able to look up and dribble at the same time. When you are driving you need to be able to look up and still be able to steer the car. Without hand-eye coordination many more accidents would happen from carliess errors. Internet helps people make the world a safer place. In some aspects the experts are right. We should go out and enjoy nature, but we also need to enjoy and use the internet as well. Some people use it as pleasure and build hand-eye coordination. Whle others use it to talk to their loved ones. Or use it to plan vacations. No matter who you are or what you do internet plays an important part in life." 4 5 9 +141 1 "Dear @PERSON3 of the @LOCATION1, I strongly believe that computers effect us in a positive way. Computers are advancing and so are their uses, computers are great and they are not our thought process or went to run around outside and play sports. Computers help us find and talk to relatives and friends they allow us to learn different things about farien places. They also are great for research! First and foremost computers are effecting us positively expesally when it comes to finding and talking to family and friends. My mom was adopted and @NUM1 years ago she really wanted to find her birth family, one year later her birth father found her on this website where you can locate family, she found her family and I now have two more @CAPS1, @PERSON1 and @PERSON2, and a cousin @PERSON4. I love them all very much. I would not have of been able to get to know them if it wasnt for the computer, speaking of communication, I was working like a dog on this big science prodject I had. we weren't able to do it in person and it @CAPS3 impossible for one person to three way four people. So we emailed our ideas and thoughts and were able to get the project done. ""@CAPS2 are never enough hours in the day!"" @CAPS3 something that @CAPS3 commonly said. Over @PERCENT1 of adults complain that @CAPS2 @CAPS3 never enough time in day. That @CAPS3 a statistic from @ORGANIZATION1. The computer allows you to multi task so you can be on your business call and email your mother so she know that you didn't forget her birthday. In addition, computers help us understand other countries and learn about their culture and how they are doing. @CAPS2 are many people who don't have tvs and they get their news from the internet. Also for projects, in @NUM2 grade I had to learn about @CAPS4, the country in @LOCATION2. it would take countless hours to find research in books, you will find a lot of stuff you dont need, but on the computer it @CAPS3 fast and easy. If you need to know something you can just type it in and, boom! You have it where as if you were usinf a book you would still be looking for what you need. Time @CAPS3 something that we can't afford to waste expessaly in this economy. Furthermore, computers are great for all kinds of research and directions. People who think that people spend too much time on the computer, and exersizing are not always right. I don't know about you, @PERSON3, but I am constantly looking up different exersizes to get a flat stomach. Most of my friends do it with me. I also look up directions, finding routs on maps are enfuriating and take for ever. Go on the computer the maps are always updated and you can get easy and fast directions! I don't know about you but I love things fast and easy. Going back to research, what about for solving crimes? Identifying people with finger prints fast so no one can get hurt. In conclusion computers effect us in possitive ways, more and are a great help to society, from locating people, to communication, and all the way to finding valuable and life changing information. I hope that you and I see eye to eye in this matter, advancing computers are our friends not the enemy." 5 5 10 +142 1 "As more and more people are becoming accustomed to using computers, I believe that this is having a negative effect on society. Because of computers people are not exercising as much as they should, which is of crucial importance. In addition, people are becoming unable to envoy and appreciate nature while they still can. Finally, people are slowly being their ability to communicate with family and friends. As every day people are getting in touch with technology they are losing touch with the world around them. Therefore, the advances in technology are having a negative affect on society. When the average, person uses, the computers, be it for business, homework, chatting, or just for fun, they are easily occupied for long periods of time. They consider themselves ""too busy"" for a thing called exercise which is becoming more and more curcial to our health and well-being. With music, walk, cool friends right in front of us, who has live. Time to go for a walk, jog, or bike ride? with computers, people are the will exercise. In this day and age, when is becoming a we need our exercise more. Every day rainforests indicated on the one, polluted, and clouded. We need and because of the realize ever a @ORGANIZATION1 screen. We need to write up and appreciate with the @ORGANIZATION1. As time goes by communication technology through the internet this issue of helping @CAPS1, healthy relationships is becoming a progressively worse issue. ""@CAPS1 @CAPS2"" is something that doesn't completely exist on the internet. This means that while you @MONTH1 find someone you can call a ""friend"" online, you never know exactly who they are until you've actually, met them...which could be potentially dangerous. Additionally, the very @CAPS1 emotions and human need for interaction that comes with relationships is something their can never be simulated or programmed, no matter how ""advanced"" your technology is. As you can see, the dependancy on and average of computers is having a negative affect in our society. We are not taking the time for exercise, and human interacting, all of which are to our health. And in a world where it's more important than ever to do. healthy, grateful, and diplomatic, we are slowly losing important. Therefore, @ORGANIZATION1, are having a negative affect on society." 5 5 10 +143 1 "Dear, @ORGANIZATION1, @CAPS1 name is @CAPS2 @CAPS3 and I am a students in @ORGANIZATION1 middle school. I want to state a opinion on how computer effects people. There are many thing like games, chatrooms, socile thing. Also information for homework or for work and jobs. Well let get started @CAPS1 opinion on people using ocmputer is good, only fools don't use computers. They help you a lot like, let say I am a coole and I forgot how to do something, I'll just go on the computer and fine it and it that easy. I use a computer all @CAPS1 life and I am smart, I even help @CAPS1 mom use the comptuer sometimes. Chat room are good to you can make new friends and you can talk to family members, like your mom dad or causen if they live in a different part of the world. I talk to @CAPS1 cansen all the time not reuily a little and he live in colombia. I also talk to @CAPS1 friends on facebook to ask what was the homework sometimes. Games, games are fun when you get bored or do not have nothing to do. You can play all different kind of games like action or if you want a chenllens you can play hard games i think games like chess or sodotea. To help your brain thnk to exercise your brian. Games can help you knew the computer more like they bored, many people don't even knew how to type with out looking at the borad. I have to look at it. Well thus where same opinion I had about the computer. Even though people think it take time from exercising and interacting with people it not really time. There exercising there brian and they can interacte with people. So till next time" 3 4 7 +144 1 "Dear local Newspaper, In my opinion computers are a help to our plant. The new technology makes life easier to handle. The computer are a help because it teaches hand-eye coordination. You can talk to people, and it is a new way to be entertained. Computers can teache hand-eye coordination because of typing. Whether someone knows it or not when you are typing fast it is help you hands. Also the fact you that if your typing without making is also helping because it makes your hand easier to move. The typing is giving your hand lots of exersise because your hands are moving all over the place. The more you move them the more excersise you can get. Computers can really help hand-eye coordination alot. Computers can also help by talking to people. To talk to people far away is better to talk to on the computer because if you have a webcam you can see each other. You are able to talk to people from different countries. Also computers are able to be used in business meetings when a business has to talk with another from different locations. Like if part of the business is doing a project in hong kong, then the boss can set up a meeting to see how it is going. Another way to use computers to talk to people is to speak with a person you are not able to see in person. Like if a oerson is in the hospital but you're not able to go, then you can talk while seeing each other throw the computer. Computers are a great way to use in communication. Computer are also a new way to get entertained. They can entertain you because there is games that you can play. There are games that come with the computers and a lot of games on the internet. Other they being bored all the time you can play thousands of game with just a click on a mouse. Also to not be bored you can watch videos like youtube. You can listen te musicor watch comedy videos. Video also show a way do express what you feel and sat it in comedy, horror, or sad videos. Also for teenagers there is ways to talk to their friends like facebook. On the website you can talk with anyone on your friends list. In the end computer can help kids, adults, or teenagers. With just a clicking your mouse you can find a new powerful way of technology. And be able to got better hand-eye coordination talk to people and get entertained. So go get yourself a computer and amazed!" 4 5 9 +145 1 "Dear Local Newspaper @CAPS1 are you adminitrating your loacl newapaper to society? You are probably using a computer to type the documents. If the government, businesses, schools, students and local newspaper are using computers for a variety of different tasks then @CAPS1 are thet not helpful? Primarily, computers are used for typing, editing and presenting as stated before, local newpaper are required to use computers to present their work. As a member of society, I knew I would not want to read something not typed anyway. The govermnet must announce laws to the people and use typed documents to communicate with different countries & states. Without computers signs, flyers, bussinesses, and even newspapers would not be possible. You are running late to work able to traffic on the hignway. @CAPS1 are you supposed to explain to your boss in time? You can simply email him the situation and arrive stress-free to work. Prctically the entire world uses computers as a source of communication, so why be indifferent? Computers make life easier for people through communication like email, social network websites such as facebook and aol, and even video chat. Computers supply an excellent source of communication that is even used throughout schools. Teachers and administrater interact with each other with important message using computers. if computers are important to them, the @CAPS1 could they be destructive to society? As a western middle school students, I know the amount of projects and research we are required to do per class. Without the internet this would almost be impossible. The internet allows research to happen. After reseach is finished, the paper or homework assignment must be typed and printed. Without the assitance from computers, ahving naetly-written and well-researched assignments would not be possible. To conclusion, I feel that computers are an excellent advance in technology and should be used as frequently as possiblr. Without them, newspaper could not print, teachers could not communiacte, and students couldn't complete tasks for school. As a student I know they help me with school and communicating with my friends and relatives. If computer are such a helpful source to society, why would people consider them as a concern?" 5 5 10 +146 1 Dear local newspaper I think that usieng computers help people becuse if we did not have computers we would not now ehey thing about eneyone or eneything like all of the @CAPS1 I would not now eneything about them but with computers I know alot about them and there lives like @CAPS2 @CAPS3 @CAPS4 got shot in the back of the head and. @CAPS4 got shot to and I know alot about the @ORGANIZATION1 there white people that to fear in to black people and the same with the wars like world @NUM1 and world @NUM2 and the @CAPS5 and @PERSON1 and the @CAPS6 war there was like plain spy palin flying across @LOCATION1 and they shot him down becuse we were trying to see if thay had eney nuculer bombs offer there. And the same with google and yahoo with google you can type in eneything and you will get a answer and most liked a corect answer yahoo and google is great for some worke and products end studying becuse you then you do to and that I think that computer are good. 3 3 6 +147 1 "Hour after hour of gaming online and posting blogs on social networking sights is all one sees. Unaware at there surroundings, many people zone to their computer screens and only break @CAPS4 absolutely necessary. That is not what the world should become but that is what is society is creating. Computers do not create positive benefits to society. Because of all the time spent on the computer, people's bodies are taking the negative effects. There is also less and less face-to-face interactions with family and friends. Another huge issue is cyber bulling. These are all problems that should be addressed. With all the time spend on a computer in a stuffy, dark room, how will our bodies be maintained properly? Exercise is a key ingriedient to healthy living. It is like trying to make bread without flour, without that necessity the bread will not rise its full potential. It is the same with the health and functions at our bodies. Exercise must be took part in to burn fat and calories, but it is also needed to build and maintain muscles. In fact, muscles start it is recommended to get in at least one hour of exercise of outside play a days. Not many succeed with this goal, which brings up another negative effect to the body. @CAPS2 @CAPS1 helps to maintain strong bones. To get the recommended dose of @CAPS2 @CAPS1 a day you only need to absorb @NUM1 minutes of sunlight a day. It doesn't seem like a lot but @PERCENT1 of our population is not outside to recieve it. Instead, they are inside on their computers. Parties, lunch breaks, or even a family dinner are great times to socialize. But, what if one day you decided you were going to skip your lunch break with friends and instead spend time posting a daily blog. This is social time lost. If this habit continues you might soon see yourself drifting away from your friends because you don't make the time to spend lunch break with them. Even @CAPS4 a child interactions @CAPS4 chatting with friends on @CAPS5 or @CAPS6, anything could be said. Children wont learn at a young age how to think on there fact language. This will effect their later years @CAPS4 interviewing for things such as colleges or even jobs. Social skills are the difference between success and failure. Spending life on a computer is equivalent to being a caterpillar in their while at least attempting to be an extreme will turn you @CAPS7 and @CAPS7 are all created with the ominous cyberbulling. One simple way to prevent this is spending less time in the computer. The effects of cyber bulling can be brutal. A recent study showed that @PERCENT2 of kids would rather be bullied in face then over the internet. The reason being a of cruelty is displayed through cyberbulling over the internet because it takes much less courage to type something up then it for a bully to say something to them victims face. Such cyberbulling has even led to suicides. In fact, a girl in committed suicide due to cyber bulling just @NUM2 weeks ago. If you don't have In conclusion, computers produce more negative effect on society than good. A lack of exercise and proper body maintenance results. Reduced social interacting and skills also result. And maybe most importantly cyberbulling which takes lives occurs. In prevent society from turning into a social waste and felled with the glow of computer screens, lets all turn the monitor and get outside with nature and all its benefits." 6 6 12 +148 1 "I belive that computers benifit our society for many reasons. Computers have been around for many years now and everywere you go you usualy see one. That must meen people love then. These are so many uses and fun expeirences you can have with a computer. Computers make people happy and that makes for a better society because it is happier. they make people happy because you can play games like tetris, @CAPS1, and even cards. Compuer games make people happy because when ever they are bored and does nothing going on you can hop on the computer and play a game. Some of the awsome games featured on a computer are @CAPS1, cards, pinball and other great game. The computer makes for a happier home because as soon as kids get home from school they use it for games or chat with freinds. Another reason computers benifit society is because you can now pay bills and buy hings from the internet. When you pay bills or buy things over the internet have is no need to go out and waste money on gas so it makes people very happy when hey save money. It also saves on polution because if a car isn't going out there is less so computers are also saving society as well. My last reason that computers benifit society is they can make you smarter and make you do better in school by learning about often people or cultures. For example on my last research project for social studies I used the computer and got an A. this made me happy so in effect it makes society happy. Now you have my reasons why computers benifit the society. They make us happy, made us smarter, and make us a better society for it. I love computers and everybody else should too." 5 4 9 +149 1 "Dear local Newspaper. I am stating my opinion that the more people use computers the less they spend with their family. I have three ressons why computer are good or bad. Not every one agrees that computer are benefitsal for the society. The positive effect and negative effect that computers have on people. My resson for supporting this @CAPS1 that computer are good or bad are that computers have a positive effect on people. The second @CAPS1 is to be able to talk to other people on line. The last @CAPS1 I have is Spending more time with family than on the computer. The first resson that i have for computers is how they have for computers is how they have positive effect on people. The examples that I have to Support this @CAPS1 are that computers tech hand eye coordination, computers given people the ability to Learn about far way place and peop. The second resson that I have on computers is that you talk to people online. The examples that I have to support my @CAPS1 are the website that kids us to talk to their friends like myspace and facebook. The place that kid like to go to are tutube and even blogging about everything and everyone. Some of theis thing can be good if you don't post picture or other this on your myspace or facebook. I think that these website are dangers because somebody can hack in to your file and they can try to talk to you like their your friend. The third resson I have to support my @CAPS1 is that we should spend more time with our family than being on the computer the whole time I have example on want we should do with or familys instead of being on the computers I have some @CAPS1 of games that we can play with our familys instead of being on the computers, The games that we can play with our familys are monopoly, somy, canda landy card, video games, we can also talk to our family instead of talking to our friends the whole time. When we can injoy want we have in live not just with computers but with our family. Inconclusion I am statting my opinion that the more time people spend on computers than with their own family. I have three resson on why computers are good or bad. The r\ess that I have to support my @CAPS1 are that computers have a positive effeck on people, to be able to talk to people online, To spend more time with family than on the computer." 4 4 8 +150 1 "Dear newspaper, @CAPS1 computers does have some cons but they also have a lot of pros. Some pros are they show magnificant pictures of nature and it would pictures until you want to send them by email. You can even order tickets for planes, trains and movies. Let's not forget shopping and internet. If you go on the internet you can find many pictures of any thing you want. Such as pictures of nature, celebrities. About @PERCENT1 of all picture on the internet are true. A computer can also hold pictures that you take on a digital camera. It can even take a project on a flash drive and then download it. The computer can even email the pictures to any email that exsist. If you want to go to the movies or on vacation you can get the movie tickets online. You can get them at any ticket sales website. If you want to go on vacation you can get your hotel tickets even your plane train, or boat ticket online. Buying tickets isn't the only thing you can do on the internet you can buy stuff to. You can order @CAPS2, @CAPS2 @NUM1, @CAPS2 @NUM2, game cube, x-box, x-box @NUM3, wii, you even computer games. You can even buy the game systems. You can buy house hold appliances. Also you can put clothes and other store products an hold. The internet you can watch videos an almost any website you go on. Some @MONTH1 be grass, some @MONTH1 be funny others @MONTH1 even be wierd. @PERCENT2 of all teenagers like watching music videos. Some are just the artist sing and dancing in a background other times people make fun of other artists. Even though computers do have pros and cons they have more pros. Like the examples in the passage above." 4 4 8 +151 1 "Dear local newspaper I dont agree with the people who say people spend to much time on their computers. Because people can lean mostly anything they want all of a computer also there are lots of resomes why people should use advances technology they can teach kids how to find out answers to there homework the fastway instead of reading a book or taken a class and still get the full understeading. The people that say others spend's to much time on there computers are also right about that but they still can interact with friends and family they can play games, speak to each other, even learn new things together, all through a computer. One thing they were right about was to go out and enjoy the nature you cant do that on a computer but you can help the nature on a computer like try to put up a blog. Something that people make so others can see and spred the word and on that blog it can stay stop cuting down trees for stores or stop killing animales for there far or anythin you wont to write. So the people that do read this you should agree with me because you can do lots of things on a computer and learn lot more then you ever thought you could. So go out and find you a computer and find somethine you need to do or learn or just to have some fun." 4 4 8 +152 1 "Dear local newspaper, @CAPS1 opinion on the effects computers have on people is a positive effect. Three main reasons are that people learn more about cultures, places, and some people work online. @CAPS1 first reason why computers have a positive effect on people is because they help you learn about cultures around the world. Learning about cultures is very important because if people travel they need to know how they can respect each other. @CAPS1 second reason why computers have a positive effect on people is because they help you learn about places around the world the world. Learning about places is very important because you could get lost. It also helps you by telling you which places are famous to visit. @CAPS1 third reason why computers have a positive effect on people is because some people find jobs online. Other people work online. This benefits people in a positive way. In conclusion computers have a positive effect on people because its helps people learn about cultures, places, and jobs around them." 3 3 6 +153 1 "@ORGANIZATION1, @CAPS1 are many people in this world that think always being on the computer is good because they can talk with people online and learn more about the world. But, then @CAPS1 are people who disagree with them. I am one of those people. Spending too much time on the computer can really affect your life. People stop exercising, don't enjoy the beauty of nature or life, and they aren't spending enough time with their family and friends. So, I hope that while you read through this letter, you take some of this information into consideration. First of all, when people spend a lot of time on the computer they aren't getting all of the exercise that their body needs. They become lazy and don't want to do anything. This is very bad because it will affect your health and the rest of your life. People @MONTH1 become overweight and since they got lazy from always being on the computer, they won't go out and get the exercise that their body needs. People need to enjoy their life! By always being on the computer, they won't be able to. @CAPS1 are so many fun and healthy things you can do for your body. You can go play sports and have fun while getting exercise. Many people do this and try to encourage their family and friends to do it with them. But, some of their family and friends are to lazy to do anything because they are always on the computer. Instead, they stay inside the house all cooped up and don't get enough fresh air. This is a horrible thing to do to yourself. Your body needs fresh air, so start enjoying your life a little more people! Finally, people @MONTH1 lose contact with family members of their friends because they are to busy on the computer playing games. I know I wouldn't want to lose a friend to the internet ever again and I don't think anyone else would want to either. I once lost a friend or two because I didn't talk to them as much as I used to because I had been too busy on the computer on @CAPS2, @CAPS3, and games. I felt horrible because I didn't realize that I had been doing that. I really wouldn't want anyone else to lose contact with a family member or lose a friend because of the internet. Its horrible and you don't feel like yourself anymore. Once again I would like to tell you that always being on the internet is not good. You can become lazy, not want to do anything etc., people aren't enjoying their life to the fullest and you can and @MONTH1 lose contact with a family member or lose a friend because you spend to much time on the computer. I hope that after reading this, you realize that being on the computer is not always good for you." 5 4 9 +154 1 "Dear Local Newspaper, I believe that computers are an extremely useful tool in society. It helps people learn new things about different cultures. Also, it lets you communicate with friends and family through the internet, for example, using facebook or @CAPS1. Finally, it provides an accurate research tool for school projects, or interviews. First, learning about different cultures helps the world stay together. For example, here, we learn @CAPS2 and @CAPS3. Each class teaches us to respect more and more of this culture. However, some people don't have the chance to get this land of education, so they turn to the internet. If the computer didn't exist, we might not know about the lifestyle @NUM1 mi away from us. We wouldn't know if their lifestyles are extremely difficult or luxurious. Also, we wouldn't know if we could help them or not. For example, the earthquake in @LOCATION1 which. It's one step closer to world peace no more war or conflicts. Secondly, the computer helps you communicate to friends and family for in the world. I remember one time I was mailing my family friends who was in @LOCATION2, risking his life. I knew he couldn't come back to town, so I started to email him, and video chat with him. Whenever I saw his face, I knew that everything was okay. I don't know how I would have without the internet. Other ways lived you could as. Also, just communicating with friends! internet sites, like extremely useful. Finally, you use the computer for educational use. For example, research projects, study tools and essays. Whenever that a research is the internet. This extremely reliable and accurate. However that some of the websites are fake, which is easy to great research to use for school projects. Also, I know many teachers in my school have a blog or page where they put their @CAPS4 on, study links, and handouts, just in case we lose them. Whenever there is a test coming up, my @CAPS2 teacher, @CAPS5 would have links on her go to help use study. Also, is another website that helps us study for vocab. It also has many games that and learn our vocab words. As you can see, the computer helps us in our daily use and makes a positive impact on our society. From educational purposes, to learning cultures and socializing with friends it helps us get through life. As very successful newspaper and people, I assume you will understand how much the computer has made a positive effect in society." 6 6 12 +155 1 "Dear @ORGANIZATION2, @CAPS1 there has been a lot of talk about how computers effect society. Some ""experts"" say computers are good for society and some think the opposite computers are bad for society because they make children obese, decrease a person social skills, and even make children less educated. Computers are just plain bad. In recent years studies show that children that use the computer often are less likely and less willing to get active. Dr. @PERSON1 says, ""The more children use computers is the more time they waste @CAPS3 not being active at all."" A study conducted @CAPS3 the @ORGANIZATION1 shows that children that use the computer @NUM1 hours a day are more obese then children who use it one hour or less a day. Computers keep children inside all day. A child on the computer is wasting time not being active. The main reason children become fat on the computer is because it is easier to just go on the computer than to walk and exert energy. Computer are a direct cause to child obesity, and they are a threat to society. Some of you @MONTH1 think a computer can increase social skills, and you are dead wrong! On a computer you can ""talk"" to friends, but it is not like you are actually talking to them. On a computer you can talk in privite and say what ever the heck you want. In public if you say something bad you will get in a lot of trouble. A computer offers no face to face interaction. So when a person who uses a computer often is at a social gathering they are usually very awkward. My cousin spends all of his time on the computer and when I went to his on christmas he never took his eyes off the screen! Computers is destroying the social life millions of people. Did you know that people who use the computer often are usually less smart than kids who don't? ""Experts"" on computers say that computers can be used for infenite nolege. The key word in that fraise is ""can"". just because kids have knoledge at their finger tips doesn't mean the will use it. On many projects and homework assignments I have record kids say ""@CAPS2 I just copied and printed an article on google."" @CAPS3 copying and printing students don't learn anything. Computers are slowly making people less educated. Ever since the invention of the computer people have seen promise for society. Now computers are destroying society @CAPS3 making people fat, socialy weird, and less educated. So how can people still think computers are good?" 5 5 10 +156 1 "Dear Local newspaper, I just read about your article regarding the computer usage. In my opinion I think that computers are a good thing. Yet, I believe that it could have a negative influence as well. I believe that computers are one of mankind's best technologies. You can type, learn about historical happenings, different places, and different cultures as well. You can talk to people from far away by using chat or the webcam. That's what I use to speak to my @CAPS1's who live in @LOCATION2. Computers are one of the best things that has happened to me and my life. However, although computer can be such a good thing, it can be bad as well. A lot of people over used it too. I infact know a person and she's a very nice person. She's sweet, caring, loves kids, and has a kind heart. The only thing is, is that she's a @CAPS2 addict. She loves @CAPS2. Sometime when she comes over, I'll be using my laptop and she'll ask to check her @CAPS2 status. My point is, is that she allows @CAPS2 to take over her. not cool. I read an article the other day about computer usage in @LOCATION1. Dr. @PERSON1 covered this article on the topic of computer usage. She said ""The average american spends four hours or more on the computer. Although there are other people who spend their time outside when it's nice. I congradulate them on that"". See, now you heard it from the expert as well. In cocnclusion, I would like to state that computers can have either a positive influence or a negative one as well. So it all depends on how you use it and how much time you spend on it. So my point that I would to come across @LOCATION1 is that use you computer wisely. Don't spend all of your time on it. Life's too short for that. So spend time with family and friends and go outside too!" 4 4 8 +157 1 "Dear @CAPS1, @CAPS2 much time do you spend on the computer daily, @NUM1 hour, @NUM2 hours. While computers, are amazing advances in technology they are also very bad for you. People spend hours at at time on the computer causing less time exercing, horrible speaking, and dangerous searches. From @DATE2 to @DATE3 the numbers of obese people increased from @PERCENT2 of @LOCATION2 citizens to @PERCENT1. In a recent study the amount of families with computers is now @NUM3 out of @DATE1 compared to the @NUM4 out of @DATE1 in @DATE4. Scientist wonder if they were connected and relized they were. People who spent hours on the computer live a sedentary life style. They are more likly to go on the computer than go exercise. The lack of exercising causes obeseity, and cardovascular problems. Without this valuable exercise more people are . At a visit to the hospitial a surgen said he has seen a huge increase of heart surgreys in the @DATE1. We found that the computer manual booklets says to only go on for an @NUM1 hour at a time. The hottest thing online these days is social networking, whether @CAPS6's twitter, or facebook. These social networking allow teens to talk with there friends. But @CAPS6 really isn't talking. For example they write @CAPS3 @CAPS4 going @NUM2 dance. Not only is the spelling wrong but also the grammer. And this language doesnt just stay online, @CAPS6 is now now they talk. @PERSON1 the grandmother to a social networking said, ""I can't even have conversations with her because she is is talking like she is on the computer. @CAPS6's so sad."" @CAPS5 for public speaking and english class, @PERSON2 an english teacher for @NUM7 @DATE1 states @CAPS2 she has seen a drop in teens ability to write gramaticly correct and @CAPS2 when she corrects essay the are written is social networking form. ""@CAPS6's hard to see litiature dissolving because kid are spending so much time on the computer. The average day for children in @LOCATION1 @CAPS7 is to go home and going on the computer for hours at a time until a parent comes home. @CAPS2 would you like your child to be surfing the internent alone without you for hours when you don't know what they are doing. Parent blockers can only do so much. Children can find out the password and net around @CAPS6. The dangers are always there. You can get a lot of good information on the internet but you can also get a lot of bad information. You dont know what your child is searching or who they are talking to on the computer, @CAPS6 could be ""@CAPS8,"" the who lives four blocks over." 5 4 9 +158 1 "Dear newspaper, @CAPS1 some beleive computers do not benefil society, I do. Computers help buisnesses thrive, keep people people aware of what is going on in the world, and allow people to stay in touch with each other. Computers greatly benefit small and large buisnesses across the world. Imagine all the jobs at each buisnesses without a computer. Buisnesses would be unreliable because no instant contact would mean it might take a long time for products to be assembled and shipped. Any buisness owner would cringe at the idea of running of buisness without a computer. When surveyed, @NUM1 out of @NUM2 buisness owners and workers would prefer a computers assistance at work. Almost every modern day buisness relies on at least one computer. For example, companies that mass - produce their products often rely on computers to do jobs more precisely than a worker. Sometimes computer operated robots do dangerous jobs so workers are not at risk. Buisness also need computers to quickly recieve and send information to other buisnesses and people. Buisnesses are not the only need for computers. People use computers as much if not more, than buisnesses. People like you and me use computers to keep in touch with friend and people we know. Thanks to websites like @CAPS2 and e-mail people can easily stay in touch. Families use computers to plan get-togethers. Friends use computers to keep contact after grade school or if they do not live nearby. With computers, anyone that is anywhere can be in constant contact with anyone else. People also like to know news imediately. Without computers it would be alot harder to contact the rest of the world. Imagine a natural disaster accuring and not knowing about it right away. In that case we could not send aid to the area. With the recent earthquakes in @LOCATION1 and @LOCATION2. Knowledge about the rest of the world is even more important. Newspapers provide news and information but a day or two late and they often use computers to aquire that information. Eighty-seven percent of scientists agree that recieving information would be a lot harder." 5 4 9 +159 1 "Imagine standing outside, the warm sun dancing on your back, jumping into the pool and feeling the cool water flow around you. But no, that won't happen. Because children and their parents are spending way to much time on their computers. People aren't getting enough excercise, it can be very dangerous and families are spending less time with each other without computers, so its worse with them. I think people need to realize that computers are over the humans. Humans especially children, need exercise. But with computers that isn't really possible. More and more children are becoming obese by the year. Computers are making that happen quicker. Instead of sitting at the computer eating potato chips, children should be outside on their bikes, or swimming, or playing sports with their friends. If it is winter, the least kids could do is go sledding. Children need to expirience nature, not the screen of a computer. The computer can also be very dangerous. @NUM1 year olds are making facebooks! You can find @NUM2 year old on the internet now. Naive teenagers go find ""friends"" in chatrooms or on @CAPS2, and their ""friends"" lie to them, about their age, another indentity. Many teenagers go and meet someone they met online and end up getting raped or killed. There are many sick people in the world, and many of them use the internet to find people. Lots of teenagers give out personal information like their last name, cellphone number, or where they live, and thats an easy way for predators to find them. It puts them, and their whole family in danger. Computers are breaking up families, and friends. Things like @CAPS1, @CAPS2,@CAPS3, farmpring, @CAPS4, etc. are turning people against each other. Some families even eat dinner at the computer. When friends go over other friend's houses, they just sit on the computer. Why is it so fun to just look at the computer screen? Families need to do something together like eat dinner together, go out for ice cream, go shopping, something, anything but going on the computer all day. I'll admit, I am a little addicted to the computer. But I don't go on it @NUM3, like some people. Instead of eating dinner at the computer, go out to dinner as a family. Instead of online shopping, go shopping with your friends. It isn't hard to at back @NUM4 or @NUM5 hours of going on the computer. Am I the only teenager who thinks this? Maybe. But I know that I am benefitting myself by cutting back on the computer. We don't get enough exercise, it can become really dangerous, and family and friends should start spending more time together. Computers can do everything more than humans can, and we need to stop it." 5 5 10 +160 1 "Dear local newspaper, I agree that people are spending more time on the computers and less time doing other important stuff. For example, they don't spend time exercising, enjoying nature, and they don't spend time with their family. Those are very important things that people don't undeRstand that they are missing of. First, people that spend a lot of time on the computer don't do exercise. Doing exercise is good for your health. If you don't do exercise when you get older your bones are going to work. Also, you could get fat and that is bad for your heart. Just for being on the computer people don't pay attention to their health. Next, people don't enjoy the beautiful nature that is outside. Is beautiful when you hear the birds singing or seeing the plants outside. People are forgeting about nature. They don't recycle so the planet could be clean. The air that we smell is not clean because they don't care about nature. Instead of being on the computer they chould help so the world could be better. Finally, people don't spend time with the people that love them. Is very important to spend time with your family. People don't realize thats the first thing in life is your family. Instead of being on the computer, is fun going to the beach with your kids, wife, father, and etc. In conclusion, i believe that computers affect on people. People just for being on the computer they don't do exercise, enjoy nature, and they don't spend time with their family. Now that you heard my , i ask you to think about yours." 4 4 8 +161 1 "Dear @CAPS1 @CAPS2, Computers have a very positive effect on people. I agree that computers have a positive effect. They teach hand-eye coordination. It gives people the ability to learn about people and places, and you can talk online @CAPS3 first reason is that computers teach hand-eye coordination. for example, when you learn how to type, you can memerize the keys. Therefore, you don't have to look down at the keyboard. Computers also teach hand-eye when using a mouse. When you want to click on something you have to look at the screen and move the mouse to click on the icon. @CAPS3 final reason that computers teach hand eye is once you what to do, you don't have to serch the screen for an icon. You could just move the mouse to a spot on the screen and no what to do. Computers teach hand-eye coordination when you type, when you move the mouse to click on an icon, and when you memorize all of the icons. @CAPS3 second reason is computers make you smarter. For example, if you have a history project, and you need to know about china, you can use the computer. How many times would china be in the newspaper? Using the computer can access quick information. Another example is computers can find information on famous people no one knew about. You could be able to find what college a famous actor went to in a matter of seconds. @CAPS3 last example is that a serch engine can look up famous pictures. If you are working on a project that requires pictures, @ORGANIZATION1 can have the photos you need. Computers make you smarter because you can look up different countries, you could look up people, and famous countries. @CAPS3 last reason is computers give you the ability to talk online with friends, for example, you could catch up with friends you don't see that much during school. Talking online is just as fast as texting. Also, you could continue a conversation you had with a friend. Did the bell ring in the middle of a conversation? Well, you can continue it on @CAPS4, or @CAPS5. Lastly, you can just plain talk. You could make plans, or you can talk about upcoming events. Computers give you access to talking with your friends. In conclusion, computers do have a positive effect on other people. You can get hand-eye coordination, you can look up foreign countries and people, and you can talk with your friends." 5 5 10 +162 1 "Since computers were invented, a colossal change in the way society functions has taken place. People how can go on to their computers to communicate with peers, get information on any topic for a school paper, or just because the internet to watch videos and stories. Magazine and newspaper articles, books and even movies and shows sre available on today's computer! This advancement in technology has made the @NUM1 century the most modern era this world has ever seen, and is beneficial to society. The ""computer age"" has given people in today's society the incredible opportunity to broaden their imaginations through technology. You can, in less than one minute go on the internet type in to @ORGANIZATION1 whatever movie or book you want and start watching instantly. People have always said that books can take you anywhere you want. Well, the computers can do the same thing, expect with greater efficiency and with more places to choosen from. You can, instead of buying a book, go online and read of the faraway city of @LOCATION1, or of the eruption of the @CAPS1 @CAPS2, and you can do it with mind-blowing speed. Some think that by wasting time on computers, people are using up time that could be spent studying or with family. Howeer, any information needed to your knowledge on a topic can be found on the internet. And if you want to spent time with your family, you can even look your computer up to a tv and watch a free movie with the family! The computer age is here and it is exactly. What society needs. Picture this: you're doing a school project on the you know nothing about it. Would you rather drive minutes going and thirty minutes looking withb everything you need, or do you think it's more to spend five minutes looking for the website you need on the internet? Obviously, the later of the is much more reasonable. The computer makes getting research for school or work substantially easier. In addition,you can create entire presentations on a computers with surprising ease! Being an eighth grade student, I dont know I would ever do woithout the internet. I rely on my computer to get all of my research for almost every project, and I even make some of my best project on it! The computer is the likes of all the hard working students and adults much, much easier. People's lives have not only been made easier in the field of research; computer make communicating with friends and familyeasier as well! Through e-mail, video chat and instant messaging., we can communicate with whoever we would, whenever we wort. With some computers, you can even see and talk to any person you wish. Without these computers, we will one again have to resort to snail mail, whcih makes instant communication @CAPS3 telephones, we would have no other way to talk. Computers have enhanced communication chill likes so graetly that it's foolish to say their not beneficial to society. How can a machine with so many abilities be for see the computer as a brooden research for school and we want! Bottom line the computer age is here and its amazing." 6 6 12 +163 1 "Computers are over used and controll the minds some people. Computers are parcally to @CAPS1 for americas high obesity percentage. Americas teens are not doing homework. And noteveteing time into school because of computers. These high tech machines should be outlowed and given to only those who truly need them. People spend way to much time on computers. The time people spend on the computer is time they should be exersizing. Computers make people obees studys show that @PERCENT1 of obees americans admit to being adicted to the computer. This is why computers are bad. The internet on computers is unsafe. Expers say that popular chating sites such as myspace are the reason for the sudden incroas in murders, and rapings. The number of convicted criminals as well as sex affenders i tramendus. Yet parents lot the children on them. People don't understand the troubles computers cause. Besides the other factors computers retard teens learning. Teh comkputer is suposed to be a helpful tool and used for leanring. But computers are being used for other things. Computers encourage kids not to study or do homework. Although those are useful becoming sites and tools, these tool arent used often. Computers hurt people in many ways. America should have off computer week to fight back from its evil grie on children. I hope one day we can all turn off out computers for good." 4 4 8 +164 1 "Dear local newspaper, @CAPS1 you think computers have a positive or negative effect on people? I personally think computers have a positive effect on people because with computers many people @CAPS1 research about the past. Also I don't agree that computers have a negative effect on anybody because with computers many people learn hand-eye coordinations, gives them the ability to learn about faraway people and places, they also allow people to talk to old friends or family members. Then, computers can also be used to help someone find information about nature such as different trees, plants, animals, and many other things that are involved in nature. After that, computers are also sometimes used to contact people who live faraway from you. Some ways to contact people on a computer are using e-mails, instant message, facebook, myspace, and many other websites. In addition, I think computers have a positive effect on people, but others maya not agree which is fine because not everybody has the same opinion on stuff in the world. Then, computers can be very useful to many people because they can use computers if they need to find information on history, any events that might have went on in the past that might not still be done in the present. Finally, computers are useful to scientists, business workers, many adults, and even children use computers if they need to type something for school or need to find information for a project they're doing." 4 4 8 +165 1 "Dear Local Newspaper, everday @CAPS1 technology is developed. One of the biggest and most popular machines in the technocle society is, the computer. Some people don't like computers. The think computers are ruining social skills and healthy bodys. The reason I'm writing to you is to presuade those people to realize the greatness that lies inside a computer. For starters computers help us recive/give @CAPS8. One of the great featurs that computers give is email. Without email, we would be completley out of the loop. For example @CAPS2 there is a snowday at your childs school, you recive an email from the usper intendent saying school si cancled. Without that email, we woulden't be able to know that @CAPS8. Another example, @CAPS6 say that you lost your voice to a terrible cold. You don't feel good and need to call work to report being sick. Now you're stuck because you have no voice. @CAPS2 you had a computer, you could have simply emailed your boss. Another posative tool computers gives us is making communicating esayer. With all of the social networking now avalible like @CAPS4, twitter , @CAPS3 and yahoo messanger. It nearly impossible not to stay in contact with friends and faimly using @CAPS4, you can look up old friends and faimly. Once youve found them, you can friend request them and become online friends. Once youre online friends you can instant message, video chat, look at their status, and browse their photos. So with a computer @CAPS7 nearly impossible not to be able to keep in touch. The last and final reason computers are great is because, they make shopping much esayer. @CAPS2 you have used amazon, ebay or overstock, you know what I'm talking about you can buy almost anything online. From electronics to @CAPS5 animals. The list is endless. With a computer you can even get your house hold groceries online. For example @CAPS6 say your home from work with explosive diharrea. But @CAPS7 @DATE1 so you need to go grociery shopping. You've been on the toilet @PERCENT1 of the day and alls youve got is your laptop. Well you can shop online. So as you can see computers help us communicate, shop and get and recive @CAPS8." 4 5 9 +166 1 "To editor, @CAPS1's a beautiful day. The sun is shining, the birds are chirping, and a lazy breeze is flowing through the trees. But you don't notice any of @CAPS1 because you're plopped down in front of your comuter tapping away on @CAPS2 or email. With modern technology. This is a common scenario. Experts are concerned that excessive computer use can harm your health, hamper your social skills, and cause you to be disconnected from nature. While computers are helpful in our lives too much of one thing is never a good thing. As mentioned, camputers have can a negative effect on your health. Computers cause people to be lazy. They would rather @CAPS2 and email than go outside and excersize in the cool, crisp, fresh air. In fact, statistics recently released by the @ORGANIZATION1 show that computers are the @NUM1 leading reason for obesity. And weight problems are not the only thing computer to worry about. Too much time in front of the computer will also take @CAPS1's toll on your eyes. Even local doctors have pointed @CAPS1. ""@CAPS4 since computers have become a common household item, the number of i have eye has gone up about @NUM2 or @NUM3 more kids every year than the year says @ORGANIZATION3 of the @ORGANIZATION2. And if that isn't enough, typing too many this @CAPS5 and emails day after day can give you repetetive syndrome, also known as carpal tunnel. Carpal tunnel used to be more when typewriters were big, but dwindled down once computers with newer, easier to type on keyboards came around. But excessive daily use of computers is causing doctors to see more cases of carpal tunnel crop up. @CAPS1 is clear that if you want to stay healthy, computer usage should be limited. Secondly, too much time spent on the computer affect your ability to communicate with others. Computers are helpful when you need to talk to someone but people have gott on so used in @CAPS1 that they sometimes find @CAPS1 awkward to talk to someone face to face. Their eyes look everywhere except for the person, they shift their weight back and forth and struggle to find the right words to say things that should be easy. This awkwardness can also ruin previously close friendships. Friends will talk to each other endlessly through @CAPS2, but have no words for each other when they meet face to face. I remember @DATE1, i didn't see one of my friends at all; we just @CAPS8 each other daily. When we saw each other at school, we found @CAPS1 hard to carry a conversation and @CAPS1 took some getting used to talking face to face again. And this isn't the only way friendships are ut on the line by computers. Personal and meaningful conversations @MONTH1 sometimes be. You're on the phone with your friend and you're telling her about something important that you need advice on. A few seconds after you begin talking you're interrupted by a loud @CAPS7! followed by a ""hold on, so and so just @CAPS8 me."" @CAPS9, computers seriously social skills and personal relationships. Another reason to watch how much time you spend on the comuter is that @CAPS1 can cause you to" 4 6 10 +167 1 "Dear local newspaper, @CAPS1 are beinging questioned if the are good for our society or not. I would have to say that they are good and bad you really can't pick a side. These good because children and teens can get the information they need to teach in school, it allows people to chat with others in different places, and it helps hand-eye cordanation. Those were the good here are some bad things about compters. People spend to much time on the computer instead of exercising, they dont' get to enjoy nature, and people stop interacting with friends and family. Anyone can pick a side. I just can't, because i can relate to both sides. For example. one of the good reasons about computers was that you can chat's with other people around the world. I can relate to that because when i live here in @CAPS2 @CAPS3 my mom and stepdad live in @LOCATION1, @LOCATION2 so i don't see them much but thanks to computer i can chat. With them when ever i want to. Honestly i wouldn't know how my life would be like if i didn't have a computer and i wasn't able I @CAPS4 now. Although, can also to one or the bad things about computers, which is that people spent to much time on the them. I can relate to that and so could of the other well, because when i around @NUM1 because go to a after school, go straight on my laptop and around @NUM2. When my grandma @NUM3 pm. She always comes in and ""Your on that thing to much you your hands!"" in her. So in my opinion I believe that coumpters can be good for our socity and bad; for me there is no side to take. Others might feel the same way, and others @MONTH1 not. It's up to them to make a choice, so ask your self,"" @CAPS4 you believe that computers are good or bad for our society?" 4 4 8 +168 1 "Dear @LOCATION1 Newspaper: @CAPS1 you really think computers are that good? Computers are so helpful today almost everyone has one. Computers are wonderful they are great ways to find information, they connect people from all over the world, and offer many @ORGANIZATION1 opportunities, hopefully at the end of this letter you will agree with me. Firstly, they help people find information. Computers are great ways to find information with google and other programs like it the whole world is at your fingertips. In my school surveys show @PERCENT1 of all students use the computer to help them research for school projects and asignments with computers you can view many diffrent websites from all around the world about a topic and you can even find online books that you can use, this is one way computers are a great thing out there are two other great reasons. Secondly, with computers the wole world becomes smaller as people begin to know more and more people through the computer. More than @PERCENT2 of people email, @CAPS2, or videochat on a daily baes. Isnt it great when you mnake a great friend in collage but you find out he/she lives halfway around the world, to know that you can still keep in touch with the computer, did you know that many people in the in the military use videochat to keep in touch with their loved one back home? Computers are great because they connect people and allow them to be together even when they cannot be together, but there is still one even better reason why computers are good. Finally, computers ofter many opportunities like education and jobs. Today there are many single parrents more than in any other time according to @ORGANIZATION1 and the number is still drastickly increasing with this economy some of those parrents could really use a better education to help them bring in more money for their familys, but when can they find time to go to school with work and then the kids? Now there are many online collage courses you can take to get the education you have always wanted with kraigslist and other online adds many people can post job ofering while others can email those people their resume to try to get the job, but by seeing adds posted online people can apply easier from farther away. Computers open many great oppertunities for people. Computers are very cool machines that many people take fergranted, they help give people information, as well as connect people from around the world and offer many @ORGANIZATION1 oppertunities. So @LOCATION1 Newspaper I hope you can try to understand my view on why computers are so great." 5 4 9 +169 1 "Dear @LOCATION1 @CAPS1, after reading your article about advances in technology, I would like to offer my opinion about this contraversal subject. All around the world, people are using computers to do all sorts of things; weather its for games, the buying and selling of items, talking with people in different countries; the possibilites are endless. This is, however, not nessessarally a good thing. Many people become addicted to computers. Esspecialy adolesents, who enjoy the games that computers offer. From personal experience being addicted to computers, I can honestly say that I was under almost complete control by that computer. My grades started to go down, I stopped interacting with my friends and family, and trouble on things. Many parents watch their children go through this and are sometimes helpless to stop it. This poses a large problem for parents. My word of advice; don't let your children become addicted!" 3 3 6 +170 1 "There are some effects computers have on people that I agree with and disagree with. There are many people in the world that use computers every day and some that use it sometimes. Also it always gives you information everytime you use it. I would think that computers give a positive effect on people. Computers can have their likes and dislikes. Not everytime when you need information the computer won't give it to you. There are some websites that give you the right stuff you want to know and others do not fill your mind with positive things. That is one thing I do not like about computers. Do not think that is too bad because computers have alot more fun adavantages. One of the most common and used thing around the world is instant @CAPS7. Instant @CAPS7 is when you are communicating with another human bean over the online web. Many people use this to get in touch with a close family members or a friend. There are some names for instant @CAPS7 @CAPS1 @CAPS2, @CAPS3, @CAPS4-mail, and many more! Yes, the computer can be very addicting but once in a while you need to get off and maybe get some fresh air. For some people I agree that they stay on the computer to much and became very lazy. This is one disadvantage that can cause you from exercizing and seeing friends and family. There is no problem if you go on for an hour a day maybe more, but to long is not good. There are so many things for the computer I can't name them all @CAPS5, @CAPS6, @ORGANIZATION1, @CAPS7, and even buying things off the computers, those are many of the things you can do on your computer. I love going on the computer time to time doing many things I have talked about. Also if you do have one than reading this @MONTH1 persuade you into getting one. My opinion is that they give you a very positive effect." 4 4 8 +171 1 "Dear Local Newspaper, @CAPS1 opinion on the effects of computers is that some people are spending to much time on computers they are good to be on for a while but not all day. So @CAPS1 first reason why I think spending to much time on computers is not a good thing because it's better to be outside doing other activities with other people all day instead you could hang out with friends and do some sports or something else and if your on the computer all day you will start to lose some friends. @CAPS1 second reason why I dont think it is good to be on the computer all day is because if your not exercising you will start to gain weight cause your sitting all day just on the computer so its good to go outside and go for a walk or you could go to a gym so you could do exercise is good for you it will keep you healthy cause I know someone who is on the computer all day and he really does not go outside because he says that computers teach you alot and they do but it is not good to be on it all day. @CAPS1 last reason on some bad effects of computers is that some people could use these computers for bad things they could be going on some bad websites and that will just make you to be on the compute even longer you could even become addicted to being on computers because your doing nothing else ans some people have cameras on their computers and some people use them for same bad things so thats why it is better not to be on a computera ll day long. So these were @CAPS1 reasons or some bad effects computers could have on people if your not go outside to do some activities or to hang out with some friends." 4 4 8 +172 1 Dear @LOCATION1 @ORGANIZATION1 I do agree that people should stop spending most of thier day on the computer and start to exercise more or spend time with friends and family. The computer has the ability to let you learn about faraway places but instead of sitting behind a desk and learning about somewhere faraway you should go outside and see it for yourself. Also our country is one of the top @NUM1 that has fat people and I believe that the computer has something to do with this because most of the kids in our school have a facebook and about @PERCENT1 of those kids are on facebook for at least an hour. This is why people should stop using the internet for most of their day because they are not getting the exercise they need that is why our country is one of the top @NUM1 in the world that has most fast people. The internet does allow you to chat with family and friends but you still need to hand out with your friends outside so you can exercise by playing sports or just going for a walk down the block if you don't you will not have a healthy relationship because someitmes they @MONTH1 not even be on the computer so you can chat with them online. Also if you don't go outside and enjoy nature and play with friends then you will become very lazy just by sitting in a chair all day and you would'nt care to do anything anymore. 4 4 8 +173 1 "Dear, Newspaper I would like to tell you about computers, without them this world would fall apart. For example, some peoples jobs are to fix them, make then, sell them, also some people work from home and need the computer for their jobs. Without them soo many people would @CAPS1 out of jobs and geting paidless. Also, kids need them for education reasons, for example, if you had a broken finger and couldent hold a pencil you would have to type. In addition, what if a student needed an answer to a question and there has no to help them they could go online and get the answer and learn. Theres many ways a computer run help a person. For example, they could need directions or some ones phone number or answers. Also, you can buy off line what if you live too far away from your favorite stare you can fast or der it off line. Also I believe kids should get off the computer any go out side and exercise, to day there is to many over weight people if people what for a walk instead of siting on the computer all day there woulden @CAPS1 as many over weighted people. In addition, people need exercise without it people would get faty, lazy, sleepy, and some sick, and angery, deppression. it would @CAPS1 to every ones benifit if people would exercise more. In addition without computers alot or peoples lives would fall apart, people just need to exercise more and everyting will @CAPS1 fine." 4 4 8 +174 1 "Coumputors are mind browning on what they can do. They can make or break somone financhely. They also can perduce amasing graphis that aritist cant perduce. Coumputrs are also for great for recer antal acitivitys, and they also take your life away. I not talking about a real life @CAPS1 talking about the activitys you do away from home. Now lets see the benifits and problems we come so far on how we handle money. We use to put it in chets and hide them now all we do is click and type in a securty number. people can also invist in items but invisting is tricky you dont always win. You can win small or lose big they say @CAPS2 coumputers today are hd. The screens are made of a liquid crystal fourmula that hardens. The lights in the back pixels do most of the wort to bring stunning graphis to life. On coumputers today people make money by selling graphis they made on coumputers. So this would be another plus on what a coumputor dose to a human. I went to a school to lern how to perduce great graphis. All teens kids and adults have used a coumputer for recerantol acivitys. On todays coumputors you can play games watch videos, and listen on coumputors. People do this to engoy then selfs. Some people ran get in trouble for fooling around on the web. But there is nothing stressed out and just playing some games for a while, personly I like to go on youtube and find funny vidos after school. I use to own a youtube account and get many views. The worst thing about coumpurts is it can ruin plan gobo or somones socal life some people get addicted and cant stop being on the coumputor until it is takin away. For example some people play world of war craft get addicted and cant stop! I had a problem when I had to chek you tube a lot. Well I hoped you readers. No matter what happens I think coumputors bennafit more than the problems" 4 4 8 +175 1 "Dear @CAPS1 @CAPS2 @CAPS3, Computers are a sought after item in this day in age, and we are making advances in technology every single day. Social networking sites like @CAPS4 and @CAPS5 are all over the internet. Computers are good to some exstent, but some kids find the computer essential to their life. Using computers too much will have a bad effect on society. Oreos, @LOCATION1, @CAPS6 are all common sparks for people to be eating while on the computer. Now when you're sitting on the computer daily and for hours eating these sparks. You are begging to become overweight. @PERCENT1 of @CAPS7 kids are overweight and that is unhealthy. A collassal piece of this @PERCENT1 use the computer daily. There is no doubt obesity is a problem, and computers are making it worse. The people that love to use the computer definetly have some sort of social network account, @MONTH1 it be @CAPS5, or @CAPS4. Kids think they are immune to getting in trouble while posting messages or putting up picture of themselves. In one case a girl actually killed because of nasty messages posted about her. Three have been other cases in which girls have sent a nude pictures of themselves to their boyfriends and other people soul it. There lives will never be the same because they were using the computer too much. Soon we will become the leader of @LOCATION2 and we will get to the decisions around. If we are getting to know our outside world and we are not learning how to to be social without the internet, don't know how we will end up. will be the ones and all that important stuff. Instead of typing away we should explore the world and learn important things. Hopefully, as @CAPS10, we will become independent on computers and we will fit this problem by sending less time on a. Computers are great thing but they should not for going outside with friends and playing baseball." 4 4 8 +176 1 "Computers and the @CAPS1 were a technological break through. It exposed to the average world, things that were never thought possitive. But as these things advanced over the years, they've become an addiction so bad of an addiction its begun to threaten peoples lives I've been given a choice to s'de with the addicting computers, or to offose them. The only clear choice is to offose. First off, computers have caused the world a decrease in exercise. Studies show @NUM1 out of @NUM2 people who use a computer, do not exercise with less exercise throughout the world, nations are becoming more over weight. This is a huge problem in the united states computers are main cause to why the @CAPS2.S is over weight and unhealthy by cutting down computers use, we can get our world back into great shape we can bring exercise and health back. Nextly, I'm sure you've all heard of online predators. It's scary just to think about, well as computer technology increased online predators numbers went up. I remember a couple of years ago, I was watching the news and a story came a normal teenage girl, being killed by someone she meton myspace. things like this still go on, and the rate at which they happen are in creasing. by putting people on computers you're putting then at risk of death this is an extreme problem computers have caused. Thus is the last efferct computers have, out of many that I'm going to state time on the computer, is time taken away from family and friends.This can ruin relationship in and outside the family. Now I'm sure you now many people have become extremely addicted to online games. the more they play these games the more they pull away from everyone they knew and loved computers are a leading cause in disfunctional families. they steal the user away from the outside word. these people need to get their families and friends back. You have to act now, before its too late and computers have over taken the world. If you know anyone who has fallen prey to a computer addiction, do what you can to help get them back we need to cutt back on any kind of computer use fast. Hurry, it's now or never." 5 5 10 +177 1 "Dear @LOCATION1 @CAPS1, I strongly believe that computers are a big benefit to society these days. There is so much to learn on a computer. And it is a lot more fun to learn of off a computer than a book. For intinst, let's say a student had to do a report, but he couldn't get his hands on any book at all. All the student would have to do is type in a few words on the internet and hundreds of websites pop about any topic he wants to learn. Another reason that a computer benefits society is ways to keep in contact with family and friends if they live to far away. Like me for instints, I live far from my friends. And the only I could talk to them outside of school was on a computer. We would be able to talk in a chat room or on a game. The same goes with Family. Lets, say your childre go on vacation and wants to keep in touch. All you would have to do is type as much as you want and click send and its at the other computer instintly. But, if you was to write a letter through the mail, it would take maybe a week or two to reach your child or the other way around. But, most of all, there are so many cool things you can do on a computer. There are a bunch of games, to play, or videos to watch. You can make music and make money off of it. My favorite would have to be the computer programs. Flash macromedia is the best though. You get to make your own animation clips or even a movie. Computers are really fun to play on. a computer has so many advanrages in today society. Which i'm very thank full for computers and all of the great stuff you do. That is why I believe computers benefit society." 4 4 8 +178 1 "Dear, @ORGANIZATION1 play a big role in our world today. For example people use computers to get imformation, talk in chat rooms, mainly to talk to friends and fined friends. I think this @CAPS6 messing people up. My first reson for thinking computers @CAPS6 messing people up @CAPS6 because of the impformation that @CAPS6 on the website. For example people past, and blog lies about people online. This @CAPS6 ruining many people because this starts rumors and gossip about people. Also the lies that are being posted could interfear with many lives. Another reason computers effect the lives and people @CAPS6 the dangerous chat rooms. This @CAPS6 not good because your not familliar with the person your talking too. The person could have posed as another person and be very hipocritical. The result of this could be very unpleasent. Like you might give them you number, adress, @CAPS2 personal imformation. The outcome to endup in death, kidnapping, @CAPS2 ciber bullying. Lastly, I want to talk about the false imformation that @CAPS6 given to thousands of people online. Another words the""@CAPS1, @CAPS2 @CAPS3 Your @CAPS4 love"" @CAPS2""@CAPS6 Your @CAPS7 @CAPS8 On You?"" @CAPS9 these things are placed on either side of your screen to get money from you. On the other hand they attract the readers attention. For example these passages are set to copy down your number, get your account number then take your money. This doesnt help our peole because its only there for your money. In conclusion from my veiwible stand piont I dont prefer computers a magnificient way for people to spend there time on." 4 4 8 +179 1 "Dear @CAPS1, You @MONTH1 have heard that there are up-sides and down-sides to using a computer. There are many more up-sides though. For example, you can communicate with people, conduct business, and you can use it to learn. A computer is a big need in today's growing technological advances. Communication is not as easy to do by phone anymore because people are always busy and on the computer. You can use computers to meet people from different countries. By doing this we can learn what life is like for them. Through social networks, such as @CAPS2 and @CAPS3, we can make plans with friends. Computers are an important communication technology. Today most business is conducted over the internet or on a computer. The @CAPS4 @CAPS5 is all computerized today, and that is a major trade way today. A lot of business transactions and presentations are done out on a computer for maximum efficiency. Computers allow us to conduct business with foreign countries without having to go there. Computers are a huge advancement in business. Computers help us learn a lot about, just about, everything. Search engines let us type in keywords and find multiple websites on that topic. Computers let us research so we get correct information with just a click. This research can be used to write essays in school. Computers help us to learn in school and outside of it. A computer is a huge technological advancement with many uses. It @MONTH1 have a few down-sides, but it has many more up-sides. Computers allow you to communicate, conduct business, and learn. Life would be much slower without a computer to speed things up." 4 4 8 +180 1 "In my opinion, having computers is avery nice thing and does good in our society. I think this because of three reasons, @ORGANIZATION2, it allows people to relax and wind down after a long day of work. Second, it allows people to communicate with their friends, @CAPS1, it helps with schoolwork and makes things much easier. These are only a few of the reasons why computers do good in our society. @ORGANIZATION2 off, I'd like to say that after a long day of work, all you want to do is relax. Television gets boring and you just want to sit and play games on the computer. Well, thats a great way of winding down on a rough day. You can go on @CAPS2 and watch funny videos or go on @CAPS3 and on you friends new photo album. Your @ORGANIZATION3 computer is to do many things. There are @CAPS8 many game , such as @CAPS4 come or @CAPS5 cam that can be a lot of fun. Do you see why the computers a good way of calming down? Other than winding you down on a rough day at work, on the computer @CAPS8 allow you to communicate with friends and family. AIM is a good way to talk to friends and plan get together. Or, you can just have simple talk @CAPS3 and @CAPS7 are great websites to keep in touch with old friends of you, @CAPS8 even make new friends. A lot of teenagers and adults have @CAPS3 because it gets. So @CAPS4 that you can't get off it. As you get older, you dont talk to your friends that much and soon you don't have many friends at all. @CAPS3 prevents that so you can always talk to them. You should always keep in touch with friends. Most importantly, you use the computer for school work. Without it you can't get picture off @ORGANIZATION1 or type an essay that due. @CAPS8, you can't search words on @LOCATION1. Some teachers require you to type out essays and other don't. You need a computer if your teacher require you to type things. I go on swifts website to see if i have homework dure and that helps me out a teachers @CAPS8 put extra credit online. All in all computes are good for society. @ORGANIZATION2, you can just calm down and relax. Second, you can talk to old friends and keep in touch with new ones. @CAPS1 and most importantly, it's very useful when it comes to schoolwork and up pictures/ . Now you must understant when i tell you that computers are important and very useful in society." 5 5 10 +181 1 "Dear Readers of the @ORGANIZATION1, Computers are machines that have been around for @MONTH1 years. With internet, you can do things like play games, research information, and even talk to friends and family, all through a computer. Advances in computer technology are beneficial to @CAPS1 society for several reasons. These includes that computers improve hand-eye coordination, provide abundant information, and allow people to talk online. As said earlier, using a computer can improve hand-eye coordination. In fact, it is known that computers can immensely improve your reflexes. This reminds me of a time when my brother went to an eye doctor and was told that his eyes had trouble focusing. Patrick, my brother, was then literally assigned by the doctor to play computer games to help his hand-eye coordination. As a matter of fact, @PERCENT1 agree that computers can have a gargantuah, positive impact on reflexes and hand-eye coordination. If computers heldful in this way and, in some cases, necessary for your eyes, then why would the use of computers be classified as bad when they are clearly a beneficial factor in @CAPS1 society? Computers are also beneficial because of what huge resource they are. the internet offers so much information for people of all ages who want to learn and thrive. For example, most schools have their students use computers for research. When I say most schoold, I mean @PERCENT2 of schools assign students to research using a computer. Principal of new city @ORGANIZATION2, @PERSON2 says, ""@CAPS1 students use computers at leat every week if not more. They are fantastic resource with endless information."" Computers are getway to countless amounts of knowledge that everyone should have access to. It is well known that almost everyone knows someone who lives far away. I, myself, have friend who lives in @LOCATION1 that I miss very much. When long-distance phone calls are too expensive most of the world and I rely on computers to talk to out far-away friends. Computers are the bridge between @CAPS2; (my @CAPS3 friend) and I. However, computers are not only used long distance. I also use computers to e-mail, instant message, video chat, and just stay connected to family and friends. A local teenage boy, @PERSON1, says. ""I use my computer to stay connected with friends and my family that lives in another county. I don't know what I would do without it."" This means that @PERSON1 and thousands of others rely on computers for communication with friends and Family. Computers are necessary for @MONTH1 reasons. They help people, educate, and connect people. You must have access to a computer in my opinion, in order to thrive in life." 5 5 10 +182 1 "Dear local newspaper, I think more people shouldn't spent time on their computer. The reasons why I think this is because people should spend time with their family and friends, second they need to exercis more, and last go outside enjoy nature. My first reason is that people that have computers stay in their rooms all day and don't get fresh air. They need to go out and enjoy nature. People who love animals and like to study animals should go out and get fresh air watch the animals study them. Haveing a computer is you could study animals like that is ok but you dont want to got stuck on the computers. go outside and watch them instead of looking at the computer screen. My second reason is that people do get more exercis. People are getting fat because they are sitting at the computer and not doing any movement. Peple are becoming lazy every day because they are on the computers @NUM1. Is you like to be on the computer and study go for a walk, run, joy, or ride a bike to the get some so a while. My last reason is that more people need to interact with their friends and family. People should get off the computer and make some plans with their family.Have a get together with your family and go places and chill. People who be on the computers don't spend time with there family dont know whats going on around them. Some people go into depresion because they are on the computers not enough time with family. These ar my reason why i think that we shouldn't be on the computers. We should spend more time with friends family or go outside, and enjoy nature." 4 4 8 +183 1 "Dear local newspaper, I overheard some people talking about how much time their families spend on the computer. My opinion is that they should not be on the computer staring at a screen for long periods of time. I think this because it takes away time from important tasks, there is something healthier than enclosing yourself with a computer monitor, that would be going outside or being active. Another reason is that you can have more time being around family and friends. First, you shouldn't be spending so much time on the computer. You could be getting other tasks done. Such @CAPS2 working, or for most teens, doing homework. Studies show that @NUM1 out of @NUM2 teens get easily distracted by social networking websites such @CAPS2 ""@CAPS1"". ""twitter"", and ""aol"". People in the workplace are distracted two. Sometimes the job can get boring, so workers just go on the computer instead of getting things done. Children could be doing chores or just helping around the house a little, but they go on the computer instead. Teens regular routine consists of waking up, getting ready, soing on the computer, school, coming home, snack, and then going back to the computer. We need to break those habits of going back to the computer. Staring at a computer screen for long periods of time is not healthy. Instead, you could be active in a sport, or just going outside and playing."" @CAPS2 technology goes up seizure rates have also gone up."" @CAPS3 to a doctor at @ORGANIZATION1. Being involved in a sport would be healthier and more fun that talking to people online. Also, your not exercising while on the computer, being active keeps your shape along with being fun. The most important reason you shouldn't be on the computer for a long time is because your using valuable time you could have used to spend with family and friends. Most people barely see their family when their at home because their consumed in the computer. Laptops have made it easier to block people out. Bringing it into your room and shutting the door, is the most common way. Hang out with the friends your already talking to online, wouldn't it be better in person? In conclusion, we should limit our computer time to do other tasks, be active, and spend time with friends and family." 4 4 8 +184 1 "Dear people that read the news paper and that have @CAPS1 that like to play the computer all day more. Than a hour. I think you should take your time and read my article in this wonderful newspaper. I am writing this article about @CAPS1 using the computer more than an hour. My first reason about this computers issue is it makes than not pay attention in the school. To support that reason so you dont think i am making this up is that they play the computer alot and it makes the @CAPS1 just think about the computer and not think about school. They play it so much and it can mess up the @CAPS1 and they can not focus in school. My second main reason is it makes them allways want to talk about the computer. So if they play it mare than a hour like i said it can cause them to be addicted like drug's it is just like that if you dont want your @CAPS1 to be addicted to drugs i hope you woudnt want your own @CAPS1 to be addicted to the computer. To continue about your @CAPS1 can allways @CAPS2 about the computer it can make your @CAPS1 sound like they have no life because they play it all day everday and I would hope you woudnt want your @CAPS1 to be like this. Most importantly my final reason why you shoudnt let your child play the computer for more than a hour a day. Because they can get over weight. Your @CAPS1 well only get up and go to the bathroom, and eat, they will only do stuff that is in the house. Your @CAPS1 will not go out side and play and they wont get no exerse at all. I hope you will understand where I am coming from I have a brother that is offering in the hospital right computer too much and it messed and the doctor said he make it not so I am praying that he well make it out alive so I hope you woudnt let you @CAPS1 do this it will mess up their life forever. Thank you so much for takeng you own @CAPS4 Time to read this article I hope you would remember this article for your whole ontire life." 4 4 8 +185 1 "Dear, @CAPS1 @CAPS2 are many people who use computers this advanced technology we have. Lots of people life that we had computers they have lots of benefits that come with having computers. But not everyone agrees with this @CAPS2 are many people who dont like that people use computers to much it takes away less time from enjoying nature, exerising, and interesting with family and friends. But I think on people with computer such as talking to people who you cant see, looking up information gives people something to do. One of the effects computers have on people is it allows you to talk to people you really dont see. I say this beacause not all your friends go to the same school so you dont see them as much. But they might have email, myspace, and facebook. Surf you cant online. It makes it easier to talk to them instad of driving so you can see them. I think that is @CAPS2 are activities you have to do or other activities, they need to do The second effect computers has on people it allows you to look up information. Think of it have you to do a project and you dont always have enough information on what it is to do it. But if your computer it gives lots of you can find information. I think that computer can help you in that way the endless sites of information and of better. Also the might be times go on a trip and know how much it cost and how long its going to take to set to you destination. Well if you look it upon the computer it will be all their for you to see also where else will you find this information you call to questions when consist go to the website. The third effect computers have on people are it gives you something to do. I say this because not all the time will you me to do something to do. Sometimes you will be bored something to do go on computer. The things you can do like play games. Also watch videos on youtube. For example you funny keeps you laughin add on the computer you watch videos. Another thing you can do is download music to your do you ever have line that think of not busy so do it now. See these @MONTH1 things you can go on the computer. To conclude I think that computers have lots of effects on people. These are about computer how people spend time on them. But I disagree is many good effects computers can have on people. I hope you agree with me. These are the three effects computers has on people allows you look up information, gives you something to do." 4 4 8 +186 1 "Dear, Newspaper I am writing to persuade to put article in the paper about how computers have bad benefits on people. Computers make you unhealthy, bullying takes place on the computer, and it effects how you do in school. First, computers have bad effects on people because it makes you unhealthy. I say this because most people don't get enough exercise. Then you get obese from not having enoughb exercise. Eventually you @MONTH1 or @MONTH1 not get diabetes from being obese, but most of the time you do. The next reason why lcomputer have bad effects is because kids get bullied on the internet. This is important because when kids get bullied the feel bad about themselves. Then they all get very depressed. This is called cyber bullying. One example is, is that a guy came to our school to talk about his son. his son had killed himself from being bullied on the internent and at school. That is why bullying is an important issue and computers have bad effects on people. My third and final reason why computer have bad effects on people is that kids do bad in school. they do bad in school because they spend so much time on the computer that they stop doing their homework and stop preparing for tests and quizzes. Also kids get distracted in school because all they think or care about is going home and going on the computer. Kids also do bad in school because they eventually think that school is a waste of time and drop out. It is a proven fact that @PERCENT1 of kids that have dropped out of school was kids that were always on the computer and they said that school was a waste of time. Thats how a computers have on effect on school. Now remember, computers have bad effects on people because it makes people unhealthy. People gets bullied, and it has on effect on your schoolwork. That is how computers have bad effects on people." 4 4 8 +187 1 "Dear,newspaper I think that people should have computers I think that because kids play game to help them learn like math game or read and grown ups can go on websites and watch work out videos and they could pay there bills on the computer to and they dont have it in the store of kids need to do there homework computers are good for that buy thet also have bad stuff like kids say they are doing there homework but they are on youtube myspace or facebook. or other stuff but computers have more good stuff about them they bad things so that? Why I think we should have computers." 3 2 5 +188 1 "Dear local Newspaper, Some people say computers have negative affects on family and friend others say computers are an important aspect of society. I would have to agree with the second group of people. Computers help students research information that they @MONTH1 need for school. People can talk to there friends on things like facebook or @CAPS1 and you can write a rough draft on the computer save it then go back to it and make the final changes from a draft to a final. I will elaborate in the following three paragraphs. Computers are a quick and easy way to look up information for a school project or paper. I can understand people thinking that computers take away from family time but so would a book. A book would probably take up more time and you @MONTH1 get less information. For example the book could be about multiple people and you read the entire thing only to get two sentences of information. Another reason computer reasearch is quicker is that you can go from one page get some information and then once you have gotten all the information from that page but you still need more you can just click another link. If people didn't have computers they would have to go to the library and spend time looking them. Is it worth it to use all that time. People can talk to there friends on facebook or @CAPS1. Some people say computers distract you from friends when really they help you talk to your friends more. What if your on vacation and your so tired of seeing and talking to your family because you've been with them non stop for a week and you miss your friends. All you have to do id turn on the computer and then you have an intent link to them. Chat rooms also help you meet other people your age from the next town over on enywhere in the country. They @MONTH1 even became your new best friend. When you write a paper do you want to have to write it once then go back and write it @NUM1 more times? Theres a much simpler way it's called a computer. You can write your first draft then all you have to do inordre to get a final copy is reread it and make changes when they are nessecary. Computers also help kids spell better. All they have to do is hit a button." 5 4 9 +189 1 "Dear Newspaper, @CAPS1 you turn there is technology. It's not going to change. Try a schedule. Encouragment helps a lot of people. Activities keep you mind off things read on to find our more. Scheduleing is important. Limit the time on the computer. For every half hour at least @NUM1 minutes outside or with friends. try to memorize the schedule. Encouragement helps me and alot of people! Try to encourage family and friends, The goverment is also trying to fight this. Encouragement helps. Activities can keep people off the computer. Try neighborhood activities. After-school activities for a while. All kinds of stuff is fun. Do you think scheduling helps? Do you like encouragement? Do activities keep you mind off things? then by far this stuff helps." 3 3 6 +190 1 "Dear @CAPS1, @CAPS2 you imagine a world where technology controls human interaction? Its not such a far fetched idea. Some people @MONTH1 see this as a great advancement. Not me. I think that computers detach people from reality, create false personas, and has no physical benefit. This is what i think the computers effects have on people. First of all, Computers detach people from reality. Its a lot easier for someone to sit on the computer, browsing aimlessly on some social networking website, than go out and actually meet new people. Sure you @CAPS2 send all the friend requests you want, but theres nothing that compares to a first impression that you get from meeting someone in person. The computer can also have an affect on family members and the time spent with them. Secondly, the computer creates false personas. If i had a facebook or @CAPS3 account, it would be very easy to say something false about myself, or someone else. The computer dosn't know better. This allows people to gain, ""friendships"" with others that dont know the real you. I find this as a real problem because eventually lead to shaky or unsteady relationshops. Lastly, I think that the computer offers no physical gain, This nation is in a severe heath crisis. With things easier to get now a days like fast food, and drugs, I don't think that computers help. People need discipline and theres a time and place for everything, including computers. However those that aren't disciplined might use them more than they need to and that isn't good. So @CAPS2 you imagine a world controlled by computers? I think that little by little, thats whats happening, slowly taking away the human element. I think the effects will be severe, detaching reality, creating false personas, and offering no physical gain. I don't think its right, but I hope I've persuaded you to think my way." 5 5 10 +191 1 "Dear The @CAPS1, I understand that you have some concerns about computers. I don't think you should be concerned though. You should not be concerned because computers are very posotive. They teach us hand-eye coordination, help teach you about faraway places and people, and finally you can talk online with familly and friends. First, computers teach you hand-eye coordination. There are thousands of fun games online that can help improve your reflexes and eyesight. This can help heal or improve some people reflexes by making their eyes more keen. Another thing amazing about computers is that you can learn about far away places and people. This is very helpful because if you want to travel somewhere far away but you can't, you just go to your computer and look it up. Then you feal like you are really there. It can also help you study about people that live far away and that you won't get to meat in person. Finally when you go on your computer you can go online and talk with your family and friends. There are all types of websites you can go on to talk and hang out with with all of your friends and family. The computer is very helpful because it keeps your family and friends together and happy. In conclusion I think computers are a great, fun, and helpful invention. Remember these good characteristics that computers have and please don't take computers away; we need them." 4 4 8 +192 1 "How @MONTH1 times do you use the computer in one day? A lot right? I think that computers definatly benefit society. The internet helps a lot of people, because its very conveniant computer give people. The computers also lets people talk online with other people. Computers help people because of the internet. The internet makes alot of peoples live easier. One way is for school. I know from my own experiences that the internet helps. If I dont have enough material to study, on the internet help. Another reason that the internet is helpful is for jobs. Did you know that @PERCENT1 of people the age of @NUM1 have jobs on the internet? The internet can also help people find jobs. The last reason that the internet is helpful is shopping, I remember a time when i needed a special book for school and no book store and no bookstore, my mum ordered it of fine, the internet is very helpul to many people. My that computers are beneficial to our society is that they people the ability to faraways places. many people cannot offerd to go to a lot of places outside the united state., With computers, people can team about there places and at of these places. Sometimes there is even a snow the experience of being there. Another reason that are using and want to learn more. Once, any family got to a wedding in @LOCATION1, but we didn't know much @LOCATION1. @CAPS1 we went online to find things like. The foods eaten there and what the weather is like. lastly people can learn about where their family corner form. If people know the place that their ancestors came from, but they look it up crime computers. They confind recipes for food, what relign they practice, and what holidays they celebrate. Obuously computer help people about faraway places. My last reason that computers are beneficial to or society is that they allow people to talk with other people. Sometimes, good friends who wants to together loss touch or if one friend, people can find online and take. Did you know that their are many sites that tell you where people you went to highschool with are? Also, there are sites like facebook where people can connect. Another reason is that, people can meet other people online. their are many dating sites such as, that connect people losing that internet. Did you know that @PERCENT2 of people on dating, sites set ? Sometimes people cannot call each other because its too long distance. Being able to chat onlinee a sites like google, chat or all is very helpul. Without a dubt, computer are very helpful. I think that computer help @CAPS1 many, people in our society. People use the internet to help them. People learn about other places and people ccan chat online. -@CAPS1, dont think body about computers, because they have impaced our society greatly!" 6 5 11 +193 1 "Dear @PERSON1 weekly, The new millenium brought a new wave of technology. Computers is the main invention that most likely everyone uses. The computers teach us great things such as learning about a vacation spot or a far off country. The computer allows us to talk to friends or family while they are away or even home. Also, typing on the computer teaches us hand eye coordination that can help us with other things. The computer is surely a great invention. Have you ever wanted to go on vacation to somewhere overseas? Well the computer is a great source for learning about these places. The effects it has could be significant. One day some one might want to go to the bahamas, but then finds a new location such as @LOCATION1 or even @LOCATION3. In addition the computer benefits students very well. Students usually have to do projects on places in the world and the computer is the main source of intelligence. When I have an essay to do I always use the computer first. Recently my grandmother moved down to @LOCATION2 and I can only talk to her on the phone. Although on my computer I can actually see her on my screen. The webcam allows me to see me grandma. The computer allows you to keep in touch with friends and family that you do not see on a regular bases. For example @CAPS1 or twitter keeps you in touch with friends from high school. The computer can also send emails to friends and family so you can say hello every once in a while. Sports require a great deal of hand eye coordination. The computer makes you better at this. By looking at the screen while typing, gives you a boost on your hand-eye coordination because you are doing two things at once. A sport that requires a lot of this is @CAPS2. While the ball is in the air you must focus on it while holding your stick at the correct position. Although hand-eye coordination is mainly taught through the powers of the computer. To conclude, all that I would like to say is that the computer is a great source for intellegence. It also allows you to keep in touch with high school friends and far away family. Finally, the computer teaches you hand-eye coordination. The computer is a very important piece of technology." 4 4 8 +194 1 "Dear @CAPS1, @CAPS2 you want our society to becaome one of obese, lazy with no appreciation for family or friends? @CAPS2 you want people to lock a respect for nature? This is the result of excessive of computer usage our society will become lazy, and dependent upon robot slaves and loose, brain washed. People will not be caring for family or friends. Most importantly, our society will have no appreciacion or respect for mother nature. Is this the way you wish our world to be? Have you ever read @CAPS3 @NUM1? In the book, the government uses technology to brainwash people and then manipulate them. If our society, like the one in the book, becomes over dependent on computers and technology, then we will collapse from the inside going from a respected world power, to a third world country in. We will need to redesign buildings to have doors big enough for our bodies to fit through. We will not be a respected nation anymore. There will be charities in other countries to send money to build gyms and pools, but nobody will use they. Recent research from @ORGANIZATION1 says that @PERCENT1 of people who spend more than an hour and a half on their computer every day are over @NUM2 pounds. People won't remember how to talk. Babies will learn to type instead of talking or walking. Is this good for our country? People say that the best thing you could ever have is a supportive family and a group of good friends. According to @PERSON1, a well known psychologist, ""People who have more friends have a @PERCENT2 reduced risk of depression."" Friends actually affect you health. People who use the computer too much lose friends and became separated from their families. The mental health effects from this can be horrible, and people sadly will miss out on all the positive parts of life. It's important that people are happy, but if you onlr communicate through e-mail and social networking sites, you aren't social enbough. It is one thing to chat online, but it is better to be able to see someone face to face than a picture on screen. Nobody wants to end up like this, so limit oyur computer usage. With too much computer usage comes a lack of respect for nature, People used to care nature for many reasons, but the biggest is that it affects us everyday, in everything we @CAPS2 and own. Everything has a base in nature, even ourselves. The weather outside even on a beautiful @DATE1 day, can be deadly if we don't pay attention to what is going on outside of our safe house. We depend on nature but if we don't respect her, she will kill us. Anything is good in moderation, even a computer. But when we don't limit ourselves, it has bad consequences. We will no longer have a respected society. Our family and friends will dissapear, causing health problems. Worst of all, we will lose all expectation and respect for mother nature. The time to start limiting computer usage is now, or we will have many great problems." 5 5 10 +195 1 "Dear, @ORGANIZATION1, @CAPS1 idea about ""Computers"" is very well thought outside of the box.Well. We sure need computer to look up information these days. Why do we need them now and it dident existed before? Reseach shows over @PERCENT1 of @CAPS2 says computer is everything. Let me explain a little bit further to you what I mean. First, you can look up places, chat with friends and family. @CAPS1 oppinion about using the local internet would be that it's good only for those who knows and not trying to be mean. For little world neve should get to bed at least @NUM1 pm, and never to forget about nature outside of fresh air. In conclusion, internet these days are very good for people." 2 3 5 +196 1 "I think the use of computers is very good things in the present day @LOCATION2. I think this because people use it to research, stay in touch with friends and family, and music. These are all things adults and kids need a like to do. read on and I will explain why this is so important. My first reason why I think computers are good thing is because the are a good source to do research on a specific topic. Kids all over the @LOCATION1 use the internet to do class projects. Adults can use the computer to look up a certain food resipe. If you need help with something the computer is allways there. Some people even use the computer for a job. Computers can help with a lot of things. Another reason why computers are a big help because you can stay in touch with friends and family. A great thing to use on a computer is a web cam. With this you can see and talk to people on a lillte camray even if they are far away. You can also go on myspace of face book. Theare two websites that are used to post pictures and to talk to chosen friend. It is a good way for people to get to know you. A similar thing to this is instant messaging. You can use this to talk to friends and many on line. Don't stop reading there is more thing! My last reason why computer are sutch a great thing to have is because you can do do mutch with music on the computer. You can use the computer to listen to music, and put music on to and ipod or @NUM1 player. Some people use the computer to make music. You can get a progrem that you can make heats and put it together to make some kind of a song. music is a great thing that all age groups love. That is why I think haveing a computer is a very positive thing. You can do researching, say in touch with friends and family, and do a lot with music. There is so mutch more then thease @NUM2 thing that a computer is good for. I don't think the world would be the same without computers." 4 4 8 +197 1 "Dear newspaper, I know that computers can place a person in its spell, but in reality it's one of the most necesary things we need in our lifetime. Computers are used for many things like school work, planning that trip you always wanted to go to, and reading the latest news. Read the following to know just how important computers really are. You know now when you have that project due for science class about protoplasms. You want to do as you can so you have that at. When you realize that the one book you find on it wont help you with the score you want you realize that the nextplace to look is the computer. The computer gives you an unlimited amount of information that will help you in any report. When a teacher gives you a book to do a biography on, for example, ""The life and times: @PERSON1"" You want to go beyond what they give you and search, for instances, his neighborhood, his inspiration, and the influences he had. You will find all this in the computer. When you see a sale on a ""five nights and four days"" trip to @ORGANIZATION1, you want to know what better sale they have. When you start to notice that your family needs a vacation what is the only place to look. You can'@CAPS3 look for that trip of a lifetime in a book. Sure you can find out that @CAPS1 is having that big blowout sale, but you cant search up the best deal. I've done a research with seven of my friends and that six of those seven parents have deal on a trip to @ORGANIZATION1 on their accounts. If you're a great fan of road trips you'll find a deal or @CAPS2's for the lowest only find out by computer. If you live in @LOCATION3, @LOCATION4 and you want to have a trip to the @LOCATION1 this deal is really good. If you live in the @LOCATION2 and you know the hottest day in the @DATE1 is coming you will be ready to get those beach balls and that blanket ready, but if you think computers are a waste of time then you wont know that all the beaches open and will be sending free drinks all day. You will be at home eating a @CAPS3.V. watching old reruns of The @CAPS4 @CAPS5. Not only will it tell you news in your erea, but will tell you about that devastating earthquake in @LOCATION5. You'll also be informed about what people are doing to help them and what you can do to help. So not only is the computer good for going on @CAPS6 and @CAPS7, you can help get your grade to an A+ on that history report. It also works well for giving your children a memory they will always remember. They also help you to get ready and not be stock in your house on that nice day in @DATE1. Maybe if you find that great deal or help your kid get a better grade then you will realize how good the computer is." 5 5 10 +198 1 "Dear Local Newspaper @CAPS1, @CAPS2 show that @PERCENT1 of humans in the @LOCATION2 alone spend most of their time on a computer or laptop. I believe that the effect of computers has a negative effect on humans because it creates people to have a lack in exercise and it limits the physical interaction with others. As a nation, we can lower the statistic above and create a better environment altogether. The amount of people that lack a sufficient quantity of exercise has risen in the past decade. Doctor @PERSON1, who is expert in the connections between health and computers, surveyed @NUM1 people. Out of those people, @PERCENT2 said they rarely go outside because theu are trapped in the cyber world. This shocking percent proves that only one in twenty people actually get some tyoe of exercise. @PERSON2 stated, ""this shocking @CAPS2 means that most -if not all- all people are unhealthy physically, which is a problem that must be solved."" @CAPS3 goes on to say that being on a computer for most of the day and not exercising is what contributes ti unhealthiness. In addition to lacking exercise, many humans are losing the physical interaction that they should have. As humans have become, modernized with technology, most humans lose the physical interaction that they world normally have encountered if they we not on the computer. @PERSON3 agreed with this statement and said, "" I am a college greaduate; I have a degree and all, but I wasn't always like this. When I was younger, I owned a computer. As soon as I got home from school, I would always go on the computer. I wouldn't talk to anyone-not even my family! If I could go back and change that, I would."" This statement proves that the lack of physical interaction with human is a crucial subject to touch on. @PERSON3 regreted it all and changed his ways once @CAPS3 got to high school. No one wants to live with regrets, so physical human interactions are necessary to live a non-regretful life. the lack of human interaction and lack of exercise are problems that need to be solved as soon as possible. In conclusion, using computers has started a growing epidemin in the @LOCATION1. The most important reasons as to why computers have anegative effect on humans are it limits the amount of exercise, and it almost destroys the physical interactions between humans. Thank you for your attention, and remeber one thing: Computers can always have a negative effect on many humans lives." 5 5 10 +199 1 "@ORGANIZATION1, @CAPS1, click, clack that the sound @ORGANIZATION2 computer keys being hit right now. Computers are everywhere these days, even in the poorest places like @LOCATION3. In @LOCATION2. Dreadful, humble, time conservative computers are taking away the meaning and enjoyments @ORGANIZATION2 life that are offered to us. Computers are our sourse @CAPS5 infromation, and time @CAPS5 liesure these days, but we are fogetting that there is a life away from them as well such as having family time, and taking walks in the beautiful, nature. To much use @ORGANIZATION2 a computer is leading to aweful health. Computers can cause many fatal problems such as seeing and vision problems, and obisity, due to the fact that you sit all day and @CAPS2't work out. Computers are like mind, and body eaters the slowly take away from you and let you cry, and weap @CAPS5 the rest @ORGANIZATION2 your life, @CAPS2't you agree? Do you know the @ORGANIZATION2 says that the second biggest leading cause @ORGANIZATION2 obisity is computer? Yes that is true! I have experinced problem. While growing up. When I was @NUM1 I was adictied to the computer. Day and night my eyes were guled to the computer screen. I had nothing on my mind except @CAPS5 computer, my mom got mad at me and yelled at me to get away from it, but I didn't. Slowly, slowly I started to put on heavy, awful faton myself, and later I found out I was over weight @CAPS5 my age. To this day I have not lost the weight I put on from using the computer, and I am sure others are to. Obesity just doesn't happen from eating to much. It also happens from not doing any cardio activities, which the computer stps us from doing. So basically the computer is unhealth. As said by @PERCENT1 @ORGANIZATION2 people from the state @ORGANIZATION2 @LOCATION1. Time consuming computers, are taking away family time from many family these days. Do you know that @PERCENT2 @ORGANIZATION2 families aren't getting to spend the time with each other as the wish, reason being computers? Kids are on the computer playing games, moms finding a resipe online to make @CAPS5 dinner, and dad is buying another stock online. Yes that happens a lot, insded @ORGANIZATION2 doing those things they could be doing something else, but no computer work is more important. My family used to spend a lot @ORGANIZATION2 time together, but because @ORGANIZATION2 the computer I never get to do anything with my family now. Do you know the time health @ORGANIZATION2 @ORGANIZATION2 say kids who spend time with their family are bound to become more better parents than who @CAPS2't spend time with family. I bet you are a really good family man/women and spend time with please take these computers away and make families come together once again. @LOCATION1 has the most beautiful nature ever, the birds, the animals, the @DATE1 times and the fall time. If anyone ever wants to see nature they should come to @LOCATION1, but the sad thing is that the people @ORGANIZATION2 @LOCATION1 aren't appriating nature themselves because they are do busy with things such as computers. I know one time we went to a comp out, and we were ready @CAPS5 nature and this boy brings his computer, and wouldn't you know it the whole got people forgot about nature and played with the boys computer. So many people missed out on the nature and the beautiful animals seen one the such as yellow @CAPS3 through that time was amazing and it is very unfortunet that many people missed out on that event. People these days are once again not apricating nature, which one day they will regret, because @ORGANIZATION2 the fact the one day you @MONTH1 not be around to enjoy this got given @CAPS2't let the computer tell you what to do lets be the boss and @CAPS5 ourself. It is now or never the decision is in your hand, make the right decision and say no to computers. Go out their enjoy nature, spend time with you family, and get healthy. Be the smart, and well educated people. (I know you are) and tell the world to not getting told by the computer @ORGANIZATION2 what you can, and cant do, be the boss control. Yes computers are fun, giving, but is bad. Say no to computers if you @CAPS2't you will regret it." 5 6 11 +200 1 "Dear Readers of @LOCATION1 @CAPS1 has been borught to my attention that there is dilema on the effect of computers on people. Well I believe that having computers around are good because. Computers help students do there school work better. They also give the ability to learn about far away places. Lastly, computers allow people to talk to othe people online or webcam. My first reason I believe computers are good to have around is. They help students do there school work. Sometimes teachers give assignments out and you have to write an essay. @CAPS2 the student does @CAPS1 on a computer they might get a higher grade because @CAPS1 looks neater and more proffestional. Computers especially help out college students. A college university took poll one time. @PERCENT1 of student wouldn't know what to do @CAPS2 they didn't have there computer or laptop. One student even said ""@CAPS2 I didn't have my laptop I would probably fail most of my classes."" Computers can be very helpful when @CAPS1 comes to student school work. My second reason that I believe computers are good to have around is. They give the ability to learn about far away places or other coutries. I took a poll one time of how many people use a computer to find out whats going on in other countries, @PERCENT2 of them said they go on the computer to find out what's going on in another countries. Computers can be very handy when you want to know whats going on in other countries. My last reason why computers are good to have around is. Say you married and you are pregnant unless your guy of course, but your spouse is in @LOCATION2 and you couldn't them. Well computers these days have webcams. So now @CAPS2 you really need to talk to him or her you can by using webcam. So readers of the @LOCATION1 @ORGANIZATION1. Can you see now why I believe that having computers around is good. @CAPS1 helps students do there school work. @CAPS1 gives the ability to learn about far away places and countries. @CAPS1 also gives the change to talk to people with webcams." 4 4 8 +201 1 "Computers and modern technology are advancing quickly, and more and more people are beginning to use them. Some people say that computers are a bad influence on @LOCATION1. I think other wise. I think computers are an amazing breakthrough in modern science. I believe computers are ideal for school work and comunicating with others, as long as they are used in moderation. Computers make school projects so simple I don't know if we could do without. Our social studies teacher @PERSON1 says that @PERCENT1 of his projects involve something on the computer. The internet is a great place to research for big papers and projects. With over thirty-million educational and informational websites, its easy to locate what you need quickly and easily. Once you have finished researching it is easy to type your report. If it isn't a written report, then there are many other programs for fancy presentations. Take microsoft @CAPS1 for example: you can make exotic background and texts, as well as unique animations to emphasize or to make it pop right off the page. Computers are also an ideal way to communicate with friends and family. Emailing is quick and easy to tell others what you want to say. If you want to chat, then you can use @CAPS2 or instant messaging. This allows you to type and sent emails faster. Both of these programs are an inivative way to talk with a family member that isn't home. Like lets say my dad goes on business to @LOCATION2. We can email back and forth every day. And now with @ORGANIZATION1 (a video chat) you can see the person and actually talk to them like they're back at home. Computers have their advantages but they also have disadvantages. Computers are great for communicating and school work, but when used in excess can be unhealthy. Here is one example: my older brother @PERSON2 is a senior in high school. He is in school from @NUM1 to @NUM2:pm and as he gets home he heads straight for his computer. He is on there for at least five hours a night and that leaves time for dinner and not much of anything else including sleep. I think that computers are a great invation in modern technology as long as people limit themselves. Computers are coming out with new features everyday and who know theyll be like..." 4 5 9 +202 1 "I completely agree with those people who think computers have a negative effect on us today. Even though computers are great they do have many negative effects on people who use them. Since. new technology, and post pictures on websites where everyone can see. Also they have games for computers that people get hooked on. Lastly, there are predator online. The new technology is amazing, like webcams where you can video chat or cellphones where you could take pictures, @CAPS1 they do have negative effects. There have been many suicides over cyber bullying. This is where people bully kids over the internet. Also some people send naked pictures online or even while webcamming. this is illegal and absurd that young or even older people would be doing these actions. Also there are websites where people can post these pictures of you that are very personal and make a huge difference in you life. There are many people who have games for their computer or download games off of websites. Most people actually get addicted to the game, They would play it all day if they could and if they arent playing they are wishing they could. This makes them miss out on alot of things. They might not get enough excersise or not do any homework which will make you grades drop. They could also not be spending time with family. It also might change who you are as a person. The most important thing about the use of computers is your safety. There are predator all over the internet and can pretend they are someone from school and ask where you live. You should never tell anyone where you live or your full name online. They can and most likely will come to your house for you. It could most likely cost you or even family members your lives. Computers can be fun and you can learn an abundant amount of information but as long as you smart about using it. Remember not to tell anyone where you live or dont take pictures and send them that are personal. They could be all over the internet the next day. Lastly, worry about your family, grades, and health than some useless game. Be smart and safe!" 4 4 8 +203 1 "Dear Newspaper, I think people need computers. It helps them see the world if they can't. It can be used to send important messages to people that are farther away from you. Also if someone has a parent or loved one far away they can see each other through the computer. So here is examples of these three things. Some people can't physically or mentally and can't afford to travel. Its sad how some people are so sick with a disease or illness that they can't go places. But if they go on the internet they can look up pictures and information of places they've never been to which can help them see the world better. But there are people who can help them see the world better. But there are people who have fears which prevent them from travelling to different places. So thet could go to the internet and find ways to help them get over their fears. Which in turn will allow them to get over their fears and let them travel to places. Then there are people who can't afford it. So the internet can help find a good job that pays good money which they can use to afford to travel the world and see it for what it is. What if you need to send a really important message to someone to prevent them doing something or help them live or even stop a war. So take into reconsideration if there is a war going on for a miss understanding. So if the government figures out what happened and they know how to straightin out the situation then they could send a message to the attackers. What happened and that it wasn't what they thought we did then they would stop fighting and the war would be over. What if a bomb is in the white house you would want to get out of the building or find it and disarm it. So then a guy finds out about it and send a message to the white house and that would save all the people in the white houses lives. Sometimes loved ones go away to some where far away and you can't talk or see them. Someones in the military and he/she has a kid so the computer allows them to see and talk to them through a webcam which would keep the child and parent together and not seperate them. Also you see a friend in facebook who you haven't seen in years so you friend him and you guys get back in touch with each other and you can be friends with them again. So in conclusion the computer can do many helpful things. It can fix relationships, save lives, help you get over fears and see the world. Which isn't bad sure we sometimes go over board with it but it is very useful. It isn't horrible but it is sometimes bad but also sometimes good but" 5 5 10 +204 1 "You want my opinion on the effects computers have on people? Well, I believe that computers help people educate people and some computers people relie on. It's time to decide if you agree with me that computers have positive effects on people. Do you agree with me that computers can help people? Say for example you have a question noone in your home can answer. Why not @ORGANIZATION2 it? Of course once in a while you're going to get a school project. Surely you'll need information, but the library is closed. And you don't @CAPS3 what to do. Simple, all you have to do is reasearch it on your computer. Don't you agree that computers help people? I remember this one time I entered a @CAPS1 contest, and the @CAPS2 I needed was lost, then I remembered I put it in my computer. Computers can be relied on by people. Just think about it! Almost over @PERCENT1 of jobs out in the world relie on the technology of a computer. For example the @ORGANIZATION1 job. It would be kind of hard to keep track of how much trash is thrown out every year without a computer, surely banks use computers too! To keep track of everyone's allowance and money situations. Let's not forget about what lawyers do? There are some lawyers incart who use the computer to type up every word said. They turn the words into short and to keep up with what people are saying. Did you @CAPS3 that without these computers ever half the million jobs in the world would fail? Some people would agree that some online games are educational. For example, there is @CAPS4. That game teaches you words you probably never seen before. And don't forget @CAPS5. That game improves your counting of numbers. Last, but not least would be @CAPS6 @CAPS7. That game sharpens your skill and exercises your brain. Strategy come in handy, surely you now see that some games are very educational. In conclusion, I agree that the effects computers have on people are positive. Because computers help people, are reliable, and can educate people. It's now or never do you agree that computers have positive effects on people?" 5 5 10 +205 1 "Dear local newspaper, @CAPS1, my name is @PERSON1. I've just been informed about how people view computers and the effects of them. In my opinion, I find computers to be a very negative influence on yound kids, teens, and adults. Many harmful awarenesses come along with having one. For one thing, people being so hypnotized in this electronical device are finding lesser time to excercise and take care of themselves. Also to, the only nature they're experiencing is pictures online and not enjoying the full beuty of what we have left of out earth. Another negative outcome is that they start becoming more and more distant from their loved ones. What happened to our society? Why can't we think on our own anymore? I truely, strongly hope that what i'm saying will change the minds of some people. Thank you very much. Exercise is a very key aspect in anyone's life. Especially growing kids and teens. On the computer what exercise benefits are you getting? Stronger fingers? A higher chance of syndrome @CAPS10. ""@CAPS2 @PERCENT1 of kids having @CAPS7 problems like obesity have access to the internet"", accoding to @PERSON2 of the, ""@CAPS3 feel right with @CAPS4 @CAPS5 @CAPS6"" in hunington beach, @LOCATION1. When basically, your giveing youself to the computers, you @MONTH1 not have any thoughts at all of staying fir. Instead on some chips while typing. @CAPS4 @CAPS7 BENEFITS @CAPS8 that game help? With global warming by ourside, what you saw yesterday @MONTH1 not be there today. Breathing in some fresh, natural air can really calm a stressed child out. What ever happened to playing an endless scoth with side walk chalk and fresh? or tag or just running around? Is it not cool anymore? Yah, not cool to take care of yourself. Inspire yourself by writing poems about how you feel or draw a screnary. Now a days, instead of @CAPS10 climing a tree, were climbing our mouse arrow to the next website. There's so much that we all take for granted, that one day when you look back on ti all, youre going to really miss those @DATE1 days. Family time is so critical in anyone's life. Without a family, you're nothing. When did game night or family time disapear? Just because we're in a society that says computers are completely normal everyday thing in a house, doesn't mean you family and friends aren't a main priority to you anymore. If you want to hangout a friend's house, dont email about it, walk @CAPS2 there and get the full affect since when does a computer a family? Never. If we got out of a fake reality, @CAPS10 there wouldn't be negativity in our life. @CAPS10 you can regain a true life back with them. @CAPS10 you'd think more clearer just @CAPS10. Whats makes a computer any better than life? Nothing ask yourself that. So inconclusive, I strongly believe that with this in you lives we've actually get dumber. There's more negative than positives in having a computer. Sure you could quickly send them a message or like @CAPS9, but is it ever bad to do the good old fashion calling? Or sendin letter? I say again, thank you for taking out your time to read this. @CAPS10 i changed you, @CAPS10 not. Whatever you do, think about the next time you're online and see what happends. " 5 5 10 +206 1 "Dear local newspaper, I do agree that computers have impacted human society greatly. Therefore, my opinion is that is @MONTH1 be one of the greatest inventions. I would say this because there are different help programs or websites that @MONTH1 help people in everyday life. Especially students have the ability to study from education webpages. Also, people are able to communicate online. Lastly, you are able to type stories instead of hand-writing them. Having the advantage to study online is great. Different websites with tons of information and true facts @MONTH1 really affect grades of most students. Did you know about @PERCENT1 of the @LOCATION1 go on educational websites for information for writing, whether it's an essay or non-fiction story? Thanks to computers, there is a great chance students @MONTH1 receive a passing grade. Communication online has made huge impact worldwide. Whether you use facebook, @CAPS1, @ORGANIZATION1 etc., communicating with family or friends is fantastic. For example, I use facebook and I love talking to my family down in @LOCATION2, whom I see about once every couple years. Online communication has affected people because there is an easier way to talk to other instantly. Just a push of a button, and you have immediate communication with someone. Finally, people have the ability to type on a program if they wanted to type a letter or story. For instance, if you use microsoft word, you can type up whatever you want. This has effected people because it is a faster ans easier way to write. Therefore, if you finish earlier than you would have if you typed it, you would have extra leisure time, or more time to get the rest of your work done. Also, it is easy for me because I type like the wind; after practice, of course. In conclusion, the invention of computers helped and still do help society in many ways. But, the three ways that i have chosen to tell you about in this letter, I feel, have impacted us the most. I hope this helps you with you questions about how computers effected people. Thank you for taking time to read my letter. Have a good day." 5 5 10 +207 1 "Dear Local Newspaper, @CAPS1 a computer isn't harmful in any way. It helps people learn about things they didn't know. Also it lets people interact with people around the world. Another is that it lets people stay in touch with family and friends around the globe. Computers don't harm, they help. Computers are a learning tool. Schools like mine have over a hundred computers but they are only used for education. Anyway even if we try to go on different sites we get redirected to a blocked website. Cars and other machines were built by computers which supplied the blueprints. There is one thing computers are mostly used for, and thats to learn. Are you thinking about going on vacation somewhere but don't know how things work around there? Well a computer can help you with those promblems. It lets you see how people are and what the place looks like with a virtual tour. Even with some assistance if you don't know about traditions or beliefs. Computers are a great way to explore. Computers are a great way to communicate with others. Family members that live on the otherside of the world can use computers to talk and see how your doing. How about old friends that moved away. You can still talk and communicate with each other. Getting in touch with friends and family isn't all that bad is it? And these are reason to show how computers aren't harmful in anyway. It gives people a good education. It lets people learn about cultures of places around the world. And talking to friends is something thats good, not bad. This is why computers don't harm people, they help." 4 4 8 +208 1 "Dear newspaper editor, I have recently heard that some people think that computers have a negative effect on people. Well i think that computers have a positive effect on people. I think that computers have a positive effect on people because it helps make learning about other countries easier. Also, it helps people talk to people from different countries. Another reason is that it helps people learn about different cultures, religions, or traditions. The reason why some peope think that computers have a negative effect on people is because people are spending more time on the computer than spending time with their family. Also, people use the computer more than they use exercise machines, bicycles, or scooters. Now that you know about the positive and negative effects of computers, Which side will you choose? the one against computers or the one for computers. I would choose the one for computers." 3 3 6 +209 1 "Dear local newspaper editor, @CAPS1 opinion on the effects of computers on people is that staying on a computer is not that bad it does not rot you brain like video games. are some good reasons why computers are good and help you. Sometimes computers do help with hand-eye coordination. You use the computer to do homework or to search a a stores etc. Some computers are really slow but not all of the new ones for @DATE1, computers can also help you read better it has little . You could play talk to people like your friends. Listening to music is an easy thing to you could a website that has all songs that you like to listen yo many people use the computer to find jobs and use it to look for ways to eat right and work out paying bills online is easyer than paying them for real. The computer is easy way to pay and you should agree with @CAPS1 opinion." 3 3 6 +210 1 "Dear Newspaper, The question is whether or not people are spending too much time on the computer or not. In my opinion people arent, and there are many benefits from being on the computer. Typing in the computer teacher hand-eye coordination. It is easy to learn while on computer too, and you all communicate with people also! Handeye coordination is very important. We use it everyday during sports taking notes, even playing video games! Being on the computer is good because it develops hand-eye coordination. Whatever you do on the computer typing, playing online game, or surfing the web develop hand-eye coordination. It is good to learn hand-eye coordination because most teachers these days neat children to type and print their papers, so they are neater.If kids can learn hand-eye coordination, they can type faster turn then into their when go on there computer hand-eye coordination. My world cultures teacher lets us use an online textbook if we dont finished our homework in class, instead of logging around textbook. Any student would rather go online than have to bring a giant textbook to and from school. Have you ever thought about how much easier it is college course online. Then having to go to college especially for working parents? Everything happens online in you portable laptop, instead of having to go to and from a college. Using computer to learn about different places is easy. There are websites full of pictures of beautiful foreign places that hot deserts, and troppical rainfall of monkeys and tigers. It is fun and easy to learn on a computer. Since cell phones have become so a lot of people have gotten rid of thier home phone to save money. Sometimes, though cellphones lose signal. That is why it is good to have a computer. It is eat to talk to other people forums, chats websites and email. You can have intelligent,and its easy and free! It is east to communicate using a computer. Surely you've heard my reasons its okay for people to spend time on the computer you see my point. Yes people shall spend time outside or with family, in small does the computer good for you. It is easy to learn hand coordination and communicate on a computer." 4 5 9 +211 1 "Not everyone thinks computers are good for you but they are a very good resorce to find information. It's not good to be on the compoler @NUM1 seven but to be on sometimes is not bad. A person who is on the computer all day and does nothing else except that, then that is not healthy at all. People just have to limit their time on how much they stay on the computer. Dont over due it! Computers are also very good for information as I said earlier. If you have a computer or a laptop and you need to find information on something the internet is there. For kids that need to do homework or a project and they need to look up some facts or information on something they could go on the computer for that. It is so much easier to do that then look for books that has all the facts you need. So computers have very good qulities and resources. They arnt bad or unhealthy unless if that is your life and that is the only thing you do. That is my opinion on computers." 3 3 6 +212 1 "I think that people are spending a lot of time on there computers and not enjoying nature and things. My reasons are that people don't do anything except surf the web, talk to other people all the time, and they site around eating junk and no exercise. Those are my three reasons. My first reason is people do is surf the web. There is over a million websites to go to. What people do is go to all of them look at things or buy something. The only thing they should be doing is homework or buisness. Also people play to many video games on the computer too. My second reason is that people go on @CAPS1 or @CAPS2 or use web cams. Those people could be on there for hours talking to people. Sometime those things are peoples life and all they do. I know someone who has a @CAPS1 and after school all they do is talk to people. They have friends on @CAPS1 but no friends in real life. My third reason is when people do go on all they do is eat junk food and get no exercise. Sometimes they eat potato chips and cookies and have soda. If you do that for week you will be very tired and sleepy. Also you can get very fat. Your body will be unhealthy and out of shape. Now that you have read my reasons, I hope you like them. My reasons where people don't do anything but surf the web, talk to other people all the time, and people eat junk food and get no exercise." 3 4 7 +213 1 "Dear local newspaper, I just wanted to say that I do I agree with you that some people spend a lot of time on the computer. My reasons are that people need to exersize, go out doors. And have fun. If you keep reading you'll understand why they need to do theis things. My first reason was exersizeing. And the reason why I say exersizeing is because you don't need to be on the computer all day long. So many things that they can do, is run, jog, and go for bike rides. I mean it's ok to go on the computer once and a while to learn but that's why they have books, and school to learn about things. My second reason was going out-side and the reason for that is because people need to get fresh air and not be locked inside all day. Another one was to explore and go on a hike to see what is out there and just have a good time. My other reason was nature. And what I mean by that is you can go to the zoo and learn about stuff there to. Another thing is that you can do much more with out being on the computer all day long. My last reason was you can talk to your friend about stuff, you can go to the mall all day, you can also hang out with your friend and have a sleep over and watch movies. You don't need to stay on the computer all day you need to have fun. This is why I say you don't need to be on the computer. You can do other stuff and still learn with-out being on the computer. For once maby insed of talking online you can actultly go to your friends house and talk. Thank you for your time. Hope to talk to you soon." 4 4 8 +214 1 "Dear @ORGANIZATION1, @CAPS1 your at home and you are on the computer. But its been hours maybe even days since you've takin a breath of fresh air outside. This @MONTH1 sound cpzy, yet it is a reality for over <@PERCENT1@NUM1> of the population in @LOCATION1. Just loo around they are in movies, chain resurant at your home, in your office and even in schoold; computers are everywhere. I know that because of over using computers amny experts are concerned that people are spending too much time on their computers and less time exercising and enjoying nature, and interacting with family and friends, I say that because of this peopel every where shold only be allowed to use the computer on a rain everday, say @CAPS2 to computers. My point is with computers our days are wasted with vertual games and other downloads. For starter, people are spending too much time on their computers and less time exercising. Over the past two years obeseity has become a major issue in @LOCATION1 with over @PERCENT1 of the population obeseity causesan ectreamly higher risk of getting diseases and sickness like diabeaties, heart failure and even depression. recently my cousin passed away from canser caused by her fat or obeseity. My point is we can't sit her doing nothing get up and get moving away from that computer in addition to this people should get off computers and start enjoying nature. A total of <@PERCENT1@NUM2> of personals in @LOCATION1 don't spend enough time out side. With global warning killing our environment people would care enouhg to psend a little girl of their time outside. didi you know that more and more of the environment is disappering each day? I went to my good friends and expert on all things envieronmental from the instate of clean our world or cow. " 4 4 8 +215 1 "Dear @ORGANIZATION2, I am expressing my concern to you about the side effect new technologies, such as computers have an humans. Computers impact humans in a harmful manner because people are spending too much @ORGANIZATION1 their quality time on their computers which additionally leads to less time spent doing exercise. People also do not get to spend as much as their days outdoors and interacting with friends and family. Firstly, people are spending too much @ORGANIZATION1 their time surfing the net. Study show that an average @CAPS1 spends in total @NUM1 hours a day on the computer, almost double what they should be spending on it. Dr. @DR1 from the @CAPS1 technology society, says' that if this increases @ORGANIZATION1 time spent on the internet, continues for more years, most @CAPS3 will completly lose contact with family and friends outside @ORGANIZATION1 the social computer network. The average weight @ORGANIZATION1 a @NUM2 year old has increased from @NUM3 pounds in @DATE1, to @NUM4 pounds today. Statistics show that the main caus for this dramatic increase in weight is due to the acessive amount @ORGANIZATION1 time spent on computers in addition @CAPS4 do not have as much time to exercise. Teenagers need to exercise three times a week for thirty minutes each. @CAPS5 the average adolescent only spend ten minutes a week exercising not including gym. All @ORGANIZATION1 these numbers must change and a way to start would be losing the computer because people are spending too much time on them and less time exercising. Secondly, comuters are effecting the people get to go outside and enjoy nature. Form my personal experience nature is a beautiful thing to be apart @ORGANIZATION1 @CAPS5 now adays I spend way too much time on social networks such as facebook, my space and @CAPS6 others. How often do you go outside to take a walk, fo for a bike ride or something else? A study done by @PERSON2 shows that the average person living in @LOCATION1 have only spent a total @ORGANIZATION1 @NUM5 days outside in the past two years after reciving their new computer. This must change people need to enjoy what this world has to offer. Thirdly, computers have effected the interaction between family and friends. ""@CAPS6 people hav only been interacting with family at mandatory times such as school meetings."" says @ORGANIZATION1. Family and friends are a major importance in everyones lives. I love to sit down and talk with my mom over a steaming cup @ORGANIZATION1 hot chocolate. @PERCENT1 @ORGANIZATION1 people now a days do not spend anytime with family and @PERCENT2 @ORGANIZATION1 people use computers to interact with friends. It is vitally important that people stop using computers because ""before you know it you will have lost all communication with family and friends"" says @PERSON1 from I.U.M Computers help people lose communication and interaction with fmily and friends. In conclusion, I urge you to make the right desion by quitting using computers and in return will be a much happier and stronger individual. Computers impact humans in a terrible way because people spend too much time on them leading to a lack in exercise, time spent outside and in addition interaction between friends and family. Sorry about the lack @ORGANIZATION1 organization towards the end, I ran out @ORGANIZATION1 space. Please excuse the mess. Thank you." 5 5 10 +216 1 "Dear @CAPS1 @CAPS2, I'm writing you today so you can see why advanced technology is a positive effect on people. My reasons for wrint this is because computers allow people to talk online to others people learn about faraway places, and finally it teacher hand-eye coordination. As you read my letter I hope you fell the same way. First of all computers allow you to talk to other people online. The reason I feel this way is what if you can't fond your fone in your hose or even your cell phone, you could see if they were online. Also its the same thing as texting, but with a bigger keyboard/screen I can relate to this because I was texting someone and went online to find whtm on too, so we sent aims to each other instead. I hope you can see why computers can be good for people. Secondly not a lot of people will go to the library to look up information for a paper for a school. The reason I feel this way is a computer has google to make finding things easier. Another reason is going to the library @MONTH1 cause you send more money to fill up your gas tanks. I can relate this because everytim my family goes to the library we have to fill the car up after we go. This is another reasons why computers a good. Finally the computers can teach hand-eye coordination. The reason for this is because if your writing an email then you should know the keys that your fingers touch. Another reasons why computers are hand-eye coordination is because if your kid take karayta then might have learned to move there hands that fast from somewhere. I can relate ti this because when I was in the first grade there was a guy that you told me and my friends that be need us to get in the truck to help him find his lost puppy, and he tried grabbing me but I pulled my hard away before I became pinned. I hope you can see why we need computers. I would like to that the I for sitting and reading my essay. Once again my reasons for writing where people can talk to other people online, learn about faraway places, and finally hand-eye coordination. I hpoe you will rethink why we should have computers in school." 4 4 8 +217 1 "Dear Local Newspaper, I agree that computers have a positive effect on people. You learn hand - eye coordination, you don't have to step out to go to the library and it can improve social skills. Continue reading to find out why. Computers, we use them everyday. They are teaching us something. We @MONTH1 not even realize it, but they are teaching us hand-eye coordination. We type something and we use our eyes to look at the screen and then our hands to type, one mistake and automatically our hand fix it. Or maybe when we are playing games online, the same thing applies. Our eyes are looking, while our hands are fast at work over the keyboard. Hand-eye Coordination is a skill you need on sports, and I believe that computers, since we spend time on them are the quick way to learn that skill. Next, how many student's parents work? My parents do. Something it becomes difficult to walk to the library, not everyone lives in walking distance to one. That's when a computer helps. If you have a project to do, but your parents work, you can just @ORGANIZATION1 it up, you might even get more information, then what you can get in the library. Hows that? you ask. Well, for an example, @CAPS1 you had to do a project on @CAPS2. Let's just say, you managed to go to a library, but apparently there were only @NUM1 books on @CAPS2, out of which @NUM2 were checked out. You can always check it out from another library, but that might not come soon enough, on a survey @PERCENT1 of students said this has happened to them, but the computer saved them. So what else did they say? HELLO @ORGANIZATION1! Last but not least, a computer improves your social skils. When I first moved here I was a very shy person. When I made a @CAPS3, I @CAPS4 talking to people who go to my school. I even became friends with them. I'm not saying that you should just stop talking to people in person, and use @CAPS3, @CAPS6, @CAPS7, or @CAPS8 and communicate. @CAPS9 I am saying is that if you start talking to them online, you know them a little, then when you talk in person you will see you have alot in common, with that person, and soon you can become friends. Another thing, that is somewhat related to this. I have many friends living in @LOCATION1, and many cousins in @LOCATION3, @LOCATION2, @CAPS9 over. We @CAPS9 know, you can't travel @CAPS9 the time, sometimes you can't even get to see them. Thats @CAPS10 social networks help. You can keep in touch, plus @CAPS11.S. not even waste minutes on you phone. Can it get better? In conclusion, Computers have a very positive effect on people. From improving hand-eye coordination, to not stepping out to go to the library, and getting that project done in time with a A+ as a grade, to improving your socia skills. Even see the data collected. Thank you for taking your time and effort to read this, I hope it has persuaded many people." 5 5 10 +218 1 "@ORGANIZATION1, @CAPS1 you @CAPS2 want your kids & citizens to get fat and lazy? Or be active, learn everyday skills and become more friendly to life people around you? @PERCENT1 of parents would agree with me on the second idea over the first one. Well I think after reading this those extra @PERCENT2 will be persuaded. Now a days @NUM1 out of @NUM2 people are over weight or obese. This can be causes by lack of exercise and inactivity. Our children need to learn @CAPS1 go out and exercise an hour a day. This could got their eyes off the computer screen. A great way to help encourage to join a sports team or a club. This can work to people away from screens and the @ORGANIZATION2 course. If we can get people out of the office this could even push them towards nature. Their are great things to @CAPS1 at the local park every day. For example you could ride a bike play games or just fool around with friends. Learning could also be a big faster in getting people out of their computer chairs. If they want to look up tell them to use dictionary, theasaurus or a book. If people on the computer but it can be teach kids and drugs. Bt @CAPS1 help find carrer options and life. sitting on front of a screen can your health and also. Their are better things to @CAPS1. Instead via internet. You can still have fun if you not good at just for instance and friends. If your a boy you could just go @CAPS1 like a park and pay carrer base bill or even wrestle. In conclusion I'd say this would want to get up and get outside. Since geting p and side could help you socialize and learn and even loose weight. So now I leave it in the hands of you whether or not to take the challenge. But just to fill you if you stay your computer it can promote the need for glasses obesity." 4 4 8 +219 1 "Dear Newspaper, @CAPS1 has lately come to my attention that people were saying that computers aren't important. Well, I strongly disagree with that statement. I think computers teach excellent hand eye coordination, give people the ability to learn about far away places, and even allow you to chat online with family and friends. Computers teach a lot of hand eye coordination. Study's show that @PERCENT1 of all football players have excellent hand eye coordination. I'm sure this is because after the football players get home from a big game or something they log into @CAPS2 and make thier status all about thier win. Plus, they probably pull up pingball and see how long they can go without getting the little ball down the hole. Do you have good hand eye coordination? My second reason that I disagree with the previous statement would have to be that computers give people the ability to learn about far away places without ever leaving home I mean @CAPS1 is so much faster than having to go to the library. At the library you would have to first get there, secend pick out your book, and third check @CAPS1 out. with a computer in all that time you could be completely finished with you whole project! Finally, the reason why computers are so important is because @CAPS1 keeps people in touch. Do you have family members who live far away from you? I @CAPS3 I do. I can't always call them on the phone @CAPS4 I want to talk to them so I just log on to @CAPS2 and if there online I can have my conversation with that person. I don't @CAPS3 about you but I'm really close to my grandma. Unfortanitly she doesn't even live anywhere close to @NUM1 hours to me. She's way down @LOCATION2 in @LOCATION1. By car thats one and a half days and by plane thats three hours! So @CAPS1's so much easier to log on @CAPS2 and have a private conversation with her rather than driving a day and a half or flying for three hours. So in conclusion I'm sure you totally agree with me. Computers are just amazing! They help you get hand eye coordination, let you research something super quick, and let you stay in touch with far away friends and family." 4 5 9 +220 1 "Dear @ORGANIZATION1, @CAPS1 being at home with nothing to do. You cant play basketball with @PERSON1 you friends because you have did hand eye cordenation. You want to learn about @LOCATION1, but there arnt any books. And you want to talk to your friends. Thats what would have happend if we dident have advances in technology. No handeye cordenation, we wouldent be able to learn about far way places and we coudent online. Ccomputers benifit our lives in so many ways. To begin with, hand eye cordenation is very important. Without @CAPS5 we woudent be able to ware or even hold a pensil. @PERCENT1 of peoples hand eye cordenation has emproved when using a computer. That was proven in a @DATE1 say a @CAPS2 by @PERSON2, head of human reactions. @CAPS3 knows that your hands are the most oversized part of you body, the computer help down the movements to hone hand eye cordenation. @PERSON1 said that in a @DATE2 interview with sience magaziene. When you are clumsy you break things. Importan things sumtimes, like @PERSON3 in @LOCATION2 broke her mothers glass vase. @CAPS5 could have been helped if she had used a computer. In addition, computers give us the power to learn about faraway places. No books! @PERCENT2 of people prefer looking up information on a computer than in a book. @CAPS5s a fact. Some people wouldent have heard about the earthquake in @LOCATION3 if @CAPS5 wasent for the websights that brodcasted updates on @CAPS5. Campers weudent have heard. In @ORGANIZATION2 had a front page spread to promote the use of computers instead of books. Books could be outdated but the computer will always have uptodate answers. Also, people need to be able to talk online. Bisness meetings, governments plans, to just chatting with a friend. People need to be able to stay in tuch. If the presedent couldent vidio conference he would be flying everyware. Emale is the only way @PERSON5 from @CAPS4 talks to her coworkers. I just am located so far away, its so much easier. @CAPS5 makes bissnesses and major incoperations flow.@CAPS6 is now the only way kids talk @CAPS5 seems. @PERSON4 says. @CAPS5 lets them feel like there a part of somthing biger then they are. Now, @CAPS1 happy, healthy, and educated young and old amaricans. They can do and research whatever they want. Its amazing what technology does. @CAPS5 alows you to talk online research faraway places, and practice your handeye cordenation. That sounds like a good thing to me! So @ORGANIZATION1, computeristic fist are only good. So agree with me @ORGANIZATION1!" 5 5 10 +221 1 "Some people @MONTH1 think that computers take up too much time for the important things. But really everything you would like to know is right there. You can learn about nature, cool websites even history. Here are my reasons on the effect on computers. First, you can learn so much about nature online. You can view many types of animals and study them. Learn about plant and the effect they have on life. Also, you can learn about many things on @LOCATION1 and how its changing. Secondly, there are many coll websites you can join. Theres games you can play to keep you occupied during the day. You can even chat online with friends or maybe find long lost friends. School sites are available for students of some studying or help. Lastly, computers show you so much about history. People who things and world famous people from back then compared to famous people now. Most important of all, the life changing story about and how it changes peoples life today. I hope I've you enough to agree with me. As you can see computers have many resources you can learn from learning websites and history arent even half of them. Think about! Thank you for listening" 3 3 6 +222 1 "Computers and the @CAPS1 have changed the way the world works today. From stocks to instant messaging (@CAPS2) people have based important decisions in their life based on what they have read. Although some people believe that computers are pulling people away from the beauty of nature, relatives, or exersize. I believe that @CAPS11 is only helping the world on a day today basis. One example is conversation, many people have close relatives that but over seas, cross country, or even across town. The @CAPS1 helps them speak to others that they normally couldn't have a conversation with. On several occasions, my family have planned trips together even though we live across the continent. What could have taken months by letters in the mail took as little as one hour to do over the @CAPS1. Another way to speak to friends or family is a website called @CAPS3. @CAPS3 is a website that allows you to speak to, @CAPS6 or send pictures to others. Other websites like this are @CAPS4 and @CAPS5 @PERCENT1 of people in @LOCATION1 have an account on one of these websites. One other way to speak to others, more for business reason, is @CAPS6. Multiple servers proud @CAPS6. such as @ORGANIZATION3, @ORGANIZATION2, or @CAPS8. ""@ORGANIZATION3 is my personal favorite' says @PERSON2 @CAPS9 of the @LOCATION2 @CAPS10 newspaper, ""@CAPS11 has helped me endlessly if need to contact someone on short notice."" That is one reason why I support the use of computers. Another reason I support the use of computers is because <@PERCENT1@NUM1> of all students rely on the @CAPS1 for research papers and other assignments. ""Even though I still use books,"" college student, @PERSON1 said.""The @CAPS1 is so much faster and the articles are more up to date. Search @CAPS13 are most popularly used, such as @ORGANIZATION1 or @CAPS14.com @NUM2, of all computer users with @CAPS1 access have @ORGANIZATION1 at some paint. Another handy program provided by all computer companies is @CAPS15 @CAPS16. This program is used from everything to research papers to. This program also has a spell check, a punctuation check, and a check for mistakes. The main reason I am writing this paper is because experts have been complain that people have been spending too much time on the computer and @CAPS11 has been distracting them from the important things in life. Such as friends, family, and nature. However, from the examples explained in this paper, I have shown that the @CAPS1 increases conversation and curiosity of how the world looks and operates. As for exersise, @CAPS11 is commonsense to spend as little as one hour working on personal fitness." 5 4 9 +223 1 "Dear @LOCATION1, I think the way how more and more people use computers are bad because, @NUM1 int's not good for people's health, @NUM2 people who use computers lots of times, refuse to spend time with family and friends and @NUM3 you can find more about something that's on a computer by going and studying it yourself. My first reason why computers have bad effects on people who use computers, is the health issue. Health in very important but sitting in front of a computer for hours makes matters worst. By the way you hunch your back in order to see something small on the computer creen, or when you hold on the mouse, waiting to click onm something for long period of time, can cause arthrities. My second reason why computers have bad effects on people who use them. Are that people who are on computers & end to sometimes refuse to spend time with family or friends like for example: @CAPS1 say a week ago you made a promise to have a family get together with the family, and they all count on you to come, @CAPS2 you get a computers, you go on all these neat websites that you never heard off it's amazing right! WRONG! before you know if, it's the day for the family get together and your line an hour @CAPS4 you amke excuse not to come. And that breaks you family's heat....My last reason why, to me computers are a bad idea is you can learn about another the computer by going on to a But its ore fun traveling or meeting people from that place @CAPS2 setting in a for and having your neck, back and sore @CAPS3 I right, I think I @CAPS3. Also idsfun to and ear foods from the culture that you fing cool off that lame computers.(To me that sounds like a good time to invite family and friends!) @CAPS4 therefore in conclusion, in my personal opinion computers have bad effects of people health, it can cause later bacj and neck problems maybe even activities. People who use computers a lot or love to spend time on computers refuse to spend time with family and friends, and @NUM3 You can find more about something like a culture or land, if you go and study its yourself instead of going on a computers for hours. I hope my opinion convinces others, hoe computers have bad effects on people who use it a lott, and take action into their own hands and do what is right." 4 4 8 +224 1 "@ORGANIZATION1, Computers have great effects that are positive towards people. This is @CAPS3 it teaches hand eye cordanation, allows people to learn about far away places, and to talk to other people online. Computers have great positive effects for everyone. Computers teach hand eye cordanation. When a person is typing they are using their hands to type while looking at the monitor for the letters. Computer games help to teach this @CAPS3 in the game things happen very quickly so the person has to ee whats going on and click the correct key fast thus improving hand eye @CAPS1 greatly. Studys do show that people who use computers have a @PERCENT1 better hand eye @CAPS1 then some one who dosen't. Coumputers help hand eye @CAPS1 and they can teach you about far away places. Someone can learn about far away places by searching it up online. They will get many facts about that place. Sheral from @LOCATION4 said "I heard some one at school mention @LOCATION2 and didn't know a thing about it so I searched it and got a ton of facts." This shows the computer can help someone learn about foiren countrys and they can talk to people far away. Using the computer soemone could talk to you while your hundreds or thousands of miles away. Tehy can do this through e-mail of video chat. a @CAPS2 showed that seven out of ten people prefer video chat @CAPS3 its faster and the two people can see each other. However either way they are still fast ways to contact a person far away. Jack from @LOCATION1 said "@CAPS3 of video chat I was able to talk to and see my cousin from @LOCATION3 who I almost never see. This gos to show that the computer is a positive thing for people. The computer is helpful in so many ways it teaches hand eye cordniation, it allows people to learn about far away places and it allows for people to talk to other people. Computers are a great thing for everyone." 4 4 8 +225 1 "Computers, @CAPS1 how far we've come. Computers hold many opertunities for the world and we don't use any of them. Computers have taken many and left them without excersize. Computers fasinate many and can become very adicting if not used only in moderation. Computers are also attention hogs and take away interaction with family. Imagine seven years of your life sitting in front of a computer. You never get up unless you absolutely need to. You even decide to cut the sports from your life. Now imagine what that does to your body. Even if you ate right, the never excersising part woudl kill you. I remember I was at my cousin @PERSON2's house when she sugested to play the game @CAPS2 fit. If you have never played this before, when you sign in, it does some tests and determines the age of your body. My body was @NUM1 years old. I was a @NUM2 years old in a @NUM1 year old body. All those years gone in front of the computer. I don't want that experience to happen to anouther. Don't make the same mistake as me readers of the @LOCATION1 current. I have a friend name @PERSON1, and she is a computer addict. She would spend days on end on the computer. Sometimes she'd miss school for the computer or come to school just to play on the computer. She'd sometimes get violent when someone tried to pull her away. I hated seeing my friend like this, but mostly I hated how I watched it happen. It started off innocent enough. She enjoyed a certain website on the internet. It would sometimes get scary when she talked to me about it and clearly had played it all night. If you are looking at this story and thinking that would never happen to me, your wrong. I was thinking the same way when I took a look at that website that got her started. Thankfully, I stoped my addiction before it got to serious, but many others like @PERSON1 could and will be absorbed by the computers. Many readers reading this right now, should understand how dangerous and read this is, ""@CAPS3!.... @CAPS3!... I'm talking to you!"" That is the sound of your family members trying to talk to you when your on the computer. It doesn't work, computers are so attention grabbing, you can't even stand to talk to your own family. My mom does this many times a day to grab my attention and ends up calling my cell phone or I.ming me. Thats really just sad. By doing this you also become detatched which is never a good thing. The more and more you ignore your family for the computer the less of a bond you'll have, the less of a life you'll have. Computers truly are amazing, but the loss of excersise is very unhealthy and rapidly happening. Computers can also be dangerous, many people will get addicted. The more you chat on chat room to strangers, the less you will talk to your family. Computers are the devils tools. They will most certainly destroy you, readers. Alway be careful, computers are not as they seem." 6 6 12 +226 1 "Dear @CAPS1, @CAPS2 out of ten people spend their time on the computers. I believe people should not spend @CAPS3 much time on their computers because it can hurt their eyes. They @MONTH1 watch inappropriate videos or pictures. Lastly, their bills will get higher. Did you know a lot of people spend their time on the computers? Well I think they should not be sitting on their damage their eyes. When you sit and watch computer your eyes starts to hurt. Then when you go to check your eyes, the doctor will probably give a glasses. My second reason is that people go to inappropriate sites and watch inappropriate videos. One time my friend was sitting in the computer and she started to watch inappropriate videos @CAPS3 when her father found out about this, he canceled their internet. Can you imagine the high bills you would get? Why pay too much money for spending @CAPS3 much time in the computer, when you can turn off the computer and spend some time with your friends. For example, instead of sitting on the computer @CAPS3 much, go outside and play soccer, kickball and more. In conclusion, people should stop spendinding @CAPS3 much time on the computers. Computers can hurt your eyes if you sit too much. People @MONTH1 watch inappropriate videos. Also your bills will get higher. It seems to me that people need different activities to get them off the computers. I hope you are agree with my ideas. " 4 4 8 +227 1 "Dear local newspaper, I think that computers are a good thing to have for the following three reasons. First, they help people learn by looking up information on different places. Second, the help people talk to friends and family using @CAPS2. Lastly they help people become less stressed by playing computers games. Learning is important and with computers, you're able to learn faster. Computers help you learn about faraway places like @LOCATION1. It is much easier to learn on the computer than to go to the library and check out a book. If you're working on a project and you needed some last minute information, you could just go to the computer and search you're topic. Learning on a computer is much more convenvent then going to the @CAPS1. Another reason computers are good is because you can talk to friends and family who are far away using something called @CAPS2. @CAPS2 allows someone to talk to another person using the computer. These people could live just down the block or half-way accrose the world. My cousin is living in spain for a semester in college. I've skped with her many times. The cool thing about @CAPS2 is that you can acctually see the person you're talking to on the computer screen. @CAPS2 is a great way to keep in touch with family and friends who are faraway. My last reason is that computers help lower your stress level by playing games. Computer games are alot of fun to play. They have games that range from @CAPS3 @CAPS4 the word, to @CAPS5 @CAPS6 beauty barn. Computer games are a great way to lower your stress because instead of piking your self up with to much work, you'll be calming your selfdown with computer games. They also gave educational games. like, Which country is which. This game teaches you geoagrahy while you have fun. Computers are a great thing to have. They help you learn about faraway places, talk to people who live faraway and play fun computer games. Computers are always going to be used and never put to waste. Theres always something you can do when you go on a computer." 5 4 9 +228 1 "Dear people from the newspaper, I am concerned that people take too much time on the computer because it could cause trouble, voilence, & illegal crimes. First, I am concerned that people spend too much time on the computer because it couses trouble, in @DATE2, @PERCENT1 @DATE1 people in the @LOCATION1, do bad stuff like starting rumors, & saying bad stuff about people they dispise, in the @DATE1, @PERCENT2 @DATE1 teens form ages @NUM1 were envolven with the rumor spreading. This would be bad for all children. All these reasons will lead to the @NUM2 below. Secondly, I am concerned that people spend too much time on the computer because it couses voilence, because @DATE1 the reasons started in the @NUM3 paragraph, if all this continues, then it @MONTH1 & lead to voilence, in @DATE1 @NUM4 people died from all the crimes online. @NUM5 threats were found online from big websites like @CAPS1, @CAPS2 & @CAPS3. Lastly, I am concerned that people spend too much time on the computer because it could lead to illegal crimes, In @DATE3 a girl was talking to a boy online then when they decided to meet, he shot & killed her. It turned out he was just a person who lied about who he was online, @CAPS4 on a website online, a group @DATE1 men were talking about now much they hated kids so they decided to shot them @ their bus stops. Thank god that the police caught them before they were to do the crime In conclusion, I am concenred that people are spending too much time on the computer because it causes trouble, voilence, & illegal crimes. This @CAPS5 like totally needs to stop before everyone is addicted to spreading rumors. Thank you for your time in reading this letter" 4 4 8 +229 1 "Dear Readers, Everyone now-a-days has a computer. This could be a good thing but mostly its unnatral. People can now do things they couldn't do before; when people move they don't need to send letters to one another, and have to wait days for a reply. Now they just sign into aim, facebook, or myspace. Then they can talk in time. But thats only the good things here are the bad. People spend less time outside they don't look at any of the butey anymore. We don't spend time with our friends any more. I can't even remember the last time I had a face to face convetation with soemone if I didn't have to. People on the internet can do anything they want. You @MONTH1 be saying thats a good thing. Right? Well the answer is no! People can hack into almost everything. People can cyber bully others with out any one ever knowing who the other person is. People can also be any one they want online. Say if I was @NUM1 and I wanted to stalk so little @NUM2 years old I could also pretend that I was ten and pretend make friends with the ten year old. When I found out enough information I would then be able to find the ten year old. Before people wern't able to do this. If people start to see what is heppening with our exsistence the more people would stop being stached @NUM3 to their computers. People would start to cut down on the amount of time they spend on their computers and start to live. Take action! Take notice! Start spreding the word!" 4 4 8 +230 1 "Dear @CAPS1, @CAPS2 would you want to do in your spare time? Would you go outside and maybe @CAPS3 the soccer ball around with your kids, or grab a bag of chips and log onto facebook or your email? The question is, do computers have a negative or positive effect on people. I believe that computers have a negative effect. Talking to friends on the computer doesn't let you learn social skills. Going on the computer can also be very addicting. Finally, it take's away from all the exercise you need. I @CAPS4 that after careful consideration you will agree with me that computers have a negative effect on people. Facebook, ichat and email are all fun and easy ways to talk to your friends and family online. However, are you really gaining any social skills by doing this? Talking to friends and family online doesn't help you have good social skills. When you first meet someone in person, you most likely want to @CAPS4 @CAPS2 to say and how to act. Typing on a keyboard doesn't really let you interact with people. @CAPS6 not invite someone over, or go out to lunch with your family istead? Computers also are very addicting. I can say for myself that once I log onto the computer, I might not be off for the next hours. This is the case for many other people too. Going on the computer is addicting. Il @CAPS4 that not everyone is using a computer on a daily basis the vast majority of people are. When I'm on facebook and I see the number of people online is one hundred or even two hundred, as time goes by, the number increases. The computer being addicting leads to getting enough exercise. Doctors say that adults and kids should get atleast an hour of exercise a day. Going on the computer takes away from this time. Instead of sitting on the computer for an hour, you could be getting your hour of exercise. instead A lot of times when someone @CAPS5 down at the computer, a snack goes with them. This just adds onto the fact @CAPS6 getting the exercise is important to stay healthy. I @CAPS4 that I would feel a lot better if I went for a run instead of going on the computer. You are probably saying that you have time to manage both, but some people would rather exercise. When these people see you on the computer, @CAPS2 kind of example does it set? If everyone limited their time on the computer we would all feel a lot better and be more social. I trust that you will agree with me that computers have a negative effect on people." 5 4 9 +231 1 "Dear @CAPS1, @CAPS2 people find the clicking and clacking of computers a nuscense. What they don't realize is thay are helping the youths lives and making them easier and they could be doing the same for them. This is why computers have a very good effect on people. First off computers arn't a bad thing if they are just helping people get to know each other better. You always see ad's for dating websites and other things like that. Did you know that @PERCENT1 of couples meet online. Thats a lot and to think they would have never if it wern't for computers. Second of all computers provide a tremendous amount of entertainment. There are over @NUM1 on computer games online. @CAPS2 of them are free too. I bet almost every kids has played a game on the internet before. Think about it your child could be out getting in trouble or be nice and safe at home playing on the computer. You are probably thinking, computers sound so childish and infantile. Well computers arn't just fun and games. They provide a lot of information. They are very useful for teens in school for projects, but they benefit adults in many ways too. It provides information on vacations, hotels, ext. Also computers now have videos all over on how to do things like how to and other useful information. So as you can see computers arn't just a pain. They help bring people together, provide entertainment and have very useful information. Think about it. A computer might save your life one day. Computers help peoples every day lives and they could be helping yours." 4 4 8 +232 1 "Lately, a technology buzz has hit all over the world. Where ever you look, be it at home, at school, at work, or on the streets, you see people texting, talking on phones, blogging, and other computer related things. This concerns some people. They believe that these generations are relying too much on computers and not spending enough time exercising outside or socializing. But here is where they go wrong. These experts are judging computers too harshly, for it's not like everyone is zoning out in front of a glass screen, sucked into the world beyond. @CAPS9, most of these ""computer geeks"" are using the computer for useful things, while they are also used for entertainment, computers also help society to reconnect with long-lost friends or even get directions to a well-know resuraunt. As you can plainly see, computers are not turning us all into zombies. Computers are sometimes seen as a nusence. Parents complain about the many times they have to drag their sons and daughters from the screen for dinner or a soccer game that started @NUM1 minutes ago. But you see, this doesn't mean its bad. Everyone goes on the computer. ""Even though my father complains that I'm on @CAPS1 too much,"" @PERSON1, @ORGANIZATION1, says. ""@CAPS2 forgets that @CAPS2 has one of his own."" This is an example not unlike many other student's parents. About @PERCENT1 of adults confess that they too have fallen into the new fads such as @CAPS1, @CAPS4, and @CAPS5. So why do we need these things? What seems to make them so important to us? The answer is simple, it makes us feel connected. Then again, if you think about it, maybe not so simple. Many people have different opinions on why the computer is so important to them, but most agree that friends is one big factor. ""Everyone is already online."" @PERSON2, computer technician, informs. ""@CAPS6 all your friends are in something, wouldn't you want to as well?"" @CAPS7, as the famous saying, @CAPS8 your friends jumped off a bridge, would you?, flashes through your mind let me answer that for you - @CAPS9. Being connected and diving off the deep ends are too different concepts. As you find friends from highschool or just friends from school, your glad that @CAPS7 you can talk to them face to face - or computer screen to computer screen - again. Last, but certainly not least, the computer is a great resource. While some people complain, others are using what it has to offer by looking up directions to events or facts for your next report. This is how websites like @ORGANIZATION2 make billions from the words being typed into the search engine. The facts and places that arise from the computr are like gems waiting to be found. In conclusion, its easy to see why the computer and its resources are so loved. Everyone uses it for different things and different hobbies. Whilesome for pure entertainment, others for information, and another for reconnection. My personal favorite finiding the true treasure of hidden bands, the fantastic ones, that @CAPS9 one even knows. And so, this is why I'm convinced the computer is a positive impact on the world." 6 6 12 +233 1 "Dier: newspaper I thingk the computers are beneficial and consequencial. Computers are beneficial because thy entertainment, inforormational and super yousfall., I injoy all the cool vidio on youtud while older pepole mite wash the news. You can also send mail, it is most semplr. Then sanding a ordnery envelope. Wating for days or even weeks depnding were you live but wegth e-mail it can get ther in a mater of secons, big deforents right. Pepol who depend on computers can uploud inpotan informashon all the pepol on palands of the poles and army yous the internet on there computers to control speshol equenent like @CAPS1.A.V. for the army or everiday monrting sestoms for a policeofficer. I mayself yous a computer to resrech school slot like math and history but computer all arnt good pepole abyous it. Some pepol can hack in to other computers and steel importen information and make your life misardol it can effact your haus onlin players spend countless howsr playing it can mak you game wat, stend les time weth your frend and fameli thy play so offen ther eight weekends and required glasses, computers my complateley replace newsepaper." 4 3 7 +234 1 "Many people think that computers are not a good thing. They think people spend to much time on the computer and are getting less exercise. They are also concerned that looking at the screen could be damaging to your eyes. Those statements maybe true. I believe that computers are beneficial. You can talk to people from other places. You could learn about other places in the world. You can also use the computer to research topics. first off, on the computer you can talk to people. Whether it on a webcam or one of those networks to @LOCATION1 and chat with each other. On the computer you can chat and talk with people without having to be on the phone and paying a bill for it. For example, I have family in another country and one way we always talk is on the computer. We talk on webcam and chat. Calling someone from another country on the phone gets really expensive. If I didn't have a computer then I would not have that great of contact with @CAPS2 family from another country. In addition, You can use the computer to look at foreign countries. Many people including @CAPS2 parents have used the computer to look and read into about other countries. @CAPS2 mother, whenever @CAPS1 plans a vacation, looks up the country we are going to and gets more information about it. Like @DATE1 we went to a hot exotic place, @CAPS2 mom looked it up to see what we should pack to go there. If it weren't for the computer we might have packed the wrong items. Lastly, computers are a great source for researching. I can't tell you how many times I have used the computer to research. Books and encyclopedias are great sources but the computer has so much to offer. You have so many links you can go to and sites. You can find pictures, videos, maps, and much more. I have used the computer many times to research, sometimes its a requirement to have a few sites you have gone on to research for your project in school or something. If you have a computer at home you can build up your computer skills for school. Computers are a more positive thing than negative. You can talk to people without the expensive phone bill. You can learn about other places and cultures. Also, you can use it for researching purposes. Computers @CAPS3!" 4 4 8 +235 1 "To whom it @MONTH1 concern, I feel that computers are a great in most people lives. One you can use them for almost everything. two computers are good for you in many ways. It shouldnt affect dailey schedule or just being with your family. People can use computers for almost everything for one their are hundred of websites on the computer. For example, you can play games all different kinds, you can also chat with people, litsen to music, watch videos, look for places and a whole lot more. Computers are very useful in many different ways. Computers are also good for you. They help with you eye cordination. You can also go online and do practice on math, social studies, etc. The internet also has a lot of eduacting games whiten is good for people who had that extra help. It also helps you with you hand cordinations because on the computer you need to know how to type. you get realy good at it you can type without looking. A computer can not get between you dailey schedule or whay u do with your family. Because a computer is a computer you go on it if you need something or you go on it just for fun for example i havea computer at my house and someone goes on it everyday and it never affect what everybody does us kids still go to school my parents still go to work, we eat dinner together we do what we have to do, and the computer never gets in the way. As my conclusion i know that computers are good to have in peoples houses. One you can use them for almost everything. Two computers are good for you. Three i shouldnt affect your daily schedule in anyway." 3 4 7 +236 1 "Dear newspaper people I think computers are good because wat if I have a family member that gose out of town and you want to stay in tuch and I dont have a phone then I can go-on a chatting web sight and stay in with them. When @CAPS1 bored I go on google to look up and pichers and play some games. You can look up one think and find something elsa, but it will cech your eyes. Computers are good were ever you go, it can look up for a project for school. Bur ween you are in school it can help you with spelling, and if u got to know wat contrey has the most people the @CAPS2 will find the ancer as fast as a snap. Computers are advanceing every year. Seart the @CAPS2 was just a screan and a mouse, now we got laptops that you can tack every were. People can get exercis if thay want and thay can enjoy nature thay can bring a laptop. But when you are exercising then you can go right to youtube and lison to some musick and wach funny videos. And thats whay I think computers are good." 3 3 6 +237 1 "Dear @CAPS1 @CAPS2 @CAPS3, I am writing this letter to state my opinion on the effects computers have on people. And there are three of them: @CAPS4 theft, cyberbully, addition. Now I will write one paragraph about each. My first reason why I feel that computers have bad effects is. @CAPS4 theft many people in the @CAPS5.S.A identities get stolen for listing private information online (computer) which can leave that person in a lot of debt. How are we going to encourage people to use computers when their at the risk of getting their @CAPS4 stolen. If this happening to innocent people it needs to stop we must'nt encourage this online behavior so say no to computers. i understand it really is interesting to learn about people from different countries but their are some cons. Talking online to people you don't know and have never seen, met in person they can pose as someone famous and bully you for their enjoyment. It has been proven that when children even adults get cyberbullied can lead them in the path of depression even suicide. Now I find it quite febble-minded to give up your life for a computer. So again I say no to computers. My last reason why I say no to computers is because people become addicted to the excitement of the computers when eventually lead to the division from friends and family because your lost in the computer world also you forget about you hygene some people even forget to eat. This thing they call computer is a drug, a drug that makes you forget about reality and everything else you used to think of and bring you to computer land. And I say no to computers. I have gave you my opinion and three supporting reasons why I feel the way I do which were because @CAPS4 theft, cyberbullying, addiction. Say no @NUM1 computers." 4 4 8 +238 1 "Dear Newspaper I strongly agree with experts on computer's. Those who support advances in technology believe that computer's have a positive effect on people. They say that computers teach us hand-eye coordination, give people the ability to learn from faraway places and even allow people to talk with others online. Theese effects are true but there are many other bad effects to that they dont like to say. Computers also effect people's visiion as you are really close to the screen, computers are really addicting for many people all around the world and having them do bearly no excercize moving many people to a big problem now n days which is obesity. Computer's also tend to take a lot of time away from people's lives. The way I see it to is that although computer's have some positive effects on people you can change those positive effects in a better way that can keep you fit to and seeing places with your eyes, like you can get practice with hand-eye coordination by simply getting a friend and pass tennis balls back and forth quick so at the same time your exercizing to. Also a computer can have you talk with your friends online but why not talk to them by phone if there far away n go outside and catch some fresh air n if they live close by why not talk to them in person instead. or if you want to learn about a certain far away place why not visit the place instead. There are many things you can do that a computer can do and better. but yet im not saying a computer is all bad at all. I agree that there are both good and bad effects to computers as well as most things in the world we live in. In my opinion to I honestly think there are more bad effects then good effects for computer's." 4 5 9 +239 1 "I personally think that people should not spend so much time on the computer. One reason why people shouldn't spend so much time on the computer is because people spend to much time on them and not enough time exercising. Another reason why is because people aren't enjoying nature. Finally, my last reason is because people are spending less time interacting with family ans friends. My first reason why people shouldn't spend so much time on the computer is bacause they are spenfing more time on them then exercising. People will end up getting fat if all they do is sit around on their computer. People should be running or going to the gym instead of going on the computer. Even if you have your own equipment at your house to exercis on it's still better then going on the computer and not getting any exercise at all. If people spent as much time exercising then they spend on the computer, then the average weight of a human will go way down. Another reason people should't spend so much time on the computer is because people are spending less time enjoying nature. People should be outside getting fresh air instead of being inside on the computer all day. I personally would way rather be outside playing baseball and getting fit then being inside on the computer getting fat. Even if you look at nature via comuter, it still wan't be the same because you actually aren't outside experiencing it yourself. If people waould spend as much time enjoying nature as they are on the computer. We would be living in a much more healthy and clean word. My last reason why I think people spend so much time on the computer is because they are spending less time interacting with family and friends. People could be in a dark room all day, isolated from everyone they came about just because they are on the computer. That to me just isn't right because they covered he spending quality time with their friends and family, instead they are spending time with their computer. If a person spends all their time on the computer then everyone they care about will gradually be slipping away even if they don't know it. So as you can see, it would be much better if people spend more time exercising, enjoying nature, and interacting with family and friends then spending more time on the computer. even if you don't spend alot of your time on the computer yet, you will gradually spend more and more time on it everyday until eventually it's all you do." 5 4 9 +240 1 "Dear @CAPS1, This a letter telling you my opinion about computer. Yes people do spend that time in computers a lot, its because computers are very helpful in many ways. Computers help us with our job, school, work ect. For example science. Im in @NUM1 grade. My teacher @PERSON1 gives us homework; every @DATE1, we have to do @ORGANIZATION1 are @NUM2 facts about anything you want to write about. A lot of people look up bears on @ORGANIZATION2 and they do their assigment about bears. Jobs; secreatenes always have to use computer for everything in our school secreaterys and teachers use computers for attendance, grading. They check you, attendance, grade, phone number and schedule. Communication, my dad the computer wuth our family from @LOCATION1. We talk to know how they've been, to know whats new. Like a week ago I was chating to my cousin she told me her dog had @NUM3 puppies. My family also uses the computer, to order. My uncle went to ticketmaster.com and he ordered two tickets for wwe. He also orders his flight tickets in his computer, to go to @LOCATION1. Well my point is people use computer a lot because they are, very helpful in many ways. Its not good to just be in the computer it good to outside enjoy nature live your life exercise not only to be in shape, but for your health. @CAPS1 hope you enjoy and understand my opinion on computers. Thank you for taking your time and reading I really appreciate it." 4 4 8 +241 1 "Dear local @ORGANIZATION1 @CAPS1 of @LOCATION1, latly I have been noticing that some of the citizens of @ORGANIZATION1 have been using computers and laptops for a good amount of three the some people to the say @CAPS2 is a waste of time they could enjoying with family and friends with friends and family far away. @CAPS2 helps with research and learn @ORGANIZATION1 thnigs and @CAPS2 help with relaxing people. modern time and the people who disagree enjoy Some family and friends lives far away and you cant talk to them in person. There is always calling them or writing them a letter hot email, facebook, and @ORGANIZATION2 are easier and to use. When you call you dont know if your them there phones bissy, or they a bad @CAPS2 takes long and you @CAPS2 better to stay and send on and know you didn't @CAPS2 helps in advertisment and sales. Sometimes maybe unrealible because anybody can change anything on the site. Not all things online are like that though. Stay away from scares and things, they will came Some people find the internet @CAPS2 could be there from work or sites. There are fun games and to talk to In research the internet helps @PERCENT1 of people relax and calm down after a long @CAPS5, when on the computer or laptop which helps with stress. Computers can help in many ways. There are other realiable things. Plus where ever you go you will find the internet." 4 5 9 +242 1 "Dear Newspaper, In our town, more people are on the computer each day. Some people state that you can do a lot on the computer and talk to people. But, I believe that our town should not support advances in technology. You will have more time to exercise, talk to family and friends in person and to take part in different activities around the town. Do you want to be overweight and not be in shape? Well, if you sit at the computer all day every day, you will become like that. ""I think exercise shoud be a part of everybody's day,"" @CAPS1 teacher @PERSON1 from @LOCATION1 stated. You would be so attatched to your computer, that you wouldn't work out. In the state of @LOCATION1, it is proven that @PERCENT1 of residents are overweight from not exercising and @PERCENT2 are overweight by not eating properly. This shows more people in @LOCATION1 don't exercise than not eating properly. @CAPS4 wants to be overweight and you can change that! More people each year make facebook and @CAPS2 @CAPS3. Some kids in school are on the internet all day talking to friends who live down the street. Students refuse to talk to their friend on the phone. Instead, they do it online. ""@CAPS4 can understand their tone of the message sent,"" @PERSON3 stated. You could interpret it in different ways. When you are on the phone, it is a quick and easy way to communicate not waiting for somebody to type back. If you are a person who is always on the computer, plan a get together with your friend to talk in real life. Sidewalk sales, clubs, sports teams, holiday stroll, these are events that every town offers! Instead of sitting dreaming of being on the team, go out and do it! Each town cares about its residents and want them to have fun. That is why towns offer these activities. ""@CAPS5 want to make the town interasting and everybody to know each other,"" says @CAPS6 @CAPS7 @PERSON2. If you participate in these activities, you will meet other kids your age around the town. If your town offers all of these activities, they are helping you out. Being out helping the town is way better than sitting in your house on the computer! In many ways both advancing technology or not, why be inside doing nothing but talking to people? Go and talk to them in real life. Being in shape, talking to people in real life and activities your town offers is the way to go. Thank you for your concern" 4 5 9 +243 1 "Dear, @ORGANIZATION1, @CAPS1 would life effect you if you did not have a computer? I strongly belive that computers have a great effect on people all around the world. It helps you at work for a job and at school. Computers also help students and adults talk to people. Many people want to go to places but they do not know what the place looks like or where it is. With a computer, you can find out all of that information. Read in to the minds of the students and see what we have to say on this topic. With a computer it is much easier at your job or at school. Just think, without computers people would need to write every paper by hand and we all know that can take hours. When you type a paper for school, you go to spell check and then you know everything is correct. If you write a paper by hand, there is a huge chance that some words could be spelt wrong. Work get finished a lot a quicker on the computer so you have more time to do other things like hang out with friends. If you rush on a paper, the people reading it will have a tough time trying to figure out what it says, on the computer, you work is always going to be neat. You mcan e-mail your work to a friend or save it to your computer so if. you need to change something for a paper, it will be a quicker than having to rewrite the whole paper over. Computers do not effect me in a horrible way because it helps 'me get my work done faster. Computers help people communicate with other people. By having a computer people can talk to other people. In many schools students ask their friend a question about homework. Without a computer, people would have no way of asking questions and end up getting it wrong. I like to hang out with my friends and in order to do that you have to make plans. When you are on the computer, you can go on facebook and if they are on, talk to them about what they wanted to do kthat night. It is so much easier to do instead of looking up their number and calling them. Many people in the world have old friends from school that they want to stay in touch with. Now with a computer they will have no issue doing that. You will finally be able to look up a place you want to go. Many people in this world like to travel on the computer you can look up maps and see the shortest way to get to the place, you want to go, you will see if they easy way to get there and that might not he by car. i would not want to go to a place that did not look eye catching. Now I can just go on the website and find out 'everything I wanted to know about that place. If a place is @NUM1 hours away, I would not want to travel that far so I would need to know if a place is close to where I live computers really tell you a lot about it and what the weather is mostly like. i use the computer for mostly everything I do. Comming through our minds have showed you what we have thought about the effects computers have on us today. We can make work a lot easier, talk to other ;people, and get imformation on places you want to visit somebody. The computer is a very reliable source for me and you have lost a lot if you do not agree with me on this." 5 6 11 +244 1 "Dear @CITY1 current I am writing to you on the issue about people spending to much time on computers and not able to spend time with other people like family, friends and others. Also people are getting information off of the computer which is a good thing for important paper that you might have to do or collage essay to get in to that collage. Another reason is that people are truning a bit lazy and not getting to enjoy exerising and getting to get some freish air. To more on I will explain what I mean about being with family and friends. For example let's say that your friends are planing on going to yhis huge beach party that every one is going to. So you tell your friends to pick you up but beofre they come you go on the computer talk to some you know and your friends come to your house to pick you up but you are not for them they pass on by you don't go go to school next day there talking about you miss the party. SO that is any story , it might seen long so, I'm shorting the next part which is the information on computer. Foe example lets say that you doing on paper you . Just need youre more . You find a place you go on find good write come down yet of of the computer finish paper get grade that is good feel happy the end. So that is the only good end of the reason why computres are good. For some reason some people went to stay inside on the computer but other go outside on a good warm day. So what is your reason myspace, facebook other its good if you talk to other people bad if all you worried about if your pics are good, what matters is there you need to be haapy. I think done all I could. So thoses are my reason why computer are good and bad for reasch bad because of nooding to exericis and need to be with friends " 4 3 7 +245 1 I believe computers are a benefit to society. Computers help hand eye cordination they make it easy to learn about different places and allow people to talk and video chat. Computers teach hand eye cordination when typing and eventually you get so good you dont ever have to look down at the keyboard. you can search for anything on the internet and if you want to learn about a country you can search it and find out all new things you never knew before. Maybe you want to go on vaction to another country and can't decide which country to go to you can go on the computer and look up tourist attractions in those countrys to decide which are you want to go to. If you are on vaction or live in a different place from you and want to see them you can video chat with them over the computer. Those are the reasons why I think that computers are a benifit to our society. 4 3 7 +246 1 "Dear editor, Have you ever would to know something so badly that you can't focus on anything else? Have you ever tried to find that information and had an""ah-hah!"" moment? What did you use to search for this knowledge? You probably used a computer. All you need to do is type in your request, hit "" enter"" and viola! Your screen fills with choices of information sites. Computers help so many people with everyday questions. Our country has gotten smarter because of computers. You can converse with friends that have moved across the state, country, or even world. At every click of your mouse there are new things to learn. You can even use the computer for your personal enjoyment. Computers have opened up so many opportunities the world needs to lake. When I was four years old, my best friends at the time moved to florida. I was devastaded. At first, we tried writing letters to each ohter. Then, as we grew older and became busier and busier, or connection with each other halted. As technology and computers have advanced, my friend and I text, e-mail, and instant message each other all the time. It has made our long distance friendship easier and closer. Because of computers, you can communicate with friends you thought were long-lost. You can also meet new people with one of the many sites available. How would you like to talk with someone all the way down in @LOCATION2? World communication has also opened up many business opportunities. Since the economy is failing, computers will open job spaces, help college students study for their futur career, and hopefully help to improve the lives of many people. Communication is needed for many things to make our world better for generations to came. Instead of going to a noisy arcade, why not play exciting games right in the privacy of your. Any game you can think can probably be found on the @CAPS1. From a simple game of solitare to an advanced level of shift, games for any age and difficulty level can be found. New, some people @MONTH1 think that all kids are going to do is sit in front of the computer and play games. There are going to be some peole that will refuse to go outside, spend time with their friends or just read outside. There will definitely be some people like that. I can't help it. What we can do is all those that refuse to go outside to do so. I know many people who spend and budget their time wisely and still have a great time. We can also encourage kids to use exercise programs on their computers and video games to improve their health. There are many fun and games that help you to be a better and healthier person while still having fun. The computers we have in our homes right now are equipped with so much information that if you tried to take it all in are you would be overwhelmed. @ORGANIZATION1, a popular search engine, gives you the power to look up anything you could ever wait to know from the vice president's birthday to the price of eggs in @LOCATION4 to how wide the @LOCATION1 is can all be found with the click of a button. this knowledge helps with homework assignments incredibly. Most reference books are out of date and information is inaccurate, but computers are updated so frequently, you have all the facts all the time. I think our country has gotten much smarter because of computers. So whether you want to talk to your long-lost friend in @LOCATION2 or talk to an expert on osprey in @LOCATION3, you can find your answer on the computer. While you're at it, play a couple exciting games and learn about the best movies ever released in @DATE1. Have fun and learn lots!" 5 6 11 +247 1 "Dear Newspaper @CAPS1, @CAPS2 people are now using computers. However, everyone is entitled to their own opinion about them. Some people don't like them, and then there's people like me who do like them. Computers can let you communicate faster, you can play all sorts of games for @CAPS3, and it provides information. Nine out of ten people love what computers can do for them. Unlike sending and writing letters to people, instant messaging is a much faster and easier way to talk to another person. Sending and receiving letters can take days or weeks, on the other hand, instant messaging takes only a few seconds! Even better, it's @CAPS3! Instant messaging is not the only way you can communicate with friends or family, there is also video chat. Video chat is just like talking on the phone but you can also see the person you're talking to. You can be talking on video chat with someone from another country, and guess what? It's also @CAPS3! When you make long distant calls, it can be very costly, but video chat won't cost a penny out of your pockets! Not only is a computer good for communication, but you can also play fun and entertaining games! Everyone enjoys playing games, whether you're one or eighty-two. There are @CAPS2 websites on the internet and among them there are game sites. Most game sites have virtual games that you can play online for @CAPS3! There's one player, two player, and party . This means you could play alone, with a friend, or the whole family. Everyone on in and have a time. Also, computers could be for fun and your used for work. The @CAPS2 information. It's like your own personal library at home at a touch of a finger! Either you're doing research on a project, , or just want to be informed, the internet can help you with any subject. All you have to do is search the topic you need whether it's cooking a certain dish, learning about space, trying to spell a word, or anything you can think of, and it'll all be there for you, and once again, for @CAPS3! In conclusion, computers are useful for @CAPS2 things and these are just a few examples. I hope you think of computers the way I, and millions of other people, do. As you can see, computers impoved the lives of @CAPS2 human beings." 4 4 8 +248 1 "Dear @ORGANIZATION1, I Computers is a new technology that keeps on getting better and better. It can do many things like help you learn something new and see new/old friends. Even some people do online education. Also what a lot of people like about computers is the games. Computers are a great benifit to us and can be useful and fun. The computer can teach us many new and exciting things. There can be a lot to learn too. Somethings you could learn about on the computer are places, people, animals, plants, food, etc. I have once had to find a recipe for carmel apples and to do so I used the computer. Some people use the computer for there education. There are online college and online high school. Its like a new way to be home schooled. Not everyone can go to big @CAPS1 so it is easier for them to use an online college. Also, lets say your doing a project and you need information instead of rushing to the library you can use the computer and find it. There are many other things you can do on the computer like visit some friends. I friends, everyone has friends either new friends or old friends. Back then before computers if you wanted to talk to your friend you would have had to send a letter. With computer you can now send a letter faster then before. Its now called an email. Which you just type what you want and click..send it off to your friend. Not all use an email, some use instant messaging. An example of that would be aim or meebo. I moved from @LOCATION1 to hear and I have friends I don't get to see much. I bet there are many people that have that same issue. Well with the computer you can now see people! chat and see them. For instance @ORGANIZATION2 is a way to see your friends like that. Its a easy and fun way to stay in touch with friends and even you family. There is still more that a computer can do. Another thing it can do is play video games. They are so much fun to play and what I am talking about is video games. Kids them even teens and adults love. Whenever your bored you can go play online games. Or you can have games you purchesed and play them. They are entertaining and fun too! Even very little kids can play games. Sometimes you can even play with you friends online with a online game. I know when I get bored I go on the computer and play a game called @CAPS2 @NUM1. Computers are great and there are pently of more things you can do other than what I was taking about. I hope I have convinced I or showed you how computers are a benifit to us people." 4 5 9 +249 1 "According to @PERSON1, economic @CAPS1, every hour you spend on the computer, you raise your electricity bill by @MONEY2. The average @CAPS2 spends @NUM1 hours on the computer everyday. I believe that spending too much time on the computer could be a bad thing. You have economic loss from the electric bill, health loss because you won't be able to exercise as much, and community less because you won't spen as much with your community. Financial loss is something that many people are concerned about. If everybody spent @NUM2 less hour on the computer, they could save @MONEY1 off their electric bill. In a survey, @NUM3 out @MONEY1 @NUM4 people said they would do anything to save money. So if they spent less time on the computer they would save lots @MONEY1 money. In addition to financial loss there is also a health issue. Many people are talking about how americans are becoming obise. Part @MONEY1 this is due to spending too much time on the computer. Proffesor @CAPS3 @MONEY1 @ORGANIZATION1 says that, ""the obisety in @LOCATION1 is a problem, if people spent less time on the computer and more time exercising, that problem would be solved."" @CAPS4, @NUM5 out @MONEY1 @NUM6 people are obese. If everyone spent @NUM2 less hour on the computer, it would become @NUM1 out @MONEY1 @NUM6. Although health is a problem community is a bigger one. People never talk to eachother face to face anymore. They all talk on @CAPS5 or @CAPS6. Commmunities are spending less time together in real life than on the computer. @PERSON1, expert on human behavior, says that when people spend less time on the computer, ther spend more time together. It's a fact that when people spend more time together, they have more fun. So, I would say that spending less time on the computer would be beneficial to our community. It would provides financial, health, and community benefits. These are all important things that we lack if we spend too much time on the commputer." 5 4 9 +250 1 "I do not believe computers benefit society. Many people spend their life on their computer instead of exercising, going out with friends, or spending time with family. @NUM1? Of @CAPS1 will agree they spend at least @NUM2 hours a day on their computer. Which is unneccessary. Why is there so much obesity in the world nowadays? Because of a lack of @CAPS3. And who is the #@NUM3 cul? Computers of course. In order for more people to maintain healthy, there needs to be a lot of @CAPS3. When someone can sit around all day clicking a mouse or typing keys in, how much @CAPS3 are they really getting? Plus, there are many different disorders in the world. @PERCENT1 inf will agree that with more @CAPS3, these sometimes painful disorders could be avoided. Too many people are choosing their computer overexercise and it them many health problems that could've easily been avoided. Secondly, everyone would agree that friends are essential in life. But now people are talknig to their friends online or in computer games instead of going to the them. Online there is much more which often break up friendship. Also, online you new people or make as many new friends. @CAPS2 you go and have many more friends, which makes life in general much better. Finally, you wouldn't wants families become would you? Well, this is one of the many effects the @CAPS2 members of a family get together which could weaken them as a family. Plus, husbands and wives could not talk very often, often leading in separation or devorce. This could make a child have in decide between a whole family to @CAPS3, friends, and family are essential in life, and computers put those in jeopardy. So take a stand and end this reign for good, stop the use of computers before it is too late." 5 5 10 +251 1 "Dear @CAPS1, @CAPS2 I have learned that some experts say that people spend too much time on computers when they could be excercising or with friends and family. I, on the other hand, think otherwise. Computers are a great way to learn and communicate with others, here's why: @CAPS3 of all, I would like to say how much computers help us in school. Most students use them every day. We can study for tests by looking for websites with lots of information and we can also research topics that we don't understand. For example, if you want to find out how planets form, you can just type it into a search engine and a list of websites will pop up. Another way we use computers in school is when we have to make projects. We can use different tools to set up a slide show while also looking up information on the internet. Lastly, the internet is also a way for teachers to communicate with their students. If the teacher sets up a blog, students can always see what the class is doing, what the homework is, and find cool links that will help them understand certain topics better. Another point I would like to mention is that the experts say that computers deprive us of time with family and friends when the truth is, its the opposite, computers actually take communication to a whole new level. For example, if you wanted to have a chat with an old friend, you could log right on to msn or aim and find out what's new in their lives. A second way to communicate with friend is by @ORGANIZATION1, a cheap and easy way to contact friends outside the country. Next, you could go a bit more old fashioned and just write an e-mail. It will take longer to get a reply but its still worth the wait in the end. Lastly for parents who kids live far away, video chat is also a good way to communicate because you will be able to see them and hear their voice as well. Lastly, I would like to tell you about just how much we can learn by using a computer. You could just go to a search engine and search any topic in the world and you're bound to finds hundreds of results. It doesn't matter what your interests are because you'll always find great information. The internet also allows you to catch up on recent news such as weather. Next, there are websites that allows you to ask questions and get answers just as fast. You might have to check your sources to make sure they're reliable, but I believe it's still worth it. Lastly, if you are getting ready to go on a trip, you can check flight information with the click of a button. Or maybe you need to find out what the weather will be like, there are many websites for that. There are also websites that can help you learn about the place you'll be staying at as well. Next time, think twice about what you hear about computers because they really aren't all that bad for you. Sometimes it @MONTH1 be better to go outside and play but computers do help you learn and communicate with others which are just as important." 5 4 9 +252 1 "Dear local newspaper, I also agree that computers have a positive effect on people. I agree with this because the computer can teach people things. Also people can talk to each other, and believe / create whatever they want. Computer have a positive effect on people because i believe the computer can teach people a lot. The computer can make things visual to kids and out. I know that when i was younger i used to play math and science games on the computer to help me study for tests. The computer also helps out with adults and their jobs. I don't know what half the adults in the world would do without computers. If you think about all jobs that are happening today also @CAPS1 of the computer. Such as e-mail. What would some buisnesses do. without e-mail? also adults like to check websites for the news and to catch upon sports. we can all learn so much from the computer and there are so many people who @CAPS1 their jobs on computer. we all learn something everyday and with the computer, we can make it kind. Also the computer benefits online chats e-mail and now even with a cam you can talk face to face with people all over the world I know e-mail helps out so many people who live long distance and e-mail doesn't take long at all. I know thanks to cam and microphones that are buit into computer helped our because now I can talk to all my friends and family and see them I hear them without traveling just simply clicking a button. There are websites now that @CAPS1 of taveing to @NUM1 people online and over cam or microphone. Things like this help out so much somepeople just. Think about all those people who have relationships and what not, @CAPS1 it off of computers really do help out. Lastly all the people who @CAPS1 their imagination off computers, all those people who put that thoughts and feelings into the computer. I know plenty of people who type their feeling because they would never dare say them a loud. Now imagine if computers faded away? That's what i think about what people say such things as the computers not. Everything is useful and everything has at least some sort of positive effect coming out or it. So @CAPS2 in my opinion computers do bring out a positive effect to the world." 5 4 9 +253 1 "Dear @CAPS1, @CAPS2 you think computer's are good to use? More and more people use computer, but not everyone agrees that this benefits soceiety I srong disagree. My first reason is because computer's are not safe. My second reason is computer's could get you in a lot of troble. My @CAPS3 reason is you never know what could happen on the computer. Read on and see why I disagree. First @CAPS4 gonna tell you why I disagree. The reason why I disagree is because computer's are not safe because you could have someone trace where you live at then what? Second - computer's could get you into a lot of trobe such as posting things online or saying mean thing's to people. Next computer's are bad because if someone like's you and you say I dont like you they could post mean and hurt full thing's and then if you friend's see it you will probably get mad. Finally - in concusion thease are all my reason's why I think computer's are not good. You never know what coud happen on a computer there's website's there and some could start a virus on your computer. Also I think computer's are not good because computer's lead to no good so keep your child away from computers. Also be careful what chu @CAPS2." 3 3 6 +254 1 "I walked into my living room. I saw my brother on the computer talking to his friends on facebook. I thought to my self he's always on the computer never for any school reason. People always says we don't need computers I personaly agree with the statement. In the town @ORGANIZATION1 everybody mostly has computers. Without a computer to look up for content things, you have to go to the library and check out a bank. Just the other @DATE1 my friend @PERSON1 went to the library and checked out a book about the @CAPS1 culter. He loved that book he read it @DATE1 in and @DATE1 out, he read it for a book report on different culters. When he handed it into the teacher the @DATE1, when he reached the classroom the teacher looked @CAPS2 happy when she gave him back his test he had an @NUM1. He didn't use the internet your computers not mobile like a book if you wanted to learn about something while your traveling in you car you can't plug your computer in and use it unlike a book. Also books are usually funnier to read. Not haveing a computer can conclude to a lot more things like exercising. While my brother is inside all @DATE1 me and my friends are outside playing football, basketball, baseball, soccer, kirkball, and dogeball. We are very thin because @CAPS3 what we do almost every @DATE1. Unlike my brother were he is obeast because @CAPS3 all he done were before he had the computer he was as thin as us. It is also unhealth to be on the computer all @DATE1 because that can lead to staying update at night, don lead to missing the bus, and also lead to bad grades. Where when we are done with are gaine we whatch a little t.v.. then go to sleep to regain our energy we usually have atleast @NUM2 hrs. of sleep ever @DATE1 which lets us make it through school. We also make the right choses in food to eat to have more energy such as fruit and vegitibales. Were my brother eats all the junk food which helped lead to obesity. Not having a computer can help you spend more time with your family. When we go out to eat my brother is always in a push to get back on to the computer dosen't let us enjoy our food. He usually is @CAPS2 much in a rush he picks off of other people's @CAPS2 they would be finished faster, when every one wants to enjoy then food. When we want to go out to the movies my brother stays home on the computer. Even if we buy a movie and whatch it at home he won't whatch it with us he's on the computer. It really makes my mom, dad, brothers, and sisters mad that he won't do any thing but play on the computer. Even when are whole family gose out side to play a sport he won't come out and play. It's like he's not part of the familiy anymore. Its like he forgot we were even @CAPS3 the reason why I think computes should be in the state of @LOCATION1. If can lead to and relly bad grades. @CAPS2 if you want your kids healthier, better grades, and spend more time with your family then ethier sell your computer or This is happening all over the world." 5 5 10 +255 1 "Dear Newspaper editor, Computers have been a great advancement in technology, but some people think otherwise. It is a great thing to have some people say but others think it is a hazard to health. I think it is an excellent thing to have. I have come up with @NUM1 reasons to support my opinion. Computers help you keep in touch with distant friends and/or family, they assist you in research, and they even let you do shopping. Firstly, if you have any relatives or friends that live far away computers have websites such as aol or facebook & myspace that you can use to keep in touch with them. Most of them are free to create an account so you don't need to worry about monthly bills for them. So this is a lot better than driving and paying gas for visiting. Computers even have webcams for video chat. With video chat you can see each other & talk at the same time, thats amazing. Secondly, you can search the web for research. If you have a project and you need more information than books give you then just use google or ask.com. You can easily find the details and information you need. All this takes is just a couple minutes, which is alot better than reading for an hour or time. Lastly, if you really want something or need it just shop online. For example if you are a really cool toy that you want to buy for your daughter or son, but its not for sale in stores then buy it off the internet. They even ship your item fast. I like buying off the internet. When I really wanted a bike I saw my mom end up getting it for my birthday. In conclusion, computers are very handy. If you need information, talk to someone, or buy something its got it. I use computers a lot. I think they are very great to have." 4 4 8 +256 1 "Some of you @MONTH1 agree that computers don't keep you fit or we spend too much time on them but, they can help you keep in touch with friends and family, meet new people, and save information. Without these important technology devices we wouldn't be able to do any of these things. Most families live all over the country @MONTH1 be even in another country, and you don't get to see them very often because of traveling prices, however with the computer they can help us keep in contact with them very easy and quicker than you can say ""@LOCATION1."" @CAPS1 more people make a website that allows us to easily keep up with our distant family. Facebook, @CAPS2, @CAPS3, @CAPS4 of fish, and singles net are all sites that you can find friends or the one that's right for you. This gives you a chance to discover @CAPS1 people with the same interest as you. Half of my mom's boyfriends were from these sites. Without these sites there might be less divorces and more happy ending fairy tales. @NUM1 out of @NUM2 people work out home. It's good and you can get things done the. Many people have papers and of important information and it could be lost in a blink of an eye. With technology like this they save with just a click of that mouse. More buisnesses are being held at their households because of this easy going technology. Exercise @MONTH1 be important still, with a touch of a button I could talk to my aunt, find the right one for me and save my whole life. New technology like computers can change the world and help @MONTH1 things faster." 4 4 8 +257 1 "Dear Local Newspaper, @CAPS1 opinion on the fact of the computer is that it can be bad for the citizens in @LOCATION2 in @LOCATION1. I think that some people are not getting enough exercise and I also think that you can get lazy on the computer is bad too. @CAPS1 three reasons for @CAPS1 opinion is @NUM1. People are not getting enough exercise, @NUM2. People get lazy and changes while being on the computer an mount of time, @NUM3. They will get addicted to the computer. The first reason is because people are not getting enough exercise I pick that reason because people I know gain a lot of weight and it's kinda of sad because they do nothing but stay on the computer and eat. Another detail is that the computer messes up your eyes by staring at that type of screen. One time I did that and @CAPS1 eyes felt weird after getting on the computer. The third detail was that people gets very fragile and weak. I picked that detail because if you get up off the computer and exercise your bones will become weak. The second reason is because people will become lazy and changes for an example people will keep asking you to get stuff and do stuff for them and you would do it because you be a good friend. The second detail is that the person will change, the person will be lazy to go to fun events with you as a freind. The next thing you you wont have a freind anymore. The third detail is that it's like your bestfriend has replaced you for a computer that hurts if a person you know for a long time has replaced you for a computer thats something that will make you depressed and make you wanna commit suicide too me anyways. The third reason is because the person will get addicted to the computer for an example you want to celebrate a birthday and the person says ""first I got to beat this level."" @CAPS2 the person saying that the person is not going to get off the computer. Another detail is that his day will go pass fast and thats like waisting days of life and people who died will do anything to get their life and to waist is not good. The third detail is you will began to hate the person because the person dosen't care about anything but the computer. Those were the reasons to explain @CAPS1 opinion on the compter fact in the news paper I read." 4 4 8 +258 1 "Dear Local Newspaper, Spending too much time on the computer is never a good thing. Whether you are doing work or things for pleasure. I strongly believe this because being on the computer too long will mean that you are spending less time excersising, interacting with real family and friends rather than on the internet, and being on computer too long can ruin your vision. Nowadays with all the great advances in technology, peoples are always glued to computer screens. Lets face it, once you go on the computer, it can get pretty addicting with all of the fabulous things you can do and when we get addicted, we don't feel like doing other things like excersising. Studies show that @PERCENT1 of the kids who use his or her computer for more than @NUM1 hours a day is obese. The cause of this problem is obvious and it is kids being addicted to computers. Since they are so addicted to computers, the do not want to go to the gym or anything. Another example is that in school kids have a choice of what electives the want to take. Many kids would rather choose the computer programming class rather than physical education. This also cuts down on their excersise time. Computers are wonderful things, but when it starts affecting your health and physical fitness, they are enemies. Interacting with others on the computer can be looked at as a positive but it is not since it affects the way you interact in real life. For instance, some people develop a habit from only interacting through the computer that makes them anti-social in real life. Furthermore, some kids can be the most pleasant people to interact with through the computer but then when you used them in real life, they are the quietest people in the world. This happens because they are more comfortable interacting through the computer. Also, they have lost their abilities to interact in real life. Interacting through the computer is great if you have family and friends in other countries but you shouldn't do it so much that you become uncomfortable to interact in real life. Your eyes are one of the most important parts of your body besides the vital parts. Most people do not know this but being on the computer too long puts strain on your eyes which is bad. This strain only lead to unpleasant things. For example, if you we addicted to computers, then there is a large chance you will get glasses someday in your life. A recent poll was taken and over @PERCENT2 of people who use their computers for more than @NUM2 hours a day have gotten glasses. Another example is that overtime the strain build up and up to the where even with glasses you can hardly see. Imagine a world where your vision is so bad that it is like your eyes are almost closed, that's what happens to people who use their computers too long. Local newspaper, you @MONTH1 think that computers are one of the greatest inventions ever, the you are right, however you shouldn't use it too much." 6 5 11 +259 1 "As time goes on, our society becomes more advanced with more and more unnecessary technology, such as the television. What I really want to write about is the computer. Society today has developed a very unhealthy habit, and it is always using the computer. Everyone in the twenty first century uses a computer. The world got so used to having the computer around, that if all the computers in the world were to ""break,"" then most people probably would not know how to @CAPS2. Like the basic theory of. Which was that the world was ""@CAPS1"" to end back in the year two-thousand because everyone thought that the world was going to end. Only because the computer were going to crash and lose all the data that we have ever recorded. Humanity relies way to much on the computer. Since many people rely on the computer to @CAPS2, a lot of people ""forget"" to excersise! Our body needs excersise to live. Excersise one of the most important activities in our daily lives. When you don't excersise, and all you do is eat junk food and drink today, you better bet on your mothers grave that your going to either get diabetes, the fly, heartburn, or any other sickness or disability. You are what you eat is what I say. Life already has enough distractions in it, why add another distraction? All the computer is, is a distraction from keeping you and everyone else healthy. The computer started off as an ""innocent"" invention. Now a days, people literally worship the computer like it is a @CAPS3. People who use the computer all day every day, end becoming very lazy, because all they want to do is sit down and use the computer. In my opinion, everybody should be a part of some physical activity. Whether it is basketball, football, baseball, track, tennis or my favorite thing to do, skateboarding. Everyone should get physically active atleast three times a week for many reason, fact is, that if you excersise three times a week at the least, that your body will function better, you will look better, and you will feel better. excersise can be fun, as long as you make it fun. I hope this essay has really made you think about how you want to live. excersise should be a huge part of your daily routine, now sitting on your buttox all day searching pointless videos on ""youtube."" The way you want to live your life is up to you. And I hope to @CAPS3 that you start living it healthier." 4 5 9 +260 1 "Over one million people on the computer daily. I think being on the computer is unhealthy. So many people abuse themselves staying on to long. You should manage a time schedule so you can still get excercise dont use the computer if needed. People become overweight also. I think people should do something els then use the computer. One main effect that see is many people play the computer too long and are becoming overweight. This can be stopped if we all join together. One person isn't going to change anything. But many of us will. We can be the huge dangerous preditors going for the prey. If there is something els to do besides play the computer do it. If you know your over weight from the computer. You!! Can make a change. If you keep doing other activities you can get skinny again easily. You just gotten make that type of change. A serious issue is people don't wanna take time to make a quick little chart to manage computer useage. The way isee it is if we make a chart then we will know when to get off and twhen to play. This is important because some people take in information better when they have it infront of them. This could make some satisfying results. People use the computer for school work. This is good depending on how long it takes. In my opinon people shouldn't be on the computer or more then @NUM1 hours to @NUM2 hours a day. I think people should get their schoolwork done and get off. I much rather see kids outside playing. The nature and wildlife is much more important. The effects on the computer puts on us can vary. If its not to overweight to not spending time with families, to doing schoolwork. You need to use your time wisely." 4 3 7 +261 1 "Dear @ORGANIZATION1, I believe many people spend to much time on computers. It is okay to be on a computer for twenty minutes, to a half an hour. But one hour or more, is too long. People could get sucked in by playing adicting games. Also by online chatting survices like facebook, myspace, instant messaging, and more. Another way, I think someone could spend more time on a computer is working on a report. They might start it lost minute. These are just same of the many ways someone could be sucked into their computers. Have you ever hopped on the computer and played a game? Then you look at the time and its an hour later? Games are very adicting. you can play a game for hours and not notice how much time has passed by. Games are very fun, but they fry your brain. @PERCENT1 of the human population spends up to an average of two hours on a computer each day. I think, we should eliminate some games off the internent, so people can spend days exercising and hanging out with friends, not playing silly games. Have you ever started a conversation with someone and realized you have been talking for an hour and a half? And that you have homework? @PERCENT3 of teenages on average spend three hours each day chatting with friends on the internent. Facebook, myspace, instant messaging are all examples of this. It is okay for someone to talk to their friends, but you need to watch the time so you do not get carryied away. I think, we shoud cut down out use on these websites, so children and teenagers can get their homework done. Have you ever been assigned a report and wait till the last minute to get it started? Many teenagers do this. They wait and start their reports the day before their reports are due. They then, are stuck on the internent for hours trying to get it done. Which makes their grade lower then if they were to start it earlyier. @PERCENT2 of students wait till last minute to do their reports, on average, they spend over four hours on the computer. I think we should make sure that students start their report earlyier so it could bring up their grades. In conclusion i believe people have spent way to much time using computers, due to games, internent chatting, and reports being done last minute. I think if we elimate games off the internent, cut down use on internent chatting, and start reports earlyier, people will start exercising, hanging out with friends and family, get homework done and get higher grades." 4 5 9 +262 1 "Do you think being able to look up information on anything or talk to people that are for away is ggod? With a computer these are some things that you will be able to do. Being able to talk to anyone that is far away is good. Some people have family in other countries that they have not seen in a long time and with a computer you can talk to them. @CAPS1 the people we have sent to @ORGANIZATION1 they have a Family here and I have heard of them using computers to talk to them because they miss them. Also if you live in an area that gets bad weather and you can not go anywhere a computer can help pass the time, @CAPS1 the people that live in the @CAPS2 they can get alot of snow during the winter time and @MONTH1 have to stay inside. So if they have a computer they are able to do things @CAPS1 play some games or can watch some videos to pass the time. Another thing a computer is good for is that you are able to search for anything. You are able to learn about faraway places even if you have never been there just by looking it up. Some kids do have some trouble with some homework but can use a computer to learn some more about it and hopefully they will now understand how the work is suppose to be done instead of going to the teacher tomorrow and telling them that you did not do it. There are my opinions why a computers have a positive effect on people. By being able to search anything, help children with homework, and pass the time if you have nothing to do." 4 4 8 +263 1 "Dear @ORGANIZATION1, @CAPS1 minute of the day - millions of computer users around the world hop onto their laptops or desktops, but is it always a good thing? The question has been raised if people spending alot of time on computers is a bad thing. Computers are a bad thing because people spend too much time on them and lose quility time with friends and family. The dangers of online interaction, and the risk of having your information stolen. Countless people around the world face these problems everyday and computer usage should be lessened. Whether teens, kids, or adults are gaming, on websites or typing essays people around the world spend way too much time on their computers. For example, of the @PERCENT1 of people who have computers with online access @PERCENT2 of them spend @NUM1 hours a day on them. This is about @NUM2 billion hours of computer usage around the world. Children and adults alike have lost face time or interraction with other human beings face to face. Before computers kids played outside running and playing around. While in present day less than @PERCENT3 of all children get at least one hour of time outside. Computers are not a bad thing, but its is when they are over used they become hurtful to kids health. These facts have not just contributed, but they are almost the cause of obesity in the world. Computer usage needs to be cut down to size if we are to solve these problems. The additon of online chat to computers has not only increased computer usage but doubled it. The invention of @CAPS2, and instant messaging was never meant to be a bad thing, but it sure did turn into one. Online chat allows people to send hatefull and vulgar messages to their enemys without showing their face. In some cases some teens were harrased online so bad they committed suicide. Another bad thing about @CAPS2, or @CAPS3 is that dangerous criminals can hide behind their computers and lure children or teens to a meeting place where they can be kidnapped. @NUM3 out of @NUM4 users of online chat was lured by a criminal to a "" meeting place"" and was kidnapped and never seen against last year. Most of these victims do not return or are found. Although the invention of chat online was meant as quick easy communication it became a horror crime in most cases. Millions even billions of dollars have been stolen by internet hackers. These hackers break the security codes and buy things online using other peoples money. Four out five people admit to having multiple sites with personal information on them and @NUM5 out of those four people have had at least one account hacked. This problem continues to grow and hackers feed off of weak sites. If this problem continues to grow the whole world will be bankrupt. These hackers know who you are, your family, your personal information, and where you live. Internet usage needs to be cut down to sites. If we do not then usage will increase, there will be no chat problems and peoples money will get stolen." 5 5 10 +264 1 "Dear editor, @CAPS1 do you do all day? The answer to that would probably be sit down in front @ORGANIZATION1 a computer all day. My friends say that this is very unhealthy, research as proven it and my mom has had experience with the computers. This just isn't healthy for our envierment and people. @PERCENT1 @ORGANIZATION1 my friends say that computers are a waste @ORGANIZATION1 time. Most people who interact on the computer all day don't have a stable diet or even a good excersice ruinte. They say that all the junk kids and grown-ups acumulate in their daily life is unhealthy and will never go away unless they get up. They also say that without excersice our country will be filled with over weight people. Dr. @ORGANIZATION1 has done extensive research and has proven that computers are bad for you. @PERSON1 has gone all over the country to talk to people, and he specifically stresses that more people should get out and enjoy the nature but, no their sitting in front @ORGANIZATION1 a computer which is not good for them. He's taught people that @PERCENT2 @ORGANIZATION1 the time if you get out and have fresh air your life will be so much better. My mom has had experience with computers and asures me that when she was younger you couldn't just sit there and not get out. She says that it's important to interact with your family and friends so you keep a stable relationship. Talking to your family will keep them intact with @CAPS1's going on in your life and hanging out with your friends will help with having more @ORGANIZATION1 a life without your household. She says any kid who does sit in front @ORGANIZATION1 a computer all day should be disappointed @ORGANIZATION1 themsleves. Editor you've done a wonderful job since you've taken the job! So, I feel that if you stress the point in your next newspaper about not having computers all the time you should always excersice like my friends say, the research as taught to enjoy your nature and my mother says to interact with your family and friends. I'm sure your next article will be a wonderful dream to people stating facts." 4 4 8 +265 1 "Dear @CAPS1, @CAPS2, computers. The subject of so many debates over the years, from lawyers against judges to parents against children. Could it be to much of a good thing? Are computers the cause of increased awkwardness in today's society. Certainly it can't be to good that your entire life is documented on a place where anyone can go. And then there is the content of what you are viewing. I can't wait to get to that paragraph. One of the top @NUM1 picked-through subjects in the world, are people really less interested in exercise than they were in the @NUM2's? studies show that in the @CAPS3 @CAPS4, @NUM3 out of @NUM1 people were overweight. That number has risen to @NUM5 out of @NUM1, as of @DATE1. Amazing! And some of these people might be safer staying inside. If you've played a video game where the player can lose health, you'll know what happens when the bar runs out. You restart. After playing @CAPS5 @CAPS6 @CAPS7 @CAPS8 @CAPS9, @CAPS10 @CAPS11 @MONTH1 want to try that gravity-defying, head-turning stunt. And let me tell you, there is no restarting after that. Did you know that @ORGANIZATION1 is recording everything you do online? If say, you are a budding guitarist and are looking around for a new gibson, you'll start getting all these ads for online stores, @CAPS12? Because @ORGANIZATION1 sells your info to businesses. And you give them permission by clicking that continue with install button. So spam email comes. But something even worse is on the way. Your bank account number. Thats right, I went there. If a virus get onto your computers, your many could vanish. So be responsible. This brings us to our last subject. The touchy one. It used to be that you had to buy a magazine or book to witness the exploitation of young women. Now, it is just the click of a button away. And that is bad enough. Young boys are snagged early, their futures now controlled by this disease. But add to that the imense risk of a virus attack, and you're in a heap of trouble. So I'm not saying computers are terrible, just that they they could be to much of a good thing. Sometimes they can be a good way to relieve stress, by taking it out on a hapless alien. Just use the technology at your hands responsibly." 5 6 11 +266 1 "Dear Newspaper, I strongly agree that computers have effected people in a very positive way. Since more and more people have been using computers, the technology gets higher and people can acess much more things. Computers are good because they are convinent, and provide entertainment. Have you ever wanted to know what the capital of @LOCATION3 is, or what the weather is in @LOCATION2? To find out these answers, all you have to do is look them up on the computer! The computer is so convient, that whenever you have a question about anything, you can use the computer! Take my cousing courthey, for example, everyday, her teacher asigns definitions for homework. So, she just looks up the definitions on the computer instead of taking the time to find them in the dictionary. However, @PERSON4 isn't the only person who thinks the computer is convinent. When surveyed, @PERCENT1 of people voted that when they have a question about something the computer is the most convinent item to use. Professor @PERSON2, from @ORGANIZATION2 says, ""@CAPS1, since more people are learning how to use the computer, it is becoming more convinent to everyone."" In conclusion, many people rely on the computer for information, and you wouldn't want to take that away from them, would you? It's a @DATE1 @TIME1, and your bored, what do you do? How about go on the computer! The computer is a great source of entertainment. Whether its listening to music, playing games, or talking with friends, you will always have fun on the computer. For example, my neighbor, @PERSON3, comes home after school by herself. She is usually extremely bored, so, she goes on the computer and plays games, and talk with friends. @PERSON3 can also talk to her cousins, @PERSON5 and @PERSON6, that live in @LOCATION1. But, @PERSON3 is not the only one who talks to relatives on the internet. When surveyed, @PERCENT2 of people agreed that they talk to relatives from other places on the computer. Dr. @PERSON1, from @ORGANIZATION1 says, ""The computer is the main source of entertainment for most teens and adults."" @CAPS2, you wouldn't want to take away our main source of enteratinment, would you? After school, many teens and adults go rushing to the computers for all different reasons. But, in conclusion, computers have positively affected all people with their amazing convinence, and great sources of entertainment." 6 5 11 +267 1 "To whom @CAPS5 @MONTH1 concern, @CAPS1 the joy of just clicking a mouse and all of the sudden you are talking with a friend you haven't seen in years. Computers make this a reality for us, but that isn't the only benefit they offer. Computers help society by providing us with search engines and educational resources allowing us to connect easily with friends and family, helping us communicate importances and plan things and a lot more. First, computers have become a vital part of education and research a like. Students at schools, elementary through college, are able to connect with much more information than without computers. You can even earn a college degree on the computer! That's right online universities are beginning to form. This is great for moms who want to get a degree but have to stay home with their children. Also, computer technology has been applied to research in science and hospitals. New discoveries have advanced with the help of computers that will actually help people's lives! Computers are used to search for a cure to cancer disasters such as earthquakes, and even help see a disease someone has before its symptoms even begin to occur! Computers have helped save lives and benefit lives in ways people never could have imagined sixty years ago. Secondly, computers allow people to connect and reconnect with other people around the @CAPS2. I recently got a facebook account, and within a few days I had found and to three friends of mine that had moved away a distant cousin who had moved to @LOCATION1 that i haven't seen since we was little and even my great grandmother! The possibilities are endless. Email has also been very beneficial to society as well, as @CAPS5 helps people communicate and plan events, which brings me to my next topic. Lastly, computers help the @CAPS2 communicate with one another. the internet is filled with websites made to benefit our @CAPS2, one being @ORGANIZATION2; @CAPS2 @CAPS3 @CAPS4. If not for computers this program wouldn't have been as succesful and beneficial as @CAPS5 has become. Also, is an amazing website that combines education with the aspect of @CAPS2 @CAPS5 quizzes you on different levels of general knowledge and for each correct answer, @ORGANIZATION1 donates @NUM1 grains of @ORGANIZATION1. When i am bored i sometimes go on, and so for i have filled over thirty bowls of @ORGANIZATION1, while learning at the same time! To conlude, computers have proven to benefit the @CAPS2 and all in @CAPS5, not only people but the environment, too. Computers help advance research, help people reconnect with one another, and help the @CAPS2 communicate, Who knows that computers will help us accomplish next?" 5 5 10 +268 1 "Dear, @CAPS1 I would like to tell you something. Throughout the ages we have been evolving, from caveman discovering fire to discovering how to fly. With evoloution we discovered technology and in recent years we have been making new technologies rapidly. Some say that some technology like computers are bad, I think that computers are good because they give you the ability to learn about for away places. let you talk to people online and teach hand-eye coordination. Computers let you go places that you ordinarilly wouldn't be able to go to. If you were doing a research projects on @LOCATION1 and you didn't have any books what would you use? That's right, a computer the internet would have the facts you needed, so you could grade. While on the internet you could talk to friends and family who @MONTH1 live for away. The computer goes over long distances and connects both computers so you can bend writing almost instantly. Without computers you wouldn't be able to get in touch with these people. Using computers is good for the body as well as the mind. It helps you with your hand-eye coordination. When you see things on the screen and go to chick it you are actually helping out your body. Some people say that when you are on the computer you aren't interacting with friends and family, but they are wrong. I myself have talked with my sister in a different room while using the computer so the computer lets you interact with friends and family too! I love computers, don't you?" 4 4 8 +269 1 "Dear @CAPS1 @CAPS2, yes, I do believe that for too many people are 'addicted' to the computer, and spread more than enough time on the computer everyday! Not only teenagers but the children and youth have fall into trap of the computer. As I grew up in my younger years I hated the computer all I wanted to do was go outside and play. As I became older I used the computer way more often than I did before I now believe the computer takes time away from family time to get the sitting down to read a good book and hanging out with friends. Insteed of all those fun interacting activities people decide to go on facebook, myspace, twitter, youtube, addicting games, and whatever else they could find. I do not agree with that being sluck to the computer like is to chese. No! If there was our thing in the world that would keep parents and children together, it isn't the computer. Computers distracts kids and teenagers from doing other things in life, also it doesn't follow families to be a family. Before computers were made all people bad was their family. Coming home from school saying ""@CAPS3 dad, home from school. What t go play see catch""? Instead of that kids come home from school to see if @CAPS4 replied to your facebook message. Computers also cutt off interacting time that families always and to have. @DATE1 @TIME1 instead of talking to @CAPS5 myspace, why don't you grab and plays family board game! Or go out to on restaurant, talk about your next vacation and what you'd be interseted doing go to the same field have a game, or to your local base ball field and play kickball, instead of sitting there mesmerized by the computer screen! Okay, I @MONTH1 understand that some people just @MONTH1 not like to go out and play or engage in physical exercise and that is totally understandable that is still no excuse for sitting at the computer and a book. Reading is yet fun but it is also , with out being in school! As you read your brain to inner works, you or your so you can show off to you friends out family on words that you . It is shown that @PERCENT1 of strints who read . Not the @PERCENT2 who sit at the computer all day writing reply ." 5 4 9 +270 1 "Dear @CAPS1 sun, I find that computers are very useful. They help people in many ways. They let people learn about what is going on in the world, teach hand eye cordination, and let you meet people online. First, people can learn about what is going on around the world. I can find out what is happening where I live by looking up your newspaper. Other people can find out about places they might go. They can find out what the weather is like so they know how to puck when going places. Also, if one of your employees is going camping they can look up a good place to camp and they can look up what kind of dangers there is when you camp so they can avoid them, because if they get sick they can't work. As you can see computers are important. Next, computers teach hand eye ncordination. Many jobs need you to be able to work well with your hands. Lets say one of your printers break down so you call someone to come fix it. They must be able to work well with their hands to fix it. Now lets say the wiring in your lights get messed up. So you call an electrician has to be good with his hands to be able to work with small wires. Both of these people are good with their hands and they could of become that way by using computers. As you can see, computers are important in today's life. Lastly, computers let you meet new people online. Lets say you are all alone after a hard day of making newpapers. You could go online and meet new people in chat rooms and online games. Now lets say that one of your employess just broke up with his girlfriend and he is sad and lonely, so she isn't working as well. He could go on an online dating site and meet the perfect girl. Now when he comes to work he is happier and making more papers and if he makes more papers you make more money. As you can see computers are very important. In conclusion, computers are wonderful machines. They can let people learn about what is going on in the world, teach people good hand eye cordination and let people neet new people online." 4 4 8 +271 1 "Dear Local Newspaper, I've heard about your problems with computers, and would like to state my opinion. I think that computers teach you more than they, disable you. For example , say you have a research project and you need to look someone up, you go on the computer and you got him. Also, say you want to go far for vacation; like @LOCATION1. You can go on the internet and find out how they live there. My last reason is that now you can be on the computer and still interact with family and friends. First, I stated the first one because a couple of weeks ago I had a social studies research project. But ig I couldn't use a computer then I would of had to use a book; instead of going on the computer and just looking it up. Another exsample could be like you need pictures to make the project look better . So you can go on google and find a picture to go with you project. But thats not all the internet can help you with. Like say you been planning a trip to @LOCATION1 for your honeymoon but never been there or know anything about it, but your honeymoon is a month away. You can go on the computer and learn about it. Also now they have online classes and you can learn their language before you go. But to wrap it up I have on more exsample. Lastly, chatting sosme people think because you on the computer all day you can't interact with others, but you can. for exsample, like they have a website called @ORGANIZATION1. You can chat with all your friends at once. Also they have video chatting, so you can be looking right at the person while your talking, all that's all I can think of. I hope that my lette and probably many others show you about computers actually do." 4 4 8 +272 1 "Dear Local Newspaper, I think Computers have a positive effect on people because it helps their education,you can talk to family and friends, and you can get better hand-eye corrdination. Read on to find interesting details about computers and their positive effect. @CAPS4 first reason that computers are positive is that it can help you with your education. I mean come on, how many college students do you see without a laptop? You see none. Am I right? You always need a computer because you have to type eveything, and do research for big essay papers. People think ""we'll, there's always the library?"" @CAPS1 your wrong. @CAPS4 local library closes at @TIME1 pm. I'm sure college students are yo way later than @TIME1 doing homework. Just imagine, late at night, @NUM1 pm, no library, no computer, and a giant essay due tomorrow. What are you going do? @CAPS1, you better get yourself a laptop before the next giant essay comes! @CAPS2, even if you did go to the library, who wants to log all of your books down stairs, and drive to the library and then finally get there and realize you forgot something. Thats just a waste of time! Next, computers are positve because you can talk to your friends and family. For one it saves a load of money because email doesn't cost anything! I have a @ORGANIZATION1! email and I don't pay a cent for it! With a cellphone you have to buy the phone and pay the bill every month. Did you know the average american spends atleast #@NUM2 each month on cellphones? It's out @CAPS2, what if you never see a certain family member? I know @CAPS4 cousin just had a baby and her dad lives in @LOCATION1 @CAPS3. So, she got a webcam, and now everyday they talk, and her dad gets to see the baby. They think the they always talk about everything day, and other things. After, I have just said all these wonderful things, you look someone in the eyes and then than that computer don't help people. For @CAPS4 final reason, computers are positive because you could gain hand-eye corrdination, @CAPS4 brother, @PERSON1, loves, and I mean obssesive love, loves video games. He's addicted to them! He can't stop playing them, and I dont mind at all. I dont mind because now he can chew gum, jotdown ideas for his essay, think about whats he's gonna have for lunch, and play a video game. How's that for multi tasking! @CAPS2, you will be healthier. Think about it, better reflexes, better hand-eye, better and happier doctor! I mean seriously, if you play computer games you can have fun while knowing your going to make your doctor happy. And who do sent want to move your doctor happy! For @CAPS4 conclusion, computers have a positive effecton you because they help your education, talk to your friends and family, and have better hand-eye corrdination. Tell me right now that computer don't help people. I know, you can't because computers help us in so many ways." 5 5 10 +273 1 "Dear @CAPS1 @CAPS2 I think that computer have bad effects on people. The first reason why I think this is because people in the world are becoming less healthy kids and adults should stay @CAPS3 more. Kids and parents should only be aloud @NUM1 @CAPS4 on the computer then go outside. Computers are not so bad because @CAPS5 is helpful for looking up information but @CAPS5 is harmful @CAPS5 u abuse @CAPS5 kids play games on the computers and @CAPS5 damages there eyes and @CAPS5 makes them lazy. Also going outside there are lots of things to do instead of talking with your friend on the computer you should call your friend ask him to come over play games outside. @CAPS6 this continues lots of kids will be fit and @CAPS3. The second reason why computers are bad is because of what people past on the computer about other people. Do not ever put something put something bad up on the computer because sometimes they are deep secrets and million of people will see @CAPS5 and that person might be teased and laughed at. And really the computer could do horrible things @CAPS6 you and this person are freinds @CAPS5 could break you guys forever. The final reason why the computer is not good is because people are dieing from overweight there is several teams that are on comercials saying that kids and adults @CAPS7 up and be @CAPS3 @CAPS6 @CAPS5 wernt for theese heros much much more kids would die faster, when kids die they look at whats in side of them and scientest found big fat chunks around the kids heart. Well thats my theory I hope all of you listen to my advice @CAPS7 up shut the computer of and @CAPS7 @CAPS3." 4 4 8 +274 1 "Dear local Newspaper, @CAPS1 would you like to be warmly greted by the zingbobway tabe @ORGANIZATION1 @LOCATION2, say hi to a far away family memorr again or maybe quicker your relfexes? Well you can! Computers are a use ful way @ORGANIZATION1 complexing an @ORGANIZATION1 these tasks. Imagine your family member or friend fighting in the war miles away. Wouldn't you want to see them at least once? Computers allow you to interact with them with webcams. You can see them and talk with them. Not only can you talk with family, you can talk to friends. You can make new friends from around the world without leaving your house. You can have a new best friend every day! Not only can you talk to people on computers, they give you better hand eye coordination, and they quicken your raflexes. Dr. @PERSON1, @ORGANIZATION1,. says ""@CAPS2 have shown that people who type or use a computer have better reflexes than those who don't."" @CAPS3 a computer around is easier for school also I remember one time, I had to write a @NUM1 page paper for @CAPS4 and it was due the next day. I wrote the beginning @ORGANIZATION1 it and my hand started to cramp up. I had in finnish my paper soon so I ran to my computer and typed it in half the time I would've spent writing it. I also got a good hand-eye coordination . Not only do you type on it, you learn on it. @NUM2 out @ORGANIZATION1 @NUM3 computers are used for learning about place and people. Say you just won @NUM1 free tickets to go anywhere in the world with a celebrity at your choosing! With a computer you could research anywhere you want and make that trip the best days @ORGANIZATION1 your life. And even if you don't like actually going to other places, you can virtually go there on a computer. With computers you can see the @CAPS5 @CAPS6 @ORGANIZATION1 @LOCATION1, the tropical reef fish @ORGANIZATION1 or the @ORGANIZATION2 at the. Computers hold the world at your finger lips. So as you can see computers have a positive effect on people. Computers allow people to interact with cites, increase your hand-eye coordination, and allow you to have the world at your fingertips. So stop reading and use a computer!" 4 5 9 +275 1 "Dear @PERSON1, Advances in technology and computers is a bad thing. When the computer company's such as @CAPS1, @ORGANIZATION2, and @ORGANIZATION1, make cool updates to their computer systems people do not want to shut their computer off, which is not a good thing. As a child did you spend all of your time indoors and online? Computers take time away from spending time outside, or exercising. And they affect very crucial family time. Computer advances are bad for our country and town. Now-a -days, kids would much rather spend time on their computers than outside. This can have a very negative affect. First of all, it is important that students see and feel nature, and last time I checked they can not do that on a computer. Children need to see animals, smell the sweet scent of flowers and feel the breeze brush against their cheeks. A second reason that going outside is important is for the sun. Even though the sun does have harmful days, it is still important for health that everyone spends some time in the sun. The computer takes times away from nature which is unhealthy and dangerous. Computer also take precious time away from exercise. If people spend all their time on computers, then do they exercise. Everyone is supposed to get at least @NUM1 minutes of activity daily, but no one ever spends that much time working out. Also, obesity numbers have increased greatly since the invention of personal computer and the internet. Obesity can make life difficult for people and can also lead to disease. Life with computers has lead to less people exercising and obesity rates increasing. Another issue computers cause is that people are spending less time with their families. Family is one of the most important things in the world and everyone should spend a few hours daily with their family. Plus with encouregement from their family, many students excel in school and sports, which gives them graet self-confidence. Computers take time away from something that should be thw most important to everyone, family. Many people are affected negatively by computers. The technology takes very important time away from children and adults. It takes time away from the outdoors, exercising, and family. Yes, computers @MONTH1 make life easier, but they have a much more negative affect than they do a positive one." 6 5 11 +276 1 "Dear local Newspaper, I believe that computers are bad news. Most kids come home from school and go on aim. So they can talk to their friends. @PERCENT1 of @CAPS1 are obiese. I feel it is better to play outside with your friends than sitting in a chair playing on the computer. If kids go outside and play with their friends they will have more fun. Also kids will learn how to interact with each other by playing outside together. The kids will see more nature and be bale to learn more about animals. When kids are on computers they are sitting their doing nothing. ALso some kids post pictures of themselves on things like facebook that are not appropriate and cna get them in lots of trouble. They also say things that they wouldn't normally say to a persons face. The computer is simply a way for kids to get in trouble. Whne your outside palying baseball, football or tag with your friends you are getting exercise and your having lots of fun. If you are getting lots of exercise then you are most likely not going to be obies. Some say the computer is good hand eye coordination but catching a football or hitting is bettre. Also some say computers can tell you about far away places but that what school is for. I am saying that exercise and playing with your friends is better than talking in your friends or video chatting with them, @CAPS2 are to many over weight people in @LOCATION1 and the computer is not heloing the cause. " 4 4 8 +277 1 "Dear @LOCATION2 press, I wonder if you know that @PERCENT1 of people out of @NUM1 surveyed by the university out @LOCATION1 agreed that using lap tops and computers had a very good benefit on their life? I agree that computers benefit society and every day lifes. With a computer, you can interact with people all around the world, they can help with school work, and make every day life eaiser. Five years ago I had to move from @LOCATION4 to @LOCATION3. We had to leave all of our family and friends behind. However, with this great tecnology, we could e-mail them. Instant message them, and video chat with them, instead on having to face out money to make long distance calls. Theres many people out their like me. Who have friends and family far away, weather its family in different countries, old school mates and camp friends using a computer is a great way to keep in touch with one another. Using a computer can also more life easier. Moms taking care of their kids might not be able to go to @CAPS1 & @CAPS2 with one kid not wanting to get off his video games, the other watching their favorite @CAPS3 show. Thankfully that man and go online, pick the food that she and the quantity and she can get someone to deliver it. That mother also might not be able to get out and go shopping. So with her computer she can go to her favorite stores website and pick the clothes she wants. And then when @CAPS4 comes, a computer can be great not to worry about not having enough time to go and. A computers just have life that much simpiler!. Statistics how or people help online instant or going in. ""Computers are great, I can homework and know that if they to write planner than they we to and out. If, they can and more of information on the computer from @CAPS5.com, then they could find in their local library. You can find almost anything with search engins on your computer! Some people do disagree with the use of computers, or some also believe that some people abuse the benefit of computers and spend to much time on it and not exercising and enjoying nature enough. This is true, not as long as you stay reasonable with usage or your computer, it benefits you in many ways. Like I said, its great for keeping connections between people, simpling everyday life, and research for school." 4 5 9 +278 1 "Dear local newspaper, I think that computers effect people in a positive way. Computers increases our knowlage, lets us communicate with our friends and family, teaches us hand-eye coordination, and lets us see our news faster. Computers are enjoyable, great pieces of technology. Even though sitting down looking at your computer screen is not very interactive, computers increase our knowlage. Computers have all these websites that are full of great information. You can look up anything you would like to learn about and find exactly what you want. Going to the library for a book on your report would consume extra time. Instead you can look up the facts you need online. Computers also let us communicate with family and friends. Calling someone or sending a letter costs money, but sending on email to someone does not. Many people have family and friends that live far away from them. Through computers they can talk to them as long as they want at no expense. You can also see each other through a webcam. Which you can attach to your computer if it has not have in one allready. Another reason why computers are useful is because they help with hand-eye coordination. Computers require you to type, which is a great skill. While working out an essay by hand is tiring and boring you can type up the essay on you computer. Typing takes to get good at but is very helpful. Finally Computers help us get our news foster. When major things happen, such as the earthquake in @LOCATION1 it was all over the internet before the news. In conclusion computers are very useful and help us increase our knowlage, communicate with people, help us with hand-eye coordination, and lets us see our news faster. But most importantly computers are fun!" 4 4 8 +279 1 "Dear Newspaper, I believe that advances in technology have many positive effects, such as computers. Computers are great for people of all ages. Computers teach hand-eye coordination and allow people to learn information from all over the world. Lastly, computers allow people to communicate through internet. Advances in technology improve society and the over all way of life around the globe. Advances in technology are amazing. Computers show these advances greatly. With the simple use of a computer, one can learn great hand-eye coordination skills. Typing skills are a great example. Typing skills are needed by almost everyone in the world. Without computers, no one would have these skills. A young child can go on the computer, play a game, and learn basic typing and hand-eye coordination skills to jump start their coordination skills for the rest of their life. Advances in technology are great. These advances in computers can also allow people to learn worldwide information. Many times in school, students are asked to do a report on a different country. It would be very hard to do that report without a computer. The student would need to go through all different books to find specific information needed. With the internet, that project can get done a lot faster just by typing whatever you need to know. How about that family vacation you've always wanted to go on? Need an idea of where to go? Use the internet! All you need to do is type in vacation spots and click enter. Instantly, you will have hundreds of choices right in front of you. This makes life a lot simpler. Do you remember the last time your mom or dad went on a business trip and you couldn't talk to the because they were busy? there is a fix to this with internet. You can communicate with them through @CAPS1, @CAPS2 or both. Just hookup your @CAPS2 to the computer and instantly say good @TIME1, or hows it going. If you have a friend that you can instant message them. It is so easy that it will seem like you are standing right next to them on a matter of seconds. In conclusion, computers and advances in technology are great and can benefit everyone in the world computers tech hand-eye coordination, allow one to learn information from around the world, and allow communication through internet happen instantly. Writers and editors of the newspaper, please agree with me on this topic. Advances in technology can only add posotive effects to the way of life. Support advances in today's technology to help improve life for those of." 5 5 10 +280 1 "Dear @LOCATION1, I believe computers have a positive effect on people. They teach hand-eye coordination. Computers give people the ability to learn about far away places and people. They even allow people to talk online. Computers are a very usefull piece of machinery. Computers teach hand-eye coordination. When your in school, you need to type lots of @CAPS1 prompts, @CAPS2 labs, and @CAPS3 @CAPS4 vocab. Computers help us do that. Typing fast and correctly takes practice. Typing without looking at the keyboard is hand-eye coordination. This will help us later on in life also. Whether it's typing term papers in high school or your application essay for college, you will need the help of computers. Computers give people the ability to learn about far away places. @NUM1 years ago I look a trip to @LOCATION3 for the first time. I didn't know a lot about the history of @LOCATION3 so I sat down at my desk and turned on my computer. Suddenly, it was like I was in @LOCATION3! I read about the delicious food and rich culture. I took a virtual tour of the @CAPS5 @CAPS6 and the great @CAPS7. I heard @CAPS8 music and learned some @CAPS8. In just @NUM2 hour I visited @LOCATION3 right from my very own house! Computers can take you on a magical journey to a far away country. Computers allow people to talk to online with other people. This is a very good thing. I have cousins who live in @LOCATION2 and because of the @NUM3 hour time difference, its not always easy to talk on the phone so we use the computer. My family will send e-mails back and forth with them. Sometimes we will even video chat! @CAPS3 networking sights accesible by computer such as @CAPS10 or @CAPS11 allow us to talk to people who we don't regularly see. On @CAPS11 you can even talk to your favorite stars or musicians. Computers let us keep in touch with others. Computers have a positive effect on people. Some experts @MONTH1 say that people spend too much time on the computer and while that @MONTH1 be true to some people, its not true to everyone. We still exersise, and spend time outside. We still interact with family and friends but know we are also able to do so on the computer. More and more people using computer is a good thing." 5 5 10 +281 1 "Dear, Local Newspaper writer I believe that computers benefit our society because we could connect to people more faster and easier. And computers @CAPS1 good for our society because of we don't have to spend to much time on the phone. That @CAPS1 why I think computers benefits our society. ""@CAPS1 computers a good thing or bad thing?"" Computers are a good thing because you could email your family or friends any time you want too. But sometimes we don't have to be on the computer so long. That @CAPS1 why I think computers are a good thing. Without computers it will be different because you have to talk to people on the phone or text message. In my opinion I am really thankful that we have computers. And on computers you could go on everything like @ORGANIZATION2, @CAPS2, @CAPS3, @CAPS4, and even work on the computer. That @CAPS1 without computers it will be different. I think people are not spending to much time on the computer"", because a lot of people on the computer to do office work. Computer make things a lot easier for us! But sometimes people take advantage over it. That @CAPS1 why I feel people are not spending too much time on the computer. Last but not least that @CAPS1 why I know computers benefit's our society." 4 3 7 +282 1 "Dear @CAPS1, I heard that you wanted some opinions on whether or not computers have a positive effect on people. I know that a lot of people are against these positive opinions but I think computers have a positive effect on people. The main thing that computers are great for is research. Without computers, kids an adults won't be provided with the necissary tools for knowledge. Studies show that @NUM1 out of @NUM2 students have computers at home and that @NUM3 person without computer access gets about @PERCENT1 of a lower grade because of poor research ability on projects. Another reason why computers are good because it can bring the world together. Facbook, @CAPS2, and twitter users can chat with people accross the street, accross the country and even accross the ocean! People in the @LOCATION5 can play games and chat with people in @LOCATION1, @LOCATION4, @LOCATION2 and even @LOCATION3! My last reason is that computers are great for buiesnessess. A lot of people have websites for their jobs that can get them well known and for people to know what their buisness is about. Take for example your newspaper. Without computers, you wouldn't be able to get your research or even type or print your newspaper. Your website wouldn't be able to persuade people to read your newspaper. Even though some people might abuse their computer privlages by staying on too long instead of exercising or interacting withpeople but thats them. It's only @PERCENT2 of people with computers that do it! And so what, its their time and they want to spend it on the computer. What can you do to change? Nothing. And with that, I conclude this letter by letting you know that computers are great for people! They give us research, they help us with school and buiesnessess and they allow us to talk to people around the world." 4 4 8 +283 1 "Dear Newspaper @CAPS1, I am writing a letter to you saying that I think its a bad idea for you to make kids stay off of computers because it does teach kids something, it good to do homework on and you can relax when your on it. Well computers teaches kids a lof of things like hand-eye coordination. If kids want to work with computers when there older they can learn new to work with it. There is also websites that can show you how to move yor hands when using a computer. Well when kids come from school always have homework, @CAPS2 you need to do it on the comptuer so if you couldn't use computers it would be hard for kids to do there homework. So when they go to school and the class tells the teacher they dont have computers what are they going to do. So when I get out of school and I had a very long day. I go home do my homework and go on the computer and listen to music to relax. If you guy were to take computers away every one would be grumpy all the time. That is why I think you should keep computers and not exercise as much. We get enuf of that in school carry all these heveay books around." 3 3 6 +284 1 "Dear @STATE1 news, Computers are a great machine to use. People can research, learn about any topic or subject and let people talk to friends online I think that computers have a good effect on people. Computers are one of the great inventions we have. They are very helpul in our everyday life. When people need to write a paper for school or do a project you can research what you need if you need to know some thing about, a topic that you don't know about, you can look up questions you have about it on the internet. If your writing a paper and need an answer its all on the internet. Suppose you want to go on a family vacation to california you can plan your whole trip right on your computer, you can book a flight, get a hotel room and even see what there is to do you can see the whole world right from your computer. If you want to learn another language you can learn an entire language on your computer. Also if your to busy to go to collage or want to take another class there are even schools online. The computer is a great way to learn about new things. Finally you can talk to friends online websites like facebook and myspace are great ways to keep in touch with your friends. naother positive way is @CAPS1 you can instant message friends and family without having to wait so long for a response back. If you want your friends you can just message them. I think that computers have a positive effect on people. They are helpul in many ways such as people can do research, learn about new things and talk to friends I hope, you see my point at view they are samething everyone should have." 4 4 8 +285 1 "I walked into my living room. I saw my mom avidly reading the screen of our computer with pictures of caller masters and logos clastering the web page as well. I thought that the internet had just my mom better than I could that we should go on vacation. More and more people log on to a computer everyday, and although the people willing to change and believe in new advances in technology out on a strong argument of why computers are and there are still some that can only see the negative. I strongly support computers and believe they have a lot of potential. Computers make the work even smaler. They allow to talk to people thousands at miles away man instant. Also, you can reconnect with friends that you can't see anymore. For example, I used to go to an awesome @DATE1 camp and I made same of my best friends there. But @DATE1, they down, and instead of playing sports and having fun, I layed down on my basement to stand up because my sweat glued to the. Then one day, I heard the familiar that my computer's spokes when I receive an instant @CAPS1, I the energy to crawl over to the screen, to find out @PERSON1, one of my closest friends from wanted to take a bike ride down to the wall, and hang out with some other people we knew. to say I happily respond, ""@CAPS2 I definetly want to go,"" by a long scores of points. been for computers and @ORGANIZATION1. Instant @CAPS3, @CAPS4 would all have drifted apart and never talked again. anadem exaggerated argument people use against computer is that everybody that uses them doesn't exercise. I frequent my computer almost every hour, so I made a system to ensure I got exercise. Every time I walk the room my computer is hooked, I grab the pull up right and do @NUM1. I only thought of this system @NUM2 months ago and I have already my own muscles, and I can do @NUM3 pull as at a time but when I started I struggled to do @NUM2. If not for the amazing of computers that me back, I would still do exercise, only to after about a week. Computers give easy to the internet, which has so much information it is. Unless it is a closely grounded secret. You could probably find whatever you want on the internet. Ive gone countless time to find for an essay with the limited textbooks have just isnt what you need. My country project @DATE1 year couldn't have had more than @CAPS5 pleces of information from a book! It also makes a great teacher of about any subject as well. As a matter of fact, my language arts teacher told us a story about how ever the @DATE1 a ball that has never done any sort of water sports before, spent @NUM2 weeks watching videos on youtube about how to waterski, and on his first dearly doing tricks. These are only a few of the reasons I think computers are great. They keep friend ships close, give you a reason to exercise, and can teach you anything! I say we spread the good word about computers and let every one know how awesome they are." 6 5 11 +286 1 "Dear computer co., computers have a negative effect. Why would you go outside if you could play life - like games on your @CAPS1? I lthink that the games on th @CAPS1 should be removed so people could enjoy all of the great things in life. If people weren't on @CAPS1's all day, people would pay attention to the way they're destroying nature." 2 2 4 +287 1 "Dear The @CAPS1 @CAPS2, Your resources, your entertainment, even your communication with people might be fading. @CAPS8 you know a large portion of people think this @PERSON2 is harming our society. Well I will say I think they don't understand these benifit that computers bring us. Computer act like teachers teaching us without us even knowing it. Hand-eye coordination is a perfect example. Plus, we use computers to learn about places we might want to travel to, or have a conversation with frinds or family living ways away tromus. Computers is an extrodarny piece or technology. First, I like to say everything that you do physically uses hand-eye coordination. Making dinner, riding a bike, driving a car etc. And unfortiunitly not @CAPS6 people are the best at hand-eye coordination. One of @CAPS7 friends, @PERSON1, had horriable hand eye coordination. So for his birthday I decided an getting him a computer. It's been @NUM1 month since his he had his computer and @CAPS8 he was trying to hit a baseball at his sons party, he moneged to hit the ball @NUM2 out of @NUM3 where he used to hit it @NUM1 or @NUM5 out of @NUM6. @PERCENT2 is a termendous increase in only @NUM1 month! Just something @CAPS8 simple @CAPS8 a computer improved @CAPS7 friends hand-eye coordination a termendous amount. Secondly, the computer can help you learn about far away places @CAPS8 the @LOCATION1 or @LOCATION4. Do you really want to travel up to the icey cold, and piercing winds of the @LOCATION1 just to learn about it? For some I'd say like that but what if you cant travel up the @LOCATION1 due to money or flying conditions. I want to be able to study about polar bears and the glaciers without needing to worry. A statics from the @CAPS3 @CAPS4 of @CAPS5 states ""@PERCENT2 of people wpould love to experience the thrill and excitement of the @ORGANIZATION1 lights. But out of those @PERCENT2 only @PERCENT3 said they'd actually travel to @LOCATION2 to see them"". So you can see that @PERCENT4 of those people wouldn't go whether it be due to money or the cold. Thery @CAPS6 said thats why they love the computer. They can experience the @ORGANIZATION1 lights without needing to travel into the bitter cold.Lastly, that better thing to do on the computer than with family you've never met before or don't get to see them. The editor for the @LOCATION3 Local states ""@CAPS7 parents live over @NUM8 miles away. I rarly get to tell to them now because I can't afford to travel that distance ofter. So I use @CAPS7 computer, @CAPS7 parents and I now communicate @PERCENT1 more than we used to. I love the computer it helps keep me close to @CAPS7 loved ones."" @CAPS8 you can tell, thanks to the computer we talk @PERCENT1 more to his parents than he used to! In conclusion, the computer is a gracous device that is extremely benifital to people. The computer teaches us hand-eye coordination, lets us learn about places we other wise would never learn about, and to have conversations with friends or family that we generally dont get to see often. Now you go out and make anyone that says computers are a horrible inventions you tell them exactly why computers are so important!" 6 6 12 +288 1 "Dear newspaper, I think that using your computer too much is bad. Some people spend way too much time on the internet. Many people are too focused on the internet and they lack on their normal activities. Also, the computer is bad for people because they will be on the internet all night and get no sleep. This leaves them exausted for the day ahead. Alot of people spend too much time on the internet. Since they are always on the internet, they don't spend alot of time with their families. This causes the internet addicted person to lose relationships with their family and friends. Not exercizing is a result of this addiction also. For example, my stepbrother is always on the internet now. He doesn't talk to anyone because he is so preoccupied with his game. Another problem people encounter with the internet is being too focused. When you are too focused on the internet, you forget there is a whole world out there that needs your help, most people won't do their choires, or make a meal for their family. These people also have no time for their outdoor activities they used to enjoy. Internet addicts usually don't get any sleep. They have no time to study at night because they spend all their extra time on the internet. During the day, they will be very tired in school or work and the internet will be the one to blame. Last month my mom made a facebook. She is constantly on it. When she is on she ignores everything around her. My mom goes to school and she tells me how she never has time to study because she always on the internet. She also stopped reading the bible in her spare time to go on the internet. The internet is a bad thing to get hooked on. You lose relationships with your friends and family because you never get off the computer. People usually don't exercize or do thier chores. This is not a very good addiction to get into." 4 4 8 +289 1 "Dear @CAPS1, The effect that computers have on people is not a positive one. I think people spend way too much time on computers, some information on computers is inaccurate, there are still telephones and cellphones that people can use fir communication. A majority of peoples' time is spent on the computer. Whether its playing games, checking @CAPS2-mail, or even working, peoples' valuable time is getting used up. This time could be used by doing more important things such as being with friends and family, being outside with nature or exercising. Being on the computer insteads of exercising has had a huge effect on people. Some people are overweight because they eat and then do not exercise after. My sister works on the all day and she says @NUM1 or @NUM2 ladies at her work are un healthy because all they do is go on the the computer and eat granola bars, wich are usually healthy. If others spent at least a half an hour being outside to @CAPS3 some fresh air instead of using a computer most of them would feel a lot better. My doctor always used to tell me and my brother, ""@CAPS3 out and play an hour a day!"" This is true, and I strongly encourage people to go outside and do an activity as opposed to playing on the computer. The computer is used a lot for researching. Some of the information on the computer is very helpful, but you can never really know what information is inaccurate. At least when you research using a book or encyclopedia, you can trust those sources. What if you had to do a report and you could only use the internet, how would you be able to tell if the information is trustworthy? Sure, computers also teach hand-eye coordination by playing video games, but when in real life, will you need to know how to shoot a dragon or dodge candy that's falling from the sky? This is just an example of unneeded information and skills that keeps people wanting to go back on the computer. Another thing you can do on the computer is communicte with others. When computers weren't invented or even that advanced, people were more than happy to give one another a call. Now with computers, people @CAPS2-mail, instant message, or even skype; a webcam website. What even happened to cellphones, you can take." 5 5 10 +290 1 "Dear reader, @CAPS1, people have been debating whether or not computers are actually benefiting society, especially now that the majority of @CAPS2 now own one of these helpful machines. Computers help people with everyday tasks and are no doubt doing more good than harm. Imagine how impossible it would be for most people to do their jobs without them life would become much harder for the people living on this planet. Think of the successful schools in our country, and then think of which of those schools don't have computers. Computers are the easiest way to look up information, something important when children are learning. Whenever someone needs to know something, they just google it. This comes in handy when researching for that huge project due next week. People have never been so knowledgable. Computers are only important for school, but also in the work place. They serve almost the same environments. Now that computers are so common, people can conveniently type up a paper and submit it to their boss or teacher. It saves time and effort with a more professional result. Computers also serve the important purpose of communication using email or instant messaging, one could communicate with someone on the other side of the world without that enormous phonebill.Some @MONTH1 see this as dangerous because you could be chatting with a complete stranger. However, it is also opening your eyes to new cultures. Now it's possible to learn about life in @LOCATION1 first hand. If computers were no more, it would be extremely hard for a regular person to interact with someone from another country. It's almost like isolation from the world. There are many out there who take great interest in learning other languages. Better ways exist than sitting in a classroom listening to someone talk. As a person on this planet, do you really want to be kept separate from others just because they don't live close enough? A main concern about computers is that no one will want to read books and anything else. However, a recent study shows that after computers came out, more people have begun to read. This proves that just because there is now something fun and new, it doesn't mean everything else is trash. People will still continue to do things they always did, just with something new on their list. In addition, it is the option of everyone w/ other or not they want to spent their time on the computer. If someone doesn't like the idea, they've no right to take it away from someone else computers were created to help the human race not control it. If a person doesn't want one, they don't have to get one, everything is up to them, and that is the way it should remain. The next time you see a computer, don't think of it as some sort of obsession that's keeping people from doing other thinkgs they could be. But as a universal device that allows them to broaden their horizons and learn things they probably wouldn't go to the library to look for comuputers aren't holding anyone back, but pushing everyone forward, whether at work, school, or even the house, they benefit everyone, everywhere." 6 5 11 +291 1 "Have you ever thought about all the amazing things that computers have done for us? Now, we can learn about anything we want, talk with people on the other side of the world, and even advance in other areas of technology. Computers have, without a doubt, had a positive effect on people. Just imagine this...one second you can be in the blazing deserts of @LOCATION3, the next in a losh, steamy, jungle thriving with animals...All without leaving your room! Using computers, people can learn about new places and things whenever they want. The millions of resources on the internet make it possible to learn about t other places and times. Although this information @MONTH1 be in a local library. Going on the computer is MUCH easier. Who want to go through the trouble of loaning books from the library, when the internet is there for your use any time? No registration to get a library card. No late fees and no waiting lists. It is quite clear that using your computer to do research is a very valuable thing. @NUM1 out of ten people said that they would rather email a person than talk on the phone with them. Now, with computers, people can instant message, or email anyone, anywhere in the world. Making a call from @LOCATION1 to @LOCATION2 can be very expensive but with email, I can talk to my @CAPS1 friend, @PERSON1, free of charge. I remember when she moved to @LOCATION2. It was sad, but we promised to stay in touch. With e-mail and instant messaging, it was easy to talk, and exchange the latest news! Having the ability to communicate with soemone easily is an unbeliveable privalige, that would be none existant without computers to help us. Lastly, computers have helped people make advances in othe areas of technology. Where would we be in science and medicine without computers? These machines have helped scientists to do experiments. With a simulated expiriment they can be positive that no other variables will affect your results. Now, experiments can be extremely acurate. Computers have helped advance medicine as well. They have been the key to unlocking all sorts of cures for dangerous diseases. Who knows, maybe in @NUM2 years therew ill be a cure for cancer. All of these amazing accomplishments have been positivly effected by computers. ALthough some people @MONTH1 think that computers have a negative impact on our day-to-day life, I @PERCENT1 disagree. People have learning, talking, and advances in technology with one click of a mouse. Computers have effected people positivley in many ways, so, click away! Computers have none of that." 5 6 11 +292 1 "Dear @ORGANIZATION1, @CAPS1 the world forty years ago. People would need to travel to visit a library to research, every document, doctors notes, and building plan would have to be written by hand or on an old typewriter. Life would have been much more difficult. Today, computers allow us to communicate with one another, access the millions of websites on the internet and help with school work. Almost everyday, my mon and dad receive friend requests from long lost school friends as well as relatives and current friends. Today's computers allow the world to talk to one another and know what is going on. My dad always says "" @CAPS2 makes the world go round."" With the social networking sites, everyone is receiving tons of @CAPS2 about one another. Another way to communicate is by video chat. All @CAPS3 computers are equipped with a video camera and you can buy one if you have a @CAPS4. This will let you see the person's face are talking to. I have heard many amazing stories about this. One is about a soldier in @LOCATION1 and his present wife back home. The doctors set up a computer equipped with video chat in the operating room and the soldier was, in a way, in two places at once. The man got to see his newborn baby and his wife. Computers can do amazing things! Another reason computers are great is their accessability to the internet. There is this cool website called @CAPS5.Dcotors.Com. If you have an illness or a symtom to something, all you have to do is type it in on the home page and it will list all the possible reasons or outcomes. It also tells you how to treat it and where to find the medicine. If we looked back in time, one would need to travel to a doctor and pay to have your problem checked out. Also computers help out immensely with school work and homework. Many teachers nowadays request or demand students to type their asignments because it is easy to read, and it is easier to correct. I also find it faster to type then print. Say that you need to research the periodic table and write down @NUM1 facts as well as all the elements. There are probably hundreds if not thousands of websites on this subject. All you need to do is type it in on google. You can also add an image by copy and pasting; which will inhance your work. Computers have helped students and teachers. Lastyly, computers (and tehn keyboards) are helping people with hand - eye coordination. Many schools are offering typing classes to try and help students. I recently searched this topic on the internet and it showed a study done by @PERSON1 and @PERSON2 that people who practice typing at least @NUM2 minutes a day, will experience increased hand-eye coordination to @PERCENT1 better. This increase would help many, people with low coordination. Today, computers are helping the world in many ways. From communication, to internet accessability, then to helping hand-eye coordination. The world would change for the worse if computers were abandoned. " 6 5 11 +293 1 "Dear Newspaper people, @CAPS1 opinion's on what effect's do computer's have on people is without the computer we couldn't research important people and event's. Also we couldn't type important paper's. Last we can talk to other people. Now that @CAPS1 first opinion is without the computer we couldn't research important people and events. This is one of @CAPS1 reason's because if people didn't know anything about an important person they could look them up. For an example who is harry @PERSON1. He was the @NUM1 president. I didn't know who he was or what he did until I looked him up on the internet. @CAPS1 second opinion is we wouldn't be able to type important paper's. I say this because people that have @CAPS3's mostly have to type paper's. And without the computers everything would have to be hand-writen. Also some people have bad hand writing. @CAPS1 last opinion is we can type to people that are online and offline. I say this because if you have to tell a family member, or a friend something important but, you phone is dead or broken you can e-mail them. Or if you have a facebook you can tell them on that. Last you can I.M them. Now that you know three opinion's on what effects computer's have, people can alway's excrise around there house or around there block." 4 4 8 +294 1 "Dear readers of @ORGANIZATION1, @CAPS1 people today are depating whether having a computer benefits society. Computer benefit society in @CAPS1 way like it could help the childer with thrie school work. Not @CAPS1 childern are very out going but if they had a computer thatn that will really help them. Not @CAPS1 kids have ways to find out what their going to be in live. I'm pretty sure they don't care right now but the computer will help them out. As you can see the computer can help society. Every childern who goes to school has homework since kindergarten to when they end school. The computer can help them with their math homeworks, thier science, and even their sosial studies homework. When your kids get older starting middle school they have to do reports & pajects that recuar knolige tobe able to write or do the paper. If your a and can't take your childern to the libarey to take out @CAPS1 books that could get lost and you would have to pay for something that has been but and is not ablt o use again. But the computer all of that to society. The compter can help the comuncation in so @CAPS1 ways. @CAPS1 kids like to go on @CAPS2 to chat and parents think that @CAPS2 is their world, but it could happen that they are aranging a group to for. Now a days their are a lot more shier people who are scared to @ORGANIZATION1 people and be friend. but now their could be a lot more depress. The computer could also help you because you could be late or unable to go to an apointment or to a meeting & you lot the person in. This is a great way why computers help societey. In sociatey their are not a lot of people who now right away what they want to be when they grow up. If they us the computer and are really good at fixing them when the're broken that the ran be as computer @CAPS3 are so @CAPS1 beautful places that people take pictures of and up loud them into their computer. Some people don't see their talent until someone points it out to them. @CAPS1 people could be have a bad day and write a story out of it and send it to some of their friends, @CAPS4 their friend can send itto a publushers and make this person @CAPS5. As you can see their are so @CAPS1 great ways you can use the computer to help your sociatey. Readers the computer can help you in your school work. The computer can help the socitey communicat. It could also help people find their @CAPS6. I think that the computer does a great @CAPS6 helping the sociatey." 5 5 10 +295 1 "Dear Newspaper, I strongly believe that technologies for kids and adults to use computers. I strongly believe that people have a bad affection people because you addicted, you spend less time with your family and friends. Finally, you spend less time excercising and doing great opportunities for your self. Clearly, i think that lettng students and adults use computers will take over their mind and make them addicted to the computer. This very bad because when your addicted to something, you can go back. This means you will have time for anything. For example, they micht forget what life is about and what was around for us to live in. Addiction is hard to get over , so don;t live your life in a box and play on nonsens live your life to the fullest. Over all, addiction in everything, including computers and a horrible . Without a doubt, spending too much time on computers will rott your brain and make you lazy. Meaning that the less you excersise, the less active you are. This problem is specially for teens. Teens have computer every week. cell phones, ipods, and many more. Alot of teens get cranky and the become node and neisty to their parents because they are testing to. As people dont excercise and move around alot, cause severe consequences like obesity and cancer. Obesity usually happens when you eating food, but it can also ahppen by not eating and not exercising. People that arent moving become lazy and have no desire to do anything which will an effect . Overall computers cause people to do the excercise and less active which will cause . Lastly, Computers make people spend less and less time with their family, and treat their computer as if the computers are . In everyday life , teens on their cell phones , their computers listening to , music . these electronics are causing. If this goes on alot of teens will loose the people they. Computers are a waste of time because they can make you. because they have affect on people who use computers and other electronics. " 5 5 10 +296 1 "Dear local newspaper, my name is @PERSON1, & I think that computers are very usefull and that people learn a lot from them. The computer is very smart and is probably the best technology invented. Computers help when you need to know something about a certian person. @CAPS3 example is it helps students with homework. Last reason of why I think computers are useful is that they help you get a hold of family and friends. First example of why I think computers are usefull is they help you if you need facts about a person. One example is you want to go to your a policeman and your leader tells you to meet him at @ORGANIZATION1, so you go there and he tells you the person they are going after but you dont know anything about him and you need a computer to see what he is convicted for and see his criminal record. @CAPS3 example is if your teacher wants you to do a report about"" @PERSON3 lopez,"" but you don't know anything about him so you would use the computer and read about his life. Last example is if you want to learn about your countries history and the leaders behind it then you would use the computer. Second example is students and their homework. One example is when your teacher says ""I want a essay on @PERSON2 and I want it to be neat."" But you have very handwriting and you cant do it on paper you will have to use word or a writing program on @CAPS3 computer. @CAPS3 example is if you forgot to write down your homework in your agenda or something then you can go on the school website and see what your homework is. Last example is if your teacher says find the book about the @CAPS1 and you go to the library but everyone is taken but you have one by tomorrow. So you can go on the computer and find a place that is closest to you that has the book. Last reason of why I think computers are helpfull in this society is because they help you get a hold of your friends & family. One example is if it takes to long to write letters to each other so you run use online messengers for example like ""@CAPS2"" or even ""facebook and myspace."" @CAPS3 example is if you don't send the letter to the write addrees so what you do is go online and ask a friend or family member. Last example is if want to see the person and talk to them so you can go webcam with them and even talk. I hope you agree with my opinion and think computers are usefull an also good for people. It helps people to learn about others and information about them. Second it helps students with school and homework, and lastly because they help you get a hold of family and friends. Therefore, I hope you like my letter and enjoy my opinion." 5 5 10 +297 1 "Dear local Newspaper, I assume you've heard about the ongoing debate about computers. I personally believe that computers do benefit society. I believe this because computers benefit by its online, internet, and overall help in other things. My first reason for why you should believe that they benefit society is that computers have online. By online in chat rooms, bank, etc. this helps because people talking to other people online can beast there their morale. it can boest morale in situations like with military officers, soldiers because they don't get to see their family but online can change that in on instant. Online also helps because you can pay bills to gave bank and it overall saves a trip to the bank & a waste of gas. So, online is my for why you, the local newspaper, should agree with me. My second reason is that the internat benifits a lot. The internet, a marvelous created @NUM1 years ago . Its great because you can buy things it, like on a websites such as ebay, amazon, etc. This helps because it also saves time. The internet is great also because with the internet, you can learn of foreign nations. Finally, the internet helps because you can receive news through it. This benefits society because people can instantly hear about natural disasters & problems occuring in the community, rather than hoping to find it in the new or on television. Thats my second reason for why you should agree that computer do help. My final reason for why computers benefit what the help, overall in other situations used later rather thab just the computer. For example one way the computer can help in the future, is that a student can research info a bout a subject online and it can help raise their grade on a project. Stedy has proven that computer training in the , by playing online games with other people, like in call of duty, helps boost soldiers' accorucy. it helps because it boosts their hand-eye coorination & we all increases their accuracy in target shooting @PERCENT1. This @MONTH1 not seem like much but, on the battle field, it can make the difference between life on death. Computers not only help that but they are plentiful & can be used in places such as libraries on internet cafe. That my final reason for why you should go with computers. Some people might believe that computers are bad thing sina they take time away from exercise, but that can easily be solved by using the internet to buy an indoor joggee. Computers benefit society by using online. the internet, and overall help in future situations. There are the reasons for why I believe you should go for the cause of computers. Thank you for taking the time to read my opinion." 4 5 9 +298 1 "Dear Newspaper, I think computer use is good because, it will teach people to have hand-eye coordination. Also people will have the ability to learn about different states and countries. I ask people would be able to interact with their family and friends from different towns. Those are all the reasons why I think computers are a good use. The first reason why I think people should use computers is it will teach people to have hand-eye coordination. People will know how to stay focussed with their eyes and also know how to also use their hands all at the same time. To stay focussed with their eyes people would have to wear glasses for the light. Also so when they are typing they wont have to keep looking down all the time. When people coordinate with their hands on the computer its so they know were the different are thats why computers are good. My second reason why computers are good is because people will have the ability to learn about the different states and countries. They can also see how nice or bad the countries and states look. Also they will be able to read about what different cultures they have and religions. In the states also be to read about @LOCATION1, @LOCATION2, and how we have a wonderful state. That's why computers are good use. My final reason why the use of computers is good because, people can interact with their family and friends online. There are a lot of different websites you can go to that you can search for one of your family members or friends. You can talk to each other. Also you can talk to them even if their in a different state. You guys can talk about a lot of different things. For example, the family and life and even if you miss them. Thats why computers are good. Those are my reasons why computers are good. Not only can it teach you about hand-eye coordination, family and friends, and about different states. But also you can play a lot of different games and also type on an notepad. Also if your stuck on a math problem you can use the calculator. That's why people should use the computers." 4 4 8 +299 1 "Do you think computers have a negative effect on people? Well I don't I think @CAPS2 is on easier way to get information faster. The three reasons why I believe computers have a positive effect on people are to learn about faraway places, to have jobs in the computer, business, and you are able to talk to people from faraway. These are many other reasons but I'@CAPS1 only required to talk about three. First of all, you are able to learn about faraway places you can learn about places you aren't able to see in real life. @CAPS2 is a faster way to get information about news that wouldn't be able to out on newspaper until the next day. If you dont have money to travel then you could just go on the internet and see the faraway places in many ways, @CAPS2's just a better source of information. My second reason is to have a job in the computer business. There are alot of jobs that require computers. If we didn't have computers more and more people would not have jobs. Also, business would be slow because they wouldn't have the information they needed. That is why computers are needed. Lastly, you are able to talk to people from faraway, yes people are able to talk through the phone but its not the some if you get to talk and see the person. Video chat is a great way to make new friends and still talk with your old friends. You can talk to relatives, friends, or anyone you want to talk to. If we didn't have computers you would lose touch with people you know that live faraway from you. That would be a terrible thing. In conclusion computers are an easier way to get information. You can learn about faraway places. You can have a job in the computer business. Lastly, you are able to talk to people from faraway, I think computers are a positive thing." 4 4 8 +300 1 "Dear @CAPS1 @CAPS2 @CAPS3, @CAPS4 you look on a map of your effect all you see is computers everywhere. A map of the town compouters everywhere the state, the country, and even the world all you see are computers everywhere. @CAPS8 need to shut down these computers so @CAPS8 can start excersising, enjoying nature, and interacting with our families. It's times to finally help the world soldiers. Men, @CAPS4 you look around what do you see. Nothing but obesity. These so called computers are causing this why, look over there. There's @CAPS5. He used to weigh over @NUM1 pounds. All he did was use that blasted electrical error @CAPS8 call a computer. One day he realized he could do this no longer, and got same exercise. After only a year @CAPS5 just wayed @NUM2 pounds. You see, a man named @PERSON1, who's a doctor, computer expert, and wrote their books on exercise, nature and family, says, "" @CAPS7 people would shut off their computers and use the gym, over @PERCENT1 of @LOCATION1's obesity would drop. ""@CAPS8 must stop the madness men. Soldiers, do you know what's really a share about the enemy @CAPS8're fighting? It's causing people to miss out on this beautiful nature. You know @PERSON1 says that over @PERCENT2 of people will never go in nature @CAPS7 they get a computer. They don't know what their missing out on. I can picture it now the freshly plump hanging from the full bush of soring green. The mosuelous waterfall that shines @CAPS4 it off into a creek.The full dark scenary majestic. Lets not forget the lalaby of the crickets and owls putting you in a deep slumber under the staggering oak trees. This, soldiers, is what @CAPS8 need to get people hooked on not time consuming electronics. Men, do you want to know the solders part of this war? The hostages of the computer can't even sped time with their families. They're so busy on @CAPS9, @CAPS10, and other death comps that the real things important our alone. My friend @PERSON2 was one of the captives of the computer. He escaped just in time to stop one of his kids from going to an illegal party. Ever sence then, @PERSON2 has put his family before anything. Other families arn't us lucky though. In fact have @PERSON1 says that @PERCENT3 of families with copmuters have no communication and end up splitting up. The computers have gone to far now. Not only did they mess up people's lives, but their family too. This was must end now. Do you see our future now? It's filled with the computers on top. @CAPS8're their slaves @CAPS4 @CAPS8 come at their call. They won't let us excersise to shape, see the beatiful lands of nature,or spend time with our families so @CAPS8 can keep it together. This is why @CAPS8're fighting this is why were here will you join us?" 4 4 8 +301 1 "Dear @ORGANIZATION2, @CAPS1 @CAPS2 of @CAPS3 is all about Computers. They can do anything. But think are they really helping us? Yes, they do research and all of that but physically they're not. You spend less time exercising, interacting with family and friend, and the impact that computers can do to @CAPS1 lives in the future. Exercise is necessary in @CAPS1 lives. ""People need to get out there and do something other than be in front of the computer screen"". says @PERSON1 of @ORGANIZATION1. fact is one hour of exercise is good for your health. However, two in three @CAPS4 wont do so. Thats why @CAPS1 @CAPS2 on is the way we are @CAPS3 I lazy, unactive worthless and overweight. As a result, computers are the blame. Are there some relatives you been face to face with @CAPS5 its because of computers. Computers @CAPS3 let us things like video chat with relatives for or go on facebook and myspace or @CAPS5 @CAPS6 to chat with them or email. The problem with this is being lazy. You could be out there getting to were your relatives live to see them. but why waste enemy going to travel agency when in the internet instead say travel agent @PERSON2. @NUM1 in @NUM2 people havent seen there relatives for other states in years. People need to go computers @CAPS7 games, @CAPS8 hows all on the computer at the You dont even have to take This is bad, People need do @CAPS11 the old fashoned way. @NUM3 out of @NUM1 @CAPS4 use the computer daily. People lose jobs over computers. Everything is made so simple, theres no need to hire secretary, as employ and more office personals. Factories, They dont need many people. Computerized @CAPS10 can take over jobs quicker, easier, and cheaper. They will one day take over. Thats not good. In conclusion, Computers @MONTH1 seemed like the best thing that hit earth, but if you really, really think about @CAPS11, @CAPS11's not. @CAPS11 prevents you from exercising, seeing friends and family, and cam impact @CAPS1 lives in a bad way. I hope you see where I'm coming from." 5 4 9 +302 1 "Dear @CAPS1 times, @CAPS2 you think computers benefit society? Well I think so! There are countless reasons why computers are both resourceful and helpful. Many citizens in our own community of watertown think computers are a great resource for many things while others disagree with this completely. Computers can benefit society because you can learn many new things on the internet, also you can interact with your friends and family, and lastly there are many applications used for business. On both a computer and the internet there are more than @NUM1 million things you can learn. When you are struggling with homework a computer is a great resource. You can quickly open @CAPS3.com and search any topic at any time. For example, if you did not know a conversion it is easily found on the internet. Another thing you can be taught or informed about is news. There are websites such as nytimes.com and cnn.com that give you daily news. I personally use these websites weekly. On the computer you can find vacation sports you want to learn about and go to. When my family was planning our trip to @ORGANIZATION1 in @LOCATION1 we used the computer constantly. In the end, computers can teach you many things. Secondly you can interact with people on the internet in many ways. These include social networking websites, webchat and email. Social networking websites are a great way to connect to family members and friends from the past. Websites that were created for this include: facebook, myspace, and twitter. These free websites let you add friends, send messages, and post pictures. Web chatting is a way to video people. You can personally see someone from acroos the @ORGANIZATION1 from your webcam. Lastly, emailing is a great way to inform people. You can write a visual letter to one of your friends. In conclusion, the computer is one excellent way to interact. Lastly, the computer is used for business. An application called microsoft office is used in countless bussinesses, microsoft office word, powerpoint, excel and @CAPS4. Each of these are used to plan, sell, present, manage, and write about products. Microsoft is something you should download in the near future. Business also use webchatting, as I previously state, for conference calls. A production company can be face to face with a company from china without being in the room with them. This makes it much easier than to fly half way across the @ORGANIZATION1. Finally, computers are used when manufacturing a product in or at a business. Work sites such as @CAPS5 companies use computers to control their machines. I know that the @ORGANIZATION2 factory uses computers in their factory due to the fact that I watche the show unwrapped about them on @CAPS5 @CAPS6. In the end computers are a necessary item in a business. In conslusion, computers have a great affect on people. The can teach people many new and exciting things they did not know. Also, connect humans with each from half way across the @ORGANIZATION1. Lastly, businesses would not run well without a computer. Computers can benefit society because you can learn many new things on the internet. Also you can interact with your friends and family, and there are many applications used for business. If I were an expert I would have nothing to worry about concerning computers. They are a magnificent thing. @CAPS2 you have the same belief and understanding as me?" 5 5 10 +303 1 "Dear @CAPS1 @CAPS2, The use of computers does not benefit our society. Instead of spending time with the people we love, like friends and family, our time is knawed up by the one electronical device that many people depend on; the computer. This is not a very good thing to have an electronic device like this in our ever day lives because it uses a lot of electricity, it is expensive to buy and replace, and it allows hackers or other bad people into things we dont want them to see. But using electricity is @CAPS4 the start. By using electricity for this nonsense device, we waste money. We also are doing our part to destroy the environment. Greenhouse gasses and fuel are poisoning the air and being wasted. ""I don't have a computer at my house, and I get along pretty well."" @CAPS3 a local environmentalist. So that's @CAPS4 it; we can get along well without the computers taking over our lives. Along with not being good for the environment, it is also not good for the economy. My dad always @CAPS3 how he doesn't like to waste money, and then he goes and purchase a computer. Not only has this computer crashed once, but twice! A waste of money has been put into buying it, restoring it once, and now restoring it a second time! Plus computers waste our time. I always remember my grandfather saying "",I don't know why you folks waste all your precious time and money on these doo-dads!"" With so many people aquiring new devices, fewer people will be able to keep track of what goes where and who sees it. This is a terribele thing for the people, but a very, very good thing for the bad people. By ""bad people"" I mean internet hackers. As time goes on, and people get less aware of what's happening in their electronic lives, more and more hackers will be able to get what they want; in fact, anything they want. ""@CAPS4 a few months ago, I put a message on the message board on the @CAPS5 website which said I would be on vacation for a week. My address was also posted, because that message was a mobile upload. When I came back from vacation, half the things in my house were gone!"" said a local resident. Burglaries, robberies, and internet access can lead to chaos. Feeble protection is never good. But remember, computers are using massive amounts of electricity, amking many people waste time and money, and allowing bad people into things we don't want them to see. Please understand the meaning how terrible computers are." 5 5 10 +304 1 "Dear local newspaper, @CAPS1 opinion @CAPS3 as to why some people support advances in technology belive that computers have a positive effect on people is that I disagree. Some people dont even get enough sleep if they stay up too late on computers. Also they spend less time exersizing and less time interacting with family and friends. Thos are @CAPS1 reasons as to why I disagree. In this paragraph I am going to tell you about why I think that people should @CAPS4 other things than going on the computer all night. If they wake up in the morning and start being grumpy dont blame them the computer had them stay up late. Would you rather get a good nights rest or be extra tired in the morning because you stayed up too late on the computer? Well once I stayed at @CAPS1 friends house and she was up on the computer all night she didnt even get any sleep. In the morning she was soo grumpy because she was soo tired. @CAPS1 languege arts teacher ""@PERSON1"" says that ""@CAPS2 up late on the computer all night isnt healthy because you get bugs under your eyes and youre sleepy. I mean theres a whole lot of side effects."" @NUM1 out of @PERCENT1 of parents agree with me and @CAPS1 first reason. In this paragraph I am telling you @CAPS1 second reason as @CAPS3 why I disagree which is less time excersizing. (@CAPS3 the parents) @CAPS4 you realy want your kids to be lazy and on the computer all days or @CAPS4 you want your kids to excersize and get healthier? @CAPS1 friends kids always are on the computer everyday all the time and thats not verry healthy @CAPS3 them especialy because they're young. So a couple of weeks ago I talked to them about being active and how its not good to be on the computer alot. Now they bearly go on the computer they always are outside and playing and running around. @CAPS1 science teacher @PERSON3 says that ""@CAPS5 excersize is better than doing anything non active also it can be fun. @NUM2 out of @PERCENT2 of kids agree with @CAPS1 science teacher @PERSON2. In this paragraph I am going to explain to you why I think interacting with family and friends is better than on the computer. If you were in your familys shoes @CAPS4 you think that they would rather have you come hang out with them or be on the computer? When I was younger @CAPS1 family used to have to yell at me to get me off the computer so I could hang out with them but finaly a day come when I got to understand their family pain. @CAPS1 mom says that ""I should hang out with @CAPS1 family and friends more often."" @NUM3 out of @PERCENT3 of @CAPS1 family members and friends agree with @CAPS1 mom. @CAPS3 @CAPS1 conclusion I disagree with the statement ""Some people support advances and technology belive that computers have a positive effect on people."" @CAPS1 reason as @CAPS3 why is that people arent @CAPS5 enough sleep, less time excersizing, and less time interacting with friends and family." 4 5 9 +305 1 "Computers, a very much talked about subject. Did you know that @PERCENT1 of homes in @LOCATION1 own at least one computer. And that goes for about @PERCENT2 in @LOCATION2. Some people don't like that this is true, but on the other hand some people do. I have a computer, it can do so much, for example it can help me with writing, I can play games on it and socialize with social networking sites and ""I.M.'s"", it can even help me order a product form a website like @ORGANIZATION1, @LOCATION3, or @LOCATION4. Like I said, I have a computer and I can use it to help me write. At school in english, I would use my computer to help me with a writing prompt. I also use it to write conclusions for science labs. There are a lot of other kids that do this as well, it really is very helpful. That is only one of the reasons I think computers are beneficial to society. Another reason I think computers are beneficial to society is because you can play games on them, like ""world of warcraft"", ""@CAPS1 @CAPS2 @NUM1"", or classics like ""@CAPS3 @CAPS4 @CAPS5"". There are millions of people that play games on the computer. Also you can socialize with social networking sites, like @CAPS6 and twitter, and also because you can ""I.M."" your friends. I.M. stands for @CAPS7 messaging, and it is kind of like email except it is just about instantaneous, and so you and friend can have a conversation over the computer. Also there is video chatting, where it is kind of like a phone except you can see the person you're talking to and it is over the computer, so it is almost like you and the person you are videochatting with are meeting face to face, but your not. A third reason I feel that computers are beneficial to society is because you can order a product over the internet form shop websites. For example, I got my @CAPS8 from @LOCATION3, and also the bulb for a @CAPS9 in my house is wearing out, so my dad is going to buy a @LOCATION1 bulb on @ORGANIZATION1. It is things like this that make life that much easier for the @CAPS10 @PERSON1, because this way these people don't have to drive to the store to buy something, that is, if they can wait a week or two for the product to arrive. These are the kinds of things that make me feel that computers are beneficial to society. I know they might not be the best reasons, but they are quite important to me. Being able to type essays, play games and socialize, and order products form websites is just amazing. These are some of the reasons that I and others love computers. But I have a question for you, why do you like or dislike computers?" 5 5 10 +306 1 "Dear Local Newspaper, Computers are important for growth. They teach us skills like hand-eye coordination, they allow you to talk online, and learn about faraway people and places. I do believe that it benefits society even though many people dont. Nine out of @NUM1 schools use computers on a daily basis and their community is still fine. I know you think its taking away real social time but it really is improving the community. Imagine a student playing basketball, and his teamate passes the ball to him and he can't catch it because he has no hand-eye coordination skills. That wouldnt happen to him if he spent more time on the computer. There are many coordination games on the internet, like pinball of @CAPS1, that help build that up. When you play those games you keep your hand on the mouse or keyboard and your eyes on the screen. It helps you to not look down. When you play basketball, you can catch the ball and still throw it if you have good coordination. out of @NUM1 people keep in touch with family or friends online. Its the greatest feeling when you talk to someone you haven't seen in awhile because you know that they still remember you. When you talk to people online, you get to know them better and they tell you things that they dont want others to know. Also, when you meet up with them, you have more things to talk about. What would happen if you were to go to a location that you thought was nice, but it turned out to be the worst place ever? It would be terrible, but if you looked it up on the internet, you would know the truth about it. Lets say you want to know about someone famous, you look it up on the computer. There are many educational things on the computer that can help you out in life. I do agree with you on one thing. Society is losing its communication skills. Being on the computer all the time isn't doning anyone good. Nobodys picking up the phone and calling their friends to talk. They are distancing themselves from everyone but their computer. We dont want out society to stay this way. The people who spend their day on the computer need to change. I think computers are an asset to the community. Many people believe that computers are ruining everything, but they really aren't. Computers are good for learning about people and places. The question is, do you want people to refrain from using computers? Now is the time to decide, do you want us to use computers to furter our education or not?" 4 4 8 +307 1 "Dear local newspaper, This world is filled with electronics. These days the computer is the latest hit. But even though it's popular, is it really the best item to have? Many children and even adults are hooked onto the computer. It is taking away their life. Four out of five people each year are losing interest in going outside to play. That's not how you should spend your life. We all want our children to be active and healthy, not be a couch potato. Each day, more kids are getting addicted to the computer. Now, every time a parent needs to punish or ""ground"" their child, they take away the electronics. What ever happened to grounding them from going to hang out with their friends or just playing outside? Another horrifying conclusion that the computer does to us is rip apart us from our loved ones. Kids are more worried about ""@CAPS1"" or ""@CAPS2"" or even trying to slay a dragon than spending time with their family. They would pick the computer over someone who has been in their life forever. This computer is splittling families apart. Now, more families only spend time with each other when they eat dinner together. Also, rather than talking to their parents about a problem, kids are going to websites like ""@CAPS3"" or ""@CAPS4.com"". More people don't enjoy doing some things now because of the computer. Not many like going out and enjoying nature. Some don't like reading anymore because they rather play games. Some people don't even want to pick up the phone and call for a pizza. Also people who look for jobs don't go to the newspaper anymore; they go to the internet! The world is revolving around electronics. We need to end this before our kids or grandchildren start getting out of shape and start relying on the comuter for everything. Do we really wan't to destroy this world and lose bonding with our families? I say, make life better and get rid of computers!" 5 4 9 +308 1 "I think computers are good because if you need to remember stuff all you have to do is just look at there emeil and they will remember what thay have to do and also it is good if you is lost all you have to do is look at the map quickly. if you need to finish a school project you could do it in the computer looking for the websit of the project, if you need to cheek a websit about enythiny inportent you could just tipe the websit down and it will show up on the computer and if your child don't have nothing to do they could play games in cluding math games, @CAPS1 games, and also thay could look for nock nock jocks." 3 3 6 +309 1 "Dear @CAPS1 @CAPS2, @CAPS3 @CAPS4 all the talk about computers these days I would have to agree with the people who think its taking up alot more of our time. I hardly ever see people playing outside anymore because apparently computers are far more entertaining then being with your friends and family. Why do you think the obesity is so high these days? Well theres one of the reasons and I @CAPS5 when my parents were kids that they had no computers and they went outside to enjoy nature. Computers have there ups and downs but I do not think they benifit out society, first reason being, computers are taking away time to be with our friends and family. I rember when facebook and @CAPS6 werent created those were the days when people actually did fun things with there friends and family. there was a recent study that snowed since @DATE1 to @PERCENT1 of all americans use computers more than @NUM1 @CAPS2 a day for all sorts of diffrent reasons. I think mainiy computers were invented to make reason easier but now adays all we use them for is social networking. My second biggest point as to why computers do not benifit our is because over the past @NUM2 years the obesity rate has gone up by @PERCENT3 and due to what cause? eating un healthy food and sitting in front of your computers all day not exersiing. I am almost @PERCENT2 sure that if people stoped using computers that our world would be a healthier place. dont you feel bad for those people who are stuck being ovwrsized for there whole life because of these habits? I @CAPS5 most people would feel bad. My last reason is that we have this ahmazing planet that no one seems to enjoy anymore becaus they use up all there time on computers if only people got out every once and a while they would relize they have been wasting where time. there been a recent study that says @PERCENT4 of people are inside doing nothing all day! thats more than half!! I hope this will change somtim soon because computers hace only created a nusence to people and now it seems like no one has any type of a life.. computers hace spread to all sorts ofs societys but please let it not take over this friendly town of @CAPS1." 4 5 9 +310 1 "Dear @ORGANIZATION3, In a pole conducted by the @ORGANIZATION2 (@CAPS1) @PERCENT1 @ORGANIZATION1 people agreed that computers are a easier way to research than going to a library. Over the @DATE1 few years it has become a growing debate as to wheather computers are a benifit to socity or not. Today in america over @PERCENT2 @ORGANIZATION1 all people own a computer, according to the @ORGANIZATION1 are most definatly a benifit to today's socity for the reasons that it allows better and easier world comunications, makes text and information, more redily avalible to the public and allows the advancements in technology that are nessesary. Communication is a vital part @ORGANIZATION1 america and the world in this day and age. Communication is souly run by the commputer. @CAPS3 computers provide better and faster communication. They are also far more reliable. In the @DATE2's if you wanted to speech with some one who is far away you would have to send a letter. Along with sending a letter is the risks that it will not get there. it will be stolen in the mail and @ORGANIZATION1 course the time that it would take to ge there. All @CAPS3 are solved in todays email and instant messiging (@CAPS2), @CAPS3 are relible, cant be stolen, and can go across the globe in seconds. Computers are not only a way for communication but also one @ORGANIZATION1 the most prominate ways to research, @CAPS4 the internet people would need to go to the library and run the risk @ORGANIZATION1 the book not being there or the library being closed. Through the internet all the information @ORGANIZATION1 the world is available @NUM1./ Computers are also the former in todays technological advances. Computers allow us to have inventions that run there self so human operation is not nessisary. this same technology saves lives every day and alows us to create @ORGANIZATION3 better technology. As you can see computers are the greatest technology created in the @DATE1 and allows faster and more relible communication, is the greatest library the world has ever known, and allows for the creation @ORGANIZATION1 even more advanced technologies. Computers are an extreme benifit to socity and nessisary in this @ORGANIZATION3 era." 5 5 10 +311 1 "Dear Newspaper editor, I think that computers are @CAPS1 for everyone. First of all, you can learn about places that are around the world in a click. Also, you can communicate with friends and family. Finally, it makes your life so much easier. Here are some reasons why you should get a computer for your family. First, you can learn about things you didn't even know were real, in an instant. You can learn about ancient civilizations, different cultures, and different recipes for tonights dinner. you can get help in school work also. If you need to learn about the @CAPS1 @CAPS2 of @LOCATION1, all you have to do is type in it. If you need to learn your multiplication table, you type it in and it will show up in the matter of seconds. The internet is @CAPS1 for searching up all types of things. Secondly, you can talk to your family members and friends on the internet. Ive heard a lot of people saying people need to spend more time with their family. So on the computer you can talk to someone in @LOCATION2, and evrywhere else. Its like a pen pal but you don't waste money buying envelopes and stamps to send a letter. computers cost a lot of many but it is worth it. You can do almost evrything on the computer. Lastly, if you get a computer it makes your life so much easier. Instead of going to the library and getting a cook book, you can type in dinner recipies for chicken. Your computer will come up with hundreds of different ways to make a @CAPS1 chicken for dinner. You can tell a friend that you cant it to there party. Also, teaches you homework that you did. if you buy a computer your life would be more relaxing. In conclusion, you should buy a computer. If you do you will learn so many things. Its like having a book with everything you will every need or want to know. This is why computers are good to have and be on for a reasonable amount of time. " 5 4 9 +312 1 "Dear, @LOCATION1 @CAPS1 I think the use of computers are good, here are some reasons why? My first reason is you can find stuff online. My second reason is you can have fun. My last reason is you can make @LOCATION1 friends. I will write @NUM1 paragrahs explaining my reasons. Going back to my introduction my first reason was you can find stuff online. If you can't find a job you can go online and find some. If you want to go to college but you have no time you can take classes online. Those are my details to support my reason. My second reason was the computers are so fun. To me they are fun because when you are bored you can play games. If you are not a game person you can play servays. Or you can find out facts. That how I can back up my second reason. My third reason was you can meet @LOCATION1 people. You can meet @LOCATION1 people be search them up if you are trying to find a old friend. Or there is social networking such as myspace, facebooks, twitter etc which you can meet @LOCATION1 people. Mostly everyone would like to meet @LOCATION1 people. To end this story my @NUM2 reason was yo can find stuff online, my second reason was you can have fun. My last reason was you can meet @LOCATION1 people." 3 4 7 +314 1 "I believe computers aren't having a positive effect on people in this time period for some people theyve really taken over their lives. There are many health concerns that take place in a generation full of computers. Also there is less time in your schedule for more important things when you're adicted to facebook. Also money will always be less when computers come along! Computers can really be dangerous to you health! For example all that typing can lead to arthritis in the hands and fingers in the long run. Did you know, more seizure are induced by compexors than epileptics? Dr. @LOCATION1 is as saying ""People don't cause obesity, computers do"" @CAPS1 also thinks that the majority of the obeisity is caused by an addiction to computer games. Ever been depressed than taken a long nature walk, and felt great? Well a lot of people tell on rely on thier computer when they're down. Computers usually make things worse. When on twitter, facebook, google and you tube all the time its hard to find time for even the most important things. For example if you're a parent your child might feel abandonned if you start caring about the computer more than very little time spent together could turn them to alchohol or smoking. I let you never of a computer like that! Computer can be good way to wind down but they can also become an addiction there when youre addicted to sitting on a computer you forget about the beauty of nature! Money can also contribute to the addiction. For example shopping addictions are a good way to blow money because it's so easy. All you have to do is type in a credit card number which gives you the illusion that youre not spending money, until the bill comes! Another thing is kids websites like webking which you need to pay for you also need to pay for internet and the electricity bill. It's clear to see that computers cause nothing but health problems, less time in your daily schedule and the money out of you pocket. To me computers are just a trouble in our lives." 5 4 9 +315 1 "Newspaper and Readers, Computers are a very large part of our lives and society. However, there are still people who think that computers do harm. Actually there are many positive effects that computers have on people. Among those effects are ease of communication, ease of gathering information, and ease of find entertainment. Computers have far more positive than negative effects. Computers have made communication easy for people. There are so many different means of communication using the computer, which are all free. For example, instant messaging, @CAPS1-mail video chat, chat rooms, @CAPS2 (and other social networking sites), are all there and help you communicate with friends and family. The positive effect that this has on people is that it allows them to stay in touch with people whom they might not otherwise due to financial or convienency issues. Being social is heathy for people and therefore communication is a positive effect of computers. Information is far easier to aquire when a computer is used. For example, if a kid needed to know about the climate of the @CAPS3 @CAPS4.S for his social studies project, instead of having to get in his moms, drive all the way to the town library, spent time looking for the book, he could just log on to @ORGANIZATION1 and go from there. This is a positive effect on him because it saves him some time and effort. Furthermore much more useful information can be found on the internet as well, such as: flight times, prices, restaraunts, stocks, weather, news, and basically any fact that you need to know. All at these things make having a computer a very positive thing in somebodys life. Computers are a great source of entertainment. In this economy, I know we all could benefit from not having to pay rental fees for movies and big prices for your exams or playstation games. Internet gaming is very amusing and you can find many good games for free. In addition to that, there are websites who offer free movies and television shows to be streamed right to your computer. These things are a great solution to the rising lost of entertainment. Saving money and enjoying good entertainment are both positive effects on people, and both offered by computers. I hope now that readers of this newspaper will now understand how good computers are next time you are for king for a late fee on a libary book or movie, remember that the internet and your computer have offered an alternative." 5 5 10 +316 1 "To whom it @MONTH1 concern, Computers are beneficial to society. They promote learning, coordination, and even general welfare. It is true that computers @MONTH1 be detrimental to a person's health, affecting the amount of exercise and interaction a person gets, but the positive effects of computers more than make up for this. People learn much of what they know from the computer. Among an infinite number of things a person can learn from them are definitions new words, scientific theories, algebraic equations, history, law, any number of languages, and much more. Computers, when used for learning, can teach people things they @MONTH1 learn in school, but on their own time, computers exercise the brain, and teach it to think beyond the bounddries of ""@NUM1."" They also teach the brain how to better direct the body to face i'ts needs. Coordination can be very hand for some people, and this can be a problem. Without coordination, people wouldn't be able to catch a ball, avoid certain dangers, or even stand. To help improve this people need practice. They can get this practice from exercise catching ball, threading a needle, or using a computer. Using the mouse on a computer can help with hand-eye coordination in that it forces the brain to direct the mouse to a certain place on the screen, in order to accomplish what is needed to be done. At first, this process @MONTH1 be excrutiatingly slow, but over time, as the brain gets practice at this coordination improves and the process speeds up @CAPS1, the person will be able to use the computer faster and more efficiently. This will help them play games, learn, or even help people when they are in need. Helping people is very important in this day an age. That's why it is important for people to find out news quickly so that they can help. Computers allow this. For example, on the day of the deadly earthquake in @LOCATION1, most of the world found out within the hour from computers. News sites broadcast its social networking sites such as @CAPS2 talked about it, and people talked to each other online about it. This rapid spread of the news saved many lives in @LOCATION1 as people immediately dropped what they were doing and rushed to help. Computers affect people in that they help to send out news and stories causing them to want to help people. Many websites also are adept at donating money while playing a game. For example, www.freenke.org is a site that donates @NUM2 grains of rice for every question answered correctly, and they have donated over @NUM3 @CAPS3 grains of rice. Obviously, computers and sites like these have to have a positive effect on the world. Overall, one would think that computers have a mostly positive effect on the world. Despite limiting exercise, they encourage learning, and the exercise of the brain. Computers also help people with their coordination, which is very important. Finally, computers promote a world where people want to help each other, and a world where people keep up with current events, whether they like it or not. Thank you, editor, for considering my side on the positive effects computers have on the world." 4 5 9 +317 1 "Dear @CAPS1, @CAPS2 do people benefit from the use of computers. Some say that using computers rather than exercising and being outside is a bad thing. I personally believe that the use of computer technology is a good thing. Computers teach hand-eye cordination, help people learn, and allow people to communicate with others. The use of computers teach hand-eye cordination and reaction time. Some say that being outside and exercising is better than using a computer but many computer games help hand-eye cordination. Alter playing computer games more and more the time it takes for you to react to the game you are playing and hit the mouse button is very important. These skills could help you in the activities you take part in and every - day life, personally, I play a lot of @CAPS3 @NUM1, a computer gaming system. @CAPS3 has helped ny hand-eye cordination greatly and it has shown in the four sports that I play. Clearly, Computers can be very helpful and can help your hand - eye cordination. Computers can also help people learn in many ways. There is a lot of content on the internet that simply can't be in school. The ability to learn about foreign countries is a big part in learning as a student. I use the internet nearily every night to type my papers and find the information that I need. It has helped one as a student. Also, typing papers on computers is becoming the new @CAPS4 of hand writting. Teachers are beginning to require that school work is typed on a computer and printed. Documents can be saved do that they cannot be lost inlike a hard copy written by hand. Although many believe that using a computer is a waste of time, it can also help you stay organized. Many people have calenders in their computers that send you reminders on your schedule. Your computer is also where your data like music and pictures can be saved. Computers are also very useful for learning and organizational purposes. We can communicate with others using computers. People use computer technology to communicate everyday through @CAPS5, @CAPS6, and I-chat. If I need to know what our homework is or when practic is I use my computer to ask someone for the answer. Before I began communicating with my computer talking to others was much harder to do. Although many disagree with using computer technology, computers are often the way we communicate with foreign countries. When something happens overseas the first way we found out about it is a computer. It is essential for us to use computers to communicate with other nations. Clearly computers are importan for communication purposes, we must continue to use computers for multiple reasons. Although many disagree with the use of computers, there hand - eye, communications, and learning purposes are very important. Without computer technology we would function much differently. It is up to you to continue using computers. " 5 5 10 +318 1 "Dear @CAPS1, @CAPS2t you think computers help society? I do I strongly belive computers help society and are being used for very good purposes. They help people of all ages. Its easyer for kids to look up information for @CAPS3, gives kids some good facts to help build knowlege and not only would it help kids but it will help adults too. Its easy to see why adults think kids dont read enough however kids get more than enough reading done on the computer. some parent think that just because kids arent going to the library to take a book out for their report they arent gaining knowlege but they are gaining knowlege because all of the things they could look up in a library they have availible to them on the computer. Computers help kids around the world find thing quickly and easily. Not only does the computer give them knowlege of things that happen in the past but also things happening in current times. It can also give kid information like weather updates that help to keep then safe. Over @PERCENT1 of the things you can find at the library you can finf on the computer. Some parents think that kids arent getting enough exencise but never the less they are also skiping out on a lot of knowlege and important facts also. On the computer you pick up a lot of facts such as wether updates natural desasters how to help others in need and other very important facts. If it was't for computers kids would not make up for all the knowlege they miss in school. on make up for what they miss when they are dosent. Computers help people everywhere gain knowlege. Not only have computers helped kid but they also help adults. They can do work over the computer look at houses, cars and lots of other important things. Certenly @CAPS1 you would not want to take away all of things knowlege and help being given to hot kids and adult on the computer. It helps aldults especialy keep thing going in there baissy lives. It also helps than make changes such as how they eat or act @CAPS4 are some reasons penale should not disaprove of computers because they help kids with @CAPS3, give kid important facts and, help people of all ages. sarely some of @CAPS4 facts could helpchange," 4 4 8 +319 1 "Computers definitely have a positive impact on society. They help organize your thoughts, which stress. So, they contain many inspirational articles which can convince kids to strive for surless. Lastly, when all else fails, the computer can be a great way to relax and clear your mind. Computers help organize your thoughts, which helps reduce stress. Imagine you working on a project in school. Everybody can add to it, and you can selectively choose which additions you want. In addition, you @MONTH1 also block the programs that you don't want. This device is called the computer, and it's changed @LOCATION1's society for the better. On average, @NUM1 out of @NUM2 @CAPS1 suffer from stress. Now if you organize your thoughts on the computer, and are able to look through them again at why a huge alleviated. Instead of worrying thoughts you @MONTH1 or @MONTH1 not remember, you now have confidence that you can look back and find your thoughts right on your @CAPS2. Reduced stress trading to confidence effect on society. Also, the computer contains articles that @MONTH1 insure our children to strive for their goals. Once child read an article @PERSON1, @ORGANIZATION1 book. As an @NUM3 using @PERSON1 as well in school. By games, I observe how into @CAPS3 since I started seeing @PERSON1 as role model to me, high making a stride for a @CAPS4.O @CAPS5. Where did this inspiration come from? Researching @PERSON1 on the internet. The internet, in this instance, obviously had a positive impact on @CAPS6 society. Lastly, when all else fails, you can rely on the computer to make stressful situations seem less overwhelming. If you have the ability to solve a problem, then why can't you solve it? Often times, the answer to this question is that the situation is too overwhelming. If you take a break go on you @MONTH1 relax simple games put out a variety of websites. Now say you came back and attack the problem again. You continually chip away at it, and it seems overwhelming. Thank you computer gods! The computer, in this instance, has made - positive impact an @CAPS6 society. So as you can tell, computers make a strong, positive impact on @CAPS6 society." 4 5 9 +320 1 "Dear editor of the @ORGANIZATION1, In my opinion I think people are spending to much time on technology because their is many people I know who stay on technology and don't even do work. Also, spending to much time on the computers and others things then taking time exercising, enjoying nature, and interacting with family and friends. People who stay to close to there technology will be addicted to it and they will start to kill brain cells. Some times people get locked because to much information was given out or you did somthing that you were'nt suppose to do. Downloading certain things also bring harm to your computer like viruses that can crash downthe computer hard drive and system. There are many good and bad thing about being on a computer like the bad things stalkers, hackers, seizers, blindness. Then the good thing about being on a computer is it teaches hand-eye coordination, give people the ability to learn about faraway places and people, even allow people to talk online with other like friends or family. In my life it helps a little because I play lots of army games so when I go out with my cousins and friends we go label tagging in a sports complex and I use the same tactics that i learn to beat the other teams. It hurts some people eye site when all their doing is stairring durectly at eh screen. one experience was like @NUM1 months ago the last time I stayed at my aunts house all my cousins do was stay on th ga me till they have to take a bath, clean and eat, They didn't even go to sleep till eight in the @TIME1. Some parents should at least give an hour a day to say he game. For me I only go on the computer for like twenty minutes then log and go back online later on in the day." 4 4 8 +321 1 "Dear @CAPS1, @CAPS2 name is @PERSON1 and I will be talking about the wonderful impact computer technology has had on man kind. So many great discoveries and great topics have been found on the compture, studees have shown <@PERCENT1@NUM1> of famous in the united states has at least one computer in there house holds. There a great way look up important information withoout going to the and searching for hours, to contract others, and lets face it they make our a life a whole lot easier. Imagine this! your stressed and on edge you have just @NUM2 hours searching for a topic on your upcoming history essay. You have a pounding head ache and just want to quit, your probably in the libary reading through hundreds of books. Now imagine you being at home sprawled across your lap, all it takes is a few taps on your keyboard and bam! Instant information. Now how easy was that, thats one of the great impacts computer have made on us, humanity. Computers are terrific to learn things with a fast pase to it. I personally have used computers to @CAPS2 advantage you logon go to google type the subject of knowledge and its just like you have a personal teacher in your own home. A local study has been underway the have a groups, @CAPS6 A which has a libary full of books and @CAPS6 @CAPS3 a @CAPS6 with a @CAPS4 @CAPS5, The scientist gave them all the same essays, @CAPS6 @CAPS3 <@PERCENT1@NUM3> of student have passed with flying colars while @CAPS6 A <@PERCENT1@NUM4> passed with a @CAPS9 or higher. Thats important because higher grades, means higher test scores. higher test scores equal fundimg. I think computers are the best invention and is not imparing humans its evolving them. Imagine this! your sitting at home crying because your special other has moved far away from you well computers are a great way to reconect with that person. Computers have software were you can instant message, send emails, or even video chat with that person. For even some business man its an way to have meetings without flying @NUM5 miles. I have @NUM2 aunts that I cannot live without who are @CAPS2 strong base who I cant live without talking to for a day. Without computers I dont know what I would do. Scientist tool surveys that @PERCENT1 to the @CAPS10.S.A has family in other states, countries, or even contents, hey have to have some way to be in contact. @CAPS2 last reason is I know we have to admit it computers have made me and your life easier. Some jobs that have opened up giving unwadged citizens a sorce of income on computers. <@PERCENT1@NUM1> of jobs relay on computers. Imagine a chasier counting all the money, a banker having to take time counting one by one other peoples cash, a telemarketer calling with no way of information. All these ways and more that computers have impacted us. Now lets see how has computers not needed our learning ability, contracting others, and last but NOT least made me and yours life better. Computers are a terrific way for human to adap to the fast life." 6 6 12 +322 1 "Dear local news paper I believe the computer has a positive effect on people. It helps students with projects, helps people learn about other places, @CAPS1 it helps you find information on something you didn't know. @NUM1 precent of all teachers give out computer projects. Most reading teacher will have you read a book and then type a essay or a review about your book. Most teacher prefer the essay typed and not written. By the teacher giving that assignment he/she is giving the student the ability to explore out side of always writing. And I believe other students would agree with me, @CAPS2 better to type the essay than to write it! Is there a place out there that you really want to know more about, that you hope to someday visit? Well you can always use the computer to find out more about the place. You can use the computer to learn when is the best times to visit that place. @CAPS1 if you just heard on the news about a tradjic accident like the eartquake over in @LOCATION1, and you want to keep in touch on what is happening in that place you can use the computer. The computer will keep you updated on what is happening there everyday. Im sure almost every person has read a book and came accross a word they did not know or a student had spelling words that they didn't know what the words meant. Well you can use the computer to look up the words.The computer will give you the full deffinition and how to pronance the word. Computers @CAPS1 will help you find any information you @MONTH1 need, ""AND @CAPS3!"" In conclusion computers aren't just a thing that kids play on all day it helps you with many things like getting your work done, finding out about places, and finding out information about things you need to know, ""And @CAPS3!""" 4 4 8 +323 1 "Dear @CAPS1, I feel as though computers have good effects on people. Throughout these next paragraphs I will be giving you all of my reasons on the things that computers help people do. I will be talking about how computers give people good typing skills, how they give information to people, and how they allow us to socialize. Over ninety four percent of people today own a computer ad feel as though they have learned many things from it. I bet you didn't know that! First off I will be telling you about how computers help people type. The @CAPS2 on a computer doesn't go alphabetically. This means that you have to practice more to get better in typing. I remember the first time I tried to use the @CAPS2 it difficult but as I tried more I got better. Once I got better I realize where the keys were and soon I don't even have to look up the computer and all of it's parts help people by teaching them skills that they @MONTH1 used in the. These skills @MONTH1 be needed in their job field. Computers are helpful device. The next thing I will be telling you about is how computers have information that is useful to and its where a child is working know a lot about the. It holds information and has website when the internet they. The computer. My final reason why computers have good effect. If you need to talk to a friend but dont feel like calling them you can just go on to a website and chat with them. There are so many that you just can't choose! Did you know what they are over one million of these kinds of websites? There is @CAPS3 @CAPS4 just to name a few. This also gives people the chance to socialize with people from all over the world. This in return causes people to have better social skills. Maybe they will become ore friendly and become more outgoing. This is all because of one little thing and that little things is the computer! So as you can see computers have many wonderful effects on people. They help people get better at typing give lots of information that people want to know and get better social skill cant you just learning and I dont know about not I can get a pretty clear image of that in my mind. Thanks for reading this and taking I say information." 5 5 10 +324 1 "I think computer have shaped @LOCATION1 to what it is today. Computer help people learn, give people a passtime, and all of that can be managed in a certain space of time so you still have time to go outside. Computers help everyone learn. It makes things easier by typing up essays because you could type it faster and its eaiser to make changes. Also, its cheaper to buy a computer and go on the internet and look up foreign countries then acually going there. Another example, is that a computer teachees you hand-eye coordination from typing and using the mouse. Finally, computers can teach you life lessons by reading articles another person wrote. Computers give bored people passtimes. One example, is that you can play computer games during rainy days or when you can't go outside. Also, you can talk to friends through facebook or aim. Another example, is that you can talk to distant family in another country by using programs such as skype. Finally, you can order stuff online instead of wasting gas and going to the store and the things you might order you can play with outside. A lot of people say computers keep kids inside don't know that their are ways to prevent this. One example is you can use shut-off timers that keep anyone from going onto the computer for to long. Also, many people learn how to manage their time on the computer. Another example, is that parents can make rules that their children aren't allowed to play games on the computer on certain days and/or times. Finally, you can keep the computers in the family room so that children don't play with it all night in their room. Those are just some of the many reasons why computer help @CAPS1. They help us learn, pass the time, and it can all be manage during a certain amount of time. Now reading this I hope you believe that computers benefit society." 4 4 8 +325 1 "Dear @CAPS1, In many ways computers are helpful but, I don't support the use of them. The advance in technology has really taken away from peoples lives all over the world, some examples of this are lack of exercise, too much time inside, and not enough time spent with family and friends. Continue reading for more on as towny computers do'nt benefit society. As you know, when you use a computer you usually sit in a chair to do so, correct? Well, this activity is doing only one thing, not keeping you healthy or inshape. I'm sure that you want to be healthy, and to be healthy you must get some sort of exercise through out your day, and sitting on thje computer is not helping you one bit. So as you can clearly see, so far using computers is not beneficial to our society, continue for more cons of using computers as much as they are used. Believe it or not, using a computers is unhealthy, and not beneficial, in more than one way. The reason for this is because, not only oo you not get enough exercise, you won't go outside as much. you @MONTH1 be wondering as to why not outside is unhealthy, but it is because you dont recieve the needed amount of fresh air that you need to not be sick. Could you imagine the amount of people that would be sick if everyone used the computer for the majority at their day? Well, lets just it wouldn't be fun to count them all. Now that you know two ways that computers are not beneficial to society.Keep reading for one rest way. As you probably knows, it is a hard task to keep a big family close to each other, and using computers is'nt going to anything to help you. So, why use them? Trust me, spending quality time with your family and friends can be just as much, or even more fun than playing your favorite computer games, and in my opinion your family should be the most valuable thing in your life, so don't lose them for a computer. Now that you have finished reading. i would like to thank you for your time reading this letter concerning, lack of exercise, too much time inside, and not enough time with family, is not beneficial to society." 5 4 9 +326 1 "Dear @CAPS1, I believe that computers are one of the most useful things that we can have. First, computers are good for communicating. Students @MONTH1 contact teachers through email if they have a question about an assignment. Computers also are useful for teaching. People use the @CAPS2 everyday to get information on their favorite sports teams or on a new recipe they saw on television. Finally, computers help us get work done easier. Student and employees use @ORGANIZATION1 for everything from writing a paper to creating a presentation. Futhermore, computers are extremely essential to our everyday life because they help us communicate, learn and finish work. Every year, thousands of students go to college, and thousands of families move away from each other. Computers are one way of communicating to @CAPS8 loved ones in far away places. Parents send messages via email to their children at college. Families speak with each other through @CAPS3. Computers are what makes all this possible. Not only can we use computers to make contact with our families,but we can also use them to speak with our teachers. Whenever a student is sick, but wants to get their homework finished, they look on their teacher's website. Here, all the homework for the class is listed. Also, if a student has a paper due the @DATE1, but their printer is broken, they @MONTH1 email the paper to the teacher. This allows the student to get full credit for their work. Email is not onlyuseful for handing in projects, but also for asking questions about the assignments. If a student has a question about an assignment, he or she can ask a friend or the teacher. Then, the student will be able to successfully complete the project. Computers are one of the most useful ways of making contact today, but communication is not the computer's only purpose. The average person goes on the @CAPS2 ten times a @DATE1 just to get information. Computers provide a pletvera of knowledge for people's use. Search engines like @ORGANIZATION3 or yahoo provide answers in less than one second. This is much faster than going in the library and spending an hour looking it up. Website text is not the anything that provides information far eager learners @CAPS5 also provide pictures to further the persons understanding about a topic. For example, if a person is living in the @LOCATION1, and has lived there all their life, but is reading an article on a website about an animal native to @LOCATION2, they would not know how to picture it in their head. Articles and books @MONTH1 provide a description, nut nothing really gives the person a solid picture. The person could go online and search for a picture, which they will surely find. Finally, computers keep the brain active. While searching on a website, a person could piece together information from different sites to create a better picture, and, therefore, have a more complete and thorough understanding. In order to do this, however, a person's brain must constantly working. This helps develop skills later on such as problem solving. Overall, computers are one of the most useful and common of the learning devices. Many people say that computers are useful. They agree this by saying that work gets done so much easier and faster on a computer. on average, computers complete work fifty times more efficiently than people do by hand. This is because of programs such as @CAPS6, @CAPS7, and @ORGANIZATION2 @ORGANIZATION2 @CAPS8 programs allow people to cerrect spelling and grammatical mistakes while at the same time creating a neat looking presentation. Studies show that @PERCENT1 of people with bad spelling or grammatical habits corrected @CAPS8 mistakes quickly through @ORGANIZATION2 and @CAPS6. If people constantly make grammatical or spelling errors, then having them underlined in @CAPS6 will show them that this is not the correct way to punctuate or spell something in a sentence." 4 6 10 +327 1 "Dear @CAPS1, Computers can have a positive effect or a negative effect on people. It all depends on how you look at it and what type of person you are. You can say computers have a very positive effect on people or say computers have a very negative effect on people. My opinion is that computers have a positive effect on people but you can't say that I am just a kid and she plays on it all the time. Well that is true however, it can teach you hand-eye coordination. For @CAPS2 what I am doing right now is learning to type faster and faster. Another @CAPS2 is some people are faster at typing than writing but some people write faster than type. Me personally am faster at than writing. My final reason is after a hard day at school or work you can come home, play some music and relax. It is a good idea to learn how to type fast so if you are let's say writing a story for school. You just started the story and it is due tomorrow. What are you going to do well if you stared to type when you were younger by the time you are in the middle school you could type really fast. That way you could finish your story in time. This means you should learn haw to type faster. Some people prefer to write than type but other people prefer to type than write. I personally prefer to type than write but that is just me. Let's say a friend of mine like to write more than type that is ok. We will not be not friends after that we will just like the same thing that is all. This means some people prefer to write than type. This probably happens after a hard day at school or work you can come home use the computer to play some music and relax. You can play all the music you want. As well as do other things as well as the same time. For @CAPS2, I play music and talk to my friends at the same time. I @CAPS3 use it to do homework. In conclusion, it is a good idea to keep computers to use. People can still enjoy nature as well as computers at the same time. Over all computers have a positive effect on people." 3 3 6 +328 1 "What I think about computers benifiting our community is great. Tecenology has gone far over the years. The most important is the computer. Most schools have computers. The reason is that benefits society. They are a hudge save in paper. You also learn more thing about place @CAPS1 any thing. These reasons support why we need to have computers. Computers benifits our community by saving paper. It also make our work neater. We can talk to friends and familys. The main reason is that it give computer technians more jobs people need more jobs computer also provide news. say The mayor need to send and iportant message about polluting the water he can do that through email. The main thing today in our society is going green. The only way we can do that is by swiching to computers. We have to chop so many trees down just to get @NUM1 paper to each kid in the grade. Aduts should understand we need to conserve paper. Now I know what your thinking what of we need to print something. My response is that you just could email it to a teach friend or any body else. Kids these day need to learn more about other cultures. We need to know what there econimy. The fastes what we could do that is internet. It is so much faster than looking through thousands of books. All you have to do is type the place you want and boom there it is. There are many benefits to having a computer my final reason is it also give you great hand I cordination. And if you want to be a athe lite than you need lots of it. How the computer gives you hand I coordination is from typeing an moving the mouse. The best way is to play lots of education video games. Whith all the facts and statement I gave you like benifiting community, going green and also learn about other place. Please when you are writing you article before and listen to my facts." 4 4 8 +329 1 "Dear town @CAPS1 paper, I would have to pick being for computers. There are a couple reasons why I'm for computers and they are being able to talk to friends online, being able to learn stuff, and you can also play video games. One reason that I would be for computers is so you can talk to freinds online. So if you have a facebook or myspace you can talk to your friends all day if you wanted to. What I mean is simply by typing in what you want to say to your friend they will receive those exacte words then they'll reply. For example if you wanted to just say hi then your friend would look at his/hers messages then just reply. So being able to talk to friends online is one example why I for computers. Another reason that I would be all for computers is being able to learn things. So if you wanted to learn a language then you would go to google or something and try to find a fast easy site. What I mean is if you goto google a whole bunch of site's will come up, so what you want to do is find the fastest easyest site for you. So being abe to learn important things like a language is another reason I'm for computers. The last reason for me picking computers is because you can play video games. What I mean is if you were borde and noone to talk to then you can get on your computer and play a mind numbing game or an educational game for class. For example in science class we played a game on the computer and it had to do with gravity and that was what we were learning about so it was an educatinola game. So that is the last reason why I'm for computers. I'm for computer because you can play games. So now you know why I'm all for computers. I am for computers because you can talk to friends online, learn stuff and play video games." 4 4 8 +330 1 "Dear @ORGANIZATION1, I understand that there is a big discussion going on about if computers have a possitive effect on people. I believe that computers do not have a possitive effect on people because children on the computers are not safe, they are spending too much time on the computer, and the programs and internet for the computer cost too much money. First, computers have a negative effect on people, including chicken, because computers are not safe. With all this @ORGANIZATION1 technology, child predators can go onto facebook or another website and find out everything about you. This has happend to many people. Some predator went onto my friend @PERSON2's facebook page and found out his birthday, where he lived, and what school he went to. Thiss guy sent @PERSON2 a threat saying that something going to happen to him. Luckily, with the help of police, they were able to find this guy and arrest him before he got to @PERSON2. These days, this is happening all the time. More than @PERCENT1 of @CAPS3 give all of their information away about it on these websites and child predators have looked at them. @PERSON1 states that ""@CAPS1 this @ORGANIZATION1 technology has helped, but the negativity if has had on society but @DR1 the good the computer is doing."" @CAPS2 @ORGANIZATION1, do you want @CAPS3 to get taken by these child predators who know everything they need to know because of the computer? Another reason why computers have had a negative effect on people is because @CAPS3 are spending too much time on the computer and not enough time doing homework and exercising outside. These @ORGANIZATION1 websites that gives @CAPS3 the ability to talk with friends and play games have made @CAPS3 lazy and addicted to the computer. My friend, when he was little, would play outside for hours and hours at a time. He would play all different kinds of sports with his neighbor. Now @PERSON3 is older and all he does is sit on the computer until his parents have to force him off of the computer for dinner time. @PERSON3's grades have dropped tremendously and he has gotten very chubby compared to what he used to look like. Statistics show that more than @PERCENT2 of @CAPS3 have gained weight due to not exercising and their grades have dropped @NUM1 on @NUM2 grading scale. Dr. @DR1 Much says that, ""@CAPS3 have forgotten the fun in playing outside and lost the determination they had to do well in school. This is all because of these @ORGANIZATION1 computers @CAPS2 @CAPS3 now can go to any website do anything on that website."" @LOCATION1 @ORGANIZATION1, do you want your @CAPS3 to gain weight and stop doing well in school? Lastly, computers have had negative effect on society because of money. Many families have spent thousands thousands of dollars on buying the computers and @CAPS1 them fixed. These @ORGANIZATION1 computers are crazy expensive. They range from @MONEY3@NUM3 for a @CAPS4 computer. Then each family had to buy the software and programs to go with the computer. A close family friend of ours just bought a computers. They bought a @CAPS5 that costs @MONEY2, on top of that, they spent @MONEY3 on all the programs they needed for the computer. This family cannot afford this computers but they think that they need one. @CAPS2 they have gone to the college fund for money. Now their kid has to go to a cheap school @CAPS2 their family won't go. Statistics show thas @PERCENT3 of families have waste their college money in computers because the family thinks they need a computer. Dr. @DR2 @CAPS6, ""families do not need computers, yet they waste their college money on them. @CAPS2 @ORGANIZATION1 do you think that money from a college fund is worth a computer? Computers are not worth @CAPS1 your children at." 6 5 11 +331 1 "Dear @CAPS1, A recent study by scientists shows that too much sitting down, especially in front of computers is dagerous to health. This is only one reason why I think that, although they are useful, computers are not entirely beneficial to our society. The hinder us from excersising, interacting with nature, and spending time with family and friends. Excercising, as we all know, is necessary to remain as a fit and health human being. But how is this possible with some people going to work everyday and getting shut in their offices at their computers all day. Too much computer time even for kids, can lead to obesity and overweightness. Also, like I mentioned before scientists have concluded asked, that too much sitting is bad for you. It isn't how the body was built to work. If you have seen wave, one of @ORGANIZATION1's most recent movies, undertaking is easy. The humans in that movie, after relying on computers for so long, became obese and fat and had no muscle. This is an of course, but minor visions of this are going around the world. Going out do instead of sitting a computer is a sure way to healthy. The next thing that computers restrict us in is our ability to experience nature. Even simulations don't cut it. If you wanted to see a frog or of some other animal, can't just @ORGANIZATION2 it, look for it in the real. Developing a connection to nature can really nurture the use of that is and ill. Instead of exploring a computer, explore the world as we know it until it's or you're too old. Learn how to do somthing by. Instead of hiring someone to make at, make it yourself. Do it to learn it, sit at a computer website to hire someone! Get up and get outside! As you become more dependent on your computer, you become less dependent on family and friends. It causes there to be a lift between family members. Your family might not be able to help you when you're in need. If you're an adult, and you're on the computer all the time for something other than work, then your not supporting your family, you have no income, no life, and no future. Why would anyone do this to themselves? Imagine this!:You have nothing except your laptop. You're a , on and have family relations. Nobody wants to be that kind of loser living on the streets! You have nobody and nothing except for your computer, and you've wasted your life away. Too much time on your computer means that everyone suffers. To sum it all up, computers maybe, but every single cloud has a dark lining. Computers stop us from exercising, interacting with nature, and being with our families. So get outside!" 5 5 10 +332 1 "Imagine a world without computers chaos in war, even the cluter on your desk. The chat you're having with you bestfriend on aim wouldn't happening. The report on @LOCATION1 might not get done because all the books were checked out, in fact we wouldn't have noble or any space program without computers. I know of this happened I wouldn't be happy. Compaines almost relys on technology you can't just send a letter and have @CAPS2 at the office in five minutes. Communication through the computer is very popular. @PERCENT1 of the world use aim or another chat service, in a studie done by a @CAPS1 professor @NUM1 out of every student doesn't talk to family on aim service a quote from the professor said ""@CAPS2 a good thing to stay in touch with their familys as wel as keeping up to date on curent events. @CAPS5 computers are taken away information is gone. Its all lost in some pile of papers. @DATE1 time my computers crashed and I had a report due but all the books were gone. That report was done @DATE1 when they were fixed. Now thanks to the new computer @CAPS3 @PERCENT2 more organized a nasa is running on mars. Nasa runs completely by computers. Look what they have given us today. @PERCENT3 of all household aplienses come from nasas work. A coment from nasa imply @PERSON1 ""@CAPS4 would be no cars or phones without use, their coumputes to."" @CAPS5 thats true are they going to take away cars and phones as well. We need you the people to dicide. The people who made this country what @CAPS2 is to dicide do think we shouldn't have coumpters. I don't and neather should you." 4 4 8 +333 1 "Dear local newspaper, Computers have a lot of affects on people. Some affects are it takes away from family and friends, you don't really have a social life and you don't get enough excersise. Computers take away from friends and family time. I did an interview yesterday with @PERSON1; and I asked,"" @CAPS1 you go over your grandmas house what do you usually do?"" @CAPS2 said, ""I usually use the computer."" @CAPS3 do you want to use the computer while your their? your with your family your supposed to spend time with them. Play a game like monopoly, or play @CAPS4. Those are fun and great way to interact with your family. If your family member doesn't have those games bring them! People think that because there is facebook, aim, e-mail, and myspace that your interacting with friends. You really aren't. I asked my friend @PERSON3 what @CAPS2 thought of those things and @CAPS2 said ""They are great interacting websites."" They really aren't. They are websites on the computer. While you are on the computer your not really maintaing a social life. Your town holds activites or has a fun place you could too. Your town @MONTH1 have a gym, community center, or a library. Go their and hangout with friends interact with them. Go to school, goto the library, and hang out with friends are great ways to interact with people. People don't think about @CAPS1 your sititng in your computer chair and @CAPS5. While your sitting in the chair your not excercising, @CAPS1 you keep @CAPS5 your gaining weight. You might get fatter @CAPS1 your stuffing your face wih cheez- itz and not excersising I asked @PERSON2 a question it was what do you do while your on the computer? @CAPS2 said ""I eat.."" @CAPS5 isn't bad, but @CAPS1 your not really paying attention you eat more than you need. Your town has rec leaguges of sports such as @CAPS6, softball, and baseball. Join a team instead of playing on the computer and @CAPS5. Get @CAPS7! Computers aren't the greastest things in the world. You don't stay fit with them, you aren't very social, and you don't really spend time with your family. Computers don't really help you grow up, and be mature for the future." 5 4 9 +334 1 "@ORGANIZATION1, The use of computer per family has increased greatly in the past @NUM1 years. In that same time people are getting fatter and they need more exercise. If you use the computer it might break or not work properly. Computers are a big waste in time and a bigger waste in money. In the past @NUM1 years many people @MONTH1 have gained a lot of weight. They do not do regular activities like going to the supermarket because you can shop online. Studies show that if you go to the supermarket or a store you are likely to be less fat then if you shop on line. Another reason why computers dont give you exerise is because of google. If you wanted to see a picture of a beautiful mountain you could just go to google and type it in. It is a much easier way to see sights but if you walk you could burn up to @NUM3 times as much calories then if you just look it up on google. Another reason why computers dont give you exercise is you can get addicted to a game. Lets say that you have basketball practice at @NUM1:00pm. If you go on the computer at @NUM5 then you could easily get addicted to a game and forget you have practice. You would be stuck on your computer mindlessly typeing a way on a computer game that doesnt help you anywere in life. When you dont go to practice you will not sweat and therefore gain extra weight. Scients say that if you actully play a sport you can lose weight by up to @PERCENT1 then if you didnt. Before there computers life was simpole, no student forgot there homework. But now they use there computer many things can go wrong. First the printer can break. @CAPS1 year my printer stoped working @NUM1 times so I could not do my homework. My teacher said that forgetting my homework affectde my grade by over @PERCENT2. Another reason why handwriting is more convienet is you are capable of doing writing during school @CAPS1 year with my teacher @PERSON1 i had to write a prompt. She told me to go to the computer lab and type it but all the computers were taken. When I got down stairs she told me I had to write it so I got a @NUM7 because she could not read what I wrote. Every other kid got a @NUM8 or above but since I was not use to writing it affected my grade. Another reason why computers are inconvienet is when you need to do research. My parent got rid of our books a wile ago because of computers. So one day when I was home alone I had to reasearch euthonzing dogs on the computer but there was a power outage. I could not do my @ORGANIZATION1 events for science so I got a @NUM9 on it. That grade brought my adverage down form an a+ to an a-. The only reason why I got a bad grade because I depended on the computer for reasearch and it let me down. If I had better hand writing I would have gotten a better grade. The final reason why computers do not benifit society is because they are a waste of money. Most computers caust up to @MONEY1 for the computer and installing. There is no need for them because everything computers have a library can give. The library has books so you can reasearch with books insted of computers. In my house all @NUM7 people in my family has a computer but @NUM11 of the computers are used once a week. They are extreamly expensive and there is no need for them. Also my dad works at a computer store and he says that the computer people are overcharging by @PERCENT3. With that extra @MONEY2 you could buy many books and magisnes insted of a computer. That is why computers are not useful. People are not getting exercise, so the gain @PERCENT1 more weight. It is much less convienent then writing by hand. Finally they are a major waste of money. The decads without computers were much more useful and everyone lived happpier." 5 5 10 +335 1 "Dear @CITY1 @ORGANIZATION1, @CAPS1 if I was with or aganist people using computers. But I thought about it I decided that i was aganist using computers. For the same reasons, safety stop education, sites that are not appropriate to see. I know many people @MONTH1 think how come using a computer is not safe. Well eventhough you are not talking to someone in person and only on the computer what you do over computer is not safe. The reason why is because most of the time there would be thats thirty and we be like @NUM1, @DATE1 and I use those ages because kids are age be the man one on @CAPS2 myspace, but he can be like thirty and we be like @NUM1 - @DATE1 and us not knowing he comes on myspace or @CAPS2 put another picture up there of young did we start thinking to him meet up and something had happend. For example my friend who was on myspace was talking to a fourty-one year old and then they met up but she did not know his age and she was rapped. Not everybody is true over the computer. Education is very important even for adults and children. Bieng on the computer is not going to bring are education up is going to brings down. The reason why this is most @DATE1 threw @NUM3 come home from school put there hookbag down eat and then do straight on myspace, @CAPS2, @CAPS5 instead of studying, reading, doing their homework. Eventhough those websites do help you learn but only about for myspace, read messages on @CAPS2 look at people comments on @CAPS5. Like for example I would go and instead of me learning new I am bieng and learning new information. Learning brings achievement, a computer brings not succeeding. There is not much I can say about sites thats not appropriate all I can say is watch what you on and see on myspace cause you might just but into something you not suppose to such as raped that went on. Be careful." 5 4 9 +336 1 "Dear @CAPS1, ""@CAPS2 at @CAPS3 killed in a horrific acident"" is the title that flashes across the screen. Then another, and another. What is supposed to be @NUM1 minutes grows into an hour or two that take away from your family. I can see why this @MONTH1 bring up many conflicts; as computers can be very helpful. However, I feel that more often they negatively impact the general public. For one, there are many sites out there that portray false information. Plus, computers begin to consume the rest of peoples' lives. When it comes to these technological devices there are pros but there the cons can easily outweigh them. To start, computers are loaded with viruses, scams and internet predators. So easily someone can steal credit and information by placing offers that seem ""too good to be true."" @CAPS4 you listen to your instincts, then you'll know that they are. But, many people who don't know any better fall for these traps. In fact, @NUM2 out of @NUM3 people have been scammed some time in their life I can clearly remember when someone. I know thought they were buying a pair of boots. Later That day, they got a call from the credit card company warning them about the purchase. These days you have to be so careful when you're on the computers. When my friends and I were learning about evaluating websites in computer processing class we came upon a site that seemed reliable, and accurate. We were all shocked when we learned that everything about it was fake. Computers can put people who @MONTH1 not know any better at risks. I strongly feel that sites like these and many others have a negative impact on the public. in addition, computers steal much of peoples' time to the point where family, 'doing homework and exercising is limited. I can understand the effects of too much exposure to computers because I see it everyday with my younger brother. Once he begins his video interactive games, homework is pushed a side. The only words from his mouth are, ""@CAPS5, just one more game!"" I suppose you can infer how this turns out: one game, turns two and so on. It isn't only children either. Many of my own friends are update status or pictures on @CAPS6 for three hours every night. Isn't their a point where we can draw the line. between going on for ten minutes and letting the computer control your life? When surveyed ;the majority of students said that they spent at least two hours on the computer every night. When games and instant messaging starts to take away from studying and exercise there is a huge issue. Computers take away peoples' free time and can negatively impact their grades and fitness. So, I ask you to consider the benefits of computers; but also look for the negative effects. You will realize that their are more than you would believe. Support me on this by limiting usage of computers and by helping the public see the dangers that these technological devices @MONTH1 bring. Computers can harm relationships, finances and your personal life more than you would think!" 6 5 11 +337 1 "Dear Local newspaper, @CAPS1 well @CAPS1 many others, i believe computers are not only good, but beneficial. Computers are advanced our world little by little every day. We all use them for communication, entertainment, and knowledge. Computers are like people with fun to do and things to learn. Computers are beneficial to everyone worldwide. Computers gradually advance communication more and more everyday. It used to be old letters by mail, then it became e-mails, twitter, and facebook. These websites upgrage communication today. Long distance friends can view photos, information, videos, and chat from far away. Some site like @ORGANIZATION2 allow you to instant message your friends. Lastly, video chatting is a new improved way to see a live video of the other person. According to @ORGANIZATION1 @NUM1 more user signed up for web-cams since the beggining of @DATE1. Communication is positively affected by computers. I know you @MONTH1 have fun with sports or nature, but sometimes it is great to get great entertainment for yourself instantly. Computer games only cost about @MONEY1 and are instant access. Also, surfing the web for news or funny videos is fun sometimes. Almost everyone who has a @CAPS2 gets a blast surfing the internet. Do you ever wonder how to hear the song you like when it's not on the radio? Itunes stores, organize, and plays music in a virtual library for permanent access. What also happens is youtube allows you to watch music videos or hear songs for free. Now thats why computers are straight entertainment. Finally, computers provide you with so much knowledge and is great for education. Certain websites let you access tons of knowledge. Wikipedia and diccionary.com are great for learning." 5 5 10 +338 1 "Dear, local Newspaper @CAPS1 I read the article and I think that you guys are right because in the @DATE1 kids rather stay inside on the computer. @CAPS1 who know's what they do @CAPS1 some kids are on facebook all day some are on @CAPS2 or @CAPS3. Sometimes kids dont even like to go do exercises they stay on the computer eating & eating. I think if their was no technology kids these days wont be beast. Some kids dont even like hanging out with their friends or family they say that they want to stay home on the computer but we should do more, exercises than being on the computer. If were always on the computer we wont learn nothing at school because when were at school kids could be thinking about going home to go on the computer and you wont focused on our education @CAPS1. And what if kids drop out or dont come to school anymore because they to be chatting with their friends or a stranger. What if a girl didn't want to go to school and on her computer. What if she is talking to a stranger computers so kids can just go and do some exersis instead of being on the computer and wont be a beast anymore." 4 4 8 +339 1 "Dear @PERSON2, @CAPS1 a home on your town; all you hear is, mom, mom , mom drive me to the library to get books. You see many residents just dying to go to foreign countries but have no money. Is this what you want every home to start looking like? Computers have a great affect on people seeing as it allows people to talk and interact with one another. You can learn about places youve always wanted to go to and it is probably the device that makes your life easiest. For these reasons computers are what benefits society most. First of all, computers let friends and family talk without spending a nickel. I know I have relatives who are too poor to pay the high costs of phone bills that come their way when we need to talk this means that not everyone can afford talking on a phone, but a computer costs nothing to use. Also, in the @ORGANIZATION3 issue @NUM1, @DATE1 @NUM2 a recent poll showed that @PERCENT1 of people who own computer use it to talk instead of on a phone. I know some people say that computers are too time consuming, but if this many people use computers to talk, theres no need to worry about paying phonebills. Also, @PERSON1 a @CAPS2 of @ORGANIZATION4 says that less people needed a loan when the computer came out with instant messaging and video chatting. This shows that friends and families stopped paying massive phonebills and just talked online. Furthermore, just from using a computer anyone can find facts about lands halfway across the @LOCATION1. Whats more is that they can be in the bedroom or room. A boy name @CAPS3 @PERSON4 who attends @ORGANIZATION1 said that he always wanted to go to when he was little and was as when he looked up @LOCATION2 and facts and pictures on the web. Also, @PERSON3 a teacher at @ORGANIZATION5 @ORGANIZATION1 task a poll asking how many students did projects having to do with foreign countries and @PERCENT2 of them they did. That means that so many people need to resourced foreign countries and need to use a computer to find out about it. It shows that many more use computers to visit faraway lands. Last but not least, computers are just about the convenient thing to have in a recent poll done by @ORGANIZATION2 showed that @PERCENT3 at people would rather have a computer than a car that just shows the important computers are. Also, I used to think computers were bad for you and everything, but when I received one for my @NUM3 birthday, I found out how useful they were. Many people say computers are time comsuming because they havent used one yet. Also did you know that million people use a computer thats more than half their population and such a poor country? That shows her important computers are and how convenient. All and all, now @CAPS1 have if happy residents, laughing on the computer they do because computers allow them to talk with friends learn and visit foreign countries and are so convenient @PERSON2 and readers computers withour a doubt benefit society." 6 5 11 +340 1 "Computers, More and more people are using them. They are used to talk, for lesieure and many other things. But are computers a good thing? Computers can be a very good thing to have around. Besides practically unlimited information, you can stay in touch with your family using @ORGANIZATION1. You can use @ORGANIZATION2 word to make documents and powerpoint presentations that organize your ideas. Also you can use @ORGANIZATION2 excel to manage your finances! Windows movie maker allow you to contruct your own movies ifl you own a camera. Besides the obvious most helpful features, you can play computer games, watch mores and listen to music on a computer. Like anything, computers have downsides too. Some are small and some can be very big. computers are expensive. You can't see who's really talking to you on a computer. Also, many people have important information on a computer. Peoples computers have been infected and information has been stolen leaving people helpless. Bugs can also seriously damage your computer rendering it imposible to use. Many people can be smeared on the internet as well. Hate sites that encourage terrorism, racial violence and drug use are all over the web. You have to be careful where you go when using the internet. Also, sometimes computers can take over peoples lives. People spend too much time on facebook and not enough time reading or keepng in touch with family. Computers can be great things. Between their great features allowing you to be informed all the time and programs that or be great for managing buisness, it's no wonder almost every @CAPS1 household has one. Many people don't like computers. They say that the cons outweigh the pros. I disagree. Yes, the cons can be annoying & sometimes serious. But if your smart enough to stay away from @CAPS2-@CAPS3, install anti-virus software, and never give away your information to an unamed surce, the pros outweigh the cons. So overall, if your smart enough, a computer can be a fun, convienent edition to your life allowing you to do more than you ever imagined." 4 5 9 +341 1 "Did you ever need to know something about another place, or maybe want to see your baby cousin who is not a baby anymore? Having a computer is a huge benefit to society. It not only ables you to find out information, and chat with family and friends but also can teach you hand eye coordination. A computer can tell you just about anything you need to know. This could help you learn about other cultures, places, or something as simple as what is @LOCATION1 creampie. the computer has endless knowledge. This is a huge benifit because a computer is one of the few tools that could help you expand your learning with a click of a button. Having a computer also allows you to talk to family and friends. New computers now have webcams. This benifits you to see and speak to them without having to get on a plane or any long car rides. Which I know is a big benifit for everyone who has relatives that don't live right next door whether it helps your swing in baseball or to catch that touchdown, having a computer is a big help in hand-eye coordination. Believe it or not, having to type a paper for school helps out alot in hand-eye coordination. Having hand-eye coordination can help you out a lot in life whether in activities, school work, or jobs. It is obvious that having a computer is a huge benifit to society by having that ability to learn more, chatting with family and friends, or to help you pass the football with one of your buds. The society today wouldn't be the same without computers." 4 4 8 +342 1 "Dear editor: More and more people use computers, but not everyone agrees that that benefits society. As editor of the newspaper, you have the power to inform people about situations. In my opinion computers are desperately in need because of the following: the computers give people the ability to learn about faraway places, people, and weather, they allow people to talk online with others, and many jobs use computers. Do you want a more economically advanced state? First of all the computer gives people the ability to learn about far away places, people, and the weather. I have an uncle named @PERSON1, that has @NUM1 little girls. Every day in the morning before school @PERSON1 checks on the weather, on his computer to make sure it is safe to go school. However, one day forgot to check the weather on his computer and took his kids to school. Little did he know the roads were extremely icey. Sadly @PERSON1 and his daughters got in a car accident and two of girls broke a few bones. As you can see, the weather the computer world have saved him a trip to the emergency room. Next, the computer allows you to talk online with other people. Dr. @DR1 from @CAPS1 states says that, ""chating online with others (@CAPS2) is the best way to stay in touch with others from your old school, camp and many other places."" I highly agree because adults can stay in touch with freinds from middle school. Also @PERCENT1 of students say that they usually go online to study or get the pages for homework. I believe that chating online to study for tests is a fantastic idea because it will help the students to get better grades. Some parents say that that is a way to study and a waste of time. However teachers say that ever since @CAPS2 was invented the students grades were skyrocketing. Finally most jobs today use computers. For example my dad works for @ORGANIZATION1 and the computer helps him communicate with clients all over the world. Also the chat can translate the language, thus it makes it much easier than talking on the phone. Also the teachers use computers to put grades from students in. This makes the teachers job much easier because it averages all of the grades. The computer revolutionise the jobs of people. In conclusion the computer has a positive effect on people because it gives people the ability to learn about faraway places, people, and weather, allows people to talk online with other people, and many jobs use computers. I urge you to support me by writing a positive article on computer and how the help the society. Please take my idea into consideration." 5 4 9 +343 1 "Dear editor, @CAPS1 name is @CAPS2 and I am a @NUM1 year old girl; yet active in reading the daily newspaper. As I was going through last weeks newspapers, I saw an ad to write an article about either the negative or positive factors about computers. I am here to persuade other readers about the negative affects computers have on people. As an active member of the computer, I take part in all negative factors. People who spend more than one hour on the computer are involved in @CAPS3, @CAPS4, or playing a computer game. of those kids are too involved in their compute games. I saw this segment on @CAPS5 @NUM2 about how @PERCENT1 of all teens play on the computer atleast once when they are supposed to be homework. Computer games distract from kids learning. Kids feel that @CAPS3 is more inportant than doing math homework. Computers don't benefit to kids learning. Kids or even adults who are too involved in some use of computers don't want to talk. They feel they need to focus on winning and beating all their friends. To win, people can't talk, just focus on the game. Kids who need to win and not talk could lead to lifetime results. Being self-consious or having no social skills are the biggest lifetime results from being too involved in a computer game. That is how being too involved in computer games affects their social skills. Kids who are too involved in their computer games, don't get enough exrcersize causing obsity. Kids think they are getting exrcersize by playing but in reality they are doing nothing at all. Kids think they can't leave their game, but they can. there is always a pause button somewhere on the screen. Soon kids get addicted to playing and dont think going outside is important anymore. That is how computer games cause long term effects. In conclusion, computers have no benefits on people. Computers cause no learning to be done anti-socialism, and abesity. All of these results are long term which causes you life to be okay. I dont you want a happy and successful life?! I know I do!" 5 4 9 +345 1 "Dear Local Newspaper, Have you ever thought about all the intresting things you can do on computers such as call people, order groceries, and read books for school. Today it seems like the world is held together by technology and I think computers are at number one. ""@CAPS1 my older sister moved to @CAPS2 it was hard to keep intuch and see eachother, but we found out about @ORGANIZATION1, which is a site where people all over can add people and chat, call, or webcam eachother, so we do that everyday and it's like she never left home."" @PERSON2 says about the internet site @ORGANIZATION1. @CAPS4 sure @PERSON2 and a lot of others love their computers. Studies show that @NUM1 out of @NUM2 people get more done in the day online @PERSON1 says ""everyday my day is shortened because my @CAPS3 because while at work I can order my groceries and have them delivered by four o clock @CAPS1 I arive home from work I can make doctor apt, school apts and schedul meetings all with one touch/click where ever I go, instead of looking on the calander or picking up the phone. @PERCENT1 of couples today say they met online via twitter, facebook, myspace or aol. The internet is great for meeting new people because you @CAPS4 eachother and get to know one another or look at their profile pictures and things. You cand find peolple just like you online and after a while the two of you are friends. I have some of my best friends online through a mutual friend's page and it's a sucessful friendship today. Even schools took education to the web, with all books from a class avalible at home online. Students can even check grades online now and recieve comment from teachers. So now students are pushed to use the web at home and at school. I hope I have opened your mind a little to understand the internet is not all bad, and people spend so much time on them now because everything has moved to the web like school, stores, food, even tv you name it the web has it. Personaly I spend about an hour or two on the web chating, studying, watching tv. After I might go walk or play my @CAPS5 but i'll still conected to the web because the @CAPS5 picks up on wi-fi connections. So I think computers let you open up and connect with others and get other things done on the web. I hope by now you feel the same" 5 5 10 +346 1 "Dear @LOCATION1, @CAPS1 a teanger growing up in this technologic era @MONEY1 society, I think computers are more harmful than helpful. I presume that books are better resources, people can find fun in other ways and that computers can be dangerous and cause health problems. @CAPS1 a well-read newspaper, your stand on this subject will influence the minds @MONEY1 many. I know computers can help find information, but personally, I believe that books are better resources. Anyone can write and post an article on the internet, even if what they are saying is not true at all. People can lie and say they are a doctor in their @NUM1's when they are really a @NUM2 year old working at @ORGANIZATION1. On the computer, you can never be sure who to believe, but with books you know what you're reading is accurate. The information on the computer, (that's true) you can find a book. Sure, the computer @MONTH1 be the quicker or ""easy way @CAPS6 "" in some cases, but maybe what people need is a challenge. It seems that because @MONEY1 the growing technology, every generation gets lazier and lazier, and less and less into books and it's time for that to stop. Also, people can find fun in many other ways not involving a computer. Many people use social networking sites to connect with their friends, such @CAPS1 @CAPS2, @CAPS3 and @CAPS4, but on those, you can't tell if that person is really who they say they are or not. If you want to talk to your friends, why not call them or more modernly, text them? That way you can be sure @MONEY1 who you are talking to. Too many teens nowadays hide @CAPS6 in their rooms and play games on their computers and spend less and less time with their families. What happend to playing cards and board games with your family? It's much more enjoyable, in my opinion if you play the game for real and not virtually. You can also go outside and get some fresh air, instead @MONEY1 that muggy smell in your room because you're so busy on the computer, you forgot to @CAPS5 the laundry. Plus, if kids have to start handwriting their papers that would improve their handwriting, because they wouldn't get the simplicity @MONEY1 typing. Besides, some kids don't have access to computers, anyways and you have to handwrite your @ORGANIZATION2's, so why not? Lastly computers can be dangerous and/or harmful to health. The use @MONEY1 social networks allows kids to put all their information @CAPS6 there, for anyone to see. This can lead to bad things, like being stalked or kidnapped. The internet also carries many innapropriate images and websites, that youngsters, or anybody, really, should be looking at also staring at a computer screen for hours on end is very bad for your eyes and can cause very serious vision problems in the long run. Plus, I'm sure you've heard how many typists are more prone to arthritis or any problems with pain or loss @MONEY1 the use @MONEY1 their fingers because @MONEY1 the movement @MONEY1 your fingers when you are typing. Getting rif @MONEY1 computers will help to impact peoples' well- being-in a positive manner. While many people enjoy the use @MONEY1 computers, there is really not that great @MONEY1 a need for them. Books are better resources, you can find fun in many other ways, and they can be dangerous/harmful to health. Why spend hundreds or @MONEY1 on a tool that is not even necessary? Don't let the media fool you or pull you in with their tricks, scams, or gimmicks to get you buy one, and next time you go to turn on your computers, thinks "" @CAPS5 I really need this or is there a better way to achieve what I need to get done or what I want to @CAPS5?"" because, more than likely there will be a better way. So, sometimes it's better to say ""@CAPS6 with the new ways @MONEY1 doing things technologically in with old ways @MONEY1 doing things manually." 6 6 12 +347 1 "Dear local @CAPS1 I hear you are not sure if computers are good or not well they are and I have many reasons why but I will tell you is. First the games teach hand eye coordination, teach people about faraway places like other countrys, last it helps to keep in touch with people. My first major reason is it can and does help hand eye coordination every day. It does this with the mouse you have to be very coordinated to be good at the games on the computer. This will help in every day lives to to play catch with your son or to pick something up it is very important. Also it can help you get on ethnic back round to learn about faraway places. If you are going on a trip I would want to know about that place to see what I need. Or to just look at how beuatiful the countrys are will make you amazed. So for just @NUM1 reasons I would already rethink. Finally I think this is most important reason of to stay in touch with I know my mom dont got a facebook and she talking to all he old friends she says ""nice"" I think have friends is very important to everyone and computers help them. I conclusion there are reasons why a computer is good like hand eye coordinations learning about faraway places. So I hope you have been I know I would have and there is no doubt is my you will make the right choice." 4 3 7 +348 1 "Dear newspaper, @CAPS1 people think that computers are a waste of time and that they are dangerous. Yes computers can be dangerous but they can also help you in @CAPS1 diffrent ways. Such as paying bills on line or planin vacation and even attending collage classes. For @CAPS1 people bills are a strugle. They are an incovenienc and there are way to @CAPS1 of them. If you think about it @CAPS1 people work all day on some time all night, wouldn't it be nice to come home and have all your bills payed? Well one way you can do that is from a computers, computers have @CAPS1 programs that can help you pay your bills faster so that when you come home you can relax and enjy you free time. Computers are also good for planing vactions. @CAPS1 people each year use on line programs to plan there vacations and trips, for example my family and I planed a trip to @LOCATION1 in the @DATE1 of @NUM1. When we get to the airport we had first class tikets and a ride wateing when we got of the plain that @DATE1 was the best so far. Going into a new generation @CAPS1 people are starting to take on line colleg classes do to the fact that they work or have a kid at home these @CAPS2 are good for people with jobs because they are short and you learn alot. A computer is very helpful for taking these classes because if you did not have one it would incible you from taking the class. A computer is a great thing to have for all these things. So if your a mother of a worker and you would like to go back to school you should consider taking on line colleg classes. And if your family wants a vacation you should try out one of the @CAPS1 programs the enternet has for travling." 4 4 8 +349 1 "Dear, whom @MONTH1 concern; Local Newspaper. I belive you are right. Computers can be helpful, let us chat with people but we dont exercise. Forget about family and most importantly yor health their vision gets bad, they eat more junk foor and that can lead to bad cholersterol. High blood pressure and even diabities. A computer is very addicting people stay up on it for hours. It will give you bad higiens so I think you should really take a look at this and put this on the Newspaper and @CAPS1 @CAPS2 residents I know it could be very fun and ejoyable but it would be all fun and games until your very sick you @MONTH1 take this as but this is highly serious in many ways. Not being with the people you love not doing any activities you people need to get off that computer and do more in your life for. A computer is like a drug but do it for your family and listen to my point of view so I think all computers should be banned for at least one week to look up on work or school and maybe even your health. This @MONTH1 seem like were overacting on this but we really arent. Do you want population on people having diabetis and other causing affects that can happen to your body increase. Well I think not how would that make you feel. Not good al all so people get of your feet and jogg. Do whateverenjoy time with your family. So just listen to me and stop this badd habbit." 4 4 8 +350 1 "Dear local newspaper, @CAPS1 you imagine a world without computers? Well I @CAPS1't because I think computers are great. First of all if you have a computer you @CAPS1 meet new people. Second you @CAPS1 do projects on them or homework if you need to. Lastly in a computer you @CAPS1 basically find out anything you want to know. Read ahead and discover why I think computers are great. Who doesn't like meeting new people, because I do. If you wanted to get new friends or find anyone who go to your school and you might not now you @CAPS1 look them up on your computer. Also if you had nobody to talk to one time you @CAPS1 go on the computer and try to meet new people. I know I do that all the time. Lastly it doesn't hurt anymore to make friends or talk to people online. it's actually fun once you try it. So that's why I think one reason that computers are great is because of the people you meet. Second reason why computers are great is because if you have to print something or make a project a computer @CAPS1 help. My science teacher always wants assignments printed and how @CAPS1 I do that with out a computer. Also if one day you forgot your homwork or any assignments just ask a friend online of if you have a school website look on it. Therefore computers are great because all assignments look ,better when they are printed. My last reason is because on a computer you @CAPS1 pretty much look for anything. For example, say you wanted to find a place to go to and you didn't have a adress or anything, you @CAPS1 always check on the computer. Also if their is a problem or something with you house, car, bills, or anything you @CAPS1 always see if you @CAPS1 get any hekp on internet. Lastly if you wanted to buy anything and you could't find it any stare you @CAPS1 just get it online. So basically like I said you @CAPS1 do anything. In conclusion I think omputers have a great effect on life. First you @CAPS1 meet how people or friends. Second you @CAPS1 do projects or homework. Lastly you @CAPS1 basically do anything on a computer. So that's why I think computers are great and they @CAPS1 help alot in life instead of hurting anyone." 4 4 8 +351 1 "Dear newspaper, Some people say that computers don't benefit society. But I think diferent. Computers benefit society more than you would think. They help people learn and makes work much easier. They help prevent acidents, and the save lives. Computers help people learn and make work easier its a fact. You can type you can plan your sedual. You can make a presantation or check your email. All of those things make work easier. And there are tons of more things you can do. As I said before they can help people learn. You can learn trillions of things on the internet. You can learn about everything on the internet and it is quite amazing. You could get a medical degree on the internet. Makeing work easyer or helping people learn aren't the extent of the computers abilitys. Computers can prevent acidents in anything that moves. For example cars millions on the road today and some can practily drive them selves. And that is all done with computers. Also planes, the only reason the piolot is there is in case something gose wrong. Same thing with trains. Furthermore @CAPS1 are completly computerized all the humans do is tell the computer what they want it to do. Almost everything that moves within its own power has been computerized at some point in time. And that makes the world safer for every one. Finaly computers save lives, its completly true. In hospitals without computers people would be dieing every day. They use them to keep records, record vital signs and asist with surgery. In surgery computers help by only haveing to make a tiny insision and can be much more acurate than human sergons which save lives. Also computers can mak sure that a operating room is completly sterial which reduces risks of infection. As you can see computers benifit society a lot more than you might think. They help people learn and make work easyer. They prevent acidents with which reduces people going to the hospital. And if they do go they are almost garenteed a survival. So what do you think about them now." 4 5 9 +352 1 "Dear @CAPS1, Experts agree that people go outside and exercising because their are three reason why people should go outside and there are: people don't have a lot of exercising, they can hang out with their friend and family, and people and kid should enjoying the outsid nature. Let me explain, people and kids these days do have alot of exercising. People who don't exercising can gran weight if they don't exercising at all. Also, parents and kids who spend all day on their computer or laptop can be over weight. Kids these day, have hard time to exercising because there are over weight by staying on their computer and play their computer game. Wouldn't you agree the kids and adults can hang out with there frienda and family. Kids need to stop going on the computer and go outside more offing with their friend or family. You might want to consider that parent need to spend time with there friend and family then staying on the computer at home. Don't you think that people should go outside and enjoying the nature. Amazingly, people know what nature is but the don't know what the true meaning of nature is! Adult should spend time by going outside then stayin at their house because @PERCENT1 of the world dont have computer at all." 4 3 7 +353 1 To the computers people technology is a good thing to have. If we do not have technology then we can not call no one. We wiil not have computers to go online. We can not talk to my family or friends. People us technology for they jobs like people that work for cars they need computers to see if the cars if old. That is why will need technology. People need technology for a lot of thin have technology to us. Computers is the big thing because we need to look up a lot of things online we need computers to test on. We call people with technology you us computers to go online on google.com that is why we need technology. so we can call people. 3 2 5 +354 1 "Dear local Newspaper, @CAPS1 the years computers has been a great invention. It helped people learn more information, communicate with people, and @CAPS6 invent more technology. This is a positive effect for our country. let me excplain. Computers is a positive affect for our country because it helps us find information for school and for location were to go. The computer helps me find information for my science project faster than going to the library and looking up information on a book."" @CAPS2 @PERSON1 in @NUM1 grade. In case we get lost on the roads the computer can @CAPS6 us get to out location. Another reason why computers is a positive affect to our country is because it can @CAPS6 us communicate with our friends and family.""@CAPS3 I cant contact my mom I email her on my computer."" @CAPS2 @PERSON2. Also most of kids parents can contact their teacher and email them to see how they are doing. The last reason why computers is a positive affect to our country is because it can @CAPS6 us invent diffrent things. Scientist can easily invent more kinds of technology by using the computers."" The computer has helped us first make a model of our invention then we start making the details."" @CAPS4 @CAPS5. @CAPS1 the years computers helped us with almost everything. Conclusion the computer @CAPS6 us with our search for information, @CAPS6 contact people, and @CAPS6 make new inventions. This has also helped us in wars. We should let the computers be in the @LOCATION1" 4 4 8 +355 1 "Dear @CAPS1, I think that computer are a waste of time, but they also help you in many ways. You should only go on the computer if you really have too. Peple are on the computer for hours at a time, they go on the computer if they are bored or if they don't want to go outside. People have made the computer daster and more effective. So more and more people buy computers each year. Computers als helsp you in al of ways, you can learn from a computer, you can find a job on the compter, and you can also shop on the computer. So if you need to find a job then you can go on the computer and find a job that is right for you. You can learn from the computer. The computer can give you so much information it is unbeleiveable, you can look up anything and even ask questions. Last, you can shop on the computer. Say you can find something in a store and you looked everywhere so you go home and you can go on the computer and find what you are looking for. But, you most likely are going to need a credit card. So this is why I think computer are helpful but a waste of time." 3 3 6 +356 1 "Dear Newspaper, @CAPS1, I am on the computer alot. But I think it is one of the most addicting, time consuming inventions in todays society. Yes, computers have benefits such as talking to friends and family you don't see that often, doing school work, and gathering information. But in my oponion I the people should reduce their usage of computers. Sure, computers let you interact with friends in family via e-mail, or @CAPS2 messaging, or social networking websites such as @CAPS3 or @CAPS4. Guess what? You can easily communicate the old fashioned way with cell phones, or even writing a letter. See? There are alternitives for communication. Exercise is so important now a days, and people do not get enough of it. Did you know that obesity, has gone up @PERCENT1 since last year? Thats a fairly big percentage, and we don't want it to get any bigger. If people are wasting away, staring at their computer screen and not getting any sort or exercise in, the number will get bigger. Also, computers can cause all kinds of medical problems. For example, about a month ago my back was really bothering me. I went to the doctors and he told me one of the likley causes was leaning foward togo on my laptop. ""Computers can also cause vision problems and haedaches."" says specialist @CAPS5. Oz. We can prevent these issues if we take a stand against computers! We can limit our use to two or three times a week, and only use it for important reasons. I hope this really is an eye-opener to the negative effects computers have on us." 4 4 8 +357 1 "Dear local newspaper, I am writing to you because computers are affecting humans in many ways. Some can be terrible, and others not so bad. Many average people are now staying inside all day on the computer playing games, or on facebook and other interactive websites such as twitter and @CAPS1. This crisis is interfering with school, work, or excersize. More and more people each day are not getting enough exercize or work done. We have to stop this devastating pandemic! People who are staying inside all day arn't as healthy as they were before. There immune system making the risk of getting sick greater. This can cause people in severe positions or even death. @CAPS4 you stay inside all day every day, the computer will be so addicting it will take over you and make it more important. In order to maintain healthy you have to eat right and good in riding a bike. @CAPS2 someone is inside on the computer frequently, they arn't @CAPS2 you're addicted to something like watching t.v. or playing @CAPS3, @CAPS4 you are addicted to the it can also interfere with family events, sports. @CAPS2 youre on the computer you forget about homework, grades drastically making you go to summer school, or even repeating a grade. Also @CAPS2 you don't prepare for sports it can make you not play up to your potential. This is why computers are affecting every day people. There are more reasons how people are being affected by computers, but these are the most common." 4 4 8 +358 1 "Dear @CAPS1 of the @ORGANIZATION1, I personaly disagree with the experts who are concerned that people are spending too much time on their computers and less time exercising, enjoying nature, and interacting with family and friends. The reason why I disagree is because it not the computers folt people don't get out and exercise. Buying a computer and getting on the computer is free will and the computer dosen't you get on it that's our choice so we can't blame the computer for people not excerising. Another important thing to remember is that computers are important is because they help you get more educated. For example there are computer class online for people that want to there degree in different fields, with just a click of a button you it can change you future and career for the rest of you life. The most important reason is because it help people learn about different cultures and ways of life. I love learning about @LOCATION1 and @LOCATION2 even through they had that terriable storm. I thank you for listening to my opinon and I hope that it change's your point of living a life without computers" 4 3 7 +359 1 "Being active has no limit, but technology does." 1 1 2 +360 1 "Do Computers @CAPS1 Society? This question might be answered forever. I have an opinion about this and it might not effect everyone in the world but I do hope so. Exercising, great way to stay in shape but is you sit on the @ORGANIZATION1 all day you dont have a chance to stay in shape. So while everyone is fit you eventually will be fat. Whik you sit there playing the some @ORGANIZATION1 game everyon is out side playing at the park, swimming in the pool or fishing at the lake. Sitling on a @ORGANIZATION1 destroys your life bot physically and socially. Lastly, @ORGANIZATION1 will stop you from spending time with friends and family. Also this will stop you from interacting with new friend, and your old ones will find new ones. Lastly, I you sit on the @ORGANIZATION1 @NUM1 you will miss out on the awesome @CAPS2 life you were waiting for since you can remember. So the next time your friend says to go online after school, say you'd rather not because you don't want to get addicted." 3 3 6 +361 1 "Computers have a very positive effect on people. Computers help people in many ways. They teach people about history and faraway places. They also are a great way to yourself. Computers also are another way to comunicate to people for away it only a few houses down. Computers have a of knowledge and more is added everyday. Everyday i go on the computer i learn something new. You can search the word @LOCATION1 and instantly have millions of web pages in fron of you that all had new knowlage and exciting things about @LOCATION1. Computers are much faster than having to go down to local library and look for a book that has the information you need. You can also find diffrerent veiws and perspectives of a subject online. Depending on what website you go to you can get opinions on certain places and events, which you cannot find books at the library. Computers have a amount of knowledge instantly and also some opinions of things. Computers can also entertain you. There are many entertaining website online that you can go to when you bored. There are books and magazines you can read at anytime you want. If you like to read then check online, these @MONTH1 be a book you enjoy free of charge to read. Some people like to play games. On the computer you can find almost any game you want to play. These are board games, video games, strategy game, adventure games, and many many more than that. I could go on for hours listing at the different types. If you like sports you can look on the internet and find pages about different sports. You could find ways to improve how you play or you to play that sport. If you like to watch @CAPS1. you can also do that on a computer. Some @CAPS2.V programs put the diffrent episodes online so people can easily view them just by one click of the mouse. Computer can anybody who uses it. Computers help tech you things entertain you. but they also can communicate to your friends and family. Many programs let you to people through the internet. You could send emails to your cousin half way across the world. In emails you can attach pictures and files with text to communicate. These are various programs. IM means instant messaging, that means that instantly you message to another person using that program. You put a message in and away it goes instantly reaching ther person you trying to teach. Now thse are even more to communicate. you can make audio calls to a person using the computer. It is like a phone just not.Web cams make it possible to record and send video instantly, but can also uses to talk to one through a video call. The program connects you to your friends or family and you can see them thourhg a video. computers are a great way to comunicate with others. Computers help in a positive way. They give you access to an amazing amount of information. They can you. Computers also great way to communicate to people no matter how far away that person is. I would completly say that computers are a positive thing." 5 5 10 +362 1 "Newspaper, I feel that the use of computers is no big deal. it is a convienient way to communicate, it teaches young adults and adults social and life skills, and is no different than other addictions. These three reasons are why I feel the @ORGANIZATION1 is under-appreciated. My firsty reason why I feel that the @ORGANIZATION1 is under-appreciated is that some people think that less time is spend with family, but I talk to family, and friends everytime on the @ORGANIZATION1. It is a conveinient, fast, and for the most part safe way of communicating. When I need help with something, I sit at the @ORGANIZATION1 and fb chat someone, or if their not on, I e-mail them. I get my answer within a day. Also you can look up the answer online, the internet is a beautifully smart device. Also if you call someone versus chating on the @ORGANIZATION1 you @MONTH1 have no idea who they are, it is also much easier to trace a call then trace a @ORGANIZATION1 to a certain location. Communication is faster, safer, and more conveinient over the @ORGANIZATION1. My second reason for being @NUM1 is that it can help teach said and life skills. For example, did you know that on average, an adult will make @MONEY1 more if they know how to type good, and fast? The @ORGANIZATION1 serves many functions. Facebook, for example, is a social network, amny young adults can learn basic social skills by having a facebook. Social skills play a very important role when you are finding a job for the first time. If you have good social skills, your boss @MONTH1 like, and apreciate you more. Which can only lead to a promotion! Computers are very nifly to have around! my third, and final reason, for believing, with all respect, that @NUM2 people are blinded, is that people don't easily get addicted to the @ORGANIZATION1. It is very hard to become addicted to the @ORGANIZATION1. Only about @PERCENT3 of facebook users are addicted. Compared to an alcohol addiction, about @PERCENT1, or drug addiction, @PERCENT2, @ORGANIZATION1 addiction is microscopic, and not to mention, not deadly. The only similarity between the @ORGANIZATION1, and other deadlier addictions is that they are addicted, and @MONTH1 become grumpy if asked to stop. ""@ORGANIZATION1 addiction can be cured with a speedy recovery, and as long as you are on for an hour or less a day, there is nothing to worry about"" says @PERSON1, at the @NUM3.) @CAPS1 there you have it, computers use is not a major problem. It is a conveinent communication device, an effective way to learn social, and life skills, and is no huge major source of addiction. @CAPS1 there is nothing to worry about. Sit back and look it up on the internet if you don't believe me." 5 5 10 +363 1 "I agree that computers do benefit society because every one uses one or has one it helps you with important stuff the computer makes things easy. Computers, give exercise in a way it makes your fingers move faster. The computer is the best thing ever that happend to this world you can chat with your friends family, print writing play games. What can get better than that we can research a famous person google dead people look up pictures. But the computer makes you lazy because it makes you wana just sit there never get off of it its addicting to people but others just don't know the meaning of using or having a computer. If the others had an computer they would change there mind. You can go on myspace thinks to tom talk to friend family people from a diffrent town, state. You also can go on google yahoo, facebook, twitter the computer and internet is really fun and it give you a little exercise. And it helps you with your school work, home work, research of a country, place, house, vacation you can do lots of things. But then the other people have a point enjoying nature is good because it gets you healthy strong and it will get playing sports more and having fun outside instead of staying in side all day doing nothing staring at your computer screen not wanting to get sleep or going out side so both pretty much the same to me but I do with the first opionion because computers are the best!" 4 4 8 +364 1 "You've got mail! @CAPS1 my computer which is filled with emails from distant relatives and friends. Without computers, I would not be able to keep in touch with these people as efficiently as I can with computers. In the past few decades, technology has been drastically advancing, resulting in the incredible computers, with computers we can type faster, communicate with distant relatives, and find information like ever before. Because of this incredible invention, computers have allowed us to do @LOCATION1 things that are truly astonishing. To begin, we have thrown away typr writers and purchased computers. Now like never before, we can type faster, improve hand eye cordination, and edit our papers without the help of a peer. First of all, with the extreene amounts of typing needed for colleges, most occupations, and everyday list, computers have made this faster and easier process. I am sure most of the things you have to type for @LOCATION1 are written using a computer. Secondly we have gained amazing hand-eye cordination skills. Furthermore, be typing and reading at the same time, we have trained or eyes to do many @LOCATION1 things similar to playing the piano. Lastly, now with spell check, we are able to edit papers without using someone elses help! The computer can sense problems in an instant, which is even more effective without a doubt, the typing documents aspect of computers is @CAPS5 one reason why we need them around. Another reason is because of communication. Thanks to many @LOCATION1 communication applications such as @ORGANIZATION2, @ORGANIZATION3, @CAPS2 and @CAPS3, we can now communicate with a surplus of distant friends and relatives. For example, with both my sisters at college it was hard for me to communicate with them however, due to @CAPS2, I can see their pictures, instant message them, and even video chat! Without computers, being able to see their pictures and what they are up to would have never been possible. Secondly, email has created a fast, easy way to update people on schedule changes, ideas and even sales and specials offered by stores! Snail mail is no more with this extreemly efficient way of communication! Clearly, the communication aspect of computers is an explicit reason why we need them in our lives. Last but not least, computers have allowed us to access information like never before. We can now find facts and figures, faster, easier, and with hundreds more optinions, within seconds, thanks to @ORGANIZATION1 and other search engines, we can find the information we need. Not to mention, the process is exceedingly @CAPS5 type in exactly what you are looking for and you will be brought to exactly what you need! Thirdly, there is many more options and sites to choose from. For example, if you were to type in a certain animal there would be an overdose of pages pertaining to your topic. Now, it is possible to find exactly what you are looking for! There is no question that computers have made searching for information easier and faster, which is exactly why we need them in our everyday lives. Conclusively, computers are an astonishing invention that has opened @LOCATION1 doors for today's society. Without computers we would not be able to type documents as quickly, communicate, and find information in a fashion. However, because of this invention, computers have allowed us to do incredible things. People all across the country are expenencing the efficiency of using computers and now we can to! It is evident, that computers are effective, and are advancing technology in our society." 6 5 11 +365 1 "Can you imagine a world full of lifeless zombies obsessing over technology such as computers, television, and cellular phones? Our world as we know it will come to an abrubt end if we don't stop this nonsense. Computers can cause obesity, a lack of interactment, and they waste their time on these useless items. Our world can't set aside time for such. Our planet is run by us humans and if we don't take care for its necessities, we will all die including our beloved planet @LOCATION1. Computers aren't a benefit to our society today. First off, computers can cause major obesity like it has done already. Obesity is one of the most brought up health problems in the world. Many issues cause obesity but technology (computers) take a big role in it. Instead of sitting on a computer all day, they can do something a lot more productive such as taking a walk starting a club (adult once children!), help out neighbors ect. So what if they teach hand eye cordination they don't teach us how to stay fit! Computers play a big role in the obesity factor. As adults, you should know how much obesity matters. Children are the future nobody would want the future leaders to be known for the widespread obesity. Never theless, computers take away ""bonding"" time from family and friends. Adults and children alike are lacking social needs. They don't verbally and physically interact ith their ""online friends"". And they wonder why families these days are turning out the way they are the source of the cause is computers. Anyways, people spend too much time on computers if people didn't waste so much time on computers they wouldn't be losing jobs like dropping flies. The unemployment rate is high because they suppose they ""don't have enough time"". When all their time is devoted to To computers if they took out the computers in their lives, they would have @CAPS1 of time to do such. No one wants a ""stay at home"" unemployed loser as themselves. In the end, computers are not a benefit to our poorly run society. They cause obesity, corrupt social needs and eat the people's time away, you @MONTH1 think computers allow others to ""chat"" online with their ""online friends"" but they don't provide our physical and verbal social needs which results in a low self esteem. If newspapers keep publishing articles about the ""benefits of computers."" people will soon stop believing that non sense and eventually stop purchasing these newspapers. Nobody wants to read lies, do they?" 4 5 9 +366 1 "Computers, Computers, Computers, its all we hear about today. New websites, chatrooms, games and much more. I agree with the experts who think that we should spend more time outdoors with friends and family. Computers take over peoples lives, you don't know who is looking you up on facebook or @CAPS4 and know you can do almost anything on them. Lunch...,@CAPS1...,@CAPS2...,@CAPS3....Computers are taking over our lives. Believe it or not some people bring computers everywhere they go and once you get on that @CAPS3 chances are you won't be getting of it for a while because you keep clicking and keep finding new stuff. I do have to say computers are a cool device but there has to be a limit. We can not be on the @CAPS3 @NUM1 looking up what @PERSON1 said to @PERSON2... You got to come back to earth and spend time with your family. The @CAPS3 might be a cool device but that does not meen that it is safe to post stuff about you on. Facebook & @CAPS4, probably two of the most dangerous sites to be on. Anybody could just type in @PERSON1 and get @NUM2 maches and find you eventhough you don't know them. People are not always as they say they are. People could say taht they are a @NUM3 year old. Just leaving college when it's really a @NUM4 year old @CAPS6 just getting ready to enter the senior center. Don't trust anybody. Now and days you don't even have to leave your house. You can shop, talk, @CAPS5 taxes, bills, and have a vurtual life on the @CAPS3. Pretty soon @CAPS6 kind as a human will become all together through the @CAPS3. Some computers probally have a smarter system then same humans do. What I am saying is limit your time to the @CAPS3 or thats where you will be spending it all. Know you know that I think that computers need to be seen less throughout the human day. Also that they are taking over our lives, are dargerous, and you don't even have to leave your house to make a living. I hope you take my thoughts into consideration. Thank you." 4 4 8 +367 1 "@ORGANIZATION1, @CAPS1 is a lot of positive things about technology, especially computers. Computers gives you a chance to communicate with people from all around the world; also computers gives you the opportunity to go on educating websites, and last makes it easier to shop and pay bills. Talking to people from around the world can be interesting. Computers help you do that, using the internet. You can learn almost different people and their cultural background, or even talk to your friends and families that live in other cities, states, or maybe even countries. Yes, some people might say they cost too much, but that's really only a one ime price. Computers can be very helpful to students as well as teachers. That reason is because students can get homework help on educating websites. On the other hand it helpful for teachers because they can put their students grades online and won't have kids bugging you about what's their average in a certain class. Yes, I know their are bad unappropriate websites, but their are a lot of ways to block them. For an example I had a @CAPS2 in @CAPS3 and I needed a lot of help, and my teacher told me about a website called studyisland and by going on that everyday boosted my grade up to a @CAPS4. Computers give you a chance to get your bills paid and do some shopping for a cheaper price. Their are ways that your things that you buy online could come a few days late; but think about how much time and money your saving because you ordered offline instead of going to the store. But it's also very helpful to people with disability. They're are a lot of positive things about computers. They give you a chance to communicate with people across the world, and gives you a chance to go on educating websites, and last helps you pay bills and go shopping. Local Newspaper computers are a big benefit too society, and without them a lot of things would'nt be possible." 4 4 8 +368 1 "Dear @CAPS1 @PERSON1, Computers have helped us in many ways. Computers have helped children and adults learn, increased the amount of jobs and computers have helped law enforcement as well. Yes, i, agree some people do spend too much time on these machines, but that doesn't mean they haven't helped us. Computers help children and adults learn so much. Children can use their computer to re-search homework they're doing or even just research thing for fun. Most adults have been through school and are educated but computers help them make discoveries about space, the human body, etc. So not only are computers teaching children, but they're part of making new discoveries that need to be taught to children. Right now our economy is not doing to well. A ton of people are out of jobs and can't support their families. But imagine how many more people would be out of work if we didn't have computers. @PERCENT1 of our society works with computers. An that means @PERCENT1 of the people won't have jobs. Computers not only give us knowledge but they give over half us catch the members of society that do wrong. Computers have helped catch law enforcement for a little bit more than @NUM1 years. Yes, crime has gone up in the past years, but computers have helped us catch criminals. Computers store massive amounts of data, which means we can story already arrested criminal's finger prints, pictures, @CAPS2, previous record, etc. to help us catch criminals. So yes computers have helped us in more ways than one. Computers have helped children and adults learn, increased the amount of jobs, and helped law enforcement. Even if people spend too much time on thse machines, it's their decision and look how much computers have helped us. Make the right decision let out technology continue to edvance." 4 5 9 +369 1 "Do you use a computer? Is there one at your house? Well, the average household owns two computers, but this isn't good, @CAPS2 computers are taking valuable time away from hobbies, nature, and real-life. First, computers take time away from hobbies and friends. Some of my friends spend @NUM1 hours on the computer a day that they could be playing. a sport or hanging out. Also, the computers become the center of their lives. People ask me "" @CAPS1 weren't you online @TIME1?"" and i answer ""@CAPS2 i have a life that doesn't revolve around @CAPS3."" @CAPS4, the computer takes time away from nature. People dont acknowledge the beauty of the outdoor. Now that our lives are so orderly, we need the wilderness even more than @CAPS2 it helps us to appreciate ourselves more and appreciate how special our planet computer take all that away! Third, computers take us away from real-life. Some people dont know how to have a face-to-face conversation, they only know how to communicate by email or @CAPS5. I acknoowledge that getting away from real life can be relaxing but some people dont know which side the stomp goes on a letter. It @MONTH1 old-fashioned, but i believe people put their heart something you can't do by email. In conclusion, computers take time away from real-life, nature and your hobbies. Plus, you can get arthritis in your hands if you type to much." 4 4 8 +370 1 "Computers are becoming a household item in the @LOCATION1 and around the world. There is a problem through, because some people believe that computers don't benefit society. In my opinion, computers are a @CAPS9 thing for our everyday lives. The internet allows us to communicate with friends, family, and more people around the globe! Its various programs help keep files and other things of that nature organized and updated. Finally, computers are a @CAPS9 resource when researching for projects, reports, homework, or anything else that requires information to complete. The world is a large place with many people, places, regions, and countries. Families sometimes move far away from their families and friends, so they want to keep in contact. Post is a very slow and costly service, while the internet is cheaper and quicker! IM's, @CAPS1 @CAPS2, use one of these fast and cheap ways. They allow you to send a message and receive a message on any day, at anytime, in any place with little of no hassle involved. Another way is to use websites like @CAPS3 and @CAPS4, which allow you to update your ""status"" on your wall so everyone on your friends list can see or comment on. The final and last way is by using a webcam, which enables you to see the person on the other end of the ""call"" and you can also hear their voices. This is the best way, in my opinion, because instead of sending text and pictures they can explain everything in their own way with no limit on how much they can say. Many people have noticed that the world is not an organized place. Computers help organize it with their many applications and programs like @ORGANIZATION1 apps, @CAPS5, and document folders. @ORGANIZATION1 is a chain of apps for everything from writing documents to making spreadsheets to making presentations and even to making fliers for special events. These apps are the basic to starting up a business or promoting an invention. @CAPS5 mainly centers on keeping information stored an organized in files however you wish and is @CAPS9 for quick access to them. My parents and other adults I know always say ""organization is the key to success"", so @CAPS5 definetly helps. The final and most basic way that computers help for organization are document folders. These little things come in handy when you need to save something quickly bu want to keep it organized. All you have to do is name it, click save, and bada bing bada boom you're done! Most importantly, computers come in handy when researching for projects or something else that requires lots of up-to-date information. Books will take a few days and you only have @NUM1 days to research, create, and organize your project and data. What are you gonna do now? You could hand it in late, but then you'll yet in trouble. Here is where the fast and reliable internet comes in if you need to know the difference between @PERSON2 and @PERSON1, use the search engine @ORGANIZATION2. If you have a question about the @CAPS7 @CAPS8, use @LOCATION2. Anything at all that you @MONTH1 need is at the tips of your fingers, with a little help from your computer and internet of course. In conclusion, I would like to state that computers aren't a good thing for society, they are a @CAPS9 thing for civilization! From communicating with friends and family around the world to organizing our everyday lives and helping us research important topics, the internet and computers are a @CAPS9 way to help out our lives in my opinion. Wouldn't you agree with me?" 5 5 10 +371 1 "About @PERCENT1 of the world today, use computers. Although you @MONTH1 spend time on the computer, you can contact family and frinds, exercise your brain, and there is time to enjoy nature. Have you ever heard of a email? Well it's a contacting source you can use to contact family and friends. Also there are other sources you can use to conact family and friends. For example, facebook, myspace, and twitter. Even though you're on the computer, you can still do this, you don't always have to call them. I remember a time when I called my aunt from my cell phone, and it wasted my minutes. Something simple as this could've been done over an email. So computers do have a good point to it. Do you know online you can exercise your brain? You can do this by learning new information you haven't learned before. For instance, if my sister needed help with science, she could go online, and learn more information about it. Some experts are thinking that it's too much time on the computer, but it can be very useful to others, by helping them gain knowledge. Computers can even help get online, tutoring, so you can exercise your brain there also. Do you know you can enjoy nature anytime? About @PERCENT2 of our world enjoys nature. Don't you think it can wait until later? Also some people don't like the different seasons and might want to stay in their homes. For example, when it snows. I think nature is good, but I don't think others want to be out as much. Also I know we are apart of nature, and nature is part of our society, but the seasons change and it's lots od bad weather. In conclusion, the computer has some good sources. Although you @MONTH1 spend time on the computer, you can contact family exercise your brain and there time to nature." 4 4 8 +372 1 "Dear newspaper, I think computers have a good effect on people. Computers are very helpful to many it gives them an education, and they can interact with many people. Computers can be very helpful to many people. Working with computers can give people extremly well hand-eye coordination. Dr. @PERSON4 said, ""In recent surveys and tests, I have noticed a major increase with hand-eye coordination of @PERCENT1 all thanks to computers. ""Computers is also a way that people can learn to type in a recent survey at @ORGANIZATION1, @NUM1-more students know to type, thanks to computers. Computers can be very helpful to business people with creating power points. Instead of making a really big poster board for @CAPS2 @CAPS1 project, I made a power point instead that was so much easier. Computers can be very helpful to many people. Computers are used in many schools to help teach students about new things. For example, students can learn about interesting places that they never knew about. ""@CAPS2 friends is moving to @LOCATION1 and she has no idea what it's like, or where it is. So, we looked it up on the internet and found out so much cool stuff about it, "" says @PERSON5 computers can also teach students about new cultures. At @CAPS3 @ORGANIZATION2, @ORGANIZATION2, @PERCENT2 of the students learned about @NUM2 new cultures in one year, thanks to computers. Not only can computers tell people about interesting places, but interesting people. I never knew that president @PERSON2 had @NUM3 brothers, and gre up in @LOCATION2, did you? Computers can be used in schools to help teach students about new things. Computers are used by many people to interact with another. using computers is an easy way to talk with friends. Using instant messenger is free! Now parents don't have to pay annoying phone bills anymore! In a recent survey done in the town of @CAPS4 @CAPS5, @PERCENT3 of the people there thought that using computers to talk to friends was alot easier. Computers can help people meet new people online. Habe you ever heard of the dating sites? Well, this is what @PERSON1 has to say about it, ""@CAPS6 wonderful! @CAPS2 husband and I met online and we have been together for @NUM4 years."" @CAPS7 you have a faw away cousin and if you call or write them a letter it's too expensive? Well now you don's have to worry about that anymore because talking to distant relatives online is free! ""@CAPS6 so much easier talking to people online."" says @PERSON3. Computers can be used to interact with another. Computers have a very good effect on people. They are helpful, can be used to give education, and they can be used to interact with another." 5 5 10 +373 1 "To whom it @MONTH1 @CAPS1, I have recently heard about your argument on the effects that modern day computers have on society. Some people feel they have a positive effect, such as learning new information, and interacting or chatting with other people. Others feel that society is devoting to much time to computers, they feel that these people are spending less time exercising, enjoying nature, and with their family. I feel that people are devoting themselves to the computer. People think that all things on the internet are true, they're not, @PERCENT1 of all teens across the country are addicted to the computer. First, things posted on the internet are not always true. They can be posted by anyone, whether it's true or not. My friend found a website with very detailed information for an essay. She turned it in, and the teacher gave it back the following day. In big red letters it said ""false information"" @CAPS2 she had gotten the information from a book. she pobably would've gotten an ""A+"". Second, @PERCENT1 of teens living in the @LOCATION1 have become addicted to using the computer. My friend was obsessed with facebook from @NUM1 until @NUM2 she was on, daily. She began failing classes. She didn't do homework, didn't study for tests! She failed the @NUM3 grade. This all happened because she was addicted to a website. This is why I agree with the statement that experts are concerned with people spending to much time on the computer @CAPS2 you want to continue a healthy lifestyle, and avoid becoming to addicted to the computer, limit yourself. Make the smart choice." 4 4 8 +374 1 "Dear local Newspaper, I believe that people who uses alot of technology such as computer are not good, technology can affect adults and even more is children. Children who go on chatting websites such as facebook are starting to see a difference which is in there grades. I found out children who gois on face book are starting to not turn in home work and there grades are going completly down, I heard a student say once he had got on face book he stoped doing his homework and reading his grade dropeed from a @CAPS1 t a @CAPS2 average because he was much focused on the computer than school and his reading. I belive computers can be really addicted to people the first time you get on a website it go's from once a day to twice a day and further on its as if the computer is sometime connected to you and we can let go. People who allow themself to chat online can also be a dangerous thing, young females and males think its exciting to chat with some one in a different state or city but its not exciting its very dangerous. Chating online is very dangerous because the person that you are talking to could have murdered people or could have kidnapped kids or could be wanied but we wouldn't know because on chat lines you dont have to put your fear name, you could put a false picture, and unknown age that's why in cases something go missing because they didd'ent think before they started chating. Another reason why using or being on a computer can be bad because it can lead to a strong distraction from you family instead of sitting down and asking your family now was thier day you'll be in a rush to go on the computer. The computer can also lower you test and quiz grades you can be on the computer for a maximum of hours that you need to be studying for a huge exam the next day and when you fail theres no one to blame but yourself because of your addiction to the usage of an computer. In conclusion @PERCENT1 of people have been affected by computers and its not a good thing you could miss a day out of work or you can be tired and exhaused because all your energy is wasted stay off of computers unless educational." 3 4 7 +375 1 I not agreed the people shuld d in the computer a lot and I going to said way. My first reason is because if you are a @NUM1 old man or your not going to d wit your kids and you going to have eyes problem so thas way you shuld in d in the computer a lot. My secon reason is the you going to have problem wit your wife if she found out the you are talking to another woman online because a lot of people they wife found out the they cant d wit other woman. My teard reason is the if you are a kid like me you not going to have fun and you not going to have friends because the computer problem came and go and not going to d wit your family and you lil sister out said playing wit her. So thas why you shulding d a lot in the computer. 2 2 4 +376 1 "@ORGANIZATION2. Hey ma name is @PERSON1 I'm @NUM1 years old I go to @ORGANIZATION1 @CAPS1 @CAPS2 going to talk to you about expert people saying that computers are effecting the society. But technology believe that computer have a positive effect on people. More and more people use computer, but not everyone agrees that this benefits society. People think computer benefits society, @CAPS3 it don't people learn more they also could talk to people online if they dont got a cell phone to talk you could also research places you wana go to vacation and you could see how it look. Computer is one of the best things they inveted, but is bad to some people because they want to search direction and vecation places but they cant so is hard for people who dosen't got a computer to find out, computer dosen't benefit the society. Those who support advances in technology belive that computer have a positive effect on people. A computer is one important in ma life if @CAPS2 behind in some classes I could do some research and study at home and learn about it. I lost ma cell phone but now I talk to ma friends online when ma parents dosent wana take me shopping I go shopping online is easyer to look fourwut you want. People learn alot with computers, computer is @CAPS3 the world. You could see earth, space the city and wuts going on in internet computer dosent effect the society dosent effect the society in makes it easyer. Give people ability to learn about far away places and people and even allow people to talk online people. I dont know about @LOCATION1 the only thing I knew it was hot but I searched abot it @LOCATION1 is like a cool/park is alot of fun things you could do so I want for vacation and things was true. Online is a great place to chat with friends or family you could keep in touch. Some expert people concern that people are to mouch time in computer instead of exercising. @CAPS1 people do spend alot of time in computer but they do exercite when they go out with family the play the sport when they shopping the are walking thats exercising i bee in the computer @NUM2 but I still exercite I play basketball all the time from the morning till the afternoon because ma health is in portant. You see exspert people you might thing computer are effecting us but is not is the world real easy to find direction places to have a wonder full vecation and it help us study for @ORGANIZATION1 we could apply for jobs and @ORGANIZATION1 online computers are helping us." 4 4 8 +377 1 "Dear Readers of the @ORGANIZATION1, @CAPS1 you imagine life without your computer? No? Well that's what I am trying to change. Millions of @CAPS2 spend countless hours with their eyes glued to '@ORGANIZATION2, @ORGANIZATION3 and @CAPS3 monitor screens. Spending that much time sitting in one space isn't healthy, not only do people not get enough exercise but they don't get the chance to apperiate the natural world around them that is ever changing. Teens and even small children get lost in cyberworld and don't use their after school time wisely to study or do homework. The internet is also a dangerous place and the growing computer use with maximize the problem. To begin, the obesity rate in @LOCATION1 is growing rapidly, a recent study done by the @LOCATION2. goverment shows that @NUM1 people are over weight and @NUM2 people are on the of obesity. We @CAPS4 could decrease the obesity rate and be healthier and happier by exersicing and getting out more. Spending all your time glued to a computer screen will only increase your chances of becoming over weight. Secondly, the more time you spend cooped up inside the less time you get to enjoy nature. The natural world is ever changing, and you will miss out on a lot of amazing opportunities if you hardly ever step foot outside your front door. Execive comouter use will wear them out quicker than normal, where does your old word out computer go when you get the @ORGANIZATION2? A landfill! The more your use your computer the faster you will trash it. If every @CAPS5 threwout one computer a year their would be over @NUM3 million discarded dells, gateways, macs, we would be living in trash. @CAPS1 exesive computer use ruins the environment, and hurts your health! What are you waiting for? Go run outside! Ride a bike! Give your computer a break. Finally, the growing computer use increases the amount of internet predetors, and the odds that you or your child could be tougeled skyrocket. With more and more kids on the computer each okey the, internet saftey level drops. Not only could these children be watching inappopriate videos on youtube or cyber bulling on @CAPS6, they could be giving personal information out to people they don't even know without realizing it on myspace and facebook, @PERCENT1 of kiddnappings are possible because of information found on the computer. Do you want any thing like that ever to happen to you or your family? I didn't think so. Get up off of your comfy computer chairs and take a walk. Limit your internet and computer use, all it does is hurt you, theres no gain. Thank you for reading and don't support rapid advances in computer technology." 5 5 10 +378 1 "Dear local Newspaper, I have heard that there is a controversy over if computers benefit our society. Based on my opinion, it has become clear to me that they have beneficial because they help us keep in contact, complete our daily work, and give everyone a fun time. If we were in a world without computers then our society would be completely lost. First off, one contributing factor is that computers help us keep in contact. Any one person can simply send an email by a click of a button. However, if this device was not around, we would have to use postal service or the telephone, both of which cost money. Why wouldn't you want a computer? What happens if a hurricane is abroad, and a family has no idea of its presence? All they need to do is check their email or the internet to realize what danger they are in. Calling somebody is risky because they could not be able to ansuer for any reason. In a situation like this, computers became essential to everyone. Clearly, the ability to contact is a great reason why computers need to be kept. Secondly, computers help us complete our daily work. Almost everyone works during the week, and if you @MONTH1 not realize it, we get most of our help from computers. Let's say that a man or women is ath theiroffice and they need to create a power point in order to share the companies new brand. All he/she needs to do is turn on their computer and begin to work with a blink of an eye. But without this device, what would they be able to do? How would they complete their work? The need for a @CAPS1, @CAPS2, or laptop is obviously great when you work. Lastly, computers give us the ability to play games and browse the internet freely. When I go home, usually I go straight to my computer like most teenagers do. I can easily check scores or last nights games, listen to music, and play solitaire by myself. I dont need to turn on the @CAPS3 and wait throve . All of these tiresome commercials. I don't need to grab a @CAPS4 and throw it into a boombox. I don't need to grab all the playing carols and set a game up. All I need is my computer. Without a doubl the fun and helpful computers such as games help us out. Although some say that computers aren't needed they help us throughout our lives. Based on my opinion, it has become clear to me that they are beneficial because they help us keep in contact, complete our daily work, and give everyone a fun time. All of these facts to one final solution, which is keeping computers in our society." 6 5 11 +379 1 "I believe that computers have a great effect effect on people. People all around the world use computers to talk online with other people, give people ability to learn about faraway people and places, and also let you explore the internet computers are a great influence on our lifestyle. Computers allow people from around the world to interact with friends and family. Some websites that allow you to do so are myspace, facebook, and @ORGANIZATION1. With facebook you can take a picture of yourself and place it on your web page. It is relly quite easy. Also, with @ORGANIZATION1 you can chat with your best friends and can actually see what they are doing. But if you want to do this you are going to need a webcam. I have @ORGANIZATION1 and I think that it is a wonderful resource. I have relatives in @LOCATION1 that I only get to see once a year. But with the help of my computer I can interact with them all year round. Computers can make people from faraway places learn about the culture and ways of another person's lifestyle. Have you ever seen the commercial where a little boy is talking to his father on the computer. Well, in this commercial is laying down on and is eating an @CAPS1 cookie. While he is doing this he is talking on the computer with his dad who is doing the same. At the same time both father and son dip their cokie into a glass of milk, eat it and laugh. I felt at that time that it was a wonderful moment because even though they are both in opposite directions the two are still having a great time. Just to think that it was all because of one computer. Exploring the internet is what a computer can do. When doing this you can play some really fun games on a rainy day when you are bored. You can look up what happened during one of your favorite basketball games. Such as how many points @PERSON1 got for your fantasy team. Also, at my school you can check your grades to see what you got on your last math test or quiz. For example if I had all A's but one @CAPS2 in math, then I would know that I would need to really study for my next test to get on A on it. With the help of the internet, I can do. So, now you know wh computers are a very important part of our society. Computers allow us to talk online with other people, give people the opportunity to learn about faraway people and places, and computers also allow everyone to explore the internet. As you can see now, computers are great influence to our lifestyle. " 5 4 9 +380 1 "@CAPS1 that was the sound of a light bulb going off in your head. You learned something new! Yipee, if it internet for computers, you would have to read those boring textbooks. Computers have a good effect on people because they teach so much valuable information, they can answer your question in @NUM1 seconds, and also they give you communication to the entire world! Imagine this, you need to know who the third president of the @CAPS2.S was. Are you going to go to the computer and save a bunch of time? or are you going to walk over to those miserable books? Geuss what... the capital of @LOCATION2 is @LOCATION1, the constitution of the @ORGANIZATION1 says that a person has the right to, and @PERSON1, one of @CAPS3 greatest, was assasinated in his car. If it wasn't for the internet, I wouldn't have known that. @NUM2 in @NUM3 websites on the internet are for educational value, @PERSON2, a technology major at @CAPS4 recently said, "The internet is a huge chunk in education, and if it wasn't for computers we wouldn't know the things we do today. Its packed with so much to learn, its very useful to, and forces so much info into them. Lila, a technology major said, "@PERCENT1 of people communicate through computers, @PERCENT2 through phones, and @PERCENT3 through mail." @NUM4 in @NUM5 people over the age of nine, have an email. Incredible numbers of emails are sent everyday. What would it be like withour computers? Think about those numbers you just read, isnt that incredible? Computers have a good effect on people because they teach so much valuable information, they can answer your question in @NUM1 seconds, and also they give you communication to the entire world. If you just take a step back, you notice how valuable something really is to you." 5 5 10 +381 1 "Dear Local Newspaper, more and more people are getting hooked on computers. I am here to say that computers are not the best way to benefit our society. First off, most @CAPS1 are spending less time with friends/family and more time looking through a screen. Also, it would be so much better for our bodies and minds to go out and enjoy nature instead. Lastly, you can get addicted to the computer. So here are my reasons why computers do not benifit our society. My first reason includes friends and family. more and more people are neglecting to spend time with their loved ones to get to the next level on '@CAPS2 wars.' @CAPS3 this really how we want our future generations growing up, looking blankly at computer screens? I know I don't want that. I lknow this from personal experience. When I was young, I visited my cousin @PERSON1. All I would get to see of him was a quick '@CAPS4', but then held escape to his room to continue clicking angry on the computer. The point @CAPS3 you can't replace family and friends with a computer screen. It's not right. My next argument against computers @CAPS3 about our bodies and minds. The best way to take care of those things @CAPS3 nature. Unfortunately most @CAPS1 aren't getting outside for a wack of exercise due to computers. In fact almost @NUM1 @CAPS1 say they spend more time on the computer than anywhere else. This @CAPS3 not a good way to spend time. We need to solve this issue before more @CAPS1 make the switch from nature to computers. Fresh air, trees and birds are much better than a screen, a couple clicks, and the hum of a machine. My third and final reason @CAPS3 about addiction. So many people are getting adicted to the things they are finding on their computers. Addiction @CAPS3 a very sericuse matter that we need to fix. All of this @CAPS3 pointing to lazyness too from lack of intrest to anything else. I know this from personal experience. When my brother first got his computer he literally locked himself in his room for days. All he did for almost a week was socialize and beat his personal best score on a game. This @CAPS3 not the way to be treating a device. So, as I know you can all see computers don't have a positive impact on our society. First of all computer @CAPS3 over ruling family and friends. Also, nature @CAPS3 becoming less and less of a priority with the computer in mind. Lastly it's becoming a worldwide addiction. Thank you for deeply considering all the arguments that I have to offer. I know it majorly helps people keep in touch globaly, but there are other ways to do it, such as mail." 5 5 10 +382 1 "Dear Local Newspaper, @ORGANIZATION1's benefit society imensely. They help us learn about far away places, they help us with our school work and the let us communicate with other people online. We need computers. Computers allow us to learn about other countries, people, @CAPS1 etc... How would we learn about places we might want to go on vacation? Or how would we learn about the places we want to see, and the places we want to stay away from? We need computers to do this. We would never even know of some countries if it werent for computers. Next computers help us with our school work. Sometimes we get project spend most of them involve research! Computers make this a whole lot easier on us. Also instead of lugging your text books from school to home and back, we can use online textbooks. Why give us extra work, it's a waste of everyones time. Instead of wasting your minutes talking on a phone, you can chat online. Wasting minutes is wasting money. Who wants to do that? Besides using the keyboard to chat with friends will help you in the future. @NUM1 out of @NUM2 studens, say they prefer to talk online then to call someone. Computers benefit us by easy aces to info. Computers are a lot easier to help us with school work, than textbooks are. Lastly computers let us talk to other people online. Without computers everything would be so much harder." 3 4 7 +383 1 "Dear @CAPS1, @CAPS2 you think computers are good for providing us with useful information? I @CAPS2. This is only one of the reasons why I agree with the use of computers. The reasons are: They provide us with information for learning, they allow us to communicate with people, and they provide entertanment. However, I @CAPS2 understand why someone would oppose than. Let me explain my point of view. Whenever I need to @CAPS2 or know something that I don't know about, I go to my computer and look it up. Many seach engines such as @ORGANIZATION1, @CAPS3 and @LOCATION1 allow us to input a question or phase and gives us links to other websites that hold information about the topic we are trying to learn about. Another way computers help us learn is because we can download and install software that help us with things like learning a forgian language or even just practicing math. For example, my grandfather wanted to learn how to speak @CAPS4 but he didn't have time to go to classes. So he ordered a program that teaches him how to speak @CAPS4 while he is home. Another reason why I think that computers benifit society is because it allows us to communicate with other people. One way is through social sites where you have a profile and you can ""chat"" with your friends by typing in what you want to say. Another way is through video chat. This is when you have a webcam and you can see and talk to other people. I think that this is very important because @PERCENT1 of people that the computers leads people to become ""anti-social"". It also helps you connect with old school friends and relatives that are far away. This @MONTH1 actually improve some people social if they are shy. @CAPS2 you like music, movies, and more? Well you have axcess to the through your computer. This is yet another reason how computers can benefit us. If you are going somewhere that you think your kids will be bored all you have to @CAPS2 (if you have laptop) is put a movie in for them to watch. Another way that computer provide entertainment is they let us listen to music. If you have an ipod or @NUM1 player you can download the music from the computer. It also provides us with entertainment if we are interested in playing video games. There is entertainment for everyone. Even though I support the use of computers I understand the negitive effect they have on many people. Some of those things are: people stop excersiceing and become over weight, they @MONTH1 become less interactive with other people, and they @MONTH1 not spend as much time in the fresh air. In conclution, I think that computers can benefit our society. The reason why I think this are: they provide us with information, allow us to communicate, and provide us with entertainment." 6 5 11 +384 1 "Dear @CAPS1, @CAPS2 you think computers have a possitive effect on people? I know I @CAPS2. Computers are good for many reasons: @NUM1 reason is because people can learn about far away places; @NUM2 they can talk to people and learn about their culture and @NUM3 they can teach hand eye coordination. First off if you're taking you want to learn about where you are going. Computers can help with that! Also if you want to find good hotels you can use the computer for that. If you need transportation just log onto google and type in what you're looking for. Now if you are doing a project for school or something on a different area of the world you can log onto your skype, facebook, @CAPS3, @CAPS4, or any other website that you. You can @CAPS2 many things while talking to freinds on the internet, such as: find out school assignments, find out due dates, make dates and many more wonderfull things. Hand-eye coordination is very important. Computers can help with that. Drivers need very good hand-eye coordination; if you don't have that then plan on a big insurece bill. If you don't have good hand eye coordination then you are going to have a hard time with a lot of stuff. So thats why computers are a good thing to have in our society. You can learn about where you are going, stuff that you need to get done, and even become a better driver." 4 4 8 +385 1 "Dear Newspaper, Computers have a positive effect on people because they teach hand-eye coordination, give people the ability to learn about faraway places and people and allow people to talk online with other people. The invention of computers is the single most important event of the @DATE1. @PERSON1, a professor at @ORGANIZATION3 says that ""the invention of computers has led to hundreds even thousands of new discoveries. This week alone, @CAPS3 have discovered @NUM1 new drugs that could put an end to cancer."" A report in @ORGANIZATION1 stated that @PERCENT1 of fortune @NUM2 companies are run soley by computer programs. @ORGANIZATION1 also state that the other @PERCENT2 of fortune @NUM2 companies plan to switch to computer based operations by the end of @DATE2. For personal use, computers allow you to communicate with your fellow peers in order to work on school projects. Computers make life easier in general and can help with all life throws at you. First, computer teach hand-eye coordination and can improve reflexes and reaction time. Computer based video games can prepare you for real life tasks and challenges by improving your physical skills. Numerous flight simulators and driving simulators are available on the consumer market. In this day and age, flight schools require their students to complete hundreds of hours of flight simulators. Some driving schools even make their students learn to drive in a simulator before hitting the open road. Other games such as the @CAPS1 @CAPS2, require you to think on your feet and can improve your reflexes. This @CAPS2 maker you dodge bricks and can greatly improves reaction time as well. All of the programs available via the computer can help you with real life obstacles and make you think createvly. Next, computers allow you to learn about faraway places and people. This is espicially interesting because you can learn about a countries culture without actually going there. This oppurtunity allows you to imerse yourself in different cultures and religions and would make it easier to relate to people to in faraway lands. @CAPS4 once said ""@CAPS3 are afraid of only what is different than us, therefore, @CAPS3 have nothing to fear if nothing is different."" @CAPS4 meant that if @CAPS3 know about people and places different than use, @CAPS3 do not have to be afraid of anything. Computers allow us to see people all around the world an learn about them. Seeing different things enriches our life and can make us better people. Lastly, the invention of computers allows us to communicate with people from all around the world. With the invention of @CAPS5, @ORGANIZATION2 and @CAPS6, @CAPS3 can talk to friends that move out of town. @ORGANIZATION2 reported that of its @NUM4 million users, @NUM5 million users have friends that live in a different country. When I was @NUM6, my friend @PERSON2 move to @LOCATION1. @CAPS3 missed each other until I turned @NUM7 and @ORGANIZATION2 was invented. @CAPS3 were both online one day and I searched his name to see if he had an account. He did and @CAPS3 immeadiatly started video chatting on a weekly basis. Programs like @CAPS5 allow you to make new friends as well as reconnect with old friends. In short, the birth of computer has allowed for vast improvement in society as a whole. Individuals can talk with friends who live in different countries as if they were in the same room. Businessmen and women can have meetings on the computer with programs such as @CAPS8. Government officials can talk with other leaders from around the world. Despite some people that think the advent of computer has affected communication. I belive that it is an effective too that everybody should have access to." 5 6 11 +386 1 "Dear Newspaper, I believe that computers have a positive effect on people. I believe this because we can talk to people in different countries in a quarter of a second, we can send e-mails to other people, and finally we can go to @LOCATION1, ask @CAPS1 question and get an instant reply. First, we can talk to people in different countries. Did you ever have a relative go on vacation in a foreigh country and have no way of calling them to see if everything is okay? Lets say for instance that they brought their laptops but for at their cellphones. Then, the only way we can contact them is by e-mail. Even if your just happens in you can keep in touch through email. You can even a computer so you can video chat, and not have to wait to get your reply. Next, we can send e-mails to other people. Have you ever set somebody a letter by mail and had to wait two to three days for a reply? Sometimes, your letter is even lost, and these is no way of finding out. Well with e-mail, the wait time of your reply depends on how fast the person whom you are talking to types and most people I know can type a reply in @NUM1 to @NUM2 seconds. I believe that is a from two to three cars. With e-mail those is an eghty three percent chance that your email will not be lost. If for some reason it is lost, there will be a message sent to you telling you that your message was lost and that you need to sent a new message. But most likely chances are that your message wil reach its destination. can go to @LOCATION1, ask @CAPS1 question and get an instant reply. Were you ever wondering about something and the answer was on the tip of your tongue but you just cant think of it? If so you probably would be smart to go to @LOCATION1. You can ask @CAPS1 question and get an instant reply. And I mean @CAPS1 question you can ask questions from wat the price of is in @LOCATION2, to what an is. If you wanted to you could ask math questions as well, such as what is the square root of pi, and what is @NUM3. From @LOCATION1 to myspace the internet is full of information that can have a positive effect on people. This is why I think that the has a positive effect on people, we can talk to people different countries we can send e-mails, and we can ask all sorts of questions." 5 5 10 +387 1 "Dear, editor @CAPS1 you know, @PERCENT1 of children who spend most of their time on the computer that do not exercize can develop weight problems and blood disorders? That is just one way that advances in computer technology have affected people so far. If advances continue that number will increase and other problems @MONTH1 arise from it. Some other problems that we have @DATE1 that could get worse are, developing a weak immune system, and emotionally seperating yourself from your family. First, lets talk about obesity. Obesity is a terrible sight to see someone go through because of something as silly as being, basically, addicted to the computer. Not only can obesity constrict vital organs but it can lead to blood disorders. Blood disorders, such as high blood pressure and diabetes, can cause you to have a heart attack. Which cuts off oxygen to vital areas of the body. Which leads to, eventually, promote death. Dealing with obesity is bad enough, but seeing them suffer because they have developed a weak immune system is horrable. In my experience I find that people who are on the computer often generally don't have very good immune systems. For example, a friend of mine is on the computer quite often, and has developed a weak immune system. Because of it he misses at least @NUM1 day of school a week. And because he misses so many days a school year he usually keep bad grades. Which is yet another reason why advances in computer technology are a bad idea. So isn't it relatively obvious that advances in technology are a bad idea? Especially being that, children are steadily becoming obese, and developing a weak immune system can affect your life in ways that are totally controllable? So I urge you to write an article about this to stop the growing sickness known as health problems due to technology." 4 4 8 +388 1 "Almost everyone is effected by computers in some sort of way. Some people think computers are bad because some people spend too much time on their computers. The thing is computers help us with our everyday life. If we want to comunicate with people from around the world to send donations to places in need like @LOCATION1 or @CAPS1, we can use computers to do that. We can chang people's lifes in third world countries with the help of computers. Computers can also help us in school. When a student has to write a report and he has bad handwriting he can just type it up and print it. Or if a student has to do research for an essay she can find the information easily on the computer. Maybe a kid forgot his homework, he can go to his school website and find it. My last point would be that computers are a huge help for buisnesses. When files are lost or misplaced, the worker(s) can use the computer and bring up the back-up file. When they need to order supplies, most times they will go to a web site and order online. Or when updates are posted about up coming events in that company, an e-mail is sent out and is found using a computer. Many people think that people overuse their computers, but that the users fault not ours. We should choose how long were using one computers. Many jobs would be impossible with out computers. It's not about overusing them its about. So over all I say computers are good and very useful when used in the right hands." 4 3 7 +389 1 "Dear newspaper, I've read your article about peoples opinion on the affects of computers. I believe that having computers are a very good thing. With them we can talk to others from far away, and fast. You can learn a lot too. It also teaches hand-eye coordination. My first reason why they are good is because you ran talk to others. Without computers it would be almost impossible to meet people from far away and talk to them so easily. They even have webcams so you can see each other. You can use @CAPS1, @CAPS2, webcams, or even a simple comment on facebook or myspace. @CAPS2 or webcams are the quichest and maybe even coolest way. Secondly you can learn Computers have so many websites that give out alot of information and resent too. It's muchn easier to get on the internet and type something in then look threw a bunch of books.The internet has dictionaries, news stations, weather, history and where you can find things. With all that you dont even need books. They even have maps and you can print out directions. My final reason is because it teaches hand-eye coordination. When you first start using computers your normally pretty young, and sometimes you don't always type the fastest. Computers have become so advanced that there are even touch-screen and wireless mases. So when you first start you normaly look down to see what your writing, later, adults want you to look at the screen when that becames easy you know that your hand-eye coordination has grown alot better then when you stated. In conclusion I think that computers are a good part of everyday life and that there not bad. They are an easy communication between people, help you learn, and teach good and fast hand-eye coordination in kids." 4 4 8 +390 1 "I think that computers do benefit us. They allow us to interact with people, talk to family far away, help us with school, gives us easy access to information, and much more people usually have family and friends who live away from each other and the computer allows us to interact with them. The computer lets us email and instant message them, play games against them, be their friend on websites like facebook so you can see recent pictures of them. It's not easy to interact with family and friends who live so far away and the internet allows us to do that. The computer doesn't just let you talk to family and friends but it lets you meet new people and interact with new people from all over the world. It let's you make new friends and play games with them or chat. The computer really helps you to just stay in touch with other people and it's a very easy and convinent way to do so. The next thing the computer helps us with is it entertains us. Children are very hiper and after homework is done, we don't have anything to do so the computer let's us play games on it, chat with friends, watch movies and videos, up load picture, etc. It does alot for us. Kids could hang out after school but if they can go on the computer it allows them want to go home where their parents know that their safe and away from drugs, alcohol, and other bad things they can get into. Just because kids like the computer, that doesn't mean that that's the only thing they do. Kids are very athletic, always playing sports and always hiper but the computer helps that go away. They go to school for hours, then go to basketball or football practice, sometimes we just need a break. The computer isn't always fun but it's very useful. The computer helps us with school. It allows us to type essays and projects. It also allows us easy information to help write the essays. Websites like google and bing are easy websites to help us get good and accurate information about whatever the topic is that we are doing. The computer is very useful when it comes to school. As you can see, the computer is very important in our lives and makes life alot easy and it's your choice how much you want to spend on it. But no matter what, the computer definatly benefits us." 5 5 10 +391 1 "People should ues computers, they do benefit to society. More and more people use them @DATE1 and agree that these vertual portals of information and comunication are extremely helpful. Think about it, paper is made out of trees and of coarse to get the paper you must cut down the tree first, and then have it an through a whole wasteful process to get that paper.If everyone used computers we wouldn't have to cut down those beautifully, lush trees. And also, have you ever needed to get information fast? Well instead of going through a book and possibly searching for hours, finding that information on the internet would be so much faster! Lastly, in the future everything will eventually be run with computers, they are the then now and later! They'll never get old! Computers are extremly helpful with endless information. A lot of people @DATE1 are very sensitive about our enviroment and how we're treating the earth. They are looking for new ways to help the world be as green as possible. An easy alternitive for paper is a computer. Once for school i was assigned a paper; i looked up the information on the computer easily, typed it up, and sent it by email to my teacher. Not a single peice of paper had been used! Ok so i know, computers use up a lot of energy, but to be honest they don't have to. Many people around the world use solar panels to gain their energy from the sun to power their lights, computers, etc.! The use of computers is extremely eco friendly and like i said before is a great alternitive to our everyday wasteful use of paper and pencil. Do you want to look up information fast? Well on the computer you can! All you do is type in what you need in a search engine and @CAPS1! you have the info you need! Instead of using a book (which wastes trees) to slowly find your information you can use a simple computer to do the job. A poll was token and shows that @PERCENT1 of students at @CAPS2 @CAPS3 school who use the computer to look up information get faster and more accurate results! Do you want that or slow information found in a boring book? The future is not far away. It is already @DATE2 and we are using the computer for so much. Ok so the computer does show to cause distractions and headaches if used too long, but it is a great invention of the future. Instead of going to a restaurant and ordering off we'll order of computers/touch screans. More and more people are coming up with beter and faster computers. Everyone is using computers and love it and they will difenetly be used in the future. I hope you see how amazing computers can be. They're enviomentaly useful and a great alternitive to paper, they help you find the information you need fast, and proffesor grant states"" i do all my work on the computer, without it i would be lost."" And lastly they are the future of our world! They are the then now and later of the technical world." 6 6 12 +392 1 "Many people like computer and like to use them for many different kinds of reason. Some people use them to get online education. Other use them to talk to family and friends that are far away. Also student use them to do research for school. These are reason why computer could be a good devices. There are many people that now have the ability to get a online education because of problem that they have. For example people that can't walk and don't like going to regular school. The computer would help them find website that they could get a free education. The computer would see what level there in like a regular teacher. The computer would make it so easy and better for the people that don't have the ability to walk they can even study for test that they have on the computer. This one reason why many people use computer. Many family use computer to try to look for freind that they haven't seen in a long time or family that are far away. They even contact them by chatting threw websites. They also search for addressed and phone number. Many people get to find there family threw internets. They meet in spot are even come to one another hauses. The computer would allow their dreams to happen by finding their familys. This would be an exciting event for them this why they need computer. This is one very important reason student use computer to research projects. Without computer student won't be able to look for information they need to know. The computer would teach student about people in the past they didn't know or didn't got to meet. The computer would influence them to want to learn more about interesting history. Children need computer to make there intelligence go up higher. These are some reason why I think we all need computer. We need them for people that don't have the ability to walk, for people that have family and friend far away, and for student that would like to learn more. These are all things people enjoy doing on a computer. If there are no computer it would crush everybody dream and future. So this are some reason why many people decide to be on computer." 4 4 8 +393 1 "@ORGANIZATION1, Are technology is advancing greately and more inventions are coming out; but aren't you worried that people spent to much time on the technology? I know @CAPS1 worried. For example computers. Computers have to technology to go online and chat with various people all around the world. Thas when I get worried. In this essay I will explain why it is bad to spent too much time on computers. it is bad because people don't execisi enjoy mothers nature, and interact with family and friends. Firstly, people are for geting how important it is to excaise. It is very important because it keeps you fit and healthy. With the computers in use people become less fit and healthy. They start getting fat theire carasaprel get high and they stress more. Secondly they don't enjoy mothersnature. When people start going on the computers they stop doing a lot of things. Like stop going outside and getting fresh air. They get c losed in a small bubble and all they case about is the computers. They don't go out to camp, play outside; they don't do nothing. Every day they are on the computer. Finaly, one big main problem is: they stop inter acting with family and friends. When mothers and fathers are oh it they don't pay attention to these young ones and they are always on it. When teenagers are on the computers they don't talk to these parents, they ignore there friends and the people that care about them most. They wont care for everybody, but them selfes @CAPS2 there you have it; that is why I think we should cut down on the computer usage. For these following reasons: People stop exercising and being fit. They stop enjoiying mother nature, and they stop @NUM1 with family and friends. @CAPS2 what do yoo think?" 4 4 8 +394 1 "I think that computers are a good thing to have because most are portable, there fun to have, and you could research a lot of thing on them. Laptops are cary round computurs. They are very convient to have. You could bring them anywhere you would like. Many people have laptops in their home or with them. There fun to have because you could play many games on your free time with them too. Another thing you could do is make videos. Last but not least you could just enjoy it. You could research a lot of things on them. Internet is a very succesful product. That means you could use it for your home work if you need help. Anthor thing is that you could type up essays that you have to do for work and or school. I think computers are good to have because most are portable, there fun to have, and you could research a lot of things on them." 4 3 7 +395 1 "Dear @CAPS1, I think that people I should they to excersize more than they go on the computer. Computer are one of the main reasons of our nations obessed rate being as big as it is now including junk foods like mcdoanld. I'm a big fan of computers myself don't get me wrong. I would on the computer all night if I could but I don't want my body out. I go to bed at @NUM1 I usally stay on the computer for an hour or two depends if I'm doing a project. Also goign on the computer less could make your life more fun instead of sitting inside go outside and play some sports like football, hang out with your friends have a @CAPS2 with your family. Do something else than be on . Conclesively, if people just puxh them selves to stay on the computer for an @NUM2 hour and a half the obessed! will go down. It could also help save our planet by saving the energy." 3 3 6 +396 1 "Dear local newspaper, I think it's okay for people all over the world to use computers: The reason why I @CAPS1 this is because a lot of people us computers for a lot of things. People all over the world use computers for something important, in case of emergency and much more. Us kids/students in @ORGANIZATION1 use computers to go on myspace, facebook, and the chat lie. to talk to our friends or even to talk to other people in the world. We also talk to our family that lives somewhre far away from the @LOCATION1 of lives here in the @LOCATION1 but in a different state. Lots of us kids go to myspace to talk to friends, family, people who we don't even know, people from all over the world and people that we havn't seen in years. Well then agian people also use computers to sell drugs which is very bad for our enviorment. This is one good reason why people are so effective and addictive to their Computers because bad people and drug dealers sell drugs over the enternet and other bad people and drug dealers buy the drugs over the enternet. As far as i know a lot people over the enternet I alson know that the people outside the enternet wouldn't do those things and even the people inside the enternet wouldn't do those bad things and sell drugs over the enternet. The reason why I know this is because they're my friends. They're smart and they just wouldn't do no such thing over the enternet or even at all. I tell you agian to my local newspaper it is okay for the people around the entire world to use any computer, @CAPS2, @NUM1 or anthing as long as they have connection but as for the drug dealers and bad people is up to than if they want to keep doing want they keep doing because eventually they will end up getting cought and getting brought to jail. I tell you that computers are meant to have fun but not meant to drugs over the enternet but anyway" 4 3 7 +397 1 "Now-a-days the technological industries are taking over the modern soceity and are captivating users making them virtually addicted. What good is that? These indulged in the online world are less interactive and showed more signs of depression in recent studies. Also if you are sitting around on the computer all day you aren't burning calories so you are gaining unnecessary weight that could easily be prevented. Going to the library is just as useful if not more useful than going on the internet. lastly, have you thought of the damaging affects, trojans, cyber bullying, violence? In other words, computers are just a negative waste of good money. Families are becoming less and less connected with each other, who's to blame. It's that big book of technology on your desk. Rather than socializing and just spending time with family and friends, computer addicts choose to sit on their butts talking and gaming away. They are teaching our family apart."" @CAPS1 one @LOCATION1 man on her two tennage children's computer obsession. ""I swear they're on that thing for hours on end"" she claims. In an artical I was reading the other day it said that most people who suffer depression admitted to being online for atleast @NUM1 hours per day. What does all of this go to show? Computers are abuse take them out of your child's life, or atleast limit them. Studies prove that @PERCENT1 of people who spend most of their day surfing the web have either over-weight or just on the boarderline of being over-wright. Rather than going into the real world and experiencing life for themselves, they look it up online and rely on other people's opinions. Does this mean anything to you? People who are overweight have a higher risk of aging, and if not, then they have some pretty health problems. All because they didn't want to breath like. When in a library environment people tend to be more and more on task. You @MONTH1 ask yourself the answer is simply that the is too expansive and distracting. If you are in the library you can't get in as much trouble, you can't play online games, or even be looking at things that are innappropriate. Libraries hae more credible sources and reliable information to study from. Not to mention you can go with a family, friend of even be tutored. Computers dont provide that. Going to the library is such a better solution. I must admit, I was before a computer addict, and believe me the effects it has on people are atracious. Now that I've moved on from that period of my life I can honestly say, the addictive grasp it has on you is strong I know. I also know first hand the rewards of being clean from this harmful drug per say. I am more sociable than ever and im dealing with issues much better. I am @NUM2 pounds and in the best shape of my life and I even made by school's cheer team. I often go to the library to study and I must say, im very proud of who I've become. I was spending around @NUM3 hours online and getting on sleep. If I can do it you can tool my name is @CAPS2 and im a computer addiction survivor.""" 5 5 10 +398 1 "Dear Newspaper @CAPS1, @CAPS2 look at advances in technology over the years and can tell what an influence it has had on current day and people. The question is, are these advances for the better? Or will they take a turn for the worst? Today i will be talking to you about technology, and why i think its benefitting society poorly. With people spending less time excercising and enjoying nature, leaving ther social life behind by constanly being on the computer, they dont realize how much they're hurting themselves. The number of obese people especially in children, increases each day. This is caused by lack of excersize because some people are too busy responding to texts, talking on the phone and playing unneeded video games. Not only are they physically harming themselves, but they are definitley missing out on the wonderful aspects of mother nature! Why not get out for a little, escape the technology prison cell you've all been reeled into. The @ORGANIZATION1 is one of the most beautifuly countries in the world, take advantage that! Now, without proper excersize, your putting you heart at serious risks. Even doing smaller things, like jumping jacks or cuntups, can help make you and you heart healthy! Your parents, and even your parents parents, are who brought you into this world, faught for you in times of need, and would do anything to protect you. What would you say if i told you technology was pushing them away? Texting at the dinner table while they are trying to make conversation, never leaving you room because you playing ""fun"" games, hiding behind he face of technology all the things a vast number of people do instead of socializaing with the people who matter most: family and friends. Although your friends @MONTH1 be more easy going they still came that your too busy hanging out with you computer to come meet up with them @CAPS3 single person can live without a friend and that friend needs you! Make some time for the people who have a special place in you heart before they disapper. To sum it up, techology is corrupting the minds of human beings... and it need to stop! like i said be healthy and happy and spend enough time with the people you are about who knows, maybe they an make you happier than your electric companion. So, fellow citizens, leap off that desk chair, shut off your electronic devices, and jump back into the real world." 5 5 10 +399 1 "Dear @ORGANIZATION1, I have heard that people are thinking of how computers are having a bad effect on people and I disagree. Computers help people so much in schools, work places, and at home. Not having computers would have a worse effect on people then with having computers. For students it is an absolute neccesity to do research , and type essays, letters and so many other writing pieces, and the same goes for all of society. In almost every school all over the country, students use computers on a daily basis. I personally have to log into the computer to type an essay for a class at least twice a week and some @ORGANIZATION1 even more. For example my @CAPS1 teacher asks our class to write a lot of essays or letters. She has told us over and over that if our hand writing is not good she won't grade it. Having the computers to type on removes the fact that if our teacher can't read it she can't grade it. I understand that people would say that it makes people need to hand write the things a lot less and people would lose the ability to hand write things but with such advenced technology on computers and to type anything with such pose, soon hand writing will no longer ne required. Any person for whatever research they need can be found so easily using a computer. For students in any grade level and any class, research projects are going to be assigned by a teacher. Using books and other means of research are slow and in efective. Getting onto a computer and looking up the pic is fast and simple and gives better results than books. The same goes for jobs, for example a person might need to set up a powerpoint presentation. Not only does the computer have powerpoint on it - which is an effective way of setting up projects the computer allows that person to do research all in one place. This makes it so much simplier to get a lot of information and not have to run around getting books and talking to people who know the subject. I understand that computers could ""take control"" of people and people would spend to much time on them. But of the few that do stay on computers to long learn to balance their time, keeping computers would benefit in so many ways. Writing many different essays, letters, typing for projects, and doing research would be done faster and easier." 4 4 8 +400 1 "Dear Newspaper Readers, @CAPS1 computers have really change the way people use technology. It has made our society different in many ways. People can look at information faster than ever with this device. People can also talk to friends, especially on popular websites, computers are even used in school, mostly in college. @CAPS1 an advantage of using it in school, means so much to the people and there education, computers have changed the human race forever. When my grandparents went to school, they had no idea what a computer was. their guide was priar knowledge, knowledge from a teacher, or a dictionary. We are so fortunate today to have even computers in our school because my grandparents would have loved to have something as quick and as simple as a computer. @CAPS1 access to a computer can really help people inso many different ways, mainly about the world. What is the first place you would go to talk to people online: @CAPS2. Do you man @NUM1 out of @NUM2 people have @CAPS2. The reason why it is so popular paper want to talk to friends that they enjoy talking too. From my experience out from canada have @CAPS2 too, which is surprising. Talking to in country is unbelievable. As you're opportunity for people to make new friend. This can also affect the way people lively. When teenagers attend high school, they have a choice of talking a specific, almost like a helping one classes is because when you are in college, so many in a short amount. I have people who stay up for our their paper. @CAPS1 these are an advantage for everyday life, especially college because it is an oppurtunity for someone to get better at typing computer classes can really help someone trying to learn how to type at a fast pace, and get a caple more hours of sleep! In conclusion, I believe @CAPS1 computers effect our society in a positive way. Thank your for reading this letter, and I hope you can take this into consideration. @CAPS1 computers have dramatically changed lives forever. " 4 4 8 +401 1 "Dear, @CAPS1 paper edattor we should stop because people arent doing anything their just staying home using the computer. Making there life worser they should make a day whith out computors and every one goes out side and gets exsesise. Wo could mapse the world better the more you. Exersise the stronger you get people livse computers because they could there frends play games thats but some time we have to go outside. Some times i like using the computer but a littile to much land that i dont get that mach exesersise and i hope i could stop from that and go out side and exersise more. We would have computers but we wont use it like for along time then spend more outside. We should only olw kids for only two or three hours a day. When there using the computer they use over like hours thats not good they should go out side thats why." 3 3 6 +402 1 "Dear local Newspaper, I think that computers have a exellent benefit for people. First family friends can communicate from a far distance. Secondly typing on the computer gives people good hand and eye cordnation. Thirdly they give people the ability to learn about faraway places. Lastly it gives student a chance to research a topic they are learning about. Well @CAPS1 do you think? Researcher @PERSON1 said that almost @PERCENT1 of family's live faraway from eachother. computers give the ability for familys to communicate wether its aim or a webcam chat. Also out of the @PERCENT1 of familys that live faraway from each other @PERCENT2 use the computer to comunicate. Hand and eye cordination, some people type without looking and some people are really slow. Typing on a computer give the great hand and eye cordination. Good hand and eye cordination could be used for many things. For example, playing sports or even a simple task like throwing something in the trash. Lastly, have you ever wanted to learn about a place faraway from you live or have you ever researched a topic for school? Well I have. Computer give people the ability to learn about places faraway. For example in the third grade I had to research hammer head sharks. Don't teacher always ask their student to look up a word or a topic on the computer? As I have said before I think computers have a benifit on people. I hope that my three reasons of contacting family and friend and hand and eye cordnation and lastly researching has made you think it a good thing too. Thank you for taking time to read @CAPS1 I had to say and I hope you take it into concideration." 4 4 8 +403 1 "Dear Local @CAPS1, I think that computers have a posotive effect on people. There is many ways computers can have posotive effects on humans, first computers bring people together and let people interact with each other, They let people talk to each other. Computers also let people learn about new things. The internet has so much information. Computers also let people do things that they can't do with out computers. So computers have a positive effect on people. Computers let people interact with each other. The computers bring people together. People can use the internet to send emails to each other. When you need to write a letter to some one it might take days for them to got it. But with email they would get it the second you send it. There is also website like face book that let you talk to your friends websites like that connect people. When you and you freind cant talk together you just have to get on you computer. Computers also have web camera, those let people talk to echother. and you can see them. It lets people see the other persons facial expressions and hear the there voice which is better than on a phone and writing a letter to someone thats why computers are a positive effect on people Computers also let you learn about new things when ever you want to find somthing out or if you have a question you go to the internet. If you someone else they might not know the answer. Computer let people see pictures and videos. If you wanted to see a picture of @CAPS2 are that you are going into a computer and type it in computers let people see pictures that they couldn't see in real life. Vidios let you watch things like something funny to cheer up you day. If you love a show on to, and you missed it you can find it on computer. That is why computer benifit people positively. Computers also let you do things that you couldn't do without. When a teacher asks me to type a paper I always do it on the computer. If there were no computers I would have to use a typewriter and if I made a mistake I would have to type the whole thing again. Computers also alow you to play music. On the computer you can put a cd in and it will play the music. Computers alow you to do things that couldnt do without Computers benifit society an have a positive effect on people, They let people interact with each other and they bring people together. They let people talk to each other. Computers also let you learn about newthings. They also let you do things that you couldnt do without. Computers have many positive effects on people so I hope you agree that computers benifit soctity" 4 4 8 +404 1 "Dear Local Newspaper, The effects computers have on people as posotive I say that it is posotive because what if your in a rush, and you don't know if you need your rain boots or not? Check the computer! I say that it is posotive because without the computer how would most offices run their buisness? It's too much of a pain to keep everything on files. Especially in schools because the teachers don't keep their grades for students in a filing cabinet! They keep them on the computer, @CAPS1 they'd need a huge filing cabinet. I could understand why some peole think computers have a bad effect on people. They might think that it takes away time from nature, friends and family. But so many people take their laptops to the local park to sit under a tree on warm days and go on the computer there. Especially students do this, they do their homework under the leaves to help them relax. Also, people whose family or friends live in other states, they @MONTH1 not have the house number, or they don't have time for a long conversation, they can e-mail them, or use social networking like facebook, or myspace to look on their profile pages and say a quck, ""@CAPS2, how are you doing?"" Local shop owner @PERSON1 says, ""I barely have time for myself! So when I want to say @CAPS2 to my sister in @LOCATION1, I usually say hello on facebook because I know how she loves to talk my ear off!"" I remember one morning, when I was rushing before school, I had no idea what type of outfit to wear. I checked the local news casting website for the weather forecast and thank god I did! I would have gotten stock in downpour without an umbrella! Computers are also good for if you want to catch up on any news, or just relax and play some games you can. So, if your wondering about the weather to see if today will be a good day to sit under the trees in the park & catch up on typing that report with your partner, then go ahead. But don't forget to e-mail her and ask her first, since you lost her phone number." 4 4 8 +405 1 "@ORGANIZATION1, @NUM1 out of @NUM2 people surveyed in @LOCATION1, @CAPS1 agree that the use of computers benefits society. I personally concern with these @NUM1 people, computers have a positive effect on people. There are multiple reasons why I think the use of computers really benefits society, including it can teach good hand-eye coordination, give people the ability to learn abour faraway places and people, and even allow people to talk online with other people. Once again I do believe computers can have a positive effect on people. First of all, its's a proven fact that most sports on physical exercise to involve hand-eye coordination to some extent. The computer can help reach people from a very young age good hand-eye coordination. When a person uses a computer they have to keep an eye on the screen but still be able to use the mouse or keyboard. This takes alot of coordination if you think about why don't even love to look at the mouse on keyboard when they are typing, they just know where everything is. People disagree with what I'm saying often use the excuse that when people spend to much time on the computers they aren't getting enough exercise. However, I believe that is not true. The hand-eye coordiantion people learn on the computer help to improve their skill and coordiantion in sports, for example in baseball a person has to be looking at the ball to catch it, but at the samee time they have to move their arm to catch it. That is were the hand-eye coordiantion helps. This proves that computers can benefit society through teaching people hand-eye coordiantion. In addition to this @PERCENT1 of teachers at @ORGANIZATION2 believe that computers can be used as a great tool to help students learn. Computers give people the ability to learn about far away places and people. They give people acess to information about a foreign place or people be available in or other resources areas. On the computer one can go to a search sight and type in my place in the whole world. Then all they have to do is search and they have dozens of with information of that place and pictures, @CAPS2 are a society that is advencing in technology people are learnings learn and they can wtih great the of a button. In addition is think it's also a tool in schools. Teachers can have students do projects about different countries on people and the student can easily that the information on the computer. Computer benefit society in the way that they can teach about different loaction and people. Computers can help people become interested in these different topics and @MONTH1 be even inspire some people to go to these faraway places or hack different people. Finally, @NUM4 out of @NUM5 people asked had some kind of way to contact with people online, whether it was through email or facebook. Computers allow people to take online with other people. In our modern society it is very important that a person has friends, are great why to keep in with friends, if live very far away from you on it haven't to them in a while connecting them on the computer is a great way to keep i touch. Those who disagree with my opinion believe that spending time on the computer means less time with family and friends. I believe taht is just the opposite. Since @CAPS2 are living in modern ages families understand that kid leaves to college they might be going far away or even across the country. Having computer allows that family to chat an easy way to keep in contact talk with each other. People talking each other on line is just another way how computers benefit society. Its now or never! Computers can have benefit society. They reach people hand-eye coordiantion can be use all through our life. Most importantly they give people the ability to learn about faraway places and people. Lastly they allow people to talk online with others. @CAPS2 are living a modern time, society is advancing everyday and computers are a huge part of it! They are having a positive effect on people." 4 5 9 +406 1 "Dear local newspaper I disagree because people should just enjoying spending time with famimely and not on the computer doing nothing do you agree with me so far? Frist of being if you wast all you're time being of the computer there is nothing there is nothing you can get done as I have notice many shildren are on computer every right after school playing on the computer. For example my cosiun is on the computer evryday doing but wasting his time are you still with me. Secondly children should be studying on the computer not playing video games and going in website that are not allowed more then @NUM1 do students and children are on the internet palying video games and doing something the is done everyday also I have seen many kids playing games on the computer. Thirdly student will never learn nothing if they wast there time because computer is for studing and many students don't have there time wisely as they should also many student should be useing comput only sometimes not everyday I have notice that so many students don't learn from compu for because they are not studing tests mre then @PERCENT1 stundent fail classes because of computer. First of people should be spending time with and friends because they are teh most important people aroun ud not computers. Are still with me? Secondly friends are the most important people I ever had because they care about and love you like you're ther families but what if you just wast youre on computer how are you know all your friends. For example m allways on comput never goes to see her friemds amd her friends to to here because she never cares about their only computer do god get what im saying here. Thirdly family is also important then just being on the computer because they care about you have to at lease spend sometime with family for example many families stop spending time with each othe because computer is important to them. Lastly help you're community is goal because you make you\re city look you don't want it he be massy also many people quit help with commicity servic around the neighbor for example I have see trash on grounds and because they dont care. Finally going out doing sports and starting fit is very important. First of playing sports is far and youve health but people never play sports anymore just because computer for example @NUM2 people stop playing sports, secondly going to is very import because is good." 4 4 8 +407 1 "I believe computers have a positive effect on people. They teach hand-eye coordination, give people the ability to learn about faraway places and people, and even allow people to talk online with other people. All these things are good so why not use computers, we need computers. Do you think computers are a positive effect or a negative effect? After you hear this you might want agree with computers have a positive effect. Computers have a positive effect in so many ways for example: school, work, talk to other, and just get information. From different websites. If we did not have computers or use them we would probably use books. We would get information from the books but not as much as we would get from the computer. We probably would not know that much if it wasn't ofr computers. The reason why computers have a positive effect is because you work your eyes and while you are typing you are exercising your hands. That proves hand-eye coordination. We learn about places we don't live in like that? Had a earthquake we went on websites for that. You get to learn how it is in a certain place you want to go on vacation for. You get to learn about famous people you do not know about so all you have to do is go on the computer and look up your celebrity. Computer is something people use to talk to people and keep in contact. Now we have @CAPS1, @CAPS2, @CAPS3 and others. We use that to talk to our friend and family. Some of our family or friends live in far away places so we use the computer to talk. If you have a e-mail teachers and people at work might have to e-mail each other to handle business. You can even get work for students at school so that way the can learn more and do different activities. You can even play games on the computer. You can explore nature on the computer. I think computer is a great way to learn and talk with others. Do you want your child to learn? Do you want your child to have fun? So tell me what you think! Computers have a positive effect." 4 4 8 +408 1 "I believe that computers have a negitive effect on people. Using the computer effects a person's time because the sit for hours playing online games, @CAPS1 also effects there heath because there not getting any fresh air or spending time with there family, lastly @CAPS1 effects there education because time they could be using doing there homework there on there computer. First useing the computer effects a person's time, @CAPS1 does that by wasteing hours sitting there when you could be outside playing or doing chores around your house. You could be helping your family or friends out but instead playing computer games. There goes all the time you could have been doing something good, wasted because of the computer. The computer also effects you heath because your in a room inside not getting any air. You're also not exerciceing and helping your body out. This could effect your emotional heath. When your on the computer your not talking to people and becoming social and you could loose connections with you friend and your family. When you loose your connections and become you will use your computer more and then @CAPS1 will become worse. My last reason is that @CAPS1 effects education because when you could be doing your homework and studing for an important lest on your on the computer learning nothing, then you will school and possably mess for ever! This is really bad because you were on the computer. A couple times I pushed homework aside to use the computer and my grades drops alot. So this is why @CAPS1 effects education. These are the reasons how the computer effects education, your heath, and your time. I know your thinking that computers could be used for education, but humans prefer fun over anything else and I hoped this helped you realized that." 4 4 8 +409 1 "Dear local newspaper, @CAPS1 name is @PERSON1. I am @NUM1 years old and I go to a @ORGANIZATION1 in @LOCATION1 called @ORGANIZATION1. I am a really smart kid. In @CAPS1 opinion I benefit people using computers. You should keep reading @CAPS1 essay because I am going to tell you @NUM2 good reasons why I benefit people using computers. @CAPS1 first reason is they teach hand eye coordination, give people the ability to learn about far away places and people. For example, when I am always using the computer and when I'm doing research it always gives me the ability to learn about new places and people. Another example is when ever I watch @CAPS2.V on @CAPS3 @NUM3 it says that people learn about learn about faraway places and people on the internet @PERCENT1 of the time. @CAPS1 second reason is it allows people to talk online with other people for example when I am on the computer everyday I visit @CAPS1 facebook it always gives me a chance to talk to @CAPS1 friends and other people online. Another example is when I go on a computer and I search computers.org it says that it lets people @PERCENT2 of the time talk to others online. @CAPS1 @NUM4 reason is it allows students to get information when they're doing a project. For example when I always use the @ORGANIZATION1 computers it allows me to get information for example, about @LOCATION2 and @PERSON2 govina that is why I benefit people using computers. Another example is when ever I check out a magazine on computers it tells me that kids get alot of information when they're doing projects @PERCENT2 of the time. In conclusion, I benefit people using computers because they teach hand eye coordination, gives people the ability to learn about faraway places and people, it allows people to talk online with other people and it allows students to get information when they're doing projects. Those are the @NUM2 reasons why I benefit people using computers. So please the local newspaper please try to make this believable." 4 4 8 +410 1 "Dear editor, Computers are a waste of time. When kids get home from school they put their name work down and go right on the computer. Computers are wasting minds of little kids, while others dont even bother to look outside because they are on the computer. If there is only one computer in your house and are no time limits on how long you have to be on, can cause problems between siblings or adults. If your brother or sister has been on the computer for really long and you want to go on and have no more parents, there probably will be some fighting and yelling. Also, if somebody does somthing that they werent suppose to do on the computer, that messed it up, the person that is always fixing it can get really mad. ""@CAPS1 a nice day outside"" is what alot of people get from there parents. Most people just waste away the day by sitting on the computer w/ there favorite snack. Alot of people wont even look out side because they are to lazy to get up off of the computer, and go for a walk or maybe play in the snow. My little brothers like to play shooting games on the computer, they are only @NUM1 @NUM2 years old! They are twins so they like the same stuff so, they both enjoy killing people in games. Im pretty sure that almost every other boy out there around there age, feel the same way. My point is these games are teaching the kids nothing. All @CAPS1 teaching them is how to kill people or animals, or do dangerous things were they would hurt themselves. I hope my letter showed people that computers can hurt other people and they waste your life and instead of going to the park w/ your family your spending that time on the computer. Most of the time it has a negative effect on people which isnt very good." 4 4 8 +411 1 "Dear @CAPS1 of my local newspaper, More and more people use computers, but not everyone agrees that this benefits society. These boxes can be harmful to their users' eyes. In addition, they lead to less interaction with real people. Finally, they lead to a very unhealthy lifestyle. Computers are harmful to our society. For starters, computers are harmful because they are very bad for our eyes. Between the @DATE1 @DATE2 and @DATE3, doctors saw nearly a @PERCENT1 increase in eye problems that resulted in either surgery, glasses, or contacts. This can be directly associated with the overuse of personal computers. Also, studies have shown that common citizens who use these cootraptions for over four hours each day end up with an extremely deteriorated vision by the age of @NUM1. Finally, @CAPS2 @CAPS3 stated that overuse of computers have led to a very negative affect on the eyesight of their workers. It can be seen, how work gets done faster, however the cost of medical treatments actually surpasses the little extra profit gained by modernizing. Secondly, computers are harmful because they lead to less time being with real people. To begin with, studies have shown that people simply dont learn as much about their peers by talking to them through a box. Also, a study by the @ORGANIZATION1 has shown that there are roughly @PERCENT2 fewer conversations at social gatherings than just @DATE1. This is alarming because at that rate people @MONTH1 never get to know each other and the world @MONTH1 become an electronically based workspace. Finally @PERSON1, social relations professional, stated that people end up with a lack of understanding when they cant feel the emotion a person has when he/she is speaking. Sure, you can video chat, but that still does not convey the real feeling behind a persons words. Finally, computers are harmful because they lead to a very unhealthy lifestyle. To begin with, the lack of fresh air obtained by sitting indoors all day is very bad for lungs and can lead to premature breathing problems. Also, average people get @PERCENT3 fewer workouts, according to @CAPS4s @CAPS5, which was not likely directly influenced by overuse of computers. Finally the obesity rate has risen from next to nothing to over @NUM2 in the past ten @DATE1. Research showed that the majority of the obese patients spent excessive time on their little boxes of ten. While you might feel that this is not completely due to computers, it has been proven time and time again that these machines are the main reason behind the worlds currently unhealthy lifestyle. Personal computers have a very negative effect toward the society of today. This technology has resulted in very poor eyesight in the general public. In addition, they lead to a much lower amount of social interaction. Finally, they end up forcing people into an unhealthy lifestyle. So, let the word out that computers are bad for society, and try to make the world a better place to live." 6 6 12 +412 1 "Dear @CAPS1, I beleive that using computers is a good thing. They can help you learn about subjects of places you think are interesting you don't know about. They can help save the environment. These are the reasons why I think using computers is a good thing. First, they can help you learn about new subjects. Say you are doing a report for school on the @ORGANIZATION1 @ORGANIZATION1 of the @CAPS2, but you didn't know any thing about them. You could just go sit at your computer, enter ""@ORGANIZATION1 @ORGANIZATION1 of the @CAPS2"" in a google search, and press enter. There you here hundreds even thousands of entries about the @ORGANIZATION1. You could sit forever and learn all about these magnificent creations. You can learn about any subject on a computer, at anytime. You could even learn about a computer and all of its history! Seond, they can help save the environment. People are always using paper and paper comes from trees. When we cut down trees we are harming our environment. We are depleeting our oxygen supply and destroying habitats of animals and insects. If everybody used computers, we would be using less paper. We could use to send documents and papers, we could bring to tax appointments and pair suits. Computers could even be used for school work. The teacher could asign the homework email it to the student the student could fill it out and email it back. Sure we would still have to use paper for somethings, but we would be using in way less. People could also use less fossil. We could talk via the internet and things like skype to communicate witness waring to and burn. Thirdly, computers could help us advance into the. Computers can help find ways to do many things such as better medical treatments, more efficient travel and even every day life. We could find better ways to treat serious medical conditions with the help of computers. We could find ways to treat cancers and maybe even the common cold. Computers could also hep us find more efficient way. They could help find a mroe efficient feel, efficient of it could help make a teleportation device. It could also help us explore deeper into space and find more planets and galaxies. Computers could also help us with our every day life. When you get up in the @TIME1, imagein being able to screen and being able to have a hot shower, your breakfast and your work equipment all ready within five minutes. That really would be the future of computers. Those are all of any reasons for having computers from school reasearch to space and beyond." 6 4 10 +413 1 "Dear @ORGANIZATION1, In @CAPS2 opinion, computers are fantastic! Therefore, I believe computers have a great effect on peoples life. Three reasons to support @CAPS2 decision are many jobs use computers, instead of using a dictionary or thesaurus, you can just search it and it is a big help at home/around the house. @CAPS2 first reason is, that many jobs in the state, or nation use a computer. Statistically saying @NUM1 out of @NUM2 jobs in the state use a computer or technology relating to a computer hardware. If you honestly think about it, if you were a teacher, a factory employee, etc, you practicly wouldn't even be able to do your job without it. We have learned alot from the new inventions that came about in the past decade, or two. If we have learned anything in the past @NUM3 years, it would be the ""@CAPS1 the time you spend on the computer, but go on because you will learn some things you never know before."" @CAPS2 second reason is we have alot more useful search engines than @NUM3 years ago. In/around the @NUM5's, if you wanted to find information, the only resort was...books. Yes, I mean reading is great, but now having the computer is faster and easier. All you do is go to @ORGANIZATION2 and type in what you want to find. Then it comes up in about @NUM6 seconds with around @NUM7 links to websites to help you out. Just think, now theres no table of contents, just a link and a click! @CAPS2 third reason is it is a big help around the house/at home. In the state of @LOCATION1, about @PERCENT1 of people have a laptop or a computer in their home. But, this isn't a bad thing, because it can help with so many things. Including, help with the children, help with cooking, with organizing, anything! Let's say you don't know what time ""@CAPS3's"" friends birthday party starts, no worrys just ask his mom on @CAPS4! Or you need a recipe for dinner, find it on cooks.com. This makes life alot easier and puts a extraordinary effect on your life! In conclusion, having a computer in your life is great, because so many jobs use computers, theres so many searching things, and it is helpful at home. So, computers have a awesome effect on people's lives!!" 4 5 9 +414 1 "Dear local newspaper, @CAPS1 you agree that computers effect people? I think I @CAPS1 agree that computers affect people. I @CAPS1 agree with this statement because people dont get use to doing other things then stay on the computer. One example is that people that @CAPS1 stay on the computer wont have much fun on other people. They wont enjoy as much by stay on the internet. My last example is that doctors sometimes say its not good for you to stay on the the computer. First of all, people that stay on the computer wont have much fun on othe poeple. I know one of my friends love to get on the computer and stay on it for a long period of time. One idea in that there not alot to do on a computer for some people. People dont go out and have fun like going to the mall with your friends. Some people try to focused on the computer if theres something importent they have to do. Thirldy, people wont enjoy themselves. When @CAPS2 on the computer I really dont enjoy myself by just sitting there on the internet. One important fact is that you wont want to enjoy a beautiful day with your family when ther going to the beach. People will take maps for a while and not want to go back to sleep and you wont have nothing else to do for the rest of the day. Sometime you wont have a good life without enjoying it. Lastly, doctors say its not good for you to always stay on the computer. One important fact is that you always need to excersise instead of lamping around. Sometimes might happen to your eyes because your steading looking at the computer. You need to do healthy things to help your body. In conclusion, I had agree on the statement and my reasons why was because you wont have fun. You wont enjoy yourself, and doctors. Say its not good for you I hope you liked my prompt so it can go in the newspaper." 4 4 8 +415 1 "Dear @CAPS1 @CAPS2, Computers are all around us where ever you go. You can learn things on them or play games. Although computers are all around us they do not have a possitive effect on people because, harmful people could findout where you live and they are too addicting. Where ever you look you can find a computer. At home, in school, in your car, at work, and hotels. Being exposed to these computers are helpful. Everything we see now a days is run by or has a computer. In the future we are going to see more and more computers. Buisnesses practically run off of computers, soon they will run them by thereself. Also with so many computers it creates jobs. You can make computers, program them, fix them, and even supervise them doing work. Even though everyone says they are safe on the computer, they are not. While on a chatting website you could meet someone and they might be a child melestor or a. They can find out where you live and when no one is home or when you are home alone. With your address they can even look at your house on a website or possibly get your houses blueprints. Then they can come and leave you mentally scared for life. There are tons of things you can do on a computer. For example you can play games. There are games with virtual worlds or games that are fun and have no meaning. Either way games on the computer are too addicting. You say you are going to play for @NUM1 minutes but they are so addicting you play for @NUM2 hours. The games just suck you in and your stuck. Although computers are all around us they do not have a possitive effect on people because harmful people can find out where you live and they are too addicting. Computers are good and bad at the same time. People need to know when to stop using it or it can drasticly change your life." 3 4 7 +416 1 "Dear local newspaper, I strongly think we should have no more computers rather then looking on the computer. I strongly think this because this could cause serious damage to the eyes. My opinion for having computers is I don't think we should have them because you don't get enough exercise. You would just sit there looking at the computer all day. You would probley get all fat through the course of the year. You would be like a couch potato. My next opinion is we won't be able to get out of the house to see the beautiful nature. Like all the trees, flowers, wild life animals too. If you don't go outside there will be no fresh air for you. My last opinion is if we have computer. We won't be able to hang out with friends and family. You wont be able to see how big your family is. Or how small they are still small. Well these are my opinion's for having computers." 3 3 6 +417 1 "Dear @ORGANIZATION1 @ORGANIZATION1 @ORGANIZATION1, I am writing this letter to state my opinion on the effects computers have on people. I think that the effect is good because every place needs them they store thing neatly that way you will know that when you go back it will be neat and saved. Every place uses computers they are a big thing. Hotels use them to save who's in each room and to actuvate the room keys, restarunts use them to help make the bill, hospilas use them to store flies so they can be printed heat so the doctor can go to look at them and understand. And schools use them they need them to store grades neatly, or for an student to to type up a paper neatly and hand it in they could leave it for the day and go back to it tomorrow. The computer can also be you job, like you workinh on them like fixing them or installing a @ORGANIZATION1 programor app. You can also do your work on it like working on a website or once agin just writing a boper. The biggest company @MONTH1 need an computer even the @ORGANIZATION1 need them they are big in you company. So even people don't get outside enought the computer help you to make money or be sucsseful in life and once yo got that money thek you will go out side in speed it. So computers have a big effect on schools, communy, stores and many other pplaeces and peoples life." 4 4 8 +418 1 "Dear @ORGANIZATION2, @CAPS1 name us @PERSON1 from @LOCATION3, @LOCATION2. I thought it would benefit your opinion on the effects @ORGANIZATION1 computer usage throughout the @LOCATION1 if you heard from a young teen. This would help you because at @CAPS1 age people are dependent on computers! they can be entertained by online games, communicate with friends and family and receive news about what is happening around the world. Although some people do not always benefit by having a computer, most @ORGANIZATION1 the time people are satisfied, and do benefit from the use @ORGANIZATION1 computers. First off, people are affected by computers in a positive way because they can be entertained whether it is playing online games, or participating in a fantasy sports league. Although I just mentioned two non-educational examples, there are many educatiional websites on the internet which children can learn from. In @CAPS1 personal life I can name so many examples @ORGANIZATION1 entetainment. I use such as @CAPS2, which is an online game website, or fantasy football teams I am involved in. Another example @ORGANIZATION1 entertainment is when @CAPS1 younger brother. Parker goes on leaving websites. He will play on these websites for hours. Although he is sloveling infront @ORGANIZATION1 a computer screen he is learning. Also, expert say that children in the throughout the world learn more from the computer then from a textbook, or hearing information from a teacher. They say this because a computer screen catches peoples attention. Learning is a major priority and if it means putting a child infront @ORGANIZATION1 a computer for an hour will improve this, then that is what will happen. @CAPS1 next reason why effect @ORGANIZATION1 computers on people is positive, is because it helps people communicated with friends or family. @CAPS1 brother is attending college at @ORGANIZATION1 and since we do not see him often. our family will video chat with him over a program called @ORGANIZATION4. Because @ORGANIZATION1 this program we are able to stay in touch. An online poll was put out on @DATE1 which asked how people regularly talk to friends, or family. Sixty-three percent @ORGANIZATION1 the votes showed that people communicate over the computer most @ORGANIZATION1 the time. Thirty-two percent said over the phone and about sixteen percent said in person. this shows how much people communicate over the computer using, facebook, @CAPS3 @CAPS4, and much more. I would say that the computer is a good effect ion people when used this way. Lastly, computers help people receive news about what is happening around the world. On the computer at @CAPS1 house, everytime I open the internet there is breaking news about the war in @LOCATION6 devistation on @LOCATION5, and much more. Alsom a few months ago a class at @ORGANIZATION3 made a pie-chart and discovered how their classmates find out world news. Fifty-six percent said they foud out their news from computers. Not only is it @ORGANIZATION3 students but most people get news from the internet. Just the other night at dinner our waiter was from @LOCATION4 and he said he received all @ORGANIZATION1 his news about his hometown from the internet. As you can see many people use the internet on their computers to receive news and information. It is easy to tell that the effect computers have on people is positive because @ORGANIZATION1 the reasons I have stated above; people can be entertained, they can communicate with family and friends, and @MONTH1 recieve news about what's happening around the world. Like I said on the first paragraph, not all the effects are positive but most @ORGANIZATION1 them are!" 6 6 12 +419 1 "The local newspaper wants to know my opinion on the effects computers have on people. Computers do have effect on people. People can meet new people, learn about new places, and talk to friends. Read on so you can learn how computers effect people lifes. My first reason is people can meet new people. You can meet new people from all around the world. You can keep touch with them through @CAPS1 or e-mail. Its a quicker and new way to meet new people. My second reason is you can learn about new places. You can learn new places by just clicking on an webpage. Computers are a faster way to learn. I gives you everything you need to know about the ne places you want to learn about. My third reason is we can talk to friends. Computers have many diffrent social websites that you can talk to people. You wont have to wait for school the next day you can talk to them through the computer. With all this new / quicker stuff you can talk to friend when ever you want. Finally, you know how computers affect people. We can meet new people, learn new places, and talk to friends. Computers can do all these days. Hope you enjoyed reading all about how they affect people." 3 3 6 +420 1 "Dear @CAPS1 people, Your have been told that using a @CAPS1 can give no knolege, but I agree that it gives you hand-eye cordanation, A @CAPS1 is the most helpful thing in the world. For my first reason, computers have so many technology things inside that help people everyday. I want to talk about interacting with family and friends. You can go on facebook, myspace and even twitter to talk to your friends. Its the most common thing to go on the @CAPS1. About @PERCENT1 teens and adults use myspace and facebook. Litter kids would be like @PERCENT2 use @CAPS2 to interact with some friends. This technology is the most best thing you could ever use. The second reason is, that people need to learn how to use a @CAPS1 and the hand-eye cordination. For learning, you could learn how to type, write stories, using @ORGANIZATION1 word, and even learning whats to use on the internet, for hand-eye cordination, you can learn all the keys an the keyboard and what they do to get better skills. My thirdly reason is, how to search on google or the @LOCATION1. Google is the most common thing that everyone uses. To look up pictures for projects, labs basiclly for anything. And for the dictionary, you can see what words mean and the dictionay is for learning and doing homework. For my conclusion all these reasons are true and computers are the greatest sources on the planet, everyone do you want education or not? computers help everyone. You gotta love it!?!" 4 4 8 +421 1 "More and more people use computers, but not everyone agrees that this benefits society. I, for one do not. I think a decent amount of time on the computer, you can benefit from. But I do belive that computers are a huge part of peoples lives now. I think that people should get off the computer, and get some exercise more and more people would be so much healthier, if they took the time they were on the computer and exercised instead. On the computer you can look up places and see beautiful pictures of places, nature, and even people. But if people got off the computers and traveled and enjoyed nature, they would be able to live it, not just see a picture. Everything would be so much more fun if you were there and got to experience it, not just read about it. Another reason why I feel so strongly about people spending less time on computers is because they don't spent much time interacting with family and friends when you are the computer to much it seems like you drift away from you friends and family. Almost as if you are to ""busy"" to see them. So as you can see I highly disagree with the overuse of computers." 3 3 6 +422 1 "Dear, Who ever this concerns Some people are to obssesed with computers. They usually stay up all night playing games or going on @CAPS1. The people who love computers rarely iteract with people they like to be left alone with no one bothering them. Some people that go online to research stuff are probable being lied to maybe someones just messing with them. If you love computers so much that you stay up all night and don't get any sleep then you miss work and you get tired then you know you have a problem so quit. You dont want to stay up al night. Because you could have something important to do and you miss it like your childs party becuse you husband or wife typed to wake you up. But you didn't want to go you miss it and your child never trust you again when you stop interacting with other people you really got a problem because you need want to go any were but to get junk food and soda. Computers all the time is bad for you sometime you get cranky when someone takes it away that is when you need to realize what you are doing and go get some exercise is what you need you got to get some or you end up unhealthy which is bad for you and you want to stop that habit and get a new one. When your write a report you tend to go to the internet. It @MONTH1 be agood sorce but it could be lying and you could turn in the worst report ever you @MONTH1 of copy and pasted but you could still the not have to be your reliable sorce use your use a good good book. The internet is a bad thing it could consume you don't use it all the time the people make computer should shut all the computers world for one week so we know how it is with out internet." 4 3 7 +423 1 "Dear Newspaper @CAPS1, @CAPS2 people in our community use computers for positive ideas. Such as if gives you hadn and eye coordination, gives people the ability to research on far away places and allows you to talk to far away family. This is why I think computers have a positive effect on people. To begin with computers give a positive efect on people because it gives you hand and eye cordination. For example that can help you to have ability to do more. Like work somewhere such as a restraunt. This needs lots of cordination for holding heavy trays. My mom is a waitress and she needs a lot of cordination she tells me. Another reason would be you would have more hand cordination driving because you can react fast. Some people say that computers make you not be able to see while. Which than you would need glasses. But thats there desision this can give you one reason that computers are a positive effect on people today. Secondly why computers are a positive effect because it gives people the ability to search far away places. Why this can be a good thing is because you can get a good idea of what its like and might want to take a trip there. Another reason would be that students usually have projects which call for research in other countries. Computers make kids smarter that way but some people say that kids could get on a website where it can be bad, which also they arn't getting exersize if all there doing is researching when they can do that in the own town. But about @PERCENT1 of kids can stil be on the computer than go and get exersize. This is another reason computers are an impact. Lastly, why computers are positive is kids and adults can talk to there friends or family quicker. For exmaple if a family member lives far away instead of mail you can send it on the computer in a @NUM1 minute send. Its quicker and easier. Another reason is your kids will be able to talk to there friends faster than mail as well. About @PERCENT2 of kids use computers to talk to there friends But some people say kids can think there talking to there friends but could be someone bad. But to make sure all your friends should have one question to make sure its there friend. This is why to computers are a positive impact on young adults, and children, parents. To conclude, I would like to say that computers are a positive impact for a couple reasons one it gives you more hand and eye coordination gives people the ability to search other countries and beable to talk to friends. Others disagree because it can ruin your eyes, not get exersize and lastly give your child unsafe. But that can be changed easily by limiting kids, see who they talk to and get them in a sport. This is why I think computers are a postive impact." 4 5 9 +424 1 "Dear Local Newspaper, I think that computers have a very positive effect on people. @CAPS13 reasons are that they can educate @CAPS1, they make things easy, they are enjoyable. Below, I will explain each reason. Firstly, its very educational. Computer are like a giant resource of information. Many teachers @MONTH1 direct their students online @CAPS2 learning purposes. Also, alot of people go online to research information @CAPS2 their school, job, or a project. Great websites that are packed with information, like @ORGANIZATION1, can only be accessed using a computer. @CAPS2 example imagine having to do your research using only books, but you live far @CAPS6 a library. The internet makes that research very easy, as you access to @CAPS7 any time! Secondly, they make things very easy to do. Computer provide people with many easy, convieniant ways to do many tasks. If there werent any computers in the world. don't you think that interacting with people around the world would be challenging? Almost all of the @CAPS4/@CAPS5 in the @LOCATION2 like @PERSON1's, @ORGANIZATION2, or @PERSON2's have an online website to aid shoppers & they even allow them In buy things online, which is way more easy than going by car. I remember a time when I wanted to by something @CAPS6 a store all the way in @LOCATION1 I went online at home and bought @CAPS7 there! Also, @CAPS7 makes things like ordering @CAPS8, getting plane tickets, getting help alot much easier & @CAPS7 saves time! Thirdly, computers are very enjoyable! They provide alot of @CAPS17 things to do! @CAPS2 example if you are bored you can get on computer, & search @CAPS2 a game you enjoy. There is always a game you'll like. On of all of that, you enjoy @CAPS7 by talking to your friends and Family. You stay in touch, while enjoying their company. Another good thing that people enjoy about these computers is because they can send things to one another, lightining @CAPS10 because of email. Imagine that you don't have a phone, and you wanted to tell your husband that is away on a business trip, that you son is very sic. If you send @CAPS7 by mail, @CAPS7 take at least @NUM1 days. By email, only a couple minutes so, you can see that computer also can provide some @CAPS11 of safety @CAPS2 everybody! So, as you can see computers have a very positive effect on people @CAPS13 ways that they do this is that they are educational & they help @CAPS1 learn. They make things like ordering @CAPS8, getting tickets, or contacting helpl very easy @CAPS15, they are very enjoyable, @CAPS6 playing @CAPS17 games, to staying in touch with your Friends and Family. Don't you think that without computers we'd probably suffer? I think computers have a great effect on people" 5 4 9 +425 1 "To whom this @MONTH1 concern Computers are a great source of technology, but many people spend to much time on them. People don't get to see the out-side world because they are to ""busy"" on their computers, and use them to find things or play games that they can do just outside in the fresh air. Computers are and people spend to much time on them instead of having an outdoor experience, exercising, and talk and bonding with their family and friends. First of all, people don't enjoy nature as much as they enjoy their computers. When you're stuck in side school or work, you don't get to go outside and see the natural beauty of nature, so when you get out take @NUM1 minutes or so to go and enjoy the wilderness. You don't have to go outside every day, but once in a while it feels good to get out and explore the world. Expecially when you had a little break and what to be alone, in nature, you can get away and lose your stress. Some @MONTH1 say you can enjoy nature and explore new places online, and yes you wouldn't you want to do it first-hand? You don't get the real experience by just looking at pictures. You have to be their and explore it by yourself. In nature there is always some thing new. Secondly, when you are on your computer, you didn't doing anything your body, you need to go exercise. Fresh air is good for you, you. Spending most of your time on your computer, you don't spend time with your family and friends. Family is the most important thing in your life, and as you get older, the time you have with your family get less and less. You also @MONTH1 see you friends in school or at work everyday but you don't really get to sit and ""catch up"" with each other. Online their are programs where you can chat with friends and family, but wouldn't you want to see them personaly, especially if you don't see them everyweek. It's a better experience and you made many more moments. Just going out far which or even going on a run can give you time with your loved ones. In conclusion, people spend to much time on their computers. They don't get to experience the outside world and the wonders of nature. The more on their computers, the less exercise they get and less fresh air. Family and friends some of the greatest things in your life, dont get to bond with you,. Computers are good for using spread sheets and typing essays, but they aren't good for you to spend all your time on, mailing it, and missing out on the adventures your life will venture through" 5 5 10 +426 1 "Dear, @CAPS1 of the @ORGANIZATION1 @CAPS2 has come to my concern that many people are debating on whether computers benefit our society or not. Some people think computers are the lives of many people, but I have to disagree with those who say that. I think that computers benefits our society in there ways, they bring people together, they offer many websites to research a topic, and they let people shop at home. One way that computers help us is that they bring people together by using the internet. Many families do not live close to other relatives, making hard to see them. But with the internet, people can use social networking sites such as facebook or myspace to keep in touch with one another. Distant relatives can talk and share picture with one another to keep in touch. Also, the internet can help bring couple together and potentially lead to marriages. How @MONTH1 times have you seen those @CAPS3 harmony commercial that claim to have brought two singles together to make a happy couple? Another way that computers help today's society is that they offer many places to conduct research on a certain topic. There are so many search engines on the internet that lead you to numerous websites to help you find out what you need to know. Also, researching a topic on the computer is so much easier compared to going to the library and reading books. When using books, to research a topic, you need to find the right book, read the whole thing or at least most of @CAPS2, and find what you're looking for. But with the internet, you just type in what you're looking for, click, and go. Lastly, computers let you shop online and lead to a better shopping experience. By shopping online, you skip the long lines at retail stores which means less time walking to get your product. For example, many people rush to stores early in the @TIME1 for huge sales on ""@CAPS4 @DATE1."" A person could be left waiting in line for hours to get a product. Why wait outside for so long when you could just buy the product in the comfort of your own home and get the product delivered right to your house? Also, many websites offer special deals for shopping online so you can even money. In conclusion, I think that computers benefit our society in three ways, they bring people together, they offer many websites to research a topic, and they let people shop at home. A world without computers would be so much different than the world we live in today." 5 4 9 +427 1 "To: The @ORGANIZATION1 can be a big part mof people's lives, however, some don't realize the negative effect these pieces of technology have. First, staring at a computer screen is unhealthy for your body. Secondly, anyone can post information on a website, therefore, it can be inaccurate. Lastly, people tend rely on computers too much. Computers are negatively impacting our society! The first reason why clearly, computers are not benefiting people is because they can cause unhealthy symptoms. For example, if you are playing games on the computer for hours, it can strain your eyes. This can cause you to feel tired and drowsy after being on the computer. Also, statistics show that @PERCENT1 of @CAPS1 own computers. Could this be the cause of obesity in @LOCATION1? Computers could very well be restricting people from wanting to go outside and excercising to maintain a healthy lifestyle and weight. Computers are obviously unfit for our bodies in many ways. Have you ever wondered if the information on a website is completely accurate and true? I know I have. Anyone who has access to a computer can post information on a blog, website, or communication site (such as twitter, facebook, or myspace). Not everyone who posts articles is an expert on that topic; the information could very well be false! More and more @CAPS1 use computers to get the information they need, which could, in the long run, be hurting them. Books are much more accurate! They have to be revised by editord, and are written by people who definitely know what they're talking about! Therefore, computers are, without-a-doubt, hurting our nation because of false facts. Lastly, computers have a negative effect because we rely on them too much! For example let's say you are writing a paper on the computer that is due tomorrow. You save it, and then close down the computer because you have to go eat dinnder. Later, you come back to the laptop to find that your paper isn't there anymore! You look all over your folders; but it's gone. Computers always have technical glitenes, but you don''t always have time to go to the tech help store to fix it. However, if you had written out the paper, it wouldn't have randomly disappeared! @CAPS4 people depend on computers too much, it can backfire and cause a @CAPS3 problem for you. My sixth grade teachers once said, ""@CAPS4 I was in college, I had a big french paper due. I worked hard all night to get it done. Then, @CAPS4 I went back to print it, it had been erased. I had to rewrite the whole thing again!"" Computers have a big negative effect on society because we tend to depend on them too much. In conclusion, computers are hurting our society, clearly, they are unhealthy for our bodies. Also, the information on the computers internet might be naccurate. Lastly, we rely on computers too much, which leads to problems. I strongly believe we should recluce our dependence on computers! " 6 5 11 +428 1 "Dear local Newspaper, People spending time on the @CAPS1 is a good way for people to connect with one each other. But it can also be a way for people to get in trouble with things online like looking at things they shouldn't be looking at strangers they shouldn't be talking or typing to or even predators that could be online. @PERCENT1 @ORGANIZATION1 kids and adults go on the computer either when their getting out @ORGANIZATION1 school for the day or if they are getting off @ORGANIZATION1 work for the day or if they are getting off @ORGANIZATION1 work for the night, they are just there on the computer to check upon things and for the kids either for their entertainment, for like chatting with friends on some king @ORGANIZATION1 program, or @ORGANIZATION1 their even playing a game online. Three fourths @ORGANIZATION1 kids under age @NUM1 go online more than adults age @NUM2 because @ORGANIZATION1 the interest in what is on it. People sometimes say, ""oh, I only go on the computer to check up on things. It only takes me a few minutes"", But they are lying. Most people dont just go on for a couple @ORGANIZATION1 minutes, their on for more like a few hours, and that effect their relationship or connection to ones family and or friends. @PERSON1 at the @ORGANIZATION1 says, ""people spend hours on the computer looking at what ever they want and most people do that and it has to stop for the sake @ORGANIZATION1 the persons family and friends,"" @PERSON1 also said,"" @CAPS2 like an addiction"". Do you really want to have an addiction? I didn't think so, so instead @ORGANIZATION1 just sitting there storing into a screen for hours aday go outside and have fun with your friends or family, go to the @CAPS3, the beach, even just take a walk in the park. Nothing can beat the feeling @ORGANIZATION1 being with friends or family and just having fun." 4 4 8 +429 1 "@ORGANIZATION1, Computers are great tools and a great piece of modern technology. Almost every family has them. About @PERCENT1 of my class has computers. So many people have them because their helpful and another current learning resource. Also it's a great way to keep in touch with friends. Although they can be time consuming they make up for it in the long run. First, they are helpful because it's quick an easy to get from page to page. It's especially helpful for work because instead of calling a bunch of clients. You can send them all emails in under a few minutes. They also help with school or planning a vacation. You can find great low prices on travel agencies on the computer. This is great because our country is having a bad acession and we need to be saving every penny. These are some of the few reasons why this modern technology is so helpful. Next is that it's a great current learning resource. You can find articles on anything happening right at that moment or a couple days before. Sometimes the articles in books are old and. Those out dated articles don't have accurate more researched information But, computers do so you can compare your information. Also there are online schoold that are affordable. So if you want to get more of an education but, you have to work too. This helps a great deal. A computer can be used for many things like learning. Computers are definetly the best way to keep in touch with friends and family that you aren't able to see very often. I know what your probably thinking, is that well isn't that what phones are for. No because what if that family member or friend doesn't have a phone. Well then they can use their computer to stay in touch. They can use email, facebook, aim, and so many more. A computer helps me stay in touch with people I haven't seen in awhile. Okay, now that I've stated all my reasons why computers are a great resource. I just want to remind you that their helpful a great learning resource, and a great way to stay in touch. Computers are now an important piece of Society. Computers are a whole new track and it should stay that way." 5 4 9 +430 1 "Dear Local Newspaper, Computers and other technology are the best thing that ever happened to the world! I hear that computers effect people, well I dont agree with that statement. Here are my @NUM1 reasons why. Computers and other technology make the way easier. Talking to family and friends without spending money. If you control the amount of time you use on a computer then you will be fine. Please keep reading to hear my great ideas. To start off, computers and other technology make life easier. Think about it we have access to our bank accounts, stores, reasearch, school, etc. See instead of having to go at shoppingfor food you could just order it online with no trouble. We can now shop @CAPS4 cloths and other household items. It'so easy just to look at a list and pick what you want instead of waiting in a long line. @CAPS4 example, I went to @CAPS1 to pick up a few items @CAPS4 a party. There a long line, so I just got online picked what i wanted and had it shipped to me unless then @NUM2 hours! Its cool to not have to even got up to get what you want. I know you sometimes have your since you don't wanna get up? But you have to go shopping. Doesn't computers make life so easy. Secondly, talk to family and friends without having to spend money. This is awesome because you can text, video chat, email @CAPS4 free. Computers have so many websites to talk to your family and friends like, @CAPS2, @CAPS3, myspace, yahoo, and even ohvoo. Mostly, all those you can video chat and voice chat @CAPS4 free. All of those sites you can text @CAPS4 free and touch those with your @CAPS4 example, one day I didn't want spend my to talk to my friend. So I just video chatted with them. And it was @NUM3 times better and free and better. Even @CAPS4 people long distanceis way to much money in call them. So why not just video chat I know you wouldn't wanna spend hundreds of dollars @CAPS4 a phone call bill! Please keep reading. Thirdly, if you count he amount of time you use on he computer of other technology devices then you will be fine. If you limit and set a time on the use of your computer everything will be wonderful. You can tell your body to get off the pc and get a work out or talk to friends. There's no way you could be addicted to something if you have a limited @CAPS4 it. If your the type of person that is a at something. Then @MONTH1 be you shouldn't get a computer. Like my mom gives me a limited @CAPS4 the computer @NUM4 my laptop has to be off on a school night. An @NUM3:00pm my laptop has to be off on the weekends. There's alway ways to not to be addicted. You just have to know when enough is enough. Its not the computers fault. Just have to control yourself. To wrap this up I would just like to say thank you @CAPS4 having the time to read my letter. My reasons are, computers make life easier, talk to family and friends @CAPS4 free, and if you control the amount of time you use on a computer than you will be fine. Thanks again." 4 4 8 +431 1 "Dear officials at the @ORGANIZATION1, have you ever been so bored that you spent the whole day on the computer talking to friends and relatives? Some experts are saying that computers are having a negative effect on people in our society. While others argue that they are very helpful. the use of computers has been taken to an extreme level, and is having a negative effect on the community. Some reasons I feel this way are because of the social limit computors are putting on people and the amount of time people spend on them. My last reason is that computers are the general health of people today. People should be educated on the negative effects computers bring! Firstly, computers are greatly changing the way people communicate. Instead of talking to people communicate. Instead of talking to people face-to-face, teenagers and adults find themselves '@CAPS1"" or ""@CAPS2"" their friends and colleges. This is causing many bad-habit forming. People are it more to talk to physically, and might even be using terms like ""@CAPS3"" and ""@CAPS4"" instead of works. This problem is causing a huge gap in the social-wonangs of humans, and is harming them more know! Secondly, the amount of time wasted on the computer is unbelieveable! If someone logged onto the computer to search a fact or ""@CAPS5"" something, they might get caught up in other programs and spend hours on the computor. This time could have been used for more productive things instead. A recent polls shows that that average person from ages @NUM1 spreads over two hours on the computer each day! This fact is quite amazing, because these people could have been getting more things accomplished in this time. The amount of time wastedon computers is a huge problem that needs to change! Lastly, humans' health is being affected drastically by the use or computers. As the obesity rate is rising, these people are just sitting on their computors watching it go up. During this time, they could be exercising, going to the gym, or even taking a walk with friends. Teenagers could be playing outdoors, but find themselves too busy on their computors to enjoy the fresh air. Whenever I talk to my friends, they usually say they are on facebook or oovoo instead of outside or playing with their siblings. The obesity rate will keep rising if these people don't realize that staying on computers all day long is a part of the problem! In conclusion, the use of computers has gotten to a point where it is hurting society, rather than it I feel this way because of the social-flow it is teaching people, and the amount of time wasted on computers. Another major reason is because of the extreme health issues computers are. If the average person tried! to limit the time they use their computers, they would notice a positive in their life-style!" 5 6 11 +432 1 "Dear @CAPS1 @CAPS2, Experts say, ""@PERCENT1 of @CAPS3 spend @NUM1 hours or more on the computer daily"" The reccomened time limits is @NUM2 hour. By spending more time on computers people aren't exercising. Secondly, those people aren't enjoying life and nature. Lastly, the use of computer puts a strains on social skills between friends and family. Surely the effects of computers cant be good. First off, people in this aren't exercising as much as they should. Obesity and diabetes effects <@PERCENT1@NUM3> of @CAPS4. Both of these diseases are lethal. If you spend so many hours on the computer these diseases wouldn't spread nearby as fast. When will you get off the computer for an hour and go outside or to the gym and exercuse so these won't affect you? Secondly, nature is a marvelous thing. Sure camping in a tent and catching dinner isn't for everyone. But, there are many ways to experience nature without ""roughing it."" You can go to the or to the aquarium. Sit on your back pond and go bird watching. All of these are great alternatives to sitting at the computer screen, looking at pictures of nature. Lastly, people aren't spending enough time with family and friends. Yes you can email, I. M., @CAPS5, and @CAPS6 family and friends, but its not the as people are less and friendly then they. Mainly of socia skills. We need to the of social without computer. In conclusion, computer do have a negative affect on people in the long tern. People aren't exersising. They aren't enjoying nature. Finally their bonds between friends and family are weahiming. This is a growing problem which must be put to end. Thank you for your time." 4 4 8 +433 1 "The amount of computer usage has been significantly growing over the years. Adults and children are spending huge amounts of their time on computers. Though these divices @MONTH1 seem entertaining and helpfull. Well that is not all true. Computers are being used for more then just work. It seems to be the peoples new way of comunication. Communicating with others has always been a great part of our lives. There is not a person in the world who has not had some form of communication with others. Though computers seem to abuse the privlage of communication. For talking on an online chat sight is easier and more convient for people. The people in those charts are not always sho they claim to be. This pushes a huge danger on those signts @CAPS3 children of all ages now are using them. These children fo not always know who they are talking to, but @CAPS3 its online they say anything that into their mind. The way @CAPS2 talk tao people in person is not the same on line. When communicating with people on the computer the writer tends to short hand things. Such as the word ""you"" would be spelled ""u"". These quick changes happen without thinking, and become a natural habit. These changes quickly become a part of our communication and writing. So instead of seeing the sentence ""@CAPS1 did you think about her project"", @CAPS2 will see ""wat did u tink bout her pro."" @CAPS3 of this many childrens grades could be affected. For their spelling will soon become and the vocabulary will be, or all in slang. This vocabulary change could be prevented if computer were not used as much. Today @CAPS2 are seeing going outside. No one ever needs to go anywhere if all theire communication can be done at home. This isn't just hurting ourselves but also the environment. The less time people spend outside the more energy is being wasted. The times @CAPS2 do go outside is for simple tasks such as taking out the trash. This is hurting our environment! There are not as many people taking care of our planet. People are not taking the to make a garden, plant some tree's or simply pick up some trash on the side of the road. If @CAPS2 would all just take the time, maybe only ten minutes adays to help our environment it would be helping our bodies and also helping our planet. This would reduce the amount of people using computer's and change the way @CAPS2 see our civilization today. So please help yourselves and the earth stop talking on the computers and get out and do something productive. The computer will always be there, but @CAPS2 only have one of us and one ofour planet. @CAPS2 dont want to destroy these over a simple piece of technology." 6 5 11 +434 1 "I think we need our computers. If we dont have competer's we wont be able to connect to our family that could live in anther state or country. I no how there is texting now but some people dont even have phones or nothing how can you connect to them you cant call it might not be free with the phone palan you have. If a family member coms and visits you they would probuly email you about it but if there is no computers they can't tell when there coming. Are they gong do show unispectly they might not even be home and if they show up without them knowing there out of luck. And we exersize on our overtime we pick what time and we do it and if we play a sport were enjoying nature some people might have job's that take place outside of if. There are nerd's that are on computers all day long but in sure they enjoy nature I dont know about exersizing but they have a car and every thing they drive and things. Also, about the exersizing every on has to exersize to stay in shape im pretty sure people dont want to be fat there whole life they want to look good and feel good about there self. If it is a holiday or something and people want to send them something to wish then of whetever holiday it is. There not gonna be able to see them in person if they live so far away inless they plan to meet each other but even if they do that there gonna want to email then not call were it costs money and texting only comes with sertain plan's of phones so all there is left is emailing. Sometimes, people will more fron of you that your ollways on the computer if your not dont worry at least you get to email your family that you dont ever seen. These reasons are my opinion that dont get rid of computers and other things." 4 3 7 +435 1 "Most adults beileve that computers are just awaist of time and are somtimes can be addicting or bad for health. Well its true it can be bad, but it matters how you use it. There is one thing about the computer that is amazing. That is socilizing with friends, family or even strangers. You know when your parents say never talk to strangers well, you can do this saftely and harmless over the computer, and you also learn alot about life or other peoples life outside your small little town. There is another @CAPS1 perk with computers and that is keeping in touch with family or friends that live far away. My sister went to @LOCATION1 for six months, but the thing was it felt like two weeks because I was able to communicate and se pictures of here @CAPS1 @CAPS2. The last but probably the most important part is getting ahold of. People you actually really need talk to, such as friends, teachers or even people you never talk to in school. With these three advanced ways to soliaze it will always feel like your never alone which an awsome thing. There is many other things the computer is used for other than social life, and that is actuall important use, stuff you need to know or want to find out. Here is one example, everone has forgot there work at school or your office at least once in your life. Well with being able to just grab all the papers off line is easy. Just go to your teachers home page and just print your homework. Its that easy just one click and that saved you a twenty minuet ride to school. How about when your up at night wondering what the weather is going to be lik, many sunny, cold or even a glorious snow day. Well instead of waiting to find out you can just go on weather.com and see everything maps, forecast or what is going to happen hour by hour. Just like weather people always want to know breaking news. Why watch an two hour show when you can just get to the point off whats happening in this world we live in. I mean the parents have to open there eyes and seethis a buetiful thing. We should be proud of the fact that humans have created somthing so complex and intresting. There is one more topic that I know youre going to absoltly love. I mean right now your grading this in your office, well you can be grading this at home on your comfortble couch, with a fire crackling and all the peace and quiet in the worl. People work from home all the time. you can run a business from your very own living room. My father owns company and works from home most days. Its absoutly @CAPS1 be is able to take me out, spend time with the family and most importantly doing the things he loves and guess what, you can do this too. Like I keep saying its only a click away here is another topic, online banking. Do you really want to drive to the bank and sit down with that borring acountant and spend hours there, well, now you don't have to waste your time, you can type in a couple keys and boom, your on your way to see your information. That was faster then two hours i'm guessing. Yes, I believe that computers are a @CAPS1 use of time and will also help alot in the future. So the next time you log on to your comptuer do some of these things and turst me your will think exactly what I think." 6 5 11 +436 1 "Dear Readers of the Local Newspaper, More and more people use computers, but not everyone agrees that this benefits society. Those who support advance in technology believe that computers have a positive affect on people. They teach hand-eye coordination, give people the ability to learn about faraway places and people, and even allow people to talk online with other people. Others have different ideas. Some experts are concerned that people are spending to much time in their computers and less time exercising, enjoying nature and interacting with family and friends. I agree with those experts because many people take the computer serious and always want to be on. Though the @CAPS3 users think there is nothing, negative about using the computers but there is. Such as increase light bill payment, obesity and like the experts said, ""@CAPS1 time interacting with family and friends."" @CAPS2, @CAPS3 users of the computer cause light bill because if the user are constantly on, then computer must cnstantly be on, when the computer in constantly on, it causes the light bill to increase. I can connect to that because I used to be a @CAPS3 user of the computer and my guardian would yell at me because of it. Ever since I had brought down the habbit od being a @CAPS3 user my guardian has stated the light bill gas decreased. Another reason why @CAPS3 user of the computer must decrease thier habbit is because of obesity. Obesity is when a man or women is overwieght. My imaginary friend is a @CAPS3 user in my imagination. He is light many others, he never exerciszes with his friends because he is constantly on the computer. Last but not least,@CAPS3 begin to slack on interesting with friends and family. As I stated in paragraph two that I used to be a @CAPS3 user. I myself wouldn't accept invitation to couldn't go to movies with friends and I wouldn't help around the house. These were the main three thing I wouldn't do. Then I learned to not abuse the computer, not waste my time on it. but I also learned to be responsible with it. That's what I think many @CAPS3 should do to. In conclusion, being sa constantly user is not healthy because it many cause obesity. Also, a @CAPS3 user increased light bill, and wont spend time interacting. " 4 4 8 +437 1 "@ORGANIZATION1, In my opinion, the effects of computers are not good. Many people spend too much time on their computers and less time exercising. People are on their computers so much that they dont enjoy nature anymore. Also, they aren't interacting with family and friends that much. I think that computers are becoming an issue. @NUM1 out of @NUM2 people in my school agree that they hardly exersize any more because they are always on their computers. For example, @NUM3 year old @CAPS1 used to go to the gym everyday before she got her own computer. Now every afternoon she finds herself in front of the computer monitor. If it wasn't for computers, I'm sure kids would be outside getting exersize. Computers are a serious issue. Have you ever found yourself in front of the computer screen, on a beautiful day outside? I have, and while I was on the computer I could have been outside enjoying nature. I think it would be best if you unplugged those computers for a day and just went outside and got some fresh air! If everybody keeps this habit of staying on your computers all day and not going outside, we might turn into a world of couch potatos! Im sure you dont want that. Lastly, I remember multiple times I said I would do something with my dad but I didnt because I was on the computer. Many people can agree with me. Instead of going out to interact with your friends many are just instant messaging them. The internet is amazing, but I think everyone forgot the joy of going out with friends and family. So get off those computers and call a friend. In conclusion, the effects of computers are bad. Many people are spending too much time on their computers and have less time exersising. They are on so much they dont enjoy nature anymore. Also, they aren't interacting with friends and family. I think after reading this you can see computers arent good." 4 4 8 +438 1 "Dear newspaper, People are spending to much time on their computers. They are on the computers when they should be exercising. People need to enjoy nature and spend time with family and friends. Let me explain more. Firstly, the people who are consently @CAPS1 people, facebooking people, or on myspace aren't getting exercise. Now, more than ever people are becoming very obese. It is very unhealthy. People in my family that are always on facebook are not getting exercise, and becoming overweight. Eight out of ten @CAPS2 aren't getting enough exercise. We need to get people moving and exercising. Secondly, People need to enjoy nature. Everyone is so caught up in their computers, they don't sit back, relay and take in nature. People don't get that the earth is polluted. Once animals are extinced they are not comming back. If they got off of their computers for a minute they could see the animals before they are gone. Computers are the wall between inside and going outside in back at the world. Finaly, the computers are getting in the way of seeing family and friends. Everyone is so caught up in the newist computer they don't see their friends or family I know some people who when its time for dinner, they walk down to the kitchen. Get their food and bring if to their computer so they don't miss out on anthing family and friends are very important. @PERCENT1 of @CAPS2 onley see friends and family on holidays. Computers are getting in the way of everything! People arent getting the exercise they need. They aren't going outside to enjoy the nature and the arent seeing there friends and family. We need to get people off their butts and away from the computer. Why does everyone have to sit in front of the computer anyway?" 4 4 8 +439 1 "What I am going to tell you could change the way you think about computer in general. People might say that computers are great to be on its fast and you get what you need but I think computers are not good they become addicting and make your bills every high, computers can lead to your child sending less time with you and your family, also computers can be very danerous for teens and children of all ages. I say that computers are addicting this is a fact @PERCENT1 of students spend most of there time on the computer. Why are computers so addicting well they have instant message you can talk to people around the world. Now I know it might not sound bad but this can be bad for your pocket @PERSON1 who works with electrion bills says that because children spend more time on the computer the bills in house have grown up almost @PERCENT2 and the harder it is for people to pay there bills. Computers are what they say now a days are one of the main reason children spend less time with there family. This is true in most familys like mine because pof computers me and my sisters spend more time on then computer than with each other this can cause argueing and fughting between familys. Statics show that @NUM1 people would rather spend more time on the computer talking to people or listening to music than spend time with there own children or parents. Is this what you want for your you and your children to be separated by tecongly? Computers aren't always safe for teens and children of all ages. There are many reasons why computers can sometimes not be safe for your children or teens. I say this because sometimes we are worried about are kids safty and when your child is on the computer you have no idea who they are talking to or what they are talking about. Teens are most/likely going to met other people online and there are stalkers, posers, and other people out there that are pretending to be soomeone they are not and your child can be one of those peoples who fall for it and it can lead to meeting someone they might not know and they can be kiddnapped, rapped anyting can happen. Children can be always get hurt by verbal abuse they can be threatened by others and hurt and that can cause emotional damage so be careful and monitor your child. These are just very few things that can happen. These are my reason computers aren't the really benefiting are society." 5 5 10 +440 1 "Dear @CAPS1 @CAPS2, I think that being on the computer too long is bad for people because, you could get obsessed with the computer. You could get in trouble, and it could effect your education. One reason I think that being on the computer too long is bad for people is because you could get obsessed with it. For example, if you were playing outside on a nice day and you called a friend and asked them to come over and they said no I can't @CAPS3 on the computer. You said why todays a nice day. Then your friend said @CAPS3 playing games. Thats an example of being obsessed with a computer. Another reason that being on the computer too long is bad for you is because you could get in trouble. Getting in trouble online is bad because you could get sued or the owner of the website could delete it from your computer. Also if your parents found out you would be in even more trouble because then you would get grounded. That means you wouldnt be able to use the computer for a long time. My last reason that being on the computer too long is bad for you is because it could effect your education. If someone was on the computer too long instead of doing their homework that could effect their grades a lot. If you are in @CAPS5 @CAPS6 and this happens you wouldnt be alowd to graduate and go to college. That is not a good thing if you are trying to get into a good college. Even though the computers is important in @CAPS5 @CAPS6 you still shouldn't be on it to long. In conclusion everything I have said about why being on the computer too long is bad for you proves that too much computer is bad for people." 4 4 8 +441 1 "Dear Local Newspaper: Computers have become a major part of peoples lives. The effects computers have on people are only negative. Nothinggood comes out of using a computer. This is because computers are time consuming from in other activities, computers are not always working which leads to people getting angry, and using computers is bad for your health. I know you have a difficult decision to make but after reading what I have to say, their will be no doubt that you will agree. Using computers is very time consuming. People don't realize how long they have been using the computer. Once you start using it, your hooked and it's hard to stop. A poll was taken and out of @NUM1 kids, @NUM2 of them said they felt groggy and had headaches, after using a computer for two hours. The way computers make you feel is not enjoyable. But while your using the computer it's entertaining, for example, your on @CAPS1 and your talking to your friend and your laughing at them & enjoying yourself, but it's not the computer that's making you happy, it's the person, you might as well see them in person. There for, computers are time consuming & should not be used. Copmputers are not reliable, they have minds of their own. Many people do always rely on their computer and when it doesn't work it causes the person to get angry or frustated. Computers have a vast impact on people, but they shouldn't have to. Dr. @PERSON2 at @ORGANIZATION1 says that @PERCENT1 of @CAPS2's frustration & anger is caused by non-working computers. If the use of computers was lowered anger that people have would lower and would lead to other positive things as well. Furthermore, computers are not realiable and cause people to get angry. My final reason is that, computers cause health issues and cause people to be lazy. The obesity rate is higher than ever and people sitting on the computer all day is not helping. @PERCENT2 of obesity is caused by the use of computers. @PERSON1 at @ORGANIZATION2 says that @NUM3 out of @NUM4 people who don't use computers are much healthier because instead of using computers they exercise. There for, computers cause health issues. In conclusion, computers effect people because they are time consuming, you can't rely on then and it's bad for your health. There for, computers have negative effects on people. " 4 4 8 +442 1 "Dear @LOCATION1, @CAPS1 one day being able to talk to anyone in the world by simple pushing a button. This has became posible with the computer. I support the advances on technology because computer can help hand eye coordination, it is easy to learn about faraway places or people, and the computer enables you to talk online. This is why it support the computer. First, the computer benifits society because it developes hand eye cordination. Did you know that nine out of ten people who use a computer have improved hand eye coordination. Bill @CAPS2, creator of @ORGANIZATION1, ""The keyboard is the most important part of the computer because it builds hand eye cordination."" This reminds me of when I got my first computer and had no hand eye cordination. @CAPS3 I can type with my eyes closed. I understand how you might think that computers cause people to not get enough exercise, however, the computer can improve your hand eye coordination. This is why I support the computers. Next I support the computer because you can learn about faraway places and people. Did you know that nineteen out of twenty students use a computer when the to learn a place or a person. @PERSON3 stated, ""The way students study is much different than it used to be, @CAPS3 students use computers."" This reminds me of when recently I had a report to do on @PERSON1 and all needed was my computer. I see how you @MONTH1 think that enjoying natures is imprtant, intelegence is even more important . This is why the computer supports our society. Finaly, I support the computer you can talk to the world instantly. Did you know that ninety-nine out of our hundred students talk online to in touuchscreen. @PERSON2, creator of @CAPS4, an instant messaging website, stated, ""@CAPS5 is no doubt that @CAPS4 is the easiest way to stay in touch with , This reminds me of when I went away on vacation and still stayed in touch with my friends through @CAPS4. I understand how exercise is essential to your body, however, talking with friends is important too. This is why I support the computer. In conclusion, I support the computer because it support hand eye coordination, you can learn about faraway places and people, and you can communicate with people around the world. @CAPS3 that you knew why I support the computer @CAPS5 should be no doubt that you will support it." 5 5 10 +443 1 "Dear @CAPS1 I support that computers have a positive effect on people because they have so many things to do and learn on the computer, because on the computer you can look up many things like sports, animal world history and lot more. The reason I support this is because I like to look up history about @CAPS2 and @CAPS3 pioneer who have changed humanity. The @CAPS4 reason why I say computer effect people is because it teaches you how to type faster and know now to get certain places on the computer for example say you mom was asked you do you know how to get to a certain website to buy new furniture. @CAPS6 third reason of how computers effect people is if say one day you had to do a project, on what happen during @CAPS2 revolution and you were one of those people that spend all their time looking up @CAPS2 revolution on the computer. That means that project should be real easy. The @CAPS4 reason why I say computers affect people is because they teache better communicating skills on things like facebook and @CAPS5, because when I'm in school kids tell each other to go on there facebook when they get home. I also think computer affect people because say you have a idol and wan't to look up that person for example I like football, basketball @CAPS6 idols are @PERSON1 peterson and @PERSON2 iverson, so everytime I go on the computer I look up both of @CAPS6 idols. @CAPS6 last reason why I say computers effect people are because they teach how to read because everytime on the computer haves something to read about no matter what it is." 4 4 8 +444 1 "Dear Newspaper, ""@CAPS1 a computer @CAPS15?"" @CAPS2s a continous subject and @CAPS10 controveries and ideas have been made, like senior scientis @PERSON2, I believe that computer can be used to help people connect with friends, long distant relatives"" says @PERSON2. @PERSON2 @CAPS1 right, computers bring people together whether its friends families or relatives from far countries. @CAPS2 also helps with everyday needs like and homework. First off people can do @CAPS10 things on a computer, including homework finding a store and checking out traffic and weather. You can play games, connect with friends learn recipies and react if the wreckers the football game. @CAPS4 creating a link all around the world people can find out information about one another and learn what they are all about. @PERCENT1 of large corporations find the @CAPS3 and computer very useful. ""@CAPS4 using the @CAPS3 I can find a willing participant in charities"" says @PERSON4, charity fund raiser in @LOCATION1. Second, @CAPS4 using the @CAPS3 people can share their wares on @CAPS10 sites including @CAPS6 and @CAPS7. People also create websites to share their wares, @PERSON1 the co-owner of The @CAPS8 @CAPS9, a duct @CAPS8 wallet company that also raises money for @LOCATION2, has started to create a website, and hopes to raise awareness of the terrible event that happened."" @CAPS10 like @PERSON1 use the @CAPS3 to expand their buisness. ""@CAPS12 stay in the past, when the door to the future @CAPS1 open?"" @CAPS13 @PERSON3, the succesful owner of @ORGANIZATION1. @CAPS4 using computers, people can gather data from others and create new inventions to help the world. People can create @NUM1-@CAPS14 diagrams on a computer and send the data to a company, and hopefully create @CAPS2. Computers arent just same plaything, they are serious pieces of equipment that can help the world. Although @CAPS10 people might find the down sides to computers, they will always be able to think of a good side. I hope that you will use this article to prove that computers arent all @CAPS15." 4 4 8 +445 1 "Dear @CAPS1, In my opinion I think we should use computers. The reason why I think we should use computers because @CAPS2 we need help on something, we can find it on the computer, also because sometimes that is the only way you can get in touch with someone, and sometimes people @MONTH1 have to go on the computer and check instant mail. Frist of all, I think we should use computers because @CAPS2 we need help on something we can find it on the computer. For example, @CAPS2 a student need help on homework they can go on google and look on the they doing and it will help. Also They can go on a website called http.historywork.com and that will also help that on what. Another reason why I think we should use computer because sometimes that is the only way you can get in touch with someone. When I say this I mean like @CAPS2 you have a computer connect with them on the computer. For example like @CAPS2 you have a gmail, facebook, yahoo or myspace you can talk to you friends at there. I do it all the time. Last reason why I that we should use computer is because sometimes @MONTH1 have to go on the for example @CAPS2 you @MONTH1 had important message the website and you message you. I do it why can't you. So yes I do their." 4 4 8 +446 1 "Dear @LOCATION1 @CAPS1, I strongly believe that people should cut down on using the computer. Just imagine, more people outside and healthy. Less cyberspace bullying, and less burning of electricity. My first reason why people should spend less time on the computer and more outside is because @PERCENT1 of people that use the computer more than two hours a day are either at risk of being overweight or are overweight. Also, @PERSON1, from @ORGANIZATION1 says @CAPS2 people believe that using the computer gives you benefits, but they dont. They increase your chances of either being overweight or getting diseases such as diebeties. Its imperative that the community takes action to stop this from happening. In addition, my neighbor, @PERSON2 had to do a study to interview overweight adults and teenagers. @CAPS3 told me that @PERCENT2 of the @NUM1 people @CAPS3 interviewed said they dont go outside and use the computer for about @NUM2 hours a day! I implore the citizens of the @LOCATION1 area to cut down on internet time and go outside to enjoy nature. My second reason is the less people on the computer means less cyberspace bullying. @NUM3 out of @NUM4 people that use the socializing websites have experienced more than @NUM2 encounters of cyberbullying also my sisters friend, @PERSON3, overdosed on advil so @CAPS3 ran comitt suicside because of cyber bullying. Someone had said @CAPS3 was ugly, smelled and should ""go die in a hole."" @CAPS3 didn't tell anyone about this. Luckily her mother brought her to @CITY1 @ORGANIZATION1 fast enough to be put on life support for @NUM6 hours. furthermore, if people cut down on internet socializing website than less people will be in danger of cyberbullying affecting their lives. It's excruciating imperative for people to use the computer for only @NUM7 or @NUM8 hours a day. My final reason is, the less time you use your computer the less money you would be wasting on electricity bills and spending more time on family vacations. Dr. @DR1, from the peabody museum in @LOCATION2 begs people to use less electricity and power on the internet so the environment can slowly rebuild itself to be what it was before technology and electricity was invented. In addition, @PERCENT3 of power used in todays homes is used on computers. Also my grandmother is astounded by what todays technology is doing to the environment and the people behind this madness or electricity. @CAPS3 believes that the less time on the computer means more time on family vacations and with friends. Lastly, it's extremly imperative that people stop using computers as much to help their health their self estem and environment. A case take action to stop using computer @NUM9. Thank you for reading my paper." 5 5 10 +447 1 "Dear newspaper, In my opinion, computers definetely have a negative effect on people. People who use computers often spend less time exercising. I mean, who would give up their chatrooms and games to get in shape? I remember when i was a little girl - about @NUM1 years old, and i always wanted to be on the computer. I soon got chubby and gained about @NUM2 lbs! I quickly realized the computer is a tool used only when necessary. because it shortens activity time. A survey done by the @ORGANIZATION2 (@CAPS1) showed that @PERCENT1 of @CAPS4 between ages @NUM3 are overweight because of their computer use. Famous singer @PERSON2 says. ""I keep going and losing weight because of computers! I will gain weight and then run it off and ignore the computer for a week."" I know you might be thinking that computers dont make you obese if you use it sparingly, but research has proven that more than @NUM4 mins a day can make you gain fat. Clearly, computers are to blame for our society's weight problem. Have you ever really seen nature's beauty? People who use computers don't! I mean, people are too busy looking up things on the web that nobody can truly appreciate. the outside world. I remember when i watched the movie @CAPS2 last week, I thought to myself, ""@CAPS3, nature is amazing, why didn't I notice before?"" I already know the answer. Computer, A survey conducted by @NUM5 grade @ORGANIZATION1, @PERSON1 showed that @NUM6 out of @NUM7 @CAPS4 have never noticed the blooming flowers or the smell of fresh rain. Famous physician, @PERSON4, ""@CAPS4 that dont see nature for its true beauty often can't grow up normally. People were supposed to be naked to nature, but over the years, technology has diminished that connection."" I know you @MONTH1 that that @CAPS4 see enough of nature even with computers but more than often., @CAPS4 dont pay attention to nature. They are too busy with computers. Obviously, nature is ignored by society because of computers. Familes grow more and more detached every time a child or even adult uses a computer. I mean, every time you hit that on switch, you and the computer become attached. You can't focus on the people around you. I remember when my sister @PERSON5 was in @NUM5 grade, she never took her eyes off the computer. She would play solitore and instant message her friends all the time and she then completely disconnected with the family. A test done by @ORGANIZATION3 showed that teens will rebel @NUM9 times more than usual with the aid of a computer. Famous talk-show host, @PERSON3 says, ""@CAPS4 shouldn't use computer, they will get detached from friends and family."" I know you're thinking @CAPS4 dont get detached, but they di. Clearly @CAPS4 seperate from their friends and family because of computers. In conclusion, any far minded person can tell that computers have a negative effect on people because they consume exercise time, make @CAPS4 forget about nature, and seperate family and friends. Therefore, I urge you to not use computers!" 6 5 11 +448 1 "Computers are very enchanced pieces of machinery. With this high-@CAPS7 object comes knowledge of many different places and what is happening around the world. Next, typing is a universal way of writing that is much faster than hand-writen pieces. Lastly, @CAPS5 is a convenient and fun way to relieve stress by interacting with other users around the world. These are thousands of news sbrics, evey day of the year that do not ultimately get coverd because of limited are time on news channels. To quickly and simply get your news from around the world you can visit a website and lock at hundreds of stories at the click of a button. To add to that, you will get more in-depth news for these is no limit on room or space on the website. These will even be areas on the website to donate to the that need assistance. patrick @PERSON3, founder of the @CAPS1 @CAPS2, stated"", @CAPS4 bring in billions at dollars in aid to people who otherwise would be in deep trouble, and the main source of all of this money is from internet websites.""@CAPS3 the internet, millions of people would not even know about these people who desprately need help. Typing is a quick and fairly simple way to write, that saves people valuable time. Teaches often assign writing homework, which takes about twice as long to hand-write other than type. Using typing would save you this time and allow you to continue on with other important tasks that are needed to be completed. Furthermore, typing is a mandatory class for many freshmen and previous experience is very helpful to the teachers and students. ""@CAPS4've had many students,""says typing intruder @PERSON2, and the ones that excel not only get an 'A', but also cut there homework time in half. Stress is a common problem in all age groups, and a computer is the best way to releive @CAPS5. Interactive game with people around the world will broaden your specturm to other cultures. You way use your typingskills to talk with others, and share your opinions with them.""@CAPS5 @MONTH1 seem a shock,"" says @PERSON1 at @CAPS6 @CAPS7"", but people who use computers an hour a day are much more culturaly advanced that the others.""To add to that, you can use video chat to talk to people in foreign areas. Friends, family, and exchange students are able to talk and see you through video chat. This greatly reduces parent stay of their children living in a foreign country.Many people" 5 4 9 +449 1 Computers are good because people can find what they need and their fun ask things find places get things for a good price. 1 1 2 +450 1 "Dear Readers, I believe that spending time on the computer has its pros and cons. For the good things people are able to do research talk to people such as friends and family and also the computer can help you learn about anything you need to know about. I also think that there are some cons. People spend way to much time becomming distracted, you ignore your family without even knowing it and if you are just staring at a computer screen which can perminatly damage your eyes. I'm going to start with the good things about how computers have effects on people. The computer is great if you have to do research. If you need information on anything you can search it. Like if you have to do research on a certain project or subject the computer is the fastest way to get the information you need. Another good thing is that you have the capibility to talk to people such as friends and family. To me that is very important and I'm sure for you it is too. Thats what I believe a few of the good things are. Now, I'm going to talk about the bad things. I firmly believe that people are spending way too much time on the computer, without knowing how long has gone by! You just stare at the screen, which is not good for your eyes. It can perminatly damage them. One last thing I would like to mention, is that when you are on the computer they tend to ignore their friends and family which could be a big problem. These were just a few examples about how the computer has an effect on people." 4 3 7 +451 1 "Dear @ORGANIZATION1, I believe that people should be able to go on the computers and still be doing it. For a good reason such as communicating with far away relatives. Another reason is, if you need a @ORGANIZATION1 work-out or healthy eating tips, you can just print them out. And my last reason is if you're going on a far away trip but you don't know the way, you can just print out directions (@ORGANIZATION2). Say if you have a relative that lives all the way in @CAPS1 but you can't call them because you live all the way in the @LOCATION1 And if you call them, it'll cost you about @MONEY1 per minute. What you can do is you can contact them over the computer (webcam). And it's way better than just calling them because you can actually see them. Or if your on a business trip away from home, you can check upon your family. My second reason is, you can stay fit while being on the computer. You can look up @ORGANIZATION1 ""yoga"" poses. Or you can also do fitness lessons while watching them off of your computer. And if you're on a diet, you can look up @ORGANIZATION1 healthy recipes. You can also get @ORGANIZATION1 work-out equipment that'll make (or keep you), nice and slim. My last reason is that if you're going on a long journey away from home you need to now the way. But, what if you don't know the way? You can go on the internet and look up directions. And that is way better because at least you arent wasting money on a @MONEY2 @ORGANIZATION3. And it is more and quicker. And the best part is that you don't have to keep looking at the @ORGANIZATION3 and program stuff. With the maps on the computer, you can print it out and actually keep it. Those are all my reasons to why people should really go on computers. There are many things that a computer can do which is really good. You can communicate with relatives, stay fit/healthy while on the computer and getting maps. I hope that this opens up many peoples eyes. And maybe change a couple scientist's mind." 4 4 8 +452 1 "Should there be computers in are society. Yes, there should computer are good things and are good help. I can give you @NUM1 good reasons why. Paying bills, facebook, and research. This is why computers are good. My first reason why computers are good is because people need to pay bills its easier to pay your bills online then to do all the paper work, and it makes it faster for people and computers are really good for them thats why we need computers. My second reason why we need computers is because people have facebook. And thats a good way to talk to friends, and get new friends and its fun to have facebook and just interact with people and why computers are good in society. My thrid reason why we should have computers in are society is because research and need to get info from and an computer is really good help for that, there great help for research like an specific topic the computer has all that. In conclusion having computers is really good because of paying your bills, facebook, and research, so people need computers so I told you all good things about computers can you tell me yours!!" 4 3 7 +453 1 "Dear local newspaper, @CAPS1 has come to my attention that computers have positive and negative effects on people. In the past their have been more negative effects on people. In a survey taken in @CAPS2 magazines @CAPS1 should that @PERCENT1 of people, have negative effects with computers. Inmy opinion, I think comuters have a negative effect on people. First, people are not interacting with family and friends. @CAPS1 is very important to have interactions with people. When on the computer your not really interacting with. You just sit there staring at a screen. In a survey taken at @CAPS3 @CAPS4 @CAPS1 should that @PERCENT2 of people are on computer and not interacting with the people around them. Parents don't se etheir kids as much because they are always on the computer. Parents would love to see their kids move. Interacting with their family and friends will be healthy to them. Computers take the away fromhanging out with family and friend. Secondly, people don't get to enjoy nature. People on computer might go outside because they are involved with the computer. Stay in one room doing the thing for books for a @CAPS5 in a while people need fresh air. too but learning about nature is more nature. If you dont enjoy nature you dont know what is going on.NAture is all around us and why would you miss out on. in a survey taken in a local magazine @CAPS1 should that @PERCENT2 of people are on computer and. While people enjoy computer, nature. Lastly, people are spending too much time on their computers and less time exercising. Exercise is important for the mind and body. Our bodies need to stay healthy and fit. The lack of exercise is increasing fast. The more people get computers the people exercise. America is over weight already to join the People on computers most just long to become over weight. People rather play on computer that got exercise for a healthy body. Dr. @DR1 a local doctor, has seen more people become over weight and not exercise as much as they used to. He says computers do not provide exercise. He recommends that people use their computers less computers are doing more. In conclusion, I think computer negative effect on. My three reasons are that people are not interacting with friends and family, not enjoying nature and getting less exercise. I you to be in of negative effects on people. @CAPS1's important decision is up to you. " 4 5 9 +454 1 "Dear @CAPS1 @CAPS2 @CAPS3, To start off I would like to give my opinion on using compuers too much. Although I use a computer a lot I still have fun with friends and play sports. But to much time on the computer can cause you noth wanting to get exercise or maybe getting sick easier. Spending so much time on the computer can cause a kid to be shy in the outside life. Exerasing is very healthy for kids and adulst. there are way to many people on computers doing anything you can think of for hours. Staring at a computer screen for a long amount of time will not keep you fit or in shape. People should have a minimal amount of time of @NUM1 minutes each day and then get some exercise. this way you would get time for being on the internet and still doing what's good for you, I shouldn't feel bad about the people who waste all their time on the computer but I do. To see them getting gross and gaining weight from lack of exercise makes we want to help htem @CAPS4 one should put themselves into that kind of situation. What I've noticed about people who stay online a lot is that they get sick more often. From sitting there like lazy bums they don't get fresh-air. Not getting enough fresh-air can cause a cold or for some people with problems to get very sick. They need to think twice about what they're getting themselves into. I would rather be having fun and getting nice fresh-air then sitting on the computer about to be sick. It can be a different story if you went home sick from work/school and went on the computer. but being sick from the computer is gross. Even though to say, people who are on the computer often are shy in person. If someone gets in a fight on the internet that can cause them so much pain to not even talk. Interacting with people is very nice and touching. But being shy and lonely because of a fight on the computer or from being on it too much, is something to be ashamed of you shouldn't have to be that way because of one thing. Get out in the world and don't let things like that get to you. To this off, it would be nice for people to take care of themselves and not stay on the internet for so long. Remind yourself to have atleast @NUM1 minutes to yourself and to do waht you want but get some exercise also. Don't forget about staying healthy and going for a jog once in a while. You shouldn't focus your life on your computer. Thank you and have a great day." 4 4 8 +455 1 People are probly on the computers chating there e-mail or making a websit or they are on youtube. Maybe the person does not like to go outside and enjoy nature or spending time with there family there are probly checking out new websites and playing games or the problay on the comper to book there vactions of seeing what is on sell a welmart. They are probly looking at or buy a new truk or they are looking at the history on all the wars and how they were started. 2 2 4 +456 1 "I think computers work @CAPS4 because it helps people with there own work. but computers do make people addicted because you mostly could do anything but mostly computers were able to use for help like work, maps, friend to find ot problems like for school it helps htem with math, science, social studies and @CAPS4 of more things. But people abuse it like ther @CAPS2 games and their dont even go outside they don't talk to there friends or even see ther friends its mostly not haven a life. And people dont feel like going to school because their over and there tired and ther just want to use the computer all day with not stopping. And so i think that people are just to addicted to compulers they dont use it for the fright reasons. Had then people get sick they could get hoadaks or they feel like puking. And they dont get to see that of things like go to the @CAPS1, @CAPS2 football, soccer, @CAPS3, valleyball or even take there own dog for a walk at the @CAPS1. @CAPS4 of people buy computers for games and @CAPS4 or muture people buy computer for there work and find were places are so the computer helps @CAPS4 but it addicted @CAPS4 of people. And computers do really break @CAPS4 because people could download a game or something and then it gives it virus. So you mostly spend about @NUM1 $ or @NUM2$ as fix it. And there new computers come and its like @NUM3$ and @NUM4$ and there different just from beand and ther go aboutmore faster. And whne people's computer break some go crazy and feel like doing some cordy stuff. Ther does feel like they does friends they only stay at the room for every they never down out at all and if they do come out the room they instly dont respect there parents they do whatever they feel like doing and they they act into troubles with the . So computers do help out sometimes they dont but maybe should make different changes." 3 4 7 +457 1 "Welcome to the @DATE1. In this day in age, numerous advances in technology are being made everyday. The one advance that has stood out above the rest is the invention of the computer. For just one invention, the computer has many capabilities: @CAPS1 access for educational purposes, keeping people in touch, and opening people up to new aspects of life. The computer has helped mankind with various discoveries about our world. As far as many can see, this piece of technology has positive effects on people everywhere, everyday. The new trend in schools all around the globe is the addition of computers or a computer lab. The reason for this is that this technology takes learning to places it has never gone before. Whether a student has to write on essay about the presidency of @PERSON1 or obtain background information for a science experiment about paper towel also bency a computer can aid them in finding the information they need. Programs like @ORGANIZATION1 allow @CAPS1 to present their work in a new and efficient way. For children that don't ""school or adults that want a college education, computers let them learn what they need to from online schools. It is also important to @CAPS1 that they can keep in touch with friends after school hours. Computers are able to help them with this. How many times has it been said that communication is key to a healthy relationship? Computers, believe it or not, are on easy and way to maintain contact with far away people. Some friends and family keep in touch completely by computer. Because they don't live close enough to visit daily. If one is cautious and uses internet safety techniques they can make new friends with common interests through computers. This contact with new people is just one way that computer is croaden one's horizons. Computers are like keys; they open doors to new places and ideas. The use of this technology can old people in discovering so many new things they have never known before. Computers can help open people up to unique genres of music they have never listened to before. On the internet, there are many video tutorials that teach people different skills for free. In one's spare time, they could use a computer to research the people of @LOCATION1 or the pyramids of @LOCATION2. Any way a computer is used has the potential to have a positive effect on someone. In the @DATE1, computer are essential to evey day life. It is imperative that you decide whether you are for this remarkable pece of technology or against it. It is astounding what you could learn from just hopping on a computer. Especially keep in mind that computers are for more than just entertainment: they're for education as well. So what are you waiting for? Discover how great an impact computers can have on your life with just a click of the mouse." 5 5 10 +458 1 "Dear editor, I understand that some children and adults love going on the computer, but they dont know what the bad effects are. When your at a young age, anything can happen, while your on the computer, even worse things can happen. You could do bad things over the internet, won't exercise, or have time for your family. First of all, what I mean by bad things I mean, your child can go on bad websites, talk to strangers, or get harassed. When a child first gets, for example, a facebook account, most of the times the people who request them as a friend are unregistered child molesters and or sex offenders. They would probably act friendly to get the kid comfortable then they would end up kidnapping them. Also you could harass people or get harrassed yourself. And you can go on inapropriate websites. Secondly, you act enough generation child I go outside basically, it all kids. Lastly, your child won't have family time. Now with more technology coming out like cellphones, and laptops; kids would rather hang out with their friends and not with the families. I could understand the whole cellphone thing but you need to make more time for your family. The reason I think going on the computers all the times not good because you can do bad things by talking to strangers, harrassment, and you can go on inappropriate websites. you won't get enough exercise and you can suffer from diabetes, high and childhood obesity. Lastly, you won't have enough family times mainly because of all of the new technology that has come out such as cellphones and laptops." 4 5 9 +459 1 "Dear @ORGANIZATION1, In my opinion computers are wonderfull to the society in many ways. They can keep memories we cant keep forever like @CAPS3, @CAPS1's, and type letters. Computers also can give you dieting tips and advice from live locals. But, important of all of it, family that you miss can talk to you for hours without a phone bill. To begin, computer can give you @CAPS2 tips on things you didn't know, so it can also be a learning center. For example: your extremely stresed out because you have a huge paper to do but have no facts, there are a millions websites you could go to find your answers on. The next day you get your paper back and theres a A stamped right across it. Another @CAPS2 thing about computers is that you can talk to your family members all the way in a different city, town, state, or even content! you @MONTH1 miss them alot but you can always see them to them or type to them to let that sad feelings melt away for a little bit. Every @NUM1 in @NUM2 americans say missing or not seeing a family member is like letting a little piece of your heart fall off. Everybody knows what its like to have a memory that you could never forget: but what about those little memories that @CAPS3, websites, and written work seems to slip away from the brain. Computers save all of that so the ""I know its to its like to loose its like a little part of life that you have lived walks always"" exclaims @PERSON1 who could This is exactly why computer in many ways. I hope you are @CAPS2 for the mind, tips and family." 4 4 8 +460 1 "Dear @ORGANIZATION1 @ORGANIZATION1, Have you seen someone with a @CAPS1 emailing their co-worker or a person with their laptop at a coffee shop? Well, I can @CAPS4 I have and know they need and it benefits them. People everday use a computer for their work. Also, you can keep in touch with friends and family. Plus, it's the start to new improved future! whether you use a computer to get the latest gossip or for a job, the computer is now an important part of people's lives. My mother works on the computer everyday at her job, though it @MONTH1 not seem important to you, it is to my family, who needs the money for food and bills. Half of @LOCATION1 uses computer for jobs for money just like my family. Recently, @ORGANIZATION3, the computer company took a survey to see how many people use the company for work. A whopping amount of @PERCENT1 use the computer for work. That @PERCENT1 of people benefit from using the computer. They depend on their email to get to their boss or their layout of their statewide meeting to save so they can get the raise they deserve. You the, @ORGANIZATION1 even uses computers to write your articles for the paper. More than half of @CAPS2 or @ORGANIZATION2 benefit just from working on the computers. Everyone says family is the most important thing right? What can yo do if they live far away? Well you email, @CAPS5, @LOCATION2M, or @CAPS3 of course. Some experts @CAPS4,""People are spendiong too much time on their computers and less time exercising, enjoying nature, and interacting with family."" @CAPS5 is and was originally invented to keep in touch with family. So the experts have no reason to @CAPS4 that because people use the computer to keep in touch with families. Even people in the army use the comptuer to communicate. Using the computer isn't as bad as people think. Look out! The future is coming! New technology greater than my knowledge is coming. Computers were the start and people haven't stoped since. Sure, of course the computer has a couple downsides. But what thing or invention doesn't. No one can stop what is coming, you just have to learn to live with it and move on. Computers are the beginning to something good so don't stop something that could be even better! Next time you go outside look for that guy in the business suit emailing on the @CAPS1 or the girl in the coffee shop and smile, know they are benefitting from it. Whether it's for work or the one keeping in touch with a relative. Maybe someone with the next big idea for the future. Take a chance on the computer, stop the negativity and a pleasant surprise will come your way." 4 4 8 +461 1 "Dear The Local Newspaper, I do @CAPS1 computers effect people. But in many different ways. Also, depending on how long you are on the computer for. In my opinion @CAPS1 computers are good, for many reasons. I will tell you some of the reasons why I @CAPS1 this. Hopefully, after you read this you'll @CAPS1 about it more. One reason computers are good, is the communication. @CAPS2 are many different web sites to go on and talk to friends and family. If you had a family member far away, this could be a good way to talk to them. This also is a way to see your friends with the latest technology you can videchat. Videochat is a way to see and hear your friends by a little camera. It is a very good way to keep intouch with people you know. Another reason is that you can get a lot of information from the computer @CAPS2 are so many websites that provide answers to all your questions. Websites like @ORGANIZATION1 and @ORGANIZATION2 recommend other sites to go resaerch. You can learn a lot from computers. The information provided on the computer can really teach everyone something. Lastly, a computer can help you with many things. Such as online classes, matchmakeing, jobs, and so much more. You can find things to do, by just typing it into the computer. The economy is very bad, but you can look for jobs. Then once they find one your interested in they'll tell you. It's a very good and helpful way for you, and it's so simple. Computers are an amazing, and new technology. They keep coming up with more and more. So why not use it? It can teach you something and help you. Also, to stay in touch with family and friends. Don't take it for advantage, but use it well. It's only a click of a button. I hope I made you all realize what a computer is really @CAPS2 for. Maybe, even changed your minds or gave you a different way of thinking about computers." 4 4 8 +462 1 "Dear @CAPS1, Technology has been advancing at a rapid rate for many years now making life much easier for everyday people. It helps out in many ways for example, to keep in touch with relatives, to learn new information and to keep you safe and updated. Computers are vital to everyday life and we need them. A huge purpose of computers is to keep in touch. With new programs like ""@CAPS2"" and ""@CAPS3"" and ""@CAPS4"", it leaves you with all sorts of new opportunities to keep in touch and have fun with your friends that were not previously available. Email as well, is a great taol to keep in touch with family that are far away opposed to the good'ol letter which @MONTH1 take a web in the mail. Another huge reason why we need computers today is to be able to reaserch foreign places and learn facts that without a computer you would never even heard of. With computers, it makes it possible to go online, look up the @ORGANIZATION1, research it and plan a flight there a week later. It is also a great tool to learn new things that he did not know previusly. It is a huge step up in the education process. Computers also provide us with extreme saftey and security as well as breaking news. Imagine how much simpler it would be to be able to be at home and go on the computer to check the best rout home opposed not and consequently sitting intinse. With modern day technology all that is possible. They add great saftey and protection to average people like you and me. In conclusions, hopefully your mind has been changed on the topic of computers, or if you already were in support, that as well is great. Now you are being asked to spread the word about how great computers are and how vital they are to ensuring a better future. I understand that some people do not enjoy electronics but it is up to you to set them straight! Computer save great tools for moving ahead and we should cheer, as them, not trash them." 4 4 8 +463 1 "Dear local newspaper, I've heard that some people think that computers do not benefit society. But I belive they do. Computers help us learn information of al types. It's a good souce of entertainment. And last but not least, computers do not drasticly change the time we use exercising, enjoying nature and interacting with family and friends. Computer are a great resource in our everyday lives so why not use what we were given. Google, yahoo, @CAPS1 and @LOCATION1. What would we do without them. They help us figure out small things like quick and easy way to get rid of a stomache ache or a funny joke to tell at the office the next day while you in the staff room drinking coffe. They also help us when we want to know what to do when your newborn has a cough and a small sneeze you know the tough stuff. These are the kinds or things you need to know and not everyone go out to the library everytime you have a question. The information on the computers is endless why not use it from learning a new language for next vacation to @LOCATION2 to finding help for that geometry homework that you just can't understand, the computer can do it all. Entertainment is everlasting on computers from the skatebording dog on. Youtube that you can't stop laughing at to the @CAPS2 @CAPS3 on addictinggames.com. There will never be a dull moment. There are millions of videos and movies on youtube. There are @CAPS4 of games on the @ORGANIZATION1 alone from pacman to scrabble there's no way we'll have nothing to do. I always go on @ORGANIZATION2 to talk to family living too far to visit. Computers are one of the best soarces of entertainment, they definetly benefit society. Computers definetly do not change the way we exercise, enjoy nature or interact with family and friends. On the computer there are videos that show us new yoga move and other ways to lose those extra pounds you gained over the days. There are sites to find where to go camping and have that family vacation you have always wanted. And we always make time to go see our family and friends. Computers dont keep us hupnitized. Without a doubt computer benifit everyone's society. They re informational. The definetly entertain us all. And then don't turn us into mindless zombies so that we can't interact with other people. Computer are one of the most helpful things we have and no one should think they arn't not after reading this essay." 4 4 8 +464 1 "Dr. @DR1, The effects computers have on people and why people dont agrees that this benefits society and some people us it to be online to talk to friend and family. Whey people dont agrees to use the computer. First the computer we could use at for every thing like go to other place you want to visit. Then @CAPS1 you want to work or go to another school some you need to do it by computer. Why not try to use the computer. I know computer is a lot of money but sometime @NUM1 good to have it. @CAPS1 people are spending too much time on their computer and less time exercising, enjoying nature, and interacting with family and friends. For example some family and friends are not in the same place and they cant see each other the could write to each other online @CAPS1 they dont have cell phone of house phone. Then @CAPS1 people want to enjoy other nature that they dont know the could use the computer and look for the place. The three reson is that people could do exercising trough computer. It dont mather @CAPS1 the spend a lot of time in the computer being people could be doing a lot of thing in the computer. Like student we do a lot of projet in the computer we search for any can or thing. So people think that compute is fun for them. Finally other people that don't agrees they should try it. That the effects computers have on people and why people dont agrees and spend time online." 3 4 7 +465 1 "Computers, computers, computers. Who doesn't own them right? They teach hand eye coordination, give people to learn about faraway places and people can you actually believe some people say otherwise? I think that's pure bull !@. Computer's today help us with everyday tools, such as cars, cellphones and your everday television! Computer's also make work easier, and you interact with people! I for one think computers benefit society today, and those people who think otherwise should look into it one move step. Cellphones, cars, telephones want! There all made by mankind, but with a bit of technology. Did you know that @PERCENT1 of cars have computers biult in em? By the press of the button, all doors unlocked, by a swith the windows go down, yes, by computer. Now, how do computer's make life easier you say? Well keep reading to find out! The toothpaste, the baseball bats the pencils you we are all made by, the yoou know what! Machines, but programed with computer chips. Oh i remember when my history teacher told me that it took @NUM1 hours to make a baseball bat by a human from scratch. Now it takes like @NUM2 minutes with the help of comuters. If this isn't enough to tell you that computers benefit us, then what will?! Experts say people who use computers a lot don't get outside often to interact with family, but that's false I say! Cellphones are a everyday tool, we use them to talk with each other of long distant calls pay? Well then chat online on your own personal labtop! I hope now you believe computers do really benefit us. With there everday items we use, how they make work easier, and how it does make us interact. We use them everday, and hopefully they'll be around for the longest." 4 4 8 +466 1 "Computers have a good effect on people because they can teach people hand eye coordinating events in history and about other cultures and they are a great way to relax and just have fun. Computers teach hand eye coordinator by training your hand to go where your brain tells it to and where your eyes show it. Hand eye coordination is very important. It can help people drives it decreases reaction time and it can help people write more neatly. If it can help a driver turn his wheel faster or hit his break I think that hand eye coordination could help that driver stay out of an accident. Think of a climber trying to grab a on a mountain. He would be able to see it, grab it, and himself up quicker than before. Most people don't know things like how many soldiers were on @CAPS1 @CAPS2 or how many countries there are in the world. The internet is a great place to find out about history world other things you wan't to know A lot of americans don't know @LOCATION2 history alone world history. You can google anything you want from when the @CAPS3 @CAPS4 ended to when the @LOCATION1 collapsed in @DATE1. You can also learn either interesting and useful things like food recipes the contents in paints. Or you could just be keeping up with the need on yahoo.com. Computers are a lot of fun. You can talk with friends, listen to music, play games or do all three at the same time. That's just scratching the you miss your favorite show @TIME1? There are hundreds of websites that will let you watch it for free. Did you want to hear your favorite bands new album? You can listen to it legally and free on youtube.com playlist.com and many more websites. Between learning about other cultures and just having fun, the computer can be a great for interactive with friends and family improve hand eye coordination or learn something new." 4 5 9 +467 1 "Dear @CAPS1, Computers have many posative affects on society these days. I believe this because computers provide us with communication skills. They provide you with information and they increase your skill when it comes to technology. Read on to hear how i further explain my reasoning. First off, computers provide you with communication skills. I know that i am always finding the computer useful. It allows you access to websites that help you talk to new and dd friends. It is a fast and easy way to communicate with someone. Whether your at your house, or on the go with your laptop, you can talk to people all over the world. Secondly, computers supply you with information to write papers, newspaper articles, etc. When a teacher asks the class to with a paper about a specific topic, students can simply just go home on or type the topic in on a search . At that point they're automaticly supplied with thousands and thousands of different sources of information. I know that @PERCENT1 of the population of the @LOCATION1, prefer computer sources over book sources because computers are so much easier when it comes to finding specific information. Lastly, computers increase your skills when it comes to technology. Although some computers @MONTH1 be fairly easy to use companies are constantly trying to increase the difficulty of computers. They ar also always coming out with new software for your computer. By making computers and softwares more high tech, people the generation now is more technicly advanced than many other countries. As a whole computers have a huge impart on our countries technical skills. I believe computers have a posative affect on society. I think this because computers provide us with communication skills, they provide you with information, and they increase your skill whenit comes to technology. I hope i have made it so that we are looking at this from the same angle." 4 4 8 +468 1 "Dear Newspaper @CAPS1, I've heard reports from both the news on @CAPS2.V. and your paper that more and more people are turned in to nothing but their computers. I'm not saying it's a bad thing I mean the computer has the internet which allows you to go to anything like websites and online chatting. I just think that people should get outside more often and do some outdoor things like football, basketball, baseball or if you're an adult you could get a job that doesn'@CAPS2 require a computer like for example building houses for homless people, shelters for animals, or have a job as a maitnence man, pool lifeguard, or any other job at a hotel that doesn'@CAPS2 involve a computer. You could work at a restaurant that has regular food or fast food service. Something that does'ent involve a computer. But if you can'@CAPS2 get out of the house you could do something a little different from computers video games. They maybe similar to the computer but they are something you can do on the @CAPS2.v. and it beats playing on the computer all the time." 4 4 8 +469 1 "Computers are progressing into our lives more and more. These machines help our world become an easier place to do. work, pay bills and even entertain ourselfs. @CAPS3, these things are weighed down by the negative effects like the online dangers, increasing to reality, and the obesity problems we face. With our new advances people are spending more time sitting around than being outside, which udds more and more to obesity problem we face. Kids and teens today would much rather be on their @CAPS1 or @CAPS2 account, than go for a run or shoot some hopps. Also, more and more ads are on the web for unhealthy foods making these kids more likely to eat more junkfood. Finally, the internet fools people into believing they can go on easy diet eat. and become skinny with no worries. Along with more computers and users comes increasing dangers and threats. Viruses can hack you computer, steal you personal info and destroy you computer. You can have huge bills for things you didn't even buy! Cyber bullies are also a new and dangerous threat!. These people threaten and taught inosent people. I remember a story of a girl who took her own life because she was bullied by someone who turned out to be another girl and her mother. Finally, online predators are a great threat to teens. These people brain wash people, convince them to meet, and rape and kill them. Last but not least todays computers interaction with young minds increases ignorance with ads, and negleck of education and reading. Many kids even myself would rather be online than read a book or do homework. @CAPS3, computer can take over some people's likes, they will neglect school and other important things like homework or studing credting weaker minds for out future. Also, ads and website with false information can fall down our youth even more with ignorance and ignorant belifs. Finally, kids computer interaction can cause belites like ""you shout vote for @PERSON1 because he is black"" or other racist and ignorant statements. Computers help our advance in bettering the world and our understanding of our world, @CAPS3, certain aspects can create ignorance and danger for people yound and old, and their minds." 4 5 9 +470 1 "Dear @ORGANIZATION1, This leter I am writing to you is about how computers affect people. I am concerned about computers use in our society because people that spend too much time on the computer spend less time outdoors, exercising, and with family and friends. Let me tell you modre about it... As stated in the paragraph above, one reason I am concerned about computer use is that less time is spent outdoors.""Everyone, young or old, should get outside for some fresh air for at least @NUM1 minutes everyday,"" @PERSON2. Using the computer could limit this time, and that probably isn'@CAPS1 healthy being in the house all day. A second reason @CAPS1 worry shout over- usage of computers relates to the first reason. Too much time on the computer limits the amount of exercise you get everyday. ""People should exercise an hour a day to stay healthy,"" ssays health expert @PERSON1,"" however @PERCENT1 of people don'@CAPS1 because of computers."" this happens often especially if you are playing a fun game with many levels. You plan to play for @NUM2 minutes, but the @NUM2 minutes turns into @NUM4 minutes, which @MONTH1 even turn into an hour! I know still @MONTH1 be hard to understand why I'm concerned about using computers, @CAPS2 I have one more reason. My final reason in this letter of why I don'@CAPS1 like over using computers is that it limits the time that can be spent with family and friends. How of you can see your family and friends on the computer using a webcam. But it's not the same as spending quality time. ""Friends come and go and you and your family won'@CAPS1 live forever,"" says therapist @PERSON3"", @CAPS2 motor the best of that you have."" there won'@CAPS1 be many if you eyes are glued to the computer screen. As you can see there reasons why I am concerned about people spending time on the computer. There's less time to exercise enjoy nature and interact with family and friends. I hope you take this into concideration." 4 4 8 +471 1 I believe that computers benefit society. They make life easier. Computers allow now of communication between friends. They also teach you new things. Computers make our lives easier. They let us look things up by easier means than a person or book. It has made it simpler to type reports. Now you don't have to worry about making mistakes on a typewriters and having to type it again. A computer saves the report and shows you some mistakes to take case of your children. It allows you to from your home. Computers allow new means of communication. You can talk online with friends. Social networks such as @CAPS1 and @CAPS2 allow that. Computers allow you to converse with friends you don't normally get to see or talk to. They also make it easier and more fun to make new friends. Computers teach us new things. They teach you about places you haven't seen before. Any question you can be asked on the internet and you will get an answer. It gives you answer you don't know who to ask for. Computers also teach hand-eye coordination. You can play games online or with @CAPS3's. You need to have good hand-eye coordination in order to play these games. Computers have a positive effect on people of all ages. They make our lives easier with their technology. They allow us to communicate with our friends through social networks. Computers also teach us new things such as hand-eye coordination. All these reasons and more are why I believe that computers benefit our society. 4 4 8 +472 1 "@ORGANIZATION1, @CAPS1 technology majors support that the use of computers have a positive effect on people and I agree with them. I believe the use of computers are a necesity for social interaction, homework, research, and are a great source of entertainment on a rainy day. After a long day at school @CAPS1 teens go from the bus, to the front door, to their computer chair. In fact, @PERCENT1 of must teens do so. Odds are they're logging into facebook, myspace, formspring, @ORGANIZATION2, @CAPS2, and other socially interactive websites. With good time management I actually find these websites important. I think facebook and e-mail and @CAPS3 @CAPS4 ( @CAPS5) are a great way to be socially interactive. It's also a great way to keep in touch with long distance family or friends. I go to @DATE1 camp and have made friends I call my family. Some of them being across the ocean in @LOCATION2. Seeing as how I can't make long distance calls which would cost way too much money, facebook is a geat alternative to keep in touch. @CAPS1 of my family also live far away. For example, my aunt, uncle and cousin in @LOCATION1. My aunt just had a baby, meaning I have a new cousin which I'm not able to see in person yet so seeing pictures on facebook instead of spending money on envolopes, stamps and picture prints is really awesome @CAPS1 homework given out in school requires a computer. Three out of five homework assignments are on the computer. Whether it be taking a twenty question test to defining a word the computer is a schoolwork necesity. In school now many projects are assigned meaning we need the computer and internet. We use powerpoint and other microsoft documents whether it be typing an essay or creating a powerpoint slideshow. We need the internet for research to get the information we need, to suceed. Aside from interacting with other humans and researching and typing the computer holds many more wonders. Many people believe people are spending way too much time on the computer. While this @MONTH1 be true for some people it is not true for @CAPS1. Many people are concerned children are becoming lazy but in a recent vote @NUM1 out of @NUM2 mothers said they'd radther see their children playing and interacting on the computer then being a couch patato and watching @CAPS6. On a rainy day the computer can be a great alternative. You can slide in a @CAPS7 and watch a movie or play a game or even research something new and learn about it. @NUM3 out of @NUM2 @CAPS8 have at least two computers in the house for a reason. They're important to @CAPS1 people everyday lives. The computer is a great way to keep in touch with family and friends. You also need to computer for school almost all the time and on a rainy day its a great alternative then being lazy a watching @CAPS6 while your eyes fall asleep. I do believe computers have a positive effect on people." 6 6 12 +473 1 Dear @CAPS1 @CAPS2 @CAPS3 i think it it good and bad. The good is it teaches people about @CAPS1 places and how other people live in there soicty what they do to get food or how they raise there kids. It also help people like cops. Because the have a person there looking for they have the computer to look on. It also help cops as in a speeder they can see it her or she have done it befor. It helps teaches to get a lesson or line to teach or they will put you on line to help you with your typeing. Yes it dose have a positive effect on some people. So people think they do a lot better around the computer or they do there best work online. Like say a high school paper. Yes you can talk to other people online get @CAPS1 friends. On the other hand computers can be bad as in you meet people online you don't know who that person is or where they come from. They might have a long crimal. They might be some on want to get you in troble because of his or her family problems. Some people spend to much time on the computer because they meet some one they rally like and don't worry about what the family want to do. So people use to work out every day but now they can talk to they friend all night and all day they stop and forget about it and never start agine. Some people just stay in the and stay on the computer got playing baceball or football or going to family reunions. 3 4 7 +474 1 Do you like going on the computer? Well after you read this I don't thing you would want to. I know that the population of @ORGANIZATION1 uses the computer. If your on the computer for @NUM1 hr. yo can damiges your eye and you would have to were glass and you don't want that soemtimes it's hart to stay off of them. The internet can be for alot for things like to talk to your friends and family. And to play games. the computer is for to about diferent things one thing you can learn is the presidents other thing is your family history. Now you know what the computer can do to you. Only use computer or @NUM2 or @NUM3 mins. That is what I would do. 3 3 6 +475 1 "@ORGANIZATION1, @CAPS1 technology continues to become more and more enhanced so has the percentage of americans who use computers. @PERCENT1 of those americans, are children from the ages of @NUM1 to @NUM2. Most teens use the computer to interact with friends on social sites or spend a good chunck of their home playing online games. But what about the other teens; the ones who are constantly facing cyber bullying or are put in dangers way by talking to people they don't even know? To prevent these issues, I say we put a limit on our use of technology. Social sites, such @CAPS1 @CAPS2, @CAPS3, and facebook, have been growing at an alarming rate. More teens would rather be on the computer than outside playing tag or on a swingset. I, myself, have an @CAPS2, facebook, and @CAPS3 and it's prevented me from getting exercise becaose it's almost like i'd rather be talking to my friends than going for a jog. It bothers me, it really does, but there is one question I always risk myself; how do I stop? I've been going on runs, studying more, and spending time with my family. There's ways and reasons to stop being so attached to technology, we just don't know how to get the message spread. Other than the affects social sites and exercise has had because of computers, online gaming is also a big issue too. Many kids, not mostly boys, to what I see at school are absolutely loving online gaming. But the only people that actually benefits in life are the website owners. These games are not educational, it's not a good why to spend a couple of hours of your time. So generally it's a waste. More important things should be done during this time like studying or doing homework. Just think, you could even hangout with friends doring that time rather than sharing on a monitor. Although computer gaming is a big reason why kids go on the computer, bullying is a huge factor along with stranger danger on chats. If, you're someone who's bullied constantly at school, you think being able to go home and spend time on the computer is amazing; until bulling came along. Cyber bullying can lead to a child working themselves, getting fights at school or even worse, someone's like taken because they didn't think it was worth living. Limited computer use or parental control would really help prevent this. Computer usage has its ups and downs,but my point is safety, health, and education, one the main issues we face because of modern technology. I'd like to hear that my letter to your newspaper was read. Please get back to me with your thoughts on this issue within the next three days by email." 5 4 9 +476 1 "I think the computer dire a postive effect on people all over the world. You can do lots of things on the computer like an acidemic work, talk on the enernet, or even find out facts' about fam'us people you love, people computer. I think computer can benfit socity becuse computers can help you with your acidimic work, and can also talk to you friends online. One way i can benfit from using the computer by, typing my school work. But when in not doing my school work talking to my friends online. But the best thing of all is finding out information about famuse people like @PERSON1. I rember when is was doing a project on the computer and got a @NUM1 on it becuse i used the computer. That should prove that computers are very help full. Have you ever wondered how a computer can help you in your ever day life. If you said no i can tell you how. You can learn about diffrent places and food. Lets say i was going to make pizza and i did not know how i would have to look on the computer how to. A professor from virgin new york tech school said that with out computers the world is nothing. @PERCENT1 of people at new york tech school agreed but @PERCENT2 did not could you immagin a world with out computers. I if the world did not have computers we would not have cell phones or even t.v. Not ever on know the cell phones or computers lets face it with out computers the world would be lost like the proffser from new york tech said. Also teenagrs would be bored becuse most teenangers do not like to go out side and if we do not have computers how will adults do there work or they will have to handwrite it. Lets be honsest some adults and kids hand writing is like chicken scrach so to say. I think computer are very helpful for everyone around the world. In closing i think the hole world should keep computers becus with out computers the world is lost, to the past paper." 4 4 8 +477 1 "Dear, @ORGANIZATION1 @CAPS1 opinion is getting out of mind. They're people who are getting addicted to to @CAPS2, such as games, websites, communication and email websites and etc. Therefore, they're people who are just plain addicted to the computer, such as @CAPS3. I know people who are addicted on @CAPS3 because, they get addicted to talking to people, and looking at other people. So they dont cooperate correctly with there school work (so they get bad grades) or they loose connection with family members and friends (so they become lonely and depressed). Then thier only friend is the computer. Also other effects on the computer is if your addicted to a website (in generaal) you can get out of shape, because your not spending enough time excersing, there is already enough people in @LOCATION1 that is obesed and it is already a add on to the problem. I read online than in @LOCATION1 is obesed. So computers are a addiction waiting to happen. Therefore people need to start spending time friends and start excersing and stay away from the computer." 3 3 6 +478 1 "Computers are used everywhere, for thousands of different things. Many of @LOCATION1 spend hours glued to our computer screen everyday. Being very reliant on your computer is not always good for you. @DATE1 too many people spend countless hours on their computers, rather than doing other activities. Therefore, computers are not the best way to spend your time because you get less excersize, your school grades can lower, and your communication skills will weaken. First, when spending days on your keyboard you will have less time to run or play with your friends. In the @LOCATION1 @DATE1, many more people are becoming obese, creating unhealthy genes to be passed on. Perhaps a reason for this is that too many people can just sit on their laptops to shop, see movies, and even to get a college education. Less and less people go for walks because they would rather be on @CAPS1 or @ORGANIZATION1. Without the constant use of computers there would be more free time for people to get outside, or play sports. Secondly, many kids and teens are attached to their laptop, and bring it everywhere with them. So, rather than studying for their tests, they could be on @CAPS1 or @ORGANIZATION1. Must chose to go on @CAPS1 or @ORGANIZATION1 rather than opening their books. Plus, spending so many hours on a computer. less time to do their homework, so they just begin to not do any of it. Computers take away their time that could be used towards getting a college education, why waste them? Lastly, why talk on the phone or in person when you can just send them an e-mail or chat online with them? Many people @DATE1 are staying inside on their laptops to talk to a person rather than doing it face to face. This can cause a lack of communication skills, something that might sound good online, could sound absolutely terrible in the ""real"" world. This loss of skill, could lead to a generation of more cyber talk rather than @CAPS3. In conclusion, why spend so many hours on the computer when you could be outside, or hanging out with friends? Personally I'd prefer to go and do something rather than being stuck inside on a computer." 4 4 8 +479 1 "Dear @ORGANIZATION1, Some people are debating whether advances in technology, such as computers, are benefitial to our daily life. I think that computers are a good addition to life for a few reasons. For one, information and knowledge are at your fingertips. It takes merely seconds to know anything you want or need to. Email, @CAPS2, @CAPS1, etc. can be labeled as wasteful or dangerous. New friends can be made everyday. Lastly, there can be limits set so no more worrying about to much time spent on the computers. One of the reasons computers can be benefitial to our daily life is what it can give us. Knowledge is just seconds away. Anything you might be interested in learning is all on the web. Homework, school projects, and even work need information that isn't found anywhere else. The library is a great place to find what you're looking for, but if you're in a hurry and need what you're looking for quick, there is the online encyclopedia, world book, etc.Technology is becoming a huge part of our life today, many opinions are up in the air about it. If, there's one thing everyone can agree on, it's fast and can make daily tasks easier. Ordering clothes, books, movies, tickets for trips and more all can be done online. That's not all the computer has to offer. Friends/family are a necessary part of life, but they're not always living right around the corner. They @MONTH1 live on the other side of the state, country, even world! @CAPS2, @CAPS1, email, etc. can allow you to connect with anybody around the world at anytime. E-mail has been around longer than other websites like @CAPS2 and myspce which allow you to keep daily tabs on them. @CAPS1 or ichat allows you to instantely talk to anybody that you want. These websites can't replace being together in person, but it can help keep in touch for the meanwhile. Some are worried about spending too much time face to face with the screen, there is even something to prevent that. Time spent inside on the computer is becoming a problem. Not enough exersise or time spent outside can be unhealthy. Time limits can fix this problem. A certain amount of time can be plugged in. When there's @NUM1 minutes left, it gives you a warning. That way more time can be spent outside in the open, and less inside staring at the screen all day. Many different opinions about whether computers belong in our life have been shared. I believe they're a beneficial part of our life. They allow you information at the touch of your fingers, access to friends/family, plus there's time limits. In this day/age, the computer is something we can't live without." 5 5 10 +480 1 "Do you really think computers have a positive affect? Don't you think way to many people are on their computer to long? You want me to write an to my local newspaper about what I think on the effects they give people. I think they have a horrible effect on people. @CAPS2 people are on the computer doing something it can give them headachs, eye sales but if they were outside they would be exerssing. One of the reasons f think computers have a bad effect on people is addictions. Their are many things people @MONTH1 get addicted to life facebook, myspace, formspring. another example, @CAPS2 my sister gets home first thing. She does is go on facebook, forming and youtube. My second reason who f think computers have terrible effect is because eye damage. @CAPS2 your staring at a computer screen for so long you don't notice but your eyes are getting damage. @CAPS2 f was in sixth grade I needed glasses because I was addicted to computer for so long and my eyes got damaged. My first reason @CAPS1 I think computers have terrible effect on people is because its a waste of time. @CAPS2 your at home on the computer and it's sum out you should be outside with friends, family, or even just a talking a walk, and it's also a waste of time because @CAPS2 your on computer you could also be instead. You might think they have positive effect yes, but they damage your body. these are the reason @CAPS1 I think computers have a bad effect on people. Instead of being on the computer join a sports club. Now is the time to take action but making more clubs or activities to people. the issue is people was to much time on computer. these are my reasons @CAPS1 computers have terrible effect on people." 4 4 8 +481 1 "Dear newspaper, I have heard you are creating an article on if computers are helpful or non helpful to society. I find computers as a great addition to society because they play a big role in jobs around the country and in addition display accessible information to the @CAPS1 @CAPS8? Imagine how computers have helped shape the @ORGANIZATION1, do you want to give this blessing up? Computers have proven to be a big role in job profiles all over the world. Just think @ORGANIZATION1 a sales person for instance. Sales people need their computer to store data, like on @ORGANIZATION3. By the way a study was put into place by the @CAPS2 @CAPS3 to find out how many jobs find it neccessary to have computers, and the results showed that @PERCENT1 @ORGANIZATION1 jobs in @LOCATION1 need to use computers. Dr. @DR1, a computer programmer at to go industries, mentioned on the @CAPS2 @CAPS3 that ""computers show up sometime in everyone's life whether they like it or not, especially in jobs"". If you think about it, people that work with computers have less trouble calculatir or storing data than citizens without computers. Just think @ORGANIZATION1 computers this way a helping brain for those who work hard. Students love having access with information around the world. I bet that @PERCENT2 @ORGANIZATION1 people would agree with me, don't you think? Students around the world for example @MONTH1 need to research information for a topic in class. A @CAPS8 at @ORGANIZATION2 in @CAPS6 mentioned that, ""I prefer using the internet for research in @ORGANIZATION2. It's much more fast than looking through books, and people around the earth place opinions online instead @ORGANIZATION1 a book with a few authors."" @CAPS7 day @PERSON1 was in the library with the rest @ORGANIZATION1 his class, assigned to researching his topic in a book. He read five books and only got a half @ORGANIZATION1 a page @ORGANIZATION1 notes for his assignment. The following day he was allowed to work on the @ORGANIZATION2 computer and got three pages @ORGANIZATION1 notes. ""I was so releived to log on to the internet"", @PERSON1 reported to me. A survey was set up by the @CAPS8 foundation to see if students prefer computers over books and @PERCENT3 said yes. Do you want students @ORGANIZATION1 all ages to participate in researching on the machine they favor most? Well I dearly hope your answer benefits the children in @LOCATION1. From young students to adults, computers have become a favorite machine @ORGANIZATION1 modern day technology. Computers are a magnificent part @ORGANIZATION1 society. @MONTH1 I remind you that computers benefit many jobs in @LOCATION1 and in addition aid students by showing information about everything there is to know. I sincerely hope you share my feelings about this matter. What is your vision on computers today?" 5 5 10 +482 1 "Dear @CAPS1 of Newspaper, @CAPS2 has been brought up to concern that computers are a mence to society. On the Computers are very helpfull. If one needed directions to a place or if one wanted to know how to do something @CAPS2 would show how to. They also can help you do things like read faster and hand eye corridnation. Computers are also a good form of entertianment. Those are some of the reasons computers are helpfull. First, computers can help find out how to do things. If there is evey somewhere far to go or there are many winding roads to get there you can use the computer. On the computer there are many maps that give detialed discriptions on how to get places. Specialist say that over @PERCENT1 veiwers get to their destianation. The due to lack of driving skills. Computers also help with instructions on how to make things. If there is a cake to be made the computer will have recipies to make @CAPS2. That also can help make projects. For example They show things about @CAPS3 mythology for making a @CAPS3 pat. The computer can help you, learn langues. There is software that can teach people languages just like books execpt that they have animated teachers to help speak the languege that one got directions to go to. Reading all the didn't langues can help you with normal reading. Another reason that computers are helpful is they can help people with reading. Did you know that @NUM1 out of @NUM2 americans have trouble reading. That wouldn't happen if they had computers. Almost everything on the computer has to be read so @CAPS2 gives a lot of practices. @CAPS2 also will improve hand eye corodination. When someone something they watch the screen not their hand. Also on microcoft word to type an essay you watch the screen not your fingers typing. There are many games on the computer for improving hand eye corrdination. The last reason that computers affect people is that they are enteritaining. One the internet there are many fun games for all ages. Some games they could watch videos one youtube there are many funny videos there. As you can see computers are helpfull in many ways. They will give directionn to places or help people with reading, Computers are entertianing and fun." 5 4 9 +483 1 "Dear @CAPS1, The effects computers hace on society is a mixture of positive use and negative use. Getting tired and lazy is a negative use of the computer. When you are on the computer. When you are on the computer for more than @NUM1 minutes ayou start to get lazy and not wanting to get up. That affects a lot of people @DATE1 because there are a lot of people working on their computer for there jobs and they have to use the computer. Kids are harder because they don't want to do something other than just sitting on the computer instead of when they come back from school because they are so tired, if we limit the time they use the computer it will be better for kids, grown ups, and your brain. When adults spend a lot of time on the computer due to there jobs or checking their email, a lot of times they don't interact with their family or other people because they are on the computer I can connect with this because @CAPS4 dad is always on the computer due to his office not talking to us or even seeing is. Sometimes I wish that the world should of never invented computers because I get so frustated with them, but a lot of times we do spend family time and its good to get away from your computers beside thats what makes the money. Emailing, chating, @CAPS3, aim, @CAPS2 are all echnology communication using these communcation is helpful if somebody can't text or doesn't have a phone you can always chat them on @CAPS3 or send them an email. Email & @CAPS3 are the only @NUM2 communications I @CAPS4 dad sends use a lot of emails to @CAPS4 soccer coach about how I am not going to be at a game or I am going to a game, and he always responds. It is very easy. @CAPS3 is a good way for kids to talk to one another because some might not have phones or you don't see them at all during the school day. It's a good way to communicate without @CAPS3 or email I don't know what would happen, but I knoe it would be bad. So you see how computers have positives or negatives getting lazy, not spending enough time with friends or family and talking to friends are all positive & negative conflicts of the computer." 5 4 9 +484 1 "Although most people would say the invention of a computer is a good thing, I dissagree. There are many bad things about the invention of computers, they give access to the internet. The internet has innappriate pictures and writing, unclear identification, and games. The worst of all is that on the internet, there is always unclear indentification. Although something on a social website such as @CAPS1, or @CAPS2 might say a person is fourteen years old, @CAPS3 or @CAPS4 might be someone that had just been released from prison and is actually fourty years old. There is never a way to know if its safe to talk to other people on the internet. Games on the internet are also very bad. Games are one of the causes or obesity in america. Also, games on the internet cause kids to be drawn away from their families. Another reason of why games are bad is because you can become addicted to them, and stare at a computer screeen so long you get eye-strain. There are also innapropriate pictures and writing on the internet. There is bomb making websites and illegal music downloading websites. Overell, computers are for researching but aren't reliable in safety and cause obesity nad family aruements." 3 4 7 +485 1 "Dear @CAPS1 @CAPS2 @CAPS3, I believe that computers have a negative affect on people. Computers have caused problems where kids do not do any types of physical activity which deprives them of their daily needed exercise. Also, children spend so much time on the computer, they don't get a chance to enjoy the outdoors. Another effect computers have on kids is that @CAPS6 stops them from spending time with family and friends. I don't know how people can sit on a computer all day without moving around. First, kids don't get enough exercise because the spend too much time on a computer. We know almost everybody has a computer even I do, but @CAPS6 doesn't mean @CAPS6 has to be used @NUM1. I am a athlete and I enjoy being on the computer, but I don't use @CAPS6 every second I can. Doctors always reccomend everyone to get a least an hour of exercise everyday. Most people don't do that. They would be the kind of people who uses the computer or a different electronic a lot. That is also causing childhood obesity. If all you do is sit on the computer all day, your going to be someday. But people need to get off the computer and do something like a sport or even a game like. If you don't exercise you wont enjoy the outdoors. Second, people are not enjoying the outdoor. If somebody likes to play sports they shouldn't don't on @CAPS4 for three hours instead they invite a couple of friends to lay same basketball. Even walking home from school with a friend is a good way to be outside. People @MONTH1 think during the winter there is nothing to do. Have a snowhall fight with some friends and enjoy your selves. Nobody should feel embarrassed even if you wanted to play tag with a friend but you're @NUM2. Just get outside and do something. There are millions of things to do that isn't going on a computer. You're a kid so long that you have to enjoy your selves now before your serious with you life. Lastly when you're not outside you're not enjoying yourself with your friends or family. People are spending too much time on the computer and less with friends or family. You're not hanging out with you friend if you are chatting on @CAPS4. Is @CAPS6 so hard to tell them online ""@CAPS5 @NUM3 come @NUM3 my house."" @CAPS6 takes two seconds. Then in no time you will be hanging out with your friend. I don't understand why is @CAPS6 some embarrassing to be with your family. Mydad and I like to go and play basketball or ping pong with each other. We don't care becaue we have fun. Find something your parents like to do and see if you like @CAPS6. @CAPS6 isn't hard to say to a friend or parent, ""@CAPS5 to do something." 5 5 10 +486 1 "Dear @CAPS1, @CAPS2 much do computers affect our life? I have always thought of that question. Technology is getting up to the roof and it makes our life more easier, but have you ever thought that maybe technology might take people's work? In everyday of our live we see something new that comes out and becomes an easy tool for us. But what about us? Since technology come out people has become not the same; for example cars, by having them people doesn't walk and not even exersice, they don't spend too much time with their family and friends and lastly people miss thousands of wonderful things that happend outside. I just think that technology like computers take a whole quater of our life by mostly doing the work for us. First, have you ever, notice that people get obiese so fast? I know the answer to that question. The obesitity in @LOCATION1 is getting worst, people are getting fattier by just been in a cautch and sitting with a computer and eating, what exersise are they doing there? People doesn't exersise anymore, instead of them playing games like, soccer, volley-ball, baseball or even running, @CAPS3!! They are at the computer playing games that doesn't do anything good. I have asked people about what they think about this and this is what a woman answer, "" I htink that people doesn't think about their health, they just think to make life easier"". I agree with her; obisitty could bring you to the hospital and you don't want that. Second, have you ever asked your self about @CAPS2 much time you ever spend with friends and family? Well think of that. Maybe you got a computer because you were spending too much time outside bu not with your family, but you can see that you're probably most of the time at home since you bought your computer, but not with your family. Spending time with your family is so important because you might miss so many wonderful things. For example family parties, or just watching a show on the t.v. I just think that spending time with your family is important. Lastly, if you are a parent and you are too much in a computer, won't you feel bad if something happend with your son/daughter? In everyway we always miss wonderful things, and sometimes we loose it because of technology, you don't want that right? Imagen you are at the computer and your daughter said her first word won't you feel bad if you missed that? I would. Always give time to life because maybe one day you might hate your self for missing so many wonderful things. In conclusion, so many people have become addicted to computers, they just can't lieve it alone. Imagen that you become one of them. You becoming obise, not spending time with family and missing wonderful things that the world provides us. I hope you understand that technology is not everything in life." 4 5 9 +487 1 "Dear @CAPS1, I think some people are overreacting, its not really going to kill you. I'm not suggesting that people should stay on the computer all day. My last reason would be that nowadays everyone nos computers. Keep reading to find out about my three topics: @CAPS2 off way too many people are overreacting, I think so because people say ""you are going to miss out or you are missing out on life. Also you are still interacting with your family and friends, just not verbally (only typing). I don't know why people are so against computers, its like global warming, so many warnings and noone listens, so why will they listen to people saying that staying on a computer too long can make you fat. That was just my opinion/thoughts on that topic. Next off I am going to tell you about how a computer can't really kill you. It can't kill you because it is only a computer for one and another reason is that you can get obeast and bored because I can't stay on the computer for more than an hour because it just gives me a headache. Well that was another opinion of mine so read on to see what else I got. Now I am going to tell you how everyone has computers. The thing is computers are not the only things that cause obeisity. Every one has a computer now because I guess everyone goes on facebook, even my mom has a facebook! But theres also other websites like sexual, games and friend sites. The most used website I think is facebook. I think so because sooo many peole have it. Well this concludes my essay and now you know my opinions on how some people overreact, how its not really going to kill you and last how everyone has a computer." 4 4 8 +488 1 "Computers have little to no effect on people. In fact computers help us out a lot. They help us in find @CAPS1, medical, research and to tell weather or not you have cancer. The computers that people think of are machines that sit in a room and is used often but not for its purpose. People use it sometimes for entertainment not research. There aren't just those kind of computers. There are bigger more advanced computers that scientist use every day. @CAPS2 computers do have an effect on us, but in a good way. Most of the time those people playing games or music are kids who are bopard. They use it a little too often. I anly play with it on rainy days when I can't go outside and play. Humans use computers mainly because it makes life simpler, easier. @CAPS2, it does make life simpler, like for example instead of handwriting a report, you can type it or intead of searching everywhere in a book, you can go straight to the information. One last example is; when you want to stay updated on your favorite sport team, you don't have to go to their game you just have to go to their web site. In my opinion I say that @CAPS2, computers do have and effect on us but a good reason. I'm a sports fan so I play a lot of sports. I use the computer offer for fun and research. It dosen't have an effect on me. It dosen't effect at all because I still exercise a play with my friends very often, like everyday. There is no reason to why people can't use computers quite often. Computers don't have a positive effect sometime, but it doesn't have a negitive effect sometime either. I exercise, enjoy nature and interact with friends and family too. I also use the computer often. Experts shouldn't be concerned with people using computers too much." 4 4 8 +489 1 "Dear The @ORGANIZATION1, @CAPS1 I can see both sides of your argument, on wether computers are important. However, computers have revelotivizied they way we live our lives. Just for a moment, think what would the world be like without computers. I feel the computers one or important aspect of our lives. Computers are espicially important to students and teachers. For instance if a student needed to do a report on @LOCATION1, he could look up facts and other things on @LOCATION1, then he could condence the facts into a paragraph on a word document, and if he had a question he could email his teachers. Finaly he, could print out the finished report. All that, without having to get up and bother his parrents to go to the bookstore and pay @NUM1 on a book that he will probably read one time. Also if he had a question there would be no comunication outside of school. Anothe example of students using computers is online textbooks, which spares them of logging heavy texbooks home. Because I know computers have helped me in school and more work much easier. Secondly, @PERCENT1 of busnesses say that they use computer daily, and some agree that without computer, their busnesses would fail. Computer make busnes much easier, espically with the busness monoging and file keeping programs that are oidible. On a computer, busnesses can store customer information, comppare income, and keep stock of inventary without having a cluttered pile or file cobinet. Computers can also saave buseness money because that con cut out jobs such as record keeper. Also busnesses con save time of having meeting via web cams instead of having people drive from state to state for one meeting then do it next monet and the month after; and they coud emall impertant things such as sales projections and other things as well. Computers are also important and helpful in the home. People can do grocery shopping from the home they can order pizza online and they can go shopping online. Also, people can pay their bills online which saves paper. Lets say this, a moter, has a child! who is sick and she wants to know the to heal him, what to feel him, and what medicine to give hime. She can look all this up on the computer and bookmail the websites for next time. Then her other child comes provide, and she wants to find a health snork. She can feed him which she ca do online. Next she ways to make chicken fried rice,out she wnet know how, she can look up the recipe online. Finaly after dinner she need to cleen a stain on the carpet but it wont come out so she buys a carpet cleener from the web. Computers have just moderthy mothers day so much easier. Without computers our lives would be much harder. If we didnt have computers if the person who a report on @LOCATION1 would have failed, the sick child would have not, the hungry child would have been fed unhealthy food, and @MONTH1 would fail. coputers are an important afect of our lives." 4 5 9 +490 1 "Dear @CAPS1, @CAPS2 you know someone who lives faraway from you? Or have you ever used @ORGANIZATION1 @CAPS3? These are only a few of the techniches a computer has. Computers benefitted society greatly. It helps people @CAPS2 things such as allow people to talk to each other, goin skills from playing games, and it has images and it is easier. As I ,mentioned, computers allow us to communicate with other people. This way, we don't have to talk to people in person. it would get annoying if every time we wanted to talk to someone of three things would happen without computers. those would be either getting trouble at school, memorizing a phone number and the dialing it, or talking to than in person. Clearly, computers make it easier to talk to people. Next, computers allow us to talk to faraway friends or family. You could write an e-mail or talk to them in a chat. This helped me because I talk to one of my friends in @LOCATION1 and just recently sent an e-mail to my aunt. Without a doubt, computers make it easier for us to communicate with other people, no matter how far. Secondly, every computer that I have seen is able to play some sort of game, whether it be by a disk or on a website. These games can teach us many skills. The first skill we could learn is typing. just a few days ago, I was playing a game where you had @NUM1 seconds to type as many words as you can, as fast as you can. If you make a mistake one second decreases off of your time. It also gets harder as you go, getting from just three letter words to five letter words to even seven letter words and so on. Also, a class that at @CAPS4. information processing, is about computer. Once we were finished with our assignments, we could play type to learn @NUM2. That is also a typing game. As you can see, some games can teach us how to type. Another type of games where you need guide-thinking to be able to win. This teaches nto be ready for almost anything. Also, it teaches us to process what is around you and decide in a decision. In real-life situations you @MONTH1 only have a few seconds to react. Games such as these help in real-life situations. The last type of game is the tower defense. This shows us teenager to think like our lives depended on it. If we were to evr join the army and become some sort of captain, we would be able to organize our trops in the best mannor we could think of these tower defense games also teach us think and plan ahead. In these types of games, it costs money to bag upgrades buy @LOCATION1 towers. One decision is to either buy a weaker upgrade now or save for a stronger one in a little bit. Tower defense games make us make better decisions. Games @MONTH1 be fun, but they teach us skills too. Lastly, computer make things easier and have images on @ORGANIZATION2. One thing that a computer makes easier." 4 4 8 +491 1 "Dear, @CAPS1 Who would'nt agree that more and more people are using computers. The isusse is @CAPS2 bad or good for you. My opinion on this matter is that agree that computer are bad and people are spending. Too much time on computer. Also I agree with that because people are spending more time on computer and less time exercising, enjoying nature, and interacting with family and friend, And thats my opinion on why people spending to much time on computers. Cearly you can that people spending too much time on computer and less time exercising. I say because i rember a time when my you to spend most of his time on computers and not for school eitner he would story on for all most the whole day he would bring food up stairys and throw the plates on floor just keep eating and eating and go to sleep without doing any thing. He would do this day after day. when I go over his house it would be dirty after all those times my my to hold him to clean up he didnt after he ate I ash edition want to got for a you can @PERSON1 the of and caliores he would say no I can walk on the computer, @CAPS3 one day he became really part and the doctor said you obeased but do you think he cared no but we would try to push him ever day to exercision know he has dibietes. We told and him told him spending to much time on computers is bad for you. Another reason why spending too much time on computer is bad because you need to learn how to enjoy nature and get out scid. I rember a time when my friend would story in his house for day on a computer when I would ash him to come out sid he would say no all time, @CAPS3 one he to come out sid to get a new computer sofeware and when he opend door he got scared of the lite and run in side reason why spending to much time computers is bad for you this prove that get and play get active " 4 4 8 +492 1 "Dear Local Newspaper, I heard what you were saying about if computers are a good or bad thing. I personally think that compueters are a bad thing. Three reason for this are, kids don't get any exercise people are doing innapropirate things on them, and they could lead to giving out too much info, which could lead to injury or death. The first reason is that for the amount of time that someone uses a computer, they could be outside enjoying the nice weather well, if it is a nice day of course! I mean you have to agree with me on this one, the main reasons why people are becoming obese because of some kind of technology computers. The second reason why computers are a bad thing is because some people are doing innapropriate thing on them. If people are doing such innapropriate things on them why don't the makers of the computers block them? I don't know, I mean what kind of sicko would put those sites up even? From what I have learned in computer class, they can be used for more innapropriate things than I ever even knew of! The @CAPS1 and final reason why computer technology could be a bad thing is because some people have given too much info away on them and have gotten injured by internet world @MONTH1 look like fun and games untill someone gets hurts, well thats what my mom says! In conclusion, as you can probally see I am really not a fan of the computer. The reasons why I don't like it are kids don't get enough exercise, kids are doing innapropriate things in it, and it has been used for injury and sometimes death. These are the reasons why the computers is a bad thing, so remember these tips, take this article into consideration." 3 4 7 +493 1 "Dear @ORGANIZATION1 I belive that computers benifit society because it is a faster and easyer way to do thing such as. Communication, email helps comunicat with other people when you don't have time to talk on the phone at work or don't want to spend an hour on the phone. It is also faster than wating for them to anwer the phone and ther phone mite die. Or they wont answer and they need information fast. Another good thing about computers are looking up information like if you are going an atrip you can look up hotels find maps and plane tikets and see what the place will look like, or if you have a school project that you need to finish but you don't have time to read you go on the internet. If you have to look up a contry or a peresident or an animal or find picturs the internet has it all. Even bilding progects like plastering a wall bying a window or planting bilding a shed you can find direction and supplies you will need and the interent. Computer can even help someone at work like an arctech the can use computers to make a @NUM1 sketch of a bilding. Even for storing data like at the doctors ofice they keep you @CAPS1 in a computer. Or the goverment keeps secet @CAPS1 in computers. There ars still job like fixing computers bilding computers. This is why. I think computers are good for society becose without computers without computers same people want have a job and everything will be harder and be limited to sertan things like fast communication and work directions." 4 4 8 +494 1 "Dear Newspaper, @CAPS1 generation has grown up with the complex technology called computers. I have learned over the years of using them, that they aren't as helpful as the seem. They can cause an addiction, and create numerous distractions. First of all. many doctors say that computers cause ""the new depression."" The internet is where most of this takes place though. For most teenagers, having a facebook, myspace, or formspring is not unusual. I know from personal experiences, that some people abuse these social networks and use them as another way to bully people. So therefore, not only do you get made fun of in school, but now, people can make fun of you in cyberspace.. This is the main reason that people become socially depressed. There is almost no way to escape it and all of their anxiouty really starts to get to them. Addiction to computers is also a very negative impact. Many people go on the internet and are so fascinated that, that is how they spend their free time. About @PERCENT1 of people say that they are addicted. From @CAPS1 experience with using the internet. I know that there is always something that pulls you back in. You know that you are on addict when you spend more than an hour a day on the computer. Parents always say that it is a self-control issue but many adults have the same problem. They have just started to be able to use the computers, so many times they go through a phase or addiction. Furthermore, this addiction problem would be totaly gotten rid of it we stopped using computers. Finally, computers also create many distractions to students. When students sit down to type their papers they also, many times, have another at the same time. Therefore they are getting barely any work done. Social networks only just make this even worse. Constantly chatting with someone can cause tou to loose track of time. Also, when you try to multitask with the internet. Therefore causing grades to go down or not complete home work on time. All and all, this is an issue that can be easily avoided by eliminating computers. In conclusion, computers do not help us. They cause social depression, which cause people to have anxiouty problems. They cause addiction, which end up taking over peoples lives. They create divertion that make concentrating hard. I feel that computers have negative affects and they should be gotten rid of completely!" 4 5 9 +495 1 "Dear Local newspaper, @CAPS1 you know that every @NUM1 out of @NUM2 obese children spend @NUM3 or more hours a day on a computer? Computer @MONTH1 be fast and convient, but why of computer our country is one of the most obese countries in the world because of the ""technology"". Computers are bad for humans because they keep people from enjoying nature, keep people from spending quality time with their families, and they give people less time to excersice. First off, people can't enjoy nature. As you know, forest are being chopped down and pollution is destroying our world. People need to see how beautiful our world is if we really want to save it. Second, being on a computer makes you stay inside. People stay inside for at least 6-@NUM2 hours a day depending on your job or if you are in school. Lastly, @CAPS2, computers take away from time that should be spent with friends or family. First people will became anti-social. When being on computer for a long time, people will forget how to interact with others. With millions of people like that, our society will soon become choos. @CAPS2, some people do all of their they get obsessed and then their family @MONTH1 leave them. They will they fall into a depression. Last, computers are a waste of time, money and effort. This shows why computers are bad. Lastly, being on a computer gives you less time to exsecise and stay healthy. First of all, people will get fat. With less time to exersize, people can't burn the calories and will get obese. Then, without excersice, peoples' bobies will become more prone to diease and injury. Last but not least, people without healthcare won't be able to pay the medical bills and @MONTH1 become homeless. This is why computers are bad." 4 4 8 +496 1 "Dear Newspaper @CAPS1, @CAPS2 you like it if your children stay on the computer all the time? I wouldn't children or even adults won't spend time with family, kids will be unhealthy, and lastly they can get addicted to using the computer and computer language. Please keep reading to hear my ideas. To begin with, children or even adults won't spend as much time with their family. For example @PERCENT2 of people will stay on the computer all day and won't even worry about their kids. i remember when I read on facebook that the guy was so into a game he was playing that he didn't answer the phone when they tould him his son got hit by a car. Now, news lpaper @CAPS1, @CAPS2 you wan't your son going through what that man's son went through? I don't think so. Also, kids or adults will be unhealthy and not exercise. A study was shown and @PERCENT3 of people who use the internet don't exercise or work out. out of that @PERCENT3, @PERCENT4 are suffering from obeasity. my cousin is always on the computer and the doctor tould him to minimize how muchtime your on it because hes obeast. He weighs @NUM1 pounds due to being on the computer all the time. So tell me, newspaper @CAPS1 @CAPS2 you want your kids to be abease. Lastly, now-a-days kids are ""obsessed"" with the computer an computer. @PERCENT1 of people who use the computer use the computer language in school. And out of that @PERCENT1 put internet on their phone so they can go on myspace, facebook, ect. Now, newpaper @CAPS1, what @CAPS2 happen if you wrote computer language in your article woudn't you get fired? In conclusion, i hope you took my letter into concideration. kids or adults will be unhealthy, kiods will be too obsessed with the computer and lastly they won't spendtime with family." 4 5 9 +497 1 "Dear local newspaper, I believe that computers are effecting the lives of many people. More and more people keep getting sucked into the amazing things that computers can do and forget all about the other more important things in life. People should be exercising, and hanging out with friends and family, computers dont even teach you that much if you really think about it. People don't even realize that computers can take away very important things in life. Fore istance, people aren't getting nearly as much exercise as they need. In this generation, more kids are overweight and obese that any other other generation. People get so caught up in what they are doing on the computer that they forget to exercise each day, or at least every other day. Computers just add to list of excuses not to do anything. People already spend way to much time watching t.v. It rots your brain and studies acually show that people are less aware and less connected to the world and the people around them. Computers are the same as t.v.'s, you say that your just going to be an for a minute and then next thing you know @NUM1 hours have already gone by. Computers @MONTH1 be exercising your brain, but they're not exercing you and that's what really counts. Even if you were on the computer doing research for a school project, the computer still wouldn't help you. Most people don't have the time to run out to the library to get the books that they need, so they just resort to the computer. That isn't the smartest idea because half of the websites that you click on or go to don't even have the correct information. You might look at it and read it, and even if it sounds good to you, that doesn't mean that it's right. Next thing you know, you have a @CAPS1 or @CAPS2 on an assignment that the thought you aced. On top of getting false information, most people don't even know where to look to get the information that they're looking for. People just type what they are looking for into the google search box and press enter. Then they just click on the first link that they see and use the information that is right on the page. Then all of these different windows are popping up and you are far from where you were. People then just give up and start goofing off on the computer because they don't feel like trying to get back to that page. If people just went to the library and did research the old fashion way, then they would stop to notice all the things in life that they are missing out on. People should be focusing on family and friends rather than playing games on the computer. Sure you can talk to people on the computer but you can't bond with them or really see what they are feeling. It's better to invite them over and have some fun playing board games or just talking in person for a change. Even if your spending time with your family or friends you're probebly thinking about the computer the whole time that they are there, so go out and do something for change, a little fresh air wouldn't kill you. You should go to an amusement park, ride some rides with your cousins, do something that will keep your mind off the computer. People don't realize it, but after spending so much time with your family, rather than your computer, you will acually notice what you have been missing out on for so long. As you can see, computers aren't helping anyone. It's either not exercing, getting false information, or not spending time with your own family! Seems to me that having computers around isn't everything that it's cracked up to be." 5 4 9 +498 1 "To whom @CAPS5 @MONTH1 concern at @CAPS1 @CAPS2 @CAPS3, @CAPS4 @CAPS5's possible, imagine a world @CAPS7 computers, @CAPS1 drivers are bumping around and having difficulty watching the wheel and the road, phone bills are throughh the roof because of the whole world having no other way of communicating, and students are home worried sick that they don't have a book to study with. Computers affect all of these areas of our lives. They teach hand-eye coordination, allows us to communicate with others dozens of ways, and let students learn and stay up-dated from their very own home. Computers must stay a fundamental part of our every day. To begin, computers must remain in our community because they teach even young children hand-eye coordination. In a recent report the @ORGANIZATION2 states that in the past five years; the number of driving students who pass on their first try has almost doubled. The video games, the computer mice, and even typing the brain at a young age to work in sync with the body's arms, finger and other apend ages, ""@CAPS5's not only on the road where hand-eye counts."" says @PERSON1, head of surgery at @ORGANIZATION1 hospital. ""@CAPS6 finding that younger doctors, ones that grew up on video and computer games, can form robotics surgery with much more presision than our older atendings."" @CAPS7 the coordination we aquire from the computer many jobs @MONTH1 be out of reach, too. When saked, @NUM1 out of @NUM2 managers of local business said they would have someone who could type, over someone who couldn't. So, though you @MONTH1 think computers teach no they can coordination for the rest of a persons life. Secondly, computers should be part of homes because they allow people to communicate with others world. In a @DATE1 poll, only @PERCENT1 of @NUM3 years old had, but a recent poll says that @PERCENT2 now have e-pals. Computer have opened to communicate e-mail, @CAPS8, social networking sites, just to name a few! Parenting @CAPS9 says that parents prefer there teens to e-mail trends or @CAPS8 as aposed to talk on the phone because @CAPS5 quiets the house, the phonelines for others and keeps phone bill low. My friend once only talked online for a month and her parents encourage her because the phone decreased by a third, @CAPS5's clear that even though you @MONTH1 feel that computers take up time that could be spent with others, @CAPS5's actually a way to communicate with people everywhere. Finaly, computers can help students learn. In todays schools, students depend on homework being posted online, and getting their books over the web. Once, my brother didn't take home his book-bag for a week, and got all online. We was greatful for the strain off his back. When asked @PERCENT3 of @NUM4 graders say they use e-books at least twice a week. the internet also is a valuable research tool. @NUM5 out of @NUM2 highschoolers say they use a book for researh less than once a month. As you can see, the internet is a valuable learning tool. In conclusion, computers help as with coordination, communication and education. Computers have nothing but positive effects on people on society as a whole." 6 6 12 +499 1 "A lot of people use computers in present day. It allows family and friends to interact with eachother, research places and ideas, and lets you type a document to look neat. On the other hand, computer technology, prevents people from being active, exploring nature, and talking to family and friends in person. I want to explain to you how I feel about computers personally. I can honestly tell you that I love computers. I spend a lot of time on @CAPS3, because it lets me talk to friends I sometimes don't get to see. I can even see how my cousin in @LOCATION1 is doing. Computers also help me out with homework. For projects on a subject that I don't totally understand, I can just hop on my laptop, search what I need, and @CAPS1!, I have my information. Then after that I can type up my report and even pick out a couple of pictures to print out, see? Computer are bangin! But I can understand the other side of the issue. Computers can be time consuming. I can admit that I've spent hours at a time on the computer. This has become a problem. Experts say that people are starting to spend to much time on the computer and less time in the real world. A perfect example is my brother. He loves the @CAPS2. My mom will call him down for dinner and he'll be too engrossed in what he's doing that he will skip the meal. His friends will call him and he'll blow them off until he finishes his game. I agree that people should not spend so much time on computer. You have probably read this and thought to yourself. Well? How does she feel about it? I can honestly say, I was supposed to choose one. But here's the thing. I like my laptop. I'm addicted to @CAPS3, But, I still play sports, I talk to my family, and I even like to take walks through the words or on the beach. I neutral, like @CAPS4 from @CAPS5. Scientist say computers have positive effect on people. Some experts say they're concerned computers have a negative effect on people. @PERSON1 says they are both right. Computers are wonderful. They are one of the most growing technologies in our world. But we don't need to spend @CAPS6 of our time on them. I hope you understand my point on this issue." 4 5 9 +500 1 "Dear local news paper, I agree that technology has a positive effect on people. Just like other electronic devices, computers can help you with hand eye coordination. Plus, some people like teachers, want to get staff off the internate for their students to learn about people and places. Others just want to talk to other family or friend member in other towns, states, countries, or continents. Once you read this letter, then you will understand my reasoning. Firstly, these technology enhanced dictionaries help you with hand-eye coordination. Before the computer, people had lose success in writing quickly. They had to make short notes or short handed notation like w/ or. Nowadays people write quicker and can write full words and sentences. They never understood what they wrote they put it in full sentences. When you play computer games, it gives you even more hand-eye coordination, That was only the first three reasons. Secondly, teachers use computers to get alot of school work and get information about history and geography. like an online school book, it can get information on just about anything. It can look up when @PERSON1 was born. When the dinosaurs went extinct. Fun what the government is doing now. A computer can store what you learn too. It also has search engines that help you locate the information like @ORGANIZATION1 or @ORGANIZATION2. Statistics show that more than @PERCENT1 of people on earth use search engine to find something on the computer. On search engines they have websites, pictures, movies, maps and more. That is why people use computer for research. Have you ever fell like you don't want to travel across the @LOCATION2 just to see your relative. Well I have a solution to your problem. Computers have all sorts of stuff to can fanicate to other people. The computer mostly uses e-mail. E-mail is like a letter, but put electronically. It also has @CAPS1. It is also like a letter. If you buy a special camera that connects to your computer you can talk to them personaly. You don't even have to travel to see your relatives in @LOCATION1. That is the last reason why computers have positive effects on people. Most people use computers effectively. They get hand eye coordination. Also, the learn important facts about places and people. Plus they can talk to other people. See what I mean, computers are some and also a positive part of society." 5 5 10 +501 1 "Dear, @ORGANIZATION1 you agree with what I'm trying to tell about people use the computer more than exsersise? Well first more and more people use computers but how does it benifit them. Secondly, they are spending to much time on their computer than exercising. Finally they spend less and less time with their family and being active. First more and more people use computers but how does that benifit them. Computers is just a adicting technology that makes you lazy and slow. Does using the computer @CAPS6 you with problems your having with your family...@CAPS11! Well I know this from ex perience. My mom is always on face book and I hate it I figure she loves the computer more then @CAPS7 do you want your kids to think that about you? As the days pass by her time on the computer increase and @CAPS1 sitting there needing @CAPS6 on homework and i'm thinking @CAPS2 @CAPS3 YOU @CAPS4""@CAPS5 @CAPS6 @CAPS7 @CAPS1 @CAPS9. See i was just thiking that cause @CAPS3 I said that it's a rap for @CAPS7 but @CAPS1 just trying to say this computer went benifit anyone @CAPS11 way. Second I want to inform the @CAPS12 @CAPS13 paper is that people are spending more time on the computer than exsercising. The obeast rate has been higer than it ever been. I believe by @PERCENT1! COME ON this is @CAPS14! people come home by @CAPS15.K and other fast food @NUM1 go on the computer and eat. Over time you get bigger and your apperence change. You began to look sloppy and nobody wants you. You look back and regret doing what you did. Finally you spend less and less time with you family. This causes you grow apart from your family your kids pick up bad habbits and do the opposite of what you want them to do. This tells @CAPS7 that the computer is just @CAPS11 good at all. In conclusion I informed you on why I dislike computers. They @CAPS4'@CAPS5 benift you. Makes you lazy and keeps you from you kids. So do oyou the local @CAPS13 paper agree? " 4 4 8 +502 1 "Dear, local newspaper, Some people are starting to belive that the computers are effecting people @CAPS1 also on that side because some people would stay on it all day, get edictded to it and want do nuthing all day. First reason why computers are effecting people because some people would study on it all day some people when get homw from school or wry they go right on the computer. They would stay on from @NUM1 to @NUM2 at night on the computer and do it nthe next day. Another reasons why computer are effecting people edictded to it because there off all those freind, plus when think on the computer things final reason computer people siting computer. So those are reasons are stay on some edictded do anything." 4 3 7 +503 1 "Dear Local Newspaper, I believe that there is nothing wrong with being on the computer. The computer in my thought helps you learn about new technology stuff such as new games to help you learn or new websites. Also using computer helps you talk to people you know that maybe you haven't talk to in a while and you don't know their number. I think that having a computer makes you smart because i mean you still do other stuff besides be on the computer all day, when you are not on you are either hanging out with friends/family or you are eating or sleeping/working out or just doing something like homework. I believe using a computer is part of you healthy choices and you can lean a lot more than you really think you can. Using a computer and learning in school basically can teach you the same thing. I computer can be very health for you hands because when you are consteatly moving you hands gives them more strength and can give you stronger muscles in your hands and lower arms. Inconclusion, I believe that computers are health for you don't take anytime away from exercising time or time with friends/family/sports/sleep/ or eating. Computers are a hundred percent health for you. So i think that people should keep using their computers but just make sure they fit everything else into it each day." 4 4 8 +504 1 "Click, click, click, ""@CAPS1!"" @CAPS2 no, your computer froe, what are you going to do now? Computers have a positive effect on people because it teaches you information, you can socialize, and you can improve your skills. Without a computer, you'd be hopeless. Have you ever needed to do a research project, but don't have access to go to your local town library? No problem, @CAPS3 you have a computer at home. You could just sit down type in a few things, and get all the information you need, and more! You can research just about anything on everything, because the computer will have it. Maybe you want to learn something new, but there aren't many books on it, well there you go, the computer is your friend. Many people assume that computers are just for entertainment, to play games and have fun on your free time. What they don't know is all the research engines like google, netrekker, @LOCATION1,etc. All loaded with knowledgable information. Some people sit at home and read to become smarter, right? You can do this with computer, which would probably even be more entertaining than a boring ad book from the library. Have you ever thought to yourself ""the computer is just a way for people to get away from everyone else, and just have time to yourself?"" @CAPS3 you thought that way, you thought wrong! There are many ways to socialize with others through the computer such as e-mail, instant messaging, video chatting, etc. There are various ways to communicate with people through the computer. It is amazing technology because even @CAPS3 someone is in a different country, you can communicate with them in the click of a button. Ever heard of social networking? The name is self-explanitory. You socialize with people all across the world through a network. For example, these is myspace, facebook, twitter, tumblr, etc. That is a fun way to connect with others like relatives you have never met or that live far away, friends, friends of friends, etc. You can even be really social and meet new people, as long as your safe. You @MONTH1 be thinking at this point, that a computer is nothing more than research and socializing. Again, you thought wrong. Computers are a good way to help with your skills. For example, your hand-eye coordination. You look at the screen, type your words, look at the screen again, while clicking your mouse. That really improves your coordination. Also, your hand movement will get better. When you type, your fingers are moving all around the keyboard, creating hand muscles. Not just physical skills, but computers help with research skills. There are certain ways to research information effectively. This can help for future researching, and school purposes. Without all this, wouldn't a person be missing something? Computers play a big part in everyones lives, no matter what age they are. Computers definitly have a positive effect on people." 5 5 10 +505 1 "Do you have a computer? I'll bet @PERCENT2 of you do! You @MONTH1 spend @NUM1 hours on the computer or even @NUM2 hours! Computers in fact have many down-sides to them. You could be so invoilved that you never go outside or get excirsize. Also, sitting @NUM2 inchs from the computer screen does not help your eyes. Lastly, the internet has very inapropriot websites that kids should not be seeing. Are you a kid who spends @NUM4 to @NUM2 hours at a time on the computer? Well, if you are, it's time to get off the spinning computer chair and out for soem fresh air. Most kids spend most of their time on the computer @CAPS1 or on @CAPS2 or @CAPS3. It @MONTH1 be good for kids to interact with kids out of school but sooem kids take it way to far. They never go oitside and get any excirsize. this is not good for a growing teen. They need to be up and active. So, limit yourself time you spend on the computer. Without a doubt, computers are very bad fro youe eyesight. Unlike @CAPS4 or video games you could play a long distance away, a computer is played @NUM2-7 inches from the over time, your eyes will be so use to sitting @NUM2 inches from what your recating, that when you back up you erad at all. I knew this who played video games from about @NUM8 foot away for long period of time a day. Today, unfortunately, the kid is blind if that kid just knew the consequences of being that close to a @CAPS4 screen, he would have thought twice about it. Think twice about how close you sit from the computer. if I were to ask anyone of you what you could find on the internet @PERCENT1 of you would say, ""anything."" could there really be too much information? As a matter of fact, tehre is. You could be looking up a topic and something inapropriot, that has nothing to do with the topic comes up kids doin't need to, and shouldn't be watching or seeing these inapropriot sites. Its bad for kids, so stop it! After reading this essay, I hope you realized that computers are bad for you in various ways. As a matter of fact it's physically, mentally and socially. So, next time your on a computer, don't look at the little things, but the big picture!" 5 5 10 +506 1 "Dear local newspaper, I'm writing because I've heard that some people think that computers are very useful and some people think their know good because people spend to much time on them, I think that there are good to have because, its ways to keep in touch with friends, to research the things your curious without going to the library having to look for the book you need. The computers are good to have because they can online that they dont have as a place to walk into or if they do its . I think it good to have computers because when your younger and no more friends you @MONTH1 have been really to them but you with them. You can email each other or search thru up online, to try to get in contact with them. Also if your family member is far away and you really cant talk on the phone of the money, then you can im them so you can talk without having to spend money. I also think its good to because if there's any problem with one to get to the library you can scan it up online. Also the computer is available all the time. The computer is good for doing homework you cant then always . I also think its good to have a computer if you need something but you cant afford it, usually if you go online you can find it and buy it save money, also some they have online aren't really an actual . I think that its good to have computers but not be on them all the time, they're very helpful, for friends, school and for ." 4 3 7 +507 1 "Dear local newspaper, I strongly think that manypeople are not benefiting fromusing computers. There are so many more things people can do besides go on the computer. By using the computer, people are getting less exercise, not enjoying the nature, and not interacting with family or friends. By using the computer, people are not getting many benefits. As i mentioned, people who use computers too much are getting less exercise. By not exercising, this could really affect people's health. From recent studies by @ORGANIZATION1, @PERCENT1 of people whouse computers too much are overweight. That is an extremly high statistic! By computers affecting this many people's lives is ridiculous. This many people really shouldn't be over weight. If these people aren't getting exercise they could become addicted to the computer. If peopole are getting addicted to the computer they @MONTH1 start to do bad things with the computer. They could publish bad things go on ridiculous websites, and watch horrible things. The worst is probably watching bad things. It really puts a bad influence on everyone. Lastly, if you are on the computer too often it could affect your eyes. If you are staring at the computer all day, your eyes @MONTH1 not be used to seeing everything else. It's hard for your eyes to transfer from seeing one thing to the next. Clearly, being on the computer is bad for health. Not enjoying nature is also something that people aren't benefiting from. As you @MONTH1 know, getting freshair is good for everyone. Its always nice to smell the nice @DATE1 air after being in school all day. Many people dont do this because as soon as they get home its to the computer. These people are losi a lot of refreshment. I recently interviewed @PERSON1 she told me that, ""many people don't get to see what's on in the world because of computers."" They never take that to look at anything thats going on around them. By keeping updated. You never know what topic @MONTH1 pop up in school you could always benefit from checking on mother nature. Lastly, there are always animals that need help. Have you ever been in a situation where a stray dog needs a home i have and by helping these animals you're saving life. Many people dont have this opportunity because they are on the computer. Obviously, there are many people missing out on the beauty of nature. My last reason is hat by being on the computer you're not interacting with family or friends. In some cases, the person who is addicted to the computer is the parent. If you're a parent you need to help your family with everyday chores. I know, they can be innoying to have to do but you're helping your family and thats all you can do. Also, if you are a parent that has children they always need help. Some kids are younger and don't know how to find information for a project. But, that's why a parent is there. But, if the parent is on the computer they aren't able to fulfill this requirement. I know that my brother is always looking for help because he is younger. Lastly, family parties and computers do not mix. From past experience, when family has come over my brother has sat on the computer without even coming to say ""hello"" to anyone. I find this extremly rude. I just hope that family members don't get offened by this. Clearly, using the computers takes time away from family. In conclusion, people should have limited time on computers. By using computers people don't have enough exercise, aren't enjoying nature, and spend less time with family. Thank you for reading my opinion." 6 4 10 +508 1 "Dear @CAPS1, @CAPS2 since electricity was invented technology has developed at a rapid rate. Computers have gone from the size of a room to twelve inch flat screen monitors. In our modern day society computers are crucial tools that help organize files, do reasearch, and pleasurable online networking. Computers teach hand eye coordination, give people the ability to learn about far away places, and allow people to socialize online. Without computers wouldn't life be difficult? While routinely doing our everyday computer tasks seldom do we realize that we are writing which frequently over works nerves in the hand causing tendonitis or arthritis; typing on computers is quicker and less harmful to the hands. ""Hand eye coordination helps improve balance and athleticisniry."" said @PERSON1 the chief othopedic sergeon of @ORGANIZATION1. Some people beg to differ and believe spending not less time on the computer can contribute to lack of physical activity. There are several portible computer devices that can be brought outside to use while walking like a @CAPS3. Every since I was, ten years old I dreamed of going to @LOCATION1. Although I couldn't afford a plane ticket to @LOCATION1, I was able to use the internet to take virtual tours of the vibrant landscapes and ancient historic venues throughout the country. With the help of internet I was able to see a far away place and experience the country as if I was there. @PERSON2, the creator of an online webcom called @ORGANIZATION2. @PERSON2 created this computer system in order to allow people to connect all over the world by giving them the opportunity to see and speak to anyone they chosse to. I frequently use this program to talk to my sister at college. Through this program we can't socialize with as if she's at home and learn about her college experience." 5 4 9 +509 1 "Dear editor of local newspaper, @CAPS1 you know that the average person spends three or more hours each day on the computer? The time taken up by staring at a blank screen can be spent helping the community, exercising, or simply having fun with others. All this valuable time is wasted because of computers, spending large sums of time on a computer lessens your time with family and friends, causes health concerns, and alternately @MONTH1 became addictive. First of all, computers @MONTH1 prevent you from spending time your family and friends. Often people come home from work or school just wanting to relax, so the seek comfort from the web. However, a more relaxing activity could be playing a game with your family or going out with your friends. After all, nobody lasts forever and your time with once everyday. This precious time is taken away by computer technology, which will last longer than any human and doesn't even provide comfort when someone is down. For example, a teenager would be on the computer who is making fun of them. This does not benefit the and the bullying could lead to depression deceded with her family or friends, they could probably share a few and make everyone feel good, @CAPS2, time spent on the computer is less spent with family and perends. Secondly, computers can bad for your health, at a the eyes, and people with trouble seeing. typing a lot way the need for spending more time on the computer gives you learn time for examples and often temple you if someone finds a website they really like, they will quite went to visit it often, perhaps even multiple times a day! Along with websites, @CAPS3 games and networks are also very popular and addictive. Computer addiction can lead to health problems (as talled about before) and withdrawal symptons when you try to stop. It's very important that people stop spending a lot of time on the computer to make sure an addiction is prevented before it can even start. In conclusion, computer technology is hurting the human race and could be preventing greater things to be happening in individual's lives. There is less time to do things with your loved ones, more negative impacts on your a rising number of computer addicts because of our modern technology. However, all there, could be prevented if people simply spent less time on the computer." 6 5 11 +510 1 "Dear, @CAPS1 Computers do have positive effects but the negative effects are much worse than the positive effects. @CAPS2 bulling happens everyday. Not only that but when there is a computer around kids aren't going to be exercising. Those machines also damage the eyesight of humans @CAPS2 bulling is the worst effect of computers. This form of bulling has happened to many and we have lost many to it. @CAPS2 bulling happens to @NUM1 out of every @NUM2 kids. @CAPS2 bulling is a disease and it has to be stopped, kids have commited suicide because of it. Not only that but the life of kids have been threatened and taken by it. Without computers this disease would be stopped. Childhood obeasity is a big problem in @LOCATION1 and part of the reason is because of computers. Kids shouldn't be on the computer, they should be outside running around with their friends. Computers are an addiction that kids can't break. computers aren't just bad for kids, their bad for adults too. Computer screens are harmful to the eyes if you stare at one for too long. Your sight is very important to living. Sight is, most of the time your most important sense. Now you see why computers don't benefit society. Online, people are harrased to the extreme. The bright computers screens are harmful to the delicate human eyes. Kids should be exercising outside not siting at home on the computer. Everyone should pull the plug on their computers for good and never turn them back on." 4 3 7 +511 1 "Dear Newspaper, I think a computer is not something bad for you. A computer can help you do many things @CAPS1 could help you learn, chat with friends, and @CAPS1 can entertain you. A computer can get you sucessful in life @CAPS1 helps you learn a lot of things such as computer engineering. Computer engineering is a job that pays you good money to fix computers. @CAPS1 is very challenging at first, but when you look @CAPS1 up on search websites you'll find all your answers. Chatting is the number one thing kids, adults , and teenagers do. @CAPS1 is good and bad in a way, @CAPS1 is good because because your phone bill wont be that high up so you save minutes. @CAPS1 is bad because @CAPS1 can also ruin your eyes just remeber dont get to close to the screen. The computer is all about fun, you have millions of websites you can go on. To have fun for example @CAPS2.com, @LOCATION1, and @CAPS3.com those are the three main ones I go on they are so fun. They have tons of games for kids and for adults too. I Have proven my point that computers are not bad for you because they can help you learn, they lower your phone bill, and its also very fun. Yes I know they might take exercise time away, or hurt your eyes but who cares just make up a time limit so you have time to exercise. Do not get to close to the screen because @CAPS1 can hurt your eyes." 4 4 8 +512 1 Dear People Computers are not a really good thing because @CAPS1 you think about it you never want to get off allways chating or social networking you can allways find something to do but you are wasting your time on the computer you can do anything you want but I think to much is a waste of time. @CAPS1 you have kids you would not spend time with them you can help your kids with there homework eat with them watch t.v spend time relax but some people like laydys with kids go online and never get off you have to have time with your kids so they dont have bad habbits so they dont stay out to late. You have to have time for your self clean the house cook food for your husband go out shopping take your kids out to the mall just enjoy your life computer gives nothing to us just gets us layzy. @CAPS1 you work you have to think about your work maybe hang out with your friends dont be on the computer for @NUM1 you can do other stuff call your friends over or go shoping do cleaning in your house computer does not give us anything its just waste of time @CAPS1 you social network.... There is good thing about computers you can find anything you need look at stuff talk to family from far away. @CAPS1 you use it in good ways its a good thing but @CAPS1 you never log off faccebook or other stuff its not good to stay on. You can just go to the beach or go to the gym you have lots of stuff to do other then going online and sitting for hours. Just try not to go online and just go out and go somewhere insted... 4 4 8 +513 1 "Dear Newspaper @CAPS1, I am writing this letter on behalf of all the busy people in our country. We have come to the conclusion that we need, not want, but need computers in our life. First, we need them to communicate to other people. Second, we need computers to do research for school and work. Lastly, us kids need computers to type essays, prompts, or papers for each class. Communication is very important in everyday life. For instance, I have a grandma that lives in @LOCATION1. I only get to see her once or twice a year in person. Throughout the entire year, I video chat with her through @CAPS3 computer because it is a whole lot easier than flying there. Without computers to video chat with @CAPS3 grandma, I have no communication with her they one or two times a year. Using a computer for communication is extremly helpful it allows you to do so many things without travelling for, like video chatting. Another reason why computers are a neccessity in our is because reseach for and easier. Many kids nowadays have so much homework and spend on the internet. For I myself, that I. The internet is a quick way to get the reseach. Plus, the research I have found is just as accurate as a book from a library. Computers are absolutly needed when kids have a load of homework and projects that need to be researched. Thinks when the time a to, kids have to type up essays and prompts that its unimaginable. Just in the @DATE1 I had to type on english, essay and a fluently paragraph. Final grade @CAPS2 I did not type it, on a computer. Typing things on the computer cames out of school also, whole @CAPS3 dad is frequently typing up and he is also typing up essays for his company. Many things nowadays in order to be perfect, have to be written up on the computer or you will not get the result you were hoping for. In conclusion, computers are modern devices and you are going to have to live with it. Computers provide great communication with everyone around or even across the country. Also, they make research for school become a lot more efficent. Finally, computers type papers and essays up faster. Computers are a neccessity for living." 4 4 8 +514 1 "Dear @CAPS1, People are using too much @ORGANIZATION1 their time on the computer. Instead @ORGANIZATION1 seeing the @ORGANIZATION1 through their own eyes they are seeing it on videos or in @CAPS2 on the internet. It isn't natural for people to be internet fanatics. Earth is a beautiful planet, it has trees, mountain, seas, and humas. We creators the internet and people love it more man the rock they're standing on. The planet should be explored not surfed in the web. People should see the @ORGANIZATION1 before all natural hand is coverd by cities and factories. People use the internet way to much for plans, for business, for entertainment, for a social life! all @ORGANIZATION1 this has been done with ease before we could even on a light bulb. Life is a gift and people spend it on artifitial life. For example a game, @ORGANIZATION1 is one @ORGANIZATION1 the most popular addictive games ever made. In this game you make a character in a miderth planet while you battle m onster with other players. Some people think that game is funner than life (personaly I think it is) but is not their life. His just a fantasy for people to escape thier meaningless lives. I write this for suport that some day people will understand that this is life. So, live it." 4 4 8 +515 1 "Dear, local newpaper @CAPS1 it's true technology is blinding everyone. More and more people are being sucked into electronics and less people are caring about our planet. Their are so many great things out there that could be put at risk. People @MONTH1 say that if you spend allot of time on the computer they would be able to find cure's for the deseases out there. Those are just lies to stay lasy and waste their life on the computer. What is going to happen to all of the sports in the world. The players are going to get old and they will retire and if no one is going to take their place then the games would be cancled. I am a big fan of football and I don't want to see it ge cancled. Some of my friends are saying they are addicted to the computer and I always hope they get out of that habit because what's going to happen when they get older they are going to need a @CAPS2. If they stay addicted they won't want a @CAPS2 and they what they won't have money, they can't pay bills, and they would lose their house. Why do people say they could find cures for things by looking on the computer we all know that's not true. They need to learn about them first not by just looking on the computer. They @MONTH1 not want to but they would have to look in books and do some heavey thinking before they can find the cures. I hope the ways of life change really fast because things can get really bad. If we do stop this way of life then things could get better and then our planet @CAPS3 will stay around longer and we could make the a better place." 4 4 8 +516 1 "Dear @CAPS1 @CAPS2, I have recently heard about the debate on whether or not computers are used too often. Computers can be unhealthy, I think that generally they're helpful. They give us many oportunities that wouldn't exist without them. I'll describe more of what I mean in the following letter. First, I'll explain one of the advantages of computers. Studying and school work. Computers can provide people with ways to research things. For students, it @MONTH1 be something like research for a project of essay. For adults it could be information on starting a business. In both of those cases, computers were used to get information in a simpler way then perhaps visiting a library, I, personally, know of a website called @LOCATION1, where teachers can set up online tests for students. This would not be possible without computers. Computer online courses can even taken, where a student can be taugh through the internet, rather than in person. This can be an advantage to someone that can't always get to classes. I would also like to mention that computers provide a popular form of communication. E-mail and I @CAPS3. These methods of communication have become extreamly popular recently, and I myself use both. I think for some people it can be bad because it prevents them from interacting with the real world. But in general I think it's helpful. It also gives parents and teachers another way to communicate. These are just some of the many ways computers are helpful. Lastly, I'd just like to talk about how computers can benefit adults specifically. I know that many people pay their bills online. This is becaus if you think about it, isn't it a hassle to have to mail your bills every month? Computers greatly reduce that hassle. They can also make it easier to buy things you need, look for jobs, and many other things. Without computers, things like looking for jobs would require a lot more work than they do with them. These, again, are only some of the hundreds, if not thousands of ways which computers are helpful. In conclusion, I think I've made my point very clear. Any thing in moderation is okay. People that argue that computers are unhealthy speak of those who use computers too much. Generally this is not the case. Usually computers can do much more good than bad, and can make a persons life much easier. They help very much with education, and even that alone I think should be enough to convince you that computers are helpful. But as I said, I hope I made my point clear, and I hope you agree with me." 4 4 8 +517 1 "Dear local newspaper, Computers are fairly new, everone has one everone wants one! There are so many great things they can be used for. But are they getting used to much? As a student and a teenager I know I am using mine way more than I need to. Sure they are fun, and sure their very usefull but they are time consuming. You @MONTH1 be doing work or chatting with a friend, but your also just sitting their. Being on the computer taks away from lots of exercising or doing other activits. I am deffintly not saying to stop using your computer totally, becasue they are agreat inveshion. But why sit on a computer chatting to a friend that lives right down the street, when you could be outside, playing a game of kickball or something fun. It would be a good idea just to chat on line with the friends or family thay live far from you like in other states. Another time that I would say to use your computer is when doing some work, projects or homework. Or even if your job involves doing research. Computers are a great tool to use. But most people aboose that privilage and go one other websites that have nothing to do with there reserech. So if you need a computer for school or work stay on task! That way you get what you need done. If you are a student or have a job which is the comon day person it's hard not to use the computer. There are so many helpful things to use it for. But that doesn't mean you need to be on it all day and night. Take about @NUM1 minutes to an hour of your day talk to those people you never get to see, do your reach. Then get up and enjoy nature. You don't need more then an hour. I stronly agree with the experts people are spending way to much time on there cumputers. Use it to befit you, and to help you not to kemp you from getting bord. Don't abuse the fact you have enter-net if you need resherech get that done stay on task. Rember an hour a day is more than enough! So get off your computers go out side and stay fit!" 4 4 8 +518 1 "Dear local newspaper, More and more people are using computers there days. Some people think computers are an improvements to society. Others are concerned that people spent too much time on computers and not enough time exercising and spending time with friends and family. I believe that computers can be a bad thing. I think this because some people spend to much time on them,, it's one of the leading causes of obesity, and it interfers with people social lifes. According to recent studys, about @NUM1 out of @NUM2 people spend most of their time on their computers. Many ot these people spend their time on online games and socializing websites such as facebook and myspace. Others spend it shopping or learning. Some of the online games include world of warcraft, rune scope, and many @CAPS1's @CAPS2 @CAPS3 @CAPS4 games. Many people who spend most of their time on the computer are or @MONTH1 became obese. According to @PERSON1, spending alot of time on computer is one of the main reasons for obesity. Many experts agree that computers are the learning cause of obesity. between @DATE1 and @DATE2 more people have been using their computers more often. The obesity rate has increased between then too. Most of the people who spend alot of time on the computer don't interact with their friend and family much. This can lead to ruined relationships, loss of friends and the chance of losing your love with family. Many experts, such as @PERSON2, say that a person can become depressed from not interacting with friends and family. He also says some of the people who became depressed start thinking of suicide. Spending too much time on the computer is a bad thing would you want to spend too much time on the computer even ater hearing the cons of it? I believe spending too much time on the computer is bad for everyone." 4 4 8 +519 1 "Dear Readers, Computers have a large presence in the world today. Most people in the @LOCATION1 have at least one and the number grows still. These computers are bad for people. They cost a lot of money cause people to stop exercising and become unhealthy, and teach children that things come easy in life. Computers cost a lot of money. Between buying one, purchasing hardware and protection, and paying for maintanence, they are very expensive. Dr. @PERSON2, a computer science expert, claims, ""The average computer costs @MONEY1. There is then hardware that needs to be bought and replaced, along with antivirus programs and other protection. Now we could be talking about @MONEY2 at the very least. With yearly maintanence costing about @MONEY3 per year, you can see how expensive these machines really are."" @CAPS1 out of every ten computer owners in a recent survey stated that they had to service their computers within the last three months. Thats a lot of many going toward fixing computers. But computers don't just cause money problems, there are health issues too. Computers take a lot of time away from people. When a computer is used, the user doesn't move around or exercise. Computers are making people unhealthy. The obesity number in the @LOCATION1 has skyrocketed, but it's not just food, Some experts are now contributing computer use to lack of exercise, and therefore, obesity. Dr. @DR1 @CAPS2 says, ""@CAPS3 matter what you're doing on a computer, be it games or education, you would be better off outside, moving around, getting exercise. A recent study shows that @NUM1 out of @NUM2 families who purchased a computer in the last year have halved their exercise and play time. There are health problems created by computers, but they also teach the next generation that things come very easily. Computers are an excellent source of knowledge, but that could be a problem. It is a quite easy to find something out, or research a topic using a computer. Before computers became popular, people had to work and look for @CAPS4. Now that it is so easy, children @MONTH1 begin to think things come easily in life. @PERSON1, a pediatric psycologist, says, ""The mind of a child works in a such a way, that most things they encounter are absorted and become normal. If a child becomes use to the ease of searching an item on a computer, he will expect all things to be equally simple. If they are not he @MONTH1 become frustated and not be able to do what is needed."" @NUM3 out of @NUM4 poll takers agree that finding @CAPS4 on the computer is quite easy. What are the children of the world being taught? Life is easy, a false statement. Computer use is a growing problem. It costs ridiculous amounts of money, causes health problmes, and poisons the minds of children to believe that life is an easy thing. Computers are bad for the people of the world, they take our money, our health and the minds of our children." 6 6 12 +520 1 "Dear newspaper, I think computers are good for you because talk online, teach hand eye coordination, and other stuff too. One reason @CAPS9 he helps you with your hand eye coordination for example teach you how you look while typing. @CAPS3 we dont learn hand eye coordination we won't know how to do other stuff that @CAPS9 hand eye coordination. The second reason @CAPS9 @CAPS1 you have a webcam you can use @CAPS1 for example when a family member @CAPS9 living in a different state you can see their face and talk to them like you do in person. The last reason @CAPS9 searching the web because @CAPS3 you want to get @CAPS4 ticits for a trip look online. @CAPS1's the best way to get them. researcher say @NUM1 out of @NUM2 people say getting online @CAPS9 the best way because you can see when the @CAPS4 take off, when the next @CAPS4 also when to come back home. All in all I say that compuetrs are a good thing because they help with you hand eye coordination also. @CAPS3 you have a web cam you can see family members from different states and see the face and talk to them like you are talking In person. The last thing @CAPS9 searching the web for @CAPS4 tickets @CAPS3 you want to go somewhere far a way go online and see when the @CAPS4 and comes back because researchers says that @NUM1 out of @NUM2 People say that getting online for @CAPS4 ticket @CAPS9 the best way to get them. Ask your self woild you like to have the web to seach or not?" 3 3 6 +521 1 "I believe that people should enjoy nature more than computes. I say this because computers can sometimes get addicting. The people who are addicted will only know about stuf on the internet. people need exersise. They will not get exursise by sitting in front of an computer all day. Computers are addicting. The people who spent most of their time on the computer are the people who are addicted. When they get addicted they will probly fail in school because they do not do their homework. Don't you hate it when you feel week and tierd? Well that is how the people who sit at computers all day feel like alot! @CAPS1 people whant to stay healthy then they should get some exersise daily insted of sitting in front of a computer all day. Alot of people get annoyed when they dont know about stuff when it happens. Most of the people who do that are the people who are mostly on the computers. I say that because the people who are mostly on the computers only know about things when it is on the computer. That is why I strongly believe that people spend to much time on computers rather than. This is because firstly computers get addicting, secondly people need exersise @CAPS1 they want to be and stay healthy lastly @CAPS1 people like to know things the only way they will find out is on the computer" 3 4 7 +522 1 "Dear Local Newspaper, I have herad that you guys are deciding whether or not computers have a negative or positive impact on the society. In my opinion, I believe computers have a very negative impact not only to adults but mostly to students too. Computers in general can be distracting, very dangerous, and give people less time to excercise. Computers in total do not have a bad impact on people. Some people say computers are not distracting, well I say they are. Computers have varies websites such as @CAPS1 and @CAPS2 which can distract people from studying or even doing their homework. @CAPS1 and @CAPS2 are websites where you can chat with friends and see peoples pictures. These websites can be very interupptive when trying to do something important. For example, I am one of the biggest slackers when it comes to doing homework or studying. If I had to choose between doing homework or chatting on @CAPS1, I would choose @CAPS1. But if you actually think about, are these websites benefitting anybody. Homework and studying can actually benefit you in doing better can benefit you in your studies and ferther on in your life. In total, I believe computers are a big distarction. When people go on the computer they go on without worrying a little bit. They don't know the danger behind it. These dangerous computer have people on it called online predators. Online predators sit on the computers basically all day trying to harm others. One website in specific that I herad was very harmful is myspace. This website is even more dangerous then @CAPS1 or @CAPS2. Myspace is like @CAPS1 in a way but very dangerous. For instance, my mom told me that one of her friends daughter had a myspace and became friends with a guy she didn't know. Of course she didn't worry because according to her he seemed a nice guy so she gave him her number. Good thing her mom saw it, otherwise something bad would happend. He ended up being an online predator. Lastly, computer can make people unhealthy. People who stare on computers non-stop can make them not exercise. For example, not playing sports such as soccer, vollyball, and tennis. This is very unhealthy for people in our society because they can become obese and unhealthy. This is why computers can make you not exercise. In conclusion, computers can have a very negative effect on people. It can be very distracting, dangerous, and unhealthy for not exercising. In total, computers cannot have a bad impact on people." 5 4 9 +523 1 "Dear @CAPS1, I - like many other people my age - love to sit in front of a computer and explore it's wonders. But that does not mean that I spend my whole life on it like others. So I can see what too much computer time can do. It has made kids my age more aggressive, have health problems, and care even less about the environment. More and more kids are falling into those traps. Too much computer time can make even the nicest person extremely aggressive. I know from past experience that when you bother people when they are on their obsession, they will snap at you, yell, or even start swearing at you, or maybe get violent. If someone stays up to late on the computer, the next day could mean that they're cranky from the lack of sleep. This aggression @MONTH1 cause others to get aggressive in response, which @MONTH1 lead to a verbal or physical fight, which (hopefully) nobody wants. Another issue too much computer time can cause, @CAPS1, are even more health issues. Staying inside all day will keep people from getting the neccessary amount of vitamin @CAPS3 they need which is a vital nutricious vitamin that comes from the sun itself. Not getting enough vitamin @CAPS3 throughout a person's childhood can result in getting an illness called @CAPS5 later in life, which never truly goes away and hinders people from doing the things they love. Too much computer time also means people aren't getting enough exercise, and with the way we eat now, those two things can add up to making a person obeie. Others who do not want to get the proper amount of exercise or eat right and at the same time do not want to become obeisce, @MONTH1 to anorexia. Neither or these weight problems are very good for you, proving my point about the health issues of too much computer time. The issue I will have you read @CAPS1, is how people will become even less caring of the environment. Some of the big technology companies side-step around environmental protection laws to find cheaper ways to make their products and the thing is, no one cares! No one cares so long as they get their newer and better piece of technology. Everyone will just keep protecting these companies to get what they want to satisfy the craving for more computers. Now, I'm not saying that having any computer time is bad. I'm just trying to prove that too much is bad for you. That with too much computer time, people can become more aggresive, have health issues, and become even less caring of the environment. Therefore I urge you @CAPS1 to write an article in the newspaper about the effects of too much computer time, to make it known to everyone in the city. It might help us make a better future." 5 5 10 +524 1 "@ORGANIZATION1, @DATE1, people are using computers more often. Some people do not agree that computers are good. I think computers are good though. They help you learn more, they are like @CAPS1 @CAPS2 and when you bored you can go on the internet. People nowadays are becoming smarter and smarter. One of the causes is the internet. The internet is like a big book. It holds tons of great information. There's probly information on the internet that probly no one knows, until they read it. Plus the fact that the internet is quick & easy. Also, the internet keeps you up to date on things going on in the world. Without the internet. We would be nowhere. Surveys show that @NUM1 out of @NUM2 students use the internet for information or projects for school. Also, on the internet you can buy things you can't but in stores. Going to the library is a pain. You have to pay for the gas plus you have to drag yourself out of the house to get in the car to go to the library. What if you don't have a library near you? then what will you do? you could go on the internet. Plus, with @CAPS2, people could look for a book all day, not find it and find out that someone else has it. What a pain. There are some people like collage people, Who don't have cars. So how the sapposed to get to the library? Studies show that @PERCENT1 of @CAPS3 don't have cars. When you get bored, what do you do? eat? sleep? Lay on the floor staring at the celing? No. You go on the computer. The internet has all sorts of fun games and websites. It also helps you make new friends. The internet is also a good way to stay in contact with close friend or relative. Also, if you are a photographer, then you can sell & share you photographs online you can also advertise you company or buisness. @NUM3 out @NUM4 @CAPS3 either have no backyard or have nothing better to do. I think that the internet is great. You can learn all sorts of information you don't have to go to a library and you can play games when you get bored. Isn't the internet great?" 4 4 8 +525 1 "Dear Local Newspaper, I feel that computers are very beneficial to our society. They are very helpful when it comes to homework, you can talk to people online and you can make plans/ without even leaving your house. First of all, computers help us a great deal with homework. Many kids are adamant about it, but with the help of a computer, they will be more willing to get it done. For example, when I have a difficult science/social studies assignment, I can research it on the computer. Also, @CAPS1 I have a just coming up and I left my textbook at school, I can just study on my computer. So, as a result, computers are very helpful with homework and studying. Secondly, computers make it very easy to communicate with others. For example, talking on the phone costs money, and why would you money when you could text, chat voice for free? Also, many people use e-mail because its very easy and you can send documents to others. Lets say, that I had a work document on yearly company profits and I needed to got it to my boss. No problem, I just it to an email and I don't have to drive. Finally, my last point, computers make it very easy to make plans or connections. I know that @NUM1 out of @NUM2 people love to travel, but you need plane tickets. Just go to the website and do it online. Its fast, easy and safe. Also, @CAPS1 you needed to make reservations for something, like a hotel, you just have to go online, pick a date and when you arrive your room will be ready. I can see how this would be very beneficial to traveling business men who might need a room for the night. In conclusion, computers play a huge roll in the world because they can help with homework, its easy to communicate, and you can make /reservations without even leaving your house. And the best part about them is that they are fun and easy to use!" 5 4 9 +526 1 "Dear Local newspaper, @CAPS1 to this article more and more people use computers, and the people who support advances in technology believe computers have a posotive effect on people. I disagree on you part. I believe that computers can ruin your life, and make you go blind. Firstly, computers can ruind your life if. you stay on them for too long. Computers is a little device that can almost let you do anything on it. The computer can let you look ups where your friends live, you can play tons of games ect. I remember this one time when I was watching channel @NUM1 news and a @NUM2 years kid fainted from playing a computer game for too long. See, I told you that they can ruin your life all it takes is a couple of hours to like the computer. Secondly, computers can make you go blind because the screen of the computer is too close. The computer is built so you can do things on it, but unfortunatly the screen was screwed in too close so when you have to see something on your computer you literly have to stick your face on top of the screen. I remember one time when my dad bought a @ORGANIZATION1, my dad was on that computer all day and when he got off it his eyes were blood shot, the mont after that he got glasses. See, I told you stickig you face too close to a computer screen can hurt your eyes. In conclusion, the computer can ruin your life and can make you go blind. The computer is bad for you, so you should stop and think about what I wrote in this persuasive letter." 3 4 7 +527 1 "@DATE1 @CAPS1 The @CAPS2, I believe that computers in today's society have a possitve affect on people. I believe this because if people use it for education purposes to chat, email, or to reasearch it does make a difference in peoples lives. If you use the computer for educational purposes like games, you could really learn a lot. For example, I help my sister with her multiplication on a math game we have. Also, I learned to type with type to learn @CAPS3. on my desktop computer at home. Many other people use it for these reasons too. They also might use it for typing a project or making a presentation. Others might only use it for chat and e-mail. These things can still benefit our society though. Using the computer for chat, such as, facebook, myspace, and twitter can also benefit our society today. These websites benefit us because we can meet new people, catch up with old friends, or even talk with carrent friends. also on @ORGANIZATION2, @ORGANIZATION1, or @ORGANIZATION3 we can e-mail people instead of instant messaging them. For example, if you have something really big to say to someone you might want to write on email. If you just want to say hello you could use facebook, myspace, or twitter if you have an account. Computers do benefit our society today. All of the reasons in my letter support my position on wether or not computers benefit our society." 4 4 8 +528 1 "Dear newspaper editor, I think computer are a benefit to everyone. My first reason why I think computers are abenefit is because if you don't know about somthing and you wana learn more about it, you can just go on the computer and do some research on it. The best part is you can research anything even if its like a million miles away. The internet has imformation on anything and every thing. my second reason why, is because if you have a webcam and some of your relatives live very far away you can see them when ever you want. Its not just webcam either you can also go on facebook and other sites like that to talk to family and friends and see pictures of one another. my last and final reason is that you can do almost anything on a computer. Their software on them to write, do projects, and plan things oct. plus most of the modern day society uses computers for stores and business's to keep track of things. Well thats why I think computers benefit us. I told you why I thought they did and how." 3 3 6 +529 1 "Dear @CAPS1 @CAPS2 @CAPS3, I agree that the effects computers have on people can be very negative to people, but they should realize what they are doing to themselfs and what they can get themselves into. Starting with people are on the computers more then they are using the phone, this takes effects on people sitting around on their computers and not cleaning their homes and taking care of their homes; but instead they are on the laptops or desktops. Secondly parents and childrens spend most of they time on websites to talk with their friends for example webcam and aim, this takes affect people because they can go on the phone or meet them up some place. In conclusion, people, but mostly teenagers and a little bit of adults up to ages @NUM1 to @NUM2 like to go on different websites sum as myspace.com, facebook.com, formspring.com, and more this constart rumors and can end up in bad or goods situations this can be a horrified effection on these people that do this very often. Some people and mostly teens, and that can be caused it will always be a he say she say, this is why people should log off immediantly. Most importantly people should become aware of themselves or people they might know or might know, knowing this putting into negative situations @MONTH1 at them in harm." 3 4 7 +530 1 "Dear @CAPS1 @CAPS2, I have a very strong belief that children and adults are spending far away too much time the computer. Please consider the following that computers have a negative effect on people. Furthermore, @PERCENT1 of parents agree with experts that @CAPS3 spend way too much time on the computer but less time with friends. @CAPS11 I was little I rarely ever went on the computer. But now my parents have to consult me to leave the computer multiple times. Ever since teens have joined @CAPS7, myspace, and twitter, they are addicted to it and can't stop going on it to @CAPS6 what their friends are posting. Physcologist @PERSON2 states, ""@CAPS3 who are on the internet for multiple hours a day, can't concentrate in school because their minds are on what they've going to @CAPS8 on @CAPS11 they get home."" @CAPS4 up, @CAPS5, @CAPS6 @CAPS7, @CAPS8 to school, get home, @CAPS6 @CAPS7. This is the daily reutine of a teenager in the @DATE1. Secondly, going on the computer constantly can cause health problems. @NUM1 percent of teens who non-stop use the computer have to wear glasses or contacts, because of overusing the computer. @CAPS11 I use the computer without a break for multiple have I get a terrible headache because my eyes can't take any more of it. ""@CAPS11 @CAPS3 stay up laye on the computer they are, have fatigue the next morning."" @CAPS12 pediatrician @PERSON1 and middle schoolers are very much the most popular users of the interner, because they are mostly very tired and @CAPS11 at school. People who stay up very late have very black saggy lines under their eyr, so if you see a person like taht they are a overuser of the internet. Most @CAPS3 who are very pole also never get to @CAPS8 outside @CAPS11 using the internet all the time. Lastly children are missing out on the beauty of nature. @CAPS3 who don't get enough excersize, cant think clearly becasue tehre is no oxygen in their brains. Obesity is begginning to tape a toll on children who only sit inside and @CAPS5 junkfood. Children who rarely @CAPS8 outside and excersize become overweight or obese. @PERCENT2 of children instratford almost never @CAPS8 outside and excersize. As I was in elementary school, we had recess but now in middle school we never have it. The only chnace we have to @CAPS8 outside in the @DATE3 and in the @DATE2 @CAPS11 it's warm." 5 5 10 +531 1 "Dear The @ORGANIZATION1, @CAPS1 opinion on computers @MONTH1 be the same as others or different. I believe that computers help our society. They give us more knowledge on whatever subject we want, it helps us connect to family far away places and they even give us a better understanding of any place we can't see for ourselves. Some people feel that computers distract kids so they're never spending time with family. But what if one of your family members is on the other side of the world? @CAPS1 cousin lives in @LOCATION2 and the only way I can ever talk to him is through a computer. What if your a little kid and your mom or did go on business trips faraway for a very long time? You would use a computer to talk to them wouldn't you? Not everyone in your is always around you and when someone is faraway a computer is the way to connect. Because of computers kids don't exercise. What if your exercise happened to be hiking? In you get exercise and can expose the scenery. With a computer you can explore anywhere without even leaving your doorstep. Say your just a young kid and you're always located to see @LOCATION1 but you can never go there. What would you do? You would hop on a computer and check it out. You can explore any place you want with the click of a button. In school you learn about very historic people who have been dead for thousands of years. How would you learn more about them if they're gone? A computer has information about anyone you chance. You @MONTH1 not be exercising but you're expanding your knowledge aren't you. Yes you could go down to a library and take out a book on the person. However, what if the book doesn't have the information you are looking for? You could end up reading for hours when the certain information you want wasn't even there. A computer gives you anything you need in a matter of seconds. Why waste your time? Now is the time where our technology advances. Why waste your time on something when you've got what you need right at your fingertips? So what are you waiting for? Go learn what you want right now! Haven't seen your cousin in a long time? Start up your computer and get talking. The time is now!" 4 6 10 +532 1 "Dear Local newpaper editor, I think computers benefits us in a good way. Weither computers are helping kids with research for homework, projects and essays or building online stocks to help make buisness grow. Computers are now a benificial way of life. We can see what happens on the other side of the world. And learn about new things everyday. What I think people are focusing is what they thikn computers are doing to people, but are really not focusing on how it helps us in so many ways. One way that people say computers effects people is that we don't exercise instead were attached to our computers. I doubt computers do this not everyone likes or wants to exercise. And why would computers stop people from doing that. It's people choice, the computer doesn't forces them to stay in the house. And computers are a great way for you to catch up with friends and family. It could be online chatting and even sharing photos. And I highly doubt people stop seeing their fmailies because of computers it just doesn't make any sense. People who are against computer are giving people in chairs or controlling them, it's just silly. If people acually stopped to take the time and think; theirs a chance that they would see how computers has helped us grow as a nation. And how much they used computers and that it really helped them than just searching through books for a ton of information. As years have gone by I could see that a ton of thinhs are runed by computers and that alot of people use them. And it has impacted our country, in my opinion a good way. And if it wasn't for computers who knows how are nation would be running. And if computers amde such a posotive impact on our country already I can only iamgine the years to come as computers become bigger and better. So as you have read I gave mt reason as how think computers impact our lives. And how I think the years to come it will impact our lives bigger and better. Now I can't force you to be for, or against computers bbut what ever your opinion is just think of a world without computers especially if you grew up with them." 4 4 8 +533 1 "@ORGANIZATION1, @CAPS1 computers are a part of our advanced technology. They have a positive effect on people because computers make almost everything easier, they can teach people things with tutorial or educational websites and @CAPS2 @CAPS3, and they keep people entertained in their spare time. Computers are becoming more and more advanced everyday and that's why I think people are so addicted to them, yet they do have positive affects. Computers make things a lot easier for a lot of people. If you really think about it, a lot of things that we use every day such as books, nice clothing, and music on the radio would not be here if it weren't for computers. We would have to hand write those books and hand sew our clothes. As for the music, we would just stomp our feet and clap our hands to make music. If ancient egyptians had computers, they would have built millions of @CAPS4. Our computers have programs like microsoft to help me do a major school assignment neatly. Computers have positive affects in this way. Everyday after I finish my homework and I go on the computer most adults think that all that us teenagers do on the computers are facebook and myspace. I do admit that I go on those websites, but if I notice that my grades are not in the best condition, I go on websites that can help me understand what I'm not getting. Ninety percent of the time that I do that my grades go up and I get a satisfying grade. I have also taught little cousins of mine how to add and subtract using the computer in pre-school. Computers are helping schools teach students. Besides education, computers can also keep us entertained with games such as virtual solitaire. When I go on the computer, I might need to research something that I have interest in. Maybe I might want to know when @LOCATION1 was invented or, if the universe ever stops. Maybe I don't want to watch @CAPS5 all day to keep me entertained. Computers will save me from bordom. When I use a computer, I am not addicted. In fact it has a very positive effect of me. Yes, I might stay up countless hours, talking to my friends on facebook, but to me that's a part of being a kid. The next day I might learn something in school that I want to search deeper into. That is what the computer is for. Without computers we would not have some of the knowledge we have @CAPS1. Their effect is the most positive effect on people, ever in my opinion." 4 4 8 +534 1 "Dear Readers' @ORGANIZATION1 the Local Newspaper, I am almost certain you interact daily with computer. You use computers to write, play games, look at pictures, and print work out. There are dozens @ORGANIZATION1 practical for computers but nowadays, many people, especially children, are using computers excessively. This unnecessary usage @ORGANIZATION1 computers can cause obesity, expose children to mappropriate things & destroy family time. Readers, hear my arguement and by the end @ORGANIZATION1 the paper you will surely agree with me that computers are detrimental to society. Have you ever made a @ORGANIZATION2 @CAPS1's @CAPS2 to lose weight? It's not uncommon for one to make such a goal. According to the @ORGANIZATION2, @PERCENT1 @ORGANIZATION1 adults make their @ORGANIZATION2 @CAPS1's @CAPS2 to get in shape, exercise nore or just lose weight. We've all seen the commercials on @CAPS4 that encourage you to ""@CAPS5 @CAPS6!"" @CAPS7 you too can ""lose weight in just one week""! There are also plenty @ORGANIZATION1 entrepenuers out there that want to convince you to buy their exercise product @CAPS7 you can develop outrageously large muscles in ""no time at all"". But do all these & exercise plans really work? According to a study done by the @ORGANIZATION1, the largest cause @ORGANIZATION1 obesity is actually computers! The students at @LOCATION1 had one group @ORGANIZATION1 people try a regular commercial diet plan & another group @ORGANIZATION1 people do exactly what they've been doing... Except their computers. They found that the group who from computer use lost nearly @PERCENT2 more weight on average them the group on the comercial diet! Nothing is causing obesity in @LOCATION2 them computer. A familier day for an average child in @LOCATION2 goes like this: go to school, home on the bus, use computer eat dinner, do homework, go to bed. Unfotunately, these happens @NUM1 days a week & the computer time is eating up none other than the exercise time. Readers please, try avoiding you computers for just one week, and you can forget those jet plane. Another negative @ORGANIZATION1 computers is that it not only affects an individual but possildy an entire family! Many children can go an entire day without sitting down & talking to their parents. My friend @PERSON1 often hope from school and goes straight up to to use his laptop without even saying hello to his parents. Computers have become nearly an addiction to most teenagers. @PERCENT3 @ORGANIZATION1 teens in @LOCATION2 say they use computers daily & @PERCENT4 say they have trouble communication with their parents. There is a direct connection between the lack @ORGANIZATION1 communication at home for teens & computer usage. Teens become in their society lives and become to their computers. What they don't notize is that they're totally forgetting about their families! I know I've made the mistake @ORGANIZATION1 becoming too attached to socia networking to remember my family but luckily I have a stable family environment. Some teens don't have that luxury. Computers have the ability to destroy parent-child relationships, don't let that happen to you. Your children are without a doubt, through, the ones a by this technical revolution the most. From the time they were your children probably had a keyboard at their fingertips. Do parents ever realize what they're getting their children into when they teach them how to use a computer though. Children as young as @NUM2 or @NUM3 years old are exposed to profamily, & vulgar pictures on the web on supposed ""safe sides"". Do you even realize who your child's talking to on the computer? With all the @CAPS8's & emails flying around, you could be talking to a complete stranger without-even knowing. An enormous part @ORGANIZATION1 who your child become & the values they hold is a product @ORGANIZATION1 what they were exposed to @ORGANIZATION1 a young age. Bring a computer to your kindergartrer & you can probably guess what they'll grow up with. No matter how much you think or believe on the safety @ORGANIZATION1 computer, you cannot argue with the fact that computer expose children to adult content very early in their lives. @CAPS7 do you look at your computer differently @CAPS6? Faced with the concerns @ORGANIZATION1 lack @ORGANIZATION1 exercise, separation @ORGANIZATION1 families & mappriate natural children do you really want your children, or even you for that matter, using a computer daily. Think a head @NUM4 years from @CAPS6. Will you say ""I wish I used my computer"" or ""I wish I spent more time"". In the end, the choice is really up to you." 6 5 11 +535 1 "In my opinion having computer is good to have. Therefore I think having computers are a good thing because nowadays computers are very useful. Also a lot of people are using the for there businesses. My there reasons are to look up information, home work, and to talk to friends and family online. My first reason is to look up information on the computer. If you have thred reports to do it will best to use a computer to look up the information because it will be easier and faster to do. For an example using the internent will be faster then looking for it in a book. For that it will take at least @NUM1 to @NUM2 minutes for the interenant if you were to lookingit in a book it can take at least @NUM3 to @NUM4 minutes. My second reason is to you could talk to your friends and family online like if one of your relatives live long distance like in @LOCATION2 then you can talk to them on your telephone or cellphone because the bill will outragouse. Or if you talk to your friends online so can ask them a question on homework or whats the homework? Like if you have a that to like @LOCATION1 you can to online and you can talk to them. My third reason is that you can even do your homework on the computer. If you have history you can go on a website for an online book instead of bringing a book to school and back to home. Also it will be easier for that you would not have to worry about bringing your history book with to home. For the example it will take less time using the interneat the using a book it will take like @NUM5 to @NUM2 minutes using the computer then using the book for @NUM5 to @NUM8 minutes. In my conclusion using a computer is very useful and very important nowadays. My three reasons are to look up information, homework and talking online to friends and family. Even though people don't like computers or don't like to use them." 4 4 8 +536 1 "Dear Newspaper @CAPS1, Even though there are good effects of computers on people, there are also many bad effects. Some of the major bad effects of computers on people are no exercise, you can talk to strangers, and no interaction with family and friends. One of the effects of computers on people is no exersise. One of the most important effect of computers on people is no exersise. Right now many people in the @LOCATION1 are obese because of bad eating and no exersise. One of the problems is that these people don'@CAPS2 get off their computers and couchs to go outside. These people choose to stay indoors and just do nothing except watch @CAPS2.V. and go on the computer. So computers have a big effect on how these people live their lives. Another problem caused by computers is kids talking to strangers. Most kids in the @LOCATION1 are a member of a social network like @CAPS3 or @CAPS4. There are people out there that go on these websites on their computers and pretend to be a teen. This can get many kids in trouble if they are not careful on these websites. Since most people access these websites from their computers its another bad effect of computers on people. Another bad effect is no iteraction with family or friends. When people are on computers, they focus on whats on the computer and not about their surroundings. Being on the computer stops many people from interacting with their family and friends. Not interacting with anyone causes their social skills to weaken since they are always on the computer. This can become a serious problem if a person becomes too adicted to the computer. This can cause many problems between communication throughout the family making the family weaken. In conclusion even though there are good effects of computers on people, there are also many bad effects which can cause serious problems. Computers can cause tragaties in families and/or in that persons's life." 4 4 8 +537 1 "Dear, local Newspaper, I hear that you think computers have an effect on people. Will I disagree with what you say. I think computer will help us learn, and do things faster. Haveing computers helps the community learn more. My first, reason I think we should keep computers because it helps people with there hand eyes coordination for jobs. With the skills of typing you can work at places like the city of @LOCATION1 where they type every day and work hard. They also learn more and more facts about the sociatis. Without knowing how to type you @MONTH1 not get any top class jobs. My second, reason telling us that computers are helpful is that it helps your children do better in school by learning how to type for high school, and learning math, sce, social studies and language arts. Computers also helps kids at young age do math and other with their character, like dora, @ORGANIZATION1, elmo, and others. So learning on computer can help you learn and have fun at the same time. Which i know your parents would like. Even new born babys can learn how to read, write and do math and grow up and can be president one day. My third, reason is that it helps send things all over the world. Without computers we would have to do it old fashion style. Also with computers you can talk to family member that live far away from you (In state or country) and you have not see them in a long time. Or you can chat with old school friends from back in the day. You can also buy thing off the computer. In my conclution I told you that computers can not effect people by telling you that your child can do better learning and parents also. I also add that it helps you get jobs and help you with your hand and eye cordination in school and out. So computer help the community." 4 4 8 +538 1 "Do you think computers benifit us? I think they do. There are many way computers do and don't benifit us are a lot more use full then the way they don't. Like kids in school use an online text books. Also a lot of company's have websites so we can see what there about before we choose them for the job. We also use computers to look up directions to places we want to go so we don't get lost. School kids benifit from computers a lot because they would have to carry home tons of books but instead they just go on the computer to get the online book instead of carrying home @NUM1 really heavy books. I know I like to go on the computer better then carrying really heavy books home. Also when you look for a home decorator you just go on the computer and look up websites to see some of the work they have done. It helps out a lot becase than you don't have to figure of the hard way that the decorator is not good and end up spending a lot of money on a room you don't like. Also if you are looking for a job you can look up there website on the computer and avail them to see if you can get an interview rather then wasting your nature going there. I also use the computer to look up ways to get some where and it's a lot easier to do that then to start driving and get lost I know they have gps's now but they cost a lot more then some on a computer you can find out. I still think computers benifit us in many ways. Like using an online text book instead of carrying your huge textbooks home. Also using computers to look up websites or to search adresses, is a lot easier with computers. That is why I think computers benefit us." 4 4 8 +539 1 "Dear newstimes, I really think that computers are a good thing because they let you talk to people online, they have ways or doing things for other people, and people have to manage alot of there money and hills on the computer. First they let you comunicate with other people, did you know that @PERCENT1 of people in the united states have family in a different state, and never get to see them, well, thats when computers come in handy because computers have a thing calle d vidio chat and thats where if you have a webcam you can talk to peoplem from different places around the world because you can see each other both through the camera, also there is a thing called @CAPS1 and that allows you to talk to people whenever you want if they are online, my mom got a @CAPS1 and now she chatting she hasn't seen since highschool and she is very happy to see her old friends again. secondly computers have away of people, like if you have an emergency you can go to the computer and save it. Like if you have an email you can email then if you have and emergency, there is even a thing on the computer that can call someone or even call all for along emergency. @PERCENT2 of the people in the @LOCATION1 say that a computer has many people think that from a computer. Thirdly computers help people paying there bills and with there mony. Did you know that @PERCENT3 of people in the united states pay there bills on the computer and manage there mony on the computer. I know my parents do and I know a lot of other people that do to, and if we didn't pay our bills then we wouldn't be able to have a home or anything and thats pretty much do need computers because if you didn't have them then people wouldn't have a any mony. In conclusion people really do need computers because people like people that they know and they have helped many people in the united states and lastly computers really help you manage money and bills, and every body should have a computer for all of these very good reasons." 5 4 9 +540 1 "@ORGANIZATION1, @PERCENT1 of the world say that computers are a good way to interact with people, learn about forgien people and places and also learn about where your family came from. So here I am going to inform you about the good reasons why computers should stay in our society. How do you meet people from different countries? One way is interacting with different people all over the world. I am saying this because the internet has a lot of benifits in meeting people. One way is to make a certain account where you can meet people who aim or a different account. Another way is go on a website where you can pen-pal someone from a different place in the world. The final way is to download something where they can send instant messages to people all over the world. Do you have a project where you to learn about another country or another explorer? Well you can use the computer to learn about the place or the person. I am saying this because that will helps us with all the work we do for school. Computers also help you with your school work by helping you with homework. I am saying this because with nobody home when nobody there when you come home from school who is going to help you with your homework you can use a website that helps you understand the material better. Do you know where your family comes from? A way you can find out with your family come from is use a website to find where your family comes from. For example, @LOCATION1 is a helpful website to learn who they really were in life, were they fight in a war. You can find this all out on the computer. Another way is you can ask your parents the name of someone and type there name in google.com. There are many reasons why we should could keep computers but here are some, interact with people, learn about other places and learn about family. I hope you understand this better." 4 4 8 +541 1 "Dear Local Newspaper, Computers are a huge thing now adays. Almost everyone has one that they use. But why do some people think that it is hurting our society. This isn't right because you need it for education, people aren't on all day, and a job. So how could those things be harmful to society. Your right they can't. Every single person has had some type of education. But how can you have an education with out a computer. If you rae working and you need to get another degree for your job. You can't go during the day so you can find a school that has online schooling, for at night. That way you don't miss work and you still get your schooling. Another reason why is that a school project or essay. You might need the computer to search up things for a project. Or cite your sorces. What if you need to type an essay what do you do then. No computers no education and you will go and works at @CAPS1 or something. Where you don't need an education. But people aren't on all day so what does that do to society. Nothing at all. Kids and adults go outside and have fun. They go on the computer to check e-mails, play games, look at facebooks/myspaces. But they have enough responcibility to go out and get fresh air. And if they sit in side then it isn't your problem because it is their life and they want to live it their way. Not the way everyone else wants them to. They can make choices for thier self and don't need others, to do it for them. So it really shouldn't effect you at all. What if at you job you need the internet. Most office people have a computer to talk to others by e-mail or to fix problems. People who work at about need the computer to access your account to get your money. People that estimate the cost of a building need it for adding something or keeping a record. The video games are a perfect example because the programers use a computer to porgram what you want to happening the game and thet takes hours to complete. So how are computers harmful to society because I still don't see it. Education, people aren't on all day and a job are really good reason that computers should becept. So everyone I strongly encourage you to reconsider what could happen without computers." 4 4 8 +542 1 "Let's go back around @NUM1 years ago. Those were days when it could take weeks to communicate with out of state family. Days when knowledge was only found in books, and ofen found slowly. Those were days where everything was done with a lack of speed and precision. Computers change all that. With nothing but the tap of a finger, we can communicate with people worldwide, or sea the web for some knew information. @PERCENT1 of people's relatives live out of their state. I can relate, with @NUM2 cousins in @LOCATION2 and @NUM2 in @LOCATION1. Without these instant messages and emails, we would more than likely talk to them once, maybe twice a year! Some people say that computers make people spend less time interacting with family and friends. For me personally, and I know many others, interaction would be impossible without these modern manuals. With all the @LOCATION1 technology out there. Nothing has me as amazed as the webcam. You, with this tool, can talk face to face with someone on the other side of the world! The world is a better place when we can have a true connection to other cultures, and what better way than to talk to them. What people @NUM4 years ago would never think possible, we can use at a moments notice, and yet still, many people don't appreciate it. My @CAPS1 and my @CAPS2 have both used internet to reunite with old college buddies, or see how far away friends are. These are grown ups, using the tools available to improve their lives. Internet goes beyond teenagers on @CAPS3 and @CAPS4. What you can find online still amazes me. The information you could get out of @NUM2 non-function books, you could find in turn minutes on the internet. Any question, including personal, anything, can be answered. Years ago people would have killed for this power, for the common man to be able to access all he ever needed to. I see the point people make about needing excersize and they're right. But in five minutes on the web you could have an exersize routine planned out, with modern techniques and styles. The computer has anything for anyone. Looking for some place to enjoy nature & @ORGANIZATION1 it. In seconds there will be thousands thousands of results. Missing a dictionary? There are literaly hundreds of sites to find a definition online. People take these machines for granted and assume we could live without them, but I doubt they ever realize how much we really need them. The technology is there. Why not use it? I could never turn down an opportunity to talk to a distant cousin, or another kid from a different country. I couldn't pass up a chance to check up on some old buddies that moved away. Thanks to computers, I have that opportunity. I have that chance. I've been shown an open door to find out everything I could want. Man can't know everything. But these days, he can find out anything. I'm not sure if the omputer has changed the direction of advancing technology, but I can tell you, it has definitly offered the course." 5 5 10 +543 1 "@CITY1 @CAPS1: I believe that computers (for now) are a good thing for our society. They allow you to see places. If you have a long distance relationship you can talk to them and they have many good excessories. What if you were looking for a new home? You could use google to search of selling homes in a certain location. Then finding some one to move your stuff for a fair price. Computers have many websites that you can go to when looking for that special place. The computer is also handy when you are going on vacation. You can look up the weather for that time. If you are going somewhere for, you can use the computer to find a plane. Computers are helpful when it comes to places! The excessories on the computer are endless. One big excessory that people like to do is games. Games are great to get your mind going. Practically all of the grades require hand-eye coordination. For example, @ORGANIZATION1. You need to remove all the tiles before the time runs out! If you are bored, games are very fun. I think that games are a great excessory. Some people have long distance relationships right? Well, if you have a computer you can have an online. This relieves many people when they know your not there. If you have an email, you can "talk" to your friends that you dont see at school. This gives you a chance to connect with them. Myspace and facebook are very similar. These are what you can use to talk to your friends at school. Computers are very useful. As you can see, I have stated many good reasons. Excessories, "talking" to people. Also, places. Many people use computers in their every day life. Computers are awsome!" 4 4 8 +544 1 "Dear @ORGANIZATION1, @CAPS1 opinion on the effects computers have on people, are that computers are used for the wrong reasons. Teens should be outside playing sports or hanging out with friends and family. But instead they are addicted to the world wide web and games and websites throughout it. Therefore, the computer and the concept of surfing the web is bad because it consumes childrens much and because educationally computers can give the wrong information. Until the late @DATE1's, @ORGANIZATION3 laptops and desktop @CAPS2 did not exist in @CAPS1 opinion, this would have been better. For example. children teens and even adults use the computer more than they should nowadays. At this age middle schoolers and high-schoolers should be focused on their grades and their . But instead, they get too addicted to @CAPS3, @CAPS4 and @CAPS5 that they forget about their school work and their priorities, and their grades start to slip. Even sudlts have this problem. For instance, buisness people, accountants and assistants will consistently be checking their emails. Also, people who work at a desk or in a cudical all day are almost always on the computer. In other words, I believe that jobs should cut dwn on how many workers they have on a computer, and family homes should cut down on the amount of time each member spends online. Another reason I think computers effect people in a bad way is because educationally computers can give false information. For example, people could insect their own perspective of an idea on websites such as wikipedia and @ORGANIZATION2. If a student was doing a project or just homework and decided to surf the web for some @ORGANIZATION2 or information they dont know if their information is correct. I believe this means that the internet and the web don't beat books or history. In conclusion, computers have a bad effect on people for the reasons of it consumes children and teen's minds, people use the internet too much and because educationally computers can sometimes give false information." 4 4 8 +545 1 I think that computers are amazing. Computers are an amazing way to meat new pol online. 1 1 2 +546 1 "Dear, newspaper @CAPS1 I think computers have both a positive and a negative afect on people. On one hand you can learn about places without having to go there and get fact about what is in that contery such as food, goodes, and jobs. On the other hand the computer can also be a problum becous kids could spend to much time chating or playing on the computer and not enugh time going outside to play or going to sports practis but sometimes bad things happen from talking to people on the computer. Some people on the computer arn't always how thay say thay are. So if I hafe to choose a side on wether the computer is helpful or not I would hafe to go with not. The computer is not very helpful becous lot of bad things could happen from @NUM1 littul mistake on the computer like puting your name, adrres, or picktur on the computer." 3 3 6 +547 1 "Dear @CAPS1, I @CAPS2 that computers has benefits to society. First, it gives and teaches you social skills. Next, computers can help you learn new things online. Finally, computers also teach you hand-eye coordination. In the following you will see why I @CAPS2 computers have its benefits to the society. First, computers has its benefits to society because it can teach or give you the social skills you need. On a computer you can interact with others from around the world and make new friends. Therefore, you can learn about their culture and what they do in their country. Also, you can talk and interact with family that does not live with you or is not with you in the moment. So as you can see, Computers has its benefits because it can teach you social skills. Next the benefits it has to society is people can learn things online. for example, you can learn how to use a computer if you don't already know how. Also, you could play online learning games for free or buy a @CAPS3 with more options for learning. Another example is you can look up recent or past events you want to know about and research it. So as you can see, Computers benefit society because you can learn all types of things online. Finally, computers how its benefits because it teaches you hand-eye coordination. for example, you can find all types of games using hand-eye coordination using the mouse and keyboard. Also if you just want time to go by you can use the computer as entertainment by chatting with other and playing games. Believe it or not, you can find boat loads of jobs that uses a computer for any of these also as you can see computers have its benefits because it teaches you hand-eye coordination and gives you some free-time entertainment. In conclusion, computers have its benefits to the social community. First, it helps you learn your social skills. Next, you can learn about any subject online for free if your not the one paying the internet bill finally, it benefits you by teaching you hand-eye coordination. So as you can see, I @CAPS2 that computers benefits society in plenty of ways." 4 4 8 +548 1 "Dear Newspaper, Computers are not something to be afraid of. They help many people in different ways, like the @CAPS1, teachers, students, scientists, and locals dealing with their jobs and daily life. Hasn't a computer already helped you today? Because of that, computers help us learn, keep in contact with people, and are our future. Who has said that by using computers you dont interact with your family as much? Well, I can tell you that I'm staying in contact with my grandma, cousins, and aunts through my e-mail. With e-mail you can check up on news or simply write to friends and family! Also, if you are planning a trip to visit your loving family members, dont bother with a map that gets in your face all the time and you just ""happen"" to get lost, try going on @ORGANIZATION1 maps and plan the shortest route to your destination without getting lost along the way. Computers can do more than creating a simple map, it can give you precious information! Many schools across the country use computers to help teach kids. The kids can look up @LOCATION1 and in @NUM1 seconds they have all the information they need! In most school paper you have to type and provide what websites you used to achieve finishing the paper. What is also nice is that you dont need to go through huge books for one small piece of information. It is much easier, looking it up on the computer. Speaking of not using big books for imformation computers don't use paper and will lead us to a healthier tomorrow! Millions of toms of paper land in landfills each day! By using computers we could read online and conserve paper! Another fantastic fact is that computers will grow in the future. people have already created touch-screen computers and computers will grow even more! Many people think that using computers is a bad thing, but look at the facts! Doesnt the newspaper write the newspaper on computers? If they didnt, they would be having hand cramps all the time! And what about docters dont they have your medical history on the computer, if not all these papers would get lost! Like in the beginning, computers help us learn, keep in contact with people, and are our future." 4 4 8 +549 1 "Typing and surfing the web @MONTH1 be exciting; however, is it worth the @CAPS1 risks that there are now? Before computers were discovered, human's healthyness is triple than what it is now. Computers can be useful and @MONTH1 have some benefits; on the other hand, they are harmful and they should not be used as often. They have unprofessional websites, they are not helpful when it comes to excercise, and they disturb @CAPS1 individuals privacy. @CAPS1 kids are let onto computers every day and they wonder @ORGANIZATION1 to the websites that the internet has to offer. Consequently, kids end up in inappropriate websites that they are not meant to be on. In fact, @PERCENT1 @ORGANIZATION1 kids enter unproffesional websites and @PERCENT2 @ORGANIZATION1 them have no parental vision in the @LOCATION1 alone. Therefore, @CAPS1 kids act up in homes and at school. However kids are not the only ones who are affeted by this. Computers have a disadvantage @ORGANIZATION1 being hacked or virused from uncensored websites. MOreover, computers crash or don't allow use @ORGANIZATION1 computer documents because @ORGANIZATION1 these viruses. Ever since the @ORGANIZATION2 was invented obesity and lack @ORGANIZATION1 exercise in a person's schedule has skyrocketed. A scientist, named @PERSON1 from the @ORGANIZATION1, said,""@CAPS1 computers users have lost their use if muscles, but they have gained to over @MONEY1 @ORGANIZATION1 fat causing a lot @ORGANIZATION1 hem to not be able to do activities they did before."" I believe that this is definitely true because I remember that the same happened to my sister. She ate more and her excercise time was spent more on the computer that on her body. I know that @CAPS1 say that computers help in hand-eye coordination, however, is it really worth more than someones healthy body? @CAPS1 things are sold on the internet that are not in stores, but you don't trust the internet when buying these products. You don't trust the internet because you have heard so much about someone'es identify or money taken away from them." 4 4 8 +550 1 "Dear Local Newspaper, Computers are harmfully effecting the children, and they are going to effect @CAPS1 generations even more. Computers are fine in moderation, as are most things. If they are needed for a school project that fine but using the computer everyday rather than exercising is not okay. Supporters of technology say that computers have a positive effect. I have to disagree. They say they practice hand eye coordination, they can teach you about far away places and you can talk with people online. Sports are a great way to exercise and practice hand eye coordination. Tennis, baseball, basketball, hockey, etc are all great sports that practice hand eye coordination. They are much healthier that I.Ming your friends all day. You sit on your butt all day and scream to your mom to get you a drink of water, or some dinner. ""@CAPS1 generations are becoming way to dependant."" says @PERSON1, my @NUM1 grade @CAPS2 teacher. How are you suppose to be able to support a family when your older if you cant get up from the computer. ""@CAPS3 a family is hard work,"" my mom tells me, ""your family needs food which means someone needs a job, and someone also needs to get the food. That takes a lot of time and energy."" I agree with my mom, and if simple things like going outside for an hour a day are practiced as a child, having a job and @CAPS3 a family will be easier. Rather than searching the internet for hous to find a good online source to support your thesis paper go to the library! The internet is a realitively new data basis. However, it has grown so much. You cannot always trust internet sources. People who @MONTH1 have posted the website could very well be crazy. Plus websites are filled with viruses, and what happens when your computer is dead due to viruses and you actually need your computer for a school project? The simple alternative would be going to the local library and checking out a variety of books. The books are trusted and filled with information. The internet is also not a very safe place. Facebook, aim, email, twitter, etc are all ways for people to comunicate through the computer. Facebook, aim and twitter are scary and not safe because you @MONTH1 not know who you are talking to. They do have a profile which you @MONTH1 be able to relate to, but they could be lying. ""The internet is a broad place open to strangers,"" my dad says. I am not allowed to have these ways to comunicate because of the specific reasons that I stated earlier. My parents are doing this to protect me and I agree with their decision. Rather than talking to complete strangers go over to your friends house. Your friends are the people that you want to talk to and spend time with. Overall computers are bizarre pieces of technology that can be unsafe, not truthful, and are forcing children to become more dependent on adults. I have to disagree with the supporters of technology. There are many healthy alternatives to the computer. I believe that experts who are concerned that people are spending to much time on the computer and less time exercising, enjoying nature, and interacting with family and friends. Not only do the alternatives that I stated before keep people safe, they also practice a healthier way of living. It is important to keep your bodies healthy because in the end thats what everyone's goal should be." 6 4 10 +551 1 "Dear local news paper I think the computers benefits society. The three reason why so is because computers teach hand-eye coordination, give people the abilit to learn about faraway places, and allow people to talk onlone with other people, and computers help to make better technology. I belive that computers have positive effect on people. My first reason why computers have a positive effect on people is because computers teach hand-eye coordination, give people the abilit to learn about faraway places. @NUM1 out of @NUM2 students use the computers to do homework. I was visiting a prompt last week. I ddn't know alot abou @LOCATION1 so I whent on the computers and you know what i got to know more about @LOCATION1 and things to the computers I got a A+. So the computers have a positive effect on people. The next reason why computers have a positive effect on people is because computers allow people to talk online with other poeple. Say if a man whant to a and he left his phone at home how will he take to his family why he had computers he can talk to his family online. My family is back in @LOCATION1 I haven't see them in four years so I whant to the stor and get a wedcan and i get to see my family afdter four years. So computers do have a positive effect on people. My last reason why computers have a benefits in society is because computers help to make better technology. Computers help people to make better car, light, an so on. Without computers society is because computers help the soldiers to win wars and even help people to live. My father was dying without computer my father would die thang to computer I have father today. In the end computer have the benefits in society the three reason is computers teach hand-eye coordination, give people the ability to learn about faraway place, and computers allow people to talk online with other people and computers help people to make better technology. Spending time enjoying nature is good computers have benfits society better. I hope my three reason can persuade the local news paper to agree with my position that computer have a positive effect on people." 4 4 8 +552 1 "Student @ORGANIZATION2: @PERSON1 @CAPS1: @NUM1 @CAPS2: @NUM2 @CAPS3 @ORGANIZATION2: @ORGANIZATION2: @ORGANIZATION1: @LOCATION1 @CAPS4: @NUM3 @CAPS5 @ORGANIZATION2: @CAPS6 @CAPS7 of @CAPS8 @CAPS9 @LOCATION1 newspaper, I think we should have computers because I would help us meet new people, seeing new places, and learn new things. It would help us meet new people because we can e-mail them, and chat with them on programs. It will also help us see new places because we can goon the internet. And look up place see. It will also help us learn about new things because we can talk to people and they could give us some ideas on what to learn about. This will help us all because we want to learn about new things, talk to new people and see new places. this is a good idea for all of us. We can all benifit from this because it's good thing for everyone to have. I think we should have computers because it would help us meet new people, seeing new places, and learn new things. This is a great thing for everyone. Not just some people. I hope you take this letter consideration. Because it will help everyone learned about new things." 3 3 6 +553 1 "I think computers are bad because people use them all the time to go on facebook and other wedsites that are sometimes wast of time. People should not go on the computer as much and explore outside and go for walks, explore the woods, exersise most people do not get alot of exersise that they need because there an the computers. People showed stop making computers so less people go on them and so people can exersise more and loss weight. If people stop making computers some people would stop going on bad wedsites. People should only go on the computer for reasurch for projects or for homework liketyping papers. Parentent and kids need to exersise to stay healthy because people do not wnat diebedes when they are young so it really important to exersise so bad things do not happen to your body people need to stay healthy and exersise. All the computer deos is mess up your brain so you do not exersise. So get off the computer exersise, explore outside, go on walks, and explore the wood you never know what you will find in the woods. Go see what you can find. There will be some interesting things you will find like different kinds of bugs and of insects. You might even find a lady bug. There is all diffrent kinds of bees and you might find one that looks like something. So go outside and explore you will never know what you will find. Go for walkts you will never know what you will find and different kinds of houses and the colors of the house the diffrent kinds of front doors, diffrent kinds of houses like small, meddiem, and large. Some house will have diffrent color. The diffrent kinds of animals like dogs and cats that are in the window or outside. You should go hangout outside. You should go hangout outside with family, friends or both and look at the diffrent stuff in nature. Made you can talk pictures and make a scrap book out of the pictures. Make go in the woods and wake around. Just get out and exersise and you would think to yoruself I should get out and exersise more afften instead of being on the computer because I am having more fun hanging out with friends and family and I am doing exersise at the same time instead of being on the computer. In plus the computer was getting boring." 4 4 8 +554 1 "Dear Local Newspaper, @CAPS1 opinion on the effects computers have on people is that computers have a good effect. It's good for education mind exercise and communication all over the world. It could @CAPS2 be bad because it would keep you from getting exircise, being with your family and being healthy. But I still think that there are ways to use computers without the bad cause. Some ways computers are good for you are that you can get a better education when you have websites with so much information. Sometimes these information are flase but if you find the websites you can get the rite information. With all of this information you ran exircise your mind to do better in life. You can @CAPS2 talk to people on the other side of the earth and get more inforamtion from them. If I were to say computers are bad for you I would I say that it keeps you from getting enough or maybe any exircise. Computers @MONTH1 be the reason why ther are so many obese people in the @LOCATION1 @CAPS2 when computers are use too much people part from their family and go into different fantasy worlds that somethimes get you addicted to them. And staying for too long on the computer cause prolems. You can get hurt by just sitting for a long amount of time at once. Being on the computer for too long can @CAPS2 cause eye problems where you will begin to lose your sight and will need glasses which will get thicker as you keep looking at the computer screen for hours and days. But even though computers cause so many problems we can prevent them by using the computer to help us. People dont get enough exircise but with the help of computers they can @CAPS2 find times and ways to exircise so that they can stay healthy. They can @CAPS2 find information about how much time should be spent on the computer to not have sight decrease or worse. Some people live far away from their family so computers really help them stay in touch and to be able to see each other. In conclusion I think that computers are more beneficial then harmfull because they give you alot of information for everything and you can comunicat with people all over the world. And computers can help you prevent those things that are bad for you by showing you ways to use computer that won't harm you." 4 4 8 +555 1 "Dear newspaper, I heard you were discussing if more and more people using computers was a benefit to society. I believe that @CAPS4 has a negative affect on people. They get to interact with people who arent safe, they spend less time exercising and they get into more trouble thean before. Spending more time, online in chat rooms causes people to meet preditors. Take my friend @PERSON5 she was online one day when a man started to talk to her. She thought he seemed acceptable when he said he was @NUM1 and a model. She flirted with him on and on, day after day until one day her friend logged on and found out the man was really @NUM2 and a pervert. @PERSON5 @CAPS1 the only on that this has happened to @NUM3 out of @NUM4 people in chat rooms say they have been lied to like this. Website designer @PERSON2 say, ""More and more people everyday are falling for lies over the @CAPS5 and getting in sticky situations like getting asked to meet the person."" @CAPS1 the saying ""@CAPS2 talk to strangers?"" Spending all your time sitting down on the computer means less time outside exercising. At triputs, this girl @PERSON4 wasnt in shape enough to stay up with the players. Instead of being our practicing like the rest of us, she was in her house talking on facebook. She wasnt prepared when @CAPS4 came, time to show what you had so she didnt make the softball team. The next year she made captain because she was out training everyday before the big day. She's not the only one with a laziness problem. @NUM5 out of every @NUM6 americans are couch potatoes and choose to go online than to stay in shape. Nutritionalist, @PERSON1 says, ""This generation is worse than the last. They complain when they cant do something but thats because instead of going outside, they're on their butts watching @CAPS3 or online."" @CAPS4's a breath of fresh air, what do you have to loose? Kids seem to get in alot more trouble online then they ever have on the streets. They're out posting threats, dissing each other, sending personal messages or pictures and worst of all sometimes hurting someone so bad they commit suicide one year. The neighbor was more popular than this lady's daughter so she created this person online that the neighbor fell for. The online ""guy"" began trashing the teenage girl so bad she ended up hanging herself. People, including singer @ORGANIZATION1 have been caught in sexting. @CAPS4's embarrasing, innappropriate and against the law yet @CAPS4 still happens. These people are not alone. @NUM3 out of @NUM4 people have gotten in big trouble through the @CAPS5. Governer, @PERSON3 says, ""@CAPS5 and phones are destroying this society. Theres too much real life drama already."" @CAPS6't you see something wrong with all of this? My opinion on @CAPS4 all is that we should use the computers less before we all start interacting with people that will scare us, become couch potatoes, and get into huge trouble. @CAPS4's really not worth the damage of getting scared, hurt, lazy, or taking your own life." 5 6 11 +556 1 "Dear newspaper, Computers are everywhere in our nation. We have them at home, at @ORGANIZATION1 or at our work. Many people believe that computers are bad for our health or we dont spend enough time with our family. But I disagree. Computers teach hand-eye coordination let us learn about faraway places, and also let us allow to chat online with other people. Have you ever had trouble with hand-eye coordination? Sometimes mine is ridiculous! But when i get on a computer it gets to be much better. Experts say that @PERCENT1 more people with hand-eye coordination have improved by working with computer. A teacher at @ORGANIZATION1 said, ""@CAPS1 students have been working on the computers for about two months now and I have seen an incredible improvement in their hand-eye coordination already."" I agree with these experts too. So many people nowadays that have a computer have passed their hand-eye coordination test! When I grow up and soon get out of high @ORGANIZATION1 I want to travel all over the world. But first I want to be educated on where I go. That is why computers are so helpful. I can just click on a button and the internet will bring me to hundreds of sites where I can learn all about the places I want to visit. @CAPS2 time @CAPS1 parents told me we were going to @LOCATION1 for the day. So the night before I did a bunch of research of different shops, museums, and places to eat. The computer helped me so much that if we didn't have @CAPS2 then i don't know where would go. President @PERSON1 said, ""@CAPS2 time when i had a big meeting in @LOCATION3 I had no knowledge about it. So I logged on to the computer and it brought me to a million pages on their culture, language, and much more. I dont know what I would do if I didn't have a computer."" I love talking to @CAPS1 friends. But once I'm home none of @CAPS1 friends are around me, so I have nobody to talk to. If I also don't have the phone available then that makes it even worse.But, if I go on the computer then I can talk to bunch of @CAPS1 friends. I can go onto @CAPS1 webcam to see who I am talking to or I can go onto another website to get an instant message. I love talking online because ont of @CAPS1 best friends in the whole word moved down to @LOCATION2 so I don't get to talk to her too much. But if I go to the instant message website then I can talk to her as much as I want. @NUM1 out of @NUM2 people sold in a survey that they have someone they talk to over the internet. So I say the computer is important in our society. It helps complete a number of tasks. They teach hand-eye coordination, give people the ability to learn about faraway places, and it even allows people to talk to friends and family online. So I dont think computers are bad fo us or our health. I think they are important and needed." 5 5 10 +557 1 "Dear, editor of the @ORGANIZATION1. I beleive that computers are good for the future. The world has made many chenges with there technology. I know not spending time exercising is bad but learning about new things cant be that bad. If humans didn't have technology some of us wouldn't have heat or fresh water. We use computers in life. Computers are good for people who use them to learn about the world. Some people who have friends far away can use a computer to talk to them. Or even people who can't talk use computers to talk for them. The @ORGANIZATION2 uses computers to save lives. Computers save lifes in so many ways its scary to think if they were all gone we could all start dying. We use computers in hospitals if there weren't any computers the chances of finding a cure for something would take to long and the person could die. Lets say someone has what looks like a normal fever and you just say thats what they have. Two days later they died because they had some disease and no one knew until it was to late. We use computers to purify water. We use computers to keep us warm during winter. We even use computers in libraries why the library. Some people who have medical illnesses and can't talk have these little computers that can have something typed in them and it would say it. Most people use some kind of computer to talk, chat, and text. They might find it easier with a computer. The worlds a big place and many people don't know much about it. But if you go online you could find out stuff that you @MONTH1 never knew exsited of just plainly didn't know about it. Kids even use computers for school and school work. So many people rely on technology to get through there life. Computers even help people in school for people like me who broke there arm and have to take some test on the computer. Like me. Now so many things in the military, airforce, and @ORGANIZATION3 are computerized. The miltary uses thermal sights on guns and tanks so they can identify people in even the most craziest weather. It could even locate a wounded soldier. There even working with computers to make better bullet prove vest so they will be more lives saved in war. The airforce uses computers to talk to people on the ground so they could protect them. They now have planes that can be flown by a man far away and this would save there lives even if it gets shot down. This also alows them to see people hiding and they could tell the people on the ground to stay down or whatever. The @ORGANIZATION3 uses radar to see if there is any boats or submarines coming near them and the have a heads up if there would be an attack. We use this to help with other advances in the future we could soon have a computer that could help out people in far places like were there is a higher poverty rate. Computers save lives, alows communication, and is a good way for research. Computers is what we use to live we need them to survive." 5 5 10 +558 1 "Some ""experts"" are warned that people should spend too much time on their computers. Yet, look at all of the advantages to a computer. You can develop better hand-eye coordination skills, internet with friends/family who could live hundreds of miles away, and you can learn about cultures all around the world, along with the people who live in those countries, without ever leaving home. In my oponion, computers overall benefit society, helping us learn more & more every day. First off, there are many skills you can develop on the computer. For example, when playing interactive high-paced games, kids get a sense of awareness timing, and hand-eye coordination. Not to mention, with new advances in technology, people can now go to college without ever leaving home, and at a much lower price, while still getting a great education. Many people even work from home, thanks to their computers. These are still only a few of the many skills that can be learned on computers. Secondly, why buy a ticket to a far away country that's fairly expensive, trade in all your money for the money they have there, go through the hasslels of baggage, ect. When you could simply go online and look it up on the computer? You can go online, look up some of that countries recipes, language, pictures, people without the hassel of going there. Not to mention, for kids who aren't old enough to @LOCATION1, or have to do a report on it, instead of making through countless textbooks, newspapers, libraries in general, they go online, @CAPS1 their country, and they have must, if not all the info they need right there. So not only is getting the information then you would've learned in the first place, thereby, extending your knowledge. Finally, the internet helps people connect. Leading experts from the @CAPS2.S.A., or Family security agency, says that since people have started using programs like @ORGANIZATION1 and facebook, many more families, who live in different countries, have been able to re-coonect and get to know one-another. For example, if you have an uncle who lives in @LOCATION1, you could both buy cameras for your computer, install them, and within minutes, be seeing each other/talking face to face. I think this is better then simply writing letters to them, as it's quicker, and you get to connect more. Same goes if a friend or you move away, but want to stay in touch. A quick facebook account or @ORGANIZATION1, and you'll still be good friends. So all in all, yes, computers do benefit society, as they help teach people skills, learn about distant cultures/far away countries, and connect people, who might live in different countries. I don't see anything wrong with these beneficial factors to society. So yes, computers have a positive effect on people." 5 5 10 +559 1 "Dear Local newspaper, @CAPS1 a world filled with gargantuan people seated at a moniter, their eyes staring at it blankly. Outside the city streets are deserted, save for the squirils running along fence posts. This is what will happen if people spend to much time on the computers. People will spend less time exercising, less time outdoors enjoying nature, and less time interacting with family and friends. This is why computers have a drastic negative affect on people. First of all, people send huge amounts of time on their computers and small amounts of time exercising. In a recent poll done by @ORGANIZATION3 magazine, it stated that @PERCENT1 of people between the ages of @NUM1 and @NUM2 prefer to be online rather than outside exercising. That article also states that since @DATE3, child obesity has increased by @PERCENT2! @PERSON2 of @ORGANIZATION1 at @ORGANIZATION4 states that the reason child obesity has increased so much is because children spend so much time in front of the computer and less time outdoors. Do you want this rate to increase in the next ten years? Secondly, spending so much time inside decreases the time you spend outside enjoying nature. Bird watches monthly has had a decrease in subscriptions the @DATE1 because people are not interested in nature anymore. In a study done by @PERSON1 and his collegues at @ORGANIZATION2, @CAPS2 of @CAPS3 spend almost @PERCENT3 more time indoors infront of electronic devices, most frequently computers, then they do out doors. @PERSON3 says, @CAPS4 to the new advancements in technology, people are to spend more time indoors than outdoors and that percentage will most likely increase as the decade proceeds. Finally, spending so much time in front of the computer leaves you less time to interact with family and friends. In @DATE4 more than @PERCENT4 of family ate dinner together now, only @PERCENT5 eat together usually because they are in separate rooms in front of a moniter. This also leads to higher crime rate, believe it or not. Because young children and adolescents dont have the person to support and guide them because they dont spend time together @CAPS4 to the frequent use of computers, there is a @PERCENT6 chance that child will commit a crime compared to the @PERCENT7 chance a child would in @DATE5. Do you want that for our youth? Now @CAPS1 a world where people jog together in the park, as they jog, they see a group of bird watchers huddled together under a tree. As the joggers proceed, they come to a pavilion and see a big family celebrating the @DATE2 of a family member. This happy thought wont become a reality if people spend too much time on their computers and less time exercising ,enjoying nature, and less time interacting with family and friends. So, local newspaper I encourage you, to encourage others, to get outside and spend less time infront of the computer. You have the power to make a difference in your real lives. But the question is, will you?" 6 6 12 +560 1 "Dear @CAPS1 Newspaper, @CAPS2 though computers have many benefits, they also have many faults too. I believe that computers and the tecnology these days have many more negative features that positive. Some of those faults are it's bad for your eyes, don't spend as much time with family and excersising and the usage of going outside is less often used. Yeah, I get it that computers are very useful but they also kill your eyesight. If you haven't notested more and more kids have been getting glasses and contacts, due to the use of staring at a screen @CAPS2 day. I know more than @NUM1 kids that have glasses now, I also know that over @NUM2 parents I know now have glasses for the same exact reason. Using these computers is great for looking up your homeowrk, but if you stay on it for over an hour or @NUM3 a day you'll probibly become addicted to it and eventually you'd loose your eyesight. The usual time a kid spends on their laptop a night is about @NUM3 or @NUM5 hours and the time they spend with their family is maby an hour if the parent are lucky. Personally, I feel tecnollogy is the reason parents and kids are less connected. @CAPS2 the kids go on the computer is go on @CAPS3 or @CAPS4 and talk to friends that they see eceryday, so I don't find their friend, mostly the girls but why not just talk to them in school since you see them for @NUM6 hours everyday. The use of technology is being abused! the computers were invented for knoledge not scandeious ""webchats"" or ""@CAPS4 pages."" The world would be so much happier and mentally fit if we stuck to original idea of tecnology. Now kids don't even take a faststep outside their bedroom afterschool, its pointless! Most people even eat in their room so they can talk to people. So thats taking the parents time away from their kids. Now that you have read what I had to say about tecnology now a days, wouldn't you agree that it just takes time away from your actual life? I think it does and hope that you agree with me. " 4 4 8 +561 1 "Dear Newspaper @CAPS1, I believe that the computer is good for the society because, @CAPS2 and student's do most of the studies online. We spend most of our time with our family and friends so we want a little bit of time to ourselves. We learn much more on the computer because it has a lot of facts. After reading this essay I hope you will agree with my position. @CAPS2 student's put most of their notes on a laptop and study what they did in class on the computer. @CAPS6 they need to look something for history class they have internet. High @CAPS3 @CAPS4 don't like going to the library so they go on the internet as there source. So @CAPS6 a student has a project due and the teacher wants it neat the computer will write the project neatly. The computer/internet has became a big source of learning to our society don't you agree? Our time most of the time is spent with our families @CAPS7 not our friends came over. Go outside and play with them, sit down and play games. Our families we are so little bit of time to ourselves computer won't hurt nobody. We don't on forever we friends or search something useful @CAPS5 we talked to our families @CAPS6 we go online searching for they couldn't fire. People countries to see @CAPS7 enough to visit for @CAPS7 they wanna that country they need a resource that is up to date. A computer is constantly updated with new fact's about everything. I hope after reading this you will agree with my position. Mostly every person has a computer and it does not effect there lives a lot. A computer is a great resource for the public. People wanna meet new people so they use a computer to do so student's want a great grade on those project so they wanna present it nicely. I believe agreeing with you be a very good choice." 4 4 8 +562 1 "Dear @CAPS1 @CAPS2 @CAPS3, @CAPS4 you know @PERCENT1 of people today use the computer for necessary reasons? @CAPS5's true! @CAPS5's a fact the computer can help you with keeping in touch with friends, getting the latest news, and even gives you map access. Let me tell you some important facts about the computer. Of course, we all have friends in different cities and/or states! Instead of over charging a phone bill, many people keep in touch via email. Email is high tech, and super easY! All you need is your friends email adress and you can send them anything from a friendly hello, to @CAPS1 pictures of the family. Teens love to chat with friends and they're able to get to know each other better through the computer. Sites such as facebook are certainly popular with this generation of teens. The fun messages are what makes everything so great. Keep in mind all the avaiible ways to get in touch with friends and see why the computer is so great. Everytime I log onto the computer I'm able to see the latest news updates! I remember going on and seeing something pop up about my favorite band breaking up. Thanks to the computer I got to read all about @CAPS5 and I was extremely glad I'd seen that because if I hadn't I wouldn't of got to see their last concert. While I do understand, the computer @MONTH1 not be the healthiest activity, @CAPS5 definaltly is a great news source and everyone reads the news whether @CAPS5 be political, or about celeberties. Knowledge about what's currently happening in our country, and exercise is equally as important therefore, I'd be the first to support the computer as a possitive effect on people today. Have you ever been lost? Maybe you didn't write down the correct directions, or couldn't remember. Next time bok up directions on the computer! @CAPS5's so helpful and could really save you a hastle. There're so many websites that have maps you can print out, such as map quest. @CAPS5's a much easier, clearer way to understand where exactly you need to go. In my opinion @CAPS5 can help so much and @CAPS5 would be the right idea to go cheer @CAPS5 out today. Imagine all the places you could go just by getting a map online! Keep this in mind as one of the many great things about the computer. Now that you know some posotives about the computer, remember how they could benefit you! Being able to chat with friends is one of the best! Don't forget about hearing the latest news, and finally, never get lost again, just print out a map. There's no doubt in my mind the computer has a very possative effect on every one! The time is now to get out there and pick up a computer for yourself!" 5 5 10 +563 1 "Dear Newspaper, I think Computers are good for many things and are useful for anyhting. I believe this because every year new and exciting @CAPS1 and websites are created and make life easier. For example, ""@CAPS2"" is a way to communicate with friends and family. For me I have family out-of-state, and I am happy when I go on @CAPS2 and speak to them. Or I can also talk to friends after a long day of school. Another example is ""youtube."" On youtube They have how to videos that show you step-by-step instructions on anything, even on news and music entertrainment. Other @CAPS1 like word, help you set up writing essays and @CAPS4 stories. On powerpoint it lets you make slide show videos for school projects to presentations. Even excel let's you make graphs and any char t imaginable. And let's not forget @ORGANIZATION1. @ORGANIZATION1 helps you when you need info on a person, place, or thing. And by useing @ORGANIZATION1 it helps you when you need information for other @CAPS1 like word and more. See, computers help everyday people wiht everyday life." 3 4 7 +564 1 "The question is does computers have a positive effect on society? Yes computers definetly have a positive effect on society. Computers teach hand-eye coordiantion, give people the ability to learn about faraway people and places and allows people to talk to other people online. Computers put a positive effect of people. First, Computers teach people hand-eye coordination. I mean, computers help people learn how to use there eyes and hands t the same time. A survey conducted by @PERSON3 shows that @NUM1 out of @NUM2 people have better hand-eye coordiantion that use computers them that don't. Proffessor @PERSON1 says ""people that use a computer are much more coordinated than any othe person, it is a great discovery."" You @MONTH1 be thinking that s computer would make you less coordianted BUT, computers really help hand-eye coordination in people. In conclusion the more you get to learn hot to use a computer the better hand-eye coordinated you will be. Second, computers allow people to be able to learn about far away places and people. i mean that a computer can help you learn about a faraway @CAPS3 without paying a fortune in money to go the @CAPS3. I remember the time @CAPS4 my mom and dad was going to go to @CAPS1 to see a lot of the landmarks and my uncle came to my house with a brand new computer and my parents ended up staying home and saved themselves a large amount op money. Famous explorer @CAPS2 smome says ""before I go anywhere I always google it on my computer to learn about life, climent, etc, on the @CAPS3. I know you @MONTH1 be thinking that it would be a better experience to go to the @CAPS3 but, it is really expensive to go to very faraway countries. In conclusion, computer can help you save money and help you learn. Third, computers lets people talk to other people online. i mean people go to special websites just to talk to friends. A survey done by @ORGANIZATION1. Shows that @PERCENT1 of people talk to other people over those websites. aAmous social worker @PERSON2 says ""@CAPS4 people use these websites it helps them with their vocabulary and social abilities."" I know you @MONTH1 be thinking those websites are dangerous is at, viris software can prevent danger. In conclusion social abilities are up with computers. Lastly, computers teach people about faraway places, help social abilities and learn hand-eye coordination. Computers can help society and learning so help the growth technology today!!!" 4 4 8 +565 1 "Dear Newspaper, The world that we live in today is full of technology. Everything from check out isles at the grocery store to coffee makers at home are being upgraded all the time. The technology has many great things about it, but theres also a huge down fall. The most common technolgy device is the computer, its a great thing to have but its also very bad. The computer can be used to bully, it can take time from exercising and it even takes from your social and grammer skills. We all know the websites such as facebook, myspace and @CAPS1. They sseem harmless but its really just a place for harassment. Their said to keep friends in touch, butkids use them to say hurtful things about each other. Half the kids in my eighth grede class have admitted to either getting bullied or bulling over the computer. If so many kids are getting hurt by the then why do we all keep using computers? Many kids @MONTH1 say they don't spend to much time on their computers but @NUM1 out of @NUM2 kids in my school admit that they do. Checking the computer is the first thing they do when they get home from school and the last thing hey do before going to sleep at night. All the time these kids spend on the computer is taking away from exercising and enjoying life as a child. I've seen many kids gain exessive amount of weight because they don't eat proper food they don't exercise and they shut down from reality all because they are obsessed with their computers. kids are even getting portable computers, thats how addicted they are. Do you want your kids like that? However, all these programs and websites that are on computers have a way to inneract with friends, and socialize. But all of this is taking away from your social skills, even grammer. Most kids and teenagers would rather talk over the internet thant face to face, and half the time they don't even spell word correct or use proper grammer. In the long run all this talking over computers is going to hurt them when it comes to school and getting a job. I know that computers are good for school because you can research stuff for projects and e-mail your job. But the time spent, kids getting bullied, and the now lack of social skills is not worth it. We need to cutback on our societys use of computers because it will help us all when it really counts. Just ask yourself do you want your kids getting bullied? Do you want to gain weight? Do you want to loose your social and grammer skill? Just ask yourself these questions and you just might change your mind." 5 4 9 +566 1 "Computers are not having a negative affect on society. In fac when you talk with someone online @CAPS1 helps build relationship within that person. A use for computer that is also use full is hand eye coordination. Education is also a useful thing you can use with computers. You can learn about faraway places and monuments. The myth is that computers ruin relationship between friends and family however, In some ways @CAPS1 improves them, when you go on skype you talk with some one online. By doing this you actually improve the bone between you and that person. This information proves that computers can actually suport replationships. Hand eye coordination is also something useful that a computer an teach when you type on keyboard your fingers inprove on reflectsel. If you continue to type your hand eye coordination will improve. Some people might say that a computer won't help you much @CAPS1 really is possitive to use @CAPS1. A computer is more educational than what most people would think. On certain websites you can see something that can teach you. If you go on a historian websites that someone could learn about different typs of people. Lots of critics say that a computer is not educational. However when you look at the facts a computer can teach a lot. @CAPS1 is easy to belive a computer is not a good thing. But when someone looks at the facts A computer is a great thing to own. If critics acna take these facts into consideration a computer is a better object than what most people say." 4 4 8 +567 1 "Dear @ORGANIZATION1, I think that computers can be a good thing and a bed thing for many resons. First i think it's good because it can help school work like to do a research and for other things that you might have to do for school. A secound reson on why computers are helpful is because it teaches hand-eye coordination. It also can have people talk to their family member from a other country through a web-cam. All their computers can be realy helpful they can also be bad for your health and family. I agree that it can give less time exercising, instead of being on the computer you can go to the park or walk your and many other things then just bring on the comuter all day. It can also distroy your interacting with family and and friend if you stay in the house all the time useing the computers and your family and friends want to spend some time with you and your just on the camper. @ORGANIZATION1 @ORGANIZATION1 @ORGANIZATION1 newspaper wher the reasons why i think computers can be a good thing and a bed thing. I mostly think that computers are a good thing because if we didn't have computers we wouldnt have most of the things we now have in the world if it wasn't for computers. That's why i think computers can be more helpful just depending on the way you use it and how much you use it. Those were the opinions i had on computers." 4 4 8 +568 1 "Computers they give you @CAPS1 and reasearch from a for distance from you. But is it good for you? Those who support advances in technology believe that computers have a positive effect on people. I believe they @MONTH1 be correct. I believe that a computer can be used by finding things out from far distances, it can also give hand - eye coordination, I also believe that it is ok to use a computer if you are just using it for reasearch or other needed actions. When useing a computer it gives you the advantages of researching and studying far away places. This is good because some people have intrest in places around the world. Also, @CAPS2 need computers now adays, thier teachers give the write up typed assignments, or power point presentations. Also, parents you computers for work or maybe to get away from work to take a vacation they need took book it some how. Also, some say using a computer can give you Hand eye coordination. Well, it does in fact when you type. Some @MONTH1 not know this hut typing is a skill, some people type fast some type slow and some are average typers. Also, to teach little kids maybe even some adults, people have created a typing game on the computer it will teach kids how to type. Also, some people who type super fast go to get test to see how fast they type the test gives numbers like seventy words a minute. People naturally type about thirty words a minute. I believe that people should be able to go on computers for needed actions such as research. Many kids have learned about these other websites such as facebook, I tunes, youtube, and twitter. Some become addictted so they never got off. Also, being on all of these websites and more try to give you things. that my give you a virus. Viruses can come in many strengths some can crash your computer some just send boat loads of pop-ups to your monitor. I feel that it is ok to go on the computer to do research or bok vacations. If you are addicted to other websites stop because you will crash you computer with one click of your mouse. Over all I believe computers are a great source to get information off of but should not be addicted so called toy. Computer have a positive effect on people. Just dont be addicted and got outside... and have exercise with friends and family too." 4 4 8 +569 1 "Dear Local Newspaper, Local newspaper do you think that the computer is a good technology in our generation today? Well I do not believe it is a good technology in our generation. Do not get me wrong. I do not like to go on the computer bat their are so many reasons why computers affect alot of children and some adults in this generation. Like one reason is when people are on the computer all day long they do not get enough exercise. That is why kids these days are so over wheight there are more than @NUM1 million children over wheight because of the computer . Like for me I use to love goin on the computer and I still do bat I see that the computer is dostroying my heatlh. A second reason why I believe is bad for the generation because there are alot of inapropreate sites on the internet, where kids that are @NUM2 and younger could be logging on to. I think that people all over the world should start enjoying nature, go travle the world. Start doing things that people cant do on the computer. I think that more kids should start interesting with family and friend more often. of talking to your friend all the time. My last and finally reason that is a big thing is going on in the computer is people bullying other people the internet, local newspaper have would you if you have any daughters, sons, grand and. If they was getting bullyed over that internet or concern them to kill them or hurty them. I think you would horribly and you would want that person to go to jail. For now on I am going to think when I spend all mu time on the computer how it affect my life and my family, friends. I belive other people in the world should do the same thing." 4 4 8 +570 1 "Your spending too much time on the computer your mom and dad well out. You relize it's time toget off and go outside. You spend about @PERCENT1 more or less on the computer each day, but @CAPS1 good reasons. You can multi task on it, you can talk to friends and family you haven't seen or talked to forever, and lastly, you can spend time outside as well as in side. @CAPS5 you were smart you would not listen to those experts Have you ever heard of the word multi tasking? It's were you can do more than on thing at a time, @CAPS1 example you car read and talk, or text and talk, or walk and be reading something. You have all these things you condo. Another example is when your on the computer you can listen to music and talk to friends or read. What you can even do is you can talk to your friends, listen to music, and do homework. What i mean when i say homework is when you have to type up an easy or something. The fourth and final examples is that about @PERCENT2 of us can multi task @CAPS2 of my friends told me that they just bought a laptop with a built in camera, @NUM1 now they can talk to people they haven't seen in a long time. ""I haven't seen my sister since she moved to california @NUM2 years ago, so i thougnt I would use the @CAPS3 on my laptop to se her."" @CAPS4 a mother of the @ORGANIZATION1. A computer or laptop can be good @CAPS1 talking to friends or family you haven't seen in a long time. Anouther from a student say's."" @CAPS5 you were smart, and understanding you would now why everyones on the computer so much"". When your on the computer and your friends start to talk to you about things you understand why, you ussaly don't see your friends unless its lunch"" or before class. Computers help talking to friends move easier than writing letters or waiting @CAPS1 calss to get out. You get off the bus and you relize that it's pur sunshine out. You decide to do some or all of your homework now so you can go out and play. Your outside @CAPS1 about a few hours. When you come in its around @NUM2:00 pm. You eat dinner and ya just want to unwind from the days gigantic adventure so you go on the computer. Ypu can go on the computer around like wild animals outside too. Only responside kids plan their time acordingly In conclusion it is important that you now that computers are good @CAPS1 multi tasking, talking to friends and family you havent seen in along time, and that you can go outside as well a stay inside now is the time to call, @CAPS5 you were smart you wouldn't listen to these experts." 4 4 8 +571 1 "Computers today are much different from computers back then. They help you with projects or homework but many experts are concerned that people are spending too much time on their computers. I think that computers help people in many ways, like teaching a hand-eye coordination. They're useful because people can talk to friends and family members that they haven't seen in a long time and computer skills are required in the real world. Hand-eye coordination is very important and using a computer can help people build up the coordination. This helps because if one has to type a @NUM1-page report, then one who has good hand-eye coordination, or typing skills, ""can finish a report in @NUM2 minutes or so. If one has poor hand-eye coordination, well that @NUM2 minute report will take about a few hours. No one likes to be sitting infront of a computer for a few hours. Everyone has friends and best friends that they talk to every day, But what happens if that friend moves out-of-town, out-of-state or possibility out-of-country? They might be forgotten or never seen from again. Well, thanks to technology and the advancement of computers, people can chat online on @CAPS1, @ORGANIZATION1 instant messaging, myspace or facebook. They can catch upon things, check out what's new, even see posted pictures of them. The same thing can be applied to family members who have moved away. Who wouldn't want to talk to friends or family that haven't been heard from? Lastly, having computer skills is very, very, very important in the real world. Skilled people who have a good knowledge of the computer world can get great jobs like a computer programer for the state, or they can create websites for their own jobs. Other jobs people with computer experience can have would be an editor of movies or @CAPS2 shows. That's big money there. No wonder schools have computer classes. It's to get students to have a good background of the computer. Computers are not that bad. They teach hand-eye coordination, lets people talk to other people online and can get people great jobs. Many educated people would agree that computers doesn't have a positive effect on people." 4 5 9 +572 1 "Dear leader of the local newspaper, I have heard the strange misconception that computers are ruining our society. I for one, think that this is a terribly made thought. To begin, the internet (provided with most home desktop computers) can teach us a lot about the world around us. Additionally, the whole fact of contacting others around the globe, as well as having a whole fun world to explore, makes computers more enjoyable. Finally, thousands of jobs around the world are either based on or work with computers. Due to this, computers are , without a doubt, beneficial to society. The first reason I need to clearly point out is that the computer holds tons of information that can't be found anywhere else. While books have to be republished as updates occur in the world, anything on the internet can be updated almost instantly, beneficial to students with school projects for subjects like @CAPS1, subsequently, people could actually go to school via online schools and colleges. Whilst regular colleges could cost around thousands of dollars in order to get in, online colleges are much rather cheap, affordable to anyone. Also, due to the high amounts of information online, schools seem to be growing obsolete as computers typically hold all information obtained in a regular school year. Because of this, computers are definately beneficial to society. To build up, the internet provided with computers can bring loads of pleasure to those who use it wisely. Because of the growing population of those who use computers, companies tend to make computer shoes, which usually attracts viewers by the thousands each day. This makes television seem obsolete as well. Another major thing is that software comes out for the computer almost everyday, allowing many things to be done by users. Software typically includes games, movies, and music. Finally, since staying in touch with others is a good thing, chatting with others across the globe is very easy and durable, allowing distant relatives to come in contact with you via various chat programs. Due to this, computers can bring loads of fun to users, and are thus beneficial to society. Lastly, due to the rising demand of computers, companies typically rely on computers for jobs. Since the internet population is growing, companies allow people to fill out applications and send in resumes in order to apply for a job in said company. Also, some jobs can only be done while online or using a computer. Many jobs these days, typically banks, rely on using the internet most of the time, and some actually are based in the internet. Because of this, workers can finish the job easily in one place, instead of having to around and going to a boring looking building to do a boring job. With this reason, why doesn't anyone else see why computers are beneficial to society? With all of these reasons, I hope you see why computers are beneficial to society. Education just become a whole lot easier thanks to the internet. If education is not what you seek, you can then use the internet to have fun when you are bored. Finally, jobs can be completed even easier, and makes workers more responsible. So, leader of the paper, do you really, along with everyone else, think that computers are a waste of time in life?" 6 5 11 +573 1 "Dear @CAPS1 of the @ORGANIZATION1, @CAPS2 has been a debate on whether modern computer activities are good for people or bad for the people. Some people think that it benefits society because computers can teach hand eye coordination, they can help people learn about faraway places, and allow people to interact with friends. Al of this seems to prove that computers are good for society, but truely it is not. People who use their computers too much can have some harmed side effects, including obesity, red eyes, and even can get cyber bullied. People are using computers to an extent to which it is bad for their health. The number one problem of the @LOCATION1 is obesity. It seems that people are getting fatter every day. Computers are definetly taking part in the problem. People are spending too much time on their computers and are spending less time exercising, enjoying nature, and interacting with family and friends. These people are spending hours and hours in front of a computer getting heavier every day. They start to eat their feelings because of how lonely they are. This process continues until the certain person can barely yet out of their chair. Obesity is not the only problem that is damaging their health, their eyes are being damaged also. It is obvious that more & more people are having problems with @CAPS2 eyes everyday. Computers are making this happen. When a certain person is on the computer for only an hour, they are damaging their eyes tremendously. The computer screen is straining their eyes horribly & for the people who are on the computer @NUM1 - @DATE1 hours a day are pretty much sending their eyes to blindness. When I go onto the computer for only @NUM2 minutes my eyes start to water. It is a devastating outcome of using a computer too much. Computers are damaging peoples health & @CAPS2 should be something done about it. Although computers aren't only damaging people health they are also ruining peoples lives. Bullying has been a major problem in the @LOCATION1 for many years. Kids would be bullyed all day in school and always had a horrible time. But when they got to go home they could be comforted by their family and friends. Computers have recently included a system where you can video chat with friends or @ORGANIZATION2. This can be a wonderful thing unless used in the wrong way. As I pointed out before kids are bullied a by in school but when they got home they were able to leave that horrid life behind and be a normal kid. Not any more. This new @ORGANIZATION2, video chat, @CAPS4, etc. has brought the unlucky bullied students a one way ticket to getting cyber bullied. I have heard of a case where a student was cyber bullied to such an extent that she suicided on the internet to show how depressed she was. Computers made that event possible. Video chat, @CAPS3, @CAPS4, etc. gives bullies a chance to make their prey depressed into a point where they consider suicide. I can understand why you would contradict my argument but I truely hope that you will be able to understand why this is so important. Obesity, straining the eyes, & cyber bullying should be in my mind enough evidence that computers are bad to get you to write an article about these horrid machines. They are causing a variety of problems in peoples health, mind, etc. I really hope you will consider writing this article." 5 5 10 +574 1 "You must be insane! Computers are very important to society. My first reason is, computers can be used for research. Secondly, can be made. Lastly, you can talk and video chat. These are my three reasons why computers are important to society. If you want to know more send on. Firstly, computers can be used for research. For example, what if your boss wats to find the of products ? All you have to do is go to www.google.com, and look it up! Is is that easy. Also what if you need to do reasearch on @ORGANIZATION1 for school? Instead of reading books about him, you can type in his name, and theres your information. In @CAPS1 @NUM1 out of @NUM2 kids/adults use the computer for research. This is my first reason. Secondly, purchases can be made. What if you would like to buy a plane ticket to @LOCATION1 to help? You can go on the computer and buy a ticket at your convenience. You can order order all types of that needed to @LOCATION1. Or that a relative/friend can have a. How way simplier than going out and doing it yourself. This is my second reason. Lastly you can talk and video chat. You own a other people, and you all in diffreent country need a a video meeting. What if you have relatives that live far away that you miss alot? You can have a video family. this is my last reason. I hope you consider my reasons why computers are very important to society." 4 4 8 +575 1 "Dear Local Newspaper, Computers have a positive effect on people because it teaches them hand-eye coordination, the ability to learn about people and places and allows for people to entertain themselves. As I said before computers are very useful for the advances of hand-eye coordination. Hand-eye coordination is very important in our current world because in order to play sports and type effectively you must have hand-eye coordination. When I was a boy of @NUM1 years I had survey low hand-eye coordination skills and my playing suffered because of it. Now after a couple yours of playing online my baseball, lacrosse and basketball skills have improved from playing online and practicing. Also my typing has gone up from @NUM2 words-per-minute. In @NUM3 words-per-minute. Allowing me to write reports faste and allow more time for revision. But the internet also allow me to search the web to make the aspect of my report go much faster... Though out people needed to suport their opinions and. Now the internet for a person to such to find facts relating to their topic. This bad of help can male school projects easier, make students be even smaller and give opportunity to help in need. As I got ready @NUM4 while my position paper this year. I realized I needed @NUM1 usually this would be difficult but with the help of computers, research can be made a whats let easier. Secondly, I learned so much while my @CAPS1 @CAPS2, like for example don't really pick the president. The votes they gave actually elect a spesculative to go to the @CAPS2 to. Finally, as the earthquake in @LOCATION1 I was able to donate through the @CAPS3 @CAPS4 website. These examples show how important the internal to learn about people and places, maybe give a helping hand. Finally, the last great thing about the internet and computers is that you can entertain yourself through online games and movies. My mom is always telling me I should ways to myself without dragging her into playing catch with me the internet and computers allow me to play online gones by myself. Secondly, movies on computers can be a real time if you want to around. These are the reasons why I believe computers are important for improving eye-hand coordination, learning about different people and places, and the ability entertain you self. Though my opinion will only count to myself I hope you will to stress the importance of computers in your future articles." 5 5 10 +576 1 "Dear Newspaper, I believe comuputer have made a great effect on people in society. I believe this because they make you smarter, they help with entertainment needs, they also give you the option to socialize with websites, and online chatting. theese are things people need in every da life and heres now. One reason why I believe computers benefitt people in society, is with the simple fact that computers teach you things. I mean sure you can pick up a book, but why? with a computer you can quickly, and easily type in what you need to know and within seconeds you have @NUM1 million sites that can tell you what you need to know. Computers can also show you places that you've always wanted to see and learn about, the computer can tell you an exact location and information about the area. I know your thinking to yourself. ""wow how cool!!"" but that nothing wait untill you hear what else i have to say! Computers can give you instructions on how to build stuff, step by step instruction to create a work of art. My seconed reason is computers can give you entertainment like playing games, watching movies, and tv shows you missed because you were at work or doing something important. My last reason why computers benefit society is with entertainment, you can make friends or chat with the ones you have, with websites like facebook, @CAPS1, @CAPS2, ect. Making friends or keeping up with the ones you have in a positive way help fight depression. If your always happy on the computer. Therefore you'll have nothing to be depressed about. Also if you have any questions at all that you have wondering in your @CAPS3 ask the computer and it will awnser your questions throughly, and leave you satisfied with an awnser. As you can see computers can do many great things, and what I said is only a few things computers are capible of just watch, computers will be apart of our lives more and more and if you can't use one you @MONTH1 have a hard time. please if you have a different opinion consider my decisons. Thank you for your time." 4 4 8 +577 1 "You say that computers are bad and does not help any one in these physical life but some people go on the computer to find yoga poses and diest tips and how does that not help them physicaly and mentaly. Computers they @MONTH1 get kid in a lot of trouble they chat on (@CAPS1, facebook twitter, etc...) but they also don't know whos behind the computers they spend so much time on that @CAPS1 thing. That they don't attention to life itself. Now there are good parts about the computer you can find things you need and you can check travel sites etc... so you can not say that the computer is all that bad it helps a lot of people. So you should really be consider judging the skills of the computer they really do help in life. And they do help people that have physical needs." 3 3 6 +578 1 "Computers are something everyone uses but there is a time when you get off and start expericing life. Computers do teach hand-eye cordination, let you talk to friends and family, and give you the chance to learn about faraway places and people. But it alos causes people to spend more time of the computer and less time exrcising enjoying nature, and interacting with friends and family. Excercise is a big thing in peoples life. It people, in shape and healthy @PERCENT1 of obeseity is caused by of the computers. Staying on all day sitting down rating. I think these should be a limit on a computer so people spend less time on the computer and more exercising. Most people dont know what it does to them but time they get unhealthier and weaker. They dont know that sitting down for hars and hars eating a bag a chips does time. Once they start doing it, it because a habit and eating and just go on the computer for hars and hars. Not only does it decrease the time peole spend exercising it also decreases the time people spend enjoying and the Computers are addicting you go on for five minutes and you forget all what you do before you know it you have @CAPS1 hours. When people go on the computers they forget all about things they do. Shopping going with you friends and family. Enjoying nature things and you that . It takes away your time that you can be going to the , going to stores restaurant the things you." 5 4 9 +579 1 "Dear, Newspaper I believe that the use of computer is so horrorable thing for the people of the world. I think this because they don't exercise enjoy the great outdoors and have good time with family and friends. When you are on the computer you are not exercising you body. This is a problem because @CAPS2 this ""no exercising"" thing does stop the life span could be greatly shorten. @CAPS1 @CAPS2 this doesn't stop more and more children will grow larger and not healthy. So the children care more about the internet the being healthy. @CAPS3 expert @PERSON1 said ""@PERCENT1 of children in school today are over @NUM1 pounds in grades @NUM2, when it should be only a average of @NUM3 pounds or less in grades @NUM2."" @CAPS1 @CAPS2 the computer craze does not stop kids will continue not to go out side and get to have some fun. Smart parensts are wanting their children to have fun in the back yard. @CAPS2 children are inside and not out side they with not get vitimans from the sun. The experts at @ORGANIZATION1 said ""@CAPS2 the children do not stop going on computers then they with never see the true beauty of the outdoors."" @CAPS3 you can see nature is some thing children need. Interacting with friends and family is important for everyone. Because @CAPS2 one family member is having a health problem and has to go to the hospital no one is there to be with them because they never talk to each other. One year I found out the my great grandmother died of cancer. I had no idea that she had cancer. And I wish I was at the hospital with her. But wasn't because me and her never talked. Don't let that kind of thing happen to you talk and have fun with you friends and family. So @CAPS3 you can see that the use of computers is horrorable because you life can end sooner, your children get fat, and you drift apart from you friends and family. So don't let this happen to anyone else. Tell everyone." 4 4 8 +580 1 "What if you're family all and to talk to them percent of people commucate online, and thats not a bad thing. Heres the thing, are you for or against kids/parents online for too long. I am all for this. Reasons being are lots of kids have friends that they talk to online, secondly kids have homework/projects that they might have to look up online, and my last reason for this is, some family might have @CAPS1 ect, so they can communicate online. My first reason for this is, a lot of kids have friends online that can't text or even talk on the phone, so this is another easier way to talk to them. Did you know that most kids communicate online now. ""I think the internet is a great things, I mean I would rather have my kids online than outside roaring the and getting into troupe."" @CAPS2 @ORGANIZATION1. @NUM1 of @NUM2 kids are online communicating with others. Without a doubt, kids bring home projects and homework everyday right? Wouldn't you rather your kid looking up information online, then have them guessing and getting it wrong? I know that alot of children don't have computers, internet or essy, or maybe their got allowed online. That's why they. I remember the times when I had a project due at school, and I guessed on. that didn't do my grade any good. So then I decided the next time I have a project to do it on the internet. And it worked, I got a much better grade then I did on the one I guessed on. Lastly, mostly everybody has on the internet and would live to and with them while. So even stay online too often your not on it for a bad reason, your on to talk to your family."" @CAPS3 I got internet in my house, I barly ever got to talk to my family. But just then, my son me to get one, and I have the chance to talk to my family everyday. @CAPS2 a recent of a computer. Some people do say on the computer for too long at times, and don't get out on exercise the amount a humane should. or they don't get out of the house as much as they used to @CAPS3 they got the internet. Yes but, it's a good cause, it's not like because forever. Also it's being used for good. Not for anything bad. I think the internet is a great thing, and it puts a effect on many people. Reasons are, kids have friends online to talk too, ""lots of that needs internet, and last of people have family online to talk to so it's now or get out there and your best pick. The issue grapple with is if you for or against internet acess! So get out there, and change now." 4 4 8 +581 1 "Are computers benefiting society? I believe that computers are actually not benifiting society. In this article I will explain how you will recieve less time exersising, less time with your family and friends, and less time enjoying nature just by being on you computers to much. If you are one of those people that love to be on the computer as much as you can? Well, think of it this way. You spend so much time on the computer that you recieve little or no exercise! Everyone needs to recieve a little bit of exercise in order to fit and healthy. Our country's obesity level has gone up since our high-tech computers have come out. I believe that this is one main reasons of obesity. This is a major concern in our high-tech, computer society today. Besides you recieving less exercise, you will also recieve less time with your family and friends. I understand with your family could talk to them on facebook but you need interaction by talking face to face. This is one of our basic needs as an individual. Your family is going to be by your side no matter what. But you need to build a strong relationship with your family in order for them to be there for you. This is only going to happen if you interact face to face with them. The same thing goes for friends. This is another nacessity for basic needs!!!! Everyone should have some relationship. Lastly, everyone needs to enjoy nature! It is a beautiful sight that everyone needs to expirence. Being trapped inside the house to be on your computer is a terrible thing to do. The beauties of nature are amanding everybody but @NUM1 of people don't take the opportunity to enjoy it. Being outside and enjoying yourself is a big thing for your body to survive. You need to sook up the powerful rays of the sun and have a life changing look around nature. But @CAPS1 of this will happen if you stay on your computer @NUM2. In conclusion, computers are not benifiting society. People recieve little or no exercise, interaction with friends of family, and a chance to enjoy nature. Everyone nedds to have these needs instead of fucusing all on the computer." 4 4 8 +582 1 "With the click of a mouse, you can access the internet. Computers and internet are a recent innovation. You could probably find one in a common household. They've improved and gotten popular within the last twenty years. I believe they greatly benefit society. Computers provide an easy way to learn and communicate. Think about how life would be in the @DATE1 without computers. Different, right? I don't think I could have written such a great research paper without the use of a computer. The internet has many helpful sources; such as databases, encyclopedias, and articles. You can find information on almost any topic. The computer makes this easier for us to do. You can just search key words, and you have what you're looking for. Its faster than skimming through twenty books. Once you find what you're looking for, you can paste it into a @CAPS1 @CAPS2 document and print it. It's as easy as that. Another benefit of computers is communication. I have found this important over the last few years. A family that I have been close to my whole life had moved to @LOCATION1 due to jobs. Thanks to internet, I have been able to keep in touch with them. Im sure thousands of other people have been in the same situation. Whether it's on email, @ORGANIZATION1 instant messanger, or facebook, people can communicate with others all around the world. It's more convienent than having to time your phone calls so it's a good time for both of you. If we didn't have this connection with forgein countries, everyones lives would be different. Computers haven't just changed personal lives. They change the medical field too. This has greatly benefitted our society. Scientists and doctors find out new discoveries and what advances have been taking place. Doctors use computers to plan and perform surgery procedures. Computers have helped advance and improve the medical research and diagnosis. This saves the lives of many people. @PERCENT1 of tests that have taken place to research a dicsease use a computer of some sort to break it down. The technology of computers has benefitted todays society and has helped people achieve great things. It keeps people all over the world connected and helps them learn. I hope that you see how computers have molded and helped the world today." 6 5 11 +583 1 "Dear Local Newspaper, I agree with the experts in people staying on the computer to much. The reason why is family and friends are distant, mood swings can occur and also being overweight, finally computers can do a lot of things @CAPS1 far. To be on the computer too much, your family will start to worry about you. If you were to stay on a computer for a whole day, taht causes people to think otherwise of how you are. Also if you were to stay inside on a @DATE1 and your friends come over but you say, ""I don't wanna go out"", there just drifting away slowly. Since I am a teen I stay up texting and talking and going outside and I hate to see on of my friend's on the computer when I wanna hang out. When I was @NUM1 or @NUM2, I used to always be on the computer for like days to weeks, until my friend's and family said don't let this get to you. I had a friend who was a good athlete and very funny and nice, but when his mom got him a computer, I didn't want to be his friend. When I was @NUM2 I use to get mad at everything if I couldn't use the computer, it was like I was a brat. Also I used to be big, (as in overweight) because I never went outside to exercise or in my own room. The reason being on why I stopped being his friend was he to get mad if I come over there to ask if he can come outside. Also when he did come outside he used to never do nothing or run because he was always @CAPS1 tired, @CAPS1 what I am trying to say is the computer can really change people in a lot of bad way's. The last thing which makes everyone change is what computer's can do now. For example, a game called @CAPS2 of @CAPS3 can get you addicted @CAPS1 fast, you barely do anything elese. Another bad thing is @CAPS4, sure you keep in touch with friends but if you stay on too long, it's basically hooked you into it. Lastly online chatting room's or games when you can create a person to look like you makes you think that's gonna be your life from now on. Also people think that computer's can do anything it really can't, everything a computer can do is like a drug it's addicting. Well I just gave you a little thing of a lot of thing's a computer can do but to refresh your memory I'll say it again. A reason why I agree is family and friends seem distant to you at times you get mood swing's and less exercising, lastly what a computer could do now. Since you know now of the danger's that can happen I suggest you rethink about computers." 4 5 9 +584 1 "Dear newspaper, I disagree with you about computers. I think that computers are helpful with projects, homework, or letters. For example you can use a computer to help you with projects, if you have a project to do and you don't feel like going to the library, you can use a compater to look up information on just about anything. And you don't have to draw pictures, that's what printers are for. Also when you have homework most kids or teenagers, even adults don't like doing homework, thats what a computer do for you can just look up the anser online and then your done in no time. Let's say you have to write a essay I know nobody likes to write essay's by hand you can type @CAPS1 and design @CAPS1 with your own designs and make @CAPS1 look nicer than you writing @CAPS1. Further more I know nobody likes to keep up with and if you lose @CAPS1 then you have to start over and that takes forever to do especially if @CAPS1's due the next day, you get bored and you don't feel like writing @CAPS1 over and you get mad because you already did @CAPS1. And when you had @CAPS1 in you mysteriously find you other paper that you finished and lost and @CAPS1 makes you so angry. And then you have to worry about if someone store @CAPS1 and copied @CAPS1 and put their name on the copied one but changed some of your ideas around so that they wouldn't lose major points and grade drops from a @CAPS2 to a @CAPS3 in no time flat. Lastly you can use a computer write finds of letters. You can write a that and people's report card's if your a teacher, and you can also write a letter to friend that mights have moved away. Therefore the types of letters you should be writing are love letters to yor wife or girlfriend at work or in school and @CAPS1 fast too instead of writing @CAPS1 and then you hards start to the worst kind of way. So instead you can write @CAPS1 fast and they get @CAPS1 fast if they have computer but if they work at a school then they can get because every school should have a computer so they'll be able to get @CAPS1. Another kind of letter you can write is a letter to your friend that you haven't seen in years or that has moved to another country or to another state so I hope now I have convinced you about why @CAPS1 is @CAPS4 to have a computer but as you sad @CAPS1 itsn't always @CAPS4 to be on the computer @NUM1 but once in a while @CAPS1 okay especially in an emergency if someone has just died in your family and you don't know how to get there use a gas, and if you don't have a gas go online and print out the directions so that you can get their and see which family member died and if you knew that so now that you know the importance of a computer. I hope you use @CAPS1 wisey." 4 5 9 +585 1 "Dear Newspaper, Computers! Computers! Computers! Computers seem to be the talk of the year. Many people believe that computers are needed for everyday life, but I would have to disagree. In my opinion we do not need computers. The effects computers have on kids and adults are astonishing. Humans today are not spending as much time in nature and excirsising for a healthy body and a healthy planet. Also, as us kids are growing up, we have too many advantages because of computers. Thirdly, so much money is being used towards computers and not whats truely important! As you can see these three reasons alone should persuade anyone to believe that computers are harmful to all areas of life. First off, as we continue to use computers our natural environment is going to waste. The effects on nature and people are horrible. Polution is being spread all over the planet! People are becoming addicted to computers. I know it will surprise you when I tell you that the average person spends about ten hours on a computer a day! This is about half the day! This is a terrifying effect on people, because now these computers are brain washing us! Instead of going on the computer all day, we should be going outside to enjoy fresh air and the sun. Their the more, computers have us sitting inside all day and not getting any excirsive, which is a health issue we need to learn about the little things and be thankful for what we already have! Consiquently, banning computers would have a positive effect. Today, many are loosing their ability to write card forgetting about the simple things life has to offer would writing an essay with a pencil and paper be so bad? This @MONTH1 be old fashioned, but there are an enormous amount of great effects for using pen and paper. Maybe, the @ORGANIZATION2 states would become smarter and contain more knowledge. By writing everything out is proven to help remember important facts easier and for a longer amount of time, writing on paper is like writing it in you brain. Therefore, students, children and adults would benefit by having better handwriting. Since most information is typed on the computer people are forgetting how to write neatly, clearly, and resonsibly. @PERSON1 is an english teacher that has been with the @ORGANIZATION1 school since before computers, she has seen the horrible effects taking place on her students right befor her eyes. @PERSON1 told me, ""@CAPS1, students are completely absorbed in computers and have no life, energy, or reativeness in them anymore! Kids have too many advantages with computers and not taking the time. Last, but most definetley not least is my third reason as to computers are effecting humans negetively. Humans are sending huge amounts of money on getting the latest computer technology. Most of people pay chedes are being used for their computers. These fancey computers are very expensive, but also very useless. In my opinion many people are just following a trend. Instead, the money can be spent on schools, and especially the wars! Do you hear the humming of the computer the clicking of the buttons? Realize that these sounds are not what you should be spending! To wrap it up, computers effect people. There are many reasons to support this, but here are three. One is that people are not spending any time in nature! Another is that people of all ages are becoming brainwashed by this electronic and not spending the time to learn things in quality. Thirdly, people are using all there money on those computers! I know some people think computers are very usefull,but I know now, after you have read this article, you know how unuseful computers really are." 5 6 11 +586 1 "Dear newspaper editor, In my opion computers have a positive effect on people. The @CAPS1 allows people to communicat. People can learn bout things, places, even their own family. I also think that with a appropiate dosage it could help your body. If the @CAPS1 was never invented how would you talk to people from around the world. Mr. editor what if you were fourteen and had no friends. Well you could always go on myspace.com, facebook.com, or any other online community and make friends. Another thing that could happen is a family member or friend goes to another country for a vacaition and can't have long distance calls, you can talk to them on @CAPS2 or something like that. If your not really into using the @CAPS1 for communication you could learn. With the @CAPS1 you could learn a lot. You can even go to school online, but as I was saying you can learn about anything. One time when I had a project at school on fredrick douglas I used the @CAPS1 for help. I learned bout his family, his childhood, were he's from, and lots of other important facts. The @CAPS1 can be a good search enging but don't stay for to long your body needs you too. I think think the @CAPS1 better can your health. People always say if stay on the computer you get fat and unhealthy, but I don't think that. First being on a computer using the mouse is helping your hand-eye coordination. you can also look at diet plans, find medicine for your health, or find new ways to exercise your body. So thats why I think the @CAPS1 can help your body. All of these reason is why I think the @CAPS1 has good effects on people." 4 4 8 +587 1 "More and more people use computers in fact about @PERCENT1 of @CAPS1.T has computers, everyone uses them. I think they are very good to have because you can use them for emailing, jobs, and schoolwork. This is why I think having a computer is a good things what do you think? As I was say computers are good for emailing, even I.ming. lets say you play baseball and you forgot what time your game is. You can just push that power button and tree to your coach asking what time you need to be at the feild. Also theres I.Ming, its wen you can talk to your friends online its a great way to comunicate and meet new people. Emailing is great, its so hi-tect you can email one of your family members who live thousand miles away from you. I once did that my aunt's lisa was in florida and i asked her to send me pictures of the water and the beaches and she did, they were eye catching. Next reason why computers are good to have is for jobs. In todays world everything is ran by computers for example each registers. A.T.M. and car are ran off of computers. So having it for a job is great. Lets your tells you to fax over a copy can do it the computer within a minute i know my dads job requires of he keeps it all to his witch on his desktop on his laptop. This is why most jobs have computers. Do you are one? Lastly, school was computers . For example my teacher on his computer atendence, homework and . If he didn't have that, he would be lost. Its also good for the kids too. Every week in social studies we have to look up the presidents and i use my laptop for that. Did you know is a program were you can look at your grades and missing assignments? It's call power school. Computers are great for school. I think every one should have one. So what do you think about them? Are they amazing or what? I think are very helpful because you can use them for emailing, working, and school work. If it wasn't for computers we would really know as much as we do now. About @PERCENT1 of @CAPS1.T have them. Computers are gonna help you through life alot, welcome to the real world." 5 4 9 +588 1 "Dear the newspaper, Computers are great resources and are helpful in many ways. @CAPS1 we have the technology, why not use it? Computers give us simple yet very useful programs like @ORGANIZATION1 word or photoshop, outstanding abilities to look up any information you want, and keep in touch with far away relatives useing facebook or video chats like skype. Wouldn't it @CAPS1 you were just about to finish an essay for school when you mispelled a word and had to start all over?! Well this is what happened frequently when computers weren't around and you had to use a typewritter. Unlike typewriter, computers have programs such as michrosoft word, where @CAPS1 you make a simple mistake, all you have to do is press backspace. With programs like this, essays and flyers are extremly easy to make. There are also a lot of other programs like powerpoint, photoshop, or video-editing. These are real time. You can just put your camera chip into your computer and ""walaa"" instant editting. Programs that you can download make life a whole lot simpler and saves you a lot of time. Along with the programs to write a paper, you can use the internet and google to get the information! All you have to do is type in a shourt phrase and instantly get thousands of sites, all packed with information. And instead of spending ten minutes in a dictionary. com and find it in a split second. I took a tally and @NUM1 out of every @NUM2 kids use the internet at least once a day! Lets say you had a party coming up, but had nothing creative to cook for food. Just type in creative foods for a party"" and you will easily have hundreds of newe recipies to choose from. The internet is an extraordinary invention that is very simple and helpful to use. Antoher fantastic thing to use on a computer is social connections such as myspace, facebooks, or skype. This is a great way to catch up with old friends from highschool or college, or plan a big event while being relaxed at home. @CAPS1 you had soccer practice at night so you couldn't hang out with friends, but still had time to do a quick chat, this is perfect. Skype and other video chats are amazing. They are very convienent when you need to speak with someone all the way in @LOCATION1 for busieness and don't want to travel. All you have to to is open a link a ""bamm"" they're right there! These are great for buisnesses and long distance ralationships. I have an uncle and aunt who live in and we use skype to keep in touch. It a fantastic way to communicate acros the globe. Computers @MONTH1 make as ""look""lazy, but give us a lot. Saved time from their convenence to run around and get exersize. Computers have amazing programs that help us in all ways, internet for quick information, and social connections to keep in touch with family, friends and buisnesses. Computers are one of the most convenent things we have and I strongly suggest you would agree with me." 5 5 10 +589 1 "Dear @LOCATION1, I believe that going on the computer has a positive effect on people. It is also true that some people are not getting enough exercise. To prevent not getting enough exercise we should play sports or have family activities to atleast get out of our house. Everybody needs to stop being lazy and get active. I think that an excerise day should be mode and turned into a tradition. It could be twice a year or more a month or whatever is picked as long as there is one day @LOCATION2 or even more than @LOCATION2 can exercise on." 2 3 5 +590 1 "I use computer all the time and im healthy. Just because you use a computer more than getting exercise dosnt mean your not healthy. I think computers help a lot in life. Now I will talk about some of the things that computers help out with in life. Computers help out with finding out what the weather is and everything you need to no. It will even help you, if you have a job and don't no what time to goin for waste. Computers are also fun. You go to different and play any games. You can also talk to people on them. Or get email with is like getting real mail but from an computer. But there @MONTH1 be some issues, People are useing then to much. They need to get more exirses. So thats what I think of computers hopfuly people will get more exirse now." 3 3 6 +591 1 "Dear, @CAPS1 @CAPS2 people in the world use coumputers, we all know what computers are used for like surching the internet, games, work and school. Some people think that computers are good to use to help teach hand eye coordination, learn about other places in the world and talk with other people online. I am in @NUM1 grade at mystic middle school. I think that computers are not as good as some people think. Have you ever heard of computer camps. This is where some kids go because they are addicted to the computer. At this camp the kids are pulled away from the computer and pritty much forced to join gropes that do activitys like fishing or working together to solve a mystery. This camp is pritty much known as reliable for kids that are addicted to the computer. Another reason that computers are bad is because of the internet. The internet is a very dangerous. Place because you can chat to people that you dont even know. You never know the people could be messed on in the head. And try to find @CAPS4 where you like and come. you so you always have to be carful who you talk to other wise you could get. Nothing eve really goes right with computers, there alway getting slower and slower every time you use it. About every two years a kid or parent could go throw a computer. Also your computer doesn't have the right @CAPS3 it could get a vins and cost a person a few hundred dollars to get it fixed. Any thing could happen at any time with your computer, @CAPS4 of no where it could just die and not work and @CAPS2 of your data will be gone forever. Now that I have explaines my part of computers people will think different. Would you want to end up like one of those people, that are in a camp because they are on the computer to much. Or you never know you could forever and never be found. I alread know @CAPS5 much it is for coomputers to get fixed, but you might have to find @CAPS4 the hard way. That is why I think that computers just cause more truble for peolple." 4 4 8 +592 1 "Do you honestly believe that Computers don't benefit society? Well, they do. Computers help re-connect with people. A fabolous search engine and watch videos. Computers are growing into the human lifesyle. Computers help you re-connect with people. My mom uses facebook and she found friends she hasn't seen since the early @NUM1's! It's a great tool to talk to your friends in your daily life. Also, you can video chat ur webcam to actually see them. Therefore computers benifit Society. computers also have the best search engines. Doing research for a paper on @LOCATION1? Google and @LOCATION2 is all you need. Basicly giving you all the material for an A. If your paper hasn't come yet, the internet has the times and more! The only place to get millions of songs free for oyur ipod or phone is on the computer. one of the greatest electronics invented. The amazing computers also allows you to watch videos on the interet. You wont to have a real good laugh? well youtube is where you should go To learn abat history, todays lifestyle and more. If you want you yuorself can uplood videos too! A great site, great computers, benifits society. After my essay I can honestly say computers benifit society. Computers help re-connect with people, has a fabulous search engine and watch videos. Computers are growing daily. Helping the user get the most satisfaction. They do help." 4 4 8 +593 1 "Dear @CAPS1, I believe that computers take away from our lives in a negative way. New advancements in technology in general take away from our lives negatively. It can contribute to obesity, turn you into a couch potato, and can take away from your social life. It's not that computers arent useful, it's that people are using them too frequently. As a country, @LOCATION1 has more obese people each decade. A good way to lessen the obese population, is to get them out of that comouter chair. @CAPS5 all you do is sit on a chair and play flash games and watch youtube videos all day, your sure to put on a few pounds, Those few pounds do accumulate. @CAPS6 fast food companies like @ORGANIZATION1 contribute to obesity, so do computers. When someone eats a big mac burger, should they go upstairs to play a flash game, or go work out at the gym? Trust me, you arent going to burn any calories by clicking a mouse. People who often use the computer, rarely see the true beuty of nature. They are too busy shooting animated rabbits to go see real rabits. Would you rather take a walkin the park, or stare at a computer screen for @DATE1 and a half hours? The world is a beutiful place, and the more you @CAPS2 @CAPS3, the less you realize it. Being on the computer can even effect your social life. The more you socialize to people you don'@CAPS4 know on the computer, the less you know how to communicate to real people I know that I would want a real girlfriend, not a virtual one. You @MONTH1 be too into a @CAPS4.V. show that your watching on the computer, to even spend time with loved ones. Your family is much more important than a silly computer game. In conclusion, I'd like to say that (in my opinion) computers should be used a little less. Who wouldn'@CAPS4 want to be a fit, nature love, popular kid @CAPS5 people would just spend a little less time on the computer, and a little more time in reality, You could be a kid like that. (@CAPS6 I'm sure the @CAPS1 is an adult.)" 5 5 10 +594 1 "Dear local newspaper, I think spending to much time on a computer is bad. One of my reasons are Exercising. People should be outside jogging or working out and enjoying nature. Also should be socializing with friend. Now my second reason is spending time with your fromily. Being with your family is important because their fun go out with. Also they're good to socialize with at home or any other place. Sometimes socializing with people on a computer is not good as if with people because socialicing with friends and family is easier than sitting on a chair typing a bunch of works explaining about the convosation your having. And last my finall reason is being active. People should be active because it's fun and your socialicing with people and playing sports with or . It keeps you and healthy. Also being active can healthen your lungs and heart. For example football keeps your legs strong and built. And basketball keeps you quick and always running. It's good for you because being active gives you a healthier, stronger and in shape body. So their for I think spending a lot of time on a computer is bad." 3 4 7 +595 1 "Dear @CAPS1, @CAPS2 @MONTH1 be true that computers @MONTH1 make people exercise less, enjoy nature less, and spend time with family and friends less but computers do benefit the society in many ways. Computers help students with homework and projects and they help communicate with other people. Besides the telephone, computers do have some bad things about them, too. Students need computers to help them complete homework and class projects. They help students create good presentations and students can use the internet for research. Having computers will help raise a students grades and help them have a more successful life in the future. Parents and kids can communicate long-distance friends and/or relatives and they can talk to co-workers, bosses, teachers of their kids, and with their own children/parents, too. Having computers would create more communication with some people and help keep in touch with family members. Besides all of the good things, computers do have bad qualities, too. They can lead to children seeing inapropriate sites, and maybe even a virus that crashes your computer! Most of the programs to get rid of viruses block children and adults from seeing inapropriate sites (like gambling, pornography, etc). We need a computer that is pre-installed with the best up-to-date virus protection system, that helps protect children, teens, and adults from viruses, inapropriate sites, and cyber-bullies. Having these will make a computer almost perfect! The computers everyone needs should help students learn, keep raising communication between people and be pre-uploaded with programs to protect people from viruses, bad websites, and cyber-bullies. Computers are needed, and without them, our lives would be extremely miserable." 4 4 8 +596 1 "Dear, @CAPS1 @CAPS2 I think people need to see the realatey from computer's and the real world, they're a lot of people spending to much time on the computer and not spending enough time with there familys or doing things that are really important. While your on the computer your not getting any exsercise your not getting stronger your just sitting down. Thats one of the ways people get fat because there not moveing around just sitting down. When your on the computer all day everyday your missing out on whats happening with your family you miss out on every thing that's going on. I think people need to relax on spending time on the computer and get some exsercise or call one of your cousins brothers or even your mon and find out what really up because they are the ones that really matter! But you really can't tell people how long there allowed to spend on the computer you can only give an opinon and hope they listen." 3 3 6 +597 1 "Dear Local Newspaper, Technology is really a fascinating thing in life is it? Take a computer for example, they can check information online, give people the ability to learn about far away places and people, and even allow people to communicate. This absolutely benefits society. Well, it makes life a lot easier and faster for people. Don't you agree? Do you ever forget what your homework was or what time does something start and end? Well you can always checks information online, @CAPS3 you ever forget! So there, you can be on task and get ready early. For example, you need to know what time a movie starts at the movie theatre so you check online! Also, you can forget the steps of how to do something on your project or homework, so you check online! So whenever a student forgets, he can check online instead of coming tomorrow to school and saying, ""@CAPS1 I didn't know what to do,"" or, ""@CAPS1, I forgot how to do it."" @CAPS2 you ever wanna travel to places but you knew nothing about the place? Or how much would it cost? Or have you ever wanted to learn about a famous person, for example, @PERSON1? Instead of going to the library and reading through all these books to learn something, you can just go online! There are millions and millions of websites about places and people. Therefore, it makes it much easier to learn about a certain place, person or thing. The computer can be really helpful and useful. Plus, you can plan vacation, to a place and be sure you will have enough money by checking the price online! So you won't have to worry that you wont have enough money when you got there. @CAPS2 you ever want to communicate with your friends all day long without wasting minutes? In fact, you can communicate with multiple friends on the computer. For example, chat rooms can reach up to hundreds of people. Therefore, you won't have as much trouble trying to communicate to all your friends at a time on the computer than on the phone. Also, you communicate with people around the world. This includes your family members or relatives etc. @CAPS3 they live on the other side of the @LOCATION1. Plus, @CAPS3 you have not seen them for awhile or haven't talked to them, you can webcam or video chat with each other. Keeping in contact with important people or your friends is a good thing. The effects that computers have on people are really something you should thank god for. You can check information about something @CAPS3 you ever forget. You have the ability to learn about people and places easily and you can communicate with your family and friends!" 4 4 8 +598 1 "Dear @CAPS1 @CAPS2 you ever just wanna go out side and play a game of football with the ones you love? Well I know I @CAPS2. I believe that almost @PERCENT1 of kid are on the computer @NUM1 because they have nothing to @CAPS2 or it is addicting. The reson that I belive in this strongly true stament. That people are consurnet about how much time people spend on the computer and not with ther familys. One important fact about kid being on the comuter is how dangours it can be. Now a days kids don't relize how dangours being online can be for example I rember a time when my cousin said that he went to the movies to meat up with some girl he meat on myspace but all he saw was a, balet hewdet, sex ofender. That told him he was the one talking to him online. That he wanted my cousin to go over his house and play x-box and my cousin screamed hell no and leaft to my house cause the movie theater wher closer to my house. Know being safe is important. Would you rater have your children safe with you or with some stranger? Computer can also be helpful at time when needed for school or you job. Only people would think its fun to home and go on the computer for no reason. Second of an dont you want to spend time with children before they go to college or some thing? Just the littlest thing like playing a game of football will affect them to create a better with you and you chiled. Some thing you can @CAPS2 to get them to go out side with you is take the computer away for a week and have fun with your child. Play some of his/her favorite sports. So with the computer computer. without a bond with you and you chiled. So the time has come to make a let your kid be lazy on the computer and get into or go have fun with them?" 4 4 8 +599 1 "There has been a debate weather computers benefit society or hurt society. I personnaly agree with th statement that computers benefit in society. I think that computers do improve your hand-eye coordination. When you can type fast and accuratly you know your hand eye coordination is doing well. I remeber as a kid I would watch my grandmother type about seventy-five words per minute. Just from her year of practice, she becamr very computer coordinated. My hand-eye coordination is becoming a lot better because I have types for a long time. Scientists say that @PERCENT2 or people that type for at least four years become better hand-eye coordinated typing fast keeps your fingers quick and agile. I once read a book on computers and an expert said ""the invention of the computer keyboard could possibly be the greates hand-eye coordination practice ever."" @CAPS1 plus about computers is that they allow you to learn about far away places wtihout really going there. In school you can do projects on other countries without traveling just by using a computer. I once had to do a class project on @LOCATION1 and got a @PERCENT1 just by using a computer, people can look up information on countries for pleasure too. Mu mom just wanted to learn about @LOCATION2 so she just looked it up on the internet from her computer. You can research schoold too. My older sister went online to bok at collges without acctually traveling to the actual college states. Finally one more thing you can do on a computer is talk to people online. There is such a thing as @CAPS2-mail which allows you to write people over the internet on the computer. I remember when my baseball coach was going to tell me I made the team he just @CAPS2-mailed my parents because it was the most simple way to get it done. There is also such a thing as @CAPS4 (instant messaging) that allows you to imediatly talk to somebody and for them to immidiatly talk to you back. I remeber I used to go on @CAPS4 everyday to talk to friends. Also you can video chat which allows you to directly see somebody and actually talk to them physically. I read a news article on video chatting and an expert said ""video chatting is the single best way to communicate with someone without being right inforn of them talking with them. These reasons are why I think computers are a big help in our society." 4 4 8 +600 1 Daer People of the Newspaper I think that computers are good in some was like to look some think up adout the other side of the world. Like if you have to do a paper on the other side of the world a computer is up to date unlike a book so computer have a good effect on school kids and work so computer are good but other then that most people send all day talking to people on theme and don't go out side and get fresh air so computer have bad effects on some people and have good effects they all need for work and stoff so I think that most people use computer to much to talk to people and for gaming. But some people don't go on it for a long time and go out side and use a computer if they have to for work so the effects of computers is that to meny people use theme forever and talk to people and site and get fat from not going out side and playing and geting fresh aire so most people over use there computer on facebook and stof like that were they code go out side and site on a swing and txt and get fresh aire. 3 3 6 +601 1 "Technology is advancing every day. One main technilogical device that is popular is the computer. More and more people are using them, however, not everyone agrees that it benifits society. I believe that it does benifit us. One reason is that you can explore things at home. Before computers you would have to go to the library, find the book you need, and then search through it until you found the information you needed. Those things alone could take hours, especially if you don't live near on library. However, with computers you could just type it in on a search engine and find what your looking for. That could save you gas money because you don't have to drive anywhere. Another reason is that you can communicate online for free. Without a computer you would either have to go see that person by driving, talking on the phone, or texting, wich are all expensive. On the computer you have e-mail, @CAPS1, @CAPS2, and many more. All of them you can communicate in different ways. If you want to look at pictures, take quizes, play games, or talk, thats @CAPS2. And finally for e-mail, you can send people letters videos, or you can just talk to other people by typing like all the others." 4 4 8 +602 1 "Dear @CAPS1 @CAPS2 you @MONTH1 know becoming reaching not only are computers are very helpful machines. Computers supply people with online education, hand eye and creativity, and computers are one of the main To begin, computers supplied large amount of people with On the computer you can anything In fact my cousin @PERSON2, earned his degree in accounting through college @PERSON2 now has a well having job in accounting. Without the computer people would not be where they are in life right now. Not to menchion just @DATE1 I was assigned to complete a history paper on @LOCATION2. All I had to do was do around an hours amount of research on @LOCATION2's coulture and history. I recieved on a on my paper. Computer are very helpfull in helping people Which brings me to my next point, computers teach The computer has @CAPS3 different and The computer integration @PERSON1 is a stafisticated, not only be creative in your way but gives you @CAPS3 hand eye @CAPS3 people are for the creativity and they from using a computer. @DATE1 Computers have and @CAPS4 have shown, @PERCENT1 of people say the number are way to communicate without contact with @CAPS5 the the computer is not such @CAPS2, supplying with boosts creativity and hand eye coordination and is also a main way of comunication. So @LOCATION1 @CAPS6 editors, writers, and readers. Computers are helpful machines, more the mist are missing out on using a computer." 4 4 8 +603 1 "Dear @LOCATION1 @CAPS1, @CAPS2 are high tech devises that allow us to connect with friends and family in other places like france or @LOCATION2, allow us to research new information, perhaps for a school project in school project in school and even play addicting games, Computers have moderized our life, and it's affect on human being is dispicable. We have taken these simple devices to far and haven't used them in moderation. Did you know that at least an hour @MONEY1 exercise is needed everyday? Well @CAPS3 from all over the world are not getting enough exercise because @MONEY1 computers. Parents hard earned money is being wasted away on these extremely expensive computers, they can pay anywhere from @NUM1! What a waist @MONEY1 money! @PERCENT1 @MONEY1 kidnappings are caused because @MONEY1 to much information on the internet, do you want that for your child. Computers were once helpful devices that have now turned in to @CAPS4 worping machines. @PERCENT2 @MONEY1 the world's @CAPS3 are obese today. Why are they abese you ask? @CAPS3 are growing fast they are meant in be active and playful and without any active sport like dancing nor basketball they are going to grow big. Kid's spend as much a @NUM2 hours a day on a @CAPS2, and not keeping active, @CAPS2 pull kid's in like a magnet. This obsessive @CAPS2 time leaves no time to keep healthy active and fit. I remember one time when one @MONEY1 my friends, @PERSON1 got a new computerShe wouldn't come out and play basketball with us anymore she just stayed inside. Eventually saly became obese and got diabetes. Parents is this what you want for your @CAPS3? Do you want to pay for a machine that makes your @CAPS3 extremley whealthy? Times are tough, money is tight and electronics are expensive. A @CAPS2 can cost anywhere from @MONEY4 TO EVEN @MONEY3 that is a ton @MONEY1 money. Parents work hard hours, for exampe @NUM3 that is a long day and probably dont make enough money to be waisting it on a @CAPS2. An average houshold spends @MONEY2 on computers in a lifetime. Do you really want to be buying your @CAPS3 a machine that costs an outragous amount @MONEY1 money that will only make your @CAPS3 unhealthy and pull them away from their sports? I remember when my mom bught me a new @CAPS2 for @NUM4 dolllars and the next day it broke. What a waist @MONEY1 money. Help your @CAPS3, don't buy a @NUM2,000 dollar @CAPS2, keep your @CAPS3 active and healthy. Make sure your green stays in your wallet. Hey, a small window pops up you screen. Who are you, you respond in an voice, @CAPS7, your freind @CAPS8's friend says the little window. You respond with an @CAPS7 hi, hey you want to come over, it's the cook thing, @CAPS9 ok you respond. What's wrong with this situation? Well a lot @MONEY1 things are but this happens to @PERCENT3 @MONEY1 online chatters. Just remember online you can be whoever you wont to be you could be only ten, but say your @NUM6. So many @CAPS3 are kidnapped because @MONEY1 online chatting. You can talk to your @CAPS3 all. you want but it doesn't mean thy won't be in that situation. The less time your child spends on the @CAPS2 the less chance will have @MONEY1 being kidnapped, The @CAPS2 is so dangerous, would you ever put your child in danger. Computers used to be helpful devices full @MONEY1 information, enjoyment and talks with aunt's uncles, and even your friend @PERSON2. Now these computers have transformed into pursuading boxes full @MONEY1 hamful side affects. Do you want your child feeling the wind in their ears the sound @MONEY1 their heart pumping vigurously and the smell @MONEY1 grass on do you want them to experience the bright screen in their eyes and the thrill @MONEY1 just beating level @NUM7? Do you want to spend @MONEY1 on unhealthy contraptions? and lastly do you want your @CAPS3 put in danger by simply just using a @CAPS2 at home. Computers are @CAPS4 morphing devices that take away @CAPS3's points in life. Do you want thet for them." 6 5 11 +604 1 "@ORGANIZATION2, @CAPS1 are many reasons why the computer technoligy benefits the society. For starters, the newspaper companies use computers to write the @ORGANIZATION2 paper. Personally, I believe that computers benefit the society for many reasons. Computers help with education, career building, and helps people connect with family. By readin this letter, I hope that this make computers appealing to you. One reason why people benefit from computers is how they help with education. In a poll taken at @ORGANIZATION1, @PERCENT1 of the students say that computers hel htem with their academic career. Also, many adults use computers for an education too. In the student body in class of '@NUM1 at @CAPS2 high school, most of the students quit school before they could finish senior year. @PERCENT2 of those students finished their high school and college years through online classes. Another reason how computers benefit the society is by helping with careers. At @CAPS3 industries, @PERSON1, the @CAPS4, says, " I dont know where our business would be if we didn't use computers. " @CAPS5 to a poll taken by @CAPS4's of many high ranning industries, @PERCENT3 said that their business revolves around the internet. this could very well be the poll your @CAPS4 took. Finally, computers help families that are seperated, connect with each other. A marine said that he tries to contact his family as much as he can while he is at sea. If anyone deserves to contact their family that they haven't seen in two years, it should deffinately be the people in the army. In conclusion, the computer technoligy has benefited many people. A system that could regulate peoples computer use could be implamented but it would not make anybody happy. The changes could be made but, if anyone tried to take something important away, would you not do anything to stop it?" 5 4 9 +605 1 "Dear Newspaper @CAPS1, I believe that if you allow you self to use the @CAPS5 @CAPS2 @NUM1 minutes a day at the most that will allow you plenty of time to go outside & excersize. Useing the @CAPS5 is fine in moderation, but if you are constantly on the @CAPS5 it can't be healthy @CAPS2 You (unless its your job) you should only be on the @CAPS5 @CAPS2 @NUM1 minutes to an hour a day! So me people are on the @CAPS5 so much that they re eyes get worse & worse, Not only does it affect your physical health but it take hurts your physical @CAPS3 are some stories of blood shut eye, pink eye, or even @CAPS4 this is a very serious issue the people who are like this are called @CAPS5 @CAPS6 @CAPS7 to @CAPS8 @CAPS9 @CAPS10 over @PERCENT1 of people say they know or are someone who is a @CAPS5 addict, and scientists say in the next year that number will double or even triple. I know that people need to use the @CAPS5 @CAPS2 things such as email, projects, Ideas, or even models but really does anybody read a book anymore! " 3 3 6 +606 1 "Dear newspaper, In my opinion, I believe that kids and adults spend more than enough the on their computers I can see how it benefits you in some ways but it keeps you away from halwe, being outdoors and excersizing. It also can have an effect on your eyes in your later life. People go on @ORGANIZATION1, @LOCATION1, and @CAPS1 search engines and a little more than half those site's results are fuke. And the more people go on computers, the easier it is to yet caught pladurizing and that is a big thing in the community. Those are some ideas, but I have some more don't worry and details to go along with those ideas. People need fresh air, excersize for their body and to enjoy the outdoors. You can do all of that stuff if you just get off the computer. And instead of searching the places online and what their all about, just go visit them. You will get fresh air, excersize and experience. And after having that experience you will pass it on, teh real to ohter people will not get any of hot fake stuff. For example, you can search @CAPS2 online and they just have pictures food. But if you take visit there you will get to really last the food. Would you rather being sitting in a chair, staring at the computer, or having fun outdoors visiting places you have never seen before? You will never get or learn anything by pudurizing plus you will get than and get clicked. But if you think a little or maybe had experience with your writing tool, then you will learn and. That is also because kids are too lazy to it out because they are not outside doing things and they're inside and used to they becausethey are so their computer all the time. I guest I also agree with using computers because they give you skills they going to places don't give you. Like, you also need skills, mainley, hand-eye coordination for typing the long papers for collage and those skills will get you for in life. It's like a chain reaction, you type on the computer a lot, you will have good hand-eye coordination if you have good hand-eye coordination, you will do good in school, and it goes on. And you end up being successful. Another benefit with computers is the sales, more and more people are buying computers which helps the economy so I guess I agree but my opinion will stay strong with not using computers. So wether you have a computer or not, if you dont I prefer not to get one, but get off your bum and do some excersizing and visit those topical islands you always visit." 4 4 8 +607 1 "Dear newspaper, I read an article in the newspaper that said how people on their computers is a benefit and could be a bad habit. I actually think its a good idea about people being on their computers. I have a few reasons why this is a good thing. Whenever a student needs information on a certain topic, then they use the internet for help. Research is helpful because there could be a lot of sites on-line that could give you what you need. The topics typed into search engines will help find any information help to you. Whenever a teacher @MONTH1 need an assignment typed, you can type it on your computer and have it ready the next day. You can also find interesting pictures on what you're learning about. Sometimes the internet could have more information than a certain book you would look into. It would sometimes be a good idea not to search for something all night, or someones going to be mad at the electricity bill. Also, it would be good if you double check your information because it could be fake. Using the internet doesn't need to be for work only. People use computers to shop on-line, check times for movies, and talk with friends. People talking to friends on-line is good because they @MONTH1 not be able to talk however they want in school, and you @MONTH1 not get to see them on the weekends. Teens who talk on-line usually talk with their best friends. If one friend on a group of friends probablly in the same town as you, then they could talk by using their laptops they bring anywhere. Then you could probably hear about something that you (and your friends) have in common which @MONTH1 be coming somewhere that's by where you live. So being on the computer to talk with friends isn't so bad. Students who are young, usually get to learn to type. This could help them in the future if you need to type up an assignment for school, a job application, or college application. Learning to type is good because you also get to see which keys are where and wont need to look at them alot. Soon, you would be able to type a certain amount of words in a short amount of time. This @MONTH1 also be help with reading and understanding big words. In conclusion, I think, computers don't hace too much of an effect on people. As long as they'er not on there for more than two hours, then they're fine. Using the computer seems to have more advantages than disadvantages." 4 5 9 +608 1 "Dear, Newspaper @CAPS1 my name is @CAPS2, @PERSON1 and I think that this idea based on why people need computer is a good statement/ @CAPS3. My @CAPS4 oppinon is that same say people use their computers so much they dont yet exercise. When that is not true do to the fact that computers have. Programms on how to watch your weight. Stocks and etc also Technology helps people around the world on websites, programs such names as to video chat, @CAPS5.com for instant messaging. on the way teen stuff like computers help people for on video chatting, emailing people their rezemates to jobs on why and how their based. On showing people their recent jobs. And giving details on showing people reading this article is that technology of computers also help @CAPS6 save. Most reasons we need tech equipment is that people use it on fields such as the navy, @CAPS6, dealships, all over the world industry. Why is that good well my point of view is that business need that to order their stocks for store carriers and more. For @CAPS6 on field to use for @CAPS7 sean, pregnacy, pulse radar's and more. And on the negative point of those side of the readers are based on the mostly that people get addict to technology when the truht is that people really need technology look around you and everything in this world has mostly been made by technology and. the @CAPS8 is that people should agree. that computers help people, speak, @CAPS9, email, lives, help find family, friends, give directions, so on my point of view @CAPS9 tel your dean @CAPS1 and readers that interacting with technology. Is a good way nto control ways on how or what you do in the computers do to that in my way I make sites audio and interesting Technology can allows people on ways to help people. Find and create ways to making money or interesting positive out comes out of using person in this world goes in and thru out tech equip. These days, and to the people who have read this article should pass this story on to people who take technology on negative terms and to help them think about it positive." 4 3 7 +609 1 "Dear Newspaper, I think Computers are a good effect in our lives. Some of the reasons why I say this is the good to use when researching has fun games and activities, and they keep you in touch with long distant reletives. First if you just been given a assignment for school or work you @MONTH1 have to type and research on what ever topic a computer is a great source of knowledge if researching something or even checking your bills, @CAPS1, Computers are fun they have lots of games and activities for you to play and do. Just think you sitting in the house on a rainy day bored out you mind and have no thing to do. Just go on your computer and play some game or just find some activities you whole family could do. Lastly, Computers are good to stay in contact with long distant family members these days all you have to do is get a web cam and hours it up to your computer and now its they our grandma, grandpa, cousin, and uncle, or who ever is right there you can talk to them like you were on the phone with no cost. In conclusion, as you can see after all I wrote computers, are good for researching, playing games or doing activities, and staying in touch with family I @CAPS2 in my house the computer is mostly used for the web cam to see my grandma in @LOCATION1. Well I hope this letter changed you oppinion on this great invention, the computer." 4 3 7 +610 1 "Dear @CAPS1 times, @CAPS2 people think that computers are good for socity but I do not. Computer's riskes out weighs the benighits. My first example is my father. My father never turned on a computer in his life and his buisness is doing fine. My father and his father has all of their records in a safe. One of my fathers friends had everything on his computer. When a virus hit it all of his files were gone and along with his records. My father handwrites all of his papers. He says if i need to type something out i'll buy a type writer. Also on things like facebook someone can see everything that another is doing. This is were alot of people pose as someone eles and thus @CAPS2 people get kidnapped or killed. A very good reason is that when people have alot of personal information when a virus hitls that person knows everything about you that you put on. For exampel i was watching a show on discovery channel when a man hacked into a myspace acount and used that persons name to people and try to create a cyder to the pentagon, that person almost got caught but never was. So you can see why my family does not like computers. My family is always at the farm or in the barn working on we have no time to be on the internet the only thing you need it for is school work. What ever happened to the old fasion way no computer, no problems." 3 4 7 +611 1 "Dear @CAPS1 @CAPS2, I have @NUM1 reasons why computers effects have on people. First, computers are not good for your eyes. Second, the reason why people get on computers a lot. Third, there are so much games and places to go like myspace, facebook and even twitter and much more. Keep on reading so I could tell you all about my three reasons. First of all, computers are not good for your eyes because computers are like @CAPS3's is the something but not really because computer as more information and @CAPS3 dont really got so much information you could browse for. My second reason is that the more people be on computers the more blind they could get just for being on the computers for a hour or more. Third, some people dont even dare if they be on ocmputer they wont they might think that just becaus ethey wear gasses they wont get blinder but they are wrong they will get more blinder. As you reading you will find out my second reason fro being to much in the computer. My second reason, is that why people get in computers alot well peopel get on computers just to their or do their taxes but that is not good because just because your doing your bills or your taxes you to alot of information that people in other countries or state could get without you knowing , second is that people or get on computers to pay their bills or do their taxes they also get on the computer to maybe order something or buy a ticket to fly to a place they want to go like a vacation place or a business trip. my third reason is that they not only buy or order things but thet get in websites that will make their lives better like meeting soembody special or something else. As you keep reading you will find out my third reason for being to much and so long in the computers. My third reason, is that their are alot of activities to do in the computer for a example myspace, facebook and twitter are the most popular website that people get in just to meet new people and talk to old friends. In conclusion, people should not be on computer too much because of their health and their privacy and also to be sure not to meet strange people. " 4 5 9 +612 1 "In our socity computers have a big role. Some people think that this inhaces our socity and benefits the people in the @LOCATION1. Other people think computers are hurting the @CAPS1 citizens. I belive that computers can have our socity into the next and can inhance use to people. Comptores can benifit people by tracking hand-eye coordination give people the ability to learn about the world, and allow people to communicate to others. Computers can teach hand-eye coordination which helps people work with their hands. An arument on the of this is that computers take the place of exercise. For a lot of @CAPS2 a sport is their exercise and in every sport you need hand-eye coordination. Computers don't take the place of they inhance the persons ability to play for exsample to be a goaly in any sport you need fast mentions and good hand-eye coordination. A computer can help the save more goals by increasing their hand-eye coordination. Having good hand-eye coordination can also save you life. If a knife was you human nature world tell you to cover your head with your hands. This would you, if you had hand-eye coordination you away with your body to avoid the knife. Computers help you physically but they can help you mentally as well. Computers can take you around the world without leaving your room. Computers can teach go about culture and life that you didn't even know excisted. The cahan @CAPS1 can not aford the luexury of seeing the world first hand, computers let those people see the world from difient points of veiw. If a student needed to know all about one country they could go on the enternet and get a tour. A student could not go to the country so they went to the second base thing the computer. They can the wanted with one click. Family, friend and coligees are all people you need to talk to. Computers made communication easy for anyone. Now you can talk and see a person in video chat. This benifits socity because if you are talking to a buissness partner you can point to graphs and charts you made. You can also to see a love one that you miss. Their is a different type of comunication for every person. You can e-mail, @CAPS4, instant message, etc. Comunication connects people around the world it a small world after all. Computers have taken our socity in the next level. People can travel the world in a second, talk to anyone and have hand-eye coordination. Computers are growing @LOCATION2 keeping is on top. What would you choose?" 5 5 10 +613 1 "Dear @CAPS1, @CAPS2 people are using technology. A lot of them feel that it is helping and improving their learning ability, others disagree. I personally feel that computers are an advantage but also disadvantage. I say it can be an advantage because it is giving people a chance to experience above and beyond what they are learning. I say it is a disadvantage because a lot of people are on the computer and they don't get a lot of exercise. There are pros and cons to computers but manly cons. How long do you stay on the computer? @CAPS2 people find computers more entertaing than going outside and getting some exercise. Since technology is advancing, more and more people are going out to buy computers. A lot of teenagers are spending more and more time on the computer, playing games and going on their favorite websites. That is one reason why children from the ages @NUM1 and up are obese. They don't get enough exercise. That also leads into people spending time with your friends and family. I know alot of people like to spend time with their friends and family. But what if you were always on the computer and never made time to hang out with your friends or family. Your friends might ask you to go to the park with them, and you say no. Your friends are going to start pulling away from you. You might end up being lonely. Being on the computer constantly can ruins your life. If you are choosing the computer over other important thing, then I think we have a problem. Going on the computer all the time can became an addiction. I don't think people realize it, but it can. I can take over your life. I say this because when you have an addiction to anything, it is hard to stop. It is possible to stop all by yourself but thats rare. Majority of the times it is best to seek help, I personally think you should take all of these reasonings into consideration." 4 4 8 +614 1 "Dear @CAPS1, I am writing to you to inform you that I agree with the followings said on the writing prompt. First, I will be talking about how people use computer too much. Secondly, I would talk about people who talk online way too much. Lstly, I would say spending to much time on their computers. To start, people that use computers too much. First, people like to go on things such as myspace, secondly people like playing online games. ALstly, some people like to gosep to others online. For example, if you go to soemones house you are always going to see a young kid or a parent online somewhere or playing online gmaes. Also, peopel talk online way too much. First, they go to face book all the time. Secondly, they got ,myspace which you can get your identity stolen. Lastly, kids love to go on myspace it's the smae as myspace. for example, peopel might come to you and say do you have a so and so and sya can I get your eamail address. Certainly, spoending too much time on their computers is bad. first, kids might have problems online and to keep the problem to get worst. Secondly, might be argueing with a friend. Lastly, might nit be active but live playing or going other online websites. So @CAPS1 did you start to agree with why people should get active outside and have fun. In conclusion, this was why I agreed with beign active because being on the computer all day would get your and hard use too being on the computer @NUM1. " 3 3 6 +615 1 "Computers should be for everyone! Dont you think?, I do. And here's how @CAPS1 gonna convince you. Computers can basically be called a gateway to learning. Positive effects that computers have on peole is that, it teaches hand-eye coordination, give people the ability to learn about faraway places, and even allow people to talk online with other people. These great qualities computers have for people are fantastic. Also the fact that computers just keep upgrading as time goes by. So, by you reading this introduction, I hope you are satisfied with what I am going to in order to show you that computers are positive devices and can be helpful to everyone. Firstly, as I started in my introduction paragraph, computers help teach people hand-eye coordinates. This i believe is a good thing to know because without it, there arent many things you could do. For example fly a plane. You wouldn't be able to do that without both hand and eye coordinates because you would have to manually move the plane, and check to see if everythings in order by multi-tasking. Furthermore, this is just one given reason on why computers are positive towards everyone's benefit. Secondly, computers give people the ability tolearn about faraway places and people. This is also good for people's benefits because, theres knowledge in every bit of it. Your learning about others cultures, heritage, family history, and so forth and so on. This could also help you in the long run with any job you want to do because knowledge can get you anywere. It can get you very far in life so learn as much as you can, and I beleive computers can do so. This is another reason why computers can be positive. As for the last reason, I say that peolple can also talk to other people online on the computer.This is also beneficial because again, like I stated in my @NUM1 paragraph, you can learn many things that way and meet new people. Now dont you think computers can benefit anyone! I do and will always have the same opinion that is positive towards computers. For my conclusion, I would like to say that I hoped you enjoyed every bit of what I had to say, and you can also agree with the positive affects computers have on people. I truly beleive that computers are beneficial to all people and should continue to be around. it benefits society, and I enjoy every bit of using it. Thank you." 4 5 9 +616 1 "Dear Newspaper, People always believe that technology today such as computers are making more and more people lazy and not going out into the real world such as people who don't spend time with family, become very unfit, and also @CAPS1 websites and people you talk to can put you in harms way and you can get hurt. First, who wouldn't want to spend time with family and find out things that happend to them, @CAPS1 people because they are to busy being on the computer instead of going camping with the family, going to an amusement park and also some family gatherings. People who thinks that the computers is a helping thing to use but @PERSON1 said ""@CAPS1 people learn much easier from family of friends then from a computer. Second, @CAPS1 people are becoming @CAPS2 because of computers intead of going for a walk or nice day they sit in their room and sit on the computer and seeing virtual things instead of seeing things. @CAPS1 prove who are sitting on the computer people you might should be joining a sports learns with everyday. Last, @CAPS1 @CAPS3 that go on the computer and adults are getting because of the of talking to people you have never seen or really know about. When you are on and someone and live where you live they can be lieing and you could take them seriously and meet up with them and that is how you can get killed or go missing. Also, the computer allows you to put pictures and videos online and a lot of teens and adults are posting up on the internet very inapropriate pictures of these bodies and people should't be seeing that. I hope that if you or a family is always on the computer you should say you need to spend time with your family, you can become very unfit, and you can be at risk of getting hurt by people you don't know." 4 4 8 +617 1 "Dear @CAPS1 @CAPS2 @CAPS3, i do not believe that computers benefit society, I feel this way because I have heard that some experts are concerned that people are spending too much time on their computers and less time doing unproductive things. The main reason why I am against keeping computers around is because the people that use them the most are neglecting their families as well as their friends. The second reason why I am against keeping computers around is because they are too time consuming. Last but not least, I am against keeping computers around because people are spending too much time on the computers and less time exercising. Now, lets talk about the way people are neglecting their families and friends. Computers are very addicting, so I can understand why people would neglect their loved ones for them, though I can understand why certain individuals do it I dont think its right. I have many friends who would rather be on facebook or myspace than hang out with me. The web site listed above can really make you forget about reality. My friends will forget about interacting with any and everyone just to spend time on the computer all day. The reasons listed above tell you why I believe that computers should be taken away because of neglecting purpose. Now, lets talk about all the time that is being consumed by computer users. i believe that time is a very valuable thing and you should not waste it. So when I read about people wasting time on the computer all day I, myself, was very upset! Statistics show that the average teenager spends @NUM1 hours a day on average on the internet, statistics also show that the average aldut spends about @NUM2 @NUM3 hours on the computer a day on average. When I read the above statistics I came to grips with the fact that people spend too much time on the computer doing nothing. Now, lets talk about exercising a bit more. I, myself, know that too much time is being spent on computers. By me knowing that I am aware of the fact that children are not exercising. Exercise is very important for a growing child, and if they are not getting all the exercise that they need it can cause health problems in the future,. Statistics show that around @PERCENT1 of children under @NUM4 years of age are obese. The above reasons tell you why I believe that exercise is more important than spending time on the computer. Now, lets bring this letter to an end." 4 5 9 +618 1 "Dear @CAPS1: People are spending far to much time on computers. This go for children and adults alike. Just think about it anything you can do on a computer you can do without a computer. That and pepole need to spend mor time outside expiriencing nature. Lastly some bad things can be shown and can happen while online. I chalenge you to name one thing you can do on the computer that you can't do without. You can't even name one. Think about it you can reserch and find pictures from books and magasigns. Insted of social networking sites you can actualy go and see the person or if they are far away you can call them or write them a letter. To find out about current events you can read the newspaper or watch the news. If you like using computer disign programs try drawing a real picture instead. Lastly if you download a lot of music you can just but a cd or better yet go to see the band live. Face it you can't do ehything on a computer that actualy requires the computer. Artificial simulations are no mach for the real outdoors. On a computer all you can do is watch and even that is nothing compared to the real thing it's just a snapshot of it. Outside you can the gentel breses the warm sun the cool grass, you can smell fresh pine and clean air. You can hear all the other cretures surounding you. Going outside is better for you to. Outside you get exersize and vitimin @CAPS2 while inside you get fat lazy and sick. Can't you see how great the outdoors are? Computers can do more harm than good. They can show children inapropriat pictures and talk about inapropriat topics. They are even now using computers to sell illegal drugs. Children allso often use the internet irrisponsibly and to things that can dissrupt frendships and get them into truble. The computer has also made it alot easyer for kidnappers to find children and kidnapp them. They do this by pretending to be the childs peer then using the information the child him he will make almost a garunteed kidnapping. This is happening more and more frequently. The computer isn't as helpful as you thought. Computers are not realy benificial to our socity. They have no rel use that isn't alredy taken care of. The can not replace the real outdoors. Lastly they can be eisily used for bad even ilegal purpuses. As you can see computers should be used as much as they are being used by the general public." 4 4 8 +619 1 "Dear local newspaper, @CAPS1 a society we have come very for regarding advancements and inventions. One invention has made a large impact in the world and still ceases to amaze it's the computer. This piece of technology has so many benefits and positive effects on people that without it, everyone would be stupefied. For exomple, this device allows people to keep in touch using a common social network. In addition, specially designed computers can tend to peoples specific needs. Furthermore, they allow you to expand your knowledge. Therefore computers have positive effects. Just think of all the people you've emailed or instant messaged in the past week... Your dad, while he was on his busness trip, your aunt and uncle who e-mailed you pictures of their new born baby, your friends from camp... The list can go on and on. Computers like @CAPS2 or @CAPS3 provide social networking like @CAPS4, i-chat, video chat and more so you can keep in touch with your family and friends. For example, in my life I use my @CAPS5 to video chat with my sister, @PERSON3, who is a freshman at college in @LOCATION1. It's our way of keeping in touch instead of not seeing her for months on end or having to pay for plane tickets every weekend to go down and see her. With the computer keeping in touch with people in different towns, states, or even hemispheres is a piece of cake. However, computers also provide surfaces for those with medical needs. If someone has just been rushed to the hospital for an emergency, computers will be used to monitor that person. @PERCENT1 of hospitals nationwide say that computers are on essential in their facilities. For example, when my grandfather, @PERSON2 was being cared for at the @CAPS6 hospital, computers were used to make sure his heart rate, oxygen levels, and blood pressure were all in check. And, if something was wrong. the computer would alert the doctors. Therefore, computers are also a huge help in the medical department @CAPS1 well. Lastly, computers can expand one's knowledge. There are thousands upon thousands of websites; all of which can teach people different things. For example if you are going on a trip to @LOCATION2 and wish to learn about their culture before you leave, you can just type it into your internet browser on your computer and bam! You're fully prepared for your vacation now because of your computer. Also, in my life, my teachers assign @CAPS1 research papers requiring us to find information on a topic. Perhaps going the library isn't an option, how are you going to acquire the information? The answer is simple, go on the internent! Internent research is the top way amongst all colleges and universities to research. I was recently assigned a @CAPS7 @CAPS8 project by my social studies teacher, @PERSON1 where we got to choose my topic of community service and research it. Every student in my class used the computer in some way, shape, or form for their project. Thus, computers can allow you to get information efficiently. In conclusion, computers provide an abundances of uses. Primary ones include the ability to exchange messages with friends and family, help in the medical field, and expansion of knowledge. Henceforth, I believe that computers serve @CAPS1 a positive advancement in technology and its effect on people are rather great." 5 6 11 +620 1 "Dear @CAPS1 @CAPS2 @CAPS3, @CAPS4 you think computer have a positive or negative affect on people? I think it has a Positive affect. There are a few reasons for this. First, computers are used for education around the world. Second, it helps us connect with and meet new friends. Lastly, You can use a computer for world news. As you can see, those are just a few reasons. First, Computers are used for education around the world. For example some people use it to go to college online. Others use it to find information on things like egypt, where we cant go. Second, it helps us connect with, and meet new friend. We can chat with our friends, which is very useful. If we need to know what a homework assignment was we can just chat with a friend. Lastly, You can use computer to find out about world news. We can go and find out if something serious happened, like the earthquake in haiti. As you can see, those are just a few reasons I think that computers have a positive affect on us. I hope you agree with me. " 3 4 7 +621 1 "Dear, @PERSON1 I think that computers are good for people it helps them find where their for like a good to people and also with '@CAPS1' to show a computer @CAPS2 you go to look for a jobs you have experence with computers to get a good paying job to be fliping biggers @CAPS2 you got older I know I had I got older I whow to be a starter in life I want to get normal life even than no is normal also the computer is goodis look for like even tell you how it has a five star a @NUM1 star you dont want to go to. You rather go to a fire that is whyt a computer is so much more better a computer tells you I have hand good @NUM2 for if your is making fingers if pots of people use computers my teachers use computers every day on a regular they look send them into the computers and give them names. What I am doing the cmr's I of my teachers is this computer That is what I think which computers are good for people. " 4 4 8 +622 1 "Dear @CAPS1, don't you think that nature is better than spending way too much time in the computer? Well, generally speaking, I think it is and i'll give you only three reasons why. First of all, it's about the obesity percentage in @LOCATION1. Second, you can spend a lot more time with your family. Finally, you can enjoy what nature has to offer. I think that the great outdoors is the way to go because @LOCATION1 needs some exercise rather than spending time in the computer. Also because the obesity percentage rate is advancing up really high. In @DATE1, @PERCENT1 are obese or overweighted. Last year in @DATE2, it was @PERCENT2. Wow, the rate went went up like @PERCENT3 in each year. This info was online at www.tomatotalks.org. Another thing I would like to consider, spending more time with a family or even a friend is a good thing. All statistics show that spending time with your family anywhere especially at the dinner table is a great way to talk about your child's problem's in school, and also to learn their parent's mistakes too. Also share great laugh's. Finally the most important thing is what they will do for their future. Last, but not least, you can enjoy the greater outdoors, and also discover some of the most important creatures such as insects, reptiles, and mammals. These creatures are the most important things in our life to learn about. Also trees that gives us oxygen too. Mother nature has it's great benefits when your career is all about science. Computers are educational but nature is better!" 4 4 8 +623 1 "The people who are concerned about the bad on computers are right about a couple things, but good does come out of it like what is the miltary needs recruits for the army they can post up their ad on the computers that everyone will see, and what the people who drop out of school and they want a second chance they can appily for scholl online. My last reason is what those people who have a hard finding work they always look up the best job for them over the internet. Read More to find out how the internet is good for society. First, as the army keeps losing more and more soldiers in combat and they try to recruit people they can post their ad up over the internet. Sure they can mail it out but that would take forever for people to find out about it and learn about it. For example, they can post the ad up on myspace and have thousands of people looking at it in minutes. Finally, the internet is a great way for the miltary to recuit soldiers. Next," 3 3 6 +624 1 "There are many great things about computers. If we were to loose them then our lives would change dramatily. You can use computers for exercise then it is also up to the @CAPS3 on limits. Last it can save lives Computers are great, if we were to loose them. There would be no more internet. you would't be able to talk to friends on @CAPS1 or e-mail. Cell phone prices would go through the roof. We would technacly be going back @NUM1 to @NUM2 years. Last with out computers there would be more diffeculty in large companies Computers can help exercise. One way is we can find closest gyms on the internet. We can find what is healthy to eat right away You can also get one of those @CAPS2 fits for a computer. Also you can find free work out videos. Next, it should be up to the @CAPS3. It is their discretion if they see that the child is spending to much time on the comuter and gaining weight they can easaly limit it. they can say for very hour your on the computer you have to do an hour of exercise. Lastly the computer can save lives. Before computers medicine like tylonal was used for everything. Stuffy nose, headache, cold etc. Now we can go on the computer to find weather the medication is at all dangerous. You can also find the nearest hospital. Finally, computers can do a lot of good, even though it can make less unhealthy if you spend to much time on it it can save your life. It can also destroy companies and our lives, @CAPS3 can give limits and computers can used to exercise. So reading this essay please don't take away our computer" 4 4 8 +625 1 "Wouldn't you agree that spending time on the computer takes away half of your life? Going on the computer can have a negative effect on you! Personally I think not going on the computer benefits you, @CAPS1's more time for your family, going outside, and staying healthy! Certainly going on the computer will mean less time for exercising. For example, lets say you went on the computer for an hour, that hour could have been used to go outside and stay fit! think about the choices here; you could either sit on a chair and play on the computer or take a nice run and burn a ton of calleries! Statistics show that @PERCENT1 of people that go on the computer instead of getting exercise, are in risk for health problems including obesity. As you can cleary see going on the computer really isnt the healthyiest choice to go. Most definatly going on a walk or enjoying nature is better than going on a computer. A girl named @PERSON1, from @LOCATION1 ""I love to enjoy the beuty of the outdoors that god gave to me I wish I knew that years ago while I was a lazy woman on the. If you just even look out your window to see this beautiful god created for us you would want to go out there and enjoy @CAPS1! Everyone wants to live like there dying or in other words live life to the fullest! in order to do that you have to see life and go out there and experance @CAPS1, not sit on a computer! Without a doubt this world is gorgeous and @CAPS1 is worth while to see the nature! Everyone knows that family comes before everything! For example, you might love the computer but that love should not over power your time you spent with your family! One day on a @DATE1 night @PERSON2 was on the computer and her mother called saying, ""@PERSON2 @CAPS1's time for dinner"", @PERSON2 ignored her mom and chose to go on the computer! Now you really cannot give up time with your friends and family since they are so important! I know with my heart and saw that my family means the world to me and everyone shown more time for each family member, not the computer! Its now or never to decide if computers benefit society or not! With no computers you could have so much free time for your friends and family if you could only imagine! Most importantly @CAPS1 will not only benefit you but @CAPS1 will mean a lot to your family so what are you waiting for? Get off the computer and spend some qulity time with your family!" 5 6 11 +626 1 "Does computers have an effect on people? Do they have a good effect or bad effect. Dear Local Newspaper, I agree they have a good effect on people because you can learn from them, you can can look at maps if your leaving out the state there good to talk to people online, you can shop online. I don'@CAPS1 think adults spend too much time on computers than exercising I think kids mostly on the computer playing games and other activities, some people use computers for homework, writing papers, or searching for people. Computers are good ways to learn about people and words, there not just for playing games and listening to music, there for good use, you can look up restaurants and look at there prices, @LOCATION1 shows site you can look at episodes of @CAPS1.V. shows online. I think computers are better than books and dictionary because you can do all that stuff on a computer. Some people think computers are good things to have cause its fast and easy. Some people thnk computers are a waste of time on them. Computers are good because if you need to write a paper you can type it and print it instead of having messy hand writing, computers are good for if your in a rush to search something its fast. Computers are useful for anything like books, writing paper, websites, chatting with friends web maps, music, games and etc, they do have a good effect on people and kids. " 3 4 7 +627 1 "Dear local newspaper @CAPS1, I do agree that exercising,. I think that people exercising more, and spend time with family and friends. The issue to with is should more people sometime on their less time, exercising, enjoying nature, and interacting with family and friends should it be the other way around. The first reason why I think that people should spend more time exercising than on their computers is because I think that more to watch and watch the way they eat and keep that self fit because what responsible to see their kid eat and then out exercising and then then self. My second reason is I think that people should time enjoying nature then computer The reason I think this id because they would never would never know what going on computer. How can you never things do. My third reason is interacting with friends and family I think that people should friends and family then on the computer because interacting with friends and family you learn things that you never knew about then and you can places you never gonna be sure discover new things you never your life. For example over vacation I did things and things about my family and friends than I never know why because I people interacting I learned how fun they really are and intering and happy. Have fun where is the computer. Please don't your life live your life. It's now or never should 'people spend more time on or more time exercising. interacting with family and friends." 4 4 8 +628 1 "Dear @LOCATION1, @CAPS1 you imagine where the world would be without computers? Our daily lives would be dull and boring without new technology. Computers help society do various activities that would be impossible if we didn't have computers. They give us the ability to learn at home, connect with other people, and give a source of entertainment. From these reasons our lives because easy and convenient, which is what @CAPS2 people strive to accomplish. The ability for an average person to learn has greatly increased. It has gone from just being able to go to school to the @CAPS2 various ways to increase your intelligence on the computer. Programs such as @ORGANIZATION1, which teaches people how to speak a language, are available on the computer. These programs are like going to school, but more accesible to the public. To further help the public, there are ways to gain college degrees online. that how . Even if you go to school a computer @CAPS1 still help you excel in you work @CAPS2 sources of research are available on the computer and you like to the web a computer is a great place for fun. However, people still think computers are good. They claim to gaining on the other hand, the computer gives people website to help lose weight.They also say people aren't enjoying nature, even though there are @CAPS2 ways to appreciate on the computer. Lastly, it is stated that you dont . To conclude, computers greatly benefit us and are good. New technology is good thing and should keep expanding because of gaining the ability to , conncet with people and having fun, a computer helps the general public. Please, think of what i have said and buy a computer!" 6 5 11 +629 1 "Dear @CAPS1, @CAPS2 the ages, technology has constantly been evolving and improving the way we think. From the first simple telephone in the @DATE1's to today's touch-screen iphone. From riding horses to riding extraordinary fast sports cars and hwlet trains. The advances in technology have proven the sky have the limit the invention of planes. We have even reached the moon and left our ! Computers have only become faster and. Although more and more people are using one of our greatest technological advances, computers, believe it doesnt benefit socialy. I veherrertly believe that computers benefit. They have the ability in and teach us what seems like information, second, they have made the could a smaller place through communication. Last, they even have the ability to locate missing people. Computers are constanly helping society. They follow what technology to make life @CAPS3. First of all, computers are a benefit to society because they have the ability to and teach teach us what seems like infinite information. Today, when soneone know/wants to some first place they usually that's light the. This is because engines such as @ORGANIZATION1 have of limits to with much information on the topic being. This has not only made leaving @CAPS3, but has also helped in studying for tests for elementary school. Computers also of for the average. From banking to powerpoint computer with all! For this reason even older such as @PERSON1 find computers weird. Second, computers benefit society becuase they the world smaller through communicates. Sixty years ago, it could relative on the. Today, you can easily video a rective in @LOCATION2 from @LOCATION1 in less that ten seconds. Not only can you talk to grandma or grandpa but you can even see them smile what children can even such as @CAPS4. When there is a they can still talk to warry of. Finally, computers benefit society have the ability to locate missing people. The record earthquale in @LOCATION3. cries of mothers children whom they from. It is to computers that these families were scuniled. On many sites on the internet, @LOCATION3 set up person locators. These locators allowed you to write down your name disaster should over happen. Not only this you family. All they had to do me! Computers have even made our society. What move could. In conclusion, I strongly believe that computers society is because computers contain much informations and programs they have proven the earth is a ""small world after all"" and they have made the world safer. It is that many people are buying computers, so why don't you get one?" 5 6 11 +630 1 "Dear Newspaper, i am writing you this letter, about computers, in the hope that you will publish it. Over @NUM1 the people in @LOCATION1 has a computer, but are they really healthy? I don't believe computers are a good thing. People spend to much time on them & less time excirsing, enjoying nature & most of all, it's highly dangerous. I don't believe computers are a good thing because people don't excersise like they did. Some people spend @NUM2 out of @NUM3 hours in a daw on computers for others it's there whole life. People spend so much time on computers they lose touch with the outside world. Ever since computers came out, obestity has gone up. all people do is chat to other people & think ""they don't have to know what I look like.""They sit at the computer eating & eating. That's not healthy. I dont think computers are good also because they spend less time enjoying nature. It used to be when I had somoe free time, I could call up a friend & ask them to take a walk with me somewhere & they'd say ""sure! Now they say ""@CAPS1 get on the computers & we can take a virtual walk."" That's not the same as an actual walk with the wind in your face the fresh smell, & all the animals, at least not to be. Nature is a thing of beauty & if you don't enjoy appreciate it, it'll turn into something hideous. Nature used to be the most peaceful think now it the internet. I dont think computers are good because most importantly they're dangerous. Little kids, like myself, think they're grown up & go on computers & meet rapist, murderer, thiefs, all kids of criminals. Also people send hurtful & violent things to each otehr & it yo're on the computer alot of bad people can track you down. Also, the military & @ORGANIZATION1 keeps secrets on computers but if your smart enough you can hack it. Computers aren't safe for anyone or anything. Well, I've told you my main @NUM4 reasons why I think computers aren't such great things, they're not healthy, emotionally or physically. People don't excirse they don't enjoy nature & computers are highly dangerous. All I can do is hope you publish my letter so everyone can see my point of view & make their own decisions. " 4 4 8 +631 1 "Dear Newspaper People, I think that the effects that computers have on us are good. You should agree. One reason why you should agree is because computers are like teachers. For example, you can go on websites that teach you all kinds of things like math. Also you can go on cyber school or take college classes online. Another reason why you should agree with me is because on computers we can communicate easier. On computers, you can e-mail and use a webcam to talk to people. You can also have a facebook or myspace to chat and learn more about people. last of all, computers are for our entertainment. On computers, there are lots of games to play that are free. Also online you can watch movies and listen to music. Last, you can have fun creating games and stuff to share with everyone. Without computers we wouldn't be able to do any of those things anymore. I think that it would really suck and tons would agree with me. That is why you should agree with me that we" 3 3 6 +632 1 "People using computers is a good way for them to talk with distant relatives or friends, learn keyboarding skills, and research about far-away places. First, the wonder ful technology that computers have is amazing. They can surf the web in milli-seconds. This benefits people because if you were doing a research paper on china, many search engines let you surf the web at blazing fast speed, and in a little time, you could have all the information you needed. Scientists say that @PERCENT1 of computer-users have fast internet, and they reccommend it to other, first-time buyers. The computer that I use is a unique computer that was customizable to my liking. I like playing games and editing videos, so I got an outstanding graphics car that has outstanding speeds for rendering videos. This let me play games and edit videos, and my @NUM1 gb hard drive is capable of storing all my programs and projects, for future use. Doing many things on the computer can really help your hand-eye coordination. In fact, about @PERCENT2 of computer say that over a using a computer. they were to type @PERCENT3 quicker that they could before. Thats a very good number, but the average person woh types could write in @NUM2 in I have. I can type a that big in about @NUM3 minutes because it have been typing in other @NUM3. Computers are a big part of my life and I still have time to do other things with my family, and friends. The last thing that computers help us people with chatting with friends on websites, like facebook, myspace, and @ORGANIZATION1. They all let you share with all of your friends, and of you needed to, you could chat with far away friends or relatives. This helps because if you haven't talked to your cousin in a while, you can check up with him and talk about things. I have a causing who graduated college and is now teaching in @LOCATION1, and when our gets together, we webchat with him on @ORGANIZATION1 and it is helpful because we haven't seen him in @NUM5 years, and we all wanted to see what he was up to. He was also able to send us pictures, which helped because we all missed his face. So, blazing fast speed to chatting with distant relatives. These are key factors that show us that you can have fun on computers and still have time for family and friends." 5 5 10 +633 1 "Dear local newspaper, Computers have a good effect on people in our comunnite, from computers you can learn, talk to people from out of state or even out of the county, also you can learn hand eye cornation. Computer can help you earn in many ways one way you could learn from computers is students can go online and got information for their school projects by finding this information it can help the students get better grades. Also the students can use the computer as a way to study. There are educational games on the computer that kids play and without knowing this they are learning and studying for school. Another way you could too a is from online classes. This could help people also because do not have enough many to pay to go to classes. As you can see there are many ways to learn from having computer. The computer can also help you talk to people from out of the state or country. This could help famlies stay connected when they live so far away from you. My cousin @PERSON4 and my aunt @CAPS1 math live in @LOCATION1 and i hadn't met then until the @DATE1, when they came down. @CAPS3 that i have met them i am able to stay them through the computer. Dr. @PERSON2 says, ""@CAPS2 close with familys and friends not only important for you you health."" by haveng computers we could talk to our relative and help our health. When you get out of college people let go of some good friends because they could live in different state,. the computers can help you stay connected with them. Lastly, computers can help you with you hand eye coodination, when your hand eye cornation because you are trying to type a word. and by hitting the key you want you are learning this. I have sam kids with special needs useing the computer is help them learn hand eye cornation. there is a girl in my school named @PERSON3 and the help her by leting her play games on the computer when in my class ive had to help her with picking things up, @CAPS3 to eat and walk with her hands alone. Her helper teacher. Ms @PERSON1 says the computer game has helped her. The effect that compuers have on society is good." 4 4 8 +634 1 Hi do you think that if you use the computers too much then you will not exercis and you will not enjoy the outside nature with talking and playing with your friends and family will do not because computers are need for over needs and one click can help lot of people and can save live and the more advances over technology become. We will all so advances like or help a person look for a need jod and you can still talk or chat with best friends or just your grand mom. The computer can help with your home work or someone to lern to talk in english and to jump start than new jod or store and so they can but that ther her will like and buy so if they like it they will come back for more to higher more people and to make it into lot of store and all so and good reson the computer is good to cook food and to make new resifes all in one clik of the mose. 2 3 5 +635 1 "Dear @CAPS1, @CAPS2 of late there has been controversy of how Computers affect people's lives. I believe that the effects on people negative. My main reasons of this argument are. The persons health their the users well being. Did you know that over @PERCENT1 of kids and teens are obese @NUM1 computers can contribute to this statistic. If a person is eating unhealthy but sizing. They can still be fit but if they go on the computer instead of working off all the. They become fat. This can be a serious problem. Becoming overweight has many health risks liked heart other. It also could prevent a person from excersicing. If they are overweight their legs could ache and a simple set of stairs could become a huge challenge. Do you want in obesity rates? I would think not. If you watch tv you could picture perfect families. We all know that no family is like that. Introducing computers could mess up that fact even more. For example, my cousin used to be an outgoing friend person. Now because of computers he is a @LOCATION1 who does nothing else but play on the computer. He gets up eats breakfast. (The of about ), then plays on the computer untill lunch. He eats a small lunch and right back to playing. After along @NUM2 to @NUM3 more hows of playing. He off the computer, hopps into goes on his laptop all night. This greatly affects his family. They try to get him off but all he does is online. He cant interact with his family and this has a huge infact on it. Even though he could get off and talk one of the only ways of talking to him are through facebook. Now because of this family is. We can easily avoid this by telling every body these known facts. My final argument for you is the users well being teen many of us have a facebook of @CAPS3 I have homework I to use the internet for facts and stories. @CAPS3 I do so to go on facebook. If anyone dows the effect our grades. If we chat on facebook we doing our. If arent doing our homework we wont get a good grade. If we could less to other serious problems. Another thing is that you could actually need your computer to stay. It could be addicting and you might rely on it ""once a to kill himself because he dident have his computer"". So @CAPS2 you can see there many negative effects on a user of a computer. It could many problems inthe future like health. the family happiness. So spread the word for the sake of thousands of people." 5 5 10 +636 1 "Dear local newspaper, I feel that computers are very useful to society. For example, millions of people and companies and small buisnesses require the use of computers in order to optimally run their buisness. Everyone who uses computers on a daily basis can confirm that they are very useful. In fact, computers are so useful, some schools are starting to notice. I hightly reccomend that you get aquanted with such a useful and very recognized plece of technology. Did you know that many billion-dollar companies and small buisnesses require the uses that a computer has to offer? For example, my mother is s former-district manager of the fast-food company, @ORGANIZATION1. When she worked at the company, they gave her a laptop that she could use only for her work. This proves my point that companies and small buisnesses require the features of a computer to smoothly run the buisness of which they run or one employed at. The technology of computers has brought education to new. Some teachers (including my own, @PERSON1) have taken the initiative to incorporate the modern technology of computers into their teachings. Classes have even been created in schools because of the popularity of computers. For example, at my school, a computer education (or, comp, for short) class has been created for kids to understand the knowledge and skills using a computer can give to them in the real-world. In my opinion, I it is great that computers are incorporated in so many places. Computers are used by millions of people every day. Such buisnesses are corporate like @ORGANIZATION1 @ORGANIZATION1 are starting to see the brilliance in using computers in their company. In fact, computers are so useful and helpful, teachers have taken up using computers in their classrooms. I hope it is not just me that sees the good that a computers brings, but anyone else that @MONTH1 have taken a glare at this letter." 4 5 9 +637 1 "Dear, To who it @MONTH1 concer, I am writing this to inform about how the ocmputers benefits society. I think computers aren't that great because people use certain websites. People use @CAPS1 messaging and its also a way getting connected to others. I also think that some people ae addicted because you can search someone or @CAPS5. You find top websites that maybe inapropriate for users who use the computers. Some computers are bad education to some kids who are trying to learn majority of kids use computers for internet access most kids will be on the computer playing games that @MONTH1 not be suitable for the age group. My first reason is when people get on the computer they find websites that others use. For example: @CAPS2, @CAPS3, @ORGANIZATION1, ect. Many people use websites to check the emails. For exmaple: @ORGANIZATION2, @LOCATION1L, @CAPS4.mail, ect. My other reason to you why people use websites is for @CAPS1 messaging. People sue @CAPS1 messaging to connect with their friends, family, & other people they @MONTH1 not know. People say its a faster connection to people @MONTH1 not could reach. For example: person doesn't have a phone, the person does not live close by & the person lives in another town. I also think it good research to browse people. For example you know someone but you can't find you can browse. Another second one is people maybe addicted. For example: they go on website & they go on it over & over & over again. they don't stop using it until it gone. In additional people think it keeps them busy. For example you don't have anything to do go on the computer. Lastly you find top websites that maybe inapropriate for users. For example, you find a website but its not suitable for minor. Only @CAPS5 adults could watch. One more thing computers aren't bad education. For example you can learn from apropriate websites that builds brain muscles. My opinion is that I do think computers benift the society because it mainly helps you brain storm & you get to know websites & learn about them." 4 4 8 +638 1 "Dear @CAPS1 times, I am writing in regards to the article recently writen in your newspaper on computors. I believe that they are a vital part of the world today because; you can find information for protect or article in far less time then searching through books, you can get important news updates and entertainment is only a click away. My first reason was at the information on the internet. Say you were writing a paper on acient egyptians, and you need to know how to spell hiroglipics in a dictionary that would take a few minutes, online it would take about @NUM1 seconds. Or if you wanted to know when @ORGANIZATION1 died. It would take hours scouring textbooks untill you finally found it. on time it might take your just over a minute. The second reason I like computors is for news updates. You can figure out what happened in recent natural disasters, or how your stock is doing. Also computers helped us in the recent election, and will continue do so for a long time. The weather can always be found on time web for any in the world. This is a bad thing if you're planning a trip somewhere, wich you can also do with a computor. My third and final reason is that its hard to get bored on a computor. Every where on the web are cool gamesor funny videos. On the web there are about @NUM2 gaming sites and @NUM3 sites with funny/weird/cool videos and pictures. Many other places like facebook let you share picures with your friends, family, and relatives. Or you can chat with complete strangers from around the world. So next time you need information, news, or you are just bored go on your computor, and have fun." 4 4 8 +639 1 "Dear @CAPS1, @CAPS2 has come to my attention that people are spending to much time on computers, and I agree because people spend so much time on computers that @CAPS2 gets addicting, people dont get enough exersize, and eyesite gots worse. So please keep reading my letter and I will tell you the side effects of the computer. Most of all @CAPS2 gets really adicting for a lot of people that they dont spend time with thie familys or sibleings and some kid get so adicted that they come from school and start useing the computer all day and dont study for a test or do home work. Now people spend so much time on the computer that they dont exersize or play sports with thier friends and just sit all day and get lazy and fat just because of the computer. We just need the computer just to chek @CAPS3 and facebook like I do but I just check my facebook and the go play basket ball. One of the biggist problem that I think is when you sit on the computer to long and get a head ache and ruins your ey site. So thank you for reading my letter and hope you agree with me." 3 3 6 +640 1 "Dear, I strongly believe that computers are great. There are a-lot of great things you can do on the computers. A-lot of people are saying that computers have bad effects on people, like not getting enough exercise and spending time with your family. I do not agree with that because say you have family in a different town, city, or state. There is a website where you can webcam people from all over world with anybody, so that is a good opportunity and also it is free and you can do it at anytime and if you have a laptop, anywhere! My next reason is that you get to see places you have never seen before with direct pictures, like on commercials when our familly wants to go on vaction to a far place and you know nothing about it. You can go on the computer and look up the place and see what it is about and also see what other people said about. Like if it is really hot, or cold, is it a good experience for kids, anything you want, the computer has it. My last reason on why computers are good is because of studying, one thing that always happens is I leave my textbook home. I can go on the computer and see what we had to do. Also you can use the computer to study and learn easier ways to do something for any subject. Surveys shows that @PERCENT1 of the kids who study on the computer pass there test and get a higher grade percentage +@NUM1. Also if a kid is studying and dosent know what a word is they can I look it up and figure out the definition and how to use it in a sentence. That is why I think computers are a great exercise for your well being and personality." 4 3 7 +641 1 "My opinion is that people spend to much time on computers and dont concentrate on their family. Another reason is that people will not do school work if their to concentrated on the computer. My third reason is people wont enjoy hanging out with there friends. Those are my reasons now let me explain them. First, people will be concentrated on the computer and not their family. They will be focused on the computer way to much and not have fun with there family and friends. People ignore their parents when on computer. I know this because my sister goes on the computer and completely ignores my mom and dad when there talking to her. Please heed my advice or your kids will be ignoring you when you are talking to them. @PERCENT1 of children go on the computer and ignore everything. Now I can advance to the next reason. Second of all, peop concentrate to much on the computer that they dont do homework or any school work. If they dont do homework they could get bad grades on their report cards. If they get bad grades they could fail the marking period and stay back. Please listen or your child could stay back. Now for my third reason. Third, People wont enjoy hanging out with there friends. On the weekends you wouldn't want to be on the computer go out with your friends, enjoy yourself." 4 3 7 +642 1 "Dear @CAPS1 @CAPS2, I am writing a letter to you today because I have herd a complaint that and more people are using computers and getting less exsercise. These experts that are concerned also say people need to enjoy nature, and interact with family and friends more. These experts @MONTH1 be smart but they are wrong. I am going to tell you how they are wrong. My first example is that people that go on the computer alot still exercise. Take twitter as a example. The football player ocho-cinco ""tweets"" all the time but that doesn't mean he doesn't get exercise. There are plenty of sports players that are on twitter and they are fit. Most of the kids in my grade including me have a facebook. Most of the kids are fit. Just because they are on the computer alot doesn't mean they can't exercise. My second example is the effect of the computer. Students use the computer for a lot of things. We use wikipedia for are projects and research a person. Some schools know a day almost depend on computers. I rember when I lived in country we never had to reely type anything unless it was a project. When I moved to @CAPS3 I am always typing something. Even a rough draft they want me to type. In couentry I would write out my final draft. I have to use the computer. Schools also are teaching us about the computer @CAPS4 as we learn more and more things on the computer we are on the computer more and more. When someone. Finds out a new website there going to tell there friends and there going to pass it on and @CAPS4 on. My third example is how the experts say that people are spending to much time on the computer and less time interacting with family and friends. My grandpa, aunt, other family members have a facebook account. That means I can still interact with family and friends. The people that are the computer alot that are adults probably don't have family over every night and probably go out with friends evey once in a while. Computers also benefit Society for buisness people they might have to a powerpoint and they have a computer. When experts say we need to enjoy nature, interact with family and friends, and do more excising they might be right but we can do all these things but we can also still go on the computers. If you take a survey in @CAPS3 to see how many people are on the computer almost everyday and then you ask them how many of them exercise you would see that you can do both." 4 4 8 +643 1 "Today more than @PERCENT1 of our population spends expensive amounts of time each day on the computer. I agree that having a computer in your home is benficial at time, but to me the disadvantages outway the advantages of spending to much time on a computer. Disadvantages such as cyber bullying, illegal websites, the criminals that use the internet to target days, and the interference that spending to much time on the computer has with your grades and other school work. I think that largest number of people affected by spending to much time on the computer are kids. Mostly kids right name from school, drop there backpack, and instead of sitting at the kitchen table or study area to do homework, they sit right down in front of the computer. Then what happens to that homework? It usually doesnt get done. That absence of homework could make an enourmous decline on a students average. However, homework is not the only school work effected by the computer. Even in school kids use internet on their cell phones. This provides a huge distraction for kids and usually ends up with the result of kids not completing the task asigned to them. Not getting work done is not the problem. Computer presents to kids through. It also helps with bullying; cyber bullying. Alot of kids are bullied and picked on the school but then that bullying carries itself to the childs home threw the computer. Once at home a kid can get hurtful emails or instant messages. These hurtful messages @MONTH1 do a lot more than just hurt someone feelings, it can hurt their self asteem and how they feel about themselves. Then as if cyber bullying and not doing homework werent bad enough. there are also criminals on the computer. These criminals prey on kids. They can find passwords to accounts. They can find out personal information about yoo because of how much time on the computer each day. Once they find out enough about you they use to it gain your trust and the problem only escalades from there. Although many kids are affected by the amount of time they spend on the computer each day, there not the only ones. Adults are affected just as much and just as easily. One thing that lvers adults in to spending all their time on the computer is all the ""great deals"" they can find on the computer. But many of these great deals come from fake or illegal websites. Websites that are selling stolen merchandise. Then show you all the benefits from buying from them and then once you believe them and buy what they are selling, they have all of your personal information. From their you can end up with an empty bank account or even identity theft. Does that realy sound a ""great deal?"" @CAPS1 to me the disadvantages of having a computer definetly out way the advantages of having a computer. I think that people need to step away from the computer desk, get good grades, avoid bullying and criminals. Keep there bank acounts full and there identity safe. Instead they should spend time outdoors, with family: or enjoying life!" 5 5 10 +644 1 "Dear @CAPS1, I believe that computers can be a very good thing to implement in society. First of all, if people never used computers they would miss out on an immense opportunity to learn about the world around them. Also, with computers, people can communicate with people from across the world. If people use computers more often they'll probably develop the skills to pursue job opportunities on a much wider market. Because of this computers can greatly help any community. Computers can give many chances for exploring education. People can pursue a large amount of information with a relatively small space as opposed to using a large area of books. People can find alsmot anything they want to know about on the internet relatively easily. If not for solely learning but for reference. If someone is making a project at a school. Computers can expand on many peoples opportunities for education. Secondly, the internet can be used as a widespread communication tool. Any document or piece of information can be transmitted from say, @LOCATION2 to @LOCATION1 @CAPS2.C in a matter of seconds. Simialarly if two people are seperated by a large distance, they can easily communicate since the invention of social networking, people that @MONTH1 have lost touch can easily meet again and discuss things. With computers communication is becoming faster and faster. Finally, because of an over-expanding job market, use of computers is becoming a common requirement of many professions. Most jobs that pertain to engineering require use of different programs for modeling and drafting. Also now most governments are networked with files on computers. Also, most any job that has to do with any sort of business has a requirement for the person needed to be able to type quickly. Because many jobs require experience with computers they shouls be a part of any community. In conclusion experience with computers can benefit any one person and entire society all together." 4 4 8 +645 1 "The computer effects peoplelife by taking them away from their family and have is @NUM1 reasons why the computer effect the people lives. @NUM2) They do not know what is happening outside. @NUM3) Their family @NUM1). Their job. Please listen to my reason why the computer effect people lives! My first reason their they don't know what happening out ide because they are to much busy on the computer. Their friends could of won something important and they wanted you to be their but no they are just so busy on the computer. They are going to miss out of nature or hanging out with friends. Like if they are meeting one at a place and they said they if just means they were on the computer all day long. My second reason is theie family. I said their family because they could miss out on a lot of things. Such as a family reunion, a family vacation and many more. It like if one of their family members hurt and they are trying to call you but you dont picking up the phone because you to busy on the computer to pick it up. You can lose your wife cause the computer because you forgot her birthday, her and her because you are on the stupid computer. About their kids, what happens if they want to playing they have nothing also to do card their? Say no cause you computer. They family will get rewing. My third and last reason is their job. They can lose their job cause your missed work cause your on the computer for doing nothing work cause computer. If they lose their jobs they can pay for they can't use their computer. They are going to be in their house with no light and no computer cause they have on it to much and did not pay attention was happening. They akk to feel like they are going to cause they dont have their computer. Or the computer shot doen and he cant enough money to get a electriction. Those were all ny reasons. @NUM2) they don't know what is happening outside. @NUM3) their family @NUM1) Their job. Thank you for listening to my reasons." 4 4 8 +646 1 "Today in our society almost everyone uses computers weather @CAPS4 to do research, play games, or interact with others. These are all positive things. The schools across america are using computers from @NUM1 grade to online colledges. People benefit from computers by getting everything and anything done from them. @CAPS2 anyone who has a brain can relize that computers are a positive in todays society. First off computers are a positive thing because they can get almost anything done for you. you can play on them, and interact with others the reason that the computer being able to get almost anything done for you @CAPS4 a good thing because if you need to get work done you can do that if you need research @CAPS1 can do that and @CAPS1 can help you In any subject. The reasons that playing games can be positive @CAPS4 @CAPS1 does not only give you great hand eye cordonation but @CAPS1 also exersises you brain and can be a learning for young children. The reasons that interacting through the computer @CAPS4 that you learn how to be and talk through email for buisnesses and,make many @CAPS2 pleases use your brain and that computer our society today. @CAPS2 to keep on going americans are the smartest people in this world and our very well. I @CAPS3 have to you like and that @CAPS4 why we send every one of them to school @NUM2 of every year. Will that said they use computers anyone to say that computers are bad the that you love do while this. That useing computers and benifiting your life. @CAPS2 as you can see that computers are a thing for the good and can benifit to days saciety @CAPS2 I beg you for your sake please use computers and benifit your life. Its for your own good." 4 5 9 +647 1 "Dear @LOCATION1, I believe that computers benifit the society. Computers help use in many ways but the @NUM1 main reasons are they help us store important documents get better at or learn forein language and get information. So without further adue here is more extensive reasonings. First of all, computers help us store many documents without computers companies that involve autioning and many other thing would have to store everything in filing cabinets. That would take forever and there wouldn't be enough room, so a lot of files would @CAPS1 be laying around every where @CAPS1 think about it. You use computers to make store send your newpaper articles and without computers you wouldn't be able to keep everybody up to date. Secondly they help use learn on get better at forien languages. Computers help use learn what other people are saying in other countries around the world. Like I have grandmother she the learned spanish. Now I can talk to her and she can understand me. Finally computers help use get information. They help us get information for a project at school, records direction, etc. In the year @DATE1 people din't have computers but when the first router was made the people I went up @NUM2 points. Farmers became slaves became very rich and I kid even grad collage at age @NUM3. So before you say people are spending too much fine on their computers and less time exercising, enjoying nature and interacting with family and friends think about what computers do for us @CAPS1 think. So furher more computers benifit us a lot. There's storing deviced helping us get better a lot learning a forign language and getting information. So please make te right chose and think about what computers do for us. " 6 5 11 +648 1 "Dear @CAPS1 @CAPS2 @CAPS3, I think computers make a big role in monern cicity. For this reason I think that @CAPS4 should take the advantige that @CAPS4 have. @CAPS4 could do lots of things. @CAPS4 could use it for @CAPS7 related @CAPS6 @CAPS4 could use it for @CAPS5 @CAPS6. @CAPS4 could also chat online. @CAPS4 could use it for @CAPS7 related @CAPS6. Like homewrok and projects. @CAPS4 could use it for info on a project or homework. @CAPS4 could use it for the @CAPS8, @CAPS9, and @CAPS10. and many other reasons why @CAPS4 should have @CAPS12 for @CAPS7. @CAPS4 could use the computers for @CAPS5 @CAPS6. Like making holiday and birthday cards. Pay bills for morgiges online. @CAPS4 could book a hotel online. @CAPS4 could play on or agentst with online games. @CAPS4 use for bidding on ebay or amazon. Pay bills for long distance calling. @ORGANIZATION1 the @CAPS13 if you missed it. Or just @ORGANIZATION1 shows in general. @CAPS4 could use it for chatting online. Like sendding emails or talking on ooVoo. So thats why @CAPS4 sould take the advantige." 3 3 6 +649 1 "Dear Newspaper, In my opinion, I think computers do benefit society. One reason is because people can learn about new things, it makes life a little easier then it is, and lastly, people can meet new people while they're on the computer. First off, we can benefit from computers because we can learn new things. People can find places that they've never heard of, or they can see whats going on in the world. Computers can help kids that are in school who want to learn new things. Computers help you find out important information that you might need to know in the future. Secondly, having computers in our society can make life a little easier for some people. On computers, you can order things from online websites instead of trying to go out and buy them. For people with no transportation, this'll help make their lives a little easier than it is. Or, for example, if a person wants to buy something that isn't in stores yet, they can go online, and they might have it up there. Lastly, having computers can help you meet new people. If someone just moved from another town or state, this will help them meet new people. Or if a student doesn't know anybody from their new school, they might find them online and then they'll be able to get to know each other. In conclusion, computers help our society in a lot of ways. They can help us learn new things, we all can meet new people. and computers can make our live s a little easier. Thats whay I think we should keep computers in our society." 4 4 8 +650 1 "Dear @CAPS1 @CAPS2, @CAPS3 a world where no information could be saved for the whole world to observe a place with no communication with loved ones or friends; or a life with no possible way of learning of catastrophe's on the other end of the earth. Clearly, a life without computers is utter chaos. Computers provide education, and stay in contact with friends and family I'm sure our world greatly benifits from this mericle. Medicine, @CAPS4, @CAPS5 constructing and revolutionizing our life has been made possible by computers. @PERSON1 is an old family friend of mine. He was one of the few people who was working on going to the moon for the very first time. They were astonished with what thier astronauts saw. But computers made the expirience a reality. @PERSON1 remembered recieving some of the first footage of he moon on to his computer, before the photographs and video are released to the public. However, @PERSON1 is not the only person who agrees. Johnson, a principal from a private school in @LOCATION1, after winning an award for best school in @LOCATION1 states @PERCENT1 of our education comes from the computers. We make our students come involved in technology. These are the people who progress to make the best medicine cars and computers. Our students all are benificial to our world today."" @CAPS6 settle for anything less for our childrens' education? In the middle of trajedy; faced with a difficult decision; or even just lonely, longing for someone to count on; who do you turn go first? Your loved ones they are always there for you when you need them. Now because of our access to computers whether accross the world or just the other end of the block. We will always be in contact with the ones we love. @PERSON2, my friend, found out her aunt diagnosed last year with cancer. However, she was in a boarding school in @LOCATION2 while her aunt needed her support. Instead, she was with her every step on webcam, emailing and @CAPS7. She could even contact her doctors to see her condition after. Her aunt conquered cancer with her neice and is living happily. With only a @NUM1 chance of living, @PERSON2 gave her the support she needed through most difficult @CAPS2. Not only did see the positive effects of staying in contact. Marcos a family therapist says @NUM2 of happy families stay in contact after seperating through internet."" @CAPS8 could anyone, ever leave those who you care most about behind? @CAPS3 a world with a full education, for our children to take advantage of and a place where we can stay with each other all the time. Thats the world we we live in." 5 5 10 +651 1 "@ORGANIZATION1, @DATE1, people have been doing less exercise and not enjoying the great outdoors. They're some people that are having less family and friends times. I say "its computers!" This machine is a great resource, but people are starting to get adicted to it. We need to reach a messgae to those people. Yesterday, I went to my local library and found @NUM1 computers in the library. All of the computers were filled with people and, a line with @NUM2 people ready to go on next. I ask those @NUM2 people "why were they there?" "for homework" said a teenager. Another, "just to come and paly". I also ask, "how do they stay fit?" "I don't like @CAPS1 fit" said beautiful lady. "@CAPS1 fit isn't esay if your always on the computer" said the teenager. The response I got from those people, were unbelievable. If we don't stay fit how are we going to survivie from all these dieases and cancer. This reason has pently to do witj not @CAPS1 fit. I don't know about you but I care about my family, I would never spend the rest of my life infront of a computer instead of my love ones. In the of , I was surprise to find out that projects, homework and research can take up half of your time, with your family. Do the computer, you can find some resort for you and your friends and fanily, you can't be doing for more than minutes. The great out doors should be one of the best places to be. because it quit, its amazing and its a large area. If you looking up the out doors on a computer, now thats a of time, that you could have been with a family member in the or where ever. My father says its great to buit its to live it. The days are getting shorter lets live it like." 4 4 8 +652 1 "Dear Local newspaper, I agree that computers have an effect on people. It helps people learn hand-eye coordination, give people the ability to learn a far places and you can talk online with other people. Computers teach hand-eye coordination. As @CAPS1 grow up, they learn about letters of the alphabet and spelling. There are many online programs that teach @CAPS1 how to type. Once the @CAPS1 get in learning how to type, they end up typing fast. Computers help @CAPS1 of future learn & with all these learning websites, @CAPS1 will be able ti teach them solves new things. Isn't it a blessing to be able to meet people from a far? You'll get ot learn there cultures. Would you want to know something about? They make daily go around, there you'll you? Well its so learning a new culture is a faster way of making friends. Have you connect. Oneday i will people who dont just want to be friends, maybe more than that. Be positive about online chatting, or online dating services. As you can see for my reasons above, the computer has an effect on people. The computer teaches you hand-eye coordination, it also gives you the ability to learn afar places & people, and it allows you to chat with other online people. Make sure you stay positive & be safe on the computers." 5 4 9 +653 1 "@ORGANIZATION1, The computer to me is very beneficial. I say that because if wasn't @CAPS4 the computers we wouldn't have as much knowledge about other contries like we do now. Also because it's another source of communication. Another reason is, the computer helps kids get their work done faster. Hopefully after reading this you will think the same I do about computers. First the computer helps people know about what happen with people in other islands. @CAPS4 example you heard about the @CAPS1 that happen in @LOCATION1 by t.v. But what if you wanted to get more information about it. All you had to do is type it in and it gives you a lot of information. Also it shows how the in the other places are and how people have in deal with all of that. Another example is communication. The computer has allowed people to have a conversation without a phone or being in person. That helps people a lot because not everyone likes to be on the phone all day (me) so that their of communication. Also you can go on website @CAPS2, @CAPS3 or other places to talk to your friends. Some people prefer to have penpals. A penpal is a way you can communicate with someone you never and from another contry, more you have @NUM1 reasons on how you can communicate from your computers. My theird reason why computers are beneficial is the get done with their ways @CAPS4 example lets just say you had to find so definitions, instead of looking the word in the dictionary you can just type in the definition. Also if you have to do in history you can go on the computer and find on him/her. So I hope you take this in consideration that computer are great @CAPS4 society." 4 4 8 +654 1 "Dear to whom it @MONTH1 concern, @CAPS1 name is @PERSON1, and I feel computers are bad for society. Computers have been the big difference when comparing @NUM1 to @NUM2 centuries. People have come to rely too heavily on computers. The communication globally has not been very helpful and people are spending hours on their computers every day instead of exercising. On the whole I feel society would be better off without computers. At the end of @DATE1 before the millenea would take place everyone feared what was called @NUM3. The year two thousand would supposedly be when all computers shut down and didn't work. Computers were at their beggining for society so everyone thought they were great. People were panicing over the thought of their precious computers not working. The entire nation had become reliant on computers. Everyone hid in attics and basements waiting for the world to end. Do you know what happened? The sun came out the next day and everyone logged onto their emails with a sigh of relief. Not only relief for the world not ending but for the life of computers to be able to go on. People still rely on computers just as much more today. I recently visited @LOCATION1 and in a rest every where the even had their laptop that they had to take everywhere with them. In conclusion the @CAPS2 society is at a sad state with how much they rely on computers. A fast instinct is to say communication when you why humans need computers. Why is that? We have telephones. Is there nation television channels? We have plenty of means of communication, such as ways like maybe writing a letter to someone? Communication would not be a problem in fact it has mainly caused trouble. Computers and internet allow news to be spread quickly even if it isn't free, damaging someones carrer and publicity. They also allow communication with foreign countries. Exess communication that can get countries into wars. Normally the @LOCATION3 would have no idea whats going on but with internet the nation is involved quickly. Computers breed had communication and you can easily communicate other ways with family and friends. Since I am a teen I also know the problems with youths and computers. Often times kids don't want to go outside and istead sit inside on the computer. Obesity is a rising issue in @LOCATION2 and kids need to exercise. Kids also dislike going on trips like camping outings because they don't want to leave their computer. Without computers kids would get more exercise and be less overweight. Now you have seen @CAPS1 reasoning that society would be in much better if there were no computers." 5 5 10 +655 1 "Dear local newspaper, I think computers are used way to much in this society! People spend more hours sitting the computer than exercising because people find it more thrilling spending more time with computers than trreadmills! People in this society think we are spending to much time on the computers, while others don't realize how long they've been staring at a screen for! I am one of those people who like using the computer a lot but I have relized changes. I can tell many others and spend to much time with the computer screen that we have drifted away from our familys! I never really thought about how much I don't talk to them anymore because I'm to busy cyberly chatting with friends. Although, I don't think we should get the computer either. Online we can research almost everything in the world. I can even type my name in a research bar and find me and anybody else with the excel same name as me! The internet got for more technical in the past years. Without it, these days, just about everybody would be lost! The internet should be used less on blogging and chatting, and should be used more on things more useful like @CAPS1.com or @CAPS2.com. I hope you consider this." 3 4 7 +656 1 "I believe that computers are a great help to society I believe this @CAPS3 when you don'@CAPS1 know something you could go on-line to look it up. Also if you are to sick or don'@CAPS1 have time to go out and buy things that you need from stores you can buy it on-line and have it @CAPS7 right to your door. My final reason is that computers can save paper buy having a lot of document on your computer. My first reason was that if you don'@CAPS1 know something you could look it up. A lot of times you could be watching @CAPS1.V. or talking with someone and you @CAPS4 wonder what something is or means. @CAPS6 instead of just letting whatever you didn'@CAPS1 know just pass on you could look it up on a computer and educate yourself and possibly others to. My next reason was that if you are to sick or don'@CAPS1 have the time to go out and buy things that you need from stores you can buy it on-line and have it @CAPS7 right to you door. This is a great help to the people who are to sick @CAPS3 sometimes they are @CAPS6 said they can'@CAPS1 leace there home @CAPS6 instead of starving to death they can have food or anything @CAPS7 to them if they just click a couple of buttons on the computer. Now, also this could help the people who are to busy to go to stores @CAPS3 right before they leave they could press some buttons and when they get home there stuff on sitting there for you. Back when my dad was a @CAPS2 and my mom was a vice-president of a drug producing company which sold oxy-cofin they had to have a grocery @CAPS5 ship foods to our house. They had to have this happen @CAPS3 they @CAPS4 worked long hours and they didn'@CAPS1 have the time to go to a grocery @CAPS5 @CAPS6 they had the food @CAPS7 to our house which was a huge help. My last and final reason is that computers can help save a lot of trees and paper. A big thing now is that we have to go green right, @CAPS6 instead of cutting down more trees we can just have all that on our computer which doesn'@CAPS1 we any paper. These are just some of the reasons why computers are a help to society. I could come up with many more ideas but can'@CAPS1 fit them just in this story, @CAPS6 finally rember people whole lives are on their computers." 4 5 9 +657 1 "The use of computers is great for everyone. Using a computer can help you learn about different people from around the world. Also you can have the ability to talk to people. With a computer you can also learn about places all over the @LOCATION1 and the world. With a computer everyone can learn about people all over. If you were going on a vacation to somewhere in @LOCATION2 you could learn about what those people do. Also you can see what people your age do for a living. If you had to do a project for school about a place outside of the @LOCATION1 the computer would help a lot. You can search what thet wear and what holdays those people celebrate. Learning about people will help you make friends to. if a foreign exchange person comes to your school you can search about their culture and talk to than about it. While using a computer you can also talk to people. With the use of @CAPS1 or A.I.M you can talk to your friends easily. You can ask them what homework you had if you weren't in dschool. You can also become better well friends with people you didn't know that wll, by saying hello, or how was your day. You can also email. If you meet someone you made friends with on vacation you can email them. You can also go to websites where you can talk to people in other countris. If you have a webcamyou can even video chat, and ask them questions about their country, or what they like. Also you can videochat with all yor friends to. Using a computer you can learn about places arounf the world. If you were going to a place ypu didn't know, you could look up the amazing resraurants, you could also look up fun things to do with the family. If you needed to do a projecct you can look up what the weather is like, and what the people do. if you wanted to help out a country that just had an earthquake or hurricane you could look up what you could do to help that country. Those three reasons are why compujters are essential to people. You can learn about different people, talk to your friends, and you can search and learn about different places arounf the world." 5 4 9 +658 1 "@ORGANIZATION1, The delema over computers needs to be noticed. People need to relize computers are one of the greatest inventions we have in our time, but in my opinion people take that as an advantage and misuse them for purposes that they should not be used. Computers are not meant to be for playing games, or constently instent messaging. They are meant for learning purposes and for work or school. Why do people use computars for things that they dont need? People use computers for fun! They instant message, listen to music, go on @CAPS1, @CAPS2, or @CAPS3. People also use @CAPS4 and play games on unknown websites. Computers are not ment to be for that, they are for school and work. @ORGANIZATION2, word, @ORGANIZATION2, and powerpoint, if computers were used for those purposes people wouldnt be the way they are today. In the @LOCATION1 the computer is very popular people aboulutly love it! But these people are the people who are unfriendly, mean and sad. They also are incredibly out of shape. I know so many people who use computers instead of doing homework and getting fresh air. They are so independent they do when they go home from school is eat and play on the computer. I have a hard time understanding why they do that but I guess they feel they have nothing else better to do. I also know people who use the computer the right way and they are very happy people. They also have so much knowledge and there is never a dull conversationthem. Those people use the computer everyday but they use it correctly only for and they are just well are very smart and get good grades in school! Basically, what I am trying to say is that people who use the computer suceed in anything they do because they know how to use and understand the computer, but people who use it in the wrong ways will just be miserable because they dont know to much, they had average grades and they are unhealthey." 4 4 8 +659 1 "Dear @ORGANIZATION1, Computers are a great way to learn about the world and its people. Computers can teach people about things that are forien to them. Computers keep people intouch, all over the world. Computers also come in handy when something needs to be looked up right away. Computers are very helpful when it comes to learning. They can teach you things that most books cant, such as hand eye coordination also about the current populations of countrys and cities. Also, computers gives you the opportunity to see pictures of places and people that you couldn't find in books or photo albums or newspapers. They also help in schools when projects are asigned. Kids can use computers to find information they need quickly. Kids can also use computer to wright essays or print pictures for projects. Computers are definately a staple for learning & education. Computers are also great for comunication. People can chat with one another on networking sites such as @CAPS1, facebook, myspace, and twitter. On these sites people can send messages to their friends a leaking them of something or chat with their friends to see whats to keep in touch with family and friends, on the computer. Family members can e-mail each other to inform them of an event or news. I have actually had an experience with e-mail that was very helpful my family members and I had been speaking of traveling to block island and two days before we were going to leave we recived on email from the owner of the house we were going to stay at stating that all phone lines were down and part of the house was ruined due to a storm. If it werent for computers we would have been in a sick situation. Computers also come in handy in times of need or confusion. People can check their local weather forecasts to see of the weather will effect their plans. Also if someone doesn't know where a house or store is located they cab quickly look it up on the computer. Finaly if something is unavailable on a store people can shop for it online and can buy what they need, and have it shaped to their door step. Computers have helped this country grow and prosper. Why bother to go aginst them when they benafit society so much? Computers are helping the world become a better educated, connected, and informed world." 5 5 10 +660 1 "The topic that is on many minds in our country is, ""Are computers beneficial, or harmful to our students?"" @CAPS1 have evolved from dosktop computers, and before that, type writers, but have they gone too far? While the blank screen of a computer @MONTH1 distract some, the benefits defin out weigh the bads in a situation like this. Being able to have faster research, easier communicating and computers in wartime are great capabilitys of the modern computer. Also, due to advancement in technology, computers are very helpful because they help @LOCATION4 with our daily lifes. Many doubts about the computer exist, but the computer can surpass all of them. In a time crunch situation like college or high school, speed is everything. Computers allow students to research faster, and with more accuracy by being able to search for key words. Before, students would have to do the painstaking process of searching in books. More times than not, they wouldn't find what they were looking for, but with the modern age, students can get the information they need fast. Also, having computers in the classroom helps so that teachers can get the info they need for an upcoming class. If speed is what you need, then you will look for a computer. Besides speed, computers also give you another great thing, communication. With emails, @CAPS2's, @CAPS3, @CAPS4, and blogs, knowing what your friends are doing later is just a click away! This is much easier than calling the person. Also having this access to friends can help when one moves away. If you miss a long lost friend or cousin, just search their name, and you can talk to them! Having friends so close by you can really make every life great. Out in @LOCATION3 or @LOCATION1, solgiers rely on computers for valueable information; such as radar, or robots. Having computers do the ""dirty work"" can help in times of war, and can save valuable lives. Not having these computers would mean certain death for some people in the @LOCATION4 armed forces. Computers some times take the place of humans in things such as @ORGANIZATION1's, or unmaned airieal vehical and some many lifes too. Weather it be facebook or bombings, computers help in a vital way. It was @DATE1 and @PERSON1's communist regime was ruling new @LOCATION2. One man stood in front of a tank, resisting to move, showing courage and wanting a democracy. Fortuneatly, this was all caught on film. How was it broadcasted to the world? Using the computer, and internet. Today many people are able to learn about that due to computers. In many ways computers help @LOCATION4 with our daily lives and for most of @LOCATION4, without them, we would be lost." 6 5 11 +661 1 "In present day, most people live on the computer. Whether if for work or pleasure, everyone uses a computer. In a recent study, researchers determined that an average person spends @NUM1 years of his or her life on the comptuer. Thats a total of @NUM1 years of life waste. Most kids spend all day on the computer on @CAPS1, facebook, @CAPS2, and youtube. They could be using that time to be around family and friends making memories. Kids dont realize how short life is, they should be hiking, camping, spending time with friends and family. I think years from now when kids grow into adults, they will be looking back and regretting not spending more time with there family, or not taking opportunities to explore the world we live in. Instead, they will be looking back and thinking about the halarious video on youtube that got over one million hits. Also, as you @MONTH1 know child obesety is on the rise, they are more overweight kids then there are then and healthy. If a you look back to the times before computers, you will notice that you will rarely see an overweight child. The computer is to blame for this new pamedemic. Kids should be outdoors playing sports and getting fresh air. I bet that if computers were taken away for @NUM3 year, then the changes in health would be drastic. Kids would be alot healtheir and have lost the weight I hope that everyone can see the harms of the computer by reading this, and they will get rid of this poisiness object. " 4 4 8 +662 1 "Dear Newspaper, @CAPS1 you @MONTH1 know a lot of people now a days are constintly on the computer, and many people think its a problem. Well you should know the computer is helpful in many ways, such @CAPS1 learning, entertainment, and even weight. That is just a few out of the hundreds of different things there is to do. The computer can help you get in contact with realitives you haven't seen in a long time. Or maybe if you have been having some health problems you can go online to see what is wrong, I remember my mom has been getting really dizzy and sick, and her doctor told her everything was fine, but in wasen't. So my mom checked up what was wrong on the computer and found out she had a disease, and when she went back to the doctors they figured out she really did and her on a medicine. In my opinion the computer was on of the best inventions made. It can be used for so many things, you can also purchase items over the computer. So now I hope you agree with my opinion and support the use of computer's." 3 3 6 +663 1 "Dear Newspaper, @CAPS1 you see, owning a computer can effect you. Having a computer can make you have lazy behavier, can @CAPS2 you from being indoors, and can @CAPS2 you inside so you dont hang out with family and friends. Everyone loves having a computer, but have you ever thought what it can do to you? Spending all day or even half your day on the computer will make you lazy. When your lazy or becoming lazy you dont want to do anything, and without doing anything you can become overweight. So, you need exersize because it's good for you and exersizing can protect you from health problems such @CAPS1 diebities. Get off your computer, and go for a walk. Why would anyone want to be indoors on a computer when you can go enjoy what nature posses. Being so drawn to your computer can @CAPS2 you indoors instead of breathing fresh, clean air which is outside. Being outside can be lots of fun too. You can go swimming or even have a picnic in your local park. When your outside you can also see all the breathtaking scenery, wild animals, and exotic plants and flowers that live among us. If you just go outside for atleast an hour a day you'll see fore sure how much better it is than being on a computer. Staying on the computer for too long can @CAPS2 you from what realy matters, your friends and family. Why talk on the internet to a friend when you can meet up with them and do something fun? Friends and family are realy important and if you don't spend time with them they can become upset. Being with friends and family are supposed to be the best moments of your life, so dont spend them on the computer. Go call up a friend and do something fun, I hope by now you understand that being on the computer or having one is not the best idea. Having a computer can make you lazy, @CAPS2 you from enjoying nature, and can have you not spend time with family and friends. If everyone got off the computer for at least a hour a day they'll live a happier, healthier life. So, turn off your computer get off your couch, and enjoy your life." 4 4 8 +664 1 "Technology has been growing and changing rapidly. Just look at apples new @CAPS1, a desent rized touch screen computer. Computers have been rapidly changing too. But I think that @CAPS2 need to cut down on the use of electronics. Being one the computer for a long time and large amount of time can damage your eyesight, give you arthrightus and takes time @CAPS5 of exersizing; one of the thing manhy @CAPS2 need to do. Many @CAPS2 have been spending has too long on the computer, although it can be very useful it can also be very damaging to your eyesight many people spent large amounts of time staring at the computer screen. If you stair at something for too long it can damage your eyesight and make it worse because your trying @CAPS5 your eye lens. Also the lighting from the computer is very hurtful to your eyes. The light coming on to your eyes is like staring at the sun but not quit as damaging. The sun will instatntly damage your eyes while overtime a computer slowly damges your eyesight. If your eyesight is already damaged a computer will worsen it. The more time spent on a computer the more you damage your vision. Since your eyes are already bad you might think ""well they can't get any worse."" @CAPS5 the truth is they can not only is the light and the amount of time spent during a being onthe computer damaging to people with @NUM1 vision but even more damaging to people without. can be genetic or common to people who constently their knuckles. It can also be common to people who spend exeessive amount of time on the computer. AIM is very popular to people of all ages. Its a way to instantly gossip or chat with freinds. But it takes alot of typing. Typing to long or to much can cause your fingers to lock up and it harder for your bones to move over your joints without pain. if this constenity happens to you you could be a canidat for arthrightus. No letting your fingers take a break can also be one of the reasons your fingers hurt, if you never let them take a break they can also lock up and it can be very painful. You should spend less time on the computer if you don't want artrightus. Because of all this new technology less @CAPS2 go outside and play or hit the gym and exersize. That @MONTH1 be way many @CAPS2 are over weight. Being on the computer for to long takes away time you could use to exersize or get some fresh air." 4 5 9 +665 1 "I tink that a computer is a good idea because when people are online they like to talk to there family and see them by the video cam. When you dont want to go out or your just go online and pay us . Like would you like to be no because when you watching a movie that you like your be like oh "" go clean your room"" and you go like ""oh wait this movie is good."" The computer are the best system for go online every body use computer. Witout computer how you going to cheak your yahoo @CAPS1. My moom love to be on @CAPS2. How you going to check your message if u dont know have a computer. If they lake computers out of sle every body is going to try to make one. and the people from walmart is going to be like they making more money than me llike the people from but buy they got good computers. no one is to make people to get people offline. Apple store have when people go over and buy some computers. When they be spending all the time on the is because they like to be online. If i like onlie you are not going to take the computers and say u searching mor in the computer. But is all bout computers when your mom is all ways at your house boring do go bu a computer whne you get money." 3 4 7 +666 1 "Dear @CAPS1 @ORGANIZATION2, I believe that computers have a positive affect on people who use them. Because they teach hand eye coordination, give us the ability to learn about far away people and places and allow us to chat online with people. @CAPS3 first reason of why I think computers have a positive affect on people is that they teach hand eye coordination. For example, we need to use our hand-eye coordination skills when we type to @CAPS2 the letters. This helps us increase our Hand eye coordination because it helps us think about what letters we are typing, @CAPS2 the letters on the keyboard, and push them. Also when we type long passages it increase our hand eye coordination becaue we get used to wrighting the long paragraphs and we become more familiar with where the letters are on the keyboard and our speed increases,which means we can get more work done in a shorter time. Believe it or not @PERSON1 free of the @ORGANIZATION1 hospital took a survey that showed @NUM1 people who type essays instead of wrighting them by hand, have a greater hand eye coordination skill. Computers also allow us to learn about far away people and places. For example computers make it easier to reaserch far away people and places. Useing a computer can help us understand and learn about people and places withought a trip to the library. Also computers allow us to @CAPS2 us to @CAPS2 more info about recent events that have just around the world. Also computers make it faster to reserch topics because looking for a book in those big libraries can be stressfull, not to mention dificult. Also informat on a computer can never be checked out or not availible like library books. Lastly you have information right at our fingerries so you will never have to leave youre house, @CAPS3 last reason is that computers allwo us to chat online with other people. This can help us because it allows us to talk to friends and family from around the world. Also it helps us talk to our parents if theyre away or if you're on a camping trip. Chating on a computer is a great way to make friends with people you dont know and block people you dont want talking to you. So in a sence you can be in controll of your friendships and who youre friends with. Computers are the greatist advance in technology sence the wheel and they have helped so many people." 4 4 8 +667 1 "Dear, @CAPS1 paper @CAPS2 The computers we have do benefits our society, because it makes people smarter, it's a way to talk to people who live far from where you live, and it's a great way to do homework if you still in school. Having a computer is a great way to get you smarter.You could go on diffrent websites to help you learn what your stuck on in school. I remember the time I was having trouble in math, so my teacher gave me this website called a @ORGANIZATION1. It goes over on waht you need help on, and you get a live tutor. The computer could teach babies how to talk. It taught my cousin how to talk and he's @NUM1 @NUM1/2 years old. Isn't that amazing on that computers can do. Next I will talk about how computers are a great resource to talk to far away people you @MONTH1 know. When you have computers you could talk to people that live across the @LOCATION1 woudn't you want to talk to somebody long distance without paying extra money on your cell-phone? I remember one time I was talking to my dad cause I had no minuts on my phone and it went great talking to him on the computer. Having a computer is kind of like a bigger cellphone. You could talk to a family or a friend if you or they don't have a phone. Lastly, I will talk about how you could do homework. Having a computer you could do a lot of homework. Last time I was on my computer I had to find out about @PERSON1 for math, so I typed his name and his biography came so I wrote about him. You could use it for all subjects especially language arts you could type up papers and look up diffrent things you had to do in class. Would you want to write a @NUM3 page essay and makin your fingers cramp up just writing no. so you just go on the computer and type it up without cramping your fingers @CAPS3 reconsider your opinion, cause computers can get you smarter, talk far away people and help you with homework." 4 5 9 +668 1 "Dear @ORGANIZATION1, I understand the conterversies between having computers. Computers are the center of technology. I can't imagine a world without them. Though having a computer @MONTH1 cause children to play uneducational games, computers teach more and help children as well. I know for your company, having no computer would be a nightmare. It gives education to not only children, but adults as well. First of all, computers are proven to be the second best source of education, behind school, along with the best source of information. Millions of websites are specified to only education of all kinds. Not only are there websites. these are @CAPS1's with online tutors or just work. Computers provide practically anthing you need. For work, adult use. computers to sell something communicate with someone or just look up a new topic. The technology of a computer is farther than any other item. Without a computer life would be much more difficult. Instend of just sending an email, mail would have to be sent out. Most information would have to from brooks. In fact even the internet has books to buy and read. I am aware that people feel that children are spending too much time on the computer talking to friends, but children need to be social, @CAPS2 it weren't talking on the computer, there would just be more texting and calling. The computer makes life so much easier that to take it away would cause stress and less time for other important activities. Lastly. computers have documents and it is the best way to type. Your company can definetly agree that without typing documents life would be a mess. Everyone writes up documents and needs to send them, open them up again, and edit them. The only other access to typing is a type writer. Types writers can't save anything, delete and do half the work computers do. Your whole job depends on the computer and typing. How would you feel @CAPS2 you couldn't use a computer. In conclusion, computers are a necessity to our living. Without computers life would be difficult and stressful. Computers give education stand information to everyone. The technology is unbelievable and makes everyday life, easier. I couldn't even imagire no documents and typing. I'm sure you will agree with my decision. I hope you chose to inform others with this information. Thank you for your time" 5 5 10 +669 1 "@ORGANIZATION1, I am writing this letter to inform you about the Use of computers. Computers can be fun and interesting, But, people are spending to much time on the computer. @CAPS3 opinion is you should spend time interacting with people in your society, your family, and friends. I also think that @CAPS2 is easy to get addicted to the computer, I should @CAPS1 I was a person that spent @CAPS3 time @NUM1 on the computer and @CAPS2 wasn't good. You should be safe on the computer because now and days @CAPS2's dangerous @CAPS2 is appalling that people spend More time on the computer than with ther own Family. Don't you agree? Well you shoud, your society, family, and friend should be the most important thing to you. You shouldn't be spending your whole day on the computer, you should be interacting with the people around you. Now and days you will see plenty of people on the computer and not spending time with there family. That shouldn't be going on. Although the computer is fun and interesting you will have people around you the wisher to spend time with you. You should think about this because this is happening to much in the world. @PERCENT1 of the people in @CAPS3 school say their addicted to the computer, and @PERCENT2 of the people in @CAPS3 community say their addicted to the computer too. Those are very high numbers don't you think? This is terrible and should stop going on. The computer is like a drug, you can get on the computer one time, then your just going to want to stay on ti everyday all day. The first time you get on the computer you will be addicted to @CAPS2 right away. I'm not saying you should never get on the computer, but be sure you won't get too addicted to @CAPS2 because @CAPS2 can happen very easily. @CAPS3 mother always sayed "be safe on the computer". At first I didn't really @CAPS1 what she meant, but now I @CAPS1. What ever you do on the computer will stay their and be saved no matter how you try to delete @CAPS2. So, you should be safe and don't put any thing on the computer if you would want anyone else to see @CAPS2. Anyone can see what you put so you should be safe. Kids are meeting people they don't @CAPS1 and try to meet them. So you should watch out because the computer is the only place @CAPS7 you can lie. Now you should understand @CAPS7 im coming from. You should now agree with me and under stand that people should spend more time you don't get addicted and be safe." 4 4 8 +670 1 "Some people believe that computers are a positive effect to people, but its positive because it rots you brain. I think that computer is a waste of time and is an excuse for you to not spend time with you family as to go outside and enjoy nature. This is why computer time should be reduced and family time increased. Absolutley, computers is the type of things that can kill brain cells if you spend to much time on it. Teenagers are the main cause of this and when they get on the computer and get on myspace and facebook they wont be learning anything and just kill major brain cells. When they go to school to take the cmts they are going to fail because they wont know anything because of the computer. Also, This is a big problem for familys because they dont hang out with each other because their always on the computer. The excuse for parents is ""@CAPS1 im on the computer"" then they never go and the children get very upset. This leads to anger problems then they stop listening to you. All it is, is cause and effect. My friends on @NUM1 has anger problems and doesn't listen to anyone all because her family never hung. Consequently, peope spend most of their time inside on the computer, you guessed right! my sister is on the computer @NUM2 and she never goes outside to enjoy the nature. People can get that @LOCATION1 were they haute to go outside and we dont want that do eve. Doctor @CAPS2 brown says everyone should go outside to just relax mostly everyday because staying in the house is not good. The computer is defeating that purpose. On the other hand, the computer is a nifty device and can be very handy at times like if your need perfect directions or need a question answered. Sometimes you just want to talk to old time friends you haven't seen in a while. Computers are good for alot of things but to much of it is not good for us lastly, i'd like to say the computer has great purpose but i think it just makes excuses for us so we dont spend time with our family, dont go outside enough to enjoy the nature." 4 4 8 +671 1 "Dear @CAPS1 @CAPS2 I felt shoeked to see that there are people that beileve that computers don't benefit society and after hearing that I felt compelled to share my opinions. They help socitey. They help us communicate, do important thing have fun. Computers help us communicate in many ways. We all want to talk to our freinds, but we can not be with our freidns all the time, so there is she internet to help us. We also all have freinds we don't see very often, but we still want to talk to them so with is intenet we can talk to them as long as we went. Computers also help us make new freinds. They can also ehlpo us have fun. Computers are fun for many different reasons. Social networking sites, like facebook or myspace, are fun to be on. There are many fun things to do or the internet including video games, many video games consoles are attatched to the intenet so you can play with your freinds. But computers arent just all fun and games. Computers can transfer very important information including homework after schol activities. Computers also hold all of our governments information, from thingsas insignificant as plans for renovation on a town owned building to the department homeland security to the united states of without computers none of that would be possible. This should have conclude you that computers nessesary in our every day from communication, to very things computers have helped us and will to help us in the future." 4 4 8 +672 1 "Dear whomever it @MONTH1 concern, @CAPS1 name is @CAPS2 @CAPS3 and I think that the effects that computers have on people is not good. I think this for a few different reasons. Those reasons are that because of them noboby goes out, people; especially students loose penmanship skills, and people loose their desire to do normal everyday things. They make us lazy!! Because of computers people don't go out. They don't go for walks because their doing something on the computer. There is now no reason for anybody to ever visit a store of any kind because you can order everything online and have it delivered right to your front door. Also, for a lot of people, they don't even have to go to work. They can work for whatever company right from their home computer. People can even finish highschool and college on their computers, by taking online courses! That brings me to @CAPS1 next reason for computers haveing a bad effect on people. Students, can now type out all assignments, some schools even give laptops to students to use throughout the year. Being able to type out everything would mean that students would barely ever have to pick up a pen or pencil, makeing their handwriting worse from lack of practice. Another way computers have a bad effect on students is because of the internet. You can find any and everything on the internet, from math books to dictionarys and other resource books. Because of this some students don't even know how to look up a word in the dictionary, let alone find needed information in a book. I think this gives students a wrong idea and sence of reality. When they go to work, not everything will be done on a computer, but this is all they are being taught to use. Lastly, people are losing their desire to do everyday things. Why go out with friends when you can talk to them online? Why go out to dinner when you can order it online? People are starting to see no point in going out and doing things because there are ""more important things"" to do on the computer. I personally think they are brain-washing us and pretty soon the world is going to be one giant computer. Based on everything I just said I don't think computers have a very good effect on effect on people. They are makeing the world a very uptight and controlled place to be and based on that selected information, I'm sure you can see why." 4 5 9 +673 1 "Dear local newspaper, @CAPS1 my opinion on this is that people do use computer's a lot! Some people dont care about exercising, or enjoying nature, maybe people dont even have friends so they spent a lot of there time on the computer because they have no life or maybe they just go on websites that are addictive. For example @CAPS2.com, people/kids have one of those? They chat with friends or maybe even boyfriends. Enyways thats my opinion. Another opinion is that I think people should not spend most of there time on the computer. I think that because people should be having fun, socializing with people, and living there life! So this is what I I think, my opinion about ""Computers""." 3 3 6 +674 1 "Dear @CAPS1 of @ORGANIZATION1, @CAPS2 you think our excersizing and being in nature is becoming less and less? I don't think so in my opinion. I think computers is a positive effect because it can help you connect with other people from different parts of the world. Learn different stuff or how to's to make life easier. Be in-touch with far-away relatives. First of all, I believe computers is a positive effect because you can connect with people from different parts of the world. You can talk about thier culture. About how the, whats thier tradition of marriage or etc. The schools, and ask them questions. Secondly, I believe computers is a positive effect because you can learn stuff from it and how to's to make life easier. Because you can learn it easier with different under standing it better so you. Study from the to's to get school. Thirdly, I believe computer is a positive effects far away relative. If you talk to them in a long time wondering how there doing what they life. When we meet up catch. In conclusion, technology will basically help you in the future well. The marvolous computer will help you be in-touch with really good familys and friends. Now its time to @CAPS3! because the fancy technology will be here till years too come!" 4 4 8 +675 1 "Would you ever think that a computer can take to much time or keep you from doing lots of things. Does using a computer mess up your life in some ways I would say no. The computer is common life everybody needs it or uses it in some way of form. People need it because they look a news when they could not catch it on @CAPS1 so they go to the amazing technoliga. We have witch is the @CAPS2.C of laptops or phone with internet. This just is a natural thing in are lifestyle now the computer does not stop you from going outside and playing other things its you say no I love this tecnoligy do much that I want to stay on it. So does the computer mess up someones life in anyway or is it just you. The beautiful things a @CAPS2.C can do for you. A computer can do lots of things for you wont want to leave it and go do other things, like you have lots of home work and a project that you need I @CAPS4 for so you go do your work and you can also listen to music and type your project and doing things even though your not outside playing and being active doesn't mean that your not doing somethings better for your life like typing faster for a job when you get older and nowing how to use a @CAPS2.C good and not being out of touch with family there is cameal. @CAPS2.C's have been around for a long time and eversince this world has had them we have been smarter more talented in most ways and kids and adults are in touch with wats going around us and how the world is acting technology has helped many people when they needed something done in a rush or for mostly everything they have been around for things the @NUM1 year old people can still go. Research things that they have never known. And find out billions of aplications for it. Although most people stay on for long periods of time but they cant stay on all day without say hi to family and talking to them. So has been around for a long time and still is being used everyday and always will be. So would you think that a computer is tacking to much time in a persons day and they are not spending enogh time with family or is it just that compturs are a all natural thing that everybody needs." 4 4 8 +676 1 "Dear @CAPS1, I feel like computers are good for you in a lot of ways. Like computers sometimes keep kids out of the street so they wont get in trouble. The computer has a lot of games you ran play on so it would keep you doing something. Computers also have something called microsoft and microsoft is something that help you do writing projects and things like that. Computers help a lot of people cause like I said earlier it has games and some of those games have to do with school such as science, math, reading, and social studies so it is very helpful. Computers are also bad for people like you because when you go on it most teens liketo go on something called myspace. Myspace is a thin that you can have freinds all around the world and can talk to them and put pics of yourself on it. If you go on myspace and have friends from different state or the same state you that they world want to find you and rape you. They would start a conversation with you like they would ask you for your name and where you live. Another reason its bad is because when @NUM1 graders go to the middle school @NUM2 grader will tell the inaproperate websites and the little kids would go on it and will get in trouble. Well you heard my opoin I hope you understand thank." 4 4 8 +677 1 "Dear @LOCATION1 press, I believe that computers have a terrible impact on society, the reason I believe this is true is that kids can go ""braindead"" as some people call it. Also kids can get obese witch is already a greatly growing process. The last reason is that kids get bad eye sight from it. The first reason I believe that computers have a bad impact on our society is that all kids do is sit there and eat while they are on the computer and they get an addiction to it so they just keep getting fatter because they arn't getting any exercise. This problem with children getting fat is already a very brought up topic and with something like this out it's not going to get any better any time soon. Studies show that @PERCENT1 of kids who are on the computer more than a hour and a half a day are actually going braindead. This means that if this becomes the new trend for all kids that our next generation will not be smart and won't be able to keep up with other countries and fall behind, so we have to do something about this trend setting issue if you want our country to stay in one piece. The last but not least reason is kids are forming a bad eye sight. This can also bad for future generations. If you let this catch on the generation will all need glasses its almost like a domino effect. These are all the reasons that computers have a bad impact on the society. kids get obese, they go braindead, and they develop bad eye sight from it." 4 4 8 +678 1 "Dear local newspaper, I think people are spending to much time on the compture an these are my reasons, Less time exercising, an enjoying nature and interacting with friends an family. My reason is less time exercising people are to busy on the computer playing games an talking to other ones. Dont you think you should be outside doing some exercising like running around or playing sports instead of being in your house on the comptuer doing nothing. People should at lest get @NUM1 of exercising. You could be on the comptuer for a little while but not on it @NUM2. Take a break from the comptuer an go outside for a little bit injoy the weather an being outside. People just cant take @NUM1 away from there comptuer time I find that really hard to belive that people cant. Its like the comptuer took over there brains an all they want to do is be on it an never get off. My second reason is enjoying the nature go outside for a little bit an see whats going on there go take a walk outside in the woods an look for the animals or look for animal tracks. There are a lot of fun things you can do outside like climb a tree or going fruit picking. You dont have to be inside all day an stare at the computer playing games an talking to friends. You could be outside injoying the nice weather you are getting. Peopl need to learn that there is better things to do with there time. My third reason is that interacting with friends an family. It inportant you spend time with them an see how they been an what they been up to. But instead people are always to busy to talk to there family members becuse they are always on the comptuer doing stuff they dont need to being doing. There are a lot more inportant things in life an people need to understand that. Family is way more inportant then being on the computer but people these days they put family second because they never want to talk to them or see them because they are always so busy waisting there time on the comptuer. Like checking there email is fine but waisting your time on these chat things like @CAPS1 or @CAPS2 or @CAPS3 its just a waist of your time people can hang out an do things they dont have to be on the computer asking there friends that they should just call them an ask. Dont get me wrong I have a @CAPS2 to an it takes away from your hanging with family an things but I make time for I can hang out with friends an family an enjoy the natuer an I do exercis. So I dont see why its so hard for people to do that. So in conclusion I think that people do waist there time on the comptuer to much like I said there are more inportants things in life an things you can be doing like exercising, Enjoying natuer an hanging with friends an family. So I hope you take my ideas an consider them an thank you for listening to what I think. I hope people can get it through there head that they dont have to be on the comptuer @NUM4." 4 4 8 +679 1 "Could you live a day without a computer? I talk to my friends everyday on the @CAPS1. I learn about current events that I wouldn't know without a computer. A computer also helps me through my daily life. I acknowledge that I should get outside and meet up with my friends, but sometimes when its raining or snowing I just want to talk to them online. Another great thing about talking online is that I can talk to all my friends, not just the one I am playing with. I noticed that even when my friends go away, they can still stay in touch because of their computers. Not only can you stay in touch with your friends, but you can learn about the current events. Whenever I go into @CAPS1 @CAPS2, my @ORGANIZATION1 page comes up and shows me the current events. Without a computer I woudn't be able to see who woll last nights ball game or whats happening with the health care bill. These are important things that help me keep up with things away from my town. A computer also lets me learn mopre about what the healthcare bill actually is and how it affects me. Not only does a computer teach me about current events, it also helps me in my daily life. When I'm eating breakfast, I check my email and look at the weather. During school I type up my essay. When I get home I check the homework and talk to my friends online. All of that is done on a computer. That just goes to show how much I use computers each day. i rely on my computer so much that I would be lost without it and I would get half as much done. I strongly beleive that computers are a necessity. They allow me to talk to my friends when we can't meet up. It keeps me up to date with currents. I think computers have become part of our daily life." 4 4 8 +680 1 "Dear @CAPS1 man, @CAPS2 would you want people to be on a computer all day doing nothing? How would you feel if no one was out getting excrise, and no one was using the playgrounds, parks and beachs. Everyone will be sitting at home on there nice new fanny computers. When you really do think about how much time people spend doing nothing, just sitting around, @CAPS2 would a computer solve that problem? It really @CAPS4't. This is what I would say to having computers, People spend to much time on computers, excrise is needed, everyday, and it makes your body wear and your eyes strained. When it comes to computers everyone wants to get one, but when we say excrise it seems like peoples mind click off. This happens because people are really starting to spend lots of time on computers. If they work on computers during a long period of the day, @CAPS5 head home to spend more time on the computer, @CAPS5 whats that doing to your body? not helping it. I like computers to and I like spending time on them, when i need to get something done sometime that doesn't happen, because I get and I forget what time it is and that's not fun. Sometime this happens to people they are engaged in there computer, when someone is talking to them and your telling them something you need them to do, and there noding there head like they know what you sayed, but the next time you asked if it got done and it didn't, you know they were listening. Excrise is really important for your body and doens't even have to be to got anything, but don't spend your time wasted on computers. This happens to @NUM1 to @NUM2 or families when they come home from work or school, and jump right on the computers, families are not getting enough excrise or spending time with family because computers get in the way of that. Excrise would help to keep you instead of electronics. Computers are like little robots that control your mind and body, it sucks the life cut of you. It strains your eyes it makes you wrat and you really dont want to do a lot, maybe if people spend less time on computers and more time being more focused on families and nature, they @CAPS4't be weak and tired. I know a lot of people who @CAPS4't want computers to be banned, but I think it would help for a lot of reasons and make families closer and bodys more focused, from my experience computers do help in some ways, but when it comes to real life it helps for really no one. i hope you understand @CAPS2 I say these sort of things, but if you do care about health and activities @CAPS5 you would say that computers are not a lot of help also." 5 4 9 +681 1 "Dear @CAPS1, @CAPS2 I am going to inform you that more and more people are using computers then spending time with their family. I agree with the effects computer haves on people, because one it allows us to access information, two it allows us to interact with people. And three because it helps us updated on what is happening in sports or everything. My first reason why we should use computers is because it gives us information, like the weather reports, school openings, delays, and closings. It also tell's us how @LOCATION1 has been after the earthquake. It tells us alot of stuff. It allow's to go to other websites to find information to. And it allow's us to have fun and play games on the internet. It can help us on our homework. And it can help us find things like job and other stuff. My second reason why we should use computers is because we can ineract with people. We can talk to people weve never ever met before. We can find information about them and tell us how is their life litte. it can help police find info about their criminals and track them down so they can them. It is better and faster than using the phone to talk to them. And it can make people have fun which will make them stay on the computer for a long period of time. My third reason why we should use computers is because it would keep us updated on and for these who love to watch it would tell us the most recent on teams and players. And if you a sports fanatic you can be able to watch live games on the computer. And we can be able to post games and have a chance to see the players talk to their fans. In conclusion this why we should use computers because it can give us information all over the world, two it can allow us to interact with people weve never met before. And three it will keep us updated on sports we like to catch especially if your a sports fanatic." 4 4 8 +682 1 "With more and more people using computers. I think that this does not benifit society. I think this because mere cases of suicide are from online bullying, people get @CAPS2 addicted that they dont exercize and become obeast, and because it is bad for the environment. Now more than ever before people are bulling. But not just showing kids around like they use to. Now the bullies found a new way, by starting web pages, emailing the person, or making threats online. With the internent people say things that they would'nt be able to say in person because you dont have to see face to face all the time. Did you know that @PERCENT1 of all teenage suicides are from being bullied online. The bullies get into that person head and cause them to hurt themselves because they let people get to them. If we didnt have as many people going online then the youth would be more protected from online predilors. As you sit on the computer and play games or to friends, you are most likely caling. Well when you eat and stay on the computer you arnt exercising. Well, more than @PERCENT2 of obeast people say they don't exercise because they are either to tired or dont have enough time. Of course you are going to be tired if you sit for a couple hours staring at a computer screen. When they say they don't have time but yet they spend an hour a day on the computer. That dosnt make much to me. Obeasity has becomea big concern it is the main cause of head problems. @CAPS2 get active The enviorment is a big concern these days. With toxic, the @CAPS1 layer and skin cancer on the rise. But how does the computer? Well computers use energy and let toxix for environment. Killing the @CAPS1 layer @CAPS2 the are much more powerful, hurting people. Yes and plant do help the @CAPS1 layer but when you print you @CAPS2 you @CAPS2 very hard to keep up with the demand of and the demand of the @CAPS3 have to eat, but with out trees, plants they eat? By the time our children's childrens are here, there @MONTH1 be @CAPS3 to no wildlife left, barely any wilderness and without the @CAPS1 layer many people will die of skin cancer. All because we are @CAPS2 addicted to using the computers. People lives, health, and the environment are all big issues that computers help to distore. How would you feel walking into your childs bedroom seeing them on the floor dead from being bullied on the computer. Or see a loved one suffer from heart problems due to obeasity becasue they couldn't get off the computer. Or in about @NUM1 years the @CAPS1 layeris completly distroyed due to the computers, with @CAPS3 to no wildlife left. Using computers does not benifit society. Sure its a quick look up. But @CAPS2 are books. The computer has every thing a local libeary has. @CAPS2 stop being lazy and get out. Put a stop to suicides, obeasity, and hurting the environment." 5 6 11 +683 1 "Do you ever have time to read? Do you ever spend time with your family? Or do you ever have time to go outside? Well, if you don't, it's because you spend to much time on the computer. Computers are bad for society. And I will show you why. There are many great activities you can do such as reading a book. Instead of reading on the computer, read a novel, you can ask your parents to drive you to the library. I understant that if you need to do research you can do it on the computer but in the library there are all sorts of books such as fiction, nonfiction, science books and many more. Every intelligent citizen would @CAPS1 that computer @MONTH1 have wrong information. I remember when I was doing a project on @ORGANIZATION1, @CAPS2 of @CAPS3 music. I used the computer to research who killed her and it said that a man killed her. I went to the library and checked out a book on her and it said that a woman killed her actually. In addition books help you get more accurate facts. Every caring, loving human cares about spending time with their family. How can you spend more time with your family? Well, you can visit some cousins on the weekends. Your family can make parties. I recall having a party for my baby brother's baptism, everyone came. I got to see my aunts, and cousins that I didn't see in years. I understand that if you have a far away relative you would use the computer to chat with them or see them on webcam, but why not take a vacation were they live and go by car, that would bring the family even closer. I @CAPS1 what that is like. My family lives in @LOCATION2 and I visit them every year. We have family reunions, maybe your family can do that too. As a result, family is important, so don't let the computer ruin yours. Do you ever go outside anymore? Is the computer getting in your way? You have to check your e-mail, reply, go on your @CAPS4, its hungry, you have to do your daily activities. What about your health? Getting fresh air can be good. These are many great things you can do outside. For example, you can jump rope, go to the park, go swimming, play in the snow and many more. I remember the time my cousin came over and we went to the park. We stayed these until the park closed. It was very entertaining. Every citizen in @LOCATION1 wants to be healthy. Going outside can help you, run through the woods, or even jump roping is outside and excersizing. In addition just going outside can do more. Now is the time. Why wait another minute? You can either be all alone on the computer or be outside, or be with your family, even the library isn't lonely. Computers are a bad habit, even though we might need them, its better safe, then sorry to do it the old fashion way." 5 5 10 +684 1 "Dear Newspaper, @CAPS1 has come to my attention that there is an ongoing debate about the issue stating that not everyone agrees that computers benefit society. I can't understand why. Computers present many oppurtunities for people. They allow for people to communicate with each other, they allow people to research topics in a simpler way, and they teach hand-eye coordination. This is why I agree that computers do benefit society. In the modern world, nearly all businesses rely on communication. Many people in those businesses use not only phones to communicate, but computers as well. Online communication is a fast, simple, and effective way for people to communicate whether @CAPS1 is at home or at work. This is one way computers benefit all of society. Nobody knows everything, we are always trying to find out about new things that we neven knew. Sometimes we @MONTH1 use books, but the way most people use is online researching. This is because not only is @CAPS1 quicker, but simpler as well. When you research online, the information literally comes to you. All you do is type a subject to @CAPS1. @CAPS1 is another reason why computers do benefit society. The final reason is that computers teach hand-eye coordination. This shows because as time progresses while you are on the computer you realize that typing becomes easier. @CAPS1 might take a while, but over time people get the hang. @CAPS1's as @CAPS1 the computer is letting you teach yourself. Some people would say that people spend too much time on computers. This isn't a problem though because people have to spend long periods of time on computers in order to do the beneficial things that computers have to offer. In conclusion, you can see that I have clearly stated the benefits of computers. They allow us to communicate, research, and improve our hand-eye coordination. This is why computers do benefit society." 4 4 8 +685 1 "In this modernized world computers are key. They offer many benefits that enclude communication, enterntainment, and an education. These benefits have positive effects on people throughout the world and are why I support the advances in technology. Communication is a large benifit with computers. Whether you are keeping in touch with friends or organizing business meetings computer offer a large amount of aid. With the modern technology that is provided with the computer, people can instantly send messages to co-workers or friends in a matter of seconds. In some cases businesses completly relie on the computer to function; for example, to have conversation with people accross the globe to discuss they are going to expand internationaly. Computers are greatly necessary for people to communicate and enable people to make plans with simply and effectively. The computer also supplies an endless source of entertainment. With the internet the computer provides the users with websites that enable them to talk to friends, watch videos, play games, and more. The computer provides a relaxing way to enjoy yourself when it is late at night or a rainy-day. The computer enables people to stay entertained, and relaxed when needed. The most important function of the computer is education. The computer supplies the user or student with a wide variety of information. The computer aids the user with vast information on every subject or topic that @MONTH1 be brought up in a class room. It comes to be very useful for research projects or even learning another language. The computer is a very beneficail when ti comes to education. The computer is a technology that has come to make daily life simple. It has come to be incorperated with almost any daily task that @MONTH1 occur during the day. It would be unjust to stop advancing in this technological wonder. The computer is a technology that greatly benifits our communication, our entertainment, and even our education." 4 4 8 +686 1 "Dear local newspaper, I would like to speak upon the topic of the effects that computers have on people. My opion on this topic is that computers do have an effect on people. Most people while surfing the internet don't keep track of time. What I mean when I say most people lose track of time is that, they try to keep track of the time but while on the web something @MONTH1 pop that catches their intrest and at that same time there focus is on something else. Some of the other effects computers can have on people is keeping them in the house. When many people are on the web they tend not to excersise as much. When in the house on the web most people that excersise stop excersising. The reason why this occurs is because while people are on the computer chair you feel so relaxed and calm that you don't want to get up. This leads into eating unhealthy foods. Some such as chips, donuts, twinkies and etc. Some @CAPS1 do not believe that is an opinion. The reason I say this is because while watching television the other day I saw a commercial that said quote ""@CAPS2 that are more active are healthier than @CAPS2 that stay on the computer all day. Most @CAPS1 do gain weight on the computer because they are not physically active. Not being physically active can lead to A) obesity @CAPS4) cloged arteries or @CAPS5) lazyness. It can lead to all three because those are the effects of being on a computer every of the day. Most @CAPS1 should be enjoying nature instead of staying on the computer. There is a lot more to life than being on the web. Some such as playing sports. Not only is playing sports fun but at the same tim it is also healthy. Would you rather live to @NUM1 or live to @NUM2. And so local newspaper that is why I am writing you this letter today. I mean would you rather have friends @CAPS2 or be lonely. There are weight surgerys but those can rack up to thousands of dollars. And yes weight loss surgery does have effects such as death. So come on @LOCATION1 its your decison and remember the most important part of this letter which is between liveing healthy and young or dieing unhealthy and suffer. Its your choice @LOCATION1 decide." 5 4 9 +687 1 "Computers are a good benefit to society they you to talk to people give different for you the the latest updates. First they allow you to chat with friends they allow you to message anytime you want. You can talk to people the faraway you lose. For example your friend live the other side of the globe you an your computer and message so you can still talk to them all the time. Also when your bored it will give you something to do. You could see if anyone wants to make plans to hangout. And if you just want to stay home all day you can still interact with people. Secondly it gives you new ideas on things. It shares oppions. Maybe someone bought same they and it did not work you could see the comments and review. Would you want to spend you money on some thing that did network? I woudn't. You can also see majority of people like what they got. Also they make you think of something you would not think about before say you had are mark about how this horrible maybe if you read the page it online it shows what you did wrong what you did not do. It gives you the to try something you @MONTH1 enjoy what you get. Lastly it gives you the latest updates it can share if the sched is closed, delayed, or open. You wouldn't have to wait for the news to show it. It can tell you about crimes that are happening. Also it tells you about your town. Who dont want to know whats going on your own? It tells you new things that are in your town or what their going to make or it tells you what it is getting rid of. Computers are they lot us chat with friends and family. It gives us thoughts we @MONTH1 have never thought about before and they tell us the newest updates." 4 4 8 +688 1 "Dear newspaper editor, With all due respect to anyone that thinks the computer doesn't benefit society, I strongly disagree. Yes, there are many people that neglect other activities to be on the comuter, and yes, the computer is an invention that a lot of people depend on, but the computer is also an invention that we can benefit from in many positive ways. For example, @CAPS1' @PERSON1, a hip-hop artist with millions of fans, wasn't able to finish high school or go to colledge because of his career. He decided to get a colledge degree, so he started to attend a colledge. He had difficulty being in colledge, however, because he was constantly being harrassed by his fans, so he started going to colledge online. That way, he was able to focus on his studies and get his degree without the harrassment. The computer also has websites on the internet that are used in schools. They help teach students in a way that they will have fun and enjoy what they're doing, giving them a better learning experience. Aside from the positive uses of the internet, the computer also contains progams that can benefit us just as well. Microsoft @CAPS2, for example is a program on the computer that is used to create @CAPS2 documents such as peoms, essays, song lyric, and even letters. You can print out these @CAPS2 documents to have a copy of your ownn to keep and show people wherever you go, but if your not finished, it can be saved on your computer. People use the computer for many things, books, movies and so one. Over the years that its been existance, its benefited us al lot. What do you think?" 4 5 9 +689 1 "Suppose you have a family member that you have not seen in a long time and you dont have enough money to visit them because they live to far? Or you are injured or sick and you have nothing to do, so you decide to just browse the internet and you actually learn some interesting things like what new organism has scientist found out or something in history you've never known before? Amazingly, the computer is filled with knowledge like this. You could talk to family members you haven't seen before or just havent got the chance to see them in a long time. You could even know a lot of new interesting stuff about nature and history you would have never known about by just stepping outside. And just so you know more, I'll even tell you about these things. I have a half sister who I only get see like once a year or once two years. But the only way I get to interact with her is on facebook. There is also websites people use to talk to loved ones like twitter, myspace, yearbook, aim, skype ect. Not only do you just talk to them you could do a webcam chat, so you could also see them. Alot of people use webchat to talk with old friends. While on the computer you could also learn new things. Yesterday, when I was on the computer I got bored and did some random searching, and in that @NUM1 min. I learned things I never heard about, like the ""@CAPS1 massacre"" and that time when a teacher went into a spaceship for the first time and it blew up with the teacher in it. Man was that a tragedy! If you were interested in nature you could learn about all kinds of nature around the world. Also, if you are interested in ancient time with a few typing you got all kinds of fascinating things of ancient time like @PERSON1, the city that was forgetten, then found. I'm pretty sure you couldn't learn that kind of stuff stepping outside. The amazing things a computer could do! Talking with family and friends you haven't seen in which to be decades and learning fascinating things. Usually it's cool because you could learn things your teacher never new. Would you want the teacher teaching you or you teaching the teacher!" 4 4 8 +690 1 "Dear @LOCATION1 @CAPS1, I believe that computers do benefit society. People are able to read, shop, and play online. This makes life easier for many people. Buying books that you would like to read can get expensive. With the internet, people are able to read almost any book right on their computer. In a recent survey, it was found that people who read books online save an additional @MONEY1 a year more than people who buy books. People can also read things like newspaper online. If there is snow on the ground, and people are unable to get their newspaper, they can read it online. This way they will know if a newspaper is still good, and continue buying it, including the @LOCATION1 @CAPS1. Additionally, people are able to shop online. Sometime, someone @MONTH1 have been an accident injuring them, and they are stuck at home. If it is a child, their parents will be unable to go to the store because they will be caring for the child. They can simply go on the computer and have food and other necessities delivered to them. People can also do this if they have a busy lifestyle with work or school. @PERSON1, a physician, told me that people who shop online have @PERCENT1 less stress than people who go to the store for the same items. He said that is is because they do not need to worry about taking much time out of their schedule to shop. Moreover, the computer is a good way to quictly play games. Young children can be very loud and energetic. Parents can just let them play games and read on the computer. Little kids love just the fact of being on the computer, and letting them go on can keep quiet and occupied for a while. Even just typing is interesting for younger kids. For older kids, there are many games that can play. Action, strategy, puzzles, and many more. They can also play against people around the world. The computer is fun for everyone. So in conclusion the computer is a very good place to go shopping, read books, and play games. Computers greatly help families of today." 5 4 9 +691 1 My opinion on the effects computer have on people. A good effect that computer have on people that it teaches them how to have good hand-eye coordination @CAPS1 if they work as a doctor on anything that needs it that would help them do better in their jobs. Another reason why computers have good effects on people it let them chat with their famile memebers case if your family went to a whole new countries for a trip then you beable to see how there doing and it's like there. Another one would be that you could learn about another states and countries around the world. It tell you how many people like there and what type of culture they have when it found probably now when I want to learn about texas I look up information on it and tell me when it was found the capital and how many people live there. Another good thing that you could play games with your friends like all types shooting games racing sport arcade all type. 3 3 6 +692 1 "I don't think that computers is the most positive effect. Because most computer's are not like that the computers are not the smartest but it does help you when you need to do something like a project when you have to look for pictures and when you need help with math you can use the calculator on the computer but the computer does not help you on all your subject's the computer only help's you on a couple of your subject's that is the main reason I use the computer. Sometimes when I'm doing homework I let the computer do it for me so it is eaiser for me to do and I look for website's on it they give you really good website's that is why mostly everyone use's the computer they mostly use the comptuer to look for job's, car's, or a house that is what they mainly use the computer for most people do not like useing the internet because they think it's cheating to use the computer." 3 3 6 +693 1 "@ORGANIZATION1, In ones opinion about computers and what they can do to benefit society these days. Ones opinion about what the effects that computers have or people are that they can benefit us in many ways for example they can communicate with people around the world for example many people @MONTH1 have friends or family that live in another state or country computers can help us communicate with them. Commputers alow us to help us learn what we couldn't learn from books. Computers can help us with learning such as learning about or the population. One might think that is good but its slow with computers you can send emails and have the person on the other end reply instantly because of computers. Computers have benefited society in many ways. Computers in ones opinion about them is that they can benefit us in many ways we wouldn't think of being possible. Before computers and printers we had in use type writers and if you messed up you would have start again and it could take hours or work to get the paper perfect but with the worlds modern we would don't have to type whole paragraph over again if we make a mistake we can just hit the back space button on the keyboard so it won't take us hours to type one page or when it take half an how at most so computers have benefited us in more way than we know it. So in ones opinion about computers and what they can do to benefit us is that they allow us to do things we couldn't have done before the computer was invented. The computer was a great invention and it is benefited mankind as we speak and that it is that hard to set up. So in ones opinion about computers and what they do that can benefit the society that we live in and also benefit mankind as well." 4 4 8 +694 1 "Dear @LOCATION1, I believe that computers benefit society very much. I believe so fo various reasons that I will state through out this passage. Although sometimes people spend too much time on computer it doesn't mean computers are bad for society it just means people need to learn to spend their time wisely. Overall I think computers have a positive effect on society. One reason I am for computers is because they are a huge advancement in technology. They are able to make everyday life easier. They allow you to store information. Learn about many places, and communicate with friends and family. For one device to do all that is amazing! Also if we can make something like computers imagine all the other possibilities of technology advancements. Computers are only the start of it all! Anouther reason why I believe computers greatly benifit society is because they provide entertainment. You can watch movies on your computer, and download fun games. There is hardly anything you can't do on a computer. If it is cold outside or raining you can still entertain yourself with just a computer. Computers are very great to have around. Now anyone who thinks people spend too much time on their computer and that computers are bad for society is just wrong. I think those people are wrong because a computer can't force you to spend more time on it. It's your own fault if you choose to use your computer too much. You always have the choice to go outside and take a walk. Computers are only wrong if you choose to use them wrong, like the expression ""guns don't kill people, people do."" In conclusion I believe computers are a great thing to have espicially in this modern society. Computer are one of the greates advancements in technology and they benifit society as well. So if you are ever wondering weather or not to buy a computer I suggest you get one!" 4 4 8 +695 1 "Dear Local Newspaper, I think computers have a positive effect on people. The reasons for my answer is that there are many homework helper websites, the computer helps you learn about places you've never been to, and you can even interact with people all around the world. These are my three reasons on why I think computers have a positive effect on people. First, I think computers have a positive effect on people because there are many homework helper websites that struggling students can go on and get tutored. I remember in @NUM1 grade when I had a math midterm. I was having a hard time understanding the math. Then, I went on a tutoring websites and they taught me everything that I was having trouble with. I think that the computer can help many kids obtain good grades. This is my first reason why I think computers have a positive effect on people. Second, I think computers have a positive effect on people because it can help you learn about far away places that you have never been to before. This would be useful for a school project on a country. Also @PERCENT1 of students in my school say that the computer ha s helped them a lot on school projects. The computer could also be useful for planning a vacation. Would you want to vacation to a place that you know nothing about? That is where the computer can help. All you have to do is search your destination and pictures and info will come up so you can make the right choice. This is my second reason why I think omputers have a postive effect on people. Lastly, I think computer have a positive effect on people becuase you can interact with people around te world. I have a brothter that lives in florida, but I can talk to him every day on the computer. Also, I can keep in touch with my friends anytime I want. I think computers help people develop better social skills. This is my last reason why I think computers have a positive effect on people. In conclusion, I think computers have a postive effect on people for better grades, learn different things, and talk to friends." 5 4 9 +696 1 "Dear editor of The @CAPS1, I believe that computers are good ideas for our community. If the library's closed and a students needs information, you can look it upon the internet. Also, you can talk with your friends if your phones not working. Computers can help people learn about the latest news if the television is getting pixecl. First of all, computers can help with research alot. Let's say it's ranning healthy, your car? out of gas and you need to go to the library before it closes. Just be easier to go on the computer and find a research site about your topic; no gas wasted, no sopping wet doing just you in a robe sipping hot choclate on the computer. Next, you can talk to friends all the way in another country without having to pay extra for a long distance call. And if yo udon't have unlimited minutes and you went to talk with someone for a long time, you'd be wasting valuable minutes and money! This is where computers come in. You can just open a chat window and talk away, just like that. Finally, you can look up the latest news and information on a search program, like @ORGANIZATION1. If your television broke and it'd take a week to fix, what if something happened that you needed to know about you could just go on the internet and look it up. Thank you for reading my ideas, editor. I hope you'll choose my article to post in your newspaper when the time comes." 4 4 8 +697 1 "Fairfield @CAPS1 @CAPS2 computers have a bad effect on people? Many people say ""yes"" and many say ""no."" @CAPS3 a matter of fact, computers @CAPS2 have a bad effect. People are very easily distracted on computers, it wastes time, and it causes stress. Many kids who @CAPS2 there homework on computers are very easily distracted. With computers come the internet, and with the internet comes games and social networking sites. Many kids would rather chat on facebook with a friend than @CAPS2 homework using an online book... including me. When I get home, I start using the online text book for my math class. But when I wait for it to load I get bored and go on online game website. After that I get too distracted on this addicting game called ""@CAPS6 @CAPS7 @NUM1."" And @NUM2 hours of playing online games I realized I have wasted a lot of time. I realized I have been wasting a lot of my math homework time lately with those online distracting game. And @PERCENT1 of my grade in math is homework I've gone from a @CAPS4 to a @CAPS5+. And why waste time on the computer. Outdoors are just @CAPS3 fun @CAPS3 ""@CAPS6 @CAPS7 @NUM1."" I'd rather be playing football with my friends than that dumb game. My parents have also realized that I've been wasting so much time on the computer they've blocked the internet. But distracting games that waste time also cause stress, which could be fatal. Imagine being in the hospital because of playing on the computer. Once while I was watching the @ORGANIZATION1, a man said @NUM4 people died because of playing on the computer for over @NUM2 days with little food or water. My parents also notice that me and my brother are grumpy after playing on the computer for so long. And I've been stressed lately. Overall, computers have a bad effect on people. Distracting games are a waste of time and cause stress. Hopefully people understand this message and you shouldn't play on computers for too long." 4 4 8 +698 1 "Dear who it @MONTH1 concern, I think that computers are very affective but then again they are not because would you rather have your kids on the computer or lets say some children smoke and some hang out in the streets to much yeah it does do a lot affect to them. In my predictionI say computers are very addictive but then again it really isn't because there are some people who really don't like being on the computers for a long time cause it gets boring and it starts to hurt you eyes. I will understand if they don't want to get off when it passes there bed time. Some kids do a lot of bad things out in the street and hang out in the streets a lot, but when they go on the computer it can stop some of them from doing those things. A lot of kids have myspace and facebook ... and more and it is the best way to stay in contact with your family and friends thats one of the main reasons kids go on and there is other electronic devices that stops kid from exersicing and stuff like that such as a psp go or xbox @NUM1 or ds, dsi playstation @NUM2 and @NUM3. So I think it is an addiction and it affects kids but the things you'd rather have your kids do keeps them away from doing it." 3 3 6 +699 1 "Dear @CAPS1 Society: Computers are perhaps one of the greatest improvements to our societies advancement in knowledge in the past few decades. These gems of future, are like a human being; they have their own mind and can figure out answers to all problems. People all around the world use them, from @LOCATION5 to @LOCATION4, to @LOCATION2 to @LOCATION1, they are being used. People from ages of school kids, to adults who have a job so highly appreciated as a chemist, use computers! Do you wish to be that one standing on the side lines, stuck in the past, not advancing with technology? From the creations of rockets, engines and planes; computers have never let us down. Still, the question is this: will computerized technology benefit our society or crash it down? Ever since the @DATE1, computers have been used as an ad for new information. The speed that they are able to recieve new information in is just astonishing! @CAPS2 @PERSON2, computer engenieer, says ""With the technology that we recieve from computers, we are able to be in the game."" @CAPS2 just comes to show one of the best benefits of computers: their ability to display the most current information. Now, I can see how books are an excellent resource in society, and how they provide for amazing information, however it takes years to publish books! With the use of a computer, information that occured sometimes as close to @NUM1 hours ago can appear on the internet! Not only will this allow you to get information faster, but it will allow our society to ""be in the game."" You catch a football as it soars through the air, you track a baseball or it flys high in the sky, you grasp the face of a basketball all because you have ""hand-eye"" coordination. Hand-eye coordination is perhaps one of the most neccessarry aspects of life that a person can have. Face it, everybody needs it! So why not help your body to get that talent: buy a computer. Imagine, our society would advance in it's sports and even just with life if they learn how to coordinate themselves. Did you know that @NUM2 out of @NUM3 people who owned a computer and typed daily were able to catch all three tennis-balls that were thrown at them! You could do that too! When typing on a computer, human development observers states, your eyes a free tracked on the screen and you train your hands to manuvor about the keys all by themselves. Just as in basketball, when you train your hand to track the bounce of the ball without you needing the need to catch it. I can remember when I started typing, my hands began to naturally find the keys without me having to look at them. And the next day at basketball practice I felt like @CAPS3 amazing point-guard @PERSON1, the ball just came straight to my hand! Get this need of life, invest in a computer! Money @MONTH1 be the most vital thing in our society right now. With profits as low as medium wage, our local area is not that ""rich."" I can see how it could be hard, having to purchase these computers at prices as high as @MONEY1 each. But then just think, each book that we won't have to purchase would save us @NUM4 each. Not only do computer's stand to last @NUM5 longer than any paperback, their information is always new, changing, and up-to-date. In order for us to be purchasing new books because of recent information would end up coasting as more in the long-run. Our neighboring society of @LOCATION3 just invested in over @NUM6 comptuers for their society. The stated that it took onlyt @NUM7 months to get the money back that they had purchased on the computer's with the amount that had not purchasing book! Now just imagine how much money our society would gain after @NUM8 year! It is necessary for our society to have computers. With them we not only learn hand-eye coordination but we invest in more money for the. And now with so many things happening in the world it is important to recieve information instantely from these computers. I can't stress enough that without them we just @MONTH1 be less in the rest. Dreams of incrediable rockets and medicines and cures far diseases just won't happen. Computers rise perhaps the only thing that actually benefits our society. You must understand how important this technology is to our society! But, int the long-run, the decision is yours is make. Choose quickly, the fate of our society is in your hands." 6 6 12 +700 1 "Dear Newspaper; I bileve that computers are good for our society. There are maney resons as to why I beleve this. One reson is that it makes life easior, it also helps us understand what is going on in our lives today. If we didn't have computers how would we talk with people without phones and spred news. Computers make life easior by maney ways. For example, if you needed a docters permition to play a sport, it would be alot easior to send him/her an email telling him/her to send you can email saying you can you can show it to the sports team and they will alow you to play. We can also lirn things about our world today by using the computer. We can go on the internet and go to a news website and look at the wether so we can make plans for the day. We can find the newest technology ""I phone"" or ""@CAPS1 "". There are some people in the world that don't but have a computer. For example, my uncle is in the airfore and the only way we can get to talk to him is through the computer because they don't alow phones. Also if there is a pirson with good news and they want tell a lot of people send an email and forward it to everyone. I hope you understand why I beleve computers are a good thing to have in new society. I have that they make life easyor. It also helps us understand our life today and it helps us talk to people around the world. I hope you agree on my topic." 4 4 8 +701 1 "@ORGANIZATION2, Technology has developed majorly these past decades. It has helped mankind so much from buildings to new inventions. These is how ever a growing concern about whether it's beneficital or not? People become more lazier because of the many things you could do with it. I think that it benefits us all. We have learned many things from it. The computer shows what man kind is capable of doing. We can learn about many cultures with it. Students use it for studying and making projects look better. I asked @CAPS1 @PERSON3 of @ORGANIZATION1 about the concren. He says that is can expand our knowledge. There is concern about how much paper we lose every year. With computers it makes going green more possible. You can make powerpoints on the computers instead of using so much paper for long essay. We could do tests on computers. I think the future will be based everything on computers. You can email instead of using letters. For example my friend @PERSON2 said her school didn't use paper and uses computers. They saved money and paper because of powerpoints etc. I miss my family over at @LOCATION1. I want to see them. Not just by talking on the phone. I use the computer to talk to them basically have. I asked @NUM1 people if they perfer using computer to talk to there family or use a phone. @NUM2 out of @NUM1 said they perfer computer. I know I'm trying to they are great but they do have there down side. The games are horrible for the computer. People will just play and play all day long. Online for the games make it even more fun thus it make them lazier. There are so many games for the computer it's horrible says @PERSON1 of @ORGANIZATION3. In conclusion, computers will be something that will help us for a long time and it benefits us. Except the fact about the games I agree with that bad side. I hope I have shown you as an independent person my statement was true." 4 4 8 +702 1 "My opinion about the effects of computers is that computers do help you but people should not us the computer to lot because people should exercise, interacting with family and enjoy nature. Exercising is more important than a computers because it will make you health, you will not be sick so much. Interacting with family is more important than a computers because the @MONTH1 help you have friend but not a family's help you when you help and maybe that friend in the computer is maybe not real that is why it is important to interacting with family. And the last thing that is more important than a computers is enjoying nature. It is fun because you are not bored. You be outside, you will not think about the computer because you will be enjoying so much. My opinion is that computers should only be us to see your mail or to learn something you want to find out in the computer." 3 3 6 +703 1 "Dear local Newspaper I believe that computers are a great help to society I will explain my thoughts and ideas to you. I hope you agree with me after reading this. For starters, I would like to say that my first subject is communication, computers allow us to talk to everyday folks or folks that are around the world! There are many ways to talk, text, speech, and webcam, and it is not like you cannot talk to them there are hundreds of communication cients, servers online @NUM1 usually, so you will always be able to someone! Secondly, I would like to say computers have a great way of creation. On a computer you can program @CAPS3, design presentations, documents, drawings, maps, graphs, almost anything you put you mind to can be virtually made. You can gather information from servers websites, @CAPS1, @CAPS2 @CAPS3 you can create and learn a lot on your everyday computer. I am not fisned! There are @CAPS4, @CAPS5, @CAPS6, reading, book sites all on the web! This gives the opprotunity of the ""web searcher"" to have a vast ammount of information! and allow he or she to learn alot more in every day life. Finaly, I would like to say that computers has a wide range of entertennent! There are many to choose from like videos, movies, @CAPS18, @CAPS1, games anything that is suitable for the user or users of the computer. On a game a user @MONTH1 talk to friends, while @CAPS14 a game such as a (@CAPS8 @CAPS9) for example @CAPS10 @CAPS11 @CAPS12 online, @CAPS13 @CAPS14 game. These kinds of games skyrocket entertennent lovers for the vast ammount of enjoyment they can endure while @CAPS14 a @CAPS8 @CAPS9. Another type of entertennent is videos people can watch videos and movies on a video and more website which has a database of not thousands but millions of videos and movies. Whatever the user wants is a text and a click away! The last type of entertennent is @CAPS1 and @CAPS18, these allow the user to daily life or take to friends, family or relatives. To sum this all up I would like to tell you Local news paper that you should agree that computers are a good thing for the society! Please reread and pick the right @CAPS2!" 4 4 8 +704 1 "Dear @CAPS1, I thick this is a good idea because you can play games and talk to family or frends and lisen to music. My first reason is playing games. When you are bored and theres nothing to do all you can do is go on the computer and play all kinds of games like cars, shoting, arcade games to. You can do all this if you are bored or if you just want to go on the computer. My seacond reason is talking to freinds or famiely. If your brother or sister or any of your family members live in a different state and you want to talk to them or see them then all you got to do is ask them ""@CAPS2 is your email address and then if they got a myspace or facebook then you could talk to them as long as you want. You can also talk to your friends on those websites to. My thied reason is lisening to music. You can also lison music on your computer bu going to @CAPS3 or downloading frostwire or something like that. You can lison to all kinds of music like hip-hop, rap rock, or havey rock. If you want to lison to any song your going to need the song's name and something the artistes name to. This @CAPS2 I thinck they should put and @CAPS2 they should pick." 3 4 7 +705 1 "What is more fun, stairing at a blank computer screen all day, or spending the day out in beutifull nature with your friends and family? Well, if you don't know, I do. I took a survey at my school with the same exact question and @PERCENT2 of the kids said that hanging out with friends and family is much more than spending all of your time on the computer, and there are three reasons why they said that. First, instead of talking to people on the computer, than in person. Next it's unhealthy, and lastly alot of bad things can happen on the internet. So, if you are interested in this topic please keep on reading and I will prove that the computer is not a good way to spend your spair time. Do you know what computers were intended to do? Computers were you people, but have for one second that instead of interacting with people you should interact with the people around you. Instead of going on facebook/myspace to talk to your friends, just them over. If you do that its not only more fun, healthier for you. So next time anything else just think the other options. In my last paragraph didnt I say that hanging out with friends is much more healthier then being? Well I was absolutly @PERCENT1! Did you know that when you waist your only hurting yourself? Well, you are when all your doing is sitting down stairing at a screen you are not doing anything to help your self because you are get absolutly exercise. When your not on the computer at least walking a little bit, but typeing doesnt do anything for you. Thats why people shouldn't spend all of their time on the computer. Have you ever heard of an internet preditor? Well if you let me just sum it up for you. An internet preditor is someone that uses the computer to get people they dont know do inapropriate things. And did I say it was against the law, because it is. So if you you ignore friend because if you dont, bad things. And tahts just one of the reasons why people spend as much time on the computer. So, now you know why people shouldnt spend as much time on the computer as they usually do. First, instead of talking to people on the computer, go in person. Next, it's unhealthy, and lastly, internet preditors. So the next time you open your laptop, just think is it more fun stairing at a blank computer screen or spending the day in beutifall nature with friends and family? And always remember what the is." 4 4 8 +706 1 "Computers have a positive effect on people. Computers can help people learn about news in the world, places and people. Computers can also help people communicate with each other. Computers can also teach hand-eye cordination. People who support advances in technology, believe computers have a positive effect on people. Without computers people could not learn new things. On a computer you can learn about new places. People could see where something is, locate it, or learn about the place. I remember when I was working on a project about @LOCATION2. I had no clue what to do on the topic, so I whent on the computer and looked up @LOCATION2. It told me @LOCATION2 was located in @LOCATION1. Then it showed me a picture of @LOCATION2, and the history of the country. Without the computer I would not have been able to learn about this fasinating country. On a computer you can also learn about historic and famous people. On computers you can read biographies of them, or watch videos of whay they did to become famous. People used to read news out of a newspaper, on computers you can too without paying the cost of buying a newspaper. Computers can also give you a live feed of what is happening in the world. Without computers people could not learn. On computers you can also communicate with people that are very far away. Scientist did a study on how people communicate. @PERCENT1 of @CAPS1 said they used a computer to comunicate with other people. People can use a webcam, aim, or email to communicate with other people. To communicate with my family in @LOCATION2 I use a webcam. To communicate with my friends I use email or aim. Writing letters is to slow, on computer the other person your talking to can reply immediately. On a computer communication is made easier. A computer can also teach you hand-eye cordination. On a computer you see something on the monitor and you can click it without looking down at the mouse to click. This can help you in sports and give you fast reflexes. In many sports you need hand-eye cordination. For example, in basketball you need to look up while you dribbling or you while fall. Computer can give people fast reflexes and helps people in sports. Computer should be part of societys everyday life. Computer have a positive effect of people and they can help people learn new things, like, places, people, and news in the world. Computers are very benefital to society." 5 5 10 +707 1 "Dear Local Newspaper, I'm writing to you because I believe that people in the @LOCATION1 over use computers these days. I think that instead of home on your lazy and playing farmville and pets on facebook you should get out more. I think that you should @CAPS8 the gym and work out you should @CAPS8 out to the park or have family fun night with your kids (@CAPS1 you have any) The last thing I think you should @CAPS7 is @CAPS8 have a little ""@CAPS2"" time for example take your self somewere nice (you'll about time in a second) @DATE1 all you've done is sit home playing farmville and other games and what not you probably get really fastly and you eating right? well @CAPS1 @CAPS3.... boy you gained some pounds of the @DATE1 and you look you need to get your self to a gym. from sitting on your while on the @CAPS9 every day you any calories or fat @CAPS3 when you eat all your doing is gaining weight. and @CAPS4 you probably don't want to. @CAPS7 you have a family? Well @CAPS1 you @CAPS7 I think that taking a family trip to the park would be fun or going to @ORGANIZATION1 would be a fun way @CAPS3 you can get your hands off those keys and your head with your kids. Also you should make other nightfamily fun night and play games and hang out with family on family fun night you can play characles or a board game. (as long as you don't have a in your house) The last my favorite one is ""@CAPS4"" Time. During ""@CAPS4"" Time you can take your self shopping out to lunch/dinner you even take a map the whole point of ""@CAPS4"" Time is that You @CAPS7 NOT @CAPS8 ON THE @CAPS9!! you need to relax and just take a brake. Well those are my suggestions to you. @CAPS3 now its your turn to jump on out of virtual world and put your head back in reality." 4 4 8 +708 1 "Dear @CAPS1, Computers are an amazing advantage to use in this modern day and age. They are easy to learn how to use, you can connect with old friends, and even learn by going to an online school or college they offer. Computers are amazing advancement and this is why you should use one. Who doesn't like computers? They are easy to learn how to use and are in a variety of forms. Almost every college student has a computer or laptop. They could have never used one before, but then they learned how easy it was. Most computers come already installed with the necessary programs including: @ORGANIZATION1, @CAPS2 @CAPS3, or some form of @CAPS2, a virus protection software, and other simple software. Moving is very hard, you leave a place where you have so many friends to a place that is so new to you. Computers make this so much easier by letting you connect with them without having to wait for the mail by writing letters. There is email, facebook, and myspace that let you chat with old friends, new friends, or even parents. Some people say that these things are dangerous, that is only if you start talking to people you don't know. People keep coming up with even more ways to stay connected so don't miss out on the opportunity. These people are so smart, they figured out a way to have school online. This is very helpful to somebody who is injured or is trying to get another degree to get a better job. People get assignments to do and each class only takes about one or two months. People get to do their job or enjoy nature still because their day is open and not busy. Sure people don't get to enjoy the campus, but with the price of gasoline these days, it's worth it. So don't be the person sitting around doing nothing, buy a computer and stay in touch with technology. Remember computers are easy to use, you can stay connected to friends and you can go to school on them. This technology can help you more than it can hurt you." 4 5 9 +709 1 "Dear Newspaper, @NUM1 percents of jobs @CAPS9 day use computers. The invention of computers have change our world in a positive way. Our society needs @CAPS1. @CAPS1 help our world @CAPS9 by teaching about faraway places and their cultures, uniting our world with new techniques of talking and helping workers to have a better job. Let's go on. ""@CAPS1 is the best electronic tool created by the world"" @CAPS5 @PERSON4 a profesor in @ORGANIZATION2. Today the world works by @CAPS1, as @CAPS1 grow! Our culture was loosing territory but as years past cultures and @CAPS1 started to work together. ""@CAPS2 you want to know about a culture just go to the internet"" @CAPS5 a teache from @CAPS3. Culture is really imporant for our world because is what we were before technologi exist @PERCENT1 of the world culture can be found in the internet or in our computers. @PERCENT2 of people @CAPS2 they need to do a research they don't go the country to do their research instead the first thing they think is the @CAPS1 because they can find what they need at any time. Let's continued. @PERCENT3 of people agree that the invention of computers helped our nations to be closer. @CAPS9 days you can talk through the @CAPS1 with a person in @LOCATION2 without needing to go to @LOCATION2. ""The creation of @CAPS1 created a new revolution of way of communicating"" @CAPS5 @PERSON1 a young student of @ORGANIZATION2. ""@CAPS4 of my internatinal calls I do by using a computess, and there are so many ways of talking, also is so easy."" @CAPS5 a mother of a student in @CAPS3. Computers are use @PERCENT4 more than cell phones because is cheaper, ""@CAPS7 true you can see the change of our nation, is the best thing a human created"" @CAPS5 the professor at @ORGANIZATION1. Lets go farther on. Did you know that @PERCENT4 of our jobs in the @ORGANIZATION3 is mostly about using a computers. Even engeneers use computers an example is @LOCATION1 @CAPS8. the engeneer. Awarded by the president @PERSON3. He @CAPS5 that ""@PERCENT5 of his job is using a @CAPS1. Statistic proved that @CAPS2 you know how to use a @CAPS1 you a higher opurtunity that a wage higher than the avage you would received when you do not know anything about @CAPS1. Another statistic should that @CAPS2 you know and use computers you would live longer and happier. @NUM2 @ORGANIZATION2 student agreed that his friend have better jobs @CAPS2 they know how to use computers. ""Computers helped young adults to have a better oportunity in life"" @CAPS5 the teacher of @ORGANIZATION4. ""@CAPS9 days is esential to know how to use @CAPS1"" @CAPS5 @PERSON2 a teacher of @CAPS3. @CAPS1 helped the world to change in better way. Let finished up. @CAPS1 is a tool that @CAPS4 of our nations used. @CAPS1 helped to learn about new cultures of other countries, also the new ways you talk to someone around the world in the conviniant of your house just by using a computers and ""the handy @CAPS7 can be to know how to use @CAPS1 when you are applying to a job. @CAPS1 had made us a better world. Don't forget without computers we be who we are." 5 5 10 +710 1 "Dear local newspaper, Are computers a bad thing? Certainyly not! They can be distracting but in a enlighting way. How? Computers give you extra knowledge, you can connect with people and if you think they take away exercise, they do not, they can actually help exercise! My first reason that computers are a positive device to have is they can give you extra knowledge. That is great for the brain! When you are sitting at home with a ton of, think again, the computer is there for you. Ask or search anything and you should have a @PERCENT1 guarentee your answer will be found! If you feel like you do not know many interesting subjects like a culture of some sort or something that you heard your computer can tell you. Just one computer can enlighten you with so much. Now when you go back to school you can brag and say ""@CAPS1 you know,?"" People will be amazed. Lately experts have been concerned that the computer device is a distracting item and it will keep you from exercising and enjoying nature, @CAPS2, no need to worry you can learn just nabcur anything on nature when you surf the web! You @MONTH1 find out more of what is in your maryard then you already knew. Exercise! Are you worried you do not get enough exercise? @CAPS2 then, go onto youtube.com, type in exercise and work out. You will come up with millions of exercise routines you can do right infront of your computer. Another thing you can do it get online for how to stay healthy and exercise! Lastly the experts is have been that we people are not having a sccial life and interacting with our family and pals. I would say we spend more time interacting with our buddies and close ones online then we do in public. With sites like facebook, @CAPS3, @CAPS4, @CAPS5, and more we are talking to those people instantly! We are setting up our weekend plans online and a lot of our social life is there. Sometimes we have family that lives long distance, no one wants to pay for a call so we have the internet to connect! In a nut shell, knowledge, exercise, and connecting with buddies are all positives in the computer. You can multi-tase so simply with just one electronic device and that is the computer! Experts, you do not need to worry." 6 5 11 +711 1 "Dear editor, Have you ever stopped and asked yourself which was more important? Of course I can be talking about anything, but what about computers verses family, friends, nature, your own health etc. Well, I ask myself that quite often, and I feel that it's so much more worth it to be with family and friends than to be infront of a computer. There is so much more that I can tell you, and just after my very first reason how could there even be another side to it? Why is it that now these days kids can't simply run out to the bus stop without feeling totally winded? I feel it's because they are not getting enough well needed exercise! For example, instead of sitting infront of the computer, kids, and even adults can enjoy going to the gym. Also, children can get more involved with school sports so they can not only be participating in sports, but they can be involed with school too! Lastly, just by going for a short walk with your dog, your not only walking and getting well needed exercise, your bonding with your loyal friend. Have you ever been gazing out the car window when you just found yourself being sucked into all the beauty that nature has to offer? Well, if you have I guess you could never have too much, but if you haven't, its probably because your spending way too much time on the computer! There are so many different ways that people could learn to appreshiate nature more, such as sitting on a park bench in the @TIME1, while absorbing the fresh air and sunlight. Or you could go for a slow, realaxing bike ride through a trail with a constant cool breeze, brushing your face with every of your wheels. Finally, you could pick a warm day to sit out on the beach, and listen to some music, next to the salty ocean. How could you resist those temptations? Lastly, I believe that family is the most important thing to missing out on! Without family and friends you miss out on so many good ethics and experiences. You lose out on having good lifetime realationships, and how could you turn dow the offer to be with the people you love? In conclusion, I feel that computer are taking away most of the things that no one deserves to live without. I mean, how could anyone live without family, friends, the beauty of nature, and your own health? That is why everyone should make the right desition to take reasponcible charge of their life, and the same question, which is more important?" 5 5 10 +712 1 "Dear Local Newspaper, @CAPS1 you think computer have good or bad effects on people? It has been bought to @CAPS10 mind that people fight about @CAPS3 computers to @CAPS2 a doubt I think that computers have a positive on people. @CAPS10 think arguments are people find ability in talk online with other people and help with school work. First of all computers gieve in ability to learn about faraway places. This is really helpful @CAPS3 you @CAPS3 you want to learn about @CAPS4 you can go at the computer end google ""@CAPS4 @CAPS6"". By doing this you'll find a lot of info on @CAPS4. I should I tried it before. So that computers giving you this ability to learn about faraway places is really helpful to the human society. Second of all computers people to talk to other people around the world. This is really helpful @CAPS3 you want to learn about people from around the world. This is different than googling fatcs about other people. This is free because @CAPS3 you google @CAPS3 your online chat with someone you have a In @CAPS10 thoughts thats the best way to is helpful friends and family @CAPS3 they dont have of all computer can help with school work. This is helpful students could and the world or about a different This remind me of the time I had to @CAPS1 a project about the nine planets. I had to find a lot of info so that also means a lot of books and a lot of reading. So these I the easiest and fastest way to @CAPS1 @CAPS10 project. I went on the internet in @CAPS10 and get all the info that I needed. So then I completed @CAPS10 project and headed it in to @CAPS10 teacher. She gave me a @PERCENT1 for a project grade. I got a @PERCENT1 because I misspelled @CAPS10 name, but that doesnt matter. What I am to tell you is that computers help students with school work like projects. @CAPS2 thinking I know that computer have a positive effect on @CAPS10 three arguments is that computers give you ability to learn about faraway places, allow you to talk online with other people, and help you with school work. Please take @CAPS10 side and think that computers have a positive effects on human society." 4 5 9 +713 1 "Dear, local news time editor using a @CAPS1 daily has a positive effect on people, wouldn't you agree? People should use a @CAPS1 more often. I think everyone should have at least one or two computers in their house, they were invented for a reason. Computers allow you to interact with friends and family, help you with school work and, I guarantee that you will have a good time using a @CAPS1 by playing games and meeting new people. If you have school work to finish, computers help will work. If you need to do some research, you can just go to a website google and what you needed to know will be right in front of your eyes in a matter of seconds. Computers can help you with as well. There is icon inside one of your documents. I read an article on @CAPS1 about @PERSON1 stated that ""@CAPS1 users are most likely to succeed in school."" Interacting with friends and family is always a . Maybe you do not understand if you have been assigned in a certain class. You @MONTH1 add a friend and you will tell you what has . Talking to family members can do good for you in many ways. You can be having some trouble in your socical life, you can always talk to a family member or friend secretly through the @CAPS1. I remember having some difficulties with a few friends and one of my cousins gave me very good advice through an instant messaging program named ""@CAPS2"". I garantee you will have a good time using a @CAPS1. There are many games out there that you @MONTH1 enjoy. Playing these games, will teach hand-eye coordination, says @PERSON2. You can meet new people who can also give you good advice. As you computers have a lot of positive effect on people. You can interact with family and friends, recieve a lot of help for school work and meet a lot of new people. Take my advice and buy a @CAPS1." 5 5 10 +714 1 "How much of your free time daily to you spend on the computer? It is proven that people too to fifteen years old spend an average of @NUM1 - @NUM2 hours of their free time on a computer. People age sixteen to forty-eight spend @NUM1 - @NUM4 hours of free time daily on their computer. Too much time on the computer can interfere with physical activities, social time, and health issues. Computers have some good advantages here and there but mostly result in a negative effect. In this post decade, the percentage of exercise was gone down and computer bills have gone up. Americans have now spent most of the time web surfing, playing online games, and interacting with online chat rooms. After school, kids go home and turn their computer on instead of going outside running and playing. More people across the country have gained weight due to unhealthy food and no physical exercise. Many local sports have lost teammates due to lack of desire for physical activities because of computers. Many people have stopped going out with friends and family due to going on the computer. The that runs through @CAPS1 minds these days is 'why go out to talk to my friends, when I can talk them online?' I think the opposite. Get out of the gloomy house and go out to see my friends. I don't even go online within every days. I check online for homework and in online shopping twenty minutes. Computers have a major effect on social lives like going out and being confident to meet new people. Lastly, health issues are raising rapidly! The reason we now have shows on @CAPS2 about people with weight and health problems can relate very much so back to the negative effect on people. Like @CAPS3 @CAPS4, and the obese have shown how people gain weight. I think at least @PERCENT1 of these people spend to much time on the computer and not exercising. Eating @PERSON1's then goint home to play online games will definately increase health issues like weight, organs being unhealthy, muscles not functioning properly, and eye and brain damage from starring at a mouse and screen nonstop. People should stop spending so much time on the computer and get outside or get active because computer use does have a negative effect. It interferes with social time, health, and physical activities. Get up and prevent the negative effects of computers." 4 5 9 +715 1 "Dear local newspaper I support the advances in technology. I am going to tell @NUM1 thinks way. One is on a rainy day. I dont think you are going to go out an play in the rain so you could go on the computer and play games. Talk to friends. Or you could use the computer for school work or for work. Say that you have to look something up for school and you can't get to the liebery, but you have a computer at your house. You can use it to find info. You can use the computer to learn how to do something like making somthing and a lot more. You can use the computer after school if you cann't go out and hang with your friends. You can do something with them online. Last things you can ask your friends if there is homework so you don't miss it. So that is why I support advanes in technology." 4 4 8 +716 1 "Dear @CAPS1, Everyone love computers right? Those computers can help us with anything. They also give people facts about faraway places. And not only that but if you have someone that live's away, you can chat with them online! What would this world be with no computers. First of all, I would like to talk about how computer can help us with anything. Computers can give us picture of places, you can watch videos, and even see movies for free! Also you can check the weather, and if going to an airport you can check the flight time or if it has been canceled or not. There is just so many things that the computer can help us with! Now, it can also give you facts opinions, pictures, videos, and movies about faraway places. Like one time I was going to @LOCATION1 to visit but there was a terrible storm over there so the flight was canceled and I went on the computer and checked and it told me that it was canceled. Also if you somewhere faraway you can watch videos about that place. They also have maps to guide you through the way. And not only that but you can also check the highway for traffic so you wouldn't be stuck there. Wow imagine living without a computer! Third of all, if you can chat online with your friends or family! If you miss someone or you just want to talk there is websites that let you do that. Like @CAPS2, @CAPS3, and @CAPS4! And you also see the person if you attach a camera to you computer, it's called video-chatting. And you can do this anyone, anywhere, at any time! In conclusion, all of this can only be done with a computer. Helping you with anything. Giving people facts about faraway places. And, you can talk online. There's many more but for you to know that you'll need to go to the store and get yourself a computer!" 5 4 9 +717 1 "Dear @CAPS1 @CAPS2, I understand that there has been somethings going on with computers. People think they're good. People they're bad. Other people just don't care. People just don't understand the present day. Society is a whole lot different then when parents were kids. People just don't get modern day society. I'm going to tell you the advantages and disadvantages to computers. There are a lot of advantages to computers. You can find information fast. Communication with people around the world is a huge advantage. Computers keep kids and teens entertained. There are games on websites. Computers are the thing we use today. A lot of things are done by computers, computers also prevent you from wasting money on books because you could just google it. There are a lot of disadvantages to computers. They cost a lot of money. Computers can down. There could also be dumb websites that have no purpose like facebook and myspace. Computers are complicated if you don't grow up with them it's hard to learn. The government has all they're information in computers. If they didn't people would be able to steal information a lot. Computers are the greatest thing we've invented so far. It helps with a lot of tasks these days. There are infinite numbers of information in the world and computers help find it. I hope that this letter informed you more about computers. Good and bad things come from this. But, it is mostly good. Kids and teens would be so bored that they would the parents insane." 4 4 8 +718 1 "Dear @ORGANIZATION1, A regular day for a person, with a computer, includes at least three hours using the computer per day. Today, people, especially teens, spend their precious hours wasting time on sites like facebook, myspace @CAPS1 and more! Just think about it, just sitting in a chair with your eyes gluded to the computer when you could be exercising, spending time with family and friends or enjoying nature? After all do we really need a computer? Obesity is one of the highest concerns in the country today. However, we can prevent it! We are certainly not helping this issue when we have childre. Adults sitting in a chair for a large part of their day doing absolutley nothing! We are so fortonate, our town has at least two physical fitness buildings for anyone can attend instead of using the computer. ANd even if you can't attend a gym you could easily walk around your neighborhood. There are running program held at our local beach, @LOCATION1, where you can exercise or even run a small competition! Please exercising is key to everybody's health and there are numerous ways to exercise, but using the computer is not one of them! Teachers, parents, children writers everyone lets stay away from the computers and stay fit! Family and friends are those who make us truly hapy but if we on the computer how are we going to see them? More and more people are making less effort to see people in person. Instead many people video chat through cameras on the computer. We need to change this habit. Everybody needs to socialize face to face. If we socialize through computers our socializing skills could worsen because you are not practicing the socializing skills like eye contatct. Instead of talking to people online we could be enjoying with those same people at an amusment park, a restaurant, at a park or simply in our barkyard/house. The world is so beautiful with so many places to see but society is too busy to see it because we're on computer for a long time. Our computers use up so much energy and is a threat to the world, @CAPS2 @CAPS3! Instaed of entertaining ourselves on computer we could be taking hikes, walks on the beach even our street or playing outside in our yard. On a computer you can see a magestic places like beaches but you can't interact with them. If we get off our computer we could be swimming at a beach or a pool! Nature is so beautiful, why ever it? @PERCENT1 of residents in @LOCATION1 own computers and spend a lot of thier day on it. We could be improving obesity, spending more time with family and friends, and exploring Nature! lets make a shange so we can do all of these things!" 5 5 10 +719 1 "Dear local newspaper, I believe that computers have a positive effect on people because it teaches hand-eye coordiantion. You can also learn about different people and places. But it also allows us to communicate with the people online. Computers have a positive effect on people because it teaches hand-eye coordination. Because it's rely important to have hand-eye. And when your out in the world you rely need to be able to look at something and pick it up or say if you get into a altercation with someone. So it's rely important to have hand-eye. Another reason why I feel computers have a posative effect on people is because you could learn about diffrent stuff over the internet. Like learning about far away places and people. So the internet is giving you a great opportunity to learn more about or earth, other than your back yard. So technacally it's preparing you for life. My final reason why I think the computer has a posotive effect on people is because it allows people to talk to other people who are online. Like say you dont have a phone but you have a computer and you need to tell something very important to someone; you could do it online. And people say it's one of the fastest pieces of technology known to mankind to people who need it. Those were my three reasons why I believe the computer has a posotive effect on people. And if you don't believe me go hop on a computer and see for yourself. You won't be dissapointed." 3 4 7 +720 1 "Dear Local Newspaper, I am writing to you about the use of computers and how they are bad for society. With people getting less exercise, not enjoying nature, and having less interactions they are doing the world more bad than good. Almost everyone has a computer and it gets used more and more and it is just taking away a great time to go be active outside. First, exercise is a very important part of the day and it is happening less and less because kids are sitting infront of there computers all day long. There is so much talk these days how we are the fatest country. Well here is one of the main causes we have almost everyone stairing blankly into a computer screen instead of being active. Computers are a big problem and they cause laziness to occure more often than not because now if you miss your favorite @CAPS1.V. show just look online you will find it. Or if you are doing a project just look online and you will find more than enough information and it is just a click away.Second, enjoying nature is a scarse thing now. All you have to do is search online and you could find a picture of your front yard. there are much less people outside. Because who needs to go outside when you could be chatting with a friend or just being on @ORGANIZATION1 looking up new technology. People who are always on the computer don'@CAPS1 care about the enviorment as much because they are wasting electricity and they are more fun to internet on their place that they on. There are a lot less people going places now because who needs to go to @LOCATION1 when you can just look up pictures of @LOCATION1. It's taking away thrills poeple used to have of going places getting out of the house seeing parts of the world far away first hand instead of through computer. Third, there are for less interactions personaly between well everyone. Kids that text, @CAPS2, or facebook chat more then talk in person with friends are loosing talking skills of actually having a conversation. Because online you have time to think then when you talk in person you have nothing to say because you can'@CAPS1 think and your not to your full talking potential. People are seeing eachother less and less now that they can text and talk over the computer they think now have no need to see eachother now and it is ok just to talk through the internet. Friends & family start to know who you are less because you can'@CAPS1 see emotion through a computer. Also, they say that you can learn more about someone in @NUM1 minutes of playing with them then in @NUM1 minutes of talking with them. With that being the case friends make friends now without even knowing that person with full understanding. Lastly, computers are doing more then good to everyone and they are becoming more and more unhealthy. With people getting less exercise, not enjoying nature as much and having less interactions people are just wasting their time infront of a computer screen getting fat rather then going outside with people and just passing a baseball. There are so many better ways people could spend their time than infront of a computer. Why don'@CAPS1 they see that?" 5 5 10 +721 1 "Dear local newspaper, it has came to @CAPS2 attention that many people do not agree if computers have a beneficial or bad affect on those who use them. In @CAPS2 oppinion they are not beneficial. First when on the computer people have less time to exercise. Also, computers don't always have approprate sites. Finally, people have less time to interact with family and friends. I believe for these reasons that computers have bad affects on people. Without a doubt people who spend hours on the computer everyday have less time to excersice @NUM1 in every @NUM2 young adults are obiese. This is because most teens sit inside watching @CAPS1 or going on the internet instead of being active. Some students are so addicted to computers they never go outside! I understand that computers can be helpful to do school work but, kids who never get off can have life threatening weight problems in the future. As you know many web sites that are not appropriate for teenagers are accesible to them on the computer. Parents have to constantly worry what their child/children are doing just to make sure it is not bad. If less teens used computers as often as they do they would be lifting a nof their parents shoulders. I remember reading a newspaper article about a girl named @PERSON1 on a website chatting with a ""@NUM3 year old guy who later came and found her and turned out to be @NUM4. If kids were not so addicted to the computer than they wouldnt get into these websites. many teens spend there whole day on the computer leaving no time for their family and friends. For example when a friend calls and asks @CAPS2 brother to go skateboarding he says he is busy when he is just on facebook, @CAPS2 friend once said to me ""sorry I can't go to the pool today I am going to play rollercoaster tycoon."" With this attitude toward outdoor activities I am not surprised that students wasting time on computers do not have time for family or friends. As you can see computers effect many people in a negative way. They prevent people from ecersising, expose kids to in approplate websites, and take away from valuable time with family and friends. I hope everyone agrees thet computer aren't beneficial to people." 5 4 9 +722 1 "Dear @CAPS1 in @CAPS2, Computers are one of the world's best discoveries today. For one, they help in our educational processes. They also help connect people from all over the world in little time and are a neccesity in science research. Overall, computers are the best thing that has ever happened to mankind. First and foremost our children today are already struggling in their educational systems. But with new computers they strive to meet every goal. Teachers cannot tell them everything but computers can, underneath that hard drive is a wealth of knowledge awaiting to be saked up by eager minds. Also, in todays world, waiting is almost non-existant. Learning to type gives these children better opportunities for success in later life. Family, say your child is out @NUM1 school day. Normally, they would miss their homework. But now, they can check it online and get back to their crucial studies when they are feeling better unless you want to risk tommorow's future workforce, computers are in essential tool for us, and our children. One of the best things a lot this world is that we're all different, connecting with each other helps us learn how to tell with each other and move forward as a society. Conneticing through the internet through programs like @ORGANIZATION1 is important for buissnesses as it helps them make decisions faster will ultimatly effect us. But don't be fooled. It can also befor pleasure, say @CAPS3'son & buissness trip in @LOCATION1. No problem. Just go on webcam with him and you don't have to miss him anymore. In the government, problems evolve quickly, and steathily. To solve this, a president can quickly connect to his/her advisors while still being in his/her office. Connecting people through computers is maraculous, and important to life as we know it. In addition, we wouldn't be were we are in science if it wasn't for computers. First of all, we are making great strides with cancer research to day, than estatic common computer. If it wasn't for that, we might not even have kemotherapy. Lets face it, computers are faster then us; way faster. But this is a god thing, because faster proccesing means faster research. While a simple machine @MONTH1 not tell us the cure through its proccesing speed. It certainly brings us a lot closer to unraveling the mysteries certain diseases shold beneath. Two minds are better than one. Even a scientist can not know everything. But while connecting through a computer to scientists all over the world, they can analize research, and make very informed, responsible decisions. Certainly that will extend our life exsentency, and who doesn't want you've larger's some people say that people are too glued to their computer screens. But bear in mind, these are the people helping you stay alive, and helping lower your heathcare bill yoour talking about. So when you get ill and they find a cure, why don't you still compain that they only found it because they were attached to their keyboards and monitors! Trust them, they know what they are doing. So can we come to an agreement life? Computers only do good things, like enhance our youth's advention, connect our and help us find cures for the most malignant diseases and illnesses in the world. So help the world help you, and go promote the use of computers across your community. It will only further advance us as a society in the end." 5 5 10 +723 1 "Dear @CAPS1 @CAPS2, I would like to notify your business that computers benefit society. Computers allow people to talk to friends and family, they are important resources for many jobs as well as school work, and they allow people to learn and store information. Computers are one of the biggest advances we have in technology. First and foremost, computers allow people to talk to friends and family. I like to go on the computer, mostly because I'm able to speak with my friends. Computers are a good way to talk to friends that you @MONTH1 not see often or just to talk at the appropriate time. I have a facebook and I always talk to my friends about events happining in school or school work. For instance, last month I sprained my ankle and I stayed home from school for one day. So I went on facebook at around @TIME1, when everyone was home from school and my friend told me what was for homework that night. So, now because of our computers I could catch up on the work that I missed that day of school. Also, if you have family that lives far away or someone in college you can send them an email to keep in touch. My cousin is in college right now and I always talk to him on the computer to see how he is doing. For example, we always talk about sports we are involved with during that time of year. As you can see, computers are a great way to keep in touch with family and talk to friends. Secondly, computers are a big part of many peoples lives because many jobs involve computers; as well as school. Computers are a very useful piece of technology because people use computers for paying bills, jobs and more. For example, my dad tests computer programs as a job. The programs are constructed, then corrected and revised, then finally sent out all over the world. If people weren't allowed to use computers then many people would lose their jobs and many families would be in huge debt. Also, children do a lot of school work on the computer. For example, I take spanish and I earn culture points for my class by answering a question on the computer. Studies show that over @PERCENT1 of children use computers for some sort of school work. Computers are a big part of the working society today. Finally, computers allow people to learn about different places around the world. The computer holds a lot of valuble information. There is facts and fasinating pictures about different countries. It also shows people around the world the culture, style, language and many more facts about places around the world. For instance, my uncle was on the computer one day and he was looking at places in @LOCATION1 and after a long hard thinking process him and his family moved there and they still live there to this day. Computers inspire people to learn and see different places and @MONTH1 lead them to something important one day. In conclusion, I feel very strongly about how positive computers are to society today. I know that you will feel the same way because computers have so much to offer." 5 5 10 +724 1 "@ORGANIZATION1, @PERCENT1 of people in the world use computers one time in their lives. Wether it's looking up information, sightseeing, or clothing with friends people are on the computer. They use their computers for work and games @CAPS1 children use the computer to learn. Some scientists suggest computers improve your hand-eye coordination, while others think it makes people smarter because they are seeing new things. You, @LOCATION1 @ORGANIZATION1 Newspaper staff, use a computer to type the news. You probally also use it for @CAPS3 of the things stated above. Most of the jobs in the world have one part that has to do with computers. Farmers @MONTH1 need to keep reports on their money income. Mechanics @MONTH1 use the computer to create blueprints, @CAPS2 officers use a computer to keep track of all the license plates. Baby sitters @MONTH1 need to do their homework. As you can see @CAPS3 jobs use the computer. How @CAPS3 people do you know that met someone or has a friend on the computer? I know I do, @CAPS3 people meet freinds on the computer. Ever heard of @ORGANIZATION2? they macth people together. There is @CAPS4, @CAPS5, @CAPS6, and @CAPS3 more sites were you can chat with freinds. All of these reasons come together and say the computer does benefit society. They help people in any number of ways. I agree we should spend more time outside but we should also spend some time inside." 4 4 8 +725 1 "I think that computers have great affects on people. Computers are a good way to @CAPS1 intouch with people, @CAPS2 online, @CAPS3 jobs, and @CAPS3 information on @CAPS4 facts. Computers might not be good exercise @CAPS5 you but at helps you in life and it also keeps you organised @CAPS5 example it keeps files @CAPS5 buisneses and @CAPS5 people that are in the music industry computers makes beats @CAPS5 them and can also record @CAPS5 them. computers helps every one in all ages. It helps the younger kids in school where they have to write a @ORGANIZATION1 or have to do a project, and helps the elderly peope @CAPS5 their jobs. Computers alson helps you know what is going on in life, like on the veiws see who has been hurt or the weather. Truely the computers are realty good @CAPS5 every thing they help you do so and it is really amazing how technologie changes. If it werent @CAPS5 come veters I dont think some of us would be where we are today." 3 3 6 +726 1 "Dear the @ORGANIZATION1, @PERSON1 studied that @PERCENT1 of people believe computers have a positive effec on people. You can stay in touch with realtives. Also you can entertain you over long trips. Computers have positive effects on people. Computers let you stay in otuch with realtives keep up with friens and are a good of entertainment. If you have distant realtives you can keep in touch. Video chatting lets you see someone and talk to them practically face to face from thousands of miles away. If you are sad and need to talk to somebody you are a few clicks away from being cheered up. Also if you are in the army and have a @ORGANIZATION1 baby you can watch as they take their first steps or say their. Video chatting used only way to stay in touch but also you just talk even wihtout a computer. Aim and @CAPS1 let you see whats goign on with your friends that you might see everyday or once a year at @DATE2 camp. @CAPS1 lets you keep in touch with everything thats going on with things like status updates. Aim lets youtalk with just your keyboard whre you type messages to poeple. Mabey you want to go in to town with a friends just send them a message by @CAPS1 or aim. Computers a onley for staying in touch though you can stay while you travel around. COmputers let you do so much to stay entertained over long rides or even rides. If you want to watch a movie just put in a dise or even rent on off itunes or netflicks. If you want to listen to a song download it in seconds and listen to your. Also you can even play video games on your computer. Just buy the game install it and then play. Computers are a great thing during down time and have positive effects on people. Computers let you keep in touch with family stay up to date with friends and are an excelent source of entertainment long trips or downtime. Computers are the lightbulb of the @DATE1." 5 5 10 +727 1 "Dear Newspaper, I think that the effects are okay as long as we get off the computers and go outside and see some friends and get some exercise. Computers let us not just talk to each other but it also lets us challenge each other on games without hurting each other it could even stop all ways all at once because we could challenge other countries in war games without killing real living people. We can check our taxes and stocks. It also makes it easier to find health insurance, car insurance, and house insurance. We can look up historical facts on the computer. We can look up how to stop snake venom from getting to your heart and how to make a how and some arrows to hurt with. You can find plumbers, technicians, oil companies, and lumber companies. you can find dates on the computer, too and find information about certain eople too." 3 3 6 +728 1 "Dear local newspaper did you know that the average person spends @NUM1 hours and @NUM2 minutes a day on the computer? This is why I think that people are spending ton much time on computers. If people spent less time on computers they would exersice more, be outdoors more and spend more time with their family and freind. If people were to spend less time out computers than they would exersize more. With the growingproblem of obesity in @ORGANIZATION2 less time on computers would help this. Tests show that the less time spent on computers the more time spent exersizing. And with @PERCENT1 of @LOCATION1 obese this world help that problem alot. I once had a freind who would allways be outside exersie and playing. Then he got a @CAPS1 acount and he started to be home on the computer all day and would never be exersizing. Less time on computers would also time outdoors. Result from a I took at my school say tahat @PERCENT2 people would go outside if they couldn't use their computer. And it more people are outside will notice how nature is and @PERSON1 says that use of the electricity in a house. So if everyone of it have a effect on if to turn off their computers they would spent more time with friend and family. that there are to freinds and family on programs like @CAPS2, @CAPS1 and it is talking face to. And you could also do like to the and you see people. use @ORGANIZATION1 but you would need and it. I would be alot easyer and less it you would get of the computer and talk to them face to face. This is why I think that people are spending to much time on their computer and it is having a effect on their life. If they were off the computer they would spend more time exersizing, more time helping the environment and more time socializing with their family and friends. So please @LOCATION1 stop using the computer all the time." 4 4 8 +729 1 "Dear local newspaper, I think that computers are a great thing to have. For instance they are entertaining, they have communication, and they help make designs. My first reason is that computer are entertaning. I hate to go look at nature. But I love to play videogames on my computer. I still get my exercise though, because I go out and play basketball then play on my computer. The computers are still a good thing though because after @CAPS1 done with basketball, hanging out with friends, or if its raining I like to play some good old gun blasting computer games. My second reason is that you can comunicate with computers. I love to talk to my friends on facebook. You can just login and talk to anyone in the world. There is also video chat you can actually see someone who is talking to you from anywere. Plus email is great for work. You can send information from one computers to the other. My last reason is for designs every modern car that you drive, is originally from a computer. People get on these computers and make blue print designs to make cars. These are my reasons that computers are good." 3 4 7 +730 1 "Dear Newspaper, The invention of the computer has made a great impact on society today. Although many people would look upon computers on a negative note, the computer allows us to do essential task needed in everyday life. Many people feel that the applications on a computer are @CAPS1 keeps us away from doing other productive activities, but the applications a computer holds is neccessary for must tasks. Apps suchn as the calculater saves time from doing all the work on a piece of paper. It allows you to do simple or complex math in just less than @NUM1 seconds. Its a great for finding how much a tip is, financial reasons such as now much you have to save, or even dung same basic math or science homework. Another great application is note taking that can easily be typed. This application allows you to take notes by typing, which again eliminates the need to write with a pencil or a paper. Note taking on the computer can be used for easy to read notes to study from to get a good grade on an upcoming test or quiz. The most important and must commonly used application on a computer device is the internet. The internet has over millions of websites for many reasons. If you plan to go to the movies tonight, the internet will surely give you movie times, directions, and how long the movie will be. It is also a great way to plan family trip or to book flights and such. Considering this, the apps are very useful. The computer is also a great device to use for learning. It allows you to look online about new subjects such as far away places or people @CAPS1 would our country be line if we were not educated on the outside world around us? It is also a great learning technique for research. Our teachers today gives us many projects and assignments to learn about new things, and @CAPS1 a great way to research our topic than on the computer. The fashion of the @NUM2 and @DATE1 is just a project I did last month. The computer allowed me to find the garment both women and men wore, @CAPS1 material they were made from, and even now they managed to buy and get the material. The research from my computer gave me a great understanding on my topic and helped me to learned the basics of my topic. You would probably agree that communication can be used in negative ways, but communication is @CAPS1 keep our world spinning. The computer device is one of the many devices used for communication. Email on a computer allows you to send messages to a single or multiple people whatout the need of signal or service. Blogging is also a way of communication on a computer and gives you freedom to express your feeling on education on a certain topic. The instant message is probably the must used by teens. It is quick. It allows you to quickly talk a person without waiting, for reply for more than days. In conclusion, the computer is essential to our everyday life and without the computer, our people would not function!" 5 5 10 +731 1 "Dear Readers, I believe that Computers do good in our country and have a positive affect too people. This is because it saves paper sending emails and you save money too, also you can learn new things about different countrys like @LOCATION1, and lastly you can iteract with people you know and talk to them and use technowlogy to your advantage. These are a few reasons why computers have positive affect on society and the wayore live. First off computers help save the environment and they do this by leting us not cut down trees and make paper out of them. Do you know how many trees are cut down a day around @NUM1 trees and they are all not imeditly taken to the mills to be turned into paper. But thet stopin piles at loging sites and are leftrotting there not be my put to good work or what they should be. I feel that trees have feelings like us but can't talk with out a mouth. So when you cut down a tree its like robing. Using computers we save trees and stop all that from happening. She one reason why think computers are a positive impact on love and society. Secondly learning you can learn a lot on a computer all you have to do is look for it. I learn many things each day at school because of the help of computers and I feel that is computers are use it can excellour learning and @MONTH1 been a lot more in a lot shorter time then we would have my to find a book or the subject what youre looking for. Computers have made things a lot impact on children but we all new things I when we use computers. So computers are a good thing and a bad thing. Finaly you can talk and interact with friends. techknowlogy has advanced so much that we don't see the world in prospective like take a cell phone for example what do you see mostly likly a phone. But if you open it up what to do you find? You will find a micro computer thats capable of surfing inter playing music just smaller size then before. computers revolutronized the way we look at the world and techknowlogy we can talk and play games usiing this techknowlogy most of what we see every day used with techknowlogy hike, a game station or even a car rardo. adn all of it is used to help using ract with one on toher. So I veiw techknowlygy a so good thing. In conclusion techknowlogy has a positive and negative impact by more positive than negative influence. Techknowlogy help us in our everyday lives and helps save the environment by letting us talk and save paper just by button. Techknowlogy has revolunoized the wat mankind lives and how they veiw society but it us all a good thing in the end. And so I concluded that techknowlogy/computers have a positive and negative impact on socuoty." 4 4 8 +732 1 "Dear @CAPS1, I do not think people use the computer to much. I think this because some use them for work, some use them for school, and some use it to talk to family or friends that are not so close to them. Firstly, most buinesses need computers to keep the buisnesses up and running. Like were my mom works she needs the computer for pay roll, inventory, e-mailing the works about jobs, and to look up companies to supply concrete, stone, tricks, etc. Buisness people have excuses to have to use computers all the time. Most buisness people also use computers to plan buisness trips. Secondly, kids in school use computers to do homework, class work, research for projects, or to go and study island and education. Some kids can choose to use the computers improperly but at the same time interesting. Like how cells divide into smaller cells how body systems work or how a girl or boy is made from embrio to birth. In addition, most people use computers. Like @CAPS2 people use @CAPS2 to talk to on the other side of the world or you can use aim. I have both cell phone to call and text people that live far away. I use aim to talk to all my friends, I use to face with. So, don't say all people are on the computer to much and for the wrong reasons, because that is not true at all. Finally, altho all people are always on the computer it is must likely to talk to friends you haven't seen in a while or for work issues, and for school related work. In my opinion all people will always use the computer because it is the way of life now a days. So, I don't think there are any affects on anyone because we all use it to our benifits." 4 5 9 +733 1 "Honestly, I totally and absolutely believe that child internet use should be cut down in the @LOCATION2, because of many reasons. And here are just a few of them. First of all, the internet can make people very obese, for example, if your friend was going to a walk to your house, but then decided to @CAPS1 you instead, he is probably not getting a lot of exercise. As a matter of fact, the leading @CAPS2 in @LOCATION1 is no longer cigarettes. It's obesity. Actually @NUM1 @CAPS3 are obese, with that number still rising. Another reason why internet use should be cut down because bullies, hacker, and terrorists. Because. And the some I believe that child in the @LOCATION2" 4 4 8 +734 1 "Dear newspaper, This year my school and a cop come into my school and tell me and my peers about the dangers of online. This has made me believe that computors are not beneficial. Computors are not beneficial because they enforce bad habits. Plus, websites and some applications are dangerous. Also, they are very addictive. Computors have a bad effect on people. To begin, computors enforce bad habits. For example, some websites are bad websites that say mean things about other people. Some kids @MONTH1 join in on the cyber bulling because other kids are kids @MONTH1 give in to peer pressure because they want to get accepted by their peers so badly. Furthermore, someone @MONTH1 agree to meet someone they don't know. That can be scary because you do not know if this person is really someone you thought they were. Recently, I read a magazine and it had an article in it about people going to meet other people they online. Most people found at that it was not the person they thought they were. Finally, the computor enforces bad habits because people @MONTH1 send someone some questionable pictures to someone else. As I mentioned before, when the police officer came to our school he talked about this. He said that people were sending pictures of them that were innapropiate to other people. Those other people would send it around and in the end it was a horrible mess. I'm sure if computers didn't have a giant effect on people, this would not be as big of a problem as it is. Computors do not only cause bad habits, but they are also dangerous. I'm sure if you listen to the news you will hear stories about child predators. I think that is one huge problem. If computers did not have such a on people this would not be a problem. In addition, computors are dangerous because kids @MONTH1 choose to make bad decisions because they do not knew. For example, many kids who are on myspace or facebook have not talked to their parent or guardian about internet safety. Or maybe even their parent or guardian isn't monitering them to make sure they are safe online. In conclusion, the computer is dangerous because feelings could be hurt because of myspace, facebook, a blog, a video, or maybe even more. As an illustration, one time one the news I heard a story about a girl who was tensed on the internet. She felt so bad that she committed sucide. I found that horrible. A person should never comitt sucide, especially because some other person could not be nice. To sum up, computors are very dangerous. Computors are also addictive. To start off, it makes you spend less time with your family. (not finished!!!)" 5 5 10 +735 1 "As you can see, technology these days is always getting more and more advanced. It seems as if there is a new invention that atracts many people to buy all the time. One electronic that has been useful in so many ways to people are the computers. Many think to much time is spent on this, but then I think about how much it's benefiting. Computers can tell you pretty much anything you need to know, @CAPS1 it's about same country, or how to solve a problem. @CAPS2, computers are so advanced were you can talk to friends who are faraway. Lastly computers is helping us giving very specific directions, rather than figuring out a map. Say you're doing a school project about a country. By typing in exactly what you need to know you can find your information in a heartbeat. @CAPS1 it's population, density, languages, foods or holidays, computers are the easiest and most simple way to get this information. Or maybe you just want to know about this country because it interested you. Maybe even you plan on visiting this country, you're going to want to know about the place you'll be spending your time. If you do plan on traveling to somewhere you've been researching, you can order your plane tickets right there online. You can figure out the routes you plan on taking, and this can help oprganize your trip. Another reason computers are benefiting so many people, is the feature of communicating with others, @CAPS1 it's taking to a faraway friend or family, or you're bestfriend a couple streets over; you probably still want to keep in touch with them. Computers are so advanced now, that they have webcams; were you can visually see the person your contacting right into the computer. This is a more exciting way to talk to someone, especially if it's someone you don't see often that @MONTH1 even live in another country, @CAPS2, most teenagers like to keep in touch pretty much every day. Usually kids like chatting on instant message just for the pleasure of talking to your friends. Finally, computers are benefiting us with knowing directions and routes. Like mentioned before, computers can give straight foward directions. This is esier to handle rather than useing a map while on the road. There are websites were all you have to do is type in your exact loocation and your exact destination and it will tell you specific roads and turns you need to take. In conclusion, those for who are worried about the ones who should be exercising, being outside, enjoying nature, should learn to expand there time doing so, and shortening time online, and learn to be on the computer, only when necessary." 5 4 9 +736 1 "Dear @CAPS1, @CAPS2 I understand your one trying to decide whether or not computers are bad for people. I for one thing that computers are turning our society anti-social, we are becoming obese, and there is alot of cyber bullying that happens via computers. You can learn about all this and more if read on. @CAPS2 a stated earlier computers many problems in @LOCATION1's social lives. You see @CAPS2 much @CAPS2 @PERCENT1 of our population spends at least @NUM1 hours a ween on the computer. When doing this they are typically . watching videos or tweeting a friends. This @MONTH1 all swim like a activity but it is really pulling us away from our social lives. There are many sites that allow you to chat with your friends and leave messages on their ""wall"" but is that really communicating? In a way it is but it is taking away social skills that we will need later on. You can't get a job by instant messaging a person, you have to talk face to face. But how will we be able to do that if we only email and @CAPS3? Plus while so much you will be prone to using in , thus you with, nothing but a bad grade. Now we to problem that we see occuring all over . You the work on the computer. This activity what , they monitor, lets you at , everyday, since he comes home and plays on the computer and more time exercising. Finally we come to my last issue, cyber bullying. Over @PERCENT2 of @CAPS4 teens will be faced with some sort of cyber bullying in their life. When teens sion up for facebook and twitter they are signing up for depression. When a teen starts to get bullied they usually become sad which then leads them grades to go lower due to lack of concentration and that leads them to be more depressed and that could make them either commit suicide or join gangs and/or start making bad . But we can prevent this if we the of time people out @NUM2 spend on computers. And I think benifit that. In conclusion I believe that is we are bad for society. I think them is we the amount of time could be lives. I think that if you look deep down into what it to say how you will understand why we need to do healthier @LOCATION1? " 5 5 10 +737 1 "Dear (Newspaper), This is a very controversial topic. I am discussing. But on this one, I must say I agree with the experts when they say computers have a negative effect on people. It ruins their social lives, and other bad things. If you spend all your time on the computer, you get no exercise, no fresh air, and you will not get to experience the rest of the world. Not recieving your daily exercise is a big problem. Obesity has already been an issue for millions people in the @LOCATION1 And it is mostly because they eat unhealthy snacks while sitting at the computer the whole day! you want to live a long and healthy life, don't spend all your time having your eyes give to a screen. In adition everyone needs fresh air, right? Going on the computer inside a room is not going to help at all. You need your daily intake of oxygen. Lastly, if you are on long enough, enough, it will become an obsession. Computers already have a bad effect on people all around, and just think about what has just been mentioned. Another problem computers have is that they keep you away from your family and friends. As mentioned before, the social life you had will be gone. With that in mind, people will always see you on the computer, and eventually get sick of you. Computers bring no adventures, just pictures of them. Going out into the real world might be hard, but it is something that should be done. a real life cannot be lived in a dark room with no people or no nature. Haven't you always wanted to travel around the world, see different types of cultures, lifesyles, etc? It gets to the point where computer use should be limite, and living your life should be in place of your free time. Using a computer all day will not let you meet new people, and see new places. You will sbe getting nowhere with a computer screen in your face, so put it away! In conclusion, using computers all the time restrict you from exercising, getting fresh air. Meeting new people, and seeing different places all over. At the end up the day, life is short, so you can't aford to waste it. computers have a negative effect on everbody, and hopefully someday these problems will be changed!" 4 4 8 +738 1 "Dear local newspaper, I feel very strong about my opinion of what effects computers have on people as in it helps others communicate with one another, give people info about different types of things, and make people smarter. To me that sounds like something with a positive effect, would you say? First of all, as some people say it doesnt let you interact with family members. Yes it truely does you can interact with both friends, and family members by going to chat rooms such as aim, meebo.web cam meeting such as skype.com. So that throw that concern out or the window you work have to worry about that. Secondly, you get to learn info about differnt types of things such as learning about wild animals any animal like a giraffe, cat, rat or learn about different places like @LOCATION2, @LOCATION3, and @LOCATION1 etc... Also you could find all of this info at home in one day. Most important I would make people smarter the computer teaches you hand eye corrdinations for free. The computer can teach you about any career, or regular job that you would need to learn about in just minutes, if needed? To conclude computers have positive effect on people, it lets people communicate with friends and family, you get to learn about different types of things, and it makes people smarter. Even I was done reading this it I thanked the lord for computer, it helps us so much." 3 3 6 +739 1 "Dear @CAPS1, I'm writing to you today about computers I believe that computers can teach you things such as, hand-eye coordination and how that, can open job doors for you. Also you can socialize as well as study with this device. My first reason being socialization. i think that this is a good way to socialize due to the many options. one example would be facebook. This is a social website that is used to connect or reconnect with friends. in a recent poll @NUM1 out of @NUM2 people say that computers had made them more social. Lastly, computers are a good way to socialize because of the range it can travel. You can talk to people without the long distance fees of . This can range from the @CAPS2.S to hungary in seconds. My second reason would be that computers are useful in studies. I would say this because even though books are good they use hard to find. With the computer you can access multiple sites. This being you can from wikipedia all the way to the infamous google in just . Another reason I believe computers are good for studies in that you have endless. you will get a the . The lost . My third and final reason is computer give you exceptional hand-eye coordination can because I know accountant. i asked him, ""@CAPS3 did you take that accounting job?"", and he answered, ""They only took me because I have good hand-eye coordination."" @CAPS4 thats one job exemple, another would be real state. Due to computers multiple options you can look up because in the your client. With good hand-eye, however, you can be more efficiecnt with your work. This could help you lead competition, thus, making you more money. This then ends my essay. Stating with socialization, skipping down to studies and ending right on jobs and and bye's front steps. These are only @NUM3 of the many bountiful things that a computer can do. @CAPS1 I hope you read this with my regards." 5 4 9 +740 1 "Dear @CAPS1 @CAPS2, I think that children are spending to much time on the computer for the wrong reasons. I say this because all young children and teenagers want to do is get on to @CAPS3 and @CAPS4 all day instead of reaserching and things like that. I have three reason's why I think going on the computer for the wrong reasons instead of exercising, enjoying nature and interacting with family and friend is a @CAPS5 first reason is because it is very dangerous and there are sometimes kidnappers on the chat room. @CAPS5 second reason is because their taking time away from trying to learn stuff off the internet. @CAPS5 final reason is because the interact influences violence. There are @CAPS5 three reason, on to here more. @CAPS5 reason number one why I say people are spending to much time on the internet is because it is dangerous. Young teenagers and children all enter a chat room online. Most of the time that is bad because kidnappers lie about their information so that you can meet up with them and then they take you away. So instead of being on the chat room you could be on the computer looking on the daily news or searching like that. This is why I say that the internet is not alway good to be on all the time if you aren't or learning about the nation. @CAPS5 second reason why I that speding too much time on the computer all the great sometimes is its taking away from your come in the and go to the computer instead of doing their homework on reading. @CAPS6 like computer sometimes more than they like is learned and thats not good because not knowing I could if they got up their is on the computer for educational games but they dont. reason why I am concerned that people using the computer a lot. @CAPS5 final reason why I am concerned about people using the computer to much is because the internet on the computer can influence @CAPS6 to be violent in @CAPS5 ways all games and going on yo all the that affects the world if they keep seeing violence and things in that nature frequently. I say this because in this generation when they see violence it gives an image in more need and then @MONTH1 think its cool to do it because it @CAPS6 like @CAPS3 more than a book on the computer more than a look. When young teens see violence on the computer @MONTH1 think it's cool. This is @CAPS5 final reason why I was concerned that people are spending too much time on the computer. So these one some of the main reasons why I say that the computer is not always a good because people spend a much time on them." 4 4 8 +741 1 "Dear @CAPS1, Technology such as computer is proven to have a positive effect on people. Computers teach you hand eye coordination, they give you the ability to learn about far away places, and allow you to communicate with others online. Technology is continuing to grow, and it is becoming to impact our lives more and more each day. One way that computers benifit society is that they teach you hand-eye coordination. For example, as a person becomes firmiliar with their computer they are soon able to type on the keyboard with out even looking down to see what letter or number they are touching with their fingers. Although the person isn't developing hand-eye coordination @CAPS2 playing a sport such as baseball, they have still developed this coordination. Computers also benifit our society because they give others the ability to learn about far away places. Instead of walking or driving to the library to find a book about @LOCATION1; they can simply go online and type in @LOCATION1 under a search engine. Within seconds, thousands of sources appear right before your eyes, and you didnt even have to leave your chair! That is another reason why computers benifit our society. Lastly, computers and technology benifit our society becaus' they allow you to communicate with others, reconnect with old friend or family, or simply share the latest drama from your art class. I know when ever I'm at my computer my instant messanger is always open. It is something I utilize everyday in order to communicate with my friends and distant realitive. In conclusion, computers do benifit society, and they are proven to have a positive affect on people. Technology is like a sponge, it absorbs information and then continue to expand everytime you add more. *@CAPS2 doing this I am able to maintain healthy strong realationships with othe." 4 4 8 +742 1 "Dear @CAPS1, @CAPS2 are not bad for society. They actually can be quite good for people. Computers allow us to talk with people online. They can help us in school and give information we need to do things in life. People think they are bad, but all you have to do is look a little deeper and you will find the good in @CAPS7. @CAPS5 people use a @CAPS2, <@PERCENT2@NUM1> of the time @CAPS7 is to talk with people on the @CAPS3, whether @CAPS7 is using video chat or e-mail. People who don't like to use @CAPS2 and e-mail @CAPS10 ""@CAPS4 not use a phone or even talk to them in person."" With e-mail, you can send a message to some one miles away. If you are sending someone a list, a recipe for example. you don't want to @CAPS10 to them over the phone. @CAPS7 would be easier to type @CAPS7 out and then send @CAPS7 to them over the e-mail. ""@CAPS5 my son said. he was going to tech me how to use e-mail, I thought @CAPS7 was going to be a waste of time,"" @CAPS6 @PERSON1, senior citizen. ""@CAPS7 tursns out, @CAPS7 wasn't. Now i use e-mail e-mail every day. Many people think email is a waste of time, but @CAPS7 can help you in your everyday life. The @CAPS3 can helps in @MONTH1 ways also. @CAPS7 can help us get information about various topics. If you are trying to cook a stir fry but you don't know what to put in @CAPS7. You try to call you mother but she isn't there. Your next choise is to look look @CAPS7 up on the @CAPS2. @CAPS7 turns out theres a website that gives a recipe for a stir fry and you follow a do make the best one even. I know for an experience that you can find maps to places on line, since i have to go some is here almost everyweek. Google map is the most used place on the @CAPS3, besides e-mail. Some newspaper have websites @CAPS11 you can read the paper without actually paying for the paper This saves you money and @CAPS7 was less paper @CAPS11 we can save trees. The huge world of the @CAPS3 can change our lives. @PERCENT1 of people that use the @CAPS2 almost everyday are students. Students use the @CAPS2 for many reasons. The biggest one is typing. Students use typing to type reports and e-mail. ""I have messy handwriting"", @CAPS10 student, @PERSON2. ""@CAPS11 if if weren't for the @CAPS2, no one would be able to read my homework and reports. Not even me"" @PERSON2 is the one of many people who are lucking that they harmy typing on the @CAPS2. Another reason students use @CAPS2 is to look up information for reports. If a student puts a bibliography in his report, you will see that he/she used the @CAPS3 @PERCENT2 of the time. There @MONTH1 not be a book in a local library for a student to use, but the @CAPS3 will have many website and blogs for him/her to use. The third reason is for help. There are many website that can help a student to use for help in any subject. The @CAPS3 can help a student pass school. A @CAPS2 can help anyone from talking to someone to helping a student with science. That is how computers are good." 5 5 10 +743 1 "To use computors, or not to. That is the question. Hundreds of millions of people use computors in their daily life today, but some believe that using computors does not benefit society. It is my firm beleif that they do. Computors provide entertainment, a way to interact with people, and a nearly endless expand of knowledge. Without them, we would quickly find life to be much harder and less fun to navigate. Have you ever been in your house on a rainy day just sitting around bored because there is nothing on @CAPS1? Well I have on many ocations. When that happens, all you have to do is turn on the computer and you have endless choices at your fingertips. You can go on game sites and play thousands of different games. (this can also help improve your hand-eye coordination). You can also watch movies or @CAPS1 shows that you missed or want to watch again. You can even go on sites such as fanfiction.net, and read or write your own stories! Another reason why computers benifit society is that they help you interact with people. You can keep in touch with far away family members and friends using webcams email, and chat sites without the bill that would come with talking on the phone. You can also meet new people from different countries and become their. That way you learn about different ways of life and cultures. You can also quickly contact people in an emergency get updates on events, and comunicate with your teacher if you have a question about your homework. Lastly, and maybe even most importantly, computers are on enormous source of knowledge. Say you wanted to learn how to start a campfire, you could just search, ""how make fire"" a google and @NUM1 matches would be found seconds. Also, if you were asigned a project for school, you could do all of your research easily from your computor, then type the whole thing up on a word document. You can even get a college degree online if you wished. And if you want to find a resturant that specializesin @CAPS2 cooking, you can find one close to you, get directions to it, look at the menu, see the prices get the restaurant's history, cud find reveiws for it all on one magnificent little choice: your computer. So you see, computors benifit society greatly. In fact I don't think we could live without them. They provide us with entertainment, an easy way to interact with people, and a huge source of information. Now, to all of you people who still think computors are bad; I'd like to see you lost a week without using one." 5 5 10 +744 1 "Dear @LOCATION1, I @CAPS1 believe that using computers has a benefit to the community. I believe this because using computers helps with research, jobs, and staying in town with people. First and foremost, the use of computers will tribute to better research. Most @CAPS2 dont have textbooks about @CAPS3 or @CAPS4 at home with them so they rely on the internet. When @PERSON2 gave the class a parket, I didn't know what some of the words meant. So i logged into my laptop and went on google, within seconds the definitions wore popping onto my screen like pop rocks. After I found out what the words meant, I finished my homework in about five minutes. Without the internet I don't know how long it would have taken. Equally important, using computers will allow a wider selection of jobs. @PERCENT1 of today's jobs in @LOCATION1 require some kind of computer work. some jobs require quick typers. some people type as fast as cheetah runs. Some jobs require people using @CAPS5 or @CAPS6 - Computers are a necessity to get a well - paying job. Lastly, using computers will open a gateway communication @CAPS7, @CAPS8, @CAPS9, etc are a few of the many ways to communicate online. if one of my friends doesn't have a phone, they most likely have a @CAPS7. @CAPS7 gives me a way to talk to, @CAPS11 photos with and leave videos for my friends. One @CAPS12 @PERSON3, @PERSON4, and I were all going to work on our @PERSON1 project. @PERSON3's phone was taken away so the only way I could talk to her was on @CAPS7. Did you know that @PERCENT2 of @LOCATION1 has a @CAPS7, @CAPS8, of @CAPS9? To @CAPS17, I hope you enjoyed reading about how using computers helps with research, applying for a job, and communicating with family and friends please @LOCATION1, @CAPS18 this in the Newspaper so all residents of @LOCATION1 will agree with me." 5 4 9 +745 1 "Dear @STATE1's newspaper editors I have recently read an atical that was talking about how experts are concerned that people are spending way too much time on their computers. Well I agree with them. I strongly belive that computers are tacking time away from you exercising enjoying nature and even interacting with family and friends. Well if you look at teen's this day and how more and more are becauming over weight like back in the days when their wasn't computer or internet not as much people were over weight or even obiste because they had time to go out and exercis or play sports with othes. Exercising is importent because espeshaly when as a teen you are over weight or even obiste well theis problems just don't go away this will cost you in the futer because not only do you have to chance of getting deobetice but you also have to pay for all the medications and treatments that comes with it. Experts also belives that by spending time on the computer will tack time away from enjoing the things that nature has to offer. When other might argue to it is a good thing for people to learn about the different types of place's in the world. Well I delive why do you have to just read about the places online and look of the picture why can't you be the one tacking the pictures for other to see. And why can't you be the one experincing it insted of just reading about it. Experts also believe that by spending time on the computer it is tacking away time from you being able to interacting with family members and friends. Well as a teen myself I have learned that by intercating with family and friends are vary important to our health. I am not the only person that agrees with that because study shows that kid that can talk to their perents and have good convercations with their parent have the ability to do well in school and have more respect towed others verces the the kid or teen that can't really have conversation or talk to their parents. For example if you are the type of person that talk to your family You will have good grades such as A's and @CAPS1's and will learn to have respect for other and the person that can't talk to their parents have troble concentrating or even macking troble fro themselfs and getting @CAPS2's and @CAPS3's. Well I know that as a @STATE1 newpapper editer you are a vary busy person and have lot of diffent things to do but I hope you take this in to concideration and remmember the importants of exercisin, enjoying rotune and interacting with familys and friends." 5 4 9 +746 1 "Dear @PERSON1, I'm sending you this letter on the behalf of the people that spend way too much time on computers. Some people @MONTH1 say that you learn different cultures and interact with new people everyday. The truth is that a computer doesn't help you; in fact it hurts you. By spending all day on the computer you will get fat, lose great experiences on the outside and miss out on life. As a whole @LOCATION1 is known as an obese country. This is due to the fact that most people eat and then dont exercise. Most of these obese people don't exercise because they are glued to thier computer. While interacting with others they just keep on eating, most dont even know why they're eating. If we want to erase @LOCATION1 as being an obese country, then we must get people away from their computer screens. It is actually our fault, because we aren't making a stand. We must show people just how bad the computer really is. Also, while people are on the computer they're missing out on the world. They won't go outside, they wont know what the real world is actually like. Imagine cthat being an adult and having no clue about the outside world. Also, the could miss out on life changing exercises the kind of experiments that people @CAPS1, they would miss out on life as a whole. We only have one life, so you better enjoy it. It would be so sad for someone to just pass through life being stuck on your computer screen. I truly feel bad for that person, then again it could be fixed. All that we have to do is take away the computer. If we do this then all the problems will be solved. Finally, if we get rid of computers we will be known as a new nation. Free from temptation and independent human beings. We will rewrite ourself in history as the that made a chane and got rid of computers." 4 4 8 +747 1 "Dear newpapers journalist, People shouldn't have computers. Computers have a negative effect on most people. The @LOCATION1 has The highest number of obese citizens in the world. A lot of people spend their day sitting in front of a computer and work. Then they go home and go on their own computers instead of going for a walk or a bike ride. Some people like to look at photos of nature or birds on the internet, even though there's a whole forest outside. Another problem with computers is how safe they are. There are a lot of people on computers that don't belong there, and are trying to hack onto your computer. Viruses can sneak into your computer without you knowing it, and can look up eveything on your computer, even personal information. They can even monitor what your typing, which could be passwords! A lot of people have been paying their taxes online and if there is a virus on their computer, they could get their person's personal information! Plus, most people who pay their taxes online have to use their online bank accounts, so now. They have your bank account password too! Computers are bad for most people. They make people become unhealthy and can get their personal information hacked by a virus." 4 4 8 +748 1 "@ORGANIZATION1, I would like to tell you computers are very helpful in our society today. Have you ever needed to know something about a state or a place that brought up nig news & you needed to get it? Were did you turn to? I know not a book, but to the computer. Without it how were you going to get your info. I think computers are benefitial to our society because it can help you learn and it could tell you when or where to sign up for activities. People interact with others different countries, states, & or continents. Next, is how computer could benefit our society. Computers could help us learn by searching up research for a paper or even expanding our general knowledge. For instance today my class & I are going to the @ORGANIZATION2 @CAPS1 to look up info on seat belts on buses. Without computers my class & I couldn't have get it done without the computers. If we had books, it wouldn't have been enough to give to us all & that would mean we would have to share. With sharing some kids @MONTH1 have hogged the books for a long time not allowing the other kid to get the info needed to do the paper, which would lead to a civil dispute in the classroom those two. With computers we have enough for each kid in the class. And, computers could help with gaining more general knowledge quicker. With gaining more general knowledge you become smarter. Next, computer can help set up activities. Computers could help go sign up for activities like baseball, football, basketball, or a gym. With the help from the computers you don't waste time going to the gym signing up, while you could do it at home. Maybe there's a waiting list to enter. You would've known that if you signed up online. For instance my little brother plays baseball & my parents signed him up online. All they had to do was to take him to the place to sign up & show that. I live in the town of @LOCATION1, while others had to sihn up, register, & pay. All of that could've been done online like my parents didnt with the understanding of why computers could be helpful to society by being able to gain knowledge & able to sign up for activities. Do you see why we need them for everyday life or just to get around? Computers are benefitial to our new up & coming society!" 4 4 8 +749 1 "Dear Local Newspaper, Have you ever forgot the book you needed for homework? Did you ever miss the newest episode of your favorite show? Well, all these things and more can be solved by using the computer. The computer gives us all the things we need. Whether that's information, games, or online friend chatting websites. The computer is necessary for our society today. Countless times I was in desperate need for information. If I'm doing a school report on animals. I can just go on the computer and search whatever I want. There's no more need for driving to the town library and then searching through countless books and encyclopedias. I just think that that is a waste of time, when you basically have everything you need twenty foot away. And it's in your house! There is no more need to search for hours through biographies. If you need to know state capitals, you can find it in no time. To me, that's a life saver. Not only can computers help you with information, it can make school projects so much easier. In my own experiences, I've needed pictures on school projects. Instead of drawing it, the internet can save time and effort. All you need to do is print out the pictures! However, if you have an essay that's, let's say, supposed to be ten pages who wants to write all that? With a computer, you can type it out in half the time. Then, when done, you can print it, or even send it straight to your teacher. But, if it's not finished, you can save it on a thumbdrive, and use it on any computer you want. All in all, that's a huge help. My final reason why computers are good, is that they serve instant pleasure. Computers have millions of games that a kid can play for free. Also, it has many website, like @CAPS1, or @CAPS2, that let you interact with friends. If you need to tell them something, there is no need for a phone. Plus, if you miss certain shows, or want to watch music videos, there are websites for that. As a kid, I'm usually never home because of sports and school activites. If I miss something on @LOCATION1, it is almost definitely going to be on the computer. You don't have to wait a week or so before they replay that episode. Who wants to do that? In the end, I think computers benefit people around the world. No more driving to libraries, or going out and buying games. The computer has everything you want for free. Basically, I think the computer is a huge time and effort saver that every household needs. It definitely benefits society." 5 5 10 +750 1 "Yes, I agree with the concern that expert have. I say this because its true people get on the computer for a long time and forget about their family, there is also all kinds of danger online, and lastly your brain is not getting enough work out. Don't you think all of this is true? Well, then if you still don't believe me I'll prove it to you. First, people get addicted to the computer they forget about there family. Insted of beign on the computer just looking for stuff like myspace or facebook, but they should spend time with their families playing games like @CAPS1, @CAPS2, or @CAPS3. I say this from a personal expirience, it wasn't me it was my cousin @PERSON1 he got addicted to the computer so much that everytime his family tried to do something fun together they would always end up fighting because he didn't want to go. Secondly, people can be facing major danger online, for example when you got to those chat sessions where you meet people supposley your age, but it might not always be that way everytime on the news you see stories where old people try act like @NUM1 year olds, but they aren't they just want to do bad stuff. So you can be facing a lot of dangerd online. Lastly, by beign on the computer your not letting your brain get the good workout or exersice it needs. Your just letting it be there, but instead you can be reading a book or do a word seach puzzle; these are all good idea for making your brain exersice. On a recent research experts say that people spend time reading and exersicing their brains do very good on test, but people who spend most of the time in the computer fail test. So don't you think I'm right? Don't you think that if you spend to much time on a computer you have less time with your family. You can be facing serious danger, and your brain is not getting the exercise it needs. Did I convinced you yet?" 4 4 8 +751 1 "I would like to state on my behalf that I do not agree that computers are good for society. There are three reasons why I do not agree. Many people will not enjoy the outdoors, @CAPS1 people will spend @CAPS1 there time on the computer, and a lot of people will gain wheight to inactivity. When you sit on a computer you dont get off of for a while, why, because you are haveing fun. when you are haveing fun you will not stop wat you are doing, @CAPS2 dont pay attention. Eventually you will get hooked and play on the computer rather than go outside and have fun with your friends. @CAPS4 will just take up all of your time. @CAPS2 when you are bored you find anything that you can possibly do, rather than be bored. Many people are thinking this is a good time to go on the computer but @CAPS3 you bored you will stay on the computer until you have something to do. My mother always tells me when im bored not stay home because @CAPS4 will get worse. There is always something you can do that dosn't you just have to look harder. My last reason is that when you sit at a computer and you are fingers, you gain your wheight you I read @NUM1 children in every years will be obese, not because @CAPS4 runs in the family but because of inactivity. Inacitivity means not active activity. @CAPS3 you calories you will gain weight @CAPS6 wheight is unhealthy and you can stop the problem by just finding something spend your whole life on the computer. In conclusion you @MONTH1 have mixed thaught's @CAPS3 you ever want to go on the computer all the time. @CAPS4 doesnt matter @CAPS3 you go on just dont all the time. But remember my reasons why not to spend too much time. You will not enjoy the outdoors, find something else to do when you are and you will gain wheight @CAPS3 you spend all your time on the computer. " 4 4 8 +752 1 "In my opinion I think that computers have nothing to do with people having lack of exercise or sleep. I think it is all the persons decision to be on the computer as long as they want. The person on the computer obviously does not care if they sleep or not. When people are on the computer I think they dont play as much and start to get fat but that its their decision. Also when the time comes they going to realize that they need to spend less time on the computer and exercise. However, they need a time limit to be on the computer and limited time for eating right and exercising. Being on the computer @NUM1 people dont get the chance to interact with their family and friends because they want to be lazy and stay on the computer. The family and friends get angry and dont want to hang out anymore and within a couple of months they have no friends. Nature is good smells good, looks good, and computers make people stay inside all day! I think we should have more time outside. Also computers sometimes make kids want to not clean their room, not do chores because they are addictid to the computer." 3 4 7 +753 1 "Dear, local newspaper I agree with @CAPS1 that computers are not good because of different reasons such as putting a person's health in danger for not excersicing much or making people spend more time on a computer than interact with family & friends and sadly also it causes people to change there attitudes and ways of being. But if you wanna hear more than you will just have to read on. There are plenty consequences that people have for spending too much time on the computer, such as people getting addicted to watching certain things or addicted to watching certain things or simply get addicted to the computer itself. Plenty of people now a days, have to wear glasses and probably most of them have to wear them because of too much computer, and it must be really bad having to wear glasses the rest of your life. Also too much computer is bad for a person's health because they're giving more time to a computer than spending that time excercising. I believe people should spend more time interacting with family & friends because it can also make you lose your friends and/or family because your not giving them the time they need & friends and family are one of the most important things in a person's life. And last but not least. too much computer can change a person such as changing their manners, the way they speak, and there attitides. Well I've giving you reasons why I think computers are not good such as, putting health in danger, changing a person's life, and causin them to lose family & friends now is up to you the rest." 4 4 8 +754 1 "You need to gather information for a project you're presenting in school, but how are you going to find aout about your topic quickly and easily? Most people will turn to one of the most commonly used piece of technology in the @LOCATION1, the computer. The computer is used for quick and easy research, interacting and communicating with friends and for personal entertainment. Some peol argue that the computer will take away from enjoying nature, spending time with family and friends and exercising. But what if we didn't have the computer? The possability of research, etc. Would be much more difficult. For example: computers help us learn about almost anything quickly and easily. this could help make work for school or jobs less stressful. Also, a computer can be accessed right in your name, so no travel is required. The computer has programs that are used to prepare articles, essays, slide shows and brochures for presentation, as well. If we didn't have a computer, research would be much more of a struggle and could require travel. Computers are one of the most common ways to communicate with friends and family. Websits and e-mail helps you keep intouch with anyone around the world. You can write e-mails, access live chat or even webcam. E-mailing is just like mailing a letter except it is dilivered instantly and doesn't cost anything. There is also no risk of anyone reading your mail. Live chat iswhen you chat over text on the computer. Webcam is face to face interacting which givs off the effect of talking in person: @CAPS1 benefit is that communicates over the computer doesnt cost a thing. Lastly, computers provide games for your personal entertainment, which helps kill boredom. The computer also helps improve hand-eye coordination, along with staying orginized @CAPS2, pictures, videos and more can be placed in files and saved on the computer making it easy for you to open them at @CAPS1 time. Computers @MONTH1 take away from some activities but think of how much harder and more stressful things will be without it. I think that the computer has a good effect on people as well as it being a helpful piece of technology." 5 4 9 +755 1 "Dear local newspaper, I strongly believe that computers have a great and beneficial affect on society. They have @CAPS4 many features. options, and abilities to use! Would you really try to prevent your child, friends, and families from using such an amazing invention that helps us every day? The computer can help others communicate, help educate you, and even prepare you for the future. One great option that computers have is the option to communicate with others. You can set up an email or a chatting account to talk with friends and family. Now some people might think, ""@CAPS1 not use a phone to talk to others."" @CAPS2 these are many reasons @CAPS1 talking online can be better than using a phone. I remember one time a few years ago. Me and my cousin @PERSON2 were alone at her house when the phone wasn't working @PERSON2 went down stars to get us some sodas when I heard a crashing sound, @PERSON2 had fallen down the stairs. Because the phones wren't opperating, i hopped to the computers in her room to quickly ""chat"" with my dad and tell him what happened. From these on, my dad called on ambulance and @PERSON2 was allright. @CAPS4, not only are computers a great way to communicate, but they can also save somenes life! Another feature computers have is that they can actually educate. For example, if a stuident has to write a paper for school about the @CAPS3, then they would need to do some research. The internet explorer on your computer can open your eyes to a world of kodedge. All you have to do is go to a search engin such as @ORGANIZATION1 or @ORGANIZATION2 and type in the subject you wish to learn more about. Before you know it, there's millions upon millions of websites that can educate you on the subject you want to gain more knoledge on. @PERSON1, a high school teacher, states that ""@PERCENT1 of students in the school use the computer to help them with homework and reseacrh."" @CAPS4, there you have it, the computer's a great resource for information. One last reason computers are @CAPS4 beneficial for our society is because they can actually help you prepare for future jobs. Perhaps some day your child will get a job working in on office where they must use computers all day long. The heard of the company is not going to hire you if you are not expierenced with computers. However, if you know how to use a computer @CAPS2, then you have a great chance of getting a job that can support you and your family. Studies say now that ""@PERCENT2 of buisnesses involve using a computer"" Computers are becoming a bigger part of society by the second, it's important start learning more about them as soon as possible! I think now it's very clear how important computers are in our society. They help increase communication, a great source for knoledge, and bhelp prepare you for jobs. With each passing day, computers help advance the future and help make the world a better place." 4 5 9 +756 1 "Dear local Newspaper, I am writing this to let you know that many people are spending to much time on computors rather than enjoying nature. People say advances in technology believe that computers have an effect on people in such a way of saying. Many people showed on as is say can use the computers but to remember to think about nature what nice things it has in store for us. Im going to saying that experts are right that people are spending too much time on their computers and less time exercising, enjoying nature, and interacting with family and friends. Im thinking that in some points many family members and friends see then other relative person on companion so much on the computers it's like if they are thinking maybe they don't care anymore. Caring about nature and your loved ones is such a great thing. @PERCENT1 of my friends agree with me when I say that people should be less on electronic devices because that can effect your brain or maybe your eye sight (eye vision.) @CAPS1 more and more people should lay off it. @PERSON1 of yale university has conducted extensive reaserch and proven that many computers that are being used by people can be damage of using it every time. I strongly agree with him that there should be a time limit on something to let them later on have the spaare time to enjoy and have fun with nature but something different such as to enjoy listening to soft music. I know you will agree with me when I say that maybe people should spend less time effecting themselves. Whatsoever im hoping from you to agree with my position so this can be possible to break this habit of going on computers and having no time for your family and friends is not such a to start off with." 4 4 8 +757 1 "Dear @CAPS1, @CAPS2 experts are concerned about today's population's computer usage. With this I agre, as many children and adults are counted and labeled as obese, or overweigt. Technology has advanced as enough to having machines do everyday tasks, proving how lazy some @CAPS3 are now-a-days. People sit at home standing at a computer screen, forgetting about spending time exercising, enjoying nature, or being out and having fun with friends and family. Having a computer clearly interferes with one's @CAPS4 @CAPS5 in real @CAPS5, not the ""@CAPS4 @CAPS5"" of chatting with others over internet. Having applications released that connect people over the computer devastates the reason to leave your house. Now with video, you virtually meet the other person, showing how lonely and individually separate you can of from others. While your friends are having a party. You'll be absent, as I'm sure they won't have a webcame there. Another reason why a computer is not needed is many people neglect pure nature. When surrounded by new digital age. The beauty of the outdoors become forgotten. Sure you can watch videos, and look at pictures of nature, but is that really anything compared to the crisp, clean aid against your hair or the once in a lifetime animal actions you @MONTH1 see? Plus, nature and the fact of being outside @MONTH1 inspire you to continue a diet, or begin one, seeing how healthy and perfect the outdoor can be. It also serves as a great place to exercise. As we all know, obesity is a factor in the @LOCATION1 and around the world. But now, being oevrweight is at an all time high, claiming lives and causing many into depression. in my opinion, I believe this is highly realted to computer usage. Especially with fast food playing a role. People have not realized the need to exercise more often. In conclusion, you can see how computer usage has affected us as a nation, and in a negative way. Computer using @MONTH1 be ""ok"" when used in moderation, like sweets or oily foods. it does serve as a way to pass time, for a while, but so does exercise... Which one would you think would end as a believe solution? Obviously, we must stop relying on technology to help, and begin activities ourselves again." 4 5 9 +758 1 "Dear @CAPS1, I belive that people are spending to much time one computors. I belive this and I have @CAPS7 reasons why. @CAPS2 first reason is that people waste money on it. Also every thing they get from the computer you get from book. And finaly @CAPS2 reason is because of the ""@CAPS8 crises."" @CAPS2 first reason for say that people spend to much time on the computer is that people waste two much money on it. I belive this because of your electric bill and and @CAPS3 bill. The people who have computer electric bill is always very high and for reason they are forced to pay @NUM1 or more dollars on electricity. This is also true becuse of the constant charging of laptops or running of computors. Also they have to pay @NUM2 and odd dollars on the @CAPS3 bill to keep the @CAPS3 connection. So that bocome a total of @NUM3 and odd dollars going down the dawn. @CAPS2 second reason for this is that anything and every thing you can get on the @CAPS3 you can get from books. I belive this because where do you think the website makers get there info from. Reading books also increase your knoledge so that at any time you can quickly come up with an answer. Another reason is that some website are not always accurate with their information. @CAPS2 third and final reason for this is that we are all dealing with this ""@CAPS8 crisis."" @CAPS7 people every day are getting less and less active because of computers. This I cause less people to be phisicaly active and less fit. And the @LOCATION1 is suffering because of it. Less and less people are joining the army because of this crises and computor are sadly con triputing to the world wide crisis. I eagerly hope that @CAPS2 letter hase helped you see @CAPS2 point of view on this subject. To show that people spend to much time on there computer because its a waste of money, anything you can get from a computor you can get from book, and because of the ""@CAPS8 crisis""." 4 4 8 +759 1 "Dear @CAPS1 @CAPS2, I have heard the concern of many scientists about computers. Computers have brought us into the @DATE1 and have improved our society but they are harming our childrens health and education. Because of computers, children and adults around the world are spending less time with family and friends, they are not enjoying athletic activities and they are having health problems. Because of an increase in technology, children and adults are not spending time with their families. The computers are ruining family connections. For example, a study at @ORGANIZATION1 showed that families with more computers in their houses communicated less. The children are talking to their friends online or are going on social networking sites instead of talking in person to their family members. Also, computers are making it very hard for families to have meals together. When the children are on the computer, they do not want to leave. This obsetion with the technology is making it harder for families to grow moved and of were more succesful in school. The computers are children from a better education. Athletic activities are also suffering been so of @PERSON1, fresh air more children They will be on websites all day insted of being on a. Sports teams because of computers. The electricity that runs computers of this radiation. Being exposed to this could lead to brain damage or possible death. When my aunt bought a computer for the first time, she complained about massive headaches that kept returning. This was caused by the radiation emitted from the computer. Another health risk is obesity. When children sit in front of a computer for many hours, they have an increase in apetite. These children eat because they have nothing better to do. While on the computer, the users eat and will gain weight because of the loss of exercise. They could become obese and possibly get diabetes. Therefore, there is less communication in families, a loss of excersise, and health concerns caused by the computers. The consequences of misusing this technology are devastating and could be life thretening. Thus, I urge you to do whatever is possible to use the computer less or face the consequences that come with it." 6 4 10 +760 1 "Computers are great, they can help you with anything you need. You can shop on then, pay bills, even book a flight to go on vacation, but people are spending too much time on them. They should only spend a certain amount of time on them and not all day. Many people are spending more than enough time on the computer People ran often stay on the computer for hours and not even relize it, they stay up all @TIME1 doing work, or playing games. @TIME1 a while it will eventually take a toll on the body. Because @CAPS2 you are on the machine all day then you are using little to no energy at all. So then you spend @CAPS1 nights in bed tossing and turning. Then that leeds to feelings horrible in the @TIME2, @CAPS2 you do it @TIME1 it is going to have a bad effect on your body. I believe that people who spend all their time on the computer will eventually get overweight. @CAPS2 you are sitting in a chair all day then you get no exercise what so ever. Then when you eat you don't burn off the calories so that leeds to people gaining wait and becoming over wait from that your body becomes very unhealthy and will most likely leed to health issues. When people are on the computer they end up ignoring nature. They miss out on being in the wonderful warmth of the @CAPS3 @CAPS4, or going out and playing in the snow and making @CAPS5, forts, or having a @CAPS6 fight. They even miss out on just going outside and talking a walk the reason is because they are @CAPS7 @CAPS8 inside their house with their fare glued to the computer. Being on the computer takes a lot out on the body. It can cause health problems and even problems in general. So people should just spend a part of their day on the computer. The other part of the day they should be outside, walking around, maybe playing with pets, children or friends. As long as they're out of there chair and not on the computer and getting some exercise." 4 5 9 +761 1 "Dear local newspaper, Computers are a usefull tool when doing a school report or something to that effect but, @CAPS2 we really need thoes computers. When using a computer for a school project @CAPS3 can be a hassel. One of many problems people are fased with while using a computer are freazing, when doing a project and your computer frezz's @CAPS3 can be verry time consumming. Another problem is pop up's, pop up's can couse virouses, and when you computer gets a virous, @CAPS3 leads to becoming very slow. Witch leads us to are next problem slowness, when a computer becomes slow @CAPS3 is verry a digital. There are several problems and risks that come with a computer. One health problem is that you can become a hermet and stay inside all day because your too attached to the computer. Another problem is that you can become verry obease because your not getting any physical exersise. One risks of using a computer is that you could end up getting an fassebook, @CAPS1, or myspase, and meating some one who is protending to be some one there not and get abducted by a molester! There are other alternations you could make instead of using an computer. One alternation is that you could go to the local library and cheak out books on your topick that your wanting information on. Another alternation is to ask teachor if she/he could leand you a class text book. But the main aternation is computer to old fashon books! So now @CAPS3's your choice,""@CAPS2 we realy need computers or can we live with out them?"" @CAPS3's your choice!" 4 4 8 +762 1 "Computers. They are an amazing marvel of science that greatly benefits man-kind today. But computers can be good or bad depending on how you use them. Homework can be made easier, connecting with others is easier, and entertainment like @CAPS1 and video games are a click away. On the otherhand, Computers can be distracting, addicting, and tiring. It is important to know the pros and cons of computers. For example, the search engine, @ORGANIZATION1, is an easy to use website that can be very helpful. If there is a concept or problem that you are having trouble with, just type it into @ORGANIZATION1 and links to websites pop up that will help answer anything that you would like to know. There is also a website called @LOCATION1. This website is an all purpose dictinary, @CAPS2, encyclopedia and translator. I even have an application for it on my cellphone. But technology can also be distracting. Social networking websites, like facebook, games websites like @CAPS3, and also websites like @CAPS4 can be very tempting and distracting when you should be doing homework. Procrasination is very easy to give into. But self control is the only way to avoid this problem. Budgeting your time so that you can do both your homework, and go on the computer is also very important. One thing that I find very useful on computers is an online textbook. We are lucky enough today that most large books can be formated onto a computer. Instead of carrying a @NUM1-pound text book, you can just use a @NUM1 megabyte book on the internet. This makes travel to and from school much easier. That, and textbooks often use up a lot of desk space, but all you nneed is the space that a computer will consume anyway. Studying is also made easier this way. All of the things that a computer can do are great. But this can also keep us from going outside, excersising, and seing real people in real life. This need for the computer can be bad. We are too connected as a society. Our status, feelings, friends, and position in life are always needing to be updated. Distractions are everywhere. Facebook, for instance, is very addicting. You are looking at a virtual landsacape. Self control really is the only way to get off the computer and step into the real world. Overall, computers are great, but you have to know when, and how long to use it. It has several benefits such as entertainment, communication, and information. But all of these things can be just as distracting as they can be helpful. Knowing this. I hope that society can think of the pros and cons of the computer." 5 5 10 +763 1 "To the Local Newspaper, Computers have a heavy impact on, todays society. People depend on them a lot but same people disagree. I think that computers have a positive affect on people. Computers are very entertaining. They can help find long lost friend and keep in contact with them. Plus they can be helpful with homework. Please proceed on reading to see as why I chose these resons. Firstly, computers can entertain. The are thousands of games to chose from. Dress up to educational. Which are good for young children of age five through six. As it states in the writing prompt it teaches hand-eye coordination. In addition to my first reason, computers help long lost friends. There are websites that help you find people. For example @CAPS1, @CAPS2, and yahoo. These websites help keep in touch to, with family. If theres no phone then theres always the computer. Lastly, computers can be helpful with homework. Sometimes you don't even need internet theres a calculator built right in! But a nationwide website thats used and children improve from it is edhelper.com. This website does work sheets and helps with the level the child is on. In conclusion, I think that computers do have a good impact on people. They are entertaining, keeps in contact, and helpful with homework. Please take my reasons into consideration." 4 4 8 +764 1 "Dear local Newspaper, To my understanding computers have been putting a bad effect on people of all ages. In my opinion staying on the computer all day can cause you to miss out on outdoor activities. Also if you sit on a chair all day, honestly what will happen to you? You will become less active. In past experiences I have learned that if you get interested in computer game it will come very addicting. Computer put negative affects on people of all and I think we should stop and think about what we are doing. Most likely if you stay on the computer all day you will indeed on activities such as sports. @CAPS2 example @PERCENT1 of americans play soccer. In the beatiful fall when the leaves are beatifully changing you will miss out on playing soccer and the beaty of the leaves because of the computer you can't get your eyes off of. Another breathtaking adventure that you @MONTH1 miss out on is hiking. Hiking can be amazing when you get to the top and you see on the houses that have people like you (cach potatoes) sitting inside on the computer. Simple activities can be lost because of an addicting game you call fun. The computer is like a cause and effect. You @MONTH1 think you just playing farm town or chating on facebook, but in feture you will be missing out on the beauty of nature and sports. To connect @CAPS1's with missing out on sports because of the computer that will cause you to become over weight. A recent study showed that @PERCENT2 of children are obeased because of computer games. You @MONTH1 be thinking how, but I have a friend named named, @PERSON1 and he used to love to play out side and play sports until came out @CAPS2 the computer. Now he way @NUM1 pounds and he is only @NUM2. Honestly sitting in a chair all day will cause you to not be active and gain weight. Do you want this to happen to you? Help me tell others how computers cause a negative effect on others. Lastly playing on the compter or chatting with friends on @ORGANIZATION1 can cause you to @CAPS2 example if your talking to your girlfriend in spain who is there @CAPS2 callage I garentee your going to put off school work, @CAPS3 and other @CAPS4 that need to be done. In the end it will end up being time @CAPS2 bed and you got nothing done weather it was because you were trying to get to level @NUM3 or talking with your girlfriend you will have nothing accomplished. If your not yet a resent scientific study reported that six hours on the computer per day @CAPS2 one week can @CAPS5 your vision from a @NUM4 @NUM4 to @NUM6 @NUM6. If you keep it up now it @MONTH1 not seem bad but @NUM8 hours looking at the computer can kill your eyes. Would you rather be blind or not use the computer because or what could happen? All in all the computer is a bad thing such as useful piece of technology can cause you to miss out on events such as sports. Also it leads to being overweight sense your not getting active. Finally the computer is bad @CAPS2 your eyes and can cause you to procastonate. Help me help yourself avoid all of these bad effects caused from the computer." 5 4 9 +765 1 "Dear editor, I beleve that people should have computers, The resons are it dosen't take @NUM1 days to email. You can learn about faraway places. Also you can talk to people around the world. After looking at these detail most people are likly to agree. Firstly it dosent take @NUM1 days to email you can email someone and it takes five seconds to get to the other person. While regular mail takes @NUM1 day to a week to get to another person. When you email some one and then the email you back it saves the and government money. Email is much fasters than the mall or I like to call it snail mail. Another reson is that you would be able to learn about diffrent contrys faraway and near. Would you be able to about @LOCATION1 from you living rooms without computers. No you wouldnt't. Without computers would you be able to learn about the earth quake in chile. No you wouldent. Compters are modern day telivision for kids. Lastly you can talk to people on the computer there is many ways to talk to people like facebook, myspace, aim, and vidio chat you don't have to call some one on the @CAPS1 when you can jus vidio chat with them. In conusion computers are good. You can email fast. You can learn about foreinge contrys in you living room. You can also chat with people online. I think computers are good what about you." 4 3 7 +766 1 "Dear @CAPS1, Have you ever used a computer to do anything besides buisness? Well if not then when you are not busy you should try it. The effects computers have on people is that it's a lot of fun to go on and play, helpful with mostly anything, and you can find just about anything from websites on clothing to maps to the store location. There are three reasons why you should agree with me and these reasons are people have the right to choose what they want to, in this weather it's a little bit to cold to go out and enjoy nature, lastly they can interact with friends and familys online on a website. People have the right to choose what they do because the goverment can't choose for you since they're busy with other more important stuff. Also in the constitution it states that the goverment can't choose for us while we have the power to think. In this weather it's cold to go out, plus nature is so much better in the @DATE1 and the @DATE2 where it's not to hot to cold and thats when the sun is good thats when people should enjoy nature. With all the technology in todays world it's better to take advantage of the technology in this world, also the technology we have is helping people like generators because in old times people didn't have generators. So I hope this letter has changed your opinion and thank you for reading it." 4 4 8 +767 1 "Dear Newspaper @CAPS1, @CAPS2 opion in thig is that, computer are used all the time. People use them to talk to friends and family online. People also use computers for home work online. And the last rason I say computer are used is just for fun stuff game you can play. I use the computer to look how @CAPS2 teams are doing. Now on to more about why. Computers are good for society, because people use computers to talk to friends and family on @CAPS3, @CAPS4 and @CAPS5. This is a good reson becuase we all have family. So I think that this is a good way to talk to them. An for friends this is a good way because if they move you can talk to them on this. The reson it a bad thing is because people like older men can use the computer for child pornarapy and talk to younger girls about sex and thats not right. Now on to more about using computer for homework. The reson computers are good to us is because people can use there computers for homework. This is good because if you need to do something on our history then that what thats good for this is good because everything you need is on a computer. Now on to more about how computer are good to society. @CAPS2 @CAPS8 reson is because computer are good for fun stuff. Computer can have every game you want they have kid games, @CAPS2 @NUM1 year old sister goes on to the games that you can match. Teenagers can play games on the computer. The compter for me is cool because I can see how @CAPS2 football team is doing. Ho @CAPS2 @CAPS7 are doing. This is why the computer are good. These are @CAPS2 opion on this is that compter are used all the time peopl use them to talk to frend and family online. Peope also use computer for homework. Finally last and @CAPS8 reson is because you can use it for fun games for kids. An I can check how @CAPS2 teams are doing. " 4 4 8 +768 1 "Dear @CAPS1 @CAPS2 @CAPS3, I strongly sudjest that people should spend more time away from the computer. Instead they should be doing more exercise, doing more outdoor activity's, and most importantly spending more time with family and friend's. I think the best way to get everyone to agree with me is to write a passage to explain why I think that people should spend more time away from the computer. The most important reason why people should stop wasteing time on the computer is so that they could get more exercise. Getting more exercise could help you out in a big way because the less exercise you get means the less healthier you are. More exercise could also be helpful because you could have health preventing you from getting deabetes, and a lot of people get diabetes from body in shape. My last reason why I say that getting more exercise is good for you is because, if you get more exercise then you would not have to worry about all of the deseas and problem's when you are in your elder ages. Another way you could spend your time instead of staying on the computer is by doing outdor activity's. Outdoor activitys could be really good for you because if you are not used to going outside and playing a nice game of football with you friends than it would be very fun for you. I remember one time when I first started going outside I had so much fun. My last reason why I say that more people should spend time doing more outdoor activitys is because of nature. It would be really good for you to go on a walk in a nice @DATE1 day to feel the breeze and smell all the nice scents. My last reason why I say that you should spend more time off of the computer is so that you could spend more time with your family. Spending time with family is way more important then going on the computer with friends. I remember one time when my cousin and I were at his house and we really did not know each other but I got to spend more time with him and now we know a lot about each other. My last reason why I say that you should spend more time with your family is because you could learn a lot about you family. So now you know the three reason's why I say you could be doing more thing's instead of spending time on the computer which are exerciseing, doing outside activity's, and spending time with your family." 4 4 8 +769 1 "Dear @ORGANIZATION1 newspaper, I firmly believe that computers do have a positive benefits on society. These advancements in technology can only enrich peoples lives. One way computer help is that students can do their school work online and see their teachers pages. Another great thing about computers is that whenever people need information or details on any place or things have can count on the internet to help them out. Most importantly they are a vital source of communication. People depend on computers for their scheduling and keeping in touch with everyone that they know. Without computers students would have it a lot worse. When a student forgets the homework, they can just go on their teachers online page and check what he assignment was for that night. Another thing that students benefit from are online textbooks. If a student can't manage to carry home @NUM1 pounds of books they can just use their textbook online. Nowadays, the internet is filled with lots of great information and educational site. Teacher also can allow students to research for projects online and participate in online educational activities. Not only do computer help out educationally' they are probably the must well known information centers. If people want to see about a restaurant, store or product, they can do that online. Also, many people want to go to destinations but do not know how to get there. The internet provides them with directions for them on how to reach their destination in a quick and efficient manner. An extremely important and helpful aspect of the internet is the ability of purchasing and ordering items online. Before someone decides to but something, they can find out all sorts of information about the product and shop around for the lowest price. People can even order groceries to new house if they are busy! I strongly think that the internet is the number one way of communication between people. For example, the team manager of my soccer team always emails me times and locations of the next game or practice. I would be lost and confused without these emails what I depend on. Buisnesses also heavily rely on the internet to keep in touch with their clients that keep them in buisness. The use of web confrences saves a lot of travel and it allows the company to be in buisness with all over the world. Above all, people depend heavily on social networking sites to keep intouch with friends, keep up to date on the news, and have fun talking to people. Without the internet, probably half of the world communications would be down and that would not be good. Computers, without do have positive effect on society. When it can be an educational resource it is very helpful. Also, it is the best information database known to and is probably the most used. Most importantly, wihout computer the world would be a mess without their main source of communications People know not to spend too much time inside and he always know when to go outside have some fun and get some fresh air. Therefore, computers have no negative effect on people and they remain an essential asset in everyday life." 5 5 10 +770 1 "Dear Readers, I understand some people are concerned that people spend too much time on the computer and that it is bad. I disagree, computers can help keep family members that live far away in touch. You can also see pictures of things that you cant see everyday. Finally, it helps your school work. I know a family that has a son fighting in the @LOCATION1. He brought his laptop with him so he was ask to video chat with his family. It seemed as though he never left. Without it, his family would wonder how he was and be worried. You don't have to have a family member at war to talk to them on the computer. Have you ever wanted to see what @LOCATION2 looks like? You don't have to travel there to find out. All you have to do is search it on your computer! If you live in a city with not a lot of nature in it, you can see what its like outside it with the computer. Seeing those sights @MONTH1 make you to travel, travelling with your family brings you closer. A study shows @PERCENT1 of families that go on vacations have strong relationships. Having a computer is mandatory for school. It is the best thing to research with. @PERCENT2 of students that are failing don't use a computer for homework. There are also websites that you can use for studying. There is a student in my school that failed most of his classes. He never used a computer. His friend suggested using one at home if he was having trouble, which he tries. He used a computer to help study for a test he had the next day. He ended up getting a @PERCENT1 on the test because he used a computer. It doesn't matter you using a computer for homework, talking with friends and familym or it is one of the most important inventions ever made." 4 4 8 +771 1 "Computers are very important, I dont know anyone who does not need one. But some people say that it distracts you from exercising, enjoying nature, and interacting with family and friend. Do I agree? No I disagree with this situation because computers are a modern day tech that people use. They say it distracts you from interacting with family and friends but a computer is the number one way to talk to long distance friends and family, @CAPS1 without a computer how will those people who work for a business work, and last we always need a computer for research. A computer grabs attention to a lot of teenager. Most of the sites we use due to interacting with family and friends. The two main sites people use is myspace and facebook everyone must know these two sites nine out of ten people use it to interact just think if we did not have a computer we would not be able to interact with our long distance friends and family. My aunt has a facebook and her friends live in @CAPS2 she interacts with them all the time they @CAPS1 have phones but comp. have webcames so you can see the person too. Business people need computer a lot of course mobile computers thats why they have laptops. But as I was saying what will people do with out a computer for work they have your schedules, your notification your boss sent out and much more on the weeks most people work and the weekends we can go visit our family membere there are mosly days in a week and a job pay of course you need a computer. Google is the number one searching website we have. If you want to know what time a movie starts most likely you will go to search on the computer, if you have a research paper due of course you will use the computer. We need the computer for everything if I were to ask my dad what the square root of pie is he would tell me google it. This is one of the main thin people do when they us a computer to research. So if you! Yeah I said you think a comp. is a waist of breath think again because it helps you to communicate with your friends. A lot of business people need it to work and last it is a good research engine. But here is a little advice dont spend all!! Day on the computer pick up your walking shoes to get some fresh air you have all day on the computer just go out and enjoy your self in any way possible." 5 4 9 +772 1 "Dear @CAPS1 @CAPS2, @CAPS3 computers hold exclusive inofrmation, I do not believe the have a good effect on people. The majority of students today crowd around a computer while they can be taking care of their body. Such as excersising or just going outside. People need to enjoy the wonders of nature instead of sitting on a computer. Not only will computers impact people, but it @MONTH1 also impact family in friends. There will be less interacting time a risk by going on a computer. Different websites can expose the wrong thing and get you into trouble. I firmly believe that computers have hamble affects on people. In @LOCATION1 today, we are already loaded with obese poeple. @NUM1 outof @NUM2 people are not physically healthy and a majority of obese people today state that they do own a computer. Computers attract people and same @MONTH1 sit at the computer for hours at a time what about excersising or enjoying the outdoors? Computers damage our bodies in a way by luering ourselves in while we can go out and enjoy nature. I definatly will argue this fact that computers have a bad effect on humans. Computer change not only the body, but mind. My sister has a computer in her bedroom and I barely see her at all. She stays up there all the time, and when my mom calls for dinner, it takes more than five @CAPS2 to get her away from her computer. Computers affect people because they keep humans away from civilization. Friends and family are impacted by the lack of interaction from one person. It's disrespectful to take time away from your friends to play on computers. This ruins many peoples social health, because the more they ignore their family or friends, these people will stop trying to interact with them. When these computer finatics came around, there want be anyone there for them. Computers definatly have an unhealthy affect on people who use them. How would you feel if tons of your personal info got out into the public. Nowadays, computers have a major chance to do that to you. Websites like @CAPS4, mysapce, or twitter have your information, and with a click of a button, it can be exposed to the world. Computers have a background of doing this kind of effect on people. Some dont understand what they are doing and if bad info or a picture sends out, it can fully negatively impact your career or edecation. Computers help people to make wrong choices and there is no doubt people should let up on the time they spend on the internet. Many agree, computers disadvantage many people in their own way. Whether it is by taking their health away because it keeps many indoors, or if it costs you your friends and family, computers are not good for your physical and social health. Computers can send out information and they are risky. They will majority impact your future and impact all people in a bad way." 5 5 10 +773 1 The effects of computers to people are that adults and kids are getting way more attention then they need to. The first reason why is that most spend their time social networking. The others are either buying things or playing games. Some of the people that are on the computers are wasting too much time being tech-saavy. It's other ways people can spend their time like biking or taking a brisk walk. Another solution is you can get up on you learning skills or find a job around you town. Computers drain and waste peoples minds everyday. I think it is essential for the people that can't get off seek fitness and mental health. Than again it could be legitimate reasons to be on the computers spending as much time as you want. The people that abuse the access of their computer too much should think and find something else to do. I think it'll be a good idea to have a time when the computers should be shut off one day or a week. By that I mean the cable/enternet company should turn the internet and the cable off for a week of pure exercise. That'll make people who are lazy to do something active. It'll also be a good motivator for people who are on the computer or watching t.v too much. Then it would make everybody fit and health if they try. I understand the elderly or senior citizens who need their computers for health help. That's understandable but everyone else should not be exempt. Computers and laptops should be network disconnected to make people get off their feet and do something helpful or brain building. Everyday people are being digitally sucked in. Some people in this world just can't get enough of it and it need to dead soon. The government should make a legal law that you must do something that will actively benefit you. It should be a person of the state or local towns person that goes to every house. Another way that could be done is by one person from every street in the state go home-to-home to make sure the procedure is being done. A lot of people are not going to like it and they will not obey the new law. It should be a penalty towards anyone that fails to abide by it. The second choice should be a loss of internet services. That'll make them really mad and in exchange they should still exercise. Sometimes it takes harsh laws to make somebody change. 4 4 8 +774 1 "Did you know that computers are the number @NUM1 selling electronic device in the world? I think that computers are only making our soceity a smarter and more inteligent place. Also computers help old time friends and family keep in touch. Finnaly I think they are helping are society because computers teach great hand-eye coordination. Studies have shown that @PERCENT1 of the people growing up with computers at home have a high paying job! Computers are very intelligent pieces of equipment and if you know how to use a computer you will most likley hae a high paying carreer. Also mostly every job from doctor to police officer to casheer at a store all involve computers and to go those jobs you must know how to work a computer. This is only one of the many reasons I think computers will benifit our soceity. Secondly, I think that this price of technology benifits soceity because it keep family, friends and workers in touch. Have you ever had a time where you think back and wish you could see your old high school friends or even family living. Far away, @CAPS1 computers are one of the most popular ways to do so with all the new websites like @CAPS2, twitter or even your old email website people are keeping in touch all over the world. Another way computers help old time friends keep touch with the new video camera in the computer, family, friends and workers can actually see each other from different parts of the world. A simple message though one of these websites will make someones day and could even make yours. Finnaly I think that computers benifit our soceity because they teach hand eye coordination other life skills. How do you think people can shoot a gun so and so quickly or how do you think a baseball player can swing at such a perfect time. All these things revolve around hand-eye coordination which is best learned by computers. Also people can save lives by just a type about a hurricane, tornado anything but if they do not know how to work a computer many people can get injured or die. These are only three of the many reasons I think computers benifit our soceity. So think twice about the negative comments people say about computers." 4 4 8 +775 1 "Dear @ORGANIZATION1, @CAPS1 that use computers is a good thing. I state this because the web has many things to do. For example, facebook, twitter, and myspace are all social sites. Also there are video sites such as youtube. Plus @CAPS1 learn how to type fast. Social network sites are good for @CAPS1. Teens got to talk to each other, make new friends, and post what they want. For example, twitter you can post tweets, facebook you can join groups, and become a fan of something or someone, and myspace you can send messages. TEENS relieve a lot of stress on the web. Videos are great when your bored. Type in youtube and get a good laugh or two. Teens that go on youtube become more social. For example, teens can learn the new dance. Plus on video sites there are comedy. Comedy helps daily life. @CAPS2 helps life if you work in a office or a trademark. Teens learn to type to make life easier. For example @CAPS2 fast is like texting. @CAPS2 is like writing a letter electronically. So get to @CAPS2. Ok so computers do help life in teen years. Basically it is @CAPS3 somewhat. All people should have a computer. Just remember that social sites, video sites, and @CAPS2 make life better." 3 4 7 +776 1 "Yes, I do think that we should continue useing computers because it helps us stay in contact with other countries around the world, it forms a balance, and it also makes life simpler. First of all, computers help us stay in contact with the other countries around the world. Without computers we would not be able to @CAPS1 or evan video message other countries about important events. Sencond, we have to balance computers and excersing and interacting with just sitting on the computer but computers can help us interact with family and friends by emailing or video chating can also help you stay in contact. Last useing computers makes life simpler like how its so much easier to write an @CAPS1 and not a letter and its easier to instant message someone then to call them also for school projects you can make your project look so much better by adding pictures and diffrent fonts just hand writing it. That why arents arent a waste at time because they help us stay in contact with the other countres, they form a balance and it also makes life simplier." 3 4 7 +777 1 "Dear @LOCATION1, Computers are a neccessity to life. They benefit not only the community but the whole world! They provide education for anyone who has access to the internet. Secondly, it's a form of communication. Also, computers can be fun and entertaining. As you know, education is one of the most important things in anyone's life. Where would we be without a computer to help? Think about how many times you've used @ORGANIZATION2 or @CAPS1 to search something you didn't know the answer to. It's a lot, right? I do research everytime I get a random question jammed in my head. Imagine how tough it would be without a computer to rely on when you have no idea how to answer something. Another thing is there are online courses now for students. Some college students have to look up their assignments and how to do them on their professors web page. Also, how world students know what their homework is if they can't check the @PERSON1 homepage? I check it almost everyday when I come home from school. It's great that the teachers care enough to post the homework. Without computers, we'd have a higher percentage of students not doing their homework. @NUM1 out of every @NUM2 people in @LOCATION2 has some form of online communication program. Whether it's @ORGANIZATION3 @CAPS2 or @CAPS3, maybe even youtube, or just a simple e-mail, practically everyone has one. How else are yousupposed to talk to your friends after school? What do you expect us to do call them? Then wwwe would be on the phone for hours! Anybody with a teen at home knows that. Also, computers help deaf people talk. They just type in what they want to say and out it comes.I remember when a lady came to our school who was blind and deaf and she demonstrated how to use that special program. Another reason is teachers and parents use e-mail to talk about academics and their children. Clearly communication is a must have. Therefore, computers are a benefit to society. There is no way that anybody over the age of @NUM3 has never played a computer game sometime in their life. Except, of course, if they don't have internet access. I know I used to play computer games, but they started to slow down my computer so my dad told me I had to stop or I can't use the computer anymore. Woops! Still, you can use the computer to look up cheats on video games. Oh come on like you haven't done that! Or at least your children have. Also, you can use specific programs like @ORGANIZATION1 @CAPS4 or @CAPS5 @CAPS6 to create a cover page for a project or a presentation for your corporal business. In other words, computers are pleasurable. As you can see, computers are extremely educational. They provide search engines to figure out anything you're ever wanted to know about. Like, foreign places or movies. Anything. Also, we wouldn't have as much communication with people. How would we e-mail friends in @LOCATION3 without computers? Finally, you can find pleasure in computers. They are beneficial." 5 5 10 +778 1 "Dear Local Newspaper, I don't know if I am understanding correctly but are you honestly thinking about not advancing technology? Quickly rethink that because that @MONTH1 just be the worst mistake you could ever make computers can tech hand-ey coordination, they can also give you very useful knowledge. Lastly, computers help us stay close to our family and friends. Fisrt off, about @PERCENT1 of people say that they use the computer every day so that they can increase their knowledge. This could ba as simple as going on @ORGANIZATION1! and discovering the latest news. This is ten times easier that going on the @CAPS1 and waiting for the news stone you want details on. I took a survey and @NUM1 students say that they use thier computer every night so that they can read more into thier social studies or science unit, @CAPS2 computer advances away is like @CAPS2 learning advances away, now is that what you want? Second, @PERSON1, chrildrens doctor states, ""Computers give children that hand-eye coordination they need to enhance in sports"" I agree! Sports such as baseball, soccser, and basketball all need a great deal of hand-eye coordination. Without the hand-eye coordination, students will not do well and end up quiting. I know that if I was having trouble with sports for a long time, I would give up! If the teens gave up sports then they would't have anyining to keep them fit one! that would lead to hundred of kids with on obesity problem. Lastly, @CAPS2 away the advancing in computers maens that you are @CAPS2 away family and friends connectionds. Computers offer many sites such as facebook or myspace o connect with loved ones. You can also go on @CAPS3 or sype to chat or video chat with them. Yes, maybe computers are @CAPS2 away time with family but what about @CAPS4 or @CAPS5 in @LOCATION1 that you have at to in over a year? Don't you want some time them too? You can make time limts for yourself so that you don't spend your whole time on the computer. This way you can took to all of your loved ones would you want to be the one crushing the oceans of a child that wants to talk/ see his grandparents? In conclusion, I remember talking and laughing with my friends over the computer when @CAPS6 sick so that @CAPS7 could cheer me up. Dont take that away from me! Keep enhancing computers so that I can advance my knowledge, increase my hand-eye coordination and get to see my far friends and family." 5 4 9 +779 1 "Dear local newspaper, Too much technology! Computers have a negative effect on people. First, our country needs to exercise more, and not just sit around, second, we aren't spending enough time caring for our environment. And third, we are losing the ability to communicate with the people around us. Our country has problems with being overweight. Most people blame it on fast food, but it's also because people sit around using computers, and dont think about staying in proper shape. Before computers were made, people were much more fit, and healthy, we need to help our country get back in shape, and take our attention away from the computer, for even just a short while, and we need to exercise! The next reason is that computers don't just have a bay effect on people, but our enveironment too. We spend too much time indoors with technology, and we don't even care about the world around us. Before much technology, people used to plant gardens, and trees, but now that thought hardly crosses our minds. All the electronics these days are making people forget about nature, and that needs to change. The last reason computers have a negative effect is that people dont communicate as well anymore with the people around them. If we communicate so much with people through technology, we are losing the ability to speak and communicate in person, and it ruins relationships and connections between people, like family and friends, so we need to start caring about the people around us, and not always rely on technology. In conclusion, you can see the negative effect computers have on people. We need to excercise more. Also, we need to help our environment. And lastly, we need to communcate better with friends and family. We shouldn't get rid of computers, but just step away and care about the world around you." 4 4 8 +780 1 "More and more people are using computers on a daily basis, but I do not agree that this benefits our society. People are spending too much time on computers and less time exercising and healthy. Also people using computers are spending less time with family and friends. As people use computers more they are spending less time excersising and staying healthy. Profesor @PERSON1 has done a study showing that people who are on the computer for more than @NUM1 hrs a day are overweight and do not excersise regularly. He goes on the state that if these habits continue throughout their lives they will become obeast and are more likely to die from a heart attack before age @NUM2. I have experienced changes in my communities health due to computers as well, last year I had a friend who weighed @NUM3 lbs and exercised regularly but when he got a computer that folowing year he stopped exercising and gamed over @NUM4 lbs he now is much slower and can not do more than push ups. I do not agree that computers are benefiting our society because as people use computers more they exercise less causing them to be unhealthy. Not only do computers less on unhealthy life style, it also causes spend less time with family and friends. Studies show that @PERCENT1 of children that their our computer spend less time with their family and more time on the computer. This @MONTH1 not seem like a thing at but this study also shows that @PERCENT2 children who spend less time with their familieis grow up to become lonely and kill themselves due to depresion. I remember when a new came to our school from he wasn't that kid and didn't many friends he was still doing just fun but when he came back the next year started and I found out he had at the end of he school and keep in touch with an of his friend and to his parents. So far that week of from the rest of the students and don't much. Then the we got back the @DATE1 he wasn't at school and for the rest of the week he didn't show up either and finaly on @DATE2 and teachers told us he ran away from and has still not been found. So people that use computers are spending less time with their family and friends which can cause them to become depressed and lonely. More and more people are using computers daily basis, but I do not agree that this is benefiting our society. People are spending to much in their computers and are spending less time excersising and staying healthy. Also people using computers are spending less time with their family and friends. I know that the more people using computers is not better for our society it is worse." 5 4 9 +781 1 "Dear @PERSON1 the editor of the @LOCATION1 citizen, @CAPS1 has been brought to my attention from some people around @LOCATION1 that computers and technology are bad for us. I have also heard that people believe in the tecnology. So, the reason why I'm writing today is about this issue is to put my beliefs out there. I believe that this new technology is effecting our daily exercising, playing outside to enjoy nature and interacting with friends and family. Now that are new technology with computers and such, people are distracted and do not want to exercise. This will effect our youth because we will be fat, unhealthy and sluggish all the time. @PERSON1 we don't want this to happen to our youth because we are the future and if this keeps up the state and country will suffer. Another reason is that its good to exercise and not be on the computer or watching @CAPS2 all the time is because @CAPS1 has been proven you have more energy and will feel happier most of the time. Computers do not do that for us at all. A poll even says that @PERCENT1 of people get headaches and feel tired after being on the computer. Exercise won't do that at all. Sence all of our new technology with @CAPS2 and other gagits people really don't go outside play around and enjoy nature anymore. I was asking my mother about this topic and she said, ""@CAPS4 these days just don't go outside anymore. I remember when I was your age and my mother would kick me outside at @NUM1 am and I wouldn't be back home until around @NUM2 pm."" I believe that this should still happen. Maybe parents should still do this with their @CAPS4 and have them run around the neigborhood with other @CAPS4. If we did this more offtine maybe @CAPS4 and adults too. will just do this naturally and will not have to relie on computers or @CAPS5 for entertainment. Don't you think this is a good idea @PERSON1? My last topic is with computers and cellphone and how we really don't interact with friends and family anymore. Now a days Friends aim, video chat or text each other instead of going and doing something with them. This isn't really healthy for us because we might not know how to talk to people in real life. Also is someone aims or texts you, you really don't know how their tone is because you are not talking to them face to face. Lastly I know familys that get hurt by technology because that is all they do. They don't put down their get off their emails and they feel like they don't see each other. This is also not a health relationship with family members. @PERSON1 I really hope I have persuade to you that technology is only ok to use sometime and not very day. Remember technology is bad because we don't exerce, play outside and enjoy nature and really don't interact with friends and family members. Thank you for your time." 5 5 10 +782 1 "Dear I think computers greatly benefit society, and advance technology. They provide knowledge in a click, and entertainment after a long day out work or school. Not only that, but people have found long-lasting careers because of the invention of the computer. So obviously, computers are a great influence on society. Do you want to find out when major legue baseball first came to be? Or maybe you have a history report due the next day, and your parents can'@CAPS3 drive you to the library? This isn'@CAPS3 a problem anymore. Computers have evolved a long way since they were invented in the @NUM1's. You can check up on your local news, by having @NUM2's of electronic newspapers right at your fingertips. Or maybe you want to venture outside your neighborhood, and check out what's happening in @LOCATION2 or @LOCATION1. News isn'@CAPS3 the only thing the internet is useful for though. You can also go onto one of the @DATE1's of websites for school help, or check how the stock market is doing. Or, you can just use the handy calculator found right on your desktop. What could be better? Of course not all users have a computer for information. Many have it for entertainment purposes. In fact @PERCENT1 of people use the computer for entertainment everyday. What, with all the fun stuff you can do, who can blame them? Social networking is placed at the top of the list. A whopping @PERCENT2 of internet users use sites like @CAPS1 or @CAPS2. These sites are useful for catching up with friends you might not have seen in years or continue a conversation from @NUM3 minutes ago. You can also use computers to watch live-streaming @CAPS3.V, or that new @CAPS4 you got yesterday. That's right, @CAPS3.V's might not be needed soon! And what would a compter be without games? There are @NUM2's of @DATE1's of them scattered all across the web. How great is that? And finally, many people have found their careers through the internet. Did you know that @PERSON1, @NUM5, was found through you tube when his mom posted videos for the family to see when they couldn'@CAPS3 attend proformances? Of couse, you tube isn'@CAPS3 the only way to make money. Tons of jobs are listed by employers only for the curious person to find. No more wondering city streets, now you can just submit on aplication or have an interview without ever leaving your. Artists have also discovered talents, by playing around with @CAPS6 or @CAPS7. Not to mention the career paths involving computers directly, such as repairing or movie special effects. So no matter what you use a computer for have it be job hunting, entertainment, or information, they are a good idea to have them in your home. There's a erason that @PERCENT3 of @CAPS8 use them, and it's not just an excuse to sit around all stay." 6 5 11 +783 1 "Dear Local Newspaper, @CAPS1 of all I would like to say that I love your story and puzzels in your paper and I think I have a story you guys can use. It's about people that is addicted to computers. I guess you guys wondering about what I mean about addicition to computers. Well im going to give you three reason about this. My @CAPS1 reason is people isn't spending a lot of time with there family. I say this because most of the time couples get into arguments because the person thats addicted to the internet isn't doing want he/her is suppose to do. For example say you have a turkey in the oven and your so in the computer you forget all about it until the fire alarm goes off. Another reason why people can be addicted to the computer is because all the online chat rooms they have. I know people that's addicted to online chat rooms and I sometimes get worried about them because half of the time they don't know who there talking to! It could be anybody even a pedafile. My final reason is because some people just don't care. Some people can be on the computer all day and night doing nothing besides online chating when they can be doing a essay or something helpful or caring. You know I use to addicted to the computer myself and because of that I almost failed all my classes and because of that I don't use the computer to talk or anything such as that but now I just read my email or write my essay. And that concludes my or should I say your next top story." 3 4 7 +784 1 "Lies! The computers we use in society do not harm us in any way! They are a huge step forward for mankind and only benefit our lives. They benefit us greatly for the following reasons: computers are a source of knowledge, computers can aid the advertizment and buissness of many workplaces, and they are a very helpful and easy way to communicate with someone across the street or across the ocean. Without a dabt computers do nothing but benefit the people of our society. First of all, computers are a big source of knowledge. Many people @MONTH1 want answers to a question they have encounterned recently but cannot find the answers in a book or newspaper so they turn to a computer and immediatley their problem is solved. Computers today hold every bit of information on every topic imaginable from history to politics. All one has to do is find a site such as @ORGANIZATION1, type there question, and millions of answers pop up assuring a solution to the problem. Computers can also provide a place to research for a project or statistics of the economy if needed by school, buisness, or just for recreation. Times are changing fast and the sources of the worlds history and school subjects can easily be found in the corner of the internet. What you @MONTH1 have looked for in books and papers can be easily found on internet at the click of a button. Clearly, computers are a huge source of knowledge for our society. Second of all, computers and the internet support many buisnesses in advertising and making profit. Every single time a visit to the internet occurs many different buisnesses are able to advertise their products and overall buisnesses with pop-ups, side bars and websites. It clearly helps the workplace get attention. Along with advertising products buisnesses can even sell their products online without doing a thing. This can also aid the consumer because they would not have to drive all the way down to the store and pick up what they need. All they need to do is select the items they wish to purchase and await for its arrival a few days later. Clearly, the computer and internet can help support the welfare of buisnesses. Finally, the computers we use today are a huge and easy way of communication. Contact with people from another street, town, state, country, can be established by the use of social networking sites such as, @CAPS1, @CAPS2, @CAPS3. You could send a letter with the touch of a button with out having to make a trip down to the post office and await a reply. An instant message, which can be used on any of the sites mentioned can also be achieved. This is where you could write something down in the computer, send it to anyone and receive a reply within seconds. Obviously, computers play a big role in the communication of one to another without a problem. In conclusion, it is clear computers benefit the society greatly without a side effect at all. Computers are a good source of knowledge, an aid to buisness, anda great way of communication. Everyone as agreed to this without hesitation so you should too. Computers are the best things that have ever happened to our society today." 5 5 10 +785 1 "Dear local newspaper, @PERCENT1 of @CAPS1 own computer. This illustrates that computers must have an positive effect on people if most people own them. I believe computers do have a positive effect on people because it gives you the ability to talk to other people online, learn about new things, and gives you hand eye coordination. My first reason why I believe computers have a positive effect on people is because it gives you the ability to talk to other people online. Some people dont have phones but do have computers. If you needed to contact somebody you could do it using a computer. Also some people have family and friends who live across the world. Computers are great for keeping in touch, it also wont cost you a lot for long distance, like phones would. Because computers give you the ability to talk to friends, family, and other people it is a positive thing because it is important to do so. My second reason why I believe computers have a positive effect on people is because it gives you the ablity to learn about new things. Learning about new things using a computer gives a positive effect on people because you dont have to travel and go places to get information to learn about things. You could do by a click of a button. People could use the computer to learn about anything or everything. Being able to not have to leave your home to gather information about new things gives a positive effect on people because now more people will be able to learn more because they have more time than they would traveling places to get information. This is a positive effect on people because the more you know the better. Having a lot of knowlage is a good thing and will do good things for you in the future. My third reason why I believe computers have a positive effect on people is because it teaches people hand and eye coordination. Having hand and eye coordination gives a positive effect on people because your going to need it through out live. If you dont have good hand and eye coordination, it is a bad thing because you use it for just about every thing, such as driving, writing, and excercizing. Computers give you the ablity to learn eye and hand coordontion throughout life which is why it is a posite thing for people. I believe computers have a positive effect on people because it gives you the ablity to talk online to people, learn about new things and teaches you hand and eye coordination. I hope this letter persades you to believe that computers do have a positive effect on people." 4 4 8 +786 1 "Can you imagine how difficult life would be without a computer? I can I believe computers are helpful. Computers help us do research they keep us connected with friends and family and they are required to be used at some @CAPS1. The internet is a easy way to do research. All you have to do is search what you want information on and millions of articles will be at the click of mouse. Using the internet on a computer is much easier than going through books looking for something. That could waste a lot of time. The internet can quickly and directly answer your questions. Computers are a great way to keep connected. Almost everyone has a email now. All you have to do is type a few letters and you'll be reaqquainted with a old friends. When you call someone you can't be sure if they are busy or not. When using email the person recieving the email can reply when they howe free time. Computers are used at many @CAPS1. Sometimes you're even required to use it. Computers organize data by keeping documents in different files computers also have valuable programs that could help you in your career. Such as @ORGANIZATION1 word. Using a computer would aid you financialy. Some of you might think computers have misleading information. The internet isnt always a honest place. By spending a few minutes double-checking your information on other websites, your still spending less time than it would take to find the fact in a book. The computer is one of the greatest inventions created. It makes research connecting with friends, and your @CAPS3 easy! Use a computers @DATE1 and your life will be changed for the better. " 4 4 8 +787 1 "Dear @ORGANIZATION1, In my opinion, spending too much time online has negative effect on society. People aren't getting a full social experience when they talk on email, facebook and twitter. Being on such sites has taken up time that could be spent in other areas, such as family, friends and school. They aren't being able to enjoy the outdoors and being able to exercise. Though online activity can be helpful spending too much time can be harmful. Interacting online can be a great experience for those who have friends and family who live far away. But spending too much time online can damage you social activity levels. In person interaction is better than online, because you see how the person you're talking to is reacting to everything you say. Having a good, positive social environment is benificial to you and your friend. Spending too much time on the computer can also damage you social relationship with your family. For family who live far away, and online is the only way to socialize, online interaction is a great thing to have. But for you close family, you could be missing out on their lives and how they are doing. Your relationship with you family could be in jeoporady because you insist on using your computer. When you use the computer, you're probably eating some food too. And spending time online is taking away your time from exercising those calories off. The obesity level in @LOCATION1 is increasing, probable cause being over-usage of computers. being outside is another thing missing from our lives because of computers we aren't experiencing the beautiful nature life our @ORGANIZATION1 has to offer, online activity is hurting our health, and making us not enjoy our outdoor life. In conclusion, being online too often is abusing our social, health, and taking up too much of our lives. Using the internet is good for adults so they can pay taxes, work at home, and do many other beneficial things for them and their families. But for other, less useful sites are being used to interact. Why not just call or meet up with person, instead of using the computers?" 4 4 8 +788 1 "Dear local newspaper, I disagree with the affects that computers have on kids. Computers lets kids do what they want and They dont have to travel far to see certin things. Like if you wanted to see the @LOCATION1's @CAPS1 your not just going to get a plane and fly there when you could get pics and information right on the computer in a couple minutes. Its good if you want to see it in person but you wont want to pay money for plane tikets or travel really far when you can just see it from home. Computers have a lot of fun stuff on them like myspace, @CAPS2, and games also its got almost everything you can think of. So why travel when you can see all of it on your computer. I think that computer can sometimes be a little adictive but you got to learn to stay off of it most of the time but it is very easy to learn stuff on a computer. Computers are used by billions and they a great way to learn stuff about are whole world and the things that are on it. It has information web sites like google or bing to look up anything you want to look up. Computers are almost everywhere in phones, I-pods, and even some are put in car like police cars. Computers are very useful to people of the world @DATE1 I bet that the people who make them will make new ones that can go on almost everything. They have computers in almost every building like hospitials, fire stations, police stations, and electronic stores like radioshack. Your going to learn a lot more on computers than having to travel places and or school. In my mind we should all have computers because there fun and you can learn about everything you could think of so we should all have them. So i think that computers are very useful and can teach you a lot about the things that go on in our world to day so I disagree with what scientist or people say about computers and the affects it has on certin people of @DATE1." 4 4 8 +789 1 "Dear local newspaper, @CAPS1 stand on this hole computers thing is that it is becoming a big issues because people are spending all there time in books instead of comuitateing with friends and family, exercising, or injoying nature. Just like the expert then tinker siad in his book called @CAPS2 by computers ""To much time on the computers and not the rackemed saven hours outsiad can make you very wnight."" @CAPS3 @CAPS4 why people should get out more is @CAPS5 they can have coumite shion with friends and family. I bet you did not know that @PERCENT1 of kids from @NUM1 to @NUM2 are siting on thier cowth or play vite games as we. Another @CAPS4 is that people need more exercis. more the @NUM3 of the leading of the country will be abeast due litle exercise, and that is mostly because of computers.And the last @CAPS4, and the most importint as well, is @CAPS5 people can injoy nature at its fullist, blivie it or not but jack cup thinks @CAPS5 too he said '@PERCENT2 of people how injoy nature will @NUM4 years longer and people now not will likely have a heart in there @NUM5's"" @CAPS5 that is why I think computers are bad for people but it is not just me it is @PERSON1, jackup @CAPS6, sisintsits, and many percentages as well." 3 4 7 +790 1 "Wouldn't you say that having a computer in your house is helpful? It provides useful information to everyone. It can be used for personal use, such as for talking to friends. If there is a child in the house they might have to search something up on the internet for school. If you need directions to a place or you want to find out more about a specific person, a computer can help you. If you have a child who likes to run up the phone bill because they like to talk to their friends just tell them to use a computer! These are so many ways communication can be made through a computer such as @CAPS1, @CAPS2, @CAPS3, @CAPS4 @CAPS5, @CAPS6, and even email! If you need to make quick plans maybe for a movie with a couple of friends just send them an email or a message on @CAPS2. Now, an @CAPS1 you can text people right from your computer! If you're afraid someone might not get the email in time, just enter their cell phone number on @CAPS1 and a text. It's free too! Now that our world has become more technologically advanced schools often tend to tell students to look something up on a computer or maybe to do a homework assignment posted on their webpage. If a child does not have a computer at home this will. Make it hard for them to do their homework. Also, if a perent decides to start a business from have a computer would be required to cant up profits and to talk with customers. A computer can also make signs for a business or business cards. Need directions to a restaurant? Or maybe a local gym? A computer can help you find directions to almost @CAPS10 plan on earth. @ORGANIZATION1 @CAPS11 is a reliable website to get directions. You can also learn about specific people if you type in their name in @ORGANIZATION1. If you need someone phone number but don't have a phone book you can use @CAPS12 pages to help you. So, now I hope you can see that computers effect people in a positive way. They help you keep in touch with friends and save you money. They help students learn more and could possibly help you start your own business from your home. If you need directions or help finding a phone number, a computer can help in multiple ways. Having a computer could make you have draw perspective of everything." 5 4 9 +791 1 "@ORGANIZATION1, my name is @PERSON1 and i just want to tell you that we should stop using computers because we get no exercise, we barely go outside and we don't even or talks to our friends or family any more. Local newspaper i think that we should have computer but not because many people aren't doing anything. Many people aren't exercising because their taking on facebook or playing games. Many children aren't even going outside and seeing nature and playing. Many families are all on computers and they are not spending any family time together gofly kites. What im saying is that yeah people like computers and go and talk to there friends and play games but its destroying the parents and and even families. i don't think have computers. Also local newspaper we need to go and the @DATE1 and go doesn't happen. many children go they're on the computer. many parents go hiking, camping, swimming and lots of other stuff but they that anymore. These people need to get a change. What im talking you guys is take the computer away or. One last thing local newspaper is that many kids and children and parents need to have more time. Maybe if and parents weren't all they they would pick that might be sick or ill. Maybe they might go out somewhere to have two together like lake or six flags. many parents that they get computer because it's so fun so they. Many people world complain about it. So i think everybody should be off computers. i think we shouldn't have computer society because you get no exercise, you barely go outside and see nature and you hang out or talk with friends and family so i think computers gone now." 4 4 8 +792 1 "Computers are good for school uses, skills, and just for fun. Computers are a good source to have, now that is just my opinion. But, I think computers are mostly for pre-teens and teenagers. Adults mostly use them for business. The fun uses that the computer provides are @CAPS1, @CAPS2, @CAPS3, etc. @CAPS1 is one of the most popular chat groups on the internet, @CAPS2 is another popular chat group. They both have some of the same characteristics like chatting to your friends, updating your status every now and then uploading pictures, songs, etc. There are websites that could be used for free time like music websites where you are allowed to watch music videos or downlosd music onto your ipod. @CAPS3 is a website teenagers of kids go on to watch some of their favorite music videos. Itunes is the program where you can download any song, music video, tv show, or movie onto and ipod. Computers also provide microsoft @CAPS5, publicher, powerpoint, etc. All these can be used for school purposs. @CAPS5 allows you to type up anything you want for school. You can type up a @NUM1 page essay if you wish. You can cut and paste pictures for a project you might have due. You can change the colors, font size, and font style on @CAPS5. That use could be for a design on the front of a cover page for an essay or project. Publisher can be used for projects as well. In school of you need to make a newspaper, flyers, business cards, etc. publisher alloews you to make them. Powerpoint is a program where you can make different slides in anything. Computers can be put to good use for many different things. If people don't agree with that then they don't understand that computers help children and adults with everyday things. Some kids who have special needs @MONTH1 need the computer to comunicate with others. Computer, I think, are a big help in the world." 4 4 8 +793 1 "Dear @CAPS1, I believe that computers have a very positive effect on people. Now as technology keeps advancing there are many educational options online, you can now interact with people without physically being with them and you can play games that will enrich your lives. Firstly, I believe that computers offer a wide variety of educational options. On the internet alone you can view your school textbook. You can also have extra practice with the many resources that come with the online textbook. Without physically bringing your textbook home you can view the book online. There are tons of extra practice, and practice quizes in the online textbook that are perfect for studying. Also, when you see on the internet you can get real time updates of major events in the world. For example, the other day I logged onto the internet and saw an article about the earthquake in @LOCATION1. I saw nothing of this in the newspaper, but the internet was so up to date that you can stay informed about something that happened only a few minutes ago. But if you choose not to utilize the internet, there are many programs that are very helpful for learning. That are direclly cetered to developing your children's math and reading skills. These programs can give anyone a jumpstart in education. Another opportunity that could be helpful on a computer is the ability to interact with other people. Video chatting, @CAPS2, and using social @CAPS3 sites are very good ways to interact with people. When you video chat you can have a conversation with some on class on video! Even most they are not physically with you talk to. Instan messaging is a less direct, but still useful who talk to someone far away. You can share the news or just have a conversation with anyone you know. Lastly, social @CAPS3 sites such as facebook, and twitter are a valuable way to communicate with people. You can past messages, play games or simply talk to someone on these websites. They certainly take the best parts of online interaction and put them together. Finally, there are many online games that are very useful. If you ever wanted to go bowling but you never had the time you could play a game online. Or if you have ever wanted to drive a stock car you could play a game online. These online games are good ways to sire you the opportunity to do something you wont normally do. Also many games help sharpen your reflexes and your quick thinking skills. These could possibly cary over into the situations where you need good reflexes and quick thinking. Games could possibly be very useful when you need to prepare yourself something. Also online games are for and enjoying also. Overall I believe the computer is a valuable resource in advertion, interacting with other people and playing useful games. After all who could pass up the opportunity to better prepare yourself for life?" 5 6 11 +794 1 "Do you love technology? More and more people in this world are using so much technology and especialy computers. But not everyone agrees that this benefit society. But I do. Because it can glue people the ability to learn about anything they want to learn. Then it can give a better communication to others that lives farther away from you. My last reason is this technology can be a good way of protecting this country. Now I agree that computers can be useful man made sorce. When I was about @NUM1 years old I loved to play on the computer I thought that this was just a game. But my dad told me that do not abuce the computer, use it for education. I found out that theres so many things to teech about just a click of a botton. Now you can use this technology as a tool not a game. You might not want to go to the library to find a book you can just look it up in the computer. People love to talk to others, to meat new people or just comunicate to others who live in a other country. One of the best ways are on the computer. I am @NUM2 years old and I have alot of friends that chat on the computer, and I am one of them. My family members live in @LOCATION1, and I just can't catch, a plane every day to go visit them. So I just go on the computer and talk to them it's one of the fastest ways and fun ways to. The @ORGANIZATION1 has one of the strongest @ORGANIZATION2 and @ORGANIZATION3 in the world. You would not believe the technology they have and how they use them. One of the best things they have is the ""@PERSON1."" @CAPS1 a plane drivin by a remote control. It's just like a fighter plane but without a pilot! The person controling it can relax in bace wile the @PERSON1 does all the work now come and join me to say that computers are useful in this world! From the reasons above, I state that computers are useful because they give people the ability to learn about anything they want. It gives' a way to comunicate. Last @CAPS1 a good way to protect this country. Technology is growing faster by the minute and strogger. So take my word ""don't abuse it, use it.""" 4 4 8 +795 1 "To whom it @MONTH1 concern: I think computers have a great effect on people. Computers are useful for homework, it allows you to keep in touch with out of state family, you can also look up direction and information to a place. Computers are good for last minute situations. Computers are very useful for homework because when you type a report it looks more professial. While you type a report you can also research on your project at the same time. In some cases there are people who write very slappy to a paint where he or she cannot read his own writing nor can a teacher. A sloppy writer can use the computer to make his or her paper neat. If a child or parent cannot go to the library for some reason they can use their computer at home. If you are a parent at home busy with kids and need to do work; there's no need to go anywhere stay home and use your computer. If a child is absent from school you can go to the school's website and find out the homework. Do you have out of state family you wish to talk to? If so wouldn't you want to be a able to talk to them without a expensive phonebill? A majority of people would say yes. Using the computer to keep touch with family is not so expensive at all! Some examples are aim, emails, and other networks and they don't cast money at all its free. When there's a day you have nothing to do, don't you just want to go somewhere for fun? Don't you want to do something just to get out of the house? Well if there's a last minute decision or situation the computers there to help. Before you go somewhere and you want know a little more go on the computers. Not only will you get information on the place you can also get directions. Now you can go somewhere instead of staying home bored. In conclusion, computers do have a great effect on people. It can be useful to both adults and children. Teachers can calculate students averages easier and faster and children can do their homework efficiently. You can also keep in touch with friends. Overall computers are useful." 4 4 8 +796 1 "Isn't it great getting a refreshing when your outside? Wouldn't you experiences the rush of jumping into the crashing waves of the @LOCATION1 instead of sitting inside, gazing at pictures of the @LOCATION1? You might think that computers are helping society today, but you are wrong. The human race has survived over hundreds of years without computers and we can survive hundreds more. Computers are helping society become more and more lazy. We can get just as much information out of books if we try our best. Hand-eye coordination is important, and we can get it though activities, such as football, and tennis. We can also get it from activities! Drawing, reading, and even playing an instrument can all improve hand-eye coordination while letting you explore your creative side. Some people believe that computers teach hand-eye coordination, and it can but there are better ways to get it. It would take longer to get it from a computer than an activity. Many people like to travel in all different places of the world, but going to a foreign area with no knowledge don't smart at all. So what do you do? Go the most convinient source, internet. But what if I told you that any person could put anything on the internet? You could be getting info on @LOCATION3 when you think you're getting info on @LOCATION2. The most reliable source would be from a book. Reading is very powerful, especially if you're reading from a good source. Kids lately have been making lives on the internet. The only way they communicate is through online chat. Chatting online can/should never replace time in person with friends. Relationships with others online is never real. We're using our knowledge of how to communicate with others. The internet isn't worth it. So as you can see computers are no good. Thank you." 4 4 8 +797 1 "Dear @CAPS1 post, Computers are an advance in technology, in a good way. They do benifit are society grately. Its a way that family members can keep in touch, it makes your life easier booking a flight and keeping a flight and tastly they help kids with school work. They can bring people together. Firstly, they are a great way to keep in touch. In my own expierence I have a brother at college and when I miss him or need to talk to him I can always send him an email or vidoe chat with him. Do you have someone, you don't get to see everyday? It can really make your family closer, because you talk more, with your realitives, and with friends. Friends more and go away but you can always chat it you need them. In a time of pain all you want is a friend. When the friends away, a computer probably helped our, too, just getting there. Booking plans without a computer would be a hasal, waitting on the phone for hours, at end, with computers you can do it all in all about five minutes. I have had a expierence when my plane was canceless but didn't know until, she went on the computer and checked. So she just switche are flight and we were off but could you imagine going the next day to find out that your flight was canceled and try all day to get on a flight and might not. With computers you can check every hour on the hour if you like. It well even say if there delayed so you don't wait in the airport for five hours. When it comes to traveling computers are a hesasity. Has that ever happened to you? Most likly. Yes once you were happy you had a computer. On the other hand, it also helps with your education. When class is over and your teacher is trying to scramble to get the homework out, mostly no ones listioning all they want to do is scat. About nine out or ten kids won't know the assignment when they get home that night. I know thats happened to me. As a eighth grader you probably did the of just forgeting all about and just taking the concerned. You could use your computer. Most schools use some or device, here at @CAPS2 he have were all are teachers post, grades, test/quizs coming up and homework. It's just one click away from every thing we need. It all right there, together. Most @CAPS3 kuchers will be a let happier if their kids come, in with there homework then without. Wouldn't you be? From school fund raisers to the lunch menu its all there. In conclusion, computers do help us from everyday use. to special uses. It helps use make are family stronger, help us keep are flight out and help us get homework, for school the next day. Computers are a help to the society, in a great and convienent way." 5 5 10 +798 1 "I walked into my living room one night and saw my mom on the computer. I thought to myself ""she is always on that computer, doesn't she work to do?"". I said to my mom ""I think we should have an hour two of the computer each night, or not have one at all."" I told her that I think computers are a bad choice because you don't know who is on the internet and is trying to talk to you. Also, it gets in the way of exercising and spending time with family and friends. The internet/computers are very dangerous now a days. You never know if someone is a friend or a predator trying to get you. Say if you were talking to someone and you thought it was your friend, well you don't know for sure if it is then or not. I could be an older man or women trying to get a hold of you so they can probably kidnap you. Steal from you and worse. Now I watch the news and see many kidnapping because kids are talking to people on the internet and don't know who they are or what they look like. Like, when a girl was talking to a man and she thought it was her friend, turns out it wasn't and she got in a whole lot trouble. Maybe if she met him she would have gotten very hurt and be scared of that memory for the rest of her life. Family is very important to most families now a days. I have heard that spending time with family would bring your grades up in school because as you talk to them, you learn new things. Sadly this is not happening because people are so isolated to their computers they don't spend one minute with family or friends. I have a friend who is always on the computer. She never spends time with her family or friends. She is so focused on the computer screen then what is going on around her. Recently she has been getting off the computer and making more time with family and friends. Even her grades started going up because she spending more time studying with her mom and dad, then being on.... for example @CAPS1 or myspace and not getting any work done for school. In other words, she is very happy in life now and has changed from this experience she has gone through. Most people think you can use your brain for knowledge and call it exercise. That is one way to put it but it is not exercise for your body. People have spent more time having their eyes glue to the computer screen that they don't go out and play or maybe go a gym. The rate of obecity in our country is increasing for many reasons and lack of exercise is one of them because people spend to much time watching tv and being on the computer. I have a little cousin who is over weight and should be out playing sports and exercising. But does she, ""no""... She spends her free time on the computer in a stuffy room, instead of getting fresh air from outside. She keeps asking me how did I get and what age, and I keep telling her, I exercise and play sports so I can't tell you when. I keep saying that to her but she never listens. To this day she is still the same because she didn't take my advice to get off the computer and go outside to play. I strongly agree that we should have only two hours of the computer each night or have no computers at all. For kids saftey from bad people out there in the world, spending time with family and friends and finally for exercise and to stay fit with our bodies. I hope people understand what I say and take action to persue them in they own life and convice others too." 5 4 9 +799 1 "Dear @CAPS1 or @ORGANIZATION2, local paper @CAPS2 @CAPS1 or @ORGANIZATION2 edioter of local @CAPS4 paper. I'm writing a letter to tell you about the effect of computer on people in a society. I think that computers help society learn and helps people to talks to others around the world. Computer help society learn about faraway areas of the world, to learn about the history of an area, and to study animals and habits unable to reach with out travel. Computer make @CAPS14 easier to learn about area that are hard to research like @PERSON1 and cliff of the @CAPS5 in @LOCATION1, @CAPS6 to learn about history of an area or cities of ancient @CAPS7 like @ORGANIZATION1 in @LOCATION2 of @CAPS5. Help study animals species and the habits they could home like the @CAPS9 @CAPS10 or the hasin in @CAPS9 or the species call the @CAPS12 @CAPS13. Computer help society learn about all this. Computer also help people talk to other around world like you can hold a confeti on you computer when you are home, @CAPS14 is easier to talk and ask questin with others as you are on vacation, and you don't have to pay to travel to a place to have a confess with others. You can hold a confess on your computer from home when you can't make to @CAPS14. @CAPS14's easier to talk and ask question about something important to your business. You can go on your computer and talk with other people without spending money to travel there. This how computer help people talk with others around the world. This how computers help socity learn and talk to other around the world. @CAPS1 or @ORGANIZATION2 edioter of local newspaper." 4 4 8 +800 1 "Dear Newspaper, People use computers in their everyday lifes, & having computers has become customary to many people throughout the @LOCATION1. We go on computers for research, writing papers, or just for pure entertainment, in all these ways computers are very helpful. But, like all good things, too much computer time can be harmful. Sure they provide our lives with knowledge, info on the outside world, & connections with people from just about anywhere, but some of us become too attached with this virtual life instead of living our own real lifes. This happens to many people, some don't even notice what computers are doing to them. For most people, life @MONTH1 be challenging & the real world to stressing, so they retire to the computer for awhile, & to me this is fine, but when someone were to keep doing this it would become an addiction. Instead of relaxing by taking a walk or reading a book, they go to the computer, this would not be good for their social life or their minds. In my opinion, minds need to think, they need excerise by puzzling over something or figuring out a problem. Sure you think your brain is thinking by playing a challenging computer game, & sure, in some ways, it is. But it could reach its full potential by doing something else thats not straining your eyes so much. Computers can be good, but not for everything in your life. Now what about your social life Computers can be a helpful resource in many ways, but not if you let them become a destruction. This @MONTH1 happen by letting the computer be your constant companion. Now a days people have come up with online games where you can interact with other people. This isn't neccessarily bad unless your whole social life is only with these online people that you really don't know, instead of with real people that you see at school or meet on the everyday streets so what I'm saying is that a talking with people online isn't bad as long as you put them as secondary friends & have real people come first. Like I said in the beginning computers are part of our everyday life, and its not a bad thing, they can be very helpful. But you must control what you do on them and how much you use them. If you do that you will most likely have a much more balanced lifestyle. Making you, your friends, & family a whole lot happier." 5 5 10 +801 1 "Dear Newspaper people, @CAPS1 you might heard on the @ORGANIZATION1 new, more and more people thing computers are the benefits of society. I personally agree with them. I think that theyare making people missing out of new things, missing out of meeting new people, and looking out on exercize. Time flys by fast. Things can fly over your head and you might not notice them. Have you ever ben on a computer for an hour. It might have felt you were on for @NUM1 minets. Many people ben on it for a hole day. You could of missed a year of stuff. New things like the new ipod nano with camra be invend and you would of not known. Also, the ipod. You could down load books andd read them on there. There also new things to try like jumping art of a plain or bungy jumpimg. You could be going to new place around the world. Traveling to @LOCATION1, @LOCATION2 or even under water. Even going to @LOCATION2 and having a melting, warm, right of the oven tayst cheese pizza. My mouth is grulling for just thinking about it. How many people do you know. What about on facebook or myspace. @CAPS3 not you should go to the park. Meet some people. Just going to a family house, you can be interacting. Everyone should be interacting with someone. Even two year olds need to interact with other two year olds. Thats they learn how to share @CAPS2, your not two anymore but its good to know someone. Learning how others think too. You @MONTH1 think your way in good and the other erson way is not. Thats called interacting talking about it. @CAPS1 you might see on news how many familys have someone in the familys having weight problems. Meny shows like biggest losers @CAPS3 it chanels are trying to help these people lose weight. But what cams this? It could be not eating right, or not excresing right. But the problem could do with computers. Many people are spending @NUM2 mins on the computer, than @NUM3 excersising. Just a quick walk around the lock can make you lose at leat @NUM4 callories. Other might rather stay on the computer and gain @NUM4 callories. And some deaths are around by a heart attack. This @MONTH1 caused by plack billed up or weight going. In sted of reaching for an apple many americans reach for that foods. I think we should still use computers but cut down the rtimes we use it and exercise and eat more. You might think after reading this letter. Thinking people wont lisen about excersing and meeting new people or palces. But, the one thing we can do is to at least insire one person. That person can inspire another person. This can go on and on. Little by little we can help people what they can do with out using an computer." 4 5 9 +802 1 "Dear local newspaper, The question that everyone is asking is do computers benefit to society. I used to think they didn't benefit to society but now I think they do. I think this because, one good place to get information, two we live in a technological advanced society, and three you can keep in touch with people that are at the other side of the world. so do computers really benefit to our society? Computers are a valuable resorce for me when I need to get information. For example, in my recent project in social studies class I need to go on the computer to get information on the subject. Also if you need facts on something and you can't go to the libary the computer has the same information. Also the computer is helpful when trying to find maps to a certain place or a phone number to a store. The computer is and always will be a great source of information. In the @DATE1 technology is a huge part of society. For example the first computer that came out was this huge block that when you did something on it you would put in cardboard card. Now we havethin and small portable computers. So knowing how to use a computer is vital to keep up with the @DATE1. So are you going to let technology pass you by? Computers are one of the best ways to keep in touch. For example if you call someone across the world your phone bill will sky rocket. But if you go on a website like facebook you can talk for free. Also another way to chat with people is by A.I.M. Another free way to talk to people. What same person wouldnt want to talk to their friends and family acroosthe worl, for free? The reasons I have given you are valid reasons with deatails. Technology is like a train are you going to live it." 4 4 8 +803 1 "Dear @CAPS1 @CAPS2, I think that computers do not benefit society. They do more bad than good in my opinion. People aren't on the computer to research people. They are on to check @CAPS3, @CAPS4, @CAPS5. They need to get outside and see the outside world, people should interact with family and friends. Humans that have to much on time on their hands. So their bored maybe they will make a @CAPS3 account or if they already have on then they will maybe one of the games on their and eventually you get addicted to @CAPS3 and you never go off of it. Our society needs to encourage people to get outside and only use your computer to check your email, add something to your ipod, and maybe check if you have any notification on @CAPS3. If you want to really have a great life sitting in front of the computer your entire life isn't going to let you have that kind of fun. Ya need to live your life like your going to die tommorow. Get outside, watch the big game with all your buddies. Go on a vacation get away with your family. Travel the world and rember every part of it. Wouldn't you rather be doing that then to be sitting in front of your computer? We need to inform our state about this problem. There is a reason why we are becoming one of the fastest countries! People are not leaving their house and not getting active. If people avoid their computers then we could be one of the fittest countries." 3 3 6 +804 1 "Dear Local Newspaper, The effects computers have an people are not good. They can cause many problems in your life. When your on a computer, are you running? No, your just sitting there; using the computer involves very little movement. You need to be jumping around, dancing, walking with your friends, something! You can gain a lot of weight by sitting down and using the computer all day. Another problem that computers give you is being non social. You can get addicted to a game or something like facebook/@CAPS1 and be on there all the time. You wont talk to your friends as much at school or hang out with them because all you want to do is go on the computer. You are always thinking about just that and no other things in life. Computers can also be very dangerous. If you are on something where you are talking to people you don't know, they can find out things about you and can do to you. It's not at all to talk to people you don't know online. These are or the many problems computers cause. Trust me, I got addicted to a game before." 4 4 8 +805 1 "School, family, and sports is @CAPS5 my always tells me. Kids now a days live on the computer. @PERCENT1 of students get out of school and go straight to the computer. Students should spend more time with their families, they should exercise more, and lastly focus more on their grades in school. My initial reason why I agree is because most kids never spend time with their families. All kids like to came home and sit on the computer all day. This is terrible because kids never get to spend time with family and do not show appreciation for @CAPS5 their parents do for them. For example I just want to ask young kids do they thank their parents everyday? The reason I want to ask that is because they should be doing that everyday. In addition my second reason on why I agree is because students need to put more time and effort into school. Kids need to stop spending hours on facebook, @CAPS1, and @CAPS2. Instead of going on those websites they should be on a website such as @ORGANIZATION1 do research. @PERCENT2 of students that go to school either have facebook, @CAPS1, and @CAPS2. For example everyday I walk the halls I over hear students talking about @CAPS5 happen of the computer @TIME1. It's ridiculous how many student do not complet their homework and hand it in late. Lastly my third and final reason on why I agree is because student absolutely do not exercise. A famous baseball player once said ""you don not have to be strong, but you have to be fit and athletic."" @CAPS5 this meant was that you had to be in shape. @PERCENT3 of students are not at their weight they should be at because they are obeast and do not exercise. The only exercise students get now a days is their @CAPS6.E. class. Even then students get tired quick and get out of breathe because they are lazy and always on the computer. They need to get off the computer and do push ups, sit ups, and just exercise. For example everyday I get out of school I do my homework and I go run a mile. To add on to the students need to pass there @CAPS6.E. class. In conclusion students should not spend so many hours on the computer and spend time with their family, as well as focusing on their school grades, and lastly they need to get off the computer and exercise more and stay healthy!" 4 5 9 +806 1 "Dear @CAPS1, @CAPS2 opinion about computers is good. I think that they can help people with what they need. People can also also contact other people. All computers are helpful and not always something negative when someone uses it. Computers help teachers, students, employees, and parents. They aren't always for just helping. Computers can also be used for amusement. Games, music, and videos are always on the internet. Contacting other people is also a great reason why computers aren't bad. People can always have an e-mail for business and friends. Myspace, @CAPS3, and @CAPS4 are all websites that people can contact others. Having a computer isn't always bad. When you do a story for the newspaper does it come out hand written? You also use the computer to do work. Computers aren't always bad. People have to learn to just limit their time. They can always be a positive affect on people when they need something. Information on anything is always on the internet. Computers have been used for decades and I think they will be used for many many more. Back then people used computers mostly for work. Now people of all ages can use it for all different kinds of things." 3 3 6 +807 1 "Computers. An achievement @MONEY1 technology and science that improve all @MONEY1 our lives. They let you explore the world in one click and chat with your friends. What could be wrong with that? I'll tell you. I belive that computers are ruining our society. Now don't get me wrong, I like them, but they can be bad. People get on and never get off, you never no who it is your chating with online, and they can cause tons @MONEY1 stress. Let me explain why computers can ruin lives. When the computer was invented I'm sure this wasn't the purpose. To stay on playing mindless games, or randomly searching the web. Some scientists have even studied the @PERCENT1 @MONEY1 the time, the more you are online, the more likely chance you will become obiece. That is not what @LOCATION1 needs. You say you'll be on for a minute, but you will stay playing ""@CAPS1"" or ""@CAPS2"" for days on end. People with @CAPS3 work to do might never get on. Also it is just flat out a waste @MONEY1 time when you could be outside playing a @CAPS3 game. My second reason is that when you are ""chatting"" or ""@CAPS4'ing"" someone, who is it really? A study conducting proved that when you think your talking to a friends it is really some perverted @NUM1 year-old looking for ""fun."" @CAPS5 huh? Also when you talk, someone could be inbedding a virus in your system that could take @MONEY1 to fix. How mad would your parents be? It could be happening with every letter you press. Finally stranger or not, some @MONEY1 these people leave links to get to disgusting websites that you pray your parents don't see. My final point is that computers are proven to cause more stress. When your on @CAPS6 or @CAPS7, nasty fueds between friends can occur that affect you and your school work, inflicting damge to your grades. For every @NUM2 people when join a social page, @NUM1 get worse grades do to this issue. Also when your parents are online for a long time, the next morning they must rush to get ready for work and are tired, afffecting their quality @MONEY1 work. In this economy I don't think we need more layoffs. Even simple things like a virus or a slow upload could and will cause stress, in fact @PERCENT2 @MONEY1 @LOCATION1 have a stress issue due to computers. I've told you today why computers are bad. They get sucked in stressed out and stalked. Now computers aren't all bad, just use them right. These are the reasons I think computers can be bad." 6 5 11 +808 1 "Hello @CAPS1 @CAPS2, @CAPS3 you think computers are having a great effect on people? Well, I sure @CAPS3 think using a computer has a great effect on people. I say this because, people are probably waisting a full day on those facebook, myspace gol websites, looking up diffenitions for words, directions to places etc. If you think about it, this effect on people can ruin their eye-site, and social skills. These people are spending like @NUM1 hours tops on the computer. Staring at that @NUM2 inch little screen can damage your eye-site. This can lead you to getting glasses or possibly going blind. How would your life be without not talking to a girl/guy or even your own family? If you waist your time on those websites for example: facebook all you @CAPS3 is instant message the person. Maybe you should go out and @CAPS3 something fun with that person. What's this I hear about map it.com? Don't be lazy and waist @NUM3 minutes at your day just getting directions. Use a a real map! Also, free @LOCATION1? Come on! Use a real dictionary. So, I come to my conclusion by saying that these computers @CAPS3 have a ""great effect""on people. It gives them short cuts through life." 4 3 7 +809 1 "Dear The @CAPS1 @CAPS2 @CAPS3, Computers do not benefit society. They make people antisocial, unhealthy, and do bad things. The internet is very addictive. I use to spend three hours online everyday. I did not get any exersice at all. Also, I was incouraged to eat unhealthy snacks while online. This made me very unhealthy I gained nine pounds in one week. Now, I have dietbeaties. I can't enjoy things like sweets or running. I will probably have arthritus in my hands when I'm older because I spent hours typing away. I used the computer in the dark so now I need contacts. Using the computer is one of the most unhealthy choices ever. II spent so much time on the computer i wasn't able to socialized. I missed out on alot of activities with my friends and family because I was so busy online. I barely talked to anyone unless it was through email. I lost alot of friends and close family members. My pets died because I didn't take care of them. I didn't really want to do anything but go on the net. I messed up on colledge and job interviews. To this day I have no social life and no job because I spent more time socializing with the computer than people. Computers ruined my life. Computers incourage very bad things. Not just unhealthy choices and antisocial behavior they uncourage things against the law. Alot of drugs and weapons are bought online. People kill others or themselves because people gossiped about them online. People don't care for nature and destroy it. People steal so they can buy extra technology. Alot of car robbers happen because someone left technology in there. People gamble through online poker. People hack bank acounts through the computer. Prostitution happens because of online chats. Thier are sex affenders that go online posing as people that want a date when they are rapists. Terrorists can communicate by the internet. Computers are a menace to society. They turn people into low life scums and criminals. Computers should disposed of before they cause the end of the world." 4 5 9 +810 1 "Dear @LOCATION1 Newspaper, I belive that computers have a very positive effect on people. Computers can help kids with homework. Computers also let people learn new things. You can even communication with friends. There are many great uses for a computer. Kids have lots of homework and without computers it would be nearly impossible to finish it all. At @ORGANIZATION1, students recieve a project almost every month. We need pictures, information, and it must be neat. Computers are about the only way to find pictures, information, and make it neat. Kids also get a ton of homework and computers are very important for it. In science class we get a packet for homework for every new unit and without a computer it would be really hard to get done. You can also learn many things you never knew from using a computer. There are a lot of uses for a computer and one of them is learning. There are many educational websites on computers. If you were traveling somewhere and wanted to find out more about that place you could search it on the internet. Even if you're reading a book and come across a word you don't know you could look it up and you will find it. Communicating with friends is also important and computers offer many different ways of doing it. There are facebook, @CAPS1, and videochat. You could use facebook if you want to talk to friends or videochat also to talk to friends. Those things are great if you want to show pictures from a vacation or talk to a friend in a different country. These are all great ways to use computers. I definately think computers have a positive effect on people. They help with projects and homework, learning new things and communicating with friends. Computers are great." 4 4 8 +811 1 "Dear, @CAPS1 @CAPS2 @CAPS3 computers are useful they have a negative affect on people. Due to the advance in computers many people do not go outside as much anymore. People are so busy with computers that they dont even spend quality time with their friends and family anymore. Obesity is also a big issue. Computers are ruining peoples expierence with the great outdoors. Many peope, mostly kids stay inside all day playing video games on computers. Outside there is great things to do like go to the park or play sports. Computers are just taking away from kids and now they dont get to expierence the fresh outside fun and are now a days kids in the @DATE1 stay inside all day, instead of going to fun outside camps. Families now a days are being broken up due to computers. The parents or even kids are not spending lots of time with each other due to the computers. As a result the family starts to lose the bond between each other familys can also develop these ways, youth most likely get attracted to computers, so its either the son or daughter who are not emotionally or physically contacting with the family which is a problem. Health is a big issue when it comes to computers. Whats happening is teenagers or even adults are sitting at the computer playing these games or surfin the web then eating dinner then continueing to surf the web or play the games. After time the starts to become worse and worse and the kids gain weight and keep gaining wait then become obese and unhealthy. This is a problem all over america, that is technology keeps advancing and advancing the youth will become very unhealthy. In conclusion, computers have a very negative affect on people. People are not going outside as much anymore. Families relationships are being ruined and peoples health is at steak! If this does not change americas future will be at risk. " 4 4 8 +812 1 "some people learn about far away places, getting the latest up-dates on important news, and making sloppy work and hand writing seem nice neat. All those thing are some positive benefits people have computers. People all over use computers to research other places computers provide photographs of the place he/she is researching. For example: I remember when I had a social studies project on the @PERSON1, and I had to explain why its a great place to visit for its history. Mind I never even heard on a place called the @PERSON1 @PERSON1, but thanks to computers I googled ""@PERSON1 @PERSON1 @PERSON1"", then the computer gave me all of info. and photos about the mountain @CAPS1. Now I @CAPS2 where and what the @PERSON1 @PERSON1 moutans look like. Secondly, the computers has all the latest news happening all over the world. I remember when the earthquake in haiti first happened my grandmother had it happen until she got on line to check @ORGANIZATION1 and when, where and earthquake on the richter scale. about computers was a I wasn't the best hand writer in class, and could write it out or do it on the computer, plus we were getting graded on neatness, elaboration, and fluency. I choose to do it on the computer it came out nice and neat with picturs. computers has a very positive benefit on people world wide. now matter if its for info, news, or to make thing neates." 4 4 8 +813 1 "Dear local newspaper, @CAPS1 you know any child or teen between the age of eight and seventeen who doesn't live to go on the computer? Well myspace, facebook and aim is like a online hangout. Kids every where log on and don't log out unless the parent of the child makes them. I firmly belive that computers have major effect on people, my three reasons are people don't have the exersise, they dont interact with others, kids are smocky they will sneak on if doing research for if wasnt . Online websites and games are like hipnotysing the people and making them stay on for hours. Most parents belive that having their child on a computer doing research for an hour is good; however kids are and would sneak to pay online going or go to a website they were not allowed to go on and wasnt on before. Sometimes the best thing to @CAPS1 is get some fresh air and interact with others. Buth with websites that make people stay conect for more than two hours they dont get fresh air and they dont interact with others . Most times people forgot and dont know what something is except for how a computer because they play on it so much. People grow up fast when you think about it, and people start to eat, drink, sometimes sleep at the computer. People stay at the computer and eat their, they wont get enought exercise, they will start to get fat and soon an only stay at the computers because they didnt exercise burn the fat off. How you see how computers have a major effect on people by not interacting with others, not having enough, and kids wife sneaky and will go on other website, they wer not allowed to go on and if thier parents wernt home." 4 4 8 +814 1 "Dear @CAPS1, I dont think that computers are something that people should be using @NUM1. Computers have something to them where somehow the become addictive. From the people who are gaining weight every day because the sit on the computer and chat all day. Then there are those terrible people on the internet who disguise themselfs so they look like a @NUM2 year old boy when there really a year old man. Lastly, people now a days are using the computer as a sorce of reading instead of books. I just think that computers are ruining the life of many people. For starters, most people today are becoming overweight because they either wacth to much @CAPS2, or they sit on the computer and eat all day. Once you start with the computer you'll never stop. Especially if your multi-tasking where you eat and use the computer. The big problem is people think it's better to be sitting home than out enjoying nature exercising! It really isn't good that people dont get of the computer and start enjoying life. Next not everyone online is who they say they are who make false accounts on like @CAPS3 or @CAPS4. There can be men who say there and really be @NUM3. With all the posting of pictures someone you with it. Just remember to be careful! Lastly, people in todays day in age use the computer to read books instead of going to the library or @CAPS5 and @CAPS6 (or any book store). I think that all those bookstores are going to run out of business because of the technology now a days. When I was younger and I said that I was going to read a book, I was really reading one. I wasn't reading it on the computer. People need to cut down on the electronics. In the end I think that computers are a real waste of time. There is no reason why people should be on the computer instead of exercise. Everyone needs to stay away from the bad people online. Also can we please start using normal books instead of online ones. I think computers need to stop taking over our world and start just being there when we need them." 4 4 8 +815 1 "Dear Newspaper, Computers today have a negative effect on people. The valuable time of getting daily exercise is reduced, you will not see your family enough and some of the costs are outrageous! Owning a computer is surely not a good idea. is sitting around all day your idea of a workout? Having a computer would be very bad for your physical lifestyle. Clicking a mouse & typing away are only moving your hands, not your whole body. An individual who doesn't use the computer daily, or f or large amounts of time would be healthier than someone who always uses the computer. I remember seeing a commercial about @NUM1 children & how their lives eneded up later on in life just by their computer usage as a ""tween."" Not only will you be unhealthy but anti-socialism is probable too. Many kids, or even adults, spend precious family time playing the sims @NUM2 creating their own ideal family. This however, is not acceptable. Spending time with your family is something precious. When asked about computer usage, @PERSON1 said, ""you could easily became addicted with just @NUM2 turns!"" @CAPS1 you are addicted, both your family & you suffer. They will stop inviting you places. You wouldn't want to loose the people who are going to be ther for you, on another what. ""@CAPS2!"" shouts your computer. You have another virus. uh oh, it's deleting your hardware: all your scholastic essays, important book-marked websites & sentimental photographs. Do you have any idea how much it would cost to even try to retrieve this data? Well, it'd be alot. I know youre probably thinking, ""This couldn't happen to me,"" but in reality; yes it can storing things on a computer is much riskier than having a hard copy. It will also save you more money. Furthermore, appliances use electricity @CAPS1 they're even plugged into an outlet! So when you get your electric bill, don't be surprised, computers can be very costly which, is why it's not worth it to have one. Computers are just another unnecessary thing in life. It will take away from your over-all health, reduce family time, & cost you same big bucks. It is a fact that you can survive without a computer. But without hjealth? Well, you'd be dead. I you to consider my ideas." 5 5 10 +816 1 "Dear @CAPS1 @CAPS2, I am a student at @ORGANIZATION3 middle school in @CAPS3 @CAPS4 @CAPS5 @CAPS6 recently you produced an article about computers where good or bad people I write today to say that computers are beneficial to people everywhere. This is true because computers help people with things hand eye coordination to learning advances to our schools finally it helps people communicate with ease, @CAPS7 plase consider the following. First of all computers help hand eye coordination greatly in the long run. This is true because people playing games on the computers got more skillful with using ther hands and eyes together. @ORGANIZATION1 ullodhers from @ORGANIZATION4 @LOCATION1 ""Computers help hand eye coordination @PERCENT1 more than putting your son or daughter on the football team"" @CAPS8 computer games could help kids get more acurate with there skills or that of any sport. @CAPS7 now you know why computers help people develop better hand eye coordination. Secondly Computers help people learn new things. Although people might think to be false it is indeed true. @ORGANIZATION1 a recent study at @ORGANIZATION2 shows that @PERCENT2 of schools in @CAPS6 use computers for research.Finally recently had a paper about @PERSON2 and The only scorce I thought of was wikipedia on the internet because it is faster than searching for a book about him. @CAPS7 now you understand the computer is a helpful learning tests. Finally the computer is a great way to communicate online. It is better than @CAPS10 because it is faster and more than calling someone up and talking for. @CAPS8 it is alot cheper than @CAPS10 because you just have @NUM1 payment a-month unlike phone. Where it starts to add up. Inract @PERSON1 or the @ORGANIZATION2 of @LOCATION1 in a recent study that ""@CAPS10 are absolete now, with the internet peope can chat at lignning speed"". Finally using e-mail or facebook is @CAPS7 much better than phone tag on facebook you know where you can chat with. @CAPS7 thats my reasons that the computer is good for communicating. @CAPS7 now you see that computers are nessecery because they develop hand eye coordination, they @CAPS8 help people learn and finally they are a great way to communicate." 5 4 9 +817 1 "Dear @ORGANIZATION1, A resent concern has built up among experts that computers @MONTH1 have negitive affects on the society. I do not agree with this. Computers ease life, teach you about faraway places and people, and finaly you can chat with others. I belive computers can only benifit a society. As previously mentioned, computers ease the hassels of life. With computers you are able to plan your life with @CAPS1 output. This program ables you to enter data on places you have to go and reminds you when time is done to that event. With this program you will never forget where you have to go. Also, with the computer you are able to gather information at extreamly high speeds. Supose you are doing a research project in school on types of cars, you just enter cars on @ORGANIZATION3 and get millions of results. this save much time than going on the librery and finding a book. This can take up to on how . Finally, with a couputer handy there are programs for special needs people to wright. New programs such as @ORGANIZATION2 word have a special function called voice commands. This lets a person who can not wright because of blindness or a disability speek to the computer what he or she wants to wright. In an istant it will pop up on the screen. Computer ease peples' lifes jarasticly. Besides esing lifes, computers teach you about far away places and people. pictures on a computer give one a first hand acount of how a far away place is like. Insead of just reading about it you can see it. Acording to time magazine if a person sees a place they will learn more by @PERCENT1 than reading an encyclopedia. As well as pictures, blogs give people an idea of how a person lives in a regular day in that place and how they feel about it. This is another first hand acount of the place. Finally, ebooks on the internet give you a large amount of information. Ebooks are books but in an internet format. These books inclued encyclopedias that give statistics and, pores, and events that are in the far of place. For example if you are planning a trip you can learn where to eat and where to get entertained. you can learn about far of places and people in them with computers. Lastly, with computers you can talk to people around the world. you can talk to friends. Have you ever moved and wanted to talk to a friend from where you previously lived? Now you can esily do so with video chat. Not ownly can you talk to someone you can see them. i remember @NUM1 years ago when I moved to @LOCATION1, I mised my friends in @LOCATION2 so i video chted them. As well as talking to friends, one can have a bussness meating around the world with out having to traval out of your town. For example if a company wanted to make a trading agreement with another company in @LOCATION3 they could do so with a click of a mouse. This will save time and money of travaling. Also you can talk to others online to get a feel of what happened. For example @CAPS2 a few weeks ago, video chated many people in @LOCATION4 to undersand now bad conditions were after earth quake. You can talk to people with ease with an computer availible. In conclusion, I believe computer are benifical to a society. They ease life, teach people about far away places and the people who live there, and alow people to talk to others. Computers open doors in the world. Computers help the society a great deal." 6 6 12 +818 1 "Dear @CAPS1, @CAPS2 you think computers are bad for society. It came to my attention that many people are concerned that computers are not very good in my opinion I think computers are They help typeing skills. Computers are also very helpful with and crofing pictures, and they make it to find information. First of all, computer are very helpful with typing skills. Other people doesn't use computers takes six years to @CAPS3 younger people like young skills use very quickly. Actuly @PERCENT1 of teens can type in a minutes Who takes @NUM1 minutes. Computers have a great effect on many people with their typeing skills. Computers makes it so copier with so many pictures editing and many more, editing pictures from a expensive digital @CAPS2 it for free on your computer? A computers makes it and it through a lack of information to just computer and find it faster. The computer you can look for information make faster. For example you have to @CAPS2 a project on @CAPS4. Instead of going to the library and spending more on a book about @CAPS4 you can go on google.com and type in @CAPS4. So much information and so much faster. Get with the program computers are in. In conclusion, I think computers is a great invention. They make it easier to find information and typing skills. Also they make it so much easier to crop and edit photos, please take my suggestions sereusly." 4 4 8 +819 1 "Some experts are concerned that people are spending too much time on their computers and less time exercising, enjoying nature, and interacting with family and friends. I think oposite though. I think this way because you @MONTH1 have to look up something on the computer one day. Some jobs you have to apply by computer. Another thing is a computer allows you to talk online with other people. The first reason why I think using a computer is good for people is because you @MONTH1 have to look up something on the computer one day. What I mean by this is you might have to look up a job, you might want to get away so you look up vactions that you can take or you might have to pay a bill one day. The second reason why I think using a computer is good is because some jobs you have to apply by computer. Such as stop and shop, price right, and save-alot. To add on to that this is good for are society because if we use paper thats killing more trees. The third reason why I think using a computer is a good because this allows you to talk online with other people. Therefore you @MONTH1 need to contact a family member or even an old friend, meet new people or you might not like to talk on the fone, so you rather talk by computer. Now I told you all the reasons why I think using a computer is good. @MONTH1 have to look up something on the computer, some jobs you have to apply by computer, lastly allows you to talk online with other people. These are some good pros. So I hope you take my opinion in consideration." 4 4 8 +820 1 "Dear @ORGANIZATION1, @CAPS1 name is @CAPS2 @CAPS3 and I want to tell you why I'm a little bit against computers theres a lot of things you can do in the world, visit places, and go on cruise ships. First I would like to tell about the things you can do you can play basketball, handball, hang with your friends. Also you take your car and go out into a morning drive feel the breeze. Next I would like to tell you about the places you can visit, you can visit your friends house your girl/boy friend your family just do that stop being lazy computers aint helping you with your life stop being lazy. Finally I would like to tell you about the cruise ships you can go far away like @LOCATION2, @LOCATION3, @LOCATION1, and many more. Its fun on a cruise ship captains dinner and meet @ORGANIZATION1 people and @ORGANIZATION1 sights. For conclusion I would say people should stop being lazy on computers and have fun in the world while it lasted." 2 3 5 +821 1 "Dear Local Newspaper, I beleive, myself if, that computers are extreemly important to our society in this day and age. Computers help people talk with people. Online, and keep in touch with family and friends. Secondly, I think that computers are important is because they help with learning, even online schooling. Lastly, computers just help for the need of entertainment for people. Computers are one of the most used tools on the planet. Almost every family has one, some people even have more than @NUM1. Let's face it, there are many people traveling around the world, just trying to make a decent living for their families. Computers help them keep in touch, wheather it's by e-mailing them, or even video chat. This makes people happy, and still keeps them informed about what their family members, or friends are up to. For some people, it can re-unite family, by someone searching, I don't know, maybey their long-lost brother, or something. Computers keep families togetherm and you might just got a little surprise every now and again! My we should keep computers because we. Lastly, computers can just be plain fun! Maybe you're looking for some funny videos, just go on and search,""funny videos"", and it will keep you busy for a while. I know that I enjoy downloading music, too, so why should it be any different for other people? If there is a song going through your head, just look it up and I'm sure you'll find what you are looking for. You @MONTH1 be cooking and need a recipie for something, I am sure you're computer is more than willing to tell you whatever you please. All right, so, computers are one of the most important tools, of this world that we live in today. We depend on computers for many things, like keeping in touch with family, helping people learn things, and provide entertainment, just to name a few. Computers can help with countless things." 5 4 9 +822 1 I think that you can never spend enuf time on the computer it feel there is no bad effet computors can have on you they only improve your life is why. For one thing if you need to find out a important fact date or time. You can just look it up on the computor. The internt is a never ending sorce of knolage and you can learn just about any thing that you need to know just by searching it on the computor.Another usefull thing the computor dose is the ability to talk to people useing eother @CAPS1-mail @CAPS2 or that rooms you can meet new people or talk to a distant friend or relitive on the computor and you can even hook up a web camera and actuly see theam as they talk to you something a phone cannot do. Also the computor is a good souce of entertainment. You can play a number of games off the internet. You can even down load consal games onto your computor. Another thing you can do is watch full episodes of @CAPS3 shows and movies like if you wer fallewing a telivison selles and you missed an episode you can just go look it up. And a favorit of mine is youtube wether you watch random videos watch famous youtube stars on post videos of your own ther is always fun to be had. And finaly all the programs on the computer ther is an endless amont of programs you can have downloaded they can be for fun such as paint and flash or they can be important like worn or knot book every program tha computer offers is usefull and fun to use and you can use most of these programs to help you in the real. Now I have mentioned some of the many thing why you can never spend enuf time on the computer shure exersise and nator can be helth but you can do only of that stuff I just mentond by takeing a nator walk so wont you agree computors improve our life more then they are unhealthy. 4 4 8 +823 1 "Some experts are concerned about people using computers and not enjoying nature and going outside. In my opinion people should use the computers but not a lot. It's @CAPS1 to use the computer to chat with freinds, search some stuff you never seen. I say this because some people get addicted to computer games, or talking to your freinds the whole day. Next reason is to go outside, you can enjoy more stuff like sports, tag, and other activities. Instead of talking to a freind on the computer go to the park and talk or invite them over to you house. Another reason why I the exports are right about people and computers is to learn about nature and learn how to do things. I hope you have found my interduction good and reading on. My first reason is people getting addicted to computer games and other computer fetures. The reason I say this is because some people do get addicted on computer, it's @CAPS1 to go on it some time's but not to much. It is better to go outside you got fresh air its nice and cold. If you have a dog you should take for a walk or walk with your freinds. My next reason is going outside playing sports or running alround playing tag. Instead of using you could go to the park to play basketball or baseball. There are so many fun thing's you can do outside. You should go to your school and tryout for any sport that your good at. That way when you get bored there is always something to do, instead of being home all day. The last reason why I perfer nature over computers is learning on how to do something. It's better to learn stuff in real life than in computer's. Your dad can teach you how stick bricks together to make a chimny, or on how to use a lawn mower to cut other peoples yard's to make money. " 4 4 8 +824 1 "Dear editor, I hear you are looking for your citizens opinion in if computers are bad or good. @CAPS1 opinion is computers are bad. I think computers are bad in three ways and I want to express them to your and hopefully persuade you into going towards @CAPS1 side. Smell nice out to day. I can smell flowers, the grass, and many more, @CAPS1 first reason why computers are bad is if you use the computer to much you don't see enough of enjoying nature. Nature is beautiful, it has @CAPS2, green grass, rainbows (sometimes). You can make a walk of in the moons and just be yourself and be by yourself. In other words nature is very nice and you should set out and enjoy it. If you don't enjoy nature it might be no late, because soon it become and rainy and then, yes fem has flabberlasting colors, but what comes after fall, winter. Winter is not nice, it is cold. You work, because you need to shovel the drive way and your car off and that can get very tire some. The goof of is you can get those chorse. Oh not that make me to. @CAPS1 next reason why computers are bad. When was a good smile run. @CAPS1 next reason why I think computers are bad is spend all working and no time exersing. Excersing is a very fun thing to do, you fel to go outside. Hang with friends, any many shore. Exercise is a main way of staying healthy. don't you can really get unhealthy, and sick and his dies, die i have a friend whom nothing use. The computer his body rest weaker and weaker so exercise ias am main piece of staing healthy. there are many ways to health you can bike, run, walk, rog canate, climb a mountain, etc. The posibilitys are endless while exercesing in the park you never knew you can meet. car's fast say your friend, ""yo sup man,"" ""not, you"" ""not much, just fiding around for some exercise"" ""same here, same here"" see you never know who you can meet in the park now that was @CAPS1 friend. he is alwasys here, out how as you think, yep in the same park. I wouldn't have met him if i was insine on the computer. Like i said be what was @CAPS1 friend. But since I come here every day i can meet a new friend every day maybe. So @CAPS1 last reason why I think the computer is bad is because you don't get enough interacting time with friends and family. I love @CAPS1 family but I interact with them. If they are exercising who if i am here on the computer. no one can. In conclusion I think the computer are bad because you can not get enought time exercising, enjoying nature, and spending @CAPS3 time with family and friends." 4 5 9 +825 1 "Dear local @CAPS1, I think that computers are good for people to have. My first reason is kids might have to write an eassy for school. My second reason is kid might have to look important things up. My third reason is kids might have e-mails. My first reason is kids might have to write an eassy for school. Teachers mostly perfor to have the kids typ their eassys. When kids write eassy's they have to get information on what they are looking. My seocnd reason is kids might have to look important things on. They @MONTH1 have to fill out an alpaction out online when kids get older they want to look up schools they @MONTH1 want to go to. Kids in high school look up collages to get into when they are in like @NUM1 or @NUM2 grade. My third reason is kids migth have e-mails. When kids check their e-mails they are probably trying to see if their parents wrote them. Also some kids don't live near family so they e-mail each other on-line. My first reason is kids might have to write an eassy for school. My second reason is kids might have to look important things up. My third reason is kids might have an e-mail. Now I hope you like the reasons I wrote on why computers are good to have." 3 3 6 +826 1 "Dear @CAPS1, @CAPS2 a student of the local middle school technology is utilized to the fullest. Computers have helped us write essays more efficiently & complete research assignments. However, personally I feel that this constant usage of computers has a negative impact on people. Firstly, computers hinder interpersonal connections. @CAPS4, @ORGANIZATION1 help keep in touch with old college buddies', but no computer can replace face-to-face communication. From hard, cold text, one cannot decipher subtle connotations or wit. Bot, people are beginning to replace seeing one another with @CAPS3 networking. With the technological revolution came games like @ORGANIZATION2. These games are addicting, @CAPS4, our society mocks ""nerds"" for spending too much time playing these trivial games, but it really is a serious issue. For example, in a recent study done by @ORGANIZATION3 students, ""@NUM1 out of @NUM2 teenagers who play computer games do not get the recommended amount of daily exercise."" This is because these games are so absorbing. The amount of time put into gaming. Ultimately consumes all free time. This is dangerous, because a gaming addiction can lead to delusion, @CAPS3 inadequency, obesity. @CAPS2 a people, we are quickly learning that what was once so genius, is actually dangerous. If one was to stare at a backlit screen for hours on and, their eyesight would definitely start to deteriorate. Loss of eyesight is just one of the negative impacts computers have in our health. @CAPS2 aforementioned, obesity is issue. Now, couple this with bad eyesight, @CAPS5 @CAPS6 deficiency & a negative outlook & you've got yourself a issue. All of the deseases brought on by computers can be just by less time on the computer, & exercises. Naturally, @CAPS2 a specie we were not to spend so much time in a fixed position. This static state is a new phenomena that is aquiring major health problems. The over usage of computers practionally, robs us of our time, destroys our health, & hinders our @CAPS3 interactions. This makes computers a negative influence on people & their health." 5 5 10 +827 1 I think computers have a postitive affect on people. Computers are very important to society. You can still interact with Your Family and friends either in @CAPS1 chat or @CAPS2. Computer are also helpful for applying for @CAPS3 like you can look for @CAPS3 you like. You can do @CAPS5 exciseses and useful for @CAPS5 essays. If you have a laptop you can bring it anywhere you want you don't have connect anything it take wireless and you can connect to the @CAPS6. You can look up stuff on the @CAPS6 for your homework and other stuff. Buy things without having to go to the store. These are reasons why computers have a postitive affect on people. 3 3 6 +828 1 "Dear @CAPS1, Computers have been an incredible help to many people as they advance in knowlege. But, many people do not think about the negative affects of computers. Computers make research easier to find, and they organize data well and quickly. Computers make comunication easy, but there are many negative affects as well as positive. Chat rooms on computers are a great way to communicate quickly, but they can also be dangerous. More and more kids are spending time on computers, rather than outside excersising and communicating with friends and family. Chat rooms are commonly used by kids as well as adults. Kids use them to talk with friends, make plans, and catch up relatives. But kids aren't the only people that use chat rooms. Adults use them too. Some for good, others for bad. Adults sometimes have chats for their work to talk with their fellow workers. They can communicate easily what has been done and what needs to be done at the office such as what bills have been paid. This is a good way for workers to know whats going on outside of the office. There, are many other useful advantages of computers. Some other advantages of computers are the computers functions. Computers are good for finding information quickly. Computers are useful to find information for school projects. Computers can also take that information, and organize it on graphs, and computer programs such as microsoft powerpoint. Other pluses about computers, are that they can teach hand-eye coordination. Typing can help majority with this. Typing is also another advantage. If people don't have great pendmanship, they can use a computer to type essays, homework, and school projects. This makes reading the assignment easier for the student as well as the teacher. There are many advantages to computer, but there are also disadvantages. More and more kids are spending is their free time on the computer, instead of ouside exercising. This is causing kids to become less active. Being in a chat room all day is also a disadvantage. Kids today are using a new language in chat rooms as well as texting. They are using abrevations for words and phrases, such as ""idk"" for ""i dont know"". This language is damaging how kids read and write. Although chat rooms on computer can be useful, they can do also be dangerous. Kids as well as adults go into chatrooms and talk to other people, saying invalid information about themselves. Such as age. Some adults go into chat rooms and pretend to be a teenager. They talk to kids until they find out something like an address, phone number, school, and district. Once they got information like that, they can find out many other things about kids. this is extremely dangerous and unfortunately, it does, and has happened. As you can see there are many advantages as well as disadvantages. I believe, if people can find a balance between them, people will agree more about computers. In my opinion computers are handy, but dangerous. If kids are more careful online, and spend more time outside than on the computer, there would be less controversy. Parents would be less concerned about their childs safety and health if kids only used computers for homework, and were safe about who they talk to online. Also, what kids say in profiles. If all of this happened, there would be a balance, and I think people would be less drasticly over a period of time, and people would be more comfortable." 4 5 9 +829 1 "Computers are an amazing technology to life. It'@CAPS1 amazing because the computer helps lots of people and jobs. The people it helps are kids in school to look up an area they need to find for a question on a worksheet. Also the jobs it helps us the police, @CAPS1.W.A.T and the @ORGANIZATION1. It helps the police and @CAPS1.W.A.T to find where people are and where they'll be. The @ORGANIZATION1 uses computers to locate where they will attack or defend. if it wasn't for computers we wouldn't of found @CAPS3 @CAPS4. The bad thing about computers are hackers and people that wont get off their computers. They are obssesed with the computer and they are so obssesed they sleep with the computer. That'@CAPS1 the parents fault. Those are the only bad things about computers. They get people fat an lazy because they only want to be on the computer. The computer also has good ways to reconnect with family and friends over the years you haven't seen them. The computer controlls lots of things like the nuclear bomb, security, secret-files, satalites, all of @CAPS5.A.@CAPS1.A. and more. They control life in the major part. People shouldn't be concerned about kids that sit there next to a computer all day because it'@CAPS1 the person'@CAPS1 fault, they ruined their lifes and the parent'@CAPS1 fault manly for not controlling their kid with staying away from the computer or the parents not signing them up for any sport. It ruines their life by having no friends at school an all they do is go straight for the computer. It'@CAPS1 an ashame to the father that use to be the cool kid, make fun of the nerds and get into fights every month. Then the father looks at his son an relises his son is a nerd and lives by a computer, then the father tryes to help the son and somewhat works out. Then the father keeps trying, thats good parenting to try to step it right when the child starts to go straight to the computer. Not the other parents that let their son/daughter only use the computer. Those are my opinions on computers of the good an bad ideas." 4 4 8 +830 1 "Dear @ORGANIZATION1, Computers have a positive impact on people. Although people aren't outside being active, computers still benefit in a good way. Computers teach hand-eye coordination they're convient and you can interact online with diffrent types of people. Surely, computers teach hand-eye coordination. There are many website on the internet that teach kids to type. Typing helps kids learn the alphabet, learn what the letters look like and shows them where the keys are. Also, there are other sites where the computer interacts with you. Last, there are many kids even adults who have disiexing and get their letters jumbled, but there are softwares where when you type it will say what letter you have typed. Therefore computer teach hand-eye coordination. Have you ever been one of those students who write their papers, but get bad grades because their handwriting was messy? Using a computer is more convient and will make your due assignment as neat as ever. First, computer are convient because you have the answer to any question just at the click of button. Next, theres no need to spend money and go buy a book to look up research just research online for free. Finally, it is convinient for teachers and your employees, because if you need to send in a paper do it via-email. Getting a paper by email is much easier than getting it in pen with samples. Computer are convient in many ways. Computers allow people @NUM1 video chat and talk online. First, there are many families who have at least one member who lives in a different place. Computer allow families to see each other online. Without ever leaving their state. Next, there are other families who have a mom, dad, husband or wife in the army and haven't seen each other in person in years, but see each other on line. Lastly, there are many students and teachers who teach and learn online. This is easy for most people who have busy lives. Therefore you can interact online. As you can see computers have a positive effect. They teach hand eye coordination. They supply online chat, and are very convient. So next time you go to the library to research a book, stay at home do the same online." 5 5 10 +831 1 "I belive having computers in a household is a good idea. They can play games, learn, talk and many more. Here are my three reasons having a computer is a good thing. Having a computer is great to play games! There are so many varieties to choose from. There are card games, board games, even @NUM1 games! You can play solo, but it might be more fun and easyier to bring some friends along for the ride. As you can see having a computer can be fun, but its not the only thing to do on a computer. Useing a computer to learn is wonderful too. The computer can take you to places you have never seen, heard, or been to before, or maybe a place you couldn't afford to go. You @MONTH1 learn that in on place it's sunny all the time and in other places it's not. Another thing the computer can teach you is about animals. Animals have been here way be for us. There is still much we dont know about them. Many scientists have spent their lives studying animal and have put it on the iternet for you to better educate yourself. The computer can also teach you hand-eye. Hand-eye is great to have if your trying out for a sport like football, baseball, and basketball. Also you never know when you'll need to catch somthing. My final reason is also very helpful. Being able to talk on the computer is good to using voice chat or instint messenger is your choice. While talking on the computer you might make some new friends that share the same intrests and hobbies you do. And you can chat with them as long as there online. Also while your talking you can express your ideas and feelings. Somtimes you might just need to blow off some steam. Or maybe post an idea that can one day be famous. As you can see games, learning and talking are easier to do on the computer. This is why I think." 4 4 8 +832 1 "Dear editor, computers are good for people because it really helps with they work and home work and other stuff." 1 1 2 +833 1 "Dear Local Newspaper, Are you spending all your precious time on a computer? On the computer your probably wasting every second searching or playing games. You shoudn't spend alot of time on the computer it will just wash away your brain. You shoudn't go on computers for a long time because instead you should be exercising, enjoying nature and interacting with people. First of all, spending too much time on the computer is not good for you because you should be out exercising. On computers you can't jog the fat you gain by eating food. By jogging instead of going on the computer you can lose weight and see the real world than the world behind the computer screen. Nevertheless computers are fun to go on like playing addicting games. but isn't it better to play a real sport like soccer. In soccer you have to use your mind and alot so it is much better than sitting or laying around dazed at a computer screen for a long period of time. Don't you love playing outdoor games! Like playing tag or hiding go seek isn't that more fun than playing an addicting game on the computer screen? For me I think it is. That is my reasons I think you should exercise then stare at the computer screen. Secondly, you shouldn't be on the computer for a long amount of time because you should instead be enjoying nature. Nature is beautiful and refreshing unlike a computer. Yeah I know computers offer alot but do they offer the fresh air outside, the warm breeze land living animals the earth. I don't think so and neither should you. Instead of going on your computer when it is raining not you should play with your pets and if you don't have any put a raincoat umbrella and go outside. Especially in the @DATE1 you should be outside enjoying nature go for a swim or bring your annoying little siblings to the park. There is more to often in use than going on the computer. More importantly, you shouldn't go on the computer because you are better off. Interacting with living people in person. On the computer talking to people you are going no where on the computer chatting with people it is impossible to read someones expression. So get off the computer and hang with your family and friends. Get into a fun conversation or debate. Make new friends when your at the mall or discovering a new trail in a park. Do anything but interact on the computer when all you see is typed words writing back to you. Get your self out in the world don't just interact with people but the world not the computer screen. In conclusion you shouldn't spend most of your precious time on the computer. It isn't nessasary for you to spend all your time on the computer when you could be exrcising, enjoying nature and interacting with people. I strongly beleive people should be outside than on a computer. So what are you waiting for get off that computer and take a hike!" 5 4 9 +834 1 "Dear @CAPS1 @CAPS2 @CAPS3 @CAPS4, The average teenager spends @NUM1 hours on a computer daily! People spend too much time on their computers. They don't exercise as much nowadays. Also, they don't enjoy all the wonderful nature the has to offer. Most importantly, people who spend too much time on the computer don't see their family and friends. These are the reasons why people shouldn't spend so much of their time on a computer. Since people spend too much time on the computer, the exercise less and less. A recent poll shwos that @NUM2 in every @NUM3 @CAPS5 is overweight. If our modern society didn't have so many distractions like computers than maybe people would be bore & maybe fo outside. Back in @DATE5 only @PERCENT2 of the @CAPS6 population was obese. So, why in @DATE6 has this number skyrocketted to @PERCENT1? Back then electronics weren't popular so for fun, kids played games with eachother outside on a regular basis. Now it's rare for a kids to be motivated to put down the mouse, and go play kickball with neighborhood) friends. The kids would rather sit inside a airconditioned hoose thatn go outside & have some good healthy fun & work up a sweat. Computers keep people from exercising so their affect on people is negative. With computers being so popular, people are less involved with nature. Our society doesn't take the time to notice the cool breeze on an @DATE4 @TIME1, or the waves crashing on a hot @DATE3 @TIME1. They don't take time to appreciate has beautiful the follage is in @DATE2, or now it feels to be showered with snow on a chilly @DATE1 @TIME1. People would rather sit at a computer for @NUM4 hours doing wonders of our world. People don't respect the natural beauties that nature has to offer. Computers take away from people enjoying nature's joy. Computers run people's relationships with family and friend. @NUM5 year old @CAPS7 would rather talk to his girlfriend on the computer than spen time with this @CAPS8. Kids don't organize their priorities we enough. as it is, adding a computer into the mix just makes it worse. Peple have accounts on social networking sites like facebook and sometimes they are very drame filled and cause problems. Friendships are easily ruined and usually the cause of this is some kind of misunderstanding. It is very sad but true that kids would rather watch goofy vidoes than visit a grandparent. Computers are negative to people since they ruin their relationships with friends and family. People should spend less time on the computer. Computers are a main factor in the vast increase in obesity rates. Kids need to regain healthyness before it's too late! Also, people of all ages should realize the natural beauty of naturel, but computers get in the way of that. Most importantly, computers ruin many relationships with friends and family. The cause stress and unnecessary drama. As you can see, computer have a negative affect on people." 5 5 10 +835 1 "When your were a kid, did your parents let you play all day on the computer? Well my parents don't let me and I think thats not fair. I think it's not fair because being on the computer has a lot of benefits, like teaching you hand-eye cordination. Another advantage is that when your on the computer you can chat with people through webcams. Also with a computer you can do homework assignments for something that requires you to do research. And of course when your on a computer, you can watch your favorite movie or t.v show, like @CAPS1 @CAPS2 or @CAPS3 @CAPS4. Now aren't these some great advantages? As an adult @CAPS5 pretty sure that you like to do a lot of things from the comfort of your own home, well when you have a computer you can. One way you can keep in touch is by online chatting like through the webcam or my favorite @CAPS6 which stands for aol instant messaging. Surprisingly, another thing you can do is work online by setting it up at work or telling your boss how to do it. By the way your an adult who didn't go to college when you were @NUM1 because you had to work well. If you have a computer or laptop you can go to school online and the best thing is that you'll be in your bed nice and warm without any worries. Now don't you thinkg that is a nice way to spend your @DATE1 @TIME1? When your a kid my age when you have a computer all you want to do is play games online with friends. Well that is what must of us kids do nowadays but our parents don't let us play to much. The only time they let us stay long is when we maybe doing a project for school. But when your a kid besides playing games all day, we also want to learn about things like @LOCATION1 or the @CAPS7 @CAPS8 that's what you. Most people would agree that when you have a computer you can just book a hotel online of going all the way to the hotel. Of course that what my parents do, everytime a vacation they look everything online like the hotel, the, and the. yes having a computer is helpful. Another thing you can do is watch movies online when you are on a plane going to the vacation, because that's what I do with my laptop. But the thing I like the most is watching shows because everytime I watch different episodes of @CAPS9 @PERSON1 the time goes by so quick that a @NUM2 hour flight only seems like @NUM3 hours. Finally, I have explained to you why having a computer is a good thing. One reason is because you can do a lot of things on the computer itself. A second reason is that you can do alot of school work with it like doing a research paper or going to school online. And my final reason was that you can book things online without going anywhere, wasting gas. So now it's your turn to decide whether having a computer is a good thing or a bad thing." 5 5 10 +836 1 "Dear local newspaper @CAPS1 I think that kid's should be alowed to go on here computers. So they can talk to there relitives across. The @CAPS5 @CAPS2 they want to. I have family members in @LOCATION1. I talk to them evry day because I have a laptop and they say that. I have relitives in @LOCATION3 I belive them because I have there email. They told me about my mother living in @LOCATION2. So I asked her she seaid yes that is true and I looked up were my mom lived. Thanks to computer also I learned that @LOCATION3 has one of the @CAPS3 @CAPS4 in The @CAPS5. So I asked my mom @CAPS2 I can go to @LOCATION3 she said yes. So I went with my sister and we even visited are family members and the @CAPS6 point I can tell you it looked exacly how. I pichered very tall coverd with trees. Birds @CAPS7, scwerwels climing trees the thing, that surprised me the most was there was a house on top of the mountine. For sale I wished that my mom was thier because she will love it. So ever time we go down there we rent that house thanks to the computers. Lastly you can even look up people on the internet. I herd that criss rock almost died. So when I got home I went on my laptop and looked it up so I did and it said nothing about. That but it did say one thing that surprised me. The most it seaid that he was geting a divorce. From his wife I think the peorson how said. That he almost died most of missed read it. So now I look up all my fraverit people. Thanks to computers the time is now to accet @CAPS2 people should have computers to use to lern about the @CAPS5 or just think what everyone sayes. So I hope you make a good chouse. But befor you choose think about it." 4 4 8 +837 1 "Dear, @ORGANIZATION1 the big rectangular shaped black or white box with lights and beeps, the compter was a smart idea,! But why do you ask,? i'll show you. This device can teach you a new language, skype can let you talk to @CAPS1 on the web or on phone!, (but you still have to pay @MONEY1.) you can surf the web or have a laugh on youtube, who needs to go out and buy stuff when on ebay or amazon just order and your done, (but you still have to wait.) why go to blockbuster to rent movies when you can go on netflix and order a movie and keep it for as long as you like, no late fees, no driving all the way to the movie store, no more of that please!. Next lets go back to the web, @CAPS2 you own a @CAPS3 or a built in camera on your laptop or netbook, you can video chat with @CAPS1 and family across the globe!, @CAPS2 you'r the kind of person that like video games then boy you will love this!, @CAPS5 ~~@CAPS6's can download games such as sim's, spore, etc. then you will love the @CAPS6. MACs also share good stuff such as the finder, safari, dashboard, etc, so thats all i have to say about @CAPS8. And now you are probably asking which computer should i get?, @CAPS9 @CAPS12 friend's at @ORGANIZATION1 @ORGANIZATION1 you have the abillty to choose either @CAPS8 or @CAPS6, but it's not @CAPS12 disision to pick out your computer, it's yours so go out and create an investment for a computer today!. but im not finished yet you can also pick a laptop, a desktop, or a netbook I can tell about all of them and I will, a laptop is good @CAPS2 your on the go a lot and @CAPS2 your in the office or you have a lot of business trips its a good idea th have a laptop at hand,. a desktop is good @CAPS2 your home a lot and work is oniline on the web or just llike the comfort of home than a desktop is right for you!, and last but not least, the netbook, it's good @CAPS2 your on the go a lot especialy when yory on vacation, and it fits nicely on your lap or on a table or @CAPS2 you dont want to get up to use the computer just grab your netbook and your ready to go, I almost forgot all netbooks come with a built in @CAPS3 so @CAPS2 your on vacation and you dont have a phone or computer just go on your netbook and there you go. well thats all I have to say thanks for reading " 4 4 8 +838 1 "Dear Newspaper writers, I belev that difrent web sites have difrent effeks on people. For exam pull @ORGANIZATION1 has news about what is going on in the world. Other websites all difrent types of games on it could be bad for some people because some of the games are not vary apropreit. Most edicatinal web sites are ment fo help people learn. One person can learn so much with a computer. You can buy and sell a iturn that you own an get many all on one web site. A computer can be used for many difrent perpests." 2 3 5 +839 1 "Computers are one of the best advances in technology ever made. Not only are computers fun but they're also very beneficial to society. First off, comptuers are great way to communicate with other people whether it's instant-messageing, email, video-messaging, or services like @ORGANIZATION1. @DATE1, Computers offer many learning opportunities. There are thousands or websites with information about your search whether it be about simple things like how to bake cookies or even more complex searches like how many stars are in the sky. Last but not least, computers just simply make life easier by helping you with everday needs. To begin, computers are a great source of communication. I remember a time when my father traveled to @LOCATION1 on business. Because it costs so much money to pay for international cellphone service, my dad could not call using his cell phone. Instead, my father called using @ORGANIZATION1. It was great because it was right on the computer. Besides making live communication easier, computers also help to communicate news, weather few weeks ago, the the home was out. It was to shout the @DATE1, so my family had no way to. Since are than our cable provider, we were able to look up. School was indeed our computer, we world. Plus, computers offer more learning opportunities. Aside from being a great source of communication, computers are fantastic for searching and research. For almost all of my school assignments that required research, I've used a computer. Sometimes, you can even find articles from library books online. Some people say that the library is always the best place to find information but I disagree. More than half the time, the internet has beyond enough information for what I need. Studies show that @NUM1 out of @NUM2 people say that computers answered their question better than any library book, did. Also, computers make life a whole lot easier. Computers make life so much easier. From typing to research to communicating and even to making travel arangements, computers help to make everday chores a lot easier. When my cousing was in highschool, she was assigned a @NUM3 word essay for homework. First off, it's pain having to count everyword and also, most importantly it's no fun having to write that much so my cousin decide to just type it. It saves time and is way neater. She finish her typed essay in @NUM4 hour while love friend finished in an @NUM4 @NUM4/2 hours because she hand wrote it. Its you on computers are esier. To conclude, computers are beneficial because they're a great source of communication, they offer many learning opportunities, and they make life so much easier. Thank you for reading, and I hope I've persuaded you to agree with my position that computers are one of the best advances in technology ever accomplished and why they are so beneficial to society." 5 5 10 +840 1 "Dear @CAPS1 @CAPS2, I agree that computers do have a positive effect on people. I agree, because being on the computer teaches you hand-eye coordination, helps people learn about faraway places and people, and allows people to talk to other people. By being on the computer it helps teach people hand-eye coordination. So the computer help with hand- eye coordination by using the mouse and keyboard. For example, when you use a computer you dont need to look at your hands while you use the mouse. That helps with hand-eye coordination, because you can see where your hand is without looking. Another example is the keyboard, because while learning where all the keys are you memorize them. Then soon you can type with without looking. The computer also helps you to learn. When you go on the computer the thing people go on is the internet. On the internet people can find information about faraway places or people. So, because the computer has different links and websites, it helps kids and adults everywhere to get information fast. Without the computer everyone would have to go to a library, but what if they didnt have the right information? Then you would need to trace around everywhere to find a book. Thats why a computer is handy. Also, the computer allows people to stay in touch with others farther away. One example of this is that there are chat rooms or groups people can join. So, if a relative or friend is farther away from a more or if they are down the street, with chat rooms it makes talking easier. Also, by these chat rooms and groups it makes a lot of people happy knowing that they can still talk with an old friend or relative instead of loosing them from never seeing or talking to them. That is just another example why the computer has a positive effect. So, with the examples of the computer helping teach hand-eye coordination, makes obtaining information easier and of the many reasons and examples of the computer having a positive effect." 4 4 8 +841 1 "Dear local Newspaper, Computers don't take exercising, enjoying nature, and no interacting with friends and family away from you. Your family can sey time limits on the computer if they think your. Spending to much time on it. If you have time limits then people will have a certin time they go on and off of the computer. For example a child is on the computer @NUM1 and you can't get them off, time limits will stop that. The child is on a game and if the time limits are on, when your time is done the computer logs off automaticaly. That way your child can't get back on till thier next time. The computer can do many things you can play online games and chat with friends. Chating will let you talk to friends over the computer and you won't need to call them. Online games will still let you talk to your friends but you can have an avatar you can dress up and be creative with. For example an online game can let you chat make friends," 3 4 7 +842 1 "@CAPS1. The computer is a wonderful thing! However the effects it has on people can be bad. Think of it this way, it has magnetic forces that pull people to it and keep them @CAPS3 for hours. These magnetic forces keep people from exercising, stops them from spending time with family and friends and most importantly if they aren't being careful they can get into some cyber danger. I spoke with the @CAPS2 of @PERSON2 and he said "@CAPS3 are so many people on their computers, people aren't getting enough exercise!" @CAPS4 people dont get enough exercise their bodies expand and become obese. This happens a lot to average people. The @CAPS2 and I thought up some great ideas while I was @CAPS3 and we think for one week in @DATE1 we are going to live without any electricity! Computers are very use-full, they help spread important information around fast and make it easy to talk to friends and family. Even though you are talking to them you are not learning any new social skills. Typing on the computer is a lot different from talking in person. Usually you would type "u" instead of "you" or "r" instead of "are". Talking over the computer is great!" says @PERSON1, "But actually seeing my family and talking talking to them is way better." @CAPS6, @CAPS7, @CAPS8, and way more sights websites can put you in cyber danger! Cyber danger is @CAPS4 you get in trouble on the computer. This can happen @CAPS4 you put up bad pictures of yourself or other people, @CAPS4 you talk to someone you have never met before, or you say something really mean to that girl you don't like. Those situations can all put you in a really tough place. Even if you have a webpage and you put it on private @CAPS3 is always a way to get in. @CAPS3 is also something called cyber bullying. Cyber bullying is @CAPS4 you get bullyed or are bullying another person over the computer. Don't think that no one will know @CAPS3 are ways to track down coversations between people. I really hope you all take this into account @CAPS4 you think about sitting at your computer! Go outside, spend time with your family and friends, and be careful from cyber danger! "@NUM1" bye!" 4 4 8 +843 1 "Alot of people would disagree that computers are benefiting people. But I think that computers are exremely helpful because they are a good way to learn, they are fun to use, and it's also a goodway to talk to old friends. I know there are some people who are on computers alot more than they should but still computers are very helpful. Computers are a very good way to learn because on a computer you could easily find out whi the @CAPS1 of @LOCATION1 is. But if you didn't use a computer and you went to a library it could take hours to find the right and find were in the book it is. You could also learn about news faster without writing for it to come on the news channel. Computers are a lot beter than having to drive to a library because with just a couple as clicks you could find what you want and be done. Computers are also fun because you can play little games on the internet that could easily take up on extra @NUM1 minutes that yu might have on a work break or before school. And even some games exercise your mind like solitare its fun but hard. But there are some games that people tend to over do because they go addicted. But most people haven't ever prayed a game like that or only play once in a while. Lastly computers are a good way to stay in touch with old friends because there are a lot of ways to talk to people online like say if when you were in high school your best friends moved away you sould still talk to people on a chat room were you can text. or a video chat were you actualy see them face to face. In conclusion I think computers are helpful because you can learn, play and talk to people. Computers are best all around helpful." 4 4 8 +844 1 "Dear @CAPS1 local @CAPS2, I think that computers are on positive effect on people. @CAPS6 you think that there positive on people? Well I'll give you @NUM1 reasons why you should say ""@CAPS8"" @NUM2) teaches hand-eye coordination @NUM3) abiliy to learn and get your @CAPS3 online @NUM1) you can talk to people all of the world. These are @CAPS1 @NUM1 reasons. @CAPS1 first reason is hand-eye coordination. If you have hand-eye coordination, you can @CAPS6 anything. This can help you get a job and even help with a sport you like. Having hand-eye coordination is important because were in @DATE1 everything goes around by computer and cell phones. This is @CAPS1 first reason. @CAPS1 second reason, how the computer can teach people things. The internet has a lot of web sites about how to get your @CAPS3 online. And you can take online classes. There is a @PERCENT1 drop-out rate and @PERCENT2 of those kid don't have there @CAPS3, so they go online to take there classes. The computer can really help you. This is @CAPS1 second reason. Finally, people go online to chat rooms to talk and met new people. Meeting new people is a good thing to @CAPS6. You can learn about where and how the person lives. Chats rooms are cool to. You can go online and talk to your friends without wasteding your phone minutes. The computer can help in many ways. @CAPS1 last reason. OK, I'm done but @CAPS6 you remember that question I asked you? (@CAPS6 you the computers are a positive effect on people?) @CAPS7 @CAPS6 you think? I hope you say "" @CAPS8, they are an positive effect "". But any ways those are @CAPS1 @NUM1 reasons why. P.S. I hope you go out and buy a computer after reading this!! " 4 4 8 +845 1 "Dear @LOCATION1, @CAPS1 everybody relizes, technology is getting more advanced every single day. That is a good thing and could help people with everyday problems like @CAPS19, getting an answer to a problem, and @ORGANIZATION1, @CAPS2 work. The more advanced Computers become, the more advanced People are. To start, Computers can help People comunicate just imagine someone on the other side of the world. you can use websites like @CAPS3 and e-mail to quickly comunicate with typing. I @CAPS4 like @ORGANIZATION2 can quickley send live videos of yourself all the way across the world . Without these technologies, we would never see each others faces and we would only be useung telephones. with @CAPS5 book, you can also @CAPS6 @CAPS7 like never before. Have you ever been in the situation when you can'@CAPS15 @CAPS6 @CAPS7? well I have @CAPS7 can be easily uploaded in a matter of minutes. It used to be that @CAPS10 traveled very slowly, @CAPS8, we can know about it only a few minutes after it happened, thanks to computers. Computers can relay information at practily the speed of light. It is also a lot easier to find the @CAPS10. You only need to @CAPS9 the mouse a few @CAPS18 and you find the biggest resivior of @CAPS10 ever. Their is international @CAPS10, @CAPS11 @CAPS10, and much more in the palm of your hand. @CAPS10 also travels @CAPS12 on the internet then on @CAPS10 @CAPS14 or @CAPS15.V. Their are also on line @CAPS10 @CAPS14 like the @CAPS16 @CAPS17 @CAPS18 and magazines like time. Have you ever felt sick, and you didn'@CAPS15 want to leave your house? Well how you ran do all your @CAPS19 on line. Their is no more going to a store to buy furniture or clothes you can just log on to a computer and have almost every store on your finger tips. Buy a whole @CAPS16 @CAPS20, a @CAPS16 couch, and even your groceries in only ten minutes. You can even shop for houses or cars online. @CAPS19 on the internet has truly changed the world in more ways the anyone could have belived fifteen years ago. To @CAPS21, computers have made life easier for almost every person who has one. @CAPS1 Computers get smarter, maybe they can also do incredible things like work for us and automaticly buy something for us if we are running out of @CAPS22. The @CAPS23 are endless." 5 5 10 +846 1 "Dear local newspaper, I have heard about this issue concerning people are on their computer to much. In my opinion, i think that people should not spend so much time on the computer for several reasons. There are the reasons to why I think that people should less time on the internet, and more outdoors. One reason to why I think that people should spend less time on the computer and more times outdoors is so that they can get more exercise. When you get exercise you can lose weight. You can also feel lighter and better about yourself, you will be more active. Another reason to why you should spend more time outdoors than on the computer is because if you don't you will get very very very lazy. If you don't get out and play or exercise, you will become tired. Also, you will become cranky and want do what your parents tell you to do because your mind will be so into your computer screen. My last but not least reason to why we should spend more time outdoors than indoors on the computer is because we can miss out on family fun that goes on. Since people are on the computer so much they miss out an parties and social events. They @MONTH1 also miss out on family dinners and movie night. If you do not want to miss out on the fun, I suggest that you get cuclasses more and stop being a lazy couch potato. As you cansee, there are many reasons to why we should spend more time outdoors doing activities such as going on a bike side, going kout to eat, as even a nice stroll along the heart while walking the dog. I really hope that my opinions means something to you. And I also hope you agree with me. Thank you for your time." 4 4 8 +847 1 "@ORGANIZATION1, "@CAPS1 not advance in technology?" asks four year old @PERSON2. There are countless reasons, people are spending way too much time on the technology we have already such as the computer. @CAPS9 of wasting time on this device, people arent excersicing, enjoying nature, and spending quality time with their friends and family. When you are on the computer for one hour, how many calories do you think you're burning? According to a study done at @ORGANIZATION2, one of the best colleges in the world, you're only burning @NUM1 calories. To maintain a healthy weight, you must burn at least @NUM1,000 calories a day! The average citizen in @LOCATION2, @LOCATION1 spends @NUM3 hours on the computer so that's @NUM4 calories. Even if they did aerobic excersize for the rest of the day, they couldn't burn enough calories @CAPS9 you can only burn @NUM5 calories an hour at the average aerobics class. If people can't maintain a healthy weight, they became obese, if they are obese they can get heart attacks, and if they have a heart attack, they could die! @PERCENT2 of the obese population in the @LOCATION4 die from a heart attack. With out a doubt, computers are like poison, if you use it, you'll get sick - but if you use to much, you'll die. Imagine - birds chirping up in the trees, deer sipping water out of a nice cold pond. In the distance, a fox playfully chases a butterfly. If you are in @PERCENT2 of @CAPS2 who have actually seen something like this with your own eyes you're lucky. "@CAPS3 fellow @CAPS2, I painfully state this fact. The rainforest in @LOCATION3 is being cutdown as we speak. This is @CAPS9 the @CAPS5 never go out and smell fresh air & see how beautiful the rainforest really is. We must stop them!" pleads former @CAPS6 @PERSON3 in an internationally televised speach. Too bad only @NUM6 out of every @NUM7 @CAPS2 could relate to kid message. @PERCENT3 of @CAPS2 have never gone out into nature. @CAPS9 of this, people are saying who cares about nature & the rain forest? "@CAPS9 of this, the rainforest is mercilessly being destroyed and animals are loosing their homes. When a pool was given to the @PERCENT3 of people who don't ever go outside to ejoy nature @PERCENT1 of them responded that it was @CAPS9 they are too busy spending time on the computer. The computer is a monster - it's killing our planet." I love @CAPS3 mommy. I @CAPS10 her everyday before dinner," sadly states eight year old, @PERSON1. Using computers kills time that could be spent with your loved ones, even if you are communicating with them on the computer. A @NUM5 year old cancer patient, @ORGANIZATION3 was on his death bed what he wished that he could change about his life, he answerd, "I wish that I didn't use the computers as much I got to know @CAPS3 family & friends better! @ORGANIZATION3 died lates that day. Do you want to carry around that heavy of a burden with you until your death? No, you don't. In a drug rehab the @ORGANIZATION4 asked the patients @CAPS1 they started drugs in the first in the first place, @PERCENT4 answered that it was @CAPS9 they didn't feel love by their families. After they answered, they were asked @CAPS1 they didn't feel love, @PERCENT5 of them answered @CAPS9 the people that they love were to busy on the computers. Unless you want to put one of your love ones' in the hospital do not use the computers. Obviously, computers are aweful technological devices. Yes, they do help with coordination, but would you rather be fast, not enjoy family & nature, but be able to catch a ball or be healthy, loved, and loving?" 6 6 12 +848 1 "Computers are very helpful in many of ways. I believe that computers can a very great needed affect on you. @CAPS5 can cause you to @CAPS1, @CAPS2 and cheap @CAPS3. The computer can @CAPS1 you in many interesting ways. The fast wat @CAPS5 can @CAPS1 is @CAPS4 helping other plan @CAPS4 vacations by money to them. Also @CAPS5 can @CAPS1 by know how to do diffrent things like @CAPS6 if you get lost or show you how to get there. The second way is helps is to give @CAPS2. The computer can give you plenty of @CAPS2. I use the computer @CAPS4 @CAPS2 @CAPS7 of . @CAPS5 also gives me @CAPS2 about a @CAPS8 college that I would @CAPS9 and like to attend to. The last way the computer helps out the its with box from there. If you @CAPS10 online you can in the computer. I @CAPS9 this machine because you don't have to buy something that just come out @CAPS4 the real expensive @CAPS12 you can just @CAPS10 online and @CAPS11 @CAPS5 @CAPS4 a cheaper @CAPS12. Also @CAPS13 mom wanter to @CAPS11 new @CAPS15 on the dealer but @CAPS5 was expensive so went online and bought @CAPS5 cheaPer than the would sell @CAPS5 to us. This is how the computer can come in handy when you need @CAPS5. This is why I believe that computer you." 3 3 6 +849 1 "Dear, Local @ORGANIZATION1 paper I do think that computers benefit society, because if a student needs to write a report europe their going to weell. A computer to give the quier accesible information is do there project at home. Computers are great ways to meet people online so that you stay social and not. They also teach hand-eye-cordination. So you eyes are beter their seeing nothing. I also think computer benifits society because it could get student motivated in passing there test or passing the school year and getting the to use it. Computers are also a great of knowledge and can get kids to be better on a subject like history, or science, you should agree with me because local @ORGANIZATION1 papers got there information off the internet sometimes and with our computers @ORGANIZATION1 would be slow and. Computers also have positive effects on people because it teaches them the dangers of things and they could be more and, and computers give finger strongly gripto be a lot faster, and computers are the fastes way to know about the @ORGANIZATION1 or about the wether, like if there wits going to be a snow storm you could check if you got school." 3 4 7 +850 1 "Dear Local Newspaper, Have you ever thought about how computers effect human beings? The impacts? The results? The education? I believe that computers have a positive effect on people. Computers allow people to talk with others online, have the ability to educate in certain areas, and teach hand-eye coordination. Who says the only way to contact or communicate with someone is through letters or the phone? The technology brought upon using computers allows people to talk online with others in a fast, easy, enjoyable way. Have a question that you have to ask a friend, but someone else is using the phone? Write a letter! Oh wait, letters can take up todays and your question is urgent! The computer is an easy alternative for communication. Say you're an amazing singer with a beautiful voice and you want to find an agent more than anything. Computers are so advanced in technology that they can find you an agent in no time. E-mail, websites, @CAPS1, and more, are all ways you can contact that agent. Computers are a great way to communicate. The mind is an extrordinary thing. It can be filled with knowledge, and still have the ability to learn and understand more. Reading books is a fantastic way to learn, but the internet has so much more to offer and you are not only reading from one great author, but tons of great authors. The computer allows you to learn about far away places and important people without making that trip to the library. Have you ever heard of online colleges? They are advertised on @CAPS2.V. all the time. Some people @MONTH1 think that learning from home, laying in bed with a laptop placed in front of them is a distractive way to learn. But what about being comfortable and not intiminated by anyone else around you? Computers can help you get your college degree in a comfortable environment. Hand-eye coordinatin is an excellet and wonderful thing to have. Along with videogames, computer games teach you exactly that. Parents @MONTH1 think we kids are wasting our time playing games on the computer, but we are actually challenging our minds and our hand-eye coordinatin ability. Computers are key when it comes to pysicological learing. Handeye coordinatin is taught to us through games and such that we play without us even knowing it. Hand-eye coordination allows us to catch a ball or play sports, and computers help us acheive that." 5 5 10 +851 1 "@ORGANIZATION1, @CAPS1 studies have been conducted over the past few years, and they show that people of all ages spend @PERCENT1 of their free time on the computers. This is becoming a problem all over our state and country. Computers are consuming the lives of everyone. An anonymous source claims that they use their computer to contact old friends. A study shows that phone usage has gone down because adults and teens would prefer to email or instant message a friend. This results in sitting in front of a computer screen waiting for a responce. @PERSON1, a student at @ORGANIZATION2 says, "I go on the computer once or twice a week. i dont use it all that much because I'd rather be out having fun with all my friends rather than be holed up in a room by myself." @CAPS2 people believe it is a way to be more social, but it really isn't. It's just sitting in front of a screen talking to people you @MONTH1 not even know too well. When you sit down in your computer chair and start e-mailing away, you aren't doing any physical exercise. The @CAPS2 movement people will normally do is get up and go to the bathroom. Then they are right back in a chair, making minimal movements. @PERCENT2 of people who sit in front of a computer end up obese because they don't burn any calories. Since they don't relesase many endorphins, so they aren't very happy. If they got up and went outdoors to do physical exercise, they would be fit and happy . Often, teenagers feel more powerful when they are using a computer. They find it easier to disobey rules their parents set for them. Teens also find it easier to bully other children via the internet or social networks. @NUM1 out of @NUM2 students at @ORGANIZATION2 middle @ORGANIZATION2 confess to being the target of malicious bullying online. @NUM3 out of @NUM2 confess to be bullied, and they definitely don't want to be bullied on facebook or myspace where everything is out on your profile for your peers to see. Teens should have limited time on the computer, so they don't do anything they will regret in their future. Therefore, adults and teens should be aware that using a computer is fine, but they shouldn't over use the luxury of a way to find information quickly or contact a friend in a foreign country. This generation needs to be reminded that their whole life shouldn't be spent on the computer. Probably less than @NUM5 minutes a day should be spent checking your e-mail or instant messaging a friend. Then you should go outdoors and spend time with your friends and family." 5 4 9 +852 1 "@ORGANIZATION1, With the recent development @MONEY1 technology in todays society I know that there is a lot @MONEY1 controversy with computers. Many people believe that computers are positive towards our society. While others disagree. I feel that technology can be both good and bad. Technology provides great advancements in our world. But people experience less @MONEY1 the outside world when they surround themselves with technology. But I feel that we can find a balance between the two views. Having computers has brought a lot @MONEY1 advancement in todays society. Look at modern medicine, it would be nothing without todays technology in computers. We can look at todays military. Computers practically run todays armed forces. But who knows where technology can take us. Our society could continue to greatly advance with the help @MONEY1 computers. But then again we could all wonder where would we be today without computers. So @ORGANIZATION1, as you can see computers have helped our society greatly with improvement and progression. But with all @MONEY1 this technology we still need to find a balance. It is live todays @CAPS1 spend cover @NUM1 hours per week on computers. People are not experiencing the world outside @MONEY1 their computers. Our state does put in @MONEY1 each year for our parks just so we can ignore them. Also with increased computer time people are not getting outside. They aren’t getting proper exercise. You @MONTH1 even notice that if you use the computer too much you will miss more interactions with your family. So although computers can be very useful you need to be able to turn off the computer and realize the true important things in your life, besides the computers. computers can be both good and bad. But I think that we need to find a balance between the two. Computers are useful to our daily life but at the same time we also need to realize that we need to sometimes take a break from our computers. Lets face it without computers today we would not be able to function. Entire companies revolve around computers and if computers just ended, @MONEY1 @MONEY1 people would lose their jobs. But also regular people, for example teens, do not need to be on the computer for four hours a day. Those four hours could be spent with their families. We need to find a balance. For example, you could say for every hour your on the computer you need to spend that same hour to go outside, spend time with your family, etc. Computers are useful but we cannot over use it. So, to the @ORGANIZATION1, computers help our society thrive. But at the same time we need to learn when we have had enough time on the computer. So I believe that we can call find a healthy balance @MONEY1 computer use." 5 5 10 +853 1 "Dear local news paper, Computers are powerful machines in our world. Most people east, sleep, and drink computer. Thats when those people are forty and live with there mom, for the most part of computer are used by teenagers and buiness workers. Computers are a tool that need to be used in an everyday life. We all know and remembe when we were ""sick"" just so we could go to the office with mom or dad to draw pictures and spin in the office chairs. Well while we were busy playing mom and dad were busy as well. They talked to their boss, made copies, had meetings drank coffee, and most of all they spent half of the day doing work on the computer. It could of been making spread sheet, designing logos, editing someones or getting new clients. About ninety percent of the workers use the computer to do their jobs. they need to be senting work to other companies over sea's or just down one float. Computers need to be used to do most jobs in @LOCATION1. Also the computers in today's time are beautiful because they have the internet. The internet allows use to talk to people around the world and look things up like the news, the close bridle shop, the biggest shopping mall, biggest race car tract near you and pizza placer near you. The inernet can let you do many things. I know that hear in granby you have to but the newspaper, but instead of but the paper you can just go on you computer and chechk the news. Look up the weather, the celebrity gossip, and where the plance crashed that you mom told you about. The computer can give you great information but only if you know how to use it. One thing that I find great is that you can watch tv. and movies right from your computer. Then you don't need to buy all those high priced chanles to watch movies. You can see you favorite shows and moves. A big thing is that teenagers span a majority of there time on facebook, twitter or myspace. Some of the advantages you get from these online sites is that you can chat with an old friend and show them a picture of you and your family. You can let people know what you are doing or tell them you sad because your dog died. You just can use the internet for just about anything. Lastly something you can do is buy music on the computers. You don't need to go out and spend @MONEY1 on an album, you can now just buy a single song for a dollar. You can buy many things on the internet the clothes on food. Thats why the computer" 4 5 9 +854 1 "My opinion is that the more that we stay on the computer. The more we get lazy. One reason that I say this is because, a computer is a big handy person in reality. Second reason is, people stay in the house sitting down on the computer other than exercising. The third reason is, people just sit in the house, and an't enjoy fresh air with their loved ones. First, the reason why I say a computer is a big handy person because it does most of the things a human can do. That can lead a person to being very lazy. Just too sit in the house and go to websites. It has a big effect on a humans life. The computer technology have contecll over a huge population of recae. It really make miss out on half of their day. Second, people stay in the house on the computer other than exercising. It's very unhealthy for a person to sit down at a computer all day. The person has to eat so, basicly they eat and sit back down at the computer. It can get out hand because the computer allows people to grace food online. So that right there is an example of people not getting ecersise, and being lazy. You need to get your ecersise dayly. So people that doesnt get their ecersise need to start. Instead of sitting down on the computer all day. Third, many people over whole world have a lot of love one's that they care about and love. ""But"" they dnt get time to be with them, because they are always on the computer. The computer shouldn't take you away from you outdoor life. Okay, so what you can talk fo your friend and family over the computer. It's never like seeing them in person. Go outside and have fun and happy memories with your family. Because the computer is just words being texted. It's nothing like being said. I garrented you that. If you spend time with youre family then you will want to do it again. While your going out excersise and be interacting. In conclusion, if you are allways on the compute that's not good. Just take a few hours out of the day and ecersise. Go out and have a marvelous day. Because the computer doesn't do nothing but make you lazirer (@CAPS1 YOU). If your allways on the computer just be sure that you get your ecersise and your time with your family. It will make your a better person!" 3 5 8 +855 1 "Dear @CAPS1 @CAPS2, Computers have both negative and positive affects on people. Many people before us went through everyday life without them. Although there are many good affects that computers have on people, the negative affect's outnumber them by far. For example, generations have lived and died without computers and it didn't affect them. Not only that but many children and adults in this centry are obese due to growing technology. Many people become obese because they were born with this technology and after years, or even days of sitting in front of their computer, they become lazy. They look to a computer as necesity and not a form of entertainment. Even though computers keep people in contact and keep them updated in their lives, that is the only important reason for a computer. As a student, I use my computer for my schoolwork. Everything I do on my computer involves either typing a paper or printing research. I could do these things with paper and pencil and ask people what I'm trying to find out. This is important because it shows that people don't need to be defandent on computers when they can do everything they need to without them. Lastly, computers aren't needed when we have the availability of cell phones that keep everyone in contact without computer games, chats or profiles. Also phones are safe so they cant get viruses and strangers cant look at your personal information, finding out where you live. In conclusion computers aren't healthy, keep you sitting, without exercise and aren't nessasary." 4 4 8 +856 1 "When you are using technology usually it is work related. A computer is used for work to write essays, make power points, and research, when people use them for facebook, myspace, @CAPS1, and other chat live oovoo and websites it is more for their pleasure. I only go on facebook when I am checking my schedule for hockey, most kids use it for talk. Then there is oovoo & online video chat used for talking with friends but why not just callem'up. When I think of facebook or oovoo, or even myspace it makes me think of inapropriate pictures kids, and adults post. I think that is very unhumane and that is very dangerous to post ot because once it's out there you'll never get it back. For instance I am always outsided hanginaround when it's warm out, during winter I can understand going on facebook, but during the @DATE1 there is no need just go outside and have fun. Kids wonder why they gain weight we'll if you'de get off your computer, and quit eating twinkies then you'll notice you just have to be active. some kids parents don't really give a flying faldoodle what their kids do all day. They don't care if their kid is @NUM1 lbs. at the age of @NUM2. They don't care if their kids are sitting on the computer eating all-day. If i could tell you what it must feel like to be a couch potato I would but I never go on the computer unless it is for homework. I used the computer just @TIME1 I typed up all of my homework except for my math. I didn't play one game, I didn't check email go on the internet or anything I just worked my hardest and got it done. I conclude this with the fact that using a computer is not a bad thing, using it repeatedly and not exercising is. A computer shouldn't need to be used for pleasure it's not created to do so it's created to keep your life simpler. People pay money to buy a expensive computer and motem and all that expensive technological accesories, to make their lives much simpler not anywhere in thes essay did I say to play games because it's not. Playing games can be done outside, it doesn't have to be inside, and definately doesn't have to be on a computer. To make everyones life easier kids, get off your lazy butts, get off the twinkies, and stop playing on the computer. " 5 5 10 +857 1 "Dear @CAPS1 @CAPS2 Newspaper, Have you ever wanted to see your @CAPS3 that lives across the country? Well computers can do that. Ther re positive in effecting people in more ways, such as letteing people communicate with family or friends from across the world or letting everything be easy to find what they @CAPS4 many people are people isolate and keeping them from talking to family / friends I is helping them by being to chat or type to them. People can now talk to reltives in the comfort of thre home without having to about how they look. Computer also phone bills because of call your mom in @LOCATION1 just go on I chat and chat with her, it's just @CAPS5 you can see the computers Some people also think computers give people to much access to but ther it give people the of know what they This is good for school to for look for In my fall @NUM1. or people @CAPS6 you can see computers let you find the information you the time has that @CAPS7 computers without or keeping people away from family" 4 4 8 +858 1 "@ORGANIZATION1, I believe that we should tell the people of @LOCATION1 about the dangers of using computers too much. For example people who use the computer constently spend less time doing anything else in general. Also the longer you stay on the more you use it, and this habit forms a addiction, which might be hard to break. Finally people who always play video games on computers begin to lose terms of reality. Computers are turning this nation into a bunch of mindless slothes. If you have children, what do you think they do most of their lives. Maybe their going outside and getting exercise, or their brains could be getting sucked into a computer screen. Most kids by the age of @NUM1 have already used a computer for over @NUM2 hour. This shows that kids spend more time using the computer then anything else. I had a friend named @CAPS1 who used the computer @NUM3 and eventually he was so weak and scrawny from lack of exercise that you could snap his arm like a twig. Please, if you don't want your kids to be like @CAPS1, tell them to get up and go play outside. You probably think that using your computer everyday couldn't form an addiction, but computers can be as addictive as drugs. Scientest have found that using the computer everyday for one hour can be enough to form a addiction. In fact if we could scan people to find addiction @PERCENT1 of the @LOCATION2 population would be addicted to computers. This means that @NUM4 years from now the world addiction to computers could be at @PERCENT2 or greater. Do you want to live in a world where almost everyone uses their computers @NUM3, I don't. Video games are one of the greatest advances in computer technology but also one of the deadliest. If you have a computer you will have video games. Small dosages can be fine, but non-stop playing can lead to serious problems. Because of the fantesy content people might start to lose sight of reality. For example, scientest tested a video game on kids, and now @PERCENT1 believe in zombies. Now they cannot ever play the game for it might cause serious brain damage. Just to make sure you get my point, let us recap. More computer means lack of exercise and social interaction, you can easily be addicted, and you can lose your sense of realness. I that you don't want to see you or your kids brillant brains turned to mush by computers." 5 4 9 +859 1 "The innovation of computers was a great leap into discovery. Unfortunately, the negative aspects of this magnificent invention detract from the novelty. With the computer came a plague of not exercising and a disinterest in, perhaps even an inabilty to enjoy nature. On top of this destruction of the mind, this monster is the cruel cause of many declining relationships for who has time for friends and family while in the middle of an internet game? As unique and intriguing as the computer might be, it is slowly destroying the mind. Increasing interest in a monitor tends to result in decreasing care for exercise as well as a decline in the amount of exercise gotten each day. While playing on the computer, the mind @MONTH1 be racing but the body sits unmoving, @CAPS1 activity is being done. Indeed, for some the addiction is awful enough that the person only moves to get food, use a restroom, go to bed or when a parent demands it. All of the day's food settles into the stomach and little to none of it is burned off. Meanwhile, in some of the more severe cases the person is so entranced that bedtimes are pushed later. Sleep is essential to the body and mind and going without can be damaging. Nowadays the computer detracts from the sleep and exercise that the body requires. Even nature suffered from the advent of computers. Fewer people went out to admire its beauty. Nature is a wonderful teacher about the circle of life and the natural way of the world. Oftentimes parallels can be drawn between the wild and the tamed. Attached as people are to computers, they cannot experience the world to the fullest. Some argue that flora and fauna can be found online, but seeing a picture is different, almost cheating, compared to being beside the plant, able to study it from all angles rather than in an unmoving form. The experience is not the same. Also, computers are indoors, so the true world is chielded from view. Even nowadays with laptops if one was to be brought outside, the user would be focusing on the screen, not what is around them. Computers have severely cut down on the admiration of nature. Even family and friends suffer when computers are around. Many people barely pay attention to conversation while focusing on the screen. They tend to onlypretend to listen half the time. Even when chatting with friends online, the conversation is disjointed because attention is probably focused on another part of the internet. Frequently, during conversations without a computer nearby, the mind is focused on something from earlier that day. Relationships are suffering, and computers are at fault. Computers are sucking in society, more of it each day. Much of what is done on computers, like the study of faraway places, can easily be found in books. Computers have resulted in a lack of exercise, less time with nature, strained relationships, and a generally unhealthy lifestyle. Through all of this, they have returned little to society. Why does the world continue to put up with computers and their negative effect on humanity?" 6 6 12 +860 1 "Dear @CAPS1, More and more people do use computers, but it is not a bad thing. Student come home from school tired, bored, and doesn't want to go outside and exercise. Students would rather go on the computer. When students go on the computer they can chat thier friends, listen to music, or learn about distant places. Firstly, students would chat their friends on the computer. When it is winter, students can't go outside and exercise. Students can grab their laptop, and go on their warm and comfortable table bed to chat friends. Maybe a friend can help with homework. Going outside in the winter can make students sick and miss days of school. Secondly, students like to listen to music. Music is an important part to a student because music lyrics can express themselves. Students @MONTH1 be dancing to their favorite song. Dancing is exercise and adults do say we need more exercise. Also students can play very soft music than not doing homework at all. Thirdly, students can learn about distant places. When I am on the computer I type in www.google.com and want to learn about a place where I want sto visit other student might want to learn about places they've never visited. Italy, france, @LOCATION1, and much more places people would want to visit. They would want to learn about places before ever go. In conclusion @CAPS1, more and more people go on the computer, but it does not have to be a bad thing. Yes, students should go exercise but all the time. When students go on the computer they can chat with friends. Secondly, students can listen to music. Thirdly, they can learn about distant places. @CAPS1, it is not a bad thing that students go on the computer." 4 4 8 +861 1 "Dear Newspaper, I know the debate on wether computers benifit soscity is greatly debated but to me the answer is odvious. The internet is an extreamly useful invention, used in all schools and is only inconvient when misused. I'm not saying that its @PERCENT1 nessary for every house to contain one, but that its a luxay most people have. The computer and internet combination is probally one of the most genis ideas ever thought up. It is basically any information in a click. Websights such as myspace and facebook allow you to connect and reconnect with friends old and new. Also the ability to create your own web page is greatly useful when trying to promote a bisnuess or company. Not only that but the internet also makes it possible to purchace clothes online without having to go to the store. I know thats useful for those parents, like many that hate driving to the mall. Second, I can garentuee you that almost every school in the country has a working computer with accessable internet. The computer was just one huge leap forward for eduication. These are many websights with a eduicationly purpose only. These are websights like this for children and adults of any age. Many teachers now adays are assinging homework where the internet is nessary. Also tests such as the blue ribbon test are taken online. I can tell you right now that mant teachers would be torn apart without the compluter. Lastly, one of the most important issues. The downsides of the internet. Even though myspace and facebook are ment for good they also have a dark side." 4 4 8 +862 1 "Dear @PERSON1 editor, I think that the computers have both positive and negative effects, but more positive. For example, when people get home from work or school, they immedlatly go on the computer, to check email, do work, or to play games. I think that it's good to connect with friends and learn about the far away nature and people that we cant see, but too much of it will be bad. I know it will be bad because it can cause a lack of exercise and the computer can cut you off from your family and friends if you're on it too much, I think it's good to go on the computer for a limited amount of time each day, but also spend time outside with family and friends. The computer is good because of all the extrodinary things it offers and the things you can learn. I myself like to play video games on it like bubble spinner but at the same time I'll be on facebook, facebook lets me connect with friends and family while bubble spinner helps with hand-eye coordination, when projects came along I usually do all my research there, picking up information on each site. I also do all the writing on it too so it wont look messy but instead, clean and neat. The computer also offers video of pretty much anything on t.v. and otherwise, like youtube or google videos. The computer lets me see nature, talk to friends and family, and lets me see things, like videos, that twill never ever see in books. These show that the computer has a bigger positive impact than negative and we should take advantage of the new technology that we have and not let it go to waste. The computer is a nice outlit to come home and let yourself unwind to. People say that you don't get enough exercise but we have gym and recess at school and we become exhausted at work, which is enough exercise for the day. Computers are a nice device to have and are by far, used daily by almost everyone. So it can't be all that bad by depriving you from nature and family because it lets you see it anyway. The effects it has on people are good because of the knowledge and communication it brings. I hope you see my point of view." 4 4 8 +863 1 "Dear @CAPS1, @CAPS2 are very dangerous to the modern day socity and how we are connected to them. So I belive that these atroshish things should bery well be disposed of. There are good reasons of thinking such a thought that is in this time with such an eviormetal breakdwon we need to get close to nature while it's still here. Next today our interaction is very low when if your talking about actuall talking to the person and because of computers it makes @CAPS3 all the more lazy while sitting around doing nothing. Lastly the @CAPS2 is harmful and expensive not to menshon the fact that the enviorment is already falling apart. The way natures heading we will all end up dieing no thanks to computers. First how hamful it today is @PERCENT1 of @CAPS3 own computers. In america theres only @PERCENT2 is nature with nice forest but as people reporduce more will be gone forever due to expantion. So be one of the @NUM1 out of @NUM2 that instead of staing iside views the great things the earth has to offer. Next these computers our little robots that are really taking over the world and its getting very dangerous with how much it's destroying the ability for humans to breath this happens because theres a hipno disk in all computers making us stay close sufficating us like a deadly drug it's a horrible addiction. Lastly @PERCENT3 of deaths are due to @CAPS2 overloads imagene all the lives that could be saved if they just went to breath every @NUM3 minets I mean on average @NUM4 hours a day your looking at a @CAPS2 take time off make a goal for say @NUM5 hours. This addiction will kill us and knone knows how to talk about it. Secondly, millions on top of millions live in the @LOCATION1 @NUM6 keep on their computers for ours on a time you would think that their alone in every @NUM7 people are done the rest are being killed by chatting on the @CAPS2 and letting their life flow right out of the window. Now interaction is harmful as you already know but you forgot @NUM8 a day do elligal things on the internet like download music wich they shouldn't be they could be put away for up to @NUM9 years for this talk about an iteraction, with the police. Lastly web inter action like myspace they haves satified sexual effenders who could come to your house at only time and take you away would you like that to happen you could never see your family in every @NUM10 people @PERCENT4 are kidnapped due to myspace alone stand up out of danger. Thats a harmful work it is. Finally the dangers of a world like this with how the government whats to mess you up. These people are considered are mad and dangerous with laywars who want to get you. One in every @NUM11 people can't keep up with payments. Next did you forget about those other @PERCENT3 who dont have computers they are living the life walking with @CAPS4 on the edge of myth. Lastly and unfortunatly those @PERCENT1 perstent witho computers are likly to die within the next @NUM12 years due to a dealy poisin that the compute diliveres to your brain. In conclution this world can be one of the more angerest. So come to gether get a friend go for a run now and then. No friends go talk see your family instead of one of those vertual meaings. Just keep in mind the dangers of the @CAPS2 world and how it wants your money. Now what we need to do is attak the robots back. People should go for a run cut of some of the obisity from sitting down all day lose @NUM9 pounds or more. Remember the world would survive if you trash that zombie @CAPS2 room. Get outside go for a road trip save life humanity your fellow niebor your family." 4 6 10 +864 1 "Dear Readers, @CAPS1 has come to my attention that there is a debate on whether or not computers benefit society. This issue is debatable but really I think that computers are not helping the big picture. I don't think that they benefit our health or social actions because computers keep us inside when we could be out. Everyday when I come home from school, I find myself going straight inside and to the computer from there, I log into @CAPS2 and @CAPS3. And my exersize in the next @NUM1 hours or so is only in my fingers. My point is that there is a whole world outside of we only got off our computers and played outside. Statisctis show that @NUM2 kids spend more time inside year-round than out these days. ""@CAPS1 is ridiculous how much things have changed in just @NUM3 years."" says @PERSON1 a pediatrician in @LOCATION1, ""they all need thier exersize."" @CAPS1 is cutrogeous how much people are on computers now, @CAPS1 starts to affect thier attitude, and control thier lives. Sometimes checking notifications on @CAPS3 can be more important to someone than spending time with thier family or friends. A mom of @NUM4 teens says ""They all go to thier rooms, shut thier doors and go on @CAPS3 and @CAPS6 untill dinner and after, they go right back."" In this case, they just plug into thier computers and forget about everyone else. I think @CAPS1 has gotten out of hand how much people and teens especially are addicted to computers. 1/@NUM4 mom says she sees her kid growing apart from the family because of a computer. You @MONTH1 say that when on your computer there is a person you are talking to, and while pen-pals are great, you should really go out and do something! You are talking your friends, but its not the same as being with them. On my recent trip to @LOCATION2 to go skiing, I found that some of my friends jokes funnier when you're with her and not just sitting on a computer. We had a blast! Now I regret not getting together with her to hang out. Also @NUM6 arguments now, have something to do with a missunderstanding through the computer, people @MONTH1 get the wrong message when you send something to them or they take @CAPS1 the wrong way. The truth is, computers are starting to take negative effect on our society and even ruin relationships. If we just get off our computers and get out, we can turn that around." 5 5 10 +865 1 "Dear Local Newspaper, I am writing a letter to you to explain why I think computers are not good to have. My three supporting reasons are that if you are on the computer all the time there's a chance that you might gain weight and becom obese. You would rather be on the computer than to hang out with your family, and lastly you won't have any friends to talk to. Please read on to hear my story. First of all if your always on the computer your not going to get up and go outside for a little because it won't be important to you. Also your going to have to eat and when you get exited your going to want to eat more. Then you'll start getting overweight because you don't want to exercise. Secondly, you would spend less time with your family. You would think that your going to hang out with them later. So then you play more and get addicted. So then you and your family would grow apart. And you would be lonely because you gave up your family just so you can play a game on the computer. For my last reason on this matter is that you wont have friends. I think you won't have friends because if your on the computer all the time you wont even bother to go to the park to play or go to the gym, to try to get into sports then you won't meet anyone. The only friends that you would most likely have is friends on the computer. That you will never meet in real life and won't socialize to the about there life and to hang out with. In conclusion I think it is not a good idea to have a computer because you can become obese, you will spent less time with your family, and you won't have any friends to talk to. I hope you enjoyed this letter and take it into consideration." 4 4 8 +866 1 "Dear, Local Newspaper, In my opinion computers are everything, They provide with so many things for you to do like chess, listening to music, and even downloading you favorite movies. First of all, computers are a great source of communication because if you have a long distance relative that lives in @LOCATION1 then you can talk to them online. You can do this through via email. Instant message, and @CAPS1. Secondly, Computers let you search the web. So if you need to findout some directions to your destination or want to get informaion on some far awat places like @LOCATION3, @LOCATION2, @LOCATION4, or my favorite @CAPS2 @CAPS3 you can because the web lets you do that. Thirdly, they are a great source of entertainment. Well because you can watch episodes of your favorite @CAPS4.V. show or you can watch music videos. Also you @MONTH1 enjoy listening to music from your computer as you personal entertainment. I think that computers are great. I use them myself as an example I love to download music into my ipod from my computer. Then I get to enjoy the music from my ipod. Last, but not least, @CAPS5 computers have a great effect on a majority of people. I believe that if we didn'@CAPS4 have computers then our world wouldn'@CAPS4 be the same. So I say keep computers here to stay. They complete us all." 3 4 7 +867 1 "I think that computers have a bad effect on people. I think that because of many reasons and I will tell you some of these reasons. One reason would be not get exercise going on the computer all day, you will only get worse. Say if you were @NUM1 years old and when computers come out you bought one and went on it every day instead of being fit. Then if you have no exersize then you will get bigger and bigger. Another reason if you would only use computers for research I say this because there is no reason to go on your computer all day a good reason to go on the computer would be if you have some kind of project for school or a job instead of just using your computer for facebook or myspace. Then there is some kind of diesese that can happen to your if it does the same thing to many times. Your dont want to do that because if you dont use computer that much and you play some kind of sport like football, baseball, or any other kind of around some place. Also if kind of surgery on it and that will cause you from doing almost everything with that one hand. My last reason go on the computer your viruses connected to it. If you do that then mabe your computer will lost everything on it. Then you have to get a new computer and everything all. If you bought a new computer and you got somebody can hack your computer and get all of the information from it. The information then they like how. And if you dont know person you dont know what they can do. So I hope you dont buy something that has a really bad virus else like that. Those would be all reasons on why you shouldnt go on the computer to much and why it does not really help other then when you are doing research or any other kind of work or job related way." 4 4 8 +868 1 "@ORGANIZATION1, ore and more people use computers @DATE1, but this is not necessarily a good thing. Spendign too mcuh time on computers affects your activity level. Also. Kids are now staying up later on the compute, in turn lowering grades. Finally, spending too much time on the computer decrease the amount of time spent with friends and family. Firstly, spending too much time on the computer affects your activity level. The more time spent has on a computer, the less time a person has to do something active, like exercising @PERCENT1 of people spend more than @NUM1 @NUM2 hours on the computer per day, if @NUM3 or so hours were used to exercise or play a sport that number would decrease to @PERCENT2 according to a recent study. Doctors have said that at least @PERCENT3 of overweight parents spend most o ftheir time on the computer, thus limiting their time exercising. The amount of spent on the computer has been shown to decrease activity level and effect the number of overweight and obese people everywhere. If we want to become a healthier country, we should state @CAPS5 writing time spent on computers. Also kids now stay up later on computers and lower then grades @CAPS5 doing so. More time spent on @CAPS1 or anywhere on the @CAPS2 means less time studying, which means lower grades. Kids in spent an average of @NUM3 @NUM2 hours on the computer each day, while kids spend @NUM6 @NUM2 hours each day. A student in @PERSON2 saw their grades improve from a @CAPS3+ to a @CAPS4+ just @CAPS5 spending less time on the computer and more. That studnet also felt more because they get more computer. This tests and quizzes. Computers clearly negative effect on grades and school work. Finally, computers limit the amount of time spent with family nd friends. A student, @PERSON1, said that she, "spent more time going out with friends now that computer isn't up all my time, @CAPS5 doing this, i have a better friendshhip with all my friends than before. "A kid that uses the computer during all of the free time spends @PERCENT4 less time with friends than someone who usues it in moderation. Afmilies also suffer from this a swell. If a family member spends all their time on the computer, the other family members will have less of a relationship with them because they don't talk or do anything together an dwill likely not know what is going on i their life or if something is wrong. As you can tell, computers also have a negative effect on relationships with family and friends. The overuse of computers does nnot benefit society. They affect a persons activity level, students grades and most importantly a persons realtionships with family and friends. In oredr to ake our country a better and healthier place, we must the time spent on computers." 6 6 12 +869 1 "In my opinion computer ars benefit with the socient here are my s reasons, I can talk wit my friends, I can do my homework, or I can do olner things in the computer to. First reasons, I can talk with my friends or I can talk with my family on facebook or myspace o his on msn or I can se my family in the camera msn the camera is allot of help with me because lik my family is in @LOCATION1 I chat with them every @DATE1 instead of sending pictures and videos or going visiting to @LOCATION1. Next reasons, I can do my homework on I can write a big letter on I can do a lot of work in the computer is and easy. Final reason I can do a lot of things like find a question or do project on." 3 3 6 +870 1 "Computers are a nice item to have but they are bad if you don't know how to control your time. Many people @CAPS3 days dont get enough exercise and the lack of healthy people is costing the @CAPS1 tax payers millions. Also, people aren't enjoying life as much as they would if they didn't use a computers all of the time and thier are many people who have completely cut themselves off frfom their families and friends. I am positive that when you are done reading this you will be, one hundred percent pursuaded that the effects computers have on people are bad. To begin with, many people spend to much time on a computer instead of being outside or execising. This effect on people is something we need to start controlling because many people are very overweight and do not exercise enough to be healthy. Because so many are at an weight it is costing tax payers millions. For example, @CAPS2 @PERSON1 talking about healthcare, and anc easy sollution to cut the cost down is to have people exercise. More ofen in order to stay healthy. As technology to affect our lives, we used to remember that being healthy is more important than sitting on a computer all day. In addition to people not people dont enjoy life as much, You only live once and life is special, so why sitting all day? I many anymore because they spend all of there @CAPS3 are so many things to do in life that will bring you enjoyment than playing on the a computers. need to be and I can tell you that you life will not being you in enjoyable luife. Lastly, computers have made a lot of people when people got to Too many people a major view when it comes to family and friends. Although computers are an easy way to communicate to people, they should not be the anly thing you use to talk to friends and family. So as you can see, computers are causing us to lead on-healthy lives because our priorities on health are why to low. They also keep you from enjoying life, to the fullest and can separate you from friends and family when not controlled. I am positive that I have pursuaded you not to spend so much time on a computer. So next time you are using a computers, think of all the things you are missing out in life!" 4 5 9 +871 1 "Dear, Newspaper In my mind the computer benifits us in many different ways. Computers are entertaining, computers help us with education, and the heath/safty purposes are fantastic. People love entertainment. Computers are very fun. At electronic stores computer games are sold. These games are usally good. Instead of having games that are bad for the brain most compuer games are not. My friend @PERSON2 bought a computer game last week. @CAPS4 says @CAPS3 is very entertaining but is not brain damaging. Everyone loves watching @CAPS1.V. On computers people can now watch @CAPS1.V. Not only is that entertaining but @CAPS3 will save money because you don'@CAPS1 need a @CAPS1.v. Now people can insteadly down load @CAPS1.v. shows and movies on thier computer. @PERSON1 just got a new computer for his birthday last week. ""@CAPS3 is so fun watching @CAPS1.v. on my computer and @CAPS3 is so easy."" @CAPS4 explained. Learning from @PERSON1 I hope you can learn how entertaning computers are. At school we use computers all the time. If we did not have computers we would not learn the same. On his new computer @PERSON1 can do all his projects and homework on @CAPS3. Before @CAPS4 had his computer @CAPS4 had to write out all his papers and when @CAPS4 finished @CAPS4 spent to long writing that @CAPS4 could not do his rest of homework. Now @CAPS4 can not type @CAPS3 out, and still do all his other homework. If you think that amazing then read this. Research done by @ORGANIZATION1 found out that @PERCENT1 of kids with computer are smarter than before they had thier computers. ""I was getting all @CAPS5's when I did not have my computer. Now I get honors on my report card because of my computer."" @PERSON1 says. I hope people can now be like @PERSON1 and buy computers. Do you want to have a smarter world? Computers open up an all news heath and safty field. You @MONTH1 learn a little about geneitics. @CAPS3 would have took about @NUM1 years longer to crack the code of the genes of we did not have computers. All the information scientists have learned from the human geno project can cure cancer and other dieseases. Computers are also safe to make sure your kids are safe. New technology can track kids. If an unfortunet event happens an your kid is missing then a computer can help to find him. A new mother lost her kid last @DATE1 while eating lunch at a park. She knew she had a chip in the childs body. She opened her laptop and found where her kid was. Amazing right. I hope everyone can have a computer for heath and safty reasons. I hope you can now see that computers benifit the society from heath and safty to education in school. Without computers we could not be where we are today." 5 5 10 +872 1 "Dear @CAPS1 or @CAPS2 The purpose of this letter is about how computers have changed our lives for the better. They have improved our society. Changed our way of life and have made things easier. I am a firm beliver that computer were one of the greatest invention of all time. Computers have had a very vital and positive impact on society. For example, education has vastly expanded since the computer. Both teachers and students have benefited. Students can now search the intrenet and learn about different places, things in history, how to read and write bette, etc. Also computers have been a major part in entertainment. From reading online news to watching movies and listening to music computers entertain all of us. And computers help us connect with friends and even meet new people. Aside from that computers make life easier. People can get degrees from learning online learn another. Research as also easier than is to computers you can just about anything than to computers. Some people say computers stop people acting with family but infact facebook you can still. Computer have also ourlives. From helping small buiness thrive by making it easier to make and recieve orders to help spread information globaly computers make this all possible. As I have shown computers have benefited society and have had a positive effect on human beings from educating individuals to staying in touch with relitives, computers have made their mark on improving the way we live. I hope this letter will help show you that computers are a necesary part of the twenty first century." 4 4 8 +873 1 "Dear @CAPS1 @CAPS2, I think that having a computer is a very positive. I know that teenagers are on the computer a lot, but if it really bother the parents, why do they have computers in their houses? @CAPS3, I can tell you @NUM1 reason why. They are good sources of information, its a good way to talk with your friends and it gives you information about places that you might not know about. Primarily, I would like to say that computer are a fantastic source of information. They can tell you anything! This is also helpful because if you are working on a project, and your mom cant you to get books at library, then there you go! A computer is just a simpler way to look up information. Did you know, that @PERCENT1 of parents who got their family a computer do not regret their desicion? Thats almost all the parents in @LOCATION2! @CAPS6 as you can see, it would help kids with whatever they are studying. Secondly, we teenagers today use computers to talk with our friends @ORGANIZATION1 email @CAPS3, I think this is alot better than sending @CAPS4! Why would you wait letter from your cousin @LOCATION1. When you can talk to them in seconds! And it do paper if you just @CAPS5 to buy I would like to say that having like this one time, I was work my we were looking for a hotel to stay in when we went to we ended up finding a great hotel, for a cheap You can also go on map guest if you @CAPS5 to someone. @CAPS6 for all the people out there who dont computers are important have would you to In conclusion, I think that having a computeer is a very important thing for @NUM1 reson they are very good book source they help us communicate with friends and for every information on for @CAPS6 imleaving the opinion with you hopefully you will learn something than better and pick the right " 5 4 9 +874 1 "Almost every family has access to a computer. They have become a part of life and a way to be a part of life outside of your house, even if you have to stay at home. Computers are a source of vast knowledge from millions of sources. They have already caused exponential advancement. Overall, computers have a positive effect. on a rainy day, @NUM1 students will spend time on their computers. out of those students, @PERCENT1 will be on sites such as A.I.M.(@CAPS1 @CAPS2 @CAPS3), @CAPS4, @CAPS5, or @ORGANIZATION2. Even if they can't use their phone or get out of the house, they can communicate with friends, old and new. Teens and adults use the @CAPS6 to talk in friends they haven't seen for up to @NUM2 years. People will talk to eachother more, building more relationships and better conversational skills. Over @NUM3 of the sites used by teens are based on @CAPS8 networking. To be able to easily have a conversation with someone miles away is a sign of tremendous advancement. @ORGANIZATION1 is a multi-million dollar company. @PERSON1, a for @ORGANIZATION1, says that sites like @ORGANIZATION1 have skyrocketed in popularity over the @DATE1. More and more people are putting down their @PERSON2 dictionary to type the word into @LOCATION1, where it is accompanied by a pronunciation and found more easily. Students use computers for information on school reports in @CAPS7, @CAPS8 @CAPS9, @CAPS10, or @CAPS11. Information can be found in any subject. There was a survey taken to see which is used more often, books with a specific subject or computers for information or various subjects. Computers are used overwhelmingly more often. They're quicker than books and it's easier to search for a of resource an the @CAPS6. And say sight of particular interest or exceptionally usefull can be added to your favorites. Computers are more practical than books. Pictures of scientific laboratories where space shuttles are sent to the moon have @NUM4 main component computers. Adds from @ORGANIZATION3 show that they're computers are getting smaller and smaller. There's a laptop that will fit in an envelope and a handheld touch screen computer that can almost fit in your pocket. You can type papers and assignments so they're more ledgible. Computers can even score tests. Advancement is centered around computers. Before computers, so many things we do now would seem impossible. But computers open up a realm of possibilities. Typing is faster then hand-writing in some cases and papers can be saved electronically. If our country keeps advancing at the rate, than it is possible to have computers that do maindain chores such as taking out the trash or washing the dishes. There can be computers that talk bark to you like a real conversation. People can learn more and more information and personally advance in intelligence. I look at a computer and think of progress. There are points of computers that are not ideal, but overall, computers are benefitial to society. In a computer, you have access to friends old and new and information from millions of sources. Most of all, computers represent progress and advancement I see no direct harm from computers." 6 6 12 +875 1 "Dear @ORGANIZATION1, The use of computer benefits society due to the possitive affect on people. Such as good hand-eye coordination, ability to learn about far away places and people as well as being able to talk online with family and friends. Did you know that teenagers who use computers often when compared to those who don't, have increased test scores? This is because they are able to look so definitions faster, research and learn about anything they need at their fingertips. Furthermore, families and friends that live across the country are able to keep in touch due to email, video chats and facebook. It is fascinating to realize that use of the computer can increase your hand eye coordination. You are probably wandering how this is and think that I am insane but there are legitimate reasons. Since I play basketball, volleyball and softball, hand eye coordination is extremely important. One cold, wintery @DATE1 @TIME1. I was working on a long history paper and @CAPS1 essay, which meant countless hours on the computer typing. At five o'clock off I went to my basketball grow, @CAPS2 the best game of my life was playerl. Then, a week later, we had another game but this time I went straight from church. Consequently, I did not play as well; missed a lot of passes and shots. This proved to me that things use of computers, my hand-eye coordination improved. Can you imagine being able to learn about people in faraway places, their cultures, ethicities and relgion? Well now this is more than possible through the advances in technology. In history, we were doing research on the world hunger crisis in our allied countries. Through the knowledge of this hunger, I was able to start a fundraiser at my church. @PERSON1; @CAPS2 teenagers like myself do not eat for @NUM1 hours. Research has proven that @NUM2 children in countries of africa die a day from malnurutousment. Now that this has been brought to my attention, I am going to work four hours a day to give these innocent children even a portion of what I consume. Thus through the use of computers I was able to learn about the pain those children suffer and now it's my . Do you have family that's across the country that you are rarely able to see? My aunt and uncle live in @LOCATION3 and they were just blessed with a beautiful baby boy, @LOCATION4. Since we are only graced with their presenced about once a year we begin to miss them. But now through skype, email and facebook, we are able to stay updated on the success and growth of @LOCATION4 as well as @CAPS2 they have recently traveled to. Also @PERCENT1 as the teenage population in the @CAPS3.S spend at least four hours a day @CAPS4, tweeting or using facebook to stay in touch with their friends. Recently, I have moved from @LOCATION2 to @LOCATION1 and staying in contact with my fr iends there is extremely important to me. Those are the people that I grew up with and have known since birth. The use of computers has allowed me to stay in contact with distant friends and relatives. To conclude, due to improved hand-eye coordination, ability to learn about far away places and people as well as being able to communicate online, with other people the use of computers benefits society. Through the internet, people can learn about @LOCATION2 places to travel bike and exercise while enjoying nature. Furthermore, when family and friends want to spend time together, they need to plan the logistics of it and without email and being online this becomes nearly impossible. I appreciate you taking the time to read this and hopefully you will take my opinion into consideration when debating over the topic of computer." 5 6 11 +876 1 "Dear local newspaper, I think your wrong!!. I totally disagree with this letter. People need computers to do research. Also helps us keep in contact with others. Another thing is @CAPS1 can get anything needed. First, @CAPS1 need computer. @CAPS1 need computer to help us with research. Instead of picking up a book you can go online. It's faster and easier. Also, You can look up information on any place or any project and it will help you. Thats the graet thing the @CAPS2 @CAPS3 @CAPS4 has any information. Next, The @CAPS2 @CAPS3 web is also used for keeping in contact. For example, instant messaging. Also you can chat on @CAPS5 or @CAPS6. You can even go in chat room. But just keep in mind know who you're talking to because it might be a stranger. Anyways you can use the internet @CAPS7 an easy way to talk to people or to ""keep in contact"". Lastly, @CAPS7 you know the internet is used for research and talking but also for getting anything you want. You can go online and get pictures, games, videos, music or even directions to a place. Also the internet is used to just have fun. I use it mostly for ypoutube, @CAPS5, and for googling pictures. You can look up basicly any thing on line and it will most likely be there for you. In conclusion, the web is used for researching. Also for chatting. Finally for basicly anything you want it for. That is why @CAPS1 should have internet because you can still go online but have fun outside to. But maybe people should cutback a little on @CAPS8.V. Now do you see why I chose this side? Maybe in the future there will be a way to go on the computer but be active to." 4 4 8 +877 1 "Dear editor, I believe that computers are an important part of modern life and proves itself to be available because everyday. Many times we don't even think about using computers, it just becomes a part of our dayly routine. We use computers everyday in many ways, sometimes to stay intouch with a far away friend learn about and experience faraway places, or @MONTH1 be ever to practice hand eye coordination. Computers are so benifical to our life we might not be able to live without them. Most people have experienced a friend or relitive move, when this happens not all hope is lost because with the use of you run stay in touch. Many computers nowadays have built in webcams which alows you to get more than just an email. With these systems you can actualy get an image of your fried or relative. Even oprah winfrey uses the webcam feature on computers to have people ""skype"" on to her show. In adition to this there are many other ways to stay in touch even if your computer is older and have. These reletively new ""social networking series"" include facebook, twitter, and many more. Every morning when i wake up and on sportscenter i always about what famous are posting or twitter pages. This is just another great use of computers. In this economy not many people are spending thousands of to go to a beach paradise in the but with the use of computers, you can go there virtualy. Computers are great in this aspect because they alow you to learn and experience many expensive things for. For example if you wanted to learn somthing about india, you would dn't have to go to the local library and check out a book, you could just type there are many such as this that give you access information that you could ever need. This prooves also to be valable if you are studing faraway while a paper. The computer is just a great way to get information with out every having to leave your home. Hand-eye coordination is an important skill that many people lack. It alows you to throw a baseball, play videogames, or even drive car. Many computer sceptics believe that you don't benifit from using computers but a recen study done by @LOCATION1 news and report reveals that people who use computers had @PERCENT1 better hand-eye-coordination than computers users. When driving you often need to operate the car, up the radio volume, and pass out goldfish to your kids at the same time, so this could be as where improved hand-eye cordination would be handy. Hand eye coordination is an important and this skill is further developed by the use of computers. In conclusion, computers are benificial both in hand-eye coordination and in communication, as well as in geting information or a topic. Computers are one the most significant ever and are valuble in many many ways." 6 5 11 +878 1 "I think using the computer is great. You should heed my advice, people should be useing computers. Computers are an exelent way to comunicate. People can connect with others from all over the world. My dad moved to brazil so we have ben communicating via, @CAPS1-mail, @CAPS2, and even facebook. Its the easyest and cheapest way to comunicate. If I call someone from a different country it would cost me way more but if I send them an @CAPS1-mail its cheaper. Studys from the university of @LOCATION1 show that @PERCENT1 people think its easyer and to use a computer to comunicate. More over you can do it instantly so it gets the information anywhere in milliseconds. Computers are indeed the best way to comunicate. Another thing computers are used I for as learning. Many people from around the world have learned diffrent languages from wed sites or programs that have great instruction and lessons. I learned to play guitar with maney programs and online lessons. Maney people depend on computers to get information and learn about things. My mom is a secretary at an inseurens broker companey. Without computers the coustemers couldnt learn about the diffren policeys that there are and they misth be spending more money then needed on insearence. With out computer scientests couldnt do much reasarch or learn about plants or rocks. Computers make it easyer for them to study and learn about @LOCATION2 and everything. Doctors wouldnt be adel to do half of the thing they can with out a computer. They learn about diffrent sicknesses and broken bones by useing computers. @PERSON2 said she couldnt be able to help out as many people with out the use and help of a computer she states that she learned @PERCENT2 of what she knows from websites that have in formation about the humin body. Even teachers say that they set better teaching skills from web sites. Builder and modern desiner @PERSON1 says he learned about different building designes that are sturdyer and stronge shapse he used this in his building today. I hope that you can how see how great computer are and how much they help our present day citizens." 4 5 9 +879 1 "Dear @CAPS1, @CAPS2 do you think is the best technology made so far? Computer! They are the best technology because you can do anything on the computer. My friends say computers are one @ORGANIZATION1 the best technology because the internet can help a lot @ORGANIZATION1 things like if you have research paper. Research has proven that computers are a positive effect on people. My mom says computers are one @ORGANIZATION1 the most hardiest tools in the world. @PERCENT1 @ORGANIZATION1 my friends say that computers are one @ORGANIZATION1 the best because you can get help from the internet on homework assignments. They say that for people to talk online with other people. They said that they can interact with family members who live far away. They also said that on being on the computer has taking more teens @ORGANIZATION1 the streets and in their homes. Dr. @ORGANIZATION1 has done extensive research and has proven that being on the computer teaches you hand-eye cordination. Another thing he has proven is since computers has been invented the violence rate has gone down because more people spend time at home on their computers rather than out on the streets. He also proven that since people have started schools the success in school grades has gone way up. He thinks they have gone up because, instead @ORGANIZATION1 students reading long boring article on someone or something they can just search it on the internet. He said using the internet also saves more time. My mother syas when she was younger the computer gave her the ability to learn about far away places. My mother said that the internet would also let you learn about people customs rather than reading books because some books have not yet been upgraded and you would want to learn about their newest customs also. My mom thinks that using computer is a posotive effect on the world. @CAPS1 you are doing a fine job at writing at your job. My friends say computers are helpful, research has proven that computers have dropped the percentage at violence down, my also thinks that the computers is a posotive effect on us. I know you will agree with me when I say that having computers has put a powerful effect on people it gives people an easier time in life." 4 4 8 +880 1 "Dear, Local Newspaper, @CAPS1 @PERCENT2 of the people would agree that computers are useful and by having them they help ability to learn about faw away place. They also, allow people to talk to other people online. Lastly, computers are importat @CAPS2 people that work with them. there are many reasons why I believe that computers benefit our society. Do you know that computers give people the ability to learn about faw away places. Sometimes people, dont know when they want to leave the country. With a computer you can organize it all. Somoe people like my family, like to go visit their familys in other places, @CAPS2 example, once my mom told me we were going on a trip to @LOCATION1 to go visit our family she told me she already got the tickets on the computer. I was very happy when we went and I saw how beautiful @LOCATION1 is. Some people like to see new and beautiful places. Such as , @LOCATION3, @LOCATION2 and even @LOCATION4. Let me tell you about how computers allow people to talk to other people online. Most people have myspace and that allows kids my age to keep in touch. Also, facebook that you can and people that you probly havent seen in a long time. @CAPS2 exsample, one time I was looking aroung facebook and found my old bestfriend @PERSON1. I was so happy cause when she moved I thought i would never talk to her again. I am @PERCENT1 positive that everyone in this world has a yahoo you could find people really quikck and talk to them. Would you belive that there is so many jobs and responsibilities that require you to have a computer. Such as scientists they all have to have computers or else they wouldnt be able to invient all the great things they make. Also, secretaries they have asign dates @CAPS2 their bosses. @CAPS2 exsample, a secretary @CAPS2 doctor has to be able to give and to change appointments. Lastly, students that go to school and most importantly collage with no computers, they wont be able to do their homework. Most people would agree that computers have a positive affect on people. @CAPS2 the reasons that they give the ability to learn about faw away places, allow people to talk to other people online. Computers are very important to people who work with them." 5 5 10 +881 1 "Dear Newspaper, @CAPS1 being able to find the information of anything with only one hand. Computers benefit people because the can talk online with others. Also people have the advantage of learning about faraway places. Lastly you are able to find lots of information quickly and easily. Computers do benefit society. Furthermore, with computures people can talk online with others easily. All @ORGANIZATION1 students use the computer daily to video chat with friends or instant message parents! @ORGANIZATION2 discovered that computers keep families closer because they are able to see each other virtualy when someone is away. @PERCENT1 of @CAPS2 use their computers to talk with others online. One could see why computers are bad, but @CAPS5 they benefit a lot of people everyday. @CAPS1 walking into a room where people of all are learning about computers are helpful to @CAPS6 individual because the can learn about places. Computer says ""Computers are information in a compact "" @CAPS3 out of @CAPS4 people use the computer learn about far away places. The @LOCATION1 lives had found that using the computer to learn about far away places than using multiple , Some can use why books are to use, @CAPS5 omputers are. Lastly, computers are great because they teach @CAPS6 to have better, @PERCENT2 of people found their after using the computer for one haour. @PERSON2, @PERSON1, says ""The computer can help to develope stronger reflexes."" @CAPS6 could see why computer slow reflexes, but @CAPS5 they mae them better. Computers benefit society greatly. Computers help people talk online with others. Also people can learn about faraway places. Lastly the computer strengthens hand eye coordination" 4 4 8 +882 1 "Dear @CAPS1, @CAPS2 people use computers more? No they @CAPS2 not use computers more. Computers have many benefits to society but it also have many negitive effects on people who use them. People are spending more time on computers and less than exercising, enjoying nature, and interacting with family and friends. First, people spend less time exercising. Most athletes have to stay fit and healthy to play in there sport. I am a wrestler and a baseball player but if I don't spend some time a day working out or staying active. I will be out of shape and weaker once my match or next game come along. I'm sure olympic athletes work out and stay active daily so they can be stronger and faster than anybody else out there so I don't know why people sit at home on the computer all day. Second, people don't take the time to enjoy nature. Nature is one of the most beautiful things on this planet. Wether you hiking a mountain of a lake, nature is all around you. I personaly love to hunt and fish. I take the time every sumer, @DATE1, fall,and sometimes winter to go out, enjoy nature, and have fun, and so do many other people in the world. Everyone who sits at home on the computer can't enjoy this gift that we have been given. Third, people won't take the time to with family or friends. If you the computer all day ther you can't go out and be active with your friends, or go for a bike ride with you brother. If you are on the computer you on family friend time that could be being used as a fishing trip or a walk in the woods. If you don't spend time with your family because of something you're doing on the computer, then you just a person. You won't valueable thing that you have in life you r family and you @CAPS2 always be able to make time them. Finally, @CAPS2 people use computers more? No, they @CAPS2 not use computers more. Computers take time away from exercising, enjoying nature, and interacting with family and friends. There are good things about computers, but the less time you spend on them, the better it is for everyone." 5 4 9 +883 1 "@ORGANIZATION1, In @DATE1, more and more of the newest technology is being brought out to the public. Computers, @CAPS1-bars, telephones, and more are getting the most hi-tech softwares and machinery to @CAPS8 some of the most meraculous things happen. There is a cell-phone that allows you to turn of you lights in your house from thousands of miles today. This technology can be the best thing that has ever happend to the world. Some might argue that though. But I am here to argue The @CAPS2-sayers. With the new computers, people are able to talk with people all over the world. Also dreams can some true for people that never have the chance to follow @CAPS3. Also, questions that have been asked can now be answered. I have a number of cousins in @LOCATION3 who I only talk to if I go to visit @CAPS3 which is very rare. Because of some of The programs like @CAPS4, or @CAPS5 @CAPS6, I am able to converse with @CAPS7 cousins. Some people say That The @ORGANIZATION2 can @CAPS8 kids like me want to miss out on some quality-time with @CAPS7 family. Well, @CAPS7 brother is going to @CAPS10 in six months and I am going to want to talk with him. With phone companies haunting their costumers with scary prices, @CAPS7 family is not going to want to sit on The phone with him for @NUM1 hours and have to cut into their savings. On @CAPS7 @ORGANIZATION2, there is an application called i-chat which allows me to talk with @CAPS7 brother and see him as if he were home with me. @CAPS7 dad found out about @CAPS4 and he decided to try it out. As of now, he has reconnected with tons of his high-school Friends @CAPS13 get back in the game. Maybe you can find a special friend that you almost forgot about. Or you can find out what is happening with your sister who lives in @LOCATION1. The @ORGANIZATION2 also allows those less fortunate who can never afford a plane ride to discover a place they've always wanted to go. The internet offers virtual tours of places like the @LOCATION2 of even @LOCATION4- @CAPS14 places can be explored without stepping foot out of your house. Also @CAPS15, a website that offers millions of videos, incudes tourtorials for dances, sports, tricks, and more @CAPS13 you don't have to break into the bank for charged lessons. Another good thing about the @ORGANIZATION2 is it offers mostly reliable information. Sorry didn't get to finish @NUM2 paragraph & conlusion." 5 4 9 +884 1 "Dear local newspaper, I've heard that you were taking a survey to see if people believe in computers or not. Well I'm someone who does because they can talk to there family and friends on sites like facebook, myspace, & aim. They can also exercise on the internet because if they go to youtube, then they can find different types of positions that they can do. Today, over @NUM1 people use computers and it is like @PERCENT1 adults anfd @PERCENT2 children use computers which means that more kids today are doing athletic sports. The adults use computers for there work ability and in schools. At newspaper places, they need to have a computer just to type the daily papers and if there's no compers, then how ill the type there work. As people get home from wherever, and they didn't get the daily paper, the you can go online and look at it. For students, computers are so important to us because we get to talk to our friends and when we need to look up something, we just go to the internet. In some schools, they have really big books for different classes that they need to bring home. And that's bad for your back, so then schools came out with the books online. For those people who love sports, you can look up you favorite team and see if they won that weeks game. There is also vertual sport games that you can play for that is on the computer. When you first move somewhere oout of town, you can go to google and see where is a good town to live in and a good school system that you would want your child to go to. But there is so man things that you can do online and on computers. So thanks for letting me help you with your decision." 4 4 8 +885 1 "Dear Local Newspaper, I just heard that people are spending too much time on computers than with their families and friends. No @CAPS1 is not true just listen to the reasons why in a computer you can find people that you'r looking for. Also @CAPS1 can always help you on something that you need help on and you can do different kinds of activities. If you keep on reading you are going to see all the tipical reasons why I think that people are not spending much time on computers than with their families. (@NUM1) @CAPS2 reason why I think that people are not spending much time on computerr is because, the computer can help you look for a family member that your looking for or a friend. My second reason why I think this is because naybe you never met that family member and you want to get to know them. My last reason why I think this is because @CAPS1's really a person that you really love and need in your personal like. These are the reasons why I think that they are not spending to much times on the computers. (@NUM2) @CAPS3 reason why I think that people are not spending too much time on computers is because @CAPS1 can help you in many things that you need help on. My second reason why I think that they are not spending too much time on computers is because you can do your homeworks their and @CAPS1 can help you with @CAPS1. @MONTH1 last reason is because if you find something really difficult that you dont know @CAPS1 helps. (@NUM3) @CAPS4 I think that people are not spending too much time on the computers because you can do different kinds of activities their. My second reason why I think this is because when your having a @CAPS5 party and you need invitations the computer can help you. My last reason why I think this is because if you want to move to @CAPS3 state or country you can see the place on the website and then you can go. These are the reasons why I think that the computer is very helpfull. (@NUM4) I hope that after reading all the tipical reasons of computers like, @CAPS1 can help you on many things, you can look for people, and you can do different activities, that I really convinced you, also I hope that you really liked and enjoyed reading my letter." 3 4 7 +886 1 "Debates have come up on whether or not computers are benefiting or destroying society. Computers are only helping in aid in the growth of society. Computers allow people to interact with other people, see and discover other places and people, and teach hand-eye coordination. Computers are helping people more than they are hurting them. First of all, computers allow people to meet and interact with other people. There are many popular websites that allow people to chat and communicate at anytime. Before computers were invented in order to talk to someone you would have to meet with them face-to-face, or send them a letter and wait on awfuly time get a responce. Now people can simply type up an email and hit send. Just like that, their message is sent to another computer for others to read and enjoy. Another advancement computer technology has developed is picture sharing. All one has to do to display and show their pictures to everyone is done by simply hooking up a camera, uploading your pictures onto your computer, and posting them on a site like @CAPS1 or @CAPS2 bucket. Any in- the- @CAPS3 person would @CAPS3 that computers are very useful. Secondly, computers are important because they give people the ability to learn about and discover people & places that are new to them. In the old days if you did not @CAPS3 about something or someone, like a movie, you @MONTH1 never find any info about them. Computers have internet websites and search like @ORGANIZATION1, that allow you to type anything and instantly find all the @CAPS4 information and pictures or that subject. These technological advances have given many people the general knowledge that they very well @MONTH1 need in any given situation. If you missed the best part of a you could easily go on a computer, look it up and importance of computers in every day society. Last of all, computer hand - eye coordination that is vital to every day life. Typing on a computer in leisure time is a skill that will be looked for everywhere. In fact, many employers @MONTH1 hire you based on your keyboarding skills, ones one is skilled enough they @MONTH1 even teach themselves to type without looking at the keyboard. Although computers are not meant to replace your friends, family, and @CAPS5 air, they are very important tools that give you skills you will use for the rest of your life. Any individual that is highly educated would see the pluses in computer usage. in conclusion, computers are vital in order to properly function in many situations. They allow you to chat and send pictures to loved ones, teach you about faraway people and places that you @MONTH1 not @CAPS3 about other wise, and help one improve on their hand - eye coordination. Computers are very useful peices of equipment." 6 5 11 +887 1 "Computers effect a lot of people. I fully support the advances in technology. I support this because computers can let you talk to people that are faraway from you. Computers also teach hand-eye coordination. In addition, computers let you learn about countrys all over the word. Rapping it all up, electronics should keep advancing. Say your bestfriend moved to @LOCATION4. You won't see her but you can talk to her on the computer. Now in day there are a lot of websites that you can chat off at or you can also do a webcam chat like ovoo. For example, in seventh grade I moved from @LOCATION1 to @LOCATION2. I was so upset about leaving my old friends. Turns out I was fine. I just made more friends when I moved. I would make plans with my friends over facebook chating. Consequently, computers help a lot you keep in touch with friends all over the world. Computers build up your skills for everything. Hand-eye coordination is the biggest skill that computers teach anyone. When your watching an adult type most of them can type without looking at the keyboard. This is an example of hand-eye coordination. Hand-eye coordination is very helpful in sports. In basketball you should dribble and look ahead. Kinda like typing. As one can see computers help with hand-eye coordination. Google gives you answers to anything. If you have research to do most people use google and google is found on the computer. You can learn about @LOCATION3 or @LOCATION4 you name it you can type it in google, and you can learn everything about that country. For example, last year everyone had to pick a state and learn certain things about it. Most people used computers. Computers really are the best electronic in the world. There are many electronics that effect people. But, computers effect people the most. Computers let you talk to family and friends around the world. Also, computer teach you hand-eye coordination skills. Lastly, computer teach you about many countrys. In conclusion, computers should be advanced." 4 5 9 +888 1 "Dear residents of @LOCATION1, @CAPS1 has come to my attention that there has been some controversy about whether or not computers are a good thing and/or helpful to society. I strongly believe that computers are a very helpful resource that make day to day life easier. Computers can help us in so many ways including making learning easier, helps students do better in @CAPS4, nad serves as a great teaching tool. One reason that I support computers is because they make learning easier. You might ask hao a screen and a keyboard can make learning easier, @CAPS1 sounds crazy, but its true! Let's say you're a middle @CAPS4 student that has been assigned to write a paper on a designated topic; @CAPS2 instead of spending hours upon hours looking for the right information in a library, you could just google search what your topic in and @CAPS3! You have exactly what you need to know in front of you within seconds, prettty cool right? Still don't believe computers are helpful? What if I told you @CAPS1 allowed students to do better in @CAPS4? That's right, computers allow students to do better in @CAPS4. Websites such as edline allow teachers to post their students grades very quickly. How is this helpful? When you take a quiz your treacher has to grade over @NUM1 quizzes! And with things like absentees, weekends and vacations, the day you get your quiz back gets delayed further. Sometimes kids don't get their quizzes back for two weeks after they took them! By the time you get @CAPS1 back @CAPS1's time for a chapter test with @PERCENT1 of your grade and you just found out you didn't do @CAPS2 on one of the sections! This lowers your ability to do @CAPS2 on the test. But if your grade was posted on the internet days before , you will have more time to study and know what to study and you will do @CAPS2 on the test. As you can see, computers are very helpful for students, but are they good for teachers too? The answer is yes, computers are a good teaching tool. Has this ever happened to you? No matter how much your teacher explains to you, @CAPS1 just seems like there are speaking another language? @CAPS2 what if they showed you a cool video on youtube explaining @CAPS1? Would you learn better with a visual in front of you? I sure would. Computers are also great for teachers because @CAPS1 gives them the ability to email other teachers if there is a problem and get the latest information about the @CAPS4 and what's going on. Do you understand why computers are useful, now? I hope you realize how useful computers are because they make learning easier, allow students to do better in @CAPS4, and are a great learning tool. These are only some of the many reasons computers are useful and I hope you keep using them in our community." 5 5 10 +889 1 "@ORGANIZATION1, Computers have great benefits to our society. Whether it is because it helps people get their work done. Or it allows people to communicate without telephone numbers. Maybe it's because it helps students study. With any of these reasons, computers are really benefiting our society. Have you ever had a paper assigned one day and due the next? If you think back what had helped you complete the paper? Most likley it was a computer. In a recent survey @PERCENT1 of college students say that they would not be getting the good grades that the were getting if they didn't have a computer. But, computers don't just help students, they can also help adults in the working community. I know that I have made friends over the years that have moved away and that I have lost touch with. With a computer it is easier to find those people and start talking to them. With different types of programs, you could most likley find anyone. Whether it's @CAPS1, @CAPS2, @CAPS3, or @CAPS4. Nine out of ten adults said that they found a lof of their highschool friends thanks to the computers. Furthermore, computers are a way for students to study. Students could find search engines and reasearch a paper. Or they could play educational games. With a computer if a student forgot his or her homework they could most likley use a computer to find out what the work was. When I went to the middle school to survey, @NUM1 out of @NUM2 students said that they would check to see if it was on the computer before asking a friend. So as you can see computers have benifits to our society today. Three just happen to be that they help people get work done faster, they help keep you in touch with friends and they help students to study." 4 4 8 +890 1 "I think that computers have positive effects on peole. People can find out important news online, and you can connect with people you don't see often. Also, you can order anything in the world online. These are three reasons why I believe computers have a positive effect on people. Computers inform people about important news. If there is a blizzard people can find out ahead of time and stock up on food. If there is a burglar going around, people can find out, and lock all doors and windows. And by knowing all this information, it helps helps people plan events, like birthday parites. Finding out important news is very helpful, and conveniant. And @PERCENT1 of people, are less to inconveniances, if they know the news. Another way computers have a positive effect on people is by allowing them to connect with people they don't see often. This provides an easy way to share events tha have taken place, and just have some time to talk face to face. With video chat, you can show off new , or newborn baby. You can share you want with people you barely see. Experts say that freindships last longer if you talk to each ohter often. and with computers, this is possible. A third way computers help out is allowing you to order anything in the world online. If you need a japanese doing for someone in ohio, you can order it online. If you're are old, and can't go to the grocery store anymore, you can order then online. I have seen that people who can order everything online, don't have to do a lot of driving, and this saves time, money, and gas. This is also very convendent and is less stressful then waithing in lines to purchase on item. These are just three ways htat computers have had a positive effect on people. the are that you can find out important news, you connect with people you don't see ofte, and you can order anything in the world that's why I believe comptuers have a positive effect on people." 4 4 8 +891 1 "Dear Local Newspaper, Computers have a humongous positive effect on people. I support advances in technology. It's @DATE1; we shouldn't be finsing information in books or writing everything by hand anymore. Life has gotten easier for everyone. Everyone can use the computer for communication with friends or family. We are able to learn things quicker by using computers. Working citizens use computers to help them with important jobs! Everything is done on computers! Computers serve as a great source of communication. Having a @CAPS1, @CAPS2, or @CAPS3 account allows you to chat with people all over the world. It's much easier to talk to someone online for long periods of time because you won't have to pay for phane minutes! Even @CAPS4 chats are avaibale for computer users. Having a @ORGANIZATION1 or @CAPS5 allows you to do a video chat with someone. It makes you feel like thay are actually there in the room with you. If you have a close friend who moved across the country, then these ways to communicate would be very helpful to you! You cant have these accounts without a computer; therefore, we need computers! Computers have made our generation very intelligent. We can easily look up facts about anything on the computer. Now, if there's something we're curious about, we can just look it up on google. In the past, we wouldn't feel like looking in a book so we waid forget about it. Kids could get help with homework online if they are too shy to ask another person. At this point in time, we could even take online college courses! Being able to go to college at home can really come in handy in some people. Computers help us with our education. Adults who go to work everyday really need to use computers! people working in the medicine field, use computers to keep track of all their patients. Now @CAPS6 use computers to organize lesson plans and print out reminders for their students. Scientists use computers to do research on things for their ecperiments. Engineers use programs on the computers to help design what they are going to build. Computers wvwn allow you ti advertise your small business or company to the whole entire world. Computers have a really positive effect on jobs in our society, which is a good thing for our economy! Computers benifit us physically, mentally, and socially. Certain computer games can improve our hand eye cordination. We can learn about many things from computers! They really make us more intelligent! Computers give us a way to communicate with long distance friends and family. Websites like @CAPS7-@CAPS8 even give adulsts a chance to find their soulmate online! The positive effects of computers on people are infinite, but we need to learn not to take them for granted." 5 4 9 +892 1 "Dear Newspaper, I often think about the effect of technology on humans. The human race has discovered many things but our biggest advance is technology. New machines are robots are built all the time, and our knowledge of machines and artificial minds is rapidly growing. The most widely used machine is the computer. People use it for all sorts of things, communucation, awareness and learning and entertainment. Some experts are concerned that people spend too much time on computers and it couldn't agree more. Computers maybe useful but they are over used. People spend more time staring at the screen than exercising and interacting with friends and family. Computers are also not always dependable or safe. First of all, the biggest computer users are adolesents. Young adults spend hours on websites like @CAPS1, @CAPS2, and @CAPS3 communicating with their friends. At their young age, exercise is very important. Obesity in children from lack of exercise is becoming very common, and its because young people are glued to their computer screens. The averange child need @NUM1 minutes of exercise a day, and many have very little none. I say the computers are ok, but only in small doses. The growing mind and body needs to move and exercise. If internet use among children and teenagers is not cut back, some worry that there will be a lot more health problems in the future. Although it is very east to quickly communicat through the internet, it can sometimes do more harm than good. Kids who spend hours @CAPS4 or emailing their peers spend less time with their families. I've heard parents say they barely see their kids because their always either doing homework. Also, @CAPS5 to @CAPS5 conversations are fading. Because of the internet, people no longer need to get together and talk, @CAPS6 turn on their computers, which is a waste of energy. Why not just go see your friend @CAPS6 of typing all day? Lastly, computers have just as many disadvantages as they do advantages. There are plenty of dangers out there in @LOCATION1. Online predators lurk as many comers, and your personal information and identity can easily be stolen. The risk of any of these things happening is very high. Its better safe than sorry. So, if you think about it, we really don't need computers to survive. You need your exercise, don't blow it off for online chat. Also, its very important to interact and be part of your family, and less internet use will cut down the risk of identity theft, or any other problem or virus. It's your time now. Get outside have @CAPS5 to @CAPS5 conversation with a friend and internet with your family. You can be healthy, happy, and safe without constantly typing any at the keyboard." 5 5 10 +893 1 "Dear Newspaper, I think computers are a good thing, people use computers for buissness. Computers allow you to interact with people far away. They also allow you to do research. That is why I think computers are good. Computers can be used for many different things. They can be used for buissness. Some people work at home on computers. They can also be used to interact with people far away. You can interact with someone who you don't see on a daily basis. Computers can also be used for research. You can do research on a school project or on other buissnesses you interact with. Computers are good. Some people use computers for buissness. You can also interact with people far away. You can even do research on a computer that is why computers are good." 2 2 4 +894 1 "Dear Local Newspaper, I have been asked to write a letter stating @CAPS5 opinion on the effects, computers have on people. Some experts have been worried people are not spending enough time outside, but most people are not spending enough time outside, but most people support advances in technology. During this time, computers are becoming more and more popular. They are very helpful in many ways. They allow you to learn new things, are very helpful for school and work, and they can keep family an friends connected. Computers have a positive and helpful effect on people. To begin, computers help you learn new things. If ever there is a question no one knows the answer to ""@CAPS1 it!"" @CAPS1 along with many other search engines are an easy way to find what you are looking for. For example, one day a few of @CAPS5 family friends come over we were eating dinner. the discution lead to the question of ""who is the @CAPS6 that plaies @CAPS3 in the @CAPS4?"" @CAPS5 little sister typed ""@CAPS6 of @CAPS3 in the movie the @CAPS4"" and @CAPS9! There it is @PERSON1. Just like that, computers help to get questions answered fast. Computers also help you learn new things like typing skills. just learning how to work them is a new skill. A recent poll shows that @PERCENT2 of people in nursing homes who learn how to use the computer have much better brain function. Although, there are much stronger reasons as to why computers have a positive effect on people. Furthermore, computers help people with work and school. Computers help you send e-mails for work, make slide shows for presentations, and keep calendars so you can be organised and on time. @PERCENT1 of people use computers in some way to benifit in work." 5 5 10 +895 1 "To whom it @MONTH1 concern, I believe that computers benefit society. Computers are a wonderful household object to have that make life easier in many ways. Computers allow the everyday family to see new places, through photos online, and people, through the internet. Computers also provide a social networking throught a community, state, or even a country! Lastly, a computer is another resort to go to when trying to accomplish something, because there is always something on the internet that will help you. There's a famous quote that goes, ""the largest room in the world, is the room for improvement."" In my opinion, the computers could make that room a little smaller. While experts say that computers are making people spend too much time indoors, and not too much time seeing the wonders of nature outside, the computer can prove them wrong. The internet is a wide ocean of pictures, wordes, and sounds. The computer is the item that organizes it, for your entertainment. There is a picture of just about anything imaginaeable on the internet; from the palm shaped islands of @LOCATION1, to the frozen @CAPS1 tundra in the @LOCATION3. You are able to see penguins in the southern ice cap and the ricefields of @LOCATION2 a bird's eye view all by simply moving your fingers. It's also possible not just to see places but to see people from how for the distance is! Today, people are sending pictures to and from each other via emails. People are actually sharing their memories with each other, all thanks for the computer. I hope what I have just explained now helps me make my. Computers are only here to make our lives. Imagine talking to your friends, not having an with his ever leaving your room. This would or even an impossibility fifty or seventy @DATE1, but this is People's social relationship have greatly progressed the half and it only goes has allowed people to their up on the their up on the their with their family and friends. I'll always a positive thing, using this right way. Having your house to tell, individually, your friend about your time to disney world is such a hastle. If you just put the pictures on a social networking system, like facebook, or twitter, memories will be stored through, litterally, the clicks of aborton. Memories are shared thanks to the social networking ability of the computer. Planing a vacation is a trough job to do, but what if that job could all take place in our sport? An entire vacation can be planned, confirmed and paid for thanks to the computer. Jobs that would normally take hours of researching and calling can be done in @DATE1 minuets for less using the computer. This allows people more time to go have fun with their lives and not have to worry about plannings. Computers allow people to compress hours of work into a matter of minutes. Experts say that computers are taking away people's lives"" I would disagree, because; people are new places or people, social networking is more advanced, and time that could have been spent planning is now living." 6 4 10 +896 1 "Dear local Newspaper, This is a letter about how I feel about the effects of computers. I think computers are great you can, interact with family and friends, learn about things going on around the world, and it could help you with school work. First I would like to say that you can interact with family and friends. You can just go on facebook, @CAPS1, or,myspace and talk, send pics, and comment on other peoples things. There are many groups you can join too, wich allows you to talk to other people and meet new friends. You can also interact with your family if they have a facebook or @CAPS1. The second reason why computers are not bad is because that there are many websites that you can find different information like science, math, history and all that kind of stuff. There are alot of different topics you can learn. You can find information from the weather to where your family history comes from. My last reasoning for thinking this way is that many kids do their homework on computers and if people are saying that computers are bad than the parents are not going to allow them to use the computer for educational purposes like homework and projects. There are many other reason why computers have a positive effects of people. But interacting with family and friends, learning about things around the world and your education depends on computers." 4 4 8 +897 1 "Dear @ORGANIZATION1, The age of the computer is upon us. Every where you go, you will see people with laptops or other portable computer devices. While some people dislike the world's large usage of the computer, I happen to disagree, I feel that the computer is a great @CAPS5 to put out and find information. I also feel that it is good @CAPS5 for people to communicate with ther family and friends who live far away. Lastly, I think that computers provide us with fun activities, entertainment, and a @CAPS5 to relax. What do you do when you want to know what the capital of @LOCATION3 is? You either go break out the old atlas, or, with a simple click of a button on the computer, discover that the capital is @LOCATION4. My point is that with computers, finding information is fast and easy. Also, with computers you can share information as well as receive it. Lets say that you are not a doctor but have discovered a cure for the common cold by using iteams find in everyone's households. What do you do? Well, you could go to the media and do interview after confrence after interview, or, you could simply post it on the @CAPS1. It is plain to see that the computer in an important not in the process of exchanging information. ""I'm sorry @PERSON2, but we can't fly out to @LOCATION1 to see @CAPS2 @PERSON1. We don't have enough money."" I think that everyone has heard a variation of that line at least once. But here comes the computer to the rescue! With computers @CAPS2 @PERSON1 over in @LOCATION2 level is just a click (and or screen) away. By using webcams, you can speak with someone across the world without having to worry about the expensive costs of flights! No webcam? No problem! You can send someone very far away a message through e-mail or instant messaging. Say ""bye"" to expensive phre rides, long phone bills, or years going by seeing a loved one. Computers are,not just tools that are used strictly for, computers can be used for purposes as weel. In other words, computers can be used for fun! How exactly does the make computers have a creative on society? I'll tell you how. Many @CAPS4 are workaholics, also known as people who warr @CAPS5 to much. After a long day of signing papers and fiddling with a budget, wouldn't it be nice to just sit down and play some solitare? Thats possible with a computer, and you don't even need a deck of cards! Computers are full of fun games, like solitare and chess. These games are a great @CAPS5 to help people relax, and trust me, everyone needs relaxation. Having some downtime can really help someone to be a healthier and happier person! Aren't computers great? They can let us to exchange information talk to family and friendss across the globe(without a big pore tag), and they provide us with entertainment. So everyone out there could does not like the effect of the computers have on the public, please reconsider. Computers really are a helpful, fun, and useful tool to society." 4 5 9 +898 1 "Dear Local Newspaper, I think computers have affect on people because firstly, it gives people the ability to learn from faraway places. Secondly, it allows people to talk online with friends. Thirdly, gives online games to little kids. Lastly you can wacth video's that can teach you all sorts of exotic things. My first reason I think computers have affect on people is it gives people the ability to learn from faraway places. For example if I want to go to @LOCATION4 for the @DATE1 and I know nothing about the place I can go online and look up I can look up their foods, their culture, their villages, and even there landscapes. Also the computer is good for book reports if your teacher told you to do a book report on @LOCATION5 instead of going in your text books, goion line you can look up their culture, there food, there location, how is there economy like, what kinds of school the kids go to what kinds of festivals they have etc. My second reason computers have affect on people is because it allows people to talk online with other people whenever they want. For example there are @NUM1 things that let you talk on the computer and that is @CAPS1, and @CAPS2 these two allows you to talk to friends that live faraway from you, my friend lives in @LOCATION1 and I live in @LOCATION2 we don't have cellphones so we go online to eiether @CAPS1, or @CAPS2 ""isn't that great""!!. The computer also allows you to talk from faraway places like if you live in @LOCATION3 you can talk to somebody else in @LOCATION6. My third reason I think computers have affect on people is it gives online games to little kids. For example when I say games I mean educational games like reading games, math games, writing games, etc. Statistic say the @PERCENT2 to @PERCENT1 of kids learn more things on the computer than they learn in school that a huge percentage even for kids. Also when kids play computer games it more fun to them then sitting in class all day like my litt " 4 4 8 +899 1 "Dear newspaper, @CAPS1't you love to go in your computer? @CAPS1't you get a lot done on them? Well I think they have a positive effect on people. I strongly agree that computers have a positive effect on our society. These are my three reasons; you can chat online with friends and family, help people do research on projects, and help people get there jobs done in everyday life. So please, local newspaper keep reading and I will change your mind about computers effects on people. Do you have family or friends who @CAPS1't live around here that you want to keep in touch with? Using the computer for email or a chat site like facebook will do that. I have cousins who live in @LOCATION2. The only way my family can keep in touch with them not spending money is email. My mom and her sister are sending emails to each other all the time. If you ask me I think that is a positive effect computers have. Have you ever researched anything using a computer? I knew I have! For a school project in @CAPS2 I had to research about @LOCATION1. I did all my research on the computer. I got an A+! I would not have gotten that grade if I did not use the computer to do research. Do you use a computer in your job? Well even if you @CAPS1't I know a lot of people who do. For example, my dad uses a computer for almost the whole day he is at work. He is a @CAPS3 @CAPS4 which means he managed portfolios. He has to use @ORGANIZATION1 to check on the stock chart. Another example is my mom, teacher, she has using the computer to email parents if the student need help or up. So as you can see computers have good effect on our society. These are my reasons : you can chat online with friends and family, helps people do research on projects, and helps people do research on projects, and helps people get there jobs done in everyday life. I hope you agree that computers have a positive effect on our society. Say yes to computers good effect!" 4 4 8 +900 1 "Dear @ORGANIZATION1, I am aware that some people think computers have a negative affect on others, but I think it's the opposite. Computers have completely changed the world. People can save work on them, visually experience things they've never seen before, or even catch up with old buddies. In my opinion computers have a positive affect on people. With computers you can create documents, pictures, and even movies that will stay on your computer forever. How about your newspaper company? Does somebody hand write every paper that comes out? Without computers hundreds of copies of your newspaper wouldn't be able to b made every day. Not to mention, what would happen if you didn't use computers and a fire occured? All of your hard work will be turned into ash, but if it was on the computer you be able to retrieve it. You can save anything on a computer. Another reason why computers have a positive affect on people is because throught the internet you can visually experience places or things you couldn't before. If I was going to book a vacation I wouldn't just trust a book, I would wont to go on the computer so I could see pictures, videos, or hundreds of other articles I couldn't see anywhere else. This goes for anything else like furniture, instruments or even cloths. Computers offer alternative views that books don't. Not only can computers save data and give you visuals, but they give you an oportunity to catch up with old friends, relatives, or even meet new people! Instead of endlessly searching through phone books you can just type in their name and you bound to find somewhere on the internet. Popular websites like @CAPS1 make this extremely easy. When my dad was in search of his childhood friend he typed his name on @CAPS1 and ended up calling him @NUM1 minutes later! That wouldn't have been possible without computers. Computers truley do have a positive affect on people everywhere without them many things today wouldn't be possible. Hopefully others will agree with me too." 5 5 10 +901 1 "Dear local news paper, In @CAPS1 oppinion I think that those who makes compiuters should make up an times added to the compiuters. There should be a law that people has to go out and exercise before and after then use compiuters finally, I think that childrens should use the compiuter less than the adult fee health reasons. @CAPS1 first oppinion that I think that those who makes compiuters should make timers added to the compiuters to time tha amount of tim people should take depending on what they are doing like when some one is playing a game they spend hours playin instead of doing a diffrent activity. Also like when a person is doing their home work they start getting carried away in taking their time going slow and ends up finishing very bad. @CAPS1 second oppinion that I think that those who makes compiuters should have a law that people has to go out and exersise before and after they use compiuter because there is a big percentage amount of people who are obeast because everyone sits in the sits in the compiuters and starts to eat while they are playing games and watching videos for hours and they dont take a break to go outside and @CAPS1 third and final oppinion that I think that those who makes compiuters should have childrens use the compiuter less than the adults for health reason's because kids are always looking at the compiuters an their eyes are always getting red and then they start to not being able to see as well as they used to then they end up having to need glasses or abetter perpscription glasses. Also becaus kids are usually going into chatting sites and they start to talk to people who they dont know so they end up getting raped or kidnapped by the person that they went to talked to for hours. So local news paper will you make that change for the society and for the childrens? Because I would!" 4 4 8 +902 1 "I think that computers help people in there everyday lives. They just make things so much easier. Computers help us to find information @CAPS2 we needed. Book hotels and airliners, they even allow us to interact with our friends. Yes it might take away times to do other things like exercising, but we can find out away to do both. Everyday I would go on the computer a little bit and then go outside for an hour to play basket ball. People just need to find a way to it out. Computers are good for if you need to find information about anything. All you need to do is type in what you want, and within seconds you have hundreds of different links for your desire. For example if you are in @CAPS1 school and you are deciding what college that you should go try the a great place that you can go to get information. People all over the world do that just about everyday. It is also a great place if you need information if you are doing a project in school and you need more info on your subject @CAPS2 I say it make things a lot easier there is no better example a reservation for a hotel or buying a plane ticket. Both of those things do on a computer because otherwise odds are you with of then. If we didn't have computers you would need to go to the hotel and get a room, and if there were no room you out of luck. On a computer it will say if they have any or not you would need to @CAPS3 tickets would have the exact same thing. Computer say @CAPS2 there are available flights to your destination and how much. So @CAPS2 you go to the airport you are not surprised. Another good reason why computer are good for people is that it helps your interact with your friends and family @CAPS2 you can't see them. There so many different ways you can do it to. On @CAPS4, @CAPS5, myspace. All the websites like that help you stay in touch with all of your friends. Even now they have somethings where you can actually see the person you are talking to over the computer. So if you have no chance of seeing each other anytime soon you can talk to them then. I even do that with my brother, he is in college and I dont see him that much so I just start chatting with him on the computer. Now those are some reasons on why I feel that computers are a great part of our lives. Thing like finding information and booking hotels, airplanes, ect. All help make our lives a lot easier at times. And talking with other people just makes us happy. Now I hope you see why computers are a good part of all of our lives." 5 5 10 +903 1 "Dear Local Newspaper, I believe that people should stay with computers. I have three reasons for this issue and they are @CAPS1, @CAPS2 and @CAPS3. I think these reasons woul'd be a good for this issue because every human being can do these three this on a computer. One of the reasons why I think people should stay to computers is because they can learn. People can learn by using computers because if a child is in something like animals. They can go on the internet and look up what they need to find children can also learn on the computer by putting their jump stat first grade give in the drive. children can learn like this. My second reason why people should use stay to computers us @CAPS2. I think @CAPS2 because you can talk to your friends about. They can also talk about if they want to go some fun. For example same good exercise. Another reason why I think @CAPS2 is if your friend is explaining something to you, that your. I also think @CAPS2 can be had for other to a and. The last reason why I believe people should stick to computer is because people can discover different things on there these things can be had and some can be good. For example a good thing that I can discover is that if there is something wrong with my computer and I figure out how to fix this that would be good. And I will know about computers and man what to do. A bad thing about @CAPS3 the computer I can do is bringing up a virus. That know matter what I do I can't make it go away and the computer ends up being broken. Conclusion, Local newspaper this is why I believe that we should keep our computers. Because many people even young children can learn and they will end up remembering the things that they learn." 4 4 8 +904 1 "Dear town of southing ton, Computers our town are very important for instance. For all of the banks we have computers and for almost every job. We need computers for life, and that doesn'@CAPS1 make use lazy and forget full it makes us busy. The only situation with someone who is online being lazy is with a teenager playing games. But the only reason some kids do that is because they all dont want to go and exercise or run around with their family who they see everyday. But because they want to talk to their friends make plans and just talk while they play togeather. If someone is ignoring their family or becomeing more lazy, it is because that is their choice to sit around and do nothing. And I do agree that people are becomeing over weight but I think that is because some people consider a workout to be an hour of lifting and running once a week. And that isn'@CAPS1 right. I think that this news paper should post up adds about gyms and maybe that will lower the faty meter in our town. or if they think people are neglecting their families have people work less so they can go home and see their families. As for teens I think you parents out there need to set some rules like @NUM1 hours of play a day, @NUM2 hours on a @DATE1, and if they don'@CAPS1 listen take the game away for a day of two, but that might not get them to spend time with you because they @MONTH1 be mad, but it will get them outside or atleast doing somehting more active and not watching @CAPS1.V. or playing video games all day. Also I know this from expieriance becouse I am a teanager and I always go outside and run around when my parents take my games away, and it's @PERSON1 that of homeworld. Please take my advise and your happy caring family will always stay togeather and active and not always sitting on the computer stressing over work and playing videos games." 4 4 8 +905 1 "Dear Newspaper @CAPS1, I, a member of the public is writing a letter to you to inform you what I think about on the subject of if people spend to much time on the computer. My first idea is sometimes people do spend to much time on the computer than usual. Its a problem because some people began to become over wieght & start to lose control over the eating habits. My second idea is computers do alot of things for us. But there are still alot of things a computer cant teach us how to do. So computers are helpful but they're not always find something to do outside but whats sometimes different with a computer. My last & final idea is people become to attached to their computers & lose sight of what really matter, such as exercising & fitnesss. Then people are angry when their computer chrashes & forget how to do things because their always on the computer. And those are my ideas on the subject about if people spend to much time on the computer but not as much time with friends and family." 3 3 6 +906 1 "Dear @LOCATION1, I want you to imagine it's a beautiful @DATE1 day. The birds are chirping, the smell of beautiful flowers are filling the air, but instead of playing outside with your neighbors, you are inside trying to master the unbeatable game cubefield on the computer. Computers have had a negative impact on today's society. When people are engrossect with whatever they @MONTH1 be doing on the computer they become very lazy, they lose the motivation to go out and exercise, people also lose intrest in helping around the community. This is why computers have a negative impact on todays society. Statics shows that @PERCENT1 of people would rather stay instead on the computer then out and about helping and working around their neighboorhood. Computers have had such a negative impact it makes people want to stay glued to their chairs with their eyes glued to their monitors. Yes computers have had a lot to do with a lot of technical advances, but at what cost do these technological advances come? Many kids are becoming obese and lack my motivation to come out of their room off of the computer. Computers are making society very lazy this is why they have a negative impact on us. Computers have also made society lack motivation to go and exercise. A very close family friend was very obese. She was lazy and never wanted to exercise. Instead of going out and doing something about it, she stayed in her room on facebook for weeks at a time. Though the computer wasnt the one who made her obese, it was used as a much to hide behind the real problems. It is sad when @PERCENT2 of teenagers say they would rather stay inside on myspace than going outside for a jogg. Yes its true computers helps you learn things you @MONTH1 not have known before, but so do books, newspapers and magazines. Computers have had a negative impact on society. Helping out in your community provides many opportunties to meet new people, and it feel a sense of accomplishment. But the urge to stay in on the computer clouds your better judgement. I know that I would rather help the elemntry school across the street build a new garden rather than stay inside on twitter. If you are inside searching the web how will you know if the old lady across the street needs help with her groceries? Helping around your community lets people know you care about whats going on. So dont let the computer have another second of your time. Computers have had a negative impact on society. Teenagers as well as adults have become very lazy. They lack motivation to exercise as well as help around the community. Now its your turn don't just stare at your computer screen absent mindley. Go out and toss the ball along with the neighbors dog. Youve heard the facts now make the right decision." 6 5 11 +907 1 "Dear newspaper and readers of @LOCATION1, I am @PERSON1, a student from @ORGANIZATION1, I have recently been enformed about the argument over computer use and I feel it is silly. We need computers in life to help us do jobs, communicate with family or friends traveling the world, and for research on homework. First of all, without computers many people would struggle. My father uses a computer for his job and he couldn't do his job without one. Sure, many people spend way to much time on their computer, but other people use it to save information or find research. I know people argue that computers should be used less, but could you get through a week without using one computer? Most people couldn't, especially if you own a buisness. In addition, from using computers for jobs, some people like to chat online with a friend that move away. Imagine if your family member or friend traveled constantly and they went to places where they couldn't get connection on their cell phone, the only way to talk to them is chating through the web. I'm sure everyone has used a computer once to talk to a friend or for something related to buisness, so they are more useful than people relize. Lastly, as a kid we need to be able to use a computer, not just to talk to friends but for homework. Some homework requires us to make powerpoints, write a paper on historical facts, and we need computers to do so. Without computers, kids wouldn't be able to gather facts or information to write a paper. Decreasing computer use for kids can potentialy bring down their grades. My teacher always says, ""grades are the most imfortant thing."" I'm sure all parents would agree with that. All in all, we can't decrease the use of computers because it can do damage to peoples lives. Think about people who travel alot, kids with work that needs to be done, and parents with jobs that they need computers for, don't upset all of these people by decreasing computer time. Thank you for your time," 5 4 9 +908 1 "Knoleg is one of the greatest quests for mankind, always trying to figure out how and why things happen. @CAPS1 to this natural ciricusity we have made amazing leaps in Technology @NUM1 years ago what seemed to be imposible is now possible. And one of those many thought to be impossible was to find anything you want in only a matter of seconds. I think computers are a great benafate to society becaus, you can learn things around the world in the blink of an eye, allow you to talk to people around the world and @CAPS5 give you better hand eye cordenation. The first reson I think that computers are great modern society, is that we can learn instantly about foren countrys. @NUM1 years ago the only way you could learn about places far away was if you read it in a newspaper, many which didn't tell you about faraway lands. Now with the internet we can learn around the world what is happening ware you want to know. ""@CAPS1 to our modern techolagy people are now more informed about the rest of the world than ever befor."" stated @PERSON3, a @CAPS2 expert from @ORGANIZATION2 university of @CAPS2. ""@CAPS4 computers and the ability to colect information @CAPS7 quily compared to @NUM1 years ago."" @CAPS5 @CAPS9 computers we wouldn't have known anything about the recent earth quake in @CAPS6. @CAPS5 with computers we can now talk istantly with people over the internet. A century ago talking to people instantly seemed just about impossible. But @CAPS1 to technology that of thing is an avarage part of our lives."" @CAPS7 many of our advancements and dicisions are made while we talk online, even some of the worlds gratests leaders make the hard decisions becaus of this advansments,"" stated @PERSON1, a reporter for the new @CAPS8 times. ""@CAPS9 this technology many of the decisions made in @LOCATION1 and @CAPS10 wouldn't be made and many solders would have died as a result."" @CAPS11 final reson that I support this decision is that they help teach you hand eye coordination. One of the ways that computers teach hand eye coordination is throug video games and simulations. In video games people make it @CAPS7 you to react at a movements notes in order to compleat your objective. In the @ORGANIZATION1 computer simulations teach the soldiers how to react to many different situations. Through this situations, many sledres have learn how to servive in combat and save many of their fellow comredes. ""The simulations we have invested in have improved combat effectevness by over @PERCENT1"" stated general @PERSON2 of the @LOCATION2 @CAPS12. ""@CAPS9 theise simulations many more american lives weold have ben lost in recent wars."" @CAPS14 now that you have heard all of @CAPS11 resons of why I support computers. I hope you are much more informed about this topic @CAPS9 computers we wouldn't be able to learn about foren lands, talk to people instantly, or have as good hand eye cooordination. I hope everyone else will see @CAPS11 resons for supporting computers." 5 5 10 +909 1 "Dear @LOCATION1, @CAPS1 you all @MONTH1 know many people in our town have been quarreling about computers. Some people are pro computer useage and others not so much. In my opinoin computers are a great @CAPS2 technology. One way computers benefits our society is ability to access ample information, pictures, and news. Also you can chat with @CAPS2 or old friends. Another good thing about computers is you can also have fun on the web, watch movies, even go shopping. Have you ever done a report on on a far away country? Maybe you've never heard of @LOCATION2 or @CAPS2 @CAPS3. So wat do you do? Serch the web! Instead of taking a walk to the libriary just serch one of the many serch engines such @CAPS1 @ORGANIZATION1, @CAPS4, @ORGANIZATION2 or @CAPS5! @PERCENT1 of people nowadays have at least one maybe two computers in their household. @PERCENT2 of people can access the web on their cell phone! Can you believe this? Pictures are also accessable on the web. You could @CAPS12 just about anything in the picture search engine. Have you ever wandered about current events in our country or others? On certain cites you can live newsfeeds or an article about something @CAPS2 such @CAPS1 the earthquake in @LOCATION4 that recently happended. The internet is benefitting our society today. Aim is just one of many private chat rooms that is avalible to people. On these open chat rooms you can talk to people that are thousands of miles away. ""I was on @CAPS6 looking for my friend @CAPS7 and I found her page before this year we didn'@CAPS8 talk @CAPS1 much but now we can talk through face book we hangout and talk all the time!"" comments @LOCATION3 avid @CAPS6 user. Dating cites are now avalible, too. There you can meet @CAPS2 people a develope a relationship with them. Entertainment is everywhere on the internet. You can play a variety of games, watch missed episodes of your favorite @CAPS8.V show, streame live movies, watch viddeos on @CAPS9, and much more! Many people think there are only pointless games on the comuter but there are educational fun games @CAPS1 well such @CAPS1 @CAPS10, @CAPS11, and @CAPS12 to learn. Did you know that more than @PERCENT3 of shopping for clothes car parts and other things are bought an auction such @CAPS1 ebay and amazon? I recall a time when my dad and I was going to see or movie but we weren'@CAPS8 sure wat was playing or what times they started at. So we simply looked on the cinema's website. So now you now where I stand on the issue of computers. Computers are a great reference point, can allow you to chat with" 5 5 10 +910 1 "@ORGANIZATION1, In the @DATE1 computers have help man kinds. Computers are every where in a schools, homes band business across a @CAPS1. They help people in many ways depending on the what the person wants to set done. The ways that I use my computer is by staying in contact with my friends, a family, and it also helps me with my school work. I have been a live for @NUM1 @DATE1 and have already live in @NUM2 different states: @LOCATION3, @LOCATION1, @LOCATION2, and now @CAPS2 you would think I would have had lots of friends living in so many places. How do I stay in contact with them you @MONTH1 use? I use various and @CAPS3. If you get rid of computers I would not be able to stay in contact with tem anymore. Moving from place to place was very hard and sad thing to do for me. Another hard thing to do for me was moving away from my family, but thank to technology and computers I stay in contact with them. Imagine you haven't seen you family in @NUM3 @DATE1, well sadly thats my life so many birthday @CAPS4 all the family you can see is you parents. School another great example where society benefits from computers students and teachers use them everyday to learn. In my opoion learning is the greatest thing. One of my friends, @PERSON1, said this about the dell computers we use in the library "@CAPS4 ever u don't get something about what we learned in @CAPS5 class that day. I use the computers to better understand it. Computers are a great way to research a topic, and thats why they should not be gotten rid of. I use computers every day for two reasons for school, researching or writing a project for any of my classes. Everyday I spend at least @NUM4 our writing something up for school. Computers help lessen the time spend writing it because it is fast and easy it is easy to type something, like a @CAPS6 paper on the ways to persuassive the readier. In the end computers are something we I need in are life because it makes life simpler. If I was to send a message to some of my friends in @LOCATION2 through @CAPS7 it would take seconds. Instead if I was to use the @ORGANIZATION2 it would take days. A life with out computers is a lot harder to do things, that we cant make simpler with computers" 4 4 8 +911 1 In my opinion I think that computers have a good affect on people. I think this because about millions of people use computers everyday! The affects on them are that people get learn things easier. There are millions of a job sites that would have to do with something of learning. About @NUM1 of collage students go online and do challenge. If you were a collage student and did collage online you would: see your family more won't be a hassle to get to collage and would be easier to concentrate being by your self and learning. Also they even make stone which is very popular learning a different language and where you learn this from is on a computer. My second reason is to talk on the . About @NUM2 of our daily! Online phone you and you can also the cool them even more that have you talk to give . I know have a facebook give don't get think it would be a good chore. up free. So in conclusion I think that there good effects on people that use cpu. Also when everyone that uses their cpu they still enjoy the nature talk to thier family . So if you don't have a cpu you get one and will do other fun stuff you like. 4 4 8 +912 1 "@ORGANIZATION1, @CAPS1 computers were invented they have grown so much, which make a lot @ORGANIZATION1 people use them more. More and More people use computers, but not everyone agrees that this benefits society. Those who suffort advances in technology believe that computers have a positive effect on people, but there are negative effects too. I believe that computers are a negative effect on people vecause people spend too much time on computer; not exercising, there are many dangers, and less interacting with family and friends. First @ORGANIZATION1 all, a negative effect computers have on people is that they spend too much time on the computer and that leads to less exercise. Recently, @CAPS3 spoke to a local @CAPS2 about this issue and she spoke out, "@CAPS3 have one family computer and my son is the one who is always on it right after school to late at night." This shows that many children are on a computer too much. I have to input that I personally sit on my computer at times and not even realize two hours past. I try to cut back on my computer times, but it doesn't really work out. Sitting on the computer for hours everyday is also looking exercise. The hours used up on the computer could be the time in which you are exercising. someone's health is very important now. Spending too much time on the computer and not getting exercise is a major negative effect computers have on people. Secondly, the most concern parents have @ORGANIZATION1 computers are the many dangers, which is another negative effect it has on people. Recently the new biggest site is facebook. So many people are addicted to it. Though, it isn't that safe all the time. Another new thing is oovoo or skype, which allows you to talk to someone with webcam. There could be a time when a teen "meets" someone on-line and agree to do things on the webcam for someone they don't really know to see. These sites aren't safe, and knowing youngs they can in danger. @CAPS3 spoke to some researchers about this and they would agree that these sites are @PERCENT1 dangerous to young teens. All these dangerous risks as another negative effect computers have on people. Lastly, another negative effect computers have on people is there is less interactions with family and friends. Instead @ORGANIZATION1 getting together with a friend people just go on the computer to talk. That isn't the same as an actual get together. I actually enjoy family parties. Seeing all my aunts, uncles, and cousins it so much better and fun. I do e-mail my family and friends when I don't see them, but I get excited when @CAPS3 have get togethers. Now a day it's not like that for a lot @ORGANIZATION1 people. Many people work long times and spend too much time on the computer, which takes time away from interacting with others, and that should be more important. The computer also, negatively effects people with interacting with family and friends. In conclusion, I see computers as a negative effect on people. Computers make people spend a lot @ORGANIZATION1 time have dangerous risks, and take away interaction time. I strongly suggest you look over my terms." 5 5 10 +913 1 "Dear @ORGANIZATION1, I have been informed that recently, people are questioning the use of computers. Some say computers have negative effects on people when using them but I for one disagree with that statement. I believe that computers in today's society have created an atmosphere of learning, communication, and an ideal amount of creative fun. Computers are changing the way everyday people live. This technology is the basis of our future, and our future has evolved around our computers. People learn so they can become better at things, be aware of what is going on, and to gain the knowledge that possibly help mem succed in life. Computers gona access to information that people want to know whether it is to learn how it dance using youtube.com, to learn about a possible vacation spot your family might visit, or to research a topic for a school paper: computers have it all. It sits right at home so there is no need to drive to the library and wait for a book with the right researching skills, almost anybody can find the exact information they are looking for. Computers contribute to people who want to learn. Being a popular used computer have beenimportant to make them the best. Whether that means faster internet better, researching book or more websites, a computer has it all. Back before the telephones was invented, people struggled to have a reliable source of communications with where communication is important because it is the main source of communicating. Through the computer, @CAPS1, @CAPS2, and emails are easy and guarenteed ways to talk to everybody. With just a simple click of a mouse a person can talk to their bestfriend as if they were right next to them. Communication plays an important role for a civilization or society. It makes life so much easier without creating a place where people become lazy. Talking to people by using the computer has become easier and more dependable than ever. People can email their teachers if they have a question for homework, people can check there grades online, and people can talk to their friends and family all they want whenever they want. So we people say that the computer. If a sibling is away at college, their @CAPS3, when a family is to gether, they could since new things are discovered through the computer everyday. can come to a person in multiple ways. A computer can emphazize the fun is never a bad thing. Computers offer video games, learning games, and that bring creativity to. This technology gets people every to have an open mind with everything. It allows them to have fun but at the same time learn something about the world or even themselves. Sometimes computers can inspire people to do something like start a group to make the environment better or go running around ther block. Even though the actual computer is inside the fun and creativity can be whenever a person wants it to be. Computers expand a person's knowledge, allow one to communicate, and create a whole new word of fun. Researching topics can be easily accessed through a computer. Communicating with others makes life easier and having fun while inspiring people everywhere makes computers have a total positive effect on people. It creates a new atmosphere of enjoyment of different things. Computers effect people in the greatest way and I don't know why some people doubt its magnificent ways of indudging people in the environment." 5 5 10 +914 1 "Dear Local Newspaper @CAPS1, I am against that computers benefit society in anyway. Yes computers are a great way to learn about things all over the world, but people have to worry about what is right in front of them. Being on the computer all the time gives less time of exercising, no sight of enjoying nature, and gives less time of interacting with family and friends. Computers don't benefit everyone because it gives less time of exercising. When people don't exercise because they are busy always doing something else less important, then you would always be tired. You won't want to do anything but just sit around & do nothing which calls for laziness you would go weak without exercise. You wouldnt have the strength to eat or lift anything which calls for your bone to go weak and you wouldn't get the calories & calcium & vitamins that your body needs to be strong. You would gain weight which calls for you being out of shape. Since your body has no exercise the weight & fat just stays. Being on the computer doesn't help you enjoy nature the way that you are supposed to. You will never see the world for what it is. You will always miss out on fun activities, then when people start talking about how much fun they had you're going to wish you were there. And you will always be stuck in the house which is going to get boring & there's nothing fun to do. If you're always on the computer cell the time you will never interact with family & friends. That is mostly & always more important than computers because they are always always going to be there for you. You will miss out on fun important occasions with your family because you're so addicted to the computer. And your friends will stop being with you because you're not hanging out with them. Computers really don't benefit everyday people because you miss out on the greater things of life. You will miss out on exercising, nature and especially family and friends. Then you are going to wish that you had spent time with them instead of the computer because you are going to see they had a great time & you would want a great time too!" 5 4 9 +915 1 "Do computers really benifit society? This has been a tricky question for years. Some people say computers are a huge help and it allows us to see the world through a different perspective; we learn more from computers and this vast increase in tecknology. Though others say computers are addicting, it is the @CAPS2 unsafe and unsecure machine to be using especially when it is left a lot of personal files on it while hooked up to the internet. Plus people spend more time on a computer than ever, missing out on thier families and friends, not being able to enjoy nature and the other simple things in life. Besides, if you want my honest opinion, computers should only be used as tools. ""The fact is many people look to computers as personal diaries or something to save files on or even something to play games on,"" says @PERSON2. ""They ignore the biggest fact that computers are only used to make life easier."" This is really what computers are made to do, help us. It could be as simple as a @CAPS1 (@ORGANIZATION1) or as complexed as a super computer but it still only serves the main purpose of making life easier. Even if you tried to upgrade a computer it would still serve the same purpose, yet people still look on it as if it were still the next big thing in entertainment. Many people might not even know it yet but computer can turn on you and really ruin your life. Ever since @PERSON1 made @ORGANIZATION2 the @CAPS2 popular disk @ORGANIZATION1 @ORGANIZATION1 around, people have been using computers alot. Its not because he created the fastest computer ever. It is because @ORGANIZATION2 is selling world wide; for buisnesses, small companies, schools, even in entertainment. A few years ago they made something called the xbox @NUM1. It revolutionized both gaming and the way people look at gaming. But whats the problem here? The problem is that because of @ORGANIZATION2 people are now more addicted to entertainment. When this happens people will start becoming dependent on a computer. Its not that @ORGANIZATION2 did anything bad but the fact that since @CAPS2 computers have internet, those people who depend on computers are going to find it hard to avoid being hacked or worse getting all their information stolen. There is this one thing about computers that remains constant. Family and friends will find it hard to talk to there loved one when they spend all there time on computers. This makes comunication hard, and like I said before its very addicting. ""@CAPS2 of the people who don't have real friends will chat with people online not knowing who they really are."" says @CAPS3 @PERSON3. Making friends online is the @CAPS2 unsafe thing to do on a computer. Over @PERCENT1 of the people online are not who they say they are and people will often break away from thier real friends just to find this new ""friend"" they've made. So remember, even though computers are" 5 5 10 +916 1 "Dear @LOCATION2, @CAPS1's the dillemant @CAPS2 that people are supporting computer technology and others are not. I firmly believe that having computers generally has a positive effect. This is because many jobs are using them everyday and it is very efficiant for them. Also, having computers allows people to connect with other people, edit things that other technology cannot, and play fun games, @CAPS3 effect that computers have is educational websites; games, and articals. This helps many kids find a good education and adults find a comfortable and happy job. Primarily. computers have a positive effect on people because jobs are using them frequently. Jobs such as @ORGANIZATION1 and any type of police work provide sarely for people all around the united states and other parts of the world. My father always told me, ""Computers save people everyday"". Even schools use computers! They provide educational information about the students in schools, and my school, @LOCATION1 school, uses them quite often. For example, I see my teacherm. Mr, @CAPS4 his computer every single movning in homeroom. Nearly @PERCENT1 of all jobs involve a computer by storing information or any other purposed fealuired. Would you want all those people to lose ther job because of their skills and techniques towards computer technology? I know I wouldn't, @CAPS5 keep in mind computers provide a safe and healthy life for many people. In addition, computers have a positive effect on people because they can do many things that nothing else can do. This is things like staying in town with someone far away, or editing photos. Even playing a game on the computer could ne relaxing to almost anyone. @CAPS6 is an example of keeping in town with someone else. For me, @CAPS6 is a life-saver. It allowed me to talk to my brother white he was at his chaotic college. In fact, nearly @PERCENT2 of people have an account on a computer of a public website live @CAPS7, @CAPS6, or @CAPS9. Computers keep photos saved that can be edited and even just saved to be admired. I don't want my pictures and my @CAPS6 deleted because nothing else competes with the mighty computer since it me have an enjoyable time and entertains me well. Thirdly, computers have a positive effect on people because they give aduts and kids tree access to education. I remenber my old elementery school used to play many amusing math games. These were @CAPS5 my education grew greatly dae to this game. Games as these are used frecquently thoughout the world. In addition jobs have been lost from this had economy. However, jobs we hering found more and more everyday from adults trying to find a decent job online. Computer saved people from losing their house because of the money they made with the help of computers, computers are a good idea To conclude. I imploor you that computer technology has a strong positive effect on people. Computers are like a pencil to a student. for they are very important. Jobs use them everyday, connections are made by people, and education grows because of them. That's why the technology or computers effects people in a good way." 6 5 11 +917 1 "@ORGANIZATION1, In my opinion, the effects computers have on people are good. I believe this because people can learn hand-eye coordination, they give the people the ability to learn about faraway places and people, and they even allow people to talk with people from around the world. Firstly, effects computers have on people are good because the people can learn hand eye coordination. Hand-eye coordination is good in many occations. Secondly, computers effects on people are good because computers give the people the ability to learn about faraway places and people is important becuase people can learn about history and important figures in life. Lastly, the effects people have from computers are good because computers allow people to talk with people from all around the world. This is usefull because the people can learn about each other, their customs and religious and also their cultures and heritage. All-in-all, I believe that computers have good effects on people because they can learn hand-eye coordination. Computers give people the ability to learn about faraway places and people and computers even allow people to talk with people online from all parts of the world." 3 3 6 +918 1 "To who this @MONTH1 concern, In my opinion, computers have greatly improved our lives. Therefore I believe that owning and using a computer is for the greater good. Three reasons that support my decision are that computers have given us the ability to find information quickly and easily, they allow us to connect with people in far away places, and they help us to learn more about life and the planet we live on. Please consider my reasons when making your decision. My first reason is that computers have given us the ability to find information quickly and easily. This in turn allows us to get more done. For example lets say that your doing a report on @CAPS1 @CAPS2. You could run out to the library and look through hundreds of books and newspapers or you could just sit down at your at your computer, open up a web browser, and type a ""@CAPS1 @CAPS2"" into the search box. Within a few seconds you will have searched hundreds more libraries newspapers and even other computers to find information on your topic. You can also look for information on videos. Old newscasts, inteveiws, documeteries, you name it. It's all there right at your fingertips. My second reason is that it allows people in far away places to connect. If I said that to my mom she would probably tell me to go use the phone, but computers can do everyhing a phone can do and more. You ca share photos, videos, games, just about anything. Recently, I joined facebook and I now can talk to people I haven't seen in years who moved away I was born. Over the @DATE1 I had gone to my @CAPS3. My dad introduced me to his uncle who shared the same name as me. Then about month's later I got a friend request from a @CAPS4 who up in @LOCATION1, @LOCATION4, which is far from where I live, and now lives in. After talking to him for a while I learned that he was, the son of mydaduncle. If it weren't for my computer I would have never met him. Also,I recently learned and am getting pretty good. So one day my friends look me through a which has all it,. We began video taping a posting. So the computer has also allowed us to what without them having to be there. My third and final reason is that the computer allows us learn how to improve our lives and the planet we live on. Many people say that if you on the computer all the time you'll become fat and lazy,but that isn't always the case. I have actually been able to improve my exercise rutine byuseing the computer. Whenever I go out for a run, I can come home and find out exactly how far I ran, how many calories I burned, and anything else I want to know. I have also been able to find new more effective excersizes that allow me to target different muscles. Now lets talk about what we can learn about our planet. We can use a computer to find weather patters which allows us to plan our days accordingly. We can also use it to learn about news happening around the world. For example, the day of the earthquake in @LOCATION2, I opened up in my homepage and there it was and I was able to learn about what had happened. Finally a computer allows us to learn different cultures around the world. We can learn about how ancient egiptions lived, how the people in @LOCATION3 or @CAPS5 make money or how they construct their houses. All the things we would never know if we didn't have a computer. In conclusion, computers have improved the lives of the human race by a great deal. They have allowed us and how to improve our lives. I hope that this letter has helped you come to a decision about the effects a computer has on people lives." 5 5 10 +919 1 "Dear @LOCATION1, I understand this focus situation, the effect of computers or our society people's reactions are less than about them & my question to is who? Computers a very good effect on our town's specify. Computers areaids in tracking hand-eye coordination. They give people the opportunity to look at things & talk to that it traveled here they wallets empty faster than the speed of it. @CAPS2 also have the ability to help people so things that an than a pig sty. Let me explain more these reasons. Computers are very good for our society because they are kids in tracking hand-eye coordination to kids & adults. Just to help you understand why in to teach hand-eye coordination, @CAPS2 are so many that help you learn but help you learn will get you. In foot ball catching helps to teach the skill but makes you up on the ground after being by someone potentially yourself. In baseball swinging at a pitch to teach his skill, but if the is very close to you it could how you for the if you do the ball could someone & hurt them, ability to day back. Computers are great way to this skill in a saw Even @CAPS1 @PERSON1 here in town says that he has seen an of kids with better hand eye coordination, due to do have a good our town? Well, computers let people to that. You can talk to relatives in far away places but to travel with this. I'm sure that you're wondering if I have I do have another reason. Computers have to samethings electronically so fast easily, make a look on computer's hard drives, @CAPS2 are so much more that ran be on a computer, that make a room empty. Before my famiy had a computer complete dedicated to papers files that your so important & that we could not lose. When up got picture, typed up paper, saved our was empty! I hope that this letter has proves to you computers effect on our society. Computers help and in the process of hand eye coordination. The help to thing happen but if done on real life could faster of they also help to electronically than a. So now, after this letter you go out i publish this telling every good effects of computers. Again I thank you for reading this letter." 5 6 11 +920 1 "Dear @CAPS1 Newspaper, @CAPS2 you know what computers are doing to the people of the @LOCATION1? Well I @CAPS2. People are on the @NUM1. We need to @CAPS2 something about these computers. They are preventing people from exercising, going outside, are are just making them stay in there house all day. One reason I think we should get rid of computers is because people aren't getting there exercise. the computer, next to the @LOCATION2, is probably the number one thing that makes people fat. Kids are sometimes on the computer all day eating snacks and junkfood when they should be eating healthy fruits and vegetables. You could. Almost @CAPS2 anything on the computer that you @CAPS2 in your everyday life, that's how good technology is. The computer is the thing that gets people addicted to something. The computer has games, internet, and ways to talk to people that get then attached. A second reason is that computers just keep taking money out of your pocket. When you buy a computer most people just buy the most expensive one, because the salesman talks then into it. Most people don't know what kind of computer they are supposed to buy, so they buy the most expensive one because they think the more, the better. Also just buying the computer isn't all of it. When you download softwares, games, and moble things that all cost money. Downloading one thing can cost up to one hundred dollors. plus, most people can't afford these downloads after buying themselves a pricy computer. My third opinion is that the computer is just a complete waist of time. People spand hours on the computer doing stupid stuff, like playing games and talking to the, when they should all be outside enjoying the fresh air. Going outside is very important to your health. Next time your on the computer doing something that doesn't need to be done, go outside. Think about it, hour often @CAPS2 you go outside? My guess, not much. Now @CAPS2 you know what computers are doing to the people of the @LOCATION1? They are making people fat, not getting there exercise, eating junk food and play games all day long on this stupid piece of technology. Instead of being on the computer all day why don't you think about going air you need. Also you don't want to be waisting all of your hardworked money on a stupid piece of technology. Plus, you don't want to deal with softwares and there viruses. My advice, computers are terrible." 4 4 8 +921 1 "I believe that computers benefit society and help people understand things more clearly. Computers help people study, learn, and even talk to other people. Here are some good reasons on why computers help people out with problems. First of all, computers give you information on things that you cannot find in books. People can look up places for vacations, what their child's grade in school is, and find healthy food recipies. Without the computers people would be lost not knowing what to do. Next, computers let you talk to friends. You can discuss things like weather, ideas you have, you can even plan exercise days. What if something important happens? The person does not have his or hers phone. What could they do? They could go on the computer and tell their friend. It would be a lot easier than driving over to the persons house then driving driving all the way back. Finally, computers can give you a good sense of hand eye cordination. Computers can teach you how to type without even looking at the keyboard. This skill could be used to pursue a good career in the carpentry field. Computers can also help you study for a new job and what the requirements are. In conclusion, I believe that computers make peoples a little bit easier knowing that they have vital information right at the tips of their fingers. It can also help them in anything they want to do. Like talk to friends, look up info and teach skills." 4 4 8 +922 1 "To whom it @MONTH1 concern, @CAPS1 more people are getting involved with using the computer while I think that is great other don't. I believe that using a computer is a good thing because technology is going to progress and computers will be the base, also computers are safer now because or privacy options and virus block. Finally, computers help you gather knowledge that no one book could tell you. Although technology is progressing computers are only the basics. Sooner or later everything will be based on computers like, jobs, school, and ever the medical field. Jobs will have more computers and touch screen devises because they are easier and more technologicly advanced. As for school @CAPS1 students have to take computer classes to learn how to write brouchures and make websites. The medical field is now using more advanced ultrasounds that take the image and make it there dementional. So, if everything is changing around you why do you want to be stick in the past? Although, some people are worried about internet saftey and viruses, there are ways that those can be limited. As for social networking sites don't set it up for the whole world to see. Set it up for only your friends to see. Also, make sure you know who your friends are. As for viruses, don't go on websites that cause viruses. Also, you can get a virus blocker that helps eliminate them. The computer also helps to give you and get you knowledge. You can learn about cocrent civilizations. Or modern day without taking a step out of your house. Also the internet has vertual simulations so you can experence what it was like in other coultures, in other time pericals. Computers give you knowledge that help you through your life especially if you don't have a library. Even though some people disagree computers are the base of technology, safe, and full of knowledge I do. Yes, they do have some flaws but they are a great learning tool." 4 4 8 +923 1 "Dear @PERSON1, Experts are concerned about the use of computers. They say that they spend hours on the computer and less time exercising enjoying nature, and interacting with family and friends. I agree. While people use the computers, they dont interact and meet new friends in person. They stay inside and don't get excersise, and kids might talk with strangers. When we use computers we chat with friends online and don't really interact with others. We meet new friends and chat online and never meet them and socialize, so that is one disadvantage of a computer. Another problem is lack of exercise. While we are on the computer we spend a lot of time and sometimes causes us to even forget to exercise. Then we slowly begin to get unhealthy. Another major problem of computers is talking or chatting with strangers. Some might meet some random people online and give them personal info. Kids might even meet with some of the strangers they talked to online and get hurt! well thank you for reading my opinions about computers. I hope you take them into consideration. Kids and even adults dont interact with freinds, lack exercise, and give personal information to strangers." 3 3 6 +924 1 "Dear Newspaper, Some people are asking others about the effects computers have on other people. Some experts are concerned that people are spending too much time on their computer and less time exercising, enjoying nature, and interacting with family and friends. But my opinion is that the comuter is great and it does not keep people away from other activitys. First, the computer does not keep people away from other activitys because, there are @NUM1 hours in a day, and it's that persons folt if they don't get off the computer, and go do other activitys. Even though the computer has lots of things, and it is very interesting. people. Should still have the common since to get off nad go do other things, so I think it's there fult if they don't get off the computer. Also there are a lot of reasns that people don't get out and do other activitys, so why just stop computers. Secondly, the computer does not keep people away from other activitys, because there are lots of destration that keep people away from other activitys, so why blame computers. For example the television keeps people from doing other activitys, but their not talking about stop that. Also the computer teaches you about a lot of thngs, an can so you a lot of things that you don't know about and is trying to find out. For example your family's history, you could go look that up on the computer. Lastly, the computer does not keep people away from other activitys, because if people were really worried about there other activitys then they would get off the computer and go do what they had to do. For example if they had to go to the gym then they should get off the computer, and go to the gym because the computer does not make you fat, you make yourself fat, so the should be resonable enough to go to the gym, and not be on the computer all day. Also if you were going to spend time with your family the how could the computer stop you from doing that, you should already know what you need to do and I don't think the computer would make you forget things like that. So it would be the person's fult if they forget not the computers. To rap this up, computers does not keep people away from other activitys, because it's there responablity to remeber what they need to do not the computers and there are lots more destrations then computers, but it's still not computer's falty it your's." 4 4 8 +925 1 "To whom it @MONTH1 concern, I was sitting at home when I have realized this has to come to an end! The computer bissness has taken my mother and my stepfather away from me, I mean when they are on facebook they are in a whole nother galaxcey. The family spends no time together what so ever. Also, they argue, dont sleep and again, we don't spend anytime together! Not spending time with family isn't a good thing. Social activity is good for everyone. Even if the time spending is not with family, socializum is a very important rollplay in use. On the other hand arguing isn't. Arguing just decreases the social time spent. Arguing in my family causes friction to the point where we become unsocial and turn to a computer. Now if were arguing about the computer then we have a huge problem. The arguing will never end! Not sleeping is my biggest concern though, when they are up all nite on that stupid thing, oh gosh don't get me started. I believe they don't have good days during the day when in school. Actually I know they don't because they are day. Computers cause my parents to use up family time, fight, and not sleep, they spend more time on the personal computer than I'm a! @CITY1 @PERSON1, I think we have a problem. A very big one!" 4 3 7 +926 1 "I believe that people spend too much time on the computers. If people spend hours on the computer it will result in bad eye sight. They dont get enough exercise.most teens aren't getting home work done because of this @CAPS1 people sit on the computer for countless hours their eye sight is slowly going bad. The bright lights of the screen make your eyes unclear state say more people lose eyesight from looking of a computer than they would by staring at a light. Sitting down in front of the screen you aren't down in front of the screen you arents getting any exercise. You mostly just move your hands and fingers. If people dont exercise for at least @NUM1 minutes a day, we will all become week. Lastly, your teenager probably do their homework. while they are in his or her room they've most likely all the computers. if they spend too much time on the computer they are more likely to fail their classes. which means they will most likely stay back. In other words, people spend too much time on the computer. If we continue this most people will lose eye sight. if citizens keep sitting there then we will became unhealthy. And lastly, more teens want do homework and wont succeed." 4 3 7 +927 1 "Dear @ORGANIZATION1, I agree with some of the perfesionals that think the computer keeps people from exersising, enjoying nature, and spending quality time with friends and family. Some people thnk it's cool to be on the computer @NUM1 @NUM2. The truth is the computer with internet is like having @CAPS1 at your fingure tips, distractions, and more. You can find just about anything on the internet these days. Some people use the internet for doing homework. Sometimes people can find the exact answers to an assiment. That means they are becoming more dependant on tecnologie. If the world becomes more and more dependent on the of computers and such, that could mean things. the world is suffering because people are neglecting to pick up their trash and to try to stop @ORGANIZATION2. Most people, instead of taking action, will be on the computer. People are becoming more and more lazy these days. As I stated most people are becoming more and more lazy these days because all they have to do to have fun is sit and do little movement. Saying that, people are neglecting to exercise and eat right. They are also neglecting to spend time with friends and family. Instead of texting or @CAPS2 someon try to call them. Or maybe even wehn you're free you can go and make plans to visit with your family. Taht's all I ask is that you especially spend time with family because you can always get more friends or anew computer. But your cant get a new family." 3 4 7 +928 1 "Dear Newspaper @CAPS1, @CAPS2 people believe that the negatives of computers out weigh the positives. I believe that computers help as much more than hurt. There are a few minor instances where computers have hurt people, but @CAPS2 more instances where they have helped @CAPS2 people. There are some cases that a victim of an accident recovers with the help of computers. Likewise there are other times that close family or friends can talk to each other over the @CAPS3. Also, people could learn about amazing places. Thus computers are very vital to us. Computers are vital to us because they help our reflexes. In my experience as a computer engineer. I have learned that playing or using a computer call help victims of reflex damaging accidents. A computer helps the victim by giving them a better feel on their environment. The victem could see exactaly what he is doing and so could his and doctors. Like wise to the physical treatment, computers an relief. Thus the patient gets stronger physically and mentaly. Thus, computers help a humans life be enchacing their reflexes. Likewise to help our reflexes, computers with the @CAPS3 would help people that are distance apart could connect. One of the ways people very far away connect is with soldiers and their families. Back in my military days, nothing helped better than talking. The easiest way of this was talking over. It gave me a gigantic. Thus computers are vital to as humans. Likewise, computers help us see places that are amazing. For example, when a @NUM1 year-old boy visits a website that talks about the wonders of the @LOCATION1 rain forest. He then tells his science class, who the spread the word of preservation of the forest. The boy then grows up to be an explorer of the @LOCATION1, finding new speceses. All this would happen because he was on a computers. Computers help us see the unseen. In the end, computers are great if used in regulation. They help victims heal, soldiers connect and inspire the youth, Computers are vital source of knowledge and advancement for humans." 5 5 10 +929 1 "Dear @CAPS1, I believe computers are a huge benefit to society. I myself have a computer; it is very important and useful to me. Over @PERCENT1 of the families in our town own at least one computer. Computers are a great source of information. They also allow you to talk to people, even if they are far away. They are also very convenient and easy to use, in mu opinion. Based on these positives, @CAPS3't you agree with my opinion? Computers are a great source of information. Unlike books, which you must find and buy, there is an enormous amount of information just a mouse click away! With computers, you can learn about far away places and people without having to visit or talk to them. Let me compare this to a book. Let's say you wanted to do research on @PERSON1. You would have to go to the library and search for a book about him. And what would you do if you couldn't find one about him? With a computers you could type ""@CAPS2 of @PERSON1"" into a search engine and receive of information in under a minute! I love saving time, and computers help me do that. They also augment the information I use. Another astounding development in computer technology is that you can talk to other, no matter where their location is. Email is extremely faster than writing a letter. having to pay to travel. Who @CAPS3't like that? Computers are very convenient. You can surf the internet, talk to people, and much more from the comfort of your bedroom. There are jobs that you can do from home on a computer. No need to go anywhere to work. My uncle is one of those people. He is s stockbroker, and operates his whole job from the computer in his house. It is a convenient and a well-paying job. I asked him what he thought of his job. He said, ""I love my job because I can work when I want to work, and from the comfort of my home."" @CAPS3't you want to have his job? I would most definately. In conclusion, computers are very beneficial to us. Did you know computers were first invented by @ORGANIZATION1 to perform calculations that were very long? Look at what they have involved into @DATE1. They bring us information at amazing speeds. They let us talk to people all over the world. They are very convenient. These are major benefits to society, and everybody should embrace computers." 5 5 10 +930 1 "Dear @CAPS1, I think computers have a positive effect on people because it will help you with interacting, learning and coordination. By interacting with people like far away friends or unknown frieds. If they are far its a nice way to send photos back and forth to see how the person/people are doing. Family is a very important factor in computers because if you havent seen the person you can tell how they are progressing in life. If thats not the case you can meet new people. By meeting new people you have more connections in your life and more people to trust. Learning! Learning is a good thing for adults an children. Computers can teach children by showing them new words, colors shapes and sizes. For an adult it can show them meanings of words or new words. Words, colors and sizes can all be round on a computer all by learning. A computer can not only do mental things to affect you also physical like coordination. You can improve your coordination by making you stronger when you type. Your hands are a big thing in like and they are helpful in a lot of ways. By sitting up straight in your computer chair all day can improve your posture. Your back can get straigher from all time you are sitting. Your mind can be foucused and in one pot fucusing on thing is good for you such as the computer screen. Now, people can think that computers are good for you too. But there could be negative ideas for people who think the opposite way." 4 4 8 +931 1 "Dear Local Newspaper, I think computers have both good and bad effects on people. Some people just sit around all day playing games and being lazy. Other people actually use their computers for things that they need. Also some people need their computers for their jobs. I do agree that some people who spend all day in front of their computers are spending less time exercising! Would you rather play games all day instead of spending some quality time with your family and friends? Not me, I would much rather be with friends outside or having a family picnic at a park or lake. For other people though, the story is much different. Some people need computers and other advances in technology for their everyday life. A lot of jobs today require you to use a computer, for example working at a bank you use computers all day! I also think students rely on computers to do work too. A lot of students type up reports and other things for school on their computers. Students also use computers to look up information. The internet can be a very good source for students. I know for me, the internet has come in handy for school projects, or maybe something as simple as just looking up a word. I can also see why people dont really care about advaces in technology or computers! Some people dont need them for anything, and some are probably thinking people are on them way too much. To me, I honestly find computers useful because I can talk online to my family in @LOCATION1. I hope you liked my opinion about computers, remember, they are useful to some people, but not all." 4 4 8 +932 1 "Dear @CAPS1, @CAPS2 and kids of any age at this society, are way to focused on the latest technology. One piece of equptment that is affecting peoples lives, is the computer. We need to get rid of this habbit and learn to do different activites! People are spending way to much time on computers and less time enjoying nature excersing, and need to interact with friends and family more take the time to agree with me as I confront you on how the computer is taking over our lives! Is time flying you by? Are you overwhelmed, at how life passes you so quickley? Well, if you answered yes, stop the computer madness and head on outside! Your no enjoying nature! Nature is as beautiful as a gorgeous scene of @CAPS3 @CAPS4 love oceans with pink sand. Who would want to miss this? @PERCENT1 of @CAPS2 complain that they rarely enjoy what life has to take on the outside of your house. Just think you won't be able to see the stupendous, the seasons changing, withought going outdoors. ""I want my @CAPS6, to experience the wide variety of nature as she grows old."" @CAPS5 of her daughter. Well, @MONTH1 I add, little @CAPS6 is not going to get much nature out of her, if she does not get her eyes unglued to the comuter screen! Yes, comuters, are very brilliant, and have lots to do, but if you want to be missing out on the new trees being discovered every day, be my guest! @PERCENT2 of all the population in the @LOCATION2 is overweight due to technology brought into our world. The greatest impart is the computer! high-paid physicians try and teach their parents at a young age, to go out and play sports - while excersing at the same time and nor to stay home and play videogames. Now you tell me, would you rather get a good healthy excersise, and have all the energy you need or would you like to slowy add on to your and gain issues as you the internet? I remember @DATE1, I grabred my nike hightops, and my pink ipod I started jogging at a slow while listening to my favorite song. Naturally by I felt amazing when my was complete going each day is as healthy as eating a bannana, @NUM1 apples, and cheese eery morning their healthy! ""@CAPS7 since technology has been a part of my life, my two daughters have not visited their grand parents in over @NUM1 years! This needs to step!"" @CAPS8 @PERSON1 to the press. Yes, comuters have ""online-talking"" devices such as @CAPS9, but if you are never going to spend quality time with family, this is a bad habbit. On @DATE3, @DATE2, my brother and I, were too busy on the computer, we missed a birthday party the family we are addicted to this device, and need to spend time with our loved ones. @PERCENT3 of all therapy computers have @CAPS2 into depresion and have been with their plains, due to the high amount of to do on this device and less time bonding with members of your Who would rather play on a old, gray, computer when you can have fun talking about you day and the game life with your family? @CAPS10's now a never! What will you choose? Do you agree that computers take over lives? If you try and prove me wrong just remember, nature is a big and many people are missing out on the advantage technology is taking over peoples excersing habbits, and many families are less bonding @CAPS10's up to you keep the population of @LOCATION1 in good hands!" 6 6 12 +933 1 "Dear Newspaper, In think that computers are not good for the society. There are three reasons why I think this and these are the following; @CAPS1, people don't get to spend time with their family. Second, you can get misspell words using instant messenger. When your doing your homework you can get distrated by the computer. The @CAPS1 reason why computers are bad for the society is because people don't spend enough time with their family, I know I don't. I spend at least half my day staring at a screen when I could be outside walking my dog with friends. Furthermore, instant messenger is the most addicting. When I type something, I use abreveations for any word. The professor at @LOCATION1 says at least @PERCENT1 students spell abreveated words in tests. For example, if you wanted to spell ""what"" instead the @PERCENT1 would spell ""@CAPS2"". Finally, my last reason why I think computers are not good for society is because you can get distracted by it a lot. I know that because I am driven to the world of computers. When ever I do my homework. I can't keep my eyes off the screen. Therefore explains that computers are not good for society. In conclusion, computers keep you from spending time with your family, has students misspelling words, and distracting you from doing your homework. I hope you agree with me on this." 4 4 8 +934 1 "Dear @CAPS1, I strongly believe computers have positive effects on people and the society. My reasons are you can learn and find new information on anything, you are able to talk to people faraway and computers teach skills to use in the future. I will now like to elaborate my reasons further. First of all, going on the internet and search sites help you learn and find information on anything you want. On the internet you can even ask questions, and they will probably be answered. You my even use information on the computer for a report statistics show @PERCENT1 of people who do reports, find their facts on the internet. Google, yahoo, and other search sites have helped children become more intrested in learning. Also, using a computer ables you to talk to other people from faraway places or friends you have not seen in a while. You can even webcam with people. I remember a few weeks ago, my best friend moved to florida, and now we webchat everyday! Talking online will even lower your telephone bills. Chatting online doesn't lost anything, where as the telephone charges for out of country calls cost . Computers will let you talk with your best buddy and save money. Last but not least, computers teach skills that can be applied later in life. Today many jobs in due using a computer, and technology is getting mom advanced. Before you know it will have to know how to work a computer. Also, you probably will need a computer in college. Proffesor @CAPS2 even stated, ""every single kid in my courses have some sort of computer."" In college you will take notes and do assignments. Using computers will help you do this and make your life easier. As you can see i believe computers help people and society greatly. My reasons are you can learn and find information on anything, you are able to talk to other people who are faraway, and computer skills will help you in life. Technology is advancing and were going to have to use a computer sooner or later." 4 4 8 +935 1 "Dear Local Newspaper @CAPS1, Are computers really as great as they seem? It seems to me that they are used way too much in people's lives, and that computers are distractions that don't allow people to di ceratin things in their life that they would if they weren't always on the computer. People's lives are starting to revolve around going on the computer, checking your facebook, and looking at new videos on @CAPS2.com. I know from experience facebook or myspace can be very addicting. I'll spend hours commenting on pictures or new wall posts, and then at @NUM1 pm I've realized I haven't begun any of my loads of homework. This happens quite often, and I end up staying awake until around @NUM2. The following moring I wake up at @NUM3 am, exhausted. I am not exaggerating either, this happens to many of my friends, and if you have kids, ask them because I am @PERCENT1 sure they are on facebook or @CAPS3 all night. This doesn't just happen with kids either, my mom just got a facebook and she is hooked to it, even more than I am. Sometimes it can be come a competition to see who has the most pictures, or the most friends. Kids start adding people as friends that they don't even know computers aren't just distractions, they are also very dangerous. At my school we had assembly where they showed us how easy it was to find out someone's personal information, Even if you don't have your address or your phone number listed, there are many other ways to track you down. If you take a picture right after you won the championship soccer game, in your jersey. Just that one picture shows your team name, your last name, and your number. Anyone could easily search all that stuff on the internet and know exactly where your next game be. As the local newspaper @CAPS1, I am sure you must be concerned about the safety of the town, or even your own kids. Some people @MONTH1 say ""that would never happen to me"" but it easily could, especially if you're constantly on your computer. I have noticed that a lot of teens around my age are starting to become obsessed with being on the computer. A lot of times in families, instead of spending time together. syblings are fighting over who gets to go on the computer. One sybling @MONTH1 need it for homework, while the other just wants to talk to her friends on @CAPS3 and each believes they deserves the computer. Computers are starting to interest a lot with people's lives, in a negative way. Once again they are distracting, dangerous and hurt families. Computers hurt society more than it helps. And maybe you should look into how much time your kids are spending on the computer. " 4 5 9 +936 1 "Dear @LOCATION1 news paper, I think computers are a bad and good thing because computers keep some people inside more than usual and then on the other hand a computer allows you to talk with family members that you haven't seen in a long time, search for upcoming events and see if they are canceled and to search up other stuff like when a movie is playing. Computers are a big part of school too, because without computers it would be hard to study and for some teachers most of their homeworks aquires you to use a computer. There is some other things that are bad about computers too for example: my friend stayed on his computer playing video games for most of the day. Its like when he's on that computer he dosen't listen or hear anyone, not even his parents. He barely goes down to eat dinner and when he does he has his laptop right beside him. His parents started to get tired of it so they took his tv and laptop away so he could go outside and play with his friends. After a while he started to come outside a lot mostly every day when it was nice. They gave him back his computer and tv. The only time he goes on it now is rainy days." 3 4 7 +937 1 "Dear Newspaper @CAPS1, @CAPS2, more and more people in our proud and courageous country of @LOCATION1 have been. Computers were mode to simply difficult situations, such as typing, finding, , and keeping a record of financial statuses. Despite the main uses, many @CAPS3 citizens have been using the computer for that are neccessary which result in a loss of to living a healthy, social, life. these are exercisem and spending line with fellow people indicating family and friends. as a result, please read on so that you, the @CAPS4 our can understand why computers have became out of hand and relay my message to the readers of your. One much life is exercise, and due to the of modern computers, exercise is the key to a healthy life. Personally, I know at least poor young children in my very school that are a victim of the cruel disease, known as obesity. The reason for the dese children is quite simple-they over use, and forget the natural bounderies to using something. Practically every day, each of the foor heart- children begin to their computers from the second will home, to the moment they fall asleep. this outrageous number of hours the vital the to exercise, therefore allows their bodies to adopt to the habits of the children sleep, eat, computer. This upselling manor of the foor kids enables others to pick on them for being fat, yet they can't fight back, they have what so ever, thus the over use of computers can result in a over weight child, with no exercise, and no power/ muscle to depend themselves from. Another reason whay computers are thinking such a @LOCATION1's youth, is because of less than medicine usage of. Everyday I chose to walk from school, for the breathly sounds of type of wheather day should I hope you I @CAPS5, spending time with your friend and family yet ones again people who abuse see the importance of this. Around two years ago, I was on the computer non-stop, @CAPS6, playing video games, and all sorts of computer-released activities. every day, constantly, for about a year, I came home, to on the computer, and began my , as I @LOCATION2. This resulted loosing the time I had with my mosue. Furthermore, if I needed is contact @MONTH1 friends, I just @CAPS7 them, rather than speaking in person,. Over line both my family and friends and grow of this electronic device, called the computer luckily, @ORGANIZATION1 nothing like that now however, I hope that you see the side to the computer, and how loosing your family and friends possibly. In conclusion, @ORGANIZATION1 guarantee that with all the information about how are out. Hopefully you will the paper of @CAPS1 of our newspaper and demand a column about computer loose the valuable time for exercise, nature, and family & friends. Thank you for letter, and I will an article relative to this subject." 5 6 11 +938 1 "Dear @CAPS1 @CAPS2, I am a child of the tech generation, or the generation in which technology has taken on a new meaning. That meaning is life. Our life revolves around technology in general as the @LOCATION3 revolves around the sun. The chief technological preference, computers, is greatly beneficial, arent as bad as many people speculate, and help us live and prosper in this struggling world. Look, if you want to roast computers then by all means, roast away. But if you do so without first regarding all the angles of them, then you, my friend, have absolutely no standing on the situation. You could say that they are a neucence but could never have used aho. You could argue that they can be used to detonate bombs, but, lets be practical, how many normal people actually wake upwake up and point out the drearyness of life and then type in a command to detonate a bomb? A serious benefit you have obviously choes t o overlook is the invaluable information it aptly places in front of you on a @NUM1 inch screen. You can read book reviews, read books, bag things, and get the cutting-edge news you want, to name just a meager amount of possible strengths. Further more, not everything that you speculate as bad has to be bad just because you say it so. When you think of @CAPS3. Do you always think about vulgar, inappropriate pictures, and illegal images? Thats funny, because @CAPS3 keeps family in touch, gives people things to do, and keeps friends in different states on the same server. Youtube is not all swearing and bad videos. My family casts actors for shows, and one way they know what an actor is capable of is by going to their channel and looking at the videos that they have created. My mother actually contacts actors in videos to see if they want to become professionals. That is the business, finding talent where it is seldom found. Lastly, did you even think about the fact that computers are used to start companys and saves lives? You probably didnt even know that, from a computer, astrologists monitor images of the universe captured by the hubble space carrier meteorologists track cloud formations from satellites using a computer. Maybe you didnt choose to say that surgeons can dictate operations from their office in @LOCATION1 on a patient in @LOCATION2? You didnt even say that seismologist use computers to traet the shifting of the tectonic plates to see where the epicenter of a major earthquake is? You just didnt know. So, lets face it, computers are important. You probably used to do what little research you did them. In fact, pardon me. You probably didnt do the research in the first place, instead pointing fingers at the innocent. Smooth move, buddy." 6 5 11 +939 1 I think having a computer is good because you can research stuff and you can meet people and chat with them. Computers are important to society because it helps keep track of info like doctor appointments and crimnal records for police to follow by. having a computer is a good but if you spend to much time on it you will hurt you eyes. Having a computer can help you talk to friends who have moved and have website that they can talk to you on like myspce or facebook or even yahoo chat. When having a computer its very helpful in life and can help you in a lot of areas. Computers can also cause problems like spending to much time on it and not getting enough sleep for school. Having a computer can also be bad because sitting to close or spending to much time can hurt your eyes and cause you to wear glasses. The way i look at it as i see is that to much is bad so i think spending some time on it is good do you agree? 3 3 6 +940 1 "Dear local newspaper, I disagree because it would give kids, children to do negative thing like being rude, not listening, being loud, not doing homework just because your on the computers. Please listen to why I disagree here are some reason why. I know when i am on the computer my mom every @NUM1 mins what you own because there nasty things on that computers that kids, children be looking at you never now they could learn how to kill someone just being on the computer. I know when I go on that computer I am rude and disrespectful because when I am on you can tell me nothing because I was into the computer my attention move to the computer. Thats why they should have @CAPS1 computers because it takes the attention. I don't listen while I am on the computer my mom tell's me to get on "" I will say ""@CAPS1"" I am doing some thing she will tell me to get off i @CAPS1 leave me alone because I am on the computer and because I am focus on the computer. And I have the computer loud so @CAPS1 one could get my attention so I have the computer allways loud because my main focus was the computer than I'll do whatever later. O and I don't even remember what be happend when I get on the computer. Not doing your school. I know I be telling my mom let me use the computer so I could do my school work and I be getting on different things instead f doing my homework my mom be like t through you were doing you homework and say ""I did finish my homework when I know I did not finish my homework but I only say it because my focus was on the ocmputer. These are reason why the society should take back the computer. I hope you undertand the reasons I give you because the society should really stop giving out the computers in the first place. If you have a daughter or a son and know they have said some of thease things now you know you children have been and always lied to you. Know I could olny the computer for @NUM2 min each day. So yes take them away." 4 4 8 +941 1 "@ORGANIZATION1, @CAPS1 computers benefit our society has been a hotly debated topic among citizens in our town. Many argue that computers provide quick easy communication, help children and adults learn, and even teach balancing habits to our generation. I firmly believe that computers are necessary in our society. "@CAPS2, @CAPS3! I miss you!" are the words @ORGANIZATION1 @NUM1-year-old @PERSON1. @PERSON1 has been working overseas for two years in @LOCATION2, @LOCATION3. One @ORGANIZATION1 the only ways she can contact her father is through @ORGANIZATION3. Communication is extremely important in our society; it brings families and friends closer together. Computers provide a variety @ORGANIZATION1 forms @ORGANIZATION1 communication, such as @ORGANIZATION3, @CAPS5, and instant messaging. "@ORGANIZATION3" allows people to have what can be called a "visual phone conversation." A teary-eyed @PERSON2 says, "@CAPS4 since @CAPS7 wife died, @CAPS7 daughter has been @CAPS7 only companion. With @ORGANIZATION3, I can not only hear her voice every day but see her face, too. It never fails to make me smile." @CAPS5 and instant messaging also give out society fast, easy communication with others. Invitations, announcements, and just a quick "hello" can all be done by @CAPS5. Therefore, computers are very important for communication in our society. Have you @CAPS4 seen the look on a child's face @CAPS10 he/she learns something new? Computers provide an excellent variety @ORGANIZATION1 education in our society. For example, toddlers and children can use programs such as @ORGANIZATION2 (@CAPS6). @CAPS6 programs teach reading, writing, and speaking to children. "@CAPS7 child used @CAPS6 @CAPS10 he was a toddler," says @PERSON3, a @LOCATION1 resident, "and now his teachers are so impressed by his reading and writing skills. I couldn't be more proud." Computers don't only teach children; they teach adults, too! Did you know that adults learn @PERCENT1 @ORGANIZATION1 their knowledge about the environment, politics, and other basic information from the computer? Computers are needed to help people learn in our society. Finally, computers teach balance. A @LOCATION1 mom says, "@CAPS7 teenager @PERSON4 has learned how to balance computer and life, and I can definitely see how it connects to other areas @ORGANIZATION1 balance as well." @CAPS10 teenagers learn to balance their computer time, they also learn how to balance, extra-curricular activities in school. This shows, as a result, that students actually learn responsibility from computers. I hope that our society will consider the fact that computers are necessary. @CAPS10 they provide commonication, teach education, and help kids learn how to balance, what do we have to lose? Computers can most certainly improve our society." 6 6 12 +942 1 "Dear local newspaper committee...., I am writing to you, about how there is a substancial dilemma within the concern of computer use. From my data that I have collected, computers are both somewhat good, and bad. But I believe that there are more reasonable ""@CAPS1,"" toward computer use. In my opinion, I state that computers are quite addicting due to, addiction of computer, loss time of exercise, and how computers @MONTH1 ""help,"" one in obtaining the loss of their social enviorment. Computer @MONTH1 seem helpful but of @ORGANIZATION1 they are a great way to research for @ORGANIZATION1 reasons. But there is also the choice of books for research. Computer use has risen to a substancial crisis line, because they are addicting. An example is the well-known link called, ""@CAPS2,"" @CAPS2 is a place where you can socialize. But when your child has a @CAPS2, and they are on the computer doing ""homework,"" there is a @PERCENT1 that they will end upon @CAPS2, than rather doing their homework that important information was found at an @ORGANIZATION1 @DATE1. Computers are addicting also because of online computer games. Computer games online can be fun, but are a complete waste of time for you electrical bill, and @ORGANIZATION1 purposed of you child. Computers are very addicting in terms of @CAPS2, and online games. Computers are somewhat good, but are very to you health. Did you know that @PERCENT2 of @LOCATION1 has increased their weight, due to videogames and computer? Computers are horrible when it comes to this topic. Overtime, you begin to gain weight by spending more time using the computer and less time working out and staying fit. This also revolves around addiction, by using the computer over a large period of time. In the end, computers are a harzardous topic, when it comes to working out, and staying in shape. Computers are terrible and horrified when it comes to friends. Friends are people who spend time with you and interact with you. But computers see it a different way. by using computer for a long period of time, you begin to think how computers are all you need. Soon enough, your friends will leave you because you don't care about them, and forget them. This also revolves around addiction. By addiction, you lose your friends and you damage your social enviornment. Computer @MONTH1 seem ""fun,"" but are defuliated when it comes to friends. In the end, I beleive that computers are a waste, because they are addicting you become very unhealthy and they strive to damage your social enviornment. With the facts I have stated, they have supported my reasons. Computers are not the way to go. So, try books." 5 4 9 +943 1 "Dear @CAPS1 @CAPS2, Computers are a vital source for anyone's household. Many people have busy lives and having a computer at home make it easer. You can use it for research, organization, and business matters. I dont know what I would do without one. Education is very important especially in our economy today. The computer makes work and studying fast and simple. When you need to research a topc for school there is always an endless library of information @CAPS6 you turn on the computer. You @CAPS7 get your information from books, and encyclopedias but it is rare that you always have time, to get to a local library. Also, @CAPS6 you have a project in school that you need to type, it is helpful to have a computer at home so you don't have to use at short. This way, you have more time to get extra from teachers @CAPS3 on instrument in the school band. I can imagine that my grades would be @CAPS6 i did have access to the internet of @CAPS4 @CAPS5 at home. Have you over pare or document and had an of her and happens @CAPS6 you own a computer you can backup @CAPS7 you imagine on essay five pages and organized is boring, biut you wouldn't think so @CAPS6 it saved you from hours worth of writing! For some people, having a computer @CAPS7 make you money, and who wouldn't like more money? You can run a business online and avoid the hastle of manting a @CAPS8 your own space or building to run your business can be quite expensive and time-consuming. Also, you can refrain from making a trip from the store by purchasing items online. Then, the item will be shipped to your door. You save time and money on gas by doing so. And thise days, any way to save money is a good one! By having a computer you can boost your education.Keep yourself organized, and save money. Although it has many recreational purposes as well, it also can be very helpful in your life. And besides, is perfectly fine, to go online to talk to your friends once in a while, isn't it?" 4 5 9 +944 1 "Dear @CAPS1 I think more and more people use computers because it can help you find a job if you lost it. Because right now some job are going bank ruded. And parants can not help because they didn't have job to support there love ones. Another thing is that cars are going up on prices so if you don't have a lot of money you can go online and get a car and truck for great prices. And it can help you save a lot of money in your pocet. For some reason @NUM1 out of @NUM2 people like to go to far away places for example @CAPS2, put or @LOCATION1, @CAPS3. And you if go to these place then you would need place to stay and have a good meal with your family or friends. So you would need a nice pleasant holetitle which will have awsome food, beds, pools and more thing people like to do when they is on vaction. And for example if your mother or father what you to go to your public school but you don't what too because you heared something or about the school say because you cant find great school online for example @CAPS4, cap pre, classicle, brizzal, And some other school are the best to and fun to go to and be succesful with your life. Now you know why more and more people use computers and you should always use technology and it would help you on the hand eye giving people the ability to learn about use computers." 4 4 8 +945 1 "Dear Newspaper, In my opinon I think computers do have a positive affect on people. They can learn about far away places. They let people talk online. It can even help you find a job. This is why I think computers are very positive. Certainly, people can learn about far away places on the computer. Say, someone wanted to take a trip to @LOCATION1 they can look it up, learn the launage. They can by tickets. They could also find interesting things to see in that country. These reasons are why I think a computer is a positive technology. My next reason I think a computer is positive toward people is that people can comuicate online. This can help keep families in touch. It can help you find and talk to old friends (facebook). You can even make new friends to talk to. These are other examples why I think computers are positive. My last reason I think computer have a positive affect on people is that it can help you with jobs. It can help you find a job. It can also help you with your job. Lastly, it can have you have a higher position at your job. These are my reasons I think computers are important and positive to people. For all the reasons above are reasons I think computers are an awesome =) and positive technology, I mean just look at all the reasons. They let people talk online. They can also teach you about far away places. And even help you with your job. This is why I think computers have a positive affect on people." 4 4 8 +946 1 "According to the @ORGANIZATION1 govermant @PERCENT1 of @CAPS1 spend @NUM1 hours or more on a computer a day. A study shows @CAPS1 are't getting enough exercise, aren't spending enough time with fmaily, aren't enjoying their lives. Right now people would rather be on the computer then doing other stuff.Since more people have been using the computer those people heven't enough exercise. Now @PERCENT2 of @CAPS1 have gone obese since they have always been or the computers, @CAPS4 year a @CAPS6 was fit and healthy, but when a friend told him about a website within the @CAPS5 @NUM2 minutes. After @NUM1 months, the fit and healthy @CAPS6 became obese. The @CAPS6 would always have junk food when @CAPS7 was on the computer. when @DATE1 came, @CAPS7 tryed out for his school baseball team. @CAPS7 didn't make it because @CAPS7 was out of shape. After that happened, @CAPS7 went to his old ways by eating healthy and exercising. Now that @CAPS6 is in shape for any sport @CAPS7 plays. Next people aren't spending enough time with their families. A lot of jobs require people to be on the computer. When that happens a person will forget whats really important to them. A couple years ago, a @CAPS6 was going to have the biggest game of his life. It was the championship game. @CAPS7 was reminding his dad about it all. When the gone was about to start, the @CAPS6 looked into the crowd for his dad. @CAPS7 didn't see him at all. The @CAPS6 was just think his dad was. after the @CAPS5, @CAPS7 looked again, but now @CAPS7 was sad. His own dad wasn't at the game. His team @CAPS4 the game. Now his dad doesn't miss a thing since @CAPS7 doesn't go on the computer as often. Finally, people aren't enjoying their lives they would rather be on a computer than doing stuff they like. One @CAPS6 used to always play basketball with his friends when @CAPS7 started to go on the computers, everything changed people would ask him to play, but @CAPS7 would say no. The computer was the only things that mattered. When the @CAPS6 tryed out for his @CAPS8 school @CAPS7 didn't make it because @CAPS7 forgot how to play. When that happened, @CAPS7 stopped using the computer and went back to basketball. now when @CAPS7 tries out., @CAPS7 makes. It's now or never to decide either waste your life on a computer or live your life. I would rather live life than be on a computer." 4 4 8 +947 1 "Dear Newspaper, @ORGANIZATION1 has an essay due on plants for science tomorrow. She was absent @DATE1 and didn't know about it. If she had a computer, she could go on to the website and check, but she doesn't. The town took them away. Another student, @LOCATION1, is working on the same essay. Her handwriting is terrible so her teacher will not be able to score it. What are they to do? Although many some say that computers are not good for society, most know that life without computers would be a disaster. New @CAPS1 is currently thinking about taking away computers in our town. This would be a big problem for everybody involved. One reason is that people need it to get information from search engines like ""google"" and ""yahoo"". They also use the internet for communication like ""facebook"" and ""aim"". Taking away computers would drastically impact every day life. Society computers to get information. I know that whenever I don't know something I just look it up online. If I didn't have this resource, my homework would not be as detailed as it is with the computer. Another example is that public look up information about the world on my computer. When many heard about earthquake in @LOCATION2, they could pull up information within seconds. This led to many bake sales and fund raisers. Lastly, when kids miss their favorite @CAPS2 shows one day, they can just look it up the next day to get caught up. This is a big part of teenager life. Society needs computers in order to look up crucial information. Many people also use the internet for communication purposes. I know that in my family ""e-mail"" is what makes it all work. My mom makes all her plans by email and sometimes even e-mails herself from work to remember things. Without it, our family would not be able to function. Another mode of communication is ""facebook"". Any time my friends and I have a question about anything anything that happened that day. We will ask each other on this website. It is safe and saves all the trouble of calling on the phone. A final example is ""aim"". This is a messaging tool that lets you talk instantly with friends and even see them with ""video-chatting"". My friends and I would not be able to show each others outfits and other items without ""aim"". Teenagers as well as adults need to communicate through computers. In conclusion, society needs computers in order to look up info, as well as talk with friends and co workers. Do not even think about " 5 5 10 +948 1 "I am so happy, I just finished my school report on @PERSON1 and I didn't even need to leave my house. I was able to talk with my classmate and ask her questions online. I also managed to get all the information just from my computer. I also learned how to row a boat, to show my class how @LOCATION1 crossed the @CAPS1 river, I learned that by taking on online course. This is one situation why computers have fantastic effects on people in everyday situations. Local research show that @PERCENT1 of @CAPS2 planning their vocation use the internet. The reason these citizens use internet is to get the information about the hotel and vacation cite. That is one way that makes computers helpful and positive devices, beacuse it makes it easier for busy @CAPS2 to get ready for a trip by looking at pictures of the hotel online and getting all the info they need. Doctor @PERSON2 of @CAPS4 university says ""computers now offer programs that allow busy @CAPS2 to learn a new skill, @PERCENT2 of @CAPS2 currently use this software. ""@CAPS7 everyday @CAPS2 don't have time to go out a join a group or class to learn new skills. That is why computers are so helpful and people just love them. Instead of leaving home they can be cooking, doing yoga, or speaking a new language all from their computer at home. That is another reason why computers are useful in vey positive ways. Imagine forgetting your homework at school and not be able to an A in that class. Well because of computers forgetful students can talk to a classmate online and get the homework and do it. Or they could even use the internet to go to that school website and find the homework and print it out. Many students around the country forget homework once in a while, because of helpful computers they can fix their problems easily. Let's recap, students or adults can get information off the internet for projects or even vacations. Busy @CAPS2 who don't have time to leave their house can take a class or learn a new skill right on the computer. Anyone can use the internet to talk or chat online to get school work or to long distance friends. That is why the effects on computers to people are nothing but positive. Now what can you do? It is important that computers stay in our lives, they are helpful and we have learned to live with them, which is why they must stay. This benefits you because newspaper houses are organized by computers and it keeps you business running." 4 5 9 +949 1 "Many People in Society think computers are bad, I think computers are exellent. Computers allow you to comunicate with your friends, family and relatives. With a computer you can do home work extra fast, no having to go to the library to look stuff up. Computers also allow you to take out anger on ones and zeros. Muny experts like @ORGANIZATION1 think people will talk to stranger on website like facebook and myspace. If parent place him son the websites and also make it so only freinds can you profile you will be alot safer. Comunications engineer @PERSON1 says that it is better for people to talk from it online than not I know he is correct because I have relatile in the @LOCATION1 that I love talking to but they are @NUM1 miles away so communication is or I to get, then I got a facebook and it is like they are next door. @CAPS1. @ORGANIZATION2 @PERSON1 says that @PERCENT1 of strangers that are molestores/ thugs go, after, people who don't protect their profile so protect your profile and be safe. Computers are better than going to the libra! This is there because going to the library means you have to round up the kids get in the cor and go. With a computer you can just go into your office and do re search, That saves money or gas. If you have a prodject of you can just send it straight to they teacher. In many today experts like @CAPS1. @ORGANIZATION2 a conducting experiment that are rigged. Violence they say is cursed by the games but they use test subjects like an the bad people you dont want to meet. I Have found video games to be a great let out for stress biut up during the day. Muny of my friends have also found this. Video games make you think that is also reason they are good. In conclusion computers are exelent. They make it so ther is the ability to communicate with friends alow you to take out anger. What is not to love? Get a computer now!!" 4 4 8 +950 1 "Each year the world becomes more and more advance in technology. Technology helps and benefits us all in a good positive way. Computers are apart of this positive technology and definetely benefits society. Computers help us look up places and things we never seen before and teaches us about them, too. In addition, computers have a positive impact on families and benefits them greatly. Also, they help people from adults years out of college to teenagers in high school communicate with their friends. Therefore, computers help us all in some little way and makes life easier and more fun. To begin with computers helps us expand our knowledge. It us helps us look up facts or recent news quickly. For example, just recently the @DATE1 @CAPS1 occured and they usualy go late into the night so I didn't get to see the whole competition. I could just easily go look it up on the computer to see who won which medals. computers helped me by looking up the medals quick so I woudn't have to wonder who won a medals not. Computers help us expand our knowledge all the time. They help us look up facts for report, places we want to travel to, learn about the benefits of a certain pet and the posibilities can be endless. to continue with, computers help families by bringing them closer in a way. A family member could be watching a funny on youtube or @ORGANIZATION1 and could think its so funny that they want their whole family to see it you. In addition, stores sell clothes online now so mother and daugther can sit down together and shop without leaving the house. Computers bring my family together by we rent movies from @LOCATION1 on the computer. It brings us together when choose and pick which movie to rent. Also, it brings us together to have a family movie night. As a result, these things the computer gives brings out discussion in the family and gives a good topic that everyone can relate to and talk about. Another way computers are beneficial is they bring everyone together. There are many ways communicate on the computer these days. There is facebook, twitter, email, aim, and many more. They are all different, but they have one thing in common is to bring old friends and new friends together. For instance my mom just sign on to be in facebook so she can talk to all her old friends from highschool and she found one really good friends who she hasn't seen in ages it made her really happy. Therefore, it shows that computers aren't just for bringing new people together, old ones, too." 5 5 10 +951 1 "Dear Local Newspaper, I agree with the experts when they say people are spending too much time on the computers. The reason for this is that one, people don't get enough exercise. Two, new websites have been made and people want to see how @CAPS1 works. Three, more and more teenage kids have the new technology. Their on @CAPS1 all the time, and don't realize their not spending any time with their family. Now that you know that lets move on to my first reason. First of all, people are spending a lot of time on the computer they don't have time to go outside and exercise, More people probably figure they don't need to go outside. Really they do, @CAPS1's important that they get their body moving and blood flowing through their body. Another thing is that we don't always need to get the answers off the computer. @CAPS1's east to find friend and play a game with them. Find something to do other than play games on the computer. Now that you know let's move on the second reason. Second of all, the computer network came up with new ideas for the computer. They now have facebook. More and more people use facebook now. This right here shows us they won't get out and play, this also means most kids won't do their homework. Another thing is that either parents set a time on the computer or they take @CAPS1 a way. Their is just so much amount of time you can be on the computer for and not get bored. Now that you know that lets move on to the last reason. Third of all, I would like to say people are spending more time on the computer than with their own family. The reason I say this is because @CAPS1 is important to spend as much time with family and friends instead of being on the computer @NUM1. We need to know also what's going on in our daily life. Another thing is that our family is way better than some game on the computer go outside with you family and play a game of wiffle ball. Now that you know that lets moves on to the conclusion. In conclusion, You have read an essay talking about how people spend more time on the computer rather than go outside to exersice, new website to keep them on longer, and not spending enough time with their family and friends. @CAPS1 is important to have a time limite on the computer and get up and moving. Don't be a lazy couch potato and sit on the computer all day get out and spend time with you family and friends, I hope you agree with me. " 3 4 7 +952 1 "Dear Local Newspaper, I agree with the concerned experts, im sure many others agree also. I bet you that if you keep reading it would be understandable, why I agree. First of all, too many people spend to much time talking with friends online. I think that once you start talking with them online, finish up the conversation face to face or by telephone. Talking online is a great way to connect with friends and people you haven't seen in a long time, but too much of that can start problems. For example rumors. In my opinion when friends get to excited online they decide to start rumors about other people and it ends up being sent to almost everybody. Another example is online arguing which can lead up to many problems like fighting when you get back to school. How would you feel if you turned on your computer and find out that someone has been talking about you or that someone is trying to start a fight with you? I'm positive that you would not enjoy it and your feeling might be hurt. Next reason is, being on the computer too much can effect most peoples grades. Many people are going home and turning on their computer instead of doing their homework or studying. There are many people who go to my school and their grades have declined because of online usage. Pretty soon many people will be held back because they have failed the school year. For example, picture yourself as a parent and getting your child's report card and find out they have all @CAPS1's or mostly @CAPS2's. You wouldn't like that either. Lastly, computers have cause another problem called bullying. Too many children are being bullied online and they are being hurt. Those children who are being the bullies are enjoying it while the children who are getting bullied are sad. Thinking that nobody cares about them. Bullying has caused death or many other problems. Imagine, being someone, getting bullied and your feelings are really hurt, you dont talk to an adult or a parent all you end up doing is killing yourself. Picture how many parents are upset and how yours would be too to find that their child has been bullied to death, it really hurts them. And i'm sure if you were one of those parents you wont be too happy. In conclusion, being online too much has an effect on everybody and" 4 4 8 +953 1 "Dear @CAPS1 of @LOCATION1, @CAPS2 the world having a network where people can connect, learn and work efficently. This wonderful network is here in our computers. Computers benefit society because they help @CAPS3 connect with far-away places, develop hand-eye coordination and get work done faster. In the days before computers we were isolated in our immediate area. @CAPS2 being stuck in our town unaware of the rest of the world, unable to enjoy the beauty of @LOCATION3 or send help to the starving people in @LOCATION2. @PERCENT1 of money donated to @ORGANIZATION1 an organization that assists in global disasters comes from online. Without the computer how would our willing people help the rest of the world, or even know about the rest of the world? Give our community the ability to reach out to the farthest parts of the globe, give them computers. Computers produce games and activities more intense than you can find anywhere else. Playing baseball simply doesn't require enough focus. The computer's intricate experience helps future engineers or even pilots develop a focus and hand-eye coordination that could save lives. @PERSON1, who trains the @CAPS3 air force weighs in on the effects of computers. ""They have made a great deal of positive impact."" he states. ""@CAPS4 soldiers have excellent eyes for controls and amazing reflexes, making them natural pilots."" @CAPS5't our community have the opportunity to excel as well? The computers we own train @CAPS3 as we use them to have reflexes and hand-eye coordination equal to the best of the military. Computers allow our lives to be just as enjoyable as they are meaningful by getting our work done faster. Before computers @CAPS7 and calculating took @PERCENT2 more time but now they get our work done quickly and without error. @NUM1 year old author @PERSON2 states ""@CAPS4 computer helps me type @CAPS4 writing a lot faster and it is done right more importantly."" @CAPS7 and typing is just more efficent when you are using a computer accountants, students and even the journalists for your own newspaper need the computer to work faster and more efficently. Don't stunt our community's workers, give them what they need computers! Computers are too important and beneficial to lose. Our community benefits from the computers that help @CAPS3 connect with far away places, give @CAPS3 hand-eye coordination and help @CAPS3 work quickly and correctly. So explain in your next article that we need our computers. Computers are necessary in our community and we would be last without them!" 6 6 12 +954 1 "Dear The @ORGANIZATION1, Computers are out! The effects of over-use on a computer can severely change a persons life! People who are spending too much time on their computer will most likely spend less time exercisizing enjoying nature, and interaction with their family member and friends. I believe that the act of computers overwhelming a person's life should be with in a serious manner. Exersizing, an essential part of anyone's life, since the development of the internet forty years ago, the average @CAPS1 or body mass inter of an average person has increased fifteen percent! This is no coinfidence, computers are causing more and more people to challenge themselves to nex that extra mile, or swim that extra lap, and instead so home and play on their computers. This not only is hurting peoples' weights, but excersize equipment store owners are having to close their shops, because less and less people are coming into work out, or excersize like they should everyday! Our children are also being affected by this addicting sensation, childhood obesity is one of the main effects on children, because when they get heard playing on these they as well stop excersizing, and play videogames . The average amount of people who went to @LOCATION2 @CAPS2 @CAPS3 every year was around @NUM1, but since the invention of the computer that the attendance dropped to a more @NUM2 people every year. Less and less people are to enjoy a fresh @DATE1 and instead spend it indoors on their country. This is hurting people as well as the wildlife around them. The rates of squirrels to people in @LOCATION2 @CAPS2 @CAPS3 was @NUM3 in @DATE2, the year the computer has invented. But a mere ten years later, the changed so now their are squirrels! This is because now that they less people feeling less squirrels live in the @CAPS3 @CAPS3, went live in the to find food by themselves. Tour guides who worked in @LOCATION2 @CAPS2 @CAPS3, we being fired, due to less people wanting a tour, so less tour guides are needed. Families are seeing that the more a person plays on a computer, the less time that person is going to spend talking to @LOCATION1, or @CAPS4 @CAPS5. Scientists held to have three different people spend an hour reading a book, another spend an hour on a computer, and three hours on a computer to see who could stay in a conversation with their mother the longest. The first person spent twenty minutes on the phone with their mother, the second only ten minutes, and the last, a mere five minutes. This shows that the mere time spent on a computer, the less interactions are held between son and mom, an important relationship in any one's life. Mother's worry that the next time they have a barbeque, @PERSON1 won't be in his room, playing on his computer like last time. @PERSON2 was chosen to conduct an experiment on @PERSON2 had three freinds @CAPS6, @PERSON3, and" 5 5 10 +955 1 "I walked outside to get the mail and newspaper. I saw the front page talking about computer. An article said, too much computer using. I though there wasn't going to sell more computer but, it said that people are using computers and are not exercising much. I think that people are not going to have a hard time quitting to use their computer. I had a friend that didn't know how to use the computer. He past his hour playing outside. In the @DATE1 he tries out for @CAPS1 baseball. He is a very good athlete. He does grate in school too. Others people without a gob are not looking for something 'to do they are at the computer everyday. When they should be doing work around and inside the house. Peoples with computers shouldn't be all day like these friend my friend haves is using his computer everytime he comes from school. He don't do his homework on time. Every time he doesn't want to go out and exercise his mind or get a little bit of sun he sometimes don't eat so he should give his brain a rest and do physical things that will help them. Other person such as the computer workers should write a note to people with computer saying how computer can be addicted to people and maybe realize how much often they should use their computer and was using it to go to get information and to collage. She started to use the computer to chat with people and ended up using the computer a lot and not going to collage. I believe that computers are an major impact on people. People should be going about to have fun get sunlight not staying at the computer all the time. Many adults don't use the computer is most the teens and kids. People should go to the gym and build strong muscles. They should stay away from computer for a time. Agains computer would be the right thing to do." 4 4 8 +956 1 "Dear Newspaper @CAPS1, @CAPS2 opinion on computers is that they have a positive affect on people. I think this because I know some people that excersise and go on the computer mainly, I don't think computers are a bad thing. Some people learn on computers. They learn how to exercise. Sure some people just chat and learn about that far away place they could go there and explore the buety and nature. I think computers are great effects on people, They help out a lot. I know @CAPS2 uncle that came from @LOCATION1 he learned how to speak english of the computer. He learned a lot and we were all proud. Some effects that computers have on people are a lot. People have classes online they go to @CAPS3 mothers that are single that have kids for example, they get their diplomas and degrees of the computer online. And theirs other @CAPS3 @CAPS2 aunts and uncles they go to english classes online and work. A lot of people have classes online. @CAPS3 i go on @PERSON1 all the time all the time. @CAPS4 teaches me how to type. @CAPS4's fun, but also educated. I think that all computer have positive effects on people. All of them should their should'nt be one computer with negative effects on people. But that's only by @CAPS2 opinion. Computers are @CAPS3 robots they do lots for us. We type reports, learn, read online. And then theres also were we play games online, and educated games. I believe that their are lots of resources. You could search up a lot of stuff. For example you could search up: mistery, animals, natures and places. You wouldn't beleive how many results the computer has. So who would have negative effects of the computer. All @CAPS4's trying to do is help us and out education @CAPS4 helps me with @CAPS2 spanish sometimes. So why would people think that computers arn't good ideas? Computers are great for everything. I could go on and see what the weather is for tommorrow. Also I could see what the news are, and i could contact @CAPS2 teachers through the computer. I think a computer would always have a positive affect on people." 5 4 9 +957 1 "Dear Local @CAPS1, I am deligted to write this letter to you. It has come to my attention that the people who support advances in tecnology believe that computers have a positive efffect on people. I agree with those people. I agree with them because one: you can communicate with your family and friends via email, via @CAPS2, via @CAPS3 ets. Number two: you can use a computer for research, and number three: it can tell you directions or give you info. on a resteraunt or place you want to go. I will now get into more detail on these three topics. You can communicate with your family or friends via computer. For example my friend amor, when we were best freinds and we were in third grade, he had to move to @LOCATION1. I cried the first day he moved. then the next week or so I got an email from him and so now we can keep in touch with each other. He comes & to @LOCATION2 every @DATE2 and we hangout with each other. Maybe one day, I will like to go visit him now In @LOCATION3 becasue he moved again, but I will have to do some research on @LOCATION3 first. With a computer you can research alot of things like this year our language @CAPS4 class read a book called ""my brother @CAPS5 is dead"" and it was a true story. Se we had to some research on the book and I found out that without computers how would I be able to research anything on the website it shared where everything , a description of the thing, and how to get there (diretions). Directions are very important. The show you how to get to a certain destination. You can get directions off a computer. I remember one year I had to go to my friends birthday party and we didn't know how to get there. So I went online on @DATE1 and we got the directions from there and we printed them out and we found the place in @NUM1 minutes. Without a computer we would have been able to find the house easily. You @MONTH1 disagree with me on this because a computer can have bad websites and can also became very addicting to some people, but I think I am right. Thank you for reading this letter, once again computers are good for the study!" 4 5 9 +958 1 "Dear @CAPS1, @CAPS2 you know that computers can prevent you from doing a lot of things? Instead of going on the computer you can exercise more, play outside, and spend more time with family and friends. This is why you need to spend less time on the computer. Exercise is important to your body and computers are not. you can get some weights and exercise in your room. A run out the beach doesn't sound bad either. Just by doing that you lose a lot of weight and not gaining weight on the computer. So go exercise and lose weight because it's good for you! Computers also prevent you from getting freash air and playing outside. When your are outside you see that playing is much better than just pressing buttons and clicking everywhere. On the computer. You don't even have to play outside, you can just walk with someone or just sit on the grass and talk. The computer prevents you from doing all of this fun activities outside. Spending time with your family is a huge activity that your computer is prevting you to do. You are on the computer for an hour and your family is having a barbeque. You finally get off that computer and you realize that spending time with them is so much fun than sitting down and looking at the screen. this is why computer are a distraction to everyone because you don't want to exercise, play outside, or spend time with the family. you can use the computer but just don't stay on to long because you are missing the fun." 4 4 8 +959 1 "Dear local Newspaper, @CAPS1 opinion on the affects of computers is that while there are good benefits that come out or them, I believe more strongly that negative issues and situation arise from computers and that they affect people with greater impact in a not so good way. @CAPS1 three main reason as to why I think there are more negative impacts than positive and constructive impacts from computers are @CAPS2-bullying is a very big issue. Also there are many 'scams' and 'cons' out there on the @CAPS9. Lastly there is a lot of mis-leading or wrong information online. Going back to @CAPS1 first reason, ""@CAPS2-bullying."" @CAPS2-bullying can be derined as rude or nasty teasing over the @CAPS9. On social networking websites such as @CAPS4 @CAPS5, @CAPS6, and so on. '@CAPS2-bullying' can include teasing, hurtful comments horrible name-calling and fowl language. It is much more effective than regular bullying, such as ""Give me your lunch money"", because once you put words out on the @CAPS9, you can never take them back, no matter how hard you try. '@CAPS2-bullying' is the new generation of mean. Secondly, scamming and cons come out of the @CAPS9/computers. When purchasing items online, you never really know what your going to get. @CAPS1 father was scammed, or connect on the @CAPS9. He was looking on what seemed like a very official site to purchase a big boat. He drove all the way to @LOCATION1 to get it. He took it out on the water in @LOCATION2, at our @DATE1 home, and the engine and motor were broken. That is what can happen when buying something off of the @CAPS9. Lastly, mis-information can be another negative impact from computers. When researching a topic, you should stick to the library, it @MONTH1 sound old-fashioned and slow, but when you research on the @CAPS9, you need to remember anybody can put or post anything, even mis-leading or untrue statements and 'information' online. Researching topics is not the only way to get false information. People can pretend to be who they are not in real-life, which is why ananymous chat-rooms and instant messaging are dangerous and un-reliable. As a conclusion, the @CAPS9 basically has stronger negative impacts and consequences than positive ones. Because @CAPS2 bullying, scamming or conning and mis-information are all negative factors of the @CAPS9, and out-wiegh the positives." 5 4 9 +960 1 "Dear Newspaper, Computers are not a benfit for us because we spent to much time on them not every one has a computer and they cost of a computer. Every one dosen't know how to use it. If we timed many hours we spend on the computer people would be amazed at what they sound. People spend looking up random things when they could be outside rideing biks or going sur awalk. And you cant do that with a computer. Not everyone hase a computer because that cost so much @MONEY1 a bacik computer can cost upwards of @NUM1 and more and thats @MONEY1 sur ther computer. Then you have to pay sur the internet witch can so sur @NUM2 a month. And you have to pay for surton aps like (windos, microsoft ect.) The bill on a computer up outer a while and people dont relize that when they are payings for the internet they arnt getting allot what the cable com sars they on giving you. Not every are knows how to use a computer lik older adults dont know how to really know use the full ptonole of a computer. Because they never learnd how to use computer. In this is the computer arnt a hose help for our society.Coose of the time and the cost and the knolage on computers." 4 3 7 +961 1 "Dear @LOCATION1, Have you ever found yourself thinking about the computer, or wishing you were on it? I heard you were looking to see if computers have negitive or positive effects on society. I feel that it is a negative effect because of less time exercising littele time with family or friends, and is very it's easy to became addicted to. Exercising, a very important thing for a healthy body and mind @CAPS1 have a hard enough time finding time to do this. So instead of that free time to exercise, they will probably be on facebook. Also the maintenance of the computer will take away time for exercising. Just @DATE1, my computer got a virus I had to get fixed and that took for ever. That time while I fixed it could have been valiuble exercising time. Another key point to look at is obesity. We should be up and moving not just setting and staring at a computer for @NUM1 hours at a time. I love to spend time with my friends and family. I mean who doesn't right? Computers only away from that kids well be on facebook instant of eating a nice meal with thier family. My @CAPS2 always told me stays of the (and stupid) things he @CAPS2 with his friend. Now wkids just @CAPS3 easy. We will never have the social our parents I feel if is very important to spend time with and family because you never find when your going to lose them. Addiction is a serious matter. being addicted to the computer is too. Our generation is so dependant on computers. For example, in the car with the @CAPS4. You just plug it in and it ells you where go. What happens when it braker? You will have know idea where to go because you never learned how to read a map. or what if your computer brakes? You will have to send a better by mail kids had be typing instead of writing. that skill would be lost and you would have to learn it again. As you can see, addition is a no laughing matter. Once again I must streach the negative affect of computers to. " 4 4 8 +962 1 "To whom it @MONTH1 concern, I think computers are a good thing. It is good because you get to learn about forein places. Keep in touch with family and friends and it is good entertainment. First, computers are great to learn about forein places. On the computers you could research a place and look at pictures before you go. If I wanted to go to a far away place like @LOCATION3. I would go on the computer and find the best part to go to and I would look at different hotels to stay at the reviews it has gotten. Aslo, if someone were to do a paper on a different country or even state that they've never been to they would go on the computer. Sure, you can get the same info from books but you can filter out what you don't need on the computer. In my history calss, I had to do a report on the state of @LOCATION2. I have never been there so I want on the computer. Books could have given me the same info but computers are always up to date and accurate. Seecond, computers help you keep in touch with family and friends. There are numerous websites that allow you to share photos and talk to friends or family. I recently signed up for facebook and I am able to talk to friends instead of using mytexts and running over the phone bill every mont. My dad has a facebook too, he talks to people he hesn't seen since he moved heve from the @LOCATION1 white mountains. Some other sites are aim, aol, and myspace. Lastly computers are good entertainment. Computers allow you to see that concert you didn't go to or that movie that's never on tv. When I went to a skate board demo at skate lair I had tons of fun. The other day though, I started thinking about it. I went on youtube and type in""nike sb skate lair demo"" and clicked on it. i watched it and about halfway through it I saw my face! i was so exited. Computer also allow you to check the news and weather. This is good because if you are on the road and you want to see what's going on you can take out a laptop and checked the weather or news. That is why I think computers are necessary. Yes people do stay on four hours at a time but most people only go on for a small amount." 4 5 9 +963 1 "Dear Newspaper, I firmly believe that people do spend a lot of time on computers, alot of teens spend alot of time on computers, I also think this from my own experience and I surveyed @PERSON1's @NUM1 grade @CAPS4 class. I would first like to expand my idea of teens spend alot of time on the computer, some teens go on the internet and do homework or might check their emails others go on @CAPS1 for hours and got addicted, so they're not outside or doing sports. In my own experience I used to have a @CAPS1 and I woud be at it for the whole day and I woud miss out on hanging with my family and friends. So I deleted the account. But, I still feel addicted to the computer I'm always listening to music or chating with my friends or checking my emails like most people The things* And lastly else to @PERSON1's @NUM1 grade @CAPS4 class, @PERCENT1 of people a day on it, @PERCENT2 said that they spend @PERCENT3 of people. That they now go on the computer. These that just one @NUM1 grade class most students are addicted to it.* no matter what age. This is why I believe that people do spend to much time or the. Many students go on @CAPS1 for hours at a time and in my own experience I have been addicted to the comp. and @PERSON1's @NUM1 grade @CAPS4 class when I surveyed them there ans a very high percentage of people that said they were addicted to the computer. So parents please tell your children if they need to spend less time on the computer." 4 4 8 +964 1 "Dear @CAPS1 Have you ever wondered how much the world wide web has to offer? I would definetly agree that computers have a benificial effect on people. They teach hand eye coordination, give people the ability to learn about far away places and they give people the chance to recconnect or new people. The internet has so much to offer and is absolutley benifical. Studies done by @PERSON1, doctor at @ORGANIZATION1 stated that @PERCENT1 of people who are on the computer typing have better hand eye coordination than those who do not. You could be improving your coordination and not even know it! Intelligent people would agree that being on the computer is very helpful to you. There are many computer games are there that you have to react quickly to and call for fast reflex and hand eye coordination. I know personally that it has help us. Since @CAPS2 been on the computer more I have noticed that my reaction time off this block for has shockly improved! Yes, I know that some people should get outside and exercise, but you can excersize and improve your hand eye coordination, either way you can go wrong. As the massive sits in space like high take fascinating worlds it the computers. The technology of computers to learn about the far away places. Kevin, scientist that @PERCENT2 of our knowing about space come from computers! For example think about google earth; it allows the human eye to see clear pictures of anywhere in the world! I think you would agree that without computers we would a lot of knowledge about the wonderful world around us. Would you rather us not have computers and not know half the stuff about we live in? By these high tech computers we can learn about life outside like space, and other galaxies. Did you know that @NUM1 of the population use the computer to talk, and reconnect to friends and family. I know I do! I know that people shouldn't be to computer, talking to people. But its a great way to stay in touch with people. They have awesome websites like skype and oovo that allows you to chat with other people over. Friendly, educated people agree that this is a good way to catch up with old friends from highschool or even way back to grade school. Another great aspect of online communicating is long friendships can be created. Newly explain, now they not online and got so close they ! Personally I know that I go to @DATE1 camp every year and make new friends. Internet websites like facebook helped me keep in touch with her. Clearly this is a great source to use! The time has come to decide the choice of using computers would deffinetly be a wise one. Without a doubt it will certainly help you; hand eye coordination and keep you talk or recconect with people. Most importantly it gives people the ability to learn about the wonders of far away places. So dont make the wrong choice, and appreciate and use all this computers have to offer." 5 6 11 +965 1 "Dear newspaper, @CAPS1 you want to learn good hand-eye coordination? @CAPS1 you want to have the ability to learn about far away places? And @CAPS1 you want to talk online with other people? If you said @CAPS3 to all of these questions then using a computer is the way to go! While using a computer you can @CAPS1 many things. You can look up a good healty recipe for your family or find a good relaxing place to @CAPS1 your daliy yoga. Although some people say that using a computer cuts down your time for exercising and enjoying nature, but it really doesn't. A recent poll was talking at the planet fitness in newington @CAPS2 and it showed that @PERCENT1 of the exercising people discovered planet fitness by the internet. @PERSON1 nature of the department of health and wellness said ""@PERCENT2 of my customers take online corses of exercising at home so that they don't have to be in public."" @CAPS3 i know it seems lazy to not go to a gym but, some people are terrified about what others think at them, so its I mean who doesn't want to exerise in the warning conforts of your own home and not have to go to a sweaty old gym? All right-minded people would stay at home and exersie from thier computer and not have to go to a sweaty and smelly gym. So its never. @CAPS1 you go to a sweaty old gym, or @CAPS1 you stay at your beautiful clean have with the inernet? Image, as soon as you get up in the well rested, instead of going to a yuchy gym you can stay home and enjoy a relaxing walk out in the comfort of your own home. Certently you care about your nose and want to be able to smell a nice warn apple one. But if you dont thats fine too. So don't go to a gym, stay at home and enjoy your day with your internet!!! I say stay at name and love your internet!!!" 4 3 7 +966 1 "Dear the daily newspaper crew, I have seen some of your own disagree about using computers. I for one believe that using a comenter really isn't that bad. For example, the computer is actually good for education. Many use them to create @NUM1 images of things for schoolprojects or science fair projects. I use these machines to play video games on to cure my boredum like most young teens and children do. Unlike most people I dont stay on it forever. I usually play for a couple hours. There are some downsides to having computer in the house. For one the machines use up load of energy in the house making the electric bill rise and @DATE1. On some websites there are people who try to be a stalker like the website my space and twitter but on the bright side these who try to be a stalker usually instantly get caught and put in jail. Computers actually have a positive effect on the mind and movements. For example children who have computers learn how to fly a kite or for themselves with their parents watching and they learn hand-eye. Many children who play sports that have computers actually manage to catch a ball faster than usual. So you see computers are not that bad. So please think of what will happen to children if computers are banned." 3 4 7 +967 1 "I Believe that computers have a positive effect on people. Computers are a relatively new invention, they have become very popular. Computers allo people to talk online with each other. They also allow students to complete homework assignments and important projects. Computers also allow people to store important files and pictures in places that won't get lost. Computers are helpful in so many ways, but these are just a few. Computers allow people online. whether @CAPS3's through email, instant messaging, or a video chat, computers peplace old and haved ways @ORGANIZATION1 communication. For example, instead @ORGANIZATION1 writing a letter to someone, mailinbg @CAPS3 to them, and having to wait two days for them to receive @CAPS3, email them! Obtain an email address, type a message, and click send. They will receive the message instantly, and even reply soon enough @PERSON1, president @ORGANIZATION1 the @ORGANIZATION1, says, ""Computers are an important part fo technology. People use them everyday."" @CAPS1 them everyday doesn't mean just for fun. @CAPS3 also helps with work. Three out @ORGANIZATION1 four adults who used computers say that they help them with their work and social status. Computers are a part @ORGANIZATION1 everyday life, and they can help with almost anything. Computers allow students to finish homework and projects quite fst. Instead @ORGANIZATION1 hand-writing that four-page essay on @PERSON2 @CAPS1 textbooks and use the internet for finding information. Computers also allow students to email teachers in case @ORGANIZATION1 missed classes and assignments. @CAPS4 @PERSON3, a student at @ORGANIZATION2 who had missed quite a few days @ORGANIZATION1 school, says, ""@CAPS2 I had to do was email my teachers, and they sent me @CAPS2 the homework assignment. I missed @CAPS3 was that easy."" @CAPS4's not the only one who agrees that computers are a big help. Millions @ORGANIZATION1 kids & adults agree. Computers not only let students write reports; they also allows them to save them for future uses. They also save important files and precious pictures. Everyone hates @CAPS3 when their camera or video camera breaks, and will their precious and wonderful memories are gone. Well, just save them to the computer, and they're there forever! @NUM1 out @ORGANIZATION1 @NUM2 people who store @CAPS2 their pictures in a computer agrees this is the best way to do @CAPS3. In conclusion, computers do have a positive effect on people. They allow people to talk online. do homework & projects, and store important files. I can assume that everyone agrees with me that computers are an important part @ORGANIZATION1 everyday life. We just woudn't be the world we are without them." 6 5 11 +968 1 "Dear @LOCATION1, I think computers are a great tool for everyone if they use it right. Here are my reasons why. First of all, I think computers are good because news travels quickly. Using the internet, world changing news can spread like wildfire and inform everyone in seconds. It is great for staying in the loop and reading about things you need to know. This reminds me of the time when a massive earth quake hit @LOCATION2 and traumatized its citizens. Within moments of the accidents, it was already circling the internet. This brought mass attention to @LOCATION2 which caused many people to donate and needed items. Secondly, the computer is also good for researching topics for school and common interest. If you need facts for a school project you can easily search what you need through the internet wide variety of search engines, you will be able to pin-point exactly what you are also look up things that interest you. If you have a favorite sports team, band, or are interested in a famous figure, you have tons of information on them at your disposal. You can do all of this within the privacy of your on home so you can remain as secret as a @ORGANIZATION1 agent. This reminds me of the time when are of my idols died. Within seconds of hearing the tragic news I was able to search the topic and get an endless uphoria of information regarding his death. Finally, you can chat with someone from around the world if you wanted to! Using social networking sites like facebook and myspace, you can connect with your friends and chat with them for hours on end. You can also enter chatrooms with people who share a common interest with you. Just like how I talk to people about a band we both love. I believe access to news, research, and staying in touch with your friends is without a doubt the best reasons to use a computer. What are you waiting for? Get one!" 5 4 9 +969 1 "Dear @CAPS1, I am writing this letter to inform you about my opinion on the effects computers have on people. I don't agree I think the experts are correct that people are spending too much time on their computer. My following reasons will explain why I don't agree. I think there is also an issue with computers. Please read on to understand my reasons. First of all, my reason on not agreeing with those who support technology is because their is no saftey! I think chatting online is great but dangerous. For example, most kids are followed by and its usually online. This is because the information all to unknown people. Also, kids get into dangerous for example they get kidnapped for this informal and the people they talk to. Secondly, I don't agree because it also caused addiction to the computers. Most people get addicted for the certain things they do online. These life of can also become dangerous. For example, people play some video games wich people killing and commiting crime. We cant not do in the ""real' world. These kind of game also bring people to dangerous. Another example is we've had students bringing because violence is the answer when it ! The addiction to computer is so bad that people do have a look of and interacting with things. Lastly, I dont agree because its also. Most people who are and again. These of into an life because you do enjoying at all. For example, people die of. This letter will effect others so thanks for reading. Hopefully, people understand why I dont agree." 4 4 8 +970 1 "Dear @CAPS1 @CAPS2 @CAPS3, @DATE1's society is much more different from what it was like twenty years ago. We have phones that can easily allow us to browse the web as we please just like a computer. Our access to such a large network beings us together, can broaden mental horisons and keep many @CAPS5 hard workers on key point so that when time for work comes around, they are ready. Not everyone agrees that technology is benefit to our growing well, but I believe it keeps us moving forward and away from ignorance in all of its forms. Our construction workers work hard during their busy seasons. They vigorously build sley scraping towers, educational fucilities, additions to our health center, and even the very places we call home. However, when weather is not on their side and building anything can be hazzardous in the long run, they must still ramain at the ready when duty calls. Lately, there has been an advancement in technology to help chane opperators maintain their skills during their of season vistually. It @MONTH1 appear easy to the untrained spectation. To one it @MONTH1 seem like all they do is seat themselves in a pull a few levers, and push a few buttons. However, there is in fact a persition to such a task. Pull the lever to quickly and the crane can go sharply in the wrong direction causing it to tip over. One of feild reponters tried the @CAPS1 virtual trainer and found a @CAPS1 appreciation for the jobs at our builders. That just goes to show that @CAPS5 one does not keep such skill in check, they could in fact cause a serious malfunction on a construction site. I, personally, find it very entertaining and at the same time educational to learn a language different from my own. In fact, I teach myself @CAPS4 at home. However, @CAPS5 I did not have a computer at home, my studies would be near impossible. With @DATE1's economy going to a class outside & school, or even hiring a personal tutor, can be enough to effect anyones budget emensly. The internet provides an efficient low casting, or even free, way to help any language learner. One can even find study tips from native speakers at those who have already learned vast bit about the language. In @DATE1's society not everyone has the time to go to he library and pick up a book on a country they are interested in. Some @MONTH1 say that asking a neighbor about their home canbe just as afective, but that can awkward for those that don't particulary do well in face to face setting. However, havbing a complete at hand can make learning an enjoyabl experience. Once can find blog posts about someone's visti to there country of interest & even videos of their time there. Websites made entirely for those interesting a particular culture can also prove helpful. On the other hand, @CAPS5 someone were to be looking for and acception vacation spot recommended by locals, that information can be found as well. Some people do not love in an area where they can connect with family by a simple call or a drive. One @MONTH1 have to take a plane or pay to take with relatives. Social networks on the web makes connecting with lvoe ones easier and more affordable. The speed of instant messaging can make it seem like they are in the same room instead across the ocean. I hope that everything I have fare travel can serve a purpose to someone who has not been able to find way benefits to technological advances. Please do remember that technology can serve as a skill maintenance tool, educational, and as a connection for our foreign born citizens. Thank you for" 5 6 11 +971 1 "Dear Local newspaper, @CAPS1 are big aguments about if computers are good or bad. I think that computers benifit our society. Why, because it makes socializeing easir, You can gain lots of education and also help with buisnesses. Wow, I cant believe how easy it it to ather people with computers. Computer are helping family chat with family and friends chat with freinds. It help peoples socialize by letting messages on paper that to be forever to deliver and to get one back, also if family members go away on a vacation you can still contact them. Or simply if a friend cant get a ride to another friends house they on still talk on the computer. Also a computer gives you an oportunity to socialize with people all over the world. Its amazing how easy it is to talk with other people with the computer. I really astonishing how much education we have gained from using the computer. Computers have given us to many part to learn. Before computers you learned about things from books, And many of those books could not teach you as well as a computer does. With a computer you can learn about space and stars and planets. Also with computers you can learn about other nation. What @CAPS1 culture and landscapes are like without even being @CAPS1. Computers have truly played a vital role in our education. Computers have done lots of things but not as much stuff as the did for buisnessed. The computer itself was a busness and people model lots of money. It helped buisnessed organize @CAPS1 work and money also its given people lots of jobs working on computers. Also it gave buisnesses, quicker, more eficiant way to put up for people to by @CAPS1. Computers have played a vital role in creating our economy. Computers have made socialize long easer. The ability us to get more education. Also it helps with our buisnesses This is why I think that computers have benifited our society." 4 5 9 +972 1 "Dear @CAPS1 Newspaper I'm writing a letter to you about how I feel about the effects that computers have on people. One of my reasons is that people that spend to much time on the computers they are litting their lifes pass by them. But the people that work on computers all day is a different thing. My second reason is that people could be on the computers and still interact with their family because they live with each other. My last reason is why do people want to be on computers all day. I'm not talking about the people that work on computer. My last reason is that the people that is spending all their time on the computer they are letting their lifes pass by there. The reason I say this is because if you are on the computer @NUM1 your life is passing by you. Because you are not doing nothing, just sitting in a chair in the computer getting fat. Also if you are going to be on the computer at least they to find a job on the computer. But I'm not talking about the people that work in computer all day long, because they have to do it. Its their job to. Thats one of my reasons. My second reason is that the people this me in the computer they still interact with their family. The reasons I say this is because you could be on the computer and will interact with my family because you live it the same huge as them, two when you are not in the computer you could be with your family and spend time with them. That's why i said that you still could interact with your family even you see on the computer. The last and final reason is do people to spend most of their lifes on the computer. The person I like this because type of person would spend most of their life on the computer and don't go find a job go enjoy their life. Also if you got kids you have fun with your children and make them believe that they parents that was to them, that, they had fun with them, and that they had somebody that they could look up too. So don't spend your life time on the computer geting fat, not spending time with their children and make something yourselfs. But I'm not talking about the people that workon computers. I'm talking about the people that don't work on computers. Thats why I said don't let youre life pass by you. i hope you liked the prompt and that you wont spend a lot of your life in the computer doing nothing just getting fat and letting your life pass you. I'll report myself again I'm not talking about the people that have to work in the computer. I'm talking about the people that don't work in computers." 4 4 8 +973 1 "I am writing this article to inform you on how most people are spending their time an computers. In this article I am going to tell you about computers and what people are doing with them these days. Some people use their computers for business of work related. But then again these are people that use them for entertainment and other social things. These are the people that just sit on the computer all day. What they could be doing is enjoying life. Going outside and getting fresh air. But no they want to sit inside all day long on the computer. Now is why do people want to stay inside all day long on the computer some people are constantly on their social websites. Such as @CAPS1 or @CAPS2. They are obsessed so thoes are teo websites that are very addicting to some people. and then these are the people who just like looking things up. Then lastly just get off, go spend time with your family the computer will always be there. And use the computer only when you need to. Yeah its fun to go look up things for your entertainment. But all things are good in moderation. So I hope you will listen and also agree with me I think I made my point about how much you should use computers. So thank you for listening." 3 3 6 +974 1 "What compters stop you from doing is your homework in school. But when you do something on the computer your not soposes to do, you get stuck on a website you can't get off your screen. So what I'm trying to say is to don't stay on the computer than just @NUM1 min." 1 1 2 +975 1 "Computers are a common household item these days. Due to how much computers are able to do, most people spend a lot more time on the computer than they should, and it is affecting our society. Computers can be very helpful, when trying to find information on a topic, but some people take it too far. Some people, their jobs are on computers. Others like teenager will do gaming or have instant messengers, which sometimes takes away from outside activities. Another situation with computers is that adults can get really into online gambling which is terrible for a person to do even at a casino, but now they can do it from their living room couch. Computers can also keep you in from outside, to get fresh air and sunlight. Computers are bad in someways but good in others. Sometimes computers are a pefect resource. When your history teacher assigns you a @NUM1 page essay on the civil war and you have no idea what happend in the civil war. In this case computers are good. Or your boss could tell you to find the amount of teen deaths in car accidents due to cellphones. Computers seem like a perfect resource. So far you've learned computers have their highs and lows but if computer time was limited then people would be able to do more stuff outside, or read a book. Some people might abuse computers others might not but if computer time was just limited I belive, that a lot of things would be different in our society today." 4 4 8 +976 1 "Dear editor, I see that there is an argument between computers being good or bad. I think that my oppinon can help your decision. I think that computers are good. I think they are good because they help kids with social skills, they help people with bad handwriting and they help people learn about things around the world. First of all computers help kids all around the world with social skills. They help them because these is so many ways to communicate with people through the computer. There is instant messaging and webcaming websites. Also a servey said that @PERCENT1 of parents say that the computer raised there kids social skills a lot. Another thing the computer helps with is people with bad handwriting. It helps because you can go on microsoft word and instead of writeing a great report that no one can read you can type I that when I have a paper for school that neatness counts on I always up my report. This can help alot of people who cant write as well as others because on the computer you change the font and everything to make it look as nice as you want. The last reason I think the computer is a good idea is because alot of people dont like to read newspapers and watch the news so they like to research certian subjects they like, to know whats going on around who world. I know my mom doesn't have time to watch the newest the newspaper but when she checks her email the first thing that pops up is the bigest news of the day. People all around the work go so the computer to find of the latest news. I hope you consider my oppinon when you make you decison, where you go think of all the kinds of people it helps. People with social problems, people with bad handwriting, and just busy people who cant sit down and watch the hour news. Thank you for your time." 4 4 8 +977 1 "Dear Local newspaper, @CAPS1 opinion is yes people are on the computer to much. I have @NUM1 good reason why I think people are on the computer a lot. @CAPS1 first reason is people are losing time. Second not that much engry. Third you just spending your life on the computer keep on reading why I don't agree that it befits society to people. People losing time to have fun. They do have any time for friends family, pets, and scuh more. It mostly adicaution to go on website like facebook, myspace, @CAPS2, and such more people just need to get off the computer and have fun outside. Mostly people dont really get that much engry. Some people are always inside they just need engry. Fresh our will help that maybe going to the gym or jog outside for a while. Being inside isnt really good for you. Just being inside just make you kinda gang weight. And then you wouldn't have anytime with your friends, and more only if your inside like always. Fineally you spend all your time at home being computer. And you don't have anytime, engry and such more. YOu spend all your time inside computer cool technology but you don't need to be on it @NUM2. You just have time for friends and family. Now you know @CAPS1 opinion why computers are benfit society. People are losing time and everything. People dont have anymore engry. And your spend all your time on the computer. Bye for now." 3 4 7 +978 1 "Dear Readers, @CAPS1 you imagine not talking to distant friends, only knowing about your town, or even failing @CAPS5 you didnt ha a @CAPS3? I know I couldnt. Some of the great benefits of having a @CAPS3 are talking online with friends, learning about new places and things everywhere, and being able study for and tests from the internet. First, being able to talk to distant friends and relatives is now passive with the @CAPS3. Facts show show that @PERCENT1 of families in the @LOCATION1 have distant friends with @CAPS2, now all of these people can tlk to each other! Ill never forget the time that my close freinds moved, but i was still able to talk to him @CAPS5 of the @CAPS3. Second, the @CAPS3 allows you to learn about new places and things all around the world. I never would have I know about some of the places I've been to if it was for comoputer, @ORGANIZATION1 stated that the @CAPS3 expert @PERSON1 says ""@CAPS3 are the reason we have in much without @CAPS3 wouldn't know about the places."" @CAPS4, it is now possible study without @CAPS5 of the @CAPS3, @CAPS6 can be done on the internet online. I'll never forget the that I forget my book, but I @CAPS1 still study @CAPS5 of the online book. In conclusion the @CAPS3 has benifits to you, like interacting with friends online, learning about new places, and being able to study. Computers are just end all-around benifits." 4 4 8 +979 1 "To whom it @MONTH1 concern, Computers can be a great asset to our society, but they are an even, bigger hindrance. People are wasting their days away on the computer. Hardly anyone goes out in exercise, or to enjoy nature. Perhaps the sea west effect is that hardly anyone interacts with their friends and family anymore. @CAPS2 you with their friends and family anymore. @CAPS2 you don't want to surromb to the computers. put down the mouse and go outside! Obesity in @LOCATION1 is at an all time high. Experts agree, that computers and other types of technology are to blame. People who spend a lot of time on the computer hardly ever exercise and that effects them negatively. These people have a shorter lifespan! They might not be around in twenty years to see their grand children grown up. Also, they have many medical problems. @PERSON1, an obesity expert, says, ""I have seen a positive correlation with the obesity rate and that of @CAPS1."" @CAPS1 can kill you! Obesity can also cause heart attacks and infertility! @CAPS2 you can avoid these diseases and health risks by getting off the computer, why wouldn't you? Using the computer is not a good price to pay for you health! Do you have fond childhood memories that involve nature? I know I do. Most people who spend too much time on the computer don't get the chance to make memories like that. Theyre too preoccupied with the computer to care. Many people won't ever see any of our national parks! Drew @PERSON2, a park ranger, says. ""In the past few years. we have had less visitors than ever before."" @CAPS2 people can't tear themselves away from the computer for even a minute to see the splendor of our national, there is obviously something wrong. Get off you computers and go outside! I share everything with my friends and family and try to spend as much time with them as possible. Almost all people who use the computer often say @PERCENT1 of the time, they use it as an excuse not to see friends and family. In reality, they don't want to leave it. As a society, we are becoming too dependent on technology supervisor says. ""I have seen as definite decline in family enrollment. We hardly ever see kids with friends and family hanging around"". She is right. Now is the time to stop using computers! Computers @MONTH1 not be totally to blame for the problems stated above. Maybe it's the people a though computers do contribute to the problem. @CAPS2 we didn't have computers, there would be more people out exercising, and enjoying nature. Memories would be when we hung around with friends and family. Now is the time to turn of the computer, and go outside. Call up a friend and take a stroll, @CAPS3 you do, know you can have fun withour computers." 5 5 10 +980 1 "Dear local newspaper, People spend to much time on the computer. Instead of exercising, enjoying nature, and interacting with real people they sit down and play games and watch music or movies on the computer. There fore I do not agree with people who say computers benifit the society. @LOCATION1, @LOCATION1, @LOCATION1. A lot of peoples skin is jiggily and fat because of computers. @CAPS5 you @MONTH1 ask? People sit in front of there computers all day when they could spend that time exercising, my dad got extremly over weight when we got a new computer. All he did was sit and play games like @CAPS1 wars or @CAPS2. I couldn't beleive @CAPS5 fat he got so my mom told him and now instead of playing on the computer he goes to the gym. You wouldn't beleive @CAPS5 much weight he lost. Also did you know that america is one of the fatist countrys because people don't exercize and just play on ther laptops and computers. So it would help america alot to stop playing softwear and start exersizing. So many people miss out on the butiful works of nature. The cool relaxing air at the beach is much nicer than a dark stuffy room with just the glow of a computer. There's so much to discover so much to be explored. So yes you could find the gisers in yellow stone online but it's nothing like seeing in real life. If there were computers back in the early @DATE1's people would never had the earge to find new land, you don't hear of many great explorers now do you? I bet if every one took a break from computer new spicies would be found or maybe even a cure for canser. Who knows what you can do if you step out of the box and into the buitful part of nature. ""@CAPS3 come down and talk to your grand parents."" ""@CAPS4 mom I'm playing on the computer!"" @CAPS5 many times has this happend to you? Has your son or daughter been on the computer with great @PERSON1 has been over? They @MONTH1 have wanted to play the computer then but they don't know if thats could have been there last day with him or her. Computer will be here forever or almost forever, peoples time is limited. There fore hanging out with a relitive is much more imortant than playing on the computer. I know a kid named @PERSON2 who was playing on the computer when his friend called and invited him over. @PERSON2 said @CAPS4. His friend was so disiponded and angry. I would be too. Whould you like to have a friend pick computer over you? I'd hope not. There fore computers hurt and are not as good as real people. In conclusion qualiy time with people, nature, and exercize is more important than a glowing box. I hope you agree the computers do not always help society." 5 5 10 +981 1 Dear newspapper I don't think that computers benefit our society. I dont believe that computers can be dangerous they make people lazy and you can be easily scammed on the computer. One reason why I dont think that computers benefit society is because it is very dangerous. Computers are dangerous because people can get kidnapped or herrassed. The town of @LOCATION1 police @CAPS1 says that over @PERCENT1 of kidnappings are from people that were met on social networks such as myspace and facebook. The police cheif also says that their are many cusses about people being herrassed by stalkers or people trying to harm them. Another reason why I dont think computers benifit us is because you can be scammed very easily on the computer. @PERCENT2 of people say that they have lost large ammounts of money due to credit card scam's on the computer. On computers their are sites that will act as if they are selling you something and take your credit card number and all of the other information that you give them and they will take your card and buy thing with it and you will have to pay for it credit card companies say that most credit card scams and frauds happen over the computer. The final reason why I don't believe that computers benifit us is because they make people lazy. Computers make people lazy because they are packed with a bunch of fun things like video games and you can watch videos and you could shop and you could see just about anything on a computer. I did some research and found that @PERCENT3 of people that are over weight have account's on multiple sites on computers. These are the reasons why I dont think computers benifit us. I hope you too heed to my advice. 4 4 8 +982 1 "In my opinion, I do believe that computers are good for you. I agree so because one, it can help you to communicate with other family members around the world. Two, it can teach you new languages you really desired to learn, and three, it can keep you updated on whats happening around the world. First, i believe that computers are good for you because it can let you communicate with your long-lost relatives you hardly see anymore. For example, if you miss any of your family members, you can simply go to your computer and search them up so you can type to them or talk to them through via chat mode, then you won't ever have that missing feeling anymore since you have a computer. In addition, computers can teach you how to learn new languages you alway's wanted to know, like, @CAPS1, or @CAPS2, or even @CAPS3 if you wanted! You can just simply go to your computer and type in ""language of @CAPS2"", and listen what it tells you of @CAPS2! Moreover, computers can keep you updated on whats happening around the world! It is way better to see it on computers than on tv's bevause computers give you more information about the situation of the event! Likewise, you could click, ""locate area"", on the computer and see in which area the incident took place in. You could also see the video's, behold the images, and seek the location of it on the computer. Sadly, my lecture has come to an . Those were my three main reasons why computers are good for people: You can communicate with long-lost relatives of yours, you can learn new languages, and therefore be updated on the qhats happening around the world. Would'nt you wan't to uphold those amazing events also?" 4 4 8 +983 1 "The computer is a good way to contact family and friend. People send messages all over the world or just to fon. People like playing video games or be on websites that they like. People all over the world by laptops to travel to one place to another. Everybody don't be on computer because they think its not go to have but some people do like to have one to be sending messages to hang out with one another or be talking about how was your day. Many people want computer because they do have enough money to @CAPS2 one. Some computers cost a lot @MONEY1 money like, @MONEY3, or @MONEY2 and even more than @MONEY3, or @MONEY2 it depend witch one they get. Around the world many people sell their computers to get money to @CAPS2 different stuff like, shoes, clothes or games. They always sell stuff on ebay to get less or more money, instead they can't take the computer back to get your money or to get a new computer. People want the classic computers, but now they come out with new ones like, touch screen ones. Many people been buying them at @CAPS1 @CAPS2 or @ORGANIZATION1. Every seens the new computers came out people been buying a lot the company been making a lot @MONEY1 money from making the touch screen computers. Every new year the company make new computers so they can get thousands or @MONEY1. Company all over world make different computers to bring out new styles so people can like them and @CAPS2 them. New styles they make more money they make. Some people make their own companies to get money like the other companys get theirs, but some @MONEY1 the money you make some goes to the government. The money the give to the government is to take care @MONEY1 the homeless people. Computers are used from leaning or for fun. People share computers with other people they can't not share it because it wouldn't be fair. Some people take turne using it. Some people don't like taking turn with one another. Everybody share or have they own and they use it or not they can't force their server to it if somebody wants to net on it. Some people lie and say they were geting on it. People like joking around with others. Parents always say a computer is not a tag to play with computers cost a lot to repair and get it fixed all the people spill water on them a the computer mess up and the people be mad and maybe he/she just got a new computer. When computer first came out people bought them to see what they will be like. Many people liked them and it got all over the world and people were talking about them and the company made more and more until it got in stores all over the world. The computer got famase and the company made newer styles for everyone else. People bought a lot @MONEY1 computers everytime they come out with a new style. Many people had @NUM1, or @NUM2 at home as they @CAPS2 them. Companys made other company mad because the other companys were making better styles. People were ordering online to get new computers. And company how make them is making a lot @MONEY1 money. Company stopped making them until they came up with a new computer that is the @CAPS1 one ever. When they came up with one the company was mad that they mad a better one. Some company joined to make one together." 4 4 8 +984 1 "Dear local newspaper, I agree that computers benefit us totaly. This lets people explore the world and do anything. Also, computers are used for many things. Last but not least @NUM1 out of every @NUM2 households have at least one computer. So computers lets us do anything and everything. It helps most people with their jobs, college/school, and you can even buy a house or car online. It doesn't cost that much and its very usefull. You can look up facts you need or even play games when your bored. It keeps us in touch with the world. Also, many thing require a computer. For example, In order to play xbox live you need a computer with @CAPS1. Xbox live lets you play video games with other people or even your friends. Some homework requires computers and some colleges are only on the computer so you can stay at home. Anything you need you can find it on the computer. @NUM1 out of @NUM2 house hold have computers, or @PERCENT1 of @LOCATION1 does. I agree that some people waste their time, but without computers everything would be much harder. For example, say you need to having to wait @NUM5 days for the mail. Just @CAPS2-mail it. Most people wouldn't have a job if it weren't for computers. It saves peoples time and lets them do other things except have to drive somewhere to give a letter to them. So I think computers are a huge benefit. Like I said you can do anything. Like @CAPS3. It keeps you in touch with friends if your on vacation from school. They are also used for several different things like downloading music on your @CAPS4. Also, @CAPS5 everyone has a computer. If scientists are going to complain about computers than why do they use them? I think computers are great! But whats you opinion?" 4 4 8 +985 1 "Dear @CAPS1, "" Computers are great! They do so much for my family and me, i can't live without a computer."" @CAPS2 my many local in the town of @LOCATION1. For me, computers are a place to have fun with all the different applications. But they can also be used for researching anything you can imagine. I also think tha computer is important because it is where businessmen do their job. My favorite part about the computer are applications like @CAPS3, @CAPS4, @CAPS5, and so many more. These apps. are great because on @CAPS5, you can talk to your friends if you don't have a cellphone, or talk to friends that live in another state, @CAPS3. Easily my most favorite application, because I get to talk to my friends, look at pictures of them, see who they are dating, and so many other endless possibilities, You can also play and download games onto your computer. It's always very fun to do things on the computer that you enjoy, and not have to research all the time. The second thing on the computer, is research. Researching can be fun and boring, however you look at it, But researching is educational, and I asked a mother with a @NUM1 year old, a @NUM2 year-old, and a @NUM3 yearl-old and she said ""The most important thing to me on the computer is researching. Its's fun, enjoyable, and most importantly, educational!"" The best thing about researching is that, there are endless amounts of websitees that have information for us to look at, and enjoy. People that work and have jobs, are mostly the ones on the computer, and a lot of them ar researching while working. People that work, are th ones that are basically on the computer @NUM4. Businessmen, designers, etc.... The computers are mostly used by workers for e-mail. My father is always on the computer, checking e-mails, typing something for this boss; and even talking on a video conference. There are endless possibilities for workers because foe some of them, computers are their jobs. Computers, in my opinion, they'are one of the best things created. They are the best because they ahve amazing apps. for me to have fun on. But they also provide an educational opportunity through research. And they are great for people with jobs. I don't think there is any person that can live without one of these technological beauties." 4 5 9 +986 1 "Dear local newspaper, @NUM1 out of @NUM2 students at @ORGANIZATION1 say that they spend most of their time on the computer. I think computers have a bad effect on people because they can cause safety issues, health issues, and ofcourse education issues. With all this new technology, teenagers aren't aware of their surroundings at all. On top of that, they're not aware of what's happening to them. Adults also do use the computer, but not as frequent as us teenagers. It's time now to realize what computers are doing to us and the world today. Computers can cause safety issues. Now more than ever people use where they talk to friends. But, what they don't know is that the person on the other side might not be what they think it is. Lately, on the news we hear of teenagers getting raped or kidnapped because of people who they were talking on the internet was not who they said they were. Bad people are always lurking on the internet, and we need to prevent them from getting in contact with the kids. But, even besides having bad people online, computers can with your privacy. It's possible for computers to give out your information to other people so, we really need to watch out. Computers though not only cause safety issues, but health issues also. Computers play a major part in destroying our health. About @PERCENT1 of @CAPS1 are overweight or obese. T.V's use to be the issue for people not excercising, but now computers are doing just the same. There are so many things to do on the computer that just doesn't make you bored. That there means that there is no way to from it. But, you need to get up and exercise and computers are preventing people from doing so. It's like it's hypnotizing us because we simply don't want to get up. Computers can also have an impact with your vision. I know that after a long time on the computer I have a massive headache because my eyes just hurt so bad. Also, computers can make people stop talking to each other verbally. Talking and interacting makes us have safe relationships with one another, but computers again are preventing this. Besides interfering with our computers do the same with education. Computers can really be bad with our education. Students now easily forget to do homework. There are so many distractions today that than of them whom people spend a long time on it, we forget to do other things that we're suppose to do simply becausewe're distracted. But, eventhough we forget our homework, we also @MONTH1 forget to study before a test. This would result in a in high grades. Computers shouldn't be distracting people, but instead helping them. I think it's not the people to not get distracted on the computer because it just has so many interesting features. For example, the internet, and websites like @CAPS2, @CAPS3 @CAPS4, etc. We have so many distractions in our that we don't need more! Computers really don't have a good effect on people. More and more people get computers everyday. They should know what its doing to them, and what's happening to the world around them go outside and enjoy nature? Maybe, go to the mall with friends and. There are a variety of things to do rather than staying glued to the computer the whole day. People need to stop being and open their eyes to see the effect computers have on people." 6 5 11 +987 1 "Dear @CAPS1, I am writing you this letter to give you my opinion on computer use. In my opinion, I think that some people use and rely on computers too much. Wether it be for a research project, talking to friends, and even answers for homework. Everyday millions of people are on the computer for hours straight. Moving your fingers doesnt count as exercise and it wastes energy. Many people I know would die if they didn't have a computer because friends are on or made because they need if for homework. These type of people need to be taught how to get things done withou technology because are day it might fail. Some students rely on there technology to work orthey will fail. These children need to be taught that there is other ways to do things. Like hanging out with friends, reading a book, and even doing their homework. Since students rely on their computers so much then always on them. Every day people I know go home and jump on @CAPS2 for the rest of the day. They never can do anything like going outside and doing sports. Many kids do not do any type of athletic sport. Obessity is a huge problem in the @LOCATION1 are the numbers keep increasing drasticlly. Everyone thinks that it is beging caused by bad eating habbits, thats only half of it. People overusing their computer is also a big problem. Children around the @LOCATION1 are stuck on their computers all day checking message, and seting up pictures. While these children are on the comptuer they dont even think they just chow down on ""@CAPS3"". This comptuer usage problem is beging to become at bigdeal with the obessity and hold much people rely on it for basically everything. So we need to be the first people to stop this befor it forms bad. This could be a huge problem in the future. So lets start to cut our usage time down now." 4 4 8 +988 1 "Dear @CAPS1, I think computers aren't good for people because they could spend that time exercising, hanging out with friends and family and reading. The first reason I don't think computers are good for people is because they could spend that time exercising instead of @CAPS2'ing you could ride your bike or even walk the dog, exercising @MONTH1 be hard work but, it's better then staring at your computer screen. Just because you eat well dosen't mean your healthy. You need exercise to stay healthy too. So, run, ing, walk the dog, go to a gym instead of sitting at the computer. Another reason I think computers aren't good for you is because in the time your on the computer you could be hanging out with your friends and family. Lets say your family is going to the beach, you stay home to play games on facebook. Your family comes back talks about all the fun they had, even tho you weren't there. You could have been apart of those memories. Now time to compare with your friends. Its movie night, all your friends are going. But, you stay home to webcam with your aunt. You stayed home both times just to be on the computer. You missed out on a lot. My final reason I think computers are bad is because, instead of computer time it should be reading time. Looking at a computer screen and reading is a lot different then reading a book. Reading books increases your vocabulary, you learn about different types of litature. Over all reading books makes you smarter. When your reading online you just read what people say, basically rumors. READ! In conclusion I think people should spend more time exercising, hanging out with family and friends and reading instead of being on computers." 4 4 8 +989 1 "@ORGANIZATION1, In today's age computers are seen everywhere and they have been so helpful. They act as an information highway and connect people together. The new advances in technology have had a positive effect on humans all over. First off, computers are an easy way to have a universe of information at your fingertips. @PERCENT1 of students at @ORGANIZATION2 say that when assigned or paper or project the first source they use is from the internet. "The internet is fast, simple and reliable when you know how to use it." said student @PERSON1. Children from the age of @NUM1 and up are learning how to use the internets multiple online encyclopidias, amagazines, newssites or other resources to get information. I remember my kindergarden computer class where we'd reserch dinnosaurs and weather patterns on kid friendly websites. And now being in middle school we use websites like @CAPS1 Online for up to date reliable information. Moreover, I've seen my mom, a nurse and hospital manager, use the internet for videos and articles on how to do certian procederes and ways to orginnaize a productive hospital. The internet is a great way to have a highway of information at the touch of a button. Furthermore, computers are used as a way for people to stay in touch. @PERCENT2 of teenagers say they talk to other peers using @CAPS2, @CAPS3, @CAPS4 or @CAPS5. Its a great way for us to communicate with our busy schedules when we can't always get together. Also with parents losing jobs in this ecconomic downfall, kids are always moving. Last @DATE1 one of my best friends in the world moved all the way to @LOCATION1. I though we'd never talk again and I was so upset to say goodbye, but because of @CAPS6 and @CAPS5 we talk non-stop and have accually never been closer. And its not just for young people to fool around with friends but adults use social network too. They connect for buissness through the internet and talk about future deals or problems and even use it to connect with old friends they haven't spoken to since college or childhood. As you can see the internet has had many positive effects from doing reserch faster to connecting with old friends, computers ar helping everyone." 5 4 9 +990 1 "Dear Local Newspaper, I believe the computer does have positive perks, but it also has negative perks. Reason one you loose interaction with people. Reason two you then forget to excersize. Reason three, your health is in jeopardy. Firstly, you loose interaction with family and friends. Because you would spend so much time on the computers. It ruins your marriage if you are married. If you have kids you risk your relationship with them. I am not saying to stop using computers. Because I use them myself. I am saying don't make your life the computer. It's not good for you! Secondly, you need excersize. Stastics show @PERCENT1 of the people who live on their computers gain weight faster would know because as @NUM1 yr old I have gained a little weight because of computers. Most people when on the computer tend to eat more @CAPS1 are all well-known facts. That have been proven. Since, you can't walk with a computer in hand, you stop moving. Meaning you stop excersizing. You have to limit your time and then there is where I believe they (computers) benfit you. Lastly, your health is very much at stake. If you are at the computer for @NUM2 hours at a time your eye-site will pay. My eyes stink when I am on the computer for half an hour. Doesn't your head hurt when you are the computer for so long? Yes, the computer is fun and it gives you things to do, I am the first one to admit that But, it also hurts your heath. For being on the computer for so long you are at risk for carpal tunal syndrome. Which is very painful. Computers are so much fun and make life easier. But, they have disadvantages. Reason one you loose interaction with people. Reason two you stop excersizing. Reason three your health is at risk. If you limit time, everythig will be alright!" 4 4 8 +991 1 "@ORGANIZATION1, @CAPS1 my name is @PERSON1 and I am writing to you because, I want to inform you about the benefits of having computers. I think that having computers is a great way for kids like me to learn more about things in the world. Having a computer also helps people in need and also inform people about far away places in the the world. I beleive if it wasn't for computers we wouldn't really know that much about our world. Computers also help us to send emergency messages across the world in @NUM1. Some people do not think that computers have an effect onour society but I for one think computers have a very positive effect on people. people also think that computers make people spend less time exercising, but I believe that it actually helps people to exercise because you can go gives different exercising techniques. In conclusion, I think that computers have a positive effect on society." 3 3 6 +992 1 Computers are good to use because it tells you everything. Like if you need a number to a restaurant you can just get it off the computer and sometimes when you wanna go on a vacation and if you wanna know how much it cost you go onto the computer. And computers are good because if you wanna travel to different places you can go onto the computer and look for a map and print it out. But sometimes computer are bad because when people go on web sites to chat peoples can be grown ups but talking to little kids. 3 2 5 +993 1 "Have you ever wondered what life would be like without computers? Some experts are concerned that people are using too much time on the computers. I believe we should still use computers. Without a doubt using a computer helps us learn. The computer helps us learn about other places in the world. @PERCENT1 of people say they would love to look at beautiful places in the world. Computers also can teach you how to speak a language. @PERSON1 of @ORGANIZATION1 says that ""taking spanish online helped im a lot on her class. Computers now offer online study groups that can help us get into a college. Many people would agree that using a computer helps us learn new things. Its a fact that you instead other people on computers. You meet new people when you are in the computer. Most people live meeting other people online. You also learn social on the computer. @PERCENT2 of people say they learn social on the computer. People also can learn to have a personality because they in use. @PERSON2 says that ""because I got on the computer I didn't have the personality but I feel like a whole person. As you interact with people on the computers. Did you know that a computer teacher in life say if you need to use a computer in your will one already. @PERSON3 says that using a computer helped you type. Using a computer helped hand eye coordination. You type a lot of essays in college too os that can help you as well. So now you know that a computer helps you in the future. Without a doubt people should still use computers are helpful in many ways. So what are you waiting for go out and go your computer today!" 4 5 9 +994 1 "Dear local newspaper, Have you even been on a computer too long & haven't spent time excersising, or haven't spent any time with your family? Well, that's a big problem here in the @LOCATION1. In my opinion, to make this problem better, people should only be allowed on the computer for a certain amount @ORGANIZATION1 time & after they enjoy themselves with a nice workout, time outside & most importantly with their families. I think this will make the problem better, because you can enjoy yourself a little bit more rather than getting home from school & shooting right to wherever your computer is & being on it for the rest @ORGANIZATION1 the night. I also think this will help the problem because it will also allow you to get better grades. If your on computer all the time & don't have any time to excersise, go outside, and bond with your family then that most likely means you have no time to do homework. By not doing homework, your grades could go lower & you most likely won't understand what you are learning in that class. This one problem ran also affect you so many other ways. The problem with computers & why people, mostly kids are so attached with them is because @ORGANIZATION1 websites such as twitter, facebook, youtube, etc. & kids are @CAPS1 to them. This is part @ORGANIZATION1 the problem because kids can't get off @ORGANIZATION1 them, they like it so much. This problem leads to the main problem because if parents say ""Time to get off... go get some fresh air."" the kid always goes ""one minute"" & the parents let them get away with that, but then that ""one minute"" turns into an hour at most. This is bad because by the time the kid gets off the computer, its dark out and they can't go run around outside. I think this is important because think that facebook & twitter should be limited amount @ORGANIZATION1 time and should log you off after @NUM1 minutes. In conclusion, this problem is a national issue & in my opinion should be a new law, that kids have to play outside, and spend time with their families before going onto any computer. As you can see having all these great websites leads into a problem with kids. Thanks for your time on reading why I think computers are a big problem here in the @ORGANIZATION1." 4 5 9 +995 1 "I think computers are good, because some people dont have phones so @CAPS1 a good way to conect with people you know, also meet new people. Second some people are going to collage when there done with high school so you could just look on the computers and find one you like and pricess, also find ways there. Third reason is ahopping if a holiday is coming up you could check online and find stuff for cheap and nice to you. You could also order it to your house online if you dont got alot of time to go shopping. @CAPS1 some reasons why I think online is good you could chat, find places and pricess, collages and also shop online @CAPS1 why online is good." 2 2 4 +996 1 "Dear @CAPS1 I heard a lot of people are spending to much time in the computers and less time exercising, enjoying the nature, and interacting with family and friends. In my opinion I think you should know the compouter because it helps for school homework or projects, talking to family far away and finding new friends. My first reason why we should keep computers is because it @MONTH1 help on school homework or projects. This is my top reason because its really helpful and its useful when you need it also if your computer its not working you can go to your friends house and use computers, when your done you can save on hardrive and print it in your school's computers. My segond reason why you should keeps computer is talking to family. Without the computer you can't communicate with family. In my opinion computers are very helpful to cummnicate with family. If your phone is not working you can also use the computer to communicate with your family. My third reason is communicating and find new friends without the who are you going to meet and communicate with you can communicate with your family throught the computer, or even if your running late you can send them a message through the computer. In my opinion I think the computer its a really good way to communicate with your family. I know that people say they spend to much time in the computers and its addicting, but its good for school work like projects and assignments, also people said its just to what on the but in my opinion we should keep computers because its no to see whats on the other person. Its to do school work and talk to family. I know people spend to much time in computers but to other people its not. In my opinion, we should not get rid off computers because it good for doing school work and talking with family. I think what you should do its not get rid off computers." 3 4 7 +997 1 "Many families across the globe use computers, whether their from @LOCATION1, all the way to the deserts of @LOCATION2. However, believe that being on a computer can negative effects to you like lack of exercise, In @CAPS21 perspective. I can agree, with there, but I truly believe that computers can have a positive effect on society if used correctly. With computer on @CAPS21 side, I believe there are many positive effects towards computers, such as: there are many things to do, you can from the internet, and it is very entertaining. If you have a computer, I'm sure you can agree with me that there are tons of good things you can do. For example, I know of many online colleges. Ever heard of the commecial, ""@CAPS1 in your @CAPS2's?"" that is where students can got their @CAPS3.E.D and have a succesful carreer. Not only that, you can get discounts on many items just by shopping online. There are many shopping sites online, such as @ORGANIZATION1. Furthermore, many shops like @CAPS4 @CAPS5 have a catolog online, where you and effenly. Lastly, if you have close relatives or friends that live far away, there are many options today like @CAPS6, (@CAPS7 @CAPS8 @CAPS9). Webcam programs like which you see and talk to each other using a webcam and @CAPS10, where you can find your friends and check how their doing daily. These are all good reasons why computers are sucess in the economy. Some computers are used for entertainment. Online there are many @CAPS16 you can play, like @CAPS11's (@CAPS12 @CAPS13 Online @CAPS14-@CAPS15 @CAPS16) I play many of these, including @CAPS16 such as @CAPS17. I love these @CAPS16 because they are very amusing world. You watch many of your favorite movies watch funny obeses on the internet via @CAPS18. @CAPS18 is a world-wide used source where you can watch or upload videos so the world can see. A @CAPS18 video is ""@CAPS19 @CAPS20 @CAPS21 @CAPS22,"" a young boy gets bitten by his younger brother. This entertainment system is also a great way to use up time lik if you're bored. I can see how people be to it, but you just need to use it wisely and make a plan to use the computer maybe an hour a day. A computer also has many great sources you can learn from, like an online website that has fun @CAPS16 called @CAPS23. With this, you can play many fun @CAPS16 while learning about interesting facts about science. In @CAPS21 science class, we use this websites many times, to us learn about motion/gravity. You can also conduct research on the web, you with many projects. I know I use the web to with almost every project I have." 5 5 10 +998 1 "Imagine your life without the benifits @ORGANIZATION2 the computer. Do you think it would make life a little harder? Computers have positive effects on people for educational reasons and for a new way to develope @CAPS3 skills. @ORGANIZATION2 is very important to our sociotey. Computers can help with our educational needs. When a school project is going on more than @PERCENT1 @ORGANIZATION2 students use a computer to acces the information they need. I agree that students depend too much on a computer and not on books, but the computer has more information to offer than the average book. The computer @CAPS1 lets us, as students, to broaden our horizon. The @ORGANIZATION2 stated that ""a near @PERCENT2 @ORGANIZATION2 students learn something new from a computer that they did not already know."" @CAPS1, in @CAPS2 and @CAPS3 @CAPS4 a student could find more information on a specific country than they could with a book. I predict that as a result @ORGANIZATION2 the informational acces the computer gives us, that soon grades will boost at least @NUM1 to @PERCENT3. In a servey that was done by the @ORGANIZATION1, found that @PERCENT4 @ORGANIZATION2 students found more information, that was relavent, on a selected topic than in the whole school library. Next, the computer can help with hand-eye coordination for young kids. In school students are observed to see how well or if there coordination is being developed. With @PERCENT3 @ORGANIZATION2 students having very little coordination, computer games lowered the @PERCENT3 to @PERCENT5. The computer does help with the educational needs @ORGANIZATION2 students in @LOCATION1. The computer is a great way to socialize with friends. It is a new and inventive way to communicate. I know that some @MONTH1 say that there is less time spent humanly interacting, but on the computer it is still interacting. With a phone you can only chat with each other, but a computer has a webcam. This device allows you to talk to people with some human interaction. Around @NUM2 to @NUM3 million @CAPS5 have this device to use. It @CAPS1 is preinstalled into many @ORGANIZATION3 and @ORGANIZATION4 laptops, giving us portable acces to talk. CEO at @ORGANIZATION3 said that ""@CAPS6 the laptops have come with c built in web cam, one out @ORGANIZATION2 every two that have it installed use it to chat socially and for buisness."" The computer can help with our communications for @CAPS3 or buisness needs. The computer is a good way to start and develope with @CAPS3 skills. More than @PERCENT6 @ORGANIZATION2 children use a computer to start with the begenings @ORGANIZATION2 their @CAPS3 skills. Computer allow many people to become @CAPS3 with each other in new and effective ways. In conclusion, the average computer can benafit our lives in positive ways. From our educational needs and to our @CAPS3 needs, the computer positivley effets us in these two very important ways." 5 4 9 +999 1 "Dear Newspaper, @CAPS1 your life without computers. Writing articles on a typewriter or by hand would surely be a hassle. The question of whether or not computers are beneficial to society has risen in the media, where they argue that people spend less time exercising interacting with nature, and less time with their family. However, computers are a great step forward in modern science and are beneficial to communities. Computers have drastically helped out educationally at school, not to mention the easier way of connecting with friends and family. Also computers have so many different forms of entertainment. Computers are great step forward and are completely beneficial to our society. Firstly, computers have helped academically in our schools and at home. I can't even @CAPS1 the hassle of coming home with thee assignment or writing two essays, only to have to write it by hand! Wanting to get it over with would only cause me to rush, resulting in a bad grade. Also, think of the handwriting factor. Most kids in my school don't have good handwriting, and I am assuming that teachers have a hard time grading something they can't read. With programs such as @ORGANIZATION1 @CAPS2, you are given the option of different fonts, colors, bolding, pictures, symbols, and so on. Another way computers have helped academically is in schools. More and more teachers are using computers to help us learn. Tests are taken on computers, websites to help us research are visited, and other @ORGANIZATION1 program such as powerpoint can be used for a project. Computers help a lot in school, while helping us learn so much more. Computers also help with keeping in touch with friends and family. The days of short letters are replaced with long emails with pictures attached, sent in a matter of seconds whizzing through the internet only to arrive on your friend's screen. People can save money by not having pictures developed but instead having them stored on their computer, ready to print onto boand paper. There adveances in communication through computers that have been made. Things such as cideo chat (vchat) where you can literally see and talk to the other person, or just audio chat where you can talk to the person, have been made. Such easy ways of communication motivate people to speak to family and friends and stay in touch. Computers have made a positive impact on community by havinf simple ways to talk to your loved ones. Computers can alos provide a fun source of entertainment on the web. Websites have been created where you can play games, find people from your past, or maybe just look out funny videos. Anything you type into your toolbar instantly transforms into a page of links websites where you con find details on your topic, or relative things one fun website is that of 'youtube'. This website lets people upload videos. The possibility are endless on the web. Another fun website is '@CAPS3'. This website is where you can 'friend' people you know from the past and interact with them. You can post viedos, write messages and such. As you can see, entertainment is everywhere on the web. The time is now to understand the full benefits of computers. Computers are a benefit to modern day society because they help academically, encourage you to stay in touch with family and friend, and provide entertainment. We should all understand that computers are a huge advance in science, and they are a great help, and also fun! " 6 6 12 +1000 1 "The effect computers have on humans is by far a positive one, and the outstanding intelligence computers provide must be embraced, not feared and avoided. Whether we like it or not, computers will be necessary to solve issues of the future. Besides, for personal usage, computers are highly beneficial. The main reason people fear computers is because of the dangers is radiates, which really isn't reasonable, when analyzed closely. To not use such a complex and developed system such as the computer is completely irrational, the computer is the future plain and simple. It is inevitable that the computer and technology related to that, paint the picture of the future of our world. Whether people like the concept or not, computers will be necessity to solve the problems and calamities that will wreak havoc on the world in time. Computers can predict natural disasters, and with that, people in the area of the catastrophe's destination can be evacuated. Lives can be saved. Computers can calculate, pollutional margins, and provide solutions to the large amount of pollution humans release in the air and @CAPS1. @ORGANIZATION1 Nature can be spared. So much more can be attained by putting the computer to full use. People must adapt to @LOCATION1 technology, or we will fall behind and watch our @CAPS1 slip away. This proves the effect computers have on people is not only positive, but necessary to advance in an ever-growing world. Stepping down to a less global level of effects and to a more personal level proves to also be beneficial to humans. Computers in most cases, do better work and create less error than humans themselves. Instead of requiring humans to work in dangerous locations such as deep water, computers can be sent down to visualize the before unattainable areas. Also, faster communication is extremely helpful in certain circumtances, such as an occurance in a workplace causing the area to be off-limits. As member of the workplace can simply e-mail his employer, informing them of the accuracy and preventing them from putting themselves in danger, or simply preventing men the trouble of a commute to work. Even from @LOCATION1 to @LOCATION2, with simply the press of ""@CAPS2"", people across the world can be of the accident. Foreign communication, specifically by means of instant messaging can strengthen our tie with other nations, in the fields of both business and government. Lastly, finding information, is so easy with a @CAPS3. Where would be without computers to find information rapidly? We would be still going to the library and checking out books, reading through page after page to find the information that would have taken less even a minute on a computer. Even a person agreed computer would have to admit that to be highly beneficial. As you can see, on even a less global level of use, the computer still proves to have a positive effect on its users. The one thing, parents especially, that fuels the negative opinion on computers is safety and reliability. When these two topics are analyzed, it is so simple to eliminate unreliability and danger of the computer. Installing a program of which there are infinite to choose from, that allows ""good"" websites to be viewed, and ""bad"" on potentially dangerous @CAPS4 to be binded. This eliminates all that is heard about on-line interactions and activity gone bad. Even without software to block dangerous websites, computers are generally safe. Only @NUM1 out of @NUM2 websites, includes content considered ""detrimental"" to humans. Also, of those @NUM2, @NUM4 provide reliable, correct information. Those two statistics annihilate the question of safety and reliability that some users come to ponder. That goes to show that the computer's negative aspects can be eliminate, leaving only the positives to remain. In conclusion, computers have a far more positive influence on users than negatives. Computers are the future, and have even proven to save lives. Why wouldn't somebody want to save the life of another? Also, the benefits of @CAPS3, or personal computers, are too large and helpful to pass up. Lastly, when viewed carefully, computers are very reliable, and can be made extremely safe, which eliminates the main fear computers. We have come so far to create such a safe, beneficial, and necessary device, we must put it to use, and by doing so, better our own lives, and the life of @ORGANIZATION1." 6 6 12 +1001 1 "Dear Newspaper, I think people should use computers for spicific reasons. One reason is that many people lose family or to be more spicific lose contact with people. Then when you have a computer for someone else has one then you would be able to see them. For other purposes like wanting to play online with fellow student or friends then you have to use computers. Plus your fingers get a exercise when your typing. Many of us young kids say that myspace and facebook is a bad place. Actually its not because most of your family is on it. Doctors use computers all the time to notife other doctors that something wrong with a patient or give a visual of the bereathing. Workers even use it to see whats going on with the jobs if theres any jobs open so they can take it. Students use it to show what work they have to do when the teachers not there. If i was a capenter of a real estate agent I would have a computer with me. The reason why is that my group would know what houses are avalable to use or thats sold. Or I would give them different house to choose from and give them a good deal on it. I would also bring a computer with me for gps so i can know where I am. Many people use computers for different reason. Such as pog, cheatcodes, @CAPS1 cards and other thing. My reason for using this is because my work is important to me. I would do it on the computers if I miss it. That is why you should have computers all the time. You newer know what would happen. In conclusion, This is why computers are very important to have. The reasons are for if somthing happens. To you and you don't have a phone use a computer. Also its beneficial that everyone has thing to do but computers are the best thing to do." 4 4 8 +1002 1 "Dear Local newspaper, I think computers are great sources. They help us instanly when we have to find something. Computers are very helpful and they are easy to use. Once you have mastered the computer it feels like you can do almost anything on it. Computers are great but the can also have negative effects on us too. I like, computers but I am going to say I am against them. When people get on their computers it's like they're in another world. When your on the computer you are alot less socal than you would be if you not on the computer. On don't know about you but alot of people are addicted to their computers. They get on an they stay on forever. The act like it is a neccesity to be on the computer every day. I do not have to be on computer websites like @CAPS1 and here is why. Compters get really annoyting sometimes. They distract people alot. Like the other day my sister and I were going to @NUM1 walking but we didn't go because she wouldn't help us exercise so we shouldn't be using it. In this economy it is important to have socal skills. Instant messaging people doesn't mean you are going socal skills. You actually have to get out and talk to people face to face. When I am on the computer to long I know. I know this because my eyes start to hurt. This is bad for your eye sight. People sit in their houses and just stare at the bright screen. They @MONTH1 not know but that is blinding so they must not stay on the computers long. These were some reason why you should not use the computer. I am not saying that it is an evil contraption I'm just saying, use the computer for info and work not for games and other things. You could be outside having fun instead of sitting up in your house so get out! Go make some real breathing friends in person." 4 4 8 +1003 1 "Dear Newspaper, People should play with their family and friends instead of staying on the computer all the time. People would be more fit, have closer bonds with their family, and get better grades in school. People will alway get fit faster if they excersise instead of staying on the computer. When the computer is unpluged, anyone has a chance to go out side and play. When people go outside to play with their friends, they excersise which causes you to lose weight. @NUM1 scientist believe that it is better to go outside and socialize than to sit on a computer and watch monontenious videos. People would be more active if they stay of the computer and went outside because it will keep you happy with your body, and healthy so you don't die of a terrible diseases. Their would be closer bonds with families if people stayed of the computer. Family would be closer together instead of spreading apart by computers. Your family is always their to comfort you when ever you have a terrible day. Your family will help you get over any problem so that you can keep moving forward. If you did this by computer, all you see is a persons face who can't comfort you with a hug. Without computers, you get a closer family that loves and supports each other, but with computers, people just drive their families away. Closer families also help children in school get better grades. Families who stay of the computer and have dinner with their families typically have children that get better grades. @NUM2 scientist agree that kids who have dinner and play with their families get better grades in school. If kids get better grades in school from staying of the computer and spending quality time with their family, we could get great inventions that can help mankind in every single way. All of can happen from staying off of computers. Staying off computer is a great way to help yourself and other people to. It would get people fit, create closer bonds, and create more gradutes who go on and achieve the greatest of all inventions. Imagine what else could happen by staying of computers." 5 4 9 +1004 1 "Dear @CAPS1, @CAPS2 people have computers in there house hold but they disagrees with a computer can help you. There are some advantages in useing computers such as being able to search information able learn hand-eye coordination, becomeing organized, but it also has it's disadvangtages like children spending more time on the computer rather than going out side and playing with friends and exersizeing and staying fit. I agree with computers do produce a positive impact on children. Computers not only let a child stay in contact with their family that live faraway but it can also help them get a progect done more eveficantly and quickly. It @MONTH1 seem that where are doing one thing but when in fact we can be uploading pictures and movies, downloading muisc and playing games at the same. Now with all that I have told you @DATE1 I hope that we share the same point of veiws on computers like how they are good to have and their positive in part." 3 3 6 +1005 1 "Dear The @CAPS1 @CAPS2, Experts say that computers are ""taking over people"", I strongly disagree. People spend the amount of time they need and want then become active or spend time with family and friends. Computers allow people to learn, they allow people communicate to family and friends, too. Also, @CAPS5 people use computers for work and jobs. I believe computers allow people, like myself, to learn. You can learn also @CAPS5 things on the computer. You can learn about other countries, you can read articles on news, also. You can learn different languges and about the world. Online people can communicate with others. There is skype, which allows you to communicate with others while on the internet, you use a webcam. there is also instant messanger, or @CAPS3. @CAPS3 is like having a conversation with a person who's right next to you! Then there is email which can send letters, photos and comments. @CAPS5 people use computers for work. Microsoft @CAPS4 allows you to type stories and type letters. @CAPS5 people do job reports on @CAPS4. Also, the internet is helpful for work. Websites and search engines help you a lot. Websites can contain information that working people need. To finish this letter, I want to say that @NUM1) Computers allow people to learn. @NUM2) They allow people to communicate with friends and family. Lastly, @NUM3) @CAPS5 working people use the computer for work and reports. I hope I influenced you to see why computers aren't bad." 4 5 9 +1006 1 "I strolled into my bedroom, I noticed the computer sitting on a wonder desk. I thought that computers are very helpful. There are many controversies on whether computes benefit or do not benefit society. My opinion on this topic is that computers are useful and I support this technology. Computers are excellent tools that could help students with work in school. For instance, this year I had a sciences project about how my hobbies interests are related to science. One of my interests in reading, @CAPS1 I had to research about how reading a simple back can be related to science. I went on the internet, typed in my question about reading, and two seconds later thousands of results up. I had even gotten some pictures too. A couple of days later after I had handed in my project, I recieved it back. I had gotten a @NUM1 on this project! @CAPS1 being able to use a computer really boosted my grade in science. Without the internet, I probably wouldn't have been able to get on A on this. As you can see, computers can help students with projects, etc. in school. Using this technology can help you reconnect with friends and family members. In elementary school, my friend @PERSON1 had moved away to @LOCATION1 @CAPS2. I had no way of communicating with her until I found a program on the internet that lets you chat with people. Both of us had been using this and we've been able to talk for on end. I don't see @PERSON1 as often as I had used to, but with my computer wide open in my bedroom I can chat online with her almost everyday. Computers can help re-establish old relationships with friends and family. @CAPS1 communicating on these are also another benefit. Using computers can help enrich peoples minds. For example, in school we use a program called, ""@CAPS3 @CAPS4."" @CAPS3 @CAPS4 involves you playing games that help you @CAPS3, and tests when you are ready to take them. @CAPS3 @CAPS4 has been helping us practice for the @ORGANIZATION1's. After taking multiple tests in subjects such as science, math, and language arts, I now feel confident about taking the @ORGANIZATION1's and I believe I am going to do well on these tests. As you can tell, the tool of @CAPS3 @CAPS4 on the computer can benefit your school grades. The effect computers have an people are that they help and benefit the society. I think that more citizens should own computers because they can expand your knowledge. I am clearly in favor of owning and using computers." 4 4 8 +1007 1 "Dear @ORGANIZATION1, Computers these days have made positive changes to all of our every day lives. People have made beter connections with family and friends, and even have the ability to make new ones. While social networks are great and all, computers can also make work extremely easy and proffesional-looking. They can also perfect the skill of hand-eye coordination. But with that in mind, is the computer truly a harmful or helpful device? Sometimes we wonder where our long lost friends and relatives have gone and how they are. Well, with the computer and internet access, you can easily contact them through great social networks such as @CAPS1. I hear it all the time from everyone that reunions have been made, and friends have been reunited. And reuniting friends, you can also make new ones with a simple click of a button. Isn't making more friends and reconnecting so easy now? Computers nowadays offer wonderful software from @ORGANIZATION2 that can make making slideshows, projects, and reports far easier. I remember making a @CAPS2 with my best friend back when we were in @NUM1 grade. All we did was take the pictures, upload them to his laptop, and then we added captions to all of the pictures. We did an amazing, professional job on the project and received an A-. Though I understand that in the process of computer-usage, people hardly find time outdoors, the technological advance will enhance hand-eye coordination. Imagine this: You're up at bat in a baseball game. @NUM2 strikes and @NUM3 balls is your count. Everyone is cheering you on. The pitcher pitches the ball and wham! You swing that bat and hit yourself a homerun! Do you know what skill was used to hit that ball? That's right - hand-eye coordination. So now while everyone is wondering what sort of effect the computer has, remember how easy that work was for me. Also think back to that baseball player. You know, the one that hit the homerun using hand-eye coordination. But most importantly remember how easy it would be to contact the ones you love most and keep closest to you. The computer is a positive advance in society, and everyone should be assured so!" 5 5 10 +1008 1 "Dear editor of the @CAPS1 @CAPS2, @CAPS3 is true that more and more people use computers, which in sure you're aware of, but is @CAPS3 really nessesary. I use my computer, I used to use @CAPS3 all the time, but then I got into sports like skateboarding and snow boarding so now i got away from @CAPS3. Yet, @CAPS4 are many many people that still use them and i believe that people should really try to stop going on as much because you could start to get big @PERSON1 fat, @CAPS4 are way better thing to do then sit around on the computer all day, and @CAPS3 is good to be outside getting some fresh air. First is that @CAPS3 is possible for you to get big @PERSON1 fat, being fat is not a good thing @CAPS3 could actually be heart breaking because they can't help @CAPS3, and i feel really bad for them. I have a few friends that are over weight like @PERSON1, @PERSON1 is a very over weight kid, he was about @NUM1 lbs whe nhe was @NUM2, I have not seen him in like a year and we had some good @CAPS2, but I do feel really bad because he is very over weight and @CAPS3 is terrible, @PERSON1 does not even know how to ride a bike, nobody would teach him anyways because he doesn't have a father and his mother is over weight as well and as fat as his sister. see her anymore. So being over weight is bad and sitting and playing on the computer will make @CAPS3 worse. Next is @CAPS4 are way better things to do than sit around on the computer all day, messing around on the computer all day is like saying in just going to throw my life away. Instead of being on the computer you could be with friends whether @CAPS3 is shopping sports youre still moving and that is way better then being on the computer trust me. Go for a walk @PERSON1 some thing just try to get yourself dumb, but still fun, computer. I will @CAPS3's fun @CAPS4 are many many thing to do on the computer. Most importantly is that @CAPS3 is good to be outside getting some fresh air, being outside is a definatly amazing thing to do, you could be walking, be on trampoline, @PERSON1 skateboarding anything is better then being on the computer, even just sitting @CAPS4 on a rock outside is good for your body cause you need to got fresh air in your system. Just do something that involves being outside @CAPS3 is so much fun. So all you computer lovers get off and have some fun being outside with friends @PERSON1 your family. I hope you all listen to me and take my advice so remember @CAPS3 is very possible to get fat, @CAPS4 are way better things to do then sit around on the computer all day, and @CAPS3 is good to be outside getting some fresh air." 5 5 10 +1009 1 "Has your daughter or son ever asked you that they want computer in their school? Were you ever baffled when they said they were talkking about @CAPS2 in the school, that they can teach hand eye coordination, gives them the ability to learn from far away places, or even allow them to talk to people all around the world? What did you think about that? Did you agree? If you did then your thinking about the positive side and not the negative. Many reasons why I dont agree. Saftey, the money, health. Many people said that its good to interact with other people but not all the time if your son or daughter interacts with people they @CAPS1 know are you going to be worried.? They can be asked who they are, were they live. Sometimes they even ask if they can meet up face to face. My friend @PERSON2 said her school got those computers and her friend @PERSON3 was asked to meet or with somebody she never knew and she ended up saying yes and @PERSON2 says she nevered showed up. Would you ever want that to happen to your child? Well this is only the begining. Once your childs school gets computers they will be addicted to @CAPS2, @PERSON1 said that ""if a child does not go out and enjoy there childhood but they want concentrate on their homework, they will just eat and be on the computer eventually they will become obese. @CAPS2 is very imperative that your child does go out and have fun and get exercise because then they will just be on the computers @NUM1. Have you ever wondered that? Another thing is the school will have to pay alot of money, if your child ever damages the computers then you will also have to pay a lot of money too. Not only if your childs school gets computers @CAPS2 will benefit you guys alot. I trolly and sincerly do not belive that students should get computers. Also your students computers @MONTH1 get viruses because of inappropriate sites. Then your going to pay for that as well. Lastly the school will not have enough money for materials. What will you do?!? Your child is not there to be addicted to computers your child is there for education! Do you still support these computers!? I hope not because there is a @PERCENT1 chance that they will or will not get @CAPS2. Hopefully I gave you enough information about the saftey, money and health. This is very urgent situation so please be aware." 4 4 8 +1010 1 "Dear: local newspars @CAPS1 recently been brought my attendchon, that people should use computers. My three arugment are they tach hand - eye coordination, give people the ability to learn about far away places and people, and even allow People to talk on line with other people. @CAPS1 tachs people hand-eye coordination because when people type on the kyebord the more and more ther type on the kyebord and the faster and faster. Mach people have more coordinion first, they get used to typeing then, they start typeins fast last when they type fast @CAPS1 give them more hand-eye coordinion. Useins computers give people the ability to learn about far away Places and people because they could such google people and places then @CAPS1 show a lot of wedsite then when they go on one wedsite they type in the person name and state then @CAPS1 show them the places of person. Computers give people the ability to talk with people from other place like aim, myspace or face book and people could play games and talk at the same time so the computer is very poplure this time because of what people mack there wedsite do and this is why I think people should use computer far a lot of like my three @CAPS2 so @CAPS1 been to my attenchon that people should use computer for three reson i is tach hand - Coordination give people the ability to learn abount far away places and people, and even allow people to talk online withe other people so this is why I sajust people should use computer." 4 4 8 +1011 1 "Dear Local Newspaper, @CAPS1 you have a computer at home? Right now, more than @PERCENT1 of the people have at least one or more computers at home. Computers are common by now, but people argue rather they are really needed on our society. Computers give negative effects on people, for example, lose eye sight, interacting with strangers online and lack of outdoor exercise. One out of five people wear glasses or contacts, these days. the rate of people wearing glasses are increasing rapidly as well. Children and adults are spending too much time on the computer, which causes to lose eye sight. When people use too much computers, their eyes start to hurt and lead to a headaches as well. These are sign of spending too much time, but people tend to ignore it because they want to get work done, or simply addicted to the online video games. this shows that computers give terrible effects on society. When a person is on the internet, there is no limitation to him or her. Once a person is online, there are endless amounts of site to access on that are not always trusted. Online, where anyone can go on, there are millions of people that are not connected or related. In other words, strangers, interacting with people they don't know is very dangerous. They can have devastating influence, no supremacy, what so ever unless they are a teacher of same sort. Unfortunatly, people can not trust anyone online because they don't know who it exactly is. For example facebook. People think they are private, but everything that is uploaded or posted is public. Also others will be able to view your profile even they are not friends with that person. this is not safe in any way. The rate of people getting addicted on the internet is increasing as well. These people tend to not go outside at all and stay home. These people get not enough exercises, which are very unhealthy they tend to get their meals done at fast foods which are unhealthy as well. For the reason, people on the computers get fat from the unbalanced meal and never interact with people outside and nature outside. In conclusion, computers have negative effects on society because, they increase the number of people wearing glasses and losing eye sight. Second, they are creating a unsafe environment. last it makes people have unbalanced meals and lose track of their diet. " 4 4 8 +1012 1 "Dear local newspaper writer, I'm writting to talk to you about the use of computers. I think computers benifit our comunties a lot. I feel this way because it can warn us about a natural disaster. It teaches us about everything & everything. Last we get to talk to people online In these next paragraphs ill share my thoughts about this topic to you. My first reason is natural disasters. Computers always warn us about them. For example when hurricane katrina hit computers were able to see that on their. Many people was able to flee the city before that happened. States shows @PERCENT1 of the natural disasters computer classified them. Computers saves people live eaach & every. Another example is with the earthquakes that recently happened in @LOCATION1. Computers informed many people about them. Those were my reasons how computers warn us about natural disasters. My second reason why I say computers benifit us is because it teaches us about everything & anything we learn about faraway places, new word & things that is happening in our own country. For example I had to research a person my project & all I dis was type in his name & pages full of information popped. You will be amazal how much information the computer has. Comuter has everything you need on as person & so much more. this is my second reason why computers are helpful. My last reason we get to talk online. Now the has its pros & cons. Talking online is very fun. I mean you in many website, myspace, facebook, twitter. Its never ending. People can talk to old friends, family anybody really. But many people have to be careful cause their creeps out ther. Like say you can't meet up with you friend you can @ORGANIZATION1 or ooVoo (webcame) them. The computer is you friend. So you might as well make good use with it. This is my last reason now the computer can benifit you. In conclusion I think the computer makes the world that much easier. My reason why you ask. It warns us about, natural disaster. It teaches us everything & anything. Last up can talk online." 5 4 9 +1013 1 "I think people should not spend so much time on the computer. This are three reason a think that. My frist reason is if people stay on the computer for a long amount of time it can mess up the way you see. My second reason itis that you could be spending time with family and friends. My last reason is that people that sit all day on a computer gain more weight. First I think people should not be staying on the computer all day. Because it can mess up the way you see this can happen because from u looking at a computer screen all day or eyes can get mess up. I think u should never stay on a computer for no more than a hour. And sometimes u no u been on it for to long when ur eyes started to hurt. My second reason u should not stay on the computer for a long time is because when u are secting there. Doing wat you are doing. You can be messing out on fun thing that u can be doing with ur family our with friends. But some people would just like to sect all day end look at a computer screen and some people start not to like going out our even beeging a social person. My last reason people should not be on the computer for a long time because some people will just seat there and eat food all day. And this will make them get more weight. And this can make there life wader because now they are on heelthy they are just seating down all day anyways. And they should be going outside end running around. This are my three reason I think people should not stay on the computer all day. One it mess up they way u see, second you are messing out on fun thing u can do with our family, end last people are graning more weight when seat on the computer all day." 3 4 7 +1014 1 "Dear @ORGANIZATION1, Have you ever thought about people's veiws on certain technolgy? While some people say that others spend too much time on their computers, and are waisting their time, I think computers can help us with many different things. They can help with homework, interacting with people, and even help us with exercising. You'll find that in the end, computers end up as benefits for everyone. For many students, they need computers to help them understand their subjects. There are certain websights that give online lessons. Along with that, they have online books, so if they forget their real ones, they can still do their homework. My math teacher, @PERSON2, is always saying,""@CAPS1 into the online sight."" I've found that it really helps me when I'm struggling with my work. We can also ask our friends with help if we still @CAPS4't understand. That's not all we can do. There are certain sights like @CAPS2 and @CAPS3 where we can interact with other people. You can talk to them when they're out of town and have no cell-phone. You can also tak when the phone is being used and you have something importain to tell them, such as helping them with their homework. When there's no telephone reception between each other, they can still talk over one million people in the @LOCATION1 use these sights. People are wrong when they say it takes their time away from exercising. Many websights give good tips on how to lose weight. The show many dieting plans such as @PERSON3 or @PERSON1. Not only that, but they also have exercise plans. It's not the computer's fault, it's the people who @CAPS4't ""stick"" with exercising. Also, the computer reccomends many great gyms you can join, like @LOCATION2 fitness. @CAPS4't you think that's a good ""deal?"" @CAPS4't listen to those other people stick with my opinion that computers are benefits for everyone. They can help us with many things, above and beyond. I can't imagine life without them. Most everyone uses computers! Thank you for reading." 4 4 8 +1015 1 "Dear @CAPS1, I disagree with those who support advances in technology, the people who think that computers have a positive effect on people. Would you rather spend your time on the computer rotting like a vegetable or would you rather hang out with your firned, travel to other places that you never thought possive or even go to a gym and probably loose some pounds? I vote hanging out with my friends! You know people that like to travel to far away places and have fun would rather that than waste their time on a computer. As much as people like to look at all the cool places that they check out on the internet; what's the point in just sitting their and watching the screen when you could get a plane ticket and fly to the magical place that you saw on the computer. Ok. I know that traveling to faraway places can be scary because you never been to area in your life, but @CAPS3's worth the try. Ok fine if flying is not your thing then why not thy exercising. @MONTH1 be you have been trying to lose some extra pounds. You could always try that. Think about @CAPS3, my mother was using her so that she could fit into a size @NUM1 and now look she is in a size @NUM1. Why bore yourself to death with computers that will probably give you the wrong advise when you could always ask a friend for advise. Yes a friend a live and breathing human being, losing some weight will help you gain confidence if you just try. @CAPS3's just like @PERSON1, from @CAPS2 lower said, you got to want @CAPS3 if you want to accomplish that goal of yours. Everyone can go for that goal! Maybe you dont want to exercise, maybe you want to hang out with your friends and family. If you waste your time online chatting, how are you oing to chat with the people that are eight in front of you. If you can talk online then you can probably talk to people in real life? Right? Wrong! Some people can and some people cant. I am a very talk person, but I know how to talk on line if. I wanted to so why cant you? That's @CAPS3 the time has come t decide. Do you want to spend your time on or computer or do you want to spend your time in the real world. Get out your chair, turn off the computer get up. Put your wat on and walk outside and do something with yourself. Use you mouth not your hand. Talk to people comunicate with them @CAPS3 is not that hard. Trust me. If I can do @CAPS3 you can do @CAPS3 too! @CAPS3's now or never I choose now and so should you. Dont waste anymore time, go on a trip take a hangout. Just do @CAPS3. Dont run back to that computer. Throw @CAPS3 out you can live without @CAPS3." 5 5 10 +1016 1 "Dear @CAPS1 @CAPS2, More and more people use commputers, but not everyone agrees that this benefits society and I am one of theose people, that does not agree. I disagree, because is your on the computer all day you'll forget bout things. For example, you will forget to exercise, you will forget nature, you will also forget to interact with your friends and family. I promise you if you keep on reading you will understand and realize my point of view. People soend to much time on the computer, and they don't exercise like they should. Exerising is very important, that helps you with . Exercising helps you grow. it makes you stronger. If your on the computer all day then, you'll exercise and develop right. Another reason, I think its such a lead idea is you do not get to enjoy nature. When your on your computer you can not go on an hike in the woods. You can not go on camping trip. You can not do the thing, in the pleasant air of nature. The last reason but defenitly not the least you will forget to interact with your friends and family. That is so important because a computer could do a lot. It could teach you a lot but it canot do it you and @MONTH1 I love you. Only youre family and friends could do that. Hopfully you under and realize my point of view. People should stop doing this you forget to exercise nature and to spend time with you friends and family. All I got to now thank you for the oppurtunity to listen to my idea." 4 4 8 +1017 1 "Dear, @CAPS1 I believe that people shouldn't spend so much time on the computer because they do less exercising, they don't interact with friends and family, and its bad for their health. People shouldn't spend so much time. They wont enjoy their life outside of their houses. My first reason why people shouldn't spend so much time on the computer is that its bad for their health. Spending to much time on their computers can strain your eyes. Some people with seizures including myself would trigier an attack and cause us to space out. Spending to much time on the computer can mess up your vision or damage your body. To me thats very unhealthy. Another reason why spending so much time on the computer is bad is that you don't interact with your family and friends. On the computer all the time can make you forget to spend time with your friends and family. You would get addicted to being on the computer all the time. You would forget to say hi and how are you to your family. You won't spend time with your friends and they will start to ingnore you and think that you don't care about them. Being on the computer all the time will mess up your soical activitys with other people. My final reason why spending to much time on the computer is bad is that your not enjoying nature. You don't realize how much you are missing because you are on the computer. Yes you can learn thinks by the computer but you can also learn by doing it yourself. Being on the computer to much will make you not want to exerise and that won't be good for your body. You would forget to at least go for a jog, discover new thing. You realize that exploring nature is better than just watching it. Those are my reasons why spending to much time on the computer is bad. Its not health. You don't interact will your friends or family. Also you won't enjoy nature for yourself. So just get off the computer and enjoy what life gave you." 4 4 8 +1018 1 "Dear Local Newspaper, @CAPS1 back a couple decades ago, before computers existed. What do you see? There were children outside exercising, playing with friends, and living somewhat danger-free lives then came the computer. Computers are driving the next generation to a dangerous life of staring at an assortment of pixers all day longels well as ruining any civilized relationships you had. I strangly believe that computers have a negative affect on society. Did you know that as tha number of computers sold increases the obesity rate has gone up @PERCENT1 since computers came into our lives why? Because people spend way too much time on and not enough time exercising! Computers another affect of the long hours spent in front of screen is a decrease in eyesight ability. My family friend, @PERSON2 had to get glasses because his eyes were damaged by the computer. ""I'm worried about my daughter's eyes...she stares at that screen for hours on end!"" @CAPS2 @PERSON3, a concerned parent at @ORGANIZATION1. How could something so harmful possibly be good for our society? Speaking of hurtful, the internet is very unsafe. Predators surf the web, looking for young, innocent people to meet and most likely abuse @PERCENT2 of parents much been monitoring their children's computer usage parents are unaware that the internet makes it easy to talk to anybody in the world, from @LOCATION1 to @LOCATION2! Monitoring would also come in handy when it comes to innapropriate videos, pictures, and discussions on the internet. It is so easy to be surfing the web and fall upon things you should not be seeing! Lastly, people easily get caught up in being hidden behind a computer, and say mean, hurtful things that would never be said to one's face! these unfortunate factors cause many of the issues between people today. Speaking of which, computers have a very negative affect on relationships nowadays. As I mentioned earlier, so many fights happen through computer communications. Even if online conversations are friendly, they get people accustomed to making people ""@CAPS3"" through a computer, not face to face. After being in a computer-oriented friendship, people tend to forget how to act face to face and find personal meetings awkward. @PERSON1, an eighth grader at @ORGANIZATION1, @CAPS4, ""I can't @CAPS5 only talking through computers, never being civilized with other human beings! Unfortunately, that is where computers are leading us to..."" @CAPS5 never seeing your best friend in person , only through technology! It @MONTH1 not even be your friend. It could be a dangerous poser! This is yet another problem...through the internet, you @MONTH1 not even know who such relationships are with! It could be fake, and you'd have no idea. Spending all day rolling away in front of a computer, putting yourself and relationships in danger is, unfortunately, the effect of computers. Computers are not worth the terrible consequences civilization must face. I @CAPS6 urge you to stop the advances in technology now, before it is too late! Make the change today." 5 5 10 +1019 1 "Dear @CAPS1, @CAPS2, I would like to thank you in advance for taking the time to read this letter, it means a lot to me, I am writing today because it has come to my attention that some people are saying that computers do not benefit society. Those people are very wrong! Computers are amazing! They allow easier research, I can learn about other countries, and can talk to people online. I do all of this stuff alsmost every day! We're just finishing up a pretty big research assignment for english and social studies. It involved taking a note cards from different sources. Luckily, I was able to go on the card catalog on the computer and find many books on my topic, just by typing the keyword! We can narrow down our options so easily because you can search for something so specific. After you find your topic, you can check and see if there's reliable information by reading a summary. All of this can be done in about @NUM1 minutes or less.This would be nearly imposible without a computer. I have a few relative in @LOCATION3, @LOCATION2. A while back my family and I were trying to plan a trip to @LOCATION2 to visit. We were able to go on a search engine and find directions to their house from the airport. it gave us the directions and the estimated amount of time it would take to get there. i've also been able to do plenty of research on other foreign countries at the push of a button. it's so simple and convenient, too! My two uncles live in @LOCATION1. On thanksgiving my mother was upset because she missed them I was then able to set them up in a video chatroom so my mom could talk to them. this is great, its so convenient to be to go an instant message. i can talk to people all over the world and it doesn't even any money! In conclusion, computers are very helpul because you can learn about foreign countries, have easy access to research, and can talk online. there's a long list of other things that make computers great, but it would take too long to write. Thank you again for listening." 5 5 10 +1020 1 "Dear local Newspaper, I think that computers have a good effect on people. My first reason is that some people at college are far away from home like my sister and my family talks to her through the computer. Also many people have an email! that tells them about sales at grocery stores or clothing stors and it saves people money using those cupons. Statistics state that grownups that use the computer at night feel more awake in the @TIME1. My second reason is that if someone is going on vacation or they are moving they can go on the internet and find out if where there going is safe or if they have a nice school there and they can learn about the place and see what it looks like. they can also find out about colleges and see how nice they are see if its a small school if there are alot of kids that go to that school and etc. My third and final reason is that when people use the computer there. hand eye coordination gets better because when your typing your moving your fingers and your geting the feeling when you use it and your geting faster at typing. Also your not just siting there your moving your fingers and your using your brain. Scholastic kids states that kids who use the the computer and use the keyboark brings there @CAPS1 up @NUM1 points. in conclusion I dont think that the computer has a bad effect after your done reading thise I hope you agree with me." 4 4 8 +1021 1 "I think that it is fine that people spend a lot of time on the computer instead of having time to exercise, enjoy nature and interact with family and friends because it is the persons choice to either stay on the computer all day or go outside. Computers affect peoples lives in good ways and bad ways. People stay inside all day and do nothing besides sit there and just click buttons. Good ways is that it educates you in many ways because @CAPS1 your on the computer watching or reading interesting things you could end up learning something before you learn it in school. Its good to go on the computer for a little a bit but @CAPS1 your on it all day then you could have no exercise and become lazy and fat. But @CAPS1 you go outside sometimes you wont have to worry because you are getting exercise that helps out your body. I think computers are a great way to have fun. You can chat with your friends, @CAPS1 you have a webcam you can video chat with friends. A cmputer is a great way for communication. Millions of people use a computer for working at their @CAPS2. Without computers life would be ten times harder for people in this world. People like accountants use computer for there job. They store data into the computer to remember things @CAPS1 you couldn't write it down on a piece of paper, People also make websites on the internet to help educate, like @CAPS1 you type in a word it could give you a definition, People also make @CAPS4 engines, @CAPS4 engines are some engine on a website that searches for things you type in. @CAPS1 you type in something you will get what you were looking for. My whole point of explaining this is that its the peoples choice @CAPS1 they would like to be on all the time. Because computers and internet connections arn't free. It doesn't even do anything bad to your brain. It mostly educates it. People even go to school online they learn and study on things that are on the internet. Plus you could get @CAPS2 at places for working with computers, You could make programs, and anything you would want. So my statement here is that its okay to spend alot of time on your computer instead of exercizing going to see friends and family and enjoy nature. I think that computers are fine and it doesn't matter how long your on it, it just depends @CAPS1 your learning and not playing games all day and being lazy and get fat." 4 5 9 +1022 1 "Dear Local Newspaper: Are computers possitively affecting society? As technology advances, humans are relying on them more and more; most people use them daily. I believe computers effect people possitively because they help write papers, are a social tool, and are a big help with research. After reading this letter there will be no doubt that computers have a possitive effect on people in society. My first reason why computers have a possitive effect on people is they help with writing papers. Whether it is writing a resume, a science report, or a spreadsheet, none of these are ever seen nowadays done by hand. Everyone expects to see the flawlessly inked letters on the printer paper in whatever piece of writing it is. This helps the people writing the paper because writing takes many drafts to get the piece perfect; it is a pain to write each draft by hand. In additio, it is easier to read someone's writing @CAPS1 its typed, especially @CAPS1 the writer has hand writing. However, computers help in more than just writing papers. My second reason why computers passitively effect people is by being a social tool. Many websites online these days have social networks such as youtube, facebook, twitter, and myspace. In the listed websites above and many others as well, people can meet other people through other friends and games. The nice thing about meeting them online is that you don't have to plan a time to meet the person, @CAPS1 you are both online you guys can begin chatting. The chatting also helps @CAPS1 people have long-distance relationships, whether friends, mates, or family. Online chatting help people stay in-touch with someone they might not see everyday. That is a big help with everyone's social life, keeping then us ""the "" @CAPS2, online sites like eharmony or match.com take people with little time to worry about love and match them with their perfect mate. This also helps people who are shy get married and start a family. This helps people live happier lives, another possitive effect. Finally, computers possitively effect people by making research much easier. My dad always says ""You kids got it easy. @CAPS1 I was growing up, we'd to go to the library and spend hours researching before we could write our papers."" @CAPS3, its simple. Using the internet and a search engine, all you have to do is type a topic and you can get all the latest articles in just seconds. Libraries might not have the most recent books, or someone might've checked out your topic's book. Then what can you do? The internet is also an extremely useful help @CAPS1 the research topic is very specific, if its a certain becteria or species that a book @MONTH1 only briefly mention. The internet has a much broader range of articles, so it is much easier to find information for any topic. With research, taking less time to understand, people can spend more time enjoying the day, like playing outside, than in the library stressing because they cannot find a book on their topic. This is a strong reason why computers should not be seen as a negative effect on society. To conclude, computers have a possitive effect on society, because they help write papers, they are a social tool, and are a big help with research. Where would we be if we had to handwrite everything? Think about how many fewer friends or maybe even relationships we would have without social websites. What about how hours of research are @CAPS3 two clicks away? Computers have changed our lives for the better, and we should appreciate all the do for us." 6 5 11 +1023 1 "Dear Local Newspaper, I'm writeing to you today to show how I feel on how computers have an effect on people. Computers have a very strong effect on people. Computers can cost people to gain weight, cost problem to there eyes and you couldn't pay bills. We all know that we all gain weight at some point in our life, and we can lose that weight. But if you on a computer for six hours a day you dont have time to cook a real meal. So what do you do, you eat alot of junk food. Do you really want to be the reason why someone is over weight? Picture yourself looking at bright computer sreen for six hour non-stop. Do you think that your eyes are going to be fine I disagree. When I really tried I cant even keep my eyes open and I'm pretty sure you cant say that your eyes are going to be fine when you just got looking at a bright sreen in the dark. Can you see yourself quiting you just because you say your going to work at home. But you dont do your work, and get fried, now how are you going to pay your bill with no money? Once your power goes out you have noting to do because you got fired all because of you computer. Now what are you going to do with your life? Well that all. I would like to thank you for your time. And I hope you agree with me for my three reasons you can gain weight, eye problem and how are you going to pay your bill?" 4 4 8 +1024 1 "You are the @NUM1 visitor, click here to get your prize! That is normal thing that will @CAPS4 up on computers, they can give you viruses, and people can get your personal information. That is one reason computers are bad. On top @DATE1 that, ""@CAPS1 @DATE1 computers more than @NUM2 kids are obducted each day!"" says @CAPS2 @CAPS3 @DATE1 the missing child agency. They get obducted @CAPS1 kids go on @CAPS6 rooms and get themselves into trouble. On another note we rely on computers to much, it not healthy for us. ""@CAPS4 up ads cause many problems,"" says @ORGANIZATION1 @CAPS2 @CAPS5. More than @PERCENT1 @DATE1 people in the world have computers. This was from a world wide poll in @DATE1. More than @PERCENT2 @DATE1 that is kids. When kids are on computers they always click on the @CAPS4 up ads. These ads cause catastropic problems! Peoples computers get viruses, identities get stolen, and credit card information gets found out. Therefore with those things happening you are going to yell at your kids, but you can't blame them they just thought they were going to get a free xbox @NUM3. Now that I have told you about @CAPS4 ups let me tell you about chating. Chating on computer is just a bomb waiting to be set off. ""@CAPS6 rooms are the main why. Now that I have told you about chating let me tell you about how people rely on them to much. Instead @DATE1 looking up what a book was about, just read it! Everyone thinks a computer is the answer to every problem when in reality @PERCENT3 @DATE1 the things on the internet are false, says Technology @CAPS7 a magazine that deals with the disadvantages @DATE1 technology. I remember when I needed to know if my flight to @LOCATION1 was cancled, so I went on google and looked it up. The website I went on said it was cancled but later when I called the airport just to make sure it had been they said it took off when it was scheduled to! And instead @DATE1 an e-mail just send a letter! Do you want your kids obducted @CAPS1 fo @CAPS6 rooms? @DATE1 course not, and do you want to miss your flight for vacation? No I dont think so, computers are very bad and are used to often. No one wants their identity stolen @CAPS1 @DATE1 some @CAPS4 up ad. We need to do things on our own more often and stop relying on computers to do everything for us!" 4 5 9 +1025 1 "Dear local newspaper, I believe that computers have a positive effect on people. It teaches hand-eye coordination, give people the ability to learn about faraway places and people, and even allow people to talk online with other people. Computers are one of the best technology invention yet to come that benefits society. First off, computers teach hand-eye coordination. For instance if you're in a rush to type an amazing long essay you won't have the time to keep looking back at your paper, the keyboard and the screen. So you would need to know where these handy-dandy keys are. However, if would be a lot more trouble if you didn't have any knowledge about computers are where the helpful keys are. Secondly, people would be able to learn about faraway places. If somebody wanted to take a nice, relaxing vacation/honeymoon with their beautiful wife they would need to know the weather forecast so they would know what clothes to bring, and how much money they need to bring to visit all the luscious, freshest restaurants, hottest stores in this enormous populated city. Without a doubt, I would love to take a vacation, but if it's going to cost a fortune I might have to re-consider this amazing trip. Lastly, you can talk online with other people. On blistering cold days and you can't go outside, or call them because you don't have phone you can myspace or facebook them as long as you want as long as you have a @NUM1 and only email address that nobody else has. Now it's time to decide! Do computers have a positive or negative effect on people. In my opinion computers are great for society and we should keep having them around because they teach hand-eye coordination, and give people the ability to learn about faraway places and people. Best of all, you will be able to talk to your friend and family online. This is certainly a great form of technology people should have." 4 4 8 +1026 1 "Dear trained @ORGANIZATION1 reader, @CAPS1! Ah, I love hearing my computer thunk on when I wake up. Such a lovely sound. Some people feel the need to disagree and say computers are bad for people. But, I feel the computer is a magnificent invention. All that @CAPS2 will help improve hand-eye cordination, you can look up anything in the world, and you can even meet new people and keep in touch with faraway friends. The world is just a click away! What's this? You need to write a paper on how to play baseball and improve your pitching skills at the same time? No need to worry, you can just type that paper up on the computer! This is one of the many perks of owning a computer. @CAPS2 a paper is so much faster than writing @CAPS3 by hand. Studies show that @CAPS2 a paper is @PERCENT1 faster than writing @CAPS3 out. Even @PERSON1, and handwriting enthusiest, says ""@CAPS2 is so much easier than having to write! I type all my books proper handwriting."" @CAPS3's been said by officials that most hand-writen lovers are converting to @CAPS2 for better hand-eye cordination. If @CAPS3's used by the people that oppose @CAPS3, @CAPS3's gotta be great! Let's say your doing a project on panda bears, but you don't know anything about them. What do you do? Search @CAPS3 up on @CAPS4.com of course! @CAPS4.com is a bounty of information, serving up marsels of links for any-and every-topic. I remember this one time I had a big report to write but I didn't know anything about the subject. So what solved my problem? @CAPS4! @CAPS3's been proven that @PERCENT2 of information found on @CAPS4 is true. You know what else on the computer can help you with information? Just about any domain name on the web. Just type what your looking for, add .com at the end and @CAPS5! all the information you could need. Hm, what else can the computer help with? I know. Your friend that moved away, you can send her a message and get back in touch. Or, if you don't like your friend that moved away, you can meet new people. For example, @LOCATION1 is a sight designed to match people up for romantic relations. So maybe you don't like computers. Oh well, all I can tell you is that your missing a lot. Great hand-eye cordination, magnificent information, and colorful people like I said, the world is just a click away!" 5 5 10 +1027 1 "Dear readers many people use computers but, not so many people think @CAPS4 benefits society. Well, I @CAPS5! I think this because the internet helps you connect with people you're looking for. The internet also gives you the advantage to shop online. If you don't have a @CAPS1 system, you ca get directions online. If you read more you will see why I support these details. Have you ever heard of @CAPS2 or @CAPS3? Well incase you haven't @CAPS4's a social networking site, @CAPS4 helps you connect, chat and find people you are looking for. I have a @CAPS2 and a @CAPS3 and they're not that bad. They're actually fun. There is games you can play, quizzes you can take and you can chat with your friends. @CAPS4's a great way to find someone you know in another town or even. This is one reason the computer is a good source. If there is ever a reason you can't drive to store or where ever you need to go to buy something, you can shop online and buy @CAPS4! you can just type in the adress of the website and look at all the stuff they have and click what you want and buy @CAPS4! They even have grocery shopping online. So next time your really upset that you can't go shopping, just shop online. ""@CAPS4 might take a while to get your purchase items, @CAPS4's worth the wait."" @CAPS5 you have a @CAPS1 system? well if you don't, don't worry! you can go online to a website such as www.mapquest.com. All you have to @CAPS5 is type in the adresss where your starting from and then the adress where your going to. Then you can print out the directions so you won't be lost! Thats deffinatly an advantage! So, don't you think that the computer is a deffinate advantage to almost everyone? Well I @CAPS5! you can use @CAPS4 to find people you need to find. you can shop online and you can easly in less than finve minutes get directions! That's any almost everyone should use a computer." 4 4 8 +1028 1 "Dear Newspaper, @CAPS1 you know that two out of three @CAPS2 own a computer? Computers are a very helpful tool that benefit everyone in society. They allow people to communicate with eachother, learn, and teach hand-eye coordination and other good things for school.. Computers are a very useful and beneficial part of society. The advance in technology has upgraded computers, and now allows people to communicate through them. For example, new webcams allow people to actually see and talk to each other from you computer screen. This allows people no matter how far to talk to each other and stay in touch. With my webcam I am able to keep in touch with my cousins in @LOCATION1. Another way of communication is through email. Through the internet, people can type messages back and forth. It is very fast and easy allowing people to talk to each other more and communicate. As well as webcams and email computers grants people access to communication websites such as @CAPS3 (instant messaging) or @CAPS4. These websites people message each other back and forth very quickly and easily. It is not difficult to do, like writing a letter would be, so people can communicate more efficiently and easily. Computers are very helpful for communication along with @CAPS6. Computers are an advancement that could help people learn more about anything. For instace, they could learn about foreigh plaus. All they would have to do is go to the internet, type what they were @CAPS5 for, and it would come up on the screen. It would allow people to learn about places all over the world. Also, people can see pictures on the computer. For example, if someone wanted to go on vacation faraway, they could type in the place and see what it looks like. However, the computer does not just show places. People could also see animals, other people, the environments, and anything else they want to learn about. Plus, with new websites being created, people could actually see what the earth looks like from space. They can look at houses, the wonders of the world, and much more computers give people the opportunity to learn about so much more. @CAPS6 more would help people, especially students to have a better education. If you ask anyone in school, they will tell you that computers are a very useful tool. Firstly it allows them to type. Students can type a project or paper on the computer faster and easier. It will also look neater and more orginized. Plus, computers teach students hand-eye coordination. By typing or even just clicking the mouse, students are bettering their coordination. This is due to the fast while they are @CAPS5 at the screen and typing or clicking, they have a sense of direction and know what to hit or where to put their hands without even @CAPS5. Lastly, computers help students because if they need help, they can just ask one of their friends through the computer. Students would better understand the content they are @CAPS6 and when they go to school, they would already know it. Therefore, computers would lead to students getting better grades. Computers play a big role in society today. They are a way of communication, @CAPS6, and allows students to do better in school. Overall, computers are a very beneficial tool in our society." 4 6 10 +1029 1 "Dear Newspaper editor, @CAPS1 you have a computer at home? @CAPS1 you use facebook, @CAPS2, or any other type of social networking site? Well if you are like the majority of the respectable, caring @CAPS3 in this country you probably answered yes to both of these questions; and you most likely also believe that the computer is a great tool to teach hand-eye coordination, as well as an awesome way to talk with other people online. Not only that but you should notice the great potential the computer has for showing us distant, faraway lands and cultures. What would we be able to @CAPS1 without hand eye cooridination? Nothing that is what we could @CAPS1. Without the hand eye cooridination that computers and video games help you develop, you wouldn't even be able to go outside and enjoy a peaceful game of tennis, baseball, or even basketball all because without hand eye coordination you are clumbsy and your depth perception is off. If it weren't for hand-eye cordination you wouldn't even be able to pick things up because your hands wouldn't go where you eyes were looking. Even though the computer isn't the only way to learn hand eye coordination, it is still an important stragedy that takes no effort to perform. If you are a social butterfly and love to converse with other people then you simply must own a computer! Computers, cell phones, pda's they are all the same, and that's because they are all same form of a computer. When you think about it, our country would be no where without these spectacular devices. These computers helped to industrialize and grow our great superpower of a country. Can you imagine having to drive to people's houses just to talk to them. These machines get our messages and vices to people who can be all the way across the world in just a few seconds. They are a great inovation in technolegy. Imagine having a paper for college or an assignment at work due tommorrow, and you have messy handwriting. There is no way you will get it done in time and have it be legible; and worse is that you'll be fired or expelled if it's not done. But your savior has arrived! The computer improves peoples hand writing, speed, and research all at the click of a few buttons. With computers theirs no more need for long tedious hours of handwriting or seaching through books at the library. What would happen to us with out this wonderful invention? The time has come for you to decide for yourself, @CAPS1 you like this time saving, teaching invention that you can socialize on, or would you rather go back to the stone age?" 5 5 10 +1030 1 "Dear Newspaper @CAPS1, Computers are a great invention that we have created. Some people are concerned that people are spending too much time on their computers and hanging with your friends and family. Wait I also agree but spending time on your computer can actually be a good thing. It can be a good thing because you can learn something new every minute, you can also interact with your friends on it, lastly you can do things at the same time hang with your friends and getting exercise. Every minute you are on the computer you can learn something new! For example, let's say that you are on a gaming sights playing a game and suddenly an advertisement appears. It will most likely give you knowledges about the advertisement you are watching. Also study shows that everytime you are on a computer for atleast @NUM1 minutes you can learn something new you spend your . Even way for them to communicate is via internet/computer. This way you can make arrangements. I know that spending too much time on a computer is not all that great, but these are just of the benefits from it so please consider this." 4 4 8 +1031 1 "Dear @CAPS1, I beleave that computers have a good and a bad effect on people. Even though I think it has both effects on peope, I think that it has a better effect I think this because the internet gives people the chance to learn more about other places. Allows people to talk to family that lives far away, and it also helps to make new friends. I support the advances of technology. I support it because people can talk to their family that they can't get to see. I have three cousins that live in @LOCATION1 that I never get to see, but with computers I can talk to them all the time. We can email and @CAPS2 to chat to eachother to find out what they've been doing, hows school, and so much more. My aunty loves to send and get pictures from them to see how much they've changed since the last time we saw them. Without the new technology we wouldn't be able to do that. Computers also help learn about other countries and the people that live there. With the internet you can find what the country looks like, what types of food they eat, what type of language they speek, and so much more. Recently I had to do a project in @CAPS3 @CAPS4 about a place in @LOCATION2. I got @LOCATION4, @LOCATION3 with the help of computers I found out so much more about the country that I never even know about. There were so many great places to visit and learn about the history of @LOCATION4. Learning so much about the place makes me want to visit there someday. Without computers I never would have learned so much about that place. Another great thing about the new technology is that we can make new friends and talk to different types of people from all over the world. I read recently in the @CAPS5 @CAPS6 that atleast @PERCENT1 of kids have a myspace or facebook that helps them interact with people from all over the world. There can also be dangers to talking to people you've never met before. To be safe don't tell people your phone number or where you live. But meeting new people can also be good. For example, my cousin doesn't get along very well with the people she goes to school with. But after school she goes on her computer and talks to people that are just like her. Either way she should be careful. In conclusion, I must say once again that I support the advances of technology to an extent. Computers help you talk to family that you don't see, helps you learn about new countries, and meet new people. Thank you for your time." 5 4 9 +1032 1 "Computers and other devices are good for humans especially young people like myself because they are good for communication, keeping the attention of the and providing unknown information. In @CAPS3 letter, I will explain. Communication is key, and technology is close the best and fastest way to use communiocation. Cell phones provide calling usage of course, but they also allow you to text someone. If you have dinner with friends and your late, with text you can send them a message and they should get it in no time at all. Email allows you to do the same as text, but you can write longer messages. Something that's really good for communicating is video chat. If you have a relative that you haven't seen in a long time you can video chat and they can see you and you can see them. It's like talking to one another in person. Keeping a persons attention is critical. Technology does that with games, music from @NUM1's, computers, game systems and the newest way, iPod's and instructions on how to do something. Of course a teacher or parents can do that, but heaving or seeing instructions on a computer is so much more exciting, which brings me back to @CAPS3 topic of keeping a persons attention. Technological devices are more exciting than people teachers and definitely parents but do they offer more? Information is most likiely the most frequent reason in which technology is used. If a child has a project for school, they either use the computers or asks their parents. If the parents have no idea about the question their child just asked, they say, ""@CAPS1 it up on the computer"", if you havent already done that. So in a way the human race depends on technology, actually we do depend on technology. Computers cellphones, iPods, gamesystems, etc all include a little thing I'd like to call the internet. The internet has been around for a while, going from extremely slow to high-speed, and it is a magical place. It can provide you with directions,recipes, job offers, store locations show times for movies and much , much more. Although technology is used in everyday life from communication to searching for information it can slowly us the human race down. I mean most of us spend most of our time on @CAPS2 or @CAPS3 @CAPS4 when we should be walking around are exercising, looking at the trees and the birds and communicating with family face ti face. Therefore, computers and other things are nice and all, but are the worth getting fat or loosing touch with your loved ones." 4 4 8 +1033 1 "Dear Newspaper, @CAPS1 technology was grown exponetially during the last few years. The use of computers especially has sky-rocketed. However, I beleive this is not somthing to be excited about. The use of computers all the time can effect people's health, family and friends, and their apprciation of Nature. The ove useage of computers is a huge problem. Have you ever sat infront of a computer screen for hours on end? If so, you know the feeling of sleepiness and irritability. The lack of exercise while using a computer impacts people more than they realize. Excessive use of ocmputers has been linked to obesity and high blood pressure. the more people use the computer, the higher their blood pressure. Just sitting infront of a screen is terrible for people's bodies. To stay healty, only use the computer when it's absolutely neccesary. Going on all the time can seperate you from others. This g eneration, adolecents especailly, use the computer to comunicate with others more than actually talking to them. Communicateing only over the computer can draw them away from people socially. Not ot mention how fast rumors and secrets spread over the internet. Useing the computer can ruin relationships even those with family. Being neglegent of family by always being on the computer can draw people apart. Families can became a non-important thing. People can't pay atttention to their families while sucked into a computer screen. Computers are creating false substitutes for almost everthing, even nature. Humans started out living i nthe wild, gathering food from the land and giving back by raplanting. Our connection with nature was strong. We needed it to thrive. Nowadays, however, instead of listening to the sound of rain and the crinkling of dry leaves, people prefer high pitched artificial beeping and the classic ""You've got mail."" People do not appreciated nature as they used to, as they should. The beauty of nature is simply overlooked as if it's nothing special. Well, without it we wouldn't be alive. Life cannot exist with nothing to thrive off of. We can hop on our computers and look at pictures of nature on @ORGANIZATION1. com, or we can grab our shoes and see it for ourselves. No one can experience the greatness of nature while on the computer. No one can experience the feel of cool lake water sliding over their skin or a hot @DATE1 day while emailing a friend. It can't be done. Computers have robbed us of our ability to experience creature. In conclusion, computers are horrid for people. They can affect health, friends and family, and appreciation of nature. We must use computers only when neccesary in order to stay healthy. Instead of going online, get going outside." 5 5 10 +1034 1 "I support advances in technology because In the future. Our world will be run by computers people can learn about places and people that they can never afford to see for real, and lastly, this helps to connect people to other people without talking to them directly. Have you ever thoughtabout the future, I know I have, usually when you think future, you think nobody and lots of automated things. The fact is the world is turning into a pure run by technology and as we the people get smarter, so does the technology so what good will the future if none of us know how to work a simple peice of technology such as a computer, then how are we going to use the more complicated things then? Believe it or not our world within @NUM1 years will be run all on computers, you will not have to do antyihg but wil them. without computers, how would we know aobut all of the stuff that we know now. How would people know that egypt looked like @NUM2 year ago? they dont to be there they could just look it up on the computer and how just as must about it as if they went there. Also computers enable you to learn about people that lived before your time. What president that you in something aobut how would you be able to find out after computer you could go to a library is right there to be will out computers in todya society. Our average being would in at how does becaus of the that computers have given us. I can whey some experts are conceried that are however, for some people this is the only correction to their emily and friends it there is a family that lives lets say in a different country, and he or she wanted to talk to you, how would you go about doing that? I know that I would try to contact them on the computer. I love friends that live out of state and I enjoy talking to them so if we did not have the compuers that we do. these experts are sasying that we are going to drive across the country to talk to them, if you ask me htat is pretty tire consuming and pointless. In conclusion, I hope that you agree with me in keeping technology in our lives is important because of the future for people to learn nee things about places and people, and also to communicate with friends and family although I can se your part of view that kids are not getting enough exercise most kids that computers are also involved sport." 4 4 8 +1035 1 "Dear @CAPS1 -in-@CAPS2, Computers are very helpfull tools in todays society and culture. They build cognitive skills and offer a vast wealth of knowledge. I want you to understand all the benefits a computer provides. First off, computers enchance our hand-eye coordination skills. When typing, we look at the screen, while using our hands to type this becomes almost second-nature after a period of time, proof that it is helping with this cognitive skill. Having good hand-eye coordination is a critical part of driving, and many other tracks we perform throughout the day. Also, you must consider the near infinite amount of knowledge available on this tool. You can learn just about anything on the internet, and most of it is absolutely free. In fact, on websites like @CAPS3 alone, you can find a webpage, dedicated to just about anything. Contrary to the counter-arguments belief, a computer can actually aid in our social life. With instatn messengers like @CAPS4 and @ORGANIZATION1 you can converse with people around the world in real time. Social networks like @CAPS5 allow your to keep your friends posted on what you are doing. Please take my letter into account, and publish it in your editorial. I believe computers help us with cognitive skills, learning, and socializing. Thank for your time." 4 4 8 +1036 1 "Dear the @CAPS1 of the @ORGANIZATION1, Some people say that computers are a negitive contributor to society. In @CAPS3 opinion, computers have a positive impact on the world around us. I believe @CAPS4 gives people hand-eye coordination and a way to be organized. Not only those but, people are still interacting with others. if you don't beleve me now, read @CAPS3 details and you'll feel the same way I do. When you consider @CAPS4, computers give us hand-eye coordination. there's no way to use a computer without typing. No matter if you're just typing in a short password or a @NUM1 page essay, you'll alway have to type, and when you do @CAPS4 allows better movement at your hands. This can later help you in sports when you get out and exercise. Since computers have become such a popular thing, i think that in the future, typing or using a computer will be in the @CAPS2. this could be of the hand-eye coordination @CAPS4 gives @CAPS3 theory is whatever you think, you type. in addition to hand-eye coordination, computers provide organization which is a big concern in present day life. Do you have picture files laying your house? Well, there's no need to. With computers you store all and files neatly. how your might you can bark those easy to find everything becomes all that are locate. Even doctors are computers your medical needs and give time. Computers can give organize. Furthermore, computers continue to help instead with store say keep friends I can talk with friends or family far away. @CAPS4 keeps us together and gets I'm not saying that @CAPS4's always a good thing, because we all need face to face interaction. Although when you arent able to get that, its a good way to talk. To conclude, computers positivly effect our lives. We're able to get hand-eye coordination, and stay organized when @CAPS4 can be a trouble to do @CAPS4 can bring people together when they aren't in person. You can learn about new things like people and places far away. though people @MONTH1 think opposite of me, i know that computers benifit society." 5 4 9 +1037 1 "Dear editor of @ORGANIZATION1, I am writting this letter to you @CAPS4 I think people are not getting enogh exercise @CAPS4 they spend so much time on the computer and they are going to websites here are some things that I want you to write about so people can and @MONTH1 be aware. My first reason I exercise why this @CAPS4 so many people spent so much time on the computer they don't get they don't walk. They sit and want message their frends @CAPS1 day. Not worrying that they are ganning @CAPS2 and @CAPS3 A on their heart @CAPS4 of the @CAPS2. @CAPS4 of this it can @CAPS5 to heath @CAPS6 things could you can't do @CAPS15. m @CAPS7 reason @CAPS8 @CAPS9 websites to moral kids @CAPS10 @CAPS11 things they Are not suppose see when kids have free @CAPS12 computer excise the thing wen let me @CAPS11 this can @CAPS10 @CAPS11 @CAPS14 sites, gunsites, @CAPS15 to a things can make something they @MONTH1 really hurt someone or maybe even themselves. Kids try to learn @CAPS15 people talk like @CAPS16 websites things that they are not able to and over they can see Are @NUM1 on @CAPS16 @CAPS18. My third reason chat sites Places to get some attension They will @ORGANIZATION1 things they are not suppose to the @NUM2 year oldd man here some things to write are doing and please monitor them as much as you can to prevent this." 4 4 8 +1038 1 "Dear @CAPS1, @CAPS2 a world without computers. I picture it as a better place. Why wouldn't you want to make the world better. Computers @MONTH1 be helpful for work and business but young children are losing time to exercise, enjoy nature, and interact with family and friends. What do you prefer having computers or no? In my opinion people would be better off without them. Lack of exercise is brought up countless times in society. Computers is one factor to blame with the @LOCATION1 already being one of the most obese countries in the world who would want to add on to this cotastrofy. If the number of computers used in each household increase the amount of obese people in @LOCATION2 will as well. If computers take away exercise than health issues will more often and at a younger age. Dr. @PERSON1 says ""if kids are spending more of their free time on the computer rather than increasing the risk of diabetes will increase for them"" @CAPS3 it also a possible result in less exercise. Older citizens will be a big target for a heart attack. It is said that five out of six people could have stopped a heart attack just from taking same time out of their day to go to the gym or take a walk. No one should lose exercise over playing virtual games and instant messaging on the internet. Less people get a chance to enjoy nature when they are on the computer all day. If more people cared for nature then global warming would not be an issue. In my opinion the citizens of @LOCATION2 would want to keep it more clean and be more about their. more people cared about nature and enjoyed it wildlife would be taken away from animals. People would put an end to what some people and companies are doing to nature. Lastly when your on your computer all day you don't realize what nature has to offer fresh air and animals. Or endless canyons needs to enjoy nature more, computer should not be in their way. Wouldn't most people that their relationships with family members and friends could be a lot stronger if they interacted and spent time with them instead of with their computer. @CAPS2 how much a dinner conversation and family party could improve if people were closer with their family. Plus people need family. Your computer can't get you through the emotional pain if losing a loved one. @PERCENT1 of people can get through difficult and stressful times with family. Last but not least your social life could improve if people werent on the computer all day. Not interacting with people could turn you antisocial and not fun to be around. No one wants to be that way. Also your computer might not be working all the time, but your family and friends always will be there. The world would be better off without computers. I think everyone that sits in their room on the computer could change their exercise, enjoy for nature, also family and friend relationships by getting off it and do things that they will actually benifit from. There is no need for a computer in your life, but don't speak for everyone. The question then is do we stop using computers or do we turn them off for good." 6 5 11 +1039 1 "Dear @ORGANIZATION1, Some parents are concerned about their child being on the computer all the time. Now I'm going to talk about @NUM1 good things about computers. @NUM1 bad things, and @NUM1 things on what you should do. One good thing is that you get to talk to people. You could talk to your friends online about something in school or whatever. Thats good because what if you frogot what was homework or you need help on something, you could go online and ask them. Another reason why is that you get to meet @ORGANIZATION1 people. For example @CAPS1 or facebook. When you meet @ORGANIZATION1 people online they mostly come from a different country that you never heard about and then you just learned some thing @ORGANIZATION1 and you have a friend from @ORGANIZATION3, @CAPS2, or @LOCATION1. One more good thing their is, is that you learn @ORGANIZATION1 things online about anything. It could be a @ORGANIZATION1 website that you never heard about and something that can help you in the future. For example @ORGANIZATION2. @ORGANIZATION2 could help you out a lot. Now where going to talk about @NUM1 bad things that computers do. The first bad thing that computers do is that they make you adicted. For example me I got adicted when I had a computer but not I'm not we got rid of ours and now I just play with my sisters. The second bad things is viruses. My grandmothers computer got a virus off of a website that website was @CAPS1. When you get a virus it sucks you cant do anything or you can't look anything up for school. Getting viruses are not cool you have to wait a week or so before they fix it. The last bad thing is that you never want to spend time wit your family. I know some people who do that like its not cool if company comes over get off the computer. Since I dont have much time left I'm going to talk about one thing you should do. You should have a certain amount of time on the computer and go have fun and do what you want to do except go on the computer. Thats what I think you should for now." 4 4 8 +1040 1 "Dear @PERSON1, @CAPS1 name is @PERSON2 and I am here to give you @CAPS1 opinions about computers. Computers are fun and educational. They have lots of websites for games. Such as portaportal, @NUM1.com, they have safe fun games for kids under @NUM2. They also have educational websites that help you with your work. Such as google. Ask your question.com these websites have all the info on things you need help with. They also have @CAPS2, facebook. Yes I know there has been rumors about people threatening over chats. But other than that your able to chat with your friends instead of waiting for your mom to get off the phone. @CAPS2 lets you meet new people without having to tell them who you are. @CAPS1 opinion is that computers are safe in different occassions but are also very fun & educational." 3 3 6 +1041 1 "I think that people shouldnt use the computer's that much because it make's you want to be on it and on it day. Like yea you can play games on it and talk to people like other people you use of lec see I can understand that but the other people around you like that live's with you people that on the computer all day can spend time with there family and friends and to other places then going to look at them on the computer's I mean like to see other people that you see on the computer like chat or like webcam on the computer, you can maybe go see in a other state and go visited them. then being on the computer people that always on the computer should get out because there never going to do things is they are always on the computer, like when @CAPS1 on the computer @CAPS1 on it for a hour are so the I do things with family and friends, but not all the time that @CAPS1 on it, like i understand if you work on the computer at work and then finishing things at home for your work, but once in a you get to spend some time with family and friends, not @CAPS4 be on it all the time. Some people @CAPS4 come home and @CAPS4 go on the computer and that how people get lazy the start getting fat because they @CAPS4 go on the it and maybe stop to eat and back on the computer, then when they get off of it they will eb all tierd and stuff not feeling like going anywere @CAPS4 to sleep or like if they had sometimes to do after they would be all lazy an not wanted to do anything at all, that why people should get out more and do thing withe there family and friends to have fun withe there like." 3 3 6 +1042 1 "Dear @ORGANIZATION1, I took a poll of @NUM1 people and @PERCENT1 of them agree computers have a positive effect on people. Computers can help people talk to someone in a far away place, teach people hand-eye coordination, and give the ability to learn about people or places. Using computers is a great way to keep in touch with someone. For example, my grandparents live in @LOCATION2. Some of the ways I keep in touch with them are e-mailing, video chating, and instant messaging. Some other good things about talking to people online is if you're talking to many people at once or if your parents are on the phone. Another good thing about computers is they are good at teaching people hand-eye coordination. The ways of teaching this are typing, and clicking on something, @CAPS1 people, when they type, look at the keyboard. But, with pratice, they will advance to looking at the computer screen while typing. To click on something, you need to move the mouse while still looking at the screen. That, believe it or not, is hand-eye coordination. One last reason computers are good at helping people is it a student needs to look up a place or person for a school report, they can very easily go to google.com and type in who or what they are looking for. Another option is , say someone is going on a vacition to @LOCATION1 and they know nothing about it. They can go on the internet and get information on @LOCATION1 with just a couple clicks of the mouse. Finally, say someone wants to learn about @ORGANIZATION2 @ORGANIZATION2 for fun: They type @ORGANIZATION2 in look at all the websites, choose the best one, and start reading. In conclusion, I deffinately think computers have a positive effect on people for the reasons I have stated. People can talk to someone online, computers can teach hand-eye coordination, and finially, people can look a person or place up using the internet. This is my opinion on computers, I hope you agree." 4 4 8 +1043 1 "Dear local newspaper, @CAPS1 name is @PERSON1 and @CAPS2 writing to talk to you about how computers benefit society. Did you know that @NUM1 out of @NUM2 homes have at least @NUM3 computer in their home? Well who wouldnt! Computers let you learn more because you can research more, its quicker than having to go and look things up in the library, and with tools like @CAPS3 and facebook you can talk to people you normally dont get to see. Computers let you learn more because of the internet. With the internet you can use websites like google, @LOCATION1 and @LOCATION2. When you look stuff upon these websites and many others you can get valuable information that can get you ahead in life. For example, if I was looking up a chocolate chip recipe and I tried different things to make it unique then sold it, just think that life changed with one click on the computer. Also if I had to research a topic for @CAPS1 history project then I would go onto the computer, to google and then type in @CAPS1 topic and be overwelmed by getting the info that I needed and got an at on the project thats how computers help you learn more. Computers are very quick I can make @NUM4 powerpoints slides @CAPS6 with useful information in the time it would take me to go to the library, find a good book and write enough information to make powerpoint slide: on overage @PERCENT1 of people turn to the computer to find useful information. When I was doing @CAPS1 social studies project @TIME1 I had to find out what the @CAPS4 flag looked like. So, instead of trying to possibly find a book on the library. I just hopped on google and clicked images and clicked images and typed in @CAPS4 flag. Within seconds @CAPS1 screen was @CAPS6 with real and edited pictures of the @CAPS4 flag. It is amazing how fast information can travel from the world wide web to your computer. So would you rather be stuck in a library looking up information forever or out enjoying your life because you saved all that time by going on the computer? Have you ever heard of facebook, myspace, @CAPS3, or twitter? Well they are all great ways to communicate with people using the computer. When I am @CAPS3 or facebook I can talk to people that I might not get to see all the time one of @CAPS1 friend from camp lives in @CAPS10 so I dont get to see her alot so with the wonderful invention of facebook I could talk to her all the time. Just think without the computer facebook would have never been invented so I would have most likely lost touch with a good friend. Also when I go on the computer. I have the option signing onto something called @CAPS3 or email. With this I can talk to people and get wacky emails. That would happen if the computer wasnt invented. So dont you want information to be easier to research? Quicker to find out information. And talk to friends more easily. Well lets make it @NUM2 out of @NUM2 homes that have a computer and help benefit society by doing your part and just getting what you need on the computer then enjoying life. Just imagine how much time you are saving by using the computer." 4 5 9 +1044 1 "Do you really think @CAPS1 need computers to live? I agree on spending less time on the computers and spending more time exercising, enjoying nature, and interacting with friends. I this because @CAPS1 and family. And @CAPS1 don't need computer @CAPS1 don't need computers @CAPS2 @CAPS1 are lost on and don't know where @CAPS1 are @CAPS1 get @CAPS3, not @CAPS2 @CAPS1 need to look for something @CAPS1 use ipods. If some people like to chat with each other they use cell phones. Lets say you have a project in class libraies are available. @PERCENT1 of kids like to read. A is great way to bring your reading up. If you don't get that right ideas @CAPS2 you read then you can ask your teachers, @CAPS2 it is appropriate time. Like afternoons or during lunch time. One day @CAPS2 I went to class there was a project due and kid said ""I copy all of the words for the computers."" And that is call pradizing. So some parents don't see there children pladerize. Sometimes internet is not good for children. Sometimes you need take a break and slow down. You can take a trip and see your family. You can also look out to nature. Exercise, hike, swim and bike. Computers are not family there are not going to make you exercise there going to make you lazy. Now that you've heard about why you should stop going to the computers because you have electronics, libraies and family. You stop and make a change right now. There nothing to loose. " 3 4 7 +1045 1 "What do you think about computers? I think computers have a very positive effect on people. All kids should have @NUM1. Please heed the following advice. Computers are a very good thing for kids to have. I teaches them life skills such as hand-eye coordination, a lot about technology. Expert @PERSON1 states ""@PERCENT1 of success full jobs involve some kind of inter-ation with computers, & if they learn those skills at an early age they can soon become experts."" Technology is a @CAPS1 part of life today, & will continue increasing with the years. It's a grevious idea to want to separate our kids from technology. As a child, my sister grew up with computers, she knew how to fully use it by age @NUM2, she went to collage with amazing computer skills. Today she works in a law ferm as presidental secretary. She gets paid loads of money. Today she trys to get me to learn about all tech stuff. If you have kids you know you only want the best in their present & future. People say kids are the future, not if theyre not succesfull. Computers are a great way for kids of all ages to learn & communicate with @NUM1 another & others. We all want our kids to be happy. @NUM4 out @NUM5 kids use the internet to research things for @CAPS2 & projects. Kid therapist @PERSON2 says ""kid who chat, with other kids though internet like facebook, @CAPS3, & myspace are normaly more socialy interactive with other kids. I know you thinking there a lot of ""@CAPS4"" thing on the internet dont want my kids to see, conversly you can set limits & child block. & you also dont want you kids at risk of obesity because of lack of excercise. So give them time limits. My cousins each go on the computer @NUM6 hours a day. They do @CAPS2 & whatever time they have left they chat with friends. Its not all @CAPS4. As you can see computers can be seen in a very possotive manner. Heed my advice & allow your kids the freedom of internet. They will be happier, trust me." 5 4 9 +1046 1 "Do you like your computer? Does it benifit you and the around you? People are saying that computers dont benifit people. I am writing to prove them wrong, and state why computers benifit us. It helps us with things like learning, communication, and even money or economic problems. First, learning is a very important in a lifetime and computers can help you increase that one hand-eye coordnation is very helpful in different sports like tennis, golf, and hackey too. When you go on the computer, you learn that skill. For example, last @DATE1 i went to tennis with mom and shes never on the computer. She missed every ball thrown to her. Thru computers all around the world, and going on the computer can open you to the whole world. You can see places like @LOCATION1, @LOCATION2, and even @LOCATION3. Overal, has the least computers out of the whole world. Finnaly, computers let you learn typing. In america, there are jobs that are for you to type. If you to type, then you a good job. If you get a good job, then you can be succesful in life. Computers definetly benifit your learning. Second, when. Computers open you up met new friends. One, when you go to school, more with other student. Computers let you talk your you right. According to facebook magazine, @PERCENT1 of all the students in a school chat and talk online to other person. Two, the computer can help you communicate with your family too for instance. If your her got hurt, could e-mail that grandmas hurt. Computers can your family too. Finnaly, computer half in life. For example, kids with cancer, or even need to check them can let you talk to this kinds in. Computer very helpful when social life. Finnaly, computers help you. In that economy it's really hard to find a job. So the computer can help you with that websites online make you take a actualy gives you a place to work." 4 5 9 +1047 1 "Dear @ORGANIZATION2, Computers are destroying modern youth. The rapid advancement in technology is not a positive thing. The popular social networks such as facebook and twitter are putting youth at danger of @CAPS1-@CAPS2 and child predators. Children are also becoming addicted to computers and are paying the price physically. Although we are becoming a smarter species, we are destroying the ones who will soon lead the world. This crazy computing must end! Although children are able to socialize using the computer, they are at danger of being hurt physically and emotionally. ""I really tried to ignore all of the cruel comments people were posting about me. I tried as hard as I could, but everytime I logged unto facebook and looked at what people said about me, I died inside. I almost had no desire to live."" That quote was said by @PERSON1, a former student of @ORGANIZATION1. He is as victim of @CAPS1-@CAPS2. Thousands of students just like @PERSON1 are being pestered just as bad, and if not worse. The social networks that modern technology promotes harvest cases like @PERSON1's. If this rapid increase in technology continues then we will see many more cases such as that one. In the past year, @NUM1 @CAPS1-bully victim have committed suicide. Those are @NUM1 lives that could have been saved; @NUM1 families that could still be together. This computer madness is losing lives, we cannot allow this to continue. Not only are computers causing emotional danger, but also physical. The average teenager spends between one to four hours on the computer - making the one hour of exercise seem miniscule. The large number of obese children is in large part caused by computers. The many features of computers, such as instant messaging, music playing, and games, draw kids in - making them spen time they could use exercising, in front of a computer. Statistics show that the average obese child spends @PERCENT1 their free time on a computer. The time they spend exercising and playing makes up only five percent of their day. In @DATE1, children spent @PERCENT2 of their day in front of a computer and @PERCENT3 outside. Over the past @NUM4 years these numbers have headed south due to tha advance in technology. These numbers prove that computers have dictated obese children's day, making their physical condition even worse. Computers are to blame for our worlds weight issues. As I conclude this letter, I can only hope that I persuated you to make a stand and hault this technological advancement. In conclusion, computers are harvesting @CAPS1-@CAPS2 which leads to emotional discomfort. They also dictate time, and as a result, children become obese. We must take a stand and alter statistics for the better. Computers are ruining lives." 5 6 11 +1048 1 "Dear readers, @CAPS1 if I told you that every time you sit in front of a computer, you are that much closer to death? @CAPS1 if I said that computers are destroying your lives? This @MONTH1 not be that serrws, but its shocking. You can not disagree. I feel that humans should not use computers, or at least use them very scarcely. Computers make people get less exercise, they kill brain cells, and they can ruin your lifestyle. You @MONTH1 believe computers have impared your life, but consequences remain. Many @CAPS2 today are obese and lazy. They don't get any exercise. There are many reasons for this, but one big reason is because they sit in front of computers all day! Computers @MONTH1 improve reflexes and such but you can do that by exercising, also! When you sit in front of a computer, it reels you in. Ten minutes becomes one hour in a snap! That is one less hour of exercise. Virtual sports @MONTH1 be fun, but they keep you from the real ones. Without exercise, one @MONTH1 become obese, develop diabetes or heart problems or even have muscle troubles. These can be hazardous, and even deadly. Computers dont exercise your body, or your mind! Now, that fact bring me to my next point. Computers @MONTH1 have information to teach you, but that type of learning has its consequences. When you sit in front of a computer, your eyes are on the screen. Now, scientists from the @ORGANIZATION1 foundation have found they staring at the screen kills brain cells. Basically, these cells do not reporoduce as easily as other cells, and they sometimes don't reproduce at all. You are just one step closer to death. I'm sure you don't want an death. Try opening a book! They are cheaper, more accurate, and don't kill your cells! Don't stare at the computer screen, because your slowly destroying your body, and knowledge can be gained elsewhere. For a final point, I would like to say that computers simply destroy your lifestyle. Virtual people are not your real friends and family. Computers cause you to turn away from them. Online interaction is not like just talking to someone in person or on the phone. You can lose your real friends. Plus, computers run your lifestyle because half the things you think you are learning arent real. You can't trust certain sites or certain people. Being with ones you know and love is much more beneficial, because computers drag you in you are taken away from the real world. I feel that we should all take a stand against computers. They take away exercise, cause brain cells to die and other problems occur, and they can ruin your lifestyle. No one wants to be a lonely joke! Read a book, get outside and day; but stay away from die screen. There are better alternatives. Take a stand, and do @CAPS1 is best. Be the healthy, happy person, and lay off that computers, so that you can get the best of life!" 5 5 10 +1049 1 "Dear edditer of my local newspaper In my opinion computers have a positive effect on people. I support the advances in technology. I believe @CAPS1 is a positive thing because @CAPS1 teaches hand-eye coordination, gives people the ability to learn about far away places and people, and even allows us to talk online with others. In the following poragraphs I will share with you my opinions and why they are the right opinions for all to believe in. Firstly hand-eye coordination plays a big part in our lives, many of us do sports. Now sports isn't just about being the best @CAPS1's about getting better and doing your best. Sports take alot of practice, and are way is computer games though I bet you didn't know @CAPS1, these games help you develope hand-eye coordination. Defeating these monsters and such really helps you in sports. Catching and throwing is a big part in alot of sports and thats all hand-eye coordination, and where do you think you get @CAPS1 from practice and computer games. So next time your on the computer play som games and that will be like practicing for sports and will help you devolop the hand-eye coordination you need to suceed in a sport. Secondly, @CAPS2 in favor for computer use is because @CAPS1 gives us the oppurtunity to learn about places and people from all around the world. Think about @CAPS1 before computers if you want to know something you might have to locate all around for a book that tells you @CAPS1, @CAPS1 could take, now you type what you want to know or google and bing theres your answer. This ability to quickly find what your looking for allows you more freedom to learn and spend other precious time doing other things you want to do then take the to locate and read the right book. As you can see this is a ability and can be a big help when you need to know something fast. So help you yourself and use computers make life easyer. Thirdly computers are a way to communicate they can let you talk to people all around the, when you might and usaly be able do. This is a great way to stay in contact wen people move, go away on a buisness trip go on vacation, or even to meet new people. Say you cany get a hold of someone because there phone is off and its important you talk to them you could email them or if there online and ahave @CAPS3.M. you could @CAPS2(instant message) them. This would save you the hessle of having to keep calling him. Also if you want to see what there doing or where they are you could us a webcome and see them instead of just talking to them. As this paragraph shows internet and computers open more then ever before. As the I wrote above, I showed not even a fraction of what computers are good for. My reasons for computers being more of positive thing, ever a negitive thing are as followed; they help us with learning things that before we couldn't, communicate with others, and help us develope hand eye coordination. I can only hope that as I write my conclusion, ""that my opinions were heard and that this letter has helped all see why computers are a great thing, not a bad one." 5 5 10 +1050 1 "Dear @PERSON2 ""@CAPS1, @CAPS1"" I'm sure you all have heard the sound of a mouse or people typing if you have walk into an office, our local library, a doctor's office, or even our districts schools. The reality is that computers and the world-wide-web is seem and used everywhere. Without a computer, how would @CAPS3 be able to access our emails, interact with family memmber across the ocean and finish that research paper out teacher has assigned us? In my opinion, computers hace a phenomenal affect on people and their lives. The computer helps develope hand-eye coordination, learn about specifil subjects and interact with people on the computer. Therefore, with such positive affects, @CAPS3 should keep using this wonderful technology and get our jobs done. Have you ever walked into your schools lab or walked into a office building and all you could hear was the clicking of mouses or the buttons being pressed down on the keyboard? Well, not only is a job being completed, but you are also exercising I remember last month when my class was assigned a five page essay. After the second page, my hands hurt very badly, @CAPS4, not only was i completing my essay, I was also exercising my hands. Not only does computers allow you to exercise, it also helps develops hand-eye coordination. Have you ever played a game where you had to cath fist, or playes a fast-pasle game of pinball? Well, those games require one key thing i hand-eye coordination. Computers are very helpful in todays world. The computer and the world-wide-web is useful in several other ways too. The internet also allows you to learn about certain subject or events you might not have a book for. My bestfriend, @PERSON1, called me one day from the train. On the phone, she was frantic because she was giving a speech and she did not know what the statistic was for type @CAPS5 diabetes. What do you do when you have no book for a specific subject? @PERSON3 went on her laptop and found all the information she she dit not know. this is just another way the quick acces to a computer benefits people. ""You've got mail"" I'm sure you have all heard this before. Besides communicating through letters or on the telephone, the internet has also given us more ways for fast communication. when you need to confirm a meeting place or ask your classmate what problems were assigned homework, what could be a fast mean of communication? Sending a instant message, or e-mail are two ways of course. Not only does computers allow you to communicate quickly but also privately. Both your e-mail account and you instant message account have passwords so that only you can access them. Every four out of five households have a computer avalable for completing assignments, checking, e-mails and learning about the, that happend in @LOCATION1 last week. The computer has put a positive affect on numerous people and their everyday need. In my opinion, the computer has been one of the best technologies in history. This amazing technology has helped students, teachers, doctors, police officers and even you bank aggents serve our community and make it a better one. Thank-you." 6 5 11 +1051 1 "Dear Local Newspaper, @CAPS1 society should have computers because it teaches you things that a school or job will never teach you, and it allows you to be in contact with your friends and family that you don't see a lot. I would like for you to appreciate my concern on how @CAPS1 society should have computers. First, we should have computers because it teaches us things that we might not have been taught before. I say this because if you wanna know about the @LOCATION1 more and the school or job doesn't teach you as much as you wanna know, then all you have to do is look up on the internet and theres a chance you gonna find it. @NUM1 people would rather have computers to look up things instead of not knowing that much about something at all. Next, we should have computers for @CAPS1 society because we could contact people online that we heven't spoke to. My opinion is that if you haven't to a friend or family member in a while you can talk to them online. Also, if they don't have a phone or if they do but it's long distance and you can't talk to long distance on your phone, you can tlak to them on or email each other, etc. Sample say if your phone isn't working and the only thing that's working is your computer you to it in contact with somebody. All you gotta do is talk to them online. Would you rather talk on the phone or computer. In conclusion, @CAPS1 society should have computers because we could learn about things more and we could chat with people. I would like for you to aprreciate my concern on having computers in @CAPS1 society." 3 4 7 +1052 1 "Did you know that @PERCENT2 out of @PERCENT1 children today, prefer to play games on the computer than do other activities? My opinion about this topic is that it is more important for children to do things other than sit on the computer all day. The reasons why I feel this way is because it is important to exercise, children tend to be addicted to playing on the computer, and if someone's life revolves around the computer than they most likely, won't be able to live on the ""real world"". When a child sits at the computer all day, they are not getting exercise. Today, obesity is a major problem. If people stay on the computer less and exercise more than this situation could decrease. Also, it is important for children to get fresh air. When someone plays on the computer they are not getting as much fresh air as you would outdoors. Lastly, who realize the importance of exercise tend to participate in sports, to stay active and have fun. Once you begin to play games on the computer, there is not turning back. In today's society, children of all ages, become addicted to the computer. Children who are addicted pay no attention to their surroundings. Also, some of these games might be inappropriate for younger players. Lastly, if children become addicted, they could do poorly in school for refusing to do homework. If a child is constantly on the computer than they have a chance of not being prepared for the ""real world."" In the ""real world,"" you can't rely on computer games. Also, games won't teach you things that you can only learn during school. Later in life, when you want to get a job, you won't be able to be accepted because you will not sound knowledgable. Lastly, when you are writing your application to go to a college, they will look at your records of sports and activities you've done in middle school. When they don't find anything, they will reject you because of your lack of participation. So when you are sitting at the computer screen, remember all the possibilities you have other than the computer. For example, it is important for you to exercise, playing games on the computer could make you addicted and you won't be prepared for te ""real world"". What is your opinion?" 4 5 9 +1053 1 "Dear newspaper, @CAPS1, my name is @PERSON1 and I believe that computers have a negative influence on people. When people are on computers all day they have less time exercising. They are in alot more danger, and they spend less time with there family. These are my only some reasons why computers dontbenefit society.. In more, more time spent on computers equals less time exercising. With the obesity rate rising no one wants to be unable to do regular activitys. With spending all your time on the computer, you would just be using to get over weight and unhealthy. It also makes many people feel self consiou about themselves. If they dont have enough time exercising and keep eating they will become even more self consious. More over it will bring more danger to you and your family. There are many places on the internet where you can meet new people. But how do you know if people are who they seem to be? If you spend more time on the computer then you will increase your chances by @PERCENT3 to get a personal assuts, or even give you personal information up. So why should you take the risk? Just get off that computer! Even if you dont meet on internet assuter you will still be glued to your computer cauzing it more likley to be harrased. I definatly dont want that for my family. The last reason is the most important to @PERCENT1 of @LOCATION1 family. If you are spending all this time on your computer you will be out on in your family. This time is verry important because you never know when your family will be gone! And it is a verry scarry topic to think about. I know that most people in @LOCATION1 was spend all the time with there family. On another note a survey shows that @PERCENT2 of children that spend time with there family and less than @NUM1 minutes on the computer have grades higher than @NUM2 in all classes. Wouldn't you want to make the honnor role in your school? In conclusion, computers have a negiteve effect on people! Spending most time on your computer can causes less time spent exercising, more danger/harm to people, and less time spent with your family. Wouldn't you just rather spend less time on your computer? Thank you for your time." 4 5 9 +1054 1 "I think computers are very benefical. There are so many uses! From learning, to games, to videos, and to a tool that is very useful. Without computers we would be like the @CAPS1 (@CAPS2 offense any @CAPS1 people). We would have to wait for a news paper or the news to come on @CAPS4.V. to see becalling news. Let me explain my reasoning in the next few paragraphs. First and foremost, there are lots of things to do. You can play online games, off-line games, surf the web, chat, match videos, and so on and so forth. Without the internet I probably would have lost my interest in @ORGANIZATION1. I now am a member of the online community called www.MOCpages.com I post my creations, look at others creations, and comment, and chat. I use the internet to reasearch for school projects. Right now, I am reasearching @CAPS5 @CAPS6 during the @CAPS7 @CAPS8. Normally I would have to slave over books to find something. Now it is much easier, because keywords are matched. Finally, it is a good fool. Did you know the millitary needs computers to store info, attack, keep record, and to pilot certain planes? I need to use a computer to type up home work, because as you can see, my hand writing isn'@CAPS4 the neatest. Also, I stay in touch with my dad, who works in @ORGANIZATION2. I hope I persuaded you on my position. Remember computers, do lots of things, help us learn, and they are a fantastic tool. Thanks for reading, bye!" 4 4 8 +1055 1 "To whom it @MONTH1 concern, To many people it is so much fun but then they become so obsessed that they can lose so much that they loved. My stand is that computers hurt peoples. Money, weight and sleep. My opinion is my opinion but I will stand strong with what I have. My father is favorite is the financial deal. With five kids and one laptop who would want to be happy. With people sitting and staring at a computer game all day the bills just keep billing up until you lose everything, such as your house, family, money, ect. But who cares about them when you are obsessed with your computer. My favorite is the overweight problem. Yeah I agree it is nice to sit in a soft cushy chair with your computer and bowls of chips and boxes of pizza but sooner or later all that fatty food will catch up to you when you least expect it but will you get up and take a jog, run on a treadmill or go for a @NUM1 walk. Probably not will that computer game running. That wright will keep coming until you can't even move. Sitting at a @NUM2 will really have your eyes, brain, muscles and other important bodyparts due to lack of sleep and want for it. I can relate this to my brother with his dis. The be gets home, boom he is on it until maybe @NUM3 or @NUM4 o'clock in the @TIME1. Eventually he is going to get sick and I'm not to blame for it. When you sit at a computer than eventually you are going to make yourself sick and in some cases die if you were up that late. Now as a common teen to love to go on the computer but one thing I do not do is sit and watch movies or play games every hour of every day. I get outside and run so that I will not fall victim to weight. Financial, and body problems, like @MONTH1 people do. So don't waste your life on a game or chat room get out there and do something like sports or just get some fresh air." 4 4 8 +1056 1 "Many people say that computer is help them in their every day life. A few examples are you could learn about places you didn't know about by searching on google. You get facts reviews about the place. You are exercising your fingers. It helps with communicating with other people. It can help you find long lost family. It reunites lots of family & friends you might have been looking for. Also with hand & eye coordination. And that means you can write/type without having to look at other features that cames through with a computer is going online. You can look & browse at things available in a store. Without driving all the way to the store & wasting gas & polluting the air. I.Ms a way of finding what's happening world wide & breaking news. You can still interact with family & friends & can meet new people. There's e-mail, instant messaging & much more. So you can always interact with & if they dont have a account signing up is. If you just go into nature you don't know what's there. You could look it up and find out what the park has to offer. And that concludes my opinion on how computers are helpful & lots of diverse ways." 3 3 6 +1057 1 "Dear local newspaper, @DATE1 I am going to write to you about if I think computers are a good idea or not. Yes, I do think computers are @CAPS12 awesome idea. I think this because @CAPS1 @CAPS2, you use computers for school projects. Next @CAPS2, it is @CAPS12 easy way to make friends from other towns. Last @CAPS2, you @CAPS10 @CAPS11 @CAPS12 @CAPS13. Yes, the electric bill could be higher, but for a good cause. You @CAPS10't just assume computers are bad for us, you might be surprised. @CAPS1 @CAPS2, I am going to explain to you why we need computers to do projects. Well, I @CAPS5 from personal experience, my social studies teacher always likes you to type your final draft. Also, using a computer makes your projects easier because @CAPS3 @CAPS4 fixes your mistakes, and @ORGANIZATION1 finds everything you need. I find it much more easy to use a computer for projects and I @CAPS5 all of my friends think it is also. If you aren't persuaded yet, keep reading because I @CAPS5 you will be eventually! Next @CAPS2, I am going to talk to you about making friends just with a computer. I @CAPS5 that parents these days are really happy when you have come home and made new friends. Just by using a computer you could easily go online, search friends you want to @CAPS11 to @CAPS5 better, and chat with them. (to make sure they are who you think!) The other day my friend @PERSON1 came up to me and said meet my friend @CAPS6 I met online! I was really happy for her and realized computers are helpful. Everybody needs friends that are there for them, and computers are the perfect conclusion for that! Last @CAPS2, I am going to talk to you more about why and how you could @CAPS11 @CAPS12 @CAPS13. Do you @CAPS5 what @ORGANIZATION1 is? You @CAPS10 search @CAPS7 on @ORGANIZATION1! If you really wanted to @CAPS5 something and you were really curios you could search on @ORGANIZATION1! This is a great way to @CAPS11 educated. Also, computers help you with @CAPS12 @CAPS13 because everytime you are on @CAPS3 @CAPS4 typing a random story it will fix your mistakes, and you will learn off of these mistakes. So, to sum up this paragraph, a computer is @CAPS12 easy way to @CAPS11 @CAPS12 easy @CAPS13, and YOU need to keep computers to see for yourself. In conclusion, I was asked to write a paper to you seeing if I would like to keep computers or not. By now you @CAPS5 that I would like to. In case you are iffy about my reasons, I will simply restate them. @CAPS1, you need a computer for projects. Second, you @CAPS10 make friends. Last, you @CAPS11 @CAPS12 @CAPS13. All of these things are a huge benefit in laer life. Don't forget YOU @CAPS10 @CAPS11 @CAPS12 @CAPS13! That is whta everybody would like! I @CAPS5 you will come through to yourself and agree. Thank you for listening to me." 5 5 10 +1058 1 "Dear @CAPS1, I believe that computers have a positieve effect on people. They do because you can talk to others online, it allows you to get research done faster and they are much more efficent and easy to use i will further explain my reasons. First of all, computers allow you to talk to others online. Talking to others online can give you good communication skills and you can get to know different people. I always talk to my friends online. We talk to each other using webcams, instany messaging, or talking on a social site like facebook. Computers and webcams can allow you to talk to friends who have moved away or for relatives. Next, computers allow you to get research done quicker. Studies shown that @PERCENT1 of people prefer using a computer to find information for any type of paper than an enclyepdia or other book. Computers are much more efficent and easier to use than books. It can agree that computers are much more efficent and that i like to use them. If you use a computer to get research done than you can be done sooner than you know it. Finally, computers are more efficent and easy to use. If you give a person to coose from a computer or a set of encyelpedias, most people would choose the computer. Computers are so much easier to use than books. On the comuter you just type in what you are looking for in search bar a boom within a tenth of a second your results are there. Now, if you use a book or enclyelpedia it could take several minutes to find what you are looking for, and then they only give very little information, unlike a computer that can give you millions of results for one topic. This proves that computer are more efficent than books. In conclusion, i believe that computer have a posieve effect on people. I do because you can talk to people online, it allows you to get research done quicker, and computers are more efficent and easy to use. I hope you will agree with me and my thoughts about computers." 4 4 8 +1059 1 "I think that computers do have a positive effect on people because they teach hand-eye codination, also give people the ability to and lastly they allow people to talk online. First, they teach hand eye codination and I think thats good because when people get a job they can probably more focused and can probably work faster. So if people can do that when they get a job and their jobs involve working on a computer it can be easier for them and their job can be more enjoyable. Second they give people the ability to learn more because we have all these sites that involve information an everything so people can be more knowledge so if they're more knowledged they can probably get a really good job that pays alot. And they can look up whatever they like. So if they reasearch alot and go to school they can get the job they always wanted because they know so much knowledged people are better people. Lastly they can talk to online people when people can contact each other its better because if they have no phone to reach someone they need to reach they got a computer that they can either email or use a webcam were they can see the person. I think that having a computer is good for all these reasons having hand eye cordination give people the ability to learn more and allow people to talk online with other people." 4 4 8 +1060 1 "Dear local newspaper, @CAPS1 a place where they are all on computers all day long, everyday. I dont think computers are a benefit to society because you get less time exercising, less time enjoying nature, and you spend less time with family and friends. Computers are not a benefit to society. To begin, computers are not a benefit to society because it gives you less and less time exercise. And wouldnt you want to go exercise and lose weight. Other than just sitting around on your new computer and having your brain being wrecked out by it. @PERSON1 said that @PERCENT1 of people that get a new computer spend @NUM1 minutes more than what time they usually spend on it. Next, is that you could be outside enjoying nature. New @CAPS2 @CAPS3 Newspaper said that they are worried that it too many people got a good computer that no body would be outside enjoying what left of nature. Because sooner or later there wont be any trees left in the world and humans would became extinct for eternity. Lastly, is that you wont be spending any time with your family or friends. Like when I got x-box live, I couldnt get off of it. I was addicted to it. And when my family got our new computer, my older sister couldnt get off of it. She would spend all day and all night on it. Now, if parents take the computer away from kids they will have more time to exercises more time to enjoy nature, and more time with family and friends. Computers are not good toward society." 4 4 8 +1061 1 "Dear @CAPS1 @CAPS2 @CAPS3, @CAPS4 you think that computers have a bad effect on people? I @CAPS4. People spend to much time on the @CAPS5. When they need to be working on their @CAPS5 they get distracted and start to go and @CAPS4 their own thing. Other people sit at their @CAPS5 and get mad or angry at @CAPS6. When people dont know what to @CAPS4 they just go on their @CAPS5. When working on the @CAPS5 you get distracted. I am sight, People get distracted because they see that little intenet button cont of the corner of their eye. then they just click the internet symble. Then their on the internet out doing their job. The internet is not the only distraction on a @CAPS5. The games are @CAPS10 distraction, @PERSON1, @PERSON1, and hearts are all game that came on the @CAPS5 People get mad or angry at their @CAPS5 because @CAPS6 does not enough @CAPS6 delets a they need, or @CAPS6 simply wont turn on because its dead. They blame all of this on the @CAPS5: @CAPS6 @CAPS6 does not load fast enough the person might say, ""@CAPS7 on why use you being so slow I need to get my paper for work!"" @CAPS6 the @CAPS5 delets the paper the person @MONTH1 go, ""@CAPS9 is the paper I saved @CAPS6! are you play a game on me?"" But if the poor @CAPS5 is dead and wont turn on then the person @MONTH1 go, ""why are you turning on you stupid computed"" @CAPS10, people all of their time on the @CAPS5. They are and con't find same thing to @CAPS4 they for the @CAPS5. Not the best idea I say, People in the @ORGANIZATION1 have actsets to a @CAPS5. At home, evern on their phone. the @CAPS5 in the @LOCATION1 is becoming a problem in my eyes spending to much time on the @CAPS5 can lead to be over weight because you are going on the @CAPS5 in stead of going out and hangin with your Friends. in @CAPS11 I belive that @CAPS5 have bad effect on people, They get distracted on them at work. They blame them for thing the forget to @CAPS4. They use them to much these for people can stop going to gyms and get over weight. So @CAPS4 @CAPS5 have a bad on people? yes they @CAPS4." 4 4 8 +1062 1 "Do you have computer at home that you go on? Everyone goes on the computer for many different reasons with friends or for projects and @CAPS5 like that. Computers can be good in many ways but they can not be. Computers are made it do all @CAPS5 to help us learn. I personally think that computers are good. We can learn @CAPS5 that are going on from far away. An example is if we have a big project in @CAPS1 @CAPS2 about @LOCATION2, and we dont know the computer can look all different focus and see pictures. Computers can the history of place not us. I can sister talking how they had that has to be taken using a computer. The answer in the question world war @CAPS3. She got a @PERCENT1 we @MONTH1 also be able to see whats going on with the @LOCATION1 and different place. All you have to do for that is go on the compute and look it up. ""okay class today we will be going down in the computer to do some research."" said my teacher. ""what are we going ""@CAPS4."" @CAPS5 that are going on the @LOCATION1. All of these @CAPS5 can us research projects many other @CAPS5. We can also use computers. Computers also have different @CAPS5. An example at the program can help us that they let us look information, play game, help with our homework. I have just realized that you can pretty much do anything you want on a computer. @CAPS2 shows that @PERCENT2 of people in the @LOCATION1 go on the computer for help with their. I can remember my friend telling me that she always types her essays because its for her teacher and from typing. So the program is helpful to us. people always go on the computer and love @CAPS5 that are an save, at their. I usually do that so I know when a good is to an in the to buy what I want. Well you should really consider thinking about this those cant even reasons the people in the @LOCATION1." 5 5 10 +1063 1 "Computers can be very useful to people. They can help contact friends and family from all over the world. You might need it for typing a paper for school or work, and you can use the internet. If you had a friend or family member move away, computers are an easy way to contact them. Phones dont always give you that option to call from around the world. Say your bestfriend moved out of the country you could email them or instant message them through computers. What if you want to chat with someone right next door even if theres a blizzard and the snow is four feet, computers are a simple way to contact them. When my friend went to @LOCATION1 for the @DATE1 I used instant messaging to talk to her. Imagine your at work or school and you were asked to write a five page essay. Do you really want to write it all? Imagine you, writing out hundreds of those newspaper everyday. Typing is an easy solution that doesnt require as much work and it takes less time. Typing also makes work a lot neater and easier to read. Not even a library has all the information you need. What if you need to write an article for your newspaper about a newly discovered animal? A library wont immediately buy new books about it. The internet is an ideal way to get information the moment it happens. What if a celebrity got hit by a bus or a rocket in space just landed sucesfully? You cant expect to go to the other side of the country to watch and take notes. The internet gives information on anything possible. The internet also allowes students to take online schools or classes. When my oldest brother couldnt take @CAPS1 in high school when it was needed for college, he took an online @CAPS1 class at home. The internet also helps you find vacation spots when your going away from home what if you need a plane, train, boat ticket? What if you need to rent a car but you cant go over to the store or airport. You can go online to purchase tickets. Have you ever heard someone say ""@CAPS3 it upon google"" when they dont know the answer to something? I remember my friend telling me about her new dog, I never even heard of. When I got home I went on the internet and researched it. The internet is a very useful tool to everyone. Going on a computer allows you to talk to anyone, anywhere, type anything needed, or to use the internet. The computer makes life a little easier and its fun too, and would be a handy tool for writing a newspaper." 5 5 10 +1064 1 "Did you know that the positive effects computers have on people the negative? I believe that the usige of computers increases one's knowledge of faraway places safety can be used for communication and can make everyday task easier computers have become the tools of society. Firstly, using computer allow a floridian to learn about connecticutions; or a canadian to learn about the world around them. safely. In a by the @ORGANIZATION1, it has been shown that without the computer, @PERCENT1 of all people would have been ignorant of the one-child dilemna in @LOCATION3. In addition, since the crime rate in @LOCATION1 @LOCATION1 is @PERCENT2 having comilted, an american might not went to visit @LOCATION1 @LOCATION1, @CAPS1, they mush learn about it for a business project. What do they do? They venture onto the computer and and everything they need to know about @LOCATION1, from the security of their home. While people can learn about faraway places from the safety of their houses, can also the computer for communication purposes. The computer is a great tool for communicating with other people. In a done in @DATE1, @PERCENT3 of computer users had some sort of social networking or instant mesaging program. Some examples of these are @CAPS2, and @CAPS3, respectively. being able to contact people has never been easier. Did you know that out of every @NUM1 americans spend an average of a hours online everday? So truly that the average I.Q has increased in the last @NUM2 years? When online, students can receive help from fellow students, teachers, and even experts! users of the computer can get feedback from essays, support to something new, and even boost self confidence. Communication is a great utilixation of computers, as is the simplicity to perform everyday tasks online. In today's society, the computer can make everyday tasks so much easier! when I was a child, my mom spend hours in the local grocery, shopping for food. That all changed when my mother discovered @LOCATION2. It is a safe and easy way to buy food online to then have it delivered not only, but @PERCENT4 of americans with computers have paid their taxes online. A once job has become simple, with the mere click of a button it is nerve-wrecking that the majority of our day need not be filled with flooring errands, but what we want! Whether that be to exercise or simply enjoy nature. In a nutshen, computers are great assets to society. They have a muriad of purposes and functions. They can inrease a person's knowledge of faraway places safely, be used for communication purposes. and make everyday tasks simple. Its hard to even ruminat how we managed before this device come along." 4 5 9 +1065 1 "Dear @CAPS1, @CAPS2 my name is @CAPS3 and I do not no where to start this letter. Im writing you this letter to let you know that I think that not everyone should use a computer. My first reason not everyone should use a computer is because they get so distracted in the computer they forget about school. My second reason not everyone should use a computer is because they @CAPS4 dont spent time with there parent. My third reason they shouldn't have people use the computer often is because they would get sick. My firs reason computer shouldnt be used often is because they forget about school. They forget about it in the way that there so distracted writing or chating or playing @CAPS4 that they forget about school. @CAPS5 reason is because their grades get low. They dont do homework either. My second reason is because they dont parents. Are more could be there so the computer they dont. My third reason is because their get computer there get @CAPS4 they dont and not @CAPS5 could that they dont get no education for being in the computer. That is why is bad to use a computer a lot I hope u understand." 3 4 7 +1066 1 "@ORGANIZATION1, @CAPS1 there is alot of talking and arguing about computers. Some say they are helpful to society and others say not. As for myself I am one of those on the side of which is for computers. I think the do alot less harm than good. First of all the hand-eye cordination of the user is mostly improved over a period of time, which helps withe learning musical instruments. Also it gives a great learning ability to people, particularly student. If there were computers, for a student to do a report he/she would have to read through an encyclopedia, which takes a great amount more time than plainly looking it up on the internet. Finaly computers are great for communicating with far-away friends or family. The first subject on my agenda is the hand-eye cordination skills. These skills are the ability to work with your hand and eyes simultaniously. There is a number of impacts these skills can make. The most apparent is musical instruments. If you are trying to learn a new song to be played on guitar you must move your fingers to the notes coresponding with the screen. Another place where hand-eye cordination comes in handy is sports. One sport where hand eye cordination makes a huge impact is in football. If the ball is thrown then the wide recever must watch the ball with his eyes and make sure he puts his hands in the best position to catch the ball. I am also going to argue the vost world of learning that is provided by computers. Lets just say someone asks you who was the @NUM1 president of the @ORGANIZATION2 where would you go to find that answer? I don't know about you but I am definatley going to look it up on google (internet search engine). Also schools @CAPS1 can ask alot more of their students because they have all this information at there desposal. Lastly I would like to cover the communications abilitys that the computer puts out there. First of all let say you have a very close friend move "out-of-state" how are you going to keep in touch. You could try using phones but yet the long-distance fees have sky-rocketed over the past @NUM2 years. Did you know that if you talk long distance for @NUM3 mins a day that would be over @NUM4 a month. in todays ecconmy you need to save money not talk it all away. The internet charges no additional fees for chatting no matter how far away you are from each-other. So hopefully my letter will be able to surposs "@CAPS2'bama's failed health care bill" to at least make it somewhere in the paper. People need to know the facts about computers before they try to argue about them." 5 4 9 +1067 1 "Dear @CAPS1, @CAPS2 people have computers, and @CAPS2 people use them. It's been brought to my attension that the government is worried about people using them to much. Well I think you can't use a computer too much. They offer so @CAPS2 things such as information, communication, and life skills. That doesn't too bad. Informaiton is something we as humans live for. Also in @CAPS2 schools and jobs you need to know a variaty of unusual facts. Where can you learn these? Computers of course! When @PERSON1 (my teacher) gives us a research paper on walt disney, we use computers to find our information. With out the computer, I wouldn't know walt disney died before disney world opened. That clearly shows one of the @CAPS2 things we need computers for. Communication is another aspect of our lives. With a computer you can have @MONEY1 ways to comunicate. Yes some of these way can be dangerous but, @CAPS2 are safe. When I was in @NUM1 grade my teacher ms.casserelle set up a classwide email for us. This allowed us to email another school. This farm of online communication was perfectly safe. As long as the person using these forms of communication is sem-responsible nothing can go wrong. Where can you go wrong with that? Did you know that @PERCENT1 of your life skills can and are learned on computers? As a matter-a-fact your job involves a computer! One life skill you can learn is how to type. As I stated earlier research papers need computers, well it's not just for the information. You have to type them too. Most jobs in our world need the computer for something or other. Can you think of a job that doesn't require one at all? Ididnt think so. Information, communication, and life skills are all important to our human nature. Ithink computers are important to humans. Wether you admit it or not everything we do involves a computer to some degree. Can you spend @CAPS2 countless hours on a computer? Yes, but you need to. you need to." 5 4 9 +1068 1 "Computers are a huge impact on society, but do they make everything better? People spend way to much time on the computer. Computers do not help you brain they can make you fat and for a lot of people they cause drama. People should stop spending so much time on computers. Computers do not help you brain in any means possible. Think about it, sure you do alot of you work on computers but, what about your kids they spend most of their time gand online and doing pointless stuff. Instead they could be going outside or even study. the internet is open to the world so anyone goes on it and if your child is on the computer is exposed many vile things that will not help them in the future. Its a proven fact that the less time you spend watching tv or on the computer you get better grades. I remember my mom always yelled at me for being on the computer and getting bad grades so she took the computer away for a while and now i have much better grades. So being on the computer does not make you smarter. The computer can make you gain quit a bit of weight. If your on the computer a lot you are sitting around and a lot people eat while they are on the computer. So now you are sitting around the computer eating. That can make you gain weight. I know from experience that being active and going outside or exercising really makes you feel good. Once you gain all that weight it is very hard to get rid of it. Sitting around like a couch is not healthy. You can become obese. So you could say your happy with your weight but no one ever said it was healthy. A lot of people have died frombeing that beaky. It puts a huge tall on you life. If you dont want to die from being to heavy then I advise you to get off the computer and go outside and live yor life. The last thing that makes computers so bad is the drama they cause. Mose pople have facebook, aim, or @CAPS1 but if you ask anyone with one of those they will most likley say they have gotten in a fight through one of those. Also now they have something new called formspring which can let you be anomous and people go on yours and just say horrible things. One of my friends was a victim in that and it ruins you. Also their are so many people on facebook that lie about who they are and anyone can easily find out who you are and kill you now a days people know how to hack into peoples computers and get info. So computers can not only be unhealthy but they can be deadly. Why would you want any of those things to happen, when its so easy to just back on your computer time. Remember computers dont help your brain, they can make you fat, and they cause a lot of drama. So please dont use the computer." 5 4 9 +1069 1 "@ORGANIZATION1, @CAPS1 of people use computers @CAPS2 for many different types of things. Computers are very beneficial to society. Even though people @MONTH1 use their computers too much, the tasks they complete help our world run smoothly. Also, computers allow us to keep in touch with friends and family that we don't see anymore, and they teach us valuable information very quickly. Without computers, society would not run as smoothly as it does now. One way that computers benefits our society, is that they complete tasks such as writing a paper, researching information,..etc, much quicker. For example, if you, the @ORGANIZATION1, needed to quickly print an article in the paper on the devastating earthquake in @LOCATION1, computers would greatly benefit you because they would allow you to type the article much quicker than having to handwrite it. Computers are very beneficial to society because they allow us to complete things very quickly and efficiently. Another reason why computers are very beneficial to society is because they allow us to maintain relationships with people from long distance and allow us to always keep in touch with old friends and family. Moving to from about @DATE1, computers have greatly helped and I stay halfway country. In a recent survey by @PERCENT1 of college graduate a computer stay in town friends from stay in but allow you to actually see the are our society is beneficial by computers because they world. reason society is because they alloe people very quickly. Search engines such as @ORGANIZATION3, @ORGANIZATION4, @CAPS3, and more allows us to research anything we want to know at just the click of the button. This ability to know anything very quickly has agreat effect on people, without of this knowledge people becomemore intellectual and intelligent and with that intelligence, they make great things happen. According to @PERSON1, a computer scientist at @ORGANIZATION2, "The knowledge people get from computer search engines allows them to better do @CAPS2 things and achive more in thier lives". Computers benefit society and have great effect on people when they are balanced our with other important things such as exercise and socializing. They teach us new information quickly, perform tasks, quickly and effeciently and allow us to keep in touch with people across the world. If it weren't for computers things would take longer to get done and society would become worse. We need computers to do @CAPS2 things and do tasks needed to live life." 5 5 10 +1070 1 "I think spending a lot of time on the computer is not a good idea because @CAPS1 has bad things online. @CAPS1 makes people stupid, and @CAPS1 makes you lazy. Those are the @NUM1 reasons why you shouldn't stay on the computer all day. One of the reasons is that the computer has bad things online like kidnaps. I seen a lot of video and movies about kidnaps when an older men or women starts taking to some young kids and they go meet some place and the young teen or kid never comes back. Another reason is that the computer makes you stupid for example when I use to be on the computer all day I would get out to get something to eat and some times I would go in the bathroom to get food and then I notice that thats not the kochen @CAPS1 feels like I just woke up when I got off. My last reson is that computer makes you lazy. The computer makes you lazy because you just stay in the computer all the time sitting on the chair without sun light or exercise @CAPS1 will make you want to stay here more and its not good for you mind and body. These are my three reasons why you should not stay on the computer, the more you the more you will want to stay. So don't stay on the computer because there is bad things in there, @CAPS1 will make you lazy. Please don't stay on the computer for a long time." 4 3 7 +1071 1 "Dear local newspaper, I think that using a computer can benifit people and have a negative on people. Benifits could be, gaining knowledge, and meeting new people, bad effects could be, weight gain, and having a lack of social skills to talk with friends over phone etc. First, gaining knowledge is really essential. The I think that is because when your computer crashes or breaks you would most likely know what to do to fix it. I dont think you would want to have to pay money to get anti software that probubly doesn't work. Anothe reason why I think that gaining using computer is good because what if you want become a computer enginere, all that time you've spent on the computer could really benifit you later on in life. Secondly I think that computers could help you meet new people from foreign countries and other states. Not you have to meet them in person you could just have a friendly consversation online. The thrid and last reason why sometimes computers can be bad for you is weight gain. Most are probably so much time on the computer that there not getting enough physical activities. All they do is sit down eat on unhealthy snack and play games, and videos. That's really bad for your health. I conclusion using a computer moderately is a lot better then using a lot. It could help gain knowledge, meet new people or make you gain weight and have a lack of social skills." 4 4 8 +1072 1 "Dear editor, @CAPS1 you think that people spending a lot of time on the computer is good, I don't. People should get more exercize. Also they don't get enough fresh air. Finnaly they don't spend enough time with family and friends. Now we have to determin weather people should spend a lot of time on the computers. Those people who spend alot of time on the computer could be going outside everyday to get exersize. Some parents got their kids hooked on playing on the computer all day instead of going out side to get exersize. They could ride bikes, scooters, play basket ball, wiffle ball. They can also go swimming play, sports, and go to a play ground. Finnally they could go for a long walk on the beach. People need to get fresh air instead of being on the computer all day. They can go sit on the beach for awile, go outside to watch their kids play or watch their games like baseball or basket ball, or they can go outside just to be outsides. They can go sit on their porch to wait for their kids to get off the bus from school. Those people who love to play on the computor don't spend enough time with their family or friends. They could go visit their family more often, go out for lunch with their frinds. Also they can spend more time doing things with their kids. Even though there is a chat on the computer it is nice to talk to your friends in person. The time has come to decide weather people spending a lot of time on the computer is a bad thing or not. They don't ge enough exersize every day. They also don't get enough freshair. Finally they spend time with their friends and family. So now you need to write a letter to your local newspaper telling them which you are choosing." 4 4 8 +1073 1 "To my opinion computers have a negative effect on people I think it has a negative because it causes people to get less exercise you spend less time with your family and friends and it distracts you from things get done. First of all computers have a negative effect on people because it causes them to get exercise. For example, there are many football, soccer and baseball games practicingg these they will just computer on the webcam all night. Another way is that you can get work done. WIthout even leaving your house. You can shop online, stay home and work online, and even go to college those things include getting out around, but now you can just day and do those things and be lazy. Second, the computer causes you to interact with people less. Now, when family or friends. i went over my I sat right and she didn't even look at me playing computer games. i know that a lot more kids too because I was reading in a magazine that @PERCENT1 of interacting with their kids as much as they got a computer. Lastly, i think the computer has a negative effect because it them. It distracts kids conversations first of all when people to talk with someone on the computer it is very hard because, they are absorbent in they're doing. Secondly, the computer distracts kids from homework. I know this first hand, because wherever I have in type up assignments I get and end up going on different websites, and not getting my work done. lastly, it distracts kids from household chores. Some kids just put them to the side and forget to do them because they're budy playing game or surfing the web. i know that if I did I'd get in big trouble. Those are the reasons why I think the computer has a negative effect on people. Because, it causes them to get less exercise, they don't interact with people, as much, and it distract them. So unless you want all those things happening to you, I suggest you spend less those on the computer!" 4 4 8 +1074 1 "Dear @CAPS1, @CAPS2 have been complates about computer in are society. They say they are keeping children inside doing nothing, but really they are helping us so much! The internet is where you can resurch anything and tones of helpful ideas come up. @CAPS3, @CAPS5 helps us with hand-eye cordination. Lastly, computers alowe us to stay in touch with people who are far away. Like last year my friend went to poland and we were able to talk threw are computers! So lastly join me and help the world know that computers are good! First off I would like to say the computer is a good source of information. How would you like @CAPS5 if you still had to read scrolls from grene when you could look at on online? Not to manchin not any you need to know some thing really fast like now your stalk is befor a big meeting. Then all you have to do is simple type in what you want to know then bam! Just like that you know, and off to you meeting. Secondly, using the mouse and keys on a computer can incless your hand-eye cordination. Like my parents aways say when i'm typeing on esay, @NUM1 words per minute is a good minute. @CAPS3, out of @NUM2 kids get better hand-eye cordination after geting good on the computer. Alot of times kids have a ten of cordination, but I have a that if kids on the thing will change. Most importantly the computers and faraway like I menchind befor I stayed intouch with my polish buddy @CAPS3, a lot of people don't have cell phones so they have an @CAPS4, gmail, facebook, my space, or a twitter. All of this alows us to stay in touch and keep us up in are friends lives. This is very important because if we are social the we will get out with are friends and do stuff, wich is very important for are. In conclusion, @CAPS5 is good for are society to have computers in are lives. @CAPS5 will help us in the future, we will get good grades on project because of are sources. We will be heathy with hand eye cordination, from the mouse and keybord. Lastly we will have many friends. thes are all very important in. So keep computers!" 4 4 8 +1075 1 "Dear readers, I right to you today about the effects of computer usage. I feel that there are some positive and some negative effects from using the computer. You can talk to people, and you can get work done, but if you are at this to much you'll be starting to gain bad health and miss other things in life. Throughout the computer, there is many ways to communicate with others, which is an amazing thing. Whether it be through a game, typing or real chatting, it's very important to talk to people and this makes things much easier than going out nad talking to people face to face. For, example penpals, over the years people have written letters to their penpals, but know you can send it over mail and email doesn't cost any money, just type up your letter click a button and done. Another positive point about computers is that you're able to get work done on it. From work for a business to school work, it doesn't matter. You bear of people using computers to do work all of the time. Why do you think there are computer labs at school or desks with computers in offices. Computers have become advanced and the easiest thing to get things done with. Presentations, essays, graphs, anything. A concern I have of the computer is that people are becoming to addicted to computers. Many younger people are overusing computers wich leads to bad health. When people sit in front of a computer screen all day only getting up to grab something to eat, people will because obese. To stall healthy people need to be outside and exercise. We need to make rules to keep people out in the open out to give the generation a healthy life. So, I have mixed feelings about computers. They can be amazing for a while but only for a while. And if you can't see this open your eyes" 4 4 8 +1076 1 "To the editor of the @ORGANIZATION2, I am writing to state my opinion as to whether computers benefit or harm society. I believe that computers are a great tool for several reason. First, computers are a learning resource, and a way people stay updated with the world around them. Also, computers keep us connected with friends and family more easily. Clearly, computers are more helpful to people than they are harmful. Life as we know it today would be greatly altered without the advances in computer technology that have been made over the past few decades. Today if I need to know something, whether it be for @ORGANIZATION1 or my own reason I can almost instantly look it up and get answers from many different sources. This helps people to be more educated and updated with the world around them. Dr. @PERSON2 from @ORGANIZATION1 recently preformed a study on high @ORGANIZATION1 teenagers and concluded that, ""@CAPS1 with access to computers scored signficantly better on standard testing due to background information they have accquired while on line"". Along with the internet, there are programs such as @ORGANIZATION4, and @ORGANIZATION3, which help people to learn a new language, or write on the computer. Also, computers keep us updated with events that are happening in the world. For example, when the earthquake devestated @LOCATION1, I first saw it on the news, but got very few details. I the looked it up on line and imediatly get the death toll, the aid that was being given, and ways I could help donate. Without computers, I would have known none of this. Another reason as to why computers are so helpful to society is that they are tools that help us to keep in touch with others. With things like facebook and @CAPS2, I can chat with people, invite friends over, and even plan parties. Without computers, I would need to call each person individualy, but with computers I can write one message and send it to everyone all at once. This gives me more time to do things like play outside and exercize. Also, things like @CAPS3 and face book help people to stay in touch with old and distant friends. Studies done by @ORGANIZATION5 show that @PERCENT1 of people with some type of social networking account have a more active social life than those who do not according to doctor @PERSON1 this means that these people will have an easier time adapting to different social situations than these who do not. Clearly, this is a great benefit. In conclusion, the computer helps society a great deal more than it hinders it. It easily allows people to stay educated, updated, and connected. It helps people stay aware of the world around them and educated about everything. It makes things that would other wise take lots of time very quick, giving people the chance to do other things such as playing outside. It keeps people socialy capable and active, and allows people to connect with others. Without a doubt, computers are a very good thing." 5 5 10 +1077 1 "Dear @ORGANIZATION1 have effects on people and there lifes. Cause alot of people as in children spend there time after school plan games, myspace, facebook and there e-mail address. Instead of going on computers. I think that children and adults should go-out and have good time theres not a problem with going on the computer once and awhile but if you spend all days on a computer then thats pretty bad. Adults shouldnt let there children spend all day on a computer and adults shouldn't eather because it went help you life. Computers could mess your life up by choices you make and pictures you put up and things you write up there such as if you have a myspace or facebook and you put bad pictures up in you furture when you want a good job they could just look back at that and say look at this I don't want this person working for me. and there you go messing up your furture. instead of going on the computer all the time you could go outside do sports to keep your body health and go out in the world and learn new things or even plan trips to go on with your family walk around and stuff like the instead of going on the computer's and putting your self at risk of looseing job or messing up your future. You shouldn't let computer's mess your life up because if you do then your life want be the same children could mess there life up because things they wrote or pictures they put up witch other kids could see and be mean to them and talk about them fot the rest of there school year or things could lead to a fight over one little word you said or picture you put up because you thought it was cute. Sex offenders are on computers and some people don't even no it intill they get tookin away or killed. Parents don't always no when there is sex offender around or online talking to you or your children trying to go meet up with them. They also could put fake pictures up to try to get you to speak to them or to get you to meet them some where so they could take you. so you shouldn't let the computers get to you." 4 4 8 +1078 1 "Dear @CAPS1: you recently posed a question in you Newspaper. The @CAPS2 yourk @CAPS3, asking if the readers were for or against technology. I support computers because they give one opportunity to learn about different people all over the world and their culture, they save massive ammounts of time in today's hustle-bustle society, and you can talk to people online via certain computer programs. With a computer one can learn scores of information about foreign countries and their culture. I read an article in the @CAPS4 @CAPS3 about a man who was participating in a church program in which a foreign citizan would come to @LOCATION2 for a while to make friends and learn about the @LOCATION1. This man, @PERSON1, was assigned a from the farms of @CAPS6 who had never been out of the fields. @PERSON1 thought @CAPS13 would be nice to welcome her in his house with a familiar setting. Unfortunatley, he knew nothing about @CAPS6. he did have a computer though which he quickly retreated to so he could learn everything about her home. When the woman stepped into his door, @CAPS8 was eastastic to feel like @CAPS8 was home again. @CAPS8 ended up staying with @PERSON1 and getting married. If he had not charmed her with his knowledge from the computer. @CAPS8 might not have stayed and had a wonderful life with him. Also, @PERSON2 from @ORGANIZATION2 says that language students such as spanish and french have @PERCENT1 higher success rate if they have a computer to learn more about the countries. He says the average grade for kids with a computer is an A. but the average grade for kids @CAPS15 a computer is a @CAPS9+. Therefore, having a computer to learn about faraway places and people can ensure happiness and succes in the future. Computer also save a massive ammount of time. In the school Newspaper, @PERSON6 told about her homework problem. ""@CAPS10 night i had @CAPS11 homework. I had vocals @CAPS8 is a galore to deal with. I had to look up @CAPS10 word in the huge dictionary, I was failing @CAPS11 because i just didn't have the time for my homework! Then my family bought me a computer, @CAPS13 was so nice using the online dictionary. I could finish my homework in @NUM1 minutes compared to @NUM2 hours! I was finally doing well in @CAPS11."" @CAPS15 her computer, @PERSON6 would have to have and @CAPS11 @NUM2. @CAPS8 would have just kept failing @CAPS15 her time-saving computer. ALso, @PERSON3 says that @PERCENT2 of people get to work faster when they look up traffic reports on the computer instead of listening in the radio. He says that @PERCENT3 of people get a because their boss is so impressed with their consistent timing. As you can see, time is a valuable thing which computers can help save. Finally, computer allow one to talk online. A student once had the misfortune to break one of his vertabrae. The doctor told him that he would not be able to participate in school for a. The student, @PERSON5, came up with a plan to speak to his teachers via his laptop and webcam. Everyday, the teachers would give @PERSON5 an update over his computer. When he finally marched back into school, @PERSON5 barely had any work to make up because his teacher bad interacted with him over the computer. @CAPS15 his computer, @PERSON5 would have a month's worth of work and learning to make up which would have been overwhelming. Also, @PERSON4 of @ORGANIZATION1 says that students that communicate with their families during college have better relationshops after college. Obviously, being able to talk to some are over the computer is a useful thing to have. In conclusion, having a family computer is a very good thing. Not only does @CAPS13 allow people to learn about places other than their home, @CAPS13 also gives us more time and allow us to talk to other withour ever leaving the comfort on home. I recommend that everyone who wants an easier life should invest in a computer." 6 6 12 +1079 1 "Dear newspapers, I think that computers have a possitive effect on people because you could chat online. There are electronics out for children that they can plug up to there computer and learn different stuff. And you can pay your bills on the computer. People that have no phone od don't want to leave the house at that moment and have a computer can go on chat rooms or a local website can chat to friends and family. Also many people that have websites like facebook, myspace etc... can find new people and have so many things in common. And some people do find that @CAPS1 person that they been looking for. I think that they jusy come out with a new electronic for little kids like leaf frog that they can plug up to a computer/laptop and they can learn there alaphabet, counting numbers, and even spelling, This is a good product for little kids so they cam use the extra work over, the @DATE1 or after school so they can stay smart and learn in school and out of school. One day I had my mother what she was doing and the light bill so i was like how can you and she said and a website bt I forgot what's it called and you could pay your bills right there. So instead of up going in your are go to a local show when thay pay bills and can like or if you get a computer you can do that in you home with no . So people who publish the newspaper I think and I hope you think to this is a good response that tells you good things about a computer. And I hope it sticks around for a long time." 4 4 8 +1080 1 "People are asking me, ""@CAPS1 you think we should spend more or less time on computers""? I say we should spend less time on the computer because children spend to much time on online games. Second kids and adults spend to much time on myspace, facebook, msm, and even aim. My third reason is children should be outside playing and exercising. These are my three reasons why we should spend less time on computers. My first reason we should all spend less time on computer is children play so many online games, such as @CAPS2 of warcraft, @CAPS3, soilder front, ect. A problem with kids playing these games become addicted to them, and will play for hours. Children should be outside getting bigger muscle, getting strong bones. Kids keep playing these games and are ruining their lifes. This is my first reason why we should spend less time on the computer. My second reason why we should spend less time on computers is children and adults spend to much time on the following: myspace, facebook, twitter, aim, msm, ect. These online pages causes people to go on one to connect to their friends. Also with these online pages they cause to much and could lead to fight or rumors. About @PERCENT1 of kids and adults go on these online pages every day its time they stayed going on their computer more time on outside or hangout with their friends. My last but not the least reason is kids should be outside playing instead of being on the computer. Children should go outside with their friend and play sport or games, something that doesn't involve with the computer. This is my third reason why children should not we spending more time on computers. As I said before people should spend less time on computer. Kids spend to much time on online games. Adults and kids spend to much time on online pages. And last children should be playing outside. Its time we put a timer on our computer and spend more time outside." 4 4 8 +1081 1 "Dear @LOCATION1 @CAPS1, I think computers have bad effects on the people in this world. Yea they have their plus' and negatives hut computers are some what dangerous. Some people who use computers use them for the wrong reasons. Some people search porn sites, and hack into servers. I believe computers are supposed to be used for positive things not negative things. Another reason why I'm against computers is the people online are dangerous. A lot of people think they're talking to one person but it's really not that person. It could be anyone. Nowadays, people just give out information to random people. This is how kidnappings and murder happens in our world. @CAPS3-@CAPS2 is also a major problem with computers. (@CAPS3-@CAPS2) - means @CAPS2 someone over the computer. The effect of that is someone getting hurt on a crime not being solved. People also spend way too much time using computers. Instead of getting outside and enjoying nature, they waste time on computers. This is also the cause of a lot of obesity. People become obese due to not gettiing out and excercising. This world uses computers for the wrong reasons. This needs to change." 4 3 7 +1082 1 "Dear @CAPS1, You use a computer a lot right? Good if you @CAPS7 because @CAPS7 you beleive that experts are questioning why @CAPS5 use them a lot? Well I think people need them because its how @CAPS5 know whats going on in the world, its how @CAPS5 know how the weather is like so accidents can be avoided, and you you can flip on your @CAPS2.V., but than you have to wait for what you want to go on. So you decide @ORGANIZATION1, should @CAPS5 be outside more? Don@CAPS2 you need to know whats going on too? Of course you @CAPS7, everyone does. I think that it is important that @CAPS5 know @CAPS4 a meteor is about to strike the world no? President @PERSON2 even says the computer is where @PERCENT2 of the world gets info. On whats going on. Are you just going to sit there and not listen to the president of the @LOCATION1? Don@CAPS2 think so. Im @PERCENT1 sure that @ORGANIZATION1 doesn@CAPS2 want to be known as the accident State. Well thats why @CAPS5 need the computer! For people to know if I will snow, sleet, or if there is bad traffic than @CAPS5 need to go to the internet to find out @CAPS4 and where and what time. CEO of @CAPS3, @PERSON1, says @CAPS4 someone says @CAPS5 might be getting some snow or rain than they usually go right to the internet You you can turn on your @CAPS2.V. to find out whats going on, but not all of it you will want/need to know. So you will have to wait. The internet just does it right on the spot. No waiting involved! (unless you have a bad internet connection) @CAPS7 you think these reasons are making a good argument? I @CAPS7. @CAPS7 you use your computer for finding out whats going on, what the weather is like, and instead of the @LOCATION2? If so I think you would aggree with me." 4 5 9 +1083 1 I think that using computer is fine. Reason why I think you have family from far away. Instead of talking hearing voice on the phone. They can talk to each other but most of all see each other. Show cool thing you have that are new. When you have a love one you can see them when there a way for a trip. Computer are helpful when your car is broken down or when you have no car. You can buy stuff at store by the comfort of your home. Almost everything you can get stuff out of store because they have online store to mail to you. Also now you can buy food on internet and lots more. Saving money computer tell you where to get good prices to save money. Lots of dating sites to meet diffent people to go out and give your commets. Texting on facebook can let you save money by texting for free. Playing free online games with your friends. You can make website and you can watch movie and show online. There just a lot of thing you can do on a computer. I know lots of people don't go outside exercise but I agree with some expert. Lot of people need to lose weight or need to go outside more to the real world. This techology people are big they don't go out more. They eat lots of food. But computer are very helpful in lots of way and its so fun. Those are my reason why I think that computer are great and sould be used more. 3 4 7 +1084 1 "Computers is a good benefit for people. First, computer is a helpful machine in diffrent ways, like I personally go on computer and check for my homework with it. Computer is also good because whenever you dont know something, you can just go on the internet and search it. Computers won't effect out health if we dont use it for a long time, computers could help students making project. By using word, exell and other microsoft ware. So I think computers are a great machine for people to have. Secondly, using computer could also socialize with people, many students inculding me uses face book, so even if we are not right next to each other, we can still talk. Computers could be used to make new friends too, but their is people you dont know and we are not surpose to give out our information. said @PERSON1 our health teacher. Computers could be useful to friends that live far away, if your friend moved to another state, you could use computer to chat with him, their is many ways to social with computers. Lastly, exercising is important to everyone, but using computers doesnt mean we can not go outside and exersice anymore, maybe computers are addictive, but if you keep track of time and maybe use the computer for - half an hour at a time, you can still get the exercise you need. Exercising is an easy thing to do, children likes to exercise so their sould not be a problem, like my nabor alway come over to my house and ask if I want to play football while I was talking with someone on the computers but I still went outside and play, so computer is a great machine thats not very addictive so parents doesnt have to worry about children exercising. I think computers have great effects on people, like going online to do a research or talk to friends. Grown ups need them to work. So that proves computer is a great machine." 4 5 9 +1085 1 "Computers have helped people tramendisly over the past years. Thanks to computer scientest have found cours for deseses, jobs have become easier and communication with friends or family have become afordable. I believe that computers have a positive effect on people because they educate people on places in the world, help people with their jobs, and give people a chance to talk to phone without having to pay for anything. Is someone a trip to a country that they might go on the computer to learn more about that country and their culture. Another thing they might do is go to a website that could have them find afordable flights or a hotel to stay at. If a child is doing a report about a country in @LOCATION1 they can go on the computer to find out facts on that country. Computers educate people about places all over the world. You can go on a website that has videos and short clips about what has been going on and learn about current events. any costs. If you want to see a friend for her birthday but don't have the money to fly halfway around the world to see her you can vidieo chat with her. Computers help people save money by talking on the computers with friends, family and even co-workers. Computers have been very helpful ever since they were invented. They help people learn about places all over the world and about anything you want to learn about. They also make jobs and work easier, and also help people save a lot of money by talking to people on the computers insted of on the phone. Computers have improved demastrecly over the years, the screens use to be so small and you would have to press all these buttons just to boot it up and now computers can be as big as a flat screen @CAPS1 and you can turn them on with just a push of a button. Who knows what computers will be like @NUM1 years from now?" 5 5 10 +1086 1 "Dear @CAPS1 post, I have been thinking about the way computers affect our lives. Oh this very topic, I am agreeing with the experts who say people are sending too much time on their computers and less time doing other things. I do believe everyone, including myself, spends a lot of time online. Even if it was research, don't you think it would be better to stick our head in a book to get the information? The same thing apires to computer games, such as virtual kickball outside? The main reasons I am trying to get are computers hold us back, they are not physically able to help us, and going away from the computer, or even going outside would be better. I had mentioned how computers hold us back, the more time we spend; the more daylight we burn to do other things. I say this because instead of going outside. We want to stare at a screen and play games or chat with friends. Online chat especially has an effect on most people because were trading in a fun day for one where we just talk online and back internet. I also believe if we had a time limit on computers it is more a push to be social and go out and do things. Unforthetly, computers from that, and all we end up waiting to do is nothing. Another reason is that computers can't physically help us and make us active. I can to this one because I am a cheerleader, and I am constantly on youtube learning how to stretch and do new things. Even though I learn and spend time to watch how it's done I get hurt and can't do it. Which is why I try getting cut more to a gymnastics teacher who can physically help and interact with how I'm doing. Lastly, I believe that the less time we spend would help us and be so much better. I know, after an hour or more online. I feel lazy and I don't want to do anything. However, if I go outside I feel full of energy and I'm active. Being off the computer feels better and is better. To sum it all up, computers are great to have, but to much of them isn't. It really does hold us back, and is worse for our health. Oh, and one last thing, too much time makes you less active. However, thank you for reading." 4 4 8 +1087 1 "You say that computers are bad on todays society? @CAPS1 I'm here to prove you wrong and tell you that they can actually benefit todays society. Maybe some kids don't have phones, so they can go log onto facebook and do everything a phone has to offer and more. School. School. School; so many homework assignments and projects are assigned, and using computer programs help alot and give that proffesional touch. And how coud you forget 'google' the most famous online system, that everyone loves you can do just about anything with that page. So computers bad for society, think again and listen closely. blc computers have just benifited us more than ever. www.facebook.com, that is one of the most visited pages on the internet for all different ages, it deffinetly benefits you. Logging on and seeing your friends profile's newest updates on pictures, videos and life, you get every little detail using facebook. And I you don't have a phone, no. wornes, facebook has a chat system, so you and friends and relatives can talk, or maybe theirs a family party comingup you can get inboxed on all the information, and visit the relatives homepage and see how theyve been doing. @CAPS3 you haven't logged into facebook yet, you deffinetly will now! ""This project will be done on the computer,"" how many times do you hear a teacher says that, almost everytime youre given an assignement! @CAPS1 windows and @ORGANIZATION1 programs will really benefit you in your need for school help. Lets say you've been assigned a project to create a product commerical in computer class, you can hop right onto windows movie maker and get all the help you need, and you'll have the ability to create you project right on the program so it looks and sounds professional. One program you can always use throughout life for presentation is 'power ', In my history class we were assigned a famous person from the @DATE1's and were to do a presentation; @CAPS1 when I got my assignment I went right to powerpoint and got a great grade! lastly the known, @ORGANIZATION1 word! used for all kinds of projects or homeworks and espically writing papers or short stories, having spell check, youre garenteed a good grade! Google! Everyone knows it and everyone loves it. This web hit canbe used for just about anything. From searching pictures and information for a school projects, watching videos of songs, friends, or tv shows that you love or wonna check up on. to looking at websites. Some say the @CAPS2 holds people from exersising, but google can shows you videos of special work outs or websites on healthy eating or an on exercise group or fitness club, so now you see the internet benefits us tremendously! ""Have you change your mind? have you listened closely?"" @CAPS3 so your life just become a whole lot easier, by using facebook, for social ability, @ORGANIZATION1 and windows programs for school, and google for life and health, you have just benefitted from my writing and from using modern technology, the computer!" 6 5 11 +1088 1 "Dear @ORGANIZATION1, Have you ever wanted to see the whole world with just a click of a button. That is as simple as just going out and purchasing a computer. Computers are becoming more and more popular. Some people think that people use computers too much. I am here to say that, that is a terrible accusation. First, computers help you with school work. Let's say you have an essay and it needs to be @NUM1 words or more you can just use word cant, then you have the exact amount of words. Also you might need to look up some information about a certain topic. You can just simply type in the word and search and then you have millions of choices to choose from. If you had a homework assignment that you didn't understand you could look up how to do it on the internet. But this i just the begining. Another reason computers are so great is that you can meet and interact with people all over the world and learn their culture. You can enter a free chatroom and meet someone from @LOCATION1. You would also be learning about their culture. This could also be a way to learn another language. If the person spoke fluently in @CAPS1 and @CAPS2 than he or she could teach you. You might be able to see how an @CAPS2 household runs. You could then make comparisons between the way you both live your life. Finally, you can understand the world around you. There are many websites where you can get a live sattelite feed on places on every corner of the globe. You could also do reasearch on the planet itself. You can learn about the care of the earth and what goes on inside it. You might also learn about nature. You could understand more about plants and animals. You can also got a look into space. You can learn about planets, if there is life on planets or water or anything else these would be things you can reasearch. So to sum it all up, you can get school work done. You can interact with people all over the world. You can also learn about the world around you and that covers less than a fraction of everything you can do on the computers, but don't stay on all day. Make sure you go outside and have a great time too!" 4 4 8 +1089 1 "Dear @CAPS1, I have same questions for you and I was hoping you could answer them. I was wandering. Do you have any computers in your house, if so how many? Also, do you like using the computer? I am trying to figure out how many people don't use computers because. I want to ask them how do they survive without one!? Computers are essential to our present day lives. Everything in the world is in one computer. You can talk, email, even see people through a computer because now adays everyone has a videcam hooked onto their computer. I want to tell you all of the great things computers do not make our lives so much easier. People are always looking for a way to get in touch with someone like if your phone is dead, how are you going to tell your friend what time your going to meet at that place? You can easily just text her from the computer. You can either use your screen-name to text someone or just go on verizon, at&t, sprine... etc.com and text people from there. It would save you from standing your friend up and feeling guilty about it. Has there ever been a time where you needed number, but you couldn't find your telephone book? It sure has happened to me, but you know what I do? I go on the computer and go on yellow pages.com and just look up the restraunt/place on the website. It's as simple as that. You can look up almost anything on the computer, prices, places, facts, anything! Most of the time the true facts will always be there. Computers help you a lot if you need help on histicoral, scientific, and @CAPS2 facts. Computers help us everyday. People need them for communication, telephone numbers, or facts about anything. Most of someones life can be saved to the computer. If you have bad handwriting, then you could just type up your paper and hand it in all nice and neat. Like I said before computers are esstential to our present day lives @CAPS3 reading this, I bet you'll agree." 4 4 8 +1090 1 "Dear local newspaper, @CAPS1 opinion about computers is that they benifet people. they help people when they need it, it gives people entertainment. So that is why computers benifet people. @CAPS1 first reason is that a computer can help people when they need help like for instace if you have to write a paper and you need to look something up such as reseach you can use the computer or if there is a long main cwayshion then you can look up the formula. So as you can see that is why computer benifts people @CAPS1 second resson is that it gives people entertainment, such as myspace, you twitter. And those are social networks, if you like to watch tv. or listen to music there are websites for them also. So that is why I said computers give you entertainmen too. @CAPS1 third resson is that it helps people such as if you in different contries and you can't go see them you to them through instans or web cam. Or if you are home schooled and you dnt see other kids your age that can talk to the on the computer. So as you can see that why I say you can through the computer. So as you can see that is why I say computer are very benifical be cause they give you entertainment they let you communicate and they help people so." 3 3 6 +1091 1 "Dear editor of the @CAPS1 @CAPS2, People say that technology is affecting everybody left and right. Computers actively help us with our daily lives. It helps us do project for school, let us understand culture around the world, and gives us the ability to talk and connect with friends and family everywhere. Our shool makes us do tons of project and the computer is our main course. If you want to go somewhere far away, you're most likely to research it, and then plan on going. It is also might be used to talk with friends on facebook, twitter, and @CAPS3. Computers help us learn and communicate. To start off, as an eight grades, we are prepared to go to high school. Fortunately, it means we do projects, reports, and research on the computer. The computer enables us to find information for a project, or construct a diagram or data table for a survey. Many people use this method for jobs. People do reports on celebrities and famous people from history. Books can't always give the information you are looking for, so they look up that persons name, and they will find our hundred of web sites that give information and photographs of that person. In addition to, computers let you book flights, buy, tax rates. Sometimes, people don't always to go and drive to a local car, so they go online to a website that sells, and they are able to look at all of the features of the car, the price, and mileage. The only way you can get tickets is if you go onto the internet. They have websites that let book whatever kind of flights you want. It can be to go to florida, or it can be a flight to @LOCATION1. If you also how the economy is doing, you can look up tax rates and how find out how much our country is in debt. You can even find out how much an average family pays - every year. Computers can be very they resourceful at @CAPS2. It gives capability to do more than you can imagine. Most importantly, computers have created a way for you talk to friends and family around the globe. Facebook and twitter are the new things of the century. Facebook and twitter let you talk to friends, post photos and talk about your personal life. They have a new thing now where you can play lifestyle games. @CAPS3 is not as popular anymore and doesn't have as many cool things. It only let's you talk to friends and that's why no one uses it anymore. People want to be able to do more than just talk. It comes to my attention that computers have over time. Computers these days enable you to talk with friends, do research and projects, and let you book flights and buy cars. Our school's curriculum has many projects and reports. They can be done only by the help of a computer. You can research people and places and or get pictures. You can also book flights for far away trips and buy cars and other items off the internet. We even have the capability to talk with friends on facebook and twitter. Computers have a positive influence on people." 5 5 10 +1092 1 "Dear @CAPS1 @CAPS2 @CAPS3 @CAPS4, Are you always telling your kids to do their homework and get off the computer? Well, I might just be able to help. Computers do not benefit our society today. People are spending to much time on them; not enjoying the outdoors, and are taking away time to spend with friends and family. I believe having a limit each day on your computer might help solve these problems. The computers can be very distracting and you can use them too offten. Stairing at the computer screen can damage your eyes and kill brain cells. Thats one thing kids and adults dont notice. You need your brain cells for school. Joins and other activities, computers can also distract you from completing work, and then you have to stay up late to finish homework should come before the computer. Time flys by as your clicking and typing. The next thing you know as it's ten o'clock and your work is not completed. Since my schedule is so busy after school. I try to complete my work, then go to the computer before dance. This way I am my friends and relax. Taking time away from the computer is a smart idea. As it comes to @DATE1 time the weather is going to be beautiful and you don't want to waste a pretty day on the computer, @CAPS5 human body needs oxygen. Clearly, computers don't supply that. A great way to recieve oxygen is going outside for some exersize and energy. Playing outside can offer a lot more than a computer. You can swim, jump, or play sports. My doctor once told me, "" Everyone should have atleast an hour of exersize a day. ""You can't accomplish that by sitting at your computer. Next time there is sunshine out, no matter what season it is, go outside and take a break from electronics. Spending time with family and friends is a fun way to stay off the computer. Friends and Family are not people to take advantage of. They are people who are there for you when you are down and make you laugh. When your relatives come to town that you havn't seen in a while, You don't want to spend it on the computer. Talking and catching up with one another is a great way to re-connect. During family holidays, we don't bring our computers. We shut them off to spend time with each other. Friends and family are special gifts. So, don't throw away friendships or relationships with your family. Get away from the computer and bond. (did not finish)" 5 5 10 +1093 1 "Dear Newspaper, @CAPS1 has come to my attention that some people have been concerned about using computers too much. Well, I disagree with this statement. I think the computer teaches you hand-eye coordination. The computer also lets you up a leave more a foriegn people and paces. Lastly, computers helps you communicate with others. As recently stated, I think computers are useful because they help with your hand-eye coordination. For example, when you write papers for school or a document for work, you're using the coordination. You didn't even notice how once hang of typing, you tend to move faster. This machine is a beautiful invention please don't take @CAPS1 away!. The computer is also to everyday life and is very useful for learning new things about far away places and people. Another thing that you dont realizes when using a computer is that the you do from someone in your but from long distance places. How would you get that information without spending a ton on airfare or gas? The computer is the quickest way to find out information! Finally, the computer is an important resource because you can chat with your friends. A @CAPS2 researcher showed that computers You can chat @CAPS3, I think computers has affects on all! They teach hand-eye coordination, they teach you about far away places computer lets you chat online with your friends! I @CAPS4 you see the computer the way I do." 4 4 8 +1094 1 "Dear Newspaper, @CAPS1 you know, the majority of people now posses computers. Computers have greatly advanced society and technology. Some people say that computers have negative effects, but that is not true. Computers have influenced people in many benificial ways. Although some experts want people to use computers less, that technology is required in schools. Kids are fold to type their papers, which lets them finish faster. This faster finish can lead to kids not staying up too late. Then doing homework. That is better for their health. Computers also develop hand-eye coordination which is an essential skill for later in life. In my opinion computers have greatly contributed to technology. They are letting explore place human has ever/could ever go. We can make and distribute item much faster. In addition, computers also let people learn about faraway places about different cultures and different people. Computers can expand everyone's horizons and let them know about places and things that they never knew existed. With are of the largest number of members. Facebook is a website that people use to communicate. More than @PERCENT1 of most students in an average school have one. They communicate there more than they could without computers. Computers aren't making people ""anti social"" or making them interact with friends less, they're actually talking more. Computers are letting people communicate daily with people from all around, without having to wory about running out of cellphone minutes. Overall, computers are letting people broaden their horizons are lock of new things. They are more of a benefit than a burden. Computers are the next best thing since sliced bread." 4 4 8 +1095 1 "Dear Newspaper, I thought that I should express my concern. @CAPS4 are becoming to dependant on computers. @CAPS4 need to go outside more and be active. While some people @MONTH1 think were not wasting our time on the computer. I @CAPS3. I'll should only go on if it is nessesary. People are always coming up with @CAPS2 gaming ideas to draw people in, but what people dont realize is that is doesent only waste there time in waste our money too. Electricys bills are trough the roughtAlso instead og going out to meet @CAPS1 people are staying home and talking on social networking sites which make them less social. Children are not enrolling in sports which makes them losse any physical strength they would get. Also children could be getting over wait by just sitting there with no pysical activitys, @CAPS2 ideas like microsoft word is fine but going on every day for games is. Teachers, parent, and all need to show these that the computer is not the only thing, Computers can benifit us very well, by letting us have knoledge of somthing at the tip of our fingers. Computers can and will take away family and friend time. Now im not saying that computer but what am saying is that it effects everyone around you, @CAPS3 just the person thats using it. What @CAPS4 need to @CAPS3 is get together and unite. @CAPS4 need to go outside more, and exersise. @CAPS4 need to stop the computer with adults. Therfore, lets make this a better place. and get out and have a little time for going on to the computer." 4 4 8 +1096 1 "I think that we should have computers. Because it help us find pleopl and it help us talk to peopl and it help you srech thing too I can have a brother that I never knew before then you can find that brother. Then I can talk to my firend online if I go to myspace or @CAPS1 because you can in @MONTH1 be have firend on myspace, and by srech this you can find new thins and you can look up this like weather in a different country or state I can find out how cold it is in taxes and you can srech an up to see how old it can be. Or how old it can get." 2 2 4 +1097 1 "Dear fellow citizens, @CAPS1 think if you had to get a book for every question you had. That would take a long time to even get the book let alone read it. Computers have helped the modern world with questions, long distance friends, and entertainment. Computers have helped us with more then those things the @CAPS2 is sucha universal thing that its hard to come up with all of the helpful things it does. For one the @CAPS2 helps us stay in contact with our friends that are far away without talking on the phone with them. Sites like @CAPS3 and @CAPS4 allow us to communicate and/or play with them. @CAPS1 think is the only way to talk with a friend from a different place would be to pick up the phone and call them well your friendship would disappear very quickly. This would happen because no one ever usualy has the time to pick up the phone and talk to the person and do nothing else. Well when you talk to them on the @CAPS2 you can do other things. For example if I wanted to I could talk to someone and the @CAPS2 and clean my room. Further more computers allow us to play games or watch funny videos or any else that is entertaining. On the to do I when my brother would let me use the play again. I was but them I @CAPS1 went better A also play movies, @CAPS5 shows videos. If you ever miss a show to watched home of the show and watch it. This could save someone time and effort. Lastly, The computers much more efficient is looking yet things. IT is much faster then looking through the library and you don't have leave your I although people say that the @CAPS2 is taking away time from reading well it really isn't it. For everything you want you can read online or if you really want to you can have the @CAPS2 don't for you. Reading isn't a problem at all. @NUM1 of america believes that computers help greatly and how they have more time to do things is being upgraded every day and it keeps getting better and better. In conclusion I believe that computers are helping us and is not a bad thing. Computers are great for us and good for bussy people. Now go and get a @CAPS2 to." 5 5 10 +1098 1 "Dear local newspaper, @CAPS1 are several reason how computers have effect on people. My position is to convice the local newspaper why certain people @CAPS2't and @CAPS3 use computers. People getting caught up on the @CAPS4, or people not having enough money to explore the world, so they just be on the @CAPS4. In effect, people @CAPS2't waste their time on the @CAPS4 because you will get caught up. For example, my friend @PERSON1 stay on the computer more than @NUM1 hours. He tells me that his on a @CAPS5 line, hooking up with other people. He for gets about everybody. He's so on the @CAPS4. He stop going school, he gaining. Now he just a nobody. He just sit in front of his computer and do nothing. I feel like he just threw his life away just for some stupid @CAPS5 line. @CAPS8's not hard to find another in our city. @CAPS8's alot of beautiful young lady's out here to explore. Similary, people @CAPS2't waste their time on the @CAPS4 because you start losing time. For instance, you spend less time exercising, enjoying nature, and interacting with family and friends. People stop losing their focus on important, and start paying attention on other things like the, was a great person. She was so successful. She make tons of money. Until she start losing her her job. She stop cause she was so stock on facebook. Facebook is like a place for a friend @CAPS6 you could meet other people from different @CAPS7 you could just find people to date on that website. Facebook turn her life around. I remember her telling my mom how her life is so mess up now. How she got fired, how she don't pay her bill, and how she moving into a. Sometimes websites make lose focus on important thing in life. Consequently, certain people @CAPS3 use computer because the @CAPS4 help you with certain things. In summation, @CAPS8 help you find hotel or trip to go on with your friends or families. I love being on the @CAPS4. One time I sign up for this website that was called myspace. For moment I did got caught up on @CAPS8. Continue line." 4 5 9 +1099 1 "Dear local Newspaper, @CAPS1 opinion on the effects that computers have on people is that more and more obese people. People tend to get moody. and it seems that computers are addictive. I think computers have a huge effect on people. The nubmer one thing is that more people every year are becoming obese because they do not leave the chair they sit inside for most of the day. Also they get so lazy they don't want to get up so they will just order food and have it delivered right to their hause. The next idea is that they do not get enought exersise, because they isn't sit there all day and don't move. But when they do move its to get something to eat or go get their phone. This is why they should limit kids and adults to only @NUM1 hours or less of computer time each day. @CAPS1 next reason is because people that are on computers tend to get . Like one second they are happy and once they get off the computer they are sad. They get all couped up inside for the whole day. They don't see enough because people don't see they . If they hour each day the moody ness would change. People need lot of exersise to maintain weight and muscle. @CAPS1 last receson the computers have effects on people is that people will tend to act addicted to the computer . Like if they are playing a game all day and don't realize it they will get addicted and not stop playing all day. People need to leave the computer and do something else like ride a bike or play a sport. In conclusion what I am trying to tell you taht it is not good that people stay inside all day and play on the computer, because it is hazardous to your health and it is putting you at a hgih risk of obesity. So can you please listen to @CAPS1 ideas." 4 4 8 +1100 1 "Dear Newspaper, I have been reading about the debate about computers. People say that computers are teaching important skills. Others are saying that, ""People are spending too much time on their computers and less time exercising."" @CAPS1, I think that people should be able to use computers (I mean they were ment to help us anyway) @CAPS2 think how much computers have helped the @CAPS3 race, from talking to friends/family in other countries too looking at what time the plane leaves to @LOCATION1. It is said that more one million people and up use there computer more than once a day. Without the compuuter there is no worldwide web witch is connected to everything in this world. Without computers you wouldn't be able to controll any robotic or wich will give more jobs but the cost of food to will go of tramendisly without computers the equipment wouldnt work in hospitals computers can save life they store important information we would have to go back into the dark ages with typewriters again. Another big issue is that people are over useing the computer. Once you learn to moderate the useige of your computer that wont be a problem. Some people say computers cost too much. There are ways to pot so called ""down payments"" on computers, something like a but you pay each month and setting up internet is easy as @NUM1. So, yes there are good and bad things talked about computers but without them we wouldn't have a modern era. Then controll the robot that makes your to the that saves lifes so with all this said I would lie to say thanks or listening and go computers!" 5 4 9 +1101 1 "Dear, @CAPS1 I am writting this article on computers to inferm you my oppinun on computers positive and negotive efects. The reason why computers are so succsesful is beacuse of some of the great imformation they. Such as directions to a place until you are going to or home imformation on a subject or a pearson. Althoug these all sound good any one can post imformation on the internet so some imformation misnt not all be accrate. Some reasons why the computer is bud is beacuse of signs wich are not safe and can give your pearsonal imformation to a and comeing back to bud you in the future. Also webite or pop up icon are not suttebul for younger kids and exposeing them to to mature for them. Lastly talking on the computer is apart of our everyday lives such as emails almost every american whita computer here. A email, this is a great to relie or. Also the new sorse of web witch giving you the ability to see peaple and into the computers wich is raipidly growing in the @LOCATION1 @CAPS2 all in this article this you my point of veiw on computers." 4 4 8 +1102 1 "Dear local newspaper, I think that the computer is not a bad thing becase of three resons one reson is that we can learn a bought a faraway place. Another reson is they teach hand-eye coordination. The last reson is we can talk to frteinds and meet new people. From the computer we can learn a bought a faraway place if we were doing a report on it or just our of curiosity. We can learn wat kind of plantation grow there for food for example tropical places grow bananas and cocanuts. We can learn wat they eat like in @LOCATION1 they eat many beans a lot of there food have beans even there salads. We can find out there language as well maybe they talk spanish like in @LOCATION2. You can also teach hand-eye coordination becase it involves using your fingers and eyes to see what you are typing. You use ur hands on evry thing while typing wether you are typing or you are using the mouse. But it is not just for learning things it is also for freinds becase of al these sites like myspace, facebook, aim, webchat. The posibilities are endless u can even play games. If you dont know someone on face, book, or myspace thats okay it is a great way to meet new people and new freinds. And another thing if u are having trouble findin freind you can just see if they are online. It is good for getting together somwhere or something. And for those pepole who think it is taking away family time you can always just say okay thats enough and talk to them. So that is it they are good because u can learn of places, hand-eye coordination, and talk to new and old freinds. so they are good" 4 4 8 +1103 1 "I believe that the house hold computer can help with every day things like research and developemint, home work, art work, an always renewing travel dictionary, a @NUM1 hour super store filled with never ending items, video games and a very sofistacated colculator. New programs are comeing out all the time but idiction is always seen as a very bad thing to have to do any part of you will start to have no friends or girlfrends and you'll probleay start to egnore your family and you'll get corple tunnle sindram from typeing and focreamea from staring at a brite screen alday and looking at it closely. You will probley get a bad back from siting alday in a chair or neeling or leaning back in a chasse lounge and it @MONTH1 be comfey but it's bad for you, in concloshion computers help a lot and they are fun. But it addicting to so have fun. But don't get addicted because computers @MONTH1 be fun but portions are helthy and thats what should be done." 3 3 6 +1104 1 "Dear Readers, @CAPS1 of the most important inventions of the past decades is the computer, and it has its pros and cons. I think people spend to much time on computers, especially teenagers. They spend to much time on @CAPS2 and @CAPS3, and not enough time outside enjoying nature and playing sports or exercising. While they @MONTH1 talk with friends with @CAPS4, it is not the same as going to the park with friends and playing a game of baseball. Families also are distant form each other when they sit around on @CAPS5. Teenagers spend too much time on the @CAPS6 going where they should instead of doing more benefitul activities like reading. I sure we all know at least @CAPS1 obese person or teenager. My neighbor is the size of a killer whale and eats just about as much as @CAPS1. He will sit on the computer chair and stare with his eyes glazed at the computer chair and stare with his eyes glazed at the computer screen for hours on end. Sometimes I wonder how many brain cells he wastes per second. I will bet that everyone who reads this knows someone like my neighbor. The statistic @PERCENT1 of @LOCATION2 is obese is not exagrated at all. In my opinion, it is the fault of the @CAPS6 and computers. Instead of going to the gym or the soccer field with friends, they got to the computer and talk and eat junk food. They spend their time watching pointless @CAPS5 videos, while they should be playing baseball or football. Doubters say you learn hand-eye cordination with computers, but you can learn better with sports. Computers are a large factor in obesity because they encourage @CAPS1 to sit around instead of doing standard @NUM1 minutes a day of exercise. The next pressing issue is the amount of reading the average teenager and @CAPS9 does. I would say that the average gets about @NUM2 minutes of reading a day because they are to busy chating with friends on the @CAPS6. I have a cousin who reads about a book every @NUM3 years and fail every test he gets and has stayed back @NUM4 times, but instead of reading and learning, he is chating and texting. He wastes these excellent educational opportunitys while their are people in underdevolped countries like @LOCATION3 who are lucky to own a book. I know more than @PERCENT2 of the kids in my class do not read anything execpt the required reading and that is because they sit around on the computers wasting @CAPS10 is about @NUM5 and that number is decreasing because of the lack of reading done and the time on computers spent. I have seen survey that say @NUM6 out of @NUM7 spend more than @NUM6 hours a day on computers. These statistics and quotes have left me thinking, how much time do we really need to spend on computers instead of reading or else we will turn into oversized monkey who can't even rad. The computers and @CAPS6 are doing more than just erasing brain cell and are health, they are taking away the expriences that we could have outside in nature. Nature holds natural wonders like the @ORGANIZATION1, the @CAPS11 @CAPS12 and the @CAPS13 @CAPS14. What beats sking down a large slope, or climbing the @LOCATION1, certainly not computers. Unfortunatly, that what most @CAPS15 choose to do. They sit and tap on the keyboard instead of walking nature trails and walking on the beaches. They sit on old moldy chairs and stare at computer screens, unlike the people enjoying the butterfly gardens and wildlife preserves. Instead of taking steps to help the enviorment we are siting on the computers sleeping and being mesmerized by the light of the screen. We should be preserving and learning abouy what is left on the planet, but we are not because of these computes and the @CAPS6. I have present a strong arguement against computers that you @MONTH1 listen to or not. I strongly urge you to take action to start reduce time on computers spent. Set up programs at your house or town for turning off the computers. We need to do something now!" 5 5 10 +1105 1 "Dear editor, @TIME1 week, I noticed an article in the paper headlined ""@CAPS1 off the computer and go exercise."" This caught me off gaurd because there are many benefits to computers, such as it enchances education, you can learn about foreign countries, and you can talk to other people. Every school has a computer. Their easy access and very helpful. I know that @TIME1 year, if someone asked a question and the teacher wasn't sure of it, we would go strait to the computer. It also helps us do better on projects. I know I had to do a project @TIME1, and without the computer I wouldn't have it today. We also use the computers for the programs they have. In art, we made a cartoon, and made it look real with photoshop. It's also easy and fast to use a computer for research. You can also learn ahead far away places with a computer. For example, you can find out about other countries in the world. You could find out if it were landlocked, not landlocked, how many people live there, and facts similar to those. You can also learn the history about the country such as their leaders and government. Finally, you can also learn up-to-the minute-facts with websites like @CAPS2.com. Lastly, you can talk with other people using email, instant messaging, and websites like facebook, which allows you to connect with friends. With email, you talk with someone for buisness for to recieves links to @CAPS1 to websites, and to @CAPS1 information. Instant messaging is just like texting on your phone, except much faster. You can instantly talk to people and catch up with them. Thousands of people are on facebook. You can connect with old friends, and talk to current ones. I knkow my mom uses facebook and talks to old friends since she moved. So, in my opinion, I think computers are a good thing to have. Not only do they enhance your education, but they also teach us foreighn countries history and let us connect to old friends. When you were in school, do you remember your ""best-friend-for-life?"" @CAPS3, with facebook you can catch up with them, instead of them being a memory." 5 4 9 +1106 1 "Dear @CAPS1 of @ORGANIZATION1, @CAPS2 you know that eight out of ten homes in @LOCATION1 have at least one computer if not more? Computers help us with daily things and make many tasks, like writing an essay, much easier. They benefit our society in many ways. Without computers some families would lose contact with loved ones who are far away, not to mention it can keep many things very organized and neat easily. Maybe the best benifit is how you can learn about far away countries and cultures with the click of a button. Computers have endless posibilities to how they can benifit our society. Many people don't realize that some families can not be with eachother so easily as other. If a family member is in the service somtimes talking on the computer is the only chance they get to commnunicate with their loved ones back home. Saying that this is not a benifit is a lie. For others who don't have such sevier need of communicating it is still a convinient way to have a conversation with someone far away without racking up the phone bill for a long distance call. Also many times this can be an altenative to parents buying their children expensive cell phones. So having a computer is defanitly a benifit to communiting. The computer can also make many tasks much esier, for example if you were assiangned a @NUM1 pages essay in school typing it on the computer would be much neater and quicker than writing it all out. Also many buisnesses relay on computers to keep data organized and all in place. Like the program excel, @ORGANIZATION2 created this to make a simple way to organize data. It is much more efficient than than having every thing in different site with millions of texters in every draw. So another benifit of the computer is that it can keep tthings organized and poride easy ways to complete evey day tasks. Maybe the greatest benifit of the computer is how much you can learn so easily. Say I was curiouse about the recent earthquake in @LOCATION2, if I wanted more inofrmartion @CAPS3 head straight to the computer. You simply go to @ORGANIZATION3 or another search engine of your choice, type in the subject, one click, and bam you could read for hours all of the websites and articles that would come up. The computer is full of information, and is right at our finger tips, this is definitly a huge benifit to our socierty. The computer is a wonderful tool that can asist in so many ways, wether it is communication organization, or just curiosity. This advance in technology is just another way to improve every day life. Computers don't just benifit our little town of @LOCATION1, they benifit our whole socoety in all of the amazing things they do. " 5 4 9 +1107 1 Computer are good and bad because computers are good because that is a way we can comunicate with other people in different states. Another reason computers are good because they can keep you out of trouble and can keep you entertained. Computers are bad because they can become a computer. Freak and become highper when it comes to computers. Computers are good because it can do alot of things that other objects cannot do. 2 2 4 +1108 1 "Dear local newspaper, @CAPS1 you can see, about @PERCENT1 of our population over use the computer. They should be out getting fresh air and spending time with their family and friends. On the other hand, the computer can come with much use. For many people. Family lives quite a distance away, @CAPS1 well @CAPS1 some friends and getting out of touch is a possibility. You can also learn about far away places, like @LOCATION1. The computer is often used for projects essays which is important. You can learn quite a bit with a computer. The computer can be used in many ways. One way is to keep in contact. Sure you can just go to the park and spend time there but not everybody live that close. For people who have relatives or even good friends who live quite a distance, a computer is what you @CAPS2. It is a great way to keep in contact. You can keep everyday updated at all times. For example, my cousin recently went out of the country for college she will be there for a few months so she has her own blog on the computer to keep everybody update and stay in contact. The phone is not always an option. To learn about far away places is great. Online you can learn about the history of specific places. You can see the towns and so much more. You can even see pictures. Maybe one day you will even get to see those specific places in person. How cool would that be? School is a big thing now-a-days. Students have project after project assay after essay and its a lot of work. @CAPS1 you grow older it becomes more work and with a computer, you will have less weight on your shoulders. With essays you can type them, and fix your mistakes without it looking sloppy. Projects are easy to fix to: so messing up isn't a big deal. On the other hand, more americans now than ever before are over weight. The computer has a lot to do with that. Most people will come home and sit on the computer for the rest of the evening. They don't realize what a big effect a computer can make on a person. More people should be out exercising. Spending time with family. Computers can be negative thing or positive. It can be more helpful than you could imagine. But, yet it can make a huge negative effect on people. It can help keep contact with people to learn about far away places, or even school work. Let it be benificial, use it when you @CAPS2 it." 5 4 9 +1109 1 "Dear Newspaper, Computers benefit society because they teach people. They are also helpful because they solve problem that humans might have trouble with. They can also entertain us when we have nothing to do. They can teach people many things. They can help tourist learn about a location they wish to travel to. Actually @NUM1 out of every @NUM2 tourist research the area there going to on a computer. They help students catch up or fully understand something. One time I was having trouble with fraction, in math. So I decided to look up the way to find the answer and it caught me up with the class again. The computer can explain cultures from any where in the world. According to culture digest.com @PERCENT1 of people visiting a new country. Find out about the culture first. Computers solve problems that some people might not now about. It can solve a math problems easily with a built in calculator. @NUM3 out @NUM4 computer users have used calculator to help them solve a problem. They also solve geographic problems. There @MONTH1 be an about of date map but this is easily solved with live satelite maps. Map tools says there has never been a flaw in their system. Computers have a wide viarety of entertainment. They can play music. @PERCENT2 of teens get there music from the computer over a cd. Computers can entertain you with games. One day it was raining hard and I had nothing to do so I went on my computer and played minesweeper. This kept me very entertained. Please take this letter into consideration. Thank you for time." 4 4 8 +1110 1 "More and more people use computers but not everyone agrees that this benefits society. Well, to me it does benefit society in many ways like, learning online. You can learn many things online, you can practice math, reading, and even writing. You can also have fun online if your bored at home and have nothing to do. Also, you can interact with friends and family members, by email etc. When your online you can learn alot of things. If your at home, and you need to study for a test, you can go online and study. You can also learn more, because you can learn how to do a math problem if you don't know it, or just catch up on reading. People sometimes need a computer because they might be bored, so they can go online and play games and have fun. People, especially kids get bored at times, so they can just go on the computer and play games and trivias so they can still learn. Computers can let you interact with your family and f riends. You can e-mail or webcam. if yopu haven't talk to someone a long period of time you can just go to the computer and talk to them. If you want to find a @CAPS1 school classmate that you haven't talked to in years, you can now. Computers do benefit the society, In my own opinion we do need computers. If parents do not want their child on websites they don't approve of, the parents can always block those websites. Computer are really nessacary they can help in a huge way." 4 4 8 +1111 1 "Being a teen myself, my computer is something I don't think I would be able to live without. But is it holding me back from more important things? I think so. I feel that not having computers will in a way educate people more so than now. For example with school research papers we imediatly go to the computers in order to find information when we could be using books and magazeens. With having the use of computers many people don't properly know how to use and find information in books. Also being around computers and using them so much is pulling families further apart and stopping humans from being more interactive with nature and the environment. For many people using a computer is a life style, it's something we tend to use more than religiously and that @MONTH1 not be the best thing. Children, teens and even adults get extremly addicted to computers. Teens and children use laptops and @CAPS1's everyday in order to do their school work, and to talk with friends. As well as parents/adults, they use it to get their work done and use it as a easy communication with co-workers. To this very day people have become very addicted to computers. I know for certain that in my family, my mother, nor my father, nor my brother, nor I could go through a day without using a computer. As I mentioned before computers are also pulling families further apart. There is less family time and comunication between family members these days, due to computers. Insead of spending time with the family, teens prefer spending time on the computer chatting with their friends. I bet if there was a poll was taken on how much family time has been taken away in households because of computers I almost garentee it would be quite a large amount. I know the only true family time some families have without computers is dinner and that isn't much. Lastly many humans are not as connected to nature and as involved as they used to be. Using computer keeps people inside and not exposed to nature. Though there many advertisements and pop ups on the computer that inform us about how to take care of the earth properly, we so easily ignore them and remain playing on the computer than going outside and doing something to help make the world a better, clearer place. Not only is it just taking care of our earth, but it is also the fact that not many people these days go out and get the fresh air they need as much as they really should. Most likely not all of that is due to the use of computers, but I bet a great deal of it is. Like I said before it is super hard to imagine a day without a computer, I mean how would we communicate or do our work? But there are trulthfully other ways to do them that we just aren't very used to because of the fact that we are so attatched to them. I never really noticed till now that it is possible to live without a computer, and that so many people are missing increadable things such as family and nature because we are so addicted to the computers." 6 5 11 +1112 1 "Dear local Newspaper, In my opinion I belive that computers have helped our society a lot over the past decade or so. This is because when you on the computer you get better hand-eye coordination. Also you learn how to type and do other things with a computer that you will need to no how to do if you want to get a decinte job that pays well. Also now on the computer you can go on facebook and other website were you can make friend and chat with other people. So its not only helping your social skills and hand-eye coordination but also you are most likly to get a good job if you no how to type and use a computer. First off, having a computer teaches you to have better hand-eye coordination. This is because when you get a computer having better hand-eye coordination will teach you how to type better and more quick. Secondly, having a computer will teach you better social skills. This is because now alot of people go on facebook and you can make friends and chat with your new ones. Also when its a cold and rainy day you can occupy youself by playing different games and also you can check the news and forecast for tommorrows weather. Lastly, when you learn how to type you have a good shot at getting a good job because you no hot to type and work a computer. This is because when you are looking for a job that pays good you will most likly have to me how to type and operate a computer. @CAPS1 in @CAPS1, in my opinion I think computers have helped our society over the years, but other people @MONTH1 think differently. So now lets see what you think." 4 4 8 +1113 1 "Click, click, click the mouse of a computer goes as you are searhcing throughout the internet. Computers are a great way to teach kids how to be social, make people more intellegent, and help you with your homework, I believe that computers have a very positivr effect on people. Computers can touch kids to be social because first off computers are like an online phone, you can talk to people in so many ways, facebook caht, aim(chat),, myspace, twitter, skype, and a lot of others ways that i havent mentioned. Also I think is a teen or kid or even adult that is too nervous to talk to people on the phone or in person, and is socialy not their or painfully shy can start of by just chatting with people online. Once they feels more comfoatable, then they can start talking to the person on the phone or in person. For example, I once @MONTH1 this girl who was very sweet, but was painfully shy and everyone for it, so one day she decided to make an aim nad talk to poeple on it, and provove that she isn'e a annoying wherd girl that everyone makes her out to be. She turned out to be one of the nicestly funniest person I ahve hung out with in a while. Which how internet can help you. HAve you ever felt that computers sometimes make you more intellegent? Well, in my opinion I think that computers help out so much more than a book. If you want information its just about typing some keys and a click of a button. Ahving a computer is like your own personal handbook of veerything in the world. A lot of people these days study from the internet, I know I sure do. Statistics show that @PERCENT1 more people say, that computers are more helpful than books and can make you a lot more intellegent, because the internet has so much more deatil than books, and mor efacts. @PERCENT2 of kids that have a computer use it for homewrok. Computers is a great tool to use while you are doing your homework. I spend most of the day on my computer doing homework than off it. For example, say you have a report and you need facts on @CAPS1 @PERSON1, and where he was born. You would jus type in, ""when was @ORGANIZATION1 boen."" and born! There it is with the date exactly. Also if you having a piece of writing like your rough draft so why spend the time trying to write really neat and perfect? When you can just open up a word document and type it up. To sum everything up computers have deffenatly a positive effect on people from these three reasons, computers are a great way to teach kids hohw to be social, make people more intellegent, and help you with your homework, But I understand where your coming from people are spending way to much time on their computer and less time exersising, but you can look up great ways to exersise on the internet and watch videos of people that have @CAPS2.V shows about exersising and do it with them on the computer. Remember, computers aren'@CAPS2 just a waste of time and way to will your brain cells. they have a very positive effect on you. " 5 5 10 +1114 1 "Dear @CAPS1 @CAPS2 @CAPS3, I am here to prosoade you to agree with me on, that the use of computers does benift society. Some reasons why I think this are school work and business stuff. Also the over all reasearch on important things. My first reason why I think that computer use is benifiting society is because @CAPS6 is oftenly used for school work. In example use @CAPS6 for projects. Also some type of reasearch they might be interested in. But one of the most important reasons why computers use is so high is because, there are a lot of people taking online classes. Wheather its for college or for the sake of your own learning. This is why I think school work shoud be a valid reason for benifiting society. My second reason why I think @CAPS6 benifits our society is the business or job part of the computer. Many people, @CAPS7 a days work at home, they have their own office. They all most create their own company. Another reason is many people also use ""@CAPS4 @CAPS5"" or publisher. @PERCENT1 of the people who work at public businesses do this, going along with ads, when could also or another reason for this. But then again, you could @CAPS7 pay your bills on line! I remember when I helped my mother pay on of the bills online, and let me tell you, ""@CAPS6 was easy!"". My mother said she do @CAPS6 more often @CAPS7 that she knows how to use @CAPS6!"" @CAPS7 the business side should be more then enough, for me to convince you. My last reason is over all reasearch on all important things. Some of these important things are: online catalogs, the news and another one the most important things of all job openings. I know my self, and I love to shop! So instead of leaving the house, I just go on the online catalog to my favorite store called ""@CAPS8"". The main reasons why I go online is b/c they have more variety and sizes. @CAPS7 for the news, thats all for my parents b/c i don't watch the news. Lastly, job openings @CAPS7 that I am @NUM1, I would like to find a job, even if its mimumum wage. @CAPS6's still something, right? This should be a high priced reason for agreement! In @CAPS9, I think my @NUM2 reason are very well clear; school work, business, and over all reasearch. If these reasons don't convince you I dont know what will!?" 5 5 10 +1115 1 "Dear Newspaper, @CAPS1 a family. Just a normal family whose lives have been changed due to computers. They are overweight, constantly suffering from fatigue, lonely, nature deprived and lazy. However, they could of turned out differently if they just shut down their computers. They might of healthy. fit, energetic, radiant, hardworking people if they had stopped spending hours on the computer daily. Although there are some positive computers can be dramatic. They isolate you from friends and family, they deprive you of the nature around you, and most of all, they @MONTH1 cause you to become overweight or even obease. Friends and family are two very important things in everybody's life, even if you dont realize it. By using computers rather than interacting with them, you are the connections you have. Computers @MONTH1 cause you to isolate yourself. They might cause you to talk to your . Unfortunatley, friendships can be . ""Spending long hours on my computer had caused me to become . made me fell lonely, @PERSON1, @NUM1, says @CAPS2, by the use of computers you are doing yourself a favor. Computer can deprive you of the nature that surrounds you. You most likely would be on you ocmputer rather than going outside. Instead of spending countless hours on the computer, you could be playing a sport or activity. By playing sports you are increasing you hand eye coordination, far more then if you were to be on a computer. Wouldnt you like to be having funs with your friends playing vollyball, basketball, swimming or even going rather then sitting infront of your computer? I know I would! The obesity rates of this country will increse if people continue to use computers. You will rize about @PERCENT1 from lack of exersize. Computers can ruin lives by increasing your chance of becoming unhealithy overweight. So now think, would you want to be lonely, overweight, and deprived of nature? I know i definiely wouldn't. why computers should be used less frequently! So hows the time; lets join together and raise awareness of the negitive effects of computer!" 4 5 9 +1116 1 "Dear local newspaper, I am here today to state my reason why I am against usage of computers. My @NUM1 reason why I am against usage of computers is, the negativity, like for example too many pop ups come on the website your own and then they mini little advertisments like ""@CAPS1 on me"" ""free trial"". And thats not good for children to see when they are using the computer. My seocnd reason why I am against using computers is who's online when your up there. @NUM2 out of @NUM3 people use the computer every single day and @NUM3 out of @NUM5 people be up there chatting with young little girls and boys. And they older what then what they say. What I'm trying say is these people are called ""@CAPS2"". These people roam through the internet day and night trying to find little boys and girls. Just like I say earlier thats not good computer usage. The purpose of getting on the computer is look for information or play games no that other stuff. My final reason of being against computer is montoring, alot of parents dont watch their kids when they are on the computer, so most of the kids look at a lot of inapproiate sites or things that they shouldn't look at. And that be their fought beacuse they should have parental lock up there. In conclusion, basically what I am trying to say is computers can be dangerous sometime because you dont always know what your clicking on and you can @CAPS1 on the wrong thing and end up on a site that you don't want to be on. So just have my opinions and maybe you can understand what I'm trying to say. Thanks." 4 4 8 +1117 1 "Statistics show that more and more people every year are not geting their exercice and are on the computer talking to their frend on face book or my space or something like that. Will people go out side more or will they sit and type? Here is the @CAPS1 more and more people use computers, but not every one agrees that this benifits society. Those who suport advasas in tecnollogy belive that computers have a positive afect on peoples life. Well I @CAPS2 belive that it does not have a positive ofect on people. My reasons are that people who youse computers more dont get their exercise and get fater, and if you put Your name and adress on the computer their is a slite @CAPS3 that you will be kidnaped or murderd, my final reson is that you dont spend as much time with the familiy that you should. Obiseity in the @LOCATION1 has gone up at least @PERCENT1 because people arent geting thir exercise and are spending to much time on the computer @CAPS4. nothinka says that: ""Their are to meany People who dont get the exercise They need."" The @ORGANIZATION1 says ""@CAPS5 people like the internet but what people dont know is that thir are @CAPS5 bad people out their who whould like to get thir hands on your info."" @CAPS6 as you can see I @CAPS2 belive that it whould be a wise idea if you wrot a articol on tecnology. Because @ORGANIZATION1 obesity in america and @CAPS8 safty it is now or never that You wriet this articol it will probobly mack you hunders @ORGANIZATION1 dollers @CAPS6 get out @ORGANIZATION1 your @CAPS9 pick up your pencil and write. @CAPS5 people thik that Computers are fun yes but You are not reolisinig what Your doing. You chould be @NUM1 lbs one day and then be @NUM2 lbs the next. @CAPS6 remember that it whould not be abad thig if you wrote a articol on this." 3 4 7 +1118 1 "@CAPS1, @CAPS1 boom, bom! Those are the noises of pinball on my computer. "@CAPS2! Yea we won". Those are noises you don't want to be hearing all day. Always being on your computer is bad for your health. @CAPS5 you are a computer freak you will become overweight, it's bad for your eyes, and you can't enjoy beautiful nature. "@CAPS3 you want to be so heavy that you can't even lift yourself out of bed? I don't think so. @CAPS5 you are always sitting at the computer desk then you might be like that. @PERCENT1 of doctors say that @CAPS5 you don't get up from the computer desk you will become obese! Being obese is terrible for your health. It can take years off your life. @CAPS5 you want to live a long healthy life you need to get up from the computer and exercise. "@CAPS4 I think I need a stronger, my eye are getting worse! @CAPS5 something like this has ever happened tp you it's because your your eyes to at the computers screen all day. @PERSON1 says, "@CAPS5 you are at the computer all the time you will need glasses or a stronger." @CAPS6 and children need to get away from their computers. studies show that more adults are on computers, playing games than children. Have fresh, healthy eyes and get away the computer. The acroos your chill. in your right ear. The sun giving you the most beatiful tan. @CAPS3 you like the sound of this? Take away from your computer and go outside. This is the amazing experience you can get from going outside. @CAPS5 you sit at the computer screen maybe you can watch someone else enjoying the great, relaxing experience you shoud have. Get up, get active and go outside. Now is the time to get up from your computer. @CAPS5 you haven't learned, the computer is an unhealthy thing for humans to use. Be like me and get rid of your computer. You need to be healthy and most of all active. Have good eyes and enjoy nature. Don't use the computer." 4 4 8 +1119 1 "Currently, there has been a debate on whether or not computers benefit society. Some people, say that computers enable internet conversations between friends, and computers pass off information about faraway places and people. However, I tend to believe that the computer is not necessary. People exploit most of their time on comptuers, reducing their exercise time. Not many pay attention to nature, and instead of talking to friends in the internet, why not meet them at the park? Many people who use their computers reducing their metabolism. This is one reason why the @LOCATION1.A has the highest obesity rates in the world. In addition, the less you exercise, the less healthy you will be, and the more pair you'll recieve, you will feel more tense if your muscles are not exercise. If we, as @CAPS1, continue to lack exercise, there won't be many possibilities for us in the future. Isn't it difficult to know that people pay too much attention to the computer when there are endangered species in nature? Pandas! polar bears, whales of different types, and other creatures all need our help to fight this extinction problem. Unfortunately, we pay much of our attention on the computer, with consideration, as humans, we make things possible, so we should help creatures in need to survive for generations. Perhaps we @MONTH1 learn more about these creatures if we take time off of the computer to do so. Perhaps we will find nature more interesting. Why do we have text messaging in our computers if we have the ability to talk to our frinds in a park? We have the freedom of speech in the @LOCATION1. Our families need help occasionally, but sometime we're not available. While reducing our social life, our computer hours are becoming more important, and are distracting what's mos important. In conclusion, computers hours, you must think about what can be done for nature, for your health, and for your family and friends." 4 5 9 +1120 1 "Dear editor, I have heerd about me advance in technology dispute. I would like to say their I think it does benef it our society. I think this because: You can communicate with friends, they help you with school and a reliable resource for you need to find. Please read on so I can explain my reasons. Computers and technology benefit us in many ways. One of mom's they able you to talk to friends. Computers give you an easy and fast way to communicate with others. Instead of sending a boring letter that takes forever to get there, you can hook up with your friends, you haven't seen in a while. I remember when my friend moved to @LOCATION1. It would of taken me forever to there, so instead I went online and talked to him. Also, lastly, it less your hand. Now please read on for my second reason. My second reason . Computer are a of looking in many different take days. You can go online and find everyone, in ten minutes. In fifth grade I had to do this really hard project. I looked in books @NUM1 days and find. But then looked up everything I needed to known in an half hour. Lastly, they have more success. If you go on in @ORGANIZATION2 you could find hundreds of on one topic. Easy right? New read on for reason. My last and strongest reason that technology can help you find anything in everyday life. Computers can help you find your way. They supermarket for you. They can help with anything. One year I went on vacation to @LOCATION2. my mom move. So got lost help. Na, if we gotten difference have nevir pickel. Wouldn't you be more confident if you had ? Computers can a lso find for places for you an your friends or family to have fun like it couldn't find places never heard of. Such as @ORGANIZATION1. Now need on so can all up. So, as you can see technology, benefits our society in a big way. Mostly in these three reasons: You can communicate with your friends, they help you in school, and they are a reliable source for everybody life. i hope you have enjoyed rading this. Please take this info your next . thank you for your time, and thank you for reading my paper." 4 4 8 +1121 1 In my opinion i think that computers help people. It helps them with imformation that they @MONTH1 need. It can also help learn a lot of things. 1 1 2 +1122 1 "I believe that computers have a strong negative effect on society but a stronger positive one. Computers these days are very advanced and allow you to talk to your friends, allow you to acess information more efficiently, and have increased our man power in scientific research. Almost every teen has a screen name that allows you to chat online with your friends. This function keeps kids in touch and active. Eventhough instant messaging can distract kids from their daily life it can also be amazingly helpful. Just last week a friend of mine had forgotten to write down their homework and easly contacted online. I was able to let them know @NUM1 a matter of seconds. Like wise, with this online communication you can also talk and and video chat as if you right there with your friends not everyday do you get to go hang out with your friends so this is an easy alternative. Not only is quick and easy it's free. Computers keep kids off their phones and from jucking up the bill and causing those loud annoying phone bill conversations how to limit your texting. The most important effect computers have on society is the gathering of information. The internet allows people to acess millions of websites and light speed. Every second of the day their is someone on the internet searching for date that they would have to go to the library to get. Computers are a key part in society and we depend on them without them we would all be lost. They provide an easier way to life that us lazy @CAPS1 need to survive. The internet keeps us updated and informed on whats going on all around the world without even going there. We need the internet and we couldn't acess it without computers. One of the largest aspects of life computers have helped us with is research. Computers have multiplied our man power giving us more organized way to store date. Recently I was watching a show where they had a computer testing items for @CAPS2 a process that would take a human weeks. They also help us be different and more creative people. With the computer came smaller more compact computers till they were able to fit in the palm of our hand. They have lead us to think we can do greater things in life and keep our earth safe and to stop damaging it as much. They're lead us to research the unknown areas of the world where @NUM2 years ago a scientist with a pad of paper didn't have dare to even think about. Computers have linked the world through communication and information and have exelled us to greater heights in understanding how we came to be. Overall society needs computers and they have and overwhelming positive affect on society." 5 5 10 +1123 1 Many computers that people have they use it everday right? Most of them be on it from the time they get off of work or out of school until it's time for them to go to bed. What I think they should to is find some other activity to do instead of sitting on the computer for six hours and not doing nothing with their life and plus at that when you look at a computer for so long you can mess up you eye sight. Why be on the computer all day when you can go outside and get some fresh aire? Why would you wanna be on the computer when you have family and some friends you could be spending time with and taken care of? You don't want to be lazy and not do nothing for yourself. You wanna be able to go for a walk instead of being cooped up in the house on the computer. Why would you even wanna be on the computer when you could have fun going out to eat or to an place you always have wanted to go your whole entire life? You can't always depend on a computer when you wanna go out and explore something new you have to try it out yourself to really see whats the whole thing about. You don't want to have a boring life now do you? Cause that's what it seems like by you sitting around on the computer everyday looking of a bunch of @NUM1-since you wanna do what you want to do and have fun by doing what you like to do. It's not easy finding a job or planing to go out far away by looking on the computer because you have to click a lot of numbers or pictures to go threw what you wanna get to when you can go and do it yourself by looking for better and other things to do. 3 3 6 +1124 1 "Dear @PERSON2 - @CAPS1, I strongly suggest that people do not spend as much time on computers as they do comently. People will be doing much better things, such as exercising or spending more time with family and friends. Both these things are better for people's body and mind, and one more useful later in life. Please consider the following about why it will be more beneficial @CAPS2 people do not spend as much time on computers. First, exercising is an exellent alternative to sitting at a computer screen. A recent study by @ORGANIZATION3 and the @ORGANIZATION1 studies found that an average person spent five hours per day on the computer. By cutting out at least some @ORGANIZATION1 these hours, people will be able to make time for more exercise in their daily routine. Also, @PERSON3 at @ORGANIZATION4 says that ""@PERCENT1 @ORGANIZATION1 people do not exercise enough in the @LOCATION1 alone."" @CAPS2 some free time being on the computer is taken away, people will reward themself by taking care @ORGANIZATION1 their bodies. Moreover, I tried not using my computer for a week, and it was a great experience because in that free time I learned how to do a back flip in gymnastics. There are so many possibilities in exercising @CAPS2 people do not use their computer as much. Second, @CAPS2 people do not spend as much time on the computer, they get more experience with social skills. For example, @PERSON1 at @ORGANIZATION5 says ""@CAPS2 people spend time with family and friends, they gain necessary social skills for later in life."" A study at @ORGANIZATION2 showed that people who spend three hours or less on their computers have up to @PERCENT2 better social, verbal, and quick-thinking skills. Spending time with people's family and friends in stead @ORGANIZATION1 on the computer is exremely beneficial. I try to spend at least three hours a day spending time with family and friends and I have good relationships with them. Clearly, it is better to spend less time on the computer, and more time exercising or spending time with family and friends. Some people @MONTH1 say people can talk to people online so this is social skills, but in fact people gain better social skills from person-to-person interactions because they must use quick thinking and their emotions too. Altogether, I strongly believe spending less time on the computer is the best way to stay heathy mentally and physically. Thank you for considering my opinion." 5 4 9 +1125 1 "Dear @CAPS1 @CAPS2, @CAPS3 recently has been brought to my attention that computers have been affecting peoples daily lives. i do agree with this because with our countries of obesity. More people need to exercise more, interact with freinds, and to just enjoy things that don't involve technology. Some people are just super glue to computers, but let's see if @CAPS3 doesn't start wearing down after this paper. Many individuals are spending too much on their computer and less time working out or exercising. People need to start spending more time on exercising and less time on their computer due to the facts that more and more states obese percents just keep rising. Yes, you @MONTH1 say I will just go on a diet ino! Diets don't always work and many people have tned them. Even a simple one hour walk with your dog is better than lazily browsing the web. And if you wanted, you could even join the local gym for @MONEY1 a month. Buttle only way this is going to happen is by you wanting to do so. Now you know how to fix your problem, get going! More people need to interact with friends instead of going on their computer. Interacting with friends or family will help themm be better with their social hucs in all. Yes, maybe your friends and family out and hungry with your friends most likely you will have more fun exercising then you have on the computers. By interacting with friends and family will help youn later in life by being more social and ready any job interview to meet you less nervous. F inally, enjoying things that don't involve technology is good to know because many people don't have as much fun out in the real world. You have to mete @CAPS3 fun. This can be schevered by asting a frend to go on a compy trip with ypu or spending a little diugh to enjoy yourself. The ourdoors and nature consists of many beautiful and awesome things; but the only way to realize this id to have fun outside or explore whats the great tourst. In conclusion, many people's lives are being manipulated by computers and destroying their daily live. but maybe due to these essy tips; excrsing more, by soul." 4 4 8 +1126 1 "@ORGANIZATION1, I strongly believe that we need computers. Computers are very helpful they are a very big part in are world, ability to learn about very interesting facts, and they allow people talk online too. After reading my letter I hope you agree with me. First of all compters are important because as our world gets more technilque inclined compters are need for almost every job and you will want people to know how to work a computer. Police officers use compters to find want criminals and put criminals into the computer to keep them on files. Schools use computers everyday for kids to do reports on, find information, and do homework on too. As a student I know that kids use computers all the time. For example @TIME1 I used computers to do my math homeworks that my teacher assigned me. After you read my letter I hope you will agree with me. Secondly you have the ability to research places all over the world. Another good thing with computers is that you can look up the news and be updated everything that is going on right now. Computers are just great to use because if you don't like write you have a computer and you might even get it done faster if you are a good and fast type. I use computers to do all my essays and book reports for @LOCATION1 I also use it for look at the news to see ehats going on in the world. Lastly computers are get because they allow you to talk to people online. You can either email them or talk to them from a web cam. Online chat is good to keep in touch with a friend from far away or even ask a friend ehat the homework was tonight. I like to ise a web cam for the reasons I just listed because on my birthday my sister could't come home from college so we hooked up some web cams so she could be there when we open presents and song happy birthday. After you read my letter I hope you will agree with me. I hope I have persuaded you to show you that computers are very important and that why we use them so much beccause computers are very helpful, they give you the ability to learn interesting facts and they allow you to talk to people online." 5 5 10 +1127 1 "The use of computers has been increasing since personal computers were invented. Although there are some upsides to computers like doing research and interacting with people, there are @CAPS1 more bad aspects then good ones when it comes to computers. Computers negatively affect the way people live outside the ""virtual world."" @CAPS1 people end up overweight or obeise from spending too much time in a computer chair and not enough time outside exercising. People also tend to interact with people on the computer that they don't talk to out in the world, or that they don't know at all. People also give out personal information to people they don't know, which leads me to my second point. Thefts happen everyday across the globe, whether it's robbing a bank, a store, or even someone's identity. Using a computer can lead to @CAPS1 thefts. There are people that hack into people's banking account, which has all your personal information on it, and withdraw any sum of money tha they like. Millions of people have all of their information online, for anyone to see, and this is very dangerous. That is another downside to computers. My final point that is to be made is all the costs that come with computers. @CAPS1 people have to spend a lot of money on glasses because they looked at a computer nearly all the time. Some people even must pay for rehab. There are people out there who are actually addicted to the internet, so they have to pay thousands of dollars to get back to health. As you can see, there are @CAPS1 more cons than pros when it comes to computers. Any of these things could happen to you so I advise you not to use a computer." 4 4 8 +1128 1 "Do computer hurt you fate a you exercise? I think that a compuer couldn't help you in many career? If you say good for you. It what you wants no need. So lets the to thier argument. Well owing a computer can you away from exercise and thier good for you so the more time you. The more you'lll put it. You'll get addicted so yer owing a computer can help and it can't but most importantly it can't. I mean if your a biusness guy you'll need one. But if could get audincing with all the things you can do before you know it your day has gone bye. And you have know left it's the right your could and have nothing to do that rude. What to do now let you on the computer again. And the day the thing it is stuff to get off it why go out when you could chat wid friends online. I'll tell you you dad anything you go to the and time a couple a snack them you have more and more food and you them you go swiming and your fat to all your friends. Whats were exersising get yet in work you amuzed. To we them because of that addicting computer. And so your friends notice wonder. Next they how it happen you say."" I want on my computer to much and got faty fitting lack of exercise and ate unhealty. Then they invite you to do activities and. Recently you back to your six pack sexy self. Fou feel so good about your self now. Your are hot and not amazed lifes good but the computer you don't have to it just go on it to what you have to do not what you want to do. If you want to chat with your friend go to a place out. Fun instead of being a no life at home. This is why you should only use technoligy if you have to so your body can stay healthy and in shape just like you want you body to be no just like you need your body to be!" 4 4 8 +1129 1 "Dear local Newspaper, This eara are all about computers. Computers @CAPS1 a benefit to have. It increase the hand-eye coordination, talking skills and easy knolage. My first paragraph @CAPS1 about hand-eye coordination. This @CAPS1 a important skill because it helps with physical movements, using your hands for example. Studys have shown that @NUM1 out of the @NUM2 have improved hand-eye coordination. Also it help kids @CAPS1 that it stimulates the nerves in the hands and brain for kids that have had sergery on there hands. Last years study has shown that @PERCENT1 of kids have improved hand movement faster than regular therpy. Secondly. The importance of computers have been commucation like email or aim. This @CAPS1 great for penpals because it saves time for responses from mail and money because there @CAPS1 no mailing to places and when you email them there will be a fast responce. Also this will help people that are shy around people. A study has shown that @PERCENT2 of shy kids have increased the talkative skills in school. Also most talkative skills will help kids today with there confidence. Finaly, the computer @CAPS1 a helpful knolage tool to use. Most book will be more chalanging to find because there @CAPS1 allways extra information that @CAPS1 not needed and will take longer to find. With a computer all you need to do @CAPS1 to type in what info your looking up. ""@CAPS1 an easy sensation"" said time magazine. That was one great comment from time. In school however there are helpful tips that are making it eager and easyer to find with bookmarks that you can find that are faster because all there @CAPS1 to do @CAPS1 go up to bookmarks and find the websight and click and thats it. In conclusion the ecra of computers are becomingly more popular by the hour. And the benfit of the computer like hand-eye coordination, talkative skills and more and easy knolage." 4 4 8 +1130 1 "Dear Newspaper I disagree with the hole computer thing I think it's just a wast of money and it's a wast of time for kids. That will be the kids will get fat and kids will never want to go out side they will want to play video games, eat junk food. If you stay on the computer for to long, it can make your eyes week and it sometimes can give you canser and you can die from canser or you can get really sick and not die and you will hike @NUM1 sick year of pain. Mostly kids stay on the computer for mores playing stupid games and they will never go out side and they will stay in side for days and never go out side and play with there friends. When they get sick of there games they will want to try and hang out with there friends but they wont be able to they will be to fat and slow. My aunt died from useing a computer to much she had brain cancer and she died she lived for @NUM2 year with the cacer. I felt so bad for my cousin he had to watch his mother die all because she used a computer everyday cause that has her job. Therefor I state that computers should not be used for more than @NUM2 houre a day" 3 3 6 +1132 1 "Dear Newspaper, I disagree that computers are important to people because they have research, online colleges, and online stores. Those are my top @NUM1 reasons and I'm going to give more details. My first main idea is that computers help students find important information help students find important information on a project. You can do on the wikepedia to help find information about the battle of @LOCATION1 and other important history. one example is I went to american history.com to find good information about @CAPS1 alley @CAPS2 and what happened there. People also look up a lot of stuff that involves school. You can get research about the earth and what happens to it. My second main idea is that computers are good for people is when you finish high school, you can go to college. Some colleges can be found on the internet and you can go to college at home on your computer. One example is my cousin. She goes to college on the internet because she has to take care of her two children. Whenever you watch television you see a commercial about online colleges because they are trying to tell you to go to school online. My third and final reason why computers are good for you people is that some stores have an online store where you can look at what they have in the store. Children like to go shopping alot but they can't go to the mall or the stores because you don't want to go. You can let them see what they want and buy it online than going to the stores. It can be shipped to your door without going anywhere. My mom sometimes orders from @CAPS3.C @CAPS4 so she doesn't have to go there. It gets shipped to our house in less than a week. There was my @NUM1 main reasons why people should have a computer. They can find research, online schools, and online shopping stores. This can help people understand computers." 4 4 8 +1133 1 "Dear @CAPS1 news editors, @CAPS2, my name is @PERSON1, and I would like you to write an article on the effects computers have on people. Computers have been the technological item to have over the past @NUM1 or so years. They allow people to learn many new skills, get important work done, and even socialize! However some experts believe that people spend to much time on computers, and that people are not as active or healthy because of it, and. Everyone wants to be healthy. While computers are fun and useful, could they have a negative effect on society? @PERCENT1 of @CAPS3 are employed as of @DATE1, and with that number dropping people need to get more work done to keep their jobs, or even keep their businesses open. With computers available at work (or school) much more work can be done, with programs like @ORGANIZATION1 @CAPS4 people can type reports, and with programs like @CAPS5, @ORGANIZATION2, and iCalculator, workers can calculate taxes faster, so they have more time to work. Some people are working with stocks, and these days, the stocks could be good or bad, so you need to keep up! You can go to the stock websites and control what you buy and sell, without raising you phone bill from calling the brokers. Laptops make work possible on the go to! Computers teach many skills you need to know for jobs, and other skills you @MONTH1 need times in life. You can learn typing, work programs, and programing which are all needed in some lines of work. Computers increase math skills and hand eye coordination to! And you can read your favorite books via online scans!, now you @MONTH1 be wondering why not pick up a real book? Well, you cant online scans, and some are free! Not only do computers teach skills and work, they are very fun too! Between @CAPS6, twitter, email, googleBUZZ, mySpace, ooVoo, skype and gamesradar, there are lots of ways to talk to friends and meet new people. On @CAPS6 I can have up to @NUM2 people talk to whenever I want! Why not talk to real people? you ask, well the answer is simple, maybe it is a lazy @DATE2 and nobody wants to go out anywhere, or maybe your friends want to talk right before bed time. Talking to real people is important, but cant be done all the time! Online gaming has become an sensation!, and not only an @NUM3, @NUM4 and @CAPS8, @CAPS9 and @CAPS10 can game too! So many people are gaming now, that if your not, you are missing out on an amazing experience. Some people think gaming is a waste of time, but the same can be said for any indoor leisure activity, everybody needs a fun activity they can do anytime! Besides everybody likes having fun! Some people believe the ludicrous notion that technology is making @LOCATION1 into fat, lifeless losers, but, it is opposite, you can socialize online and meet new people. People (like myself) can balance computers and games, with exercize and sports. With computers you can efficently complete work and learn new skills! Computers are posotive if used correctly. I hope you like this artice, thanks for reading." 6 6 12 +1134 1 "Dear sir, I belive that computers are great for society. There are lots of benefits to having a computer to use. You can talk to people online with instant message, it is a lot more dependable than a telephone or cell phones. Lots of time people don't answer thhe phone when you need them. With a computer you can send a message from the computer to the persons cellular device. You can lern a lot from a computer, suc as things about the world, people around the world, yo can lern things from the internet youre teacher can't even teach you. Then you can study and expand youre knolage. It is a problem if your on the computer more than you exersize but with techology today you can get exersize wile useing a computer. You can play music from it while you workout, of what moivie while running on a tredmill. Even though people go on the computer to much ways to exersize and use the computer at the same time. So there is ups and downs but in the end, it dosen't matter how much you use the computer, you can get exersize at the same time thats why I think it is a benifits to have computers today." 3 3 6 +1135 1 "Recently, there has been debate about whether or not computers benefit society. Although each side has its own reasons, computers do have a positive effect on people and on society. Computers are beneficial in several ways. With the use of computers, you have the ability to research and learn about foreign and local places you are able to communicate with others and the help people complete everyday tasks. At one point in everyone's lives, you need to know about local or even foreign places. It is completely unrealistic for someone to travel to every place they need to know about. This is where computers come in. Over the internet, you can research everything from the main staple of the diet in @LOCATION3 all the way to the day the new year in @LOCATION1. You learn about things in the comfort of your home, or of your home town. I rember once in @NUM1 grade I had to do a research project on @LOCATION2. By going on the computer, I learned all I needed to know and they some. The project was a breeze, and I got a perfect score. Also, you can learn about local upcoming events, and about the world around you. During childhood, every kid has many questions, some their parents might not be able to answer. Using the computer is a quick and easy way to get these answers. Computers help educate the minds of people and without them, we might not know anything. Communicating with people on the other side of the world is difficult. Mailing a letter could take weeks to reach the recipiant. Computers provide us with a imediate method of communicating with others whether they are local or far away. Last year, my uncle moved to @LOCATION3 for work. I never got to see him.We communicated with each other over computers, and when he came home for christmas, we were as close to each other as we were before he work. Computers kept our relationship healthy and I do not think it would have been that way without them. Scientists say that about @PERCENT1 of all @CAPS1 have communicated with someone at least once through computers. They also say that @PERCENT2 of these people regurally use this method of communicating. Although we still use phones and ""shall mail"", I do not believe that our society would be able to function socially without the availiable use of computers. Everyday, computers are helping people get through their days with minimal problems. People get things done quicker, giving people more time to do what matters most, interacting with their families. Without computers, everyday business would take about twice as long leaving less time for the fun things in life. @PERSON1, my neighboor, said ""@CAPS2 and banking are so time consuming. I do not know that I would be able to handle it without the ability to do my banking online."" In addition to takes and hancing, computers help with everything from shopping to woking for the perfect phone company to use for your new business. Having the ability to shop and browse online takes away ariving, walking and checkout line time letting you relax and take your time throughout the rest of your day. Typing also gives you hand-eye coordination without it, you wouldn't be able to do everyday things such as opening the door to playing sports outside with your children using computers helps people get through their lives easier and more efficiently, I could not even imagine life without them. Computers benefit the people of society in every possible way. By helping them obtain knowleage, purifying and strengthening relationships through constant communication ability, and helping make their everyday lives easier, they have a purely positive effect on people everywhere. Computers have a great effect on people and should continue to be used in everyday society." 5 6 11 +1136 1 "Dear Local Newspaper, @CAPS1 you know that more than half the students in the world use the computer to study. I think that people don't spend a lot of time on the computer. And even if they are it's for studying learning of catching up with old friends. Here are some reasons why I think that computers have good effects on people. Most kids use computers to learn about things they are doing in class. And they also use the computer to study about a country or a person they are doing a report on. Also there are games on the computer that can help you with math. Now onto my secod reason. You can also use the computer to send emails to friends that live faraway, and also you could use things like facebook to find friends that had moved away. And you could also use a video camera to video chat with a friend or if you are a business man or woman you could videochat with clients all across the country. Now onto my third and final reason. Computers also have applications like microsoft word which lets you type things such as essays or term papers instead of having to write them out by hand. Also there is an application that lets you make a powerpoint if you need to make one for a project. And there is an application that lets you paint pictures or draw pictures. Those are some reasons why I think that computers have good effects on people. If we didn't have computers the world would be very different like kids wouldn't be able to search things for projects or type essays. And you wouldn't be able to keep contact with someone who moved away. Also you wouldn't be able to make power points for projects. And that is why I think computers have a good effect on people." 4 4 8 +1137 1 "Dear: @CAPS1 @CAPS2 I think computer are one of the most @CAPS3 inventions ever. They help education make everything @CAPS4 and traveling is @CAPS4. It helps education because @CAPS5 always use computers to help kids learn important information. for example if we have to study for something there are websites specialy made for studing. Also there are sites to teach little kids how to read or write. Allmost all @CAPS5 have computers these days. Some @CAPS5 even give computers to kids so they can use it to study. @PERCENT1 of @CAPS5 in the @CAPS7.S use computers more than textbooks and get high test scores. Thats why computers help education. A second reason is it generally makes everything @CAPS4. For example instead of writing an essay for school and having it take hours than your hand is and to findout its filled with miss-spelled words. Instead you can type it quick and use spell check. I have never heard one person say that the computer hasn't make life @CAPS4. Another example is if you had to find some information on you new dog. Instead of goind to your library spending minutes.You can simply open up you internet and then search it and find the info you need in seconds. That's why the computer make every thing @CAPS4. The last reason is that one. Traveling is such a without a computer With out it you have to go to to buy tickets. In fact I don't even remember what it was like to not @CAPS9 online with a computer all you have to do is go to the parts websites and then but it from there its so easy areselfs to places but traveling mail to each other also. I haven't sent a @CAPS8 card in years. Instead I @CAPS9 email. It quicker, @CAPS4 and more reliable. That is why traviling people and mail is @CAPS4. Over all the computer is one of the most helpful things ever and with technology upgraing daily soon it will be even @CAPS4 to do things. While too much computer is bad and people souldn't @CAPS9 interact with internet. The computer games in handy almost all the time. That is why i think the computer is @CAPS3." 4 4 8 +1138 1 "Dear, @ORGANIZATION1. There has been lots of talk and arguments about computers and wether they benefits the society. I belive it does benefit society. One reson is because you can communicate with others. Another reson is theirs many things to do on these computers or even the world wide web. Haveing computers is always handy. You can talk or web chat with friends. This one time online I found my old friend from @LOCATION1, that I havened seen in five years. Whenever I come home from school I'll go on the computer and talk to all my friends. The computers a great place to make plans or to catch up with some buddies. My next reson for why they benifit society is theirs so much to do. It's like an at home amusment park. The internet is a wonderfull thing. either to do home work or play games. even some @ORGANIZATION1 I'll just sit down for two or three hours and just play a game. But, i still exercise daily. yes, computers can get addicting but, its always good to go outside and exersise. Many people say over @PERCENT1 of the @CAPS1. population has a computer, and @PERCENT2 check email or go on the computer every ten minutes. yes its not heathy but its their dissition. In conclution I belive computers are indeed benifical. I have stated many resons why. such as, They are great for communication or @CAPS2 up with some friends, also theirs an infinint amount of things to do. So if you don't have a computer go out and get one. They will be worth your wild." 4 4 8 +1139 1 "Dear Newspaper @CAPS1, The average american uses the computer at least once, everyday @CAPS2 machines definetley beneffit society, with then people can easily learn about faraway places, learn whithout having to carry heavy books and papers and chat with people all over the country and sometimes even the world. First of all computers can teach you all about the world without you having to go to a library appart for a book free sites like wikapedia provide fast knowledge and most anything, you can use @CAPS2 sites for essay, trip planning and just to satisfy your curiousity some people believe that computers @CAPS13 people from excersizing and enjoying nature however computers promote exercise and going out to look at nature computers provide quick and easy access to travel agencies, as well as information on popular tourist areas, in any reason, They also bring advertising sites for gyms and ideas on excersizing at home, Computers don't hinder workouts and nature walks, they make @CAPS6 easier to do them. But computers make other things easier as well, @CAPS3 can be much easier with the use of computers, @CAPS4 of dragging around heavy books, @CAPS5 can carry a small laptop; @CAPS5 also can @CAPS13 worrying about keeping track of papers. Everything can be saved to a laptop. Computers organized files so even a messy student can keep organized, another advantage is that anything typed on a computer is neat and easy to understand @CAPS9 some handwriting, @ORGANIZATION2 in @ORGANIZATION1 is an example of how schools can be simplified with laptops. Each @CAPS5 is given one to use @CAPS4 of books, ""@CAPS6 is so much easier"" said one student. @CAPS3 is very difficult for some kinds. Computers can make @CAPS6 simplier. My last argument is that people can talk to anyone using chat sites. if someone has a cousin distance country they can still keep in touch @CAPS6's the sam for a friends who moved. @CAPS10-mail is a lot faster than @CAPS7 @CAPS8 mail carriers taking a @CAPS10-mail from one person to another is almost instantanious @CAPS6 is also more private, @CAPS9 mail that is just sealed with give, @CAPS10-mails are pass word protected, there are also other sites that are for socializing, @CAPS11 messages also for People talk with one another, This can help people learn about culture in other cities, @CAPS12 and sometimes even Different countries, @CAPS2 sites can help close the gap between cultures, They can help get video racism they can help make the world more ideal. Computers make our comunity better, They let us learn about faraway places, make @CAPS6 easier to enjoy @CAPS3, and enable us to talk to other people from almost anywhere, so, @CAPS13 anything about, You'll realize computers @CAPS14 are benificial to our society." 5 5 10 +1140 1 "Computers are the future. Computers are the best technology we've created. They allow us to improve our hand-eye coordination, learn about faraway people and places and what with our friends. Computers improve our hand-eye coordinations typing is a good way to improve this vital skill by not looking and knowing which buttons are where. Using a mouse is also a good to improve by moving the digital mouse with the one in your hand. This can improve foster writing, because you are moving the friend in your hand the same way you would move a mouse or type. This can also help driving, because you can't look at the wheel, you have to keep your eyes on the word, and in order to do that you most know how you're moving the wheel. Computers can help hand-eye coordination which can help with writing and driving, with typing and and moving a mouse. Computers can increase our knowledge about faraway places, and people. Cultures come in a variety we can learn about all of them from the comfort of our own home. We can also learn about nature from our home. Learning about different cultures can teach us many things. Like what kind of clothes they wore, food they ate, place the, lived in. This allows us to change our own culture by getting inspired from others. Learning about new places can help broaden the mind about other spots in the world that can lead to a vacation. Lastly, computers allow us to internet with friends from our chairs. Chatting, and e-mailing and video chatting are all great ways to interact. With a webcam you can even see the other person as if you here face-to-face with them. You can also e-mail important files, such as pictures, docucuments, and even videos. This can help with someone's job. In conclusion, computers can teach us hand-eye coordination, can teach us about faraway places and people, and lets us interact and share with friends. Computers are a very important part of my life." 4 5 9 +1141 1 "Dear @CAPS1, More and more people use computers, but not everyone agrees that this benefits society. Those who support advances in technology belive that computers have a positive affect on people like me. They teach hand-eye coordination, give people the ability to learn about faraway places and people, they even allow people to talk online with other people. I will tell you why we should benifit these computers. The first reason is computers teach hand-eye coordination. You can learn how to type really fast. Without hand-eye cordinatoin how are you supose to hit a ball coming at you with a bat, how are you supose to catch a ball with your hands? The second reason is you can learn about far away places and people. Like how we are in the @LOCATION1 and we want to learn about @LOCATION3 or say that we are in france and we want to know about the german people are look it up we dont go all the way down there jest to see the german people we look it up. Now think about it you jest going to fly there and come back the same day. The last thing is you can talk online to anybody you want from africa to the us all the way to @LOCATION2. So you see computers are really speacial becus you see you dont want to write someone amillion things it is not right so we need computers." 3 3 6 +1142 1 "Dear @PERSON1, @CAPS1 you know that @PERCENT1 of @CAPS2 spend to much time on their computers. I belive people should spend more time outside with their family. This can certainly lead to brain problems, hard time seeing and the biggest thing is death. First of all there are people with brain problems because they are on the computer to much. When they are out with their family they think of their computer. People stay on their computer for a non-stop amount of time. In a resent survey it showed that teenagers stay on the computers the most. Most people don't have a life outside their computer room. Most of all eye doctors have been getting call from parents. They are worried that their child/children have a hard time seeing. I interviewed an eye doctor and this is what he had to say, ""I had one child come into @CAPS3 office and he had the hardest time seeing"". He asked the kids mother why is he having a hard time seeing and she said, ""@CAPS3 son spends on average of three and a half hours on the computer."" The child had to get a pair of special glasses so that he could see better. These glasses aare really expensive. I have read about children and adults deing from using the computer to much. They have fried their brain from using the computer to much. Their brain tells them to do things that are illegal. For example: breaking in homes, killing people, and high sacking cars. I heard one kid used the computer to much that he started to kill people and got shot by a cop. The more people die from using the computer to much the higher the death toll will be. It is now or never @CAPS3 friends out there to work together on cutting down on how much we use the computer. I'm sure that no one wants to be part of the death toll until we really have to. It is time to go outside and have fun with your family. They miss spending time with you. So get off your butt and go outside. But wait, make sure you trun your computer off so that you are not temted to go back on it." 4 4 8 +1143 1 "To the @CAPS1, I have recently heard that some people think that computers don't benefit society. However, I disagree with that. First, it allows children and adults to learn about distant places and other things. Also, it allows family and friends to connect with other family and friends. And lastly, it is a form of entertainment on a day that you can't go outside. Some people might not agree with me. However, I believe the computer wasn't a waste of thought. I think the computer is a benefits to society and the whole world. First, the computer allows children and adults to learn about distant places and, other things. People, professors, historians, and either highly educated people past discoveries and information about things everyday. That means everyday someone can learn something everyday of their life. When I do research on a important person in history, I learned things I never learned in school. The computer is the best way to allow people to put info they've learned for other people to see and gain knowledge of each other these are endless possibilities for everyone who owns a computer to learn. You wouldn't believe the things you can learn on a computer. Also, the computer allows family and friends stay in touch with other family and friends in far away places. If there was computers and someof your family moved to a diffrent. There wouldn't be an efficient way to stay in touch with them. The computer allows you to send e-mail to a families computer or celluar phones. The computer is the best way to stay close to your family even though they are far away. My brother is in @LOCATION1 and every day I get on the computer when I get home and video chat with him. If there was no computer, I wouldn't be able to chat with my brother. Lastly, the computer allows a form of entertainment on a rainy day. Certain software gives people the chance to create games and post online to the public. When I can't go outside because of the weather I get on my computer and play video games. The games keep me company. I can never play with other people with online multiplayer. Some of the games are educational also. The games teach you different things about history. " 4 4 8 +1144 1 "Dear @LOCATION4 @ORGANIZATION2, Computers are a great invention but people are starting to dislike it. On the hand, I believe the computers put positive effects on people. First of all, they are a great way for kids to have fun: @CAPS1, people can learn very interesting facts. Lastly, it is a great way to communicate with friends and family. These are a few reasons I think computers put a positive effect on people. To begin with on a computer you can have a lot of fun by playing games. The computer saves money for a lot of us. For example, if you bought a game system it would cost well over @MONEY1 but on a computor you can find and play games for free. Not all games have to be like ""@CAPS2 of @CAPS3"" or ""@CAPS2 of @CAPS5"" they can be games about sports. Supose one student broke his leg and he love playing soccer. He could just on the computer and play a game of soccer even though he has a broken leg. People can @CAPS1 learn various facts right from their computers. The most important thing that computors are made for is to learn new things. No one in the @CAPS2 knows everything, but if every one put what they know into the computer than people can get learne any thing from them, I remember @CAPS6 my friend once told me about some guy named @PERSON2. I had no idea who he was so my friend started laughing at me, @CAPS6 I got home I searched him up and by the time I was done reading about him I knew more than my friend about @PERSON2. If he ever have a question in class and our teacher can't answer it he/she always tells us to either ""@CAPS7"" it or ""@CAPS8"" it. They both are search engines. Not only can you learn a lot from computers you can @CAPS1 communicate with people from different countries. What if @PERSON1 did not invent the telephone? How different would our life be me right now? Anyway most people use the computer to communicate nowadays. Whether it @CAPS9 or @CAPS10, or whether its @ORGANIZATION1 or @CAPS11 all are a great way to communicate with people. With tele phones it costs money to talk with people in a different country, but with the roputer it is absolutely freen. You could be living in @LOCATION1 and chatting with someone in @LOCATION5. You could live in @LOCATION2 and email someone in @LOCATION3. Communication every where is fast and easy with the computer. My whole family lives in @LOCATION6 and it costs us twice as much to make a call there. @CAPS6 we use the computer it is even better because they can even see our fare throught the webcam. As you can see, computers are not negitive at all for all I know is that help people around the @CAPS2. They help kids have fun with the games we can play. @CAPS1, it teaches children and adults various now things. Lastly, it is a great communication strategy. I hope that you put those reasons in our local paper so every one can see how computers have a positive effect on people." 5 6 11 +1145 1 "Dear Newspaper @CAPS1, @CAPS2 you know that over @PERCENT1 of @CAPS3 own computers? Computers are one of technology's greatest and are sweeping the nation, as well as the world. As you can probrably tell, I believe that computers have positive effects on people. Computers teach hand-eye coordination and create the ability to learn and research quickly and efficiently. And don't forget get that they offer ways to chat online. Have you ever played a game of baseball where you just can't seem to just hit the ball? Well, sounds like you need to work on your hand eye coordinator. Studies have shown that @PERCENT2 of people that use computers have an increased hand eye when doing activities like sports or games. So if you use a computer, you'll be hitting homeruns, not striking out. After you've won your baseball game, it's time for homework, and guess what? Your teacher assigned a project that's due tomorrow! Don't panic, get online! Computers help you learn and research, which is faster than going to the library and getting a book. Say you need the date olympic gold medalist @PERSON1 was born, google it! Finally, once you have your information all you have to @CAPS2 is your source. Ok, now your homework is done and you want to talk to your friend about your plans on @DATE1. Computers offer numerous ways to chat online. There's @CAPS4, @CAPS5, @CAPS6, woVoo, @CAPS7, and many more. So you sign into @CAPS7, and talk with your best friend. Now your not bored anymore. Computers are a great way to decrease boredom, just by talking with friends online, but you better go to bad soon because you have @ORGANIZATION1's in the morning! As you can see, computers are incorporated into our daily lives. They're everywhere! I believe that they're changing society, mostly for the better. They teach hand eye coordination, help you research and learn, and let you chat with friends. Additionally, if you don't already have a computer, then get one!" 4 5 9 +1146 1 "@ORGANIZATION1, In my point-of-view, I think that computers are positive and can give a lot of information to us humans. Even though some people say computers are sometimes used way too much, computers help the world get in touch with relatives and family from arand the world, job findings in different countries and states, and also learning about the whole world. I'm going to explain to you why I think computers are positive for humans. To start off, I would like to say that not everyones families & friends live close by to each other. They @MONTH1 live across the whole other side of the world. This is why we have webcams and chatting on computers. How could anyone expect us to see our family in friends if there is no webcam? Okay yeah we have cell phones but not everyone can afford them. People can go to their hearest library and use the computer there for free! The next reason why I say that computers are important is because when you get tired of fired from yar job, you can't just sit home and expect live in your house for free, you have @CAPS1 find another job. You can sign up for jobs right on your computer. How much easier could it get? Now you don't have to borrow your mom's car to go to the interview. Furthermore the last reason I would like to commit is that learning about the world is very important for the young and old. You don't think that every single teacher visited somewhere else and that's how they know about the world? No of course not! Teachers also use computers to look up information on a certain subject. For me I like to learn a bout crocodiles in @LOCATION1. I live in the @ORGANIZATION2. Do you really think I would go all the way of @LOCATION1 to learn about crocodiles when I can just turn the computer on and get-lost in the crocodile world? No of course not. It would be fun though to traver to @LOCATION1 to see that but I don't have that kind of money. To sum all this up, I think you can see my part of the argument. I really consider leaving computers to what they do best, helping humans. It's one of the best inventions ever made. Wouldn't you agree?" 4 4 8 +1147 1 "Dear @ORGANIZATION1 staff, Are computers helpful to us regularly? Computers are very helpful machines that increase productivity daily. Computers not only help people discover @ORGANIZATION1 places and learn more about other parts of the world, but also computer allow people to communicate with others around the world. In addition, computers have word processor and other applications that help workers do their jobs daily. So, now do computers help people learn more about our earth? Many teachers and students use computers daily to help them teach. There are many online websites that help students discover and process different areas around the world. For example, there is a @LOCATION1 website (www.canadamaps.org) and this website has a map and students have to match the place/area onto the map. There are also website such as mapquest & yellowpages to help people navigate cross country and around town. As you can see, computers also help students education and just our everyday life. A large amount of teenagers of all ages like to use a programs on computers called @CAPS1. @CAPS1 stands for @ORGANIZATION2 @CAPS2 @CAPS3. This program allows people of all ages to talk with their friends or colleages instantly. What one does, is type in a chat box to someone and the message is instantly sent to the person. Emailing is used for many things. To catch up with friends, or to talk something with another. One can also attach documents that @MONTH1 consist. Emailing helps things go faster as well as your computers. But, if your newspaper were written out by hand, then that would take a lot of time, people, paper, & money. As you can even see, @ORGANIZATION1, computers are a necessity! So, as you can see computers really are needed. Computers affect us in many ways that aren't noticed clearly or easily. Like I said, computers teach and help people learn about different places among the world today, helps us communicate with others around us or in @LOCATION2! And as well, allow us to bring our work, family, friends, and cases everywhere we, in addition to computers allowing us to word process papers so our lives are ease for our everyday life. So, don't spent your life on the computer but use it for our needs. Please use computers to help our everyday routine. Stop writing on that pad, get up and type it on your computer!" 4 5 9 +1148 1 "Dear @CAPS1, @CAPS2 you probably have seen there is a lot of controversy over wether computers are helpful or harmful. I for one agree computers are helpful because, they help you learn about new things, talk to people around the world, and try new things. For instance have you ever wondered what the capital of @LOCATION6 is? Well with the you could find that answer in the blink of an eye, that's because the internet gives you unparraellel information that no book has. The internet seally lets you see what is happening in or world because there are various news sources, and blogs on the internet, @PERSON1 do you remember the earthquake in @LOCATION4 well I sure do, because I found it out on the internet. You can also find directions to places, sports stats and about different places. Well whats a better way to find out a bout those than talking with people who live there? I don't think anything is, seriously is it better reading about @LOCATION5 or talking to someone in @LOCATION5? Thats the beauty of the internet is it bonds the world together into a tighter realationship, I remember chatting with people from @LOCATION3 while the gold medal game @PERSON3. Sure some people would say that you could meet someone in person from a different country, well how would you meet someone from @LOCATION2 in @LOCATION1, because I never have. People could say go to the place to talk to the person and, with the internet, it's very possible. Have you @PERSON1 wanted to go to @PERSON4? Well with the internet all you need is your credit card and you could be there tomorrow because the internet allows you to try new things. Have you ever wanted to try pingpong, it so you could or does a set offline and have it shipped to you in a couple of days, I always wanted to go to a zoo but, I didn't know of any, so I used the internet and see school for zoos near @LOCATION1, @LOCATION1 and before I could move the results for @PERSON2 zoo were right infront of me. That is why the internet is very helpful. To sum it all up the internet is very helpful to people who use it correctly, but I agree that the internet can be inappropriate. With blackson the not needed sites the internet can do almost anything." 5 4 9 +1149 1 "Dear Newspaper, Advances in technology, while amazing, don't always have a positive effect on society. That is why, I honestly believe computers do not benefit my community. For instance, computers can be very dangerous and people these days just seem to spend too much time using them! Not to mention, computers cost way too much money. To begin, my mom and dad always say, ""don't talk to strangers,"" when I go out. I think they should say the same when I go to use my computer. Computers can truly be dangerous for someone who isn't careful. For example, online predators often depict themselves as someone they aren't. Therefore, you can't ever really trust someone you simply met in a chat room. Also, cyber bullying is another problem computers put people at risk for. Another danger computers have, is anything posted on the internet can be accessed by almost anyone. This includes pictures, blogs, comments and. I believe society would be better off without the constant worry of a computer! Secondly, people, especially the younger generation, spend excessive amounts of time on computers. Some people spend hours each day using a computer when they could be doing an activity that actually benefited them. If people spent just as much time helping their community as much time helping their community as they did on the computer, the world would be a much better place to live. Not to mention, it would bring people closer to one another. Computers seem to control peoples' lives and that just isn't healthy. I think people should spend more time living and less time with their faces glued to a computer screen! Lastly, computers are like vampires, sucking away your money. In @DATE1's economy people need to be saving their money for college or even simpler things like a new pair of shoes! Additionaly, at the rate that technology is advances, even the most high-tech computers are out of date in a year or two and a new one is needed. Also, computers' prices are constantly rising. It is very hard to keep up! I strongly believe computers are a waste of money and bring society down. All in all, computers just are a negative attribute in communities across the @LOCATION1. First off they can be dangerous. Secondly, they are too time consuming and, thirdly, computers are too expensive. Computers just simply are a hassle in @DATE1's world." 5 5 10 +1150 1 "Dear The @CAPS1 @CAPS2 @CAPS3, Computers are a great piece of technology. Computers are great for many reasons. Three of these reasons are pleasure, convienience, and education. I believe that these three reasons are the main reason we use computers today. One reason we use computers is for pleasure. On certain websites, you can talk to friends, see what your friends are doing, you can even video chat with them. Also, you can watch movies, @CAPS4 episodes, and videos. In addition, you can listen to music, play games, and check sports scores. I strongly beleive that pleasure is one of the main reasons we use computers today. Another reason why we use computers is convienience. Most people in @LOCATION1 have a computer in their home. Computers are convienient because you pay bills on the internet. You email co-workers about jobs. In addition, computers can help people create websites so their their buisness is more noticeable. As you can see, computers are a very convienient piece of technology. The final reason why we use computers is education. On a computer, you can learn just about anything. You can learn about @CAPS5 history, sports, you can learn about current events in the world. Computers can help you study, take notes, and helps do your homework. When I have a project, I always use the computer to find important information about the topic. As you can see, education is the most important reason why we use computers. Now, I think you understand how computers are important in @LOCATION1's education, pleasure and convienience. I hope you listened to my opinion on computers and I also hope you continue to tell people how great and important computers are." 4 4 8 +1151 1 "Dear Local Newspaper, @CAPS1 is my belief that people are spending too much time on computers. Now a days you can do anything on a computer. Such as, talk to friends, play games, even turn off your lights! But, what are they taking away from us? There taking away communication skills and is same uses creating cyber bullying. They also don't let us enjoy the beauty of nature and exercising. One out of every @NUM1 teens spends more time telling people on the computer then face to face. This way of communication prevents children from learning valuable social skills which come with conversing face to face. This makes @CAPS1 more difficult for children to make friends, or even to do well is work intencies. Studies say by each upcoming generation the communication skills are decreasing by @PERCENT2. Eventually, if @CAPS1 continues to drop at this the will have a world that went. This style of communication has ever a new type of bullying. What have we do to people? You waste over @NUM2 days a year sitting in front of your computer. in this wasted time you could be out going for a jog or walking the day. in fact, the percentage of people that have computer is much greeter than the percentage of people that do not only you exercising for yourself. The computer cant do @CAPS1 for you. Sitting in front of a computer does nothing for your body. You physicaly have to get up and move. Its good for your health, got fresh air. Coming to a point about fresh air @PERCENT1 of people who use computers at home are more likely telecom sick than people who doesnt leave you set seem for sometimes. Seeing nature like never before, I dont think. Yes you can look us the green spotted tree from on the internet, but its nothing like in nature and @CAPS1 is real life. Discoveries cannot be made about new species on the computer, a computer cant find @CAPS1 for your find @CAPS1. People are and less about the environment does to computer. They are seeing a picture not the healthy. After writing this I can te the that I was about myself and personal, which scared me the most I realizes I am becoming more and more dependent on computer each day. I dont seeing friends as. I dont go outside as much, and I don't as much. This true for must people whether you realize @CAPS1 or not I personaly ongoing today and out on time computing you will te. Computer are to much lets for from there hold and deo something more with there lives. This well improve our. So this brings to my final that computers are a bad influence on human and we should use less of them and for ourselves by doing not seeing. Thank you for your time." 5 5 10 +1152 1 "Dear local newspaper, I am writing to you today about how more and more people are using computers. I think that this is great. The reasons why I think so is because it teaches hand-eye coordination, it gives people the ability to learn about faraway places and people, and it also allows people to talk online with other people. Keep reading to find out more. The first reason why I think that more and more people are using computers is because it teaches people better hand-eye coordination, for example, there could be a program for the computer that teaches you to type with your hands and not just your index fingers. You then can learn how to do all this without even looking at the keyboard. Keep reading for more information. The second reason why I think that more and more people are using computers is because it gives people the ability to learn about faraway places and people. For example, if you have a project for school and you are doing research on another country, you could use your computer to get more information about their religions or just the whole country in general. You can also use the computer to look up different kinds of people. You can look up people like @PERSON1 from @DATE1's to @PERSON2 who is our presiden now. Keep reading for more information. The last reason why I think that more and more people are using computers is because it allows people to talk online with other people. For example, you could set up and account on facebook, myspace, @CAPS1, or @CAPS2 and start talking to people. You could get to know some kids who live in you neighborhood that you never even knew. Keep reading to find out more. Lastly, I think that more and more people are using computers is agreat thing. They can learn hand-eye coordination, have the ability to learn about faraway places and people, and have the opportunity to talk to other people online. I talked to the people who have just started to use computers and @NUM1 out of @NUM2 people said that they had liked what they had seen. So, I want you to go out there and get a computer and see what you think about it. Thank you." 4 4 8 +1153 1 "Imagine this: You entered a raffle at your child's school for an all-expense paid trip to @LOCATION1, and you won! You are so excited until you realize you know nothing about @LOCATION1. You don't know what the weather is like, you don't know what kinds of food they eat. You're not quite sure how to prepare for the trip. So you go online and learn everything and anything about @LOCATION1. You pack appropriatly, and you have a great time. All because you had a computor. Computers can help you get a better education, no matter what your age. It also gives you the ability to keep in touch with friends and family, and are necessary for many jobs. Computers help many people learn about different countries and cultures. We know so much more about other places now than we did before computers. But computers can teach you so much more than just different countries. They can teach a whole new language, or help you understand the science lesson better. There are many online colleges where you can learn the lessons online and on your own time which is good if your really busy. The internet is a great way to keep in touch with your friends and family. You can use email, instant messaging, video chatting, or you can make an account on websites like facebook or myspace. For example, my cousin is in the navy, he has been for @NUM1 years, and before I got a facebook, I had lost touch. Now I talk to him all the time. When most people hear computers, the first thing that pops into their head is ""internet"". But that's not all a computer is good for. Nowadays, many jobs use computers. Banks, @CAPS1, teachers, @CAPS2, even cashiers. Computers are no longer a luxury; they have become a necesity. In fact, @NUM2 out of @NUM3 jobs require a computer. Computers allow you to type up that book report, or make a very important letter look professional. Computers have changed the world; and once it's changed there's no going back. So, it looks like access to a computer made that trip to @LOCATION1 easier. Clearly, computers have become a part of every day life. You can keep in touch with your friends and use it for your job. But most importantly, you can learn so much!" 5 4 9 +1154 1 "Dear Readers, I understand that some @MONTH1 think computers can effect peoples' lives. This is because it causes them to not go outside excersising and enjoying nature. My point of view is that people have the choice to go out side, exercise, and enjoy nature. Computers give so much information that it could give people ideas of fifferent activities people can do outdoors. Computers also have abilities to download videos and other soft ware that people can look at and perform excersing with them, and learn techniques. In my life my mom and dad, and many other people im my family, look online at different websites to see what activities we can do on the weekends and seasonal activities. Computers are very important and are life changing. If it wasn't for computers some people wouldn't be able to get an education. Doctors, police officers, and banks use computers for thier job and it helps us go through are everyday lives with ease. From what i see and understand i that computers have a positive effect on our lives. Computers can be negative but it all has to do with self control and how you use it." 4 4 8 +1155 1 "Computers are becoming more advanced everyday, almost everyone owned, or owns a computer. I think, ther benefit society very greatly. One of the many ways is, they teach you hand eye coordination. So even @CAPS1 your playing games your hand-eye coordination @MONTH1 be improving. With hand-eye coordination you @MONTH1 need it to play sports like baseball. When do you need hand-eye coordination the most? I use it most, when I'm playing hockey or, baseball. So next time your on a computer, remember your hand-eye coordination is improving. Another reason we benefit from having computers, is we learn about far away places. @CAPS1, you know about places that are far away from you that you can or can't travel to, use a computer to gain some background knowledge @CAPS1 you travel somewhere on business and know nothing about it, what do you do? I know! get on a computer and do some research about it! An example of this is, @CAPS1 you have to fly out to @LOCATION1 and don't know anythin about it, use a laptop on the way over there. @CAPS1 you do that, you'll have some schema about the place. As you can see laptops and computers are great for learning of foreign countries. Finally, computers are great for learning a new language. You need to learn spanish in a couple of weeks. What will you do? Download a free language learning app. @CAPS1 you don't know a lot of french and need a few words but don't have a dictionary. Use a translator. When you are talking to someone from @LOCATION1 and you don't know there language use an english to african dictionary translation app on your computer. Computers have a great translater applications that are free so, @CAPS1 you don't know a language hop on a computer and learn it! In conclusion, computers are used every day and help us greatly, weather it be learning a new language, or just talking to friends. Computer benefit society greatly." 4 4 8 +1156 1 "To the editor of the daily newspaper, I strongly believe that computers have a negative affect on people of all ages. Computers these days are being used way too much for useage of priveleges that we already have. While people are using the computer for random activities, they are not having any physical activity. Also emailing and facebooks are great websites to communicate with but people are checking emails all the time instead paying attention to when their parents get home from a long day at work. With this people are so consumed into the computer that kids get side tracked and forget to do homeworks. Computers are great invention but with todays society there are to many issues that aren't always being appointed. In the first place, people aren't getting the exercise that they need because they are playing on the computer or video chatting with a friend. About @NUM1 of america is obess so excercising should definitely be a priority but with these new websites and activities on the computer people are getting held back. With this, kids and adults are communicating in high end ways that waste too much time. The computers have so many stupid activities that are not needed which make us not excercise because many people think that the options and webpages are important and needed. Indeed computers are a technology that is needed but people are taking advantage of it too much by having their whole life in the computer instead of having it toward other things such as excercising and being healthy. In addition to computers taking away from excerscising they are also taking time away from your family. For example, @TIME1 when my dad got home. From a long day at work no @CAPS1 truly a bear hug that he was longing for because everyone was so interested in their email or what my sisters friend just said on facebook. Family is the most important part of your life and if computers are getting in the way, computer use absolutely has to be changed. Which is more important to you, family or computers? I understand that you still talk to your family and give them hugs but when you rae talking to your sister through facebook eventhough there just in the next room. It is lobvious needs to be done. Computers affect you and everyone around you in more ways than @CAPS1. Finally, computers take away family but also schoolwork and works. Most kids spend so much time on the computer and they to do their homework. This is unexeptable and can be away, kids and teenagers are always playing games, facebooking friends and video chatting making them realize at that they need to start their home work! A girl from @PERSON1 said, ""@CAPS1 time I was on facebook for the whole afternoon and then I realized I never started my @CAPS2 essay!"" This has happened to so many people because computers are too distracting and drain your brain. Moreover, yesterday I remember that I was video chatting my friend for @NUM2 hours and didn't start my homework until @NUM3! The computer evryone that goes it which is uneceptable. Without computers a negative affect people. off people exercising out with time in the computer which is unbelievable and terrible. Also they cut communication with your family making it rare to truly bond with them. With this people become glued to the computer and forget to do their homework. Overall computers are that make life that much more stressful. Thank you for listening." 5 5 10 +1157 1 "In myopinion computers are a good sorce @CAPS2 imformation, camuni-cation and business computers make things easier. @CAPS2 example, instead of going to the libarary to get information on something, you can you use a computer. Computers are one of the most advance technology, you can search anything in the world. computers are also a huge help on a project @CAPS2 school or @CAPS2 work some peoples jobs, they are required to use computers. Computers are even good @CAPS2 learning about things you've never even heard of. Some people even take classes online. Computers could also be helpful to plan a vacation. computers are often used to comunicate with others, family, and friends. if you own a computer, you mostly likely have an e-mail, homepage, or @CAPS1 to keep in touch with people. There are even sites to meet newpeople. In my opinion, I think computers have a positive effect on people computers can be used @CAPS2 many things, they are a good sorce of technology. Computers could take much time off your hands, @CAPS2 example, you have a @NUM1 page essay due tomorrow, I'm sure it'd be way easier and faster to type it out than to write it and mess up, @CAPS3 typing a letter or paper, computers have ""@CAPS4 @CAPS5"" so if you mess up on a word, it will shaw you where you made your mistake to save more time." 3 3 6 +1158 1 "Dear newspaper I think that there are many reason why computers are good for people. Compters are good for people because they help keep friends conected. Reason two is that they can be great knowledg for people. @CAPS1 third reason that computers are good for people is that there are many programs that are team based and help people with teamworks and team building skills. Those are three of the many reasons why I think that computers are good for people and have had a positive effect. First of all, I think that computers are good for people because they help keep friends connected. If you move to another town, go to a colledge far away, or move because of a job you will most likely, if @CAPS5 is further away, loose connection with you friends. But, using a computer can solve that problem. In social networking sites like @CAPS3, twitter and myspace you can simpily look up your distant friends from you previoulsy lived and have contact with them. Youi can catch up with each other, recall good times you've had, end maybe make plans to meet each other sometime. @PERCENT1 of @CAPS2 have been reconnected using social networking site on a computer. Experts also say that @CAPS5 is important to stay connected with your past to sustain a well being and to be happier. I have had an experience when a scoial networking site has reconnected me with a @CAPS2. When i was younger I had a @CAPS2 whos grandmother lived to @CAPS1 dad. After a little over a year of him being good friends be moves to @LOCATION1, I thought I would never hear from him again. Later that year I also moved to a different town, @CAPS1 @CAPS2 searched me on @CAPS3 and we got connected again, I have found out he moved back to where I use to live. That is the first reason I think that computers are @CAPS4 good for people. The second reason, @CAPS5 is that computers can be great knowledge scources for people. If you ever need to set information that not have to through the of book,then, a computer is the thing for you. As long as you than to find an accurate and reliable scourse than a computer. Is an amazing tool. You can look up almost anything and you will be able to find locks of information on @CAPS5. Statistics show that you can find @PERCENT2 more information on a computer than a book. Experts have stated that soon books will be obsolite and computer will rain as knowledge scources. That is the second reason why I think computers are good for people. Last of all, I think that computers are good for people because there are many programs that help with teamwork and team buildings skills. What I by programs is yes of course videogames. Almost all of the computer games out have multiplayer features. Withins the multiplayer universe there are match types that involve a great amount of teamwork. In the age games you must communicate and talk to your team if you want to win. And that is the only way you will win is by using teamwork. That is @CAPS1 third reason why I think computers are good for people. In conclusion, I think that computers are good for people, they help to reconnect friends, , knowledge, and build teambuilding skills with programs that are out for @CAPS5." 4 5 9 +1159 1 "In a study conducted by @ORGANIZATION1, @NUM1 out of @NUM2 people are spending more that @NUM3 hours a day on the computer. ""@CAPS1 computers became so popular here has been an increase in social problems, health issues and pollution,"" says @PERSON1. The question is then, do computers really benefit society or do they have a negative affect on people? I strongly believe that these computers are badly affecting us. First, less people are spending time outside enjoying nature. Imagine, sitting outside under the brilliant fall sun as leaves of red, yellow, and green dance with the wind. How will anyone see the beautiful sights of the outside world if their eyes are glued to the computer screen? Eight out of ten @CAPS2 surveyed by the national nature @CAPS3 admit to not going outside on sunny days but instead play on the computer. ""The more people who see how beautiful is the less likely they will pollute it with smoke. Dr @PERSON2. How is our country supposed to be clean if people want even turn off the computer the @NUM4 hour a day and see the world? In conclusion, computers have a negative affect on person because they seeing beauty. Second, computers take up so much time that people are with their families. I used to think that talking with someone. Now, I've realized that talking in real life with people is better. I remember meeting the girl. She woulod always talk with email texting of instant messaging. Seventy-nine percent of families split up due to social problems. All smart, intelligent people talks about families or just car and around, these sucessful people know the key to happiness is communication and are working to help get rid of computers. Lastly, more time on computers means less exercise. Teenagers are supposed to get one hour of exercise each day but @NUM5 out @NUM2 teens surveyed at @ORGANIZATION2 admit getting that exercise. There has been a @PERCENT1 increase in a obesity in children from @DATE1 when computers weren't big. Now almost @NUM4/2 of boys in @NUM8 grade at @ORGANIZATION2 agree to spending too much time on computers. In conclusion computers take away some important things line exercise. Come on now-can't we agree that computers have a negative offers ? our poor environment is getting killed because no one sees the beauty of families are seeing occupy their lives most a lot up and sight against computers today! It will be the best choice you ever make." 6 6 12 +1160 1 "Dear local newspaper, I believe computers have a good effect on people. The reasons believe that is because the computer teaches us a lot of things, you can also find a relitive you have not seen in a long time. Two more reasons is because you could talk to your friends, another is you need it to put music on @NUM1's, @CAPS1's and other devices. My first reason I thought computers have a good effect on people was because it teaches us alot of things. If you wanted to know about a countries culture you will be able to go and find out on the computer. Without the computer you would have to visit not knowing what shot to take for sickness they have. Other things it could teach you is how to get from one place to another without stopping to ask people where a place is. It's important to know things on on the computer you can look it up and find out. Another is you can find a family member you haven't seen in along time. Being able to reconnect with someone is very important. What if something happened to them and you didn't know, like a broke leg or hip you can find out if you find them on the computer. Also alot of people @MONTH1 have family they miss and want to be close to or talk to again they cannot find them and fill close to them again. And they can find you if they relly need to talk to you. You could also talk to your friends in a chat room with other friends or alone. If you have moved far away the computer is a good way to keep in touch with your old friends. Talking to a friends releaves some kids of their stress they had. It helps when your friends make you laugh and talk to you about leaving everything alone and breath. Everyone has one friend that talks them out of doing bad things. A friend like that is helpful. Last reason is you need a computer to put music on your @NUM1 players. Music is very fun and alot of people love to listen to it. If you had no computers there would be no point in buying a lot of electronic devices because a lot you need the computer for. People like to listen to music on their @CAPS1 or @NUM1 while exercising but you need the computer to put music on it. Without computers their's no point of music. In conclusion I think computers have a good effect on people." 4 4 8 +1161 1 "To @CAPS1 it @MONTH1 concern, today people of all ages are useing computers. Computers are a great way to do reports, talk to friends & family, & also to research things you @MONTH1 have needed to know. Kids in @ORGANIZATION1 have many projects to do & most of these projects involve writing a paper. Teacher have troble reading other hand writing so it would be helpful for the students to use the computer to print out a very neat paper. The computer has many ways that you can write that paper & now it will be very helpful. The near by libarry will always have extra computers students can use to write a papper. If you walk by a teenager on the internet, now a days you @MONTH1 find them on '@CAPS2'. '@CAPS2' is a website to talk to friends & relatives. Some of these relatives @MONTH1 live very far away or not have a phone to talk on, so you can talk to them here. Some people think '@CAPS2' is 'stupid' & can't be any good, because it takes away time for homework, but what if a @CAPS3 forgot to write down the homework? The @CAPS3 could go on '@CAPS2' & chat with a friend from @ORGANIZATION1 to get that home work. There are many search engines on the computer such as '@CAPS4 pile', '@CAPS5', or even the ever most popular '@ORGANIZATION2'. Most people use these web pages to research for papers, trips, or even just to find out random information. Many people want to go to @LOCATION2 or @LOCATION1 for @CAPS6, but don't know what to do when they get there. By going on one of the search engines they would find that in @LOCATION1 they could go to the @LOCATION1 zoo. In @LOCATION2 they could go to @CAPS7 world or the @CAPS8 @CAPS9 @CAPS10 to learn all about @CAPS11 & how it is in a @CAPS9. Thank you for taking the time to read this & I hope you will look into what I said." 4 4 8 +1162 1 "Dear Local @CAPS1 Newspaper, @CAPS2 I see why some people think that computers and technology are bad for society, I on the other hand strongly disagree with them. In my eyes technology, especially computers can bring people together and computers are very benificial to @CAPS5. Also computers can save you time and money now. First off computers can bring people together. I had one of my best friends move across the country, all the way to @LOCATION1! and I don't get to see her so I now video chat with her on my laptop. and if I didn't have that opportunity then we probably wouldn't have stayed in touch with each other. That experience was not only with a friend but it happened with a family member as well, my grandmother. Every year for passover the whole family comes to house to celebrate but because she is getting older we video chat so she can see the whole family together. It is wonderful experience. As I said before computers can be benifical to @CAPS5. You might be thinking ""@CAPS3 it can only understand that but I am a student at @ORGANIZATION1 and sometimes I forget to write an assignment down so I get my laptop and go to @ORGANIZATION1 notes. com, if that was have gotten a zero on the homework. See! Computers are very benifical! Have you ever been in a situation where you need something but you just don't have time? Well now many things can be ordered offline. You can get things from food to cloths and toys. Surveys have proven that over @PERCENT1 of average @CAPS4 order off of the computer and save money from gas because they don't have to drive. Overall, I think computers can be handy and helpful to all ages, @CAPS5 with homeworks, family and friends and adults who don't have a lot of time. And I think as years go by more and more people will start to realize that." 4 4 8 +1163 1 "Dear Newspaper, I strongly believe that the effects on people caused by computers are positive. Computers can help you connect with far away friends or family members, find great naturistic parks, and help you find local @CAPS8 or exercise equipment. These three reasons will show you that computers are a very important asset to our society in the following passage. To start off, computers can help you connect with faraway friends or family members. According to a recent study, @PERCENT1 of @LOCATION1 citizens have talked with a friend or family member living across the country via the internet. Another survey done by The @CAPS1 @CAPS2 @CAPS3 magazine showed that the computer is the best way to stay connected with a loved one. @CAPS9 best friend @PERSON3 is @CAPS4, and all of his cousins live in @LOCATION4. @CAPS6 told me, ""@CAPS5 the computer was never invented, they would be like ghosts to me."" @CAPS6 relies on the computer to talk to his loved family. Clearly, the computer plays a huge role in reconnecting faraway friends and family members. @CAPS10 would you feel @CAPS5 you loved nature but could never find any amazing parks? @CAPS9 guess is terrible. Luckily, all you have to do is type in ""amazing nature parks"" in a search engine. In about two seconds you should have fantastic results. Many believe that the computer takes away time to enjoy nature, but I believe that @CAPS11 enhances @CAPS11. @CAPS9 sister loves nature, she loves taking pictures of beautiful scenery. However, she lost interest over time. She said, ""I got tired of taking pictures of the same local things everyday."" I typed in nature parks on a search engine, and @CAPS9 sister is back to traveling all over @LOCATION2. Lean @PERSON2, a nature expert says that @PERCENT2 of people who lose interest is because they don't know any new places to go. Also, nature in a @CAPS7 magazine concluded the best way to find nature, is the internet. As you can see, @CAPS5 @CAPS11 wasn't for the internet, barely any one would have the love and passion as most people do today for nature. Who needs excersize? Everyone. Currently, @LOCATION3 is extremely overweight. We need to enroll more @CAPS8 and create more exercise equipment, but @CAPS10 will people find out? Over the computer. According to @PERSON1, @PERCENT3 or @CAPS8 have a website which can be accessed over the computer. ""The best way to get members,"" @CAPS8 @NUM1 @LOCATION5 magazine stated,"" is to create a website online."" @CAPS9 friends dad recently just joined a brand new gym that opened up three days ago. ""@CAPS10 did you find out about @CAPS11?"" I asked. ""@CAPS11 was simple, I just searched local @CAPS8, and @CAPS11 came up!"" Experts say that the computer restricts time to workout, but in all, truth, the computer is the key to the gym. Connecting old friends and faraway family, finding great nature spots, and finding local @CAPS8 and excersize equipment are three very hard things to do. However, these are three things the computer does very well. @CAPS5 reconnecting with loved ones, loving nature, and exercising are bad effects on society, then what is good?" 5 5 10 +1164 1 "Dear @CAPS1, I am aware of the current debate about technology, however more spacificly computers. Computers are a helpful interesting & even fun peace of technology. Computers open the world to new people & places & limmiting that is uncalled for. Computers are keys to inavation & creation. When @ORGANIZATION1 did a study on the use of computers @PERCENT1 of people said they got their news files & even planned threw the computer & now @PERCENT2 of creations are being done through the computer. This illustrates the power of computers allowing people to do things that were once impossible. Now humans are capable of spreading info around the world in seconds. Computers also business grow through advertisment or work softwares. Computers are the key to help open the world to new possabilities & options not possible @NUM1 years ago. I understand my oposition is not only against computers but wants to limit there use. That is unfair & possibly unconstitutional. They argue that people exercise less due to computers, however @PERCENT3 of people, when asked has computers negativly impacted your exercise said ""no"" & one man stated ""because of computers I learned new workouts & even found a great local trainer."" @CAPS2 you can understand computers are not just about games & toys, but allowing people to grow & learn more to help them find plasas to travel & assist in their exercise. Computers are a wonderful tool when it comes to communication. Emails, @CAPS3 and other softwares allow people to communicate accross the world. @CAPS2 the world begins to inovate itself communication is key. People are capable of spreading news in seconds, infact @PERCENT4 of news is now done through the computer. New @CAPS4 times & the wall street @CAPS5 have moved their news mainly to the internet allowing people across the to see them. Work is also primairly done through the computer now. People are able to send files, ship & even order online. Even important business meeting are done throught the computer, where all the people can be at their house. Computers are neccesity when it comes to communications work & news. I hope you understand & put to use my opoinon. Computers are needed to grow @CAPS2 a world solving problems comunicating & expanding that is why I belive there is no problems with computers." 4 5 9 +1165 1 "Dear @PERSON1 @CAPS1 I am writing this letter to inform you that I think computers are a smart investment for a couple of reasons. The following are some reasons on why computers benifit society, they allow children to do homework with some help, children can talk to other friend and when children are board they can play games music on it. UGH! I don't get this sometimes I am sitting at the kitchen table tring to do my history homework but I don't know the year the revalotionary war was. @CAPS2 I go in my room turn the computer on and @CAPS6 there I go to google and look up what I need to know. This also benefits parents too because if they are doing the bills or something they don't have to be bothere, the kid could look it up and know it is @CAPS6! Finally all my homework is done but my computer is still on I'm going to see who is online that I can talk to and make sure I didn't miss any homework. Talking to your friends online could help you stay in contact with friends in other states or just people you don't see very often. This can help make new friends or make friendships closer and cause less problems. Alright no body is home or online @CAPS2 I think @CAPS3 going to kick back turn some music to kick back turn some music on and maybe take a nap. Or I can play the new counter strke game I got ! YEAH on playing counter strike. Least death on my team that game! Alright thats enough of counter strike for the day I think I'm going to turn same music on and lay in bed. Now that I have told you all of the benefits of computers You @CAPS4 @CAPS5 @CAPS6! keep in mind that it can help with homework, talking with friends, or just having some fun." 4 4 8 +1166 1 "Dear @CAPS1 @CAPS2, Computers are helpful once in a while but @NUM1 out of @NUM2 people believe that they are a waste of electricity. Computers aren't beneficial to everyday life overall. When people are on the computer they spend multiple hours on it. This means that they aren't getting enough exercise and that they are harming them bodies. Not only this but people have a tendency to use this machine obsessivly. They spend more attention on the computer and not enough time with your family. Every one knows exercise is important. However, what happens when we don't get enough? Heart disease is the number one cause of death in the @LOCATION1. Heart disease is caused by obesity. That's what happens when you don't exercise. When you are on the computer you are sitting down rather than moving around. This means that your motabolism isn't going and you burn less calories. That is not healthy for anyone. Even people in perfect condition. Gaining weight isn't the only way you can potentially harm your body. When using the computer you have to look at the screen which is with very bright @CAPS3 lights. After looking at the screen for so long your eyes will begin to feel the affects of the lights. Many people say its like staring into a flashlight for an extended amount of time. About @PERCENT1 of the kids at our school wear glasses because of using the computer for to long. That @PERCENT1 is @PERCENT2 more than we had before. We used to have about @NUM3. Like I said before, when you use the computer you use it for an extended amount of time. What about family? They deserve more attention than a machine. To spend more time on the computer than your own flesh and blood isn't right. In a survey an average of @NUM4 out of @NUM5 people said that the spent about eight hours on the computer between work and home, and about an hour with family. The results were more than shocking with all of this in mind, ask your self how useful the computer really is. Sure it's good at researching things quickly but its also good at making people gain weight, making people spend money on glassses and tearing them away from their family members. At the end of the day, the computer isn't very helpful at all." 4 5 9 +1167 1 "How do you think the world would be without computers? I think it would bring us back a couple of ages. We need computers for communication and to learn things that need to learn. Without computers our country would be nothing. People say you don't get enough exercise and don't enjoy nature enough. Well there are ways to do that too. Communication is one of the greatest things about computers. Teenagers love to @CAPS9 @CAPS10 eachother when there at home because its so fast its like really talkiing to them. @CAPS1-@CAPS2 is another thing people love to use. Bosses of companies use @CAPS1-@CAPS2 to send @CAPS10 to everyone so they're all on the same page. There is also a new video chat were you can talk face to face with someone and see them from the other side of the world if you wanted to. You can also learn all you need to know on computers. They have dictionary sites, history sites, encyclopedia sites, etc. You can find any certain time in history and have a whole site on it. Or a site called wikipedia you can look up a certain thing and get a whole web page dedicated to the info of that object or person. Schools also use sites to help students have their knowledge. They have math sites, english sites, @CAPS3 studies sites, and (a science teacher favorite) @CAPS4 @CAPS5 for everything you need to know about science. They also have lots of websites for help with a new language. There is a recent program out caled @CAPS6 @CAPS7 that is on the computer but teaches you any language as well as any human teacher. Some people still say its not enough. They say you still need exercise, nature, and time with your family. You can still do all that on computers. You can look up certain workouts that you might want to do. You can search good trails to hike on that are near where you live. They have websites (like @CAPS8) were you can @CAPS9 @CAPS10, @CAPS11 pictures, play games, and video chat with your family members who @MONTH1 be living across the world from you. But you canstill do it. Even though I explained a lot of reasons why computers are a great thing to have, there are still a ton more. The teach hand eye coordination and many other things too. You can check sports scores from the night before or check sports score from @NUM1 years ago. You can do all this on the computer and more. This is why computers have a positive effect on people and everyone should have a computer." 5 5 10 +1168 1 "Dear, newspaper writer I think the computer has a posative effect of people because @CAPS1 helps people around the world learn to speak a different language, @CAPS1 helps people talk to their friends around the world and @CAPS1 helps people by making @CAPS1 easier to write a letter and send @CAPS1 out to people they work for or to their bosses that need the report in by the end of the day. Those are the three reason that computers have a posative effect. @CAPS1 helps people learn to speak a different language without spending a lot of money like using rosetta stone you have to spend @NUM1 us dollars but online you dont have to spend a dime. the best part is that @CAPS1 is free. The slogan for rosetta stone is ""I have spent less money than months of formal classes."" I think their new slogan should be is "" we have a better learning company than anyone else."" That is why @CAPS1 helps people learn a different language. @CAPS1 also helps people by making @CAPS1 easier to talk to their friends you can aim, web cast, and ever text to make @CAPS1 easier @CAPS1 talk to friends on the internet. The reason they created that is so people dont have to travel to far away places and spend money to tell a friend important news that is only one thing. So in conclusion you dont have to spend a lot of money to tell a friend something. The third reason that the computer helps people is that people san e mail theor boss that they are faxing their final repoet to the big interview for a new position in the place where they work, @CAPS1 helps your boss by making @CAPS1 easier to read and @CAPS1 better because you could be in japan and your boss could be in florida @CAPS1 will take like @NUM2 minutes to get to your bosses computer. That is why @CAPS1 is easier to send messages to your boss. The three main reasons are that you can learn a different language without paying a dime that you can talk to your friends easier and that you can send messages to your boss easier that calling him or her. Those are the three reasons that computers are posative." 4 4 8 +1169 1 "To middlebury paper, @CAPS1 the article on wether or not computers benefit society, my opinion is that they have lots @MONEY1 pros to make them a worthwhile thing to have in our towns schools, homes and businesses. They can help more than they hurt, and can you honestly see your life without checking e-mails and keeping up to date with our society? Computers in schools help to increase the amount @MONEY1 learning our children. @CAPS1 example, @PERSON1 can study their math facts online @CAPS1 math or learn about the skeletal system @CAPS1 health classes. It also is an advantage is conserving money because instead @MONEY1 having to pay @CAPS1 your son or daughter to fly to @LOCATION1 to learn about the collisreum, you can let them learn about it on the internet first, to see if the trip is actually worthwhile. Also an essential thing needed to life is hand eye coordination, and a way to practice that is playing exercise practice games on a computer. Thats help install the coordination your towns children will use @CAPS1 the rest @MONEY1 their ! Educational benefits will only increase as technology, so cutting children from it now is a big mistake! With computers, communication is a . Students can get homework through their e-mail. Saving time so they have more time coming up. The cost effectiveness computers because instead @MONEY1 paying @CAPS1 phone bills and tutors @CAPS1 your children and cellphone bills, you can just talk through e-mail and potentially save @MONEY1! Keeping in touch with families is simplified also because in just one e-mail you can catch with all your family members! Speeding up communication with computers clearly has benefits no one wants to miss out on. So why would you make that mistake. @CAPS1 addressing you can't place the blame on computers @CAPS1 why people don't exercise people as much. People choose how community they exercise, on the computers. Computers don't control wether you family or not. If anything they help together! Spending time in nature is that particular persons. Choice no one elses. All these cons can't be blamed on computers, because its the people that decide how much they're used, not the computer. All in all, I think keeping our use @MONEY1 computers where it is now is the best idea, because without it communication and education will decrease and with that, who says exercising will increase?! Overall the choice is the computers user, not the computer, so when used in discretion, computos contribute greatly to society." 5 5 10 +1170 1 "Dear @ORGANIZATION3, @CAPS1 has come to @CAPS2 attention that certain members of our society believe that computers are not beneficial. This position comes from lack judgement and a closed mind. Computers are lifelines to buisness workers who use them to complete all of their work, these tools also enable news of disaster or weather to spread efficiently and effectively. These technological devices also create and sustain communication between family members and friends. In todays society computers are vital and getting rid of them would be like stopping oxygen from making its way to the body, being accompanied by multiple severe consequences. First and foremost, about @PERCENT1 of all modern companies require their employees to work on computers. These works of art aren't just handy-dandy toys , rather @CAPS5 essential to the working class @CAPS5 a # @NUM1 pencil to a student taking a cut. @PERSON3, an owner of a small buisness, agrees. ""@CAPS2 company designs software and uses computers @NUM2. Many of @CAPS2 employees work from home and have to own computers."" The growth of computers is not something to be frowned upon, rather an achievement in technology enhancing the lives of others. By ripping our computers from lives of workers chaos would be created with many unappealing consequences. Adults aren't the only ones whose jobs consists of computers. Nowadays students' homework is mostly online, computers decrease the amout of time needed to write an essay and are glare to students of all ages, @PERSON4, an eighth grades at @ORGANIZATION1, is an example of this dilema. Every night she has at least three hours of homework and usually one hour be @CAPS1 requires a computer, however, this isn't a problem because @CAPS1 cuts back the time @CAPS1 takes for @PERSON4 to do her homework. She can quickly type up an @CAPS3 essay or research a science topic instead of doing @CAPS1 painstakingly slow using an old fashion method. Moreover, computers are doors into the real world, especially for residents of @LOCATION1. Whether some people like to believe @CAPS1 or not, @LOCATION1 is a bit of a sicludded area where people aren't aware of what is going on outside of their closed off town. Computers cause news to spread like electricity and open @LOCATION1 residents eyes to national and global problems @PERSON2, another student at @ORGANIZATION5, states, "" @CAPS4 the earthquake took place in @LOCATION3 @CAPS2 friends and I were all at lunch, @CAPS5 we came back to class @CAPS2 teacher was projecting the news via her computer onto the white board"" @CAPS6 computers were taken away a stream of knowledge would be cut off from adults and children. Most importantly, computers create communication between friends and family calling up to talk to someone isn't always an option, so computers are the better choice. Families can connect with each other no matter @CAPS6 they have cell phone reception or what area of the world they are in, @PERSON1 is a senior at @LOCATION1 @CAPS7 @ORGANIZATION1 who agrees. ""@CAPS4 I go to college next year I am going all the way to @LOCATION2 and want to be able to talk to @CAPS2 family, via email and instant message I can contact them even @CAPS6 its inconvenient because they don't have to respond right away."" @PERSON1 brings up a good point computers serve the luxury of communication, which is vital to keep @PERCENT2 of healthy relationships, @CAPS5 shows a study at @ORGANIZATION4. In conclusion, computers are an incredible piece of equipment that should be valued and not taken away. The are vital to workers and students and bring news to residents of any corner of the world. Computers also are how friends and family are able to stay connected and communicate. Therefore, I urge you, readers of the @ORGANIZATION2, to raise your voice about the benefits of computers, so they aren't taken away from our society." 6 6 12 +1171 1 "@ORGANIZATION1, "@CAPS1? Are you there?" "@CAPS2 you hear me?" You never have that issue with computers. It has come to my understanding that there is a dispute about the benefits of computers - should we have them and advance them, or not? Well, I believe that computers are a necesity to an average person. Computers help everyone, and make life easier! Sure, there are cellphones and other helpful electronics, but @CAPS2 they always prove trustworthy? Computers are alwasy reliable - whether it's for homework or another reason! Computers provide easy interaction without breakups, they make it easier to learn, and if you are smart then they are safe. Without computers, who knows where our society would be? To begin, computers allow people to have conversations with others...that are halfway across the world! There are a variety of applications that you @CAPS2 choose from, and they are all easy to use. My personaly preffered option is @ORGANIZATION2 email. I myself have family in @LOCATION1, which is a whole continent away! Sure, I could call them, but my phone bill would be through the roof! How else am I supposed to keep intact with my loved ones? Do you know how many others face the same problem? Through a recent study, @NUM1 out of @NUM2 families in @LOCATION2 say they have relatives that are far away. That is @PERCENT1 of @LOCATION2's population! Imagine there was no computer for them to use. Phone companies would be in money and regular families would be living on the streets. Or worse - they would lose any relationship with their famly. Do you want that? Computers are easy to access, and you @CAPS2 interact with loved ones, friends, or new people. It doesn't get any better than that! So, which would you choose - losing your family relations or keeping in touch via email and computer applications? If that isn't enough, computers make it easy to learn new things and accomplish tasks. I know that as a student of @PERSON1, other students and I need to type our homework at least three times a week! Just yesterday I had to type up a response, a free writing choice, and an entry for a history project. Imagine if we had to go back to using typewriters. Either homework wouldn't be done or everyone would have a major lack of sleep. Both options are unacceptable. Plus, computers are great for research. If you have to look up a new country, look at far away colleges or find out about the world, why not visit your handy computer? You could learn which college is right for you without leaving your house. You could visit a new country without leaving town! Sure, you could read a newspaper, but answer me this where does the paper come from? Yup, trees are killed for them. Computers are the easy, environment friendly alternative for you. If those two reasons didn't convince you, maybe this one will. Most people think computers are unsafe, and that @MONTH1 be partly true. But if you are smart or listen in school like me, you will know that isn't always the case. In our school, we are taught about the risks of computers, and how to prevent any possible @CAPS3. I'm sure most schools do. In fact, nine out of ten students say that when it comes to safety, computers are rated an A+. Everyone knows about hackers, and so we avoid them. My parents even say that for over thirty years they have never had a single issue or risk of safety when using a computer, and neither have I. "@CAPS3 are only powerful if you let them be, and let them take control," says @CAPS4, an expert on the subject. So, if it's safety you are worried about, then don't. The kids of today, and tomorrow, know what is out there, and how to stop the minor @CAPS3. So, why don't we recap what we learned today. Are computers helpful and the best way to go for communication? Yes, they are. What is the best way to learn now things easily? I believe the correct answer is computers. What are safe even if some don't agree. It wasn't phones... no, not television... oh yes computers! I see why you might think no, they should be outside, well let me tell you, cellphones and t.v. will keep them from that anyway. At least computers don't rot your brain. Well, I have done my part. I support computers, and their advancement. But it isn't up to me, is it? No, it's not. So please do your part by spreading the word. It's the right thing to do. You know that you want to!" 6 6 12 +1172 1 "More and more people use computers, but not everyone agrees that this benefits society. I feel that those people that think computers do not benefit society, are right. I feel this way because people need to start exercising it more, and interact with family and friends. Also, should enjoy life. Please read on to read in detail, as to why I feel this way. Firstly, those who are always on the computer need to exercise more, they need to exercise to stay healthy and strong. If they don't, they will most likely eat more and gain a lot of unwanted fat. Also, some of them don't even exercise at all. Secondly, they don't interact with their family and friends as much. Those people tend to probably argue with their family because they had to get off of computer. When you fight with people you want to gey away from it so you go back to the computer. It's not healthy to be on the computer for long periods at a time. Lastly, they should enjoy life. See the world through their own eyes. Party with friends and family. Go to college and do something with their lives. They need to enjoy things how they originally were without any computers, ipods, or even cellphones. In conclusion, the reasons I feel this why are because people need to exercise more, and interact with family and friends. Also, they need to enjoy life. I hope you understand as to why I feel this way." 3 4 7 +1173 1 "Dear @CAPS1, I believe that computers are benefitual to society. This because computers do tasks such as helps research, communicating with others, and has fun games and websites. Computers are really great sources for whatever you trying to do. Honestly, a @CAPS2 without computers I wouldn't know what to do. Computers are like digital encyclopedias, which has just about all the information your looking for. Computers have databases or websites design to have with research just as the do. Say that you have a essay due tommorrow and you need quick and valid information you can simple go to @CAPS2 @CAPS3 @CAPS4 which is a computer database. Your end up with saild facts to help with your final draft. So, you wouldn't have to go that far to research. Communicating is something else the computer helps with. For example email and @ORGANIZATION1 is a way to communicate. Email is where you can send a message and a wait a reply while on the other hand @ORGANIZATION1 @ORGANIZATION1 is where you get @ORGANIZATION1 replys. The latest thing in the communicating @CAPS2 is video chating. This where the person your chatting with can hear and see exactly what your doing. This is useful for families who life a good distance from each other. Computers play many roles and being used for fun is one. the @CAPS5 has many fun gaming websites such as @CAPS6.com miniclips.com, and @LOCATION1. This websites help take your mind off a bad day. You can also buy computer games for your computer. A very popular game is The @CAPS7. This game is base around your charater and the life you chose for it to live this game can take you to mother place where all your stress just fade away. So, computers betters society in many different ways. A few include research, communication, and to have fun. The computer is a very enhanced tool to enrich ones life. Computers take on difficult tasks and usually succed. So, computers are truely one thing we need." 4 4 8 +1174 1 "Dear Local @CAPS1 @CAPS2 you know long of time spent on technology could result in cancer? ever since they were invented, computers have been advanced more and more even years. People, especially children, forget the risks of physical health. Family and friends and even mental health. Obesity rate is over to @LOCATION1, the highest it has ever People wouldn't even know technology is to blame. @CAPS2 you know the average @CAPS3 teenager spends at least @NUM1 hours on the computers? Think off all the calories that build up without exercise. If people could limit their at risk for diabetes. Diabetis is one of the most common disease involved with technology besides obesity. @NUM2 @CAPS4 are diabetic which means we are not at a safe health rate. If you limit computer use to @NUM3 hour a day, and work out atleast @NUM4 minutes a day, think of how healthy you will be you will have more healthy you will be you will have more energy, and mental focus, sleep wont be an issue, and you will be more physically attractive. Computers also lead friendship torn apart. cyber bullying is also a problem. @NUM4 of students are cyber bullies. This means that friendship will wont see each other if they spend all day on the mental health when they turn on the computer. @CAPS2 you know some forms of cancer are caused by the radiation of technological devices? Radiation eats away the brain causing altsimers, and other mental disease that snew at old age. Young adults in school also got used to texting. @PERCENT1 of students text and @PERCENT2 get used to terrible spelling, thats @PERCENT3 who accidentally write ""thru, lazy, or even native @CAPS5 during school."" This is the mental if of technology taking over. So as you can tell computers affect health, socializing, and even mentality. So don't be part of the problem, please, stop overuse of technology." 5 5 10 +1175 1 "Dear people, Computers have been here for not a very long time and everyday more people buy computers and everyday people use them. As they are used for entertainment, education, and talking with people faraway, they have had a negative effect on people. Let me explain. First of all, as people use computers in the beginning they enjoy it. They go on the @CAPS1, play games, and use it for work. But as they keep using it, they start to get addicted. People are addicted to computers because of the games and being able to go on the @CAPS1. In fact, @PERCENT1 of all the people in this @CAPS3 who owns a @CAPS8, is addicted to computers. That percentage is expected to grow to @PERCENT2 in the next @NUM1 years. Addiction to computers lead to serious issues. People have died because they spent too much time on the @CAPS8 without eating and sleeping. In another newspaper not long ago, it stated that a student attending @ORGANIZATION1, was dropped out for doing so poorly during school. His parent found out that he was addicted to this game ""@CAPS3 of @CAPS4."" This game is right now the most played game on the @CAPS8 in this @CAPS3. Studies state that @CAPS8 addiction is almost as bad as smoking addiction. My second reason why @CAPS8 has a negative effect on people is because of online bullying. People chat on @CAPS5, @CAPS6, @CAPS7, and email and people are bullied. A friend of mine recently was emailed with words that hurt his feeling. Online bullying is worse that inteacting bullying. That's because @CAPS9 you say something on the @CAPS8, people don't know who you are. @PERSON1, a proffesor who recently did studies of online bullying says, ""Online bullying has become more severe than contact to contact bullying. People are threatened more and hear more bad words than interacting."" The online bullying and harassment is going to get worse @CAPS9 people don't stop. Also people can get arrested for what they write online. My final reason why computers have a negative effect on people is that people spend too much time on computers and don't exercise @CAPS8 contribute about @PERCENT3 to overweight people. On the @CAPS8, everything is much easier. Instead of mailing, you could e-mail. You can listen to music instead of walking up to the radio and turning it on. You could buy tickets, shop, talk with friends, and have fun just by sitting on a @CAPS8. But this is why people become overweight and obese. @PERCENT4 of the people who use computers are obese or overweight. Peole spend less time interacting with friends and family and enjoying nature. In conclusion, computers have a negative effect on people and parents should control their child's time on the computers. Just because of a @CAPS8, many issues rise. So @CAPS9 you think you are addicted, try to make a time schedule for your whole day. Use the @CAPS8 for an hour a time and take rests before using it again. Addiction, online bullying, and becoming overweight is not the only problems of a @CAPS8, there are many more." 5 4 9 +1176 1 "Dear newspaper I hear the more and more people use computers and I think thats so awesome because people talk online with other people. @CAPS5 they teach you how to use a computer. It gives people the ability to learn about faraway places and people. Computers it the more advanced technology so its @CAPS1 the people is using it. I love to be in the computer all day because I always enter to @CAPS2 and talk online. @CAPS4 example some people like to talk with a family member the is not in the @LOCATION1 so they communicate from the computer. Sometimes I talk online with my cousin in @LOCATION2 because I have @NUM1 years I dont see her. So I think talk online or using the computer is important. @CAPS4 example even grandma have @CAPS3 and she talks online with her family members. I think the using the computer is not a bad benefit because it helps you be in communication with your family or friends. That is why I think the people is wrong saying the or is not. Secondly, it teach you hand-eye coordination my grandma is old but computer and @CAPS4 example my grandma a nice hand eye coordination because when she goes to the letters she just ress and all she is correct. think computers have a effect on people. It @CAPS5 helps people write better and better. @CAPS4 example I love and when it write I dont need to go to other I write king of @CAPS5 the helps me with my eye and hand @CAPS6 is the it helps you find faraway places and people. @CAPS4 example on @ORGANIZATION1 you find what ever street you want. It @CAPS5 help you find in the computer about people. @CAPS4 example if I have a project I find the information on @ORGANIZATION1 about people or places. The computer is really helpful because you could find pictures of places and information of people. I think is a positive effect on people. Finally, I think the computers are great benefits society. One reason is the you could talk online with people. @CAPS5 it teach you hand-eye and the helps your brain and sight. It @CAPS5 helps you at your hand movements. @CAPS6 reason is the give people the ability to learn about faraway places and people. @CAPS4 example I have a project in @CAPS7 and I have to learn and search about forensic doctor and I search everything on the computer. I think the computers help your brain think more and computers are advanced technology. So I think their benefits our society." 4 4 8 +1177 1 "I agree that computers have a bad effect on people because they will spend less time exercising. To much time on the computer takes away knowledge and takes away time with family and friends. So, please listen up so I @MONTH1 explain why I feel this way. My first reason to this situation is people will spend less time exercising which can lead to drowsiness or laziness if you stop exercising. Another reason is that it can affect your ability to run or even stand up because @PERSON1 says that, ""people who exercise a lot will be able to do work but if you don't you won't be able to do nothing."" @CAPS1 of all you'll miss out on the fun while you are to be to lazy to come. My second reason to this situation is that it takes away knowledge. For one you might forget what you learned. Seconds toturing @MONTH1 be needed because you couldn't focus. @CAPS1 you @MONTH1 even forget the people you know even where you live if you spend to much time on the computer. @CAPS1 reason to this situation is that it takes time away from your family and friends." 3 3 6 +1178 1 "Dear @CAPS1, @CAPS2 a student I believe that computers have many bad effects on people. Most people think that computers are just new helpful technology, but there is more to it than just that. There are many things going on in the cyber world. Computers are quite helpful in school research, work and other important stuff, but there are many bad effects too. Kids these days are so attached to their computers almost all day after getting home from school which means that they barely do homework, projects, and important assignments from getting too distracted by the computer. There are some parents who get tricked by their kids that they are just doing homework, but reality is that kids these times are meeting tons of strangers through social networks such @CAPS2 @CAPS3, @CAPS4, @CAPS5 @NUM1, @CAPS6 and other networks. Once that they decide to meet in person with these strangers many things go wrong because not everyone is @CAPS2 nice @CAPS2 they @MONTH1 seem through the internet. It shows how dangerous it can be for kids to be using the computers so much. people such @CAPS2 young children, pre teens and teenagers are able to view many harmful and inappropriate things anyone their ages shouldn't be viewing at all. Another concern is how people spend all day on their computers probably eating any type of junk food and then they don't exercise at all and they gain weight and not well fit physically which becomes a health issue for kids @CAPS2 age @NUM2 to much older people such @CAPS2 age @NUM3 and much older too which turns out to be a bad health life for people. From people spending nearly all day on the computer, they aren't able to go out and discover new things, exercise, hang out with friends or just have fun and spend time with their families. I also do strongly consider that the computers or laptops should not stay in a kids room because then they lock themselves in their room all day and they even stay up till really late even past midnight and then it becomes a real issue for kids or adults to get up early in the @TIME1 for school or work and are usually late. This pretty much shows how computers are not so great for people all the time. In order for people to be able to use their computers and have a life they can plan out a schedule of how long to use the computer and it might help them out a lot." 4 5 9 +1179 1 I believe that people spending to much time on computers can effect their health and the relationship they have with friends and family. If you are on the computer and one of your friends ask you to go outside you are most likely to say no because the computer is grabing your attention more than going outside. That hurts your health and your relationship with your friend. If your family is going to a movie to have family time maybe you will stay because you would stay home on the computer. That effects the relationship with your family. Most people rather stay on the computer than spend time working out. So that effects your health because most of the time your on the computer for a long time your going to end up hungry and keep eating and eating and since your not working out you get fat. Now your not working out and you just keep eating. So since you are not working out and your mind is always on the computer you can get sick. Thats why most people are not healthy because of computers. Computers can mess up your relationships with family and friends. Sometimes your friend can ask you to go outside or to work out and you say no because your on the computer that messes up your relationship with your friend. Or your family can be having a movie night and your on the computer while they leave. That is messing up the relationship with your family. Being on the computer you can go nights without sleeping. I your playing a realy good game on the computer and it comes time for you to take a rest and since the game is so fun you don't sleep. Then after a while you get addicted and won't stop playing. So you won't get sleep and if you have school you won't be able to concentrate you will to busy worried about the game. So thats why computer aren't so good. It can mess up your health. I can mess up your social life with family and friends. You won't get a lot of sleep and won't be able to concentrate. 4 4 8 +1180 1 "Dear local newspaper, @CAPS1! Get off that computer it is @TIME1. But mom I dont want to im in the middle of a game. Does that conbersation sound familiar? Of course it does. Every kid likes to play on the computer. However, noticing your kid being on the computer @NUM1 is not a good thing. In this matter experts are definatley @PERCENT1 right because kids and adults are spending too much time on the computer. These people can do other things like excersising more, enjoying nature, and interacting with friends and family. Spending too much time on the computer is not healthy. On the other hand, if someone kicks you of the computer you can always get that six pack you wanted. There are three main things that can get you in shape. First, taking a light run every night on your community track can get your legs from being fatigued every time you walk up the stairs to having your legs be firm and able to run lap after lap just for a warm up. Every years my dad takes me to the track in @DATE1 and times me for @NUM2 and @NUM3 yard dash, the @NUM4 meter, and the mile. Between the months I train all the way up to @DATE2 then my dad does another assment. I do this training because I play baseball. Weight lifting is another way to get in shape. Some basic excersises are bench pressing, squating, and dumbell curles. There are more challenging excersise but I won't go into that. Once you feel like your in shape, take all of that trainign and put it into a sport. Excersising is not the only thing you can do. Enjoying nature is another option. Just go outside if someone kicks you off your computer. Absoarb everything about the nature. From the squirrls to the tress. If you are in the winter enjoy the snow instedid of being inside @NUM1 playing computer games. But, if that doesn't work out for you then hangout with your family. Hanging out with your family can be thing you can do. Gather your family and plan a trip. You can go to a baseball game, park, or movies anything that will get you away from that computer. That is my opinion why I think people should get excersise, enjoy nature, and spend time with their families insted of being on the computer @NUM1." 4 4 8 +1181 1 "One girl sits by her computer doing homework. Another girl with her computer, talks to her friends. Those girls are doing activitys that make our world more productive. I think that computers have a positive effect on people. Computers help people with hand-eye cordination, learn about faraway places, and talk with others online. This is what computers can do to help our socity become better. Firstly, the computer can teach us hand-eye cordination. By playing games , we can use what we learn in real life. A boy can play football on line, then take what he learned and use that in a real football game. Hand-eye cordination on the computer can help us to learn new things about our society. We could use what we learned to discover new things and help us to make the community, as a whole, . These skills can also help us do more things at once. Multitasking is a difficult task to and with hand-eye cordination and computers it becomes easier. A second productive task can help us with is learning . Some people dont know going on in The computer can direct us to news The computer is literally like one huge look of use . Another positive effect that computers have on people is communication. Many people have a twitter, facebook , myspce, etc. and all those websites can help . Products like skpe, video chat , aim and email allow people to have a conversation online. Email is something that there are so many new ides. You cannot only talk you can do business, send pictures, invitations, and announcements. Schools, offices, and companys all over the world use these products and it doesn't only make society better it makes the world better. In conclusion, computers do have a positive effect on people around the world. They can help with hand eye cordination, help you learn about far away places, and they help people communicate. That one girl doing her homeowrk get an A and the girl talking on her signs off to be with her family." 5 5 10 +1182 1 "Dear Newspaper @CAPS1, I believe computers and excelling technology benefits society because it can help with hand eye coordination, it will be an easy way to learn about faraway places and cultures, and your able to save and use your time more wisely. First of all every person needs hand-eye coordination, if you didn't you would either thore a ball in the comlplete other direction or you'll get hit in the face with it. Computers benefit childrens education too, they can help you discover and learn about far away places. For example if a student is studying @PERSON3 @LOCATION1 in their @CAPS2 @CAPS3 class, @PERSON1 in @CAPS4 class or maybe @PERSON2 in music class, instead of pulling out the old, dustty biography book it would be easier to look them up on a search engine. Lastly the computer benefits everyday working or stay at home parents because if you have to get in contact with a cetain person or business quickly you don't have to take the chance of having to go look in the phone book and the person or business isn't in it, just go to to @NUM1.com type in a last name or business name, so your all set. Also if your child is being a nuisance screaming and running around the house you can just set them up with an educational game so you can get your house-hold chores finished. Those are three of the most important reasons why I think computers benefit society. They are hand-eye coordination, learning techniques and saving everyday people time." 4 3 7 +1183 1 "Dear @CAPS1 @CAPS2, I think Computers have a bad effect on people for three reasons. One they can really hurt your eyes, two it is not safe if you have little kids in your house. Finaully three you will never see your family or friends if your on the computer. The first reason was computers have a bad effect on people is it can really hurt your eyes. If your always stareing at a computer screen all the time you can go blind. And with you having bad eyes you can get serious head injures just from hurting your eyes. The second reason why computers have a bad affects on people it is not safe if you have little kids in your home. Like you can be watching adult movie that little kids are'nt aged enough to see if can have a bad effect And it has a bad effect on people because you will have no and if you have a little kid in your house he will always be in and he will probaly hear something really, really kid like music, @CAPS3 if you have a kid house The reason was computers have bad effects on people is that if your always on a computer you will never see your family and @CAPS3 if you are always on the computers you will miss out on the And will never you never see and don't @CAPS3 a rent on on the computers. @CAPS3 what you look And keep the little kid with you in the house. And last get off the computer and go see your family and friends. " 4 4 8 +1184 1 "In todays day in age, computers are a key part to business, education, and recreation and they benefit our society. First of all, you can get a better education learning from them, also, it is a great way to communicate with people. Finally, it even teacher hand-eye coordination that you could use in your everyday life. My first point is that you can get a better education using them. For example, the textbooks that we use in social studies at our school still refers to @LOCATION3 as the @LOCATION1. Computers are a great way to get up-to-date information about the world. ""With our outdated textbooks in school, the @CAPS1 is our number one recourse to get information."" @CAPS2 @PERSON2 eighth grade teacher. With computers, you can learn about far away places without learing the comfort of your own home. In addition to getting a great education from them, computers are an eyelent form of communication. I remember when I was in @NUM1 grade and my father was across the world on a business trip. Our phones couldn't call long distance so we relied on computers to communicate with each other. This helped me get over my father's absence. When you use a computer to communicate you are also saving money."" You can save over @MONEY1 a year. When you use the @CAPS1 to communicate over a cell phone."" @CAPS2 @PERSON1, electronics expert. Finally, the use of a computer increas hand-eye coordination. With all the typing you do on a key board, your hand dexterity increases by the second. In fact, ""@PERCENT1 of computer users are more coordinated throught their day, opposed to people who don't own a computer."" @CAPS3 a recent pole in the @LOCATION2 times. And in this day in age hand-eye coordiantion is a neccesity. Besides wouldn't you like to have the ability to have your hands work without having to look at them? So as you can see, computers would benifit society and everyone who uses them. They are a great benifit that @CAPS4's need for their education and buisness. Thank you for listenging." 5 5 10 +1185 1 "Dear @CAPS1, People like computers, @CAPS2 a known fact. They are very much like a dry, addicting and irrestable. Despite what people believe though computers are very good for our daily lives. You can communicate play @ORGANIZATION1, listen to music watch movies, even learn a language on the computers. So in all ways, the computer is anything but bad. @ORGANIZATION1 are fun. They help us relax. In todays age, @ORGANIZATION1 just don't give people the joy they experienced when younger. Computer @ORGANIZATION1, they are the replacement. Imagine playing baseball with a friend who lives miles away from you, while still being a kid in @LOCATION1, or set in your exercise adventure. Computer @ORGANIZATION1 broke the border giving you a higher level or ""You got mail"". Many people hear that sentence more than once everyday. By many, I mean millions. @CAPS2 a alert saying that someone sent you a email. @CAPS4 are messages. Sent over the @CAPS7, faster than any service. Instead of waiting @NUM1 days for a letter, In a matter of minutes you can have a message sent to your friends. Microsoft @CAPS3 @CAPS4, and other electronic messaging systems are a superior form of communication, these let us speak to the world! Although it sounds silly, @CAPS5 you wanted by you could send a message to anyone with a message box. Lets say you went to watch a certain movie, but you don't own it. With a computer with a dose drive, you can watch any @CAPS6. Better yet, you can download the movies media are available @CAPS7, with you able to watch them with the click of the mouse. Computers are filled to the top with gadgets & accesories that make our life easier. @ORGANIZATION1, movies, @CAPS4 anything you is not likely on a computer. They are the perfect tolls in modern society." 4 4 8 +1186 1 "Dear @CAPS1: Some people believe computers benefit society. However, others feel they are too consuming. I for me I belive computers help society. Computers teach hand-eye cordination, give people, and even allows computer to chat online with other people. I'd bet your job requires you to use a computer, you probably even have a personal computer which you like to use to chat with friends. I do that all the time and I like it. Another thing I like are sports. One of my favorite sports is softball. In softball you need to have hand-eye cordination, this will help you swing at the ball more accuratly. When a pitcher throws the ball you have to had the bat at the right angle and watch the ball to know when to swing if kids used computers and become good at hand-eye cordination, then possibly more kids would join a local sports team, and possibly even join travel team. Do you like to travel? I do, and are why I learn about places before I go is by looking that particular place up on the internet. About three years ago I went on vacation to @LOCATION1. I wanted to know what it was like there because I had never gone before, so when I looked it up I found out that they had many torist attractions and ""packages"" that let you swim with dolphins, I was very excited to go and when I did, I had a biast, and to think if I didn't look it up I would not have known what kinds of fun things they had! No wonder so many people like computers! One of the biggest reasons why I like computers is because I can chat with my friends online one main attraction online is @CAPS2, everybody, primarily, has one. Some people have one because they like to look at pictures. I have one because I like to chat with my friends. One night I was chatting with a friend we were laughing having a great time, and then she reminded me that we had science homework due the very next day! I thanked her and then completed my work. You see if kids chat online their friends can remind them of important nescesitys such of homework. This could impove grades by @PERCENT1! So you now see why society needs computers and if you have forgotten let me remind you: computers teach you hand-eye cordiantion, let's you learn about faraway places and people, and now allows you to chat online. Just think what would society be like with no computers." 5 4 9 +1187 1 "Dear Local Newspaper, Have you ever used a computer? More than @PERCENT1 of the population Computers benefit society and have gotten people all over the world smarter and advanced. Computers help people learn things keep in touch with family and friends! They @MONTH1 also tad addicting but people know when to stop. Computers have brought us a long way! Computers are a magnificent tool for new things. The great websites for example search engines, dictionary even @CAPS1 all virtually encourage us to learn about the ""riches"" the tropical @LOCATION1. By computers letting people easily access tools that help us gain knowledge can become more advanced in many of our lives. For example by on the computer, scientist can develop new theories did uncover things! Computers also have websites and programs that can help you cannot will family and friends! ""I have last touch with many of my friends from high school,"" @PERSON1 explains ""the computer through email and facebook, is a great way to stay in touch with them!"" Computers of websites including facebook, and myspace that can help people stay in touch/find family and friends. It has came to my realization to find that many people would live long, lives if they could not internet will friend. But with the help people are lively and happy including with friend! Although computer are good for this they @MONTH1 be addiction. I have people that @MONTH1 be able to have computer addiction. But on the other feel that the if he can make their decisions in what is right. If people want to spend countless hours sitting in front of the glowing technology then be it. Not one person. Computers anyone it is simply unconstituional. Most people including understand that computers are a benefitful and fantistic source of technology. @NUM1 out of @NUM1,000 people in the world are addicted to computers. There from the small we are able that computers are for from addicting. In conclusion, Computers have a positive effect on people. They teach help stay in touch and are not addicting. Therefore they very beneficial to the world, its people and technology." 5 5 10 +1188 1 "If you ask me, computers are going to soon be a big problem in our lifestyles. Computers are just another material thing everyone has and seems to be benifiting from, but they aren'@CAPS1. This technology is taking away peoples freedom and will and they don'@CAPS1 even notice it. It is pretty clear to me things need to change. To begin, the computer is yet another distraction to our daily lives. I think that it is safe to admit that we don'@CAPS1 need this. Distractions like these keep us from doing the things we need to do, such as excersise. Every wants to get their extra weight off, but they can'@CAPS1 because the want to check website or talk to their friends. So its pretty much a lazy distraction. Would you really want to give up your health beacause of something so materialistic? If we keep clicking, more then @PERCENT1 of the population that are fit and healthy will become obease. I think we need to reform this problem soon. Like not promoting websites on so many @CAPS1.V networks, or have a computer shutdown week, anything that will get people to be outside enjoying life as they should. To continue, have you ever found yourself asking your kids on how to work the computer? Dont you see how sad that is? Our future leaders are already glued to the games, email and instant messaging of the net. Its plain to see they are already spending too much of their time online. This is concerning fact because more and more kids each year turn in less and less in school work because they have better things to do such as chat with their friends or watch funny video online. Its a scary though because these children are our future leaders. This is a critical point in their lifes. They need to learn about things now so their futures arent hanging by a thread. Instead of making a habit of going online everyday why not make a habit like try to get all your homework done each night? Things in childrens lifes need to change before they pay for it later in life. To sum it up, many things about our lifestyles need to change. Wether it be in schoool work or losing weight. So I think it would be best if we took out, or lessend our computer usage to lower the distraction and more on in life without revolving our world aroud a click." 4 4 8 +1189 1 "Proven by @PERSON2 the best @CAPS1 major over @PERCENT1 of children either have desktops, laptops, or some type of internet access. What so you think about this? Well I the computers are takeing up people time (like children) and not letting them get their work done. Also, computer are not only letting people talk to their friend, but its causing @CAPS5 bullying. Finally, @CAPS1 are also just maken parents more stressed out because the have to pay another bill for internet. Children now and days come home change and log right into the computer and start talking to friends and lisening to music all this sounds good intell their report cards come back and they see they are failing half there classes. I remember when my friend @CAPS3 would go home change eat and log right inside the computer. As days went around the end or the year was she noticed she had two problems. She was getting over weight and she was failing all her classes. She noticed that getting on the computer was not neccesary so for the next mouth and a half she cut down on her time on the @CAPS1 did her homework and started this pushed me to beleave that children have @CAPS1. Proven by @PERSON3 the syber bully that over @PERCENT2 of children have bin syber bullyed or @CAPS5 bulllied someone. All this happen when children are not being watched or get bored and to pick on someone. What should we do people ask @PERSON1 and she says well take away the @CAPS1. I remember when I read about the year old girl on new channels.com and it was about @CAPS5 bullied but never. This shows that children all over the world can be getting syber bullied of any moment." 4 5 9 +1190 1 "Dear local newspaper, Computers are a waste of time! People that say they are helpful are just using that as excuse. Some people say they are good for research and talking to people. Both of these things you can do without a computer. Computers are just a money wasting thing that get in your way of life. People spend hours on computers talking to people. You don't need to do that. You can use a phone instead and call them. After a study they proved that talking on a phone is cheaper then using the computer. In this economy why wouldn't you want to save money while getting the same thing also on a computer you don't really talk to the person you are really just typing word to them. This can be very dangerous. Who know if the person talking to you is really the person you think. Why take the risk when you can just use a phone! Using the computer is like smoking. It is very addicting! People stay on computers for hours every day and don't get exercize. If you just sit there moving your hand you are not really burning calories. This is a huge problem! Obecety is already rising with the number of fast food places and computers are making it worce. And the worst part is parents don't care some children go on the computer for @NUM1 hours a day and there parents don't encorige them to go outside. Children need encorigment to get moviing or they will never start, and they will get bigger. We need to form a group to help stop this or before you no it @PERCENT1 of the @LOCATION1 will be obeise. Another excuse that computer lovers do is they say they are doing research on a country. Even though this @MONTH1 be true there are other way you can do this. Why not ride your bike to the library and get a book on the country. By doing this you will burn calories and get to learn the same stuff you would have on the computer. Also not everything on the internet is true so you might have false information. By getting a book you know it's true. People that love computers will never get away from them over night it @MONTH1 take a month or two but if we act new we can make a change and put a stop to it. Computers are a waste of money. You can live without then very easily, and without them the world would be a better place. People are being lazy and use excuses on why they need a computer. If you are stuck on a computer for @NUM1 hours a day you will never have any family memories. All you will remembor is when you were on the computer, and who wants that." 4 5 9 +1191 1 "Dear Newspaper @CAPS1 @CAPS2 you think that children spend to much time on the computer. The issue that is going around is @CAPS2 computers have good effects on people or bad ones. I strongly believe that they have bad effects on people. I believe this because people spend more time on the computer than they @CAPS2 exerciseing. Another reason is that people argue it teaches hand eye coordination, well so does sports and just playing. My last reason is that people argue that it is some thing that helps you learn about people and far away places, but books @CAPS2 the same thing. I know alot of people feel that computer have good effects but the truth is they have bad ones. First, people spend more to on the computer than they @CAPS2 exerciseing. People rather stay inside and play games on the internet then go outside and play tag or any sport. On a talk it was said that, ""In @LOCATION1 people are alot over wieght"", and it was also said that the number of over wieght people in the world was the of @LOCATION2"". So I believe that people should get of the computer and exercise. Secondly, people think that it teaches hand eye coordination but so @CAPS2 sports. Instead of being on the computer learning hand eye. You could be out side learning hand eye coordination. Again instead of just sitting at the computer your outside running around haveing fun while you learn hand eye coordination. My last reason is, that people argue that people use it to learn about far away places and people, but they have books for that too. People rather look stuff up on the computer but as soon as they're finsh the start playing games or the computer. Also some of the information might not even be true. Because people hack sights all the time and change things but you can't hack a book. The only thing you can @CAPS2 to change it is to rip out pages and that only waste your money to a new book. So I believe that books are more reliable. Now is the time to make your disicion. @CAPS2 computers have good or bad effects. I believe that computers have bad effect on people. Other things could teach you remarkable hand eye coordination and other great sources to about other place then the computer. Most importantly people should spend more time exerciseing the they @CAPS2 on the computer. Now it time for you to go ahead and put this on the front page of your newspaper and let the whole world know. " 4 4 8 +1192 1 "Dear @LOCATION1, I'm writing this letter to you to tell you my opinion on the effects computers have on people. My opinion is that computers have a positive effect on people. First reason is they give the ability to learn about people and places in the world. Another reason is that computers bring unity to the nation and even the world. Last reason is it can help you be organize and get a job. Now I will move on to give more details on my first reason. When I have a school project on a famous person or somewhere in the world I know that the computer will give me more information than a book. If I am doing the project on a place and I want to know how far is it from where I live to there or whats the weather of that place all I have to do is type it down in a search engine and the computer will give me a bunch of websites that will answer my question. Now, if you can't draw a picture for your biography project go on a search engine and type down the name of the person you're doing and don't for get to type down pictures or photos and you will see a bunch of pictures of that person. Now I will move on to my second reason. Computers bring unity in the nation and the world for example think about these social networks like @CAPS1, @CAPS2, and @CAPS3 these networks has millions of people on them that you can talk to. And what about the @ORGANIZATION1, webcam, where you can talk to the person face to face. Just recently there been earthquakes in @LOCATION2 and @LOCATION3 you can spread the news to family members or friends to tell them to support and help those in need. Now I will move on the my last reason. Computers are everywhere there's never a job that does not have a computer. That means that you need to know how to work with computers to get a job which can be." 4 4 8 +1193 1 "Dear @LOCATION1 @CAPS1, Computers lately have been considered a distraction and unessasary device. I personally think that they have many things to offer everyone each helps us and understand things and subjects we couldn't understand before. Also computers are now sad to make people lazy or physically unfit but that depends on the person. They could easily go to play and talk with family and friends if they wanted to. Computers are also not becoming a important and learning, making informationeasier to before. The most popular and common of a computer now is communication. Websites are invented on the main idea of communicating. Computers are a important part of the future life that isn't harmful or unnessary. Resently we have been able to use computers in so many helpful ways. Learning and studying new and important things. Researching and collecting data to cure a desies to working on a machicene. They are now a important and useful part of jobs people have now. Almost anything published or shown to the public went through a computer. So people 's jobs on computers working and learning. Like a job you print out a paper every week or day even. You use computers to edit and put together your paper before printing. So basic computer skills are important for people to have for new jobs and common ones you see everyday. Computers are rumored also to be too time consuming and unhealthy for a person. Computers are a optional thing for people to use in their own time required to do. The person could go out and see friends and family. Go to the gym, a vacation without a computer. Yes they are fun to use they have a lot of things to do it isn't needed like air or water. You can live without using a computer for us a week. You can take a walk, read a book, go hangout with your family and won't be pressured for computer time at all. If your worried about it take a break from it for a while. You can do things without a computer. Learning with computers is thing lately, in @CAPS2 they're going in the computer lab learning to read on or other programs. Studying or writing essay in my grade mostly. Researching for a class and making a project. Computers are useful in school. You also read about new subjects and learn new things on computers possibly helping you in your classes or. The biggest use of computers now is communication through many websites like youtube, facebook, myspace and many others. They allow people to communicate their ideas and opinions. Talk to far away friends and family without high phone bill. Seeing politics and daily news to the weather. Almost all means of communication can be done with a computer. So now you see computers are a vital and useful of daily technology we have at reach. It is not unhealthy or time consuming unless you are allowing your computer usage to be that." 5 5 10 +1194 1 "Letter to the @CAPS1 I disagree with the so-called ""experts"" that claim that computers could have negative effects on people. The idea that you socialize less with family and friends is a pathetic arguement. Social networking sites like @CAPS2 or @CAPS3 allow @CAPS22 with all your friends @CAPS4 and other online games help you met new people that could be hundreds of miles away from you! Twiter is good when you just want to say something quick like ""@CAPS5 to @LOCATION1"". @CAPS18 allows you to talk to friends, comment on their videos, and subscribe to them, plus it provides hours of entertainment without a fee. Computers also can provide fun games and entertain users. There are many free games, like @PERSON1, that have endless possibilities. @PERSON1 @PERSON1 (made by @CAPS6) claims to be the most popular @CAPS7 (@CAPS8 @CAPS9 Online @CAPS10-playing @CAPS11) on the web. You can level up combat skills: attack, defence, strength, ranged, and magic. Or you can level up skills like wood cutting, prayer, farming, fishing, mining, and cooking. @PERSON1, like most @CAPS4, has quests, with varying difficulties. For example, for one quest you have to kill a demon, but for another, just find a missing cat. There are over @NUM1 quests, and there are never fewer than @NUM2 people playing at a time. Some other notable @CAPS13 games are @ORGANIZATION1 @CAPS14: @CAPS15, @CAPS16 of @CAPS17, @ORGANIZATION2, @LOCATION2, and @ORGANIZATION1. As you can see, the computer has an impressive list of entertaining @CAPS11 for all ages, not to mention sites like @CAPS18 or addicting games. Computers don't really affect exercising. That's a personal choice, so you have to choose between @CAPS2 or the basketball court. It's like saying that before we had computers or video @CAPS11 consoles, that a @CAPS20 board stopped kids from exercising. The computer doesn't actually stop us from exercising. It's our minds that do, and our judgement. If you have bad judgement, you'd stay inside all day tweeting and @CAPS21. With a good strong mind and willpower, you can overcome a bad decision and play sports or go to the gym. All it takes is good judgement. Just to recap what I've said, @CAPS22 is plenty on computers and there are many choices on how to do it. Many sites amuse us, and we should make use of that. Not to mention you can buy games like @CAPS16 of @CAPS17 or @ORGANIZATION1 @CAPS14: @CAPS15 for your @CAPS13! Computers don't actually hinder exercising, all it takes is good judgement to get off that chair and exercise." 5 5 10 +1195 1 "Dear @CAPS1 @CAPS2 @CAPS3, @CAPS4 having everything known to man at your fingertips. @CAPS4 having an endless source of information in your own home. Wouldnt you want all of this all the time? The question then is, do computers have positive effects on people? I strongly believe computers do benefit society. Firstly, computers teach you hand-eye coordination. The main way is by typing. When you type, you start of looking at the keys but eventually you memorize all the locations of the keys. Also, computer games teach hand-eye coordination. If you weren't looking at the screen, would it be possible to win the game? When computers teach you hand-eye coordination, you can use it for other things too. For example, you definitely need it in sports or more. Specifically, baseball. If you didn't have good hand-eye coordination, you wouldn't be able to catch the ball or be able to hit the ball when you swing. Hand-eye coordination very important. Secondly, computers give people the ability to form about places and people. When people are deciding when to get vacation, they go in the internet. What there is in do. Why would you travel in a place is you back. Many use the internet in research other countries. When the eight grade did reports their information. Eighty seven percent the internet. Finally; some people say computers take away from interaction with family and friends, but computers actually allow you to tell with other family and friends around the world. Wouldn't it be wonderful to with your loved ones in a different state of country? The main way of online communication is @CAPS5-mail or @CAPS6 @CAPS7. These allow you to send someone a message faster and easier. It is much easier in remember someone @CAPS5-mail address than it is a phone settle for just talking, when you can actually see the person? It would be like them being in the room with you. Computers are a great way to talk to someone. Why wait any longer? Computers are a great way to refine your hand-eye coordination skills. You can research Faraway people and places to see what life is like around the globe. Most importantly, you can communicate with family and friends online through @CAPS8, @CAPS5-mail, or @CAPS10. Definitely, computers benefit society. So go and share this information with other people to convince them that computers are positive." 6 5 11 +1196 1 "Computers do not have a negitive effect on people. They keep you in touch with family, help you do work for school, also allow you to play video games and look up music. Computers can keep you in with family and friends. Find locations to where the live. How their doing and what have they been up to. It allows you to e-mail and lets you see friends that moved far away. Computers also help you to work for school. They help you find answeres to questions a teacher could ask. They help you write reports or reports in general for any subject. Also, there many site that you could go to; to help you with a book.The sites could also bring you to your schools website. That way, if you forgot your home work was you have a place to check. Even if you were absent most papers I questions are on the internet so you could make end to the homework. Another common thing computers are used ten is to weecth movies. Rather a old movie or a new release. Computers also do the same thing for music. Anything from @CAPS1 to @CAPS2 to country and back can be. or new @CAPS3 shows and music all be find. Video games are also popular. Many people play these because; people can friends. Talk to friends that they havent seen in a long time. They to not be bored. If it's raining out and nothing to to the here games. And if you one to talk to thiers always someone there to lister to you and maybe become your friend. So computers are not a waste. They can keep you in touch, you new friends get rid of find an serches everything in @CAPS4 shows, music and movies." 4 4 8 +1197 1 "Dear, Local Newspaper I think that it would be better if people get outside to get so exercise and enjoy nature to interacte with there family and friends. If you get out with your family and friends maybe more teens and adults would be in better shape and more healthly. Say we jump out of bed, gets some breakfast and head to the park to gets an excrize with your family and friends. Alot of family and friends i think spend way to much time on the computers or there labtops because if they are on the computer to long then they will not want to go outside and get excrise with there friends. More and more people use the computer. But not everybody agrees on this statement. What I think it would be better to solve the problem and have everybody get outside and get some freshair with family and friends. But some people don't think that is the right thing to go. People that think those who support advances in technology believe that computers have a positive effect on people. Well I don't think that is the way to go because you need to get outside to get some. Freshair with people. But if you want to go on the computer you can but I think it should be only for a little bit then because some people have a bissness that they have to work on when they are at work. Sometimes people have to work on there computer every day so if that is the case they I think they should be alouded to use the labtop or computer. But if you are a teen you should only go on if you have to f you needing the internent or writeing a paper. But if you going to go on to just go on to just talk to friend then that is a waste of time in somebody life. Well at least my life it is. I think as a teen you shold be to work on studying on doing your homework instead of being on the computer because I think it would be better to make sure your grade are not making you fail in your school carvee in life. So that is why it is best to make sure you aren't on the computer all the time talking to your friends on the computer all day because it could make you fail in life. I would only go on for a little bit to talk to your friends. That is why I think it is not right to spend all your time on the computer. Jump outside and in goal the outside weather with friends and family meabers. I hope teen and adult get outside from now on because it would be better for allof us and everybody would be heathly. If they tri this program. If you tri this program it will really work to all of you tri proise it will work and you will be heathly and not feel bad about yourself." 4 4 8 +1198 1 "Dear to whom this @MONTH1 concern I know everybody that dont uses computers are why are people effect by the computers. Well i think computer is better then newspaper, on news papers you could find the news, well of course but wheather, houses for sale, tv casting, jobs and others just the same way as @CAPS1 but instead it like virtual. It benefits society for certain reasons it depends. some times computerscan be a negative effects on people but it also teach people how to read, write, type, learn and other. What I about we can talk to others we can see pictures of people whom we no we can google into about things we need to no, it helps when they need to find they way around the mapquest. A negative issue with having computers with internet, certain websites that are not age able. Kids be on website thier parents dont bout, looking up with boys they meet over the @CAPS1, People dying making plans with someone the next day the person is gone missing. I think if experts take away computers must kids well be mad and upset and there will be nothing more to do but play video games and go outside and these are my opinions." 3 4 7 +1199 1 "Computers are helpful in everyone's life. New things can be learned from them. They can provide a way to contact others. And they make writing a lot easier. Overall, they have a good effect on the world. Technology lets everyone explore new topics. If something is typed into @ORGANIZATION1, results will pop up within seconds. Click on these, and information that is needed is displayed. The computer is also helpful for research papers. The internet allows a more elaborate final draft. Learning benefits a grade in school or in work. It is always good to be able to contact anyone who is wanted. With the computer, people are abel to @CAPS1, talk on @CAPS2, or even talk to a loved one on a webcam. On @CAPS2, pictures be added so anyone who wasn't able to be at an event can now see what is was like. Webcams hooked up to the computer let people talk face to face with someone else they might not have seen in months. These are all good examples of why computers have a positive impact on the human race. Writing out papers can be a hard, tedious task. On the computer, it is possible to type out words and not have to get out on eraser for an spelling mistakes. These are picked up by spell check. This way, no points are deducted for wrong spellings. Sometimes people @MONTH1 have sloppy handwriting. These dificulties can all be solved by a typing program on the computer. Therefore computers must have a positive effect on people. They teach new things. They allow people to contact others who are far away. They can also make grading a paper easy. This concludes that computers benefit the society we live in today." 4 4 8 +1200 1 "Dear local newspaper, @CAPS1 it has been brought to my attention that why on a nice sunny day like this somebody would want to be inside. The sad truth is that too many people are wasting their time inside on their computers, rather than enjoying the day. Computers are negatively affecting the @LOCATION1 @LOCATION1 population. We are getting to a point where our whole world might be absolutley crazy if nothing is done about this. For one the @LOCATION1 has the most obese children in the world. Generally children should be running around burning off their calories; even some people in their teen years should. Instead kids are sitting in front of computer screens on their virtual games and emails and such. Even doing chores around the house could bring down the obesity rate a lot more then sitting on your butt staring at a screen all day. The whole screen thing brings me to my next point. Staring at those bright flashy lights for too long is not good for your brain, what computers cause @NUM1 out of @NUM2 child ceizures a year. The radioactivity in a computer could also mess you up a lot by giving you cancer, with no cure for any cancer yet you have to figure that everytime you are on that computer for too long you are putting your life at risk. The longer youre on the more and more and more radiation is going to youre brain. Do you really want to cut your life short knowing you are the one that did it to yourself, it could almost be called suicide because if youre reading this than you've been warned. So we've basically covered the effects that computers have on your body physically. The computer can also effect you mentally and socially. When @DATE1 comes along you will have all the time in the world to be on the computer but did you know over vacation you lose @PERCENT1 of everything you learned in school. Its been proven that computers cause memory loss. So what if you get back to school and you can't keep up with what's going on, frustrating isn't it? If you would've just read a book during the time you were on the computer maybe you could've gained knowledge rather than using it. Computers can affect you socially because not everybody wants to sit inside on the computer so while people are out having fun, you will be all alone, by yourself with nobody to talk to but a computer, would you like a computer to be your only friend? The debate about this topic could rage on and on for days and still have no winner but in all honesty when you go to turn on that computer think to yourself, is it really worth it? Think of everything you would lose, everything you could never get back, or would you rather do something that you would gain from in the future. Its your choice but be responsible enough to make the one that would benefit you." 5 4 9 +1201 1 "Dear editor, Computers are becoming more and more prevalent in the @LOCATION1. Peolple are spending too much time on computers instead of on other activities, an effect not beneficial to society. Because of computers, people have lacked exercise, missed enjoying nature and other parts of the world and forgotten about interacting with family and friends. Computers should be used in moderation and not in place of other important events in our lives. First of all, computer users receive significantly less exercise than those who do not use computers. According to a survey done by the @CAPS1 @CAPS2 @CAPS3 only @PERCENT1 of computer users reported that they exercised at least once every week. In contrast, @PERCENT2 of non-computer users (non-frequent computer users) reported that they exrcised at least once every week. Can one imagine what it would be like if everyone was a loyal computer user? Nearly everybody would be overweight, lethaigic from lack of sleep due to hours on the computer, and unworldly. Getting exercise is an essential part of everyone's life, and lacking it could be deleterious to one's health. Hopping off the computer and instead getting exercise, would make for a healthier and more fit country. Not only do computers deprive people of getting exercise, but they also prevent people from enjoying nature and other parts of the world. By traveling to @CAPS1 and unfamiliar places in the world, one is able to experience and learn about other cultures. Going on the internet @MONTH1 be a decent way to learn about other places, but actually feeling the ambiance and environment of a foreign place is allows for a much more profound understanding of another place. For example. when I went to @LOCATION2 for a vacation, I learned about the differences in traditions and culture. I saw the separation between the poor and the rich when I lookes from humble sharks along the river to the portentous, eregant edifices scraping the sky. It was an experince I could not encounter on a computer. People should be able to enjoy the wonders and differences of the world not on a small screen of a computer, but through the screen of one's eyes. Lastly, computers inhibit people from interacting with family and friends. From my personal experiences, I tend to ignore friends and family. Speaking, playing, and generally socializing with others is a critical part of everyone's life. Without this basic necessity people cannot be happy. In summary, computers should not be used in excess. This sort of use could read to people getting less exercise, not fully experiencing the world, and closs of interaction with friends and family. To make a better country and nation, the people of the @LOCATION1 @LOCATION1 should make an effort to reduce computer use." 6 6 12 +1202 1 "Dear Newspaper I think that computers have a positive effect on people, here are my reasons. You can get in contact with people, if you have a question you can look it up and you can do your job on a computer. I think that these reason will have you positive too. Many people like computers and have one. My first reason is you can get in toch with friends and family. I think this is a good reason because if your grandmother lives in @LOCATION2 you dont want to drive there every time you want to see her when you live in @LOCATION1. You would use the computer to live chat with her so you wouldent have to drive all the doun there. If you wanted to you could plan a day to go and see her. You would use a computer to get in touch with friends. If you needed to ask them a question about the homework they could answer it. That is my first reason why computers have a positive way on people. My second reason is if you have a computer you can look up questions that you would have. If you needed to know some thing for a big report and none of your friends are up you can look up your computer. Computers can help you so much if you need an answer. If you didet hav a computer if you would be so hard to do stuff. That is why I think that computer can answer your questions. My third reason is you can work on the computer. If your a stay at home mom ya can work on the computer to handle finances. A lot of people work on the computer to save the envirment. When I grow up Ill probaly work on the computer because it is easer. That is why I think that you can work on the computer. The reason I picked were you can get in tuch with family and friends, you can look up a question that you might have, and you can work on a computer. I hope you have a positive way on computers they help you out. People might think that they not your brain not they dont help and knoledge you. Many people like and have one. I think that you should have a positive way on computers too." 4 4 8 +1203 1 "Dear @CAPS1, @CAPS2 people at my school sit on there computers after school. They don't go outside and enjoy nature. Visit with family and friends or even exercise. @CAPS2 people are affected by this. Going outside can enchance your knowledge, you can go on a walk in the woods. When you are on your walk you @CAPS2 find interesting new species. Also when you are outside you can play with your friends or siblings. @CAPS2 times in neighborhoods there are a lot of kids, you can start a pick of game of baseball. You can also build new things. You could find a big tree and build a treehouse or tireswing with your family. Going outside leaves you with a lot of fun activites. When kids sit on the computer they don't interact with there family or friends. During the @DATE1 you can go to the beach with your friends. It will cool you down without having to pay money for an air conditioner. You @MONTH1 also find the oportunety to go to a different state for the day. Or you could go acros the country to see your sick grandma or your newly named cousin. Going on a picnic will give you time to get to know new people. You could invite friends and have them bring a new friend for the whole group to met. You will also have a lot of tasty food and who wouldn't want that? Going places with your family and friends can pad to a worth wild experinse. @PERCENT1 of kids chose to go on the computer than to exercise. Kids will become overweight. When on the computer @CAPS2 kids will eat. Eating for hours each day to not a good idea. You can go out for your schools basketball team or run distances in cross country. Once you are on the team you will make new friends, and get your exercise for the day. When you are on a team and exercising you will learn @CAPS2 life skills. You will learn the benifits of working as a team and by yourself. So getting your exersise is a very important role in your life. Why would you choose the computer? You wouldn't be able to enjoy the outdoors. Or spend time with family and friends. You would become over weight and unhappy. So, don't choose the computer, choose another activity!" 4 4 8 +1204 1 "To @CAPS1 @CAPS6 @MONTH1 concern: @CAPS2 I have been informed that you had the idea that more and more people use computers, but not everyone agrees that this benefits the society. I strongly disagree, I think that computers have a positive effect on people. Having computers teach hand-eye coordination, give people the ability to learn about @CAPS3 and faraway places and even allow people to talk online with friends or family. Don't you want your children to grow up with great hand-eye coordinatio? More than @PERCENT1 parents voted yes. As shown in many statistics, adults and children that use the computer for an hour or more a day have better hand-eye coordination than a normal adult or child that only uses @CAPS6 once a week. By using the computer for more than one hour a day your typing becomes quicker and your reactions increase. Not only does typing quicker effect your computer techniques but @CAPS6 also helps you outside of your home like in sports. For exsample, if you play the sport baseball, the speed of your pitch will increase over @PERCENT2 if you use the computer for over a hour a day! If your a batter your racation to the pitch will also increase by over @PERCENT2! Just by using computer. Is time running out for your @CAPS3 project to be do? Without computers, you wouldn't get the information you need quick enough. Dr. @DR1 from @ORGANIZATION1 state ""You can get the same information on people other countries, and @CAPS3 from the computer as you can . By using the computer you get the as a book and easy. In addition, you have to buy books to get their information unlike computers where they dont you look up the you and in expensive, dont settle for less get the best! Over @PERCENT3 of @CAPS4 have old friends of family out of the state that they would still like to keep in touch with. By having a computer you can chat with them through your webcam! Instead of calling them up or sending them an email you could chat with them and still see them in the flesh! Several computer owners say, ""@CAPS5 like your actually hanging out with them!"" @CAPS6 takes over @NUM1 days at least to recieve a letter back or an email from them if they live faraway with computers @CAPS5 instant ! Wouldn't you like to talk to friends and family every day instead of waiting around for a call, email, or letter? I think yes. All in all , having computers is a great investment. I would also like to point out that without computers you wouldn't beable to talk with friends/family online, get better hand-eye cordination, or even have the ability to learn about @CAPS3 in just a click of a button! Isn't this what you want? " 4 5 9 +1205 1 "Dear Newspaper editor, Have you ever been working on a paper, or reading something and theres that word you've never heard before? And you just cant figure it at? There where a computer can help you. Yes, some people do waste all their time, online but they have issues. Computers help us with all of our school projects and get research. You can @CAPS3 reconnect woth old friends that you havent sen in years, learned many good things with the internet and computers. First off we would not be able to do some of the things we do without computers. @CAPS1 us school projects, I use @ORGANIZATION1 word and powerpoint all the time. Our teachers prefer us to do that instead of handwriting evert thing. Getting information on the computer is so much faster and easier I mean the time it would take, you to look up the word ""elephants"" the encyclopedia is probably @NUM1 times more that it takes to it in can google. Plus there about @NUM2 1/@NUM2 seconds google call all up millions of websites just what ""elephants"". Another reason way computers are very beneficial is you can reconnect the old friends you havent seen or talked for a years. You can @CAPS3 meet new @CAPS1 us dating and facebook especially is three things and theres websites like twitter where you can follow celebrities and @CAPS2, computers are internet gives great information people. Some kids take online @CAPS3 @CAPS4 that does recieves around computers to do really have a choice. So in conclusion, computers can be very beneficial to lets of people I know its not a good thing to sit there all day and play cmputer games, but we lets of things accomplished, like school projects, or any project really. Its @CAPS3 nice to meet up with someone you havent talked to in a while sometimes. We have learned many great things from the internet. I hopre you consider my opinion." 4 4 8 +1206 1 "Dear editor @ORGANIZATION2 the source, @CAPS1, I have noticed that many people have been spending too much time using their computers. This is something that needs to stop because it imports peoples health, safety and education. To open my statements, overuse @ORGANIZATION2 the computer con lead to poor health. Take my friend @PERSON1 for example. He sits at home on his computer all @DATE1 and plays games, goes on @CAPS2 and @CAPS3. He rarely gets any excersize and he almost never sees daylight. @PERSON1 @LOCATION1 gained @NUM1 pounds, which lead to obeisity and heart problems. He even wears wooden teeth because his general hygene declined as well. Another common health problem that developes from excessive use @ORGANIZATION2 the computer is arthrietis. Dr. @PERSON3 @ORGANIZATION2 the @ORGANIZATION1 told @ORGANIZATION3, ""The massive amounts @ORGANIZATION2 typing on the keyboard can lead to joint problems, arthrietis, and other joint related problems."" In fact, a study that took place from @DATE2 to @DATE3 to see the long lasting terms @ORGANIZATION2 computer overuse had some shocking results. @PERCENT1 @ORGANIZATION2 the test subjects saw doctors from problems with joint pain. These health risks are a concern, but peoples safety is on bigger issue. When people excessively use the computer they put their safety and well being at risk. People have had serious injuries and scams placed on them because @ORGANIZATION2 the internet. In @DATE4, a girl named @PERSON5 was kidnapped and taken to @LOCATION2. She met a man on @CAPS4.com named @PERSON6, who persuaded her into meeting him at an airport. From their she was taken to @CAPS5 and held from ransom. Every time people use their computer, they put themselves at risk. Dr. @PERSON4 @ORGANIZATION2 the @ORGANIZATION2 claims, ""I @NUM2 @ORGANIZATION2 internet-related kidnappings & other crimes. The victim was a person who overused the computer and frequented the internet. Safety is one @ORGANIZATION2 the most important things in life. But peoples education is also effected. When people overuse the computer they can impact their education. The internet hold false information and can be a waste @ORGANIZATION2 peoples time. When students are working on a report, they very often use the internet to get information. Websites like @CAPS6 and @ORGANIZATION4 are most commonly used. This can be a big problem. Did you know that @PERCENT2 @ORGANIZATION2 information on the internet is wrong? Thats more than half @ORGANIZATION2 it! The internet can also be a time waster. My bro, @PERSON2, had on assignment to do @DATE1. He stood up @NUM3 hours using @CAPS2 and didn't even write his essay. He recieved a zero on that grade. In closing, overusing your computer can cause health problems, put your safety at risk, and hurt your education." 6 5 11 +1207 1 "Dear editor, Have you ever used a computer? Odds are you have, which means you know how convienient and positive computers are. Did you know @PERCENT1 of all @CAPS1 use computers regularly? These technological marvels provide many ways to communicate and learn, showing computers have an extremely positive effect on people. Who hasn't ever played a game on a computer? Computers provide many forms of entertianment, such as games, music, and videos. I once has to drive @NUM1 hours to see my grandma in @LOCATION1. The only thing that kept me away from the grasp of boredom during the trip was my portable computer, that I played games and watched movies on. Critics of computers argue that people who use computers do not ever participate in physical activities. Of course, try exercising when you are crammed in a car traveling @NUM2 @CAPS2, which is computers positively affect me. It was @NUM3 on a @DATE1 @TIME1, and my mother was just about to have a baby. Unfortunately, none of my relatives were there to witness this baby coming into the world because the all live on the other side of the @LOCATION2 @CAPS3, this minor set back did not prevent them from seeing the @LOCATION1 baby, and thanks to computers, they didn't even have to leave their homes. This is because computers offer many ways to be social, such as social networking sites. Within @NUM4 hours after the baby was born. there were many pictures and videos up on these social networking sites that let everyone enjoy my @LOCATION1 baby sister. Computers make life convienient for all. Last but not least, computers are not only a fine tool for school, but are necessary to succeed with your education. One snows day in @DATE2, I was assigned a research paper on @PERSON1. Too bad I didn't know one thing about @PERSON1, so I asked my mom to drive me to the library to take out some books for my report but due to the snow, the library's power went out and therefore they were closed. This was not an issue, though, beacuse I only had to spend @NUM5 minutes on a computer searching for information, instead of spending hours browsing through countless pages in a book. Thanks to computers, I received an A on my report. Overall, computers serve many helpful purposes for people. These marvelous machines can provide entertainment, socialize with people around the world, and even provide information on any topic you would like. @ORGANIZATION1 readers, now you understand why computers are positive for your lives and everyone elses. I encourage all of you to spread this message to everyone, so they know all the benefits to using computers." 4 4 8 +1208 1 "I disaree with computers are for you becau if one you don't do nothing this you can meee bad people three you can in samething bad. So if you want to know what happen next you will have to keep reading on. Reason are you do nothing because people need to now and because evebady have to lost thing son thing. But if you keep doing nothing ever day your bady will all used to doing fun you can't move or walk. Reason two you can meet dad on the computer becauce people can not tell you all the thing you want to know and they can be doing thing that not ok and they can be want by they can be filters. Reason three you can all in something bad becauce you can be takeing to you and you say something about your self and they are about something hav and you don't know they use you for something you don't know now tell someone can to you and say you all in why but they tell you so being on the computer far a long time can get you in something big. You don't do nothing, you can had really now you can in something bad. Now you know why being on the computer far along time can be bad. Now what will you why you that side. P.S. thin I you for taking so are time reading this." 3 4 7 +1209 1 "Computers have many effects on people these days. Most of them are very good effects that can lead you to become more self-confident. Computers can educate people, from learning about some ancient person to doing school projects. Also computers entertain people too. Lastly it can even increase you chances of finding a job or helping out your job. For most people education is very important to but since kids don't stay in school @NUM1 they use the computer to teach to kids kids can learn about other places. This benefits us because we're learning something and growing out our knowledge. Also kids can do their projects. For example writing on essay, their science fair project and so on. Lastly kids can learn about people from other times. For example famous musicians long ago, celebrities, legends, hall of famers etc. People always look for some kind of entertainment and the first place they ever go is the computer. Everyone likes enetertainment and the computer in the the best plan. They could play a variety of games. Games from the past or gaems from the future. There is also a whole bunch of : multiplayer, figure, castle defense, shnaler sports, racing, acade, and so on. Another fun thing to do is interact with friends online or even talk to any family don't live near you. Lastly, you could watch funny videos, sad videos and music videos. Another that computers effect people is their of finding or help on their . the computer can teach people what they will do on their job, and what to expect. Also, it can let you search for jobs. In your. Finally, it can help them for allowing them to a web page. In conclusions computers have people. It can increase their education, give them entertainment, and even help out on their job, or help them find a job." 4 4 8 +1210 1 "These have been many advancements on computer technology and there are people who are for it and there are people who are against it. In against it and ill you why. You spend less time exercising which you'll gain weight. Spend less time enjoying nature which means youre lost with anything natural, an spend less time with friends and family which probbaly prove you, @CAPS1 @CAPS2 not saying the computer is a bad thing but to much of it certaintly is. First, you spend less time exercising. you don't exrcise you gain weight, you could do most of the stuff you could of , and you risk health. This is a bad thing because your not yourself anymore and if it goes to far you can't even a move. So if this sounds scary plan your time on the computer, so it doesn't happen to you, time is so limited that we waste it on stuff in computers so think before you go on the computer maybe you can go for a jog outside. Next, you spend less time playing nature. Nature is so beautiful but its being destroyed and we do nothing. There are only a few hundred maybe they said of us these truly help the environment, and if you think then few hundred of thousand people is alot . @NUM1.billion people of earth. Its a crying shame to see something so beautiful die, while most of us do nothing to help. Finaly, you spend less time with friends and family. This is the most important reason of all. The main course if you will of it all your family is so important because there your best friends whole wide world. Your friends important them. Your family might leave you if you your life to the computer if you they you so be carfully. Your friends are dust as important as your friends they both make you laugh. have good times and cheer you up when you upset. Just don't forget that as be gone. Well, there you have it my three reasons for being against work on the computer and they all sound like a good reasons so lets recap it all shall we. First, spend less time exersing, very important. Next spend less time enjoying nature, very important. Finaly less time with friends or family the most important of all. So hoped you enjoyed my essay and you've learned something . So remember to much of good thing is bad and I'll just leave you with . " 4 4 8 +1211 1 "Dear editor: @CAPS1 you know that @PERCENT1 of people in the @LOCATION2 have comuters? These computers are definatley benefitting society. People need computers to get updated on important issues, contact others and learn new information. Computers are neccisary for everyday life. It's very important that news gets around, and one way for it to do that is by computers. Average people like me and you need to know the weather, global issues and many other important topics. If you use the computer to get updated on important issues you will be able to acess the information right away. For example there is no need to wait for the weather to come on the television when you can find out the weather for your local area withen seconds. Just recently there was an earthquake in @LOCATION1 and million of civilians died. if a natural disaster was to happen somewhere in @CAPS2 people would need to know and computers are a great way to make sure everyone is updated. Not only does the computer help us get important updates on global issues but it is also a great way to contact people. My relatives live very far away and we can't afford the long distance phone call charge and so we e-mail them. @NUM1 out of @NUM2 people contact far away friends and family by e-mail! The computer is also a great place for friends to contact each other through social networking sites, such as @CAPS3, @CAPS4 and @CAPS5. People need to interact with other people and the internet is a fantastic place to do that. Finally computers can also be used to learn new information. If children need to find inforamtion for a project or essay the can easily search the internet and find an answer. Kids need to acess the information that is neccisary for school on the internet. Computers are useful for adults as well. If adults want to learn something new all they have to to is search it on the computer. It's so much easier than going out to the library and finding that information in a book. @CAPS1 you know that most adults use an online dictionary to find the definition to a word? Computers can find every answer to your questions. In conclusion, computer are really benefitting society. Computers can update you on important issues, help you contact people, and find out new informatiuon. These avandces in technology are good for human society." 4 5 9 +1212 1 "Dear Local Newspaper, @CAPS1 home computers is a good thing for many reasons. One reason is because people can use computers to learn about other countries and people. People can also use computers to type and save paper. Also, people can use computers to talk to people living close or far away from you. Finally, computers can save paper by replacing books. One @MONEY1 the most important reasons why people need computers is because computers can help you learn about and research other things going on in the world. If a student needs to research a country and write a paper about it for school, it is much easier and faster to use a computer than to look through a textbook.Computers are also better and faster than a textbook if you want to know more about a person or a culture. Using computers to type are also faster than writing a paper. Using a computer can save time and money when it comes to typing a paper. When you are typing a paper, you don't have to worry about @CAPS1 handwriting or breaking your pencil. You also don't have to worry abut spelling something wrong because computers can check you spelling and grammar. What you are writting a paper you have in about all @MONEY1 these problems and more. You also have to spend money on pencils and other writting suppplies. Computers also saved people @MONEY1 becase they didn't need to buy paper to make textbooks. Computers also evolved how people can communicate with each other. Before computers were invented, you couldn't talk to people in other countries unless you paid to use a phone or sent them mail. Now, you can send instant mail which saves days @MONEY1 time and paper. You can also use webcams to talk to family members and people you don't know. That can save you a lot @MONEY1 money because you don't have to pay money for postage stamps, phone calls, or plane rides to visit them. Those are some @MONEY1 the best reasons why @CAPS1 a home computer is better than not @CAPS1 one. A home computer can save you time when you want to research a country, person, or culture. They can save you money because you don't have to buy postage stamps, pay for phone calls, or pay for plane rides to visit someone from a different state or country. Computers also help save paper because you no longer need to make large textbooks or use a different price @MONEY1 paper when you make a writting mistake." 5 4 9 +1213 1 "In my opinion I agree that it benefits society. The reasons that support my decision are lots of buisnesses use computers to work, fast food resturants use computers, and schools use computers. Computers are all needed just for those reasons. My first reason is buisneses use computers to work. Workers use computers for designing, filing peoples names, and to type papers, and essays. People in the designing industry don't use paper and pencil anymore, because they use designing softwares to work. Instead of filing in a cabinet people and workers use computers to put their patients, clients, and workers. Computers can hold more information and files than cabinets can. People also type papers and essays for work. For example, news reporters have to write a report and type it for their company in order to get it to publish. If workers in buesness were to need to use computers to file, type, and design clothes and games. My second reason is that fast food resrurants or even resturants use computers, instead of using cash registers. For example @ORGANIZATION2 or @ORGANIZATION1 use technology to type in peoples orders, and amount they pay. Back then they used to use cash registers, in order to get money out they need to click a button, but now the have all locked up using computers. Every resturant has at least a touch screen computer in it to use. So resturants need computers to survive the world. My third reason is schools need computers for students and teachers to write reports, file the students name and grades into it. Students in classes write reports for projects or even for class work. Teachers need computers to file the students name, grades, and information, instead of using a cabinet. Teachers also use computers to make homework pages and they need to print stuff off of word. So schools use and need computers for students and teachers use. In conclusion I agree that computers benefit society, because buisnesses need them to work, design, and file, and fast food resturants so they can take peoples orders and to use in schools for students and teachers use. So thats why it benefits the society." 4 4 8 +1214 1 "Dear @PERSON1, Computers are necessary and benefit our community. They do a great deal to help make our lives easier. There is not a day that we do not use a computer in some way or another. The benefits of our computers are they connect us, the spread news, and they make every day objects work. Computers connect us in so many difffrent ways. Where would businesses be without computers? Most modern day businesses are run by computers. Owners can now have businesses all over the world. With computers a business in @LOCATION2 or somewhere else in @LOCATION4 can be connected with a building in @LOCATION1. They can have live video chats together. With the help of the computers they are able to contact any branch of their business all over the world. Even smaller businesses use the computer to connect to customers. Now a days we do a lot of online shopping. This is an example of how stores connect to their customers. Stores can show buyers everything they have to offer including store locations. This can help stores get more business by connecting the buyer to the shop. The computer not only connects stores and businesses but also people to people. @PERCENT1 of kids in my school own a computer. With all these computers many social networking sites are born. The most popular right now is @CAPS1. Students can connect to old friends from other places and even other countries. We have a live chat on @CAPS1 or even @CAPS2. @CAPS2 is instant messging which is, well, instant. With a simple click people are connected no matter how far apart they are. Therefore, computers conect people. Computers also broadcast news. Without the computers most of us would not no about world news. This includes the @LOCATION3 earthquake. If we did not have the computers to let us know about the earthquake in @LOCATION3 they would be in alot more trouble. They would not have all of these donations. Also computers even broadcast national news. Almost all newspapers are now online along with on paper too. Anyday now they will be completly online. This will drastically change how we learn about news. It would just be a click away. What would have taken days to get here now takes minutes or maybe even seconds. Science also benefits from computers. Phones now can be personal tws, inernet, and messaging devises. Phones are just a tiny version of a computer. Cars also have computers put into them. The @CAPS3 in our cars are computers; we would be lost without them. Also, in cars there are computers to run just about everything else. So, there is not a day where we do not incounter computers. In conclusion, computers benefit us in so many ways. They conect us deliver news, and are in almost all of our technology. Could you imagine life without computers?" 5 5 10 +1215 1 "Do you know that square box with a screen on @CAPS11? Or that rectangular snaped objected with letters on @CAPS11? Or that other rectangular box where you put a disk, a usb, and you turn @CAPS11 on at. All that is a computer. Yes! @CAPS11 is fun, you @CAPS3 play games, go on internet, watch videos, and check your mail. If you had a computer everything would be easy but @CAPS2 nor. @NUM1 reasons why is if you have kids and they go on your computer you have at home @CAPS11 @CAPS3 cause them addiction, @CAPS11 @CAPS3 be inaproprite, and @CAPS11 could be exspensive. Pleases near my reasons and give me a fighting chance. The first reason why computers are bad because @CAPS11 @CAPS3 cause addition to your child. @CAPS12 a problem because your child bother you and say, ""@CAPS1 or @CAPS7 @CAPS3 I go on the computer pleace"". And you say yes and when you let thom on they will be happy when you say. ""@CAPS2 time to act off the computers"" they will say ""@CAPS3 I stay on just for a little longer or I dont wanna act off @CAPS4 in a middle of a game."" @CAPS5 when they finnally act of and thir nexted day they will ask you again ""@CAPS6 or @CAPS7 @CAPS3 I go on the computer"" and if you say ""@CAPS8"" they will cry and throw a temper And the more you let them on the they will wanna stay @CAPS9 if you say, ""@CAPS8"" you will get a The second reason why @CAPS2 a bad thing to have a computer is because @CAPS11 @CAPS3 inaproprite, @CAPS11 @CAPS3 be inaproprite because you child is growing up he or she will go ento the internet and lat a things like nude pictures or videos about a or a that world to lead your child having sexual intercorse. There you will but at the age of @NUM2 to @NUM3 years old and you they of inaproprate a computer @CAPS3 do. @CAPS9 last but not least the last reasons why a computer is bad because they are computers cost about @MONEY1 more a days and you @CAPS3 broth your computer and @CAPS11 will cost you a lot get @CAPS11 fixed or to get a new one and they will be on @CAPS11 even more or they @CAPS3 press @CAPS11 up trust me I know. @CAPS5 @CAPS12 why a computer isnt always a good thing. Now that you hav heard my reasons I hope you take this info consederations and think about @CAPS11 you really want a computer or not they are good and easy but they also have some bad side effects. All the facts are true ans I say about @NUM4 people in the world go threw computers every year @CAPS5 think hard. Do you" 4 4 8 +1216 1 "Dear @CAPS1 @ORGANIZATION1, Computers are an extremely usefull tool in this modern age. They teach hand-eye coordination, give people the ability to easily learn about faraway places and people, and allow people to talk online with other people. Therefore, I believe that computers have a positive effect on people. Hand-eye coordination is a very important skill for young children to master. Without it they will have sloppy handwriting, absolutely no chance at sports, and much more. Computers help teach them because they need their finger to hit the same key that their eye sees. And because they tend to want to type faster, it will help even more because the finger and eye will have to work in mission to type faster. Computers also give people the ability to easily learn about far away places, people, etc. People used to have to spend hours searching for a half decent book on a topic, and then find the specific information they need in the hundreds of pages. Now that information is only a few clicks away. Say you have had problems with your faucet, it keeps drippy but you dont want to pay for a plumber. You could easily step by step instructions on what to do using the computer, the possibilities are endless. Finnaly, Computers can allow people to stay in contact with friends who @MONTH1 live far away. It is more convinient than using a plane because you dont have to have something in your hands the whole time. You can walk away and then came back when you hear that you got a message. It is also very usefull for people such as buisnesmen because they can talk to multiple people at once while still being able to get other work done, @PERSON1, author of buisnes magazine tells us in an iterview that it is nearly imposible to run a succesfull buisnes without a computer. How people could possibly say that computers have a negative influence on society, I dont know. But I hope that you will publish this in the paper and show them that computers are necesary." 5 4 9 +1217 1 I think having computers are good because you can use it to find places. Another reasons why its good is that you can talk to your friends from the computer. You can play all types of different games and get pictures and its is good to do your homework. That is why computers are good and we need them. First reason that we need computers is that it can be a map for us. Also we could look at places we never saw before and if you want to get some where you can go the computer to do that. 2 2 4 +1218 1 "There are over @NUM1 students at @ORGANIZATION2. & out of @NUM2 students have computers. Computers have a positive effect on people. Students who use computers are more skilled than kids who don't by learning all the software and hour to be safe when online. Computers teach kids hand eye coordination, which can come in handy when playing sports. Also they give people the ability to learn about faraway places and people. Finally it allows people to talk online with other people. Computers make people develop hand eye coordination. When someone plays a sport live baseball or basketball, hand eye coordination is definetly needed. say your a catcher, and then catch it. Almost every sport needs hand eye coordination and computers help you get it. Hand-eye coordination can also be useful to people with jobs. If you work with computers for a job, it is helpful to be well known wit the keyboard for fast results. Mostly any job along with sports requires hand-eye coordination. Some people have the gift that they have hand-eye coordination when there born, but for people who don't practice is the best thing. Learning about faraway places/ people is always facinating. On computers towns can put up webpages with pictures, information or even ways to help you plan a vacation. Theres also @ORGANIZATION1. @ORGANIZATION1 can help you find any place or you can find out anything about that place. Computers even give you the abilty to plan or visit a loc location by buying tickets online or maybe you just want to read what the place is like, you can do all that. Finally, computers can be taken any place with you and say you go to @LOCATION1, and you don't speak there language, well you can go to a translating site and figure out what things mean. Facebook, @CAPS1, @CAPS2, all of these sites make it possible for you to talk with other people. Personally, I have a facebook, aim, and even a e-mail. A lot of the time I will go on facebook and talk to my friends from school and even my cousins that I don't get see a lot. Talking online helps you interact with other people that you might not see in school or around town, and also your friends that might not have a cell phone. It helps you learn social skills that everyone needs. Computers give you all that. Its easy and free way to talk to anyone you know whenever you want. In conclusion, computers have a positive effect on people. Almost everyone uses computers, and they aren't difficult to use. Computers teach hand-eye coordination, give people the ability to learn about faraway places and people, and even allow people to talk online with other people. Computers are one of the best things that has ever been made." 4 5 9 +1219 1 "Dear editor, I have read your past article about how computers can take too much time out of some ones life! time they could be cseing to exercise or on @CAPS1 @CAPS2. This is completly untrue and in many ways actually benerfits society. The internet is d fast d simple way to shorten the time spent doing activites we would already do. Instead of sending d letter to someone to invite them to the @CAPS3 you could just email them. Letters can take weeks and can even get lost while email sends it to them instantly. Also what if the movie sells out or is canceld, don't worry with the internet you can reschedele and buy tickets online. So that doesn't happen again. Suddenly your phone rings, its d call from your best friend saying to turn on the news, but you have to leave to pick up your kids in three minutes. Instead of waiting for the reports to stop talking and , you can check instantly on one of the many news websites and still be early. Have you been dieing to talk to someone haven't seenin a long time. Well with one of the many free websites like @CAPS4 and facebook go can do htat in d heart beat. You can talk to that person and find many race. Also if you've been feeling lonely, like you can't find the right person. With dating sites you can find the perfect person and maybe go to the @CAPS3 with them. Not only does it save time and connect you to other people but it can help you physically. Acording to drishnig at @ORGANIZATION1 people who use computers for at least @NUM1 mintes a day have d @PERCENT1 increase in hand ey corodination relaction time and accuracy. Although home say it's bad for your eyes that is a lie, it was proven by @PERSON1 the @CAPS5, bestead of health who has @NUM2 degres in science and health." 4 4 8 +1220 1 "To whom it @MONTH1 concern: I will agree that computers have caused many people to spend less time outside. However, it has kept kids inside instead @ORGANIZATION2 on the streets causing trouble. Computers have become a part @ORGANIZATION2 our everyday life. Some use it to stay connected with family or to reconnect with old friends. Experts say it's bad but the @ORGANIZATION2 gives us a computer class in @ORGANIZATION1? We learn keyboarding skills. @ORGANIZATION3 techniques and how to research any topic. @ORGANIZATION1, itself has influenced computer use. If we could travel back in time, we would most likely see kids hanging around the streets. Now-a-days, kids spend a lot @ORGANIZATION2 time inside, on the computers. This isn't necessarily a bad thing. I bet you, or your parents, or maybe even your grandparents used to hear @ORGANIZATION2 gangs or fights going on in the streets. Now that computers have become an important item in many people's lives you don't hear those types @ORGANIZATION2 things as much. I'm not saying they don't happen but you don't hear your child come home and talk about gangs and fights. Therefore, being on the computer isn't that bad. In history you probably learned about immigrants coming over to @LOCATION1 to get away from their ruler. Well, not everyone was able to come. Some people have family in another country. Due to time difference, it is hard to stay in touch. My mother came over here when she was @NUM1. The rest @ORGANIZATION2 her family still lives in @LOCATION2. To stay in touch they email or @CAPS1 chat. The five hour time difference makes it difficult to know when to call. The invention @ORGANIZATION2 computers has made it easier to catch up with family! Most importantly, the use @ORGANIZATION2 computers is influenced in schools. My @ORGANIZATION1, @ORGANIZATION1, has a computer class, where we learn how to skillfully type. We are also taught how to correctly cite and research work. This is helpful because if we don't know this information we could plagiarize and plagiarism is illegal. Frequently, teachers give us projects that ask for computer use.. Either we have to look something up for specific, accurate information or we have to type a @ORGANIZATION3 document. As well as using the the online @CAPS2 book instead @ORGANIZATION2 taking it home. After reading all the facts, I'm sure you will agree that computers can benefit society. Students stay off the streets and only cause trouble with siblings at home. People won't feel like they've left or lost their family. Schools influence computer use to help us learn. Certainly you cannot disagree with me!" 5 5 10 +1221 1 "Dear @CAPS1 or @LOCATION1, @CAPS2 people believe that computors are harmful to our society because people spend more time on such technology. I believe that this is not the reason our society is falling today although I agree that people spend to much time on the computor. Computors are actually helpful in our society because it is an advance in communication. People have found ways to communicate with other people through plugging in a web cam and mic. Not only does the computor help communication but it also helps us gain information on modern day society like the news to stay up-to-date. This complicated device can also save files and documents by typing them in so that if it is lost you could just reprint it out. One main thing that people of modern day technology usually do is talk to faraway friends and family on spare time. Legal websites allow people to be informed of a friend or family about events that have ocurred like an incident or an up coming event. @CAPS2 experts like @PERSON1, who specializes in the behavior of people, says that this is a number one cause of obeisity and prevents people from meeting other people outside or even plain exercise. I would say this isn't completely true because before even talking to anyone. Online people usually go for a jog around the neighborhood. Information is vital in our society and keeps us up-to-date on modern life. A computor can give us certain information like news and whether report. These days every smart person would go search information on a computor for not only missed news but for future forecast on whether to plan a picnic. This would be a helpful tool to our society in order to keep up with the world and not miss the latest event. I believe this is an advance in our modern day society because you could get the information you need. When you are in a rush to go to work don't you end up losing papers and files just forgetting about them? The computor can send data to a computor to conviently copy a file or document so you won't have to rush to work and worry about lost files. It has been known that thirty out of fifty people have saved themselves from losing a job from a computor. The computor can also hold and store data for later use like a song or picture. You could send that file and listen to it on another computor. Now is the time to decide if you should support computors. The computor can help you talk to long lost friends of one touch of a button. If you need certain information than you could find it on a computor without ever leaving your comfortable home. last and not least you could hold important files and documents and save yourself the trouble from rushing to work. So go and type that letter to a representative to help people see that computors are good for our society." 4 6 10 +1222 1 "Computers. First of all. I strongly beleave that people should not use computers all the time. Staying up to late, like on a school day and your tired. Your eyes look at black & white words that can make your tired, forcing to stay up, and drinking red bull monster, or any other energy drink when your not suppose to. Second of all, almost the hole school use's the labtops, and the computers like @PERCENT1 use's them. The othe <@PERCENT2@NUM1> is students and adults write on paper, and that has good hand and combination. the @PERCENT1 is like all people go online, facebook, youtube, games, and google. The @PERCENT2 is all people use to write on their paper, and doodle on the back round. Third of all. In other state's people don't have enternet service, or they can't use computer. People have to write their work on a piece of paper. Some kids, youngadults, adults, and students sometimes have bad hand writing. I think all people should not have a computer." 3 3 6 +1223 1 "@ORGANIZATION1, In my opinion computers are good for people. I believe this because many people get to see things that on their daily basis wouldnt. I think that computers have a positive effect on people. I think that many people now a days work alot so they might not have time to remember little things such as going to buy newspaper or they might not even have time to watch the news on tv, but because of computers they can read or see the same things but in less time. Some people have a job that includes computers so they could also read the newspaper on their computer while also working. This benefits sociaty its own way. I believe computers are very useful to everyone. C omputers can help people get in touch. They can keep in touch by using webcam and etc. It could also let them communicate. Computers allow people to see each other from different places in the world. It gives people a chanve to see the people you couldnt see from afar. In my opinion people can also learn from computers. Computers have many positive effects that are very important. They give people a chance to learn things. This can benefit sociaty because the more knowledge people have the better it is. It gives people who didnt get a chance to learn what they wanted to actually do so and learn it. Computers do benefit sociaty lets take @PERSON1 for example he says that @PERCENT1 of kids believe that computers have helped them in their own way. Many people can be bored at times but because of computers and the fun things it has such as games, videos... etc.. People get to actually spend some time doing something like @PERSON1 stated kids believe computers are helpful because by playing those games it can give them hand eye coordination and help them in different ways at the sametime. (takes away boredom and lets them get good hand eye coordination) Computers also benefit sociaty by letting people has such technology. Many time technology is needed in everyones life. Technology has helped many people and still continues to. Computers is one of the technology that helps people. Technology can teach people things that they do not even know they could do. In conclusion I believe computers have many great positive effects on people, and it also doesnt only benifit people that use this technology it benifits others in a way too. It gives everyone a chance to learn about things, and do them so I believe computers are a great thing to have." 5 4 9 +1224 1 "@ORGANIZATION1, @CAPS1 a world without computers. Where would we get all of our information from? Would we have to religh on television or magaziens, where information can be changed? Or how would we ever get any reports done for work or home work? I know many people who don't write neat, how will any one read it? Basically, computers effect our lives so much in a good way that it would be chaos with out them. Computers allow people to learn how to type which can improve all around skills such as hand eye coordination, they let us connect with places we are not familiar with and see family members, and they allow people to have an online education which can help with the economy. Computers effect us in a very good way and they change our every day lives, @CAPS2 children these days cannot type. A recent study done at @ORGANIZATION2 showed that @PERCENT1 of kids older than @NUM1 already know how to type on a keyboard. Computers have such a big effect on us with so many skills that people don't ignoledge enough. Because all of thoes kids know how to type, they can spell better too. I remember one time when I was in the middle of writing a report online. I got @NUM2 a word I didn't know and had always had trubble spelling it. So I took my time and typed it out one letter at a time, and it was correct! This example shows that computers can effect everyones lifes, even younger kids. The way that we get information from computers is just like the way our hands get information from our brain to move. For example, when babies learn how to walk the religh on their brains show them how it's done. This is just like how when there is a natural disaster, such as the earthquake in @LOCATION1 we religh on our computers to show us and tell us what is going on and how something like this could happen. Computers can effect us this way because there are many things we might never know about our world without them. Computers effect families everyday lives by giving them online educations. My @NUM3 year old cusin told me that she was happy her mom could go back to college from home because then they could spend time together. I know you might think that computers can make families get further apart but they actually bring them closer together. There is only one choice and that is that computers effect all of us in a good way. They can help us learn how to type, connect us with our world and bring families closer together. Without computers we wouldn't be the same as we are today." 4 5 9 +1225 1 "Dear local Newspaper. I think we should keep improving technolgy on computers. Some people think that people spend too much time on the computer and not enough time outside. I personally think that the computer is important, if people don't use it none stop. There are many reasons wht the computer is inportant. First of all there are many places in the world that not everyone can go to. The internet is a good way to find out about a place. Also if you are going on vacation and you would like to know alittle about the vacation spot you can just look it up on the computer. Another reason is the computer can help you study a place too. Also if you are writing a research paper for school then you would probably want to find your information on the computer. If you are disagrreing with someone than you can find quick and easy information. All you do is look up something and you can find it. And you can learn new things that you have no clue about. Most of the time the internet is very helpful. One more reason is communication. On the computer there are many ways you can communicate with other people. If you have friends or family far away then you can keep in touch with them without leaving your house. Also if you are not sure about homework or something like that you can just ask a friend to find out. And you can send pictures or videos to people in order to keep in touch. Sometimes people use that feature for bad or inapropriate things. But you can do something about it so you don't get those bad things. The internet can help you alot in your every day life. You can learn about new places, you can do research, and you can communicate with friends or fumily. If we keep improving technology you will be able to do alot more than you can do now. The internet will be able to help you alot more in your every day life. Now you can see that the internet can help people and its not just keeping people inside that is why I think we should keep improving technology." 4 4 8 +1226 1 "Dear Newspaper, I personally believe that new technology is a great thing. Thats why I think that computers have positive effects on our society. Some of these effects include developing skills to help people for present or future, getting a better education and helping people to become more social. Computers can help people in so many ways you just have to realize it. So come and see why computers are a good choice to have and use. My first reason of why I feel computers have positive effects on people is because they can help develop skills that one has and @MONTH1 not realize. For example a teenager @MONTH1 say while typing a paper that she really likes to write. So, she @MONTH1 go on the internet start looking at different styles and maybe she could become a famous journalist. It's all from the skills she got going online and searching what she enjoys. Another situation could be that a man applies for a job and then the employer' says he has to know how to use different softwear, so he could go on the computer and look for a tutorial on that specific softwear. A computer @MONTH1 help people build skills now and for their own future. My second reason of why computers can have positive effects on people is that it can help them get a better education. Any adult who hasn't gone to college and wants to can take classes online and earn their degree way. The education is just for adults; kids can go online and research history of different places they live and want to go. The great thing about you is you can find the information fast and easy. Computers help people learn more and get a better education for themselves. My final reason of why computers have positive effects is that they help people to be more social. There are so many ways to connect with family and freinds. You can send an email to someone and wait for a reply. Or now, you can even instant message somebody and talk to them like there in the same room. There are also websites, such @CAPS1 facebook, where you can get together and talk with old friends. Computers can help everyone connect with anyone @CAPS1 you can see computers have so many positive effects on people. They can help you build social skills for now and for our future. They can also help people get a better education. Plus, it is a great way to connect with past and present friends. Hopefully you can see how a computer can have positive effects on so many people." 4 4 8 +1227 1 "On today's society many new technologys have been released. Such as the @NUM1 player, cell phone, video game counsels such as xbox @NUM2 but probably the most popular and most used is the computer. The ability. and search information in just a couple of clicks. Some people are with technology that they almost get addicted to it and use it every chance they get. Is this good for people is what there doing affecting there health and physical activity. Yes, people these days are affect by the internet greatly. Such websites in once the addiction highly such as facebook, myspace, and youtube. These are probably the is for school. In the @NUM3 years sence facebook. the level increased dramatically and so have the high pressure level! Dr. @DR1 says. This online behavior must stop people are getting addicted and gaining wait from the lock of physical activity. As you can see the online internet can be very use but not something that should be used non stop it can affect you helth and bring other dangers." 4 4 8 +1228 1 "Hi! I am writing in which computers are a bad thing to the society or good thing. I think that computers are good thing to have around. They help us in a lot of way and they also help us find new friends and new updates. This is going to be my first opinion. I think that computers have effects on the society in a good way because people can find @CAPS1 of the latest updates on the weather, society and country's. It helps the society in a good way because people don't have to look though an old Newspaper. All they have to do is click and there there reading it all and probally seeing pics and stuff of it. This is my second reason why computers are a good effect on the society they help us in a lot of ways on which meeting new people and staying in close good with them and talking with them and sending pics of stuff and you. My last opinion for computers are a good effect on society is that @CAPS2 you have a buissness or anything you can sell any of your merchandise, keep buiness plans, And also you can make a website for your business after a while @CAPS1 of people will know about it and it would make a really big inpack on your buiness. That was my three opinion on which why computers are good effect on the society and I think that computers are really good effect on the society." 4 4 8 +1229 1 "Dear Newspaper @CAPS1, @CAPS2 you think that computers have a positive or negative affect on people's lives? Well if you think it is negative I am going to show you why it is actually very positive. First, it teaches good hand-eye coordination. Second, it lets people communicate with other people. Third, it can help with school and work. As you can see this is why I believe it is positive. First, computers teach good hand-eye coordination. While you use computers you are improving your hand-eye coordination. One way is that when you are online and you see something you like or want to see even bigger, you move the mouse and click. This helps because you saw something and didn't need to see where you were moving the mouse to click on it. Also it helps because when you are typing a paper you don't need to look at the keys to know what to type. You can look at the screen and move your fingers freely. As you can see this is my first reason as to why I believe computers are positive. Second, computers help people communicate with others. This can be important if you need to talk to someone that lives far away. If someone lives to far away and their is something important then the @CAPS7 is great. You can send people @CAPS3 or even @CAPS4 chat someone. It helps communication so much that you have choices on how you want to talk to someone. Third, it helps people with school and sometimes work. It helps people because they could @CAPS2 projects. This can be helpful to learn about places you didn't even know existed. One time I was wondering what people from @LOCATION1 did to live and survive. Being @CAPS5, I just had to know. I went on the computer and in about a half hour I knew exactly what and how @CAPS5 people did to live and survive. This could also help at work because it your boss is counting on you to have work done, you can use the @CAPS7. As you can see this is my third and final reason as to why I believe computers are positive. In conclusion, I believe that computers are positive for three main reasons. First, they can help to improve hand-eye coordination. Second, they help people communicate with people from other areas. Third, it helps with school and work. So now that you have read this I hope I have shown you that computers aren't bad for us at all. In fact the are the best bet for a better future." 4 4 8 +1230 1 "Dear @CAPS1, @CAPS2 you ever wonder who really invented the ice cream cone while standing there licking one? Well why don't you just rip out your blackberry and find out? That is that great thing about technology. You can talk to friends or family get help, and it is there. Whenever you need it. Have you ever had to move so far away from your best friend that you cried so much someone thought it was raining? Well this is not nessesary because you can now have a webcam in your computer and talk as much as possible. Of course, its out the same as being there with the person, but its pretty close. You can talk whenever, wherever, with the great invention of computers. One other way that a computer benifits talking in other people @MONTH1 be you and your friends can chat. If your parents are out and won't let you get out you can still talk to your friends. Lastly if you are older you can use facebook to find friends you have not seen in a long amount at time. Another reason that the computer and technology are great is because you can get information you need it. Schools practicaly live on computers. Not only the students but teachers too. The teachers assign projects that include going on the computers and finding information all about your topic. Also if you just that you have never heard of before you can go and find out about it. It is great to those all you have to @CAPS2 is clik a buttom and every bit of information is at you fingertips. This can coms in handy when you are in a fight with your friend about who is a better @PERSON1. You can just look up who has gotten more home runs and there you go. You've got a winner! Have you ever been at dinner and someone ask if you have the hockey game score and you friends, husband brothers out his phone and then says @NUM1 to @NUM2 about @NUM3 minutes after you asked? Well that must mean they have internet on their phone. Phones such as blackberrys, @CAPS3, and iPhone all have internet built in. This means when they are in the airport waiting for their plane, they can just play a game or watch some television. To me that is a pretty cool invention. Also people in business and industry have phones with internet built in because they can just look something up at anytime. So this is why I think having technology is good in our society. Ecspecially because they can talk to far away friends and whatever. Kind of information you need you can already have it with a touch of a button. Also, you can have it in stuff such as you phone or in another technology related thing." 5 5 10 +1231 1 "Dear @ORGANIZATION1, I think computers have good effects on people such as letting people talkto family or friends that live faraway. Computers also let you learn about different places and people around the world. My first reason is that computers let you learn about different places and people around the world. This helps you if you are going on vacation to foreign country you can learn where the test historical sights are and you can also learn where the best hotels are. If you have a project due on a foreign country you can search it up and it will give you all the data you need about it. My second reason is that computers let you talk to family or friends that live faraway. This helps you keep in touch so it doesn't seem like you don't know them any more. Computers can also let you talk to your friends that live faraway and if you want to hangout it would let you talk about which days are good for you and them." 3 3 6 +1232 1 "Advancements in technology are very practical and have a positive effect on those fortunate enough to have a computer. First, computers help reach people to have better hand-eye coordination. @CAPS1, computers make it simple to learn new information about many things such as people and places across the globe. finally, computers allow people in different places to communicate instantly for the reasons above, computers are very helpful to people all around the world. One of the ways computers help people is through improving their hand eye coordination when a person learns to type and look at a screen at the same time. They will be able to do sample everyday asks much better. Is a person does not have good hand-eye coordination. They cannot ever make on the ones of a paper properly! This also, with focus, and people with better focus excel in school, work and their social lives. Hand-eye coordination is very important to learn and computers help to teach it to people. The @CAPS1 reason that I think computers people to learn about new. I myself and through have know many proces. My now lucky I to be able to realize how, and the research is because of computers. Computers are aducating. Finally, computers handy because they telephone. One way communication in computers is my instant. This is when they type and this is similar to a telephone conversation, but free of charge. The final and most popular way is video chat. Video chat is when the people use cameras connected to their computers and can talk to each other while seeing each other's face! All these ways of communicating with people around the world are very beneficial to many people, especially those with family or friends living in another town. Without a doubt, computers benefit people in society in many ways. They teach them hand eye coordination which is very important for simple, everyday tasks they also help people everywhere in the world learn about that they couldnt learn about with books. Last but not least, computers people are world in communicate with each other. In all these ways, computers help people everywhere and." 5 5 10 +1233 1 "Dear local Newspaper, I hear you are whether or not computers have a positive effect on people. In my opinion, i think that, yes, they do have a positive effect on people. I think this because @NUM1. Computers allow you to learn about foreign places and cultures. @NUM2. Computers are often helpful to those with special needs, and @NUM3. The computer allows you to connect win people who @MONTH1 live faraway with out having to travel to them. I really enjoy learning about foreign places and culture. I know that from my own experience that the more knoledgable you are about foreign places and culture. The more smart you become overall. Without the computer, many people would not be able to explore these places and learn about them. The computer is basically a big encyclopedia that supplys important information to those who are unable to travel across the world and visit these places. Without computers, people would be less educated about the people, cultures, and the world we live in . Places such as pyrimids in in @LOCATION1, and . Don't you agree? In my school there are several students with special needs. I, personally, can't even begin to imagine how difficult it must be for them to learn. But one thing i do know is that the computer is a very helpful rescource to them. The computer supplies pictures, sounds, and interactive activities that really help kids out. Since some of the kids in my school who have special needs have a hard time reading. The computer helps by reading it aloud to mom. Where would those children be if they didn't have computers? I love keeping in touch with my distent family and friends. Don't you? It used to be that it would take days and days to send and recieve a letter from relative. @MONTH1 because of the computer, hard task can be done with a simple click of the mouse. But thats not all. Besides sending virtual e-mail to people, because of the computer, you see them face to face! Some computers have webcams that allow you to see someone through the screen of your computer, isnt that great?! So, why waste money flying to see someone to deliver a simple message when you can deliver it personally in almost less than @NUM4 seconds? Becaose of the computer, people talk more and are often brought closer together. So, as you can see there are many important positive effects that computers have on people. The reasons being @NUM1. computers allow you to learn about foreign places and cultures. @NUM2. computers are often helpful to those with special needs. And @NUM3. computers allow you to connect with people who @MONTH1 live faraway without having to travel to them. Thank you for listening." 5 4 9 +1234 1 "More and more people use computers everyday. Computers are a great help for projects, email, vacation spots, and so on. However, some scientists think people are spending too much time on the computer instead of excercising, or taking a walk. I think that computers are an important part of a persons life because the information found on a computer is very useful. It can be useful to you when you have a report coming up. What if your teacher tells you that a report is due tomorrow? What are you going to do, you don't have time to go to the library. I would go on the computer and get all the information I need. I would also use a computer to learn about far away places, or even famous people in history. I also could look up where I'm going on vacation and then I could learn more information about it. Like, you could find where the best resturant locations are, the best holers, and even the best tourist spots. Computers are also helpful for chating. My grandparents moved so I don't talk to them that much anymore, but since I have a computer I can send a quick e-mail saying hi, or asking how they're doing. Also imagine going to work and not having a computer! Thats a lot of work to write down! At some works, the work consists of emailing other work members about the problems they are having, and about meetings. By using a computer you can keep up to date on everything thats going on. Also computers are helpful because if you had a test to study for, and you forgot your notes at school, you can look up online what you are studying. Then you can study from the computer. So then the next day you won't fail the science test. Computers can be a nice little break after all your homework is done. If you want to go on the computer to talk to your friends, it should be an insentive to get all your homework done first. Sometimes people need some down time after all their homework is over with. Playing games on the computer can be a nice way to relax. Computers are a great help for reports, vacations, chatting, information to help you study for a test. Also to play games on. A lot of people use computers to do work on for their jobs. I think computers are an important part of a persons daily life." 4 4 8 +1236 1 "In my own opinion, computers are great addition to our world. Computers can help people with schoolwork, communication and entertain you in a safe way. Those are the reasons why computers have effects on people around the world. First of all, computers help with a child's schoolwork. For instance, if a student is doing a research paper, the world-wide-web is a helpful place to easily get information from that you can't find in books. In addition if a student forgets, losses, or is missing homework, they can log on the school website and print the paper out. Also, most teachers expect an essay to be @CAPS1 neat @CAPS1 possible. That is hard for some students, typing it is neat, and everyone can do it. @CAPS1 you can see, computers are very much needed when it comes to school work. Second, computers are a great way to communicate and keep-in-touch with other people. For example, if an employee wanted to speak with a boss, or send some thing to him, he could easily e-mail it to him. Also, if friends wanted to talk with one another, the could instant message each other. If a teacher and a parent of a student had to set up an conference, the teacher could e-mail the parent a time and date. That is why computers are great can easy communication. Lastley, computers provide a safe, fun way or entertainment. Many companies make kid-friendly websites that go on. For instance, my six year old sister goes on a website that teaches you things in a fun way. Studies show that @PERCENT1 of kindergardeners who go on these websites, do better in first grade compared to those who don't computers are a great way to spend your time. In conclusion, I believe that computers have a great effect on people around the planet. They help with school work, provide east communication, and provide safe educational activities, @CAPS1 you can see, computers are a great addition to our world." 5 5 10 +1237 1 "Dear @CAPS1, @CAPS2 people think that computers are used too much, and are helping people become over weight, and even obese. This is maybe true, but computers also teach hand eye coordination, give people the oppertunity to learn about far away places, and people can even coordinate on them! Over all I think computers effect people in a positive way, and these are some reasons why. Computers help teach hand eye coordination. I know your probably thinking huh? How do computers do that? All your doing is staring at a screen. But to your dismay computers do teach hand eye coordination. It does this because while playing games, people watch the screen, and click with their hands. They dont just stare at the mouse while they play these games. By doing so, it teaches hand eye coordination. Scientist have provine that people who own a computer and use it at least @NUM1 hours a week, have better coordination that people who dont own a computer by @PERCENT1! Just that statistic alone speaks a thousand words alone. Hand-eye coordination is a thing. It helps you play better in sports like baseball, and not only that but it helps future jobs. As you can tell, @CAPS1, without computers out hand eye coordination. People think that computers are only used for games, but in reality, they teach us @CAPS2 things about the world. Without computers people would know about nearly anything thats going in other countries. For example, the other day, my mom was checking her email and came access the stay of a young, starving. That are story changer her anyday life because takes food for granted. Without computer my mom would have more in other countries. Because we live in the @CAPS4.S whats going on in other countries. Are less fortanite, but computer help remind and teach us whats going in the world everyday. One of the main advantages about computers is they allow people to communicate through them. Even my grandmother said the, without computers, I wouldnt be as close to you as I am today. @CAPS5 and my grandmother use the website skype.com. This websit allows you to not only talk to the other person, but to see them too! Because of site like these. Im allowed to stay in contact, and be able to see my grandmother who lives faraway. Without computers this wouldnt be possible. Not only do computers let you talk to people far away, but people close too. I often find myself asking friends over the computer, what the homework is, or whens the next test, etc. Computers make it easier to connect to people near and far. In conclusion, computers help in all different ways. The world would be upside down without them. They give people the ability to learn about far away places and people, teach hand eye coordination, and allow people to communicate with each other. Computers have @CAPS2 flaws, but they also have so @CAPS2 positive effects too that I think they shine over all the tiny flaws. Thank you" 6 5 11 +1238 1 "Dear our local newspaper, Computers have a huge effect on people in a negative way. It could change does lifestyle dramatically. For example, people who sit there all day on the computers spend less of their time exercising, enjoying nature socializing with friends and families. Therefor, computers affect us greatly. One of the reasons why computer once horrible, is because people spend too much time on their computer and don't exercise. It's always important to stay fit and healthy. This could be @PERCENT1 of people who live in the @CAPS1.S is obese. This could a leading of obesity. I can connect to this because i had a relative, who admitted that he gained at least five pounds. for being on the computer @CAPS2, not exercising could. Is it really worth sitting in front of the computer all day eating? There are better entertainment active and will keep us healthy and exercising. Another reason, is that. it seems they're far more in technology you greatly, This will not improve your social abilities. You could lose self confidence in yourself and not be as open as outgoind. None like to be a loner. The feeling could be devastating. @CAPS2. this would make it very difficult to interact and make new friends. It's always a pleasure to know that you have so many lovind people around you. You could lose them with snap of you fingers by spending more time focused no the computer, rather than your friends and family. Lastly, it could be bad to get though life without your friends and family. In conclusion, people who spend too much time on their computer spend less of their time exercising, enjoying nature and interacting with friends and families. The computers are like by matter the most in life, to being more focused on them. Computer affect us in a negative way that can change the course of our life." 5 5 10 +1239 1 "Dear editor of @LOCATION2 @CAPS1, @LOCATION3's society is being ruined, ruined by computers of course. They are so time consuming that I am afraid they are causing more people to be obease in @LOCATION3. People are afraid that they are limiting themselves from interacting @CAPS2 to @CAPS2, and spending time enjoying nature. I feel the exact same way and someone should put a stop to this! An average american goes on a computer for about @NUM1 hours a day. With going to work or school, and sleeping, that way leaves a litle @NUM2 to go out and explore nature. Our national parks @NUM3's have been decreasing in their numbers of customers at a fast rate. I visited yellow stone last week to find out if as many people have been goind. The man who works at the entrance was saying that ""since the start of @DATE1 alone about @PERCENT1 less people have been to @LOCATION1,"" I believe that the reason for that is because of computers. They limit people from goind to parks or to zoo's, by consuming the public time with all of the ""new fashion"" or the newest game on miniclip.com. Also, I believe that the public is spending so much time on computers that they are not able to go out and exersize. With the newest ""sims game,"" how are kick supposed to stay fit and healthy? I did a study on how many hour kids spend on thier computer and out of the people who said more than @NUM4 minutes. @PERCENT2 of them could legally considered obease. Is that now we want our next gerneration to be out next president and lawyers, and doctors? @CAPS8, we want them to live life to the @CAPS4 by taking care of themselves by exersizing. Computers are getting kids so consumed that is not ok. Lastly, with computers, families and friends don't really talk to each another @CAPS2 to @CAPS2, or interact with each other at all i mean sure, parents come home to thier child on the computer and give them a kiss on the head. But is that enough? I do not believe it is. I asked a friend of mine's child about how much he interacts with his family and friends? @CAPS2 to @CAPS2 he said that well since he got his new ""@CAPS5 @CAPS6 with a @NUM5 gig hardrive"", he hadn't been talking to them a whole @CAPS2 to @CAPS2. However, everyday we went on ""chat"" ""for a good @NUM6 hours"", to talk to his friends. And only occasionally would he get an @CAPS7-mail or two from his asking how his days was. I do not believe that that is good in order to have good friends and a strong family life. That is what @LOCATION3 has come down to computers. They limit you from interacting to friends and family, give you less time to exersize and limit you from going out and exploring nature. Who knows, maybe at this time in @NUM7 years, @LOCATION3 will be run by computer. Do we want that, @CAPS8! so lets put a stop to it now. Thank you very much!" 6 5 11 +1240 1 "Dear editor, I believe that computers are a great and fun tool. But I also believe people can spend to much time on them. The computer is excellent. People can use them to type papers or reports, makes graphs, and other important things for us. Schools are using computers more and more now. Schools have websites for students to go to findout there homework, classwork, projects, reports, and extracredit. The school has even started doing something very new, allowing parents and kids to check the students grade online. Not only do the schools help students, but also everyday people help as well. if a student has a project but doesn't know how to start it then he or she can google there project and ways to start it. Computers can be real great and easy to use as you can see, for schoolwork. Computers are not only great for academic purposes, but also for leisure purposes. Before computers and internet, there were only these ways to have fun during boring times in the day. One was watching tv, reading a book, or going outside, if you could. What do I mean by that last sentence? If you lived in a city, then it would be harder to go outside because maybe you lived in an apartment or somewhere not a comunity. Then you couldn't go out; and reading books can become boring after a while, and maybe there was nothing on tv for you to watch. But when computers and internet cameout, people sould play games, watch videos, and talk to cousins or family who live far away. Computers are also good for social networks. Not all familys live close, but are a close family. But in this ec onomy we can't always afford to visit them whenever. So by using computers we can @CAPS1 them facebook them, ,myspace them, and even video chat with them, which as I said is great far away family. But at times people can become to obsesed with them. Some people spend all day on one website, particulary facebook or youtube. Do not get me wrong, these websites are fun and cool. But not cool enough to not go outside and have free, natural fun. I remember I logged into facebook and saw a girl on, I logged off around an hour later and she was still on, then I logged in again around @TIME1 and the same girl was on! That is just to long to be on one website. Computer are a great tool for humans to use for business, education, and leisure. But to much is not good." 5 5 10 +1241 1 "Do you like computers? Do you use the internet to help you? Do you use it every day? Well @CAPS1 not this article gives you information about all of this. First, alot of people don't like computers because they say ther're to confusing. Actually computers are'nt that hard to work you just have to be patient and take some time to get used to it. Also, computers can make things easier like typing. why should you right @CAPS1 you have the option to use a computer which lets you write faster than you could on normal paper. Secondly the internet is very easier then books. All you have to do is go to @ORGANIZATION1 any other search engine type what your looking for in and in a split second you have all the information in the world on that topic. Also @CAPS1 your planing a vacation the internet can help. You can purchase plane tickets online and sometimes there are special discounts doing the web. Also, you can back hotels and look at live pictures with more than just . So when you back a vacation on the internet you know it will be a good one. Finally, you can purchase anything with a click of a button. Almost every website has discounts. I remeber the time when I bought @MONEY1 shoes @MONEY2 online. Also it usually ships to your house in a couple of days . Lastly going on it alot isn't bad. I go oh the computer almost every day but also go outside too. I can do this because at night when one one can go outside I go on the computer for school or for fun. Also, you can talk to your friends or family over the internet. What @CAPS1 your mom or dad wnet on a @NUM1 weeks buisiness trip. You could use your webcam and talk to them and see than like @CAPS1 you were in the same room. So is going on the computer really so bad? I don't think so @CAPS1 it is that helpful and easy to work with." 4 5 9 +1242 1 "Dear newspaper company, More and more people use computers each day. But not every one agrees it benefits society. Some people say the people that are on computers dont get exercise or play outside. Then when they get off the computer their eyes hurt and they cant see as well. But will all that said I agree with the benefits of computers is very well used. The reasons why I agree with computers have benefits is that. It gives you hand-eye coordination give people info on faraway places. They can also rent hotels movies and games. You can even talk to people online from around the world! What if we didn't have computers though then what if a serious crime happend then we wouldn't be able to find the criminals name or his records! Some bad reasons for having computers is a big issue right cyberbullying! Kids might get picked. On and he will. People get called names all the time. Another big problem is online they seem freindly then they try to. There is two big problem with computers its called plagarism. Plagarism is when you take some ones work and put your name on the. It can be also be when you steal and say its yours. The second problem is stealing music getting it for free. By downloading from the internet like lime wire. Then the the song dont get the money from the albums. That is why I agree with computers give you benefits. They give you bad ones to careful when your on a computer." 4 4 8 +1243 1 "Dear all computer lovers, i do think you are all spending too much time on the computer. yes, it is good to go on the computer and learn new fact, watch funny videos, and also basicly everything is on the computer these days. But most people spend to much time on the computer. you need to be doing three things, enjoy nature spending time with family and friends and most importantly, exercise. In this letter I will be explaing why you need these things, wich you cant get on the computer. First, i will be explainig why it is important to enjoy nature. Sometimes, enjoying nature can be difficult but if we all look closer it can be really fun. Some examples of nature are trees, grass, the fresh air. But I am sure all of my fellow teenagers would agree that, that is very boring we would all rather sit and watch tv. Some examples of making of making nature fun is instead of looking at a boring tree, you can climb the tree and maybe you can go outside and play with your dog and lay in the grass. One example of my favorite things to do in nature, is when I say up all night I run outside very early and lay in the grass, breathe in the fresh air and watch the sun came up. Secondly, and every importanrt that you get off the computer and spend time with family and friends. Fa mily, can do @MONTH1 things with you and I know that I am very happy when I am with family because they always make me laugh and most importantly my family loves to party. Partys are always fun ecspecially when your are with family. Freinds are also great to be with because they make you laugh have adventures and are always there for you." 5 4 9 +1244 1 "Deear Newspaper, I think that the effects that computers are having on people is a @CAPS1 thing because most people just sit at the computers all day long. In this letter I am going to talk about the effects of computers on people, what we could be doing instead, and what person are doing on the computer. First thing is that computers are having a @CAPS1 effect on people and there life computers are making people just fit inside on their computers all day and do nothing. They just sit there playing games also about @PERCENT1 of the people who are spending to much time on the computer are probally pating well their on the computer which that is why some people @MONTH1 be fat. Most of the people who spend all of they time on the computer is people in there @NUM1's and @NUM2's some are in there @NUM3's or @NUM4's. Just sitting there on the computer will get you. Where in life. It will not give you a job or school education. By just sitting at the computer for a while you will not be able to do things out side. If so many people were not on the computer all the time then they could be outside. Being outside they can play sports, ride bikes, swim, run and more. They could also get a job and make some money or go to college, kids who are on the computer to much could get out and go to the mall, hang with friends you could get some exercise, or just enjoy nature. There is no use for going on the computer and being there for more then @NUM5 or @NUM6 hours, the most you should be on the computer would be an hour to an hour and a half. Kids and teenagers should only go on the computer for homework and the rest of the time doing something eles. Well all of the kids grade through @NUM7 grade should go out a play with their toys and people @NUM8 grade and up should hang out with and do thing like go to the mall, see a movie, or just have a sleepover. Also everyone in these grades should interact with there families more by seeing them more then @NUM7/@NUM8 times a month and they could have parties or just get together and hang out. So people should do some of the other things I said instead of just going on the computer all of the time. The last thing is the things that people are doing on the computers which is like I sometimes go on facebook. Other people go on facebook, google, games looking up information, and more. They also have emails where they chat with other people. Another thing people go on is youtube and listen to music and watch veidos. So I don't think that the effect of the computers on people is a good thing. I think that people shoud be out doing things then just sitting at home on the computer. People who sit at home on computers could and probally will get to fat. So the effect of computers on people is @CAPS1." 4 4 8 +1245 1 "Dear @CAPS1, I have recently heard over @CAPS2 @NUM1 @CAPS3 that that people believe comuters have different effects on people. To the past computers have caused problems with the human body. Amny @CAPS5 are becoming to on computers. So in my question I believe computers have a neagtiove on. First of all computers have caused @CAPS5 to not exercise and become unhealthy. @NUM2 out of @NUM3 @CAPS5 have said they are their @CAPS5 are spending to each time on the computer. @CAPS5 need to realize that sitting on a computer @CAPS4 is a danger to their health you don't want you @CAPS5 to have eye problems in the do you? To the to be on the computer to much and just for work, but for playing games I realize enough I need to stop and go out and exercise to keep well-balanced health @PERSON1 says, ""@CAPS4 technology increases the more and more people we have given glasses too."" @CAPS5 need to make changes to what they do during the. So @CAPS4 I somputers because @CAPS5 are not become unhealthy. My people do not spend @CAPS4 much time with family and friends. In the pase my mon used to yell at me. @PERCENT1 of people believe is very important did you know that. Computers keep your divorce could have from computer. People need to within families because it decrease interaction with. My last reason is that people are not. @NUM4 ot of @NUM3 people enjoying nature you a chance to express your thought. Many people need time to think about what is happening in their life and they cannot do this our internet. TO the past stressed because I never had a to just relax and think about things I computer doing something or homework. @PERCENT2 of people who have to much going life believe that they. Do you now see that nature can be helpful? So @CAPS4 you can see computers have a negative effect because people don't get enough time to enjoy nature. To conclusion I believe computers have a huge negative effect on people. The reasons why be people would be less active, people will not interact @CAPS4 well & people enjoy nature. So I strongly you to vote being a negative effect." 5 5 10 +1246 1 "Dear @LOCATION1 Newspaper, @CAPS1 my name is @PERSON1. I'm go to @ORGANIZATION1 in @LOCATION1. I'm in @NUM1 grade. I'm writing this letter to you to tell you my opinion if technology believe that technology have positive effect on people. My opinial is that computer are good. Keep reading to change people lifes in <@NUM2 @LOCATION1. My first reason is computer teach you hand eye coordination. For example when I was in @NUM3 grade I would go to the libary in my @ORGANIZATION1. She had a website named @CAPS3 To learn. It to help you to learn how to learn without looking at the keyboard. My second reason compute give people ability to learn about faraway places and people. For example when I was in @NUM4 grade in @CAPS4 @CAPS5 I had to write about @CAPS6. And I want on @ORGANIZATION2. I found wonderful pictures of @CAPS7. And I saw how they live. I watched a @CAPS8 specail like @NUM5 weeks ago it said @PERCENT1 of people would use @ORGANIZATION2 to look up people number and mor personal things. My third reason give people the ability to learn about faraway place and people. For example when want to talk to my cousin that live in @LOCATION3. I would go on the internet and talk to them on webcam. I clould talk to them. I read in a artice like a month ago. That @PERCENT1 of people use the computer to chart with people. In conclustion, some people might say some experts are concerned people are spending to much time and less exercing enjoying friends and family. However, being on the computer is way sdfyer than go outside. More kids or people would be salfy. Next you should post this out on you news paper." 4 3 7 +1247 1 "Dear local newspaper, @CAPS1 opinion on computers is that I think they are the most helpful thing in our society and it benefits us greatly. Lets say if I wanted to see what across the world looks like, or even what the surface of the moon, mars, venus, jupiter, ect. I could just go onto a computer open or download a program a there it is. Computers also help people express there creativity by here a program that aloose you to draw or biuld. I bet the even help young children became smarter by biulding things on the computer. Another things computers do is open lots of jobs and in a bad econimy people need all the help they can get. With a computer you can keep people alive and bretheing you can find broken bones or tomors, you can biuld briges, homes by making blue prints. The last thing computers help us do is the most importen and that is helps people learn. By making simulation of the titanic a space ships or the floor. They help find information even if its about people you can see people on a computer with a camra for or save a life by fing were they crased on there plane or. Thats why computers are the most helpful thing we have @DATE1 and we should keep learning and progressing to make us more advance and smarter." 4 4 8 +1248 1 "Dear @CAPS1 @CAPS2, I think that computers have a positive effect on people. You can do lots of stuff with computers such as help people learn new things almost about everything. Also, there are some programs on the computer where they allow you to talk to other people. Also, for adults, they can take care of some finances and bills online and some taxes. I think computers definitely have a positive effect on people. A lot of people use their computers to learn new stuff about other things and people. Nine out of ten people go on the computer at least more than once a month to learn about something new. Also, kids in school use computers all the time for school work and to learn about new things. Kids in school use computers in school all the time for projects and experiments and they learn new stuff about people and things in the world. Computers definitely have a positive effect on people when they learn new things. Another great things about computers is that there are programs that allow you to talk to other people. Eight out of ten people talk to another person almost every day on the computer. This is a good thing because theyre able to talk to friends and family from a long distance and enjoy themselves. It is also a good thing because if family moves away you can still talk to them from a computer. Another positive effect computers have for you is that adults can pay bills and finances on the computer also. Seven out of ten adults pay bills online at their computer. This is a good thing because adults have to do it by hand, now they can just do it on the computer, which is definitely a positive effect on a person! I think computers definitely have a positive affect on people in many ways. They help people learn new stuff about things and. Also, they allow you to talk to friends and family over the internet. And finally, they allow you to do finances and pay the bills online instead of by hand. There are many ways still computers have a positive affect on people, Ive only stated just a few of them. I hope you take my side about my opinion about computers and that they definitely have a positive affect on people." 4 4 8 +1249 1 "Dear local newspaper, @CAPS1 do you keep in touch and @CAPS1 do computers effect your job? Some people are using computer to often and arent able to enjoy the outside. World. Some use computers for other things then to some times just waste time. I believe with computers having a strong a positive affect on people. You can keep in touch, you can learn, and you can have fun with computers. Computers have a big role in our society, and I know you'll have the right decision on whether or not computers are used to much. You can keep in touch. Not only can you keep in touch with relatives, but also people in different countries, or states, and even people like your friends who live next door. E-mail is a great and healthy way to communicate with others. There are also other websites like facebook and skype were you can actually post pictures up about yourself and family and be protected. @CAPS3 if you live miles and miles away you can easily show your friends the things you've been doing or your new baby boy. @CAPS4 also shows things about your personal info. You can make friends with people and plan @CAPS1 your going to hang out this weeked. Yesterday my @CAPS2 emailed me a picture of a cub bear in a tree outside of his cabin he was playing in, in for. He's over @NUM1 hours away and I can still email him back saying, ""@CAPS2, did you make a friend."" With in seconds he can respond saying, ""I even got a bear hug =)!"" @CAPS3 I talk to him while he's away and were almost together. I bet you use email as much as we do to get a of printers and. @CAPS4's a fast and easy way to communicate. You can learn.. Computers are a very big part in the learning experience. Teachers, students, parents, and grandparents learn everyday with computers. There are educational websites to learn about things. In our school yesterday on ""quiz.com."" @CAPS4's a website for schools were you can take quiz instead of paper. If your a busy parent, with kids, you can work online. You can get payed for the work you do with, websites, and. You can also go to school online. There are people are very busy and dont have time to go to college classes can take classes. They can learn and even interact with. The computers teach you they dont hurt you. Everything. Security, jobs, bills, school, contacting, games, everything. Most people, schools, catch their buisnesses with out a computer. Computers protects you and help you grow. You can have fun with computers. A lot of people go online and play games on numerous websites. These game can past time and the player some fun. @CAPS4 might not be running but its fun. You can do @CAPS3 many things on the computer to have fun. You can play online games, download music, skype, browse, shop,, and even meet people. Meeting people is a big thing. A lot of people these days are using. way to meet and interact with new and interesting people. My cousin is now @NUM2 and he used online dating and met this really sweet and pretty girl that lived nearby. @NUM3 years later they're maried and are more in love than imagined. See @CAPS3 love can be found out on computers and a lot of fun too. You have read my reasons and you have realized what the computer does for the world. Most everyone owns a computer and almost everyone needs one. This an easy way to communicate or keep in touch, you can learn from, and you can have fun with the computer. Many more things that are in good use. I have now convinced you that computers are very positive for people." 5 5 10 +1250 1 "Dear The @CAPS1 newspaper, @CAPS2 in front of a @CAPS3 @CAPS1 after @CAPS1. Oh, how much you want to just relax in the natural free air, but with all the advances in technology you feel it's your job to always be updated. I believe that advances in technology have had a negative affect on people. People aren't exercising interacting with family and friends in person, or having the ability to enjoy nature. Exercising means getting your hear to pound, your body to sweat and me because of endorprimes that ultimately make you feel better. @CAPS2 in front of a @CAPS3 all @CAPS1 does not support you with the natural urge to exercise. People who support advances in technology say, ""@CAPS3 are able to teach you hand-eye coordination."" @CAPS4, coordination is important but your body as a whole should also be put with account as well @PERSON1, voted # @NUM1 cardiologist in world says, ""more and more people are suffering from heart disease & attacks every year!"" be goes on to say, ""many links have been theorized to this on going problem, But none seem to up as well as my theory. I believe peoples lives have been overcome by technology. More and more cases have samt to the people being addicted to their computers. Its unbelieveable but, @CAPS5 individuals have a @PERCENT2 higher chance of developing heart disease!! There are many healthier things you can absorp yourself in. Like tennis for example In tennis you have to develop hand-eye coordination in order to hit the ball. Correctly. Tennis also increase your heart rate & burn fat cells, to help you lose weight. Statistics show that @NUM2 out of @NUM3 people say tennis have actually made them more confident. This is because when people are able to have the determination to lose weight and head healthier , they feel they can can over the world. Isn't this the attitude everyone needs? Nature is all over and helps us are even if @CAPS4 don't notice. Like trees, they take in @NUM4) and release oxygen. Oxygen is key to life. Trees also are home to many living organisms. Like the saumel woodpecker or even owl. They all rely on trees to survive. But, if you are on the @CAPS3 @NUM5' hours a @CAPS1 @DATE1 you @MONTH1 not realize the nature and . Nature is a beautiful thing that over @PERCENT3 of peoploe say they enjoy relaxing outside, listening to birds singing morningsongs or a dear minding their own business feeding with their young watching. But, advances in technology also ruin this time belance of nature. Technology needs a power source, google, for example states to the press that,"" our business surely enjoys nature but needs to also run their corporation"". They go on to say.""we get our energy from oil and coal"" @CAPS5 according, to scientists like boy say that , oil primary source for big corporations. It is for but they don't keep in mind the fact over a million each year because . And ! that deplleats me protection we get from our ozone layer. Speeding the development of climate change. ""without advances in technology we @MONTH1 have a better and safer earth generations to come. Oh sure, says sue sarcastically. But since you texting her you don't know what and ask out her . If not for advances in technology people could make me right decisions. @PERCENT4 of texters say they have miss interpreted others texts. this means bad decisions all accross the world. @PERCENT1 also say have particifated in same of sexting like ther sending peictures a language. Underage children are participating in illegal activity because of advances in technology chief crimes head of the police department in @ORGANIZATION1 says that ever since the invention of the cell phone with the ability to send pictures & text he has need @NUM6 more cases on child pornography. @PERCENT5 of @CAPS5 people are under the age of without me advances of technology for cellphones this wouldn't even be possible for minors. Advances in cellular device has also kept families farmer & farmer apart. @PERCENT6 of parents sya that their children have had me some appreciation & lease that they had before they recieved cell phones. And @PERCENT1 of kids wine have cell phones say they don't think they need their family interaction anymore. Do you believe this is the message to be school to future generations? I thank you for reading this article and I hope you are now experiencing the other side of the debate children need to interact with their families more, enjoy nature and start exercising. This is impossible to do with the advances of technologe." 6 6 12 +1251 1 "There are all kinds of computers, but they all do the same thing. Computers help people with anything they need. Such as, you can go online and chat with people, you can buy and sell things, you can go to college, you can learn anything, and it helps you type up your homework neatly. I personally think that computers are very helpful and we are lucky to have them. Going online can give you so many opportunities for anything. From going to college online when you don't have the time to go in person to just talking to your friends. You can learn just about anything on the computer and it's just so much fun. The computer to most people I know is the greatest invention besides the obvious ones. Going to college online is so easy. There isn't alot to it. Alot of people in the country online for college. For instance, parents that want to go back but can't go in person or someone who has alot of work but cant fit in the time to actually go to college. But they can go online and take classes on their free time. Also, talking to friends online is fun too. When you arent at a friends house you can chat with them online. Maybe you can go on @CAPS1 or @CAPS2 or @CAPS3 or even your email. There are many ways to do it on tha fabulous computer. The computer is also jam-packed with loads of information that is helpful to anyone in the world. You can learn about different countries, people, or even the recipe of apple pic. Who knows what you can learn. The computer has things for every person in the world. Since we are all different. Some of us like to buy or sell things on the computer or do our homework. Maybe even just a fun computer game is nice. Every person in the world is different, but we have one thing in common. The world knows we need computers and computers are the smartest thing since the calculator. Buying and selling things on the computer is easier than it looks. All you have to do is put what you want to sell online or look online what you want to buy. Then you buy it or sell it. There is more to the process like the @ORGANIZATION1 people bring or take it to or away from you. But that just the basics. You can also do your homework neatly on the computer if you have a messy handwriting. Therefore, the computer has so many things that can benefit you and the world with everything it has to offer." 4 4 8 +1252 1 "To whom it @MONTH1 concern, @CAPS1. My name is @PERSON1. I have written in response to the letter sent to me on the topic of electronics. Computers, to be percise. To me, computers are helpful, yet extremely vile. These chunks of metal are expensive, unhealthy and degrading human learning capabilities. Computers have too many negaive features for me to cope with. Dell, @ORGANIZATION1, and so many other computer companies sell computers at ridiculously expensive prices. You buy one on sale and when you need your computer, @CAPS2!, malfunctions and problems assalt you. Now you have to call a repair man who will charge you even more money! Did you really spend your hard earned cash on a faulty hunk of trash? This is ridiculous. I went onto my computer yesterday and what do you think happened? It crashed! My six hundred dollar computer crashed! Computers are too expensive to have to keep. When I get rid of mine, I'm not getting another. Have you ever sat at your computer so long your eyes watered? Horrible to endure, that's not the only problem your computer can cause. Your health is at stake! When you sit at your computer working or playing instead of going out for a jog or exercise, your health degrades. Gaining weight, pink eye from staring at the screen, do I have to go on!? The very computer you @MONTH1 love can harm you. I say, get rid of that computer. Visit friends, family and aquaintances. Be active and stay healthy. Not for me, but for you. The next point I am about to say @MONTH1 shock, surprise, or scare you. Your computer is making you stupid. I can't say it nicely. Don't call me rude because it's true. I'll give you an example. A student receives a classic home work assignment. Define these three or four words. Easy right? Wrong, I'm afraid @NUM1 out of @NUM2 kids surveyed go home and use computers to retrieve the answers to homework. What if your child is cheating? What will happen to then? They could drop out of school early and live their lives as people who can't learn for themselves. Is that the world we want for kids? No! We should destroy the computers. Thank you for reading my paper. It was a pleasure as always to write to you. Have a nice day." 5 6 11 +1253 1 "Dear @CAPS1 @CAPS2, I think that computers are bad because you will be wonign to do no homework because people are playing to much computers and they are getting aditivf to the computers and it is dayise because you mit be talking to people that you don't now on thr computer and it is the vary dagis because it is the sam thing as haveing a myspace on teh computer it is vaery dangish because ther are dad people that be going on the computer and people be pating bad stuf on the computer." 2 2 4 +1254 1 "I do not agree that computers benefits society. There are threes big reason why computers are bad, people are getting to attached and arent spending time with there families. Others are gaining weight because they stay on the computer, and not exercising. Also some people arent getting fresh air not getting out for a walk in a park. Computers are making people shut out their families. When a girl wants to play with her big sister the big sister will just shut out the little sister and continue emailing her friends on the computer. Families need to stick together but when a member of the family from doing a family picnic or other family activities. Computers have addictive games that a person will play and ignore everyone and sometimes a family member can go into depression because he or she is being ignored. Another reason computers are bad is because of health issues. People will get to addicted and be lazy. They will just sit in the computer chair and eat drink bad stuff all day. People would gain weight might ever get dabetes from the weight. If people don't get the exercise they need to stay healthy then they might have heart problems, and many more serious conditions. If your weights gets to extreme then you might not be able to lose weight because your body has gotten tov used to all the weight your heart @MONTH1 not be able to take it. At last but not least people will stop going outside and not go and walk or talk, with friends. People should al least go outside once a day to see nature get air. They should go to the beach relax and relieve all the stress from computer games. Having to much stress is bad for your health you might go into depression. Being on the computer way to much can be bad if you sit in the dark not getting sunlight it can be bad for your eyes. So as you can see there is alot of bad things about computer. Most of the problems or issues all have to do something with someones health. So this is why I think this is bad for the societys benefits. I hope that you will take these reasons to heart. Thank you!" 4 4 8 +1255 1 "Dear Newspaper, I read an article in the paper @DATE1 debating whether or not computers have a positive or negative effect on people. Even though, I love my computer, I know that computers can have a bad effect on people. Computers can cause people to have a lack of exercise, lack of family and friend time, and lack of enjoying nature. Although, computers can help people in so many ways, they can also make things worse for people. In @LOCATION1 the obesity rate has reached an all time high of @PERCENT1. A computer is a non active activity, so if you do use it you get no exersise. One time I played on the computer for two whole hours and gained two pounds. Your health is also very important. When you become overweight you get the risk of diabettes, high colestral, heart failure, liver failure, and more. My uncle is overweight and was just diagnosed with diabettes and now he regrets all the time he gave to his computer. Lastly, people @MONTH1 say that computers create great hand-eye coordination. Computers might do that but is the hand-eye coordination ever used? No, because that person is too busy playing on the computer can you see how computers can effect your health? Eighty eight percent of @CAPS1 voted that the most important thing in their life was their family and friends. The other twelve percent said that their computer or cell phone is their most important thing in life because they cannot live without it. Not spending time with your Family and friends is an awful thing to do. When my mom lost contact with one of new friends, @CAPS2 regretted not spending so much time with them. Also, if you do not spend time with people it could lead to socializing problems. If the only thing you do is talk to people on the computer you develope speech problems. My neibor, who I have never talked too never really came out of his house he always seemed to be on his computer, and no one over. One day someone came over and they started talking outside. When I overheard a little of their conversation I could the words he had trouble saying and he did not have a good vocabulary. Lastly, you can also develope relationship problems. Not being able to see a real relationship. That is why computers can have a negative effect on not only you, but your family and friends too. In our daily lives we observe nature, and it's beauty. Spending time on the computer instead of enjoying nature is awful. For example, if I was to not go outside for a whole day, and I got to spend my time on the computer I would be miserable. Nature is a gift that should be given to everybody. Also the @CAPS3 air is good for your body. Without @CAPS3 air you would be taking in chemically changed air, which is not good for your body. Lastly, everyone reads on the internet about @CAPS4 warming but why do we not take action! If you spend your time on the computer you would not be able to help nature. I remember when I read about @CAPS4 warming on the computer. So I took action and cleaned our lakes. That is why computers have a negative effect on people. Computers can be great in so many ways but it is how much time you give to your computer that is bad.That is why computers have a negative effect on our society." 6 5 11 +1256 1 "Dear @ORGANIZATION1, In the @DATE1 the world has changed so much, for the better. Technology has become so advanced, there are new cures for for different diseases. Computers are one of these great benefits. They let you communicate quicker. You can keep up with family members and old friends. You can also talk to different people who live in another state, country, or continent. These a quote that says ""communication is key."" I'll put that into more details in my next paragraph. I remember one time long ago, the only way to communicate was by letters or you would have to walk. Now wih computers with just one email or an instant message. Someone can get your messgae in. By sending a letter it can take a while. Even if you and call some one they @MONTH1 not be home or answer. But you can get emails and instant message ways. It also doesn't cost to send long distnace. Which will be bring yo my next topic. A profressor at @ORGANIZATION2 once said ""Computers are taking time "" But, if you think about it what it's actually doing is reconnecting with family members and old friends. For example, you @MONTH1 move and not be able to see them again. Then, you get a new phone number and forget other people number. If you have a computer you go on this great social networking side called where you look up some old friends name and distant realtives and you find out that it's really them. Than they you to other family members and before you know it you all to other again. Now, I'll bring to you my @DATE1 topic. The world wide web is a big place were peolple from all over the. On the world wide web you can meet some new people who not live in your state, or country. But, you find that you are starting to click when you meet this person they @MONTH1 be of a different rare. Thats ok you can learn new thing about a different cuture. While you two @MONTH1 have something in common you can share other things you like to do which you can try, so you're learning something new while having fun at the same time. Now you'll see it's time you get a computer rather than never have the experience. With a computer you can communcate quicker. You can reconnect with distant relatives and old friends. You can also talk to different people who like you." 4 4 8 +1257 1 "Dear @CAPS1, @CAPS2 you know computers are a major part of our society. Ever since the first computer they have been improved so much, that now you dont even need a keyboard. Having computers benifits our society because it allows us to learn about technology, and how to memorize when we start to type a lot. You have an opportunity to learn about things you like. And @CAPS2 a plus you can communicate with people from all over the world. Every day you learn something new! Learn a lot now, and you will be better off down the road! That's all teachers say. We'll computers do just that. Computers can teach us! The more you use a computer the more you know about it. You can learn about how it's made and the vireses it can have. The computers can also teach you in a way you might never have thought of. When you sit at a computer and type you start to memorize where certin letters, numbers and punctuation are. Now you @MONTH1 ask what about the little kids? How do they learn from computers? They sell millions of games for kids to help them learn even before pre-school. In fact @PERCENT1 of all kids who start off playing educational games before entering pre-school are ahead. How great is that? Kids and adults both go on computers. For kids when they go on computers they are doing things they enjoy. For example my brother is really into parcore. Parcore is when a bunch of people do flips, off of buildings, walls, or anything they can find. When he goes on the computer he looks up different parcore tricks he can do or learn to do. For adults they use it for work. They to, might have to look up things for a meeting they might have, or a buisness that they might have to work with. Using computers could be fun for some and work for others. But eather way they are using computers ina way that can help them down the road. Communication is one of the main reasons people use computers. There is e-mail, @CAPS3, twitter, facebook, myspace, and so much more.If you were to ask ten randum people on the street and asked them if they have a facebook @PERCENT2 of them will say yes. Communication is key when it comes to buisnesses and relationships. For relationships like family and friends having a computer to talk from if they are far away is great. Even for buisnesess using those internet communications you can communicate to people if your going to be late. Computers have been and always will be a huge part in our society. The computers help us in ways like learning communication, and work, knowing that this technology can help us suesede is great." 5 4 9 +1258 1 "Dear readers, On the current debate of the effects of computers, I believe they strongly benefit all people. For example on some computers a business software can be incorporated, allowing a meeting to be help over the computers. Not only is it convienent, but this saves money. Also, computers come with built in programs that can help keep track of you expenses. These are simple and save lots of time. Plus, computers also help you stay in touch with friends. Even if they are @NUM1 miles away you can click a button and have a live video chat! First off, the business software on new computers are out of this world. You can make a brochure of sales and expenses, all with an easy stroke on the mouse. This is a cheaper and greener way of presenting ideas. Furthermore, on the computer you and all you clients can hold a conference call. Doing this allows you to relax and multitask while your computer is feeding you coverage of the call in crystal-clear sound. Normally a phone would have to be glued to you ear but now you hands free. Another time where computers are handy is at tax time. Tired of running around your house to find you car bill from three months ago? Well, with a spreadsheet software like @ORGANIZATION1, taxes can be calculated in along with their name, so when you take the taxes to tax consultant, everything is organized. Using these tools cut down an stress and leaves you less frustrated. And even better, you can buy a tax program for you computer, so you never have to leave your couch! Think about, paying somebody to count your taxes year after year, when you can save a fortune and do it yourself. Above all, computers help you connect with old friends who have moved away or parted ways earlier in life. Now, the internet contains many social networking sites, such as @CAPS1, @CAPS2, and @CAPS3 where you can reunite with lost pals. These networks also offering access to photosharing and chat, so everybody can see how your family is and vice versa. Along with this is video chatting, where you can have face to face conversation with somebody even on the other side of the world. This is totally private, so it isn't dangerous to say names of family members or their locations. The internet truly is an amazing tool! To conclude, the internet holds a very strong role in our daily lives. Not only can we see who man the @ORGANIZATION2 game, but it also has interactive business softwares as well. Never again will work be so difficult. Also, the computer has programs to help you manage expenses, keeping you on top of your game. Finally, it is also helpful for all the tools that can be used to interact with friends thousands of miles away. I believe the computer is critical for success and happiness in life. It's a new age, let's adapt to it." 6 6 12 +1259 1 "To whomever this @MONTH1 concern, @CAPS1 your life without a laptop or a desktop computer. It would be hectic right? How will you keep up with your email or type of the articles for this very newspaper? Even though some people @MONTH1 believe that computers are taking away from exercise, enjoying nature, and spending time with family and friends, computers do have a positive effect on us. The list of reasons why is endless but three that stand out are you can communicate with people in other states or countries, it's more interesting to learn from a website than a textbook, and eventually @CAPS2 will be computerized anyway. Am I right? Have your old teachers ever assigned you a pen pal in another state or country? If yes, didn't you have to, write letters? Then, you had to wait at least @NUM1 weeks before your pen pal wrote back. If you had used computers, you would've gotten a response back within days. I know many parents and other adults @MONTH1 think that e-mails are a waste of energy but actually they're faster than letters will ever be. Has your daughter or son ever told you that reading from a textbook is boring? Yes? No? That's where computers come in. It's much more interesting to use the internet than reading from a book. I understand that some students can read from a book and retain all of the facts that they've learned from that one book but various students learn differently than that. If a student learns from the internet, they're more likely to remember it because they won't be put to sleep by the boredom of a textbook. Many people have mentioned and some statistics show that by at least @DATE1, @CAPS2 will be computerized. Do you seriously want to be the last one left behind? I wouldn't I understand that you are a person who likes to keep up with the current events so why not use your computer more often? When they say @CAPS2, they mean @CAPS2. They even have @CAPS3 tools on computer. So I want you to take a survey of how many people find computers effective and you'll be surprised. Many people will say the same that I've said. The choice is yours, which side are you on? Thank you." 5 5 10 +1260 1 "Dear local newspaper, @CAPS1 name is @CAPS2 @CAPS3 @CAPS4 in the @NUM1 grade in @CAPS5 @CAPS6 In @LOCATION1. I'm writing to you because I heard that more and more people use computer, but not everyone agrees that this benefits society. In @CAPS1 opinion I think it benfit society. If you keep reading I will fell why it benif society. @CAPS1 first reason that computer have a positive effect on people. For example, when I see @CAPS1 older brother go on the computer he look much smarter on it. That @NUM2 out of @NUM3 member of @CAPS1 family learn thing from the computer. @CAPS1 second reason that it teach hand eye coordination. For example, when I play games in the computer @CAPS1 hand are the ones doing every thing for me. (@PERSON1 example is that we I wacth the game @CAPS1 hand are roating) @CAPS7 @NUM4 of @NUM3 of human play games in the computer and let their hand do everything. @CAPS1 third reason that it give people the ability to learn. For example, when I was using the computer use too teach so much that I'm go on most of the time. @NUM6 of @NUM3 student study in computers and they learn about thing that they never knew. Also they have the ability learn more on the computer. Some one might say people are spending too much time on their computer. However, I said that computer help people learn about thing that happen in the word. For example, they could larn about the war that going on and how people are risking their life for this cause. In conclusion, In @CAPS1 opinion it benefit society. Computer have a positive effet, I theach hand eye, and it give people the ability to learn. I think you should put all you support in the problem." 4 4 8 +1261 1 "Have you ever had someone move away and you wanted to keep in touch? Well having a computer allows this to happen. @CAPS4, it gives students the to learn different places. People and much more. But why do some people not hire them? First computers allow you to talk online with friends and family. For example using email, @CAPS1 and video chat for example I have a friend who moved away and now we email back and forth to keep in touch. @CAPS1 allows people to chat instintly and upload pictures and videos. For examples my @CAPS2 @CAPS3 pictures of my baby cousins so people can see how their growing up. Lastly, some buessnesses use a webcam to talk to other people. Say the boss on a the but to see how he employees were doing withness him he could hook up a web cam and have a conversation with them. That is how computers allow people to the @CAPS4, computers @CAPS4 people to learn about things, for example if a student rod to make a topic they could type the topic a website like bring or google and they could find all the answers they needed to help them with their project. @CAPS4 if a family wanted to go on to see they could search for it and find a hotell and sites they might want to see that is how computer allows people so that the reader can read their hand writing. @CAPS4 they help pay taxes. For example, turbo tax is an online program that allows people to pay taxes online and it remembers every tax you have paid. So if some company sends you a notice saying you havent payed a bill you can go on turbo tax and check. So reader these are some ways why people should enjoy computers. They allow people to talk to friends and family by email, @CAPS1, and @CAPS4 by webcam. They @CAPS4 give people the ability to learn information faraway places and people. Lastly what is so bad about having a computer? They allow people to pay taxes online and @CAPS4 type papers. Computers are needed in this day and age or else some people would not be able to survive without them. So reader these are some reasons why people should easily computers." 4 5 9 +1262 1 "Dear local newspaper, Have you ever noticed how a lot of people are always on their laptop or their computer? Well, when they're on the web they don't get exercise at all. I have three seasons why people should spend less time on their computers. People could get sick, probably forget a lot of stuff, and never have the future that they have always wanted. My first reason why people should spend less time on their computer is people could get sick. For example, their are a lot of people who just eat and eat and only use their computers. Some people get obese by doing this. When they do they go on the internet to find out how to lose weight, but they never do it. Some people go on the internet so they can have a surgery because they're so fat. They think their is a cure for obese on the internet, but the truth is that the only cure their is by doing. Some exercise because that is the only cure they will get if their not on their computer. When people are surfing the web they forget a lot of stuff. Some people almost spend their whole day or even life on their computer that they don't know what else to do, but surf the web. What I have seen happen is that some people forget where they're at or who the even are. They also forget who their family is and never contact each other at all. This isn't good people. My third and final reason is no future. Sure some people apply for jobs at home from the computer, but the only problem their is that they don't get enough exercise and paid as well as the people who work outside their house. Some people wanted to do something about their life's and how they can't because they are addicted to their computers. Some people have to go to thearapy so they can stop going on the internet. Do you want that? Getting sick, loss of memory, and no good future are three reasons why people should stop using computers and start getting some exercise. If I were addicted to my pc I wouldn't get on education and I wouldn't be writing this letter right now. Get some exercise. Together we can make a change or find a cure." 4 4 8 +1263 1 "Dear @ORGANIZATION1, I think that more people should start using computers. They can offer things that just writing things down or a pece of paper cant, like being able to learn about things that aren't taught in school, you can talk with friends online and you can keep everything in one. The first reason I think more people should use computers is that they can learn about things that arent taught in. Such as current events, the history of our nation and how our government works. Now some people can argue that you can learn about current events on @CAPS1 or a newspaper. But the computer can give you the news in an article then show you it in a video. Also in my opinion the news from the internet is visually less condensed than on @CAPS1. Another reason I think more people should use computers is that you can talk with friends over the internet. This is great because there @MONTH1 be people you havent seen in awhile because they moved. I had a friend who moved to pitsburg when I was @NUM1 and when I got u @CAPS3 account I was able to find him and talk with him a while of him visiting. Or you can just keep in touch with friends that so to a different school. The last reason I think people should use computers is that you can keep pictures, videos, document and contacts on your hard time. This is important to because I am not very well organized when it comes to school. But I started using my book and started to some of the work on the computer. This helped me be less clutteres and keep all my work in our place. It also means you can email that walk to a teacher or notes a friend who might have missed school that day. So in conclusion that or why I think we should have peple we computers more. They can help you learn, let you talk with friends, or let you keep everything in one place. That is why I think more people should use computers." 5 4 9 +1264 1 "Dear @CAPS1 @CAPS2, Computers do not have a positive effect on people. Thanks to computers people arnt being active as much, enjoying nature, or interacting with family and friends. One reason this is true is because people are not exercising, they're too busy playing on the computers. People are gaining weight, which is already a problem in the @LOCATION1 because of unnecissary technology. There are plenty of sports that could be done, such as soccer, baseball, football, and so many more. People seemed to manage fine without computers and were a lot more active before them. Another reason computers don't have a positive effect on people is because they don't go out and enjoy nature. People spend too much time looking up beautiful place and animals when they could easily go explore around outside! Take a walk by the forest or in a local park, even by the beach and you'll see loads of animals. Not to mention, the immense amount of different plants and flowers they have never noticed right behind their very own home! No computers and people could quickly start enjoying nature more often. Thirdly, a reason why computers arn't positive on people is because they're not interacting with other people. Some people are too busy on facebook or myspace, e-mailing or @CAPS3-ing each other. Sometimes they arn't even talking to who they believed they were, it not only dangerous but unhealthy also. Whats wrong with giving someone far away a call? You can actually hear their voice and know its them on the other line! Its rediculous how people will e-mail a friend thats down the street. It would be much simpler and healthier to just walk over to their house. The two of you can chat and take a walk, or play a game, not just sit infront of a screen the whole day. Computers make interacting with other people, in person, a lot more difficult. With computers people are not active enough, don't enjoy nature often, or interact with others as much. They simply are not a positive effect on people. You should also agree and let computers stay to perfessionals." 4 5 9 +1265 1 "Dear editors, I was planning on taking a trip to @LOCATION1. I found directions within a second using a computer. Computers are great, people friendly pieces of equipment, but as technology evolves, people are beginning to rely on their computers for entertainment. Some people @MONTH1 disagree, but there are many outdoor activities that are more healthy then sitting around on the computer all day such as socializing, the great-outdoors, and other on sports. Familiar with @CAPS1 is a great program for socializing but there are many stronger dangers. Did you know that anybody can view your profile which contains personal info? You don't always have to chat online. Call up a friend and hang out at maybe a local movie theatre. Many people, and I agree, think seeing a movie with their pals is alot more entertaining then playing online chess or any other virtual game with a friend a fan of movies? No problem! go on a walk or a bike ride or walk your dog while riding a bike! There are so many. @ORGANIZATION1 park. What an amazing place to spend your vacation camp outs at @TIME1, bikes during the day, its a wonderful part of nature and the best part of you a park anywhere in the world! Camp out on the weekend place to become closer with your family and friends. Hiking is a popular part of a parks and can be performed by all ages, so go out and spend a weekend in the great outdoors! Not looking at a computer screen. Soccer, baseball, basketball and lacrosse. These are just come of the many fun sports. Out there, and yes, they are certainly fun and healthy. Every town I know about has sport fields where many kids and adults of all ages use. it also a great way to make friends! Get to know them in person and not over the internet. Daily exercise while having fun beats just having fun on a computer. What are you waiting for? Stop reading this article and go out and meet new friends. Visit a local park or play a sport for fun. If I were to name everything to do other than use a computer, it wouldn't fit in this entire newspaper. So go explore!" 5 5 10 +1266 1 "Guess what! Do you like to use computers well I do and I think it benfits society for a couple of reasons. It is good to use to get information on things, to meet people and just to expose the internet and if you keep on reading @CAPS1 ill tell you why think that. One reason I think it benfits society because how in this lifetime you need to know what is going on in the world. So instead of you always watching the news or reading newspaper. You could go on the internet and see what is going on from the internet. Thats why I think it benfits society today. A second reason is haveing a computers poeple get to talk over the web and meet new poeple. Being able to talk online to people like faimly and your friends. That you havent seen or heard from in a long time. And you don't have thier number you will tot alk to them during they are on the internet. A third reason is haveing a computer and is always on it. You can explore the internet and get facts on poeple, things, and places that you never knew about and from you going on the internet you learn more things that tou never knew before. A fourth reason is by haveing a computer you can go to school on the internet. And you dont have to leave your house because you can go to school from there and by doing that most poeple could stay out of trouble because there not leavinf there house. Unfortunally I ahve to end this letter but has mush reasons and details I gave ou on why I think haveing a computer is a good idea. You will agree with me and why I think that." 4 4 8 +1267 1 "In my opinion i think computers have a positive effect on people. Computers allow you to communicate will people from anywhere in the world. You can learn about different places much faster than you would if you read a book. Also many more jobs want people with computer skills. It is also fun and educational. Can you imagine how much harder it would be to communicate with someone who lives in, lets say @LOCATION1. It would be a lot harder, dont you think? Well thanks to computers it is as easy as turning on your computer. Many teachers enjoy doing activities with penpals. That would be a lot harder if you had to write letters. It would also cost a lot more money to call. Also, if you were looking for specific information about florida it is alot easier on a computer. You just type in what it is you are looking for, rather than reading through tons of books, in which case you might not even find what you are looking for. Also the computer has millions of iinformation. The computer also has various pictures which is also good. Another good reason is that many more jobs these days want to hire someone who knows how to work with computers. You can do a lot more things on a computer that you cant do on a piece of paper. For example make animated movies and video games. These things have evolved over the years thanks to computers. Finally my last reason, its not only educational its also fun. Sure you can research information and do you rhomework on the computer, but you can also play games. Computers can do all sorts of different things. Computers can be programed to have simulations for jobs like policemen ambulance drivers, and doctors. These are all things that save lives. That is why i think computers have a positive effect on people. Without computers our country probably wouldn't be as evolved as it is today." 4 4 8 +1268 1 "People use computers everyday. There's so many reasons way the're always on. They could be talking to one of their family relatives. Also they're probally looking for jobs. There's many things and people shouldn't tell them what to do with their lives. Many people in @LOCATION1 use the computer to talk to one of their old friends and catch up on things. Also they could be talking to one of their family relatives. There's a thing called webcam and people in @LOCATION1 use it so they could see one another. Buisnesses people are always on the computer because they need to print out documents and they probally got to send something to another country. Buisnesses people also do lots of work on the computer. They can still exercise in @TIME1 for a quick jog, but also thats their choice if they want to stay health or not, plus they're busy people. Other hand people who go on the computer and who are not buisness people or they're not talking to family member or an old friend are students and parents. Tons of students in @LOCATION1 have projects everyday and they got to be on the computer to look up their information. Parents on the other hand also help out their children and they also talk to their relatives or these looking for a new home or job. If all those people are busy let them do their work they want for need to do. Once their done they could excerise but if they don't want to and other people told them to go not take a walk or anything healthy then it's their lost. We can't some them too. They're just getting better everyday and it's not effecting us. its effecting them. If they want to be on the computer they're also getting bad eye-sight because of too much light." 4 4 8 +1269 1 "Dear @CAPS1 of the @ORGANIZATION1, @CAPS2 has come to my attention that several people are concerned with the technology boom and computer overuse. I can assure you that technocal upgrades only harm our people. Email and @CAPS3 @CAPS4 have only given us a decrease in our already terrible communication skills. Furthermore, we spend less and less time exercising outside because we are trapped in a technology revolution filled with inaccurate information. Why are we hurting ourselves instead of helping? @CAPS2 is very clear that our teens are growing up with no communication skills. I remember reading a persuasive essay and realizing that they used @CAPS3 @CAPS4 based language. @CAPS2 is ridiculous that we are forgetting how to use the proper grammar of the @CAPS7 language. Furthermore, I have also observed that when my friends talk they use slang terms like ""@CAPS8"" and ""@CAPS9"". I understant that computers after a faster and much easier way to communicate but we definetley can't forget the work of @CAPS10 . With the , people who should hope that they don't become a biggest loser contestant say @CAPS2, but, if they continue to mind on their then they will join the millions of obese. Americans I think that when people at their computer they tend to bring junk food with them and for! contrast to this from spending these hours with @ORGANIZATION2 instead of Exercising and let you creative wild would citizen rather pay for a computer or the vast, free, and gorgeous? Furthermore, people are wasting their important attention. A fact that over three of the information in isnt reliable therefore. Also, statistics show that nearly @PERCENT1 of students use to. These statistics also display that when students use these sites they clearly will score lower than a student who did the seemingly ""daunting"" task of looking for the reasearch in a textbook. What is so daunting about @CAPS2? Obviously, nothing is overwhelming. @CAPS2 is only pleasure when the student will get a phenomenal grade and their surronding classmates won't. Furthermore, I ask you why are people flooding their brains with unrealiable information? In conclusion, the effects computers have on people are very negative. Due to this, many people have no communication skills. They are also more likely to become less obese and if that's not enough they are hurting themselves because they are obsessed with inaccurate information. I urge people to dump @PERSON1 and @CAPS11. PC and start seeing @ORGANIZATION2 Nature! She's beautiful!" 5 6 11 +1270 1 "Dear Local Newspaper, I believe that computers have a coolest effect on people. It allows people to develop hand-eye coordination, allow people to learn about faraway people and cultures, and communicate online through e-mail or instant messaging. All of these reasons prove to be a positive reason to use the computer. You will need computer skills in various jobs and what better to start than now. Hand-eye coordination is a and in life. You need the in jobs, and in to days @CAPS1 the for that gets In the quarter mile must be able to find his and on in an office you have to watch as typing. you to watch popular with today. @CAPS6, @CAPS2, and @CAPS3 are only a few of many websites were people can communicate through instant messaging or e-mail. All of these sites allow you to find family members, friends, and many more. You can in with a friend that is out of state, or you can talk with a person out of this country! Many people do this in their spare time to try and set up a reunion with people that you know in middle school through college. Tons of these people have not seen were @NUM1. So as you can see contacting people through internet is by many people in our world today. So as you can see I support the use of computers, and I feel they are critical to peoples daily lives. Whether they are building hand-eye coordination, researching a country, or contacting family and friends through @CAPS3, @CAPS2, @CAPS6 the internet is highly valued and I hope you feel the same way." 4 6 10 +1271 1 "The computer is a great achivement of man. It is very useful for finding information fast, and has many other capabilities. Even though computers are every useful tool in the modern world. It has negatively afect to people. People aren't getting enough exercise because they are always on the computer. Along with that they are being socialy active. The lost and probably most negative effect is the exesive amount of freedom people get on the internet. Exercise is probably are one of the most important thing to live along and healthy life. People should be atleast taking along walk everyday. If people are sitting infront of a all day there will be much moreover people. People shold be for healthy life style, not with computers around every corner. People are also losing the ability to interact. Life is becoming dull. Every one is either texting someone. The biggest surprise is that there is online dating. This is horrible because you might be dating some crazy person. If someone think there inlove and when the cople meets the dont know how to interact, then there is a real problems. Even when you are just on the computer. You could use that time to socialize with friends and family. Last is the emerce amount of freedom that any are has with computers. There are lots of bullies people who want to sell you stuff, and people who want your personal info. Many kids sign up for something like facebook, but they're not cairful. They put staff like there adress and don't pay attention who how is sending them friend request. Computers have way to much negative effectson people. It would be great if some how the system could be improved, and people need to be more responsible. People should wont to get out and interact. Take a walk. Just dont let computers control your life." 4 4 8 +1272 1 "Have you ever had a computer? I'm sure if you was around my age you know how fun it is to explore the internet. It's a brain tht gives you information about everything. But, its not good for you to just drop everything and go to your computer. Things like exercise, socializing and homework matter. If you don't exercise you begin to gain weight, if you don't socialize you'll be an lonely person. Homework is the most important, because it'll help you really well through life. It's fine to go on the computer time to time, but not for hours. Exercising will keep you in shape and if you plan on playing sports, you should jog a couple times of day. Some people make you feel bad if your bigger than they are. For example, I knew someone who was a little big for his age, but people didn't like him and they always made fun of him. I would suggest that you should keep your mind on more important things than a computer. Do you have ant friends? Or did all of them leave you because you wouldn't stop surfinh the web on your computer. As a teenager you should be socializing with your friend at the movies, arcaded and parties. Not in the house on the computer. Especially with your family, because you never know if they're going shopping for you ask me that's selfishness. Every since you got your computer have you been receiving bad grades? Education is the most important thing you need in your life. Without it you can't be or do anthing, because you wouldn't have a degree to get a job. If you don't have a job how can you pay for electrity bill for your computer? Education can get anywhere, if you want it. If not you can be a homeless guy in the street holding a computer that doesn't work. Do you still think this has a positive effect on people? You should talk to parents about getting their child an computer. For example, tell the parent to put a password that only she/he knows, that way he has to ask you to sign onto it everytime we needs it. Blocks off things that you think is important for your child., especially if your child is into sex. That is why I don't think it gives people the right kind effect they might need." 4 5 9 +1273 1 "Dear newspaper, @CAPS1 the fresh air that cools your skin and the wind blowing through your hair while you are running side by side next to your best friend. And you think about the millions of people who spend their time chating on the computer. You also wonder about the amount of exercise those people would have, and would they be able to interact with friends and family members. Just think about your current lifestyle is it occupied with computers or is it free and wild? When you think about chatting to people do you think communicating in person or communicating by aim? I have surveyed friends and resulted with five out of ten go home and chat to friends online. This upset me because this half mainly had kids that did not play sports but yet they were very talkative, so in aim a problem I still have yet to find out. I asked question like ""what do you do at home?"", ""are you a computer geek?"". (@CAPS2 questions were only used to support my survey) The next time you are asked to chat online please decline before you to become obsessed with the computer. The amount of exercise a person gets depends on who it is. There are some who live on their computers like the @CAPS3 @CAPS4 (a comcast commercial) and some who don't know what a computer is (not commenting). I am here to teach about the benifits of exercising and not the un natural ways of a computer. Did you know people can loose weight by exercising? If you just pick up that old curling weight one curl is ten times as better then a click of a computer mouse dont believe me try it. Interacting with people is a big part of our life its how we get , give orders and its a lot faster type of communication then sending a email. Without interacting with one another we can suffer from depression. Depression can make people sick for example, my father, when @CAPS5 was divorsed the depression effected his body and mind. At the age of @NUM1 @CAPS5 got a rip in his small intestine that grew infecte and could have ended his life. I believe this was from lacks of communication and this happens everyday to everyone just open your eyes and relise what a computer can do to a man or woman. (@CAPS5 was remaried to bonnie and now carrys a scars on his belly). This is a movement that should change the opinion of many, do people spend to much time on computers? Just get outside and talk to your neibor see what they think. I relly hope you consider my argument." 5 5 10 +1274 1 "Dear @CAPS1, @CAPS2, some people do spend most of the day on the computers, but not everyone. Oh, let me start with no. Not all people take atvantege of the computer. Like scientest, your banks, and schools. These tipe of computers helps us through life. With out these computers then we willl still be cluless on a lot of things. But, there are people out there that did take atvantege of the computers. And they still do. With unforgiving acks like child porn. One of our mane problem in the world is child porn. And a lot has to do with the kidnapping. Or in rare cases the parents are the cause of it. So these are a lot of changes that need to be doen. But when there cleared then the computer world will be peacful once agaen." 3 3 6 +1275 1 "Dear @ORGANIZATION1, I understand that experts are saying people are spending to much time on computers didn't agree. Im writing to you today to tell you my opinion on the effects computers have on people with their time usage, what they are doing , and computer dead. If you will please continue on I would like to share with you my thoughts. Computers today are consuming our world. People are spending way to much time on the computer. I believe they should set a timer on how long they are on the computer. Lets say they set a @NUM1 hour limit then once its up they have to get off. I think this would help because if were spending to much time inside were not gonna be able to get enough exercise, which isn't good for our health. Please continue on to learn about how we should use the computer. Parents have to set a good example for kids. If parents use the computer @NUM2 then their child will think it's ok to do so. If the child then starts spending all their time on the computer then they won't be spending anytime with their friends. Kids today need to spend more time outside then playing games on the computer. Also the parents and child need to spend time together, if they are both on the computer they cant spend time together. Please read on about how we will go computer dead. Computer dead is a term I call when all we want to do is use the computer. We need to be healthy about our computer usage. If we aren't then we could start to get withdrawls from the computer and then will spend more time on the computer. If you go computer dead then it will slowly start to take over our lives. I think if this does happen it will be hard to get over an stop using the computer. Please read on to finish reading my letter. Thank for reading about how we need to mange our time issues, how we use the computer and computer dead. I hope you will consider my thoughts. Thank you again for your time spent reading this." 3 4 7 +1276 1 "Dear editor I agree that people do spend to much time on their computers. An if you read this you would see my reasons why. One of them will be about exercising. The two others will be about your friends and family. So read my reasons and by the end I hope I made my point. All right like I said first we will talk about what the lack of exercise because of always being on the computer. Did you know that from being on the computer all the time you lose focus on exercising anymore? Of you eating an @CAPS1 not exercising, because your worried about the computer. The weight that you put on you know just doesn't burn off by themselves. So by you not burning off that fat you just keep gaining and gaining. By the time you know it you'll be over weigh and wish you didn't spend all that time on that computer. How that I'm explaining about your of exercise. Where going to talk about your you bring on the computer all you would with your family. For example your family would want to go out but you say no because of that computer @CAPS1 parents would @CAPS1 they would because your lack of communication with the family. I've got my two reasons across let me get my third. Of you bing on that computer you have been adicted, but you just don't lose contact with family, but also with friends. You loving that computer so much you probably quite all your like the basketball, softball, and more teams because you thought it took to much of your computer time. In the end you would lose probably alot of frienships. @CAPS1 your boyfriend or girlfriend would dump you. So now that you read this I hope I got my point out to you, about what a computer can do to you in the end." 4 4 8 +1277 1 "Dear @CAPS1 @CAPS2, I am writing you this letter to inform you that computers do benefit society. Computers benefit society because we can learn about places we want to go. It also benefits society because in a couple years everything will be computers. However, computers benefit society because they @MONTH1 life easier now a days. My opinion is that computers do benefit society. Computers help everyone a lot. First, we can learn about the places we want to go to. We want to learn about the places so we can travel there. However, when we know a lot about that place we might want to but our plane tickets threw the computer site then after you get the plane tickets you can go and discover the places/place. Second, in a couple years everything will be computers. However, @CAPS3 will be threw a computer site (world wide web). We will get our education online. There will be games online. Computers do benefit society. Lastly, computers make life easier. They make life easier because instead of picking up a phone to call your friends or family you can go online to talk, they also make life easier beacuse instead of going to your family or friends house you can go on to aim or what ever chat site you got and chat threw instant messaging. In conclusion, computers do benefit society. First, you can learn about places you want to go to. Second, everything will be threw computers in a couple years. Lastly, computers make life easier." 3 4 7 +1278 1 "Dear Local Newspaper, my opinion on the effects computers have on people is that I think the computer is good for people not great but its good for many reasons, for now I have three reason why its good, my reasons are, search new places meet new people, when people have nothing to do, and teenagers that cant be without the computer. My first reason is about searching new places and meeting new people. People that have computers can go on google and search for a place they want to go and there they meet new people and that way they dont have to be on the computer that much they will be too busy with their new friends. My second reason is when people have nothing to do. If people have nothing to do they can always invite friends over and on the computer they watch movies without going to the movie theater and they dont have to pay. All you could do is download it. And also thre are many websites of movies. My last reasong is about how teenagers cants be without the computer. teenagers are teenagers they must have technology. If yu take the computer away from them they went do enything else. That will be even worse because if you tell them to go outside they wont do it same will. Maybe what you can do is let them use the computer but they can use it outside only if its a laptop. This is my opion on the effects computers have on people." 4 4 8 +1279 1 "Computers benefit society, people can socialize online with anyone. You can use the internet to communicate with people all over the world. I talk with my pen pal from @LOCATION2 almost all the time with vidio char, the most popular websites today are social. For example facebook, myspace, and twitter, thease days @PERCENT1 of people have an account on at least one of thease websites and that number grows everyday. @CAPS1 live has made vidio games a lot more social. @NUM1 in @NUM2 kids are playing with a friend they know while playing @CAPS1. By useing computers your hand eye coordination will increase significant key hand eye coordination is used in a lot of sports. ""I don't know if I'd be @CAPS2 good of a tennis player without useing a computer to boost my hand eye coordination. ""@PERSON1 you can use hand eye coordination to do stuf faster. I can copy notes so much faster because I can write and look at the bord at the same time. Wheather you relize it or not hand eye coordination is very inportent computers can improve hand eye coordination by @PERCENT2. People can use computers to learn online. When you go on the internet you can learn about cool places and plan vacations. For @DATE1 break me and my dad used the internet to learn about @LOCATION1 we then decided to go there and bought tickets. You can learn about interesting people in history. There are over ten billion articals about famouse people in history. On the internet you can also learn new resipys if you are a cook. ""@CAPS2 an @ORGANIZATION1 I learned most of my cooking online."" - @ORGANIZATION1. Online you can also learn how to improve your technice in sports. Before I joined the swim team I looked up on the internet how to improve your swim technice and how I qualifyed to go to @CAPS3 with my team because the internet inproved my time by two seconds wich was enough for me to go. I belive the computer is an amazing invention that has tremendosely inpacked socioty." 5 4 9 +1280 1 "Dear Newspaper @CAPS1, I think, in my opinion, that computers benefit to society greatly. The reasons I believe this is because of @NUM1 main reasons: Computers are a limitless source of knowledge, there are websites with online communities and it's just plain fun to use. Computers, as we all know, are a limitless source of knowledge. Now then, as you know adults need to work A @CAPS2 so most of the time if someone has to research something for work they could use a computer. Even kids who go to school need to use the internet of the computer for something like a project or homework. Now I know everyone, kids and teens especially, love to talk to their friends so most people sign up for an online community website. Now I'm very aware of online pedophiles but that can be taken care of by the fact of having friends you know of in real life to sign up as well. Lastly, I have to say computers are just fun to use. Kids like me that normally have a long rough day at school like to come home and rest with some nice game on the computer. Now this sounds like it just lazy but it is something nice to do for a distraction to other things. And thats where I stand on terms of the endless knowledge, online communities, and just plain fun of the computer." 3 3 6 +1281 1 "Do Computers benfit the society? Yes, computers benefit the society. Computers give kids so much knowledge about things they would not be able to do or go in real life. Another thing is computers give kids a positive ego or entertainment. Also computers let other kids interact with each other like facebook, or @CAPS1. There are many good details why computers are good for the society. First, when most kids dont know an answer to question they can go on google to fing the answer. Which helps in most cases. Also when on google, or any ""@CAPS2 @CAPS3"" it gives kids the chance to @CAPS2 anything and most likly get arreasonable answer. Kids can @CAPS2 up facts about other countries, famous people, and even types of pets! Another benefit of having computers is most kids on the internet go to have fun or entertain themselves, which could lead to a positive ego or better self-convidence. Just because kids arent going outside to have fun, doesnt mean they cant have fun inside either. Third, parents or any gauriden always talk about there kids or would like to see them with friends. Well having thing such as facebook and @CAPS1 or @CAPS5 you can make new friend around the town or even other @CAPS6. The internet can do all of those things. Finally do computers benefits society? Yes computers do benefits society, they can give you alot of knowledge, make new friends and to just let kids be kids. As you can see computers do benefit the society." 4 4 8 +1282 1 "Dear newspaper editor, @PERCENT1 of @CAPS1 have and use computers everyday. Computers are killing us as a nation. We need to put a stop to this abuse of computers. Millions of parents and kids spend at least @NUM1 minutes a day on the computer. They are either working or playing. There are many @CAPS2 games and other types of games out on the internet. Kids use these as entertainment. But having an @NUM2 year old child playing a game with guns is certainly unnacceptable. Kids often get so caught up in playing these addictive games that they don't even think of playing sports or going outside. Therefore, the child loses much needed exercise and fresh air. This can lead to obesity or other weight issues. @PERCENT2 of @CAPS1 are already obese, so why keep these horrid games out there? The last thing @LOCATION1 needs is more kids becoming fat!! There are two ways to use a computer for good and for bad ways to use them for good can be for planning a vacation, or working at a job, or even to look at a child's grades online. But many kids and parents don't use computers for these reasons. Kids have been caught looking at porn, buying illegal drugs, hacking into systems and other criminal type things. The computer is a way to do things that you shouldn't, while keeping your identity hidden. For example, whever I sign-up for a website subscription so I can play a game, it asks me for personal information. It askes for my name, my address, my phone number and other things. So what my mother has taught me to do is to use false info. So a computer hacker or a fraud site can't steal my personal info. And who are we to know that people don't do this with illegal programs? Computers are dangerous to @LOCATION1's well-being. On top of obesity, there have been reported cases of a child or parent having a seizure, having the picture of a game implanted in their eyes because they don't take their eyes of the game. There has even been a case of where a chid went mad and killed his/her parents in rage. Computers turn kids and parents into wild beasts. Parents commonly try to get their children to stop playing certain games. In some cases, the parent destroys an account on a website or takes a computer away for a certain ammount of time. These actions from parents have caused kids to go mentally insane! Cases have been reported of smashing computers, doing bad in school, killing parents as I said earlier and in some cases suicide. So in conclusion, computers are a source of health issues, action issues and mental issues. If we want @LOCATION1 to be restored to the @LOCATION1 we all love, then we the people, must put a stop to this computer addiction!" 5 5 10 +1283 1 "Dear @CAPS1, In a recent poll it was determined that @PERCENT1 of @CAPS2 have used or come in contact with computers. @PERCENT2 of those said @CAPS2 use computers daily, and not just for work. This extensive use of technology creates a lack in their exercising habits, @CAPS4, they enjoy nature much less. Furthermore, people spend less time interacting with family and friends. These are demaging effects on our society. ""The biggest reason why people dont exercise, "" says health proffessor @PERSON1, ""is because they just don't have time."" This problem can be directly attributed to the statistic that on average, @CAPS2 spend @NUM1 and a half hours a day on the computer. You can argue that they @MONTH1 be learning new things or broadening their horizons. However, none or which help these people get or stay healthy and in shape. Being on the computer does no good for the body. Click the next link and watch as a beautiful humming bird swarms across the screen of your desktop. You can clearly see its wonder, but can you feel it? Can you smell the fresh air it flies around? The computer can only show you nature, but you must log off and find it for yourself to truly appreciate it firsthand. Society will only cheat itself of the world's splendor while watching it on screen. Fans of computers will argue that they help you interact with people around the world, but what about the people in the next room? Computers @MONTH1 bring you to people globally, but distance you from people at your job, school or home. As humans, they need contact with the outside world. Why limit themselves to typing to people, when they can talk to them? In conclusion, extensive computer use does not benefit society. People will spend less time staying active. More over, people will enjoy nature on a desktop instead of in person. Finally, society will not spend as much time communicating with family and friends in person. The time has come to take a stance. It should be clear that computers are a danger to society." 5 5 10 +1284 1 "I think that the advances of technology to the computer are great and more beneficial than bad. Say you struggle at school and need serious help, you can turn to a computer for help, say you have a dear friends that a week ago moved to florida, you can use the computer to contact them. And finally if you want to learn about the world, great! Google search places to learn about. These are just a few reasons why the computer is helpful as opposed to bad! School one of many students least favorite activities, yet you can use the internet to help you out, @CAPS1! say you are in geometry and it is kicking you're butt, got to @PERSON1 academy for informational videos. Maybe you are a third grade teacher and the little kids are driving you nuts, go to @LOCATION1, and educational and fun website. Maybe you just want to relax and learn, plug in earphones and listen to math help. These are merely a few ways that the internet helps with schooling. What if it is a really rainy rainy day and you are tired and want to learn about faraway places in a logical person's head, the internet pops into their head. Think of the computer as a big easy to acess library, type something into a search engine and it pops up. What if you are in germany and you are hungry, oh no! Everything is in @CAPS2! open your laptop for easy translation. All of these things support that the internet makes learning about foreign places easy. And finally, communication is really easy, with the internet because, there use emails, skypes, chatrooms etc. internet's middle name is communication. What if your phone is gone and there is an emergency, you can get the email! What if a burgalor cuts the phone lines and sneaking your house e-mail @NUM1. And finally internet can be used to call @PERSON2 and tell him, ""don't forget the red bull"" as he leaves. Those are some of the reasons the internet is good for communication. Go let's recap on this paper. Internet is great for communication. Also help with learning about far away places. And finally help with schooling. These are the reasons I think internet is valuable in this day in age. " 4 4 8 +1285 1 "The effects that i have on computers are good. I will be talkin about things that help the human nature with one technology computers. How people can learn about faraway palces. Helps them with school, and taxes. How to communicate with people that arnt with you. and my conclusion with all three reasons. The effects of computers on me are very good. Because they help people learn about faraway places. Lets say a family is planning a vocation to @LOCATION1. And they dont no anthing about it so they go on a computer and they could book a reserucition for a hotel. My second opinion on computer is that. you have a project for school and you need the right information. Thats not in books go on a computer. Lets say you have to do taxes online because your cripplede (@CAPS1) so you might wanna @NUM1 www. turbotax.com. and you hale your taxes infront of your eyes. My hold opinion on computers is. @NUM2 you have a friend or family member you lost contact with. Go on the computer and find them and then you guyz can plan a day were you guyz could catch up/ @CAPS2 and @CAPS3 guardians have issues about there child. They can confront the situation about three child. and last ley my last conclusion. Thats what i feel about computer. That we need them to communicate to other people. To do assignments for a job or school. Or to learn about places that you never been to before or would like to vacation to. And the reason why i feel like that is because i passion for computer. And i hope you like what i wrote. I hope i persuaded you to like computers more." 4 4 8 +1286 1 "Dear newspaper, Have you ever grabbed a nice cold cake and sat at your computer desk? I @CAPS1 I have computers do benefit society. One way computers benefit society is it doesn't make people stand arcuna a book store or libray hours at a time. Another way computers benefit society is by letting people chat with people all over the over world. The last way that computers benefit society is it teaches people handeye coordination. If you have ever been to a bookstore or library you @CAPS1 how hard it is to find the book your looking for. Instead of spending hours on your feet @CAPS2 go sit on your computer for ten minuets or less. On the computer you can get any information about any information about anywhere or anything. one book about @LOCATION1! Going to the library Have Experts say the it helps people has done many tests and the people that use computers have better hand eye coordination than people that dont use computers. Dr a health magazine that the people that dont use computers arent very. Being able to @CAPS2 a skill it helps your mind to. As you can see computer benefit society helps peoples hand eye coordination." 4 4 8 +1287 1 "To begin with, The learning ability people get from it has improved. The @CAPS1 source is very helpful to many people. The communication is much easier than talking on the phone. I believe that computers benefit the society in many different ways. First of all, children and people at home and at school use computers for learning purposes. In some grades at school there is a special typing program that helps improve typing skills. There are also hard drive discs that you can play with to help you enhance on your reading skills. It is just a way to make learning fun for young kids. Another great way to learn online is going to websites that have sample math problem and print the sheet out to practice. They are great ways to help learning. Secondly, the computer has many more ways to benifit someone. They are helpful for getting your local weather. In the winter you can see if your school has cancelled in seconds. Often I get projects where it calls for me to do research on a specific topic and it is very easy to look up simple information. The computer also has different links that are helpful for writing a paper, making a power point presentation, and excel spread sheet. All of those resources can either help graphing results for science class or even typing up a paper for @CAPS2. They are useful ways to make life easier. Lastly, computers tend to make communication a little easier. For me, when I'm out sick from school I like to tell my teachers by emailing them and even asking if I can make up any work using facebook, aim, myspace, and skype are all fun and fast ways to communicate with friends. All of the websites pretty much do the same thing but different people like diffrent sites that their friends are on you can email friends and family who live far away and even close. It's a way to get back and forth to eachother. In conclusion, you have heard the different ideas and I consider computers as a benifit. It helps learn, communicate, and most of all do the important things that we need." 5 5 10 +1288 1 "I believe that computers have a positive effect on people. The three reasons I think this, is because computers enhance our hand-eye coordination, they give us the ability to research and find out information about a certain topic. They also allow us to communicate with people who we are not able to see very often. Computers, in fact, increase our hand-eye coordination. The usage of both the screen and the keyboard allow us to look only at tha sceen while typing on the keyboard. Hand-eye coordination is an important skill to have when excersising by playing sports or working out, which is also important and very good for our bodies. If you want in to apply for a job in, for example, an office, and you started stumbling and acting clumsy, then you @MONTH1 be looked at differently if you were organized and knew what your doing. This is why hand-eye coordination is important to people. Computers also have the amazing ability to search the world wide web. This gives us the ability to make millions of searches for any given topic. For example, In fifth grade I did a research project on @LOCATION2. Without all the useful information I found on the computer. I would have never been able to learn evrything I did. As most of the world already knows, there was a devestating earthquake in the small country of @LOCATION4. Computers was one of the ways that helped spread the word and get everyone to start helping and sending supplies and food to the victims. Also, if a family is thinking about going somewhere for a vacation, they can take care of most of the help on the computer. They could buy flight tickets, book a room at the hotel, and even get a rental car for when they land. This is what my family did on our vacation to @LOCATION1 and everything turned out perfectly all thanks to the computer and being able to do everything online. This is how the computer can help you research any topic. Lastly, you can use the computer to communicate with people that live far away and you rareley ever see. For example, my grandparents live in @LOCATION3, so I use video chat to talk to them since I only get the chance to see them one every two or three years. Also when my dad goes on buisness trips to other states or even something out of the country, we use instant messaging or video chat to keep in touch. Lastly, if you have friends or family who are fighting for america in @LOCATION5 right now, you can also use a video chat to communicate with them. So these are all my reasons why I believe computers have a positive effect on people. They help with hand-eye coordination, they give us the ability to research and find information on any topic through the internet, and lastly, the allow us to communicate with people who we are not able to see very often. These are my reasons and I hope you agree with me that computers have a positive effect on people today." 5 5 10 +1289 1 "The effect people shouldn't be on the computers that much because you need exercising to keep you healthy. You wouldn't be learn anything if you play games on it all day. Your brain will be fousing on the computers than school. You would be a bored kid or adult if you keep doing this. It will be sad if you throw your life away just because of a computers. The effect on people on the computer by not knowing technology is some people think that technology is dumb because you have a brain instead of a computers have information in your brain if you are smart. Some people are poor and never had a computer or never heard technology and country some of them don't even have technology or electrion because they can't afford for a computers. The effect that they don't know technology is they can find location and no cellphone you can call your friend go online and listen to music, play games chat to friend and family. Play games with each other. And watch movies. Another effect is learning about computers and how to use it step one turn it on. Click on intert explorer and search on a website to go on it's kind of hard to use the keyboard and typing it fast. The last effect is talking to people that you don't know form online. Is playing the game with a diffrent player you can chat with that person. Conulison this is all my reason why I agree with the effect of a computer have postive reason for a lot of people. This is why I agree with the effect of the computer." 4 3 7 +1290 1 "Personally I think computers have a good influence on people. There one of the greatest inventions.With computers you can listen to music or watch @CAPS1, research things for your projects, or just have a good time. Computers help people create, listen to, watch and make music and @CAPS1. When you have a computer you can get influenced by other musicians to create music. And where does eating that music need to go? Into a computer to add beats and different vocals. You can also watch @CAPS1 on there! Not exactly @CAPS1 but whatever show you'd like to see. Some people even create movies on special programs. Thats not all though. Alot of questions can be answered on the computer by doing research. Cures for different disease like cancer can be found. Even small research projects like ""Who founded @CAPS2"" can easily be found with one quick google search. Yeah we might be getting lazy but it makes peoples lives simpler. For instance intead of reading through dozens of books you could just search it on the internet for the answers. You can even take classes online not impressed? Another great effect of people on computers is socializing and having fun. Socializing over computers @MONTH1 not be as effective as socializing in person but it gives the quieter people. like me , a chance to say whats on their mind. Plus there wont be any of those akward silence moments like there usually seems to be on the phone. Oh, did I mention facebook. On how I love facebook. I get to keep in touch with my family and friends I no longer see. I used to have a very close friends, but after we switched schools I never heard from her. Until I found her on facebook. Same with many other people. And for the younger ones they'll be bored with the billions of games online. How could you go wrong? Sounds to me like computers have a positive effect on people. But what do you guys think. Can one big negative out weigh a ton of positve? I think not." 4 4 8 +1291 1 "Dear @CAPS1 of my local news paper: @CAPS2 you believe this garbage that the so called expert are saying about computers? I sure hope you don't! They are saying that computers are health risks because to many people are on them and not exercising, well if you risk me the users should know when to stop. And well when it comes to interacting with family the parents should set limits. Also computers are very convient, if you need information on a topic right away. So there far I think computers are not the one's at, in this perdevment. Exercising is somthing a perosn should have the ambition to do. @MONTH1 people don't have this they spend their day on the computer. they claim its not their faut. the computer is a you to play it. I read just last week that someone actolly told her press they it is not fault her over weight. Thats ! So the only person at full. for not getting the the gamer. As us family interaction goes, all up to the parents the use the parents are in control over they child and if they are that their kid doesn't spend enough time. The operator should have the will power to know when enough is enough and lay down the and set limits!. If we didn't have computers at home it would be a. Kids relie on computer them quick, accurate information. With not them the parents should their child to and from the library, and the time. And lets not forget the internet easy. So in conclusion computers are the way to go they are not the cause or however luck of exrcising at fault. Its not the computers fault familys. And they are just so convenit so clearly computer are good to have! I truly hope by the letter you agree with my oppinion." 4 4 8 +1292 1 "Dear local newspaper, I have some arguments to tell you how computers aren't all bad. One you can use them to get information for a project, talk to your friends, or learn about something you have never known before. My first argument is that most people use there computer to get information for a project they have to do for class. For example, they could need information for a country like @LOCATION2, @LOCATION3, @LOCATION1. There are many way you can get this information. So if you didn't have a computer where could you get all this information. If you get it from a it might not have what you are looking for your project. Had the computer here a bigger range of knowledge then a have. My second example, is you can talk to your friends you haven't seen or talked to in a long time. There are many ways you can do this On @CAPS1, @CAPS2, twitter, yahoo. You could always because it is always better to make new friends. Even better to a family member. I know it is alot better to talk to a family because they already know you. Finally, it is always better out something you never knew before or something you have been wondering about. But you could always go on google, ask or wikipedia. They can all help you you have been looking for. But that doesn't mean you can't find it in a book either. They are chalk full of answer and ideas that can help you. My conclusion, is that you can always find ways to get the answer you need. But that also doesn't mean that you should be sitting on the computer when you could be going outside, or playing with our friends. And nothing is better then spending your time outside. So use the time on the computer better. Then go out side and enjoy the outdoors." 4 4 8 +1293 1 "Dear local news papers, I'm writing to tell you that people on the computer is not a bad thing. Would you enjoy being bord? Or to enter tained while learning something? Being on the computer helps with hand eye coordination, you can learn about amazing places, and even talk friends. Hand eye cordination is good because it good. Save millions of people in war for example my grandpa went into the @ORGANIZATION1 and @NUM1 people were firing at him but he had good hand eye cordination from the computer go it saved his life less people will get hurt like getting your hand gramed in the car door. There would be more to do. The more something just as important as hand eye cordination is learning! On the internet you can learn about anything and everything. if you learn about far away places you will be able to widen your conversation people will think your smarter and you'll feel good, not only what other people think you sin truelly get smarter. Most importantly you can talk to friends! If you are taking so your friends it can build up your self asteam and when you go to school you'll social did you know @PERCENT1 of people do better in school if they comunicate online? Don't you wish every day you could be proud of your self? Well talking online helps! This is why im writing to you to share all my ideas and concerns. I hope you concider them and share them with the rest of the world." 4 3 7 +1294 1 "Imagine our beautiful town filled with unhealthy, lazy, noninteracting and addicted people. The issue to grapple with is should you the local people, spend more time on computers or not, I believe @PERCENT1 that we should not spend all of our time on computers. It can ruin your eye sight, you don't enjoy nature while interacting with people, and most importantly it make you very unhealthy. Can you picture @CAPS1 person in your town blind and having glasses or even going to the @CAPS1 @DATE1? Just ask eye @PERSON1,"" @CAPS1 year I get and more people coming to the eye doctors. You might say that it is good for me but it is not good for you. When you are always on the computer it erodes you eye-sight over time. ""@CAPS2, many people wear glasses now more then ever. @DATE1 @DATE1 in the local newspaper, they had a chart that showed how many people ruined their eyesight over the years from computers. It went up almost @PERCENT2 from @DATE1 year and @PERCENT3 from the year before. Almost everyone that has a computer and is addicted to it has glasses. Have you looked outside lately? Have you notice that @DATE2 is coming and there is leaves on the tree now? If you were one of the people that is glued to the monitor of your computer then I doubt you were. Computers and technology ruin your time with your family. Many jobs on the computer how out it isn't a @NUM1 job. In that time you could be spending time with your precious little girl or even the best friend out side in nature having fun. @DATE1 year I wanted to play catch with my dad, but was on his old computer doing what he does. I didn't want to play alone so I just stayed inside and went on my computer for the day. Do you want that to happen to @CAPS1 person, everyday I wouldn't. Yes, people would rather be a couch potatoe and chat online, eating a bug of a million junk food chips instead of going out and interacting while slaying fit, but now it is important that you do. Just picture lazy, obese. People sitting on their couch all day with their eyes blood from stearing at the monitor for hours. But why do you than you @MONTH1 ask, it is because they never some outside. They never go for a jog or eat healthy foods. That is very unhealthy and can higher your chances of getting different cancers. Just ask @PERSON2 from the hospital,"" @DATE1 one guy was rushed to the hospital because of a very common cancer that you get from unhealthy living, he passed away @NUM2 days later. It was very sad."" I strongly believe that being on the computer to long is a very bad idea. It can ruin you eye-sight, you never get to see nature and interact. But most importantly, it is very unhealthy. It is now or never, You would never know if you can be that man in the hospital with that cancer. The issue to grapple with is should you take that risk or stay fit, healthy and happy? So take a joy, eat a healthy, snack, and limit your time on the computer." 5 4 9 +1295 1 "More and more people use computers, they love computers for place that are far or the news. Computers are good for everyone in this world. Know one can live with out computers. There's others dat don't like computer for nothing. I know that there's family or friends that be having computers they write each others like in myspace u could have friend from everywhere or family's. But computers are spending to many times on their computers." 2 2 4 +1296 1 "Dear @CAPS1 @CAPS2, I have some opinions on technology is going these days and about how many people shun the idea of further advancement for the understandable reasons that it brings people away from family and that it draws people's attention away from the rest of the world I do see their point but I'd like to make a point myself. While statistics show a @PERCENT1 decline in recreational activities people also find more things to do and now that the world is more concerneD for the environment you will probably see people coming outside again because they heard about some new environmental actavist group to join or they watch a movie that makes fun of live action role playing and decide to give it a whirl. My point being that you never know what your going to discover in the media and its better than sitting outside all day with no insperation, waiting for your parents to get home and give you information from outside you tiny world. The other item I will mention is the music industry and how it is revolutionized with more advanced, and different ways of listening to it in fact the only problem in music today are the artist and how they take advantage of recording studies and on occasion another just to gain fame! Without doing anything but sit back and lip sync. But the technology of the day give us the ability to listen to music the golden age of music now. So why not advance and invest in the music industry, it will provide entertainment and fun for years to come. Advanceing technology is the music industry actually is probably good for the economey as well I mean if we didn'@CAPS4 have new @CAPS3 to bell to people every year that would be a huge decline in stock market prices not that were not in a crash right now but it wouldn'@CAPS4 be any better. That goes for cell phones too and any other piece of hardware that gets frequently upgraded it's just good for buisness. You see I belive that the point of life is joy so whats better than settling down with mabey a date some candlelight and a romance or thriller on the @CAPS4.V most people will enjoy just sitting down and watching the telly it's easy to relate to. The television has evolved in many good ways it's a way to lay down and unwind learn about so many different things mabey watch a show on @LOCATION1 it makes you feel like being there without actually being there. I helps us get updated on current events shows things that we want to do and shows us how to do it. I for example have learned so much from." 5 4 9 +1297 1 "Dear @CAPS1-republican, @CAPS2 do benifit society in a positive way, but they also have a negative affect. Computers allow people to chat/voice chat/video chat with family members in other countries that would be very expensive or impossible over the phone. They also provide learning experiences with many resources at your finger tips. One posotive affect of computers is that they allow you to connect with people around the world. Programs like skype and allow you to video/voice/ chat to people around the world at no cost. Doing such the phone would be very expensive. It gives you the opportunity to see family members you rarely see. Another positive effect of using computers is the resource and information provides too you. The internet has just about every piece of information possible. Doing a research paper go to wikipedia and topics you'l find information. The internet can prove to be helpful. The @CAPS2 offers you many good mind/puzzle games that you could not ordinarily do. There are alot ;of good things on the internet. Many things that help get your mind flowing. Cant afford the newspaper? Read articles and stories right on the internet. The last reason I believe @CAPS2 have a positive affect on people is because it replace. Many people, instead of going to the @CAPS3 will go to the @CAPS2. No matter what are you doing, you are usually doing more on the @CAPS2 than on the @ORGANIZATION1. That is why I think computers make a posotive affect on people. Computers are sure to be our future. You can play games, voice/video chat and even read the newspaper." 4 4 8 +1298 1 "Dear @CAPS1, I have recently discovered that you are debating the computeres have on people. In my opinion I would think they have a neutral effect on people. In this day and age computers are used for many things. Research, communication act. maybe the reason young people so much time in the computure is because they have a lot of home work on the computer, ""@CAPS2 this"", ""@CAPS2 that"", people don't relize to pass we have to go on the computure. And for adults when you work with big companies you work with people all around the world. Instead of fixing to all these meetings you can simply do it over webcam. Yes, I see your concern that people spend too much time inside on their computure but what about people who love to read or play music, they could spend hours upon hours practicing or reading. What is the difference? And you never know maybe being on the computure for someone is lik a sport for another. Computoras are just about anywhere houses, schools and even crime & medical labs. Computure or a prime source of the data base, of @CAPS4, criminal records and so much more. With out computures how could catch the bad guy or catch the cancer before it's too late. Computure are key in many things. in the end you could go all day about the pros & cons of computures. But there so key in major aspects today, the pros out weigh the cons." 3 4 7 +1299 1 "Dear @PERSON2, Have you ever noticed how different our society is today, even from just ten years ago? That's because of computers. Yes, it is true that computer give us advantages like messaging and information, but they also take away from some of the greater aspects of life: staying fit, enjoying nature, and spending time with family and friends. Without those, life would be horribly unbeneficial. While surfing the web @MONTH1 be fun, it has been proven unhealthy. ""if a person was to spend more than two and a half hours on the computer every @TIME1 for about a month they would see a sudden increase in their gain. And if they kept the behavior up, they could gain up to one third their initial body weight until medical help was provided,"" say @PERSON3, a specialist in obesity at @ORGANIZATION1. Also, @PERCENT1 of all computer users snack while online, which only increases weight gain even more. Unfortunately those that spend alot of time on the computer are not usually okay with exercising either. Instead of outing down just a half an hour out of their computer time to play with the dog, take a jog, or try some aerobics, computer lovers usually just stay in front of the screen. That's too bad, because it causes health problems for them and maybe even the generations after them. Nature, is being ignored @CAPS1, more than ever. @PERSON1 can recall the time when the trails @CAPS2 runs were overrun with people. ""@CAPS1"" @CAPS2 says ""They're being overrun with woods and. Those are harder to act rid of that people."" But it's live, the trails and that to be fuller nature lovers are numbers. Because of today's new technologies, especially computers, the beauty of nature is being almost completely passed by. Some worry if it will fade entirely and instead of trying to maintain what's left, well just let it do so. Hopefully though, the next generation of people will reconize this horrible mistakes. Doctors, @CAPS3, all people alike are seeing more and more how computers affect family life. How often do you eat dinner with the whole family. When you don't, where are you most of the time? At the computer? That's what I thought. When computers and other technologies are available there is much less of a chance that you will actually interact with family and friends. mrs @PERSON4, an @NUM1 grade teacher in @LOCATION1, noticed that her family spent less time together than ever before when each family member got a laptop. @CAPS2 believes this is pulling her family apart. Do you? As you can conclude, computers have an awful influence, on society: people do not take, the time to stay fit, nature is being completely ignored, and Family interaction rates are poor. Whaat can we do to fix this problem? Just set a little time aside daily to observe these aspects of life. This way, life with computers will be beneficial after all." 5 6 11 +1300 1 "I do not beileve that computers benefit society. Kids can learn more but they spend too much time on line. When kids talk to people on line they don't know if it is really someone you know. There are techneral problems with them that deileate files. For these reasons is why computers do not benefit society. Kids spend too much time on computers. Computers do teach you more things, but they also have games. Children spend most of their time on games than studying. Chidren can get agressive when loss of exersise. Thats what is happening today. Kids are loosing exersise an are getting hevier. They can evan loose intrest. All they want to do is go on the computer. Kids talk to people, how do they know who they really are? People can make a fake e-mail adress and make a false account on @CAPS1 or @CAPS2-space. These people want children's personal information. Also if you are talking to someone that has a name of someone you know. The person just might be a freand. Like me. I was talking to @CAPS2 cousin on @CAPS1 (the account said his name) but it was his wife. That is why you need to be carful about what you say and who it is you are really talking to. Computers have virouses. When computers get virouses, they can deilete the files you want to save. If you had a video on the news you want to keep it. Youu put it under favorates, they you get a virouse that deleites the file. The video is how off the wedsite. Sometimes your computer doesn't bring you to the wed anymore. You how have to click alot of places to get there. For these resons is why computers are not benefical to society. Kids spend to much time on computers. Kids can talk to people they don't know on them. Computers have technical problems that delete files. Just remember there are many many more resons why computers are not benefical to society." 3 4 7 +1301 1 "Dear local newspaper, @CAPS1 has come to my attention that those who support advances in technology believe that computers have a positive effect on people and others are disagreering with this comment. In my point of view I believe that computers are effecting some people today and that people are spending a hudge amount of time on computers. The time spent on computers is getting outragous! Many people are just sitting home and staying on thier computer just playing games. Although the computer can be a great way to pay bills and come in contact with others faraway, people are taking advantage of computers and even billing others online. Since your not right infront of the person or near by the computer is a tool for many people to say threatning things without anyone else knowing which could cause fights, or other terrible things. The computer can also be very dangerous in many ways. For example sites like myspace and twitter can be dangerous for teens because of rapest. Some random person colud just start talking to you and ask you to meet them some where which could be dangerous. The computer is also dangerous because you could have inappropriate pictures posted on websites of you and not even know @CAPS1! The last reason why computers and laptops effect people is because of hacking. This is a big issue especially if you have a webcam. Some people know how to back your webcame and can watch what your doing without you knowing. People can also hack into your computer and look at all your documents. I think computers is a big effect on people today and this effect should be solved!" 4 4 8 +1302 1 "Dear Newspaper, I believe that computers have both possitive and @CAPS12 effects on people. However, I believe that there are more positive effects than @CAPS12. Some of these positive effects would be that they are essential for education, a very usful place to communicate, and they can be fun. My first reason for supporting computers would be that they are very eduactional. For example, you can research almost anything. If you are doing your homework and you forgot an answer. An other reason why @CAPS1 is educational is because you can type your paper on @CAPS1 so your teacher can actually read your handwriting. If @CAPS1 is messy. On the subject, you can work from home if you are sick or on vacation. But how do you get @CAPS1 to your boss? Email of course! wich brings me to my next subject; @CAPS2. Another resoursful thing about computers is @CAPS2. There are so many different ways to communicate; @CAPS1's unbeleivable. Take I @CAPS4 for an example. You can @CAPS5 to peoples cellphones. You can @CAPS5 to other people that are @CAPS7 or you can just @CAPS5 on some websites such as @CAPS9, @CAPS10, and tons more. You can also vidio chat with people on things like and @ORGANIZATION1. Those are just a few ways of communicating on the computer. Finally, I would like to tell you about the fun things you can do on computers. First, you can buy games from a store and download them onto your computer. Personally, The sim are my favorite. I understand that computer games can be a negitive thing because they are addictiing, but if you don't go on for hours and hours, then I don't see what the problem is. Also, they have educational games so learning can be both fun and educational. Another thing you could do is play free games or download the game from the internet do your computer so they are both fast and easy. To @CAPS11, Computers can be both @CAPS12 and positive but I chose to look at things through a positive eye and I think you should too. After all, computers can be educational, a social networks and fun. Son @CAPS13 my positive eye... You wont be sorry." 5 5 10 +1303 1 "Dear Local Newspaper On the subject of computers; Their pros and cons, I would have to say that both sides provide veru important reasons why you should and shouldn't use computers, I think that computers are very important to many students just like me. First of all computers help me and my fellow classmates with many asisgnmenrs. Some of us simply don't have the time to go to a library and look for a book that might nit even posses the information needed. On the internet you can find the same amount of valuable information or more! It also helps to develop your hand-eye coordination some peopel say ""you can learn hand-eye coordiantion outside too? Although that is true, typing is very fats and neat. As you can see my hand wriitng is not the best but I type very fast and make little mistakes so I do not need the neatest hand writing ever.The way I see it computers are the fastert way of doing alot of things. So if you spend time writign neatly you might nit even be able to go outside and see nature. my dad is a environmentalist and he uses computers. Sometime the easy way isn;'t always the best way thats why we must have balance. Do not infrom people to stop using computers but to balance thier time with them. Everything is good if it's balanced. for example, coffiene, In large amounts it is rather unhealthy but when you need a small you turn to caffiene and it helpd, same with computers. Besides, computers are now made everwhere, trying to get rid of them is simply unreasonable. We are already in a recession we dont need more trouble. I prefer to talk with my friends eye to eye however if you cannot do that a computer is a perfect alternative. So you see comuters are evry helpful to some balance is the answer!" 3 4 7 +1304 1 "Would you like to discover new things and explore amazing mysteries around the world? Do you love to have friends overseas? Do you want to relax and do something fun after @ORGANIZATION1? Advanced technology today allows you to do almost everything that would have been considered impossible @DATE1 decades @DATE1. We need to decide whether computers have positive or negative effect on people. I firmly believe computers gives society many benefits and opportunities. Who would disagree that computers are devoted to educational purposes? Computer experts have invented countless programs that make @ORGANIZATION1 easier for kids. For example, @CAPS1 helps you with essays and reports. With her program teachers wouldn't hurt their eyes trying to read sloppy hand written compositions from students @ORGANIZATION2 helps you organize and calculate, @ORGANIZATION3 gives you the @ORGANIZATION3 to create dynamic presentations. Many schools have a computer lab for students to complete their @ORGANIZATION1 tasks. @ORGANIZATION1 has also aquired convenient-sized laptops to help students do their projects and take test. That saves a lot of paper and a lot of trees! Furthermore, many colleges offer their courses online. You can obtain a college degree right at your house without going anywhere. Education has never been so easy, thanks to our advanced network and computers. It is very important to mention the entertainment benefits of computers. I have notices many teens play cool games on the net. They seem to greatly enjoy this opportunity. It in an ideal way to relax after a stressful way getting on the computer and listening to the newest songs. Some websites after downloadable songs for free so you don't need to worry about the financial part. Moreover you can watch movies online anytime, form wide section such as horror, romance, comedy, fantasy or even children films. No more movie tickets, no more driving in the theater. Without a doubt computers can put a single on everyone's face with its entertainment benefits. Many people feel that computers both kids and adults always from their social life, but actually, computers give them a chance to communicate with other people around the world. Ten @DATE1 @DATE1, who would have thought that they could chat and talk directly with same one a thousand miles @DATE1, with no mail or telephone or whats over? I came to the @LOCATION1 @DATE1. I am extremely grateful to computers because I can keep in touch with my friends and relatives. I can just send them pictures of the snowy winter sceneries here through just a minute. How much easier could it get? computers definitely improve communication and brings people closer. Let's not wait any longer. Computers have endless positive effects and should be popularizeas. They help you learn have fun and communicate with people faraway. Above and beyond all that new technology makes the earth a greener place by saving paper and trees. Don't sit here and wait educate people about the benefits of computers today." 5 6 11 +1305 1 "Dear @CAPS1: A @CAPS2. Can you believe that this tiny piece of technology is influencing our everyday life? The question upon many people is, do computers give a possitive or negative effect on people? In my opinion, although computers help with certain everyday life, I think that it gives one negative effects. I have many reasons for this belief, but the three most important are going to be stated. First of all, people are to busy on their computers that they spend less time. People are also in busy with there computers that they spend less and less time enjoying nature. Last but most importantly, people are so caught up with technology, they barely spend time with freinds and family. So, in my opinion, I think people should get technology, and the real world. Have you ever walked down the street and saw someone the size of a boulder? well it isn't a good sight is it? My point is, that can happen to you let me change that to everyone in the world. Nowadays, people are spending less and less time exercising, but instead sitting at home on the computer, or slouched on the couch with a laptop. People are ignoring their health and instead staying on the computer. I for one, know how hard it is to resist playing the computer, but you shouldn't let a tiny @CAPS2 take over your mind and now your future. Nature. The most wonderful thing in the world I say the second most wonderful to technology. Have you ever turned on the t.v. and see nature its beauty? Well you can thank and global warming for that. When people use computers they burning fuel which harms our environment. People are technology they don't care about their and surroundings. If I was a I would say, ""@CAPS3 less computers and @CAPS3 more green!"" @CAPS4..... it's luxury of having a family. Family and friends , it's most important thing. Sue to computers, many people are family and friends. For example: @CAPS5: @CAPS6 want to go ride bikes? John: @CAPS7. I want to play my computer. Kids and adults was single-handed. In my opnion family most important, unlike a piece of metal that has a screen In conclusion, I think that computers of a regular effect on people, life you people by it. People are spending less time with their health and exercising advance in technology. They are all spending less time at the park big or simply just enjoying nature's beauty. Most importantly, there is less interacting with friends and family. But, this is just my opinion, it won't mean anything if you don't agree. I consideration." 6 5 11 +1306 1 "Dear editor, I think that computers are a good thing to have in the house. They're very helpful and entertaining. For example, they make @CAPS1 easier to keep in touch with far away friends and family, they help you learn things or know the important news, and their also very entertaining to people of all ages. This is why computers are one of the most valuable things to have in your home. One of the many things a computer can help you with is keeping in touch with family members of friends that live far away. Computers can serve that purpose because someone can use facebook, twitter, or skype when using one. ""I love facebook, because I can keep in touch with my family members in the @LOCATION1,"" says @PERSON2. Also, researchers say that people who have facebook, skype, or twitter accounts become closer to their families than people who don't. A computer can be used for educational purposes also. Many people like to use educational computer games to prepare their elementary - schoolers for school. ""@CAPS1's fun and gets my son prepared!"" says a local mother as she talks about a computer game. Studies show that computer games are @PERCENT1 better at preparing a child for school than textbooks and worksheets. One of everyone's favorite reasons for keeping a computer in the house is for entertainment. When on a computer, anyone can play cards, chess, pinball or game websites like addictinggames.com, go on youtube.com to watch videos, or much much more. ""I like to spend some of my free time on addictinggames.com,"" says @PERSON1. Also, after taking a poll. I found out that @PERCENT2 of kids and teens prefer online games to board games. As you can see, there are many reasons why having a computer in the house is important. There are also many more than what I listed. However, I think the main ones are to keep in touch with friends and family, to use the computer for educational purposes, and for entertainment. I'm very grateful for the computer in my house because I use @CAPS1 everyday for those purposes, and so does everyone else in my family. A computer is one of the most important things in the average home." 4 4 8 +1307 1 "Dear @ORGANIZATION1, @CAPS1 posission on the computer contraversy issue is that computers are good and so vital in todays everyday world. Computers are a good way to communicat, they are most people main source of info and buisnesses use computers for various importanat task as well. Computers are a great way to comunicate. You can @CAPS2 with your friends, email your peers and now there are website you can go on where you can talk to your friends or a stranger. Being human I do sometimes forget @CAPS1 homework or school asignments. In that situation I would just go on @CAPS1 computer and @CAPS2 a friend asking them for the assignment. Its quick easy and it works. There are also websites where you can talk and connect with other people who share the same interests as you. Its a good way to make an online friends. The computer goes beyond just allowing you to talk enables you to connect with people no matter where you are. Do you ever have a question that you instantly want or the to? Just go to ""google"" or ""@CAPS4"", tpye in your question and recieve an immediatly. AHve a reaserch paper due on @PERSON1? You can do all of your reaserch online. There are thousands of website loaded with information can anything and evrything. Youc an enter yout topic a search engine and find hundreds of sources that way. You can easily fine information any subject you want, or find the name of that song you just heard on the using your computer. COmputer are used in buisness environment too. Computers are used for getting messages to different people in the. They are also used to create and presernt presentations marketing campains and now product ideas, also many companies use the internet as a source of advertiring and need the bublicity to sell their. So the computer is necessary for to function as well. So in conclusion computers are not over used, they are just used for so many things that at some point every one will nead one. They are a good way to communicate, an important and main source of info and they are also used in buisness environments too." 4 5 9 +1308 1 "I think that computers have a positive effect on people because you can communicate with different places around the world. Store things on them, and use them for entertainment. Computers have a positive effect because you can communicate with other people around the world. This is good because instead of calling people you can go on computer and talk to them for free. Long distance phone calls cost a lot. But if you can just go on your computer and talk to them there's going to be no charge. Being able to talk to other people over the internet is very useful and fun. If there wasnt a computer people would be talking to as much people and there social life would be bad making there life not as exciting. This is one reason why I think that computer have a positive effect on people. Another reason why computers give a positive effect in people if you have a lot of paperwork that is just lieing around is in the way. Well if you have a computer there are featers that your able to store thing and because much more organized. Being more organized there is less stress one you start to feel better about lossing things and being able to find them. This is why I think that computers are very great and useful. The last reason why I think that computers have a positive effect on people is that people can use it for entertainment. Computers can do many things like play game, listen to music, watch videos, and chat with your friends. Being able to play games for free on your computer is awesome. If you cant aford to get a game system them you are able to go on your computer and play pretty much what ever game or close to the game that you want to play. A computer can also play music. You can have @CAPS1 and download musics to something or go to web sites that have musical on them. Also you can do video chats with your friends if they live far away. I hope that I convinced you to like computers more and think that they are great and have a positive effect on people. Being able to play games, store thing, and chat with other people is pretty amazing." 5 4 9 +1309 1 "Dear newspaper editor, @CAPS1 you have a computer? @CAPS1 your kids spend all of their time on it talking in people or going on facebook or myspace? Well thats fun and all for a few hours but some people spend a lot of time on there. They don't go out and get exercise or interact with their family and friends. Also they @MONTH1 end up getting in trouble in school or at home. If you spend all of your time on the computer doing whatever your doing you won't have time to go out and exercise. Not only will it be in appeling but it could be dangerous for your health after a while. All your time gets sucked into the computer and when your on it you feel like your not on for a long time and it ends up being like a few hours. It even happens to adults, my mom was on the computer for about an hour and she felt like it was only a few mins. When your on your computer for several hours you tend to got sucked in and not interact with anyone. I know this from experience. A few months ago I spent about a whole month just coming home from school and being on the computer for several hours. This effected my life a lot, I stopped going out on weekends with my friends, I always wanted to stay home when my family wont out. Then my mom confronted me about it and I realized all of my time on the computer wasn't good. I was missing out on a lot of things. Kids @MONTH1 also get at home or at school if they are on the computer for a long time they @MONTH1 not @CAPS1 their homework and end up failing a class and then stay back. Statistics show that @PERCENT1 of the kids that stay on the computer for a long time end up either failing a class or staying rack. They @MONTH1 also get in trouble at home because they dont @CAPS1 their chores because their busy on the computer and neither the child or the children like getting in fights with one another. Now I know in a way it's good to have computers and be able to use them so we can look up information and its nice to sometimes talk to people on the computer for a little while but being on the computer for a little while but being on the computer for to long of an amount ran really mess you and your social life up. So all im trying to prove is that computers are an amazing invention but we should just use them a little less and get out and excersise, and have fun with our family and friend and @CAPS1 good in school and at home so we @CAPS1 get to spend some time on the computer. I hope you see it my way now." 4 4 8 +1310 1 "Dear @CAPS1 @CAPS2, I am writing to you about how technology affects people. My argument is that some people think that Computers are taking to much of people time, I will tell you how technology keeps people from excersizeing and gaining life expieriences. Now I will explain in further details. My first reason for sayi-ng computers affect people is that they cant get excersize when there face is glued to a computer screen all day. And especially with the amount of kids palying video games or playing on the computer, the childhood obeasity rate will slowly rise due to them not getting excersize or they will just get very weak. That is why computers have a negative affect on people by not letting them get the excersize they need. My seconed reason for saying computers have a negative affect on people is that they won't be able to gain life experience I say this because when something asks you ""@CAPS3, what did you do today?"" youre only answer could be ""@CAPS4, can we chande the question to what did I not do today?"" @CAPS5 when your on the computer all day you wont be able to explore and obseve nature well maybe you could do that on a @CAPS6 server but it isnt the same. And even when parent ask if you want to go for a walk you should do it, You could learn somthing or see somthing you wouldn't be able to see on a daily basis. That is why computers have a negative affect on people when their face is glued to a computer. So now I am going to close this letter and I hope you see that excersize and gaining life experiences will change your life forever." 4 3 7 +1311 1 "Dear @CAPS1 @CAPS2 @CAPS3: @CAPS4 people are skeptic on whether or not computers benefit people. I strongly believe that computers do indeed benefit humanity for it allows people to talk online with loved ones and friends across the globe, and learn about those foreign places. Computers don't take away from lifes, but shows it through fascinating synthetics. Computers allow people of all ages to interact with others over the world-wide web. Sometimes it's better to meet with people in person, but that isn't always the case. What @CAPS5 you have relatives or friends in a different country? The internet is the best way to contact those people. Also, what @CAPS5 you are in a band or a group, and need to contact them while you are out of town? Social sites like facebook or myspace allow the group members to talk and discuss matters at the hotel or wherever he @MONTH1 be. In addition to both of these reasons, students can obtain missing work and email the teacher from his household. This allows the pupil to obtain his lesson and catch up on anything he or she has missed. The technological breakthrough of the @DATE1 known as computers allow interaction with other people as well as learn of distant lands. @CAPS4 people including myself, want some culture in their lives, and wander about this lively planet we call earth and find out whats out there, but can not acheive said goal. The computer saves us time and money to do these things. All we have to do is open a search bar, type in a word, and boom, we are looking at @LOCATION2, @LOCATION3, or even the fields of @LOCATION1. Any place you want is at your. In addition to this, @CAPS5 a new tourist attraction comes to be, whether it is an amusant park, a monument, or a historical find, the internet can show us this. We can see things we would be seeing @CAPS5 we were present at the place, but instead on a monitor in your home. The computer allows you to do @CAPS4 things without actually encountering their happenings. In conclusion, computers are helpful for they allow us to preform things we could not do under certain circumstances, like talking to people over the internet, or learning of foreign countries. Not everyone can do these things, but everyone who has a computer can." 5 5 10 +1312 1 "Imagine how people felt back then when there weren't any great technology. What if you didn't see your best friend in years and you lived long distance? Well now its this advance machine called a computer. Its very great and its a well hands on activity, that helps you with eye cornation. However, @CAPS1 going to tell you somethings about this device and now it affects humuns daily life. Moreover, the catogories are have a great relationship, online cources, and be on the best local websites. Did you know about @PERCENT1 of @CAPS2 have a successful life with online-dating. There's tons of people who struggle with relationships. For example, one day my mom and dad got into a series of arguments. She felt that the relationship wasn't good enough and she needed to meet a better man. On the other hand, she decided to live a better life and find dates (over the computer) and live a new life. These are the fantastic things you can do on the computer to have a better relationship. Your a highschool dropout because you cant keep up with the class. You dont turn in your homework and fail every test. Also, you feel that there is nothing you can do to fix it. Well not so fast my son! Now you can take online cources to boost up your grade and make you feel comfortable. Imagine sitting at the computer, completing every assignment and doing every homework there is. Watching your teacher teach, to you through a webcam. There's nothing like it, in fact you get the homework faxed to you. Someone in this world is living this life, it could be you. There's new websites all around the world today. However, there is no better website with all your friends on it. For example, myspace, facebook, and twitter. All websites that can stay in contact with your best friends. Another, that can be even more intrested is webcam. It's live from home fotage face to face on the computer. How cool is seeing your friend when your not together? Third of all, communication makes the world go around that why more and more people meet new friends. In sum, as you can see there's a lot of fun things you can do on a computer. It affects humans lives because more and more people are intrested in this device" 5 4 9 +1313 1 "Dear local Newspaper, @CAPS1 waste your time learning at home when thats what schools for? People are concerned that too many people are spending too much time on their computers. They spend less time outdoors, excersising, and enjoying nature! People need more time to interact with their family. People are concerned. They are concerned there is way too much computer time. One time my mom had just bought a new computer and I stayed up all night on the internet. When I woke up the morning I was so tired and I didnt want to go to school. I think you should consider less computer time. The more time people use their computers the less time they are enjoying the outdoors. Insted of talking to you on myspace that they right down the street at the park with them. @NUM1 out of @NUM2 people in @CAPS2 that use alot of computer time. Interacting is a nice enjoy nature and have fun. Family activities is a nice, fun and enjoyable way to spend your time. You can go to park when its nice outdoor weather, go swimming, play sports, in the wintertime you can possibly go to the movies, go to the mall, have fun with the family dont waste your time on the internet. In conclusion, there is too much computer time and you as the newspaper editor I advise you to make computers more expensive so people can spend their money on something more usefull because there is too much computer time. My mom says that ""more people use there computers, more that they put their feet in their shoes and walk outside!"" @CAPS3 people in @LOCATION1, @CAPS2 think the same. Please consider my opinions the right way. Thank you" 4 4 8 +1314 1 "Dear @ORGANIZATION1, Have you ever trully marveles at the computers in our generation today? Have you seen all the interesting and amazing things that computers allow us to explore? Computers have been thought to advance our society because of its abiliyt to show websites containing rast and diverse research. However, let me ask you this - have you ever wondered if computers actually ruin the life someonehas? Well, people who use computers are drown into them, and they ignore the necessary physical activities one can get from being outside. Also, people who spend their time infront of a computer screen don't inteact as much with friends and family as they nirmally would. Also, one major threat that teens and children face while on the internet are people who try to talk to them online and could become a dnager to the children. In order to help the wee-being of people, we need to realize the negative effects of computers! If oyu were to talk in the park or even visit a field, you would most likely someone enjoying the outdoorss. When I say that @CAPS1 mean like playing soccer or fotbol, or playing frisbee, @CAPS2 who do this rather than sit inside staring ata computer, help their body stay healthy. When you are on the computer, no healthy activity is involved. Would you rather see yourself healthy and active or lazy and sluggish? Well. when the summertime comes, my friends and I usually go to the feild to play a game of soccer. Also, we sometimes go to the beach and enjoy the cool, freshing water in the pool. Not to mentio, we even find activities to do in the cold, freezing winter such as sledding nad snowboarding. @CAPS2 need tog et out and chair, pry their eyes from the computer screen and go out and smell the fresh air. The feeling of being outside will raise your spirits and sgift you from a person in a trance to a person that feels alive! Also . ahve you ever gone gone home and just retreat to your room for some quite? Then you decide to go on the computer to get away from your troubles. ""@CAPS3 is ready, a family member informs you; however, you don't respond because you enjoy the computer so much. Computers interfer with your connection to family members and friends. In addition, many people sit in a tence like state while at the computer, blocking out any outside communication. Computers do not help families come toigether they separate them. This vcreates and unhealthy family, which is bad because people need to have a strong connection with family. Studies show that the average time a person spends on the computer is five hours! This pretty much takes up a lot of time, so families can't spend time with one another. One important problem that children and teens face are @CAPS2 oover the intenet are people known as ""child predators."" @CAPS4 people usually seek to hurt a child by getting information out of them and meeting them. Research shows that @PERCENT1 of children encounter @CAPS4 ""child predators; would you want to see your child be hurt by @CAPS4 horrible people? Computers are the reason, a with the internet for @CAPS4 accurances. Children and teens need to be protected from this major threat! In conclusion, computers have negative effects on people and thier lives. First, they don't allow people to be active and go outside. " 5 5 10 +1315 1 "Dear @CAPS1, @CAPS2 this ever happend to you? ""@PERSON3, did you do your research?"" ""@CAPS3, my computer crashed."" ""@PERSON1 did you practice typing @TIME1."" "" @CAPS3, my computer crashed."" "" @CAPS5, why weren't you online @TIME1? I really needed that sales report!"" ""I'm sorry @PERSON2, my computer crashed."" @CAPS6 it @CAPS2, you have realized that computers do benefit people. Whether its doing a class project, practicing for a computers class or exchanging buisness ideas, computers are a big help to society. First of all computers are a big help when it comes to a computer class at your school. There might be a certain speed that a person types and to pass the class, and the teacher could assign practice on your own home computer. It is a fact that @PERCENT1 of kids that have some kind of personal ocmputer at home get @CAPS7 A's in their computer class. I can back that up as well. In my computers class. our teacher stresses the importance of practicing at home to get your typing speed a little higher. Every @TIME1 I would practice but one @TIME1 my computer crashed, and I could not practice for the whole work with my luch the final exam @CAPS2 on @DATE1 instead of getting a @CAPS8 or A, I got a @CAPS9+. I blame that grade on not having a computer at home. Secondly, computer can be used for learning @MONTH1 different things as well. Maybe on a class report you needed to write something about the traditons of @LOCATION2, @LOCATION1. Instead of running over to the library and wasting your time with a book. You could just open up your laptop and look it up on the internet. Not only does it make for less time, but @CAPS6 you look it up on the internet, you will get way more search results than @CAPS6 you search on a library derectory. In addition, by using computers, you can look up the cutomers of a foreign country, or look up programs than could help you learn a new language on computers, you can not only learn about your own country but you can learn about foreign ones. Thirdly, computers can enchance many skills that are needed in the modern buisness word, such as socialization skills communication skills, and even learning about the younger generation. @CAPS6 someone had not gone on an instant messaging program or a video chatting program. They would not make it in the world of today. The people need to learn to intract with each others, and solve problems. @CAPS6 someone is not used intracting with people, they @MONTH1 not make a good buisness man or woman. People must be able to communicate as well @CAPS6 people do not communicate with each other. We will all end up dies in the headlights. We will al be lost and will be able to run buisnesses, or hold meetings, for example I needed to plan at adore for my project group to work on a project, and so I went on my computer hoping they were online basically they never showed and so I could not work with my partners at all. I ended up doing all their work. In conclusion I hope you have absolutely coundered my opinion about the computers have on people like I said, computers can be helpful @CAPS6 comes to computer classes, researching foreigh affairs, and even communicating with others thanks again for even reading this letter." 4 5 9 +1316 1 "Dear local newspaper, Those who do support advances in technology believe that computers have a positive effect on people. I, for one agree with them. Computers are wonderful devices that allow people of all ages to learn about the world and it's people. It allows people to talk to family members that live far away, freinds, or sometimes buisness associates. Technology.. also provides education. Don't you think socializing, and learning are two very important aspects of everyday people? Learning new things can only be interesting if you can actually see them. Books can be helpful defending on when it was made. Internet websites can gives you pictures uploads almost every week. Therefore you know where you want to book your next visit. Yes books can give you tons of information, but not as much as the thousands of websites there are out there right this minute. Want to learn how to speak spanish look it up, fast and easy on the internet. No need to look and look a hundreds of books just to get one little fact. Throughout everything you do in a day chatting with friends is a good way to relax and have fun. Whether it's a close friend or a co-worker. There are now several ways to talk to friends, phones, texting, instant messaging, and even video chat! Yes it @MONTH1 cause time away from family, but you can easily say goodbye to the friend and talk to them later. Finally learning is a huge deal with people today. Well with this, advanced technology we have found ways to educate students in a fun way. Websites that are colorful and fun can teach kids how to multiply and read. About @PERCENT1 of children are more attached to colorful objects than books with words in them. So to all parents and guardians computers arent all that bad, they're actually very good. " 5 4 9 +1317 1 "Dear local Newspaper, @CAPS1 you love computers but fear that you or loved ones spend way to much time on them? If so, then maybe we should @CAPS1 something. Toomany people have issues with their vision due to starring at computers to long. Also, people miss out on other outdoor activities as well. Finally, if people are working off of computers for their job then there missing out on same of the other important things in life such as, interacting with family and friends, enjoying the outdoors, or just simply spending time with their close ones. Now, are you for or against this descison of people getting ""hooked"" on computers? In my opinion people should be enjoying things and not spend most of their time on computers. Since people are so dependent on computers, sometimes working form one can hurt your vision. The bright white computer screen filled with all those e-mails can really affect your vision. I know my dad always gets headaches and his vision isn't the best thing when it comes to him working on a computer all day. Being indoors and on a computer all day long makes you really miss the outdoor activites that their are. Things such as sports, nature, riding a bike and many other activities are missed out because of being on a computer all day. Only fun and energized people get out and get active. Last but not least, @CAPS1 you enjoy spending time with the ones you love but seem to busy because your on the computer all day? If so then get up and go have fun! Take the wife and kids on a hike or go and ride a bike, its awesome excersise for you, family and friends and its actually fun! So, its now or never. @CAPS1 you want to be at home on a computer all day or @CAPS1 you want to be high energized and spending quality time with family and friends? Most impotantly @CAPS1 you want to be energized and healthy with no vision problems and stop those awful headaches? Well, without a if you get up and get active it will be the best decision you will make! So, get up, grab the kids and get going on your new and energized, pain free life." 4 4 8 +1318 1 "Dear editor, I agree with having computers in our homes. I think that computers are good because of these reason. The computer has a-lot of information that you can look up. Also the computer can save a-lot of important things you need. Then you can comunicate with people far away. I think that a computer is a really good thing becouse you can look up varius things like something about someones life that way important. You can look up a website that tells you about a word or a car that you need to learn about for school or work. You can look up something that happed a long time ago @NUM1 or @DATE1 that was a. Then you could look up a your family tree and send out who you are routed to one how was or family in the past time, you could look up your book account or your e-mail on the computer to. So this is one reason that I think a computer is good for. Another reason why I would think that a computer is a good thing for anyone it can save a-lot of important things. Some you could save important from your past. Also you need save your reports for your school or work. Then you can save pictures from when you you on occation. You could favorite websites to your favorites so you can go to it any time you want to. This is another reason why I think computers are a good thing. One last reason why I think that computers are a good thing is because you can comunicate with people far away. You can have family that just went on and you can keep in touch with them through your e-mail, myspace, facebok, ect. You could vidio chat with your friends or family that lives in a diffrent place. You could go in chats with your co-workers or your boss for a meeting. This is anothe reason why I think computers are a good thing. So as you can see this is why I think computers are a good thing because of you can look up things, how you can save important things also because you can go and comunicate with your friends. So this is why I think computers are a good thing." 4 4 8 +1319 1 "Dear local newspaper, @CAPS1 opinion on the effect of computers are that, it depends on how much you use the computer. But I think the computer has a possitive effect on people. Why because it has made us kids homework easier to do, and fun sites you can check out. Even for adults when they need to look up something important they can automatically find it in the computer. First reason why I think the computer has a positive effect on people is because it makes @CAPS1 homework easier, instead of getting it from a book I can get it from @CAPS1 computer. Trust me it's much easier than reading all those types of books when you have a computer. Then you can just type in what you want and it would automatically pop up for you. For example, when you have an essay to right about @PERSON1 @LOCATION1. All you have to to is go to @CAPS2.com and all types of past @CAPS2 would show up. Then you go to search and put in @LOCATION1 then all this @CAPS2 of him comes out. So you get the right information that's an easy A+ for you. Second reason why I think the computer has a positive effect on people is all the sites you can go on and play games or go on youtube, or myspace. It's alot of things you can do on a computer to have some fun. For, example, say you don'@CAPS3 want to play your game or watch @CAPS3.V, or go outside. What do you do, get on your computer. So you can check your myspace page or watch funny videos or maybe talk to some of your friends online. Think about it, you can'@CAPS3 do none of those things on your @CAPS3.V or your game and especially not outside so that's why I think a computer has a positive effect on people. Lastly, I think the computer has a positive effect on people because even adults like to get on computers. Half of every adults job has an computer that they have to use either to cash a check on a computer or teachers to put in grades and scientist to look up different experiments. For example a teacher alway's have to use their computer to put in grades or see what us kids need help on or how far we got and how far behind we are. So it makes it easy on adults as well. In conclusion, those were the reasons why I think computers has a positive effect on people." 5 4 9 +1320 1 "Dear @CAPS1 of the @LOCATION1, @CAPS2, a majority of the @ORGANIZATION1 population will use any type of computer at least once a day. Our society has been around computers so often that some peole will find it hard to even live without them. Computers have become something that people depend on. This, however, is something to take as a concern. when people are dependent on computers too much, they loose valuble skills that the once possesed and they spend less time, outside exercising while also loossing touch with famly and friends. It has become near that computers have become along part of peoples lives. Computers posses the ability to do certain human tasks that seem hard for us to do. Before the computer age, it was a lot more difficult to find information on a topic or place. We used to have to use encyclopedias or find books on those topics. Sometimes we would even have to travel to a place and learn about it. Today, however, people use technology to find this information. You @MONTH1 be thinking, "" @CAPS3, how is this a bad thing?"". The reason it is a problem is because people have begun to loose the ability to use books like encylopedias and atleses or even simmple maps. Once, most of the population could use these tools to help find their way through information or a place. I know from experienc, that I can barley look at a map and find where I am. We have become too dependent on @CAPS4's and computers, which in turn makes us forget valuble information. What would happen if someone got lost and they didn't have a working @CAPS4 or signal on their phones. They would get lost and not know how to read a map. As you can see the human population has because too dependent on computers. Additionally, people all around the world have become addicted to the internet. Facebook, @CAPS6 and even @CAPS7 baseball have become an addicting activity that people consume all of their time with. When people begin to spend hte majority of their time on these websites, they will in turn get less excersise, and become more distant from family and friends. Mostly teenagers have this problem. If you took a survay of the number of students who have a facebook account or @CAPS6, you would probably get the majority. Having an account like this is said to be addicting. Students, parents and everyone in between will find troubles later on because of this. America is one of the leading nations with obesity. Has anyone stopped to think that maybe people spend too much time on these websites to get any excersise? If the internet wasn't such a big thing it is now, I bet you there would be less overweight people. but not only do people become overweight, they will end up more and more distant from family and friends. My own sister spends so much time on her laptop that my parents had to take it away. Once, the only way for us to really talk to her through facebook. As you can see, computers can be a dangerous thing. think of all the people who you know that spend multiple hours on the computer. You can probably thnks of quiet a few. Computers are an addicting thing that can cause less excersising and less communication which is proven to support a healthy life style. Also when people use computers too much, they loose valueble skills. Remember this next time you are someone you know sits down at a computer for a long time. You can help them." 5 6 11 +1321 1 "Dear newspaper readers, @CAPS1 this! Sitting at home on the couch eating a bag of potato chips. The @CAPS2 shows a beautiful picture of the @LOCATION1 you can almost feel the rain falling on you, you really want to learn more about it. All of a sudden you watch the remote fall to the ground you hand eye coordination is so bad you totally miss it when you try to grab it. On top of that, you remember you were supposed to meet your sister today who you seen for years but you cant! if you had a computer you would be to learn about more places and people, it would improve your hand eye coordination, and you could interact with people without having time to meet them! Computers definitely have good effects on people! First, computers help to improve hand-eye coordination. It is a fact that people who own one or more computers in a household have better hand-eye coordination than people without computers! Dont you want good hand-eye coordination too? As a matter of fact, my friend @PERSON4 had the worst hand-eye coordination in our school, now that her parents have bought her a computer, she is a lot quicker and definitely has better hand-eye coordination. She said that just looking at the screen and she wanted to go helped a lot. Also, computer time can states that computers have been proven to improve hand-eye coordination in the course of a year. that sounds pretty simple to me! Next, computers also allow people to learn about other faraway places and people. Local middle school teacher, @PERSON2, uses computers to teach her students about the @CAPS3 culture and geography. That sounds a lot more interesting than just talking! My cousins saw an article about @LOCATION3 once and they thought it was amazing they learned a lot about the culture there and actually took a trip there! Furthermore, vacations.com says that computers are the #@NUM1 cause of people traveling, because they see pictures and articles about places. You can learn about any place you want on a computer, doesnt that sound nice? Im sure there is one place youve always wanted to learn about! Finally, computer allow people to interact with other people around the world You can talk with your long lost friend who lives in @LOCATION2 just by the click to the mouse,(send). In a recent study, over @PERCENT1 of people just talk online to their friends rather than going out to meet them. How convenient! Also, expert computer teacher, @PERSON1, says, Computers are geat inf you can't meet someone, you just talk online. Have you ever needed to cancel a meeting? Computer are really beneficial to busy people. Now readers, @CAPS1, your sitting on that same couch you look at the @CAPS2 to see @LOCATION1, you quickly type it into your laptop and an article right in front of you read more about it learning something new in every paragraph. All of a sudden you lose your grip, but you catch your laptop just in time, what hand-eye coordination! Then you remember you were supposed to meet you sister @PERSON3, but you have a hair appointment. You quickly tell her via computer you cant meet her. She says its alright and you guys keep chatting it all worked out! Its so simple! Computers teach hand-eye coordination, let you learn about more places, and interact with more people. So what are you doing readers? Get out there and get a computer." 5 4 9 +1322 1 "Dear local newspaper, @CAPS1 do you feel about the advantages and disadvantages of owning a computer? I think that computer help in many different ways. Computers teach hand-eye cordination, helps us learn, and we can even talk online with friends and family. Do you ever think about @CAPS1 you computer can help you phisicly? Many parents state that, ""@CAPS2 spend to much time on the computer!"" but what they don't know is that the computer is teaching them hand-eye cordination. Parents argue that kids wagh more because they sit inside on the computer, but if they do sertain things to limit the @CAPS2 like only goind on sertain games, limiting there time on the computer, or making them play outside the same amount of time they were on the computer the kids could be learning while still staying fit. This is why a computer could be a way important part of a childs life if used properly. What is you method of learning? Maybe you read books, go to school or even watch @CAPS3. But what if you arn't at school, or have any books around? What if your @CAPS3 isn't telling you what yo need to know? Well, with a computer you can look up almost anything with just few clicks of a button. If you don't have time to take a trip to you local library to a book, @CAPS1 would you learn? As teen who attends school I know that I would not be able to do a lot of my school work and projects without my computer. A lot of the at home jobs today require computers, and without the computers the job would not be getting done. This is why I think computers benifit our society and knowledge. Does everyone you know live in one are? Probably not this is why websites like @CAPS5 and @CAPS6 are getting more and more members each day. Ther internet helps us keep intuch with relatives friends and ever helps us meet new people. I know that the internet helps me heep in tuch with old friends." 5 4 9 +1323 1 "Dear, @CAPS1-@ORGANIZATION1 Computers... they are sometimes bad and sometimes good they're like people. Computers are helpful on finding information, making your work less difficult. But at the same time there not so healthy to you and your family. Computers have so much information that the news paper in the future will no longer be known. Newspaper will no longer be thrown at your front porch. Because of computers instead of getting info of what happen yesterday in what area you live with the computer you can find out what intersting things happen yesterday in the whole world. But thanks to computers life is one step easier if someone had a science project. About as an example cells and with that computer it will help a lot more than you think no need to write all slopy just type of cell's were you can find in the internet, print done it just makes life way easier than just writing drawing finding info of cells in book that waste good time to go outside and play with friends and family. Computer like I said are sometimes bad like people and it also like a drug. Because look at computers when people go on website like, myspace, twitter, facebook, communicating website or game website, theres whay to much to name. Its a drug cause you to stay on it day to night you'll get stuck to it and can't get enough of it and some people won't stop and it hurts there family, friend and especially health, like drugs they cause all the same thing. I think I proved my point of why computers are sometimes bad and sometimes good like people." 4 4 8 +1324 1 "Dear local Newspaper, I think people using a computer has a effect. using a computer can help people in many ways. You can talk to people world wide, it helps you stay organized, and you can create very useful things like a or a power point using a computer. Talking to people world wide can be a very useful thing. Say that you have family members that live in @LOCATION1 or @LOCATION2 you can keep in touch with them by e-mail or video chat. Also, if there is a national and nedds to talk to the other, governers around the world for advices help he can do that quickly and easily. Using a computer can also help you stay organized. For example my uncle helps file takes computer to make sure all of the files get saved and they are in the light places. Imagine all of the papers and space he would use if he had to do by hand or didnt use a computer. Computers also help teachers. Teachers enter grades, e-mail parents, and even create test or quizes and they know it will be nice and organized in the computer files instead of in paper files on their desk. Speaking of quizzes that teachers make on the computer, they can also make alot of other things like power points. Power points can help them put alot of information on the screen and it helps the students learn, which is a positive effect. If you had a small business that just started out you can make a brochure to help advertising. Lastily, you can go on microsoft excel and make a schedule that can help your employees know who has to work when, or students can know what class they have to be in at what time. In conclusion, computers are very helpful in everyday for alot of different people. Talking to worldwide can help you stay in, so you dont lose connection with your. They also have effect they help business people stay organized. Lastly, they can help teachers create test or powerpoints which helps kids learn. So in all, I would have to agree that computers have a positive effect on society. Also, doesn't typeing your newspaper articles make it more organized and quicker to print them?" 4 4 8 +1325 1 "Dear Local Newspaper, @ORGANIZATION1 has been a discussion around the @LOCATION1 for decades now. People cannot agree on whether computers are a good privelage to the society or just bumping it down year after year. I think computers do have a positive effect on people. This is because they teach hand-eye coordination, give them knowlege about cultures around the world, and allow people to communicate with one another. Do you think the downsides really outweigh these positives? Hand-eye coordination is not something you are born with. You gain it as you get older and acheive practive. Computers help with this goal. ""@PERCENT1 of people who go on the @ORGANIZATION1 frequently, have been horrible at catching a baseball before going on the @ORGANIZATION1, and after have caught every time."" says biologist @PERSON1. And it not only helps with baseball, but with other sports such as juggling, golf or tennis. If you get very good at these sports, you can play them for fun, or even as a proffessional. Who knew that playing on the @ORGANIZATION1 could get you so far in life?! Did you know, according to ""Time"" magazine, that people who go on the @ORGANIZATION1 are better able to focus on tasks, such as schoolwork, because it enables your hands and eyes to work together as one? And everyone knows that if you get good grades in school, almost any job you could be qualified in? Then, you can earn a good amount of money, and live your dream life!! Oh, great another @NUM1 hour day of school. Hhmm. What do I have first block? @LOCATION3 history. What? Yes! We're doing a culture project! That means I can easily go on the @ORGANIZATION1 and find out great things about what place I'm assigned. That's another up-put about computers. Easy access to tons of useful information. I have cheerleading everyday after school until @NUM2. If I have a project, I don't have hours and hours to look in books and find out what I need to know. Computers allow me to do my sport and still get a good grade in school. @PERCENT2 of people use computers to do their informational work about faraway places. It is faster and more accurate. You could just search through your bookshelf to find an almanac. But once you find it, you would need to check the copyright. Hopefully it's recent. If not, you're in trouble. Would you feel like prying through more shelves to be acccurate? Facebook, @CAPS1, @CAPS2. All new ways to communicate with people. Just another useful effect on people. Forgot to write down your homework? Hopefully your friend didn't and you can just ask them. ""@PERCENT3 of people don't chat with others online."" says @LOCATION2 @ORGANIZATION1 expert. Most of it has to be for some reason or another. Such as homework, what happened that day, or how they haven't seen eachother in forever. Don't you chat with people online? Trust me, it can be a gradesaver. Maybe this will help you conclude that computers give a positive effect on society because of handeye coordination, information, and chatting. What would we do without them?" 5 5 10 +1326 1 "Dear trained readers, @CAPS1't you agree that more and more people use computers. Well I @CAPS2 because it gives us the information we want to see. Recently it has been brought to my attention that some people agree that some people @CAPS3 themselves don't really use computers. Without a dout I firmly believe that people that dont use computers should start to use them. but I can understand why same people don't use computers. Maybe they dont know how to use one have better things to @CAPS2, or can't afford one. First of @CAPS5, they dont know how to use one. I remember when my friend was over and I was on a computer. and he @CAPS4 ""@CAPS2 you know that some people don't know how to use an computer?"" And I @CAPS4 ""@CAPS3 who?"" the @CAPS4 ""@CAPS3 me, I dont know to use one."" I @CAPS4 well I'll teach you. Since then @CAPS5 my friend does is go on the computer. One day he says to me because of I want to work with computers. this is one of my reasons why people don't use computers. Second of @CAPS5, have better things to @CAPS2. @MONTH1 be someone has a game. for example, I mostly have how time to go on the computer. Usually I have a basketball game or practice I get home from practice and feel exhausled, @CAPS5 I want to @CAPS2 is go to @CAPS6. why parents come have not wanting to @CAPS2 anything. I'll tell you why. Because @CAPS5 that haved They @CAPS2 @CAPS5 day. This is another one of my reasons why people dont use computers. Third of @CAPS5 can't afford one. Some people dont have a lot of money to buy a computer. They have to say it. so they can live in a house. When parent's children asle for something parents shoudn't buy it. They buy it so you dont feel hurt. When I'm a @CAPS7 im going to make sure I have enough money to buy it. If not then I guess that child is out of luck. So dont be going where bragging your computer because some can't afford one. This is my last reason why people don't use computers. this is why some people don't use computers now in days. Because they dont know how to use one, have something better to @CAPS2 and can't afford one. By the way; @PERCENT1 of the pupils of @ORGANIZATION1 dont have computers." 4 4 8 +1327 1 "Dear @CAPS1, I am writing to express my opinion on computers benefit to society. I believe that computers are very useful tools for learning and communication, but people today over use that power. You know what I mean @NUM1 gamers, @CAPS2 and @CAPS3 addicts. Or those who will do anything just to spend time on the computer. People like the @CAPS4 do not spend much time with family members, or friends, or even just outside. They do not get enough exercise, and frankly, abusing computers is not good for your life, physically or socially. Some people are working all day, leaving early in the morning and getting back late, so that they rarely spend time with those they love. But if you are hooked on the computer, as so many of us are, you @MONTH1 just not spend enough time with family and friends. Using a computer isn't exactly a social thing. One person with a mouse, a keyboard, and a monitor. You @MONTH1 say ""@CAPS5, but there are also online social networks."" @CAPS5, but how often do you even see those people in real life? Computers can take precious time away from you that you could be sharing with your family and friends. That certainly does not benefit society. A major fault in computers is that you have to be indoors. So you cannot be online chatting, or playing a game, or checking your email, outside while enjoying the beauty of the outdoors. Sure you could use a laptop outside but are you really enjoying the outdoors? Computers and outdoors go together like chocolate milk and fillet mignon - not well. That is the reason why pine tree's don't have outlets (although now you never know what they'll do next). Another side effect - that goes allong with the aforementioned statement about computers and outdoors - of computers is the lack of exercise. Once again, it is rather difficult to use a computer and jump rope at the same time. When you live as a computer vegetable, your not getting enough exercise as you could or would be. Another reason computers could lower your quality of life. Now, really, if you use the computer sparingly, and only when you needed to, or when it is nessecary you would really have none at these ""side effects."" But face it, the ruth is, computers can be addicting. Wether it's waiting for a friend to come online or your trying to get to level @NUM2 of ""@CAPS7 @CAPS8"", they can get you hooked. The idea of this article is not to prevent you from using computers, but to make sure you use them like you eat double fudge brownies with walnuts and cream cheese frosting-springly. So, now you know, computers when used to much, at obsesive amounts, are similar to drugs in the way that they are so addicting. As long as you use them correctly, they are a very, very valuable tool to be used, but over used, can be problem causing, and even prevent you from spending time with family and friends, getting exercise and even spending time outdoors. I know you certainly will agree." 5 6 11 +1328 1 "I believe computers are a good thing for several reasons. Three reasons why computers are good is that you communicate with other people. You can also use them to meet new people. Finally you can also use them for planning. My first reason why computers are good is that you communicate with other people. My parents use e-mail all the time. They taly to my grandparents, then friends, and even use it to arrange events with other people. My use it when people are hurt and I know some people use it to learn about magazine subscription and other thing to buy. My favorite thing is that my parents use e-mail to talk with my grandparents about my birthday presents. My second reason why computers are a good thing to have is that you can use them to meet new people. I know there are alot of websites that match you with someone based on what you like and do. You can also use e-mail to talk to friends and they @MONTH1 want to see you again and you can meet people that way. Therea are thousands of ways to meet new people. You can use chat websites or you can use sites like facebook or myspace. My third and final reason why computers are good is that you can use them to plan a vacation or move dining reservations. For example me and my family went on vacation to @LOCATION1, and my mom made all the reservations from our computer at home. My parents aren't the only ones. Many people travel dening vacation, and propbably @NUM1 out of every @NUM2 people use a computer to reserve hotels. I also wanted to take you to the other side without computers. If we don't have computers we would have do send mail through the post office and by the time that gets to your house someone could have new baby could have been born. Plus we would also find up doing bills and taxes without computer software. My parents life and my life would be very hectic if we didn't have computers. Once again I believe computers are good and that more than half of america use them. I believe this because you can use them to talk to other family that @MONTH1 be far away. You can meet new people through online dating services. Then theres the always helpful panning part, so you go online and reserve a hotel on dinner at a resturaunt. Plus if we didn't have computers we would have to do bills and taxes the old fashioned. My where you add up and subtract and divide. It's alot less words if you use a computer." 4 4 8 +1329 1 "Dear local newspaper, I believe computers doesn't benefit society. I feel this way being that lack of email skills, no exercising, and its addicting. Read on for further explaing. Firstly, spending hours and hars on the computer gives you no social skills what on ever. You could think before you reply and most people online talk or write way differently there then in person. People could act like someone else. Online you could erase what you wrote but in person you can't. Thats way you simply can't gain social skills sending all this time talking online. Next, you get no exercises. On a nice beautiful @DATE1 you'll be inside on the computer when you could be getting exercise. Being on line sitting down doing nothing just talking makes you lazy. When you're older you'll have to be writing. You can't just good all these long house on the computer. Furthermore, you should have your time for on the computer and exercising. Finally, its addicting some people could good hours and hours on the computer looking up all these videos. Seven out of ten teenagers rather be inside in the computer talking to people rather then meeting new people elsewhere. I think parents should restrict their children's time to be on computers. All this time with this fun could be spent doing studying or something to help you out in the future. In conclusion, i believe computers doesn't benefit society. I feel this way being lack of social skills, no exercise, and addicting. I think some people shold limit their time another computer and expand their time doing something important." 4 3 7 +1330 1 "Dear editor of the @LOCATION1, @CAPS1 you know @PERCENT1 of people in @LOCATION3 own computers! Could you imagine a life without them? Computer do benifit society. I cant even remember the last time I went a day without a computer. All of this talk about computer being bad for society really got thinking. There is no way possible that computers are bad. for example computers are good for motor skills and what about school work computers help a lot when you forget your homework log at school and lastly sociability! I don't know about you but I couldn't live without computers! Computers teach hand-eye coordination! which we all know we need to play sports! Also with all the typing you do there is definatly some exercise for your wrists! I should know that they do because I woke both my wrists, at the same time and when I went to rehab they told me I should try getting my wrists back to normal by typing and having of calcium but that's another story. Computers are also great for school say that you forget your homework log at school so you don't know what you had for homework well you could call a friend but wouldn't adjust be easier to go online to the teachers webpage? teachers always have there homeworks listed on a school web page. And no you realize you forgot your mathbook to! have no fear the online textbook is here! and thats a lot easier then going back to the school to get it! don't you think? Lastly when you have a big project you can do research on anything and everything in the world! from ants to @LOCATION2 its all there. Here's a big benifit to society for you on all of the social networking sites such as facebook myspace and so man more arn't you able to leave comments on friends profiles or even chat with them! Which brings me to tm my next topics chatting on the computer! There is @CAPS2 and like I said before you can even chat on social networking sites. And lets say that you arn't able to watch the news cant you go online and check that to! There are so many social things to do on the computer and those are just some. So I hope those @PERCENT1 of people and even people that don't own computers are on my side. So we can prove that computers are good for motor skills, school work and even social networking. So please be on my side so we can show the public that computers are social!" 4 4 8 +1331 1 "Computers were built to help the people make tasks easier and quicker. Since then, they have been updated over and over untill what they are today. Computers are a part of most peoples everydaylives, and essential to most bussiness.But the common question in our society is, are computers really benefitting us? My answer is yes. Computers do many things for us. They teach us hand-eye coordinatin, give us the ability to research effectivly, and recently, became a great way of communication, @CAPS1's are definately benefitting us. One reason why computers help us is by teaching hand-eye coordination. In a magazine I read, one expect, (@PERSON1) said that leading to type without looking is a great way of improving reflexes. The speed that you type is improved with practice. Another way it improves hand-eye coordination is by learning to click and react to different things effectively. I often on being ammused by playing games on the computer. These games usually are hard, but with my improving hand-eye coordination, I am learning how to play these games well. My father always tells me to learn my way through a computer because they are our future, soon, mostly everything will be done by them with the improving technokolgy, it is impossible for it not to be benificial to our society. Our home computers have been great at teaching me thing like hand-eye coordination. Another reason why computers are great is by making that tough history paper, just a click away. My garndfather always tells me how easy I have it. Instead of going to the @CAPS2 and having to pick out a book, I just go to google and have an entire search engine infront of me. When we go into highschool we will need a computer to suceed. To keep our essays organized, our research effective, and the clear to read typing right infront of us. My brother tells me that having a computer is the best investment has ever made. Last year, we had a science assignment to figure out how our heart beats faster. This way very easy considering I typed it in and had hundreds of ways to increase my pulse rate. Computers have changed the way we research and finish school works. The last reason why computers are fantastic is beacuse they make communication just a click away. A couple weeks ago, my coach emailed us that our gametime has changed. This doesn't seem like a big thing, but without his @CAPS1, we would've missed the game. My cousin @CAPS3 is from @LOCATION1. Me and him meet only once a year. With that limited time, we can't really get out what we need to. Recently, i bought a webcam and have been chatting with him on it every week. It is almost like he's with me. All the girls in our school can't get enough of me. So I get home after sports, go on, and theres always enough of me to go around. Webcamming is a great way of communication. With all the new computer going on sale and new appliances coming no one knows when it will stop. Well, the question still lingere, are computers benificial to our society? The answer @MONTH1 never come about, but at least for me, improving hand-eye, researching being a breeze, and communication just waiting for me is a pretty sweet deal. So for now, I stand by the opinion that computers are great, and extremely useful to everyone." 5 4 9 +1332 1 "Dear @CAPS1, I am writing to you to let you know my opinion on computers and technologies. Computers have now become part of our society and culture and is very important by following reasons. One computers let you surf online anytime you want. Two, computers allow people talk online. First reason why computers are so critical in our culture is that computers let you surf online anywhere and anytime you want. This is very convenient. What if you live far away from the nearest library? When you have to write a research paper? Jane lives @NUM1 miles away from her town library. Her mother could drive her ther, but what if she wasn't at home or driving someone else to a doctor's appointment? This is when computers come in handy. Jane can just simply go online and do the research! Not only that but also, ""www.internetsocool.gov"" states that information you can find in a regular library is about @NUM2 of information you can find online. Secondly, computers let you talk with people both faraway and nearby online and videochat. This is very useful for me. Since I live by myself in @LOCATION1, I miss my family a lot. Although with internet, I can talk to my family whenever I want! Also, you can video chat with your lab partner to discuss how you can make the lab report better! @PERSON1, the author of ""@CAPS2 @CAPS3"" also states in his book that over @NUM3 million people use internet to videochat for educational purposes. In conclusion, ivideochat @MONTH1 sound like something to do for lark, but it is actually used for many good purposes. On the other hand, some people say that computers are bad. Some say that people are spending too much time on their computers and less time exercising and spending time their family. Although, ""The @DATE1 survey of what people do,"" states that @PERCENT1 of people who use computers are healthy both physically and emotionally. Just because we use computers to make our life easier, it does not mean that we don't value spending time with family. In conclusion in our culture because are very crucial in our culture because it can let you surf online and help you interact with people who live faraway." 5 4 9 +1333 1 "Do you think computers are handy? I do believe they are very handy. Computers offer many things like Online shopping, @CAPS1 and even @CAPS2.V. Online shopping can be very helpful. Say you don@CAPS2 have a car. Well you can go online and buy whatever you need at the store. People is a function that @CAPS3 and @CAPS4 does where you order your @CAPS5 online and they drop it off. Say you need clothes or shoes or maybe even games. You can go online find what you want click buy and chose your shipping. That is why I think computers are helpful. Chatting on the computer is great. Now facebook, @CAPS6 and @CAPS7 are the social networking sites that rate the @CAPS15. On @CAPS6 you can follow famous people like @PERSON1 the @CAPS9 @CAPS10 @CAPS11 receicer. Facebook has fan pages for famous people. @CAPS7 might actually have famous people accounts. Chatting become something that almost @PERCENT1 of the @CAPS13 uses. you @MONTH1 believe its pointless but almost the whole @CAPS13 uses it. You can also use webcam @CAPS1 where you can actually see the person talking to you and they own see you. @CAPS1 also is good if your always on the go and you cant talk on the phone then you send messages in @CAPS1. this is why I find @CAPS1 as such a neccessity. @CAPS17 is a new thing that has recently hit the @CAPS13 @CAPS11 @CAPS15. there are sites such as @LOCATION1 can or @CAPS16 @CAPS17. Also you can buy @ORGANIZATION1 league @CAPS18 or @ORGANIZATION2. @CAPS17 and you can watch live sports games from your computer. This is also easier when maybe your in the car for a long road trip then you turn on your laptop and watch any show you @MONTH1 went @CAPS17 on the go is technology at its higher point. Thats why computers are so convienient. So now you have read how helpful, how its a neccessity, and the computer is convienient. Now one day if you need one of these things remember this and check out the hottest sites on the @CAPS15." 4 4 8 +1334 1 "Dear @ORGANIZATION1, Computers are an amazing piece of technology, but some people are beginning to abuse the @CAPS2. There are many benefits to having a computer. In my opinion I think that computers help people out a lot such as looking up directions or even chatting with some old friends. But many People are abusing the @CAPS2 and not @CAPS1 when to get off. The @CAPS2 is a very fun thing to be on but when your on it for too long, you miss out on family acvivitys, hanging out with friends etc. I think that there should be a time limit for everyone on the computer. If we had something that would shut off othe computer but save everything you were doing, People would go out more and be more active. Eventhough people @MONTH1 be learning about things on the computer, you have to know when to get off. Now on the @CAPS2 there are websites where you can watch exercize videos or if you even want to buy some exercize equiptment etc. The @CAPS2 can be a pretty handy thing but you dont want to be on it for long periods of time. I believe that having a computer can be a very cool thing to have and very useful when you need it. But there should be time limits for how long people stay on the computer." 4 4 8 +1335 1 "Dear Local news paper @CAPS1 name is @PERSON1, I'am part of the middle community. I read or the local newspaper that lots of people use computers and that not everyone agrees that this benefits society. In @CAPS1 opinion this benefits society in many ways because you get to work anywere you want, you could connect with family, and because it gives you the ability to learn about other places and people. You can get to work anywere because now in this days a cellphone, and ipod's come's with internet and with many things that you need to work that you have in a computer. We also have the laptop's that are to take anywere. You also got many programs on a computer to connect with family on others states or city's as in @LOCATION2, @LOCATION3, @CAPS2 @CAPS3 and @LOCATION1. Last, it also gives you the abiity of learning about other places, and people by photos, information, and websites. Like when it says the trategies that had happened in other states like the one that happened in @LOCATION4. This is @CAPS1 opinion why computers are benefit for society. Thanks for reading them and have a nice day." 3 4 7 +1336 1 "Dear local newspaper, A question that recently came to my attention is people are spending to much time on the computer, and if this is a good thing, I believe that computers are a good electronic item to have. I think this because, it helps people learn. Also, people can keep in touch with their friends even if they I've in a different country. In addition, it can help people or students be @CAPS1 please consider this in our newspaper. Would you like students/people to have internet and searches that can help them learn? The answer is ""yes"". Having to computers can help students to learn. They can go onto @LOCATION2 and type in any question they want to be answered. Picture this a child has a question that she wants answered, but she is embarrased to ask her parents. She can simply type the question in on her computer and get hundreds of answers. There is nobody in the world that knows everything, but there are computers that do. Computers can give you the answer to any question. When my mom was little she didn't have access to a computer all the time. @CAPS1 when she had a question she would have to ask somebody she know. If they didn't know the answer than she couldn't know the answer. If more people had computers then they would the to questions. Computers are a good way to keep in touch with people. These are @CAPS4 programs such as @CAPS2, @CAPS3, aim, ect.. My dad owns a buisness and needs to be in touch with people for seven @CAPS1 he around his iphone to talk to them by email. It helps my dad know when pappers and whos asking on what. I asked ten adults if they think everyone should have to a computer and ten out of ten said ""yes."" @CAPS4 people think that friends and family important and should stay with them every and a while. I have a friend who lives in @LOCATION1, but I cant contact her with my phone because are doesnt me and her talk on @CAPS2 all the time. @CAPS1 if people dont own phones then you can still stay in contact with computers. if they far away. Do you have perfect handwriting? The answer is probably no. People use @ORGANIZATION1 all the time because there handwriting isn't Computers help people stay clean and tidy. Computers have of folders and programs to store information you need. This all stays next all on the computer. My friend just get a computer for her office. Before she got it one hand everything and kep them all her desk in a mess. She had filled with pappers. But after she got a computer she typed everything neatly and kept all her pappers in the folders of her computer. She was @CAPS1 neat and clean that she got promoted. My friends moms changed because she got a computer. She became and cleaner. Picture this you are overwhelmed by all the papers on your desk. You dont know what papper is what. Well if you had a computer you could type eerything and keep them in your computer files. also @PERCENT1 of adults staying is good. I know you the local newspaper, have a very hard job and decision to make. I beileve that computers are good and helpful. Because they can help people find information they need. Also, they can keep people in touch with buisness workers, friend, students, family, ect. In addition, computers can help people get neat and clean. @CAPS1 please consider puting my essay in the Newspaper." 5 5 10 +1337 1 "Are people today spending to much time on computers. If so had done it affect thous. In our modern day people spend to time on computers. Both me and think that this is affecting people in many different ways. Some ways it by. Health your social life, and also your education. Spending to much time on a pc can effect your in many ways. For example exercise. The people spend all there time siting in a chair they could have a chance of gaining wait. Then you might be getting all the you need because your on the computer you might not go to to get the and veggies. Your want to just so you the computer. Social life @CAPS1, you could have with all the people you are also will them. Another big problem is education. Is you are all day on the computer anything @CAPS2 you it's not on the computer you Those are some of the resons why I think people shouldn't spend to much time on the computer." 4 4 8 +1338 1 "Dear @LOCATION1 Newspaper: I am writing to you about my opinion on the effects computers have on people. Computers have a positive affect on people because they help students as well as many others study, they allow you to access stores by shopping online and computers allow people to communicate. After reading this letter, I assure you that you will agree with me. The first reason why computers have a positive affect on people is because they help students as well as many other people study. If you have a test or quiz in @CAPS1, you can go on your computer and print out @CAPS1 practice sheets. Or if you have a vocabulary exam you can find the definitions fast and easy on the computer. In the times @ORGANIZATION1, a statistic shows that @PERCENT2 of students in the @ORGANIZATION2 find computers there best studying tool. They find it affective and fast to use. Last night, I had a test on the @CAPS3 @CAPS4 and I went online, typed in ""The @CAPS3 @CAPS4"", and found @MONTH1 helpful cites on it. It was useful and did not waste my time. Using a computer for studying is a very good reason why it positively affects people and makes them happier but their is on even greater one. Secondly, computers have a positive affect on people because it saves people time by shopping online. So many stores now allow you to purchase stock on me. it is easy .with a click of a button and saves you time driving to the stores. In @ORGANIZATION1, it showez that @PERCENT1 of @ORGANIZATION1 across the @ORGANIZATION2 said shopping online improved their lives by making it less hectic from driving from store to store. Shopping online creates a positive, less hectic life for many people around the world. Online shopping having a positive affect on people by making their lives less busy is a great reason but there is one last even greater one. The last most important reason why computers have a positive impact on people is because it allows people to communicate with each other. Communication through computers are extremely powiar. With instant messaging or email of even blackboard, a new teacher-student communication site, computers are often being used for communication. i surveyed @NUM1 kids and @NUM2 said that computers are there main source of communication. Communication through computers it has a positive affect on people in many ways like to communicate easier for work, to talk to your best friend on e-mail who just moved to @LOCATION2, or to simply send out invitations for a party to all your friends. Computers have made life easier for many through communication, making a positive effect on them. This is why communication having a positive affect on people is the most important reason. To conclude, computers have a positive effect on people because it allows them to study easier, saves people time by shopping online, and allows people to communicate. With all the ways computers help us there is no reason why they would negatively affect us. I know that you will take this into cons ideration. Computers are making our lives easier day by day and who knows what they will be able to do in the future." 4 5 9 +1339 1 "would you rather read six books to get that one recipie, or would you rather look it up in less than ten minutes? I think computers have an positive effect on people you can learn about places you want you need in minutes and you can talk to your friends inline Computers have a good effect on people because, you can learn about places you want to wish this @DATE1. For example, @PERSON5 wanted to wish @LOCATION2 this @DATE1 but when he looked online he saw how @LOCATION2 just had an earthquake so he changed his plans this @DATE1. @CAPS1, @PERSON2 said ""I wanted to go to @LOCATION3 this @DATE1 but I know about it, so I searched on google and figure thatb this @DATE1 I will go to @LOCATION3"" that is one positive thing computers effect on people because you can learn about places you want to visit in the @DATE1. Computers have a positive effect on people because you can @CAPS1 find what you need in minutes. For example. @PERSON3 was looking for a cake recipie, he was looking many cook books but find it, so he took thru his labtop and found it in under five minutes, @CAPS1, computer experts @PERSON1 said ""@CAPS2 of rooming thru books and books for information you nead why not go to the and the truxt me its much"" @CAPS3, computers have a good effect on people because you can talk to your friends online, for example, @PERSON6 said ""I moved from @CAPS4 to @LOCATION1 and I was sad to leave my bestfriend but knod how I can talk to her on @CAPS5."" @CAPS1, @PERSON4 was in bed sick and coudnt go ourside to visit his friends so he kelf intouch with them on @CAPS7. Computers have a positive effect on people because you can learn about places you want to visit this @DATE1. You can find what you need in minutes, and you can talk to your friends online just remember even computer report @PERSON1 said "" me its much easier""" 4 4 8 +1340 1 "Computers are an incredibly important part of many peoples lifestyles. They can give us wonderful facts and news that would otherwise be hard to obtain. Computers also allow people an easy way to communicate with friends and family without using a phone. Lastly computers are an incredibly useful tool for writing. One of the most beneficial parts of computers is that you can find out whats happening anywhere in the world. For instance, I could do a search engine on recent disaters and find hundreds of articles on @CAPS1 and other recent news. However you could also find out interesting facts like how many have chosen to sail around the world in the past ten years. But this is just one of the many uses a computer has. Critics @MONTH1 think that the use of computers interferes with spending time with your friends and family. But computers can actually do the opposite. There are many websites that allow you to talk safely to people. Some of those websites are facebook and chatme.com. Did you know that you can even video chat with people. It's just like youre right there with you. Incredibly, unlike calling people and using a phone using these websites is free and open to anyone. This brings me to the last point. Computers are great writing tools. They allow you to write efficiently and neatly. Also, programs liek microsoft word allow you to spell check your work. However one of the most usefull qualitus of a program like word is that it allows you to change your work and add sentences or words wherever you want. Its you can see computers are a usefull and beneficial part of society. They allow people to easily stay informed on world news. Secondly computers allow easy and safe communication between people and lastly they are usefull for writing papers such as writing prompts. I hope that by reading this, you can now see some of the many uses of computers." 4 4 8 +1341 1 "Today, wherever you go, there is technology being used. The most common, computers are widely used by a majority of people, but are computers really beneficial to society? Computers are beneficial to society because it is a way to connect with the world, a way to increase responsibility, and helpful for education. Computers are beneficial because they help people connect with the world. You can use a computer to find anything that is on the web, so you can find information about places that interest you or places that you would like to visit. According to the @ORGANIZATION1, @NUM1 out of @NUM2 people check the internet for places to @ORGANIZATION1 to before they actually go. @CAPS1, it is a way to connect with faraway friends. One of my friends moved to @LOCATION1 when we were in @NUM3 grade, but we still e-mail each other, and are still friends. The computer is @CAPS1 one of the fastest ways you can learn about current events. All you have to do is go to a news website. All of these connections will widen people's views of the world. Computers are a way to increase responsibility, too. When the people use the computer, there are many choices that they have to make, like what websites to go to and what to download or watch. Having these individual chances will help people think of what the right choice is. Even if you choose the wrong choice, you will learn from your mistake. Second, the computer is a very fragile machine and it takes a lot of to handle. For example, you can't have any liquid nearby and must not throw objects near or on the computer. Thinking of this and making sure not to damage the computer are ways to increase responsibility. Lastly, computers are beneficial because they help education. Teachers can use the computer to make lessons more interesting. For example, they can create points and presentation to providea @CAPS1, students can on what they learned at school. @CAPS1, you can make for the students, which provide them with their homework and information about the classes one of my friends once said ""@CAPS2 the I would definitely be failing"". Nobody wants to talk and a great way to present this. Lastly, if you want information on a particular school, you can just search it online and find its website. School websites have information about classes, events, and clubs. They provide the information that you need to think about going to that school in an easy, convenient way, while finding the website for the school take no more than @NUM2 minutes, actually going to that school for information can take more than just @NUM2 minutes, and even hours. According to @ORGANIZATION2, @NUM1 out of @NUM2 students choose what college to go to first by checking its website. The computer is an easy, convenient way to get information. Now, no one should be doubting the benefits of a computer. They are a connection to the world, like places, and people. They increase responsibility by giving you many choices. They help education by providing information about and for schools. This is why computers are beneficial to the society." 5 5 10 +1342 1 "Do you think people spend to much time on the computer do. I think that kids and adults spend to much time @CAPS1, twitering, doing facebook and myspace. My resons include, people should go outside more, and play with real people, and spend time with family. Most kids should go out side more for example my friend @PERSON3 spent @NUM1 hours a day! on his computer and haven went outside. Another example is my neghbor @PERSON2 spent all day! in his basement playing on his computer and haven went outside and since he hevet went outside he is terreibely the sun and he is now @NUM2 years old an dhe still dont go outside it was because he spent to much time on the computer. Secondly, people should play with real people. For example there was a kid name @CAPS2 and he allways played with vertual people an dfrends and never realy pleople and now he is so shy around real people that he wont even say one word. Another example is @CAPS3 he only had vertual frend and never a real one and he is so depress becose he never had a best frend. Thirdly you should spend time with your family. there was a named @CAPS4 and he never spent time with his family becse he was to busy writing emails and @PERSON1 says that kids who dont interact with them wont have the same benifits as kids who do. Another example there was a family who were to bisy with the computer that the kids never met the grandparents and when the grand parents passed away the kids never met them becse they would rather play on there computers. In conclution people should go outside more, play with real people, and visit there family then if you want to play on your computer then after reading all of these examples then go ahead." 4 4 8 +1343 1 "Many people use computers. Some people agrees that it benefit the society and others disagree. Some experts think people are spending too much time on the computers, and less time exercising, playing outside, and having family time. I think differently, computers help us with hand-eye coordination for jobs, stay in touch with family members and friends, and computers also help us learn about different things. Computers help us with many things but the most important is jobs. Many jobs use computers. In order to get a job using computers you need hand-eye coordination which computers teach us. Computers prepare is with skills we are going to need when we get jobs. Computers are very helpful. Computers also help us stay in touch with our family members and friends. @PERSON2 @CAPS1 of @LOCATION1 says that if we didn't have computers @CAPS2 wouldn't have been able to see her neice and nephew open their christmas presents @CAPS2 got them. @CAPS2 also wouldn't have seen her nephew take his first steps. ""Technology is wonderful"" @CAPS2 explained to me. @CAPS2 loves staying in touch with her families through computers. Computers are also help young children to old adults learn new things. Computers hold a lot of information, many people learn things they have never heard of on the internet. My younger sister @PERSON1 learned how to read on the computer. @CAPS2 is in the highest reading level you can be in, in first grade. Computers are very helpful at learning new things. Computers can do many things, they help us with getting jobs by teaching us hand-eye coordination. They can also help us keep in touch with our loved ones. Computers teach us about interesting things like faraway places and people. Computers are a wonderful thing to have in our society. Experts, their is no reason whats so ever you should be concerned with more and more people using computers, it's a good thing." 4 4 8 +1344 1 "In the world we live in now, everything is getting technilogical. In my own opinion, its a good thing. Using computers has been very helpful to our society. They give people the opportunity to research things fast and easily, they save trees, and they're a wonderful way to communicate with people. First, computers are great to use for research instead of books that waste tree. A few years ago, kids would get a school project on a certain country and the thing that would came to mind is the library. But, nowadays it's computers. Sure, of course books are very helpful, but so is the internet, plus its much faster and easier to find to find the information you're boking for. You can learn about a place before visiting it with a click of a button and learn about places far away. It really is magical. Next, using computers saves trees. With a computer we don't have to keep cutting down so many trees for books and paper. Another can now sell their books online and people are able to read them right. Honestly, there really is no reason to keep making books. Even students can do their home work, test and quizzes online! I think it's a mirical and it's so amazing to see how much our world has changed in only about @NUM1 years. Finally, computers are great to communicate with people far away. Some people have family in the war who they don't see for months or maybe years. With a computer you can get emails that get deliveres to the person right after being sent. Or you can even webcam and actually see the person face to face! It must be hard not being able to see your loved ones everyday, which is why a computer is very helpful. Even to those who have a family member away on a business trip or that live in another state/country. Computers are very helpful, especially today with everything going on in our world. With computers we can online research, save trees, and communicate with people far away. So, in my opinion computers do benefit society." 4 4 8 +1345 1 "Dear local newspaper, I agree with the people that support advances in technology. I believe computers have a positive effect on people because they can be used to learn, communicate, and entertain. My first reason why computers have a positive effect on people is because it can be educational. Many people believe computers are good for nothing. Even though they can be use for many things like research! For example, if you are a student you @MONTH1 need to do a project. Computers would be easier for you to collect research than a book. Another reason why computers are educational is because you can use them to read. You can buy virtual books that you can read right on your computer. Not only is that education but that also helps the environment because you would be saving paper. Sometimes you @MONTH1 simply be curious about something, your computer will be right their for you to use. Computers also have another positive effect on people, they can be used for communication. Nobody likes a distant family, but with a computer you can communicate with family and friends from all over the world! This effect is positive because it helps everyone stay in touch. Many people have very busy lives and don't have time in write a letter or make phone call. So, instead those people could just quickly and easily send a email no instant message to who ever they need to talk to. Some experts are concerned that people too much time on the computer and less time excercising, enjoying nature and interacting both friends and family. These experts don't realize that you can use a computer to instead with friends and family. A computer many family thing. You can watch movie as a family or multiplayes games together on the computer. on the computer is a postive effect because while doing on the computer as a family you would for example, using a computer to be entertaind is safer than doing something entertaining . Where you and your family would be to many dangers. There are various reasons why I believe computers have a positive effect on people. Computers can be used to learn, communicate, and entertain. Those are only my main reasons they are many more. And that is why I support advances in technology and behave computers have a positive effect on people." 4 4 8 +1346 1 "Dear local newspaper from my point of view, computers are good to society and to the people because they help you communicate with people in other places or with your family or friends or meet with people from other country and you can become frinds. They are also good because they help to develop cordination on your hand with your eye, and they are helpful because you can buy things online. First of all I think that people who know how to use a computer can communicate with their family in other county or meet new people who then become friends with you and you can even meet them after you know them very well. You can even talk with your family through the computers and you won't spend that much money on expensive international phone calls. Secondly the computers are helpful because they help you cordinate your hand and your eye. This helps you because if you are a kid you have a big project; You will be able to finish it on time. From your point of view you can actually se were I'm going because after you finish the project you can go play with your friends and family on the patio or backyard. The hand cordination can help you develop mentally sight. Thirdly using computers is good because it helps you buy things online, the computer can help you buy thing like a clothes, shoes, cars, house and, many others, anything you need you can buy it online. In conclusion I think people should think about using computers more often either to buy things, to meet people or to cordinate body parts don't you agree with me?" 4 4 8 +1347 1 "Dear @ORGANIZATION1, People are using computers all the time but computers help us all the time in positive ways. Computers help us look @CAPS3 information, talk to people around the world, and buy stuff from our house. In a technilogical age the possibilities are endless. I have cousin in @LOCATION1 and I talk to him through webcam @CAPS1 are more people then who talk to @CAPS1 relatives elsewhere actually almost @CAPS2 soldier talks to someone back home. Doctors even say that talking to some one backhome give a soldier more will power to survive. Everyone goes to school, so that means everyone has projecets. During projects a kid want know everything so a good way to get information is to goes on the computer and search what your looking @CAPS3. The computer has trillions of websites that people You can anything fromhow man started to the. Be a sport person and @CAPS2 one likes to get @CAPS3 free online, @CAPS1 are websites like @CAPS5 and @CAPS6 so you can. If you like that song go on @CAPS7, @ORGANIZATION2, lymewire, of any other store to and download to your @NUM1 or @CAPS8. In this time I hope you have learned more about the computer and have changed your mind. Even though @CAPS1 are bad people and bad websites doesn't mean the computers bad." 4 4 8 +1348 1 "Who would have thought computers can have effect for people. People all over learn things on the computer each day. Of cours every body learns and reds new things because of the computer. @CAPS1 is even fun stuff todo on the computer. You can pick from many different music videos and music. And @CAPS1 are many ways to chat with people like over the phone on a cell phone. But @CAPS1 are computers too , @CAPS1 are many ways to communicate with friends/family. Also @CAPS1 is myspace, facebook and @CAPS2. Those @NUM1 are websites that you can go on to take to family/friends but theres others website that you can go on. But I would also like to comment something about the computer. I understand the computers lots of fun. Sometimes you need a brake you cant stay on the computer all the time. You must that you need exercize too. You must go out and enjoy nature. You should take awaile or ride your bike. You must understand computers are good for learning but not for eeryday life. The computer is good for learning but you should also go out and got some fresh air." 3 4 7 +1349 1 "To the Newspaper, Computers are obviously needed in society. They can be used as a valuable learning tool, help communication, and teach skills that will be used for life. Students like myself of often use computers for many reasons. Our teacher also encourage us to use computers. All projects require research. For example, last week in social students I researched the amendments to the constitution. I went to @ORGANIZATION1- on the and sound a storage of information on the @NUM1 for my project on wehter capital punishment is and unusual. I found from this database that not onlt is it all lawed for that reason but the @LOCATION1 got from the international council of human rights for allowing it. Without the internet, which is instanly to carry the newest. most recent information I would have now to go find banks published recently enough carry this significant fact. It would mre costly taken over two houses just to find the same information that five minutes using a computer. The internet can millions websites and photo on a wide variety of toys and faster than any other method. As well as for research, school use computers to type papers. This moves than easier to road the teacher and provides useful tools like spell check. Also, using the internet you can access all of the communicate benefits of using computers. E-mail, @CAPS1, @CAPS2 and @CAPS3 are just @NUM2 of the commnly used websites on computers they make talking to friends and family easier and faster then ever. Last @DATE1 my friend on a business trip the was for @NUM3 weeks she missed him a lot @CAPS4 mom let @CAPS4 she was able to would have a telephone call. It consoled @CAPS4 for the @NUM4 days wasn't able to see @CAPS4 while still being amazing quick. Computers allow people to interact with other people at once even when they can't be with that person for whatever reason. This communication element is very important just like how they will help for the future. Many jobs involve the usage of a computer mastering how to use the computer before. It is needed has many advantages. If we already know how to use them we don't need to worry about learning in life. Also in the closer future computer will be used in high school and college for helping paper researching and morw it will be faster and easier for us it we have knowledge of how to do these things. Eventualy if can read the benefits are counters. As you can see, computers and the internet can any benefits iur society school can use them for many projects and learning People can talk to others virtually when it is not possible face to face finally, it can help run the future. In conclusion compare use be encouraged." 6 5 11 +1350 1 "Dear Newspaper @CAPS1, With computers being so popular right now it's easy to think that they are helpful and have a positive effect on the people that use them. However, I do do belive that computers have more harmful effects than good ones on the people they are used by. I belive this for @NUM1 reasons. One, they take away from spending time with real people, they make people get less excersis, and also they are very distracting and waste time. One reason why I don't think computers have a positive effect on people is that the time spent on the computer could be put to better use by doing things with family and friends. Now and day people are using social networking sites like @CAPS2 and @CAPS3 to talk with people far away. People can spend hours communication with someone they will never meet and completly ignore the people who care for and love them. Also communication with people online can be dangerous because the person who you are messaging might not be who they say they are. Overall, setting out and actually spending time with real people creates memories that you will cherish for the rest of your life. This feeling can never occur through the internet. Another reason why I think that computers have a bad effect on their users is that constant computer use has resulted in a lack of excersise for many people. People who use computers for many hours are just sitting still. They aren't being active. The only movement that occurs while on a computer is the tiny flick of a finger as it clicks the mouse button. This is clearly not enough excersise that is required to maintain a healthy and happy lifestyle. Studies have shown that since the invention of computers young people especially have been gretting less and less physical activity. I'm sure that this will continue to get worse if people continue spending a majority of time on their computers. A third reason why I think computers are having a negative effect on people is because they are distracting and they waste time. An example of this is that once when I was online doing research for a school project, I saw an advertisment for a website that looked interesting. When I clicked on it I was brought to a site full of funny stories and pictures. I spent the next half an hour reading entries on that website and completely forgot about my project. When I relized what I had done I rushed to finish my research and ended up getting a poorer grade then. I'm sure I would have gotten if I had not been distracted other things to do on the computer. This is why I think computers do not have a good effect on the people who use them. They take away from spending time with family and friends, they result in less excercise. And they waste time and are distractions. " 5 5 10 +1351 1 "Dear local @CAPS1, @CAPS2 people have been using computers for years. But @CAPS3 it good for there health. Were not thinking about what power teens have with the internet. If you need info. We have lots of great books. If we need communication we have phones. We need to go outside and exercise. @CAPS3 the computer another reason why america @CAPS3 becoming obese? First, teens can do harmful stuff on the internet to themselves or others. People have invented facebook and myspace. Almost every teen in america has a facebook. Did you know that theres cyberbullying now. People have humiliated others on the internet. How do we know that the person were talking to @CAPS3 who he/she say's he/she @CAPS3? Teens give away to much info of themselves, some have gone missing from such an action. The internet @CAPS3 a powerful weapon, but can teens handle this kind of power? Next, although the computer @CAPS3 a convient device. @CAPS3 it not true that we have something called books. We cant believe everything that @CAPS3 said on the computer . We can get all that we need and more off of books. People lived in the middle ages without computers, but with books. Why can we. Have we grown lazy to do such a thing as to get up and look through a book. Finaly, if communication we seek, then why not a simple text or call. we go through all the trouble of turning on and opening pages just to chat online. We have become lazy because of device's that have all we need in our homes. sure its a good thing but dont forget a bad one to. It seems like the computer @CAPS3 another reason for america growing obese. We need to get up walk, hang out with friends, do sports. But how can we when were adicted to computers. It's like a powerful drug. To conclude I think computers are not good for us. Teens with the power of facebook. Fake and dangerous info when we have book. Lastly, our own health. At this point I ask you, @CAPS3 the computer worth everything we think it @CAPS3? No, it @CAPS3 not." 4 5 9 +1352 1 "Dear Newspaper, @CAPS1 the years, the streets have become less crowded with people interacting exercising, and enjoying nature. Is this good or bad? Technology has advanced so far that it might be better to stay home and on the computer than taking a walk in the park. Computers do have a positive effect on people because they have advertisements that encourage exercise, advertisements that encourage travel and enjoying nature, and computers allow people to interact from anywhere in the world. Firstly, computers are full of great advertisements. Some advertisements talk about joining a gym and exercising. Studys show that <@PERCENT1@NUM1> of kids without computers do not get enough exercise, whereas only @PERCENT1 of kids with computers do not get enough exercise. These statistics show that computers are better for people's health than they are thought to be. Next, computers have even more advertisements that encourage people to travel around the world. By doing this, people's intellegence will increase because they will learn new facts about new places. Also, people will be happier because they enjoy travel. Lastly, people's jobs will benefit it they're business depends on the advertisements they post on the internet. Finally, the technology used in computers today allows people to talk to friends from nearly anywhere in the world on a computer. Social sites such as facebook alow people to see pictures from where their friends have traveled. Webcams allow people to talk face to face up close about the new gym they joined. <@PERCENT1@NUM2> of people say they have a better social life online then out in the open when their friends might not be there to talk. I conclusion, computers have a positive effect on people because they have advertisements that encourage people to exercise, encourage travel, and computers allow people to talk from anywhere in the world. Technology is there to make the world a happier , healthier, and more social place. That is why computers have a very positive effect on people around the world." 4 4 8 +1353 1 "Dear @ORGANIZATION1, @CAPS1 our nain forest growing back, service that takes only a few second, and being able to find practically any answer to any question. What could cause this phenominon. The answer is computers. These electronic wonder help us and our planet in some many ways. because they are ecofriendly, efficient, and loaded with information. You @MONTH1 be asking yourself how computers are ecofriendly. Well, for starters they help slow the waste of paper. Did you know that the @LOCATION1 kills aproximately @NUM1 million trees a year for book. Computers help prevent this in several way. For example instead of sending a short letter to the police cheif asking about what the new driving law is. You could send an email and save the paper. Also if you wanted the newspaper staff to interview the people that survived the power plant explotion you could send them all an e-mail with instructions to the surviers house insted of giving out maps individually. So now you see how ecofriendly computers are. My next reason was the eficentcy. My dell laptop @CAPS2 home takes about @NUM1 min to iload, @NUM3 sec to get on the internet, and @NUM4 sec to get to another webpage. So say that I want to know how many legs a centiped has (parents don't know either) without a computer it would take @NUM5 min to get to the library, @NUM6 min to find a parking spot, and @NUM4 min to find a book about cenipeeds. In total thats a least @NUM8 mins but my computer would only take @NUM1 min @NUM10 sec about. Also if you wanted to ask a friend what she is doing on @DATE1. I would only take a few seconds to send an email and she would answer quickly back, because she most likely on the computer a. My third reason was because computer are loaded with information, @CAPS2 @CAPS3 library I might find @NUM4 book on a sudject but on a computer I @MONTH1 find thousand. Once I was doing a report on monarch butterflys. @CAPS2 the @CAPS3 library I found @NUM12 books about them, On the internet I found @NUM13 wedsites on them! Also books have general information like just @CAPS5 life, but the internet has specific information the @CAPS5 part in the enviorment. As you now know computers help not only humans but the eviorments this is because they are ecofriendly, efficient, and loaded with information." 5 5 10 +1354 1 "Dear Newspaper, I believe that computers have a positive affect on society. I believe computers have a positive affect because they help us learn of faraway places, they help us communicate with friends and family all over the world, and computers help entertain people. The computer has a positive affect on society because on it you can learn of faraway places, their history, and you can learn of their landscape. By learning these things you can do a lot of things such as plan a vacation, this information can help you on a school report, also this information can help you learn of your heiratage & your culture. Also computers have a positive effect and are beneficial to society because they help you communicate with friends and family all over the world! You can communicate with anyone you know. Nowadays everyone uses the computer as their main form of communication. In a study it showed that @PERCENT1 of people in the world has a computer as a communication tool. Lastly computers are beneficial to society because they entertain us. On a computer you can do many things to never get bored. You can play games, surf the web, or you can watch videos on networks such as youtube. So on a computer you'll never be bored. The computer is beneficial and has a positive affect on society. The computer helps us learn of faraway places, it lets us communicate with friends and family all over the globe, and lastly the computer entertain us. Thats why the computer is beneficial to society." 4 4 8 +1355 1 "I don't think computers benefit the society as much as every one thinks. When people spend most of their time on computers they don't have time to spend with their family, people don't excersise enough when they are on computers wich causes them to become obiese, and you @MONTH1 meet up somewhere with a bad person you met in facebook or myspace. These are the main reasons computers don't benefit society. The number one reason computers ain't beneficial is because you need sometime to spend with your family. But, when you are on computers twenty-four-seven you have absolutly no time with your family and friends. I belive that families need to eat dinner together and have at least one hour with one another. Some good ways to spend time with your family is to play games together, go on a walk, or even go to a bike ride together. Did you know that computers have a medium sized effect on how people become obiese? If you are at school from seven till -thirty and after school you spend seven hours on your computer you will become fatter because you will have absolutly no time to excersise. When you just eat and don't excersise your body will not just burn off all that fat you ate. When you are on a computer you are probably go on to facebook or myspace. On these chating websites you can make arangments to go some where with someone you don't even know. If you meet up with them they could be a killer, a kidnaper, or a rapist. So there for you can litteraly die or get hurt because of your computer. Thats why e-mail is the absolute safest way to chat online if your were to have a computer. These are the main reasons why computers are not beneficial to the society. Also you @MONTH1 not spend enough time with family or friends, you can become obiese because you don't have ""time"" to excersise and you can be kidnapt by someone you don't even know through facebook or myspace. How would you like it if you had no time with your family, you were obiese, and you got kidnaped because you met up with someone that thought was nice through facebook or even myspace?" 4 4 8 +1356 1 "Dear Local Newspaper, Computers are a vey unique and advanced device. They give entetainment, pleasure, and knowledge for some people. I do not agree with the fact that computers are a good part of society. Although you do need computers. There are some reasons to which I am saying this. Typing s faster than hand writing and its neater. With all the different websites, you can advertise and buy important thing bat the internet and talk to people froma round the world. With all of these good reasons there should be an instant choice of it they're good or bad. But there is a main reason. It's areason that tells it is bad. Computers are for people. People had can't get off their write a hand written report or drive to the store to buy something. Not it. If computers never exiled, the world would no doubt be better all around place. There a lot of reason in which computers are bad. They hold information which can be hacked and by somebody thay you don't want to know something. Cyber bullying is a bad thing about computer. Another big is those stupid online games. People get addicted then they become lazy and eventually obese. So as I said before, part of society and should be. This would be of good importance to me if you took my letter into. Remember that computers can take advantage of your life and make you into you're not. make that descision I hope that you live a full life and enjoy reading my letter. P.S. Try not to get involved with any online games being in a nationwide disease. " 4 4 8 +1357 1 "Dear @CAPS1 @CAPS2 editor, I have recently seen on the channel @NUM1 news that you want to know about the. Computers have on people. In the past, everyone has computers and gets knowledge from them. @PERCENT1 of the @CAPS3 surveyed at the @CAPS3 @CAPS4 agree computers are helpful to us. In my opinion, computers have a positive effect on people. The first reason is computers teach hand eye coordination. Without this coordination, people would not survive. The users be over very quickly. The computer makes us use these muscles so we can live happily. @PERCENT1 of the @CAPS3 recently took a survey at the @CAPS3 @CAPS4, agree computers are the main source of hand eye coordination. Dr. @DR1 expert in relationship to humans said, ""People without computers cant do what others can. They are unable to have fast reaction time."" To sum it up computers help with hand eye coordination. The second reason is computers allow us to learn about far away places. when you can't look up and learn about places, you are not about them. You're lucky if you know when in the world they are. Computers allow you to look up those places. You can look into going there for vacation or doing a report. @PERCENT2 of the adults who surveyed at the public library said the computers help. They are full of so much more information than books. To sum it up, computers allow you to learn about far away places. The third reason is computers allow you to talk online to people. This extends your friend ships with people. You can talk on the computer, not just at school. It also allows you meet new and different people. You can talk to people in @LOCATION1 that you couldn't talk to without computers. Computers allow you to open up the to all people. @PERCENT1 of parents who took a poll in @ORGANIZATION1 say they want their children to learn about different cultures. They need the computer for that task. To sum it up, computers allow you to talk online to people. In conclusion, computers have a positive effect on people. The reasons are to teach hand eye coordination, learn about faraway places, and talk to people online. I strongly urge you to look at any point of view closely. This decision is now up to you. " 4 4 8 +1358 1 "@CITY1 @CAPS1, Computers are very helpful devices. Life would be very hard without them. Not only are the helpful, but they are fun and easy to use! I believe that computers have a great effect on people because you can keep in touch with family and friends, go on school websites and use search engines. Friends and family are extremely important in peoples lives. Computers can help you keep in touch with them! the @NUM1 applications that I mostly use are @ORGANIZATION1, @CAPS2, and @CAPS3. @ORGANIZATION1 is a free online application that you can download to your computer, add your friends, and video chat! using this, I keep in touch with my @CAPS4, my friend who moved, and even a friend from @LOCATION2! @CAPS2 (@ORGANIZATION3 instant messeger) is where you can send messages to friends and get instant replies! It is just like text messaging, only through computers. Lastly, @CAPS3 is a website where you can add friends from all around the world! I am friends with tons of family that I don't get to see very often, a friend who moved to @LOCATION3, and many other people that have moves! @CAPS3, @CAPS2, and @ORGANIZATION1 are great ways to keep in touch with other people! When you are home sick from school and need to make up school work, instead of calling a friend from each of your classes, go to the school's webpage! All teachers should have their own website that you can get from there. On their pages, they should have posted homework, quizzes/tests schedule, favorite links, projects, and their e-mail address. I find this very helpful because even if you don't understand you homework, you can e-mail you teacher! Not only do school website have teachers pages, but they also have lunch menus, events coming up, the school address and phone number, and many more! School could be a lot more difficult without a website. Do you ever have a question but nobody has the answer to it? www.Google.com has the answer to everything! you can find webpages, videos, pictures, translators, etc. Google is not the only search engine on the internet, there is also @CAPS6, @ORGANIZATION2!, @LOCATION4, @CAPS7, @LOCATION1, etc. These can all help you find answers, pictures, videos and many more! I often use these to find pictures for a school project, webpages for research, translators to check my spanish homework and videos to show my friends! if we did not have search engines, life would be a lot harder. Computers, as you can tell, are extremely helpful, easy, and fun to use. People love them and use them all the time. I hope that you agree with computers having a great effect on people! Staying in touch with family and friends, having a good education, and finding answers within a click is the easiest way to go!" 6 5 11 +1359 1 "Dear Newspaper, Computers have a huge effect on society, can you even imagine where we would be without them? They are great for communication, learning, and shopping. Computers have a large effect on people. Without computers, communication with co-workers, family, and friends would be nearly impossible. Social networking sites, such as @CAPS1, @CAPS2, @CAPS3, and @CAPS4-In play a huge wrolein everyday life. These are the sites you use to access information from others to making plans for the weekend. Do you think that your children use the intrenet too much? Nowadays, that is their way to communicate with their peer. It makes them more social, which is a great quality to have in life. Also, I don'd know about you, but I have talked to many people around the world using the internet. It gives you the chance to experince other cultures. Communication was absolutely not as easy before having computers. It @MONTH1 seem hard to believe, but you can learn tremendous amounts @MONEY1 things from the internet. This @MONTH1 include learning about people. How would you video chat with someone without @CAPS5 or @ORGANIZATION2? You can learn a lot about a person from talking to the face to face, a thing that can't be done on a phone. Also, research for school could not be done without the internet. In a recent survey, @NUM1 out @MONEY1 @NUM2 teenagers said that they use a search engine site, such as @ORGANIZATION1, @CAPS6, or @ORGANIZATION3 at least once a day, @CAPS7 out @MONEY1 those @NUM1 said that it is for school. If it weren't for these search engines, children wouldn't be doing too great in school. Clearly, the computer provides ample ways to research and learn on a daily basis. It @MONTH1 sound rediculous, but in @DATE2, @PERCENT1 @MONEY1 shopping was done on the internet. If someone wants to start a business, their first stop is usually the internet. People are making @MONEY1 every year with the help @MONEY1 computers. People find it easiest to buy something with the click @MONEY1 a mouse. It is easier than the hassle @MONEY1 crowded malls and long lines. Also, do you remember when @CAPS8 @DATE1 was the time to put the alarm clock on for @NUM4 @CAPS9? Well, how people do @CAPS10 shopping online, there are hundreds, even thousands @MONEY1 sites that offer great sales. Now think about how purchasing items would be if it weren't for the internet. It's not agreat image, is it? As you can tell, computers have affected our lives in a great way. Communication, learning, and even shopping have become much simpler. Many @MONTH1 think that computers are not bad to have, but the good over shadows those aspects." 6 5 11 +1360 1 "I support the advance in technology especially in computers. Using the computer can teach hand-eye coordination, give you the ability to learn about faraway places or people, and give you the opportunity to talk online with other people. Hand-eye coordination is a very important skill to have. it quickens reflexes during everyday life. Hand-eye coordination is needed especially for sports like baseball, football, or basketball. Without computers, many people would lack hand-eye coordination. If you are driving a car on the highway, when suddenly a car swerves onto the wrong side of the road and is heading toward you, you need to react fast. Without hand-eye, you could die. Using computers could possibly save your life one day. If somebody wants to go to a foreign country, but doesn't know anything about it, he could lost it we on the internet. The internet is a major part in having computers. Without it, people probably wouldn't be able to research a country with ease or learn about other people. Some people @MONTH1 think that using the computer too much restricts people from getting exercise, which is true in some cases, but the computer is very useful to have if you want to know about something. Like who won the election, or who won the sports championship. The computers is almost a neccesity in every home. The computer gives people the opportunity to chat online with other people. Some they @MONTH1 know in real life, or some they met online. It expands peoples interactive life, helping them make new friends. Though this is great thing to have acces to, it is still important to socialize with people in person, rather than socializing online. Some people have trouble talking to people in person and more comfortable chatting over the computer. Maybe this person could make a friend, and one day meet them in real life. This @MONTH1 be dangerous for younger people, so be careful. I support the advancement in computer technology because it gives people greater reflexs, gives people the opportuniyt to research faraway places, and gives people access to the internet to chat with people online. These are three huge advantages than using computers give people." 4 4 8 +1361 1 "In modern society, @CAPS3 is rare that you come across someone who doesn't know how to basicly operate a computer. According to the statistics project known on youtube as ""shift happens"", most children in the @LOCATION1, @PERCENT1 in facts, have used a computer by age four. While @CAPS3 can be debated that computers are bad, i firmly disagree. Computers are one of the best technological advances the human race has made. they have helped education, reconnecting, and are even at times good for the environment. I wonder why people disagree, and i hope that after reading this, you will too. At my schoo, there are three computer labs, each with about twenty five computers, a library with twenty computers, and each teacher has two computers in their classroom. Wheni look at these amounts and addit to what i know about computers in other @CAPS1 schools, @CAPS3 is clear to me that computers have helped the education system. Many teachers can have students research projects with the click of a button. There are websites where students who were out from school can get their assignments for the next day. Also, teachers can put their grade books in their had drive. This saves paper and ensures accuracy in the final grade. As a student, i think that computers have greatly improved schools in many ways, but mostly in those above. At one point or another in life, we are all older and want to reconnect with our old friends. Thanks to computers, the process of reconnecting is much easier. There are social networks such as facebook, twitter, and @CAPS2, that are valuable for finding your friend from @DATE1 camp. Let's say you have been connected with someone, and you've just found out that you got a promotion. You want to call, but you don't know the hone number, but you know the email address. Email messages send instantly to anywhere. (And while you're at @CAPS3, ask for a phone number!) @CAPS3's always great to talk with old friends. Computers have helped @LOCATION1 make that easier. My friend recently purchased a sony laptop. She liked not only the features, but that @CAPS3 was an energystar, or eco-friendly. Now a days, computers have been made green in the battle for the environment. Paper is saved with online encylopedias, newspapers, journals, etc. Not only that but computers are needing less and less electricity. You save green and are green! Today's society is helping mother nature not only in our actions, but in computers too. In my opinion, computers are helping @LOCATION1, not hurting @LOCATION1. They have assisted education, social reconnecting and the environment. We must look kindly upon the advancement and miracle invention known as the computer." 5 5 10 +1362 1 "Dear Local Newspaper, @CAPS1't you agree that computers should be limited or often not used? Recently, it has been brought to my attention that computers have a negative effect on society. Without a doubt, I firmly believe that computers should be a hobby not an addiction. People spend to much time on their computers and less time exercising and interacting with family and friends. Most teenagers are involved with cyber-bullying which takes place on computers. People spend to much time on their computers and less time exercising. I can remember when my step mom @PERSON1 was a size six in the waist. @PERSON1 would exercise everyday after work for two hours. This all changed when my dad bought her a lime green, @ORGANIZATION1 @CAPS2 laptop for her birthday. @PERSON1 quickly became addicted to @CAPS3 (computer game) and began to cut down on her exercising routines. Six months later, when she went to a doctor's appointment she found out that she gained more than ten pounds. @PERSON1 is now a size fourteen in waist. Studies show that @PERCENT1 of people gain weight because they cut down on exercising so they can have more computer time. Most people spend to much time on their computers and less time interacting with family and friends. This reminds me of my step dad @PERSON4. When @PERSON4 gets home from work he usually goes straight to the computer instead of having a conversation with the rest of the family. He gets angry when @PERSON2 (@NUM1 years old) bothers him because he wants to play. @PERSON4 is usually online. From three o'clock till ten o'clock playing chess with strangers from all over. What he doesn't know is that while he is building relationships with strangers he is breaking the bond between him and his loved ones. @PERCENT2 of teenagers are involved with cyber bullying. This reminds me of my cousin @PERSON3. Last @DATE1, @PERSON3 became a member of @CAPS4 @CAPS2, iTrouble quickly began to find her. In other words, girls from ages thirteen to twenty began to send her threatening messangers. No later than a day when @PERSON3 was walking down the street a gang of girls jumped her. However, she survived the brutal attack and deleted her @CAPS4 account. In conclusion, without a doubt, I firmly believe that people shouldn't spend to much time on computers. My three arguments are cyber-bullying, less exercise and less interaction with family and friends, @CAPS7 take my suggestion seriously and bann computers." 5 4 9 +1363 1 "Dear local Newspaper, @CAPS1 has come to @CAPS2 attention that we are debating on weather or not computers benefit society. Well if you ask me, I think @CAPS1 does. For one computers help with entertainment. Second of all, they're very information. Lastly, computers make life less stressful. In the following paragraphs I will explain on @CAPS2 reasoning. Firstly, computers give entertainment. Now I can see why people say we should go out side more and excersize but, what are supposed to do on a rainy day? Well, you could go on the computer! Plus, computers give children enjoyment and make them happy, instead of being sometimes. Another reason why computers are good, is they can give children modivation. Say you're child really wants to play a new game on his favorite website, but his homework isnt done you could tell him if he gets his homework done he can play on the computer. Also, you could give him a time limit on @CAPS1 too. Lastly, for a teenager or older they are more social than little children. They go on things like ; twitter, facebook and myspace. Computers is probably their @NUM1 or @NUM2 way they communicate. Unfortuneatley. Some people abuse these rights and people get in trouble. But the good thing is you can customize you page so that won't happen. Any way children become more social. Secondly, computers are informational. They can tell you a lot by just the touch of keypad and the click of a mouse. You can search someone or something across the whole world. If you want to know the mother and how to prepare for @CAPS1, just look @CAPS1 up and do what you have to. Also, if you find out something new tell people, you can spread the knowledge. Thirdly, computers make things less stressfull. which would you rather do, type or @NUM3 pages? Well I'd type! computers make things more organized so @CAPS1's easier to find things. @CAPS1 also makes @CAPS1 easier to find things, like files because you can just do to ""@CAPS2 documents"" and find @CAPS1. As you can set computers are an important part our lives. Can you imagine a world without computers? I sure couldn't! So far i've said computers are entertaining, informational and make things less stressful. I hope you take @CAPS2 letter into concideration." 4 4 8 +1364 1 "I agree with the many peole that but benefits society. Computers can be used as a learning tool, allows communication with distant family and friends. Lastly computers give you something to do in your free time, such as playing games. First of all, I know many people think that others wasted their time on computers. But most computer users us the computer as a tool to learn and get work done. There are many educational websites that people can go to to learn about any subject want. If you want to know more about different cultures such as @CAPS1 @CAPS2. There are websites to tell you everything you wih want to know. Computers also help yet work done. There are multiple programs designed to make writing papers or presenting information much easier @MONTH1 people use these programs to yet ahead in their work and present facts easier by using these programs it is very hard to lose and work that you do because it is all saved into the computer. Next, computers are agreat way for many people to pass some free time. Many websites are designed for this reason. Some allow you to play games and other websites let you watch video made by other people, while some people @MONTH1 spend to much time on this many offers know moderaton and spread their time even other websites hard videos that are used to portray important issues, for example the president has given many through @CAPS4 videos because more often people are on their computers and not watching television. Lastly, computers are a great way to communate with distant firends and family. There are so many ways to do, such as email, or many of the social networking websites. My family being immigrants from another country my family. Thinks this is a vauables tool for talking with our family, and I am sure that htere are many ohters who use the computer this way as well. People also make and keep in touch with great friends through the @CAPS4. I use @CAPS3-mail as a way to keep in touch with many of my friends that I haven't seen in tears, my parents have also found long lost friends that they had before we moved through facebook I also allows people to communate important ideas faster than a letter could. Many scientists use the @CAPS4 to publish ideas and experiments. Finally, I agree with people who sad computers benefits society computers help by being a tool to learn and get work done, pass free time and see important information and lastly computers allow communcation with very far and distant family members." 4 5 9 +1365 1 "Dear Newspaper, I think that when kids or even adults get computers, then they would not use it for good causes. When people get computers they spend more time inside and on them. They need to get outside get some exercise. Even little things like, if your going to your friends house, then take a jog there instead of your bike. When people spend more time on their computers than talking to your freinds, then they will be low on socializing and, after awile won't know how to communicate with people. All they would have to do is set a time limit on their computer and only use it for work otherwise. Computers could also be used for good things. If you have a project for school and need to type it up on the computer or find pictures on the internet then the computer would be a good resource. If you have a job for working with computers or fixing computers, then you would spend a lot of time on your computer. It also lets you interact with people on the othe side of the world. You can also learn about interesting facts or places. Computers could also be used for bad reasons. When people use it they could just use it to play this cool new video game they got. This can lead them into getting obese. They can also use it for sexual harrasment for stalking people. People can also use it for horrible things like selling or buying drugs or illegal things. So as you can see computers aren't safe in a lot of ways. I hope you can read and understand all the important facts explaining my reasons and consider them. Thank you and have a good day." 4 4 8 +1366 1 "Dear Local newspaper, I think that computers have a bad effect on people because they will have no time to exercise, less time with friends and family, and it could give a younger child a bad influence. Here are my detailed reasons. The most important reason why computers have a bad effect on people is that the time they spend on the computer they could be exercising to stay healthy. For example my mom runs @NUM1 miles everyday and still has time to go on the computer. If you use the computer @NUM2 its bad, but if you use it in moderation then its a little better. For instance my mom lets me go me go on the computer, but she @CAPS1 makes me go outside and run around @CAPS1 people are always talking about obesity, and computers are one way its happening to kids and adults. They just sit their on the computer and do nothing while on the other hand they could be outside. Here is my second reason. The next most important thing is that kids and adults won't have time to spend time with their families and share memories with them. My mom always tells me the best part of your childhood is making memories with the people you love. My friends and I love to be outside and go to playgrounds and act like little kids, but it makes us laugh and people say that laughing keeps you happy and healthy. Here is my last reason. The last most important reason is it can give a younger chilld the wrong ideas. For example I have @NUM1 younger sisters and they love to go on the computer and some websites are not good for younger kids. One website could be @CAPS2 because bad peole post videos and the little children could see then and get the wrong idea. Here is my conclusion. In conclusion I think computers have a bad effect on people because they spend less time staying healthy, less time and with friends and family and it gives kids the wrong idea. I hope I got my point across that they are bad." 4 4 8 +1367 1 "Dear @CAPS1 I would like to inform the public that using computers isnt so bad. The first reason I think make computers good is because of the people we can meet via @CAPS2, yahoo, @ORGANIZATION1 or gmail. For instance we could meet someone from @LOCATION1 and learn about his or hers culture or beliveths. My second reason I think computers help people is because what if someone didnt have @CAPS3 or the newspaper he or she could get the @CAPS4 news via nbc.com or fox.com and will be able to still find out whats going on in the world." 3 3 6 +1368 1 "Dear local newspaper, @CAPS1 percentage of people all over the world do you think have a computer and think that it has a positive effect on them? Well about @PERCENT1 of the world says that computers are a great way to communicate with friends, family, and different people around the world. They also mentioned now its a good hands on-eye coordination on adults and students. A wonderful educational source to use in schools, jobs, etc. First off the reason why I say that its a great way to communicate is because of the programs that computers have memoried into them that are little numbers all around universe to connect with your friends, family, and people around earth. For example like yahoo, facebook, twitter,, myspace, etc these are all types of ways to communicate with people and bring more social which is a healthy way in life. More than half the world have these communication source because one it easier and you get more of your mind. Another reason why they @MONTH1 have these connections its probably because its a better way to see one another if you live in different parts of earth. The reason why I said that its another way of seeing people around the world is because right now I'm living in @LOCATION1 and in order to see the ones I love and care about is by my myspace and facebook to be able to see my family and friends that lice that live in different locations from me like @LOCATION2, @LOCATION4, @LOCATION3, etc. Another reason is because its a good hands on eye coordination on adults and students." 3 4 7 +1369 1 "When you use or computer, you have the ability to do virtualy anything. The internet has millions of users and makes life a lot easier. You have acess to talk with people who are all the way across the world! You can search any topic and learn more about it. The internet even encourages you to get outside and see things for yourself. In the @DATE1 it just a seasy to contact someone in @LOCATION1 as it is to contact someone at the other side of town. As long as oyu have a internet connection you can stay in touch with a friend thats moved aparent on a buisness trip, anyone! Some @MONTH1 say that you should just use a phone but you could use video chat on the internet. You can see someone who's thousands of miles away, as if they were right infront of you. These days its harder to not stay in touch than it to stay in touch. @NUM1 or @NUM2 years ago any information you neede came from a book. You would have to go all the way to the library, find the right book, and read it. If you were lucky you could find a bit of what you were looking for. These days you simply type it in to a search browser and you instantly get thousands of webistes on that topic. The internet allows you to learn about any subject you'd like. You can spend @CAPS1 experts or give that some poeple spend too much time on thier computers. Seeing all those great places and beautiful pictures encourages @CAPS1 poeple to get outside and see it for themselves. On a recent poll @PERCENT1 of peopel went on a hike after seeing a youtube video about how great it is to get outside. The internet has a massive effect on us. It can also bring families together. For example at dinner, you can get a great recipe off the internet. In fact, you can get millions of great recipes. The internet was an amazing idea. @CAPS1 would argue that it was the greatest invention ever. Yes, it can be dangerous, but with proper education on it the internet is a good source of information and an @CAPS2 pass-tie, if not abused. Being able to see and talk others so far away was seeminly impossible a few decades ago. Getting information has never been so easy. We are lucky to live in an age where the intenet is right at our fingertips." 5 4 9 +1370 1 "Dear @CAPS1 post, I know that people are spending way to much time on computers instead of being out side. People are becoming adictied to computers. People are spending way to much time on computers because there addicted to them, over weight, and not getting any exercise. I am telling you we need to address this matter. People have become addicted to computers. @PERSON1 says that in @DATE1 there were @NUM1 people useing computers, and it @DATE2 there are nearly @NUM2 million people using computers, thats a big increase in the last copple of years. People are becoming more addicted because of facebook, twitter, and much more computer sites. Yale says that in @DATE3 the number of people on facebook was only @NUM3 thousand in @DATE4 there is over @NUM4 million people using facebook, I dont know about yoe but that seems like an addiction to computers to me. People are getting tramensly over weight. One cause of this is addiction to computers, people just sit infront of there computers and eat and eat and eat until there over weight and unhealthy. Dr. @PERSON2 says that in the last @NUM5 years the average weight of a person has gone up @NUM3 pounds due to them sitting in front of their computers and eating. Doctors say thay cant do any thing about peoples weight unless they turn off all of there computers witch they dont think is possible. People are just getting to fat from sitting and doing nothing all day. Exercise is a key part of staying healthy. And by sitting infront of a computer eating, you'r not getting your exercise that is needed so people are getting fat. Dr. @PERSON3 says that people need to be aware of this problem. Dr. @PERSON3 also says that in the last @NUM7 years the amount of exercise people are getting has decreased @PERCENT1 thats why people are getting fat. He also says that its due to sitting infront of the computer and eating. People are getting no exercise due to computers. Im telling you this is a huge problem that we need to address. People are becoming addicted to computers, there getting over weight, and getting no exersise. Pleas @CAPS1 post listen, its a problem, but it is your dessision." 4 5 9 +1371 1 "Dear Local Newspaper, I feel that negative effects of computers on people is much greater than the positive effects. Computers have caused a massive amount of obesity in the @LOCATION1 and that number is growing everday. Computers can also be time-consuming and people could spend hours and even days on a computer without doing anything else. Lastly, computers can be dangerouis to many kids and could even end up in death. I feel that xomputers are too harmful for society and should be stopped. Obesity is @CAPS4 of the biggest problems in the @LOCATION1 and is growing bigger everyday. Over @PERCENT1 of @LOCATION1 population is obese and computers have been a major conributer. Put yourself in the mind of a computerf addicy. It is dinner time and you are hungry, but you don't want to lose too much time off of your computer. You hurry down to the nearest fast-food store and by yourself a cheeseburger, fries, and a soda. You then go back to your house and eat the food while on your computer. Not only is the fast-food bad for you, but you dont even give your body a chance to burn @CAPS7 those calories and carbohydrates that you just ate by exercising. Computer addicts do this almost everyday and before they know it, they are. @NUM1 pounds! In addition, people who thier hand-eye coordination can do it in every other ways than just going on a Computers contribute to a large portion of the obese population, but they also can be extremely time-consuming. People on computers waste a huge amount of their timer. These people stay on thier computers for hours amd sometimes they dont even realize it. They say ""@CAPS1, let my check my email. @CAPS1 look, I recieved a @CAPS2! @CAPS1, let me just change my @CAPS3 acconut."" @CAPS4 thing thing another and @CAPS7 of a madden, @NUM2 or @NUM3 hours have already passed by. People who stay on computers @CAPS7 day waste precious time could be spent with family, exercising, or finding a true love. Time is sao precious in our lives and we must not waste it staying o a computer @CAPS7 day. Not only can they be time consuming, computers can also be dangerous. Kids around the country are being killed, raped, and bulled @CAPS7 to computers. They show thier pictures on chat sites, give away too much information, and enough. They have a critical knocking on their front door. Also, those been who suicide because they were bulled on the @CAPS5. Cyberbullying can be just as harmful. If not more harmful, than vregular bullying. These kids fare such strong mental and emotional harm that they make bad decisions, including suicide, and @NUM4 in school. In addition, there can be explicit content on the @CAPS5, including pictures and video that can harm a child's young mind The danger of computer is so great than they should be @CAPS7 in @CAPS7 computers are too risky for whivh is why they shouldn't be a time consuming. Lastly they can be extremely dangerous to children. Because of these should be banned from @CAPS7 society for the well- using of the @LOCATION1" 6 6 12 +1372 1 "Dear @CAPS1 Local newspaper, I heard that you were concerd about people and how they use the computer to much. I think that computers are a good thing to have because many people use computers for school, work ect. I think that computers are good use, many people use it for research and resources. It is easier to use them, when you are going on vaction because you can check out how much hotels are, where resteraunts are, and what interesting places are there, instead of calling/driving around. Computers are good for school because I think books are harder/longer to use than computers. Also for questions you can go to one of the websites an you ask the question and many other people might answer the question your looking for. There also useful for work most people use computers for work. They can put there taxes/documents on there computers. Computers can be used just for fun too. There are chat; facebook games. I think that computers are useful for many things, but I also think that some people spend too much time on them too. Computers are great, but you should also use other things too like maps, book, ect. Many can spend @NUM1 hours on the computer facebooking and gaming. I think that it's important for people to go outside and hang out with friends. Alot of people spend there time on the computer during @DATE1 because its cold and sometimes snowing. I don't think that they should spend there whole time on the computer though because you dont just want to depend on electrictronics everytime. I think that computers should be used not alot in the @DATE2 because I think hanging out with friends and family are important and also the weather nice. I think that computers can be very useful with directions, work, school work but you shouldn't spend alot of time on them. Electronics arent everything in life. Thank you for taking your time reading this and I hope you do agree with me." 4 4 8 +1373 1 "Dear @CAPS1 @CAPS2 @CAPS3, I think computers are benefitial to society even though some people don't because they give us a means of communication, computers give us the ability to learn about forein people or places, and computers help businesses in so many ways. Computers are a most have in a society. Computers give us a means of communication such as @CAPS4, @CAPS5, @CAPS6-mail, and so much more. Without the computer, families who live far away from each other can talk with a push of a button. @CAPS5 lets us talk to our friends after school and plan what we are going to do that night. Long distance calls cost money and it is not worth @MONEY1 a call if you call every couple of days. Communication has evolved so much in the past @NUM1 years. Computers are just the bigginning. That is why computers are benefitial to communication. Computers give us the ability to look up facts about forein places and people in a matter of minutes. We could look up who was the @CAPS7 of @LOCATION1 in the would get multiple sites on the @CAPS7. Computers help us expand our learning capabilities and give us a chance to learn things that normally we wouldn't. That is another reason why computers are very benefitial to the society. The last reason that supports the fact the computers are benefitial to the society is because computers help keep much of data. Work data and they help @PERCENT1 of businesses we file reports communicate with other branches of that company. I learned in class that in the job were much more difficult than they are today because of technology. Some people think that using computers deprives people of going out and exercising. It only takes @NUM2 minutes ti check your @CAPS6-mail, or look up something. Computers are benefitial to society because without computers, our lives would be much more complicated." 4 4 8 +1374 1 "Dear @CAPS1 @CAPS2 @CAPS3, I think we should have computers for great purposes. One reason is because there is a lot more information on the internet. Another reason is because there is some history on many different websites. My last reason is because you can send messages to a faraway place by using e-mail. My frist reason states that there is a lot more information on the internet. For example, if youn don't have the newspaper with you, but you have you laptop, you can get information that way. Did you know, over @NUM1, @NUM2 people use their laptops for information and not games. Another example is if we get the newspaper everyday but it doesn't have the article that we are looking for, we use the internet. When we look for information on the internet, you would use yahoo, google, and other informational websites that you need. My second reason states that there is some history on many different websites. For instance, you can go on a websites and learn about history everyday, insted of going to a museum about history everyday! One day, I had to make a project about the @CAPS4 and I had four days to do it, you know what I did, I went on a historical website about the @CAPS4. I got an A+ for my project. When people need history, it's always all around them on the internet. My very last reason states that insted of texting people from faraway places, why not just use an e-mail address. For example, you don't have to pay for an e-mail address. It's actually free and did you know, more than @NUM3 million people around the world use an e-mail address insted of texting other people. When you don't have an e-mail address, it's very quick to make one. You don't have to waste money to text someone halfway around the globe. In conclusion, I think that we should have computers. One reason is that we have a lot more information on the internet. Another reason is because there is some history on some websites. And my last reason is because you can send messages to a far away place by using e-mail. Thank you for reading this article." 5 5 10 +1375 1 "New @CAPS1 @CAPS2, @CAPS3 computers is a benefit to society. Most people not think so but there are many reasons why they are. People will always have something to do when they are bored, there is plenty to learn, and it keeps you organized. After reading this paper, you will agree with me that computers are a benefit. Do you ever get bored and have nothing to do ? Well if you have a computer around, there are endless things to keep you busy. People can talk to their friends and keep in teach with them. No matter how far away they go. There are many websites that have games you can play. Any type of game they are all on the computer. You @MONTH1 be thinking, "" I might get addicted to a game and never want to take my eys off the screen. Well, in that case, you can always set a timer on it to give you a certain amount of time, but don't worry, it warns you before it shuts down on you. The computer isnt' all fun and games though. It is filled with knowledge, it's like the brain of @NUM1 scientists and mathematicans put together. If you have a school assignment in write a paper on someone famous, you can research them on the computer for a quick way to get information. There will be plety of websites about that person. Also, everyday there are news updates about what is going on in the world. You never have to worry about not knowing whats going on. Do you like to stay organizes I personally, think it's easier to get through life and everyday, knowing where things are and staying organized. The computer is a great, easy way to keep organized. There are many programs that you can use to write documents, make graphs and whatever you need to do. About <@PERCENT1@NUM2> of working people need the computer to do their job and keep track of everything. @PERCENT1 of the working humans is a larger amount. So, thing about it, if computers weren't made, that <@PERCENT1@NUM2> of people would not have, jobs, or they would have to keep everything down on paper which @MONTH1 be a catastrophe. After a while, you @MONTH1 want to back everything up by copying all of your photos, files, music ect. to a @CAPS4 so you dont loose everything if your computer shuts down. After reading this, don't you agree with me, that computers are a benefit to society? There are many more reasons but this paper had alot. I hope you have realized that without computers, the world wouldn't be as it is today. Thank you for your time. " 5 5 10 +1376 1 "Dear @PERSON1, I am writing a letter to discuss the fact that computers have a negitive effect on the average american, here are my reasons people are not spending much time outside, lack of exersize, do not interact with their family as much. Not spending much time can have a big effect on mother nature. Such as they will begin to care less about our wonderful earth and not care to pollute because if they took the time to go outside instead of running the air conditioner they can save the money and go be with their friends. Lack of exersize can be very bad for your health. Sitting down all day on the computer is not exersize its lazyness. When you exersize you feel good about yourself, your adreniline starts going, you can stay fit and you wan't have to worry about being unhealthy if you take yourself away from the computer. When you do not interact with your family and instead of eating dinner together one persons on the computer and the others are waching @CAPS1. You might argue with your family a lot and don't you want to have a healthy relationship. So why don't you encourage your family to sit down at the table and discuss how your day went. I stated my reasons why I think computers have a negative effect on people. I hope that you agree with my reasons so we can find a way to get everyone their computers and get active." 4 4 8 +1377 1 "Wouldn't you like to find a @NUM1-star hotel or resteraunt with a click of a button? I know I would like to. So should we keep using computers for the good of our society, or not use computers to exercise more? Computers are helpful to us by doing work that has to be done neatly. It also helps by accessing and surfing the internet to more useful stuff. A computer is very intelligent and not only can came in a boring, heavy, boxed shape. Computers are also in some electronics. If you go on vacation and forget to turn off the lights, you can use your hand held computer to turn it off. Communication is pretty easy on a computer. All you need is computer (of course), a microphone or headset, some speakers, and a special software. After you have all of these, you can connect with the rest of the world! Talk to loved ones or family members through your computer. If you want, you can also get a web cam. A video camera used on your computer. Then you can see others face to face! If you do not have anything what I just said, there is also texting. Just use your computer keyboard to type and send a message. Your computer can also a lot more things. You can play mindless video games! Your computer must have the right specifications to play it. Sure it might be pricey to" 4 4 8 +1378 1 "Dear newspaper, @CAPS1 you have a computer? Of course you @CAPS1, that's where you get all the information you need. Computers are good and everyone should have one. The computers let you learn new things and you can search anything you want to know. It also lets you communicate with your family, friends, or other people you need to communicate with. It can also let you see disasters in other countries and teach you about the world. Computers are good and benefit a lot of people in these ways. Computers can allow you to learn new things and search up anything you want to know. If you're in school and you need to @CAPS1 research, well there you go, you have a computer to help you. This is also good for jobs. Any one can use them and learn new things at the same time. It let's you @CAPS1 work, learn new things, and it's fast and easy to @CAPS1. You don't have to @CAPS1 all that hard work of looking for a book and spending so much time looking for the information you need. Computers are great and you should use it. Another great thing about them is that you can communicate with them. If you have family or friends that live far away or in another country, then you can communicate them by computers. You can easily webcam with them or e-mail. This is very easy and this way you can stay close to them. This is also good if you @CAPS1 business online. You can @CAPS1 your job and talk to the people you need to talk to. If you ever have to arrange on emergency meeting and don't have time to call the people you need to, then simply send them an e-mail and your set for the meeting the next day and so are they. This is a perfect way for communication and business. My final reason for computers is that they are perfect to learn about disasters in other countries. If you ever miss the news and you really wanted to see them, then you can go on your computer and see the news and learn new things and see what bad things have happened. Also if you live some where that isn't your home town, then you can go online and see what is going on at your hometown and visit for any special occassions. You can learn a lot of new things about other countries. Also you can learn about new places if you ever want to move to another country. You can see hotels or anything you want to if you want to go on vacation. This is a perfect way for transportation and learn new things about other places. In conclusion to all of my facts, computers are good. It lets you learn new things and @CAPS1 research. Also, it lets you communicate with family, of friends in case of emergencies. Computers are also great if you want to go on vacation or learn new things about other countries. If you have a computer, then that is great. If you don't then you better go out and get one because these computers are awesome and can @CAPS1 just about anything you need. Stop waiting and get online or go out and buy one." 5 4 9 +1379 1 "Dear @LOCATION1, @CAPS1 has come to my attention that more and more people are using computers for excessive amounts of time a recent study confirmed this reporting that ""@PERCENT1 of @LOCATION2's population uses a computer for more than @NUM1 hours a day"". That means people have less time to exercise, enjoy nature and socialize. I consider that the benefits of computers are greatly outwayed by the problems that arise from them to up, computers limit a person's health-both physical and social - and do more harm than good to siciety. Spending too much time on computers can deteriavate a person's health by preventing them from spending that time exercising take for example @LOCATION3, who goes on computer at least five times a week, for about four hours. @LOCATION3 has stopped playing soccer and because she prefers to spend time on facebook. Instead of recieving six hours of exercise a week. she now recieves an hour this has to @LOCATION3 gaining weight and losing health. The problem is there are millions of children like @LOCATION3 who are not getting enough exercise instead opting. to spend too much time on their computers. Another problem is that people spend less time enjoying nature. Now, they choose to surf the web instead. This nads to people caring less about our planet and animals. Nature is very important and can be extremely fun, so this is a shame. Furthermore, those who choose to spend overwhelming amounts of time on computers tend to interact less with family members. No longer do most children help cook, clean, do chones, or spend time with siblings. One mother says ""ever since my daughter got her new laptop, she hasn't gone once to play with her baby brother or friends"" unfortunatly the same is true for most teens today computers have limited nou, much time families spend together. In conclusion, computers do harm to society they keep people cooped up in their rooms, istead of exercising, enjoying nature, or having fun with their families and friends. In doing so, computers have become a mause to society. Therefore, @CAPS1 is crucial that people who spend more than an hour a day on computers use that time to exercise or socialize, even to do nothing at all would be better overall, computers are no longer beneficiery to society." 5 5 10 +1380 1 "Dear local newspaper, I has come to my attention that many of us disagree on weather computers have a negative or positive effect on people. I believe that computers do not benefit society. Many people in today's modern world spend way to much time on the computer when they could be exercising, spending time with family and friends, and enjoying nature. Read on and I am sure you will agree. First of all, computers are becoming a problem in society because they interfear with our physical well being. The @LOCATION1 is continuingly growing. Not in our population but the size of our people! According to a recent survey @NUM1 out of every @NUM2 people in the @LOCATION1 are overweight or obease. ""The main culprit of the @ORGANIZATION2's percent of obeasity is not over eating it is actually electronics! Especially things like computers."" said @PERSON1 a surgean at @ORGANIZATION1, after dealing with a severe case of obesity. Obesity is not a hard thing to get rid of. All we have to do is instead of sitting for hours staring at a screen. America needs to get outside! It can be as simple as riding a bike or taking your dog for a walk. Whatever you do just get off your computer and go outside or the gym for exercise! Secondly, computers interfere with family and friends. I know from personal experience that parents hate it when their kids will miss family dinner or won't go out with their friends because they ""need"" to finish the next level on their game or they ""need"" to look something up on the internet. Family and friends should be a very important thing in your life but unfortunatly, for most people it is not. Psycologist, @PERSON2 has discovered that overall, having family and friends that you can count on beside you will make you a much happier more enjoyable person."" @CAPS1 eliminating computers from our lives we will create a happy and more pleasent society for the people of the @LOCATION1. Doing everyone a favor. Furthermore, if we cut back on our hours on the computer we will have a better chance to expeirence the wonder's mother nature has to offer us. Most people don't realize how much they are missing @CAPS1 not going outside. There are amazing things, right in your own backyard, that you will probably never get to expeirience because you are too addicted to playing on the computer. @NUM3 years ago people were able to function fine with out computers so we should be able to too. @PERCENT1 of people have never even been camping! So next time you feel like spending another @NUM4 hours on the computer, take a walk and I'm sure you will be amazed at what you find outdoors. In conclusion, computers do not benefit society. They just keep people away from going outside, enjoying nature and spending time with family and friends. I hope I have convinced you to see my side of the argument and thank you for your time." 6 6 12 +1381 1 "Dear Local Newspaper, I think computers have a negative effect on people. One reason I think this is because people need exercis. They shouldn't be sitting at a desk all day playing games on the computer. Especially kids should be outside playing and exercising. More and more people will become obess if all they do is sit at a computer all day and eat junk food. If more people execis more people will start eating the right food and many people will be much healthier and live healthier and happier lives. My second reason on why I think computers are negative is some kids @MONTH1 get cyberbullied. This is when someone gets bullied online. Kids do this so they don't have to say it in person and they could say anything they want and the other person @MONTH1 not even know who it is. Another thing is kids @MONTH1 meet someone they don't know and think is nice but you don't know who he really is. He could make you, by tricking you, do stuff that normally you wouldn't do cause you think he's your age or he likes you. Many girls have gotten taken because of this. My last reason is people could miss out on fun activities, with family or friends like going swimming in the @DATE1 or sleding in the winter. If your home at the computer you can't do fun activities outside and exercis while doing it. Theses are my reasons I think computers have a negative effect on people." 4 4 8 +1382 1 "Dear The @CAPS1 @CAPS2, I belive that computers offer a lot more pros than they do cons. Computers offer another way to learn things about the world. Computers @MONTH1 also act as a research, tool. If a child, or anyone @CAPS3 on the computer and a family member thinks it @CAPS3 an unreasonable amount of time, that sounds like it @CAPS3 just an issue between the person and his or her family. Many people @MONTH1 argue and say, ""look in the encyclipedea to learn about the world, ""but a computer @CAPS3 faster, easier more time efficient to use. In fact, most people in the newest generation of families probably don't have an encylipea set. For example, if I were to want to learn more about @LOCATION1, @CAPS4 of searching in a dictionary or encyclipea, I could go on the computer, type in @LOCATION1 and a whole slew of liks and opportunities are found. Some people @MONTH1 like the old ways, but personally. I like the freedom and easiness of a computer. Have you ever had to research for a project or report? Many people either in school or in the work field will most likely need to research something to get a better understanding. Yes, a dictionary @CAPS3 helpful. Yes a thesauris @CAPS3 helpful but there are separate things. Compared to a computer those classic research tools are still usefull, but could be a hassle. My point @CAPS3 a computer has a dictionary thesauris, encyclipedea...ect all in @NUM1! So next time you have to research something try reaching for the keyboard @CAPS4 of the bookshelf! To me, the problem of someone being on the computer too much sounds more like a Family problem than a social problem. Technology has changed our world! Ever since computers were invented not only have they downsized, but became more and more useful. The computer has opened more doors for our scociety, without computers, space travel for example would not be the normality it seems to be in this generation. All im trying to say @CAPS3, I don't think computers hurt our society, but are pretty much the building blocks for our world. While reading this paper I hope you noticed the pros of having computers in this world. A computer @CAPS3 a help learning tool, the king of all reaserch tools and a big part of our society today.If you could learn one thing from reading this paper, I would want you to think, ""@CAPS5 would we, as a world be without computers?""" 5 5 10 +1383 1 "Dear @CAPS1 @CAPS2 register, I am writting you to urge you that the affect computers have people is helpful. The reason I say the computers are helpful is because it helps give direction helping the economy and because you can send messages thru quickly (instant messaging). Read on so I could let you know how and why these things about the computer are helpful. @CAPS7 I know I said computers help gives direction but let me explain it like this. You know when you need to go out somewhere far and you don't know how to act there and have no @CAPS3 in your car. Well then think about it on computer is your only option left. Like for example when I was going down south @DATE1 we didn't have no @CAPS4.P.S and we didn't know how to get their. So our only option was the computer. We logged on to google on found our direction @NUM1. So this is the first reason @CAPS7 read the next on. Okay, okay, okay. @CAPS7 we all know the way our economy is rediculous. Away computers helping our economy is instead of people driving to go pay there bills, they could pay online. Because it's saving money and the state won't have to pay for questions to get gas for the cars often or get re-build. Like for example this gas station near my house is getting re-built because something went wrong with the pipes @CAPS7 this is costing us all about @MONEY1. @CAPS7 say this isn't away we could save the economy. Its about time to move to the next reason. Listen here, here, here's my @DATE1 reason how computers are helpful. Im other known as instant messaging. This is helpful if you don't have a house phone nor on cellphone and you wanna tell you a family member or friend something really bad had happened then you could tell thru by instant messaging (@CAPS5) because they would surely would get it. Like one time my friend aint have a house phone nor cellphone and somebody was trying to brake into her house she had instant message me to let me know because it could get send to my cellphone. And I called her mom to let her know and befor I know it another massage was coming thru saving ""@CAPS6 you."" @CAPS7 after reading how computers are helpful by helping give direction, save the economy and instant messaging, could you agree with me saying computers are helpful. Its still your opinion but you read minds so think about what you read on say it isn't true." 4 5 9 +1384 1 "Dear @CAPS1, In my own opinion, computers do not have a positive effect on people. Online, you can go on any website and talk to people. Most of the time, you @MONTH1 not even know who it is your speaking with. Plus not all information you @MONTH1 find is true. Computers also take time away from doing something productive, like playing outside. In the next few pragraphs, I'll show you my point. First off, online websites have many different ways to contact people (chat rooms, blogs, email etc.) @CAPS2, do you really know if the people you're talking to are who they say they are? Back then, it was rare someone got caught when trying to kidnap a child by pretending to be someone online; @CAPS3 a days more and more people are getting caught. You @MONTH1 think this won't happen to your child, but my friend was being stalked online by someone what they haven't caught. We never thought something like that would happen, @CAPS2 it did. Also, once it's online it never goes away. So watch what you put online, there is always some way to find what you had posted even once deleted. Plus not every bit of information found online is ture. I professionals say that @PERCENT1 of kids have researched a project online then used a print source and found that information to be false. On websites like wikipedia any one has the ability to change what is written on the page. Most websites @PERCENT2 give the ability for anyone to do so. Also post and pictures on the internet @MONTH1 not always be appropriate. There's certain criteria we keep children from seeing for a reson. Lastly, computers keep you from doing anything productive. It @MONTH1 teach hand-eye coordination however it does not keep you fit and healthy. Already, @PERCENT3 of @CAPS4 alone are over weight and that's alot of people. Dr. @DR1 says that online games keep kids from getting much needed exsersize and fresh air, that every growing child needs. In conclusion the internet keeps children from going outside to play. Also, not everything found is what is true or right. Lastly, not everyone you find is the person they portray themselves. This is why I think that comperters aren't positive in society." 5 5 10 +1385 1 "Did you know that in a recent poll in the @CAPS1 @CAPS2, @PERCENT1 of @CAPS3 use computers everyday? Computers have a very positive effect on people, such as informing them on news, traffic, and weather right away, interacting with others, and learning new facts. Can you even imagine how difficult life would be without computers? They are a daily tool that millions of people use positively. One way that people use computers positively is by using it to be informed by news, traffic, and weather. For example, say there are signs of a hurricane going to hit near their homes. they would know righ away just by clicking on the internet. Another example is if there was a shooting nearby. People would be well aware of the facts by reading an article online. Computers help by informing people about danger so they and their families are not harmed not only doe computers help inform people about any danger through news and weather, but @CAPS4 their daily lifestyle. My father drives into work every morning, and is always looking online for any traffic updates so he can avoid them and get to work on time and safely, without computers people would be unable to know directly the harms and difficulties they @MONTH1 face. Another positive affect computers have on people, is letting them interact with others, such as video chatting and instant messaging @PERCENT2 of the world video chats and instant messages. It helps to make people more social, by chatting with their friends. Another example is, say you haven't seen a close family member or friend in a long time. Video chatting and instant messaging will help you catch up and develop a stronger realationship nobody wants to waste time in life not speaking for a long period of time to a close friend or family member, right? Computers help people by interacting with others throughout their daily lifestyle. A third positive effect computers have on people is teaching them new things. Students' main source for education is through the computer on the internet. @PERSON1 from @ORGANIZATION1 said, ""Computers are what helps my students grow. I have them use computers everyday for reports and to extend their learning"". They are @CAPS4 helpful to students because the internet now contains textbooks they use in class. That way, the won't need to lug around heavy books, and strss out for forgetting them, @CAPS4, if the student doesn't understand material learned in class, they can look online for extra help and guidance, malking their knowledge grow further. Without computers, lives wouldn't be the same in a negative way. Computers help people know news, traffic weather directly, interact with people, and learn new things. therefore, computers are very positive, since @PERCENT1 of @CAPS3 use them now positively, why stop?" 4 5 9 +1386 1 "Dear @LOCATION1 harold, More and more people use computers, but not everyone agrees that this benefits socity. Those who support advancences in technology believe that computers have a positive effect on people. But computers can be a bad thing. They can deprive children from excersizing, enjoying nature and spending time with family and friends. First of all, Computers can stop children from exersizing. ""@CAPS1 I can never get outside after school, because I'm checking my email."" @CAPS2 high school student. A recent studdy shows @PERCENT1 of students at a middle school @CAPS3 when they come home they go right on to the computer. This shows that almost half of the students at just the middle school are on the computer. This is way computers can be a bad thing. Secondly, some children spend more time in the grate indoors than the outdoors. ""I spend most of my time breathing in airconditioning (or heat) than fresh air."" @CAPS2 middle school student. Imagine, a child is staring at a computer screen playing a game or on facebook mean wile it's a beautiful day in the middle of @DATE1. @NUM1 out of @NUM2 students @CAPS3 that they spend more time indoors than out. Computers can be a bad thing in a childs. Finally, computers can interfere with a childs time spending with family or friends. ""I @CAPS1 spend an entire evening at a family party on these computer."" @CAPS3 elementary student. @NUM3 out of @NUM4 homes have a computer and it is beang used @NUM5 by children. This shows that little @PERSON1 of the @PERSON2' house hold is never out side playing with friends. Computers can do more harm then good in a house hold. It can stop children from exercising enjoying the out doors and spending time with family. I ask you to tell your children or grand children necies nephues to cut down on computer time." 5 4 9 +1387 1 "Dear @CAPS1, @CAPS2 we all know more and more people are using computers. Some believe that this would be a concern because it affects peoples health. I believe that with the advances in technology it would give us positive effects on people. Here are three reasons why, first would be that with advances in tech. It would teach us to be more intelligent. Second would be it it would give us the ability to have access to intresting things we can't get at the library like biographics and finally access to communicate online. My first reason @CAPS2 I mentioned before was it would give us intelligence. If we have questions to something we dont know we could search on the computer and find our answer. We would learn this and would be able to teach others. The computer can give us alot of useful information that can benefit us in the future. My second reason is that advance in tech. would help us because it give us access to helpful website that teaches us. Not all information is found in the library the computer has access to biographics educational website and most important the access to educational advances for example online tutoring for students with difficulties in school. My third and final reason why advance in tech. would and could benefit us is that it gives us access to online communication. Some people will have e-mail for good reason for example teachers have e-mail for educational cause if a student is having problem in work, the student simply send the teacher a e-mail of the what the students difficulty is and what the student can do. That is all I have to say for now. I hope you think about this" 3 4 7 +1388 1 "Computers have a positive effect on peoples lives. They are big helpers. They teach you skills you need in life. The technology abilities help us with tasks every day. Finally they help people to keep in touch and meet knew people. I think that computers have a very positive effect on our lives. Computers teach us many things. First of all just learning how to use the computer is a skill you need in life. At most jobs you have to know how to work a computer. Today computers are essential part of most work enviornment. Hand-eye coordination is another skill the computer teaches you. Computers actually help you with sports in a way. To catch a ball you need hand-eye coordination. The technology the computer gives us helps us alot in life. If you need directions you can look it up on the computer. If you couldn't you would have to call the resturant for directions. Without the computers help we would all have to write all of our papers out. For students it would be a nightmare to have to do reports without a computer. We would have to read so many books to get the information. The world would be a much different place without computers. Sometimes people who we love have to move far away from us. It's hard to keep in touch on the phone when that happens. The computer through keep you in touch. With programs like facebook, twitter, and @ORGANIZATION1, its possible. You can chat with them pictures of how there doing. You could even keep in touch with them from @LOCATION1. Computers almost anything possible. In conclusion computers are great machines. They teach us life long lessons. They help us when we need something or have to do a report. Computers even keep people in touch so their relationships don't fall apart. I don't know about you, but I think computers keep the world up and running." 4 4 8 +1389 1 "Dear Local Newspaper, @CAPS1 are so many people that addicted to computers. They think that computer can help them but yes to others it helps them to their work and education. Most children are addicted to computer games. @CAPS1 are @PERCENT1 of children who are addicted to computers. For some reason, computers had a lot of effects on people. It might affect children's education or it might be the cause why your bills of electricity went higher. The worst of having computer at home, it can be a reason for millions of teenagers that got killed for always talking online with people they don't know. Computers are sometimes dangerous for people. Do people still need computer? Having computer at home is not good specially to children. This is because computers can affect their education. Parents don't want that to happen to their children. A lots of uneducated children that stay home or do drugs in the street. Yes computer can help them for their studies or computer can help them for their studies or projects but other children in the computer because they just want to play games. That's why a lot of them didn't learn anything at school but they learn a lot in the computer games. They should stop the computer games. Also, having computers at home can be the cause of people's electricity bills that went higher than they had @DATE1 when they didn't have computers. Other people think that computers can't give you any problem but computers works with electricity and pay for the electricity bills. If you have @MONEY1 for your electricity bill @DATE1 year when you didn't have computer, it might go high to @MONEY2 for your bill that now you have the computer. It's a big problem for you. Nevertheless, computers are dangerous. Computers can be good or bad. Without a doubt, @PERCENT2 of teenagers have been killed because of talking online with strangers people. Most website like @CAPS2 is now in danger. @DATE1 @DATE1 months, husband and wife got killed because of @CAPS2. The husband killed his wife because of being ""single"" in her relationship status on her @CAPS2. She got shot by her husband. However, her husband killed himself. They're both got shot! Talking online and meeting up with strangers people you don't know can be a reason of your lost. Parents should not have computers at home unless they will use it but it needs to be at their room where children can't use it. Now is the time to agree! Do we need computers at home? Can we live without the computer? We don't need computers at home and yes we can live without the computer. We can do any activities with our family, exercise for our health, go picnic with friends or we have fun go on vacation with the whole family. Local newspaper, I want you to tell the people to stop the computer and tell them to go out with their family and have fun doing activities or go on vacation." 4 4 8 +1390 1 "Dear Newspaper, I think that computers have a negative impact on society. I say this because it alows kids to be bullied at all hours of the day, it takes away from their exercise, and it gives then less time to study and do school work. Overall, i think that talking is the main use for computer. But, some times it is used in the wrong way, @CAPS1. Experts say that @NUM1 out of every @NUM2 kids have thing to use to talk on line, but the also say that @NUM3 in @NUM4 of thoes kids are bullyed on line. Also every year you hear someone or them, well most of the time it is because of @CAPS1. In fact I heard on the news that half of their kids were bullyed online. And because you can go on at all hours of the day, kids can get bullied at any time. Some child say that kids are happy when they go ho,e because they cant be buuyed but @CAPS3 be bullyed at their safe place, their home. Another bad thing about the computer is that it replace exercise. A text A and @CAPS2 football scout said ""every year their are less less people who play sports because of video game or computers."" @CAPS3 the obesity rate of kids has gone up in america and many agree that the cause computers taking place of exercise. Also people think that you get better hand eye coordination but most leaders agree that you don't because it is not your hand that is moving it is your mouse. Lastly, noe grades are lower then ever for students. Most teachers say that @NUM3 in @NUM6 students get good grades and they say that all @NUM7 that don't spend to much time all the computer. I was waching discovery chanel and it said that @CAPS3 most kids are spending @NUM4 hours on the computer and less than @NUM3 hour on studying or homework. The computer made for storing information and learning. How did we let it go from that to a tool wed for @CAPS1, making lazy kids, and for anti-learning!" 4 4 8 +1391 1 "Dear @CAPS1 of the newspaper, I understand you think computers dont have an effect on people. Computers do have an effect on people. For one reason the computer helps people find out information about anything. Also, it helps people do work. Plus, you can comunicate with anyone you want. Dont make any decitions before thinking about these effects on people. First of all, computers helps people find information quicly. To find information everybody uses either google or ask and many more. The information that people find would probably help them find were a store is or a number for a restaurant. Not just that but, you can find at how much something is at a store and if it is on sale or not. These are just some of the great effects computers have on people. However, work is a really large effect computers have on people. For example, computers would really help someone if they are looking for a job because their are many stores you get to choose from. To go along with that, adults and children use the computer to type something on word if its for a report for work or an essay in school. Maybe you have used the computer to type information for your newspaper. Yet, one thing kids love to do on the computer is comunicate with their friends. Most kids either use facebook, @CAPS2, or oovoo to comunicate. Having these programs helps kids stay in touch with friends that moved away. Plus, one thing good about these programs are if you have family that live very far away from you, you can always talk to them at any time. I understand why you think computer dont have an effect on people. Computers do have many effects on people. Thats not all, computers help people find what their looking for. It also helps you with your work. Never the less computers are a great way to comunicate with friends or family. Think long and hard about what decition that you want to make." 4 4 8 +1392 1 "I think that computers have a good effect on people. When people are on the computer they are not on for very long. I also think computers have a good effect on people because of the new technology. Computers are positive and they can help you when you are stuck or need to look something up. To me computers are positive. When people go on the computer ther are not on for @NUM1 hours straight. Sure they might be on @NUM1 hours in a day but they do other stuff in between like school, meals and activities. Some people need computers for their @CAPS1. News @CAPS2 companies need computers for editing and printing out the papaer. They also put the news on there website. What would most people do without a computer? Computers are positive because of the new technology! The new technology is helping people interact over the. if you have a long distance friend or family member, there are how many ways to talk to them. You could use @CAPS3, skype, oovoo, @CAPS4 or even email. When I go on the computer I dont just sit and watch @CAPS5 @CAPS6 or @CAPS7 online. I interact with my friends @PERCENT1 of us population between the ages @NUM3 have a @CAPS3. @PERCENT2 have skype or oovoo and talk to people that are too far away to visit. Computers are positive because they can help you with school that you don't know just go on the internet and look it up if you need to translate @CAPS8 to @CAPS9 just go on the computer and translate it. @PERCENT3 of people learned a dictionary there own using the internet. If there is a word you want to know and isn't i the dictionary look it up and it will be online. Computers have a positive effect on people. Nobody spends so much time on the computer that they can't go outside or hang out with there friends. People actually need the computer for their @CAPS1 the new technology that is coming out is letting people interact with people across the world. They are positve to have for school work, definitions and even translation. Computers are not negative and they dont take away what you should do in life." 2 3 5 +1393 1 "Dear @CAPS1 Newspaper, @CAPS2 when you were a kid? There weren't any computers or other electronics except the telephone. The computer is very advanced and helps people in many different ways, such as: hand-eye cordination, learning and being able to talk online. These things benefit society and prove the advancement in technology. The computer teaches hand-eye cordination when people don't even realize @CAPS5, through typing whether typing an email or an essay your hands are working and helping you. The hand-eye cordination that people learn on a computer can be used for sports. @PERSON3, a @NUM1 years old tennis player, said, ""I used to go on the computer everyday and play tennis later, and eventually the computer helped use with my favorite sport."" Hand-eye cordination is very useful, for many things our surveyed @NUM2 people and @NUM3 of these people say that hand-eye cordination is a very important still and that everyday activities, such as computers, help them improve. Typing is very comonly used while sending emails because they are fast, fun, and let you comunicate. When talking on a computer there are many new ways that are popular and fast, such as email welcoms aim, facebook and many more. @CAPS5 is nice to be able to talk to friends and family online because other options are more expensive. For example, many live on @LOCATION1 and her sister, @PERSON4, she is very close to, lives in @LOCATION3. They can't talk to each other a lot because neither of their calling plans allow them to call without charging hundreds of more money. They also can't fly to use each other because plane tickets are expensive these days. Also, the economy isn't doing that great, so they couldn't stay in-touch until webcams come out. Now, they see each other almost every week. Many said, ""I was considering flying to @LOCATION3, but now the webcams and email are useful and save us both a lot of money."" People @MONTH1 argue that you can just sent letters to each other, but, you can't send your baby boys first steps that you just video taped, or a youtube video that is really cute. Also, you can meet new people online that you @MONTH1 not've seen normally and when you can stay in touch, you can stay much closer to each other. Even though computers are great for fun, working and learning are much easier online. When online, everything that can be learned is amazing whether @CAPS5's what means or the earthquake in @LOCATION4. Being able to keep track of everything in one computer is amazing. @PERSON2, a @NUM4 @CAPS3 teacher at @LOCATION2, says, ""@CAPS4, we are trying to make more things electronic to protect the planet, so use don't waste paper and will trees."" @CAPS5 is true, about @PERCENT1 of the homework of @NUM5 graders is online, whether @CAPS5 is to look up the equation for photosynthesis on to find out what year @CAPS6 died in being online does help the environment @CAPS5 is important to be able to have computers in schools because @CAPS5 gives more chances for kids to learn more things faster, like @NUM6 graders have a math class online, off hey math. @CAPS5 gives people more information coming from more people. Online, you can read a scientists' expierement or a paparatzi's take on @PERSON1' new boyfriend. The computer has changed society a lot, for the better. Now, in the @DATE1, computers are part of the everyday lives of people in which they benefit. With better hand-eye cordination, being able to talk your friends, and being able to learn the computer benefits society." 5 6 11 +1394 1 "Dear Local Newspaper, In my opinion they take time away from exercising. Also, no one has time to enjoy nature. Of course, when it comes to family and friends, The time is stified by the computer. If more people get of @CAPS1 and @CAPS2, I'm positive all would be resolved. I'm sure that the computer is affecting everyone negatively. Obesity is a huge problem in @LOCATION1. One in five children are obese. I feel the computers is contributing to the problem. I remember times when I wanted to go outside and exercise, but the computer dragged me away wih all the fun games and videos the internet sure, the computers fine in moderation, but many people abuse their privellages. Obesity leads to many such as dogged arteries or strokes. No parents wants to see their go through young. But if from of to fix it? taking away for many. Everybody these dayrace people have so much effort making. I's sure I would have had across time if went people have probably done. Good times. Family to take time from away from us. In conclusion, I feel the computer is an addiction. Millions who on the computer gain weight. Also, it takes time enjoy nature but the computer blocking the way. Another thing the comuter puts family and friends on hold. Memories are being stolen by the awful device that computer. So else how bad the computer is." 3 3 6 +1395 1 "@CAPS1 dinners ready "okay mom, one second' click, click, click. Are you hearing this from your children than usual? Well if you are than you need to listen to this upcoming message. We the @ORGANIZATION1 believe are children and adults are spending too much time in their laptops or computers. They're not out exercising, enjoying nature and interacting with their family, these problems could lead to begger problems that @MONTH1 have already taken affect like: @CAPS2, financial problem and then to depression. So keep reading and think what you hear that could or has happened to you. @CAPS2 is a huge thing to worry about kids all over @LOCATION1 are on their computer than outside. Ever day I see my nephew on his computers I see him getting fatler and fatts every day. Studies have shown that children and adults that own as facebook or myspace account, they gaim about @NUM1 pounds every @NUM2 moths. If they're even on @NUM3 to @NUM2 hours a day they'll gain @NUM5 pounds every month. Sooner or later the state is going to have the @CAPS2 level from @PERCENT1 to @PERCENT2 @ORGANIZATION1 people who are obesy. This could lead to loss @ORGANIZATION1 jobs laziness. When people spend most @ORGANIZATION1 their time on facebook and myspace than they could lose their job's. More than @PERCENT3 @ORGANIZATION1 the state citizens own a facebook or myspace. So when people are addicted to them they're spend more time on that thatn the steff the have to do for their jobs. So then they'll get firm one can't pay bills, loans, and mortage. This then will all tead to depression. Depression is all over the state even the country. People are losing jobs left and right cause their computers and internets. People are even comiting climer like murded and even attemps @ORGANIZATION1 suicide cause @ORGANIZATION1 loss @ORGANIZATION1 jobs or family members. Some people are even so addicted to the internets and girths @ORGANIZATION1 new born family member. This depression needs to stop. So fight for the right to stop the addiction @ORGANIZATION1 internet use and live a great life. Drop the computer sead as book, meet up with friends and family, keep your jobs. Don't let these reson come between you and your life." 5 4 9 +1396 1 "@CAPS2 people think, the invention of computer, and the internet is a terrify thing, but truly @CAPS6 is terrible time consumer. The local newspaper is doing a survay about peoples opinion about technology. People spend way to much time on computers while they could be outside, enjoying nature, excercising, or interacting with people in person. The advancements in technology just wasteing your time. When the weather is people should be out side enjoying @CAPS6 instead of wasteing time day on the @CAPS1 sun can be very harmful to your skin, seen the sun can help and boost you energy, the carbon dioxide in buildings causes people to become sleepy. @PERCENT1 of people survayed by @ORGANIZATION1 sold they feell more when they go outside. @CAPS2 people People are while they could be excercising obesitey is a people sit at the computer all day, @CAPS6 contributes to the @CAPS2 kids have stopped participating the much computer. @PERCENT2 of people by the @CAPS3 computer people spend and friends. they see inperson, people will forget their manners because they are not used online. People who support computer usage might say. That their are ways to talk @CAPS3 @CAPS4, ect. But online chatting @CAPS5't always safe, @CAPS1 on your buddy list @CAPS6 @MONTH1 friends out unless you can see their face, you can Computers have become to much of a distraction to the society. Computers have caused people to forget ow to use manners and communicate in the real world. Now is the time to get on your feet and find something else to do! Responsible towns people are." 4 5 9 +1397 1 "My is people should go only on the computer if they really have to do something such as type a reports, check your e-mail etc. Whats the point of going on the computers if all your going to do is play games that gets boring to me. I go on the computer to to my friends and check email and stuff and then i go outside to play. You should only be on the computer for @NUM1 minutes a day then go get some exercise. If you stay on the computer all day you will smell, get fat, get lazy, and no one wents these things. These are the things you should have. You can play basketball, go on a bike ride, with some friends, go swimming, I do this type of stuff every day and I am in good shape because of it. I stay healthy and fit I dont sit on the computer all day on a sunny day. You become more if you go more it gives you a chance to hang out with some neighborhood kids. When I get home every day I do my homework then I go outside and play, then later I go on the computer for @NUM1 minutes then @CAPS1 done and I go to bed and the same thing the next day. So everyone agree with me because you knew I am right." 3 4 7 +1398 1 "Dear @CAPS1, Some people say that computers are fun, smart, and do no harm. Is that true though? Do computers make harm? Well, for one thing, I know that computers can take up! a lot of peoples time. For example, many people don't go outside as much. This is because most people are usually on their computers. What are they doing on the computer you ask; well lets, find out. There are many things a person can do on a computer. It can be fun chatting, educational or hard working. A lot of people use a computer for fun. For example, many people use the computer to chat with their friends. There are many sites to chat with friends. That can usually take up a lot of peoples time. A lot people can talk for hours on the computer and that is what takes up their time instead of going outside. Another example is the games that people are playing.To me, the computer games are one of the biggest problems. This is because a lot of the games can be to much fun, that it can be find a game and play it all the time. This can not only take up their time outside, but it can ruin their life. The game can be so addictive that kids and adults might not get their work done. That can cause failure in school or getting fired at work. On the other side though, a lot of people use a computer for work and school. Beside internet chating and computer games, many people use computers for school and at work. People type their work up or they send work to their e-mail to bring home. This is a good thing about computers, but also a bad thing. It is a good thing because now people can get their work done faster. This is a bad thing because it is another reason to stay inside.For work, people depend on computers. They save work on their and they use computers to build things. For exemple, people use a computer to program a robot. Although they use computers for a good reason people should make time for outside. A lot of people need to take breaks off the computer: because computers can do harm. This is because if they spend all their time on the computer they can get sick. Going outside, exercizing and getting fresh air is very important. So people out there, get off your computer. Stop chatting, pause your game, take a break from your work, and go outside. Enjoy the nature. Most of your day should not be on the computer. Thank you for your time. " 5 4 9 +1399 1 "Do you feel that computers effect you in a possitive way? well i don't. I feel that computers have a neggative effect on people. I feel this way because you wan't be getting enough excersize in your life, you'll have a high light bill, and it'll begin to interfear in your everyday life. Now that i've shown my reasons, all defind them in detailed sentences. To start my essay, i feel that people want begetting enough excersize. I feel this because if your on the computer all day, and you don't go outside to talk, as side your bike then you went be burning any calarise. You'll be come a couch potatoe which down the line can become fatal to your health. As you get oldes you can possibly became with a list of items that can be wrong with you such as diebites, high cholesteal, and heart problems. Also i feel that if you are constantly sitting in front of a computer @NUM1, then you can possibly injure your back, which can add on to the list of problems with your health do to not enough exersice. Next, i feel that if your constantly on the computer, then your parents will have an extremely high light bill. Your parents will be with you, can possibly be in to the light company. If your always on the computer non stop, before you knew it the bill will be so high be able to pay it, you'll hour a high light bill, and can possibly be without light in your house. My personal opinion is that i dont feel computers are worth a family being in without light. Finally, i feel that computers will day life. I feel way if your always on the computers, and your never outside, then your friends will like you want to be bothered. They'll feel like your ignoring them, and you'll begin to lose friends that been there for you, and helped you when you needed it most. Also computers can effect your everyday life by ruining your social life. You'll always be inside, while your missing opportunities to meet new people, and build your social skillz. To conclude this essay, live brought to you my ideas, and opinions about computers. I've explained to you my reasons wich are you want be getting enough excersize, you'll have a high light bill, and it'll interfear with in your every day life. I've provided you with facts, and details about the consequences about computers, now you decide whether computers have a possitive or negative efect on people." 4 4 8 +1400 1 "Would you like to be on the computer @NUM1 and throw away your life. Well, some people already are throwing their lives away. @CAPS1 you spend your time on the computer you can become obese, can lose the ability of interacting with friends and family, and can even lose the ability of exploreing the @ORGANIZATION1!!! Its now or never to decied @CAPS1 you want to waste your life over a computer. @CAPS1 you use your computer to much you can be at risk of becoming obese. You can become obese for @NUM2 reasons. You aren't exercising while you are sitting. Since you are sitting not doing anything else you start to eat a lot of snacks. finally @NUM2, is that you can lose the ability to walk as well because you aren't doing anything with your legs and the obesety makes it hard to walk anymore. The time has come to decide. Also, @CAPS1 you waste your time on the computer you can lose the ability to interact with your family and friends. @CAPS1 you have children you can lose the ability to watch them grow up to adults and can even push them away. Also, you can lose your friend because they won't want to hang out with some thats a computer all that you will have will be your computer. Finally, You'll be all alone because @CAPS6 one will be there when you use trying to finally interact with your family. It's now or neve to choose what you want to do with your life. Finally, while your on the computer checking you myspace or your face-book there's a bunch of things happening around the @ORGANIZATION1. Instead of looking through your hard drive you be looking over the @CAPS2 @CAPS3 or looking at the @CAPS4 tower in @LOCATION2 or finally even going to @ORGANIZATION1 in @LOCATION1! with your family. The time has come to decied. As a conclusion, wasting your life on the computer is bad and can hurt your life in many ways. I can maek you obese and take the ability to walk away from you. It could prevent you from spending time with family and friend and can even push them away. Finally you can waste your time at home and not explore the @ORGANIZATION1. The time has come to decied @CAPS1 you want to waste your time or not @CAPS5 opinnion is @CAPS6!!!" 4 5 9 +1401 1 "Dear local newspaper, I'm sure you love kicking back and surfing the web. Afterall, the internet is an amazing invention. However, the truth of the matter is that some people spend way to much time on the computer. We miss out on all the other important things in life, just because of to much time on our laptops. Excessive use of the internet can lead to not enough exercise. It can cause us to be anti-social, And lastly, not allow us to enjoy the beautiful nature that surrounds us. Do you know that a very high cause of obesity is? Electronics, kids sit on the computer all day long, while they should be out exercising and keeping fit. Sure, it is still okay to surf the web. You just have to keep the time minimum we could ensure this rule by having a time limit set at home. I myself love to use the computer, but i make sure to get off after about an hour. The whole idea of the ""internet"" is such a broad topic. That leaves us with so much to explore, we just have to keep on eye on the clock. There are so many forms of chat on the internet; @CAPS1, @ORGANIZATION1, etc. Many people are always on one of those, instead of talking in person. We can eventually become anti-social due to so much time spent on the computer. Although yes, you can be talking over the internet, it is necessary to be talking to people face to face, it is as if we become grued to the computer. Websites such as @CAPS2 and @CAPS3 are also causes of this. People get addicted and are on them constantly, @CAPS4 ""@CAPS5"" websites actually take away time that could be spent with friends. So instead of having a chat over the computer screen, plan a meeting in person. Don't allow the computer to let you loose the social skills that you have built up. I love going outside each season to see the beautiful nature that surrounds us if you spend to much time on the computer, you wont have time to enjoy it. There are so many thing that you would be missing out on. Take time out of you day that you would normally spend on the computer to take a walk outside. Things outher are so much prettier than you computer screen, trust me. once you cut down you computer time littyle-by-little, you will realize all the other things that are more worth you time. So the next time you think about going to surf the web or play that new computer game, i hope you think about my opinions i presented to you. Too much time on the computer causes us to not get enough exercise, and we can become anti-social. we won't be able to enjoy the nature around us. Computer time is fine in moderation, you just have to be aware of how much time you spend on it. Hopefully, my supported reasons have given you another view on surfing the web." 5 5 10 +1402 1 "Dear Local Newspaper, I think that computers are both a good and a bad thing. Computers allow use to play games, and learn about almost anything. But computers cannot simulate fresh air and exercise. Computers allow people to play a wide variety of games. People can play chess, solatire, and a great deal other games like that. Computers also allow us to play a very wide variaty of online games. I can think of at least three different sites that have online games. Each site having at least @NUM1 different games! Hundreds of thousands of people play online games everyday! What would they do if we didn't have the computer to play those games? We can also search any topic from a computer anywhere. This is a amazing thing to be able to do. Imagine if nobody had a computer how would we research so much of our knowledge? Yes there are but using a computer is so much more faster. Plus you can print thing out on a computer with a book you have to copy important down. But you can highlight the important. How much could ? No matter how much computer do they @MONTH1 be but it is kids getting bigger and bigger all because they long. Computers are amazing and society benefits from them by a lot. But just like everything computers have their downside. So please inform adults and kids about the goodness of computers, but also warn them about the bad things that could happen if you spend to much time on the computer and outside." 4 5 9 +1403 1 "Have you ever gone on the computer? Have you ever sat there on the computer for a long time? I am writing you because I am concerned with the health of the town. @CAPS5 people have computers and go on them daily. It @MONTH1 be fun, but it could also but your health. Computers can be addicting and cause us to play for hours. @CAPS5 people @CAPS4 not exercise at all anymore. Most are too busy on thier computer. You should have at least @NUM1 minutes of exercise each @CAPS4. ""@CAPS1 kids sholud have anywhere from @NUM2 min of exercise on average per day. A lot of kids are now playing video games on the computers for that time instead of exercising,"" says @CAPS2. sereno. @CAPS5 kids don't go outside enough either. Did you know you should have a minimum of @NUM3 min in sunlight each day? You get most of your vitamins. the sun. When was the last time you took a bike, went camping, or went to the beach? All are very fun things to @CAPS4 that you could be missing out on learning of the computer. I know I absolutly love going to the beach. Hearing the waves, & laughing @CAPS3 ocean waters, and feeling it cool as the is just heaven. If I was on the computers all the I would be able to enjoy. My most thing @CAPS4 you like having fun or going out to your family? I @CAPS5 computer dont to are the same as being with the person. Can you imagine never actually seeing or hearing the person you're talking to? Thats now it is with @CAPS6. @PERCENT1 of communication on the billions of people who have @CAPS7't you rather talk to the person on the phone or talk face to face? I feel people should spend time exercising, going outdoors, and spending time with friends and family. Remember @NUM1 minutes of exercise, @NUM3 minutes in the sun each day to stay really healthy. Please consider this and write an article to improve the town's social & overall health. Its up to you!" 5 6 11 +1404 1 "Readers, imagine a world without computer. Communication would be, schoolwork would be far more difficult and we'@CAPS1 lose a source that generates tons of fun. Do you really want a world like that? The pros of computer definetly outweigh the. For example, computers make world communication way better thanks do like email, instant messaging, and cideo conferencing, computers also make learning for school easier and allow you to work. Lastly, computer make the world a much more and fun place thanks to youtube, news and online movies/tv shows. The effect of computers is definetly positive on society. With one click a message can be rent to anywhere in the world. How great is that? Because of computers people not only email to each othe but we can even have live chat. through text or videos online communication is a great help i my life, and the lives of my peers. For example, whenever I forget homework or have about schoolworks I can reach my peers and get help in a matter of. Not only can I seek help from others on my computer but I can stay in touch with my friends and family. So those who think computers cause us to spend less time wioth family and friends are mistaken. Computer link the world together and greatly advance communication positively. Aside from communication, computer also greatly improve and learning in many ways. FOr example, they make it so that projects and assignments can be done fastter and easier thanks to like microsoft word. Its proven that @NUM1 students who use computers from schoolwork they make learning easier as well. Online encyclopedia like and help students all over the wolrd with schoolwork or just learning for fun that at home. any that computers improve education is through online tutors and help sites. Were made it so your basically always within minutes of a teacher. I can't imagine completing any assignment without computer on my. Computers are not only practical for school and communication but they're also a great way to spend time having fun. One source of fun on the computer, is online movies and tv shows. Thanks to them you can always stay caught up with the latest episodes of your favorite show. online gaming also brings joy to poeple all over the world. you can spend hours playing live with others in detailed @NUM2-@CAPS1 world! Computers also enable you to kids back and laugh at historical videos on youtube. Lastly computer make browsing all the latest news a. YOu will always know whats goign on in the world, thanks to your computers. So whether you enjoy chilling and watching video, playing games or reading up on the news you will always find a way to have fun online! Whats not to like? With such a positive affect on the world, computer are definetly amazing technology you can communicate with friends or family online in an instant work on your school assignmnet, learn something new or simply have a great time! We how you, computers make life better and much easier. " 5 5 10 +1405 1 "Dear Local Newspaper, I have herd that some people do not agree that computer benefit our society. Well in this letter I am going to give you three reasons how computers do benefit our society. Those reasons are @NUM1) People have friends and family in other states @NUM2) some people use them to stay organized And @NUM3) Computers help you learn more. I hope that by the end of this letter you will see that computers do benefit our society. First of all, I think that computers benefit our society because @CAPS7 lets people @CAPS3 in contract with family and friends in other states. This is true that you could use the phone and call them out you have to pay for long distance. You don't have to pay anything to email somebody. I know from experience because, I have friends and family in a lot of states in the @LOCATION1 ""@CAPS1 computers help me stay in contact with my family all over"" @PERSON3 ( @ORGANIZATION1 ) @CAPS2 many people use the computer the contact with loved ones everyday. Some people even on them to stay in touch with family or at war. Next I believe that computers benefit society because @CAPS7 keeps people organized. I know this many not seem like a big deal but a lot of people or computers to @CAPS3 things organized @CAPS2 they know how everything is would happen if didn't have computers to @CAPS3 all of the appointment in? Well I will tell you what would happen to @CAPS3 all would end appointment would @CAPS3 giving you things you already got. ""I @CAPS3 @CAPS4 on my computers - @PERSON1 And @CAPS5, I strongly belive that computers benefit our society because they help people learn more. Yes @CAPS7 is right that not everybody goes on the computers to learn but that doesn't mean they don't learn. Here's a cuple examples is @NUM1) @CAPS6 - @CAPS7 lets you learn song lyrics, dance moves and more (@NUM2) @CAPS8 - @CAPS7 lets you learn what other people like, don't like and @CAPS2 on. Then there is face book, @CAPS7 lets you see what people are doing that day. ""People learn everything to the computer"" @CAPS9 @PERSON2. Now I hope you see that computers don't benefit our society than that is your opinion. I hope you see what I see now." 5 4 9 +1406 1 "Dear local Newspaper, In my opinion computers have a good effect on people because people can communicate with each other, learn on the computer and mostly people can shop online. Overall think computers have a positive effect on people. Wow! Finally got to chat with my cousin from california communicating on the computer is great because you save money the because you dont have to pay a phone bill. Also most companys use email to chat between co-workers. Dr. @DR1 a scientists say co-work who communicate are actually safer because they dont have to anywhere and they can stay home. Today these are so many social networking sites people can improve their mental health and cause there selp esteem by talking to people on a daily basis. Lastly all this communicating is great because you dont have to travel to communicate with someone the world is more eco-friendly. Wow! There are over I information sites on the computer. On the computer you can also use programs to make graphs and tables to show data. Mrs. Can says if you show inpormation on the computer like using graphs you will increase how much you know by @PERCENT2. Another great thing is in order to learn you dont have to read books which saves paper and many most op the databases with informatrion are free on you save money and also it takes only seconds to find inpormation you want. On average it takes @NUM1 seconds to find information. Finally the computer is a great place to find information and enlighten yourself. Shoping on the computer, that must be immposible not with todays computers, shoping on the computer is great because you save time not having to travel to the , consumer reports says you can save @PERCENT1 op the cost up the product ip you buy on line because over @NUM2 stores have online sales with the technology have today you can compare pries op an item by visit clicking a button's then you dont have to spend extra going to both . On line product renews have bcome very popular becasue you can hear other people opinion about the product. In the end online shoping is great because you can save money compare and on many great things. In conclusion computer have helped a lot to people because you can shop online communicate and learn , overall computer have really changed lives for most citizen" 4 5 9 +1407 1 "Dear @CAPS1, Computers are a great invention! They allow you to do so many different things. They have alot of positive effects on people. Computers deal with all sorts of things, from hand-eye cordination, learning about faraway places and people, to talking online with anyone. Come on in to the wonderful world of computers. Computers have a super positive effect on people. They help teach hand eye cordination. You can look at the screen without having to look down at your hand to move the mouse. You can see where it's going just by looking at the screen. Doing this helps everyday skills like playing sports. If you can use your eyes and your hands at a you can hit a baseball or even. Computers teach hand eye cordination by being able to do two things at. Would it be amazing if you could just find a recipe go to? Well, you You could simple A computer helps people different things. It's also easy different culture, people, and places. Let's say you @CAPS2 and you. A computer gives you any learn something. Computers and almost everyday. They give you @CAPS3 instance, @CAPS4 is a great way to talk to people. You can chat with people typing. Further sites like @CAPS5, @CAPS6 or @CAPS7 where you have you own page post your own opinions. You also have friends page to see how you are doing. These sites give people a chance to find with old friends. Webcam is becoming a huge sensation! Sites like or skype let you see and talk to the other person. They allow you to talk to people that you @MONTH1 and feel that they are there with you. Computers benefit people all over the world. but that doesnt. Computers help people physically by being able to learn new things, and with being able to computers arent taking over are only helping them." 5 5 10 +1408 1 "Dear @ORGANIZATION1, @CAPS1 is a lot of technology including the biggest hit, the computer. I say that computers have a more positive effect on people. Some reasons include that computers teach hand-eye coordination, give people the ability to learn about far away places, and even give you the ability to talk online with other people. Where would we be without computers? First of all, is that computers teach hand-eye coordination. People that type slower usually have poorer hand-eye coordination. Of course with faster typers, they have better hand-eye coordination. @PERCENT1 of people including teachers agree with this. Is this why @CAPS1 is typing ""lessons"" in computer classes in elementary school? The answer is most likely going to be a yes. Second of all, is that computers give people the ability to learn about far away places. Computers give you more resources than a book. Using the computer to go on multiple websites, is actually easier. Using these websites, people can have a higher education. One teacher said, ""using websites is so much easier for everyone. Using them for homework and having the students take notes is a lot less difficult."" And to that I agree entirely. Finally, computers give people the ability to talk to other people online. Using things like @ORGANIZATION2, @CAPS2, @CAPS3-mail, and video chat. All of these, and more give you the opportunity to chat with friends living far away. That way friendships are never really lost. People never want to lose relationships. Losing one can be very sad. I know this from personal experience. In conclusion, this is why I think that computers are a positive effect on people. From learning to chatting, computers are a great way to chat with friends and even do homework. Hand-eye coordination included. All of these are positive effects don't you think? I think so and this is why I believe that computers are a more positive effect than a negative effect on people." 4 4 8 +1409 1 "I believe that computers make everyday work easier to do. Computers allow someone from a faraway place to talk to another person who they cant see in person, they allow you to get work done in a quicker manner. And get a college education without leaving your home. Imagine that you have a relative who lives a great deal of miles away from you and its too expensive to call or fly over there. Computers enable us to communicate with them through email or video chat without the hefty price. Because of computers, talking to your faraway family is a few clicks away. Getting work done can sometimes feel like another chore. Computers only make doing your work easier and faster. Would you rather sit and write out a term paper for hours or type it up and email to your in half the amount time college students find that computers get them efficiently than writing by hand. Computers are way to burdens of work. Education is an of all need, but what if the college that you want to attend is too far from home and you cant afford to move in ? Thankfully, online college courses are available. If it wasnt for this source of technology, you would be left to do what? Online courses allow an eager student to learn without breaking their bank or leaving their child if they are parents. Without computers, everyone would not be able to get the education that they have a right to. Computers have allowed us to communicate with our family that live somewhere we cant afford to travel to. These technological devices have enabled to us to get our work done in a timely matter to receive the grade that we deserve. Computers have allowed over @NUM1 citizens to get their education right in their home at a price they can afford. Without this gadget, we could not be able to live the life we have @DATE1, a life that can get us to where need to be." 4 5 9 +1410 1 "Dear @PERSON1, The use of computers is not beneficial to our society. I fear that many kids will suffer from child hood obeasity, this is because of the inactiveness of so many teenagers my age. They @CAPS1 could be enjoying life outdoors and staying active, but they choose to sit infront of a screen all day, everyday. Researchers have proven inactiveness is at large due to many, facebook, mysape and twitter users. These websites are nothing but trouble, other than being unhealthy, teenagers all over are being cyber bullied, to the verge of suicide. Many are not aware of the several pedifiles and creepos these sights carry, which can lead to abduction, rape or worse. By staying active and being outdoors with your friends could save you from these dangers. Go outside run a little, you would be amazed how much a little exercise can help you. Also I firmly believe time should be spent with your family, doing family activities and eating dinner with your parents. By doing this you become closer as a family, and it could help you make healthier choices keep exercise. I believe by following these simple steps, staying active, staying off the computer and spending time with the family. Is much more beneficial than learning how to type, or talking to your friends. Using the computer leads to cyber bulling, and dangerous people, living healthy is the way to be." 4 3 7 +1411 1 "Dear Newspaper, @CAPS1 do you feel about computers? I know that I think they are a great to we are lucky to have them. They have to be used in moderation though, because exercise and staying healthy is good. I hope you will share my opinions in your next article to help pursude readers on my view of computers. What I believe is the best thing about computers, is that it is a great source to learn. The internet can connect all over the world, and you can learn about other cultures. You can know everything about that country without ever visiting! Or you can use it to find out about you family's history. Many record keeping systems are switching to computers now. When we took a field trip to @LOCATION1 they had data bases there that had every name of the people that went through there. Studies show that @NUM1 people find the internet easy to use, and quicker than any method. Another thing about computers is they help you in the work place. Lets say you had a job designing houses to be built. In old times you would have to draw it out by hand using numerous instruments and tools, but now you could make the design using just one tool, the computer. It is a much away way to to you job and if assists the customers because before if the wanted the house to be a different you would have help to draw it all over again. Now you just have to make an ajustment on the computer and in seconds its done with the new design. These day if not @PERCENT2 then @PERCENT1 of house designers use computers. Computers also play in a social role. On the internet you can connect and chat with friends. Also you could share pictures of both of you at a baseball game @DATE1 to keep memories. Or you can send them a website with a really funny video of someone getting with a soccerball. Experts did a study and it showed that @NUM2 times the reason a teen goes on the internet is to connect with friends. ""@CAPS2 @PERSON1 (computer expert and developer) what do you think the number one reaso teen use computers teen use computers is?"" @CAPS3, I would have to say to chat with friends. I dont see why they wouldn't, it's simple and almost in ."" Computers are, a great advancement in our technology. They assist us in everyday life, life and make difficult tasks simple. They should not be over used though and you need to keep a healthy mind and body. All of the thing we could learn from them though help in the argument of that. To me the computer is the same step forward as the light bulb was. Computer source found @PERCENT3 of in @LOCATION2, and. I believe they will be in all of our homes. Some families find them @CAPS2 useful the have more than one in the household. They can come in all shapes and sized to fit your wants and needs, and can connect you to anything in the world." 5 6 11 +1412 1 "Dear @CAPS1 @CAPS2 Readers, Some of you might think people exercise computers. They don't act outside enough or interact with family or pets. You also @MONTH1 think that they are not getting enough exercise.Well you are right but I am going to explain way your wrong. You can do things like learn, socialize, and actually become healthy. The first thing you could do is learn. While you are on the internet you can go to learning websites. Some of thoes websites can teach you about faraway places like @LOCATION1, @ORGANIZATION1, @LOCATION2 and many more. You can also learn about people and their cultures. Take @CAPS3 @CAPS4 for example, you could learn their culture and the @CAPS5 they celebrate and why. Another thing you could do is take online classes if you are having trouble in school. Another thing you could do so the computer is socialize. You might think or say that when you are on the computer you cant socialize with family and friends. Well you can. There are websites like @CAPS6 and facebook where all you do is talk to family and friends. Now you can webcam people. When you webcam you can see the person whom you are talking to you can hear them and they could hear you through a microphone on the webcam. Lastly you could go into chatrooms like @CAPS7 ( aol instant message ) and talk to people while you are on that sight. The last thing you can do is become more healthy. Is it not surprising? yes, you can go onto websites that teach you day by day how to eat right and exercise. Websites like @PERSON1 esang.com car give you a might eating schedual right for your . After that website you could go out and get the you will need. Another thing that the computer offers is hand-eye coordination. While you are looking at the screen your had is controling the "" mouse"" while the, mouse controls where you go on the worldwide web. Lastly you will eventually want to go outside after visiting websites that show you moments and gardens of this world. So now hopefully you agree with me that computers do acctually benift some things in life. I have showed you what you can learn about, talk to people and socialize and lastly help you with your health. " 5 5 10 +1413 1 "Computors have definitely had an impact on society that changed the world. People and life are now smarter quicker, faster, and easier. People who live on opposite sides of the world can communicate in an instant, for free. But what effect does this have on people? Something this big and having such a long history can't be good for some people. I don't think for some people it is. To start with basic, some people get too obsessed with computers. If they have life problems then they @MONTH1 seek the solitude and privacy of unfiltered and limitless internet. Even if you use a computer to chat with people, it still is no replacement for the real thing. In fact, studies show that due to non posonal ways of communicating such as text messaging, email, or chat rooms, can severely restrict a pasons way of connecting with other people. Don't get me wrong here. I do use sites such as facebook to talk to people. So, I'm not going to state that online talk is bad. I think it's a very good way of keeping in touch with people you can't talk to in real life. And, it's a good way to help friends and be there for them. It's done in moderation though. Getting information from the computer is very debatable. Some could say that the people being informed is a good thing, which I agree. Some others could say that knowing too much will make our egos so big that we will be ignorant. I also agree with that. I would also say knowing some things are good, but be careful of knowing too much. One once I find computers to be great in is originallity. In a world where we are raised to kill creativity, I find computers to be part artistic. In a way. It's personally helped me to discover what kind of music, drawings, creations, etc. that I like. I can also share what I've made so everyone can see it. Or listen to it. Or try it for themselves. In conclusion, I think computers are a great tool for use in moderation. Some people who are obsessed, it can be problematic. I think they are a great addition to society though." 5 4 9 +1414 1 "Dear @CAPS1, More and more people use computers, but not everyone agrees that this benefits society. I support advantages in technology and believe that computers have a positive effect on people. Computers give people the ability to learn about faraway places and people, they allow you to talk to people online, and you can play games games that can help you with your school-work. Do you believe that computers give people the ability to learn about faraway people and places? You can use google.com and look up different cultures and find out how the stuff they do is different from us and what kind of food they eat. For example, in @LOCATION1, they sit on the floor @CAPS2 they eat. We get to sit at a table on our dining rooms or kitchens. @PERCENT1 of people in would floor. Surely, computers allow you @CAPS2 my cousin on the computer and @CAPS3 important to note that, on computers you can play games that can help you with your school-work. You can go on sites that you on your @CAPS4. Show you how your body works for @CAPS5, and tell you about the revolutionary war for @CAPS6 @CAPS7. These sites are not boring. This a whole lot of fun! Whoever thought that learning would be fun? I sure didnt. The time is now! Just think that people are spending too much time on their computers and less time exercising, enjoying nature, and interacting with family and friends because no matter what, people will always have time for that." 4 4 8 +1415 1 "Dear computer experts, @CAPS1 this: A family of four is sitting in a small dark room, not talking, not laughing, just sitting lazily in their chairs, hunched over & bored. They arent communicating with any of their friends, and arent really doing anything at all. They sit there like lumps. This would happen @CAPS5 we banned computers! Computers defenetly have positive effect on people because they feed you a constant stream of knowlage, they develop good hand eye coordination, and they enable the people who use them to communicate with others. Clearly, they are a positive addition to our world. To begin, computers bring you constant a stream of knowlage. My close friend @PERSON1 told me recently that she is sometimes sitting at home, and doing her homework, and she needs to look up something. She simply grab her computer, and the information is delivered to her with the click of a button. @CAPS5 she didnt have a computer sheld never obtain such knowlage. Second, in a survey of @CAPS2 @CAPS3 @ORGANIZATION1, @PERCENT1 of total computer usage is looking up information, and gaining knowlage. This statistic shows that computers defenetly help them when looking for information. Also a recent @ORGANIZATION3 article on computer usage states that @CAPS5 people didnt have computers, half of the worlds discoveries would not be around today. You can tell that the amount of knowlage that computers give us is very important! Next, using computers builds hand eye coordination as well. Childrens specialist @PERSON3 says, @CAPS4 need to be able to play video games, even though they are usually discouraged on the computer. They build fantastic hand eye coordination, and help with many things including @ORGANIZATION1 & sports. @CAPS5 there were no computers, this hand eye coordination could never developed! Also, at @ORGANIZATION2 in @LOCATION1, they limited computer use, and as a result of it, the sports teams there all got losing records. Could this be because of the lack of hand eye coordination of those students? Additionally, at @ORGANIZATION1, after a recent survey, it was discovered that @NUM1 students who play video games on their computers do better in gym class because of the added hand eye coordination. Clearly computers greatly build hand eye coordination. Lastly, using computer allows people to communicate with each other through email & other social networks. After a poll from www.@CAPS6.com, we have discovered that millions of users use the computer & @CAPS6 to communicate everyday. We wouldnt want to deny them of this, would we? Secondly, a friend of mine, @PERSON2, who goes to @ORGANIZATION4, says that the main way that she communicates with her friends & makes plans with them is by computer. @CAPS5 she didnt have one, none of this could be done. Furthermore, a recent article by @PERSON4 a teen specialist at @ORGANIZATION5 says that when people dont have computers & cant communicate or talk to the outside world, they are more prone to diseases & sickness like depression or anorexia. When they dont talk as much with their friends, these sicknesses are more prone to occur. This defenetly shows that communicating with computers is very important. Now, @CAPS1 this. The same family as before is sitting in bright, sunny room their computer screens flashing merrily. One of the boys calls out, hey, look at his and the rest of his family rushes to his side. Their faces aglow with this @ORGANIZATION3 information. You can see that computers have a positive effect on people because they bring @ORGANIZATION3 information, they build hand eye coordination, and they allow you to communicate with others. So, computer specialists, what are you waiting for? Go to your computers right now & learn some @ORGANIZATION3 things!" 6 6 12 +1416 1 "The advancements of technology has developed so much that it has become comenly known to us as a normal house hold such as we use it every day at work, home, schools, bussneses it has become a comen used item in the everyday life. Emails, researching, questions on the world around us. It is required at almost every job application and at school and every thing in between. It's the - @DATE1 - complete age. Computers are and every day thing such as email how thats something that I dont worry about that and also there used to file a tax return. Also it is used to make reports up for people. Computers have also become a comen used thing such as school that we use them for reports, studies, and some home work. Also buiseness use it to comunicate with corprat @LOCATION1 uses a wide stance of technoligy they rec got a whole bunch of apples. Last. Computers are required at most jobs, and @CAPS1 going to list a few state, schools, military defence, jobs for on missles A and thier satlelite communication shut dwn on all comunications cell phones one those plaines that if it the twin towers nitro in atrack, tracking the truck where it gose and the rest I know about computers is classifieded. And this is why computers are needed in this society to use every day and thier comenly used and that are requirded." 4 4 8 +1417 1 "Dear @CAPS1, Technology has made great improvements in the past years. Computers have now found a home in all most every buisness and home in @LOCATION1! Everyone thinks computers are so wonderful and can only positively affect you. But do they really consider both sides? Most likely not.. That is why I am here. Computers discourage exercise cut down the number @ORGANIZATION1 hours spent bonding with your family and are a waste @ORGANIZATION1 money and space. I believe computers should be re-examined and peole should stop depending on them so much. Which country has more than @NUM1 million fast food, restaurants currently functioning? Name the fatest country in the world. Who spends the most on unhealthy food? The answer to all @ORGANIZATION1 those questions is the @LOCATION2. With over @PERCENT1 @ORGANIZATION1 the population being obese, something needs to be changed. According to studies done by the @ORGANIZATION1 (@CAPS2), @PERCENT2 @ORGANIZATION1 people spend over @NUM2 hours a day on the computer. @ORGANIZATION1 those @PERCENT2, @PERCENT3 are over weight or obese. There is an obvious pattern. Exercising makes your muscles stronger, improves lung function and helps burn off unnessecary calories. People most definately need to get off the computer and exercise more. They might even like it. Spending time with your family can be great fun, as I recently discovered. Playing outdoors in team games brings out your competitive side, while board games challenge your mind. ""@CAPS3 who spend time with their family are @PERCENT4 more likely to do better in school,"" @CAPS4 @PERSON2 beyond. So what's stopping them?, Computers. Kids now find many internet sites online online more interesting than hanging out with family and friends. We need to turn @ORGANIZATION1 the computers, bring out the board games and keep @CAPS5 families together! ""In this economy, people cannot afford to waste money they don't have,"" @CAPS4 economist @PERSON1. And she is absolutely right! But what are @PERCENT5 @ORGANIZATION1 @CAPS6 wasting money on? You guessed it; computers. The average bill per month is @MONEY2. In a whole year your paying @MONEY1 for something you don't need! Computers also waste space. Along with needing a place to house your monitor, you have to find room to cram a printer, the hardrive AND all those wires. Who can find enough room?! I certainly can't. Although technology, namely computers, can be a wonderful thing, we need to look at the downside. @CAPS6 continue to gain weight, families fall apart and the economy collapses, all because @ORGANIZATION1 computers. We need to stop the problems and turn off the computers." 5 5 10 +1418 1 "Dear Newspaper, I am writing to you @DATE1 because think computers really effect people in a bad way. I say this becuause @CAPS1 you go on the internet you do not get that much excirse. You also don't get good grades at all! That's bad thing. Plus when on a computer there are some really wierd people. I really want you guys to hear out my story. Go outside! @CAPS3 mom I'm on the computer! @CAPS1 your on the computer to much you want want to get exersce. @CAPS1 you don't get excise you won't be healthy! you want get excise. Also you will obese you don't want that! For instance when your in gym class you want to be healthy. So you can and you will get a good grade. Do you want a bad grades? That sums it up on. You got an @CAPS2! On your report card? When you spend alot of your time on a computer then you will get addicted. @CAPS1 you get addicted then you will not do your homework then your grades will drop. You will get bad grades in school. Then you have a possibilty to stay back. Plus then the parents to flipout on. This is one of my reasons why computers effect people in a bad way! When you go on the computer you have @CAPS3 clue who you are talking to unless your thier friends. There has been very many cases that kids getting stolen because of facebook and myspace. @CAPS1 your kid goes on those websites than your kids' always at danger! There are cyber and they could find out where you live that information about you. For instance there was a case on myspace that a kid thought she was talking to a @NUM1 year old boy she was really talking to a @NUM2 something year old guy. Then the girl went missing for about weeks. That was. So you can never trust a computer. When you take a real good look at computers you will see they are just @CAPS3 good. All my reasons before. They are you will not get nearly the amount of you are supose to. Your grade will plummet down @CAPS1 you stay on the computer and they trick you. So even know you can communicate with your friends. Its just not worth it." 4 4 8 +1419 1 "Dear @CAPS1 @CAPS2, I have reason to believe that computers and other similar modern technologie is breaking up the world we once were. Things such as computers are a main cause of @CAPS3 lacking exercise, interaction with family and friends, and is also a possible danger to ones mental health. The leading cause of obecity and an outrageous amount of overweight people in @LOCATION1, is the fact that people spend way to much time on computers, and not excersizing. I have recently found out that in the @DATE1's the average familly had one computer (sometimes none). Nowadays, the average familly has up to @NUM1, @NUM2, or even more! Furthermore, the percentage of obese peoples has sky rocketed since then, because people are almost always on the computer, rather than exercising like they should be. A major reason that modern technologie has hur t our nation, is that there is an immence lack of communication and interaction between families. Families are fighting/arguing more often, and spouses getting in divorces because they never get to spend time together. Studies have shown that nowadays @NUM3 of @NUM1 marages ends in a divorce, where as in @DATE2, it was @NUM3 of @NUM6. Advances in technologie have astoundingly increased since then, and people are on the computer/phones/other @CAPS4 which is separating families everywhere. When impubesent children are trying to grow and expand their minds, all they are doing is sitting on the computer, and not getting the brain nutrition they need. The students in schools today are the future leaders of the world. Now the parents should be thinking, if they want their children to do well, or exeed their expectation in life, then they should not be sitting on the computer all day filling their-heads with nonesence. Now, computers do have the abillity to be educationally usefull, but do children use them that way? The answer in no, and, ""@PERCENT1 of the time, neither do adults"", state @PERSON1 from the @ORGANIZATION1. I hope you can agree on the fact that computers are causing more bad than good in familes all around the world. People are not getting the amount of exercise they need, aren't interacting with family enough, and these computers can become harmfull to the mental health of future generations. If famillies can minimize the amounts of computer-drawn activities, then I think parents all over the world can modify themselves about their childrens health." 5 5 10 +1420 1 "Dear Newspaper @CAPS1, @CAPS2 has come to my attention that there is a massive increase in people using computers in society. @CAPS2 can have its positive effect on people, but too much of @CAPS2 isn't a good thing. This is why I want to tell everyone about negative effects of the computer on people. We all know using computers helps people with all different kinds of things. They can help with business, interacting with family and friends, and you could even just use @CAPS2 for entertainment. Some negative effects that some people don't know, or maybe just ignore, are things like they can keep you from exercising, exploring nature, and you could spend so much time on your computer, that you could get addicted. There should be some way of telling the people that this is happening and is a concern. So I think that we should try to combine what people like to do on computers, with what they should be doing more often, like exercising. Maybe we could tell people that they can use their computers to contact people like friends and family to go out and make plans to exercise and have fun outside so theyre not stuck on the computer all day. We all know that computers can be a good and bad thing. They teach hand-eye coordination, give people the ability to learn about places and people in the world, and so much more. They also have bad effects, but that doesn't mean we should take them away from people. And you shouldn't be outside all the time, for the whole day. So I think there should be a limit on how many hours people spend on the computers per day. This way, people get what they want, and they have some time off of @CAPS2, too. Obviously as a result there should be something done about this computer concern. I hope I have persuaded you with my well-thought out thoughts and ideas. And hopefully they will lead you to an idea that will end in a helpful change in society." 4 4 8 +1421 1 "How does the computer effect people? @CAPS1 there are way's that computer's can be really bad and really good"", they're good. Because people who dont like writing usually just have a computer to type on. But people rarely do that, parent's and kid's stay on the computer not caring about nothing else but the screen the kid's stay up all night knowing they have school they dont even do their homework. I have proof my freind's, research show's, my mother also agree's. I suggest that you will agree on my opinion'. @PERCENT1 of my freind's agree with me because they have been through this, and they would'nt wake up to go to school. Dr @PERSON1's of @ORGANIZATION1 researched how parent's hardly spend time with their family. For example father's they basically always on the computer either working or looking up stuff. My mom say's that when she was younger she loved the internent. She never wanted to get off: @CAPS1 i hope youv enjoyed my opinion', thank's for even taking this time to read it. Thank's again." 3 3 6 +1422 1 "Dear @CAPS1, @CAPS2 is your opinion on computers? Are they good or bad? Computers, have not been around that long but it is contrivertal wiether it has a positive or negative effect. True they do help people research certain topics but they are also hazardous. I believe computer are not a neccesity to people. Computers are uneeded because people spend way to much time on them, then we begin lack exercise, and they become hazardous to everyone. First, computers are not a neccesity because people send way to much time on them. Once you are on a computer for over an hour to an hour -and-a-half the computer will start to effect you in negative ways. For one your eyes will begin to hurt. If you stay on longer than that you will start to get a head-ach. Soon your head-ach wil turn so bad you cant bare it. It will pound and feel as if its on fire. This happens because your brain cannot take in the brightness of the computer and @CAPS2 your reading or seeing at the same time. Most of the time this happens eventually you will lock yourself in time a darkroom to rest. Sometimes you don't get off till they have a stomach-ach too. After they get off and feel better they go back on to repeat the process. This is why, computer are an obstruction to us. Next, people begin to lose exercise. After being on the computer for so long all they have time to do is eat, sleep, and go to work or school. Computer have deprived everyone of the outside. They don't want to go out and get exercise and play around. Living in those conditions can only lead to one thing, obysity. Soon you will become fat. Life will become tough. And being fat also has a negative effect. For one you cannot run very long, you become weak, and for kids you stop growing. But the worst is you will not live as long as you would if you were healthy. So you see computers are a nucence to our society. Finally, computers are hazardous to the envirnment. There are @NUM1 billion people in the world. At anytime about @NUM2 billion are on some sort of electronic device. When you are on a computer, have you ever noticed the hot air blowing out of the fan. Now, have you ever thought were this heat goes. Well, it makes holes in the ozon layer and causes global warning. The ozon layer is the only thing keeping the sun's ultra-violent rays from scorting us. Now if everytime some turns on a computer @NUM3 of the ozon layer disapeared and @NUM2 billion people are on that would be @NUM2 billion mm gone from our atmosphere. Now think about global warming. If the ozon layer is like a bubble, the heat is trapped inside. So this heat will eventually heat up the earth. This will cause the @CAPS3 to melt and then the sea will rise. The @CAPS3 has enough water in it to flood the earth. Do you reall want that. Eventually we would drown and life would seece to exist. As you can see computer are a nucents. They hypnotize the young children and adults. They be helpful but more hazardous. Sometimes we don't even relize this. Computers are bad because people spent to much time on them, people lose exercise, and they are hazardous to us." 3 5 8 +1423 1 "People often say that computers and technology are bad for you, but yet i think they have helped our society out very well. Computers help people through there trouble. Computers make our lives easier. By, when you buy things now there are computers adding and subtracting your amounts, They help people find out where to go, And last but not least they help friends and family stay in tuch with each other. With out computers we would have to wait in longer lines for what we want to buy. For instince stop & shop they have computers to check out people and the lines are already long enough. If we had no computers the lines would be even longer because then the people would have to add up the money by hand. Also with out computers you would not be able to weigh you good as fast as we do now in grosery stores we would have to hand weigh it. With out computer days at the grorsury stores would be very long. Without computers you would not have @CAPS1 and places online that give you directions. You would have to have use the bid maps driving to places. Those mapes could get lost wile you are driving. You can lose yout spot, And some times you @MONTH1 mark out the wrong spots on you map. With computers you can have @CAPS1, Online directions that can tell you the fastest and easest way to get to your place. Also with computers it saves papers on maps and we do not wast as much trees. Have you ever been in the situation were you want to go visit your family member out of state but you just dont have the money? well many people have and now insted of waisting (the money they dont have). They can video chat, talk, look at peoples pitchers and keep updated with them on the computer. You do not need to spend tons of money on it, it is all free, they are social networking sites. That people use to keep in tuch with family and friends. Those sites you have to use on. the computer so with out computers you would have to travel in a car waste money and the air with your car. In conclution i think computers have helped out society out very well!!!" 4 4 8 +1424 1 "Dear @CAPS1, I belive that computers benefits the people of today. The invention of the computer had helped people to send messages and information to each other, helped students with school and allows children to have something to do when they can't go outside. Let me explain. The computer had created easier way for people to send messages and information to one and other. Before the invention of the computer, the only way to pass on information was by mail or phone. The computer sped up this process. In fact, people had recived information about @PERCENT1 faster with the invention of the computer. I was once able to send my friend an email about getting the homework faster than writing him a letter. Clearly, computers made it easier for people to comunicate with each other. Also, computers help students with school. Before the computer, a student had to use a type writer to type their papers. Using a typewriter, when they made mistakes which was on, they had to start all over. It;s a completely different story now. In fact, a study done by the board of ed. shows students write papers so faster and better with a computer rather than a typewriter. I remeber my grandfather told me about how he typed papers. It took him about an hour he typed papers. It took him about an hour and a half to write a paper on a typewriter, while the longest it took him was a half an hour on a computer. As you can see computers have helped students all across the . Lastly, computers supply kids with things to do while they can't go out side to enjoy nature. Many people would that kids would go on their computer when they were able to go outside. A study done by the @CAPS2-obesity shows that @PERCENT2 of kids would rather be outside playing and excersising than in their house on their computer. But sometimes, during certain weather conditions, kids aren't able to go outside, so they myt entertain themselves indeers. A study done by @ORGANIZATION1 shows that mere the @PERCENT3 of kids go on their computer when they can't be outside. If suddenly those kids lost their computer privleges, many of them will have little to entertain themselves with. Clearly, the computer occupies the time of kids who can't go outside. In conclusion, the computer has enormouse benifits on society. It allows people to send messages and information faster, helps students whith school, and gives kids something to do when they can't be outside. I hope that this letter had convinced you of the benefits of computers." 5 5 10 +1425 1 "Dear @CAPS1 post, Computers have been here for a while now and taking them away would be like forgetting all the progress we made in technology. Computers are everywhere in fact, seven out of ten families on my street own atleast one computer in their household. So why would we want to take them away? Computers are too useful. Computers are not only fun, but very resourceful. Anybody with a question faild easily hop on a computer, research it on google.com and find what they were looking for within minutes. I remember when I had a cut on my arm that looked weird, my mom was to heal a wound. She researched it and got how to the mark go away. The computer only benefits you in a way. Is most likely them youll be staying at in two weeks and realize they don't have a pool! Lastey, without computers we would have no communication with new or different people. Computers are great for communicating. People are able to comunicate through twitter, @CAPS2, and even youtube. The sites all help people make new friends online almost like pen pals on the internet. Also, if the majority of your family lived in @LOCATION1 and you were stuck in @CAPS3, you could easily talk to them through email or an instant messanger. Hopefully now you have a better understanding of how much of a lifesaver the computer is. Maybe you could even make next @STATE1 about how resourceful, beneficial and social computers are!" 4 4 8 +1426 1 "To whom it @MONTH1 concern, The @NUM1's ware the beginning of a new age, computers had just come out and were mezmericing people with its intelet. But now more and more people think its a waste of time. I for do want think this within these lives you will see my opinion take shape for the following reasons it's an information high lets artists expand their craft and engenirs are now able to plan buildings and bridges on their @CAPS1 to the internet student's and people are of knowledge each day the internet is essenicial to people writting an essay in fact the super intendent of schools in @LOCATION1 has stated that over @PERCENT1 of students will use the internet to help them write an essay. We also don't have to go to the library any were to do research because we have a whole library of information at our house (the computer) another thing is that people are now able to communicate all over the world which will allow us to learn about other staight from the source. Artists are now able to do things were now a new art form of video games has out artists do you like to express yourself do! Music mixing has became my and it is over the will sometimes add additional and lapse other tracks it they don't have to use a typing machine any just jump on the computer type a keyboard. You can use spell check and edit undo instead of having to throw away idea that you didn't like. Artists have been by computers, And lastly are how able to plan out how a building or bridge might look, (which also with the video game making) @CAPS2 can make the house of their when you plan buildings and bridges on computer you can which makes them stronger, before you even start building them with the new soft ware available today how certain structural under natural disasters so they can pick the has the abillity of becoming have way. I hope you can see using way eyes and agree that computers are thely an amazing they that lets got information also help" 5 5 10 +1427 1 "Dear @CAPS1, @CAPS2 you know that @NUM1 out of @NUM2 students in @NUM3 grade go on the computer each night to complete homework and to connect with friends and family? I think the effects computers have on people are beneficial for everyone who uses one. A computer can be used for communication, education, and for accessing important information quickly, such as the local news. Now, let me tell you why computers are good for communication. When I was in elementary school, I had a friend who I was very close to and a part of his life. Unfortunately, he had to move away. But I still wanted to continue to be friends and communicate with him every once in a while. A convenient way to do this was by using a computer. The computer allows you to easily contact an old friend so that you can @CAPS5 stay in touch. Different types of communication on the computer can be e-mail, instant-messaging, video chat, online chat groups...etc. This helps people stay connected. That's why I think communication is the biggest effect on people due to the use of a computer. But, a computer can also be used for learning. At school or work, both kids and adults need access to the right information about research projects, vacation spots, learning about animals, food, cultures, and sometimes things as complicated as scientific chemicals. For example when my class researched different things about the @CAPS3 @CAPS4, our main source of infromation was the internet on our computers. We researched the customs, the foods, the way of dressing, the traditional holidays, and their way of entertainment. Also, kids come home from school and upload their essay and continue to type it. This is teaching them hand-eye coordiantion, and how to type. The computer is not @CAPS5 used for just communication. It's a good way to educate everyone although the internet can be used to pass along important local and global information. ""@CAPS6 and adults often check their e-mail and homepage everyday for the latest news on other countries, our country, the government, and the economy, ""says expert @PERSON1. I think that the internet gives citizens a fast and easy way to access information about what's going on in our town, state, country, and world. For example, it can tell us about the series of shootings goiong on throughout @LOCATION1 or the many house robberies in our town. Us, @CAPS7 citizens, wnt to know everything... for us to stay safe and notified on the latest. Another example is that I logged on the computer three dats ago and it notified me about the earthquake in @LOCATION2. But there are so many benefits of a computer. The effects computers have on people are beneficial. It allows people to stay in touch, learn about places and people, and to stay up to date with the latest local and global news. I think you should take my ideas into consideration and publish them for everyone." 6 5 11 +1428 1 "Dear @CAPS1 @CAPS2, I think computers do benefit society because computers can do alot of things like teach you. Computers are very helpful now, mostly every thing gets done on it. The computer teaches good eye cordination, how to focus, and show you stuff you don't know about. Without an computer you really can't get any thing done or reddy. A computer can be helpful for lots of things like job aplications of taxe's, or at a grocry store register, typeing and being on the computer is exercising but not for your body. When your on a computer exercise your hand's and your brains. With out computers you really cant do any thing. Mostly everything you do in life have to deal with some type of computer. I think that the people that said they shouldnt be on the computer is wrong because they can interact with there family that's far away thats also on the. You can enjoy nature by just takeing a look old you don't have to walkt out. Thats why I think computers are positive and helpful." 3 3 6 +1429 1 "Dear @CAPS1, I believe that computers have a positive effect on people. Three reasons why I think computers have a positive effect on people are that you have the ability to talk to your friends and family, also talk to other people around the world and you can even shop online. Without contact with your loved ones is sad because if you wanna talk to them you can email them to see how they are doing. With emailing you can send messages to your friends in any part of the world. One example of this is if you have a friends in @LOCATION1 and you wanna see if he's doing @CAPS2 you can send him a message. Talking to people on the web is really fun because you can se what or people are playing games with you. If you are on facebook or myspace you can add people as your friends so you can friends. Shopping online is more faster and more quicker than shopping at. is that if you shopping for clothes and there's a then you'll start to go that's why there is online shoping so that we can. You can. In conclusion is a very useful thing. talk to your relatives from @LOCATION2 and you can shopping without the waiting in line. The can talk to other the world." 3 4 7 +1430 1 "Dear Local Newspaper, @CAPS1 you think computers have a positive or negative effect on people? In my opinion, I would say that computers have negative effects on us. This is because we would get less exercise, less time to enjoy nature, and interacting with family and friends. If your on the computer most of the time at home, how would you get your exercise? You wouldnt because the whole time you would be stuck sitting down at the desktop. This is also a proble because this is how obeseity can occur from no exercies, and just sitting all day. Or people who have heart problems nad need exercise can worsen by being distracted by the computer. Being home on the computer does not let you enjoy nature. Instead of going outside in the warm wheather, having fun people are staying home. This is not good because they should be out having fun, not on the computer all day. Missing time with family and frinds is unexeptable when your on the computer. This is because yar supposed to keep your family and friends company and not daze off on what your doing on the computer. Also you miss family gatherings or leave yar friends lonley. Thats because yar to busy on the camourar nad not paying attention to anyone arand you. This is why I think computers have a negative effect on people. This is because of less exercise, less time to enjoy nature, and interacting with family and friends." 4 4 8 +1431 1 "Dear Local newspaper, Technology is a ever evolving thing and more and more people are using it. With more people making use of computers, will be the more technology benefits our society. Through the use of computer people will be taught hand-eye coordination, be presented with the ability to become educated on distant places, and also allow people to talk online with other people. Through the use of computers people will be taught hand-eye coordination. A effective skill to learn would be hand-eye coordination, the benefits of this would be outstanding. Having great coordination would mean that person would exceed past anybody who do not use computers. Advanced coordination would mean that person would able to accomplish more things like fast typing. Finally better hand-eye coordination means that person will be more likely to obtain a job in a field that needs good coordination." 3 3 6 +1432 1 "The @ORGANIZATION1 @ORGANIZATION1 Newspaper just found out that there is a big arguement going on saying that computer are not benefiting society. The other side those who support advances in technology believe that computer have a positive effect on people. Well the @ORGANIZATION1 had to choose a side and the side that they have chosen that computer have a positive affect on people. Yo know why we pick this side because are three reasons why computers are good. Like number one they teach people about far away places and people, @CAPS1 computers are a good sorce of entertainment, and last but not least @CAPS1 computers are good chat room. When @ORGANIZATION1 @ORGANIZATION1 are finished telling you why these three reason are good the peoples @CAPS1 computer will win this war! First reason is do you like wasting time walking though the library looking for places or @ORGANIZATION1 people. Well if you have a computer you do not have to deal with these all you have to do is go to sarch and put these person or place name and you will see that in less than a min you have information that will take hours to find in a library. I know this because it happen to me looking for a book that talks about the @CAPS2 caladers. I could not find I had to go on a computer for the information. Secound reason why because computers are a good sorce of entertainment. You know if you got bord and you have computer you can easily just go on it and play so many fun games like @CAPS3 @CAPS4, dragonwars, or any fun game that you can find on a computer. There are so many games to chosse from that you will never get borad. Third reason is the computer is a fun way of talking to friends or family. Like are so many sites that you can chosse to talk to friend or family like @CAPS5, @CAPS6 or even @ORGANIZATION2. Also did you know you can send videos or even pictures of stuff to friends or family. So go on a computers and talk to your friend even that person a picture or something. My cunclision is I hope you take want I said to heart and chosse want the newspaper have as a dision." 4 4 8 +1433 1 "Dear local newspaper I think that the effects that computers have on people are that some people become very adictive to them, because some people spend lot of time in the computer doing noting because they just spend their money buying things that they don't need. I also think that computers affect people in the way that they don't spend lot of time with their family. The effects that computers have on people is that some people can't stop using them even if they want. People become very adictive to computers because they spend almost all their time in there. People don't exercise no more because they spend all their time on the computer, shoping things that they don't need they just buy them because they like them. The effects that computers have on people are that some people just to be talking to their friend on myspace. His facebook and other websites that are not good for them. I think that the effects that computers have on people are that they take away people's time because some people spend lot of time on the computers, living their family's alone without spending time with them. Computers take away peoples time because they don't spend time exercising or playing out side with friends or brothers or go to a park to spend same time with their family or have a contact with family and invite some friends to come over to have some good time instead of being in the computer all day without doing nothing. Computer's take away time or love for your family and they make you spend the time that you don't have. The effect's that computers have on people are bad because people can't stop using them even if the wanted to because they are all ready adictive to them. People can't stop using them because in the computers you could do lot's of things like shoping talk to friends and visit websites that have very interesting things from other countries that are very beutiful but some people can't stop using them because they go to play games or because they are down loding music from websites that they don't have to. In conclusion i think that the effects that computers have on people are very bad because some people spend lot of time on them and they even spend the time that they don't have and the time they need. I also think that computers affect people because they don't spend time with their family sharing good things. The effects that computers also have are that people can't step using them because they are adictive to them." 4 4 8 +1434 1 "Did you know that @PERCENT1 @LOCATION1 people use their computers extremely often? Not many people don't have a computer these days and sometimes it's hard to get away from it. I think most people can control themselves, though I believe that computers are very important and also have a positive effect on people. I use the computer to talk with friends and family, to help with my homework, and I am still active. I spend quite a bit @LOCATION1 time on the computer, yet I am still a very active person. I take dance lessons twice a week and when I can. I ride my bike, play outside, or run on the treedmill. I would say that I am a very healthy person. It @MONTH1 seem like I am on a lot, but really I have something. Also, all my friends are on the computer and some @LOCATION1 them are more active then me. Most people spend lots @LOCATION1 time on the computer and are still healthy and busy with other activities. I would definetly say that I interact with my family quite a bit. In a family @LOCATION1 it is kind @LOCATION1 hard not to. Also, I hang out with my friends every chance I get. I interact a lot but the computer lets me talk to them when there not around. Most @LOCATION1 my extended family lives in @LOCATION1. The computer lets me communicate with them and even exchange digital pictures. Sometimes your friends. This has happened to before and I were too busy to get together or it was snowing and my parents couldn't drive. We still got to talk and have a nice conversation. Some people have to be on the computer all day. my mom keeps the books and managers many things for a company. She spends a lot @LOCATION1 time on the computer whether she likes it or not. This really cannot be helped. Sometimes it is just necessary. Also, teachers use it to help them teach classes and prepare materials for it. As s result, I use it for homework. I @MONTH1 need to check my homework, research a topic, or use it for help. I think the computer is absolutely necessary and is a very irresplaceable piece @LOCATION1 technology. I'm sure you will now agree that computers are helpful, not harmful. As long as you get equal amounts @LOCATION1 fresh air and family interaction, they have a very positive on people's lives." 5 4 9 +1435 1 "Dear @ORGANIZATION1, A recent survey said that @NUM1 out of @NUM2 doctors think the advances we have made with technology and computers is helping us rather than hurting us. I agree that computers are having a positive impact on us. Advances in technology are helping us become more efficiant. Computers also give us the ability to research places and things we @MONTH1 never get the opportunity to see in person. We are also able to talk online with other people who we might have not met otherwise. The most important, though, is our advances in technology. Recently on the news I saw a segment of how at @ORGANIZATION2 they are using robots to make surgery more efficient. This also means that there are smaller incisions being made, so that means a faster recovery. Another part of society that has been advancing is crime solving. Before there were computers, there was no blood testing, no fingerprinting, and most likely no x-rays. Computers made these things much easier for people to accomplish. Computers are also useful for lending us the ability to research far away places or other topics that they @MONTH1 just have. Some people @MONTH1 never have the opportunity to go to places like @LOCATION4 or @LOCATION3, but with the computers it's almost like they have been there. Or maybe is in @CAPS1, but @CAPS1 isn't a very popular sport in @LOCATION2. And then they go on there computer and see that there is a ragby @LOCATION1. Then their problem is solved. When you go to a new country, you also get the opportunity to meet new people. But with computers and online sights like @CAPS2, @CAPS3 or you can talk to virtually anyone in the world. I could be sitting in a chair at my home in @LOCATION2, and be having a conversation with someone across the country, or maybe even across the ocean! Or possibly you could be talking to some of your really close friends who live just across town. Either way, the computer is a convinient place to go and talk to someone. I believe that computers are doing us more good than their harm. Our advances in technology have helped us emensly with things like games and robotic surgery. They also give us the ability to search topics we want to know more about or a faraway place we've never been to. Finally, we are able to talk online with people that @MONTH1 just be across town or across the ocean. I hope that my reasoning helps you understand my point of view." 5 5 10 +1436 1 "Dear @CAPS1, you sit down at the computer with a glass water and an afterschool snack, possibly an after work snack. You log on to your many accounts, open some chat boxes with your friends & start researching for your project. As more & more people log on to technology, they seem to come out with new things for computers. Some people are missing out, & dont see the negatives, like social relationships failing, procrastinatting, lack of learning & more! Beep! one new @CAPS2 message. On the computer you can talk to your friends & family, but sometimes people are on so much that in real life relationships fail. You cant type a @ORGANIZATION1 message or hide your feelings behind a screen. Also for kids when they get older, many jobs require customer service, and if you only are good at talking to people on the computer, it cant help you. Whatever you say on the internet can be read & posted anywhere, any site, any time, whereas in real life its really you talking. School are learning are very important too, but sometimes I know I have homework but procrastinate and say ""@CAPS3 @CAPS4 do it later, i need to check this out!"" putting my learning to a stop. Some people dont like school, but its very important in a persons life if you like to be successful, you need to balance school, learning, computer time, and dont forget exercise & possibly work! Computers can be helpful with research & guides, but facebook or twitter is going to slow you down. So buckle down start that research! Chatrooms, @ORGANIZATION2, email and other things can be harmful to you. There are many predators out there who are just waiting for anybody to log on. Its very dangerous, and someone can pretend to be someone there not. Also, computer all day with no exercise can lead to obesity, and sometimes your hands posture can give you carpal tunnel syndrome. There are many bad things that result from computers. Many times in your life youll need to find a balance. Dont overlook the negative or you could get hurt. Computers are nice to have, but be careful not to whittle away all of your time on it!" 4 4 8 +1437 1 "Dear @CAPS1 @CAPS2, I am writing to you @DATE1 because of the concern of people that have computers. You are concerned about people whom own computers aren't spending time either excircising, enjoying nature, or not interacting with their family. I agree with the fact that @CAPS5 people have computers they become lazy and don't spend time interacting in any activities. I was in @CAPS1 one day and made a survay, for how many people agree that not many people because of computers aren't interacting in any activities. @PERCENT1 of the people I asked said they agree but of corse the others didn't care much. Many people @MONTH1 think it's normal but I checked a web site that specializes is weight and how to get to your feet and loose weight eazily, that web site is @CAPS3.com. I read an article on the web page and on paragraph @NUM1 sec. @NUM2 it states that the obesity in the @LOCATION1 is caused by either computer and/or lazyness. Of corse some people might disagree but at the same those people who disagree are big time athleats who do both. I had a chate with @PERSON1, a pro @CAPS4 player he said,""@CAPS5 I was a kid we didn't have those things we were either doing home work or playing outside with our friends. ""Even big time athleats agree. Well in conclusion I agree with the fact that because of the fact that people have computers makes them lazy and do not interact with their family." 4 4 8 +1438 1 "Dear @CAPS1 @CAPS2, @CAPS3't it about time we start thinking more about the digital age. Computers has contributed so much to society for many years and up to this point I don't believe the world would be able to function without it.Some people say that computers @CAPS3't good for society but do they really believe that computers gave us the internet, email, most jobs depend on the internet, even games, and many more let me explain. First of all without computers there would be no internet and without that many jobs would fail. Most jobs need the internet to work like architects need the computer to design buildings and houses. Almost every office has computers for many different reasons. Writers need the computers to wright books, if they were hand writen some people might not be able to read it, so if there was no computers thousands of people would loose their jobs. My mothers works on a computer she would loose her job. Not only that but we need computers for school. If I had to write a paper on a person it would be almost impossible to do without looking up information about him on the internet. Also with writing a paper, some teachers only exept typed papers. How are we suppost to do that if we didn't have computers that makes home work a lot easier. Lastly, computers lets us explore new places. Goole @LOCATION1 is a map of every place on @LOCATION1 that we can see. If you need to find out where something is you can always count on the internet. If you need direction you can print them out off the internet. Also if you need to find out what somthing means instead of using an dictionary use the computer. Now can you see how much the computer benefits society. Some people say that other people take too long on the computer but you don't have to. I don't know any one that uses the computer for more then work or school." 4 5 9 +1439 1 "Dear local newspaper, I am sure you will agree with me about keeping the computers in this world. I am sure you will agree with me about keeping the computers in this world because computers help everyone in their education. For example when i don't understand some words i go to the computer type www.dictionary.com. Then i words that i don't understand. After that the definition comes up and in a faster time because when i look in the dictonary i take about @NUM1 to @NUM2 minutes to just find a word but on the computer it takes me @NUM3 seconds. Also computers let us chat and send massages when we can't see or take to a person so we send massages and the receive the message them they send back a message. Lastly computers help on english class like on spelling, writing, typing, editing & revising. That's why i think we should keep computers in this world. I know everyone doesn't know everything. Computers could help us in math, by using formilas and a calculator on calculator.com. Also computers help in science, by going to @LOCATION1 and asking questions like, ""what is matter or what are . Finally i am gonna talk about not understanding some words. I always go to dictonary.com so that website could give and help understand the word and get the real definition. I always use these @NUM2 websites when i am stuck in math or science or in english. Those websites could help a lot in our education. That's my way of thinking about the computers helping us in our education. My parents are always staked about me talking to my friends and hanging out with them. So, when i can see or talk to my friends i go myspace or facebook or msn to talk and send messages to my friends. We just keep chating and sending can messages because our parents don't let us hang out. Mostly everyone does the same. I do we could also send much other pictures, music and lot more. That's my opinion of why we should have comuters because we need to chat or send messages. At the end you know we all need to type our essays, lesson and more. The computers help use make power points they check our spelling, the could also change why we wright like cursive and more, they also help in editing & revising. I always keep sending words wrong. So the computer help me on spelling it also makes your project look better. That's why i think" 5 5 10 +1440 1 "Dear @ORGANIZATION1, it has come to my attention that more and more people use computer, but not everyone agrees that this benefits the society. I strongly believe that computers do benefit society for three reasons. First, computers are a great source to do school work on. Computers let you learn more information. In addition, computers are a great way to keep in touch with friends and family. Clearly you can see why computers have positive effects on people and society. My first reason why I believe computers benefit society is because computers are a great source to use do school work with. An example of this would be if a science teacher gave their class an assainnment to do that had to be typed. Its impossible to type an essay without a computer. Further more, if the project or assignment needs to have information looked up and their is no time in your day to go to a library, the computer is a great source. Now doesn't that make sense? Computers don't just help you with homework, but many people go to college online also. My parents don't have enough money to afford me to go to college, ""says @NUM1-year old @PERSON1,"" so I take free course online and they work great! ""@CAPS1 it obvious that computers have a good effect on people? In addition to schoolwork, computers are a great place to look when you need information. For example, you have just bought a new house and want to know more about that area. The computer is an great place to look at updated pictures, and learn about your new hometown. Sixty-nine percent of people use information from the computer to buy a home. People @MONTH1 also want to learn basic information about bears or bees is my belief that the computer is a great source to do learn infromation obviously, computers have a great effect on people and it benefit society. Lastly, computers are helpful ways to keep in touch with family and friends. ""I have my whole mom's side of the family living in @LOCATION1. When I get to use the computer to keep in touch with them. I feel closer and part to keep in touch with them. i feel closer and part of one big happy family,"" @PERSON2 of @STATE1, @NUM2, says. People who have family living in other states, countries and even other countries, don't get to see eachother every day of the year @CAPS2 is why computers can help, the people keep in touch. Another example would be if your mom or dad went away for a few days, weeks or months and you wanted to talk to them of ten. A good way to do that would be using email or instant messaging. Therefore, i strongly believe that computers are great for people and do benefit the society. to sum it all up, computers benefits society and have possitive effects on people. Computers are great sources to do school work, they give you information your looking for, and are great ways to keep in touch with family and friends. Clearly you can see why I strongly believe that computers have a strong and possitive effect on people and benefit the society. Thank you!" 5 5 10 +1441 1 "Dear local nepaper, I have reacently heard about the idea of computers are not very productive. Sure, people get informatin and talk online, but that can be a bad thing, I agree with computers being overcused and used for the wrong reason. To me, the main source of communication is chatting online. Even I talk online all the time. Chatting online is also a terrible thing if you abuse @CAPS1. Children aroung the world talk to people they hace never seen. People are being abroad because they believe the person they are taking to is the real deal, @CAPS1 is a great way to communicate just not in the wrong ways. Plagourism is happening all over the world, People just take whatever they want, when they did not create @CAPS1. We take if you are caught doing @CAPS1, you can go to prison. Although there is a way we van help the plagorism. the internet has all the information in the world, and people abuse @CAPS1. I have seen papers that have information that they copred and passed @CAPS1 to their paper. You can tell because @CAPS1 is a different for than the others, and bad things happen. Teachers immediately you have to talk to a supervisor about @CAPS1. I know I will try my best to not playorise, I can start by getting my own information. Everyone loves computer and technology, but if everyone can just lay off the computer for a while, things like plagorism and the abuse or online chatting can be limited. " 4 4 8 +1442 1 "I think @CAPS1's should use computer's so they can help their self's by using a computer? First @CAPS1's should use computers because if they wanted to take notes on what their doing they can just go on the computer and write it. The Computers are faster than just writing. On a computer all you have to do is type. You can use a computer to look up what ever you want to look for example: the teacher ask to look up a giraffe. The only place you can find a giraffe is if you go on the computer and search a giraffe. That's a reason how to look up things it is easier to look up things instead of looking it up the most way. Lastely, if you have a project you have to and it involves pictures and you dont know how to find it all you just to do is go on the computer find what you searching for and then we are done after you found everything that you see @CAPS2 to let students use computers insde classroom/schools for the they can get easy help." 3 3 6 +1443 1 "Computers have been one of technoligy's greatest advances, and yet one of society's downfall. Originally thought to spread ideas and faraway places, computers have been proven to do quick the contrary. Computers are dangerous devices, and are targeting young, wholesome kids. It is the main reason why society is today, predicting that this future generation is wobbling on an unsteady and weak foundation. These devices, the source of this mayhem, must immediately be removes from society because they take away the true benefits of life, have harmful effects on our health, and support some of the country's deadliest predators. Firstly, computers are linked with the crime of stealing the pleasures of childhood. Since @DATE1, the amount of adolescent users has shot up @PERCENT1. Amazing ly enough, @PERCENT2 of parents polled admitted that their children spend at least @NUM1 hours on the computer everyday. This takes away the pleasures or reading, exercising, spending time outside and hnging with friends and fmaily. These negative effects have an unhealthy toll on society, especially teenagers, the most frequent users. As a result diet and exercise are curtailed, raising the obesity number by @PERCENT3, and lock of ourdoor or family activities have promoted anti-social @CAPS1 this alarming rate out fufture generation @MONTH1 indeed be balancing on a cracked foundation. In addition to limiting diet and exercise, computers are also the source of yet another act. As long as the computers are plugged, they emit invisible wares of electromagnetic radiation. These waves are linked to diseases and cancers. Use of computers have to cause brain-tumors and leukemia, asw ell as brain disorder and cancers. Leukemia, when caused at a young age, is difficult to cuse and stants the child's development. Children exposed to at least @NUM2 hours a day to @ORGANIZATION1 compared to the few who spend their time outdoors are @NUM3 times as likely to develop such possibilities. The ultimate prevention to such risjs is to to the rest of such causes, computers and it completely. Lastly, computers are harmful because they also a deadly we open. As an adolescent unthinkingly says the web and chtrooms, they are at risk of atteck by thousands of children predators prowling the web. Computers contain extremely valuable and secret information, such as names, birthdates, genders and even social security numbers. With one click, acfepting a strongers inivte, the online predators hack into the child's computer and obation such valuable information. Or the predators @MONTH1 be less postive and attack directly-asking questions to the child themselves. In fact, a familiar story tells the unfortunate fare of one local @CAPS2 girl, who unknowingly chatted with an online stranger. This online predator smoothly invited her to the mall, where they moved. A couple devastating, weeks later, the girl's reamin in were found, burned, as the last deadly act the predator performed on the teen. Three for, computers are simply too dangerous, a predator's thumbbook as they search for their next victim. by removing the computer, you eliminate the threats online predators pose for your child and you as well. It is amazing to learn that technology's greates advanvcement, the computer, can unleash such harmful effects. Lack of engaging activities such as exercising and reading are stunded by the ever distracting computer its electromagnetic radiation attacks our health and lastly, it supports the acts of the thousands of cruel, sneaky online predators awaiting your child on the web. By removing the source of all these troubles, those acts can be prevented and society @MONTH1 begin to the pain for reform." 6 6 12 +1444 1 "A large amount of people use computers daily, but not everyone agrees this technology benefits society. I think that computers benefit our way of life in many ways. This very useful technology has a positive effect on people because, it allows people to send, receive, and research a vast variety of information easily. @PERCENT1 of people use the computer to get information and get it more quickly than reading a book about that specific topic. They say that this powerful technology has been more effective and quicker. My cousin and I were both given the same research paper to do. He used several books to get information on the topic and I used the computer. The project took me @NUM1 days to do, while it took him a whole week to complete. @PERSON1, computer programming expert, said, ""Computers have made receiving information so much faster. I vehemently believe that everyone should own this device. Moreover, computers help with communication. There are many ways to keep in touch with people over the world, like email, chat rooms, and websites like @CAPS1 and @CAPS2. These websites are a great tool to keep in touch with family and friends or even fans. @PERSON2, lead singer of the band @CAPS3 @ORGANIZATION1, said ""@CAPS1 is a way to talk to the fans directly ad post updates about upcoming tours and albums. Not only isit great for bands but it is great for college students. My older brother is a college student and we communicate through these websites so it seems like he is never that far away. The computer can also help with business. Meeting can be done through @ORGANIZATION2 or a different webchat service. Emails are a great way to send information. @NUM2 of business meetings are held over the internet has benefited work ethics. Please heed my advice and use the internet and computer. It will benefit your way of communication and your way of getting information." 5 5 10 +1445 1 "Introduction @CAPS1 cingle computer in the world should have internet. Internet helps people in meany ways. Ancybody can do there homework on a computer. You can even talk to your friends on a computer send emails to anybody around the world or just play coms. Teacher use computers because its the easyest to find information that they might need. Students can use a computer to do a research paper for lets say history. You can find anything about anybody or anything on a computer that has internet on it. Theres also a cool thing that is found on some computers its called microsoft word. It lets you right anything you want and if you mess up a word you can fix it if you wanted to. Some school-s actuly suply there students with there one partiple computer. They can do there homework when evertime want and just send an emal to there teacher that homework on it. Computer have @MONTH1 mark information then any book in the world. Because computers have way more storage for more information. Also the cool thing about a computer is that there are websites that let you talk to your friends that live near you. But you dont have to actuly co to there houses you can put pictures or you on facebook or myspace or any other site. You also can play games on facebook, myspace or any thing els. Schools should use computers because its the best way to get the information that you need to do something. Like science, math, or history homework. Or even just for fun or to learn something new that you never knew before. You should agree with me because everything I rote down was true and almost the best wat to get pictures or any information. That you need to do something. Or even just to talk to a friend that you havent seen in awile." 4 4 8 +1446 1 "Dear local newspaper, @CAPS1 people think that computers educate people for the future but I think that they actually harm children and adults as well. First of all, kids are so wraped up in computer games that they never go out and exercise. Second, if you ask a child anything about nature they will probably not know what to say, but they would if they spent less time on the computer. Finally, many families today never see each other because kids and their parents are too busy on the computer. These three reasons show why computers don't benefit society. Obesity is a huge problem among the children in @LOCATION1. The reason for this is that they are spending too much time online and not outdoors and exercising. Kids are not getting any fresh air or exercise and this can lead to serious health conditions. Parents sometimes don't do anything about it because they they have the same problem. This just shows that computers and other technology are effecting families around the country by making them overweight and. @CAPS1 children don't know the first thing about nature and. People say that computers educate people about things but nature and the environments is a big of our lives. The best learn about it and help. Computers the time they are, the earth might become even worse so they need to get educated on nature and the environment so they can. I know from my own experience that computers take away time from your friends and family. Instead of playing games on the computer at home, you could be spending time with your family in the park or the pool. My dad always spend his time on the computer and we never had time to spend with him. When he realized this he rearanged his schedual so we could have more time together. It is very important to spend time with your family because they are such a big part of your life and less of computer will help families do that. As you can see, getting off the computer will help kids stay in shape and healthy, educate them on the enviornment, and help families interact with each other more. If getting off the computer changed my families lifestyle then it will do the same to others as well. Hopefully you agree with me because it will surely tak a positive affect. " 5 5 10 +1447 1 "Dear @CAPS1 of the @CAPS2 @CAPS3 @CAPS4, computers are a wonderful tool and they bear many positive impacts on society first, computers have created numerous @CAPS2 forms of communication. Also, they have enable us to create a @CAPS2 age in research. In addition, computers have given us amazing @CAPS2 ways to entertain ourselves computers have a incredibly positive effetct on people. One reason why computers have such a positive effect on humans, is that we have developed many @CAPS2 ways to communicate with people all over the world. First, one fantastic program such as @CAPS5 (instant messaging) has given us the amazing ability to hold a conversation with one or more people any where in the world, and be able to respond within an instant. In a recent survey @PERCENT1 of people said that they prefer instant messaging over any other type of communication beside face to face talking, second, most computers come with webcams built in now, so you can actually see the person you are communicating with. I had friend move recently, and we are able to see what each other are doing and remain friends even though we don't live in the same town, and I'm sure a similar experience has occured to you or someone you know. Finally, the popular program of facebook has changed communication forever. People can now see things go on in your info whereever want. Although some it has a wonderful computers have established incredible ways of communication. A second reason computers positively import people is that they have created a numerous research. One example would be our phenomenon search engine, google. Google to almost everything with help people in finding schools now use computer resources such us @CAPS6 which allow in research to the fact that there is so much availbale on the. In addition, computers have created many opportunities for people to learn more because of the billions of web you in existance studies have shown that @PERCENT2 of people have found a website conataining information relevant to their research that was than a book. Computer are the reason that research has contuined to thrive and @CAPS2 continue to be made. Finally, computers have established amazing @CAPS2 entertainment for people of all ages. First, video websited such as youtube have created a place for people to watch music videos and creative films just to enjoy themselves. If you can't get tickets to a concert you want going online to watch music videos by that person is a much cleaper alternative, second, jaming websites are a less expensive, but if you go online you can play similar games at no charge. Finally websites with appropriate funny stories posted on them are a fantastic way to get the laughter of a comic, without leaving your couch wouldn't you prefer to stay home, rather than going out when it isn't necessary? computers are an incredible way to achieve quick, un expensive entertaiment in todays economy. In conclusion, computers impact proper in many positive ways. they're established now forms of communication, research and entertainment that will forever change society. Therefore, I invite you to join me to demonstrate the icrredible strenght of computers." 6 6 12 +1448 1 "Dear Newspaper, Have you ever stopped to think what modern day technology brought us? A great example is computers. Many people use this device to book vacation, talk and build relationship people and to discover new ideas the world have to make the disagree strongly. The hot sun glaring down at you just is killing you not to book a vacation to a tropical island! Many people go on vacation and what brought them here has when they sat and places. the computer looking at hotels and booking thou, This modern day technology has brought many humans to places they wanted to go. Over @PERCENT1 of @CAPS1's have a chat account to talk with family and friends. The country of europe to the @LOCATION1 is over @NUM1 miles and every time you make a call it can lead to alot of big kills. Modern technology has outsmost the phones and is now using the computer to talk to far away friends and family. In the progress the computer has put over @NUM2 of single people and expressing the relationship. Many arguments have been lead to because of the disagreement. Many critic and saying not many people interact with family and friends. On the other hand the computer has that many people are connecting and communicating @CAPS2 they can set a plan to @CAPS3 many critics have people and spends the computer. Although this is true there should desicions that will improve the health of the human by limiting usage of them. Setting standards on computers can improve this problems and help exercising. In this case I strongly disagree with the critics and for my side of good uses. If they took them away not only will people files fall but everyone will be disorganized in the bong run. Lastly discovering places and websites teaches even the smartes guy or girl something new. After reading this if have proven that my @CAPS4 should be admired by many people." 5 4 9 +1449 1 "Dear Local Newspaper, Computers! Computers have a great effect on people. The advances in technology with computers benefits the society. Computers give people a place to chat with others, learn on school websites, and it teaches people hand-eye coordination. Computers are changing the world throughout everywhere. Computers give people a place to interact with others. There are thousands of websites that have chat places and are online chat rooms. That gives you a place to talk to others and even see what might be going on throughout the world. Also, chat rooms on the computer can help friends always keep in touch. Studies show that ninety percent of @CAPS1 that have a chat room to go to with friends often have more friends than none. Obviously, the interactions with others on the computer have a great effect on people. School websites also give people benefits in our society. It gives us the ability to learn more about what we are learning in school and maybe the ability to learn new things too. When almost every school in the @LOCATION1 has a school website, that helps students who are having trouble in school I know that from my experiences that having a computer helps me in school whenever I forgot what my homework was or I need to study in a quiz or test, I can always go on my computer and find what I need for school. When the computer know that it benefits our society. Computers teach hand-eye coordination too. When you use the computer for games or anything you do it teaches you how to move the mouse quickly and keep your eyes to used on the screen. Whenever I have the ability to use the computer, I always do. That's because with all the and websites it will teach us hand-eye coordination with I'm just having fun. Ninety-five percent of people who use the computer enjoy to use it. That's ninety-five percent of people who are learning more hand-eye coordination. If that doesn't benefit the society, than nothing does. As I have shown, computers deffinitly do benefit society. I strongly believe that computers have a positive effect on people. That is because it gives people a place to interact with others, to learn things on school websites, and they teach hand-eye coordination. In conclusion, computers have a strong effect on people today." 4 5 9 +1450 1 "Click click, another information page opens up on your handy @LOCATION4 these trusty, smart, and easy to use divices are always a object to have. Although, people are now starting that these handy desktops are bad for your well-being oposing that people strongly think that we dont get enough exercise or outdoor activitys in. Well computers are such a great entertainment system also, have a vast information supplie, and even allow socialization with friends/ family. I don't understand why they say this. So let me express my love for computers to you. Televisions, radios, and @NUM1 payers are no match for the internet and it's great wide spread entertainment system. The computer has all of the faimly fun movies, itunes tracks, and even websites where you could make your own movies. Posting pictures on the @CAPS1 and sending them via email only by a click of your mouse. The internet is the obvious best reason for a faimly movie night. One of the greatest pro about the internet is the vividsorce of information. Google, wikipedia, or even dictionary.com are the greatest information sites of the @DATE1. As much as nature watching and exercise is healthy and fun I would rather learn about a sunny beach of @CAPS2 or the great landscape of @LOCATION1. If your looking up how to tie a tie or even info about your history report the @CAPS3 is a sure easy thing. How could you talk to your friend who is across the world in @LOCATION2 or germany. The answer is simple, skype, fiacebook, myspace and more are all available on your handy @CAPS3. Many sites have a no fee polocy so they cant charge them money for social living with friends. As a personal experience I could now talk to my cousins wqho live in @LOCATION3 and @LOCATION1 due to the great interaction site of facebook. And why would you take the time to run across town to be unsure that thier even there. Obviously internet is a great socializing activity. Now that I have stated my opinion about the wonderful effect of the internet such as the entertainment system, information about the history of the world, and even the socializing with friends. I'm people will open thier eyes see the great uses of the computer." 5 5 10 +1451 1 "Dear local newspaper, I think that computers have a positive effect on people because it helps them learn about foreign places, it allows them to connect with family and friends that live far away, and it helps them with their jobs. Computers help people learn about foreign places. Before my uncle went to @LOCATION4, he wanted to learn about their culture. He went on the computer and researched @CAPS1 culture, so that he can be prepared. How would you feel if you went another country and knew nothing about it? What if you were to go to that country and do something that was disrespectful to their culture, but you didn't know because you didn't do research on it? I know I would feel bad. Now some people might say that you can read a book on that country, but not everyone has time to sit and read a book. Computers make the world a little smaller and helps us learn about each other. I think that's pretty positive. Don't you? People connect with each other through the computer. More than @PERCENT1 of people who move away from their family and friends reconnect with them through computers. Nowadays there are social networking sites, like @CAPS2, @CAPS3, and @CAPS4, that gives people the chance to contact a family or friend that lives far away. When I moved to @LOCATION1 from @LOCATION2, I thought that I was never going to see my best friend again. But then, I got a @CAPS3 and found her on there. I was very estatic. We swapped numbers and addresses. Now everyday I talk to her on the computer. Also, the only way I talk to my aunty, who lives in @LOCATION3, is by the computer. I can't talk to her on the phone because that would run my phone bill up. Another reason that computers are positive is that is helps people find their biological parents or siblings. It brings them together and helps them reconnect with each other. Computers help people with their job. Anybody who is a @CAPS6 of a company has a laptop. It helps them store data, files, and important information. Computers are essential to these people. Also, it helps them keep track of their company if they go on a vacation. How would you feel if you owned a company and went on a vacation, but you couldn't keep track of it because you didn't have a computer. Computers have a positive effect on people because it helps learn about places, talk to their family, and keep track of their job." 5 4 9 +1452 1 "Dear @PERSON4, I strongly believe that use of computer is beneficial to the community. One reason I feel this way is that computers can improve hand-eye coordination and other skills. These computers provide access to games helpful in @ORGANIZATION2 training. In fact, @ORGANIZATION2, in @LOCATION1, @CAPS1, just began using these games as part of their training this @DATE1. Instructors report that @ORGANIZATION2 skills in trainees and students are far better than in years past. Additionally, computer games can improve reflexes. Two years ago, a man named @PERSON3, @NUM1 years old, fell onto the train tracks just as a train was coming by. Through extra-ordinary reflexes he managed to leap out of the way, saving his life. When asked how he did @CAPS5, he said he had been playing computer games since he was @NUM2 years old. These games also make you more intelligent. The @ORGANIZATION1's @DATE2 study reports that brains were @PERCENT1 more active after use of computers. The researchers achieved this data by attaching electrolytes to the patient's brain both before and after using the computer. @CAPS5 is for these reasons that computers improve hand-eye coordination and other skills. Another reason for why computers are beneficial is that they allow you to talk online. They even allow you to communicate with your family who live far away, strengthening your relationships. I recently got back in touch with my cousin who moved to @LOCATION3. Letters were too expensive and took too long, but email and skype provide us with a great alternative. These computers also improve social skills. @PERSON1, resident here in town, says, ""I love using computers because I can talk to my friends whenever I want, and I feel like @CAPS5 really helps us communicate."" Who wouldn't love a machine that provides a service like that? These computers can even improve your mood. In a test done by @ORGANIZATION3 in @DATE3, @NUM3 people were put in seperate rooms with personal computers for @NUM4 hour. Afterwards, @PERCENT2 said they felt an improvement in their mood. Computers are great because they allow you to talk online. Finally, computers allow you to learn about other places. Virtual tours are becoming more and more common today. Infact, at @CAPS2.org, you can take virtual tours of over @NUM5 different countries, including @LOCATION5, @LOCATION4, @LOCATION2, and @LOCATION6. You can also learn about other cultures and their traditions through online videos at youtube.com and articles at wikipedia.org, the free encyclopedia. You can even learn new recipes. Celebrity chef extraordinare @PERSON2 not only posts all her recipes online at mstewart.com, but she even finds some of them! In a recent interview by @CAPS3 magazine, when asked where she's found some of her best recipes, including her famous @CAPS4 chocolate cake, @PERSON2 admits she found most of them online, saying, ""@CAPS5's a powerful resource that more people should use. Al @CAPS6 currently owns the world's best cookbook!"" @CAPS5 is because of this that computers allow you to learn about other place. Thank you for your time, and I hope you take what I have said into consideration. @CAPS5 is for all of these reasons I strongly believe computers are beneficial to the community." 6 6 12 +1453 1 "Dear local newspaper, I have recently saw that you think that people are spending way too much time on computers instead of excercising or hanging with their friends and family. Well I think the opposite of that opinion. People interact with people online if the want to. People can also learn new things. Plus computers help people make money. So read on to hear more. Most people that use computers are interacting with people someway somehow. @PERCENT1 of all people have either a facebook, a myspace, a skype, or all three. on any of those sites you interact with people. We can meet new people on the internet. Like people on the other side of the state or country. Also we hear about what is going on in our big or small town. Like for instance if there was a missing child we know the description, so we could help find him or her. Not only do people interact bu people can research useful information. For an example, one day I was told do a project on teen mothers. I went straight to the library I took some books out and whatever I couldn't find in the books. I went to the computer for. Also we can learn about faraway places like @LOCATION2 or @LOCATION1. My mom always says, ""@CAPS1 your room or @CAPS2 going to give your stuff to people in need."" @CAPS3 the first time she said that to me I went to the computer to see how other people were having to me. Some were good, nice, big houses but tyen others lived in boxes and trash cans. That changed me big time, I felt really had for those people. Lastly computers help people make money and support their family. @PERCENT2 of all people found out about their job on a computer. Theycan go to websites to find good safe jobs that makes good money. Plus if you have a computer you can easily work from home. Some people dont have the money for babysitters so have to watch their kids all day so have to work from home to make money. Finally people can apply for jobs or even community service online. My sister, @PERSON1, got her first job by going on the @CAPS4 museums website and applying right there on the computer. Therefore computers are good. I say this because people can interact with other people online, people can research useful information, and finally computers help people find jobs and make money. Do you use computers for any of these reasons?" 4 5 9 +1454 1 "Dear Newspaper, @CAPS1's small world after all - and growing smaller as computer usage becomes more and more widespread. Thousands upon thousands of sites and applications are now at your fingertips. I firmly believe that the effects of computers are overwhelming positive. For one thing, they increase hand-eye coordination.For another, they are a great means of communication.Finally they are a very powerful research tool. Some @MONTH1 say that computers are lessening time with family and friends, but I don't agree. Computers help us stay more conected than ever! The computer is not evil - quite the opposite! First of all, computers are great for increasing hand-eye coordination. In recent study by @PERSON1, he noticed a significant increase in motor skills of children aged @NUM1 to @NUM2 when they used educational computer programs such as @CAPS2 @CAPS3 for just half an hour, once a day. Children who did not use the program were seen to develop motor skills at a much lower rate. Hand-eye coordination is a skill needed from birth to death, and should be encouraged as uch as possible. I know that @CAPS1 greatly helps me in my daily life - and probably you in yours as well - from the mos basic tasks of eating and brushing my teeth to typing, drawing, and playing piano. As you can see, hand-eye coordination is very important. Second in my reasoning is that computers are brilliant communication aids. People can't always be reached by phone. An email could be waiting for them online whenever - and whereever - they check @CAPS1. Also, documents can be sent over email that would be near impossible for a home phone and difficult for most cells to process. Revolutionary video-conferencing programs like @ORGANIZATION2 can even allow us to talk to people around the world, practically eye to eye. I use @CAPS1 to keep in touch with family on the @LOCATION2. How about you? Last - but (at the risk of sounding cliched) definitely not the least - computers are very powerful research tools. Everything from the schedule of the local zoo (thus preventing toddler meltdowns when one arrives only to find @CAPS1 closed) to the average life span of the @CAPS4 elephant (@NUM3 years). Rather than skimming book after books for a single piece of information, plug your query into any of many search engines, from @ORGANIZATION1 to @CAPS5., and find answers instantly. Find about @LOCATION3 without the expense of a plane ticket. See photos of @LOCATION1 - a sight most people would never get to see without the internet. The computer can take us anywhere. In conclusion, computers are a great resource that are often wrongly portrayed in a bad light. Computers teach and improve valuable hand-eye coordination. Also, they help greatly with communication. And finally, they are a powerful research device. Computers are oftern shown as the bane of society. This is simply untrue. They are an excellent tool for all ages. Technology is not our enemy. Don't treat @CAPS1 like one." 5 6 11 +1455 1 "To whom this @MONTH1 concern: I heard that people are having a debate to tell whether computers benefit us or are bad for us. I think that computers are great. They allow us to talk with people all over the world. They give us the ability to learn about things. Lastly, they save us money. Aren't these all things benefit us? I think so. Please keep reading to hear more about why computers are good. First off, computers give us the ability to talk with people all over the world. A lot of my family lives in different @CAPS1, and thats how I talk to them is through the computer. If you move away from all your friends and family, wouldn't you want to still keep intouch with them? Well you could by chatting with them on the computer. To keep the ball rolling, computers give us the oppirtunity to learn about different things. If I go on ""@CAPS2.com"", I could type in anything I want, and get information about it. Or I get an answer to a question. Are you a parent that wants to know how their child is doing in school? You could go to their school website and check their grades in each class they have. To wrap it all up, computers save us money everyday. If you needed to look up information for a project without a computer, you would have to drive all the way to the library and buy a book. But with a computer, you could get information easy in the convienience of your own home. In conclusion, you could see that computers benefit us in many ways. Thay give us the ability to talk to friends and family all around the world. They give us the oppirtunity to look up information quick and easy. Lastly, they save us money everyday. Thank you for reading my letter, which I'm sure has persuaded you to think that computers are a good thing." 4 4 8 +1456 1 "How would you like to got a ""@CAPS1"" on your social studies report? What if you couldn't see your school friends at all after-school? What if you were bored to death, and you couldn't watch t.v. or play games? Some experts are about people because they think they are spending too much time using their computers and not enough time exercising, enjoying nature, and interacting with family and friends. On your computer: you can watch videos and play games, you can chat and talk to people, and you can even boost up your grade. I honestly think that the thought of people being on their computers too much is a silly thought @CAPS2, let's look at how a computer can change your life. Lets say you have a history report the tomorrow, you forgot your history book at school, and you know nothing about the report. You are going to fail if you don't hand it in, so why not turn on your computer and open up the internet browser. I remember @TIME1 year I was doing a report about the @CAPS4 @CAPS3. I literally knew nothing about them and I failed to bring home my book. I opened up the internet and typed in @CAPS4 @CAPS3 in @ORGANIZATION1 and @DATE1 I found out that I got a @NUM1 on the report. You can also use the computer just to look up information for for about something that you might learn in school. ""@TIME1 @DATE1, I was reading about the @CAPS6 @CAPS7 and a few days @DATE1 we talked about how that @CAPS7 posibly could have been made. I was the only student in our grade that knew that answer. You can use the computer for playing games that are related to school. For example, how fast can you complete all of these multiplication problems or division problems. Look at what computers can do. If you got bad grades (without computer), you will go to a bad college and have a bad job, however, if you got good grades(with computer), you will go to a good college and get a good job. Next, let's look at how you can chat or talk to people. You can have a mesaging connection with someone by using @CAPS8 or a free to free conversation using @ORGANIZATION2 on your computer. Studies show that @PERCENT1 of people with computers have either @CAPS8 or @ORGANIZATION2 installed in their computers. You can also communicate with people who has an email address. I remember having a problem with my laptop and my crush knows everything about them. So I emailed him and how I get a response and I fixed my laptop. You are able to interact with people by meeting them online and then them on public. Everyone know about those dating websites that matches two people and them together. A computer can really the of your life. Lastly, let's look at what you can do in the computer when you are bored. Why you go youtube and watch videos that look appropriate and interesting? ""@CAPS10, I was done with homework and I didnt know what to do, so i online and spend only watching youtube videos, sometimes people like playing games. Just @TIME1, I was playing tetris, but only for @NUM2 minutes because I needed a goodnight's before the @CAPS11. You can also listen to the radio on a website. Statistics show that @PERCENT2 of people that listened to the radio @CAPS10 were in cars. But @PERCENT3 is also @PERCENT4 more listening to the radio online. Not only can a computer increase your grades and improve your life, can entertain you as well. As you can see, saving the of computers is is a silly idea and is absolutely non-sense. Computers can and make you. I honestly never seen someone on the computer for." 5 5 10 +1457 1 "Dear Local @CAPS1, I think that computers do not effect people bacause I believe that they actually benefit people and the way people live computers do more than have games, In some cases help you gain knowledge computers can be used for entertainment, jobs, research, projects and more. Not just for games. Computers help peopel do their job. For example, if you work as a lawyer, you @MONTH1 need a computer to type your documents up. If you have bad pemanship and have a joblike a lawyer. You @MONTH1 need to refer to something in your document and can't read it, that's a problem. So in that case, that;s where the role of the comuter steps in. I also think that computers do not have effect on people because through garde schoo, sometimes kids need the internet. Some people don't have the option of a library of ther isn't one near them. By using the computer for inofrmation on a project or homework, I think it benefits, not effects. I have one more reason why I think computers benefit, not effect. I believe that if you have a @CAPS2, or @CAPS3, you have a chance to meet people from all over the world. Just by that, you could learn something you could learn their lifestyle and things about thier culture.Thank you for reading my letter, hopefully you will rethink your decision." 4 3 7 +1458 1 "Due to an on going debattle about weither or not computers benefit society I am writing to you to inform you of my opinion on this mater. I believe that computers have more of a benefit than they do a draw back. I believe this because. First of all, computer bring about online communication. Also computers advance and enhance learning, had to mention that computers advance emloyment. As I mentioned, computers bring about online communications. Now after reading this there must be one side running thru your head define this well online communication, include social networkinjg sites litre facebook and twitter and not to forget my space. This also includes email and blogs and some chat sites. Okay enough of that But how do these things inventions iprove our lives. These inventions allow long distance communication bringing people ""closer together."" @CAPS1 example, my uncle lives in @LOCATION1. And thru facebook, my mother can speak with him any time she wishes and over from their relatives. So online communication @MONTH1 be very nessary @CAPS1 same. Also you could use email to communicate with others although it travels slower than other of electronic communication. Besides, I mentioned learinig. Computers can improve learning in a variety of ways. Computers improve learning because they speed the flow of information to the students can go to such places and a school websites to findout more on a particular occuring at the school. @CAPS1 example, I go on my school's website to retreve nightly homewrok assignments and read the next day's daily annocments. Teachers might post helpfel hints on homework and @MONTH1 a detailed explanation of the assignment. Also computers can improve learning by assiting with research projects @CAPS1 example a couple of weeks ago my health class was information car our illegal drug project. So with the information, made of wide variety of brouchers from it." 4 5 9 +1459 1 "Dear @CAPS1 @CAPS2, Some people @MONTH1 thingk that computers are helping our society, but I disagree. People who are sitting on the computer are not getting exercise or seeing beautiful nature. Do you want to get fat sitting next to a metal box? People are also not visiting friends and family and those are the most important. People in your life. Do you want to be the one sitting on a coputer all day getting fat or do you wan't to be physically fit while getting exercise. The only workout your getting on the computer is your fingers. So you should be getiting off your lazy bum, bum and getting some good old exercise. Yes computers teach you things, but exercise teaches you you things while you are getting fit. Who wouldn't want to see the beauty of nature. Yes you can see pictures of nature on the computer, but those are just a bunch of pixels mushed together. In the real world it is all natural and sometimes more beautiful than on the computer. How doesn't that sound better than the computer. All of the cool, fit people are outside enjoying nature, so be one of the cool people and go outside and have yourself a ban looking at exotic plants and beautiful animals. You can do both of those with your friends and family while sitting on your computer you don't see them as much @PERCENT1 of @LOCATION1 love their family and friends and I bet you are one of them. Friends and family can also help you get through hard times without them whi knows wgere you would be in life. So do yourself a favor get off the computer, and go visit some really great people. Its now or neve to get off that computer or your family and friends are going to leave you and you are going to get fat on top of that. Do you want to be that person? You are also going to miss out on the beauty of nature. So go, go, go, have yourself some fun." 4 4 8 +1460 1 "I have relized that there as been a disagreement about computers the positive and negative effects on people. It seems to me, in my opinion that computers have more of a negative affect on people than positive. I believe tat people are spending too much time on the computer and not exercizing, they don't spend quality time with family & friends and need to get fresh air and enjoy nature. Although computers are a great piece of techology, many don't get outside to enjoy the nature & fresh air because their computers are inside their homes. This is not good because when you go outside, it helps skin health from the sunlight & lets in fresh air for your lungs. In addition, a walk outside to enjoy nature wouldn't hurt either. It can relieve stress & can be relaxing. Furthermore, it is obvious when people are on the computer, they usually block out what their friends & family are saying to them. People can lose track of time & be on the computer for hours. Instead you should use this time to be with your friends and family. Being with your family can make your bond between each other stronger and you can get along with each other better. Also, having a nice family time is a good way to help be with your family. @NUM1 out of @NUM2 experts say that eating a family dinner can help a child's grades & prevent them from using drugs or dropout of high school or college. Finally, kids are more obese than us because they don't get enough excersize. At least @PERCENT1 or more kids are obese from recent studies. Due to this; this can lead to bone & joint issues, heart diseaase, lung problems, diabetes and athsma. These issues above are serious health problems if not treated. If kids excercize instead of being on a computer all day, the number of obese kids will drop drastically. Excersize can help kids' self esteem, and get them back in shape. They can either play sports or even take a walk or run. There are many different things you can do to excersize and its fun for kids. Unquestionably, there is definitely more reasons why there is a negative affect on kids/adults due to computers for the reasons above and more. Computers prevent people from enjoying nature to get fresh air. Likewise, they also prevent families & friends to spend time with each other and lastly, it isnt allowing kids to excersice which can lead to obesity." 5 5 10 +1461 1 "I would agree because computers do help people with other things like vacations sights, jobs, presents and shoping. So many uses for the computer. But creators of the computer are worried that people are spending to much time on the computer. Mainly its about conserners and users, most of those people complain that their having no time with their family and friends. You never know if the users are looking up vacation trips for both friends and familys. The things that conserners dont get is that the computer can teach you alot of things, history, mathmatics, science experiments and many more. Computers are also used in schools to help students with their work, even teachers use the computer for grades. It is true about people not going outside geting some fresh air or even taking a walk in the park. They cant keep themselfs on the computer for like @NUM1 hours, its just crazy. So i would go with both sides. Its just better to enjoy life then just look up things that you dont really need to. You should only need to go on like paying bills, and furneture for your house. Thats why the computer was invented." 3 3 6 +1462 1 "Dear Local Newspaper, @CAPS1 a world where the uneployment rate rises sinificgently, people can't communicate or learn as fast, and everyone is stressed out. That's what the world would be like if computers just discapeared. I think computers are more benefical to society then some people relize. They teach us new things and help us with hand-eye coordination. Many jobs are involved with computers, such as an acountend. Computer games and @CAPS2 help take the edge off after a hard day. Schools are the backbone of society. They teach kids and teen how to become sucessful adults. Computers have helped greatly in speeding up the teaching process. Teachers can now acess grades in a heartbeat. My computer helps me." 4 3 7 +1463 1 "Dear Newspaper: I have just read your recsent article on a weather computers are helping, or recking society. I think it is helping because without the internet I can't learn how to do things such as clear a the proper way. This takes time to learn but out over internet I learned it quickly. If you do this the wrong way it could blow out of the bold and potentially you. There are many other uses is you just can't find your family is counting on you. You can do two things, you can panic and let everyone down, you can go or the internet and save. But all I have wasn't to the real. The computer does effect how people exercise I know what you are. but you have. Clear enough. The internet does effect how you exercise. It's pros how to better and more affective ways to healthy. There is also cons; some of the con sinclude hot. All of these can lead to different things like going or. it isn't, its only a bad thing when your. In conclusion just do the right things and you will be healthier than ever." 4 4 8 +1464 1 "Dear Readers @ORGANIZATION1 the @LOCATION3, In this time almost everything @CAPS33 @CAPS39 revolves around tecknology, @CAPS1, @CAPS2, @CAPS3, with the @CAPS10. Changeing around @CAPS4 so quickly and without @CAPS5 @CAPS39 @CAPS33 still have time to stop and smell the roases? People are no longer at treadwell looking at the distinguished @CAPS6 in the fall or at @ORGANIZATION2 or playing @CAPS7 or baseball, but insted sitting on a chair @ORGANIZATION2 a video on @CAPS8 or playing games like @CAPS9 or @CAPS10 @ORGANIZATION1 @CAPS11, In @LOCATION5 helth problems have become an epidemic! Why? Because @CAPS12 than enjoying the fresh air and open fields @CAPS13 has to offer @CAPS33 are enjoying @CAPS14 @NUM1 or our @ORGANIZATION4 @CAPS15 @CAPS16! As a @CAPS40 @LOCATION5 @CAPS21 @DATE1 has gone from @NUM2 @CAPS19 (@LOCATION1, @LOCATION2) @LOCATION6, @LOCATION4, @ORGANIZATION4-@CAPS17 and @CAPS18) having a @PERCENT2 @CAPS35 for obesity to @CAPS29 @NUM3 @CAPS19 with a @PERCENT1 @CAPS35! Thats more @PERCENT3 @ORGANIZATION1 @LOCATION5! What other rate is going @CAPS20 incresingly @CAPS21 they @DATE1's? The number @ORGANIZATION1 homes that own Computers and they @CAPS35 rate each home owns! Dr. @DR1 @CAPS22 @CAPS23 a @CAPS24 in they @ORGANIZATION4 Your @CAPS25 @CAPS26, he found that in they last @NUM4 @CAPS27 they number @ORGANIZATION1 type @NUM5 diabetics has almost doubled! @PERSON1 ahead reacher at @ORGANIZATION6 (@ORGANIZATION1) @CAPS28 an article for @ORGANIZATION3. In his article he exclaimed that, ""@CAPS29 @PERCENT4 @ORGANIZATION1 @CAPS30 @ORGANIZATION4 own more than one computer per house - hold! @CAPS14, @CAPS15 and @ORGANIZATION5 are all doing verry well in this economic slumps, while sporting goods, books and exersise equipment are doing the right. @CAPS33 at @ORGANIZATION6 see this as a main cause for @CAPS32 growing lack @ORGANIZATION1 exercise and increase in time on home computers. Also just as important is how all this time spent on computers if effecting children, ""@CAPS33 @CAPS34 on @CAPS35 @NUM5 1/@NUM5 having on computer a day."" @CAPS36 as @PERSON2, a writer for the @ORGANIZATION4. It has become a parent that children are @CAPS34 in less time playing sports and more time on there ""amazing @ORGANIZATION4 @CAPS15 laptop"" playing video games! I am @NUM8, I have been playing @CAPS7 in @LOCATION3 for @NUM9 @CAPS27! @CAPS21 I was @NUM10. The @LOCATION3 travel team use to have so manny people try out it was difficult to get on, @CAPS38 so few people play that for barly need to try out! When I grow @CAPS20 I am most likely going to end put a job somowhere working for some big busniss like google teachings things need to be on so I will probohaly be working on computer, so for @CAPS38 I want to enjoy being a kid! he shouldent let kids waste these on video games, they will waste enoufgh @ORGANIZATION1 there lives behrind a computer later in life. @CAPS33 are talking about the health @ORGANIZATION1 this @CAPS40! Americus futer, the children @ORGANIZATION1 tommorow, @CAPS39 @CAPS33 want a @CAPS40 wher everyone has diabeties and diveron there computers? Through the @CAPS10 around @CAPS4 @MONTH1 change @CAPS33 need keep one thing the same no matter how difficult it is . That is @CAPS33 need to @CAPS41 @CAPS20 and help keep the @CAPS10 in good shape and @CAPS33 can't @CAPS39 that from behind a computer screen. Thank you for your time." 5 5 10 +1465 1 "Dear @PERSON1, I am on the side of computers. You @MONTH1 think I'm only saying that because I'm @NUM1 years old and it is basically what I do for fun. Computers do benefit society because they are fun, a source of communication, good for schooling and education, and for work. Computers are not just the @CAPS1 but also @CAPS6 procesor and @ORGANIZATION1 and everything like that. Computers provide games for everyone from ages @NUM2 to @NUM3. When it is raining outside your parents are at work and you are by yourself and have nothing to do, turn on the computer. Play a game. There are many fun websites made for everyone. Computers also provide an exellent source of communication. There are all different kinds of @CAPS2-mail. @CAPS5, @ORGANIZATION4, @CAPS3, @CAPS4, and many other sites are exellent for talking to friends. Not everyone has a cell phone so when you talk to them via @CAPS5 or any of the others it is nice to chat. Computers provide an exellent source of education. If you are doing a history project and you need more information and pictures, log onto a computer and @ORGANIZATION3 it. At our school we have edline which tells us all of our homework assignments. It is extremly handy. Now they also have schooling tutors online. It is great. Computers are great for work. @ORGANIZATION3, @CAPS6, @ORGANIZATION1, @ORGANIZATION5, and other @ORGANIZATION2 wear or other compnies. You can find your information and make something out of it. It is very, very useful for buisness workers. As you can see, computers have a lot of great uses. I think computers effect people in a positive way by helping them in positive ways. Computers allow fun, communication, educational purposes, and work uses. Computers are a good thing to have around, @CAPS7't you think?" 4 4 8 +1466 1 "Dear @LOCATION1, minute man, people are complaining. They are complaining about how computers interfer with their family and life. But it teaches adults and kids new things. Being on the computer is an exeperince. You can almost search anything on the computer. You can learn history or about the present time. Like one time I was searching (@CAPS1.com) on how to fix a playstation @NUM1 controller. I found out how to do it and it worked. While you are on the computer you can interact with friends, find out about the weather, and find out if you have any homework. The computer also teaches you how to do different stuff. Like this one time I learned to do a hardflip. Also computer's can help you with your homework. Like if you have science homework and you're trying to figure a word out you can search it. Or if you're looking for a book for @LOCATION2 you can search websites for good books or ask a friend. The computer helps many different people in many different ways. And you know how people say computers are bad. If you have a t.v. for game system its like having a computer, right? But don't go kill your self looking for a cheap one. But I do suggest that everyone should have a computer, they are helpful and fun." 4 4 8 +1467 1 "Almost everyone in the @LOCATION1 uses a computers at one point in their life. Computers are a way to teach hand eye coordination through programs, games and typing. The internet can be used for researching different far away cultures, as well as someone's own lifestyle. This compact well made piece of technology has been belaming more and more intricate. Realizing how much help computers have in everyday life, people will be the down fall or support for computer technology moving forward. One very basic but evident result from using a computer is hand-eye coordination. Since the time children are in grade school, they learn typing on a keyboard. Special programs help kids learn the necesary skill while enjoying the practice. When I was small, a mere fight years old, I remember typing. I was always excited when my mom and I went to barnes and noble to pick up a new typing program. I especially enjoyed ""type to learn"" and @CAPS1 typing lessons as well as teaching children to type is general, teaches hand-eye coordination in high school, college, and the job world. Young adults and adults are expected to type papers, resemes, and applications. In this day in age the technology era has begin and typing is a necessity. Another way to teach hand-eye coordination is through computer games. A simple challenge like solitaire, bejewled or car racing teach the skill and much more advanced games for example, world of war craft need perfect coordination can be through typing and games, both on the computer. Though some experts are conserned ""people are spending too much time on the computer and less time..enjoying nature,"" you are able to learn about geography, travel, and nature. One amazing on a computer is the world wide web. This consists of millions of websites, pages, search engines, and information arte you in an upcoming geography uses? Are you planning a trip the for you do you need to find a definition for the word ""cognitive""? of @CAPS1 pertain to you, a legitamite website house your and all you need to do is search. Instead of having to travel to learn about special wonders, for travel prices are expensive and you can simply, click and type to and amazing at your searching on a computer, you can learn about long ago cultures and rituals. Information you would find at museum @NUM1 years ago. @CAPS1 complex simple to use technological a world of pictures simple, art and history right at your fingertips." 5 5 10 +1468 1 "Did you know that four out of five households have a computer? But why so many? It's because computers have a positive effect on people, Have you ever thought why? With computers you can contact people in different parts of the @CAPS1. You can search up different information over the internet. Computers also benifit other electronic inventions. What do @LOCATION5, @LOCATION2, @LOCATION6 and @LOCATION7 all have in common? you can contact the people there with computers! while talking to people around the @CAPS1, you can learn something about a culture or lifestyle that you didn't know before. You just might make a new friend along the way. Picture if you will, a hard working business man who lives in the @LOCATION1. He works for a @CAPS1 - famous company and has to go to a meeting with the big boss is @LOCATION4. Wouldn't it just be easier to set up a video chat? That way, there's no hassle with a plane voyage and it's much easier. Why do you think it's called the @CAPS1-@CAPS2 @CAPS3? Over the internet, you can search up unlimited amounts of information. Animals, sports, a report to do on @LOCATION3, where do you go to find easy-to-read information instantly? Search him up on @ORGANIZATION1 or @ORGANIZATION2. You never what might find out. There are new additions daily. With no computers, how would you download music to an @NUM1? You can't, you have to use a computer. Computers benifit a lot of other electronic equipment. You can download videos, print out photographs and charge @CAPS4 and other electronics. Technology these days is empressive. It gave birth to the much-used computer. Computers have a large positive effect on our lifestyle. Contact with otehrs around the @CAPS1 is now easier than ever. Information can be found instantly. And with computers, other electronics can work as well." 4 5 9 +1469 1 "Dear @LOCATION1, @CAPS1 you believe people spend way to much that on computers? In a survey @PERCENT1 out of @NUM1 of people rather go on the computer then take a walk in as parts. People who spend a lot of time on computers are lacking important things. For istance, they spend so much time on computer they have lose time to exerise, enjoy natue, and interact with friends and family. Computers have a negative effect on people. Many people don't excerise for only @NUM2 min. But when you are distracted on your computer aming or facebooking you forget to excrise or just go it for @NUM3 min. Because you want to get back to the computer. Computers on your desk starring at you and you sampled to go on. While, the yoga mat or weights sit on ground sterring at you too. However, the computers is mak fun and less woris. Therefore, your more willing to go on computer then excrise. Computers make it hand to excrise because your less into thinking how to this right and take you the because your thinking about a computer game, you played facebook, email and bunch more things on computer. So computers are unhealthy for people to have. Nature is beatiful, how the trees sway in the and butterflies fly in the air then there are all type of seasons with beatiful senery and. However there re stuffy room with sholves a desk and some picture that's the serey the people got when @MONTH1 are on the computer all the time. People are missing out on enjoying nature little and big beatities. People comuter aren't walking on beach on taking a nice long hike in woods dad not taking a stroll in a ark these are missing out on getting some fresh air and seeing the senery nature has to offer us. Instead they are sitting chair starring at a computer screen. However, pretty could that be compared to enjoying nature beatity? Computers are testing away people enjoying nature. Hanging-out with friends are family is a fun thing to @CAPS1 but how are you suppose to long out with them if your to the computer? They aren't going to internet with their friends or family. This could affect their future they could grow up sad and lonely aren't know how to act around people they get job their works around people. The people who are addicted to computer are missing out an doing something fun with some they lose or enjoy to be around. Computers could be people far away friends but how about instead call that friend on. They probably rather hear wire then. See a message so computers interesting with friends and family. Now, that you know how had the computers affect people you can understand why I'm computers. They cut in the peoples the excrise, and have people not enjoying nature. people want hang out with friends and famlies. So hopefully you can see what a bad affect computers have." 4 4 8 +1470 1 "Dear local newspaper, @CAPS1 you like a place where you can control what you @CAPS1 and where you go? I know I @CAPS1. Well, if you afree with me then the computer is your cup of tea I think that computers have a positive effect on society. I think this for @NUM1 main reasons @CAPS2 with others, getting constant updates on whats going on, and a learning tool make up only some of the fasinating aspects the computer has. So read on I know you will think the same way as me about computers given my knowledge below. The computer captures over @NUM2 million humans attention with online social networks facebook, myspace, and @CAPS3 are the main attractions. In all of these websites you can keep up with whats going on with your friends and whats new around the world. These online social networks connect you and the people in your life to a crazy online adventure. All these websites provide the information that people want and keep nthem logging back on everyday. I think these websites are great and can only improve society. This is my first benefit of a computer. Another way aspect that the computer provides is world news and big events and drama that is happening in our society. Many news channels have their own websites and update what happened on their show. They provide pictures, stories, and actual videos of whats happening right now. The computer helps us americans know what is happening in @LOCATION1 and lets @LOCATION1 know whats happening in the @LOCATION1 and the @CAPS4.S arn't the only ones trough The computers provides international news and gossip for everyone. Here is another reason why the computer is great for society. There are many things that us kids don't know and if we need some deep information we search it on the computer. The computer provides websites giving information on every time you could think of. For example, if I were to be stuck on some science homework I could probably type in my question on ask.com and get a great answer. Parents and teachers want their kids to suceed and the computer defenitly helps. In conclusion, I have given you @NUM1 great, well thought out reasons why the computer benefits society. @CAPS2 with others, updates worldwide and information on school all are in a great piece of technology called the computer. I hope you will trust me that the computer has a positive effect on society." 5 5 10 +1471 1 "Dear local newspaper, I think that computers defenetly help our society for many reasons. For example we can talk to friends on line. Not only that but then you can learn alot more about the paces you want to visit. Its also tru that you can gain more hand eye cordanation with those nifty devises. Read on to find out how you can talk to friends on the computer. You can talk friends on the computer by one of the most comon website facebook. @NUM1 people use facebook, thats @PERCENT1! Not only that but you can also meet new friends on the computer by talking about games or popular @CAPS1.V. shows. Wouldn'@CAPS1 it be nice to meet up with all of you old friends from school that you don'@CAPS1 ever see. My mom always says that that is how she stays close to her friends and that is the same with me. Do you want to learn about the far away places without breaking the bank? If you do then you should deffinetly search for some nice websites that explain culture and other details about other parts of the world. It's also true that you can learn a quick history lesson on some webpages. What if you are going on a trip but you don'@CAPS1 know were to then you could use the beloved internet. Read on to find out how the internet helps gain hand eye cordanation. You can gain hand eye cordanation by using the computer so many ways. For example you can practice typing up essays and other work projects. @PERCENT2 of people that have compters type faster than they write. Thats almost everyone. Not only that but don'@CAPS1 you think typing is faster than writing? Also you see the words that you are typing and you press with you hands. Thank you for reading my essay on why computers are benefiting our society. Just remembe we learn more every day from the computers. Also you can talk to friend. Lastly you can plan your trip. " 4 4 8 +1472 1 "Dear @CAPS1, The computers that are being used, do have a positive effect on people. For example, there's better communication with friends and family, you get instant news on any topic, and you get advanced education. Imagine if no important business was trying to be in contact with you by cell phone, but you missed the call. No worries the person no contact you by a simple email. Computers are also a positive effect because if you have a facebook, or other interacting werbsites, you know what's going on in your friends life all the time without having the to by reaching them all the to see how they are doing. Every adult watching the news at night before they go to bed to see what has @CAPS2, what if you went to bed early. How would you know what happened? That's when you would go online and check what you missed, you could've missed out on what happened in @LOCATION2 and @LOCATION3, or missed out on the wars to the @LOCATION1, or even tragedies that happened right near you. Not only will you have better communication and the news at the top of your fingers, but you will also have advanced education. If a student is doing a science project, but the work doesn't contain all the information the can The internet is a way to expands education. Also, there are and various more. Therefor, computers do have a positive effect on people you can stay communicated, updated with the latest news and have an advance education " 4 4 8 +1473 1 "Dear local news paper, This paper is going to be about the reason computers are bad. Frist, computers are bad cause people wouldn't have time to enjoy the nature when its nice and warm out. Second reason is cause they won't spend time with there familys at all or there friends and the only time they would get off the computer is to pay the bill and buy a game for the computer. The third reason is that how are going to get a job cause they wouldn't want to get up to look for a job cause there having to much fun intill they cut off the light then he would do dum things to pay is bell se he can start to play again and thats going to make hin do it over and over again. That's why it's bad to have a computer. But now where is people going go in life cause some people love to play games on the computer and some don't that's why some computers are bad for some people. And this is just my opinion there's alot more people might think so to. And thank you for having time to read this." 3 3 6 +1474 1 "The reason why I think computers are good is because people like to do their work, or children likes the games on the computers. The second reasons is that adults likes to do their jobs online. Finally people who have computers are probably happy because computers is a good thing to have because you can do everything on it. My opinion is that computers are good for people because you can do everything like play game, go on myspace, facebook, twiter and alot of other websites." 2 2 4 +1475 1 "It is my opinion that computers are not completly bad for people, computers can also be good for people. For example computer allow people to communicate in seconds. From around the well, and computers open up new information to anyone. But a major advantage is that people spent so much time on the computer, that they don't get any exercise. Firstly, computers are good thing because they allow news and infirmation to get to the whole world in seconds. Very recently during the war in the @LOCATION1, news reporters were not allowed into towns and cities where a user uses being fought. Every day social messaging sites like @CAPS1 and @CAPS2 brought news to the world through cell phone videos and pictures that wouldn't have been seen by the world had it not been for computers and the internet. Secondly, computers allow people to gain knowledge in a matter of minutes on topic the sun. For example if you need information on the country in the you can finf it with a computer. If you need a recepie for an @CAPS3 desert look it up with a computer. If you would like to know what the weather will be like, you can look it up with a computer. With a computer the knowledge of the world can be found by anyone. Lastly, the leading argument against is the people don't get enough exercise because they are always on the computer. The people computers say that people will because a thier computer that will the lives these arguments can be the overwhelming of heavy computer users do get enough exercise A recent status that among the internet average grade of A or better, who also do at least With this information the argument In conclusion, computers are not completly good or completly bad for society. Their strong points are communication and the ability to gain knowledge quickly. The main downside is that a minority of computer user don't get enough exercise. It is my opinion that computers are good for and the pres definitily outway the care." 4 4 8 +1476 1 "Dear Local Newspaper, I am awair that more people use computers everyday. I think that computers does have a positive effect on adults and their children. Computes help us by giving information about things in othe contries, states, and towns. It also can help children with school homework. Last thing is that it helps you communicate with friends and family members that live to far of a distance where you cant see them. Computers gives information about the latest and most recient things that happen in other towns contries, and states. If you needed to find out something that happened about @NUM1 years ago or more you wouldn'@CAPS1 see it on @CAPS1.V., you would be able to find it on the internet. Without the internet you wouldn'@CAPS1 find the things you was looking for. Another thing that computers is very useful for is helping kids with homework and school work. If your work is typed then your work is neater and more understandable. I can understand why some parents wouldnt want their kids on the computer doing homework. They might start doing something else or get answers for something they can do without the computer. But using the computer with homework and school work will make it where you can make sure your work is correct. Last, computers can help you correct with friends and family members. If you have friends and family that you want to reconnect with the computer can help you find information about where they are located. That @MONTH1 not be good for people who are trying to stalk or abuse someone. But in other cases like be unite with family can be very helpful. This can make families keep in touch and friend close. What are some of your feelings about computers. Some people @MONTH1 dislike them but they have good reasons why. More family time can be but I think you can make time for the computer and other things like family time and exercising. Well my time is up here. Hope you liked what I said here and you'll have a passion for computers." 5 4 9 +1477 1 "I blive that computers have a lot of effects on people for example there eyes, there body, there mind. First you eyes if you set next to the computer too close you eyes gets effected by the computer screen and you @MONTH1 lose your eyes and then you woudnt be able to see or read or do alot of fun staff like playing as you want to set near the computer or not. Second your body if you set on the computer for a whole day and not exersice you will get fat in other word you body will become fat and you will not be able to ran and do a lot of stuff and so are you just set on the computer for the whole day or not. Thrid is you if you watch on you computer like a video or play a new game and you mind if only thinking about doing that and then when you go to school you will only be think about that and you will forget every thing you wanted to do at you thinkin about because of that. Fanilly I am telling every on to not spened too much time on the computer and be exersing and fun act side are working on you school work and doing homework and exersice and I want everyone to have a good life." 3 3 6 +1478 1 "Dear local newspaper, have computers ever hurt anyone? I believe the effects of computers on people are positive ones. For one, computers let people talk and socialize, even if they are on different sides of the planet. Another effect they have is letting people work faster in businesses and other jobs that require mathmatics. Lastly, computers allow people to see far away places and learn about almost anything with a click of a button. Because of the internet, people across the globe can talk to each other as if they were neighbors. Lets say a friend or family had to move to another country or state. They could be apart for months or even years. They would miss each other contantly. But with computers, they can talk to each other like they were still neighbors. Computers also have some more ""practical"" uses. They make it easier to see their stocks, their income, and even see sale trends. Lets say you needed to make a change to the price of your goods but your car broke down and the incorrect price was miles away. You would halfway have to wait for a mechanic or run for miles to get to a phone. But with a computer, you wouldn't need to do any of that. Just log on and change the price from the luxury of your own home. There are also educational purposes for computers. Computers let you travel the world without taking a step. You could take a trip through the safari or go on an adventure in the raln forest. You could take in the beauty of the great plains or watch the ever changing sands of the sahara desert. You could learn about the greeks, archemedes, ancien egypt, or pacman, with a computer, the world is your oyster. That is why I see computers as a positively amazing thing. Because they let us do things our minds usually can't because they allow people to traverse the world in seconds, and because they allow people oceans away to talk together. So think, are computers really harmful?" 5 4 9 +1479 1 "My oponion is computers should be used for many different purpuses. One reason is chating online with friends and family. Another reason is that if you are going far away and you know someone that can give you directions to where you are going then you can chat with them as they give you directions to where them as they give you directions to where your heading. Another reason is if you have family that does not live with you and you can't go an see them then you can chat with them. Another rwson is that of your going somewhere and you don't know the weather for the next day then you can go online and find out what's the weather for that day. Also if people really want to exercise then they can go on there computer and go to youtube and od exercise from there computer. Also if you want to see the @CAPS1 then you can search it on your computer to see what's going on. Lastly if you don't think it's rite for people to have computers then you should try to get one to see how much stuff you can do with it. You will be amazed. This is my reason why people should have computers to enjoy while chating, watching @CAPS1 and many other stuff that you can't probably imagine. Also, maybe kids should not have computers but they can get one when they get older. Also, if kids need to search from school then they can also do that there are many reasons why people should get computers. That my my opinion about why people should have computers." 3 4 7 +1480 1 "Dear Local Newspaper, I am here to tell you the negative effect on people because of computer usage. How would you react if you didn't have the time to exercise, enjoy nature or spend time with family and friends? Well some people don't notice that they are losing the time to do that stuff due to using the computer. No time to exercise? What does that mean? I can see these questions flying through heads of great people. No time to exercise means exactly what it sounds like, which is, since people every day are wasting their time on the computer playing games, chatting with people, ect. They don't get to do what they really want to do which is most of the time exercise. What about nature? Are you a person who likes to enjoy nature? I know I do. Since time flys when people are on the computer, which sometimes they don't realize, they would probaly be thinking I never got to go outside and go for a walk through the forest and enjoy the nature. Well @CAPS1'll do that sometimes, but the truth is when people say stuff like that, it doesn't help to motivate themselves, its basically saying I'll go for a nature walk tomorrow and if that doesn't happen I'll just have to do it the next day. Odds are that the person saying that won't actually go for a walk they will thinks its going to be okay and they will just keep pulling it off. What ever happened to spending time with family and friends? Oh I know, I know, all of family and friend time was wasted into being on the computer. people don't realize that since their time is being wasted into the computer and that they don't even have time to sit down talk to their family, have fun, go out with friends to catch a movie or something. As you have heard, more and more people are using computers, which I believe has a negative effect on them because they don't have time for exercising, enjoying nature, talking with family and friends ect. All of the time being spent on the computer is replacing the time for that stuff, and its not a good thing. Computers have a negative effect on people and I say we should find a way to cut down computer time." 5 4 9 +1481 1 "Dear Local @CAPS1 @CAPS2, I would wont computors because it benifits our society. It helps on learn about countries around the world and whats going on. For example if you wanted to no about it's sports, you can just type in name. Also a computer can help you with your education. If you were working on a homework assingment and you needed some help you can just go on the computor. It is also very benifial because student can have lots of fun playing games on the comput say like it's a cold rainy day and there is nothing to do, a kid can get some entertainment by going on the computer. It is also a good way to communicate with you friends. For example, facebook, @CAPS3, twitter, and email one all good sources of communication. Also it is good for if you have a xbox or a @NUM1 you need a computer you need to hook up a card to your computer so you can play online with your friend. It's good to have computors in school. Is teachers want some students to go on a website to learn something it is a very helpful source. It is also a good in source because in school if your working on this big project a computer can help you do it. I hope these one all good reason to have computer in our society, and it will benifit us in a number a differnt ways" 4 3 7 +1482 1 "More people tend to use computer's more than going outside enjoying the weather, and I think people should less time on the computer and more time interacting with whom ever. People spend most of their time talking to people on any websites/playing online games. I think that it's a bad habit, people of all ages spend their time doing that when they can do something fun, but chose not to. Parents should be responsible for their children staying on the computer all day and watch out what they are doing because it is dangerous. There has been many people who have been hired. Raped in websites such as @CAPS1, @CAPS2, and many other dangerous websites. In be more I would say that children and adults talk to strangers and think they know that personso well, meet them some place and get killed or anything because many people lie they age. And who know that person can be a fiftey year old woman or man. Say their a teen and end up finding you That is why parents should not be let their children be on period of time and should be on. While you reading this I hope you understand why it's rong and take my suggestion under and help us young kids to (thank you)" 4 3 7 +1483 1 "To: @CAPS1 this letter concerns, Computers are apart of our daily life. You can do many things on them such as play games, watch videos, search the web, and even communicate with people from all over the world. They are very useful for people who go to school bacause you can complete and save work for your classes. Sure maybe some people are addicted to the computer but others use it only when they need to. Computers have a massive affect on some peoples life. Sitting around on the computer all day can be harmful but informative in many ways. One of the informative ways is that you learn new information every time you log on. That is why I think the computer has a great effect on people." 3 3 6 +1484 1 "Over @PERCENT1 of the @ORGANIZATION1 owns at least one computer in their house. Computers benefit society because they help the earth, and are a fast way to spread important information. Also you can talk with friends and family on computers. We have been told that some people think were spending too much time on the computer. Yes, but we need these machines to survive. News @CAPS1 took a pull and said ""more than half of @LOCATION1 schools are now using computers to put homework on to save paper"". @CAPS3 we start useing computers to do things that we ushelly use paper for we would be saving millions of trees. For example you can send an email insted of snail mail, the mail would go faster and save paper! People who care about the earth make websites on the computer to inform people how to @CAPS2 just to see each otherthey could mail and talk all they want. Also @CAPS3 you like to use cellphone alot the waves kill apoximately @NUM1 bees a year. @CAPS3 you chatted with your freinds it would save bees lives. The first snow day we my parents forgot to check the schools website and I was out in snow @CAPS3 we didn't computers this would happen to every little students an snow @NUM2 @CAPS3 there was a storm and you. I'v went out the is another place you can check' to get the weather and keep your family safe. @CAPS3 there was a hurricane and the power like birthdays and weddings your computer has a calendar on it that tells you wherever you write something on it. @ORGANIZATION1 citizens spend over @MONEY1 a year on phone bills. You can talk to freinds and family on the computer and save thousands. When parents don't have phones they rely on computers to comunicate with people. Have your kinds ever had a freind who for away and your kinds spend hours to them? Well they can talk and see each other while on video chat and it will feel like still here. Its now or never citizens of newtown! You know computers, help the earth there a fast way to spend information, and they let you talk and see your freinds online. So get up and write our local news paper telling them why computers benefit our society." 5 4 9 +1485 1 "Dear local newspaper, did you know that just about @PERCENT1 of the people in the @LOCATION1 have computers and use them daily. I am one of those people and I don't get how people ar saying that computers are destroying our country, yeah I know that we spend a little less time with family and friends but computers help as help monitor weather and natrual disasters like torndos and hurricans, they give us a chance to see far away places and learn more about the world and we can talk with other people. Computers are way important in our world because we can monitor natrual @CAPS1 such as tornados, hurricancs, and earthquakes without this technology over @PERCENT2 more people will die from these @CAPS1 without computers because the will less or no warning about the situation. Over @PERCENT3 of kids in the @CAPS2.S go to school and with computers the kids get a better chance to learn absent the world and society. Kids should know what is going on in the world, or you could be a adult just browsing the web loking for information. My point is tons of people all around the world computers to learn. My last reason is to teach kids to type and to have hand eye cordination when kids get older and when we get @CAPS3 they are gonna need to learn how to type. So odds are if you don't know how to type you won't get very far but there in the real world. To conclude my statement im gonna go over my three reasons why we need computers first to track natrual disasters. Second to leern about far away places, and our society. Third to teach childeren hand eye cordination and to to type so they can get @CAPS3. This is why the @CAPS2.S realy needs computers." 5 4 9 +1486 1 "Dear @CAPS1 @CAPS2 @CAPS3, I understand that more and more people use computers, and that can have a good side and a bad one. Do you go on the computer for hours every day? That could be bad. I believe computers are good thing, but only if they are used properly. Hopefully when I'm done, you'll see where I'm coming from on this matters. Everyone is on the computer these days. The problem is, many people are on way too much. They say they are working on hand-eye coordination, but in reality they are wasting away their lives on a chair. They do not communicate as much with the rest of the household and that does not make a big, happy family. They say they are getting important information, but in truth, they might just be getting false information and viruses. Bad people are out there, and one might hack into your computer and ruin your day. Things like @CAPS4 @CAPS5 and @CAPS6 could have people that want to find out all about you so they can hurt you. Yes, being on the computer definitely has a bad side. But there is a good side as well. That is, as long as you are not on too much. It does improve hand-eye coordination, if you play the right games. And it can teach you things, too. Many websites have true information about place or things so you don't need to see it to know about it. You can be helpful. It is also an easy way to purchase items. You can just order them. Most importantly, you can have fun. So, what is your side on this argument? Do you think way too many people are on the computer. Or do you think computers can be great, as long as you're careful? I, for one, pick the latter one. What about you?" 4 4 8 +1487 1 "Studies show that @PERCENT1 of people that are addicted to computers are not fit and don't play sports. I have a computer at home and I know how much fun it is talking to your friends on @CAPS1 or whatever you talk to your friends are. If you're not fit and don't enjoy the beauty of nature you will not know how to live a good life. I'm not saying that you won't get anywhere in life, but it won't be much interesting. I play lots of sports and I love them all. I am fit and yes I do like going on @CAPS1 and chatting with my friends, but thats not as important as is breathing fresh air and playing sports with your friends. Yes, the computer has all different kinds of bad stuff and good stuff. I mean you could learn about faraway places with out going there, but then what would be the fun of that. For an example, if you go to @LOCATION1 for snowboarding, dont you feel great when your going down that @CAPS3? I know I do instead of being home on the computer. Nature is beautiful I am thankful to god of giving us that beauty and all animals. It makes life better, georgus. I love taking hikes with my family up a @CAPS3. That fresh air you can't get anywhere else or even riding your @CAPS5 up a trail, the beauty of that is unbelievable, you can't find it any other place. Doctors show that @PERCENT2 of people that spend time more than @NUM1 hours a day on a computer have glasses or have a very poor vision. All those people didn't want poor vision but beacuse of the computer they got that wich really stinks. Now as you can you see computers really can change your life. So that's your discision. Pick wrong from right, all up to YOU. Now make it." 4 4 8 +1488 1 "I think that computers are very valueable and help a lot of people I think that computers should be used for information that could help students with their homework or to study for a test and also for adults to look up things such as directions, adresses, and prices of clothes and other items. They are also good because they help you communicate with friends and help people make plans to do with friends. However some people should limit themselves on things like facebook and twitter, some people spend too much time on those things and should limit themselves to just @NUM1 minutes a day on those sites. One of the reasons I think computers are good is because some students might not now the answer to something on their homework and could use the computer to find out the answers. Another reason why computer can be very valueable to all students is because lets say a student has a quiz on mitusis and cells in science the next day and doesnt really understand it they could use the computer to learn about it and do good on their quiz. Another reason that computer are good for people is because it helps them communicate with theri friends. Some kids are only and arent that gool at interacting with people in person. But these social networking sites help them come out of their shells and make them a little less shy and make more friends. however like I said earlier some poepleget carried away and spend too much time doing this kind of stoffs and should limit themselves to just @NUM1 minutes per day on these social networking sites. Some people use their computers for other important things like buying things and getting directions and adresses. If somebody want to go to a store in a different town but didnt know where it was they could up the address an dthen find the directions to that place some people also use the computer to purchase things like groceriess and clothes. Sometimes people save money because they buy something online a sale than going to a store and paying anymore money. As you can see the computer has a lot of positives. Therefore I encourage you to support computers, because they are so useful and valuable." 4 4 8 +1489 1 "Dear local newspaper, In my opinion I feel like to many people spend to much time on the @ORGANIZATION1. People are getting obeast because there not getting enoff exersoce. Children are going on the @ORGANIZATION1 instead of doing there homework. Maybe perhaps a fmaily member is dieing and you rather spend time on the @ORGANIZATION1 instead of with that family member. all of this things are happening because of the computers everyone is getting. This can not be true! That over @PERCENT1 of the people inNew @CAPS1 say that they are putting on a lot of waight and turning obeast. I asked them what do they think is this to happen. Someone named @PERSON1 said the reason is the computers there taking over people lifes. The computers is the enomy of the people that it is a affecting most in life. Me as a child a @ORGANIZATION1 is throwing me off of my homework. I use to have A's and b's on my report card only. Right now it turned in to @CAPS2 and @ORGANIZATION1's are changing my life drastikly but not in a good way. As you know it your child could be going threw, the same terible things as me. You should start to check there homework instead of them just going on there @ORGANIZATION1 and forgetting all about there work life I did. Try and provent this. running down your face and feeling disaponted in your self. The one you love good past u way and you did not even spend time with he or she. Wanse again the thing that is called @ORGANIZATION1 did this. The disigen that you made because of the @ORGANIZATION1 would and is going to scare you for life. We the people that have computers would find out that they were never made for a good purpose just to distray what we do and how we spend times with are familys and friends. Turn your head and say no to the one thing that would reck you into little peases. How do you feel? I feel bad because I let something so little mess up my life. You still have time to change your life and say no to the computers. They could make you turn obeast because you are not getting enoff exersice. The one you love could be messing up because of the @ORGANIZATION1 that you have in your house. The worst thing of all you were not able to spend time with the family member that you love the most. The computers that we have are missing your life us you no it up. Just say no to the computers and live your life the best way that you could. Don't you feel bad that you let something so little ruen your live!?!" 5 4 9 +1490 1 "Dear local newspaper, The effects Computers have on people is that people realie on them and thats not good because they have less time exercising, enjoying nature, and interacting with family and friends. First of all, having less time exercising is not good because @NUM1 out of @NUM2 people ent up fighting obesscicley. ""You don't want to be one of those people trust me"" said @PERSON1. Second, enjoying nature is a good thing to do instead of playing with a computer because you get your daily dose of air by enjoying nature. ""You also have a lot of fun"" said @LOCATION1. Lastly, interacting with family and friends is fun and who doesn't love that. ""Spending time with the family is fun cause you get to go places,"" said @PERSON3. ""Who doesn't love going out and spending time with friends on the weekends,"" said @PERSON2. Those are my reasons why the effects computers have on people are not good." 3 3 6 +1491 1 "Dear @CAPS1 and readers @ORGANIZATION1 the @ORGANIZATION3 @CAPS2 @CAPS3, @CAPS4 a modern world sent back in time to the @NUM1 quickly drive your car to get groceries but must ride damage for hours to simply buy some milk. Entertainment is dull, and it is hard to receive books for learning. Ending the usage @ORGANIZATION1 such @ORGANIZATION1 technology as computers would surely be the first step to sending us back to such a barbaric time! Computers present job opportunities, educational opportunities, and a way to communicate with others! Furge you to continue using computers, for without computers our modern civiliz would be lost! Firstly, it is important to note, during our economic crisis, that the development and manufacturing @ORGANIZATION1 computers creates thousands @ORGANIZATION1 jobs! In fact, each year @NUM2 @ORGANIZATION3 jobs are created in the @CAPS5.S alone in accordance with the development @ORGANIZATION1 computers! @CAPS14 the customers who buy these products were to stop losing them, these jobs would be lost and any progress we've made in the economic crisis would surely fall! Do you, the fair people @ORGANIZATION1 our nation, wish to be responsible for such a catastrophe! Recently, the @ORGANIZATION3 stated, in the cover page article, that, ""without the development @ORGANIZATION1 computers in technology in @DATE2, @DATE3 more people would be without jobs in the @LOCATION4A! "" @CAPS6, undoubtedly many educational opportunities woulf be lost for your childred @CAPS14 you were to stop using computers! Computers present the easiet way to research and gather information. ""@CAPS7 @PERSON1, top nothe educational provider in the history @ORGANIZATION1. A group @ORGANIZATION1 young brilliant teachhers headed by @PERSON3 have implemented a program at the @ORGANIZATION1 using computers. This program lets students view the interesting way @ORGANIZATION1 world cultures in videos! For your keen visual children, this is a much better way @ORGANIZATION1 learning than using books! In fact, @PERSON2, superintendent @CAPS14 schools in @LOCATION1, recently stated in this newpaper, the @ORGANIZATION3 @CAPS2 @CAPS3, that he planed to implement the program into all @LOCATION1 schools during the @NUM3 year! He needs the town""s your support to have this idea come through he recently sent out fliers to local citizens bearing the impressionable heading, ""@CAPS10. Goy @PERSON2 @CAPS11 youto expand learning by using computers!"" @CAPS12, communication is a vital part @ORGANIZATION1 using computers. In fact, the internet, which can only be acessed through a computer, offers the fastest way @ORGANIZATION1 communication other than telephones! ""@CAPS13, @CAPS7 computer expert for @ORGANIZATION2, ""computers offer ever more than the telephones! Not only can one converse through the internet, they can also webchat, exchange files and important data, and market and sell items to customers! ""@CAPS14 you stop using computers, you deny yourself this magnificent way @ORGANIZATION1 communicating! My sister lives in @LOCATION3, and as a result I barely get to see her or even talk to her. Then, when my mon bought me a laptop, we were able to speak to each other again. Sge helps ne through all @ORGANIZATION1 mt personal problems, and without this way @ORGANIZATION1 talking with her worl be lost. Now, @CAPS4 a modern, civilized world. You, the parents, are heading to work while your child goes to @ORGANIZATION1 and enters into the wonderful learning center @ORGANIZATION1 computers. In @LOCATION2, your favorite sister's currently writing you an email. This fantasy is possible @CAPS14 you continue to use computers! They presnt jobs, educational opportunities and a way @ORGANIZATION1 communication! You do not have to use them all the tim, still enjoy nature and fun with friends dear readers, but do not forget computers! Computer usage will keep you in the @DATE1!" 5 6 11 +1492 1 "Dear local news paper, I think computers can have a bad effect on people from a really early age. Starting at thirteen and up through adulthood. People spend hours at a time on the computer when they canbe exercising or doing some type of activity out doors. Computers can make some people feel like life is being taken away form them. Spending so much time on a computer can really damage a person posture. It is said that when some get on a computer a state of comfortbility comes over them and they lean over with their backs bent and they there for periods of time. Imagin a person being cramped in a tight space for eight hours and when that person gets out they all their joints and muscles being stretched from that point of tensions. This is what we do to our bodys when we get on computers." 4 4 8 +1493 1 "Dear @CAPS1 @CAPS2, I believe that computers do benefit society in a positive way. Without computers we would not be able to be as social. We also would not have the ability to do reseach for school online and running a business would be even more difficult. Without computers our society would not be so far advanced. Being social is an important quality in life. the main way of being social these days, other than texting, is to chat online with friends. Facebook, @CAPS3, @CAPS4, and skype all give their users the ability to make new friends, find long lost friends, and chat with friends. I personally have a skype and facabook, and I am able to access them everyday. Without them, I wouldn't be able to chat with friends out of school except for sports and texting. Everyday I workout and lift weights and go on facebook, that is why that whole statement, ""spending less time exercising, and more time on the computer"" is false. Facebook and skype are a past of my everyday life and without them I know I would not be as social. Computers are also a part of my everyday life, because I have to use it to do research for school or typing up an @CAPS5 paper. As you have now seen, my handwriting is not so great, so I end up typing a lot of my homework because of it. Without computers my teachers would not be able to read my work. Computers also help with making graphs and data tables for science lab reports. Without a computer the graphs would have to be handmade, which is not as presentable. Overall computers are used everyday in school to either do research or to type up some homework. Education plays a key role in society and if we did not use computers out education that we would receive would not be the same as it is now. My last reason why i believe that computers play a positive role in society is that computers are what keeps businesses running. Without computers some businesses would be unable to function, and those could function, would be awful slow. Since our society is so far advanced our businesses need computers in order to complete the jobs. Expenses and income are saved to businesses computers, if that was all done an paper they could be lost or ruined. Computers also simplify work for businesses, they speed up the tasks that would takes a long time to be hand done and they complete the tasks that could not be acheived without a computer. Computers play a large part in the @CAPS6 of the world." 5 6 11 +1494 1 "Dear editor, Computers are one of the best things that have ever happened to the human race. They benefit society in every way imaginable, and have numerous positive affects on people. Computers improve hand eye coordination, allow people to learn about many subjects that books do not give them acess to, and allow millions of people every day to talk and communicate with friends and family. The most important use for computers is learning. Using computers, billions of people gain knowledge that they never would have been able to learn before. Many people like myself check the weather on the computer daily, making sure we are prepared or dressed appropriatly for the weather. Without computers, I would not be able to do this. Also, on days when it snows during the night, I always check the school's website when I wake up in order to ensure that school is still on. This is a helpful resource and I don't know what I'd do without it. Another thing computers allow us to do is check the news. With the click of your mouse, you can check to see who won the presidency, or what shows are on tonight. Another amazing aspect of computers is that they improve eye-hand coordination greatly. This not only benifits my mom who checks her email five times every minute, but my little three year old sister who loves to move the mouse around, and type in random letters on documents. It could entertain her for days, but most importantly, it helps improve her eye-hand coordination every second she sits in that chair. This improved skill will help her enourmously in her future when she soon begins to play sports, and ride bikes. Finally, computers allow millions of friends and family to communicate daily at no cost. If classmates forgot to write down homework they can email the teacher instantly, and know exactly what the homework is and even open the sheet that the teacher attached, and print it out. A couple of weeks ago, my dad went to @LOCATION1 for thirteen days, and it was outragously expensive to talk to him on his phone. So, every couple days, he video chatted with me instead so I could talk to him. hear what he was doing, and even see the view of @LOCATION2 from his window. This was very special to me and could not have been done without computers. As it is so plainly clear, computers help us in so many ways that we forget about like educating us, improving our eye hand coordination, and allowing us to communicate with friends and family. These are just a couple of the positive affects and benifits that computers provide us with." 5 5 10 +1495 1 "Dear @CAPS1, I agree with the experts that people spend to much time on the computer, people should be exercising, reading, or spending time with friends and family. But people are so lazy and would rather be sitting and doing something on the computer and if they dont start doing other things instead of being online they could become overweight. My first reason why people should spend less time online is because people need to exercize. Seriously people should be taking walks around the block or going to the gym or even playing a sport instead of playing on the computer all day and doing nothing and without exercising you will become overweight and lazy. My second reason why I think people should spend less time online is because you should be spending time with your friends and family not ignoring them because your doing something on the computer. Thats just rude, so why dont you go and have a family game night or go out to eat with your family and you could also watch a movie, go skating, or even go to the park with your friends because thats a lot more fun than being online all day. My last reason why people should spend less time online is because everyone should have time to just read a good book honestly just walk down to your local library and check out a book because reading is way better for your brain than doing stupid stuff on the computer. So in conclusion, in my opinion I think people should spend less time online is because if you dont get enough exercize you can become over weight and lazy, and not spending a lot of time with your friends and family is just rude and reading is very good for you unlike staying on the computer, well that is all I have to say for now." 4 4 8 +1496 1 "Dear Local Newspaper, @CAPS1 that humanity has, has it's up and down's and it's positives and negatives. the something with technology. It has it's ups's and downs but because of it our society grows increasingly advanced. It gives us the oppertunity to grow more sophisticated to set our goals beyond reach. We make the start of great things with these. Computers teach us and sometimes can guide you. You can click on a link and give you an amazing oppertunity or click on the wrong one and give you d virus. Computers can get you away from all the stress in your life and take you to a beautiful place it can give you the chance to let you learn something that you didn't even know existed." 3 3 6 +1497 1 "Dear Newspaper @CAPS1, Are you aware that more than @PERCENT1 of @CAPS2 families have ownership to a computer? Maybe so, but, were you informed that at least half of that @PERCENT1 have family issues or such related The issue in bond is if computers have a possitive effect or negetive effect on mankind. In @CAPS4 opinion, I feel that this invention @MONTH1 be is taking a negetive toll on society. I say this because now-a-days there are inappropriate websites that children should veiw, and it takes away time with family. But mainly because of the recent @CAPS3 issue. Without a doubt, youngsters such as are expertly and a website, we'll just do as we were told and on maybe we could find one by an accident. Who knows? All I know is, there too many to count adult websites that children from the ages of @DATE1 log on to everyday. This is unacceptable on a person why we should be prohibited in computers. No responsible parent would be caught dead with a @NUM1 year old on an adult website and computers make it harder such parents to do so. With such experience computers take away time with and when I had @CAPS4 computer, @CAPS4 always now we never spent time with her. She said the other day do I peel bananas,"" if i never got out on the computer, you would be right now,"" she was right. Whenever @CAPS4 brother and I got on the computer we'll stay in the all day. But every we've been together much @CAPS4 now and I feel that computers have a negetive effect on society is because of the recent @CAPS3 I was called to the office one day to be informed that a crew on @CAPS3 com had befriended me and they were using boys and girls for drugs and prostitution. People take advantage of computers and end reading peoples infos. This could have been prevented but it wasnt. Now it's your chance, I hope you will feel the same way as me when it comes to the negetives and positives of computers. But remember, computers have keep more websites that aren't good for young kids, it takes away time from family, but mainly because of the recent @CAPS3 issue." 4 5 9 +1498 1 "Dear Newspaper editor I would like to make @CAPS3 about the benifits of owning a computer. For example you can learn many thing you would of never of been able too, you can also go in chat rooms and talk with friends or other people and it can even make teaching esyer too. Computers in many countres are standard and we use then to learn many things but if you bring one to the tribes in @LOCATION1 it will look like a alein object but once they know how to use it it can open there eyes for ever many people in remote ribes and areas dont even know theres been a man on the meon. Another great thing about the computer is you can pay bills such as taxes, insurance, credit cards and othe payments which is good so if you cant get of your house or the place is closed you wont get late fees and it can even help you save large amounts of money too. Many people use the computer to socialize by joining online website such as @CAPS1, twitter and myspace were you can talk veiw pictures and see what friends are up to. Also on @CAPS2 you can message friends too. Further more many people play games on the computer some are single player and some are online and have millions of players on at a time. you can also hook other gaming system up to your computer to play with other people and even yet hints and cheats too. The biggest reasons that computers are benifit though is that they revolutionized school now for homework instead of doing a work sheet you go on the computer and do it and print it out or email it to your teacher. Another reason the computer is amazing is that it makes research for projects and home work much more easyer, redrable and it ean give you a much more broader view of the topic. By far the best thing ahead the computer is the fact that many teachers use them to teach with and show videos. Therefore it is much easier to learn and under stand thing wich will help us in the future be successful. Also many kids pay less attention when a teaches is giving a lecture but when there is a computer playing a video it will grasp the students attention much better. These are all the reasons why I think the computer is a excellant invention and every family and school should own one I hope you will find my @CAPS3 very persuading and puplish it." 4 4 8 +1499 1 "Dear @PERSON2, @CAPS1 your latest article on the goods and bads of computers in our society was informative, I believe you left out a few major reasons why technology is doing more harm than good. If people don't become aware of the consiquences, who knows where our world is heading? First off, I'd like to mention the health issues associated with technology in general, but especally computers. Dr. @PERSON1 of @ORGANIZATION2 states that ""@CAPS2 since the popularity of the internet boomed with the invention of websites like '@CAPS3' and '@CAPS4', we've seen a drastic spike in obesity-related heart disease and diabetes."" And @PERSON3 isn't exaggerating. Because of the sudden boom in electronics, more and more people prefer sitting on the couch with their brand new laptop or @CAPS5 then go for a bikeride or play a game of fastball with friends. Because of this, more and more people become victims of heart attacks, strokes, cancer, and bone elipses that could leave them paralized for the rest of their life. Is playing that online game so important, to you that its worth your life? Next, I'd like to touch on the fact that @CAPS1 the internet @MONTH1 seem like a great place to do some socializing, it can actually aid in losing friends insted of making them. I know what your thinking, @PERSON2, 'But sites like '@CAPS6' help people connect, why would they lose friends?' @CAPS7, really. Since its so easy to type in a conversation, people are losing actual social skills. They also spend too much time talking to friends without meeting face-to-face, and that eventually causes them to drift apart. And when talking to someone over a screen, its so hard to know if your actually close friends. Because of this, they cant bond and they wont have a real friendship. @PERSON4, a @NUM1 year old at @ORGANIZATION1, says that him and his best friend now only talk over @CAPS3, and they dont even feel like true friends anymore. So finally, I have a request. Next time you turn on that laptop, think. Is this really worth losing your friends and even your health @CAPS2? Next time feel the urge to update your status with something like '@CAPS8 got home,' @CAPS8 call a friend over to go hang out at the park instead. Trust me, you'll be glad you did. Thank you for the time to read my letter." 5 5 10 +1500 1 "Dear local Newspaper editor, More and more people are using computers, but not everyone thinks that is such a good idea. Those who support advances in technology believe that computers have a positive effect on people. Other experts disagree. I think that computers do have a positive effect on people because they let you learn about anything all over the world, they let you talk online with other people, and teach hand eye coordination. I think that computers are very helpful. Dont you love having the oppritunity to research anything from any part of the world that you want to learn about? I'm sure that everyone who has a computer does. With computers, you can use search engines like, google, yahoo, ask, and so many more. I know that computers help me with research all the time when I do projects or write papers for school. The internet is a great, reliable that you cango to when researching a topic for shcool or even just looking for an answer to a simple question. My next reason is that computers let you talk to other people online. Things like facebook, email, myspace, and web-caming all let you communicate with people anywhere in the world. For example, I have an aunt that lives in @LOCATION1, and on christmas me and my family used my cousins webcam to see her and talk to her when we couldnt be with her on a special holiday. Also, things like facebook and myspace let you put up pictures and chat with friends and family all over the world. My last reason why I think computers have a positve effect on people is that playing on the computer is a good leisure time activity. There are all kinds of fun games you can play, and some even let you compete with other people around the world. For example, internet checkers is a game that lets you compete against someone else. There are so many websites that let you pick games you want to play out of a huge selection. Its obvious that computers have a positive effect on people for research, talking to friends & family and leisure activities. I hope you agree with me!" 4 4 8 +1501 1 "Do you think that computer's are good? Well, I do. There are many reasons why I and you should think, this. For example, it has possitive effect on people, it teaches hand-eye coordination, and it allows people to talk to online with other people. One reason why you should think that computers are good is it has a positive effect on people!! Don't you want to be happy. well then, computers is your online fun source!! And your an learn a lot from computer!! Another reason is that the computers teaches hand-eye coordinbation. Hand-eye coordination is excellent skill that you need in life. For example, lets say that you want to play baseball, and you have no hand-eye coordination and you trip and @DATE1 and you brake something. that isn't good for you, is it. No, it is not good. But, if you had better hand-eye coordination then you probably wouldn't have fallen! The @NUM1 reason is that, you can interact with others online. You can @CAPS1, you can go on chat rooms. Or you can go on gaming sources, and interact with other people!! And, you can go online dating! The computer is a greet way to meet new people that share the same characteristics as you!! If you already have a computer then your fine. But, if you don't then you need to get one. And I am right!! People that don't have a computer have no jb. because people with jobs most of the time have use or have computer. In conclusion, you need to get a computer!! Why? well, that because you can alot of stuff on a computer. For example, you can teach hand eye coordition, and you can chat with online friends. Also, it gives you a possitive effect." 4 4 8 +1502 1 "Dear local newspaper, I believe that with too much use of computer it will have bad affects on people. People can get addicted to it so easily. They also use a lot of electricity. And people sit on the computer all day and don't exercise at all. These are all bad affects computers have, but their not all bad, without them life might be a little harder. Playing computer games, and online poker sounds fun right? Wrong! People get addicted to them everyday. Online poker could be dangerous. I remember seeing a show about this guy who was addicted to it. He'd put his credit card information in and sit and play all day. Before he knew it, he was in debt. Once he was addicted it was very hard for him to stop. It's a stupid thing to get into because there is no point to it. You sit and waste money, especially with our economy the way it is. A recent study shows that @PERCENT1 of people who play online poker are addicted within two weeks. Other games are also addicting too. There's a website that called addicting. I guess people don't know the affects of being addicted to a computer has on them and their family. Did you know that @PERCENT2 of electricity in @LOCATION1 goes to computer? Thats almost half of it going to one thing. I don't think it's right that pretty much everything is done on the computer now. In our economic chrisis I don't think enery should be wasted playing computer games. We could use energy for more important things that people any need. If everyone didn't need computers to communicate and everything there wouldn't be a problem. The number of computers sold has gone up @PERCENT3 since @DATE1. I understand emailing, and facebook. But don't get out of hand with it. Isnt being outside on a beautiful day great? Wouldn't you rather enjoy that or excercise rather than sitting glued to a computer? Obesity is a huge problem in @LOCATION1. A lot of people are obese from sitting on the computer and not excercising. I remember when I was younger, everytime I went to my friends house, his dad would be sitting and playing poker and games on the computer. He was very out of shape and lazy. His parents later got a divorce because he turned into a totally different person. Most @CAPS1 are lazy. We don't like to do work if we don't have to. I would define they rather excersise or go outside instead of being on the computer. You live a lot healthier when you're not addicted to the computer. And when you're healthier, you're happier. So in conclusion, if you don't control yourself on the computer it can have bad affects. Computers are easy to get addicted to, use a lot of electricity, and can make people fat and lazy. Do you think playing computer games is worth losing friends and family?" 6 4 10 +1503 1 "Dear newspaper editor, I think we should have internet, or computers at our houses. We should have it because we can chat with our friends and family, noone would get bored doing nothing and we learn new things from different websites. We should be able to communicate to our friends and family @NUM1 out of @NUM2 people in our school think having a computer is good. For example my friend moved to @LOCATION1, we couldn't talk on the phone. It was long distance I talk to her over facebook. There are a lot of websites you can talk on like facebook, twitter or even myspace you can even skype. skype is when you have a webcam and you talk threw it. My mom said that most of her friends chat online with her. It doesn't matter how old are you. Anyone can learn important things. There are a lot of websites that are educational @PERCENT1 things on the computer are worth having. If you are old and you can't go to school just go to google and type any math term, science, @CAPS1, or even learning a new language. Everytime I have to do my social studies homework I go online trust me it's really helpful. Some things on the computer are very fun. You won't get bored on the type of games they have. A lot of parents complain that their children are doing bad things in the streets. The do there kind of things, because are bored @NUM3 people think that statement is true. If they had a computer, and playing games, or talking to friends, they would be like they are. @STATE1 and @PERSON1 are two state that have more people that go on the computer than any others states. Remember it's not only fun. Everyone enjoys having a computer. I think we should have internet access because we can do a lot of things some people think it's bad, but not everything is. We should have a computer, because, we can chat with friends, we can learn important and interestings things and we won't get bored. I hope you made up your mind and decided that all internet access is not a waste of time. I'm not the only one that thinks that "" a computer is what keeps or alive""." 4 5 9 +1504 1 "When people think about computers the first thing they think of is games. Thats not all they are good for. For most people they are very usefull. Computers are great for @ORGANIZATION1. At @ORGANIZATION1 they help with homework and projects. When we are assigned a project we need to do research on a topic and the fastest and easier way is by computer. The students at @ORGANIZATION2, especially @NUM1 graded, are able to type up easys because it's faster and alot easier. If we are at home and we forgot our homework we could look it up online. This can be really helpful and convient to students and teachers. Sometimes it's not @ORGANIZATION1 but its finding things. Technology and computers have came a long way. Now we can look up directions to places we dont or cant find. People can also finding names, numbers, or address useing websites like yellow pages can be a relieable resource for that. Say your going for vaction and your try to find somewhere to stay it could be tough but there are websites you can go on were if you want something fast or mabye a nice hotel for a low price you can find it. The computer can be very fan and intersting when you go places like the @CAPS1 @CAPS2 and you want to show picture of the great time you had so you can post them online. Say you havent talked to and old friend in a while, you can look for them on @CAPS3 or another website and start talking agian you can also play games and connect with friends or play games with friends while online. Weather its @ORGANIZATION1, finding things, or connecting with frends the computer has what ever you need. Maybe it will at one point get damged but they have people who can fix it. Plus if you think about it computers have very reliable resourses that are more updated then books." 4 4 8 +1505 1 "Dear @CAPS1 @CAPS2, @NUM1 out of @NUM2 of the students and staff members of @CAPS3 @CAPS4 school find computers verry important. Computers not only help people in school but at home too. I know that the readers of this artical will agree that computers are verry helpful, they teach us about people and things far away, and they are great for chating online! Most people use compoters every day! Computers are verry helpful tools in every day life. They always have a program that if you spell something wrong it corrects you. Computers even have websites of a dictionary were people can look up words. I know this is verry helpful because my brother is writing his collige essays and their are no colliges that will be impressed by a gramaticly incorrect essay. Computers also help you find things you need really fast, like food restrants and the closest malls, or even jobs! Not only do computers help people with spelling and jobs but they also can teach us about far away places. Computers can show and tell us of wonderful places beond what we have scean. A lot of normal societys familys have been on vacation before. To find an intriging place to go they can look it up on the world wide web. Even if a family cant go on a vacation they can still find from their computer cheeper closer things to do. When computers are beig used to find places and thing across the world and near you is they can also give teens the oppritunity to chat with their friends online. A lot of students in @CAPS3 hallow school have a facebook account. Most use this account to talk to their friends online. I also have a facebook and I use it almost everyday to talk to my cousin from @LOCATION1 that I havent scean sence I was @NUM3. But, computers arent just used for fun chating they can also be used for school blogs. In my language arts class we have a reading blog that every student has to participate in. This blog allows the class to not wast class time to talk about recently read books. In conclusion computers should be taken seriosly because they do help society. Computers help us every day, they teach us and they can be verry fun and eductional. Remember what @PERSON1 from the department of tecnolgey at @ORGANIZATION1 said, ""@CAPS5 can only get better if socitey accepts it.""" 5 4 9 +1506 1 "Computers can affect people in many ways. Most people use computers too much and it can affect their health and the peole around them. People need to get out side and get more active. America is becoming obese and not getting any real useful information out of the computer. Some people are just sitting, mind lessly infront of their computer and eating at the same time! That makes things worse as not only are they not getting exercise, but now they are gaining weight as well as not losing any. This is the exact opposite of what a human should be doing. True people exercise every day. Being on the computer is not a bad thing, sometimes. Sometimes you need to find something about nature but wouldn't it be easier to go outside and find new think I dont live by the but you can to one all the woods cannot be just gone. Even your front yard is full of nature, and you will be getting some (not all) exercise at the same time. Familys are constantly having problems about family members who never have time to talk and funch holes in walls for losing a video game. Dr. @PERSON1 or ""The studies of the human mind"" says ""I found out technology and online gaming increases anger in most people."" That goes to show it can cause problems in familys everywhere because of a video game! So please make sure you try to spend time with your family. So that shows that the computer can be fun, but also dangerous." 4 4 8 +1507 1 "Dear @CAPS1 @CAPS2 writers, @CAPS3 are an avrage of @NUM1 computers per house. That is just too much. I think society is too much time in computers. Computers are taking over our life. Spending time on the computer runs up the electric bill. Computers are one of the leading problems with weight and you are and interesting with society when on the computer. @CAPS4 you spend too much time on the computer you run up your electric bill do you realy want to be spending @NUM2$ in a month or would you rather get groceries, or even pay bills with that money. "" On avrage a family who used less computers saved @MONEY1 than a spends more time on thier computer. ""@CAPS4 i knew how much I save I would decanated computer"" says gamer I didn't know how much my hobbie was me"" @CAPS5 @CAPS3 is the problem life. The worst problem with computers is you dont with society @CAPS4 you spend most of your time on the computer you wont have alot of friends in real life. You @MONTH1 have online in real life toy call in love. I other than paly on the computer. I think society spending too much time in the computer. Computers such as the electrisity bill, when you the computer, you gain and dont participate with society so get off that computer and." 4 5 9 +1508 1 "Computers. Theres fun. But there's also a down side. People spent more time on it than outside or exersizing or even getting together with friends and family. But on ther hand, they're also fun, help kids, and even help get together from dating sites. It makes them happy. It's fun! Computers are fun. They provide a wide arrow of games, educational can just plain fun. You can play role playing games (which and fun because I play a few myself), or you could play educational games like the games on islands, or other downlodabal education games that are, @CAPS1 not fun but essential for the growth and development of a learning child. They also can help kids learn how to and other things at a very early age. Some very adults have and various other things that I cannot the life of me think of @CAPS2 thing computer get them together and they are happy. They do this hundreds of a day. Take away computers and people will die alone and sad. so in conclusion my ideas where! fun help kids and help older people get together. Read this and @CAPS3 sure you'll see it my way." 4 4 8 +1509 1 "Hi my name is @CAPS1 and I'm writing to the local news paper to say that computers are good for people and helps alot like how to get one place two another, how to learn about black history or famous people that did something to the world, and how to find out the news and weather from home or at work, how to keep your besnness going without computers their jobs would be hopless, and like of your family or you tyring to make it in life and the only way to get in contact would be the computers there are computers every where even doctors use them at a hospital to keep people alive to see what wrong with them and where they came from, and one more jobs need computers to, to see if the person is capable for the job so they might look for background information with out it even you would not have a good job so hee are some resons why computers are important. One of them is we need computers for so that we can get around, if your planing to ge some where for the @DATE1 you would look on the computer for that perfect place. Second if you don't know how to get there of corse you can use a @CAPS2 but the computer is the best because it shows the miles and how long would it take to get there so thats one of them. And second to help learn about black history month and famous people, we all know that black history month is in books but not lot of boosks have alot of info in them thats why the computer comes in handy because like on google it gives you more info and shows the image of that person so that you know who they aare, like a famous singer or raper you @MONTH1 like but knows nothing about them you would use the computer, @CAPS3 because thats the best thing to do. Third would be how to find out the news and weather, I if you did not watch the news because you missed it what could you do is go on a news site and watch the news that have been aired on tv, or a favirote show to if you want. Foruth would be besnness, with out computers there busnness would be hopless it would not last that long. @NUM1. They would not knwo there profits @NUM2. how would they monege anything, that would happen if they did not have any type of computers. There lots of more stuff that coulf have said that prove computers are good and why we need them but i just had to cut it short and schools need computers the most to take test on the computers of they have to, so thats all the resons why we need computer and why they are good bye." 4 4 8 +1510 1 "I personally believe that computersdo benefit society in a lot of ways. It can give you all the information you need with just a click of a button, entertainment is easy to find by searching the internet, and most importantly, it improves communication between people. One way computers benefit society is, by making it easier for everyone to get information about something. This is needed, especially in school. It can help kids get their information about the person they are writing about in their report.Getting information easily on the internet can also help people in other ways. What if someone needed to get the hospital's phone number in case of an emergency? He can use the computer to help him find that phone number. Another way computers benefit society is by allowing us to get any form of entertainment easily. This is what majority of the people in our society rely on. Alot of people use the computer to play games, listen to music, and watch online videos. If someone was bored right now, he or she could use the computer to play fun games. What if that person thought it was a little quiet in his or her room? He or she could then use the computer to listen to music. Without computers we would probably be really bored for the rest of our lives. Finally, and most importantly, computers help improve communication between people. This is probably what everyone uses the computer for. Now you can send electronic mail to your friends in just seconds, post and view pictures of your family or relatives and you can even use an instant messanger to write to your friend and get messages from your friend in the fastest speed possible! Without computers, communication between others would be very hard. As you can see, computers can give you information easily, entertainment is not hard to find, and it can even improve communication between people around our society and the world.! Computers are very helpful to us and improves everything about the way we live." 4 4 8 +1511 1 "Dear @ORGANIZATION1, The computer has been a resource we have been using for years and gives you information and pictures but that doesn't mean people have to be on it all the time. People can talk some times with other people or go on the webcam to see a loved one who's in iraq but the need to go outside to exercise just to take a walk around the block. They don't even need to leave the house all the time just excercise to a tape or get a tredmill. Thats all people need to do instead sitting on thier butts all day move around. People becoming obease has risen because of lack of excercise so grab your shoes and go jog a couple blocks in your niehbor hood just do little things and you will feel much better than you were on your computer. Nature is all around us but most people don't noice because their on the computers. Which needs to end now these beautiful land marks across the world are being wasted because hardly any ones looking at them. Go to @LOCATION1, @LOCATION2, even @CAPS1 and get some fresh clean air thats not from your home you can go to the park to just look at the birds just see something without a screen on it. So go got your camera and go some where with wild life and have fun. Just doing these things will help your health, energy and your mind. You can go on the computer and chat with friends but not all the time. Do you want to be unhealthy in life if not go outside and take a walk." 4 3 7 +1512 1 "Dear Local @CAPS1, I have been infromed that people don't get to talk to friends/family, enjoy nature and exercise because of computers. Well computers benefit our life. The first thing about/ computers is communication. People can use @CAPS2, @CAPS3, @CAPS4 and etc. The social networking groups are for abilities to talk to friends, long distance or close and family enjoy research. Just because @CAPS11 use those internet websites doesn't mean @CAPS11 can't go outside and enjoy activities. This leads to other objects called peortables. As technology advances so does our skills. Every year more electronics are made and most likely are portable such as @CAPS5, @CAPS6 phones, @CAPS7, and etc. Many of these companies let us take these devices to allow as to do everyday things. With @ORGANIZATION1 creater of the @CAPS8 @CAPS11 can use this internet/music @CAPS9 for everything. for example, I visit my grandparents and I decied to my @CAPS6 phone. I can talk to friends on my @CAPS6 phone by texting and visit my grandparents. More of this opplies to and @CAPS5 @CAPS11 still all go outside and enjoy life. exercise is something @CAPS11 should yet to. If you stay cramed in your house @CAPS12 fun. @CAPS11 need to cheer up and go outside and play sports. @CAPS11 could get included in and join activity. @CAPS11 also can have videos online to show us how to exercise or use yoga. Most of use portables which goes back to my last paragraph. Exercise is big and @CAPS11 all should do it. What I'm trying to say here @CAPS11 can use computers and electronics and exercise with fun one in all. If you understand experts can agree and kids could be healthier and still communicate." 4 4 8 +1513 1 "Dear local newspaper, I am writing to tell you I think that computers are a good thing because they let people communicate, tons of people haves jobs because of computers and People have help with homework because of computers. People communicate by email and aim and facebook and everything else. People have jobs on computers like cortreporters and tax-retelers and sales people. Lastley kids do homework on the computer and look up stuff ""@CAPS1 related"" on the computer and the other stuff like that. lastley I think computers are good for people, they help with education, work and comunication with friends and family." 3 2 5 +1514 1 "Dear Local Newspaper, In my opinion I support the advances in technology. Advances in technology helps us get information on things we need to get information on, we can chat with friends and family online and it can help our reading and hand-eye coordination skills. One of the reasons why I support advances in technology is because computers/phones can help us get information on things we need to get information on. We need to know what is going on around us, all the time. We need to know what is happening and what is happening with other people in our lives. We need to know the weather/traffic conditions if you have children you need to know if the school is open and if you work in places that use computers for information, you need to check if your boss or co-worker sent you anything important that you need to know about. The second reason why I support advances in technology is because we can chat with friends and family online. We can chat with our family and friends on the other side of the world who have computer. Most of us want to know if our family and friends are ok and healthy, even though we can't see them in person. I, for one, knows this is fact because my family and friends touch each other online. Staying communicated with our family and friends keeps our boats strong. The last reason why I support advances in technology is because computers can help us with our reading and hand-eye coordination skills. Computers can help our reading skills because if we don't have time to go to the bookstore to get a book, we can read the book online for free. It can help our hand-eye coordination because it can help our fingers move faster and help us do things faster. I stated all of my reasons why I support advances in technology. Computers can help us get information on things we need to get information on, we can chat with friends / family online and it can help our reading and hand-eye coordination skills." 4 4 8 +1515 1 "Dear newspaper editor: @CAPS1 are all living in the age of technology. There are many useful devices that help us live our every day lives. The computer is a major help. @CAPS1 can talk with relitives from different areas and you can surf the internet to learn new information. @CAPS4 you can playing games with people from ground the world. The computer is a great divice. Almost everyone has a relitive that lives in another state or country. Well you never see them because they live far away right? With a computrer you can talk and even have a face to face conversation with them. @CAPS2 can bring your family closer together. For example, my family just got a new computer and @CAPS1 have relitives that live in florida that @CAPS1 almost never see. With the computer my dad talks to them almost everyday. Some people that I have talked to said that ther are excited to see their relitives or friends more often. @CAPS2 has brought them closer together and made them better friends. The internet is a wonder place where you can look up information for a school project and learn about different topics. When kids are doing a project in school and the information they need is not in the class book they can search @CAPS2 and @CAPS2 saves time. @PERCENT1 of kids said that when they are doing a project the best thing to use would be the internet. @CAPS4 @CAPS2 helps the kids work faster so they can spend more time outside or hanging out with their friends. Another thing you can do is learn about recent events. For example most local newspaper have a website that you can visit. Even if you local does not you can go to other websites like ""@CAPS3"". They have recent events that happen around the country and around the world. The internet is useful in many ways and can help you with your every day life. Every kid gets bored when its a rainy day. So they can play games with people from around the world using a computer. The are many websites that have fun games that are fun and enjoyabal. You can @CAPS4 become with people from other contrys. My friends @PERSON1 and @PERSON2 play the computer and they have alot of friends from other contrys. I think that its cool that you are playing the exact game with another. Person in @LOCATION1 or @LOCATION2, @CAPS4 most of the games are safe and fun to play. Another thing is that you can connect and play with your friends in your home town. I have many times playes games with @PERSON1 and @PERSON2. @CAPS2's a fun thing to do during a boring, rainy day. In conclusion, the computer is a useful divice thats benefits us and helps us with our everyday life. @CAPS2 allows us to connect with family in far away places and surf the internet for new information. @CAPS4 you can play games with people from around the world. Its a wonderful divice and lets start using @CAPS2. " 5 5 10 +1516 1 "Dear local news, @CAPS2 more and more people use computers people ask if computers actually benifit society. In my opinion I think computers do. They provide entertainment, acess to daily uses, and have many websites for social interactions. I think computers really do benefit society here in why. Computers provide entertainment to people. Many people will want to watch funny videos or thier favorite @CAPS1 show on the internet. of the most popular website for watching videos on you tube. Another great source of entertainment are video games. People buy video games at their or play them on websites like @CAPS2 you can see entertainment on the computer has a much more compared to the @CAPS1 were @CAPS2 program is shown at a certain time instead of when ever you want. Another benefit computers bring to society is acess to dailt uses, the internet provids that can tell you your local weather. Instead or local news imidiatly acess it on you @CAPS4 you can acess encyclopedia and distionarys like at the websites @CAPS5 provide an easy imidiats fools for daily uses. One least example towards the of computers Their are many websites that you can. One of @CAPS5 websites is called , @CAPS6 lets you upload picture of pople or family events for people in you @MONTH1 video chat with people over a and see the other persons face. You can't do that on a telephone or with texting or a cell phone. Many experts believe that computers are taking away time with family and friends but with websites like @CAPS6 it is actually adding time. In conclution, @CAPS5 reasons support my opinion that computers benefit society, They provide entertainment, easy acess to and have many websites for social interactions, @CAPS7 society would be alot harder and this is why I think computers benifit society. " 4 4 8 +1517 1 "Dear @CAPS1 @CAPS2, @CAPS3 a computer is a benefit. They help us in so many ways. It is very helpful, it could make someone's life easier to handle. You could keep in touch with old friends or family. It would be easier for work, and when you're bored, you could play some fun games. It's very hard to have family you can't see and keep in touch with! With a computer you could send messages and photo's to interact with them. You wouldn't have to worry about ever losing communication with them. You could also meet new people. Get new friends from anywhere in the world! Have friends from all different race and culture. Computer's are a great way to interact with others, whether its family or friends. It's always had to do work when you have no clue what it's about! if your ever @CAPS3 trouble on something you could always look up information about it. You could learn how to do things or learn more information about a certain item. When you have homework and don't know the meaning of a word, you could always look up the definition of it. They also hold your information. For example, instead of @CAPS3 a ton of papers you could simple just save it in your computer. Then you could print it out whenever you need it. Computers make work easier and help you organise better. Computer's also amuse you as well. When you have nothing to do, you could play alot of fun game's. You could also watch music video's or funny videos to get you laughing. They have practicly anything you want to play. You would hardly ever get bored! As you see, computer's are a benefit to people. It's always helpful when you could keep in touch with anyone, have help with your work, or simply keep yourself entertained. Without computers life would be harder and boring!" 4 4 8 +1518 1 "Dear @CAPS1 @CAPS2 @CAPS3, Computers are a helpful advantage in the @CAPS4's life. It offers and contributes many ideas and actions. Computers help people find a nice spot to travel. Also it helps people meet or make @CAPS1 friends. A computer is another way for people to get thier hand-eye cordination better. Computers are very helpfull in a humans life. Computers are usefull when trying to explore @CAPS1 places. One can book a flight anywhere in a matter of minits on a computer. How else would it be possible to travel somplace far away without booking a flight on a computer. Next, computers help learn about different coltures. Once one has booked reservations to a certain travel spot on thier computer, they will learn much about the unfamiliar land they have went to. My family has gone to many different areas around the world. The trips would not have been possible without help researching and making flights with the computers. The computer makes it possible to experience to territorys. It is a key item when someone is looking to travel. A computer is emensly important when trying to communicate with friends. People can meet and make friends very simply using websites such as facebook on the computer. Facebook creats friendship very easily. I recently waited to get to know a students better. I looked him up on facebook and now we are aqetances. Next, programs on the computers such as A.I.M. help people communicate about anything such as homework to other personal topics. Lastly, if one wants to get to know another better he or she can look at thier blog. They @MONTH1 start to talk and become good friends. Computers are usfull when trying to comunicate or find friends. Computers not only help with travel and friends but it also helps with ones hand eye cordination. Typing letters while looking at a screen is using the hand eye coordination. This action can help with sports. For example in baseball one must have a good hand eye cordination to help catch and hit the ball. Secondly, with hand eye cordination getting better with the computer. it helps kids fit in. If one has good hand eye cordination they can play sports are make friends. If one becomes good with hand eye cordination and typeing they will be able to get a job writing for a newspaper or a book. Hand eye cordination and typing with computers can lead to a succesfull life. Computers in an @CAPS5 life can help in the long run. It will help with travel plans, friends, and hand eye cordination." 5 5 10 +1519 1 Dear @CAPS1 @CAPS2 I think that people are spending to much time on there computers and not exercising as they're supouse to do every day. @CAPS5 @CAPS3 says that @PERCENT1 of all people in the intere world are spending to much time on the @CAPS3 and not enjoying nature. So they don't get exercis like other people do. @CAPS5 @CAPS4 says that people that go out side and not stair at there computers will live a long and helthy life. I say that @PERCENT2 of all people that are always on the @CAPS3 often go blind and will never see who the world is changing awound them. I say that @PERCENT3 of all people that don't always go on the @CAPS3 will live a better life then the people that are always on the @CAPS3. My @CAPS5 told me that you should go on the @CAPS3 just not for a very long time because beeing on the @CAPS3 for a very long time is not so good for you so don't go on the @CAPS3 for a very long time only for a short amount of time and don't go on the @CAPS3 every day only like @NUM1 time a week. People that have @CAPS6 book acounts you shouldn't go on it like every day go on like @NUM1 to @NUM3 time a week because going on the @CAPS3 for a very long time is not good for people. My @CAPS5 @CAPS8 says that @PERCENT4 of all people in the world have @CAPS9 and ofthen go blind because of them using the @CAPS3 all the time and that if you go on it for to long your @CAPS3 will mealt down and brake. I realy think that people shouldn't go on the @CAPS3 for every long time because every time they go on is a time that they will miss in the life so please don't do it. 4 4 8 +1520 1 "Dear @CAPS1 @CAPS2, @CAPS3 have many debated on whether computers are good or bad. @CAPS6, I believe that computers aren't as good as many people think. Ever since computers were invented people haven't been exercising. Also less kids are reading. Lastly computers are taking away family time. When was the last time you saw a kid outside doing something active such as running or playing a sport? If you haven't it's probably because they are inside with their eyes glued to a computer screen. Exercise is a big part in staying healthy and fit. More kids are becoming over weight everyday. Computer are just another reason why. I had a friend who used to spend all her time on the computer. She became very lazy. She never wanted to exercise or doing anything active. Little by little she started gaining weight. This is happening all around the world and it need to @CAPS4! What's your reading level? @CAPS3 are students in @NUM1 grade with a @NUM2 grade reading level. Part of the reason is because they rather use their free time on the computer instead of picking up a book. Schools now do program called @CAPS5 @NUM3. This program is designed to help students improve their reading levels. I believe that if students would turn off the computers long enough and @CAPS5 we wouldn't need this program. My mom makes sure I @CAPS5 for at least @NUM4 mins everyday. Every student do the same. I remember a saying ""family time is golden time"" @CAPS6, now a days no one spends time with their family. Once again computers have played a part in this too. It's not just kids who have droped family time for computer time. It's adults too. I think the last time I spent some time with my family was about @NUM5 weeks ago when my grandparents came to visit. After that everyone went right back to staring at computer screens. In conclusion, the computers" 4 5 9 +1521 1 "I believe computers have a positive effect on people because computers can help people in many ways. You can e-mail friends from across the world, get important information you might need, and also you can do business online. Computers have fasinating things to show and inform. Most people that have computers can use them for e-mailing friends. Sometimes your closest friends are across the country & you want to talk to them. Why not e-mailing them on your computer? It would mean a lot to your friends it you just take time to say hello through e-mail. My second opinion on why using computers are a positive effect on people because. Some middle school through college & the rest of you life need to use computers. Maybe because of some important information they might need for an assignment from a teacher. Not all the time you can find certain things in books. Now a days computers are taking over books. My third opinion for computers is that some people are to ill to go to work so they work online. Even though you are ill you will still be getting paid because you are still working. So women just had a baby & she is using her computer to work online. So she can make money so she can support her femily. In conclusion, my opinion is that computers have a positive effect on people because they are used for e-mailing friends, finding out important information for school purposes or job purposes. My last opinion is that computers are used for working online. To me, I think computers are a positive effect on people." 4 4 8 +1522 1 "Dear editor of the @PERSON1, I heard you are writing a section in your newspaper about computers and I just thought I would voice my opinion. Personally, I think computers have a positive effect on people. First, I think computers are swell because you are able to learn things about faraway places, like countries on the other side of the world, from the comfort of your home. Also, the information on the internet can help with students' schoolworks. Finally, you are able to talk with other people on-line. These are just a few points why computers are very importent, that you should include in your article. First off, editor of the @PERSON1, I think computers are good for mankind becasue you are able to learn about places on the other side of the world, while sitting at home drinking hot cocoa. This is so very convinient. There are websites containing the geography, languages, and traditions of countries waiting for you to learn. For example, once my friend, @PERSON3, was planning on going to @LOCATION1 for a business trip, but had no idea how to speak the language. I recommended the website, www.Indianow.com and in two weeks she was speaking like an expert. Another time, my sister, @PERSON4, was visiting her in-laws for the first time. They were full @CAPS1 and she wanted to bake something traditional for them. She looked up a recipe on the web and everyone was satisfied with the scrumptious ravioli she made. This is just one reason the internet is so useful. Second, computers are an amazing invention because you can find help for schoolwork easily. My brother, @PERSON5, was having problems with learning about the seasons, but with one click, he was full of knowledge. Also, now-a-days they even have on-line tutors and on-line colleges! Professor @PERSON2 states that @PERCENT1 of passing college students are earning their degree online. This is a fabulous point on why computers are so important. Lastly, computers are really significant to society because you are able to talk with other people online. With videochat, chatrooms, facebook and @CAPS2, you are bound to make a friend who would last a lifetime. I know I did! There are even on-line dating sites and matchmakers. For instance, after mu uncle divoriced my aunt, she was devastated and couldn't date again for the longest time. I told her to try one of those on-line dating sites, she took my advice and found a lovely man. They have been dating for @NUM1 months. Last @DATE1 he proposed. They are now happily engaged. This is my last reason how computers can change someone's life in a positive way. In conclusion, I think computers are a fantastic inevntion because you are able to learn about faraway places while staying at home. recieve help with your schoolwork, and talk with other people on-line. I really hope you will consider my opinion for your article, editor of the @ORGANIZATION1. Thank you for your time." 5 5 10 +1523 1 "@CAPS1 you know we all like computers and we all use it for all different tyoes off things like to chat or to do work and most importantly to fine something but computers are in a way not that good for you especially if your computer is your life, one reason I think computers are in a way bad is because when you are on it for when you are on it for along time you get hungry then you get some snaks and by the time your done using the computer gained. A pound no imagin how much wiget you will gain if you do that every day alot! My next reason why I think computers are in a way bad is because when you are the computer too long your eyes start to hurt and your hands start to cramp and everything starts to hurt to much typing and looking at the same thing for along to can make you have eye problems and can also give you something in your hands and then you will not to be able to do anything with your hands for along time because it will start hurting. My last reason why i think computers in a way are bad because it can mess your computers up it can over heat or just down because you have ben on it for too long. It can also get a virese then you will just have to get a whole new computer @CAPS1 you can see there are plenty of reasons why I think computers are kinda bad" 4 4 8 +1524 1 "Many people have been talking about computers in the @ORGANIZATION1. Networks like @CAPS1, @ORGANIZATION2, and @CAPS2 have be saying that the computers are turning the people in lazy goodd for notings. But I say different! I think the advances in technology is a good thing. Way? I'll give you @NUM1 reasons. My first reason is they give people the ability to learn about faraway places and people. Next reason is makes life better. And my last reson is it give you hand-eye coordination @CAPS3't you sick of haveng to go to the book stor and find a book to do a project? well now with the computers you don't have to. You just go online and look up the info that you need to learn about almost anything form the use to @LOCATION1. Next reason is computers make life better." 3 3 6 +1525 1 "Dear local Newspaper, I was reading this article about computers. I agree with kids and adults not having time enjoying nature, and interacting with family and friends. But, also, kids and adults should be having some fun time outside and enjoying it. But when it comes to usage of computers is helpful for searching information. I think kids and adults need to get active and get healthy, because now kids don't want to play outside, so they can play outside, so they can play video games. When I was a little kid I would always play hide and seek but now my mother doesnt like to play anymore because of technology she rather be on the computer or on the phone. Kids all over the world now know how to use computers because they don't want to be outside. Computers are only helful when your doing a report or something, important. For example, people that have businesses they are going to need computers. Also when a teacher a sighs a project on someone your going to need a computer to search up information for that person. Finally alot of kids aren't taking responsibilty of school. They don't that school serious. Kids think that the computers will teach you everything well there wrong because things on the computer can be made up. But its also making there life very in healthy. So thats why computers are good usage and bad at time because kids don't play outside anymore and computer are helpfull for searching information so with. What I've sadi don't you agree with me?" 4 4 8 +1526 1 "Dear @PERSON1, To this day, there are many people who use telecommunication devices, like the computer. Some think computers have a posotive effect on people. Others are concerned that people spend too much time on them. I think that both these opinions are correct. Although using a computer can become an addicting and unhealthy habbit, they teach a person everyday about something, are enjoyable, and help save the earth. Using computers is something I know millions of people use everyday, and would think @CAPS2 would be difficult to live without. For example, my family owns four computers. We each have our own specific reasons for using them. For my mom, @CAPS2's usually working or checking her e-mails. For me and my sister, @CAPS2's researching and typing of homework, and communicating with our friends via facebook or. So say when my mom is working, or me and my sister are researching something we learn. Before these were computers, everyone used, but now that we have the internet, theres no really need to get a book. Most of the time people wont even have the book their looking either have to go out and buy get one from the library. Now this is an inconvenience to people, so why not use the internet thats quick, and. People also use computers to like I mentioned above with maybe facebook, @CAPS1, or e-mail.@CAPS2's quick, easy and fun. @CAPS2 also saves paper which helps the planet. We always use to send letters, but now with these sources, you don't need to much! Computers are also fun for kids because you can play a lot of games on bring. Now even though I mentioned all those good things, there are unfortunately bad ones too. So many people use computers everyday, and @CAPS2's bad for your physical and mental health. People spend so much time on them that they can get easily addicted. This means they will be on them all the time, and never do other things like go outside. They wasn't exercise which could be bad for their physical health. Also, staring at a screen all day is bad for your eyes, and brain. So I think, due to these causes, people shouldn't use them constantly. In conclusion, I'd like to say that people should use computers for learning things, go outside or do something active because spending all this time on computers can result in physical and mental health issues. Thank you and I hope you agree with my statements." 5 5 10 +1527 1 "Dear @CAPS1 @CAPS2 @CAPS3, @CAPS4 many people think comptuers are bad there are many reasons as to why they are good. Computers are very environmental friendly and so are @PERCENT1 @DATE1 people today. They also allow us to type assignments and other important papers. People also don't know that they are not the worst @ORGANIZATION1 on the market today. Computers @MONTH1 take away time from people that they should be spending on excersice, but computers arent the only thing that do that more people spend time watching @CAPS5 then they do on any other activity, @PERSON2 head @DATE1 @ORGANIZATION1 conducted a survey in @DATE1. His survey showed that out @DATE1 the @NUM1 people questioned @PERCENT2 spent @NUM2 hours a day watching @CAPS5, @PERCENT3 spent @NUM3 hours on the computer, @PERCENT4 spent @NUM4 hours reading and @PERCENT5 spent @NUM4 hours excersising. So clearly computers are not our biggest problem. Many people today are ""@CAPS7"" or ""@CAPS8-environment"". So instead @DATE1 buying newspapers or magazines most people go online to research current events. @PERSON1, @CAPS9 @DATE1 the @ORGANIZATION2. Says if we use comptuers instead @DATE1 newspapers @PERCENT6 @DATE1 the trees we cut down each year will be save. So obviously computers are environment friendly. Todays youth is messier than it ever was. @CAPS10 are having a hard time grading papers and tests because @DATE1 kids hand writting. So instead @DATE1 handwritting papers, kids make it easier on @CAPS10 by typing their work. Rescent studies show that @PERCENT7 @DATE1 @CAPS10 find it easier + better for kids to type papers. This shows kids are better off typing papers, and assignments. I hope you now understand my position on computers. The help us in many other ways too. In conclusion, they are not as time-consuming as every one @MONTH1 think. They also help us with research, are enviromental-friendly, and help the youth @DATE1 our world become neater one click at a time." 5 5 10 +1528 1 Dear @PERSON1 I think myself that the computers could help u. With a lot of thing like my teacher gave my class some homework and we had to find facts about @CAPS1 @CAPS2 the @NUM1. And if it wasn't for the computer I wouldn't know nothing about @CAPS1 @CAPS2 the @NUM1. Plus the computer could help u find long lost family remembers because when my grandfather die my mother finded her sister on the computer. Plus on the computer I could find out about others states that I dont know about and the computer could teach u about a lot of thing my mother and teacher can't teach @CAPS5. Nah @CAPS6 just saying computers could teach u abt of things that people don't know about. 3 3 6 +1529 1 "Dear @ORGANIZATION1, I rencently started researching the effects that computers have on people an have found some shocking facts. I do not belive computers benefit society at all. Three reasons why I believe this is because it makes people lack exercising, enjoying nature, and interacting with friends @CAPS1 is a rising problem in @LOCATION1 and a major factor towards @CAPS1 is computers. In fact statics so that people who spend more time exercising than looking at electronics all day actully live longer lives. So my first reason about why computers do not benfit society is that it lets people lack exercise. People need exercise to live and with computers it is becoming more lacking than ever. Also, exercise give you interfines a not more that makes you happy if you live your life exercising instead of watching or doing violant things on the web that will lead to a less violant future. My second reason is that computers cause a lack of enjoying nature. Nature is a beautiful thing filled with simmering lakes, the beautiful scent of balsam fine, and thosands of creatures. With computers thoshands of kids are missing out on the fresh air and adventures that nature has in store. My parents didn't have computers when they were little and they say that they enjoyed running around their neighborhoods playing sports and other fun activities. Finally, computers lack in interacting with friends. Remember when you were little and you called up your friend to hang out and sleepover, well now computers have caused people not to have to call or hang out with friends. Instead you can just @CAPS2 or email them and @CAPS3 you can have a conversation without even looking at a person! In closing, computers cause a lack in exercise, enjoying nature, and interacting with friends. Please help and encourage others to help me put a stop to computers! Thank you for your time and I hope you learned some shocking and interesting facts from this letter. " 4 4 8 +1530 1 "To: @ORGANIZATION1 goes so fast, and the most they make more new invations. They had invented a computer which it helps people in the work they have to do, however there is a big problem, is that people are spending too much in the computer specialy teenagers. I suggest that is a horrible idea, because they are less time being active, also less time intracting with friends and family and @CAPS1 it is dangerous for teenagers. However many people @MONTH1 not ogrea with me. There is so many teenagers and adults that are just wasting time in the computer, instead of playing outside enjoying the nature, doing exercise and just having fun. Don't you think is a great idea. Well a friend of mine used to go outside everyday went outside to play. I think . Which I really miss her. You know when you go spent time with your family. But guess what they are in the computer, wasting time instead of spending time with your family. Do you think thats good? Well is not because thats how the family gather and stop coming to visit you. That's just so sad had family seperate. That's not all because do you think that people will be in dangerous problems, well they are. Do you know how you get a myspace and you meat a boy that says that is the name age as you and tells you if he could meet you and you say yes and lets say you were @NUM1 year old girl, he is like @NUM2 years old. He will abuse of you or kill you. You thought he was @NUM1 years old but he was not. I think is dangerous for kids. I think is a horrible idea of having computers, because you will be less time spending nature, also less time spending with your family and getting into dangerous things. However people @MONTH1 not agree with me, but what if your child was in dangerous. How would you feel? People should really think about having computers." 4 4 8 +1531 1 "Who in the world would say a computer is useless. No one, computer are one of the most useful device ever made. I think that computers are perfect and can help you build skills. I have @NUM1 reason it build skills, fast information and fun. Now lets get started with skill. Skills are things you need to have if you want to pursue a career. You can learn skill from book, tv and computers. For example i learned how to type rapidly on a keyboard from a computer on a game called type to learn. After a week of this game. I was typing like a pro. The computer also has chess to help build stragety. Just ask my super smart english teacher @PERSON1 ""she say that chess build's character and strength your mind. Moving along, i want to talk about how you can get information in a instant with computers. Experts say that it the number one way to get iinfo badly. I know i argeed with that, after study for a test on @LOCATION1 carver in my book, but one of my pages was missing so. I used my computer not only did i get my information quickly. I had gotten more information than the book. The next day i passed my test. @NUM2 percent . You how useful a computer can do. Finally, i want to talk to you about good old faishon fun. As you know are perfect for building skill and get information, but you can away alway use a computer for fun. Do you know anyone in the world that can say the computer is not fun. No you can't because everyone in the world use the computer for fun stuff like online game, video and talk to people. Thanks for my reason about computer building skill, having info and fun." 4 4 8 +1532 1 "Dear @ORGANIZATION1, In many ways computers have been very useful to the human rare. They can been used to look up information, talk to family and friends music etc. Don't you think people are wasting more time on the computer instead of getting exercise. It's clear that computers can do just about anything want than to do. But why spend your time on the computer when you can spend time with your family. Playing sports, or getting some fresh air. I think computers have a positive effect on people and negative effect one of the positive effects is being able to talk to your friends. i know sometimes we are not able to see them as much in school. In my opinion I think it is a great way so you can catch up on funny times that you can and friends shared. Now here comes the negative effect. Mang kids get bulled and picked by other kids over the internet. This can cause other kids to have a low self esteem, and cause dangerous events in the future. When it comes to computer they have saved many people life. Some of these ways are finding cures to harmful deases. Computers have information when serious weather storms are coming and prepare us for the weather. Wouldn't you agree that computers have played a huge role in our lifes. Sometimes we she take a break from them and enjoy nature. So have fun with technology and don't forget to stay active too." 3 3 6 +1533 1 "Dear local Newspaper, Have you ever wondered why people spend so much time on the computer. The effect of people a computer is good and had because the good parts you can communicate with people in far away places, like you can talk to someone you went to @LOCATION1 with in @LOCATION1 and / or @CAPS1 @LOCATION1 with. The bad part is that if your on the computer all the time then you are neglecting time with family and friends. When you are spending all of you time on the computer you are becoming a couch potatoe and its very unhealty of also a good reason is a family member moved and you had to communicate by webcam so if you like live in @LOCATION2 and you have all you family here in @STATE1 other by sending letter and by sending pictures but they cant see how you act and by phone you can only hear voices you can see anything. A lot people disagree because alot people think computers are a big waste so thats all i have to say on the subject." 3 3 6 +1534 1 "Dear @CAPS1, @CAPS2 oppinon about computers are that people should use them. Think about your children, when they grow up they will need to know how to use a computer for school, or even a job. It also teaches hand eye cordanation for multi tasking. The computer is also fun and easy to use. I am almost positve that you love to use a computer, who dosn't? @CAPS2 first reason is that you will need to use a computer in everyday life. For example if you are going to a job interview most @CAPS3 will ask how meny words a minuet can you type you need to be proficant. Also at school if you have a writing asinment due then it would take more time writing it than typeing it. All @CAPS3 you will have to type one time or another. Aspesaily your job as an @CAPS1 you need to use a computer everyday. The computer also teaches hand eye cordanation. Hand eye cordanation is kinda like multi tasking you could type and talk on the phone or even excircising and txting. Hand eye cordanation is a very important skill in life. All @CAPS3 you will need to multi task like at a library you need to find a book and talk to people. Even driving a car you need to multi task to stay on the hand, you need to use one fast from brake and gas and you need to be looking at the road. You must to multi task along with hand eye cordination. Your in luck a computer teaches you. @CAPS2 last and final reason is its fun and easy to use. I was @NUM1 when I started uing a computer I loved to play fun games. I never could type but I caught on because if you are having fun while you it will be easy to turn. Just like math its not fun but you have to larn how to do it. So if you like having fun while lurning some thing the computer is for you. It's now or never for people to larn, get @CAPS3 and get good grades. Its fun and easy to lurn how to use. It teaches you hand eye cordanation plus multi tasking. You will absolutly need to know how to use a computer for @CAPS3 and school. We need computers for life we always will need to use computers for every single day of our lives. Don't tell people it will note your brain or you will become unhelthy from being on the computer look past it. Don't you see all the good uses for computers?" 4 5 9 +1535 1 "Here is my @CAPS1 I think computers are useful and here are my @NUM1 reasons one kids can talk to their friends @CAPS2 they are punsied. My second reasons is people can go on the computer @CAPS2 they are bored for ex: @CAPS2 a kid beat all teir games and @CAPS2 they are bored they go search for new ones to buy, my final reason is @CAPS2 people want to look up something for something 'like their project but @CAPS2 the labireey is closed they can just copy down the thing they need. My first reason is, kids can talk to their friends on the computer @CAPS2 they are grounded for ex: I was grounded in @DATE1 for slapping my cousion in face but I still got to talk my friends kthen we are still talking but the only way to trick your parterents are to tell you are aking your friend about homework. Myh second reasons is people can go on the computer @CAPS2 they are bored for ex: @CAPS2 a kid beat all his games and he is broded te can go serch for new ones to buy or rent them or play downloadable games for the computer. My final reason is @CAPS2 someone wants to look up something for his or her project and the liebreey is closed for information and copy it down for your project. My conclusion is we need computers to survive without them we will be in the stone age still." 3 3 6 +1536 1 "Some people dont like computers because of instant reason, and other people like computers little too much. I like computers but @CAPS1 not obsess with computers give good efforts on people, even me you can learn things off the computer and you start to get good hand eye coordination one of the things I like about the is that you can 'talk"" to other people. Lots of people uses the computer a little too much that they dont exercise, or watch nature as much some normal (other) people should, and they dont spend them with their familys. I rather spend time on the computer for only (#@NUM1) three hours so then I can do other things with my time and you or anybody should do the same." 2 2 4 +1537 1 "My opinion on computers is that I think it's a good idea for people to go on computers. I think this way because if you haven't seen someone for so many years then you got a chance to see that person or talk to that person through the computer. Computers are also good because if you have a project to do from school then you could get good information based on what project you have to do. I like to go on the computer to talk to my friends that I haven't seen a while you could also meet new people and make friends. If there wasn't computers then we would have to look through a lot of books for information, or go all the way to the bank to check your account balance, this is why I think computers are good ideas. On the computer you could see workouts to get fit we don't only have to go to the gym. My dad gose on the computer to talk to his sisters, or play games with other people arount the world. Another example I could use is my mom she talks to her family in @LOCATION1 and in other places too. If there wasn't computer's we couldn't our tests, we couldn't get information. I think computers are very good ideas, cause it's good when you got to pay your bills too. We could interact with friend and familys online too thats what a lot of tenns and aults do if there was a rainyday or if its snowing and we don't go the chance to see our friends or relitives. For some people they think it's not a good idea because some people get addicted to the computers, but there is so much that you could do that the computer won't get you board. Thats why I think that computers are a good idea and that they are very important." 4 4 8 +1538 1 "A lot of people use computers today. But not everybody thinks they benifit society. But computers can do anything! You can do reaserch, you can play games, and most of all, be free. Were you ever given a school project to do, but no book has the information you want? Well the internet does. A lot of computers are connected to the interact where you can find anything! Are you trying to find facts for your science project? Just go on your favorite search engine and search your topic. You'll find endless pages on anything. Even if your not doing school work, you can find anything on the internet. Did you forget the number of your favorite football player? Search his name and it'll tell you right on your screen. Are you wondering why the @CAPS1 won the @CAPS2 @CAPS3? Your choices are endless! Even if your computer doesn't have internet, you can play games. Playing games on your computer is a great hobbie! And if you are connected to the internet, you can play games with other people around the world. Playing games on your computer is a great hobbie, but you cant play all the time, you need to find other things to do to. There are a variety of computer games. Adventure games, shooting games multiple player games, and more! You can even play poker on your computer. I think the best part of any computer is your freeness while on one. You can do almost anything. You can go on the internet, play games and even talk with people. You can also customize your computer to your liking. Do you have a picture of your cat? You can put it as your background on the desktop. Want a different curser, you can change that to! You can change anything you want with just a click on your mouse. There you go, there are endless possibilities with computers. You can learn, play, and be free. But the most important part of using a computer is to enjoy it, and have fun!" 4 5 9 +1539 1 "Dear Local Newspaper, @CAPS1 personal experience, I think that computers have a positive effect on people. Many people enjoy their time on the computer because, with today's technology so many things can be done and quicker too. @PERCENT1 of @CAPS2 have a computer at home. I do and its just great. I got most things done and in a matter of time. I think computers have a positive effect on people because today you can do almost anything. For example, I have family in @LOCATION2; @LOCATION3, @LOCATION1 and @LOCATION4, and instead of calling them on the phone, I could video chat with them and it feels like you're actually there. Also, now you can pay your bills online, and instead of sending a letter through mail and waiting when it will arrive and having to buy stamps that are extremely expensive, you could just simply send on e-mail-free of charge. Most college students do their homework on the computer. They type essays, or while doing research on someone or something, they could just save it and take notes on it later. So basically a computer is almost a part of everyone's life and it can be entertaining, fun, and used for more important things. What I'm trying to say is computers are a part of every teenagers routine during the day. We like to interact with our friends and listen to music and bond with family and other realtives who you don't usually contact all on one piece of technology. Some people even go to school over the computer and get a degree in something. Computers are important, a computer will scan this test of mine and give me a score, so I think now you will agree with me now when I say computers have had and always will have a positive effect on people. Thank you for taking the time to listen to my opinion and I hope you agree." 5 4 9 +1540 1 "@DATE1 @CAPS1 Local Newspaper, I think that computers have a huge affect on people. My thing about it is that the computer gets kids lazy and unactive. Having a computer will give kids the action to sit around and do nothing. I'm sure you've heard of websites such as myspace, facebook, formsping, etc. These websites can get a person to be willing to be on computer instead of exercising and staying healthy. I believe kids like me these day want to keep in touch with their friends. If the phone's not in the picture then the computer is. Also getting rid of the computer can stop the homosexuals from getting a hold of kids by acting their age. I will admit the computer can be useful but to be on all day that's just rediculous. I have a @NUM1 year old brother that stays on the computer from the time he gets til the time he goes to sleep. Compared to me he's not fit and healthy at all, that's what countless hours on the computer did to him. In fact he's on myspace so much that he has over @NUM2 friends and he doesn't even half of them he gives them his number and home address. Do you notice a lot of kids these days want to. can when you would rather waste the computer other than outside and at least self. I've always had a to football but I could @CAPS2 find the time to play with my brother. All they are about is chicks and of course the computer. I'm not asking to take away computer's in people's homes but put a stop to the daily number of hours spent on it because time is one thing that money can @CAPS2 buy. Some kids will look back to these days wondering how much time they wasted on nothing. long story short like life, dont spend it all on nothing." 4 4 8 +1541 1 "Dear NewsPaper, people are spending too much time on computers. You could be outside enjoying nature, playing sports, or traveling. Some people say that you can learn about animals and plants on a computer, but there is nothing like really being outside with them. People who hike and really enjoy being outside are @PERCENT1 smarter than people who don't. I like being outside more than inside and I have straight A's. Sports are also a good way to get outside. My favorite sport is baseball and I am pretty good. Some places say that computers can help with your hand-eye-coordination, but how can a computer help you with that? Sports are what help you with hand-eye coordination. Playing sports can also help you get stronger. Baseball is why I can bench press @NUM1 pounds. @PERCENT2 of kids who play a sports are not over weight, but @PERCENT3 of kids who don't are. Traveling is also a good way to get outside. I love traveling. I am fluent in english french, and spanish. My favorite place to go is northern @CAPS1 in @LOCATION1. Computers can show you pictures of a place, but when you are actually there, it is really fascinating. A picture on a computer cannot even compare to what it is really like. You also cannot walk on a computer, or drink the water from a stream, or climb up a clift. There is really no comparison. Computers are alot worse and alot worse for real nature. Compared to real life and nature, there really is no comparison. Computers aren't as good as real life. You can enjoy nature playsports, an travel the world, all by just being outside. Thank you for your time." 4 4 8 +1542 1 "Do you remember school projects sitting down bored and watching your @CAPS1 stations or sitting in the doctors office waiting bored out of your mind? Well no more! Since the computer was invented there have been many many advancements and all of those things are gone. There was once a time when the only way to do a project on a country was to look in the paper untill you found something now with computer advancements you can enter a country's came into google, a search site, and up comes @NUM1 things on that country. In fact @PERSON1 a expert on computers and inventor of one of the most advanced computers on earth says that searching for information is now @PERCENT1 to @PERCENT2 eisier depending on the topic. Also you no longer have to work a redundunt type write that always makes mistakes that you have to retype. You can just use @ORGANIZATION1 and you type your essay. Anything speelled wrong is underlined in red so you only rarely have a spelling mistake. As a result of this increase in knolage, from a learning stand point computers are extremly good for mankind. My second reason that computers are extremely good for us is that they are entertaining. On your new laptop you can go on miniclip or addicting games, both gaming websites and play games. These game while not only are fun improve handeye coordination which helps with sports, driving, writirs and many other things. More advanced gaming computers called consoles such as the @CAPS2-box @NUM2, by @ORGANIZATION1, the @NUM3, the @CAPS3 by the @CAPS4 provide exteme gaming experience. One of the more recent games for these consoles is called @CAPS5 of @CAPS6! Modern @CAPS7 @NUM4. This game has an online system where you can talk to and play against people all around the world. Not only that but advanced games such as @CAPS5 of @CAPS6 improve eyesight. Studies show that playing a high action game @NUM4 hrs a day will improve eyesight more than eating @NUM6 serving carrots a day. My final reason that computers are good for you is that they take boring waits. If you've everyone to @CAPS10 you know that the lime can be @NUM4 hrs long. People used to wait that just standing there. Now people can pull out their @CAPS11 or @NUM8 player and listen to music. The @CAPS11 can take videos and pictures as well as play music, videos and games. If you are lucky enough to have an I touch you can check email, stocks, weather and news right on your @CAPS13 as well as buy songs which can be @NUM9 cheaper than @CAPS14. In conclusion all of this advantage in technology benifits us greatly. We can now learn about new exiting things have fun while improving eyesight and we don't have to wait." 5 5 10 +1543 1 "Dear local newspaper @CAPS1 i think some peoples are not to much on the computers. Some peoples might be talk to their family members. To see if they are ok or if they are bad so they can know. How about if someone die in they family and they don't know notthing about that peoples. It might ben their parents, grandma, grandpa, aunts, uncles or it might ben one of their best friends. Some people also might be on their bank acount. To see if they can get out money fror the bank. Might also be sending money by going to the computer and be sending to their family members. They might be paying a bill by the computer. The money they own to that bank or they might be doing some thing eles. I also think people are useing the computer to much. Just like kids they go on the computer to just play games. That's not go for the little kid because if they keep going on the computers. They might not want to get away from the computer. Then parents will have so hard time calling their kids to go eat or to go to sleep. That's going to be a hard work to do. So i think some people should go outside to do exercis and enjoy the nature. I do beleve to people will go outside and do exercis, enjoy the nature, and spenting more time with their family. And thank you local newspapers. Some people are also now things about people are about some eles." 4 4 8 +1544 1 "I People spend too much time on the computer. A lot of people are on the computer for about the whole day. They should be spending time with family and friends. People never have enough time for activities. Also computer should mostly be used for talking with family and friends, homework,research, games @CAPS1 bored, and work. To begin with, people need to spend more time with family and friends rather than on the computer. For example @CAPS1 your mother or father asked you @CAPS1 you wanted to go out to dinner and you said no, I'm on the computer, that would just mean your obsessed with going on the computer. A lot of families are bing broken apart because people spend too much time on the computer @CAPS1 you have a friend over and they say I am bored and all you are doing is play games on the computer than that is just being rude because your friend is bored. So you need to get off the computer and spend time with your loved ones. Previously I stated how people spend time with loved ones, well people need to spend more time doing activities as well. A lot of humans sit on the computer and eat so over the time they eventually get fat. @CAPS1 you are gaining weight because your on the computer than you need to go do some activite to off that fat. @CAPS1 you are a teen and you are given the idea to play a sport and you it because computer is more important then is some serious obesession with the computer. As a result, the computer should be used wisely. The computer should be used to talk to family and friends, homework, research, work, and @CAPS1 you bored play some games little games on the computer. Those are probably the most important things that should most likely used for the computer. A lot of these things that I have listed are important because @CAPS1 you go on the computer just to be on and watch people talk then what's the point of wasting your time on the computer when you could be doing much more different things on the computer. For example, @CAPS1 you have homework such as vocabulary and you need definitions you can go to www.dictionary.com to find them, or @CAPS1 you just need to define a simple word. In conclusion, people spend too much time on the computer. They need to be spending more time with family and friends. Also people need to be doing more activities in their lives. Lastly, you should use the computer for useful things like homework or even very important research. So, as you can see humans spend too much time on the computer rather than doing much more important things." 5 5 10 +1545 1 "Dear @CAPS1 @CAPS2, I am aware that many people are stateing that people spend too much time on computers and not getting enuff exercise well I have that their are a lot of people useing computers and they are gettiing enuff use. Im going to explane why within the most few paragraphs. First I would like to start off by saying its good that people are into computers and working with them because that books their learning activities and they learn new thinngs and it will help them be sucessfull in life, people play games, cross word puzzles, riddles, and many more. Same use the internet for ingredence, car parts, ect. Next, useing computers is very helpful to the human race because it will effect students school, parents/guardians/teens. It will effect and lots of schools are useing computers now and exspecialy students to do their. It effects parents, beca use it will sucess them in life and help them find jobs, with their jobs. Finally their getting enuff exercise because their going to bed, their eating, they go to school, work, or do something for the day that involves walking. Nobody just sits home and does nothing those days. Theirs always something to do or a place to go. Well I hope you think about what I told you and take it into consideration. Thank you for your time, and just remember your job is done on computer too." 4 4 8 +1546 1 "Dear @CAPS1, People use computer all over the world, for one reason or another, but they are very necessary in our world. That is why computers have a good effect on people today. They help us contact distant family members. Kids rely on them for studying or homework. Adults need them for their jobs, like sending emails or typing a proposal. Thats why computers have a good effect on us. Like me, many kids have family across the ocean or just across the country, either way, contacting them is tough. Calling them @MONTH1 be expensive in most cases and sending letters certantly take to much time to reach them. With email, the message will be sent quickly and free. You can also have conversations through email with no problem. Another very effective way to contact family is through skype or a web cam. This way you can see your family from miles away in the comfort of your own home. Computers help kids too. Kids like me always have homework on the computer. It could be typing up a final draft of a paper or taking notes on a historical figure, either way they both require a computer. Sure, there are books to take notes on people, but do books type up papers? Kids and teenagers can also use them for studying. I constantly use the computer to practice spanish buy using a website with worksheets a flash card to help me. Computers nbot only help kids, they help adults too. MAny adults in @LOCATION1 and othe countries are business men and woman. They are constantly sending emails, typing proposals and all those things. And without a computer all that would be very challenging. Business men are not the only ones doing that though. My father, an electrition, has to sned out emails and documents about his latest project several times a week. Aside from work, we use them in our everyday lives. For example, ordering clothes and toys, but most popular is doing your taxes online. It is quicker easier and that is why @PERCENT1 of @CAPS2 finish their taxes online. Computers have a good effect for people of this age. Not only i sthat my opinion, it is also more of a fact. They help us stay connected with distant relatives, help our children stay on top in school and help our parents and other adults in their jobs in everyday lives. Not only are they helpful, but they are necessary and I hope your agree with me." 6 4 10 +1547 1 "Dear local Newspaper? Today i am wrinting this letter to you on computers. I belive that the people who don't have computer's have the right to say that people are online rather than exercising. My three topic's are they teach hand-eye coordination give people the ability to learn, and allow the people to communites. First, the computer's are'nt just for talking about! It gives them to learn hand-eye . If people were to belive that computers are just for fun. They would teach you how to type and take some lesson on typing without looking on the keyboard. Secondly, it gives the people the ability to on other cultures or where a is . @PERCENT1 out of the american popoaltion people are online. learning, and the @PERCENT2 are online job to be online. What about little kids? Where the . I'm sure they're buy them educational games for online. Finally, it gives ability to . With other people. If theres a school closing a delay you don't know that you would like to get as a . people the ability is check-out on what's going on around the world or checking for the weather. These are my reason why i truly belive that people should be online atleast twice a week." 3 4 7 +1548 1 "Dear @CAPS1, @CAPS2 don't have an affect on people because you can play games, webchat, and watch hilarious videos on the computers. Also, you can use the computers for a research project or you can use the @CAPS2 for some facts on @CAPS3 people like @PERSON2, @PERSON1, and @LOCATION1. Also, who would want to get of their @CAPS2 and exercise, exercising is so boring and lame. Second, who would like to especially enjoy the nature, walking through the woulds is so boring, you'll be walking through mud, ticks will be all over body, mosquitoes will try and bite you when you sweat. When kids get older, they mostly don't want to interact or spend time with their family, they want to spend time with their friends everyday. Also, they mostly want to use technology to. Kids will spend time texting on their cellphones when they're not in the mood for calling. Thirdly, computers do give you hand-eye coordination it teaches you how to type without looking down at the keyboard. Computers also teach you how to set you fingers on the home row for the keyboard. Finally, @CAPS2 really do benefit society because you can use this technology in middle school, high school, and through college. When you get older you'll be learning more about these kinds of technology. Also, kids could teach their parents how to use computers if their parents don't know how to. Teaching you parents how to use @CAPS2 is a great responsibility for your actions." 4 4 8 +1549 1 "To whomever this @MONTH1 concern, @ORGANIZATION1, almost everyone has them. Computers can make it easier to find certain places by using search engines such as @CAPS1 or @CAPS2 they are also a way of communication. I believe people using computers does benifit society because scientists use computers every day, to make the plans to send a ship into space or to keep progress of an experiment. Computers help people stay organized. A lot of teens and kids use their computers to shop and stay in touch with friends. Some people belive people spend to much time on computers. That @MONTH1 be true, but also remember what its doing for society. When people spend less time exercising, enjoying nature and interacting with family and friends its a personal choice. Its not like their being obliged by the @ORGANIZATION1." 3 3 6 +1550 1 "Dear local Newspaper, @CAPS1 people use computers but not every one agress that it benefits society. In my opinion, computers benefit society. There are @CAPS1 websites that can help you find information. Computers also allow people to work easily. A third reason is @CAPS1 companies are able to use them to gain business. If you are doing a project or need to look up information about something, the internet is one of the easiest ways to find that information. Google.com has so much information about almost any topic you can think of. If you are a teenager that doesn't have a drivers license and there is no one to take you to the library, computers allow you to be able to hand in the report/project on time. There are also websites that find you direction, to where you need to go. Mapquest.com is a quick and easy way to help you figure out which way to go. Computers allow people to easily. If your family member lives far away and you don't have enough money for the phone bill, computers help you to not loose touch. There are websites that can help you keep in contact with old friends that you don't see anymore. Computers are one of the only ways that people fighting in the wars can talk to their relatives. They are not able to have phones and sending a letter can take a long time. Companies use computers for easy access to the public. If you are a new company, you can put a little ad on the sicle of the screen on yahoo.com and millions of people will see it. They of so use computers to make flyers easily and quickly. Making a hundred flyers by hand can take hours. But on the computers all you have to do is make one and then you can print out one-hundred. Using computers helps society. you can easily find what you are looking for and you are able talk to anyone you want. Also, it is easy for companies to attract business. Those are only a few of the @CAPS1 reasons why computers are good for society." 4 4 8 +1551 1 "Dear local newspaper- I understand that computers are becoming more of a ""must have"" in peoples everyday life. I believe this is a great thing! If you're on the computer you type which helps improve peoples hand-eye coordination. Also, you can learn more about people, places, cultures and much more. Lastly, you can communicate online with other friends or even meet new people. To begin, I think having computers is a good idea because it helps people improve on their handeye coordination. My cousin @PERSON3, who is a big time baseball player, used to have trouble catching the when he was younger. He kept trying over and over again and never gave up. Then, for his birthday his parents bought him a computer! He was so excited, but when it came to typing papers, he wasn't the best. Not only did he practice baseball but also typing. His family realized that buying him that computer was of the best ideas. It improved his baseball career (by throwing and catching the ball) and increased his grades in school. However, @PERSON3 is not the only one that has gained hand eye coordination from computers. A recent study from yale college shows that @PERCENT1 of people that use the computer for atleast a month gains some sort of hand eye coordination. @PERSON1, a teacher of the computer class at high school states, ""@CAPS1 freshman that I get in my class tells me that computers have made their sports careers easier because they now have better hand eye coordination."" Computers have two things in one, you learn to type and help your hand eye coordination. Do you want you @CAPS3 to be lacking that positive ability in life? In addition, computers help you learn more about people, places and cultures. I heard a couple nights ago that @ORGANIZATION2 had an earthquake. I also learned about the powerplant explosion in @LOCATION2, @LOCATION1. How do I know all of this you ask? The front page on @CAPS2.com! But, i'm not the only one who has gained this knowledge from the internet, so many more have too. @ORGANIZATION1 took a poll about how many @CAPS3 use the computer to do research and @PERCENT2 answered that they did. Does the society really want to take away @CAPS3 knowledge of whats going on around us and our history? In conclusion, people can communicate with friends and relatives. This is great if you haven't seen them recently, or if you want to just stay in touch. For example, @PERSON4, mycousin, just found me on facebook. I haven't seen her for eight years abut now I talk to her all the time. We talk about visiting each other and how our family's are doing. But, you can also talk to your friends too. Studies show that @PERCENT3 of @CAPS3 between the ages of eleven and eighteen talk to their friends over facebook on a daily basis. Dr. @PERSON2, a teen psychiatrist, says ""I think this is a great idea for @CAPS3 to communicate with other @CAPS3 through the computer. It gives them the chance to interact in a different way."" @CAPS3 have such a good lifestyle for them, do you want to feel guilty for ruining that? Finally, people have perfect opportunities right in front of them. Computers help improve hand eye coordination and helps you learn. It also lets people interact with others in a different way. Do you think that these golden ideas are bad for our society?" 4 5 9 +1552 1 Dear: local newspaper I agree with experts that said that computer shod be used becouse i said that people dos need computers becouse they are important the computers serch fast and people communicate from the computer. People have computer at they houses becous we and they need we need sometime you take minutes a word but is you look up at the computer you will see at a second and thus way we shoud stay with computer and more @CAPS1 need computer thus very important for @CAPS1 becouse some time they do not unother stand sometheng and they looked up in the counter like stolen is we have a homework and we have to know about a important person we have to learned up at the computer those easy. Some people do not have a computer home. But they go to the and for the thing they have to away. I we have to think spend time with a famely. But we have to computer become we have to because we need. Some people games and play. But for important about a home work and some people at theirs. Jobs need computer and most of the need compute like one i wants to be a police officiar and the police officiar. They have a littler computer at there car to serch store and thas important for the police. I know thus moust of famely wants to be together spend time with the famely but we have to abot us future to we need computer that help us and we need the computer for the future. And thas my oppeneang for that a help that you agree with my words. 3 3 6 +1553 1 "Dear local newpaper: @CAPS1 you being the local newspaper, you have the power to say how you feel about the effects computers give to people. I believe that computers give great effects to people because it teaches hand-eye coordination, gives people the ability to learn about far away places, and it allows you to talk to people. In all, @PERCENT1 of people agree with my idea about computers. Firstly, using computers teaches people about hand-eye coordination. For example, my grandmother told me that she knows how to use her hands and eyes well because of using the computer. This is because she types and researches information all day long. In all, computers are designed to help your eyes and hands to focus more. Secondly, computers have a lot of interesting information on faraway places. @PERSON1 from @ORGANIZATION1 quotes, ""I always use computers for my work because it helps me learn about many new things. @CAPS2, it lets my wife and I search details about a trip we want to go on."" @CAPS2, the people agree with what @PERSON1 stated. However, people @MONTH1 say that computers give the wrong information many times, but if you find a wonderful website, it will never lie to you. Thirly, if you use computers it will let you talk online or video chat with friends or family all over the world. How this benefits you is because if you have not seen your relatives in ages and you cannot buy a ticket to visit them, then video chat. It has gotten people so much closer and you see the world in a whole different way. @CAPS2, instead of wasting all your cell phone minutes, go buy a laptop or computer with a camera on it so you can video chat. Lastly, taking to people and being active in other peoples life is important. In conclusion, you will have great eye coordination, you will be able to research faraway places, and you will always be allowed to video chat or talk to family online. @CAPS2, I want you to tell the whole world that computers are useful and people use them everyday without a problem. Lastly, you will have the best feeling ever if you make everyone smile by knowing you believe that spending time on the computer can teach you a lot!" 3 4 7 +1554 1 "Computers? Have you ever thought of how a computer is made or how every small part of a computer is installed? Well, unfortunately I don't have the answers to these questions but I do have another quistion for you to think about. Are computer's bad for you? Well, I think that they arn't because first of all, they teach us hand-eye coordination, give people the chance to learn about places and people that they have never seen or even heard of, and lastly the allow people to talk to faraway relatives or friends without ever having to go to them. As I was say in before, the computer gives people good eye-coordination. For example people usually are not very good catching a ball at first but of course if you keep on practicing you will get better. Same thing with the computer, at first you arnt very good or fast at typing but if you keep practicing you will gradually get quicker at it. Then this good habit will help you while your at school or at work. Second the computer gives people the ability to learn about places or people that they have never seen or heard about. For example some people might have yet not heard the warter falls, trails, or food's from @ORGANIZATION1. Another example is that mabey some people might not know about the belly dance came from @LOCATION1. or the big dragon came from @LOCATION2. The excelant source to find out all these things in a quick amount of time without having to . The computer is also excellent for elderly people are in weel chairs and can't take too much . Lastly, it let's people talk to far away relatives or family members online. This is better because then mabey a father went on a busines trip to another country and talking on the phone is really satisfying also you can forget about sending letters. It is always nice to greet a father, a mother, or even distant cousin online were you can see how much they have grown. I hope you you have taken my side on this judgement for it is very important to me. Please remember my three reasons and don't forget that this includes you to." 4 4 8 +1555 1 Computer can be used for anyting but sometimes people use it for illeagle things like music some music site are a illeagle and sometimes thing off the internet. People meet over the internet can be sometimes dangerous because some people lye about there age or put fake pictures of them. 1 1 2 +1556 1 "Dear @CAPS1, Computers play a huge role in society. Many adults and children spend a lot of time on a computer every day and I think that is bad. Instead of being on computers, I think it would be best to spend time with your family. Exercising and enjoying the outdoors is also a good time consuming activity to do. Studying, school work, and jobs are also important things people should be doing instead of being on the computer so much. Family is very important in life and some people take advantage of it. Instead of being on the computer all day, spending home with family and doing activities with them could be more fun. For example, most teenagers come home from school and go on this computer to talk to friends or play games instead of talking with this parents about this day or anything. By spending time with family you not only learn more about them but you can become closer and be able to talk with them about anything. Nature is a beautiful thing. Sure you can see pictures of nature on the internet, but! is is not the same as the actual thing. By outside, and enjoying nature, taking walks, runs, or even hikes, you can get your exercise. Exercising is a very important thing in a persons life, because you need to be fit to be healthy, and by being on a computer all the would happen. Adults, and even some teenagers have jobs in. While some jobs involve computers, most do not. No one can get in job by spending all day on the computer playing games. I talking to people. Teenagers well and do while playing game talking to. Computer are all the time. There are plenty of important activities, such as, spending time with family, enjoying nature, and school work and jobs. Computer are not necisity. We lives, so I think use should using them" 4 4 8 +1557 1 "Dear Local Newspaper, @CAPS1 tired, lazy people sitting on their computer and wasting their life bacause of it. The issue to with is do you think that people are spending to much time on the computer or not. I strongly believe that people are spending to much time on the computer. And, here are @CAPS2 reasons why, people are spending less time exercising, people not enjoying nature, and less time interacting with family and friends. Without a doubt you probably know that exercising is at least somewhat helpful to life, @CAPS4 if people are sitting home @NUM1 on the computer with no exercise, it is going to cause people to gain an excess amount of wait. Because the more they just sit around. And do nothing except the computer. The more they're going to be and the more lazy they're going to be. So they're not going to want to do anything and really it's just a waist of life. And, in some cases it can cause depression. Just ask a local resident who says "" @CAPS2 mom used to be on the computer all the time and did nothing with her life,"" and @CAPS3 she became depressed. And, soon after, killed herself."" @CAPS3 more and more people are going to become like. I know that a lot of people like to be outside when its a nice sunny day. @CAPS4 @CAPS1 somebody on that day in a room, with their eyes to the computer screen. Because they cant think of anything else to do with their lives. @CAPS4 @CAPS1 if that was someone you loved. Doing that with their life. I'm pretty sure you would try to do something to help them get off that path. Just ask another local resident @PERSON1 who says, ""I remember coming home everyday, and there was @CAPS2 mom, no shades up, pitch block, it was like a dark cave, and she would sit there for hours on the computer wasting her life, and I remember asking her how long has it been since you've gone outside, she answered, its been almost two months."" @CAPS4 I know from @CAPS2 family that there was a family member of mine who was a ""computer junkie"" And, I remember at a family get together @CAPS2 aunt was the only one who could never come. Because she was to busy on the computer. And, she" 4 4 8 +1558 1 "@PERCENT1 of all people in the @LOCATION3 have computers. This number shows how many people enjoy the technological advancement of the computer. It help us communicate better get imformation quicker and entertain us. Computer have a very positive effect on us. With the invention of the computer, more and more people can communicate quicker and eaisier. For instance, say @CAPS1 you wanted to talk to a friend in @LOCATION1, all you have to do is go on a social networking site and talk with them. Also, @CAPS1 you have relatives who live across the country, you could use webcam to talk with them. When you can talk to people from around the world. You can learn alot more about other countries culture and other cities way of life. Finally, @CAPS1 a relative is away, you can still talk to your uncle or grandma, the relationship just gets better. The internet and computers are a wealth of information. With all of the search engines on the internet you can findout how tall a maple tree is or , how to lose weight. Others @MONTH1 say that sitting down and not moving while learning is bad, but you could search about family activities nature walks and new and exciting excersises. When students need information on a school project, they can go on and search it instead of going over to the library. As a result of the internet, people are smarter. Because of the internet there is basically no more boredom. Kids and adults alike are not bored. Boredom is bad, because kids will do anything to stop it. When the computer came, people could plaly games, watch @CAPS2.V. and movies, and do business. @CAPS1 you missed you favorite @CAPS2.V. Show you can go online and watch them. @CAPS1 you need to mail a letter to @LOCATION2, e-mail comes into place, and you mail will never be slow. And finally, you can play many, many games on the internet to keep up that eye hand coordination. With all of these exceptionally great things, we can all live in a happier, better world. Theres information quicker, communication better, and entertainment better. All of the search were in a very good world." 4 4 8 +1559 1 "Dear Local Newspaper: @CAPS1 I'm @PERSON1, @CAPS2 going to tell you some positeves & negatives: The truth about computers. First @CAPS2 going to tell you some positives about computers. The internet is a virtual at your finger tips, it provides the smartest questions to the most questiners. In the internet every thing is more easy, I mean all you have to do to learn how it works is to use a keyboard & mouse. Computers have changed over the years, from to have . Yes computers have there are popular chatting websites @CAPS3, facebook, twitter, flickr. It seems cool yes but the internet has a very darkside too! Second, here are some dark secret of the computer. So far in the news there have been reports of suicide of the teenager life, reports like: girls killing themselves because lack of . Boys killing themselves because . Yes we do live in a world where everyone is judged by how they . Well there you have it computers are good & bad we just have to be ." 4 3 7 +1560 1 "Dear newspaper, @CAPS1 you want people to be so memorized by a computer that they miss out in the world around them? @CAPS1 you want the kids in @LOCATION1 to spend hours each day on the computers playing games while they could be outside getting fresh air? The question then is, @CAPS1 computers have good effects or bad effects on people. The obvious answer is bad effect. People constantly use the computers teach them bad habbits and can search inappropriate things. IF people are always playing games the computers then when @CAPS1 they go out for a jag. The answer is never. People who are constantly on the computer don't get enough exercise. One reason why a lot of people in @LOCATION1 are obese is because they aren't getting enough exercise. Computers aren't helping this situation at all. Some people say, ""@CAPS2 I'll just spend an hour on the computer and then I will go work out."" But, the one hour on the computer turns into two hours, and then two hours turns into three, you know it you've wasted the wrote day on the computer and didn't exercise at all. Also, there are so many games on the computer now that can be really and you don't to stop playing them. Yes some games can be really entertaining, but you don't have to spend all day playing them. You can play a fun game for fifteen minutes and then go get air. As you can computer can mesmorised a lot so they don't get enough exercise. Second, people go on bad habbits. For example, kids are always. On the website you can talk to your friends. On the computer the problem is that people dont use the. Too much and get too used writing like that. Then, kids @MONTH1 start doing that on writing in school and most even know it. Also, there are new websites where you can put personal information about yourself. This makes it easy for strangers to. learn your. Lastly is very easy for people, even to search inappropriate things. Everything is on the internet and little kids are going to be very curious about it. They can search inappropriate words ad pictures and no one would ever know. people can past inappropriate information on their own for others to see that can be impossible to take. And, if parents don't know that their children are searching inappropriate things, then the kids are going to keep doing it because they know they wont get caught. So, as you can see computers have a very negative effect on people. It causes individuals to no easy to inappiopriate things. So go and limit the time you on computer." 5 4 9 +1561 1 "Dear Local @CAPS1, @CAPS2 do you feel about computers? Are they good or are they bad? I strongly believe that computers are bad and people spend to much time on them. I'd much rather spend time outside where I can excercise; @CAPS3't you? Computers are a waste of time and they keep family and friends from spending time together. Finally, computers can be very dangerous. People could be lying and you @CAPS3't know it. To start off, computers take away from excercising and spending time outside. I know if I had to choose between looking at a boring computer screen all day and going out for a run; I'd choose the run anyday. Computers don't keep people fit and healthy so they should find something else to do instead. I've observed that the average teen spends @NUM1 to @NUM2 hours a day on the computer. That's @NUM1 to @NUM2 hours they could be excercising or playing outside. For example, walking the dog, or kicking the soccer ball around. You see, there are many things you can do other than going on the computer. Further more, computers cut into quality time with friends and family. I know you can video chat and instent message them, but @CAPS3't you rather spend time with them in person? Too many kids are on the computer so much they don't know what's going on in their mom or dads lives. Theres is a lot of things kids can do with their friends and families instead of using the computer. They could play a board game, watch a movie, and much more. I garentee they will enjoy these activities more then staring at a computer screen for @NUM5 hours. Finally, computers are extremly dangerous. People have been killed because they don't know who they are talking to. Kids go on myspace and put up pictures and posts, but they don't realize that everyone can see what they said. Once they put something out there they cannot take it away. It's also dangerous because it someone is applying to a school that school can see what they put up and can decline the person from college. I hope you agree with me when I say computers are bad. They keep people from excercising, spending time with friends/family, and are very dangerous. In my opinion we should get rid of computers in every house." 4 5 9 +1562 1 "The importance of computers in the modern world. Computers now and days are popular thecnology now and days computer are a bigger calculator. The invension of the computers were a very short cauculator. It's like a mother begin in your house. Lot of people have different of computers are more improve more faster and more high quality. The computer are now and days are improving their technology, every day there a billions buying computer across the whole world but that does not mean that there the best quality but the people are fighting for better modern inversions." 2 2 4 +1563 1 "Computers, one of the daily things we use and @CAPS1 with. Some experts are concerned that people are spending too much time on the awesomeness of the computers! I love computers but, I as a teen know about managing your time on the computer. You cannot sit there and waste your time on the computer. The amount of time wasted on your computer could be the time you might be outside haveing fun. Theres lots of things you could do outside! As for some exsamples: @CAPS1 come ball, run around, go to the park, go exploring etc... Friends and family are very entertaining, I have lots of friends and I love them all! If you have some spare time you should hang out with them and have some fun, go to the mall! I always go to the mall with my friends insted of playing on the computer for hours on end. So get of the computer and go @CAPS1! Have some fan in the sun today." 3 3 6 +1564 1 "I disagree what people say about computers. Likewise of corse they teach hand eye coordination. But they are not good enough for people. Lets find out what I have to say to these people who think that computers have a positive effect on people. People are so fat! Wounder why. Because they spend to much time on computers and less time exercising. Anyways @PERCENT1 of @LOCATION1 is obese. Concluding that some people die each year of being over weight. Think of it this way baseball players and so on can get about @NUM1 to @MONEY1 a year, isn't that what you want to be millionaires? Isn't nature so great when you exsperiance it? Well I think so because people don't think before choping down trees. Think about the animals don't you think they get enough torrocher evey year. Computers are such a bad influiance to people agian because people need to experiance life an not sit behind a desk or a home being lazy. Myspace, facebook and all the other crazy site s on the web are not good. There are sexturall preteters all over the world that like to rape kids and teenagers like us at batchelder. You should not interacted with friends on the internet for that reason. You should get some exersise at the park with your firends and family. Aslo its better to talk to new friends in person because you can get to now them better as you grow up. There are many reasons why computers are bad and sometimes even worse. Don't use computers for stupid reasons. Or might get yourself killed. It makes you so felt that you won't be able to walk. Just keep that in mind people." 4 4 8 +1565 1 "Dear, local newspaper people @CAPS1's lot of computer that have help us with are planet. Like not letting us dive are cars for stuff. Learninging was easyer for every one with computers too. Then have comunications with people with computers. We should hate a box the has information in it, we should be glad we have something like that in are home. Why we don't need-in us cars sometimes if you have a computer. Like some people have desided that can have @CAPS1 own busniss so they us the computer to make one. Then if you don't want to waste time driveing to buy a te-shirt you can just go on the computer and buy one. Next the more we drive the more polution git in are atmisphier. If we did not have computers are planet will get @PERCENT1 more pulluted. Each year. Now do you want that to happen to the world? Last, we wont be wasting gas on are cars because we are using computers. If the computer was taken away people will still choose the lasy way and just drive cars. Learning is easyer for every one with computers like we don't have to look in a book to find something. Then @CAPS1 different learning programs to teach us a different language. Like for lots of people have college for people who did not. Last, it can help us do are homework if we have on it. I realy my second brain, it has . Now lot of. Third, communication are going to be a hole lot with computers. Say you dont have and you to send a lot. The computer to help you, it will allow you to talk to, then you can talk to other people like the japaness who know english so you now how @CAPS1 life is to yours. You can ask people question. Or just for fun you can play mind game with other people. I got to do alot of chating with my old friend by this and I miss them but if the only way I can talk to them with out my parents yelling at me bacause the phone bill is so high. The greater or go of a computer make us know we don't have do that many stuff. Like polute are air. Then we can learn fast without a book. Last, to alow us to talk to my old friend, so can every one beleve me that the computer is not that bad." 4 4 8 +1566 1 "Hello my name is @PERSON1 @CAPS1 and I am going to enforce you that computers can benefit our society. First, @CAPS3 allows students to easily get good grades on projects and reports. Second, You can make online job applications. Lastly, computers allow people to chat with other people. Firstly, the computer allows your children who are also students to do better on their projects and reports. They help children's reports because for example they are doing a report on ""@CAPS2 lincon"" they have access to look up the peron to get information they need right at home. Doing reports with their computer there is no need to use up your projects you can also look up information and print out pichers to make your project more vibrant and eye-catching to younger people. Also @CAPS3 allows you to type your information to make @CAPS3 look orginzed and neet. Accordly, if you are trying to find some job applications without wasting your time, just look on the internets. This way you want go to place not knowing if jobs are available and seeing none. Also @CAPS3 save your to save the trip out there. You are able to look up the paying of the job and regulations, and you can find out if you get the job fastered. Lastly, @CAPS3 allows socializing. For example like facebook or/and myspace lets you talk to friends from school or friends you met online. For adult who don't have a myspace or facebook account they can use email, msn, aol, aim/aol instant messager, or via chat. This way adults can catch up on work and children can kee in touch with friends or/and family. This is why @CAPS3 think computer with internet benifit our society projects, reports, job appicatrone and spcializing with family and friends." 4 4 8 +1567 1 "Dear @ORGANIZATION1, @DATE1, everywhere you look technology is being exercised and it is beneficial to many aspects in our lives @DATE1. Many engineers strive to improve on technologic devices popularity, while others use it in communicate or relax. study conducted by @ORGANIZATION2 university, the computer is the most largely operated machine. The computer positively contributes to our education, economy, and entertainment. As i mentioned before the computer is beneficial to our education. An example of this is the school i attend, middle school. Here at we have over @NUM1 computers in use throughout the school day. These computers help the students complete research papers, typed assignments and other teacher requirement papers. By using the computer to complete research papers students save hours of scanning through books in the library and money on reading books. In addition, computers teachers in organizing files and entering grades online so students can check their. This is beneficial considering the amount of and assignments graded each week. Moreover, a computer called the ""parent portal"" allows the students to stay connected with school events that would not be mentioned otherwise in all, computer are way of. Besides education computers touch upon our economy as well. Now, due to the wide variety of computer selection, a computer is affordable, starting at prices as low as sixty dollars! This is a positive aspect of the computer because currently the has been enduring the economy since the depression in the. Consequently, the reason has made families start to cut many useful technologe devices out of the. However, since the price of computers decreased purchase have stimulating. Also, the computer has mainly improved methods of. Instead of listening to a cd player you can download listen to while chatting online with friends. This is very helpful for last-minute plan changes, because for those who do not own a telephone, communication @MONTH1 be, negatively affecting your time of entertainment. In addition, children can use internet in order to play games to take that mind off of a hard day at school, or an adult's rough work computersin producing the you watch at home on the couch and the videogame you ordered off of ebay. From facebook and myspace, to and ""gone with the wind."" Computers create a relaxing entertainment opportunity." 6 5 11 +1568 1 "Dear Local Newspaper, I think that computers are giving bad effects on peoples lives. Instead of using your time wisely and getting active outdoors, your'e inside your house on the computer playing games or chatting with your friends. If you're those people who easily get overweight or in any diabetic medication right now, I't easily recommend you to do workout or go and invite a friend over for a walk at the park. That way you are enjoying nature, talking with your buddy instead of doing it online, and you'd also be getting exercise. If you didn't notice, you are also doing your friend a favor too. Not only are you getting good benefits on the outdoors but so is your partner. Getting more active @MONTH1 even bring your friendship or family bond even more closer. You might also improve your self-esteem because you'll look in the mirror and feel great about your new, healthy looking body. Also, if you're one of those people always depressed, feeling lonely, or just in a bad mood, this advice could be the key to your solution. The workouts and activities helps you have more energy you never thought you'd have before. if I were you, I'd stop being lazy and actually enjoy your life and not waste time doing lazy then go." 4 3 7 +1569 1 The effect's computers have on people is not resinable for children and other people. Computers are not good for people these day's because people are spleeling all there time' on the computer and are'nt realling that it miss up there eye's and some people are adicted to it. Now people are useing the computer like they are nutting. So people think that the computers aren't hurtful to there eye's the time people are speeling on the computer they can be speeling time with there family and friend. People helpful is on the line with this computer thing. People shouldn't be useing computers like they are because all day on the computer can mess up your eyes and that's what people are not understand there day. I think that it should be a limeit for when people go on the computers. 3 2 5 +1570 1 "Yes, I believe that computers benefits society because you can talk to other people, it helps you learn and lastly compoters are apart of todays technology. First of all, computers have really progressed from the old type writer we used to have. Computers have helped todays life for a few different reasons. With computers, they help us learn or find things we didnt know. For example, if you have a project due on the @LOCATION1, then most likley you're probably not going to know much about it. If you go to the internet then you can find tons of things about it like who and what needs the @ORGANIZATION1 for water, how long the @LOCATION1 is, where its located or anything else abot it. Also, another reason why computers help us learn is that, say your going to a new job interview and you have no idea where it is or how even to get there. If you type in the adress and the internet will give you directions. Even if you dont know when your favorite to show is on tonight just type that in and the answer will be right in front of you. Secondly, why I believe that computers do benefits society is you can talk to other people from across the state, country, or world, or even just down the street. Facebook and @CAPS1 are very helpful as well, because one of my best friends moved away in second grade. Just before about christmas i found her on facebook and now we talk and catch up because we havent seen each other in years, @CAPS2 alone tak to her. Another reason why is that if someones mon or dad is away at war or oversea's then the kids and parents could talk to them by using email, skype, yahoo instant messenger, with the webcam or the telephone just @CAPS2 alone just typing back and fourth. You could also just use it for a job buisness to talk to your co-worker or one of your workers on webcam to see things are going with profit, stores, etc. Lastly, why I think computers actually do help us is technollogy has come a long way. For example if you had to type something up you would of have to used a type writer and those things are hard to use. Today you just have to go onto @CAPS3 @CAPS4 and type it out. @CAPS3 @CAPS4 also has spell check, you could email it to someone, or even change the font, color, size of the font and much more. Another reason why is with iphones or i touches now you dont have to be at home you could take out either one and just use the internet for whatever you want to. To find an app, find how long the @CAPS5 @CAPS6 @CAPS7 is, or even just to order a pizza but technollogy has come a long way. So this is why I agree with that computers help benefit our society because you can talk to other people, it helps you learn new things you didnt knew before and finally computers have changed a lot and they are apart of our technology. " 6 5 11 +1571 1 "In my own opinion I think that people should get less time on computers more time exercising, enjoying, nature, and interacting with family and friends. If people spend time on computers they will not get off and be stuck on computers then spending time like going to the park, or the mall. For my second opinion that people should not get off of computers because it they ever leave somewhere far they are not to be able to contact you. If you on the computer you could get a computer that say's a free labtop then you could take it far like: On a airplane to north carolina, or virginia, or wasington @ORGANIZATION1, or a party, or a road trip, or on a ferry boat to the long island sound. For my third opinion that I agree people should not be off of computer because they might plan a trip to a far away place or a new house, or planing a anerveriry, or a new spot for a hunny moon a gorgest place like ona peek hill or at a hotel with a bed shape like a heart. For my fourth paragraph that I agree that people should not be off of computers that the count a location than person house or a location where they might be for that particular spot where that person is. For the fifth paragraph that I agree that people should not be able to get off of computers. I tell you why planning a birthday party for there child, or going to someone house for a visit like to tennessee. Or going to @CAPS2 @CAPS3 to see a basketball team and @CAPS1.S a another team and they are call @CAPS2 @CAPS3 lakers us caverlars. My conclusion is that people should not to be able to get off of computer." 3 4 7 +1572 1 "Dear to @CAPS1 this @MONTH1 concern, Computers do a whole lot now of days. You can play games, do homework, socialize but don't you think there are better things than that. Such as exercising, enjoying the beauty of nature, and most importantly interacting with family and friends. These are all the things that computers take away from people. Once you get onto a computer you never want to get off. If you look at it, it doesn't take much work and energy to use a computer. So if you eat and use the computer all day your not really burning any calories therefore you will gain weight. Computers make people feel lazy sometimes therefore they spend less time exercising. That is not good for your health at all. Exercising gives you energy and is good for you. Have you ever looked out the window and saw how beautiful nature is? When your on the computer chit-chatting with people and playing online friends do you think about what your missing. Everytime I use the computer I wish I could be outside playing and enjoying nature. Trees, flowers, plants, grass and lots of other things are what make up the earth, but some people don't apreciate those things. So next time your on the computer think about that. While your on the computer wasting time there is another homeless child wandering maybe looking for their family. Would you like to be that child who doesnt have a family or any type of friends? Lots of people think of their life without a family but it can happen anyday. So I believe instead of wasting time on the computer we should go and interact with family and friends. Even if its just having a conversation do it, maybe it can show them that you really care. In conclusion, I think that computers are a waste of time. I understand how people say it is used to comunicate with people but back then they didnt have computers and they communicated so we can to. Computes make you spend less time exercising, keeps you from enjoying nature and lastly interacting with family and friends. You won't go wrong if you listen to someone who uses a computer everyday." 4 4 8 +1573 1 "Dear @CAPS1 @CAPS2, @CAPS3 are you? As for me I am fine. I am writing this letter to explain to you why you should believe that computers have a positive effect on people. The reasons why I am writing this letter is that people could contack with friends and families from far-away places, computers helps you leran more about different parts of the world and also computers helps people understand and learn more about life. That's why I believe you should believe that computers have a positive effect on people. First of all why I believe that computers have a positive effect on people is that people could contack with friends and families from far-away places. An example to support my reason is that people from all parts of the world have families different places. And they cannot have a good contack with them. But if they go on the internet they could their friends and families and chat with them. This shows that if you live in the @LOCATION2 and you have a friends that live in @LOCATION1 you could have a with I have families that lives and @LOCATION1 and it is hard to them. But when I am on the computer I can chat with them and have a fun time. This shows that you need a computer to catch up with friends and family. That's why I believe that computers have a positive effect on people. Second of all why you should believe that computers have a positive effect on people is that computers helps you learn more about different parts of the world. An example is that if you don't know anything about a country or a place you could go on the internet a research and learn more about that place. This shows that computers is important to have. Another example is that when I have a project or a essay and I don't know about it. I could go on the computer and look it up. And by doing this it will help me on my project or essay. That's why I believe that computers have a positive effect on people. Finally why I believe so is that computers helps you understand and learn more about life. An example is that if you don't know if something is right or wrong you could look it up and it @MONTH1 help you. This shows that computers can give advices. Another example is that computers could give you an idea on what to do. If you are trying a new resipie and you are not sure on @CAPS3 to make it. And it will give you the inderigant and direction to make that food or snack you want. That's why I believe that you and all others should believe that computers have a positive effects. In conclusion why you should believe that computers have a positive effect is that people could contack with friends and families, computers helps you learn about different parts of the world, and also computers helps you learn and understand more about life. I would hope you read and reread this letter and consider about believing that computers have a positive effect on people. That's why you should believe that computers have positive effect on people. " 5 5 10 +1574 1 "Dear @CAPS1 @ORGANIZATION2, I have recently learned that the paper has decided to write about computers and how benefit society in @LOCATION1. I am writing this letter to say that I agree with how computers benefit society. @CAPS2 first reason is that computers help people educate others. They allow people to learn about hand-eye coordination. @CAPS2 final reason is computers allow you to talk online with your friends. There's a lot more in store so keep reading on. @CAPS2 first reason why computers are good for society is computers help people learn about things. To start things off computers are a great way to help out in school because it's a quicker way to get an education. For example a computer helps you study for a test with information websites like @ORGANIZATION1. @CAPS2 second reason why computers provide a good education is computers help you do your homework. For example when there's a major essay due the next day, you can go on a computer and type it. It's quicker and a lot more productive. I remember this one time when i had to write a final draft for an important essay and it was @CAPS2 last day to do it. Since it was @CAPS2 last day to do it the first thing I did was to the library and type it what would have took me an hour to write took me half an hour to type. That all hear I'm moving on. @CAPS2 next reason why computers help out in society is computers help learn about hand-eye coordination. Hand-eye coordination is something that must people have, but for those who don't the computers help out in many reasons. @CAPS2 first reason is computers help learn yoga. Yoga is something to help take away stress inside of you. Computers have online video's that help you use it if you don't have the time to actually go. @CAPS2 final reason is that computers help out with sports. Sports are something that everyone loves to participate in and something that everyone likes. Computers have videos that show you how to play sports and enjoy them as much as you do in real life. I'm going on now. @CAPS2 last reason why computers help out in society is you are able to talk with your friends online. @CAPS2 first reason why you can talk with your friends is a website called @CAPS2-@CAPS3. Myspace is a website that's all about talking with your friends. It has grown extremely popular in chatting. @CAPS2 final reason is online dating. If you want to start dating again you can always start online. It allows you to start a new life without leaving your room. I should probably start rapping things up. Now that you have heard all of @CAPS2 reasons for why computers are helpful in society I should rap things up. Having computers in life is one of the most usefull things you can have. You can talk to your friends, learn handeye coordination and get an education. As you can see computers rule. There's so many more reasons but this is just one mans opinion who knows what other people think about them." 4 4 8 +1575 1 "Dear Local Newspaper, I am writing to you to talk about the effect computers have on people. Since I have two computers and one laptop I have to agree that every person who likes to look up stuff should have a computer. Everyone should have computers, because you can look up different things, you can play games like checkers with the computer or against somebody else, and the last reason @CAPS1 that you can chat with people from different states and even countries, because I know everybody likes to talk to one another. Everyone should have computers, because you can search different things. You can search places and people. Basically, you can search anything on the internet @CAPS3 you are on the right website. One time I wanted to go on the web and look to see @CAPS3 there was a in @LOCATION1. I went to ask.com and typed in ""@CAPS1 there a in @LOCATION1, @LOCATION1? It said yes, and then it showed me a @CAPS2 of information about. It told me the address the phone number and the name of the manager. Looking up places in sometimes. Everyone should have a because you can play any types of game. You could play internet game checkers, solitaire and even freecall. @CAPS3 you don't any types of games you can always go on gaming just games up there. Since I use the computer everyday onto all. When I was six years old we a driving game. Since I did not the website all I got to play was checkers on the computers but one day logged onto it and played my first driving computer game. Everyone should have a computer, because you can chat with people. Instead of always using your phone calling and texting people raising your phone bill, why not use your computer and chat all you want without wasting minutes on your cell phone. I know everybody likes to talk and text on your cell phone. Instead of doing that just go on the internet find a chatcom and start chatting or bloging with your friends. One time I ran out of minutes on my phone and I didn't have internet. I asked my dad @CAPS3 I could use the computer. He said yeah, so I went to a local chatroom on the internet. My friend had an acount there so it would be easy for us to talk all we wanted. I joined in and we chatted until @TIME1. In conclusion I think everyone that likes to look up places, play games, and chat should have a computer." 4 5 9 +1576 1 "Computers are intresting peices of technology to work with at home or at work. Some people might think that computers are a waste of time. Also might not be useful. Or that the computers dont have anyway of helping you. Other people think that the computer is very helpful. People should be happy about the computer invention. What do you think about it? Your wasting your time on the computers! Thats what you hear your parents say all the time right. Well, kids dont really wastes their time if they are on the compter because they could be writing up a paper for a class. They might be playing on educational game on the computers. Even if they arent playing a game or writing up a paper. It is still making them learn some thing. Some people might say that computers are useless, but that is not true. When you are writing a paper for an @CAPS1 class. You would want a computer to help. It has a keyborad so it gose faster when you type. Instead of writing the word out. It also has a grammer check. That is to help you spell the words out correctly. This is why a computer is a useful thing to use. Computers dont make things go faster. But yet they do. They help you find information about many things on the internet. Also if you had to look up a person for a school project. I think you would find more things about that person that you would in books. It really close make things go faster. Computers do help you. There not a waste of time. They are useful to every one. They also help things go faster." 4 4 8 +1577 1 "Dear @CAPS1 @CAPS2, @CAPS3 people haved used a computer to learn new things such as cultures. Computers effect people in so @CAPS3 positive ways. They changed the way people think and how they look at the world. Experts even say how computers change the way they act at home and in the public. @CAPS6 also helps speical learn how to read and spell. A lot of people have used computers to learn different cultures. Which has helped are society in @CAPS3 ways. By edcuting youth so they don't make mistakes such as racial ways. Computers helped people learn things besides racial ways in the past but also about there own culture. Which has been proven by @ORGANIZATION1 news. People state that computers have made citizens lose there daily exercis. But people don't only use the computer to study they also use @CAPS6 to find different @CAPS4 different diets and ways to strech there body so they won't hurt themselfs, less than @PERCENT1 studied that the computer diets and different if themselfs to in The @CAPS5 times has said, ""The computer not only help our fitness, but also help stay in know our @CAPS6 keeps our world by one little click. And @CAPS6 gets there in less then a minute. So as you can see computers haved changed not on society but also the world. Thats how big of an impact @CAPS6 has had." 4 4 8 +1578 1 "Dear, @LOCATION1 @ORGANIZATION1 I think that although computers are very helpful to socity. Thire also paseing a problem to it for example people are out there that adicted to computers and will in a dark area for hours just on the computer also its not helping the fact that there obessity in @LOCATION2 I explain that to you but any ways this thing that teaching are youth could very much hurt them. Computer junkies what are they? A computer junkie is someone who woke up in the morning at @TIME1 and and stay on it for a good past @NUM1 hours this is a problem that @PERCENT1 of are @CAPS1 youth have topic @MONTH1 be not be big to but it is a problem must know my brothers addict to his laptop he spends hours in his bedroom watching anime japanise cartoons and not eating anything the whole day. Never leaves his room and my mom get so tired of trying to drag him out of his room she just quit and it gets annoying after a while a little computer isnt bad but alot is. Obeasity is a growing problem in are nation and computers arent helping infact computers are making matters worse by having items being shiped to them of in extent of the obesse person getting up used and leaving of they could lose a little wieght and now you can order offline and have it deliverd to your door @CAPS2 @CAPS3 market such as @CAPS4 @CAPS5 domino @CAPS4 and @LOCATION3 jade have been a part of this issue stop online @CAPS3 ordering. The computer is a great way to learn about things but it also a great way to become a junkie and fat:" 4 5 9 +1579 1 "Dear @CAPS1, I believe that computers do have a positive effect on people. They give you the ability to talk to people online not just your friends but also family that live far away, they also allow you to do any kind of work that can't be done by hand and even allow people to learn about far away places and people. First of all, computers have a positive effect on people. They give you the ability to talk to people online not just your friends but also families that live far away. For example half of my family live in @LOCATION1 and my mom uses internet to communicate with them. Secondly, computers have a positive effect on people. They allow you to do homework that cant be done by hand. Such as essays that have to be typed and can't be hand written, and projects for school. Lastly, computers have a positive effect on people. Computers allow people to learn about far away places and people. For example, when I first came into this country, I didn't know much about it, so I did some research and learn great things about it. In conclusion, computers have an effect on people. They give you the ability to talk to people online not just your friends but also families that live far away, they also allow you to do any kind of work that can't be done by hand, and even allow people to learn about faraway places and people" 4 4 8 +1580 1 "Dear @CITY1 @ORGANIZATION1, I am a @ORGANIZATION2 student and I hear that some people think it is good to use computers and others think that its a waist of time. Well I have @NUM1 good reasons as to why computers are good technology. One reason is you can book places that you want to go or the sights you want to see. This is a good way to use the computer because you can track your route you can even print a map and go hiking. (hows that for excersing). Another reason why computers are good to use is because of online chats. Let's say that you have a family member that lives all the way out in @LOCATION1 and they have a computer and you want to talk to them but it costs you to talk, you can e-mail. This is a good way to use the computer because you can stay updated on what is going on with your family members. Another reason is learning. You can learn about many different cultures. You can learn about different people and how they live their life and ther cultures. My last reason is the @CAPS1. This is a great way to use the computer because you can keep updated on the lafest things like the earthquake in hati; or a hurricane or a @CAPS1 breaking story. Or if their is a storm headey your way. In conclusion, using the computer has great ways to be used and sure people, put some bad sights out their but if you use it the right way it is a good source of technology!" 4 4 8 +1581 1 "Some experts are concerned that people are spending to much time on computers, and I believe that they are correct. Most kinds would perfer to be on the computer chatting with friends on line or spending hours on facebook but what is the point of this when there is a whole to explore, they don't enjoy natire like they should, and they spend less time with family and friends. If you are on the computer twenty four hours a day, seven days a week how are you supposed to get enough exersize? Well that's the problem you don't get any exersize. Some might disagree with me but the truth is, moving your hand over the mouse doesn't count! A recent survay has been conduched and @CAPS2 said that out of the @PERCENT1 of kids who own a computer @PERCENT2 are over-weight or indanger of being over-weight. @CAPS2 is sad to think that technology has taken over so much that @CAPS2 is ruining poeples lives. I go in the computer @CAPS1 too, but I am always sure to ride my bike after or go for a hike with my family @CAPS1 of the times I have softball practice so I'm not able to go on the computer anyway. Now what about the beautiful things in nature @CAPS1 of us are missing? The outdoors is one thing most of us take advantage on, some of us have @CAPS3 seen a day-lily are at night and new ones grow the very next day. This a facinating are might @CAPS3 see because they have a computer screen in front of their face. Kids really should learn to balance tecknology and the more important things in life like protecting nature and exercising. Yes, I know, that some will disagree by saying, ""but i am saying the rain forest, or the @LOCATION1, by being a member of this website."" @CAPS2's true you are helping but doing @CAPS2 yourself would feel a whole lot better. For example you could get a group and clean up the streets in your neighborhood or help plant trees in the park. The most important thing in life is family and friends, technology should @CAPS3 get in the way of that. If you loose everything what is the one thing your will always have? Loving family and friends of course! If family is so importand then why would kid want to be on the computer than at a family picnic? Is is because technology is taking over their life and clouding their vision of the more important things life has to offer. Don't you sometimes wish you were a little kid again running bare footed a field with your parents? That could be some what have if you got off the chair you have been sitting in for three hours straight and took a hike with your family. I might not be making much sense but being with family in person is better than instant messaging someone you just meet who lives half way across the world! I know that a ton of people are going to disagree with me when they read this but, I think technology is ruining some peoples lives. If you think about @CAPS2 a computer is like a @CAPS4-@CAPS5 @CAPS6 , @CAPS2 has a sugar sweet coating byt when you get the full force of @CAPS2, @CAPS2 traps you in and won't let go. A computer is ruining lives and experts have a right to be worried about people's health! All of us should get more exersize, spend more time in Nature, and be with family and friends more often than sitting on a chair glued to a computer screen." 5 6 11 +1582 1 "Dear @CAPS1 @CAPS2, I @CAPS3't you agree that computers benefit society? I sure do. I find my computer benefits the society because you can interact with others online. Its easy to find entertainment and @CAPS4 is extremely helpful and profitable. Now you @MONTH1 not beleive computers are "" Society friendly"" but I am here to argue that statement. Now, one thing I love about computers is now easily you can interact with people whether they're miles away or right in your neighborhood, you could chat with them in the push of a button. For instance, my friends all have the infamous? Facebook account. All I have to do is go online, click my chat box and click their name and then @CAPS5! were talking. And the better part is you @CAPS3't have to share any personal details ( @CAPS6 @CAPS7, phone number etc..) to chat on facebook. Wow wasn''t that easy? Did you ever turned on your @CAPS8. scanned through channels and say ""@CAPS9 goods on @CAPS8?"" @CAPS11, with a computer. theres always something to watch. Whethe @CAPS4 old a new, fake a real, live or not, the computer has many things tool/ watch. You could pull up your @CAPS12 browser and go on @CAPS13 (A video site) and watch their wonderful variety of filling. There are atleast @NUM1 million videos on @CAPS13 and @NUM2 being watched/uploded per day. Infact the ""@CAPS14"" views @NUM3+ video a day without noticing @CAPS4. If your looking for stand up, you could type in ""@CAPS15 @CAPS16! If you're looking to action, you type in chan . Basically, the computer and the bad wide web things to do. Now, @CAPS17 stating those two things, @CAPS4 has come to my attention that the computer is also extremely helpful. Say if you have an extremely big test/report due tomorrow, you can study for @CAPS4 online. You can go on google and type in your projects subject and get over @NUM4 results in a fraction of a second depending on your bandwidth. Now, the computer is also profitable. Did you know the two people who made google are dirt rich? They made more than the @ORGANIZATION1 and the company @ORGANIZATION1 makes the mostly used computer system. So once again, the computer is extremely helpful and profitable. This is exactly why I beleive the computer benefits the society. The computer lets you interact with other, keeps you entertained and is very helpful and profitable. So quite frankly, you should beleive that the computer is society benefitcial. Thank you for your time." 5 5 10 +1583 1 "Dear @CAPS1 @CAPS2 I think it's a good thing that people spend so much time on computers. One reason for this is when you type you learn hand-eye corrdination. Another reason computer time is a good time could be is it saves money on other things. The last reason is because you can do things in seconds on a computer that would normaly take hours. Hand-eye coordination is an importand thing: for example you're walking down the street when a baseball flys at you, your able to cach it because of all the time you have bin on the computer has taught you hand-eye coordination. Their are lots of ways to get it, like playing sports, writting, or just playing with your thumbs but learning to type is by far the best way because you'll use the skill while you'r a kids and an adult, @CAPS3 trouble paying your phone bill? Guss what you don't need a phone, why not use your computer to call people sensa its free. Also you wont really need a cell phone because you can do everything that can do quicker on a computer anwway. Last of all its harder for poeple to steel or you to lose a computer as to a cell phone. Have you ever got upset when treing to look for a peice of in formation in a book? Well you can be done with the hours of looking if you just use a computer, then you can get outside, and play games. Most of the time it takes me hours to do my homework, but is I had a computer it probly only take me minutes to do it. So for hand-eye coordination, having trouble with bills and it takeing to long to look thing up by other means I think its good that people spent and i hope you agree." 4 4 8 +1584 1 "Alot of people have different ideas on if they believe computers benefit society. I for one believe that computer are useful for many things. The first reason why I believe this, is because one a lot of schools will need them for students, to do projects. Second they have computer gamed to help kids learn. Third I believe its a good way to just relax. The first reason why believe computers are good is because many kids in school will need them. In school we have a lot of projects that we might need type or get a picture. If we didn't have computers there would be no way we could do that. Also if we do persuassive waiting pieces. We would need a computer to type it to make it looks better. Many people might say we could all just write it out. But I believe that typing it might be faster and neater for some people. The second reason why I believe computers are good is because they have many good games to help people I know that have many different games text not readable Computers are good is because it's a a good way to relax. Aint of people get home from work or and are very tired. But instead of just going and sitting on the couch for the whole night you could go to the computer and do a fun game for a little while. Many people say that watching tv and going on the computer is the same things. But if you play an educational game once in a while it might be ok. But then you can do something fun on the computer every so often. In conclusion I believe computers are good because one many kids need them for school second they have a lot of educational games. its a good way to relax." 5 4 9 +1585 1 "Do the members of this well-known and captivating newspaper think that the effects of people owning a computer are good or bad? Well, if you think negatively about computers and how they effect people, I would like to politely disagree. I'm certain I could sway you to agree with me too. Computers are positive for many reasons. The internet and other resources can be used for school, work, and other questions, the computer gives people something to do when otherwise they have nothing, and it allows people to talk to others online. There are many great effects computers have on and for people. Everybody has questions, wouldn't you agree? And more often than not, people don't know the answer right off the top of their head. Research is the key to answering questions. But who has time to go to the library and spend hours searching for an answer that would take a matter of seconds to find on the computer? Not every student, employee, or other person can spend that time looking for an answer. There are far too many other things to do! The internet on the computer allows people to find an answer quickly. This can actually improve people's knowledge, and their performance at work or school. You can see here the positive effects of a computer. Have any of you ever been bored? I'm certain that you have. Everyone gets bored. Instead of sitting around doing nothing, people can go on the computer and to many activities. Contrary to some people's beliefs, this can be an excellent way to spend, not waste time. There are all sorts of educational games and mind-buggling puzzles to do on the computer. I'm certain you can see how much better these things are than sitting in front of the. The effects are positive, because your brain is challenged, and your boredom has vanished. Also, hand-eye coordination can be greatly improved by doing activities. These are so many positivities about the computers effect in people's boredom! People have friends, and it is only human to want to keep in close contact with them. But what if a close friend moves away? You don't want to lose that friendship right? People can write letters to each other, but that can be time consuming, and show to delivery and response. And the positive effect of a computer is it allows you to keep in contact online with friends and family instant messaging and email. both great resources for talking with others. Computers can keep friends together and save families from drifting apart. It is also good for couples or parents to keep in touch with their partner or children if they are away. These are all positive effects don't you agree? As you can see, I feel strongly that the computer has positive effects on people. It's good for research, it's something to do when someone is truly bored, and it enables friends and family to stay close via online communication. I strongly urge you to change your opinion from negative to positive about the effects of computers. Everyone can choose their own opinions. but I know you'll prove wise and agree with me!" 4 5 9 +1586 1 "Dear, Newspaper People should use less time on the computer because it effects their lifestyle. Instead of using their computer all the time they shoul exercise hang out with their friends and family and just enjoy nature. First of all computer's can bring a lot of obesity to the @LOCATION1 because it bring lazyness and it makes peole not went to exercise. If people start to exercise at least around @PERCENT1 of lazyness will go down. They should at least go out for a walk instead of using all their electrity. Also around @PERCENT2 of your electrity bill will go down if you go exercise instead of using computer. Secondly people need to start enjoying nature insteed of being on the computer at the time. People should go green and start recyling and not worrying about what somebody said on ""myspace"" or ""facebook"". Also if we started recyling and worring about nature @PERCENT3 of the earth would be greener. My last reson being their should be more friendler family time enstead of computer time. Computers just make you break away from your family and friends because your worrying whats happening on the internet. @PERCENT4 of people should just get of the computer all the time and just chill with your family and friends. In my conclusion these are my reasons being for people so they wont use the computer so much and so they can just kick back chill with your friend and family, exercise and enjoy natur" 4 3 7 +1587 1 "Dear editor, I think that people are spending too much time on the computer. Because of this, people are getting less exersice, they are not spending enough time outdoors and the dont spend as much time with their family and friends. Exersicing is an important part of one's daily schedued. I have a friend who exersices everyday. She is the healthiest person I know and rarely spends anytime on the computer. But, she knows someone who is almost her compleate oposite. He hardly ever exersices and spends @NUM1 hours on the computer each day. He has also been diagnosed with diabeties and is obese. These are the type of health problems that are faced because of lack of exersice and too much computer time. Experts say that people should get at least @NUM2 minutes of exersice every day. But, because more and more people are spending time on computers, this is almost impossible. Studies done at @ORGANIZATION1 show that @PERCENT1 of kids under the age of @NUM3 are obese or at the risk of becaming obese because they are not getting enough exersice. You don't want that number to increase do you? There are other problems that people face because of too much time on the computer. People are spending less time outdoors and more time inside at a desk. My friend @PERSON1 spends way too much time on her computer and not enough outside. She failed a science poject because she was on her computer, rathern than outside comparing the leaves from different trees. Doctor @PERSON2 is a child phycologist and when he asked kids if they would rather play outside or be on a computer, @PERCENT2 of them said computer. This shows that people on computers are not only young, but they want to be on the computer more than be outside. This is a number that, in my opinion, is too high. Lastly, there is the problem of people not spending enough time with their family and friends. By this I mean face to face time, not just video chatting with your friends on facebook. This has caused tension in relationships. My friend @PERSON3 didn't go to her family reunion but stayed at home on the computer and at the next family get together, she was ostrisized because she didn't go to the reunion. High @ORGANIZATION1 guidance counselor @PERSON4 says that @NUM4 out of @NUM5 friendships are ruined because kids dont spend enough face to face time with their friends but are on the computer. These are all god reasons why less time on the computer and more time exersicing, outside, and with family and friends will make your life happier and healthier." 5 5 10 +1588 1 "Dear @CAPS1 of The Local Newspaper: @CAPS2 students are promoted to higher grade levels, more teachers will require research papers. In my opinion @CAPS10 a computer helps me complete my research paper and the contents in it are the best it can be. What makes students and parents more happy to see @CAPS3's on their child's paper? Advances in technology. there should be advances in technology because they teach hand-eye coordination, it gives the ability to learn about far away places, and people, and even allows people to talk online with other people. To begin there should be advances in technology beacause it teaches hand-eye coordination. In a recent poll seen in TIME magazine, it showed that @PERCENT1 of people who use computers had a large increase in their coordination, people were not @CAPS2 clumsy and poorly coordinated. @PERSON1, a professional tennis player @CAPS4 that, ""@CAPS5 I started using a computer, I always, would play tennis for living and it was a bad choice because I was poorly coordinated. I always missed the tennis ball in matches. So I decided to stop. Then I started to use the computer more and my coordination improved. Now I barely miss any tennis balls."" @CAPS6, @CAPS10 advances in technology will improve and teach hand-eye coordination. Another reason there should be advances in technology is because it gives people the ability to learn about far away places and people. @PERSON2 @CAPS7 a writer from @ORGANIZATION1 @CAPS4 that, ""People like to research a place @CAPS5 they go on vacation or a buisness trip because they would like to know more about it."" Not knowing anything about your vacation destination is like not knowing what's for dinner tonight, it is clearly unreasonable. Recent studies show that the more a person knows about their vacation destination the more enjoyable it is. Thus, the more vacations they go one which is profitable for airplane companies. Also knowing about the different cultures of the people in far away places gives people a better perspective of the world they live in. Thus, @CAPS10 advances in technology will give the ability to learn about far away places and people. Furthermore, @CAPS10 advances in technology will allow people to talk online with other people. @PERSON3 @CAPS8 the creator of @CAPS9 @CAPS4 that, ""@CAPS10 online chat programs will help people communicate with each other. @CAPS9 has been beneficial to everybody. For example, it helps people re-connect with their former friends. It is also very beneficial to students because if they forget a homework assignment they can log onto @CAPS9 and ask a classmate."" A recent article found on @ORGANIZATION2, showed that online chat programs helped people communicate with each other. @CAPS6, @CAPS10 advances in technology will allow people to talk online with other people. In conclusion, @CAPS10 advances in technology will improve hand-eye coordination, teach people about far away places and people, and allows people to talk online with other people. When voting on this decision please take part and support advances in technology, it will be beneficial to everybody. Thank you for your time." 5 5 10 +1589 1 "Dear editors of the @ORGANIZATION1, @CAPS1 morning, my sister wakes me up to go to school. She uses her cell phone to set an alarm. A few years ago, my mom would come in and tell us it was time to get up. Now, we have one small device that we carry around with us to do our work. Most everyone has cellphone now, and it does much more than allow people to talk to one another from two different places. Now we can play games, go on the. These advances in the technology are making us very selfish. I, for one, do not approve. For starters, all of these new and improved gadgets are time consuming. With all the things to do in the world, we could all be doing something helpful, fun, or productive. Don't you agree? I mean, if you consider the idea that we all could be hitting the gym or studying for school tests and quizzes, then most teenagers would be in much better shape, physicly, and mentaly, @CAPS2. @PERSON1, my aunt an former physisist, said. The rate at which most students and kids grow increasingly more obese, @CAPS3 because of these new ideas involving phones and i-pods are completely sickening. The more time we spend using these items, the more we oppose the idea of being active? You can clearly see how we are growing less energetic, and much more careless of our time. Furthermore, the advances in today's society are pushing on the boundries at internet safety. Sure, people might claim that they can block out other people, but sometimes when someone posts something on the web, they don't always hide it well enough. They could have blackmailed one of your friend into commiting a crime, right? That happened to one of my cousins, @CAPS3 last year. The police took a long time to find her after she had been kidnapped, because the person who kidnapped her hid the evidence by a chain of blackmails. Do you see how important it is to spend less time on these silly computers? It sucks us into a virtual world that is sometimes 'bloody' or 'war-like? My brother learned swearing from the new & advanced game of @CAPS5. It's a fighting game (@CAPS6!) I implore your company to make the righty decision and write to help pull us off of our butts and get us up and going strong again. I hope you take my advice, and i thank you for your extremely valuable time and effort." 5 5 10 +1590 1 "Dear Local @CAPS1: I'm sitting at the couch thinking about what I should do for vacation. I know I definitely want to take a trip somewhere to do same creative writing, but my notebooks are all scattered, I don't know how to quickly contact someone who could help and I have no idea about the country that I plan to visit. I take a last look at my notebooks strewn about the closet looking very much like a tornado swept through and I find solution on the highest shelf my laptop. First, I highly agree with the people who think computers are useful. Three effects they have on people who use them usely are fantastic. Compare a person with a laptop to one without. The person with a laptop @MONTH1 be a busy business person and have to converse with many people from long distances a part, so they use e'mail and @ORGANIZATION1. They travel places with people at their fingertips. However a person without a laptop could be busy moving from place to place just to meet these people. Their schedule could be chaotic. Conversations over a chat system are fast and effective. Take my story for example. My mom hates wasting, so instead of me driving to a friend we @CAPS2. Saves money and time! In addition, I happen to be a writer who write often everyday in many notebooks. I've written so much over the years that my notebooks are piling all over my room. What organizational tool could help me in this situation? Why a laptop of course! One laptop or computer store a bunch of and editing a breeze. Anyone who with data and writing would be crazy not to have a computer! What you a room notebooks that you buy of, or a single, computer with tons of space and back up? You tell me. Computers encourage users to be more organized! Respectively, computers are resource for a millions of pages information. They're similar to libraries. But think about a library and then imagine a computer. One you have to walk around to seek your information and with the other, knowledge is merely a click away. Some @MONTH1 argue that computer websites are not entirely reliable I beg to differ. There are specific websites on computers with suffixes like '.org' and'.gov' and even'.edu'. These websites contain proven factual information and more great resources for research. By using computers I have acquired greater knowledge and have found computers beneficial. They have effectively made me more intellgent as a person. In conclusion, it's my strong opinion that those who use computers gain nothing but the positive effects, and these include money/gas-saving conversations through @CAPS2 and email organization and increased intelligence from reading. I've decide to take my creative writing on my laptop and in doing so learned the storm." 6 5 11 +1591 1 "Dear Local Newspaper, @CAPS1 has come to my attention that you have asked people to tell their opinions on the effects computers have on people. In my opinion computers do not have a good effect. The reason I think that is because kids are on the computer instead of doing their homework, people do not exercise as much because they are always on the computer and they do not spend as much time with their family and friends, @CAPS2 are many kids that go on the computer all night and never get to doing their homework. I read an article that said, ""Computers are the number one problem for kids not doing their homework."" People get @CAPS4 distracted on the computer that they never end up doing anything else. Eight out of ten kids say that they sometimes don't do their homework because they get distracted on the computer. I interviewed a student in the @NUM1 grade and she said, ""@CAPS3 class inastly gets all homework done but sometimes we forget when we are on the computer. That is really the only reason we don't do @CAPS1."" @CAPS4 computers are not a very good electronic if kids are not getting their homework done because of @CAPS1. But that is not the only bad thing about them. Since people are always on computers they don't get out and exercise as much. Instead they sit and play games on a computer. I found this quote in an article I was reading ""@CAPS5 since I started spending a lot of time on the computer I have gained weight because I am not out exercising,"" Exercising and going outside is a very important things to do but people cannot do @CAPS1 if they are always on the computer. Nine out of ten people say that @CAPS5 since they started going on the computer a lot, they have not gone outside or exercised in a while. I interviewed a women and she said, ""I had to not go on the computer for a while because I realized that @CAPS1 was not good for me and I needed exercise."" People get @CAPS4 distracted on computers that they never go outside to exercise anymore. @CAPS2 are still some reasons why computers are not very good. Spending time with your family and friends is a very important thing to do, but with computers people to not do @CAPS1 that much anymore. In a magazine I read @CAPS1 said, ""People are not spending time with their friends and family because they are on the computer instant messaging."" Computers are keeping people from spending time together. Nine out of ten families say that they have realized they don't spent as much time together because of computers. I interviewed some kids and said, "" I don't spend a lot of time with family or friends. I am mostly on the computer instant messaging."" Computers are deffinitely not a good thing for families. Those are the reasons why I think computers do not have a good effect on people. Kids are on the computer and don't do their homework, people do not exercise as much and they don't spend as much time with family or friends." 4 5 9 +1592 1 The computers are cool. Do you now I werpsite is @NUM1.com. We nede to time the lemt lo-menteno it. I love the compueters. We nede @NUM2 make a computers are grene compurers. 1 1 2 +1593 1 "As the people of the world are starting to use the computer more and more, I think it has a extremely positive effect on people. Computers are not all fun and games they help with other things as well. For example, some of the amazing things the computer are; teach hand-eye coordination. give people all over the world a chance to learn about the places, people and culture from far away places, and last hit not least, it is another way to allow people to talk online with their friends. Now let me explaine more about what a positve effect the computer is for the millions of people that use one. The computer today is such a great thing to have in your house. It is not for just ga off and playing video games on, it is also very helpful in the education of young children, teens, parents, and even grandparents. when you use the computer there os so much you can learn. For instance lets say you have a in your socical or history about the country or and you don't know a thing about it. What do you do? You should log onto you computer find a reliable website and boom you are learning facts about @LOCATION1 that you would have never know until you logged onto the computer. The computer is also a great way to practice and get better using your hand-eye coordination. First you need to learn about the of the keys and where they are positioned on the keyboard. After you have that skills, you should try to look at the computer screan. and not be working down at you finger keys. Not only is that not helping you hand-eye coordination, but it is causing you to type much slower than you would if you were looking at the screen. The computer truely is unbelievable. Are you one of those people who's parents don't you get a phone because use of how much it costs without even the cost of texting? Well if you are, the computer help you out with that problem aswell!! There are bunches of different ways to talk to your friends and family on the computer. For example, you could use @CAPS1 to instant your friends or facebook to learn more and more about somebody. The comp. is so hanndy! So lets recap on what we learned! The computer helps people learn about different places all over the world helps w/ hand-eye coordination, and lets you talk to your friends! I think the comp is a in every household." 5 5 10 +1594 1 "Dear @CAPS1, many people say that computers can have an bad effect on people. I came to disagree computers make our lives so much easier. We can talk to people that we have not seen in a while, we can read/see other places we thought we would never know about; And insted of having to hand write that book we can typr it up. I find these are resons that show that computers don't have a bad effect on people. Imagin you are on facebook and you type in your best friend from high schools name she pops up and you a on net. The next day she is on happy you are connected. Thats she kind of thing that happens everday people reconnect, this not only happens on facebook, not all over the internet! Reconecting with friends and family, talking to your boss on next door you can even send a picture of your new born baby to your mother who lives in @CAPS2. Having computers really allows us to reconect to these we have lost. Other are very inportant. But what if we know nothing about other cultures then what would life be like with computers we can instantly learn about other unlike having to go to the ad you have to do is type in the place and pick the size you want to look at all with using computers. @LOCATION1 ago people would have to write our everthing word by word letter by letter. Not with computers. So dont worry that @NUM1 page paper, you can just type it and with some softwear, you can even your paper edited right on the spot. This is great for not only school, children but adult to. That dissnes proposle can be done quickly and easily with computers. Many people say that computers can have a bad effect on people. But with advancing technology site gets easier, and the gives more time other things. There is no bad effect of computers. The effects is just helpful ness." 4 4 8 +1595 1 "Dear local newspaper, @CAPS1 opinion on the effects computers have on people is they help make every day life easyier. First off, you can chat with people from long distances. Also, it makes home work, and finding information a lot easyier as well. Last but not least when you have nothing else to do, you can play games, and watch videos from online. One of the best things about computers is going online and chatting with @CAPS1 friends. Even if the are across the country, you can still chat with them, for free! Also, if you can't get in touch with them, you can send them a @CAPS2-mail, and as soon as they log on, they will get your message. Best of all, when you forget to write your home work down, you can go online, and ask one of your friend what it was. Besides talking to people, you can do your homework on a computer as well. All you have to do is make a word document, and type with the keys. Let me just say this is a lot better than having to write with a pencil. Not to mention, typing a paper is a lot neater. Also, if you are doing a report on something, all you have to do is look it up on the internet, and you'll get endless information about it, all on your computer! Last but not least, you can play games on your computer. Whenever someone is bored doing nothing they can just turn on a computer, and play their favorite game. Not only is it fun, but it teaches hand-eye coordination as well. Some people say they don't have the money for games, but little do they know, there are millions of free online games, that any age can play. This is great on a boring day when you have nothing else to do. In summary, the effects computers have on people is they help make everyday life easyier. You can chat with people from long distances, and it even makes home work much easyier to complete. Not to mention it has fun games for people to play when there bored, or have nothing to do. I strongly belive that computers have a positive effect on people, because of all the things they offer, and help us on. Thank you." 4 4 8 +1596 1 "Dear @CAPS1 @CAPS2, I agree that computers had a positive effect on people. They teach hand-eye coordination give the ability to learn about faraway places and people and allow people to talk online with other people. More people should see computers as a positive effect on people. Spending time on a computer is a great way to enhance your hand-eye coordination. It also teaches you how to type fast. Typing is an important skill that you need for most jobs. It is so important that have throuhout school teaching us how to type. we also use hand-eye coordination is loaded and. You have to keep your eye on the and move your arms and hands to hit the. Computers are helpful in many ways. Have you ever about what looks like or what would be found on it? With a computer you can. Comuputers give people the ability to learn about faraway places and people. You can get pictures some important cities and places, and some knowledge on the people who lies there. Yes, you would do this in a social studies look buts is much easier and faster online. Computers save time and make your life easier. Computers are learning more and more advanced everyday. They give you the oppurtunity to talk with people online whether the world the street. In order to do this you need a web. They are sold in computer stores and some are already installed into the computer. Being able to talk with people online is a really great thing. Its a fast way to learn about that person and maybe about them if they one from a different country. Its almost like a pen pal last your in a computer. People are saying that computers have a negative effect on people. They say people are spanding to much time an computer and not on exercise. They also say that they are not interacting with family and friends. All of these things should be. All you have to do is manage your time. Or not all day on the computer. If you do this thinks everyone will say that computer your positive effect and are one of the last invention created. I would like to thanks all f the reader for there time and hope hat you all support me and my ideas." 4 5 9 +1597 1 "North @CAPS1 courier, I would like to give you my opinion on the usage of computers. I am a person who supports the advances in technology and believe computers have a positive effect on people, @CAPS2 ran benefit people in many ways. The three most important ways to me is that @CAPS2 helps with hand-eye coordination, gives people another source to retain knowledge from, and lastly @CAPS2 realise to another way for people communicate. Hand-eye coordination is an awesome skill to have in our society. In a country, being the @LOCATION2, that revolves around sports, hand-eye coordination really helps out. Using the computers really helps harness and train your hand-eye for sports such as baseball, basketball and many more. Using the computers for hand-eye coordination will really help the @LOCATION2 to develop some world class athletes. We also live in a country where their are so many drivers and cars on the road. We have a problem with bad drivers here in the @LOCATION2 so if they improve their coordination maybe the numbers of car accidents and fatalities involving automobile will decreas. Well how in computers help with with hand-eye coordination yoe ask? I'll tell you how, by people using fun gaming sites, like luniosity.com, which is a website with games for brain training. @CAPS2 helps with hand-eye coordination, concentration, memorization, and problem solving. They help your brain in all of these categories just by having cute and fun little game. As you can see in the @LOCATION2 we need improved hand-eye coordination and @CAPS2 could do many positive things for the country. We cam improve @CAPS2 just by computer. To retain knowledge about other cultures, places, people and miscellaneous things makes to amazing thanks to the computer we have for this information besides books. have the internet and computers you can know about what you want when you type in the subject into a search engine like google or yahoo. People can learn all of this wonderful and interesting information about things they of never known before. @CAPS2 also helps kids like to find information for reports and. There are truly you can learn on the internet. You can learn about or. Maybe the difference between an element and a compound, or even just the definition of the word sucess than is a to @LOCATION1. You can get so much knowledge from the computers/internet. Communication is another huge part of our daily lives. Most people have home phones or call phones, but for the ones who dont they need as meen of communication. On the computer you can use instant @CAPS3 or email; @CAPS4 twitter, or myspace as well. The computer gives people who don't have phones another way to communicate with others. Even if you do have a phone and someone you known is overseas. Instead of wasting money on a long distances just use one of the systems y've mentioned. The same thing goes for our military, they don't have phones to call home so they communicate via the computer. Communicating via computer is just another reason why the computer is so important. So as I conclude my letter to you, the north @CAPS1 courier, I shall restate that I do support technology because they do have positive effects on people. The positive effects that are the most major are @CAPS2 teaches hand-eye coordinating helps people with another source to gain knowledge, and lastly @CAPS2 allows another way to communicate with people. I will tell you once again computers benefits society and do have positive effects." 6 5 11 +1598 1 "Dear Local Newspaper, I think the effects that computers have on people are bad, and should be stopped. I mean don't get me wrong computers help people, but a lot of people go on it everyday, some computers can get viruses, and there are much more activities to do other than on a computer. I hope to persuade you about the horrible effects a computer has on people. Do you know how many people use the computer? Well, according to @ORGANIZATION1 over @NUM1 billion people use a computer worldwide. The problem we are facing today is that too many people are on a computer, most of them are teens. According to @PERSON1 about @PERCENT1 of teens spend most of their time on an computer. Facebook, @ORGANIZATION2, @CAPS1, and @CAPS2 are the most common places to find teens. I would know that because I have a facebook myself. I've had one for almost a year, and you should see all the people who have one. My friend wanted me to get one because she said she had one one wanted me to get one too. So I did and then I found out that more then half of my grade had a facebook. In my own words I honestly think the computer can be addicting, especially when your on a worldwide account like facebook. There are many people on the computer and if must be stopped. In addition, another reason is computers occasionally get viruses. According to @CAPS3.com, the average adult gets about @NUM2 to @NUM3 viruses a year. My friend @PERSON2 was on his computer typing a report, and then his computer shut down. Then @NUM4 seconds @CAPS4 the computer said you have a virus. The next day @PERSON2 told me he didn't have his report because the virus wiped out all his information. About @PERCENT2 of viruses can cause a computer to shut down and it is hard to reboot it. Some places have made virus scans such as mcafee. and @CAPS5, but sometimes they can't catch the virus. @PERCENT3 of people who say that a virus was cought by the virus scan they have, their computer freezes up and you can't delete the virus, viruses must be terminated, so the computer can work properly. Thats another reason to why computers affect people in a bad way. Furthermore, people think that the computer is their everything. They're wrong! There is a lot of activities that they can do other than be on a computer. According to @CAPS6. Burn the average person between the ages of @NUM5 and @NUM6 spend more then @NUM7 hours on a computer. There are many other options of activities like call your friends and get together, that's why they invented the cell phone, play a sport, read a book, spend time with family for @PERSON3's @CAPS7! Don't spend all your time on the computer. About @PERCENT4 of teens who are on the computer alot tend to get into lower colleges later in life. That is my final reason of the bad effects a computer has. In conclusion, computers can cause a bad influence due to viruses, too much time on it, and not doing other things. I hope you can see my point to this and please send me a response as soon as possible." 5 5 10 +1599 1 "Dear @CAPS1, I believe that computers are not necessary. Some believe that they help us learn, but I just say so do books. Some people believe @CAPS2 can help to be more hand eye coordinated, so does playing catch. Most believe that internet teaches about people in faraway places, I say why not visit those places then you'll know more than what was typed in a computer. @CAPS2 it was computers against books I definetly would conqure with whomever roots for books. A good book is healthy. To me, reading a book on the computer is one of two things, unhealthy and unethnical! You can't read a book on the computer and even @CAPS2 you could it is not as fun as turning the pages of a beautiful paperback or hard-covered book. I Believe that you can learn so much from what you read in a book, (A real book)! When you type on a computer, do all that, ""clickety, clickety""!, you say that it's learning because you learn to type without looking, hand-eye coordination. I say no! that is not natural. Why not go out side and throw a ball to one another? That's a real way to show hand-eye coordination. It's a fun game and it's easy, plus it teaches hand-eye coordination. When you want to surf the web to find a nice vacation spot, you should really just visit that place. Flip a coin heads @LOCATION3 tails @LOCATION1, @CAPS2 you pick heads, stop surfing the web to get info on that place!. go fly there and surf the totaly radical waves. Surf the real waves next the artificial ones dudes! So as I restate, computers might seem okay and i guess they aren't all bad, but they are not my cup of coffee. So take time away from that computer and go read a book or play a game of catch. You know what hows about a trip to @LOCATION4 or @LOCATION2 or @LOCATION3. Who knows, it will definetly be an experience, for sure." 4 5 9 +1600 1 "Dear @CAPS1, @CAPS2 you really think we should'nt have computers or @CAPS2 you think we shouldn't? Well I say we should because computers has everything you need as in info, games, school, websites where you can by clothes. Others say no for some reason why they say it's not good for you and to addictive I clearly think that it is appropriate. Having computers, it absolutely helps us learn, whatever you needed to learn a computer has it. If you wanted learn about other places besides the one you live in you could find it on the computer. I remember one time when I was looking for a word in the dictionary and they didn't have it and I looked it up on the computer and they had it I thought it was magnificent. I love computers it connect's me with my family that are in far away places there's nothing better than that because you could talk to your family all day or wherever you want. Computers have everything, any info you need get it off of the computer. It let's you stay alert on what's happening today in the world. It really does work on your hand and eye coordination. ""@CAPS3't that brilliant?"" Some say computers are not good because people are not enjoying nature. Or people start to not to want to get out of the house, you don't spend time with your family, because your so addictive to it. Some say your not exercising or nothing so you get too fat, or too skinny and your not healthy at all. But i disagree, that's why i @CAPS2 not like righting this side of the story.""@CAPS4 kidding."" @CAPS5 you have a chance because computers are the best they are definitely not the baddest but after reading this you could'nt agree with me more so it's @CAPS5 to agree or never to disagree. The big question is what will you choose! This is not a hard decision to make." 4 4 8 +1601 1 "Dear @ORGANIZATION1, @CAPS1 reading your paper weekly and @CAPS2 up with local events, I was able to retrieve the information of a contreversy dealing with the effects of computers. I for one think that the computer was come to be one of the greatest inventions ever created. It was @CAPS3 changed our Society, and if you ask me, in a very posotive way. My first reason has to do with the knowledge that the computer possesses. You can practically discover anything in the blink of an eye, as opossed to a book or going to the library; which is very time consuming Not only does a computer take for less time to get information, it also holds a much large amount of information than a library can store. Computers hold knowledge on almost everything imaginable, but best of all, its right your fingertips. Another great characteristic of the computer, is it's ability to let people @NUM1 miles apart converse freely. This might just be the greatest thing about the computer. Chatting online completeley erases the hassel of @CAPS4 phone bills and carrying around cell phones, You can speak with friends half way around the world with no cost to you, amazing!!! The one thing that is faulty about the computer is it's overusage by children although this is a significant problem, it is not the computer's fault. Kids should no the limit. There should be @ORGANIZATION1 for both being on the computer and for excersise and fun with friends this problem has most likely influenced many to com to dislike the computer, but you must understand that the time children spend on the computer is entirely up to him/her or the parents. In @CAPS5 I hope I have persuaded you enough to agree with my thoughts and to give the computer a chance, im sure you'll be satisfied." 4 4 8 +1602 1 "Dear editor, Computers have a good effect on humans. The reason is because you can interact with friends and family that they know, the computer @MONTH1 be portable so you can still get outside, and lastely people can research places where they want to go on vacation. These reasons are how computers have a good effect on humans. To begin with, seeing people in person is not the only way to communicate, on the computer there is many ways. There are chat rooms, that have typing to eachother. Take my friend @PERSON5 for example, he used to live in @LOCATION2 with all his friends and family until buisiness came along. His buisiness transfered @PERSON5 all the way to @LOCATION1. Thank god he had a computer, because other wise he would not have able to communicate with his friends. @PERSON5 is not the only person in which he is transfered far away from home. In fact, @PERSON4 showed @PERCENT1 of people with a computer tend to talk to friends and family more often because they can do it whenever they need. Gene a phsychyatrist states that when someone in a family has to leave to go on buisiness, then that family will start relying on a computer to communicate. Do you want to lose a friend or family member? Moreover, computers @MONTH1 be portable. If a computer is portable then you can see nature and still use the computer to get the job done. Take my cousin @PERSON2 is a teacher and always has to do his students grades during the weekend. He was bummed out because he could never get outside. So for his birthday, he got a portable computer, this allowed him to go outside and do his job while getting fresh air and seeing nature. @PERSON2 is one of many lucky people that has had this happen to them. @PERSON6 has shown that @PERCENT2 of teachers buy portable computers so they can see nature and get fresh-air while doing their job. @PERSON1, proved that if a teacher doesn't get any fresh air while doing their job then they can make a valuable mistake or even get sick. Would you, a teacher, want to get sick with no fresh air or be healthy working out doors? Lastly, there is more to do on computers than doing work and communicating with friends and family. You can research places for vaction. My aunt @PERSON3 had always dreamed of going on vacation but couldn't find any information on fun, outdoor places. Until, she got her hands on a computer. This way she found a fun place and left the country for week. @PERSON3 is not the only person this has happened to. In fact, @ORGANIZATION1 shows that @PERCENT3 of people hesitate to go on vaction because they don't know about the country or place." 5 5 10 +1603 1 "To the local Newspaper, I think using computers does not have a negative effect on people. I believe it's an advantage to use it. You are given technology, advantage so why not use it? They give people chance to chat with people allow them to make friends. These days people even watch to shows on the computer-websites such as: @CAPS1, @ORGANIZATION1 allows them to search anything and watch it on @CAPS1. People make emails, download music and several other things. Children at the age of @NUM1, @NUM2 even @NUM3 move use computers-play games on them. i have a cousin who is @NUM3 and he plays games on it all the time he even knows how to search something on the computer. Some people @MONTH1 think it gives you a negative effect, but really it doesn't. Those people think that should comee to the reality. We have to step up as the life goes. Let's say a girl doesn't have a computer, her parents think that computers spoil children, their technology spoil children. The girl goes to school, her friends asks her to give them her e-mail. Every time her friends asks her about email she makes up some excuse and tries to avoid the subject. this time she made an excuse, but how many times is she going to make up an excuse. Then suppose one day her friends finds out she doesn't have a computer and embarasses her in front of everyone. So, what I'm trying to say is that you have to see around you and go on with it computer also saves your time. You can just type instead of writing whole out. You can make your writing cursive or any other that you would like. After reeding my letter, I hope you understand my point. Next time you see a person who thinks computers give negative effects to people, tell the advantages of the computers and how it benefits society around you." 4 4 8 +1604 1 "Although many people love to be on computer palying video games and have cyber chats, most of them don't know how bad a computer can be even though I experience a great time on the computer, I know how bad it is. Here is a short example. You can experience problems with your computer, if you stay on the computer for to long it can over heat and that can cause it to stop working. Another problem is side effects. you can get headaches from just staring at the screen for to long. Those headaches over time can become even worst. You @MONTH1 even get poor vision from a computer. Computers can also be addicting. Because of your addictition with computers you @MONTH1 become less close with family or friends, causing your social life to be very minimal. Also, because of the addiction, it @MONTH1 work its way to your daily routines causing you to have to play it daily and more thatn the average person does. Your personality @MONTH1 also change with your social life and routine. Lastly, computers can be very dangerous. if your child gets on to one he @MONTH1 accidentlly link heimself to a dirty or bad websites. He then to the negatives of a computer. On a computere your child will probally be shown things like words to pornographic features. These are all things that should not be allowed to access on a computer. Computers are addicting, they cause problems and are dangerous wrong in my opinion should be stopped. Now you think we should do about computers." 4 4 8 +1605 1 "Dear local newspaper, I think the effects of computers are good. Some reasons I think this is that we get a lot of knowledge from it, contact people you dont live near and haven't seen in a while. My first reason why I think the effects of computers are good because you can get a lot of knowledge from it. One example would be if you want to make a @CAPS1 meal, you wouldn't find it in an ordinary @CAPS2 @CAPS3 @CAPS4 you would have to look up on the internet for the recipe. Another example is if you wanted to travel to @LOCATION1 by car and you didn't have a map how would you get the directions? You would go on the computer, look up directions to @LOCATION1 and print it out. You would have never been able to go to @LOCATION1 if you didn't have a map or a computer. My second reason why I think the effects of computers is good is because you can contact friends or family that you have not seen in a while. One example would be if your sister just graduated from college and you wanted to congratulate her but you were @NUM1 feet in the air by a airplane and all you had was your laptop and your luggage, you would e-mail her saying good job. These are just a few reasons why I think the effects of computers is good, and I hope the local newspaper agrees too." 4 4 8 +1606 1 "Do you want your child to suceed in life? This is why computers are valuable to everyday life. Computers help children get more education, they can be independent and not hows anyane tell them new to use a computer, and @CAPS1 they get to college they can take notes quickly and not fall behind. This is whycomputers are important to everyday life. Computers are important because your child will get the proper education that they need. @PERCENT1 of children who uses the thev internet for students for studies are the ones that will be a grade ahead of the best of this or her classmates. Dr. @PERSON1 a computer cope it, says, ""@CAPS1 I was using the computer to do research on a topic, I went on on leperdy the @DATE1 and from there I was a @NUM1 @DATE1 because I was on the computers. As you can see computers are valuable items used in everyday life. Computers are important to everyday life because it helps your children be more independent and learn how to use different parts of the internet. @PERCENT1 to @PERCENT2 of children who use the internet are most likely so succeed in college because they know what websites to go to and how to get there. There is an @PERCENT1 chance that the children who succeed in college will get the higher paying jobs because they've @PERSON1, the computer expect, says, ""@CAPS2 son was at @ORGANIZATION1, @CAPS3 was smart because @CAPS3 was always on the computer looking up new facts and ideas that popped into his head."" @CAPS3 is a student which is very hard to get. This is why computers are valuable to everyday life. Computers are impotant because you can look up sites that will help you eat health foods. @PERCENT3 of adults who health foods are most likely to live an even @NUM2 years of their life because they are their bodies in health conditions because they've eating more fruits, and drinking more to keep their bones strong @CAPS1 they fall @CAPS1 they older. As you can see, using then internet can be very helpful if you used to the right way. This is why using the internet will help you be the successful person that you want to be in life." 4 5 9 +1607 1 "Dear who ever this @MONTH1 concern, I think that people spend way too much time on computers. They do not exercise as much. People sit inside all day instead of going outside to enjoy nature. Family's and @CAPS1's are spending less time together because they have computers to talk to each other. Computer's have become a negative influence on people today. People need exercise to live. It keeps us healthy. With all the fast food places pople need exercise more now than ever. People do not want to exercise if they have a computer to go on. A staticstic is @NUM1 out of @NUM2 @CAPS2's @CAPS3 each have their own computer in the house. They said ""I would much rather be on the computer than outside"" (@PERSON2 @NUM3 grader at @ORGANIZATION1). Even students do not want to exercise when they could be spending time on the computer. Human only have so long to live. There is beautiful nature outside. We do not enjoy our surrounding because we would rather be on th computer. For example @PERSON1 would rather spend her day on the computer than enjoying the amazing nature we have around us. @NUM4 out of @NUM2 students enjoy nature every week. A young girl about @NUM6 never apperciated nature until her parents made her stay in a month. She now loves nature. because it got boaring day after day on the computer. Family and friends are huge parts of our life. We want them to be apart of our big events. Because of the computer we can talk to them whenever or email a video of our big event. But would it not be much better for them to be there, @CAPS4 you on when it is hapenning. When I was around @NUM1 @CAPS5 grandparents used to come to @CAPS5 soccer games, but now they dornot because @CAPS5 mom just records it for them to watch. I liked it so much better when they were at the soccer games, @CAPS4 me on. ""@CAPS5 family and @CAPS1 are the ones I want at @CAPS5 events, not to just show them after the event happend. A @CAPS6 is that everyone wants to share their event with the family. Computers aren't that great. They make it so family and friends do not come to see you. Computers take you away from the beautiful nature that surronds us. It limmits you on exercise and makes you gain weight, which is unhealthy. I urge you to use your computer less and exercise, see family, and enjoy nature." 5 4 9 +1608 1 "I think that computers are because you can have arthridis in your finger, loss of vision, and you also should go out side to get fresh air. It is not good to sit on the computer. Because you can get arthrits in your fingers. There is also a deises called carpel tunnel that when you can really grasp anything anymore. My grandma has arthrites in her fingers but it is not from the computer it from doing dishes all the time. But when she does somthing she complains that her fingers hert. So I think @CAPS2 she is doing dishes I think the key bored will do much more damge and will effect you for the rest of your life. My mon always tolled me that @CAPS2 I sir in front of the @CAPS1 to long I will go blind. Well in a magesen it said that ""@CAPS2 you sit in front of a @CAPS1-computer for to long it will parshel blind you. so @CAPS2 you sit in front of a computer doing face book or somthing whats the differents that will parshel blind you. It is good to go out side somtimes to get fresh air or go for a walk those are someways to stay in shape because @CAPS2 you get obeses then you will die @CAPS2 all you do is sit in front of the computer you need to get exercise every day to stay fit and health that is the way to be in stead of eat junk food and drinking soda. In sure it's ok to go on the computer @CAPS2 you look up other health stuff to do. What im geting at is it is good to go on the computer somtimes but it can be very unhealthy to sit infront of it. @NUM1 you need to be healthe to stay alive and @CAPS2 you sit infront of it all day then the results wouldn't be good. Those are the resons why I think the computer is bad to sit infront of all day." 4 4 8 +1609 1 "Dear @CAPS1 @CAPS2, @CAPS3 the years computers have gotten faster smaller smarter, these advances have led to mankind as we know it advancing, but the effects that come with @MONTH1 be non profitable to the youth of the computer world. Some common effects computers have on people, mostly children are, preventing kids to play outside, tbe active, computers prevent people from using their immagination they also are a waste of time. Everyday a child across america will use the same old exuse, ""no mom, im not on facebook, im doing my @CAPS4 report"", while infact they haven't even started it, or they hours ago are now goofing around on line, but ask your self. ""did this happen thirty years ago? no your parents who grew up then were thrilled to an outside when thire assignments were compleated. They could not wait to get on that flaming red bike t go play ball with joey. Kids these days are becoming less active t egar to play outside f people blame obbisity on genetics while it probbly should be blamed on computers, sucking children to them. Because kids never want to leave the side of their beloved computer to go outside they are using less + less of their immagination. parents tell storys of when they would watch the one new episode of their favorite show + what whole week the kids in the neighborhood would take roles + act it out. but do you see that every day in this generation not at all. No one that or imaginn any thing new about it with friends to make it more fun they only move onto the wii five minuets later to play a smashing ballons game. Computers just up all of your time the average kid will spend up to four hours on the computer just falling around with no purpose. Wasting the time they could be improving homework or walking the dog the time is not bring donated to a good source. it is not being effective most times. they say computers are the now generation but dose that mean that the now generation must be, lazy, unimmaginitive, and not care what their time is put towards. Most people will say no we are not but you offer a nine year old to play on the computer or, oh say go outside! You would be ignorant to think they would go out to play. People want to move forward but can we not make a compromise?" 4 5 9 +1610 1 "Dear @CAPS1, I remember when I was younger my parents got two laptops for themselves. Internet use was always available, interaction of online chat. It was extremly exciting for them. On the other hand, I got to sit home and watch them have fun. I couldn't go outside, or hang out with friends just because I was stranded insided as they enjoyed the computer. I strongly feel as if computers do not benefit society. People spend too much time using the internet than exercising, nobody gets to enjoy the beauty of nature, and there is less interaction with family and friends. There are many holes being dog while computers one still being used and bought. Our society is just going downhill from here. People don't need to be sitting at home inside breathing reused air while using the computer. Proffessor @PERSON3, a health generalist, stated on @ORGANIZATION2 news that @PERCENT1 of all people around @LOCATION1 would rather be on the computer at home doing nothing than going outside and/or getting some kind of exercise. Could you imagine all of those unhealthy people not worriying about anything except their computer? the only thing computers do for us these days is abandon our free time. @CAPS2 waist @PERCENT2 of there spare time on their computer. If technology decreases there new games people play, and sites people use, it is likey for people to get out of the house and do something healthy for themselves. @PERSON1, owner of @ORGANIZATION1, said ""I have never seen in my entire life, so many people using there computers and internet. Its been quite sometimes when over one billion @CAPS2 are online on a typical weekend. "" @PERSON1 later mentions "" it's kind of depressing of how much time they spend on computers, than outside and enjoying nature."" Not only is excersicing time headed down the drain, but our used to be "" beautiful"" nature is as well. Many young kids these days are watching @CAPS3, they see computer game commercials there parents buy them the game, and all of a sudden they are on it @NUM1. Since adults aren't doing there part by idolizing these kids to persuade them to run around outside and do something healthy. The kids need to step up for a change! Did you know global warming is caused by the minimum density in the air? If we have almost to no children or adults running around outside, our world is not flowing too well. Hence our budget is low, and pollution is extremly off the wall; our nature is going from beatifu to less and lesser. @PERSON2, a government official has survey @NUM2 people from each state asking about how much time they spend weekly of just enjoying nature and roleizing the beaty of it. The survey reads one in every @NUM3 people thoughly breathe in the beauty for at least @NUM4 minuests, a week. I mean come on; that's pathetic. Maybe if we surely excluded computers and technology for a while, global warming won't be nessicary. I remember when I was about @NUM4 years old an I never once got to meet my other family besides my siblings. It was pretty sad because I'm always told I have a huge family that is very known to our town but I have no clue who they are ! this is all because technology was invented. Never once have I ever been outside and relaxed besides when I got on and off the bus for school. My parents stand me in my house as they use the computer. The other day I just found out what ""show"" is because my moms computer brake and now I am get introduced to my other family along with the freedom of going outside. Ever since my mom's computer brake she has lots of free time to spend with me. Technology ruined my childhood as a kid and without it you get to open up the real importance of life. Would you want to become obese, like through global warming, and/or to not interact with family or outside nature? Its sadi how @PERCENT3 of these reasonings are caused by the excessvive use of technology and computers. Let's just get rid of it all! Thank you for your time @CAPS1!" 5 6 11 +1611 1 "Dear Local Newspaper, Computers are very important to some people. Everyone uses them or has used them before. It isn't bad to own a computer because you can still excersise and be able to do the things you do everyday. Lets say that you need to look something up, the thing you always go to for information is a computer. People in schools, industries, and in homes use it all the time. Teenagers will usually go on the computer to talk to friends or maybe play games, I know I do. It's so they don't waste their time being bored all day. Excersising and being active is indeed very good for teenagers to really look into, but even though they do that, they don't push away the computer. It will always be there when they don't have anymore homework or when they finish running around the neighborhood with their friends. I can't imagine what my life would be like coming home from soccer practice and done with my homework and the computer or @CAPS1 is one of the first places I run to so I can just sit back and relax. Computers should be known as our friends. They won't hurt us. They just give us what we need and want. Reaserch is a good example because everyone uses the computer to find whatever it is that people are looking for on it. And if they're done with reaserching they can have a little fun by games and friends. But I believe that the main purpose for computers is information. Whenever I get home from school, I finish my homework and stretch a little for cheerleading then whatch @CAPS1 or go on the computer so i'm not bored. It's not that i'm not active because I'm not working out or excersising. It's because I have nothing to do, so why not make my time occupied? Everyone does it so I'm not the only one. Yes, computers are just this square box with a keyboard, but if you don't push it away from peoples common lives than you can see that they aren't what you say they are and they won't rot peoples brain or anything. The reason they are in an office or living room or bedroom is because people like them and uses them for their needs." 4 4 8 +1612 1 "Dear Newspaper, @CAPS1 do @CAPS5 do when @CAPS5 need to write a report? Or talk to a buisness partner, friend, or family? @CAPS3 computers help us do all of that. The eletronic wonder improves are lives everyday. Yet some people refuse to accept computers are now apart of every day life. Computers help us communicate, research different topics, and have just plain fun things to do. Computers make it easy to communicate. Things like ""@CAPS2"" and ""facebook"" let us talk with each other. Some @MONTH1 contest ""@CAPS3, use a phone or go out."" @CAPS1 if they're away on a trip, or live thousands of miles away? With computers everything is easier. Computers allow us to reserch topics @CAPS5 need for classes or work. ""@CAPS5 can get alot of detailed information from thousands of sites. Sceptics might ask the question ""@CAPS6 not go to a library."" Some of us might prefer to stay at home. Another reason is, that it maybe snowy, or the library is closed. @CAPS1 ever the reason, computers make reserch fast and easy. Computers also fulfill a great need to entertain ourselfs. Games sites like ""facebook"" have become very popular. They can provide us with emotional release from the everyday world. A pontential argument might you ""@CAPS6 go outside?"" The weather could for bad and your sick. Computers are fun, education and a communication wonder. should find the good in computers and @CAPS1 they could do for there." 4 4 8 +1613 1 "Dear Newspaper, I think that computers have a positive affect on society because it gives a lot of information, it has lots of fun games and music, and it informs you about issues in the world and communities. The first reason I think that computers have a positive affect on society is because its gives you lots of information. If you need to do projects and research, what better way to do them than on a computer. You can search all kinds of people like the presidents of the @LOCATION1, celebrities, and people that made a change in the world. You can also look @CAPS5 and study different kinds of plants and animals, and you can find fasmating experiments to do. The second reason I think that computers have a positive affect on society is because it has lots of fun games and music. You can go on the @CAPS1 channel website and play lots of diffrent games from your favorite t.v shows. They also have learning games on test prep fun where you can play games to help you do well on your @ORGANIZATION2 such as comprehension clinic. The computer also has lots of music that you can listen to. You can listen to @ORGANIZATION1's album. I am @PERSON1 before You @CAPS2 it, or @PERSON2 @CAPS3 @CAPS4 @CAPS5 @CAPS6 @CAPS7 before buying the @NUM1 songs. The fina; reason I think that computers have a positive effect on society is because it gives you information about issues in the world. You can go on a computer and search @CAPS5 natrual disasters like @CAPS8 earthquake, @CAPS9 earthquake, or information about the tsunami that @MONTH1 hit @LOCATION2. You can search @CAPS5 @CAPS10 @PERSON3 and get information. You can search your favorite artist and see what their albums gonna be like or you can search @CAPS5 issues in your community. That is why I think computers have a positive affect on society because it gives information it has lots of games and music, and it talks about important issues." 5 4 9 +1614 1 "Dear @CAPS1 I think that computers are beneficial to our society for example, computers are very helpful to everybody. Computers alsi travel nows faster. And they can teach us new things. I am not saying computers dont have their downs, but, computers also have their ups. Computers are very helpful in many ways. They help people find lost fmaily members, and they help police officers find many criminals. Haven't you lost soemone in your family, or haven't spoken to them in years and always wanted to find them and get back in with them? Well that's what computer are for. Aslo haven't you been concern about the many criminals on the street, and wanted to get them of the streets and in jail where they belong but didnt have a way to do that? Computers help. Haven't you notice that computers are help police many women in the present time? Computers people in the , but they help travel fastre for example say you heard there was hurricane or tornado and you needed to find out how . All you have to do is on the computer and look it up. Also, there an earthquake in @LOCATION1 and the didn't information to help you. You would just go on the computer and find all the information you need. COmputers are of many things for they you. Computers teach you alot, like hand-eye cordiantion. Think about it, you might on hte computer that, but it helps. If you yourself while you are on the comp[puter you would start to see that you are typing fastre and learning where all the letters are on the keyboard now, then when you saw your first computer. Computers though, not only teaches you hand-eye cordination but it also teaches you of many wonder places. Such as @CAPS2 falls, rain forests etc. Now, dont get me wrong, @CAPS3 not saying that computer dont their downs and that people dont take advantage of computers. but, I am saying that they help society alot. They travel news fatser. Also they taught alot to people. So take my opinion into consideration. And think about how much computers have done for you." 5 4 9 +1615 1 "Dear @CAPS1 @CAPS2, I am a @ORGANIZATION1 who believes that computers have a positive effect on people for one computed help promote hand-eye coordination. @CAPS5 there is the fact that computers also help teach people about distant places and people without leaving they're home. @CAPS6 computers also allow people to talk to each other via the @CAPS3. What would we do without computer! My fist reason why I believe that computer are a good thing is hand-eye coordination. According to @PERSON1 of the @ORGANIZATION3 of the eye @CAPS4 you have to watch what keys you are using when typing, your brain builds a connection with your hand, thus better eye hand coordination, ""@CAPS5 there is the fact that millions of @LOCATION1 are in car acidents a year, wich @PERCENT1 are cause by the fact that the driver of a vehicle had to look down at the whey to make that they kept thier car. On that road, this being that they have no eye hand coordination, @CAPS6 I that it computers were in the of every person in the world there would be less acidents a year. Secondly there is the fact that a computer can transport somebody in there mind. to a distant and or person. A study at @ORGANIZATION2 showed that @PERCENT2 of people surveyed can find information on the @CAPS3 faster than they can in a @CAPS7 there is the fact that a child of any age can use a computer to find the specific information it needs in a matter of seconds. @CAPS6 I have observed that children know how to use the @CAPS3 but not a dictionary or encyclopedia, @CAPS6 there is the fact that people can contact and talk to people through the @CAPS3 for one this allows you to contact a long lost friends. @CAPS5 there is the fact that you can talk to theme @CAPS5 @CAPS6. There is the fact that you can contact someone halfway around the globe just with your @CAPS3. How cool is that @CAPS9 reading this letter and sharing it to your company I believe that you should support my cause. This is @CAPS4 computers improve hand-eye coordination, link people to other people and places and @CAPS6 allow people to talk via the @CAPS3." 5 4 9 +1616 1 "Dear @ORGANIZATION1 @CAPS1, Computers have advanced our world so far into the future that practically everything is just a click away. Experts are awed that over the years, computers have helped billions of people get jobs done foster and smoother than ever before. Technology has helped doctors find new cures for patients, and diagnose their sicknesses in a more advanced way. Thousands of professions require the limitless knowledge of the internet, and computers continue to advance and redefine our way of living. Furthermore, kids of all ages benefit from modern computers. As technology becomes more user-friendly, children have adapted to computers giving them answers to all of their questions. As a student at @ORGANIZATION1, I have found that computers are vital in everyday assignments. Essays are now typed and not handwritten and projects are displayed on flash drives, not posterboard. Those advances have shaped our lives, and made everything much easier. Also, foreign places become closer to home, when computers allow you to virtually visit hundreds of different countries. With modern technology, the world is better connected and united. In addition to students, doctors also greatly benefit from computers. Technology has re-shaped the medical world dramatically with x-rays, @CAPS2's, surgeries and medicines. Amazingly, computers allow doctors and nurses to look at patients in a whole new way. Hospitals organize all records digitally to help give the right treatments patients. @PERSON1, the head surgean at @ORGANIZATION2 says, ""@CAPS3 technology, our @ORGANIZATION2 would be useless. We wouldn't be able to do anything."" @CAPS4 @PERSON1 is well-spoken, he makes a very important point. Computers are the building blocks of our medical world. Scientific studies have shown that the internet has brought people closer than ever before. Families separated by thousands of miles now have the ability to email, chat or even video chat with far away relatives and friends. Email has especially played a huge roll in our society, so as to help millions of people communicate when needed. Infact, over @NUM1 million jobs rely on email to communicate important business information. @CAPS3 the aid of technology, our economy would rapidly as communication countries failed to exist. Computers are essential to our culture. I strongly urge you to consider my opinion on the benefits of modern technology and think of all the people computers have helped. Our culture is now bigger, better, faster and stronger, thanks to the help of technology today. Knowing this, I vehimently suggest you educate others in the benefit of technology and play your part in advancing our way of living." 4 5 9 +1617 1 "Dear local newspaper, I feel that the people using computers benefits our society. I feel this way because computers give people the ability to learn about far away places: and people have educational websites, and even allow people to talk online with other people. First of all computers give people the ability to learn about far away places and people. When I was in sixth grade I had to do a project on @ORGANIZATION1 didn't know anything about him. But, luckily we have computers so I was able to @ORGANIZATION2 on a computer and found a wodd or information on him and got an a plus on the project. Also, when I was in fourth grade I had to do a project on @LOCATION1. I went on a computer went on @CAPS1.com a get lots of imformation and got on a plus. The second reason computers are benefitial to the society is because computers have educational websites. Computer technologist @PERSON1 saids, ""@CAPS2 percent of the computers websites are educational. I also remember when i was in seventh grade the whole class went on @CAPS3. com and were able to learn math and have fun at the same time. Last but not the least, computers allow people to talk with other people from around the world. Theres a website calle myspace.com and it allows me and other people to talk online around the world. I asked my class and ninety percent of them go on myspace.com. On the other hand the computer does have cons. Some kids go on unprohibited websites that are not for minors. Theres a website called @NUM1.com and it has shooting and killing games that are not for kids. Also, some people are computer addicts who stay on computers almost twenty four seven. Now, you know my reasons, why computers are good to the society, they give people the ability to learn about far away places and people, have educational websites, and even allow people to tlak to other people online. What is your choice in these actions. " 4 4 8 +1618 1 "Dear local newspaper I've come across this letter I saw about the technology of computers and how it's affecting people lives. I think the computer is a great of learning. Its a new way to study and do other things to learn in a fun way. My opinion is when you have to for a test, quiz or anything if can become boring. I like to study in a fun way that will to my head and I want it when is the computer to have I learn alot from the computer when im at home. my mam & dad think i spend alot @CAPS1 I do sometimes but half the time im studing test. Now i would like to the time to talk about is mentally when you go to learn. Physicly preasure or everything to You can learn different as well just log on to this has to choose them. Lastly family and friends. Family and friends are important websites like @CAPS2, facebook, aim and @CAPS3't that cool. Thats the beauty of computers and technology letting you do alot of things with only using on device. Thank you for giving me the oportunity to say my opion and what I think. I hope you take my letter and into consideration." 4 4 8 +1619 1 "Dear @LOCATION1 news paper I have over heard this debate on weather computers are good influinces on people or not. I am sending you this message to state my opinion on the matter and in my opinion I think the computer has very good efects on people. Not only dose it have a good effect on people it also effects companies places and governments. There are many reasons why it has a good effect on people but the first and maybe one of the most important is it is an amaizing learning tool. When people are on the internet they could learn just about anything they want to on the giant mass of information we call the internet. It not only dose this but people learn how to do things through simulators from flying a plane to driveing a car. There is even more learning ability on the internet because a lot of people get home schooled on it through the internet and this @MONTH1 be an important part of their education because they might not be able to go to school because they are alway on the road or they move a lot of whatever their reason is. The computer is an important part in the invancement of the people's education. Not only can people use the computer in education but it is used as a tool in many ways, lets say your making a movie and need special effects they will use of photo shop or you need to collect and store changing information like lets say you want to stack you can always or down on a computer. Even if you were a construction worker you could your blue prints with pinpoint accuracy. Another less important thing about the computer is it gives many people entertainment. Lets you come home your bored you have nothing to do play a video game look around on the internet, it is also an important way of getting their music and or videos. This also effects many buissness and if the buissness go under becaus people werent moving ther stuff a lot of jobs will be lost and that is the last thing we need. The government also relies highly on the internet. They need it to make plans, save soldiers, and comunicate with other countries. And last but not the least we have the fitness and wellfare of the people useing computers. All I can really say to that is it is their decision. If they get off they can and if they won to sit there and waste or " 4 5 9 +1620 1 "Dear Local Newspaper, The question everyone is asking if computers benfit society? I believe that computers dont because you cant get exercise if youre always on the computers and @CAPS2's really hard to enjoy nature too. Another reason comuters don't benefit society is that you aren't interacting with friends and family. hopfully I have encouraged you to not use computers as much and go have fun with your family. If you are always on the computer how are you going to get exercise? @CAPS2's proven that more than half of united states of @CAPS1 is over weight. Exercising is more important than using the computer and knowing that you could be doing something use that you know is better wouldn't you do @CAPS2? Interacting with poeple is important to do because you can meet new people and if you don;t then you might learn to be shy and not make as much friends as you like @CAPS2's true taht oyu can make new friends over the computer but @CAPS2's not the some meeting them in person. Also if you do make a ""friends"" over the internet, you don't know if they are a stalker or a murderer. I urge you to go out and meet new people and not on the internet. knowing that you are better off not using the computer and being with the poeple you like, wouldn't you do @CAPS2? Yes you can play games on the computer but @CAPS2 would be ebtter if you play @CAPS2 with your fmaily. To answer the question everyone is asking I believe that computers don't benefit society at all and hopfully I have encouraged you to believe this too. " 3 4 7 +1621 1 "Dear @CAPS1, @CAPS2 you belive that the advances in our technology are not good for our society you must be misunderstanding computers have a positive affect on the people in our community by giving us well hand and eye coordination and giving us the ability to seek and find information to learn. It can also allow people to communicate online with others. Hand and eye coordination is an important thing that helps us everyday. @CAPS2 new technology such as computers, can help us with that skill, we should use it. @PERSON1 of @ORGANIZATION1 says, ""Computers do help us a lot; almost @PERCENT1 of active computer users do improve their hand and eye coordination just by using the computers for a small amount of time everyday."" @CAPS3 and education are essential, especially now; the more you learn, the better salary you get. With this new technology, you can earn degrees and learn in a short period of time. My aunt got her @CAPS4 online about six months ago, and just because of that, got promoted at her job. Gaining valuable @CAPS3 online doesn't just go for adults but children as well. @CAPS2 they have a report on @CAPS5 or need some help on their homework, these new technologies are one of the most effective, fastest ways to learn and find information. @PERSON2, a doctor that specializes in @CAPS6 emotions/feelings says in the @CAPS6 @CAPS7 @CAPS8 last month that, ""in this new millenium, preteens and teenagers simply love the new advances in technology, and @CAPS2 we want them to learn, then we can take this tool and have them use it."" Computers are also a great way to communciate it's fast and easy. I have an uncle who lives in @LOCATION1, and we rarely get to see each other due to the distance, som we catch up by messaging each other by social netwroks or emails. It's even free, unlike the costly long distance calls. The communication is also great for businesses. A company can reach out and contact their customers to reschedule an appointment, give receipts, advertist and many other things. Computers are essential and effective techorlogy that are use by people around the country and world. They improve hand-eye coordination, allow people to gain @CAPS3 and education, and gives people opportunity to communicate with others. this is another great and useful step in our communities around the world." 5 5 10 +1622 1 There are many reasons that computers are a good thing for the world. They let us learn about far away places without us even having to leave our homes. Another reason why computers are so important is we can talk to our family without having to even travel if they live in another country or another state or even if they are your neighbors. Lastly they teach us hand-eye cordination that is a much needed skill that can help you get through life. The fantastic thing about computers are that we can learn about far away places without having to leave the comfort of our home. People of all different countries @MONTH1 be inquestitive about where they came from. They @MONTH1 also wonder how other countries are doing goverement wise or even economic (stocks). All of this is possible and much quicker then watching the news or weather channel. Computers allow us to search the web and arm ourselves with knowledge. The marvelous things about computers is the speed of them. You could be waiting for a stock update on the news channel and wait maybe ten or even twenty minutes. However if you go on your computer and use the internet it makes you life much easier and the faster you can look up somes part of knowledge the faster you might be able to make dinner or even enjoy a nice walk outside and breathe in the nice icy crisp cold air. Also radios and television stations might be a little of with their accuaracy. Maybe a minute later there is a suicide bombing that you might like to know about or the stock might go up one-hundred points or go down one-hundred points. This is all valuable information that people would want to be one-hundred percent accurate. Secondly you can stay in touch with your family even if they live in a different country or in a different state. With webcams that are attachable to some computers or some that are embedded within the computers you can talk to them. My grandma was in the hospital once and I wasn't allowed to see her since I was to young. Since the technology of webcams were invented I was able to see her on the screen instead of seeing her in real life but at least i was able to see if she was doing okay. Webcams are a could way also in discussions. Such as you and your friend are joking and she says something you think is rude but you can't tell that she being sarcastic you might get into a fight. If you have a webcam you can talk to eachother on the computer and see if she is being sarcastic or not. Technology @MONTH1 be one of the greatest inventions that has come forth and @MONTH1 be the best one that will ever be made. That last important thing that you need to know about computers is that they teach you hand-eye cordination. Hand-eye cordination is an important skill that is acquired. This is an important skill because it allows you to suceed in life such as having to write. This skill is also important if you have a job that invloves computers because you need to know how to type and move you fingers fast if you want to suceed in this well payed job. This skill also helps provide a wide range of other suceesful jobs in the world. Computers in the long run are magnificent machines that makes life a lot easier and fun in acquiring knowledge. If you don't have a good hand-eye cordnation you should get a computer because it will help a lot. however if you get a computer you must update it reguarly so you computer will not become slow and start crashing on you. In conclusion computers are the best thing that has been introduced to man kind so far in this world. It allows you to do do many things such as news and how the world is doing globally and how the economy is doing globally. Also it allows you to stay in touch with your family no matter how far you live or what country that you life in. Lastly computers teach you the important skill of hand-eye cordnation. Everyone in the world should be able to have a computer so that they could obtain the knowledge that they would nedd to suceed in life. 5 5 10 +1623 1 "Dear @CAPS1 @CAPS2, @CAPS3 people these days rely too much on technology. Everywhere you go you usually see somebody on a phone, texting, on a computer or plugged into an ipod. These people are not necisarily bad, but they are under the control of technology. Computers for example, are in the eyes of most people, fast, easy and fun, but they also pose as a problem. Even though it seems like everybody has a computer, not everybody does. Also people become way to dependent on such matchines that they can become addicted to them. Computers @MONTH1 also seem like they work @PERCENT1 of the time, but they can also be very unrelyable. Just off the top of your head, how @CAPS3 people do you know that use @CAPS4 or @CAPS5? A lot I'm sure. Now multiply that number by itself for all the people they know and multiply it again and so forth. That number shows that, @CAPS6, over @NUM1 million people use these. Now what are the chances that if you sent a friend a message one of these programs (with the @NUM1 million + people on is) that the server will be @PERCENT1 relaible and your pal recieves the information he needs? My point is that, what if somthing important came up that required your friends help, and you could not reach him because of a fault in the system? What would happen You could be at a hospital for a ride home for an hour longer than it should have taken. Another problem is what if you needed a computer, and you specially needed him/her? If they did have one then You have you did it in @NUM3 minutes but how else could you contact them? You could try to call, but what if they are outside and are playing with his/her dog? Also these days if you are really grateful for somthing you go on google and type in virtual thank you cards. If the person gets it then they will be happy, but probly much more so if in the mail they got a handmade real thank you card. My final reason that computers hurt us more than they help is addiction. Like I said in my first paragraph, everywhere you go you see somebody wired into an electronic device. People no longer go outside and play cowboys and @CAPS7 because now all they have to do is hit paly. I will admit I too use my computer quite a bit but at least I budget my time so I can also go outside and play a while. Obeisity also branches from overuse of electronics along with @CAPS3 other products." 4 5 9 +1624 1 "Dear @CAPS1 of the @ORGANIZATION2, @CAPS2 you know that computer have been around since the @DATE1. Ever since then, many people have had a better life. Computers really help the elderly out a lot. When they need to pay a bill, they could just log in, pay it and move on. Another thing is if they need to write a letter, but their handwriting isn't that elegable anymore, they could type it, print it, and be done. This way the person receiving the letter will be able to read the letter. Computers are a fad that will never die out. Doctor @PERSON2 of the @ORGANIZATION1 in @PERSON1 said, ""The children I work with use computers everyday to build their hand to eye skills, ever since they have increased that skill @PERCENT1."" The corperate from @ORGANIZATION3 said that @NUM1 out of @NUM2 people agree that everyone should have a computer. Computer help you out with projects and I think everyone should have one too. Are you ever sitting home with nothing to do? Well, why don't you go out and buy a computer to play with? Computers can help you do all types of things. If you like to play video games. then you'll love one of these machines. They have all types of game systems out there just for computers. They also have web sites you could go on just to play them. I'm sure most of you like to play games, so why not try it. A basic computer isn't that much if your worried about the money. So go out and buy one. There is a lot of people in college now and mostly all of them have computers. They make research easier and faster to find. Which would you rather do get ready, jump in the car, drive to the library, search for a book, stand in line, and check it out, or, get on the computer, search what your looking for and be done? You make that decision. When college students get stressed which happens all the time, they could turn on music from the computer to calm them down. Computers have changed the world in a good way, and they continue too. You should buy a computer today." 4 4 8 +1625 1 "I belive that computer technology is a positive effect on people. I think this because it can teach you how to type faster, learn about far away places, and talk to people online. Here are some reasons why. My first reason is because the computer can teach you how to type faster. For example, for the use of your fast writting you can get a good job/career and can have a future in your life. Another example, is because you can type e-mails faster and don't need to type slow. Last example, is that you can improve you typeing skills and become a better typer. My second reason is because you can learn about far away places. For example, you can learn about other countries and how it's different from our country and how their alike. Another example, is you can use it for projects, get all your information and be prepare for a great project. Last example, is you can always learn something everyday from your computer, like news, weather etc. My third reason is because the computer allows you to communicate with other people. For example, you can talk to your friends and family to check in on them and see how their doing. Another example, is when your bored you can always talk to someone on the computer and have fun with it. Last example, is you can talk to your friends and plan when to hang out and go outside and get fresh air, That way you don't have to be in your house all day. That's why I think that computer technology is a good idea because it can teach you how to type faster, learn about far away places, and allows you to talk to people online. I hope you agree with me also, and should think that computer technology is a good idea for everyday for lots of reasons." 4 4 8 +1626 1 "Dear @CAPS1, @CAPS2 have come very far with technology. Computers and other gadgets have helped us go farther. But the computer is one gadget that does not benefit society. My reasons for this are when you are on a computer you could be cyber bullied. My next reason is that when you stay on too long you miss out on stuff like being with family. The last reason why computers do not benefit society is when you type on a computer the spell check on @CAPS3 checks spelling and puncuation and grammar so you don't learn from your mistakes. These reasons support me in saying computers haven't really benefited society. Firstly, my first reason for saying that computers have not benefited society is you can get cyberbullied. For instance somebody goes home and checks their email. They get threatening emails. They are scared what do they do. Cyber bulling, being induced by computers, is the easiest way to bully somebody. You can make them feel bad without doing anything besides typing a message. All you really have to do is find out somebodys email. Also cyber bulling could be anybody. Some one you knkow or someone you don't. computers haven't helped in society by inducing more crimes. Next my reason is if you stay on too long you miss out on life. Between checking email accounts and updating @CAPS4 the average person spends @PERCENT1 of their day on the computer. People who spend that much time on the computer miss things. My sister always come, out asking questions in the middle of the conversation because she's following and updating on @CAPS4 while @CAPS2 are having a conversation. People miss things while on the computer. Lastly, when you are typeing an essay or something you don't learn anything about grammar or spelling because spellcheck checks it for you. Most teenagers in @LOCATION1 when texting don't use proper grammar or spelling. So they can write an essay in text language and when typing it over students choose what they mean from spellcheck and move on. This is unacceptable because students must learn proper grammar and spelling. This is reducing students thinking levels just above read and click the awnser. If computers did everything for us @CAPS2 would be mindless slugs quick. In conclusion I think computers have not benefited society. Computers inducieng cyberbulling. When you type spellcheck corrects your mistakes so you don't learn and people miss stuff when on the computer. Computers have not helped society for all of these reasons and more. Computers should be used less." 4 4 8 +1627 1 "Dear local Newspaper, I think using a computer has become bad influence on modern society. When people talk to each other via text message or e-mail there is no emotional sense. You are blind a way because you can't see who's on the other side of the screen, @CAPS1 you know is the username of that person. Its practically the same as using a disguise. Not only is the computer dad for your healthy. Its become a threat to its user. Would you really want to use something that bad toward your health and your privacy? Statistics show that @PERCENT1 of teenangers have access to/and use the internet more than three times a week. Statistics also so that more than half of teenagers in the @CAPS2.S.A spend more than @NUM1 hours on a computers, some even @NUM2 hours! This has become the addiction of the world. My friend barely used a computer and always played outside. When his sister showed him @CAPS3, @CAPS4, myspace, @CAPS5, etc. He would stay on for hours and after a month, it didn't get better, day after day he began to come outside less and less, and I began to hate him fo that. Statistics show that people who are using computers excessively tend to have drop in their grades. People are mixed in to these machines they become anti-social, don't do homework, potentially fail the unit and reappeat the grade. Computers are the same as watching tv, sure! they teach hand to eye coordination but at the same time their brains are being turned into swiss cheese. I believe computers are the best idea, since pouring gasoline on pancakes. " 4 4 8 +1628 1 "Dear local newspaper, I think that computers are great for our society. Computers have a positive effect on people. They teach to people hand-eye cordination, and about places all over the world. Computers are also great for talking online to family and friends. Computers teach people hand-eye cordination. They help people to get familiar with looking at a screen and typing letters to form words. Computers are excellent for students that play the piano, like me. It helps you to be able to look at the music and have your fingers know where to play. The computers helps with the piano because they both involve you looking at a screen, or music. While your fingers know what to do. So I think computers helps children and teens to have better hand-eye cordination. Computers are also very helpful to everyone because it is great for researching facts, or even just looking for somewhere to go on vacation. Say you just got home from school, and your teacher had assigned you to write a two page paper on the @CAPS1 @CAPS2. You would not be able to do it by memory, you would need facts. So you should go to the library, but no one can take you. Well if you have a computer, it is a great way to research a topic for school. You don't have to leave your home, you can even stay in your pajamas. Computers give you the information that you need. Or if your planning a vacation in @LOCATION1, and don't know where to stay, then the internet will get you right there and give you great opptions. Another thing computers are great for is talking. How so you say, well you can got to A.I.M. online. You can have conversations with all your friends and family. This year my brother, and my closest cousin to me, went to college. Now I only see them about twice a year, it is so quiet without them, especially at my house. If I want to ever talk with my brother, it is great like he is in my home again. He sends me pictures of his college, friends, and any fun places that he goes. So without computers I would practically never see my brother, or talk to him. Local newspaper please consider my opinion, I feel that computers benefit are society. They leave a positive effect on people in the community and world. Computers teach teens, and children excellent hand-eye cordination, and helps people like me to play the piano more smoothly and exact. Computers are also great for looking up facts for school when the library is not available. The internet also keeps me closer to my brother, whose in college, because we can chat and send pictures to each other. So please take my opinion into consideration. Thank you." 5 5 10 +1629 1 "Dear Newspaper, I am writing this better to explain to you how more people in our society would benefit from using computer you can do work in less time it would take to do it manualy. You can interact and make more friends by talking or web chating. Not to forget that it is more entertaning. That is what computers were made for. To help us with tasks or for our personal use. How do computers though help us with work? Lets say that you are having a buisness meeting and you have to write a five page report with pictures and a graphs. It would take you twice the time to do that by hand then with a computer. With a computer, you can type you work which makes it much neater and looks more proffesional, You can copy and paste your images that you can @CAPS1 on the internet. With graph making software, you can easily plug in the data you have collected and the computer will do the rest. If you had to do this by hand, you would have to write extremly neat, @CAPS1 pictures in a newspaper or mabe, even draw them. Then you would have to make the graph by hand making sure not to mess up. It makes it twice as hard, to do a simple task with a computer. What if you want to talk to a friend? With a computer you can easily talk to a friend as to having to write a letter or talk on the phone with a computer you can either chat with a person with writing or even being able to see them on you computer screen. Instead of just hearing voice or waiting two or three days to talk to them. If you have a laptop you can talk to them were every they go or you go. Being able to see the person at your convinience to talk without having to leave you house is a very good thing to have. The benifit are major and it doesn't cost anything to chat. If you have a friend or relative that lives very far away, you can easily go at talk and have a video conference. What about entertainment? The computer is a very valuable too! but we can fun, we can play games or watch videos at as convinience. They don't cost a lot to download at all, they can be played with friends on a web chat or by yourself. Videos you can watch all the time with no ads to interupt you can pause the video too. This is more efficie, they care I very convinient for the average person. Playing games were ever you go is good and again don't art to play or. In conclusion I think that people would be more from using computers this is because it is easier to work with. We can interact with each other. Use it for entertainment. Technology was made to make things easier do we should take advantage of it." 6 4 10 +1630 1 "Has a computer helped you ever answerd hard question or type up an essay for school for work? I know a computer has helped me far years so why would I teminate it or want it gone. Heres the controversy, many experts believe computers don't benefit society but people, such as myself, believe the exact oppositte. Their are many benefits to oconing a computer such as they're always a source of information, allow you to talk online with others, and they can help people with their school and job loans. No matter what the problem, don't you believe a computer is always a source of information that could help? A computer has endless information on any topic unlike books. This is because everyone, from the most to the least intelligent people, have their opinions, ideas, and hard facts in a computer on the web. I once watched a movie of a man who despised computers and new technology. Thus, for most of his life he wondered the world with no hint or clue as where to @CAPS4 in search of a rare artifact called the @CAPS1 diamon. He never found the diamond but his son who searched it on the internet found out the root geo from @CAPS1 meant underground in ancient @CAPS2 culture. due to a computer he found the diamond underground, beneath the ancient @CAPS2 temples. Therefore, I believe if people would embrace technology such as computers they would find many things that they never thought of. also, computers give you the ability to chat online with family and friends. Many people use computers to stay in touch when they have no available phones, with a computer you could chat with your friend down the street or your family member on vacation in another country. No matter where you are a compute can always be on available form of communication. for example, the only way many of our soldiers fighting wars stay in touch with their loved ones back home is by talking to them online with a computer. One thing I know is no matter how old to probably about @NUM1, if you have a job or go to school you have used a computer to help you with @CAPS4. Whether it was getting an answer to a homework question or researching a person for a project, we all use computers. Computers even have the ability to help you make brochures or pamphlets. This can greatly help you advertise if that is something you do at work. Also, many people don't have the neatest handwriting so they type their essay or letter to their boss, you can even choose what type of handwriting it types. No matter the case, with work a computer always helps. Yes, I do believe computers benefit the society. Althourgh, some experts do disagree with me and believe they can become an addition. Still take my suggestions seriously and continue to use your computer. Remember, it is always a source of info., you can chat online, and it helps with work." 5 5 10 +1631 1 "I believe that computers are a great invention. It lets people interact with people from very far off places. Has lots of fun games you can play. And it is also a great way to learn information on topics and places very far off. Being able to talk to relatives from far away places is very important. @PERCENT1 of experts say that having a close knit family will give kids a greater chance of going to college. I understand why some people think ""well why doesn't the "" I grew up in a big family and just the whole day the phone was getting used. The computer has a lot of fun games that you can play. I see why you might think that the computer is why kids are over-weight But isn't the hour on the computer. Its eating habbits. Studies show that computers are use in the winter two time as much then. Going on the internet to learn new information is a great way to useing your souce. Just imagine this you straight A student comes home for the weekend about to do the biggest project lige forgets to bring home the most important book. She is flipping out looking all over the place and hyperventalating. But if you had a computer your daughter would be able to get the proect done and go to the college of her dreams. But since you didn't buy a computer she is going to fail her class not accepted to harvard and settle for the local community college where maybe one day she will be able to transfer. So I've gave you reasons to go out and but a computer you just lost to go do it. Do you want your kids to interact with aunt sally who lives @NUM1 miles away. Also it is a great way to play games. And lastly you want your daughter to go to yale or do you want her to fail. I have give yous you the facts the rest is up to you." 4 4 8 +1632 1 "Dear @CAPS1 @CAPS2 @CAPS3, I do believe that computers can be positive. If you think about it, they can actually help you learn with all those different programs they have. Say you need tutoring or advice, you can basically find all that on a computer even if you have a little kid with, I'm absolutly sure that they have websites and programs for them, and trust me they're fun and educational! You know how people are complaining that computers are taking away time from exercising, and inteacting with family and friends? Well, what if you have family living somewheres else. You can chat with them! And also do execise while on the computer. I'm sure if you keep reading you'll know why I think they're positive. Having trouble in school? Are they blaming it on computers? Well we can change that! If we're able to prove to people that computers can help us learn and are educationaly then people might actually think that computers aren't bad with all of this technology that were coming up with these days arent that bad. I'm pretty sure that they have some sort of tutoring program, they even have college online! Now theres something to look into. Do you have a kid, a younger friend, or even a younger brother and sister? Are they always looking for games to play? Well I'm @PERCENT1 sure that they have fun learning games and websites on a computer! So, while the're having fun, you can just think of how much they're learning now! It's a real fun way of learning! You can just imagine on what they're learning and how well they're doing on school. Do you have family who live far away that you don't see much? Well if you all have a computer than you can posibily stay in touch! You guys can chat each other, check up on each other, and see how everyone is doing. It's a perfect way to stay in touch. Want to know what would also be a good way to connect, a webcam! You don't have to have one, it's just a suggestion. So that way not only do you get to talk to them, but you can see them too. Isn't that cool? I don't know about you but I think so. Well now that you've heart what I've had to say about how I think computers are positive. I hope you think the same too. If you really think about it, they aren't bad at all. They're actually very helpful. Thank you," 4 4 8 +1633 1 "Dear @CAPS1, I think that computers affect our country in a positive way. Three reasons why I think so are comunication, @CAPS2, entertainment and, @CAPS3. One of my favorite things to do is talk and when on of my best friends moved away and I lost his phone number I thought we had no way of doing it. One day he requested me on facebook and from there on we have been comunicating on web sites like facebook, myspace and, skype. My second reason why computer's benifit our society is @CAPS2. At my dad's house I do not have a television so I rely on the internet to keep me informed on what is going on in the world. A website called @CAPS4.com was the frist to anounce @PERSON1's death befor anyone even suspected it. Stories like that often break rest on the internet. The third reason why computers benefit our society is entertainment. You can watch videos, play games, listen to music, comunicate with friends. The last reason why computers benefit our society is @CAPS3. Many @CAPS3 in our comunity require computer skills such as a acountant, a manager, software designner, and a computer programer. The computer make @CAPS3 and more eficient by correcting mistakes, providing a visual and typeing. These are the reasons why computers affect our community in a positive way." 4 4 8 +1634 1 "Dear Local Newspaper @CAPS1, @CAPS2 is great concern about computers and wether or not people spend to much time sitting infront of the screen or not. I believe that people should be more aware of the time they are in the computers. Instead of ruining your eyes you should be exercising, enjoying, and being with family and friends. Exercising is a major part of every persons life and if you don't get enough of it you could become obeise. Obeisity @MONTH1 cause people to not like you or think that you are a slob. Although you might say that you don't care what others think, but in the long run it might be a mistake if you think this way. exercise will most likely rid you of almost any type of discrimination because you will look no different or even better than the average person. If you ever get the chance get a telescope and set it up in a spot where you can see the stars at night. Instead of keeping your eyes glued to the computer on a nice, sunny joy, go for a walk in the woods. As you can see, nature is much more beautiful than hundreds of tiny tots of colors forming an image of nature. If you find an image of a beautiful plant, why not go and see or feel the plant 'in person? Many programs are now available on computers that let you see people, but wouldn't you rather talk to him or her in real life? I sure would and I think most other people would as well. @PERCENT1 of the population of @LOCATION1 said that they would much rather talk to friends or relatives in person than on a computer screen. I feel that however possible, you should always talk to people in person and not through cameras and wires. I hope I have made myself clear that exercising, nature, and people in real life are all much better options than being in front of a computer for the rest of your life." 4 4 8 +1635 1 "Computers are today a common havar hold item and some people think its bad for socity when in reality its our most useful tool nowadays. It supply's an easy access to information along with preparing skills for future generations. And giving from lifes sometimes to cruel days through gamming. Before computers world spend hours in books and find what there looking for. The computer solves this. This non as simple as typing what ou need to know and hiting the enter key. This improves grades for children and life for adult solving a into the without leving your home and allowing news like yourself to spread into at the moment it's known. It also creates an interactive place for anyone in the world with thing like and or question and answers this allows us not only yo ask opinions and compare responses but to get statistics that @MONTH1 help us make life altering decions. Not only it supply info it also prepare our for the world. With things like children around the world and I social and decion making skills. It also them like web and design as well as simplier things like management and tougher things like business. Along with all that though it gives love an copy. Online video gaming is today a huge maker in which allows people not only for new as they do anything from dance, build, fight, smithe teilor, and so. And this infact @NUM1 of games are ages @NUM2. It also improves at the same time hand eye cordination. So when you have a ruff day tents to brings people happyness. So computers all neccity and put your mind to hard work but @MONTH1 you your dreams with a little well limit!!" 5 5 10 +1636 1 "It has come to my attention that there is an argument about whetehe or not computers have a positive effect on people. I think that computers do have a positive effect on people because with computers people can get needed information that could be used to help them, it lets poeple talk to friends and family around the world and also computers tecah people new things. Therefore, computers have a positive efefct on people. students whether it be at college oer elementary schoools almost always go to a computer when they have to fo projects for thier classe without computers students wouldn't be able to get the information that they need and could cayse them to get a bad grade on the project which could result in grades geting worse and worse. Adults use computers often for work and planning, so if there weren't any computers then it would mean thousands of people would lose their jobs and could forget sceduled plans that could be important and could result in causing families to lose money, not enough money to pay bills and could result in losing their homes causing them to live on the streets. Evry person has at least two or more friends or relatives that live in a different place in the wrold that is not easy to stay in contact with so it could result in having to use long distance calling which could waste alot of money. However, with computers people can talk to freinds and realtives from around the world without having to psend any extra money on phone calls to their friends and fmaily members from around the world. Also if something happens to a family member of somewhere around where a realtive lives we could use the internet to check in with them to see if everything is ok. Many parents are using computers to help teach their kids at a nearly age so they are ready for when they go to school for the first time. Also computers are used at schools mainly to teach the students about things that they need to know for the future, as a result computers become very usefull to people when they are trying to learn how to do something wheather its for school. college or a job computers are of tun used daily for important things that we need to learn for our lives in the future sow e won't need any extra help tyring to learn how to do something. Also we would be bale to help people when they neede help if we already knew what to do. As you cna see computers do have a positive effecton peopel because people can use computers to help them gain the information they need for school or work, it lets you check in with friends and family from aorund the world and finally computers help teach us very important life lessons. In conclusion, computers have a positive effect on people and it could save a person from losing things that are.important to themselves or others. " 5 5 10 +1637 1 "To @CAPS1 @CAPS2 @ORGANIZATION1, Computers are a benefit to our society. These computers are an advantage to our learning and knowledge. By using computers students can get there work done quicker and more efisent. While typing your report on the computer you might spell a word wrong well every computers has spell check. Also you @ORGANIZATION1 need to look up a word because you don't know the deffinition all you have to do si go to @LOCATION1 and type in the word and automatically you have the deffinition. You @ORGANIZATION1 have been given a book report so you can go online and copy and paste @CAPS2 do @CAPS2 no @CAPS2 want let you but @CAPS2 you had a piece of paper and your pen you could write @CAPS2 down. A computer has made the life of a school student so much easier. You @ORGANIZATION1 need a job but cant stand, walk, talk well you could get a job working on a computer. Computers allowed more jobs to be made and replaced. Without a computer how would teachers get mail sent to them without wasting paper. Sure a computer uses electrisity but paper wastes trees. Anyway you think about @CAPS2 the computer is a good thing to invest in. Going to college not everyone has enough time in a day to drive to school, well with your computer you can go to school right online. So if you don't have money to by a back pack you don't need one your mates stay right where you left them. So a computer is a good invention. @CAPS2 has made life quicker, eco friendly and even has saved trees. On the brightside @CAPS2 has even produced many jobs. Last minute things can even be online. Each computer bought has given someone else a new expense." 4 4 8 +1638 1 "I beleive that computers are helpful, and useful to us. They provide us with a wealth of entertainment, enable us to communicate with one another, and even help us learn. Today, if it's raining outside, or its too cold to do anything, you can go on to the computer or the computer, you can watch movies, play games, and webchat. The computer is a grat machine, and health expert @PERSON1 sais ""computer usage is fine so long as it's limited to about an hour or hour and a half a day"". Some people complain that people arent getting enough exercise because of computers. But its not really the computers fault that they arent excercicing. In todays modern world, you can call some one, text someone, or page them with computers though, you can do even more, with a webcam, you can video chat with people, and send each other videos. You can also connect with your friends on facebook or myspace. Sociologist @PERSON2 sais that more and more people are connecting to @CAPS1 websites, and talking with their friends. ""@CAPS1 websites are great"" @CAPS2 also said ""@CAPS1 enable you to talk with your friends when their far away, or you just can't see them. However, nothing beats real connect."" Computers also help us learn. They can answer almost any question you have, and have name a lot. Today, most people don't . Some people still might think that computers are bad for you, and they cause lack of excercise, but I beleive people have the to make friends. They choose to over use the computer, and too much of any thing is a bad thing. Computers today are an invaluble of life, and are irreplaceable." 4 4 8 +1639 1 "Dear @CAPS1, @CAPS2 you know, more and more people are starting to use computers. In my opinion, I think the computer does benefit society in many ways. One positive effect it has on people is that they can communicate. Through the computer, people are able to send messages to each other. If someone doesn't have a phone or car, they can simply go online, write a message, and click the send button. This is an easy way to communicate with someone who lives half way around the world @CAPS2 well. If you have family members who live far away, you can also send them pictures of yourself, friends/family, and places you've been to. They can receive them and also send pictures back. Another positive effect computers have on people is that they can learn new things. The internet allows you search different topics and basically has everything and anything you could ever think of. If you go on @ORGANIZATION1 and type in a word like 'dog,' you'll see a bunch of websites that will take you to other websites that are just about dogs. You can find a list naming types of dogs, how old a dog can live up to, where most dogs are found, how to care for them well, etc. The internet lets you explore new things and help find ideas. You name it; they got it. The computer also cames in handy when you have nothing to do. If you're bored and can't play outside because the weather is bad or you broke your leg, you can play computer games, listen to music online, or write your own story on a word document. Playing computer games can teach you techniques to help play a game better, @CAPS2 well @CAPS2 keep you busy. If you want to listen to music to keep yourself entertained, you can go on @CAPS3 or other sites and find any song you want to hear. It's better than listening to the radio because sometimes you don't like the song that's giving. If you're also in the mood to write a story, you can open a word document or if you just want to type whats on your mind. @CAPS2 you can see, I think the computer is a facinating tool to use. You can communicate, learn new things, and keep yourself entertained if you're not able to do something active. Just remember, whenever you can, go out and play or hang out with friends and family." 5 5 10 +1640 1 "Dear @CAPS1 @CAPS2, @CAPS3 people owner either computers or laptops. They both do the same things. These electronics are famminal. They can help you do a lot of things that others @MONTH1 not. These @MONTH1 help you find long lost sibling or whom ever you @MONTH1 want to find. Computers @MONTH1 also get you hurt or @CAPS4 if you buy on be careful. I went to find my brother I left when I do it my mother's house"" cried the woman. That is a job for a computer. @CAPS3 websites accessable threw a computer @MONTH1 help you do this, such as facebook, myspace and This can effect yours and @CAPS3 mores. This can turn your life around inna heartbeat. It can make what any seam a hard time into a good just by finding your loved one. Computers with @CAPS3 risk. You can try to pay your bills online and send your money to the wrong websites. That can get you identity stolen. You can also put all your information online and you @MONTH1 not think a lot of when they really do. You can put your fone number, address and manymore and people @MONTH1 contact you act like someone else and @MONTH1 you or even kill you. @CAPS3 people thinks it very but it isn't, @CAPS4 watch out what yo do. The computer a big problem on why the is @CAPS4 @CAPS3 people don't like to go out to buy stuff anymore, they rather just go on the computer and shop. That is one reason why you begun to be way to You @MONTH1 go @MONTH1 just stay home and just play games online. @CAPS4 @CAPS3 more american on you do both just be lazy. At the everyhting it's your computers a useful @CAPS4 do pros not the" 4 4 8 +1641 1 "People the computer is something good and cool. Why is cool? is cool because the computer help you in everything. I have reasons. The first reasons is when in your school you have homework, work, project or something like that the computer help you a lot. Because in the computer you can sign in internet and you go to google or other web side. The second reason is the computer help you in your house for example: You have the big problem with your car or something like that. You can go in the computer in @LOCATION1 and the you see the pieces of your car. The thrid reason for the computer is so cool is because in this time you can make the everything thing. We can go the web and facilitate our life. Now you can realize the work, homework, project, ideas, writting book, chat, information, print picture, and ect... And that you are architect you can make your proper work or house you see the computer is so cool. But some people use the computer for bad thing for example: for pornography or something bad this is not cool and is not appropiate for people. The computer is something fabolous and super genius. My opinion is that the computer help a lot is something like need in our life. No for live but for our life or something @CAPS1. Something you can see your family for webcam. This is fabolous but don't used the webcam for something bad you can learn thing that you don't know. I think that for this reason you used the computer for good thing. Appraise the computer. Please." 4 4 8 +1642 1 "Dear local newspaper, Technology is an important part of everyday living even some people's lifestyle without technology, more specifically, computers, mankind would be lost. We wouldn't be able to learn about faraway places and people research things with a wider range of information available or for some people, talk to friends and family. Technology i needed in everyone's life they realize this or not. There is an endless amount of things you can do on the computer and as far as advances in technology this is only the beginning. The internet allows people to learn-and more than just what you would get from a book at the library. You can learn about the culture of @LOCATION1, the food they eat in @LOCATION2, or even the way people dress in @LOCATION3. You can find pictures and of faraway places and find out the currency or of a country. The possibilities @CAPS1 computer allow you to do is research. When maybe they through them giving a presentation much easier! Furthermore the computer enables people to comunicate with others. For some, this is their only way of communication. If you have a penpal in @CAPS1 state, or maybe even @CAPS1 country, e-mail is a great way to talk to them it's quick, easy, and enjoyable tool others, however, prefer instant messaging - the message you type pops up almost instantly on the others computer. Then they type a response and it comes back to you! Either method is a great way of communication! So you see, without technology we would not be able to learn everything we'd like to, research for, say on for language arts class. We not even be able to communicate with some others. And this is only the beginning of what our lives would like without the computer." 4 4 8 +1643 1 "To the @CAPS1 @CAPS2 @CAPS3, This day in age, computer technology rules the world. It's where we get our news, music, shopping and even enterteinment. Sounds great right? But there are some big downsides to this box of information. Such as, this gadget is taking over peoples lives and keeping them from excersizing. Now a days, people are even loosing human interaction from these marvelous toys. And finally, computers are very expensive electronics, they have much up keep which costs you money ultimately making you depressed. As you can see, although there are some great pros to computers, there are also pretty big downfalls that you havn't thought of yet. As I previously stated, computers are taking away from people excersicing. We're all becoming quite lazy. People rather stay at their computer screens playing grand theft auto or facebook stalking than going outside to play a game of soccer with your friends at the empty field down the street. @PERCENT1 of the @LOCATION1 goes without physical domain for at least a @DATE1 and a half. @PERCENT2 of those people rather just tay at home on their computers. This is a disgrace! We cannot let this continue. We must change the way we live and get rid of this unhealthy appliance we call a computer. Of all my reason that computers are bed, this is by far the most disturbing. People are having less, and less human interactions as computers become more popular. Now you, can d everything from your computer. Soon people will be marrying them. Oh wait, that's already happened. Just yesterday, I read in the newest issue of @CAPS4 @CAPS5 that a man married a character in his computer game. There was a priest present and everything. They just recently got back from their honeymoon. This is sad! Look at what our world has become. People rather marry a computer character than actually communicate with real people. We must act quick, I don't know what will happen next. Finally, computer cost a lot of money. You pay @MONEY1 for the computer outright, but then you have all the up keep and there is lots of up keep. Computers are very troublesome. You just keep pouring money into it, which is just depressing. It will just break again soon or freeze and cause you to loose a report you've worked on all night. For example, @DATE1 my dad had to pay @MONEY2 in order to get my @DATE1 computer unbugged. He was so reluctant to even pay it and afterwards he was annoyed all week for even-paying it. It got even worse when it froze up a week later. He was freaking out. Thats all you get from computers, more and more frustration. I just don't think it's worth it." 6 5 11 +1644 1 "Dear local newspaper, I strongly believe computers can be bad for society. My reasons being people are spending to much time on their computers, less time exercising, and lose interacting with family and friends. My first reason why i think computers are bad for our society is people are spending to much time on them. I know when i get home from school the computer is all i can think about until i go on. It's like an addiction. People spend all their time on a social net work other then going out and meeting new people. My second reason is people spend less time exercising. Ive been over a friends house before, and all we did was play computer games instead of enjoying nature outside. Alot of @CAPS1 don't make healthy food choices, so why not go out and exercise? It's because of the computer. Ive seen my little brother spend his whole saterday eating in front of the computer and playing games. It's just unhealthy. My last and final reason is it takes time away from family and friends ive spent my whole day after school in my room on the computer. It's like when your on the computer nothing else matters because you think ""hey why not just talk to my friends over @CAPS2, or myspce, or facebook! you lose a lot of friendships like this. Also you lose friendship with you family because you badly talk to them while your on the computer. Half the time im to busy talking to someone i don't know then helping my little brother with home work, or helping my mom clean the house. In conclusion these are my three reasons why i think the computer is bad for sivilization. I really hope you take all this into consideration and really think what the computer can do to @CAPS1 I people once again those three resons are one, people are spending to much time on their computer. Two, spend less time exercising. Three, lose interactions with family and friends." 4 4 8 +1645 1 "Dear @ORGANIZATION2, @DATE1, computers are a big part of our society. They are an advance in technology, and they have some positive effects. However, computers have more negative effects on people. They take away and diminish @CAPS3 time, interacting with family, and seeing the world. First, computers have a negative effect on people because they diminish @CAPS3 time. People are so caught up with computers, their desire for @CAPS3 starts to fall. According to a @ORGANIZATION3 survey in @DATE2, for @CAPS1 person spending @NUM1 hours on the computer a week (roughly @NUM2 hours each day) had an increase in cholesterol and slowly deterioating muscles. ""Computers distract people from their needs"" says @PERSON1 of @ORGANIZATION1. ""@CAPS1 person needs about one to two hours of physical activity each day, and only @NUM2 out of @NUM4 people get this amount."" The leading cause for this low number? ""technology,"" she says, ""@CAPS2 computers, which take away all of the motivation and time people need to @CAPS3."" @CAPS3 is vital, and computers are taking this away from society. People shouldn't have bad @ORGANIZATION1 because of this negative effect: computers. Second, computers have a negative effect on people because they deteriorate interaction with family. @NUM5 out of @NUM4 people say that computers take away from their family time, reports Family @CAPS4 @ORGANIZATION3. This is not of all good, especially since @CAPS1 person needs at least @NUM7 hours of interacting with family for an assured healthy mental state and being. Children are directly affected by computer use in family settings. When computer time starts to eat up time, it also cuts of communication, something extremeley important in graving children. with this, family bonds and relationship are ruined as wal. It affects interacting with family, and puts hates in family bonds: computers haved negative effect on people. Lastly, computers have a negative effect on people because it takes away from people using their world. When you're on the computer, it seems like the entire world is in your computer screen. But its not. This is effecting people negatively. @PERCENT1 of people who use computers on the stocking average of about @NUM2 hours a day have notedly become withdrawn and unaware of their world says my physcology.net. The cure? Traveling, or even talking walks to enjoy nature can help. People should be aware of their world in which they live. They have to make important descions for themselves, their children, even their country, and staring at a computer screen wont help at all. It especially will effect children, the next generation, who will have no knowledge or a clear view on the world if people keep up their negative habits: computer usage. In conclusion, computers have negative effects on people. They diminish @CAPS3, so bad @ORGANIZATION1 increases and the need for @CAPS3 increases. It cuts family interaction by destroying family relationships and bonds, not to mention communication. Finally, it takes away from people seeing the world, something actually very important because it affects people's desicion making as well as future generations. People need to realize these bad effects, and majorly decrease their computer usage." 6 5 11 +1646 1 "Computers have alot of impact on peoples life! Computers can be helpful and distracting at the same time. I have a computer, but I can only go on if after I finish my homework. I do alot of things on my computer mostly games and social websites like myspce. Computers can be helpful by helping you with homework or find information. I use my computer for homework alot like for project or if i dont know what the subject is about. I also think the computers are helpful by talking to friends or family. I talk to my family alot and they live all the way in @LOCATION1. I go on myspace like five times a week. Computers can also be a distration by making people lazy and have bad websites. Like myspace can be dangerous. If you tell someone all your important information and you don't know them. That can turn out very bad. Alot of people dont even get off the computer. I have alot of family members that only get up to go on the computer or play video games. They don't get off too. There on like for eight hours. My mom also uses the computer to go on @CAPS1. She talks to alot of her friends that she left in @LOCATION1. She still talks to the people in high school, but she mostly talks to her older sister. She's not on the computer for @NUM1. She's on like for @NUM2 minutes to an hour. I think computers can help in life, but not to be on for like eight hours. You'll see what you will turn if you do that every. My cousins are getting bigger and bigger. I don't mean height. So if you do go on the computer not for almost half the day! " 4 4 8 +1647 1 "Dear newspaper, Technology is a very useful thing But is also a bad thing, it makes people lazy on . A computer is a multi-use tool. Along with this people cango on any website . Anything, as in research or personal reasons. First off, let me point out that computers are useful multi-purpose tools. Computers can also, @CAPS1 people slugish bor lazy. i feel this way because, to many people sit infront of computer instead of getting up & being active. Being acive gad and important for people. A lot of people are not active because they on the computer harms on end. Students sometimes go home and strayht oor tug computer instead of doing homework. Moreover, computers can help you pay bills. Do research, or maybe just for fun play games. There is an ulimeted number of websites & to cp on through to hep you with many of needs. Uploading family pictures from your last vacation? its simple with most computer soft . Finally, computers is kind of like one . They can even become a blank just waiting for a pinest of insparation." 3 3 6 +1648 1 "Dear Local Newspaper, Computers have a positive effect on people. With a computer you could do so many things! They provide plenty of information, communication, and even entertainment. The only reason some find it to be unhealthy or negative is because some people abuse their ""computer-time"". Ever used the popular website ww.google.com? Sites like this, and many more, are great when you need information. Your practically just type in a word and automatically have hundreds or thousands of links, containing information on that word, to choose from! How could so much knowledge be named unhealthy, or have a negative effect on people? Computers have dictionaries, references, translators, encyclopedias, or even history pages that hold massive informatiion. So go ahead and expand your knowledge! If you log onto one of the most famous and well-used social networking websites, such as @CAPS1 or @CAPS2, you will find a new way to communicate with friends and family. Equipped with tools and various settings to keep you safe, you can find long-lost friends or out-of-touch family members and instantly catch up. Again, many people abuse those websites, putting up harmful words, inappropriate things, but that problem can be easily solved if you ""report' them to the website manager or to an adult. You just have to know how to be safe online, if not, the computer can be a very negative object for you. If you know how to use it right, you'll enjoy messages from family or instant messages from friends. There is a wide variety of entertainment on your computer. From video-sharing websites like www.youtube.com. to gaming websites like www.onemorelevel.com. These sites provide games and many videos, or even learning aids. There are sites where you can purchase music ang movies, or even clothes and furniature. Many stores have online websites wher you can purchase items and have them shipped to your front door. How could that possibly be regroup? Also, there are video games that are specially created for the computer, that you can buy, and have installed for isntant entetainment. I mean, who doesn't like to play games or shop, without having to go through the trouble of finding time to go out and do it? I know my aunts do. So you see, computers aren't negative, unless you abuse your ""computer-time"" and waste countless hours for no reason. You need to have a limit. Without it, it's just plain weird spending all day on a computer. So have fun! Learn, communicate, entertain youself." 6 5 11 +1649 1 "Dear @CAPS1, Computers tend to have more negative effects on people, rather than positive. This is true because people @MONTH1 not be getting enough exercise, people @MONTH1 not be enjoying nature to the forest, and lastly, because in this world, people do not spend enough time with family and friends. Computer are good to have around the house, but. To begin, people are spending too much time on computers. They are having more of a negative effect because while on the computer, you are not getting excercise. Think about the a day doing fat because of all the fast food on the computer while eating it. Obeseity now a days is a big concern with the @ORGANIZATION1. Staying on the computer does not help the situation. Any concerned person, technologically challenged would agree the countless ones on the computer are no good for the health of our country. Further more, people are spending too much time on computers and not enough beauty of nature. Many people, adults and have @DATE1 because they are world but there that should be explored and people should be thankful for beautiful that we have still @DATE1. They should be things wait to see it. Although communication is important for everyone, instead of talking on the computer, people should make plans with their family and friends. This idea also relates back to the lack of exercise and naivety of people. If people were to go out and enjoy life to the forest with their friends and family, there wouldn't be numerous hours a day wasted on a computer. People should get off their butts and go. Life is too short to sit around all day. Any intelligent person would realize that computer time isn't as fun as family and friend time. To conclude, computers are and have been very over-used recently. Instead of having problems, lack of sun, and just boring computer talk, people should got up and go. We only live once, and that once should be lived to the fulest!" 4 5 9 +1650 1 "Dear local newspaper, @CAPS1 would a person do with out a computer? Well I think nothing because @CAPS1 if you are like me that have their family far away in another country well whith a computer you can see them throught a camara and talk to them just like if you where there. Computers just don't take your time they help you understand the menning of a family.These are many reasons why I think computers should be very important. My first reason is that they give you information about a place that you might be interested to see or know their culture. There are many people that like to explore and see new places, but they can't because maybe they just don't have time or they might have to much work. There is no exception for someone to not put their oportunities out, just because they don't have the time or a computer. My second reason is work. People like you that work in a office need information about a place that a disaster happened. You might need somenthing to see how it happen and @CAPS1 was the condition it happend. People that work in a important place need a computer because they are saving their work so they don't lose it and get fired. My third and last reason is to be organized. Being organized is very important it helps you keep a job or having everything on hand. Well computers are not just a pass of time it also makes your life easier. Many people say that they don't @CAPS1 to have to much papers; with a computer you can have all those paper in just one page that is saved by you, and only you can see it. As you @MONTH1 see many people that have computers use it in a productive way. It's not just a pass of time like people say it is. It also helps you do many stuff for your own future: not just to play around with some new friends. Well as you @MONTH1 see this are my three main reasons for keeping a computer in your house and using it in a good and productive way. " 4 4 8 +1651 1 "Dear, @ORGANIZATION2. A computer is a very helpful resource. It helps people navagate through life, they can find jobs, do research for school. This world wold be nothing without computers. But on the other hand some people do spend to much time on the computer. But surfing the web for countless hours is their choice. Computers can help students do research from the comfort of their own home. Instead of going to the local library and looking and looking for books, all they have to do is type in thier research topic and wallah tons of different websites are right under their noses. A computer is the world at your finger tips. Also a computer can help unemployed people find a job. Its easy, type in what city you want to work in, and there you go. You can even fill out a job application right then and there. Hey, some people even work from home. Stay at home moms can easily make money while doing daily chores like washing dishes. Also working from home can a lot less tessful. It's less stressful because you dont have to deal with annoying and impatiant co. workers. Did you know that @PERCENT1 of employment is from the workers home, @CAPS1 now you know. Working from home makes another day at the office, another day at home. Computers have helped us come along way since caveman times. Without computers this would will be nothing. We woulde have so many basic things like stoplights, elevators, and even bleders. We also wouldn't have the more sifisticated things like fockets. and cars and planes. Imagine an airport without computers, where would they store all of their information? On paper? Where would a school store all their grades and tardys? On paper? Where would the goverment store their information? On paper? With those three palces we already cut down half of the @ORGANIZATION1. Computer help the environment too. They will also help us to invent more technology so that one day we can live on @CAPS2 or something. I hope this essay changed your mind about computers. Lets recap they help students reasearch, help people find jobs, you can work from home. Helps the environment. Without computers we would live in caves and walk around with leaves for underwear like caveman. The @CAPS3 line is that computers are very helpful." 5 4 9 +1652 1 "Dear local news paper, @CAPS1 computers is a good idea because every developed country uses computers. Also they @CAPS2 learning, fertileze comunication, and are comercialy implortant. Computors also make life easier for many people. Computers @CAPS2 learning by let vast of information being available. I personaly find out about many world events just by bringing up yahoo.com. Computers alow me to learn about new @NUM1, learning about cultures all over the world can be done by computers. The last way computers @CAPS2 learning is by informing us about everyday thing like to get a stain out, how to pronounce a word, how to make a new dish, and much more. Computers are also crucial to communictaion. We use computers to talk to our freinds on facebook. You can also meet new people useing a pc. Everyone uses computer so you can basicly meet enyone. The last reason computers are important is for the commercial stand point computer help alot of small bussness out by letting than be known. Domestic seller and huge companies can compette for the same customer. Furthermore the internet generates alot money for people becausethey can use it as a cyber billboard. In conclusion the computer is usefull because of learning, communication, and comercial. Therefore the computer should be supported and not looked down upon." 4 4 8 +1653 1 "Dear @CAPS1 @CAPS2, Have you ever spent more than an hour at once on the computer? Computers have a negative affect on people! You could be damaging your sight, time should be spent playing outside, and it'll make it harder to talk to people in person. Do your eyes tend to hurt when your finally off the computer? Whether or not you playing games or typing articles your eyes @MONTH1 strain to keep up with a small font on a website. I remember the time when I read an online novel and my whole body was ready to go and play. Except for my eyes. Instead of playing sports games on the computer you should get up and play one outside! When your on a computer, your most-likely indoors. Did you knew a person should be be outside for at least @NUM1 minutes to get there vitamin @CAPS3. Your net sustaining the right amount of vitamins you need daily, at a computer screen. Do you ever find it easier to talk to someone on the computer, than it is in person? Your not the only person that thinks that way. If you get off of the computer and talk to one face to face you can improve your social skills. At first it wont be easy but its worth it in the long run. By now you know that computers aren't really giving off a positive effect. There hurting your vision, limiting your outdoor activity time and making it harder to talk to people in person. So come on put down the mouse down and find something ""hands on"" to do!" 4 4 8 +1654 1 "Computers do not benefit society today. Computers have made technology a necessity, many people don't spend enough time doing other activities, and they do not benefit your health. Do you want a world full @ORGANIZATION1 people who have their eyes glued to a computer screen? Computers are very helpful to all people but they are adicting. Computers were made to get your tasks done quicker and easier. For example you can shop online and google things. We live in a generation where computers have become a necessity instead @ORGANIZATION1 pleasure. According to @PERSON1, a psychologist at the @ORGANIZATION1, more than @PERCENT1 @ORGANIZATION1 people, now-a-days, are inside on their computers. Furthermore, computers are making people lazier. Instead @ORGANIZATION1 going to the store to buy things or walking to your friends house to talk, you would typically use the computer to do so. Therefore, people don't spend enough time doing other things. For example, on a sunny and beautiful day you would think that most kids would be outside having fun, but this isn't thet case anymore. For children who are old enough to use / work a computer, they'@CAPS1 be inside on that nice day. There are many nice things to do on a computer, like chatting with friends, checking your e-mails, and facebook. Even though these things are pleasurable, you should limit your time on the computer. Most @ORGANIZATION1 the time that you spend on the computer could be spent outside or at the movies. Not being on the computer could help small buisnesses too. If you pay money to do an activity, or buy something, watch something it would make a difference in the small buisness's profits. On the other hand, computers don't benefit your health. Mac. magazine says that there are health risks when you use your computer all the time. @PERCENT2 @ORGANIZATION1 people become obese and have vitamind @CAPS1 deficiancy from using their computers so much. When using your computer you could be working out or exercising, and this causes obesity. Also, if you are inside all the time, you wont get the healthy amount @ORGANIZATION1 sunlight that you need, thus you have a vitamin @CAPS1 deficiancy. Another health risk is having bad eyes. If you spend hours a day on a computer your eyes can get permanently damaged. Do you want your child / children to be put at risk for using a computer too much? In conclusion, it is safe to say, that computers do not benefit society today. Many people have an addiction to technology, you could be using your time more wisely, and computers put your health at risk. Although computers do allow us to have an easier time accomplishing tasks, abusing the privlage will have consiquenses on everyone." 5 4 9 +1655 1 "Dear local newspaper, I think computers have a positive effect on people. Some adults and mostly kids are not getting enough exercise, or even spending time with family. Some parents are less active with their kids. Kids are failing to do their homework because they are always on the computer when they get home. Adults and kids are getting less excersize. Sitting down reading or what ever they do on the computer is not excersizeing. They are going to get fat because they eat and sit down and than they get hungery again than eat and sit down. Some people say that your getting finger and arm exsersize by and moveing the mouse, thats not really true. Looking at the computer screen all day can cause masive hand People are also not spending time with family. They are sitting infront or a computer and ignoring everyone and everything around them. Kids could be enjoying other things besides computers. Parents could be outside. Playing catch with their kids or even playing a board game with them. People are not less active. They are not going out and haveing fun jumping around with their friends. Instead they aim them on computers or message them on facebook or even myspace. Kids are failing in school because they fail to do their home work after school. They would rather go on the computer. This is why i think computers have an positive effect on kids and adults." 4 4 8 +1656 1 Dear @CAPS1 In my opinion the computer is the better thing because you can do alot of stuff like play games. My three reason why you should have a computer is you can talk online with your friend or do homework or project and fine out @LOCATION1 things out. Therefore I think if you like doing that then the computer is what you need. My first reason is talking online. People talk online so they can talk to there friend @PERSON1. If you talk oline you can figure out what was homework or whens the meeting or the time the party starts. You can also talk online with your friends or family the moved or lives far away around @LOCATION2. My second reason is doing homework. Sometimes you need the computer to do your homework. You need the computer so you can print picture for your report. You wil also need to type yout report on your vaction. The computer also help you fine the history or @CAPS2 book online so you can do your homework or project. My third reason is finding out @LOCATION1 things. You fine out how old is @CAPS3 @CAPS4 or how tall is @ORGANIZATION1. You can also figure out how to spell a big word. You can fine out many hallway can take you to @LOCATION1 or @CAPS5 beach or other places. Fine out where the wall of @LOCATION3 is. In coulsion if you like to learn @LOCATION1 thing or talk online and do other stuff then you should get a computer. 4 4 8 +1657 1 "Dear @CAPS1 @CAPS2 @CAPS3 I believe it is true many people use computers and that many more will use them in the future. Computers are a standard of the buissnes world and are hevily depended on. People are even needing internet access on cellphones to stay up to date on stocks, shipments and important emails. Some computers are also just for at home use and are used to contact family members and find information that you @MONTH1 need instantly or wouldn't be able to find any were. Computers are still developing and are becoming faster and better day after day and most likely will never be put out of use but then does not mean they will permanently restrict you from othere activeties. It is true some people do spend to much time on computer but not everyone does, some people work from home computer and can not help being on it because it is their job. I implore you to consider the resonse computers are used so much and to understand that computers are used to help not hurt people. Computers are very helpfull in simplying things and are very useful for information. I stand strong with the use of computers and strongly disagree that they negatively affect hte way of human life. Computers do th things people would normaly not do for example someone would not go and look up every thing he or she needs to know in a look because there be only certain facts there looking for and it would also be easy to compare and contrast information on a computer rather than reading several diferent books. So if you truly think about it computers save us a tremendus amount of time with the things we do. Once again I say ""computers better owe life not hurt it.""" 4 4 8 +1658 1 "Dear Local Newspaper, I believe that computers have a negitive affect on people today. I believe this because computers cause people to be less active, most people would want to be at home on their computers then out side doing activities. I also belive computers restrict people who talk through it to show emotion. People should be out with each other when they talk not talking throught a machien. Finally if people were not on the computer as much they would bring down the obesity rate of the contry if everyone just stoped using technology for a while and wen outside. Every day at least once or twice or somtimes even more people use the computer for hours on end. People today have so many options of things to do on the internet: @CAPS1, @CAPS2, ooVoo, and alot more. @NUM1 out of @NUM2 people say they ""need"" to check these everyday but they really dont. What they do ""need"" to do is to stop using computers as much and go out side! Furthermore, people all around the world communicate thought the computer. I talk to my friends all the time thought the computer"" says @PERSON1, ""@CAPS3 the easiest way"". Now it @MONTH1 be the easiest way but @CAPS3 also the most boring, I mean really do you want to talk like a robot or with emotion like a person? Computers dont give you the chance to show emotion, this means people need to go out, hans out, and mabye even call each other to talk. At least you getting up to get the phone. Finally, @CAPS4 is one of the most obese places in the whole world. People are sitting on the computer everyday, eating, and not moving at all and gaining weight. Do you really want to be a known as the ""fat country""? I dont think so. People should restrict computer usage among themselves to a of an hour even less if you can. To restate, I beleve that computers have a negitive affect on todays people aroung the world. Computers cause people to be less active. less emotionn in a conversation, and cause people to be obese. So please help me fight to put more people outside and make people more active, sounds like a pretty good cause huh?" 4 5 9 +1659 1 "Dear @ORGANIZATION1, I am here to talk about my view on computers, about how they help people, and how many people say that kids and adults are spending to much time on them. My first views on this subject is that computers are becoming more and more advanced as time goes on. These past few years, computer company's have been making enormous strides allowing people to do allmost everything. This is both good and bad. A computer is a tool that is a good feature for any home. It is great for people who own a small business, you can easily go online and update somthing yoou want changed in your store, such as designing colorful posters to put on the windows of your store to increase business and to catch peoples eye. You are also able to book flights weeks or even months before you even go to the airfort. This is good for those who are busy and travel a lot. You can go on a website called @ORGANIZATION2 where you can go anywhere vin the world and zoom in on a landmark such as the great @CAPS1 in @LOCATION2, or the @CAPS2 @CAPS3 in @LOCATION1. Computers can also improve your hand eye coordination when you type. Typing is a important skill to master, if you are a good typer you can do things much more efficient then you would on paper. Some can even memorize the key board and not have to even look down. Computers are also great for communication if you have relatives far away in another state or even country you can easily talk to them through @CAPS4. @CAPS4 is a online service that you use to talk to them in person. These are just some of the things you can do with computer. On the other hand many say that people are spending to much time on computers, and getting outside for execise and not spending enough time with family. I do agree this is the case in some ways. I know some friends who average about six hours a day on computers which to me is to much, also parents become to busy with work that they are on computers, when they should be spending time with their kids. Some kids became so addicted to computers that they might become unhealthy and become obease from sitting so much, this is something that should not happen. I hope you have learned a little bit about the good and the bad about computers, and how it is important not to be on the computer to much, but it can be an important feature if used correctly." 5 4 9 +1660 1 "Hello everyone, I have heard how many people are basicly saying that computers are bad. That people are speanding to much time on computers and not enough time outside and being with family. But I'm writing you today to tell you about how great computers really are. First off, computers help technology so much. People can now do things that we could never do before. Things like chating to people across the sea without having to pay for @CAPS1 or even be there. Looking up ways to burn fat fast and diet programs. Uploading photos to share with other family and friends. And much, much more. Computers have helped so many people do so many things! Mostly good things by the way. Secondly, computers have helped us acomplish things that otherwise we couldn't have gotten done. Like go to the moon! Have cellphones! And some diseses were helped cured by using computers. Computers can be a little danguras to some people, who probley don't know how to use them right, but in a few more years all that can be fixed! We are getting more and more advantsed in so many ways, @CAPS1'@CAPS3 kinda crazy! I could go on and on, on so many more things that computers do for us, but there are not enough pages. Lastly, @CAPS1 is more easyer to do reasearch with computers. -And quiker to- @CAPS2 in my school we use our computers for learning purposes, and they help us very much. I've personly, learned a lot from computers. I even use them to get better at math for the @ORGANIZATION1'@CAPS3! We need them! (@CAPS4... I do at least) I'm even starting to learn another language -@CAPS5- with them. @CAPS1'@CAPS3 not to assume that every one who uses them are fat, lazy, and don't spend enough time with family and/or friends. Furthermore, please stop all of this nonsense, I really don't thing that spending to much time on computers is the thing that you should be worrying about right now. That is all I have to say. Bye." 4 4 8 +1661 1 "I remember when computer wernt so popular. Back then I had to write my essays and listen to music on the radio. Now computers are very popular. I believe that computers have positive effect on people @DATE1 because students need them for school, you can use them for other things, and lastly it is easy to acess them. You will know that computers are good for our society! Most students use the computers to type college essays, project etc. Which is good because its much easier. For example im a student that can't draw so printed some pictures of the computer so I can paste them on my post board. So in the other words the computer is useful for students. I know @NUM1 out of @NUM2 colleges expect students to turn in there assignements threw the computers or its a zero. In this society theres no time for zeros because when you are in college your still paying for the class even if your failing or not. So basically its a waste of money. So the computer can save us from failing! People these days use computers for pleasure. Usually messaging people on myspace, facebook, twitter, and other social networks. Which is kind of intersting because you can up with friend that you haven't seen in years. As you can see the internet has its advantaes because you would have nvever thought you will see your friend doing. Another thing about computers that you can fint stuff cheaper than everyday lif say if you want to a trip and you call @ORGANIZATION1 for your ticket. The ticket came up to . But you go on the computer and you on @ORGANIZATION1 website and find your ticket to florida the price will most likely be a couple hundred dollars less. Since we are in a restion we will need those couple hundred dollars for savings. Computers are everywhere You can find one at school, home, a cafe or even on your cell phone. Which is good because you can use them at your own convince. At home if my labtop is free I can go on it and be on it for hours playing games. Also, I remember when my computer broke and I wanted to go on the computer so badly. So I realized that I can go on the computer at the library. I was so happy because it was no cost to me. To sum up computers have a positive effect on people. I seriously don't know what to do if I didn't have one because students need them, you can do other things on it, and lastly its easy to acess one! In this generation everybody is rushing and computers." 5 5 10 +1662 1 "Dear local newspaper, Computers are effecting more and more people in the society instead of helping. A boy named, @PERSON1 started to have many health problems afer he had bought a computer. The computer that he thought uses helping him wasnt any help at all. His health issues started to get worse. He soon started to be out of breath more always have a high blood pressure and he started to become overweight. Since he had this computer he didn't exercise or got out to spend time with his family and friends as much as he was on the internet. Computers aren't helpful, my opinion is that all they is waste time, lose your education and can make you unhealthy. As you @MONTH1 already know computer can do a lot to help you but there are some things that you don't know about computers. According to a health magazine, tests shows that using a computer for two or three hours can make you lose @PERCENT1of your brain cells. That's a lot of brain cells to lose when you are going to need them for your education. There is no way to get those back, either. After walking around the streets to listen to what people think about how computers can effect people, @PERSON2, a policeman at the police department had this to say, ""I love using computer and going on the internet, but most of the time I act on he computer at @TIME1 and find myself getting off at @NUM1 @ORGANIZATION1 can be very unsafe and unhealty. Computers can help you find what your looking for or show thigs that you have never seen before, but it is all a waste of line. Instead of going on the computer to go on facebook, youtube, or myspace you should go outside and interact with your family and friends after interviewing @PERSON3 the best female rapper so far she had this to stay ""Computers are okay but they are sometimes just a waste of time. Instead of being on the internet doing something pointless like playing a game you could be stucking far an upcoming test or doing your homework so that you wouldn't be doing it at the last minute""." 4 4 8 +1663 1 "Dear Newspaper, @CAPS1 you agree that people could use computers all the time and never get off. Well I don't. Think about all the negative things that could happen. Like spending less time with your family, getting addicted, and unhealthy. People who spend all there time on the computer forget that there family is there. For instance, I remember when I was little and I was on the computer and I forgot that i had family members with me, so I missed out on all the fun things like going to the mall or park. Certainly, playing on the computer is fun but woudn't you want to give some attention to your family. Almost @PERCENT1 of people in other countries be very lonely because all they @CAPS1 is play on the computer and forget about other people. You woudn't want to be like these other people right? I never thought playing on computers could be addicted. Lots of people in other countries can't last a day without playing on computers. Some say almost all the people that play on computers all day, day to night have died because they bairly eat, sleep, or use the bathroom. Imagine you life being ended because of addiction on computers. I remember when my friend told me, ""don't be on the computer to long you might die,"" and I thought it was a joke. So think about going on the computer all day and night. Not but not least, some people aren't treating their body properly. For example, some people playing on compters forget about eating, sleeping or walking around. This tends to make people's legs num and make people's stomach hurt alot. Imagine not eating, sleeping and walking around for a day. You woudn't even want to try this. Now is the time to decide, wheither people should be able to play on the computer day to night. Also all the negative things that can happen like spending less time with family members, getting addicted, and being unhealthy. So get right up and decide." 4 5 9 +1664 1 "Dear Local Newspaper, I have been using my computer for a long time now. I didn't have one growing up, but I got one last year. Ther has been people saying tht the computer is good and it helps you stay in contact with friends and family it helps you learn about everything and you can look up the news. I totally agree with this. But some people don't like the computer because they spend more time on it then going outside. Here are ny thoughts on the computer. First of all, teh computer is a great way to look up the news. You can find more news and weather faster then you can on teh television. if you want to find the news, just got to awebsite that you think has news. I am find out what weather is today, what happens throughout the day that @MONTH1 be shocking to everyone, and find out about celebrities. All this at a push of a button, and a click of the mouse. Secondly, the computer is like a tutor. Either your having trouble on homework, or you just want to knoe a simple fact, the computer is for you. Just search up soemthing you want to know on a search engine and you will have your answer. This amy not seen that important, but it is when you are anxious to learn. Lastly, the computer is the famous way of communicating around the globe. Whether it's facebook, myspace, aim, you can tlak to your distant or close family and friends. You might think, ""oh tha's what a phone is for""? Well all of these websites are free. Yeah, I said it free. There is also skype. Skype is where you can actually see the person you are talking to. Yes, the wonderful world of technology. So now you know that a computer can teach you things. it can find you news, and it can help you communicate across the globe. Now your thinking, ""People spend too much time on the computers right""? This is where independnece comes in. Get off or it. it's your decision to stay on it, not the computers. Limit your time to a half hour a day. Go ourside, enjoy nature. AMybe do a little excercise. " 4 4 8 +1665 1 "Dear @CAPS1, Advances in computer technology have positively affected the society we live in today. Computers teach hand-eye coordination, help kids learn inside and outside of school, and connect the world socially. These amazing devices have done nothing to harm the new generation. In fact, they have done quite the opposite. Computers are an excellent way of teaching hand-eye coordination. People who are opposed to using computers believe that all they do is make kids lazy and ignorant. This is not the case. The coordination gained from using the mouse games over to sports like baseball and lacross. Players have to look at an incoming ball, and guide their stick or mitt to catch the ball. As you can see, coordination is essential to sports. It is also needed for simple every day tasks around the house. These could be as plain as just taking out the trash or cooking meals. We overlook the fact they easy jobs like these still require coordination. A misplaced pot could pour boiling water on the floor and cause a huge mess. W are lucky that we live in a world with such a good teacher of hand-ey coordination. Computers are the worlds most knowledgeable teachers. No matter how hard you try if you are using a computer, you will learn something. The internet is a best cache of information. In the current day and age, the environment is a growing concern. Paper no made from trees, so must be cut down. It takes forty years for a tree to grow, and seconds to cut one down. Schools everywhere should use computer and keyboards for work instead of paper and pencil. Since most students are familiar with computers, they enjoy working with them more than writing. The average kid could learn more in an hour with a computer than they would whole day at school. The transiton needs to be made. Computers are also a massive social network. Instant messaging and @CAPS2 are now primary sources of communication. If it hasn't for computers, I wouldn't be able to talk to my friend that moved to @LOCATION2 two years ago. This is just one example of how social networks are helpful. They help people stay connected with old friends, and work. All major corporations use computers to invest, sell products, and store information. Computers are the ultimate way communicate. Obviously, computers are growing exponentially in popularity. The @LOCATION1 should put this to use. Imagine a more eco-friendly country where we don't have to cut down a million acres of @CAPS3 @CAPS4 rainforest every year. The benifits of computers are endless. Three of these are hand-eye coordination, knowledge and communication." 4 5 9 +1666 1 "Dear @LOCATION1 press, I have recently heard about many arguments based on computers ruining society. I strongly disagree with this. I think the computer is a great way to hook up with old friends. The internet is also faster for research than looking in a book and there are many games on the internet. I believe that the internet is a great way to hook up with old friends. Some people have moved away and I haven't been able to talk to then. Now, with the internet I can able to talk again. The same case with my mom. She had friends from high school and college who she ever talked to. Now, with facebook she has re united with them. This also helps because you can email someone interested of sending a letter in the mail, which costs money, unlike email. So the internet can also be a way of saving money. It is also much faster to send someone an email than a letter. The internet is a great way to keep intouch with friends and relatives. I also believe that the use of computer is more efficient than doing to a library and researching a book. If you don't have enough time to go the to a library, you can do some research at your house. What if the library is closed if you do go, then you wasted some time. The internet never closes, it is open @NUM1. What if you go to the library and they are open, but do hot have a book on your subject? This can also be done on the internet because there is any thing you could ever ask for on the internet. If you have an over due library book you can renew the book on the internet. The internet is a great place research on any topic you have or doing what ever you want. Finally, the computer is great for playing about every game, there is that you would feel like playing. Also @CAPS1 of spending about @MONEY1 on an x-box and a game, you @MONTH1 only have to spend about @MONEY2 on a game that goes into your computer. There are also many websites that have games on them. Some websites are for specific games, and same have many games on them. Only a few of the games are interactive with other players and you can talk and make new friends. On the other hand, many games are only for one player. As a result, a computer is a great use to play games. In conclusion, I believe the computer is great need for our society. In the long run it will pay off, especially with the economics problems our country is having now, by helping us save money,. It will also allow connection with old friends, save time, and provide entertainment to all who would like." 5 4 9 +1667 1 "Dear @ORGANIZATION1, Which article title more interesting, ""Local @CAPS1 wins three mile race"" or ""Local @CAPS1 wins three mile race on computer game."" @CAPS3, the less interesting title is what your news will change to if people keep using computers. Some effects computers have on people use cheating an less time with family and friends and lastly, most people aren't learning anything while on the computer, they're just plaing games. As you can see, I agree that computers are a bad idea. I bet some people have never thought of this but computers can lead kids, and maybe even adults, to cheating. There are websites on the internet where the user just types the question in, and they get an answer. There is @CAPS4 another way of cheating, copying others work, essays or articles form a website. Some students could be told to write a biography on a person, and they could just copy an article, switch some words around to make a sound like their own paper, and with no guilt. Another can people computer spend less time with family and friends I was watching television and playing on the computer. The wife was very close to because spent the computer helping @CAPS4, there can was always in the on the computers. Because this show I realized that computers kinds anti-social divorce between parents go up. Do you see all people computers looking up facts about things as going on the computers learning. I know that when I have time to go on the computer, I am not looking up things to learn. Most people these days dont care too much about learning about countries, other than their own, or people, other than people they know. I think it's pretty obvious that noone is going on computers to learn, otherwise they wouldn't have so many users on game websites. In conclusion, computers have negative effects that get to all people. So, @ORGANIZATION1 you want to have your news be the latest divorces and computer game high scores? Or do you want interesting news that will keep you newspaper going. Thanks for taking the time to read this." 5 5 10 +1668 1 "Dear @CAPS1 of @ORGANIZATION1; Technology seems to have a positive effect on people. But could it be a bad thing. The computer is one of the top uses by @CAPS2, but I think we spend a little to much time on it. My reasons are, kids and adults spend to much time on it, cant interact with friends or family and you cant enjoy nature. Dont get me wrong, its nice to meet new people on the internet and learn about other places. But when are you going to get your exercis of your on it for @NUM1 hours? Sometimes you can never get up because your eyes are stuck to the screen. As for food, you sit and eat junk food. You cant get a healthy meal if you eat chips & candy for hours. Instead up being blinded by the screen, you can get blinded from the sun outside by riding a bike. Its a great way to get fit, rather than typing and clicking away at your @CAPS3. Another way of getting fit, (than to sit) is going out for a run. Kids need about @NUM2 mins of cardio, so why not run your legs than your newest download? You work out your arms & your legs! My next reason why spending time on the computer too much is bad is because you wont have time for your friends or family. Are kids just going to sit at the computer all day while your family is having fun? Also, when you have chores to do, what will happen to them? The dishies will be dirty and your room will be a mess. Most of all wont you miss your friends? At this age kids/teens should be partying with friends and not gossiping online. No one would ever want to invite you anywhere because they will know you will be on the computer. Lastly, my final reason is the most simplest; enjoy nature explore the outside instead of living on the inside. Its good to go out once in a while and get a breathe of fresh air. If you havent visted the park in a while it would be great. Hear all the birds chirping and see the trees and flowers bloom! Then take a nice walk or stroll in the park. Your getting exercise & exploring nature too. While your at it, plant some flowers in your garden. This shows instead of buying games online, your buying seeds to help the environment. In conclusion, spending time on the computer is not bad, just dont spend hours-upon-hours on it. Kids will be kids, as well, adults will be adults. So take the considerations in hand. So try to get exercise, hang out with your friends & family, and enjoy nature!" 5 4 9 +1669 1 "Dear Newspaper @CAPS1, @CAPS2 has come to my attention that the aspect of computers and their influence on people has been brought up. I personally feel that computers are a marvelous tool to help mankind advance. They provide infinite knowledge, entertainment, and dispite what the opposing side says, allow social interactions for those who don'@CAPS4 like to meet face to face. My first reason why computers benefit humans rather than hurt them is the knowledge they provide. Computers give access to the internet, which has near-infinitr amounte of knowledge stored inside @CAPS2. With a simple click of a button you have thousands of websites dedicated to answering your question. They can provide tons of information normally unobtainable. Take for example two students, one with a conputer are without. Both are given an assignment to write a report on a famous person. The one with the computer logs any searches for the reason, and in seconds has enough information to write numerous reports. He aces the reports, and continues to use this method. He graduates top of the class, goes through college and gets a high paying job right out of the gate. The one without the computer needs to go to the library. After spending an hour walking there, he learns that all the books on thet person are checkedout. He finds a book with a short bit on that person and writes about thet. He fails the test, fails the grade, drops out of school, and works ot a @ORGANIZATION1 his entire life. See how much of a different a computer can make? My second reason is that, even though computers are often thought of as destroying @CAPS2, @CAPS3 can build social lives. Millions of people use the internet everytime and there are places on the web built so that they can talk. Some people @MONTH1 that this is and leads to , but anyone who has basic knowledge knows not to information. The internet also has and those still unsure can use specially sites to talk to people they know in life onlt. @CAPS2 also allows for people to ask questions. Having differently finding specific information? Just post a question on a public site use people with first hand experience will answer @CAPS2 with all the detail you need and more. Say that somebody wants to be a writter, but needs to know how the writing system works, how to set a job in @CAPS2, what the pay is, etc. He searches the internet, but only finds job applications and college ady so he asks the questions on a public site. Someone who has been a write their whole lives checks out the question, and answers @CAPS2 ion great detail. Problem solvely and @CAPS2 someone on the internet. My final reason is the entertainment computer provide you can play games, watch movies or homemade videos, and even talk to friends. Computers allow you to access thousands of free services to benefit you. Sitting in your room, bored? Why not play a game on your computer. Tired of @CAPS4.V movies? Go to the computer and have an infinite wideo library? Go to the computer and have an infinite video library at your dipasle. Lonely? Go to a social website and strike up a conversation. @CAPS2 has infinite entertainment, right at your finger-tips. In conclusion, I believe that compkuters is no limit to what you can do with a computer, as long as you have the imagination. Computers were invented to benefit mankind, not hurting and they are doing a great job." 5 5 10 +1670 1 "Do you like learning about faraway exotic land and animals? Are you good at sports but would like to be even better? Do you ever miss your family that lives in other states? The computer can help you with all of this but is @CAPS1 bad for you too? In my opion kids and adults should use the computer. When people are on the computer they can learn about interesting far away lands. When your on the computer you can look up some of the natural disasters. For example people could google each quakes and learn all about the people that has lost their life's. The people that they will donate some money to the poor. Children living on their own. They can also learn about all the wonderful beautiful lands that are out their waiting to be explored. Everyone I know likes to the beutiful birds and animal. In their the world, They will be able to do this on computer. The might be so more this lands. Having a computer will also let you talk to people that are not easy to get. With having a computer people will be able to talk to their family that live in other states then them. I have a uncle that lives in @LOCATION1. I only get to see him because a lot of money to come. Somewhere on the computer, @CAPS1 is easy to just send him a message that say how I'm doing. With computer you will be able to talk to your friends cant talk on the phone. For example, what if your friend and did not. She can not talk phone because so what do you do you. This help you her. The last reason why we should have computer. If you let @MONTH1 periods of time then @CAPS1 will help you with hand eye coordination. This will help the kids that play baseball. They will know where the ball is at all times is they will most likely cauch the ball more often so playing a a little bit of video games is not bad for unless one. Using the computer is @CAPS1 good to do or not using the computer helps people be able to interact wild people that so easy to talk to. So @CAPS1 you are compleatly agenst using computer the get up and use @CAPS1 right now." 5 4 9 +1671 1 "@CAPS8 more and more technology is being invented, people use the computer to do work and to learn. But more time on the computer is not neccessarily a good thing. People do not exercise enough, strain their eyes, and have less interaction with real people. One reason computers are having negative affect on people is because they no longer get enough exercise. Take my freind @CAPS1 for example. He was a triathlete, who trained everyday so he could be in the @CAPS2 @CAPS3-@CAPS4 man in @LOCATION1 next @DATE1. But then he got his computer. @CAPS1 had suddenly lost interest in exercise and spend his whole day checking his e-mail instead of training. But he is not the only person who has become unhealthy because of computers. Experts say that @CAPS5 with computers at home get only @PERCENT1 of the exercise @CAPS5 without computers get. @CAPS5 with computers also were more likely to be overweight and choose chips over an apple in a study performed at @ORGANIZATION1. @PERSON1, who headed this study said, "@CAPS5 are taught by society that computers can do such wonderful things and educate them. However, they are not taught how bad they can be for you health when used too much." @CAPS6, computers are a problem to our health. Another reason computers are a problem is because they strain you eyes. When my school had disabled people come and talk to us @DATE1, there was a blind lady named @PERSON5, who lost her sight because she was a workaholic and spend too much time on her laptop. But she is not the only one to lose her vision because of computers. Scientests at the @CAPS7 lab in @LOCATION2 said that @NUM1 out of @NUM2 regular computer users lost their vision within two years. One of these scientist, @PERSON3, reported, "@CAPS8 more people begin to use the computer, more people seriously hurt their eyes or even lose their vision. We estimate @PERCENT2 of this next generation will be legally blind before age @NUM3." @CAPS9, this new technology is harmful and very damaging to our vision. A third reason people should not use computer is because they stop interacting with real people. My uncle, @PERSON4, lives in @LOCATION3. We used to see each other from time to time and talk on the phone about once a week. That is, until he found out about the chat rooms and virtual worlds on the internet. Now, I haven't seen or talked to him in almost a @DATE1 because he has created a new family on the computer and spends the whole day pretending he is a @CAPS10 an fighting dragons on the internet game @CAPS10 @CAPS11. But he is not the only person with this issue. It is proven that @PERCENT3 of people who go into games like these or chatrooms lose interest in friends and family and their social skills worsen. Professor @PERSON2 had this to say about how this is affecting @CAPS5. "Too many @CAPS5 are finding out about these sites and getting hooked. They stop caring about school, sports, even their friends. It's alarming!" @CAPS12 reason could you have to use a computer after learning how bad it is for you and your @CAPS5! Computers will bring nothing but grief to humanity. They are extremely dangerous for our health. They cause us to stop exercising and gain weight, permanently damage our eyes, and deny us of the proper socialization that all people need to be happy and health. Is this @CAPS12 you want for your self and generations to come?" 5 6 11 +1672 1 "Computers, are very popular these days. Many people use computers for research, jobs, shopping, homework, and more. Although, some people think computers take up too much of our time and that it prevents society from interacting with friends and family. What's great about computers is that, you can chat with your friends and family online or even have a video chat with them. So, you're never really avoiding your friends and family. Another thing that is great about computers is, you can research anything you need to, for projects, jobs, homework, and things for school, etc. The top websites people use for resources are, @CAPS1.com @LOCATION1. etc. Computers are also great for typing out reports , making powerpoints for jobs and projects, and so much more! Anything you could think of is most likely found in a computer. As, you can see a computer is so helpful and is a great resource. having a computer at home is much better than taking a trip down to the public library save time and money from taking all those trips and get your own personal library ny getting a computer. you never know what new technology could bring." 3 3 6 +1673 1 "Everyone will agree that using computers is also a good choice because you do meet people you don't know. Also you learn more stuff you don't know. Not only that but, u can also learn more about technology. Most people would say that, meeting people is good because you can have fun talking and getting to know people. Also, people would want to learn about other people cultures. Some people would want to know some personal, buiseness about peopl. Even people want to know where are some people from. People like to kno" 2 3 5 +1674 1 "Dear @CAPS1's at the @ORGANIZATION1, @CAPS2 to @PERSON2, ""Computers have helped me further @CAPS6 research. I can search up so many things to help a patient and keep all @CAPS6 important information organized."" @CAPS3 you question a leading doctor? I agree with @PERSON3 and say that computers are good use in society today. People were already becoming lazy because of television. You can't balme it on computers. With websites such as @CAPS4 and @CAPS5, people can keep in touch. They can make plans with one another to go for a walk in the park or dancing. These things can keep people healthy, active and in tiptop shape. Computers help people keep in contact with others. ""@CAPS6 patients can email me to schedule an appointment and let me now if they think something's very wrong with them."" say's @PERSON1. With computers, you can email distant family and friends to learn if there are problems quicker. Most people tend not to pick up the phone if someone calls during a crisis. You also don't have to worry about running up your phone bill. you can just @CAPS4 chat with a bud instead of using up an hours worth of minutes. You can learn so much more information faster. How @CAPS3 feel if no one called and told you your bestfriend died or your mom, and you had to find out by reading the newspaper? You'd be extremely upset. I know I @CAPS3 be with email, you and your family can stay in touch with old, new, and now friends. So if anything bad happens and a person didn't know hoe to tell you, they could email you. It's so much easier than telling a person that their.mom died by email them by phone. To hear pain in a person's voice will make you want to cry. You feel their pain. So, now do you understand that computers are a great benefit to today's society? You can't blame computer's for people becoming lazy, since television was already doing that. If a person want's to be lazy, then that's their decision. you shouln't go around blaming pothers and things when its no one else's fault but that persons. This is a great way to keep in contact with other's. Plus, think of all the information you can learn. Not just about family and friends, but the world too. Thank you for taking the time to read @CAPS6 essay and I hope you can see things @CAPS6 way." 4 4 8 +1675 1 "One evening, @CAPS1 I got home from school, I didn't know what I had for homework. I decided to call my friends cell phone, but instead I got her voicemail. I left her a voicemail and called her house phone instead, the same thing bad happened. Luckily, I had my other friends numbers I could use. The next day, I asked her why she didn't pick her cell and house phone. She told me ""I'm sorry, I guess I was to busy on the computer e-mailing other people."" @CAPS1 I think of people being on the computer too much, I think they don't get enought exercise, don't enjoy nature, and spend less time with family and friends. First @CAPS1 people spend too much time on the computer, they spend less time excersising. About @PERCENT1 of people do this and it's not healthy. @CAPS2 people do this too often, then they will not get enough excercise and without excersise then they won't be healthy @CAPS1 they get older. @CAPS3 @PERSON1 said ""@CAPS2 adults spend too much time on the computer, maybe @NUM1 hours a day or more while eating junk food like chips and soda, they are not setting a good example for their kids. @CAPS2 adults get into this bad habit, so will their kids and it's to early for kids to be unhealthy."" I also agree with @CAPS3 @PERSON1, she is right about how people spend too much time on the computer. Second, @CAPS1 people are on their computer, its like their face is glued to the screen and they don't care about nature, @CAPS1 people do this, I can't stand it. Its like they don't care about anything else. What I don't get is why can't they go outside and do something for at least a half hour, then go back to the computer and waste their time then? Going outside and enjoying nature is peaceful on a nice sunny clay. You could have a picnic, take a hike, or even hang out with friends instead of playing on the computer. I understand @CAPS2 its a bad day like @CAPS2 its snowing or a thunderstorm and you can't do anything outside, then you go on the computer. I think that at least @PERCENT2 of people would try this. Third, @CAPS2 people are too busy on the computer then they won't be able to hung out with friends or family. @CAPS2 your friends want to hang out with you and they want to go to the mall. But you can't because your on the computer, she would be furious at you. You picked the computer over your friends to go to the mall. There's probably a @PERCENT1 chance she won't ever talk to ou again. and I don't blame her. People who spend to much time on the computer, would barely understand whats going on. @CAPS2 someone tells you something, it goes in one ear and out the other. @CAPS1 people do this, its really dissappointing because you dont hang out as much as with your friends and family. As you can see, people are spending too much time on the computer than excersing, enjoying nature, and spending time with family and friends. @CAPS2 you ask me, I don't play on the computer as much which is a good thing." 5 6 11 +1676 1 "Dear @CAPS1, @CAPS2 glad to see that you have a debate if computers are good or bad for human society. Well I would like to state my opinion if that is good with you. In my letter @CAPS2 going to tell the bad stuff about computer and why there not good for society. Well I dont think computer are good for society because you dont work-out as much as you use to. I can say that a fact because I use to work-out then a computer games came out and I spent @NUM1 hours a day playing it I had no time to spend with my family, I had no outside commaction it was like it topic over my life. Plus I know a lot people who feel the same way. The computer is like a addiction. I say this because once you hit the power button you cant get off. All the commution website are hard to get off because there starting to put games on so you wont log off as fast. THe have different website that play video of things that are funny. Like once you find it you click and a of things so when you look you on same thing else. Dont get me wrong you can see and talk to family members you dont see but you dont have ime to go to the park and have fun and enjoy nature it like you looked up. I dont think we should get rede of computers but we should spend least tine as we do know. I know people are going to be upset by waht I say but we as a society are addicted to the computer. Every were you look theres a computer. I going to leave on one not would you pick computers or life? " 4 4 8 +1677 1 "Dear @CAPS1 @CAPS2, The use of advanced computers have increased. You don't see kids outside as often. On the news, you hear about obesity. And you hear the crime rates go up. This does not benefit the socierty. Computers has a negative effect on people. Does your neighborhood seem to be locking children? It's not because their dead! They are now always inside on their computer. I know a thirteen year old named @ORGANIZATION1. She even admits that being on a computer is better than being outside with friends. Meeting people over technology, especially for miners, is a huge risk. You don't know the person. Soon, you would have no friends when it comes to being in the social life. You'd be the outsider. For @PERSON3, her family doesn't even know who she is anymore. Do you want your child to be the outsider? Being on a computer all the time is like being at a fastfood restaurant. You don't exercise, all you do is eat andt talk, but now all you do is eat and on the computer. I have met a obese child. @PERSON2. He weighs three-hundred pounds at the age fourteen. An eight grader, can you believe that? He tells me he has his laptop on his lap, surrounder by junk food. He never exercises or take a break. His report card is unbelievable. He used to be A @CAPS3 student. Now he's in a dump. @PERSON2 does not listen to his mom at all. @PERSON1, @ORGANIZATION2's, mom says ""he locks himself in his room, goes straight to his laptop, and starts eating. You can even hear him munching the junkfood."" And we wonder why our kids are getting obese there days. It used to be about jobs, but now it's about who you meet on a computer. Myspace, facebook, twitter, you name it, is how the crime rates are increasing now. The people behind these pictures and profiles @MONTH1 not be who you think they are. Especially, miners who lie about their age. They're the ones who fall for those perverted old men. That is one way our sex offenders get a way around. They can use someone's name and be underover. They tell these young girls to meet them places and that's how our young girls, and boys, gets kidnapped, rapped, and end-up killed. A computer holds millions of ways criminals can commit a crime. Do you want your child to be next? Computers these days, are used in the wrong ways, by the wrong people. Kids are never outside again. They are getting obese. And it's a way they get kidnapped. Don't allow this. Get your child(ren) away from their laptops now! Go on a family vacation, somewhere fun. And don't let these sick-minded people get to you or your kids. Take action now!" 5 5 10 +1678 1 "Dear @CAPS1 @CAPS2: The effects computers have on people are bad because they are getting too addicted, the computers is a dangerous site to go on, and their brain is smarter then the @CAPS5, @ORGANIZATION1, they are getting too addicting because computers @MONTH1 have a benefit of you being able to serf the internet but you'll get hooked on it too much. For example, youtube is an internet siting that about @NUM1 people go on and barely get off. The people don't turn off their computers to just go get some exercise but just sit there staring at the @CAPS5 and messing up their eyesite. These people need to learn have the will power to get off the @CAPS5. Second, the @CAPS5 is a dangerous site to go on because some people in the @LOCATION1 give somebody their @CAPS3 on the @CAPS5 to somebody they don't know about. Almost @PERCENT2 of teens get kidnapped because od giving their @CAPS3 a way to stranger and @PERCENT3 of those teens don't get found. The @CAPS5 is also a place of where a child or teen @MONTH1 get cyber bullied. Cyberbullying is harrassing children or teens on the internet, when children under or over @NUM2 get cyberbullied they sometimes suffer through a deppression and don't tell their parents about it. Six months ago at my old @CAPS4, there was a volunteer at my @CAPS4 talking about cyberbullying and how he got so depressed because of the harrassment, that he commited suicide. The @CAPS5 is not always a safe place to be on. Finally, your brain more smarter than the @CAPS5.People can have the ability to depend more on their brains than on the their computers because your brains are like computers. About @PERCENT1 of people use their brain more often than computers and they have been successful through life. The brain is like a @CAPS5 because you can store information and nobody can hack into it. So therefore, computers have bad effects on people because they are getting to addicting, the @CAPS5 is a dangerous site to go on, and your brain is smarter than tha @CAPS5." 4 4 8 +1679 1 "Dear society, @CAPS1't you all have some kind of computer at home? Work? What if we took you computer away? How would you work? These are all esential questions. The computers of our time help us with what we do everyday. First of all they teach hand-eye coordination. Secondly they give us the ability to learn and communicate with the far away places. Lastly, They allow people to communicate quickly by an email or an @CAPS2. If those experts took our computers, @CAPS6 about what would happen. @PERCENT1 of americans have a computer or a cellphone with internet. These people have hane-eye coordination, therefore they use technology alot. People who use computers at work can multi-task. Secondly the modern computer lis a huge necessity. Thirdly, The people who are still in school have to write papers, do reports, but with-out computers. How will they accomplish that? @CAPS6 about what society would be like. Picture it. Facebook, @CAPS3, @CAPS4. These are all websites that have chats where people can communicate. Take it away. See what happens. We only have the telephone what if we @CAPS1't know some ones cellphone number? can't go on a computer that isn't there. Take all of that into consideration. Maybe the computer prevents us from face-to-face communication, but it's a common necessity. We need to be able to ask someone a quick question. Cellphones and calling aren't as quick as on @CAPS2. Do you really want to be the one to take it away? @CAPS6, @CAPS6 about what your to do. Take this letter into consideration. what are you to do? These computers, help with everyday life. From school to work to just fun. Computers help teach hand-eye coordination, give people the ability to learn about people and far away places. thirdly they allow people to communicate, so go ahead, take it away, but see what happens when you do." 4 4 8 +1680 1 I think that will are all spending to much time in computers because all of my frend are all day in @CAPS2 I think that people should get active and go to different places in the wold like the pool the forect the lackes ets. I think that they shood pot a program that people come go places and forget about computer for me computer are good but you cannot spend a lot of time in @CAPS2 like try to spend more time out doors and whith you family or frends. And the problem is not only with computers is with a lot of technology like video games like xbos - @NUM1 - @NUM2 - game boy - xbox @NUM3 and other more more you schood play them @NUM4 a week like @NUM5 hour because ther alot of activitis you and your family can do out doors I will thake a wake aroud the park or ride bickes with you freds aroud town and make a picknick on the park @CAPS1 is hot and good outside. Know that the @DATE1 is coming or you can go and do a lot of stuff like @CAPS1 you donot have money you can go to the park or beach and spend the how day in ther what my family do when is good outside is that will check the wether and se @CAPS1 @CAPS2 good out - side and @CAPS1 is good will get up at and go to the store and by hamberger soda plates and other stuff will are going to use ther will go to a lake of pool and spend the day playing and eating. My opinian is that people schood spend more time out-doors with the fred - and family I whant people to know that ther a wold out side and to not get to adictide the the techno wold that my opinion I do not know @CAPS1 you like @CAPS2 but I think you shood try @CAPS2 and @CAPS1 you do'not like @CAPS2 get in to a they will help you and a lot @CAPS3 writing this because I whant peole to now that ther a lot of places that are yet to be discoverd so go out ther and enjoy like because life only come one time so enjoy @CAPS2 whith happy time and good time do'not speed @CAPS2 crying and sad like @CAPS2 like this is your last day on this wold. 4 4 8 +1681 1 "Dear, @CAPS1 town. As you know it computers are a part of our lives, but is it positive or negitive? Computers can be a great thing it can show you different parts of the world and breaking news, it can deside your next vacation. It could help you talk to famile and friend. What would are lives be without them? Well are lives without computers can be bad. Computers do have negitive sides to like spending lots of maney for one all the times. It needs to be fixed. People can use the computer to much and they want exercise. That can lead to fatness. Also you can waist lots of energy to. A bad part about the internet is chat rooms, if you talk to the wrong people then you can be in trouble. Overall computers are a key part of our and they can help deside with our next @DATE1 breack trip and they can use by making us fat. " 3 3 6 +1682 1 "Many people think computers are bad or that we spend less time outside because of them. But are they are bad for individuals to use as people say they are. In this instance, a moderation would be helpful. When you think of computers, what comes to mind. Games? Social @CAPS1? What if computers are doing more than that? Last year, a computer helped diagnose a concussion of mine and helped figure out I've had @NUM1 others. Not to mention the computer did quicker and more efficient than a regular human. An expert says ""Computers diagnose anything, not just concussions, @PERCENT1 better than doctors."" @CAPS2 the social netwowrking has a positive aspect. This has let people, who haven't seen each other for a long time, reconnect and become good friends again. With the positive aspects there is always a negative. Computer have started to make kids obese. This is problem in the country because if we become lazy then we could ruin our country. In addition, if we become has reliant of computers @NUM2 diagnos, what happens when they get faulty? These are problems that are very real and aren't being with. If we cant deal with these problems first then computers will turn out to be a bad thing. Lastly, a moderation could be extremely helpful for us today. For example, instead of using social @CAPS1 for friends next door, go outside and play wiffle ball with them. Social @CAPS1 was made to reconnect with friends far away, not across the street. @CAPS2, instead of totally reling on computers to diagnose problems, have them and the doctor find out. Doing this will get great results and keep doctors prepared if computers, dont work. These are just a examples how moderation could be very helpful to everyone. In conclusion, having no computers wouldn't be a great idea because of how much they help society. Although, being totally dependent on them is a bad idea to because they don't have that much benefit to them." 4 4 8 +1683 1 "Dear local newspaper, @CAPS1... scroll... @CAPS1. ""@CAPS2 you know that only the male coqui is the only coqui that sings?"" Some facts are easily found on the interneat? The computers make researching easier just imagine not having to drag home those gigantic books home or having to constantly find information in them. First, the computer teach as hand-eye coordination. Second, we can learn about faraway places. Finally, we can make friends from all over the world. When, the ball goes right out of the parts! the plastic object with a screen(computers) teach us hand-eye coordination. It teachs us this by making our eyes stay on the screen, twhile our hand are on the hard, smooth keyboard. Children need hand-eye coordination for ball-playing sports like baseball, basketball, soccer and more. When your in high school and play sports well, you @MONTH1 get scholar-ships to go to college. College is important because it has a big role in our life so we @MONTH1 earn great jobs. Learning about faraway place like @LOCATION1, @LOCATION2 and so on is very intersting. Unless, your learning about it throught looks, which are dull and borring. The interneat has taken over our and it is resentlessly and without hesitation. The internet takes less time than going to the libary and getting back. Also, skimming throught paragraph after paragraph on the computer is much simple." 3 4 7 +1684 1 "Dear @ORGANIZATION1, @CAPS1 personal opinion on computer technology is that it is extreamly bad for you, and we need to take percaution, and worry about eye protection vertual harrasment, and that there are dangerouse people on the @CAPS2. Eye protection is important. Although computers are hurting them by, the screen being too bright and hurting your eyes. Also if you look for too long it could make them tierd. I can tell you from personal experence that glasses are un-cool and some people get picked on for it and that could happen if your eyes get hurt so you can see as well as you did befor. It's glasses or even going blind. Vertual harrasment is another thing to be aware of. Over the @CAPS2 you could be cyber bullyed by kids you @MONTH1 or @MONTH1 not know. For example, one day you could be on @CAPS3 and be talking on a chat room and kids could make sexual, homophobic, or even just plain remakes. Witch brings me to the, sexual harrasment. Sexual harrasment if extreamly can make people feel usually bad selfs. Kids take pride in calling others bad names regarding there rase, there gender, or even the gender they like. So take extra percaution when seeing sexual harrasment. Sexual preditors are a parents biggest fear to kids. Sexual preditors are everyware, @CAPS4, @CAPS5, @CAPS3, or even your neibors and wile kids are running around town looking and acting the way they do there extreamly un-safe. This is why you @CAPS7 put any personal information on the @CAPS2 not your adress, not your birthday, not your cell or house numbers, nothing not even your town. Also sometimes its a little dangerous to put your last name. So be very carful on the intrenet. When you see sexual harrasment, or someone being followed by a sexual preditor report them! and be safe." 4 4 8 +1685 1 "Dear Newspaper, I strongly believe that computers do not benefit society. I believe this beacause when the computer you spend less time exercising. Secondly computers make time enjoying nature. Finally interacting with family and friends is important when on the computer you don't do much of that. Plese read on to find out what i have to say about computers. Using a computer has a of down falls but @CAPS1 of which is the lack of exerizing while on the computer. As you @MONTH1 know that many countrys are becoming obese because the lack of exersize. Computers are no help to this problem. The only exersize computer contribute is the hand and fingers but even that is bad because if you are typing and on computer for too long you will get carpeltunlye in the fingers and hands. @PERSON1, an expert on health, said ""@CAPS1 in three people go on the computer for more than @CAPS1 hour a day, which could lead to obesinty. This leads to my next paragraph. When on the computer there is no enjoying the outdoors. Enjoying nature is important to every man or women's scegule. On a computer its imposible to enjoy nature because all the computer is is a time consuming brain washing thing to do. Nature helps save the brain. Without that then you'll be very exausted all the time. Did you know @PERCENT1 of kids go outside every day that means @PERCENT2 of kids are in side on the computer. This leads to my finally topic. The computer @MONTH1 have sites where you can talk to friends but that is no where as good as seeing them in person. Your family is important so you need to spend time with them. My family always does stuff together like board games and what not. With computers there would not be any time with your family because everybody will be on the computer playing games insted of spending time with you family. In my conlusion computer have extraordinary bad affect on society because it exausts time for exersicing, also limits time to enjoy nature and finally people spent too time on computers and too little time interacting with family and friends, thank you for reading my paragraph on the many affects of computers" 4 4 8 +1686 1 Dear: @CAPS1 @CAPS2 @CAPS3. My name is @PERSON1 and I am concernd about people around the world are use computer is to much during the day. Some compute's are bad because there are glitche's in the computer and every one has a myspace and myspaces has a viries and it leaves a vires in your computer and your computer shut's down or goes slow. Also people can hack your computer and you cant find out about and every thing that was on your computer can go around the world. People can kno your most secread's and more. Finly you can get caught macking movies on your computer and go to jail and your business will be out. 2 3 5 +1687 1 "Dear @CAPS1, Computers have really made an impact on society. Some people, think they have made a good impact while others think the opposite. I believe that they are a good thing in our lives and have made a drastic, but great impact. Some reasons that support my opinion are that computers are basically what helps us keep in touch with people, they make it very easy to find needed information and they make our school lives faster and much simpler. First of all, computers are pretty much how people keep in touch. There are many ways you can keep in touch over computers. Tere is video-chatting, e-mail and chat websites such as @CAPS2, @CAPS3, @CAPS4 etc. There are many people that really enjoy having the ability to keep in touch this way. It is a step up from talking on the phone. On the computer if you are web-chatting, you can not only talk to them, but you can see them! When it comes to chatting websites such as @CAPS2, there are millions of people who belong to this incredible website and love it. Kids and adults really enjoy having access to something like this. For me, since I moved to @STATE1 and had to leave all my friends behind, the computers has saved some of my relationships that I thought I would lose but didn't want to. I can e-mail my friends, and even see what they look like and how much they have changed on @CAPS2. Computers are a very helpful piece of technology that have helped me, and so many other people keep in touch. Another important reason computers are a wonderful technology item is because they make it so easy to find needed information. From what a word means, to the directions to get to @LOCATION1, the computer can help with all of this. I talked to my mom and she said. ""Computers just make @CAPS6 all of the information I need to knew about your brother's diabetes so easy."" @CAPS6 information in books can take so long. You have to go to the library or a bookstore, find the book you need with the correct information, and then you have to read through the whole book to find the information needed. On a computer, you can just google what you need to find, and read the article or map, etc. Computers have made @CAPS6 information a breeze and everyone loves how simple it is! The last reason that supports my opinion is that computers make our school lives faster and much simpler to deal with. In school, there are times when we need to write a very lengthy composition, and it will take forever to write. With a computer, typing up the composition would probably take around half the time of writing the composition. I took a survey of three kids that typed a composition and three kids that wrote it. I asked each of the kids how long it took them. The kids that wrote the paper said it took them around two hours. The kids that typed the composition said it took them around an hour. Also, when things are typed, they are usually easier to read which makes it easier for teachers to grade, and won't take as long. Computers make school easier for students and teachers. The opinion that computers are not a benefit to society just doesn't make sense. Yes, I know that there can be some disadvantages. But think of all the advantages compared to the disadvantages. There are a lot more good than bad things. Without computers, people would be incredibly stressed, and have a hard time making life easier. Computers are an amazing benefit to society. Everyone should agree with this because people stayin touch because of computers, computers make it very easy to find information that needed, and they make our school lives aint easier and faster for students and teachers. Computers have made an extremely large impact and changed our ways of life for the better!" 5 5 10 +1688 1 "Dear Local newspaper, I have concerned because lately a lot of people have been using computers alot. My concern is that they haven't been exercising much, they arent enjoy nature and they aren't spending much time with their family. This is not a posiitve way for their life. In my opinion excercising is a very, very, very important thing to do. This is because you need to mantain a healthy diet to stay healthy and you need to excersise. Some people I know don't exercise and they are either overweight or not healthy. People are ""busy"", as they say, uisng the computer to do all there work because they just don't like using the old fashion way, which is going to your job and doing your work. Everything is different now and people have become lazyier than ever before. Would people be lazy, if computers weren't around? Of course they wouldn't be. They would have a happy healthy life. Now-a-days, people don't go out and explore the world much they just go online and nthey search a place up on a google. They don't see the real thing though. they see pictures and everybody knows that seeing the real thing is way, way better than looking at a picture. But i guess everyone forgot about that. Computers have everything online, no wonder poeple don't want to leave their homes and if they do leave, don""t worry they have a laptop with them. Computers are even portable go wherever they go their still going to go online. Poeple have also spent less time with family because they could talk to them online in a s chat room. This isn't a good thing because what if you were talking to your ""mother"", well at least you think is your mother but is someone else and your talking about your, I didn't know, something private and that person on the other computer, ""your mother"", will know about that and can cause problems with you. You know waht I mean? Like if you were talking about your credit card and that person asked you for your credit card number and you gave it to them then they could cause problems. Online isn;t a safe place, thats why you should talk in person not on a chat room. Well I hope that you put my letter in the newspaper for people could exercise, see the nature and be with family, like they were when they didn't have computers around." 4 4 8 +1689 1 "Dear, The @CAPS1 @CAPS2 people use the internet. Too @CAPS2 which leads to lack or exercise. Others play games online. Some people fear oline chat rooms online. They'nt safe some people get really injured or murdured. Exercise is important @CAPS2 people let that bobby. That is very dangerous because your cholesterol will rise. You will gain wait and that can, lower your self-asteem. Other people comitt suicide because the way they appear and no one wants that. That is sad for everyone plus it's not worth it. Video games oline are very amusing. But people would kill for these games. games are a let alone online . Online chat rooms are very dangerous you never know who your writing to. Millions of people died for saying the wrong stuff. Other been raped or melested by these strangers. Thousands of kid's give out there address and have been robbed. There are wierd, crazy or suicide people in the world. So don't make yourself a traget. I personally I don't agree with computer use of all. So @CAPS2 thing can happen if you do the wrong stuff. So I hope you understand and agree with my reasons." 4 3 7 +1690 1 "My opinion on the effects of computers is that most people in the world spend most of their time sitting on the computer day in and day out. If someone I knew spent all day long on the computer I would tell him or her head on that he or she sould go out side and get some fresh air and get some exrcise. Some times the only way to make contact with them is by talking to them on the computer. Although the computer can be quit helpful by looking up important artifacts or important information about medical plans, tutorials of how to fix, make, or biuld things, and to meet new people, But, the computer can be a dangerous place as well you can meet someone who is lieing about their age that person might rape or miurder/kill you. If you spend twenty-four seven on the computer you could be paralized from lack of exercise or get lumf ophemia thats when your body a pears and will not be a to exercise and would need special treatments. Like masogise. Computers can also be good because it can give you hand eye coordination by useing the still looking sometimes some people for useing the computer: videos, video, and websites. You can get your computer uloaded for for quality. Some systems howe computers in them or can be connected to the computer like the, and the @CAPS1 @NUM1 @CAPS2. There are games called p.c. games some p.c. games comeucicate with childern to teach them how to write, read, spell, and pronounce words. There are also spiecal computers and/or web-sites you can search for tutorial for speaking different langueges. There are also sites you can search for tutorials for playing instroments. Some people use the computer to fill their emptynis inside of them inistead of eating. Some people obeuse the compeuter as a dug like they're addictied to it. Imagine someone addictied to computers every where he/she goes they would take their laptop with them. Many people have died useing the computer but thats because they obeused it. Everyday people buy computers this invention is very helpful as time goes on sciantists are makeing new things to save llives." 4 5 9 +1691 1 "Dear @LOCATION2, @CAPS1 your workers wake up in the @TIME1, they stretch their right muscles and put on their puzzy slippers. They wonder down the hailway and open their @CAPS2 book air to check the weather for today. They go on @ORGANIZATION1, @NUM1, and etc. to view their e-mails sent from work friends, and family. They check the time on the bootom of the laptop screen and lag onto to play some they are getting ready. Society today relies heavily on computers and the net work their keeps us all connected... the incorect with technological advances happening today, people are now using computers to help with their work. But is that a some @MONTH1 say that it is due to the fact the amount of spent on the computer is the much and that it stop from with friends but it does computers help with the skill of typing, help with fast end easy and helps friends and @NUM2. of through @NUM2 @CAPS3, @CAPS4, etc I believe that computers have a possitive affect on people and once a great addition to society. to begin, computers help to reach @CAPS6, children, and even adults the skill of typing. Statistics show that more and more jobs on computers and hire people with a higher words per minute ability with almost @PERCENT1 of adopting new computer and using computers to store information to their company, computers are necesity and so is the knowledge of understanding computers and being able to type. Moreover, @CAPS6 these days are depending on computers for research to order to do projects and information I can personally connect to this because being a student on @LOCATION1 school, I am assigned project what involve typed words and or information. how hand it would I had to hand writs all of my work and on the for information. @CAPS1 multiple @CAPS6 are assigned the same project, the does not millon @CAPS6 to check looks out @CAPS5 there was no computer to use, what would I do? for @CAPS6, computers and a great thing. Furthermore, @CAPS6 and even adults enjoy social time, but @CAPS1 friends are family line faraway or you are not able to visit three, the computer connect in handy computer help to keep friends and family connected through @CAPS3, @CAPS8, @ORGANIZATION1 / or @NUM1, I.M / @PERSON1, and webcam video chats. All of those computer related things would not there for @CAPS5 there were no computer. Would you want no be disconected from family and being social is a key part of being You why shouldnt we keep them and why with all of these possitive things about computer would ever make you doubt them? In computers are wonderful things. They he is to build skill of typing, help and it easy, and also help keep and family connected. Computers affect people only good ways and help everday life be easy. so, believe that computers are a great thing and that without them, even just talking to family could be jeaporadized. Lets keep computers" 6 5 11 +1692 1 "Dear The @CAPS1, People have been saying that computers are not beneficial, but they are wrong. In my opinion computers are very beneficial. Computers teach hand-eye coordination, give people the ability to learn about other people and faraway places, also, you can use the internet to interact with friends and family. Computers can be very useful and efficient to anybody. Did you know that computers can teach hand-eye coordinaiton? Some computers have programs that teach you how to type. Without having to lock down at the keyboard. Even if people don't have the program they can learn how to type fact without having to look down. Many people that I know, have learned how to use the computer or type without anyone telling them hour to do so. Computers are very needed all around the world. Computers give people the ability to learn about other people and places. If you go on the internet you can go and searching person or place and the computer will find it for you. Children and adults need computers because if for example, a child get a project from schoool that need to be done about a famous person or smoking. she would most likely need to go to the internet . The game goes for adults that love jobs in offices, schools or anywhere else. Computers are essential to people all around the world. Computer can be used to comunicate with each other. People use computer to communicate with friends or family in far away places. They can communicate via e-mail, @CAPS2, video and maybe even in other web sites. Some web sites contain the ability to talk to each other through video or through messages, such as @CAPS3, or @CAPS4. People like using the computer because it is very useful when you need it most. If you ask anyone they will tell you that having a computer is very important and necessary. Why would people intend to take away something as important and useful as a computer? Computers can be used to learn hand-eye coordination, and help you move your fingers faster. They give poeple and places in the world. Finally, they can be used to communicate with one another through e-mail, message and many other ways. In my opinion, computers are one of the most important things to a person." 5 4 9 +1693 1 "Dear Newspaper, Have you notice that now a days more and more people are becoming overweight? Well its true. People say that it is because of eat a lot of fast food but I think that since we are always on the computer and not excersing helps contribute to it. Also as the technology is getting better it is keeping people from going outside and enjoying the beautiful nature. Sitting infront of the computer isn't going to help our environment. Lastly, kids aren't getting out of their house to interact with friends and family because technology has been able to let us communicate without leaving our house. @CAPS1 not saying that we should downgrade our technology, but we need to find a way limit it. To start on with, technology has a role in the increasing rate of obesity. Some @MONTH1 say that people chose not to excerise but if we limit things then they won't have to chose. As a kid myself, I love to be on the computer. My parents are always trying to get the computer and take the dogs for a walk and I always say ""@CAPS1 busy"" @CAPS2 its true, I don't really like to go outside because I have a computer to play games or talk to friends and to be honest excersing to me seems important but I don't do it because I'm always on the computer. I think that other people could feel this way so thats why we need to limit the computer. Secondly, global warming is occuring right now and people would rather be inside on the computer then go outside and enjoy the nature. @CAPS2, you @MONTH1 be able to look up ways to stop global warming, but does it mean you are going to really do it? Some @MONTH1 not because they could just stay on the computer and keep ""@CAPS3 up"" ways to help another things is that when we use our computers, we use electricity, which adds to global warming so it we limit the use of computers then people could go enjoy nature and not destroy it. Lastly, internet sites like myspace, @CAPS4, @CAPS5, etc have allowed us to communicate with friends and family but we are still not able to get out and interact with them. When we get out and interact with our friends we gain like communication teamwork and respect friend and family can teach you this with them the computer they can't. Also interacting with your family and friend @MONTH1 let you go in new places that you haven't been before and on the computer you can't go there. Interacting with friends & family is better than talk thru the computer. In conclusion if we stay on the computer then we won't get excerise enjoy nature or interact with friends. So we need to act now limit compute usage!" 5 5 10 +1694 1 "Dear Newspaper @CAPS1, I think that people spend way too much time on the computer these days. They get less exercise. Don't get to enjoy the nature around them, and they don't get to interact with their family and friends! If people stop spending so much of their day on the computer, then they wouldn't be having too many issues. People need to spend less time on computers, and spending more time exercising! Computers all over the world do not involve much interaction with any part of your body other than your hands. You don't tend to want to get up or do anything else when you're on your computer, right? Well that needs to change. Often, peolple get cranky while they are using a computer or if they need to get off of one. Some people are so obsessed, they might even break down and have a fit! Nobody want's to see someone throw a fit because they have to get off the computer do they? If they don't get exercise anytime when you're not on a computer it can deffinately shows. Jimmy @CAPS2 syas, ""@CAPS3 @NUM1 kids are on their computers way to much! They never come out of their rooms, and if they ever do, then they are normally very cranky. They're getting fat! I can tell because all they eat is junk food. This needs to "" @CAPS4 can't even have a little of time with his children. They should go on a family trip and enjoy together! That brings us in next issue. We all need to enjoy nature more. Why would you spend your time on a computer looking of pictures of nature when you have it right there in your . It's because kids are too lazy to get off their lazy and go outisde. The best thing about nature is that if you are about need to be alone or even just need to get , nature is always there for you anytime you need it. You can laways go otside with your friends and family too!. I'm sure that they would apreciate people getting off their computers to spend some quality time together. Yet again, our next and final issue. Computer obsessed teenagers and adults need to be with their family and friends. When talking to your friends why bother talking to them on the computer when you can just get together and go do something fun? ALso, when you spend time with your family, it brings them a lot closer toy ou. Nobody likes to not talk to the people you love and the people who reised you. When you're on a computer I just think of all the places you could , place you could be with. Nobody wants to be distant from their friends and family. Therefore, people should turn off their computers, go exercise, be around nature and have some quality time with their friends and family. Thank you" 5 5 10 +1695 1 "Dear local Newspaper, @CAPS1 you @MONTH1 know, @CAPS2 people are starting to buy and own computers. Some experts say this is a bad thing and that we should spend more time outdoors. I disagree with this statement. First, computers help us with every day life. We check news on computers, some people even use their computers @CAPS1 a @CAPS3 and watch important shows. Second, a computer is a great way to comunicate. @CAPS10 its friends, family or even buisness, a computer is a excelent way of communication. finally, a computer is help when it comes to school or work. You could write a paper on the computer for example read on to see how I support my reasons of why computers are helpful in peoples lives. Have you ever had a time when you see something on the news that you want to learn more about? Well, @CAPS10 you had a computer, you could go online to the news website and read more. This is only one way a computer comes in handy in every day life, there are plenty more. Another way is @CAPS10 you don't own a @CAPS3, you could watch your favorite show on the computer. My english teacher @PERSON1 says ""I never owned a @CAPS3, I only watch @CAPS3 on my computer and I like it better"" In fact @PERCENT1 of people who watch videos on the computer like it better than @CAPS3. This is how computers come in handy in every day life. I love how computers have @CAPS2 ways of comunicating. I like it because I have @CAPS2 relatives who live far away and I use my computer to comunicate with them from time to time. Skype is my favorite, I can see the person @CAPS8 talking to at the same time. Also computers can be good for business for large companies who need to comunicate out of the contry. I'm sure being a amazing newspaper company, you could use a way of easy comunication. finally, comunication with friends. These are @CAPS2 programs for this, @CAPS9 @CAPS1 facebook and myspace. This is why a computer is a good way of comunication. finally, computers can be useful for schools and work. You can type a paper or news article on the computer. It's much faster than writing. Also, @CAPS10 you need more info on something, you could look it up online. like @CAPS10 you are writing an article on dolphins, you could learn more about them. In conclusion I think computers are good things. They help with everyday life, They are good for comunication. And last they help at school or work." 4 5 9 +1696 1 "Wouldn't you agree that computers are needed in our life. I would, we need computer for many things, for example we need computer for communications, we also need them to educate yourself and others. Next this is good for buyers and sellers. My first reason why I agree that computers benifits society is because of the communications. Now in our present day with all of our new technology many people use computers to communicate with friends or family. For example if you had a loved one in the military you could use the computer to communicate with him with a webcam. Computer could be a good way to talk and ask friends about homework assignments you @MONTH1 have missed as if you was absent. Also you could use computers to communicate with somebody selling something you @MONTH1 be or, you could get more detail about that product by talking to the owner of it through maybe email. My second reason would be education. Now a days many college students with work going on @MONTH1 not have time to attend schools so with the help of a computer they can take online classes. For some students instead of study in classroom all day they could be learning from computers and it could be more to the students so maybe they would understand topics better. like science for example when doing a lab you could research and do it on a computer. With computers students could learn more because they would have textbooks or maybe nothing and if they were interested in a topic they could research it and educate themselves. My third reason would be buying and selling products. Many people all over the world go on the internet to buy or sell products. Like ebay that is a website many people items on to make money and other people can buy them. So computers could be a good solution to making money and to also saving gas because people can order products online and have them shipped to there house instead of driving @CAPS1 from the I have told you like communications, education, and buying and selling products I hope you agree with me that computers do benifit society" 4 5 9 +1697 1 "Dear local newspaper editor, @CAPS1 you love haveing the enternet at your finger tips. Recently, it has been bought to my attention that some experts are concerned that people are spending too much time on their computers. I firmly believe that this is correct. My three arguments are its not healthy, the friends you meet up there are siber friends and bad @CAPS5 @MONTH1 occur. First of all, being on the computer too much is not healthy. This reminds me of my friend named @CAPS2. @CAPS2 used to be humerous, outgoing and play alot of sports. One @CAPS3 day, her mother bought her a laptop. This laptop was blue and white-her two faverite colors. She was on it all day and all night. She took it with her everywhere she went. Well, it got to the point whare she stopped the sports, gained some weight and the sadness creptped upon her. She was in a depresion mode. She went to the doctors and they told her that she had to give up the computer and play with it for only two days a week for five hours only. She listened to the doctor and it took her about three months to get back to the fun @CAPS2 she used to be. Being on the computer too much can harm you and the people around you. Second of all, the friends you meet on the enternet are called cyber friends. You don't know who they realy are, where they realy live, or their real age. They can tell you any thing they want because they know that that's a little fantasy world. That is mently not healthy. It is very important for human beings to be socialy active. Being on the computer too much can harm your brain also. Third of all, @CAPS5 @MONTH1 pop up. If you are the type of person who is on the computer every chance you get like becky, it is not good for you or the device. Being on the computer can harm even the computer. Well, you've read my arguments and ideas. Please take them into consideration." 4 4 8 +1698 1 "Computers, Computers, Computers! Thats the first thing a teenager does right when they get home from school. Teenagers just can't wait to chat with their friends on facebook and instant message. There are a lot of positive and negative things about computers. In these paragraphs below I am going to give you my opinion, tell you how people can manage there time better and the effects it can have. My @CAPS1 experience with computers is that they have @CAPS3 much information but sometimes it can be too much. Today, a lot of children and teenagers are getting bullied. People can send horrible messages to someone. They rather do it on the computer because they don't have to say it to there faces. that is one thing that I don't live about computers is that people can get harrased. Other then that I think the computer is a great resource for learning about things and also connecting with people from your past. Not a lot of @CAPS2 want to see there child coming straight home from school and go right to the computer @CAPS2 have to be strict with there child when it comes to computers. They need to manage there time @CAPS3 they can alson do there homework, after school activities etc.... Studies have shown that children who go on the computer every single day for more than two hours are most timely to see their grades drop. That's why if you mange your time it wouldn't be a problem. You want your child to have a balance in there life, @CAPS3 manage the time where they are not all day long. There are positive things about the computer and as well as negative things. The computer is a great way to research people you are learning about in school and find people from your past for example, facebook is a great way to stay connected to your old buddies. Google is also a great tool because you can type in anything and it wil give you a hundred websites to chose from a negative effect about it is that people are likely to say things on it to other people that they wouldn't dare to beg to there face. It also prevents you from doing other things because you get @CAPS3 consumed about the computer you forget your main priorietees. In these paragraphs I gave you my opion on computers and how there are posotive and negative things about them. I also explainted how it can taking up your time with your main priorities in life and how to manage your time wisely. The computer is a great tool but don't get take to much advantage of it because it is not a priority." 4 4 8 +1699 1 "Dear Newspaper, I think that computers have a good effect on peoples' lives. You can do alot of stuff on the internet that costs too much to do without it. You can study different foods and cultures around the world. If you play games online you can get better hand-eye coordination skills. There are also things you can buy to video chat with family or friends. The computer is very convinient and useful. If you are interested in a place in the world you can type in the name of the place and get facts about cultures, foods, and more. Instead of buying an airline ticket to see @LOCATION1, you can go online to learn @CAPS1 language. You can also study food s that people eat and the clothes they wear. You can also learn sports and games. If you play games on the computer you can get a better hand-eye coordination. Most games you can daunloads and are free. There are puzzle games that challenge you, action that are fun and take rapid button pressing, and adventure that let you explore new lands. And in alot of these games you can talk to people and make friends. There are otherways to talk instead of games. There is email, chat rooms, facebook, twitter, and video chat. With any of these things you can talks to friends or family around the world or in your state/country. All of these you can either download, go on the internet for, or buy them. You can talk to old friends or you can talk to family you havent seen in a while. Video chat you can see eacho ther, face book you can share pictures and chat rooms you can talk with multiple people. In conclusion computers are very convinient for our society today. Whether it's studying the world, having fun, or talking to people you know, the computer has many wonderous things for people" 4 4 8 +1700 1 "What is technology? Technology is defined as anything that helps enhance our way of living. Technology is all around us. Our beds, houses, televisions and even chairs are all forms of technology. There is one form of technology however, in my opinion, has revolutionized modern day living as we know it. This form of technology is called the computer. My outlook on the effect the computer has had on our society is quite positive. Just think of all of the things we rely on this device to do. There is one thing, however that really sticks out in my mind; @CAPS1. The computer is perhaps the greatest form of @CAPS1 the world has ever seen. E-mail is basically sending a letter to a friend without the hassle of mailing it out where it might get lost or stolen. E-mailing is two simple steps: @CAPS2 and @CAPS3. Not only does it lower the risk of the letter not getting there, but it is also much quicker. You hit the ""sen"" button and before you know it, a new letter is sitting in you friends inbox. Another method of computerized @CAPS1 is my personal favorite, instant messaging. Instant messaging allows you to have a conversation with someone that could be miles away. And it's okay if you decide to go get a soda while you are instant messaing because unlike a real conversation, that isn't rude. These are just two methods of @CAPS1 that the computer enables us to have. Tehre is a variety of other that, much like these two, enhance our way of life. I believe that the main reason the computer has enhanced our life so much is because of one giant thing: the internet. The internet makes everything we do on the computer possible. If i want to gon on the computer and do research on a topic, the internet takes me where i want to go. With millions of different websites, the internet has endless possibilities. If I'm interested in arcade games, I can go on the internet and play them. If i have to write a science report, then i can go on the internet and collect research. If i want to listen to music, tehn i can go on the computer, look up a song, and listen to it. And guess what? If i'm looking for a funny video just for a good laugh, then the internet can find me one! The internet is perhaps one of the greatest things ever invented. It's just another reason to love the computer." 4 5 9 +1701 1 "The computer is able to do so many things. It think computers have posotive effects on people. But some experts believe they dont which is why I'm writing this paper so that I can explain the positions from both sides. Did you know most everyone who his a house their chances of having a computer is just as lucky as having a telephone. Computers believe it they help us in life wether @CAPS1 to keep information, talk online, find a good recipe or what ever it is @CAPS1 there. That is why computers are so positive. It we did not have computers there would not be any technological advances that we have @DATE1, @CAPS1 one of the most important devices. Let me share my expierence okay. I had a job interview right well I could not find that street so I went on my computer and it gave me the directions I made it to my interview. Thats why I think computers have posotive effects. Now the opposite side says people are spending too much time on their computer and less time exercising, enjoying nature, and interacting with fiends and family. Well I have some people spend to much time on their computer @CAPS1 completely choice. And those are people who usually don't have alot of self control. And exercising who said that everyone need exercise in the persons already skinny what does need to exercise. For the interacting with friends and family you can do that I mean how long can a person look at a computer screen. So in conclusion you can see that computers are good but with self control they can be enjoyed with no bad side effects. So next time on the computer enjoy it but remember your friends, family and your health is more important." 4 4 8 +1702 1 "Dear @ORGANIZATION1, I as a computer user, think computers are helpfull in many ways. They help get new @CAPS3. They help function machines. They help people learn new things. Computers help find and get new @CAPS3. They provide the public in another way to find a new or another job. My brother; for example, @CAPS4 went to a university there @CAPS4 learned how to become a micanic. @CAPS4 was having a hard time finding a job, (looking for me on the street) so somone told him to go on @CAPS1.com and go to ""@CAPS2 @CAPS3"" @CAPS4 did and there on the computer @CAPS4 found a good job and still works there. The computer or great way to find a job. Computers help function machines. All the machines that we have to use and had to run by hand now run by computers. That is good in someway and bad on another way. They help make more product in less time. Today more cars are being made in less time if you've seen sometimes in of cars you saw the assemble line with michanical robot hands putting them together and that is using computers. One major problem to this is many people are lossing their @CAPS3. The computer teacher people" 4 4 8 +1703 1 "Dear @CAPS1 @CAPS2 @CAPS3, The effects computers have on people can be hurting our society or it can also be helping society. As a middle schoolers growing up, I believe using computers can be beneficial at same point but it is also damaging our society. First of all, the internet is full of innapproprate content. Illegal uses are involved and can draw in anyone with just s single click of a mouse. Anyone in the world can use the technology we have today to ""hack"" or tresspass someone else's computer. Anybody can download songs or documents illegally for free, rather than paying for it themselves. In fact, not only can someone download innapropriate content right onto their screen, they can also be inflicted upon with graphic words or view a website that involves videos with drug use. criminal acts, vulgar language and more. A recent study on internet use from the @ORGANIZATION1 for internet use includes that ""@CAPS4 @CAPS5"" has a history of a result to suicides or depression in teens. @CAPS4 @CAPS5 is a form of @CAPS5 where someone can chat or instant message someone and hurt their feelings. Not only is @CAPS4 @CAPS5 an issue, however, people can now talk to strangers on the internet. Think about how awful it would be if your child had given out their private information online and a man who said they were the same age as your child received it and lied about their age, sex, apperance, and age. Now that man can track your child down and possibly kidnap or hurt them. Secondly, the internet can also be very unhealthy and can create you to become less social. According to @CAPS7 @CAPS8 at @ORGANIZATION2, @PERCENT1 of children or teenagers that result to internet use can create a weak relationship with friends and family members if they use the computer too much. It can be very unhealthy for someone, and not just teenagers, to use the computer for an extended amount of time than they should. People can gain the effects of laziness, little brain effort, and lose interaction with the outside world. Finally, my foremost reason on how computers can be negative is how addicting it can be. From my own experience, I used to stay up late for hours using websites such as @CAPS9 because everyone else was using it. Sure, it can be entertaining and fun but using the internet won't be so much ""fun"" when your academic grades are at risk and you stop communicating with the outside world. Adiction can draw anyone in against their willpower. My own brother became so addicted to computer games that he played one game straight for @NUM1 hours straight. You can get addicted to one subject until you lose everything else you have. The internet can be great in moderation, however it can be innappropriate, unhealthy, and addicting. If technology becomes too powerful in our civilization, how can we learn to interact with our humanity. More and more peole become involved with technology and frankly it can be quite horrendous in my oppinnion." 5 6 11 +1704 1 "Dear local newspaper, I support the advances in technology, and believe that computers have a positive effect on people. I think this for @NUM1 simple reasons, @CAPS1, you gain computer skills, which can help in other situations. Second: Computers give people the chance to learn about faraway people and places.Lastly when you have a computer you can chat and talk to other people. When I think of a computer, I think of typing or a keyboard. After a few times of using a computer you get @CAPS2 and better it. You gain, typing skills, hand eye coordination and mouse skills. After jusst a few uses, your computer skills build up and you soon get good at it. When you do get @CAPS2 though, you get better quicker and more so it all works out very well. When you are on the computer, the internet allows you to search anything and everything. Weather it be a different culture or even schoolwork, a computer is helpful. When I am doing my homework, and I don't know how to another a question, I go on the internet. The computer allows me to get help with any homework I need help in, its great.I can even look up something on a different culture and compare it to ours. The computer allows me to do everything I need. Have you ever felt alone, but theres no one to talk to? Well that problem can be solved very simply, get on a computer. You can chat with people even if there is no one around. You can chat with someone half way around the world. Its amazing you can be anywhere, talking to anyone you want. A computers chat you to reconnect with old friends, and make new ones. Computers are great. When your on a computer, there is so much to do, so much you can get out of it. They are helpful and fun you never run out of options with a computer at your side. In my opinion, there is so much to gain and learn from a computer." 4 4 8 +1705 1 "Dear @CAPS1 @CAPS2, @CAPS3, walking into a room seeing people interacting with their computer screen I earning new and exciting, information they can everyday. The question is what effects do computers have on people? I certainly think computers have a positive effect on people. They teach hand-eye coordination, give people the ability to learn about faraway places and peapre, and even allow people to talk online with others. Computers can definetly have a positive on soriety. Computers have tought a very valueable to every user; hand-eye coordination! Whetver it's clicking a link to a site that you found on @ORGANIZATION2, or playing the matching same of bejeweled, you are learing hand-eye coordination. A cording to recent studies, over @PERCENT1 of people interviewed said they had excellent hand-eye coordination and @PERCENT2 said it was on the computer. Sure we all need to get exercise outside, but the computer can be helpful as long as we don't let it overwelm us. Smart people would agree that coordination is a very helpful skill. These brilliant inventions also helps us learn a bout different places and people. Picture this scenario if you will; A student at @ORGANIZATION1 has to do a project on the @CAPS4 @CAPS5 in the @LOCATION1. He goes to the library to check out the encyclopedias but... they are out of date. He then goes to the computer lab and finds it on @ORGANIZATION2 like that! This scenario shows that the computer is one of the fastect ways to get information on any subject or topic. Certainly text sources can give the same accurate information, but the computer is fast and easy. When you need information on the line. But why stop there? not only can you get information on certain people and places on these machines, you can also learn what's the newest fads, what's carrently happening in @LOCATION2, and the latest @CAPS6 gossip. The computer is definetly a easy sources for information on different areas and people. This amazing device can also let you talk to people online! There are many ways to do this. You can use the old-fashioned @CAPS7-mail, you can use a device in the @CAPS8 called someone. You of course need a @CAPS9 to do thank one. I remenber a time when I was bored so I decided to do my homework. The problem was I forgot what it was! I quickly grabbed the phone and called my class mate but he didn't answer. I then sprinted to my computer and to see if he was online. Sure enough he was! I got the home work and got an A all thanks to the computers ability to interact with others." 6 6 12 +1706 1 "Dear @CAPS1 @CAPS2, I think computers have a good effect on people and not a bad effect. I think this for three reasons. My first reason is that they relieve stress. Without a computer in my opinion things would be a lot more stressful. With a computer you can easily look things up without wasting time or being stressed out by having to look for something. My second reason for thinking computers have a good effect on people is technology. Without technology things would be so much harder. Without computers it would be harder to neatly type assignments, print out pictures, and getting information. If we didn't have technology as in computers I think a lot or things would go wrong. My third reason for thinking computers have a good impact on people is that without them factories would crash. i say this because if you think about it could in a factory is ran by some type of computer. Without that computer telling the machines what to do everything practically wouldn't work! without the computer everything would become so time consuming that no one would want to get the work done. These are my three reasons why I think computers have a good effect on people." 3 3 6 +1707 1 "Dear whom it @CAPS1, Have you ever wondered what it be like to spend all your time in front of computers? Well, if you are, I believe that should not be in front of that computer all day. As my mom says only an hour aa day is good. One reason why it is important is because you need to enjoy what life has to offer. You could do stuff like play catch with the dogs walk the dog, and (or) play over a friends house. Yes, playing on computer is fun, but you have to execise to. (you know) @CAPS2 reason why is because you can end up somewhere where you did not even need to go to. You could also make lots of new friends by going out doors. Like that's how I met trees, animals, beautiful senery. You could feel like you were having the time or your. The last and final reason why this is you can get a lot out that you could use. you could make snowmen in the winter or if it's raining you could watch a movie. you could build a lot. In conclusion building, playing and jumping (the list could go on) You can enjoy the outdoors. Just rember the three good reason why are you could use the wonderful and lovly outdoors. Go walk you dog, have friends ober or even just having out with your family and friends." 4 3 7 +1708 1 "Dear @CAPS1 @CAPS2 @CAPS3, Computers: well computers are a big thing now a days, you can look up information, learn new things, and it, keep you busy. It brings a whole package. Learning and getting information like facts, past, the @CAPS1 it helps us understand what we are living around and know how things came together a computer is like a trip to the library, all the information is pretty much the samo. You can look things uo for a project or too much. And what's is best of all i can all you on a flash in folders if computer is .You learn some things now everyday and comes in people both it up on @MONTH1 be a different website all can @ORGANIZATION1, @ORGANIZATION2 an @CAPS4 and etc some people cant live without these thing either but some times these objects on a computer like any music player you have to download misuc etc apps and at the same time havinf these things it keeps you busy and moving Computers are a big thing as you can see they put an impact in someone. Looking up info, learn now it's entertainment, are some or laptop they bring" 4 3 7 +1709 1 "Everyone loves staying on the computer. I would be surprised if one does not. I believe the whole issue is that the machine itself distracts you from other things in your life that is also as enjoyable on it is. People learn too much on it. It changes peoples whole life. The computer is like a disease or a virus that controles you and gaining your freedom from it perfectly possible. I understand that some people @MONTH1 not agree with me, however I propose that my side is the best. This is horrible. How can it? It distracts people from their life. I makes them blind to enjoy nature. Spending too much time on the computer is a horrible disease. The hard part is to get in your freedom is being able to know that it is ocntroling you. That way your door to freedom will be open. The tecknologie keeps you away from having fun, doing homework from school and having fun with friends. I know that you can break free from it because I once experienced the same thing. Technology is a beautiful thing indeed. I has so many information in it you wont even think a person it. I know even more than . However it is also very foul. Once I came up on a very horrible seen on the computer. I my i can shut it . Michines have a mind that it our and anything it. Changing a persons life is not easy. You become complitely new. Sometimes those changes are good sometimes they are bad. But a michine can make you change in ten minutes. Once you see what you like on it or what you want you can change. If you see something and you want it so bad. I you cant get if then you will be forced to get it by stealing. It is a very horrible thing to learn. All you have to do is learn to controle your self. Machines are a very bad influence on people. There are book if you need information. Computers make you lazy you don't have to read or anything it does it for you. It take over your life. You become . It teaches you bad thing it changes your life. What path would you take" 4 4 8 +1710 1 "Wouldn't you agree that computers have a great affect on people. The three reason why they have a good affect on people is because, it gives you good typing skills, its educational, and it helps you out with alot of things. The first reason why computers have a good affect on people is because computers help your typing skills. If you have a computer you will soon learn that your typing skills get very good. Each time you use the computer your hands ajust to the keys on the computer. Say if there is someone that wants to work with computers when they get older, well if they practice their typing on their computers at home they will be eligible for the job working with computers. Also computers could be good for the hearing impared. If the hearing impared use to the computers then they can get a @CAPS1 or @CAPS2 and chat with people online. This would be useful to them because since they could not hear what people say they can read what people say through the internet. Another reason why computers have a good affect on people is because they are very educational. In my opinion, computers are very educational because there are alot of websites that teach you facts about different places. For example, what food people eat in different countrys, or where that country is. A website that is the best for finding out accurate facts is www.Ask.com. Ask.com is the best website because it tells you what ever you want to know in a matter of seconds. Computers are also educational when it comes to school projects because of these amazing websites. The last reason why computers have a affect on people is because they help you with alot of things. They help you with alot of things because if you want to know how far @LOCATION2 is from @LOCATION1 then you can go on your pc and find out, or say that you lost the directions to your friends house and your on your way to their house if you brought your labtop you can go on the labtap and find where her house is from your labtop. I know your probably thinking there is such thing as a gps, well if you think about it gps's can be confusing, but your computer reads it out to you. Know your probably saying in your heads why don't you text/call @CAPS3/@CAPS4 if you think about it what if your friend does not talk clearly. In conclusion, wouldn't you agree that computers do have good effects on people. My three arguments are, they help your typing skill educational. They help you with things. please take my ideas into consideration." 4 5 9 +1711 1 My experience with commputer's is good because I can play games or do my homework. I can install my own music on my commputer and do my homework at the same time. I can also go on the internet with commputer's. On commputer's I can also do things quicker and easyer. I can also get more things done faster by getting the internet and going on it because I can do reaserch and copie and past stuff off the internet. I now have a labtop and it is preaty much portble commputer. On my labtop and it is preaty much poratble commputer. On my labtop I can make data tables and graph's and write papers and use dial up connection. Dial up connection is what I can use to get free internet by putting a presons phone number in the place were the phone number goes the labtop will call up the motem if the phone line is connected to the motem. On my labtop I also have a place to put a floppy disc in and a place for a @CAPS1-@CAPS2 to go in to. I also have a calculator on my labtop. some labtop's also have a mouse that looks like a little pad like mine dose. As you can see commputer's and labtop's are realy good to own. 3 3 6 +1712 1 "Dear The @ORGANIZATION1 @MONTH1 say that people are spending too much time foucusing on the computer and not on their homework, or getting some fresh air outside. I say those people are @CAPS1! Computers are a giant step into new technology. For example, you can use the computer to do research for school, communicate with friends online and give children some down time where they can learn about far away places and people. If you were doing a research paper for school and you have checked out all the books on the subject of your paper, but you suddenly relized that you forgot one of the most important books! You race back to the library only to find out that it is closed. Computers then come in handy. You can google the book and find an online copy of the book, so you make the grade on that paper. Also, possibly you are having trouble with math homework and you are home alone, what do you do then? That is what computers are there for! So you can easily go to your teachers website and there would be the explanation on how to do that specific lesson. Children @CAPS2 to commonicate with their friends, to some extent. Such as a homework question or just to talk for fun. Without friends children would be knowhere. Statistics show that @PERCENT1 of all children who are permitted to talk with friends, out of school stay off of drugs and promote a stronger education and grades. The internet was not just created for the heck of it. It was invented so people can communicate, childeren can do reaserch, and for fun and exploring as well. For example - learning about far away places, people, and culture, exploring animals, and even online shopping is now availble. These are necessities for all people to have access to. Without computers @CAPS3 would not know the important news when @CAPS3 needed to or information needed for a specific moment. Computers are the future (yes I am repertative) @CAPS3 @CAPS2 to have computers in our lives for communication, shopping, learning purposes, teaching, research on places, animals, people, and culture. Also for email purposes and to get important news around to everyone applicable to it. This is why @CAPS3 @CAPS2 to continue forward with computers, and technology for the future. So all the people of @LOCATION1 keep your computers, they are an important stepping stone needed for growth and moving onto the future of technology. Plus who would not want a good computer game once and a while." 4 5 9 +1713 1 "Dear @CAPS1, @CAPS2 you think people should stop going on the computer? Well, yes because they are not getting exercise. People's body start to get lazy and don't want to get up. They are not spending time with the family instead they would like to spend their free time on the @CAPS3. This is my people should stop being lazy and have some fresh air. @CAPS2 you people who spend time on the computer interact with their family? Well, no, because they think they will get entertain by technology instead of their family. The reason I don't like compter so much because you get hook on so fast you can't stop. When you interact will family you get to know them better and that is priceless. This is why it should stop because it damage peoples minds. Another reasons I would like you to hear is less time exercising. When people don't exercise you will @CAPS2 anything to their body. They start to eat too much and later they become very lazy. When you exercise you have tons of energy to @CAPS2 anything. Like bunge jump. When you excerise you look healthy and people will notive. This why excerise is the best healthy and always fit. In addition, my third reason I would like you to read is enjoying nature. Enjoying nature you can have a good time and relax. You can swim in the beach, feel the amazing breeze, and have a good time. When you are on the computer you are sitting down instead going outside and that because a habit. It will be hurting are environment because people don't want to get up to enjoy nature. This is why it should not be tollerated because people are being lazy. In conclusion, the reason why people should not spend their life on computer because they think they will be entertain by technology instead of interacting will their family. People will start eating too much and so they will become lazy. People will never leave the house and instead they are on their computer. This is why it should stop it hurting are environment people are becoming lazy." 4 4 8 +1714 1 "I agree that we shold have computers, because more and more people use computers. Long time ago we don't even have computers, but now we do. Now we have computers we should use it. If we dont use computers why we even have computers? Computers can help you to learn faraway places like @LOCATION2, @LOCATION1, @PERSON1, and other faraway places. If we don't know what is going on faraway places then we don't know what kind flag they have and what do they eat, what do they have, are what they do, and what do they speak. You can even talking online with your friends on computer! You dont have to call you friend, you can just talk to you frien on online, if you need help with your homework are you left your math text book at school you frient can tell you the questions by talking online. If your friend is in @LOCATION2 are other faraway places your friend can bring there computer with him or her so your friend can just talking to you by talking online, you dont have to call your friend in @LOCATION2 or other places. You can also learn how to type, when you know how to type you can type faster and faster. You can type storys, poem, and notes are something you have to do at school, so you don't have to write on a pace of peaper you can just type on computer. That is why we should have computers and use more. I hope you agree with me." 3 3 6 +1715 1 "Dear @ORGANIZATION1, The question is close too much computer time cause people to interact less with their surroundings? In my opinion, no computers definitely don't make people lazy and less interactive with others aroud them. First, I think that computers can sometimes make you smarter. I mean you can read about history, world news and you can research many different topics. I remember when I was younger I would love to learn about the @CAPS1. I use to search it all the time and I made a poster project for fun. Thanks to the computer I got accurate information. A survey conducted by the @CAPS2 school social studies teacher shows that @PERCENT1 of their students used teh computers to find facts for school projects. @PERCENT2 out of that @PERCENT1 end up getting better grades. Famous psycologist @PERSON2 says that ""kids and students learn more when they are on the computer researching or @CAPS7 new things."" I know you @MONTH1 be thinking that too much internet is unhealthy for people but mostly syudents. But at @ORGANIZATION1 it a good source of @CAPS7 for them. Therefore the computer helps teach everyone facts and many stays on whats going on around the world. Second, people can interact with family and friends online. i mean there's @CAPS3 where people can socialize with their families who live out of state. I remember when I was in @NUM1 grade I made a new friend and she moves to @LOCATION1 in the @DATE1 after @NUM2 grade. I keep in touch with her on @CAPS3. A survey conducted by student council at that @PERCENT3 of students had someone they know and love move away out of state @PERCENT4 out of taht @PERCENT3 keep in touch by email or @CAPS3. Famous scientist @ORGANIZATION2 says, ""People who keep in touch with family and friends tend to stay happy and not become depressed."" I know you @MONTH1 be thinking that people don't need to keep in touch with their families all the time but it makes them happier. Therefore people need computers so they can keep in touch with their families. Third, you can learn new exercise, moves or tricks. I mean you can do new exercise, train for dance competition or learn new magic tricks for you magic show. I remember when I wanted to learn how to twirl a balon between my fingers I went and found a video of someone teaching step by step on how to do it. its easier now. A survey conducted by @CAPS5 muscles @CAPS6 shows that @PERCENT5 of their @CAPS6 members get stronger and more fit by @CAPS7 new exercises. Famous athlete @PERSON1 says ""@CAPS7 new exercises online helps me stay fit for my games"". I know you @MONTH1 be thinking taht they can just go to someone to teach them BUT no one wants to pay money for something you can get free online. Therefore, @CAPS7 new exercises, moves or tricks online can help them out a lot. To conclude, does too much computer time cause people to interact less with their surroundings? No, it helps them learn, socialize with family and friends and they can get in shape with the new exercise that they learn from how to videos." 5 5 10 +1716 1 "People think that useing computers is a good thing, I think so to because there are alot of other people in this country that speak different languages and the computers can teach them insted of a person that just speaks our language. This for some people is their lives even alot of people use computers for their work. Kids also use the internet not for things such as, facebook, myspace, gmail, and alot of other web pages, I also use the internet but not as much anymore but I used to go on gaming pages like, @NUM1.com or even /cup/coffee but I dont go on those anymore that much because I have xbox live and that is a thing that the internet also comes in and you can talk to your friends. Some of my friends just fo on the computer and dont get any exercise at all but alot of my friends go on it but play alot of sports so there not just getting fat all the time. So people in the world basically have a computer but not everyone in @LOCATION2 of @LOCATION1, I think that our country should write a big pay check to those poor country and so they can get computers and so if they come here they can speak our language, or we ship that of computers to their countrys and so they dont buy any crappy computers. Also when your on a computer you can buy a webcam or it is already placed into your computer and you can talk to your friends or even show them that what you made or something like that. So I think that computers are the best thing that we ever invented or who ever do." 3 4 7 +1717 1 "Dear @CAPS1, @CAPS2 name is @PERSON1 and I want to argue about the issue of computer use in @LOCATION1, @CAPS3, I'll tell you about the benefits of owning a computer. Then, I'll talk about the whole computer network. Finally, I'll talk about the advances in technology due to the computer. I think the use of computers in our town are very good for society. There are the major benefits of using a computer. @CAPS3 is the fact you can use microsoft to write up a paper. Sixth grader @PERSON6 says, ""I would rather type than write a paper. Another reason to use a computer is a for research."" @CAPS4 many articles and facts are online about anything you need,"" says @PERSON4. The final benefit of a computer is the fact you can know about world news in a flash. ""I would've never known about the earthquake in @LOCATION3 without seeing the article on @CAPS2 homepage,"" says @PERSON5. Those are just some of the major benefits that the kids do on their computer. Now lets talk about something. That is said to be bad but really isnt; social networking. Stuff like @CAPS5 use a texting form on a computer which helps us connect without making a huge phone bill: with instant messanger I can talk to @CAPS2 girlfriends,"" says @PERSON2. Also, there is facebook which can help us connect on a global stage. ""I can talk with @CAPS2 cousin in @LOCATION2,"" says @CAPS6. Those are the major social networking tools we use to talk to people around the world. One thing that is important about the computer is the advances in technology caused by it. @CAPS3, we have the laptop which is a portable computer we can take anywhere. ""I can use @CAPS2 computer anywhere I like,"" says @PERSON7. Also, the memory card which allows us to save data on a computer and take it to school or work. Eigth grader @CAPS7 says, ""I can take work I didn't finish in school home with the stick."" The final major advance is the use of the printer,"" I use @CAPS2 printer to print of papers to bring to school,"" @PERSON3 said. Those are some of the major advances caused by the computer. That's why I think using the computer is good for us. There is many benefits to owning a computer. We talk to people world-wide when ever we want to. The computer has even been the sole purpose for many other ground breaking improvements in technology. @CAPS4 please help defend us kids in this case about computer use." 4 4 8 +1718 1 "Losing @CAPS1 to @ORGANIZATION1 are a huge part of daily life these days, which is good for businesses, and schools but for people just looking to pass time, computers are a dangerous choice. Yes, computers are a way of communication, and are helpful if a student forgets their homework or an assignment, but when it comes to boredome computers are bad. Social networking is scary in reality and too many young people are exposing themselves in making @CAPS2 or a @CAPS3 page. Also excersise is a big issue now and you aren't getting any by at a computer. On the other hand though, computers open up new worlds to people. You can type in any question or place into a search engine and instantly get results. Computers like anything else, are fine in moderation, but too much of one thing just isn't healthy. Websites like @CAPS2, or @CAPS3, or @CAPS6, are scary when it comes to privacy. There is very little privacy offered and your page can just be put out in the public. Also these w ebsites are addicting. You @MONTH1 just want to log on to check your notifications but you can end up on the computer for @NUM1 to @NUM2 hours without even realizing it. Other pass time could be running on a tredmill or jogging there dont have benefits. All you can get from an hour on the computer is blurred vision. It would be okay to be on the computer for 1/@NUM1 hour a day but not using to the internet. Websites can be a way to find computer time. Edline is homework or an assignment. Google is helpful for research or vocab work. When websites like these are the focus on computer time, it is much more productive. Overall, I believe that computers have a negative effect on people if as many people that use computers balanced that time with time to excersise, they would all be better off." 5 4 9 +1719 1 "Dear Local Newspaper, @CAPS1 about what the world would be like without computers. Scary thought? I had the same reaction. A world without computers is a world of non-communicating people and no where to gather information independently. The benefits of having computers are that they are a way of communicating with friends and family that don't live in your area or that you just haven't talked to in a while. They also teach hand-eye coordination which is good for almost anything. Lastly, they give people the ability to learn about other things in the world. In conclusion, computers have outstanding effects on people. First of all, in my perspective, having a computer, allows me to communicate to people I've met on past vacations. I can email, them and talk to them on social networks such as facebook. This is benefical to anyone that has lost touch with friends or even family. Being able to talk to friends I haven't spoken to in a white, gives me and others the opportunity to catch up and reconnect. In conclusion, being able to communicate with others on a computer, is only I, of the many benefits a computer has! Second of all, not only does having a computer allow you to talk to others but it can teach you hand-eye coordination as well. Dereck was a channel @NUM1 news reporter, ""I can hit some far balls that take the cake for some of our games. I truely @CAPS1 it's because my mother teached me now to use a computer! ""@CAPS2 especially benefit from computers because they teach them hand-eye coordination which is great for those homeruns, or even touchdowns! Third of all computers allow students and many others to learn and look up things they don't know. @PERCENT1 of schools around the country benefit from having school computers for research. On the other hand, businessman, parents, and even teachers use the internet to learn about things around the world and to gather information to teach their classes. Overall, computers have many benefits such as they allow you to communicate with others, they teach you hand-eye coordination, and even allow you to learn about things and places around the world. As a whole, this intelligent invention of the computer is an incredible machine that seems to have all the answers and a success for realiable information!" 4 4 8 +1720 1 "Dear @PERSON1, @CAPS1 in your newspaper, I read an article that sparked my interest. The article was about the negative effects computers have on the community. I couldn't help but disagree with the article, @PERSON1 because, in my opinion, computers are a step in the right direction for modern technology. I believe computers are a benefit to society because they premote hand-eye coordination, you can learn about almost anything, and you can talk online to other people. How do computers help with hand-eye coordination, you ask? When you are typing on the computer your eyes are on the screen while your hands are typing and strengthening at an incredible rate! A study made by students at @ORGANIZATION1 shows that the chances of developing arthritis by the time you are @NUM1 dropped almost @PERCENT1 in people that use computers often. Also, the hand-eye coordination you get from typing, goes a long way in sports such as tennis and baseball. So if someone needs to build up their hand eye coordination I suggest that they take a computer class, like the ones that are offered in many schools all over the country. Secondly, using the internet on computers makes finding information on a variety of subjects much easier. Say you wanted to go on vacation with your family. Instead of calling a number, why not go online and plan your entire trip from your computer. There are so many websites that make it fast and easy. In addition, sites can teaching people how to clothings are always nearby. If you wanted to learn how to knit, just type in ""how to knit"" in your favorite search engine and there are over @NUM2 sites to help you, making it easy to learn to make a great or fix a bike. In addition to learning about new things the internet allows you to friends. After camp, I would always say ""oh we will keep in touch,"" but I never would be able to keep any promise. Once I found an instant messager or webcam application on the internet, it was very easy to talk to my friends. Every once in a while I talk to my friend who now lives in @LOCATION1! Also, my dad is always stressed about meetings with other countries, but now that he can use webcams to talk to his other international bosses, he is so excited about his meetings. He always says that the computers nowadays are very easy to use for talking to people. In conclusion, I believe that computers are a benefit to the world because they help with hand-eye coordination, make it easy to get information, and talk to people." 5 6 11 +1721 1 "Dear @CAPS1, I believe that computers are good far societey. One reason is kids cant write a @NUM1 page essay by hand the will use a computer because it is eascier. People use computers every day if it's not talking with friends playing games it peoples buenesness. I personally don't use a computer that often just to check my email and school work but that dosn't mean that people don't need them. People get excirsize even when they don't knew it like walking have so they are not of that. I personally believe that computers are not bad for but they can be helpful like a research projects like if you don't feel like looking book to find information you could go on a computer and look up somthig you could have the information at your finger tips. Why are peope so concerned about what we @CAPS4 with our. We excirsize nobody dosen't excersize we excersize at scheol when we walk home when we walk our dog take out the trash but thert might experience. Another great thing about computers is that you can video chat a live video chanel so that you can hear talk and see the person this is a great couse of if a paren is away on a burensness you can see them and talk to them I have used it to talk to friends as well. Coumpouters are also great thing becaus of the program that can with it the programs are word, excell, @CAPS2, @CAPS3 ex. They help you write essays, @CAPS4 grades, charts ex. Without coumpotors we would have to @CAPS4 it by hand wouldn't be neat it would be messy. Coumputer excersize your. The las reason why computers are so great the enternet because everthing is on the enternet like if you want to shop. Without the of your go fot it if you want to play games whatch videos you can chat with friends, post pictures, post videos I coiuld go on but I wont all I hope you the @CAPS1 got my point computors not bad for you an that's a fact kids love them and adults then so think I you took coumptor away from childre adults how would kids @CAPS4, how woud adulds fun busnesses think about what you would @CAPS4 to the world us theught computers. Hey coumptors how would you @CAPS4 your new paper. Think about its what kind of world it would be like like they ca'nt fun withouoght the coumputer inside them or the coumputr the grade for tests people don't realize that we need computers and they need us." 5 4 9 +1722 1 "Dear local newspaper, @CAPS1 people are talking about computers and what it does to us. People believe that using the computer is a waste of time. I believe that computers aren't a bad thing. Using the computers can help us learn about other places in the world. It can also show us the lives about people from the past. We can also talk to our friends online. If you want to know why computers are useful, just keep on reading. People say that computers waste our lives. I disagree with that opinion. The internet is a great way to learn about different places in the world. We can learn about the climate. The animals, and the food they eat. @CAPS1 palces have different types of culture. For example, in @LOCATION3 everyone eats seafood. In @LOCATION2, everyone eats spicy food. The internet can show us pictures of beautiful places that we have never seen before. It's a great way to see and learn about different places compared to how you live. Do you have a friend that you haven't seen in a long time? Would you like to be in contact with that person again? Well the internet is a great way to do this. It allows you to make an account such as twitter, facebook, @NUM1 and more. You can search up your friends name and magic! You finally have the chance to talk to your old pal again. You would be thrilled to be able to talk with them again. @CAPS1 kids use the computer in order to do their history projects. Well the internet is here to help. You can search up famous people from the past or people from now adays. The internet allows you to see and learn about these people's past. One example is @LOCATION1. He was the first president of the @ORGANIZATION1. You can learn so much about him like where he was born, how @CAPS1 family relatives did he have and more. So you see, the internet is a great use for kids. These are my reasons in why I believe that computers aren't bad. We still have time for family, friends and any fun outdoor activity. We can learn about different places in the world. We can talk to friends online, and we can learn about people from the past." 4 5 9 +1723 1 "Dear newspaper, @CAPS1 you think that computers have bad effect on people today? I know I don't. Over @PERCENT1 of people today have a computer. On a computer you can find great things about a place and people. If you don't have the best handwriting then you can type it and computer can help you look stuff up. @CAPS1 you want to go and look you your favorite hockey player? Instead of going to the library and hoping that theres a book on him. You can just @ORGANIZATION1 his name and hundreds of different websites using will came. That will save a lot of your day and it will save a lot of you money. If you go on a family trip each year to the sum. Place you need a change? Then you can look up another place online that @MONTH1 has the same features but it @MONTH1 be way closer then going to @LOCATION1 each year. So, if you have a computer then you can look places you @MONTH1 want to travel to or look up cool facts about your future sport player. If you have messy handwriting and its getting harder and harder for your teacher to read then you can just learn how to type it up on the computer. At least @PERCENT2 of students in schools today are getting zero on homewrok or test because their teacher can't read their hand writing. If you type it up on a s computer then you will spelling or grammar as you ever you for sizes and color as pictures are make your grade high to the fact you little more work into you die. So, to all the people who think that computer help anyone well reasons why computer can help someone. Computers can help kids find something or can help them computer can also find video about your favorite player or about you favorite hockey players give warning not the playoffs. You can find all good stuff online. You can find your favorite song for your cellphone. Over @PERCENT3 of people get the song from the computer. Also the computer can play the favorite song on the computer. For example if your favorite band was drop kick murpheys then you can @ORGANIZATION1 that are you will find all of their songs. Alot of people think that computer are not good for us. But, I say they are wrong. You can find info about there future person they can look up there. If you have messy handwriting then you can go and type it up lastly you can songs, video, and much more when you browse the web. For example, @LOCATION2, @MONTH1 be there very own website. Computer can help kids find info better we type your paper sloppy." 5 4 9 +1724 1 "Dear NewsPaper @CAPS1, Have you ever taken into consideration how much an effect technology has on our society? Well, for numerous people, computers are their lives. They help adults stay in contact with their friends. Also, it gives users usefull information about anything you can think of. Computers are a great tool to help us with our lives, they help us learn skills for later in life. People who use computers do not spend too much time on them, we need them to live a good life. For example, the internet has many websites that keep people in touch. There are countless sites and to name a few, @CAPS2, @CAPS3, @ORGANIZATION1, the list goes on and on. Many adults begin to realize that childhood friends seem to fade away as time goes on. With computers, you can chat with each other all night. In @CAPS4, it is also a convienient way to contact friends if they live in different places around the @LOCATION1. Moreover, computers are chock full of information. If a family wanted to take a vacation, they could use the computer to find a place they would enjoy and book a flight there. Also, if a student needed to do a report and was not able to go to the library, he/she would be able to use the computer to get the info for the report. Lastly if someone had an ailment and didn't know it was serious enough for a visit to the doctors office, they could look it up on the internet. they also have many sites for that sole purpose such as @ORGANIZATION2. Lastly, computer users learn valuable skills that these who don't will never have. Just knowing how to work one is an important skill but there are many features computers have that will help when a job or in college. For instance, making a power point for jobs or just slideshows of a party in your back yard. In @CAPS4 , typing is a valuable skill that most jobs nowadays require. And using the computer fine tunes hand-eye coordination. Although some @MONTH1 say that staring at a screen all day isn't healthy, @CAPS5 of @CAPS6.S.A citizens say using the computer is healthy for their social lives and we should use it in moderation. Computers are amazing tools if used properly and in moderation. The time has come to tell the people computers are usefull to society. They help social lives, teach us skills and, give us information on countless topics. People need them to have an enjoyable life. So, write an article regarding the need for the use of computers @DATE1 and notify the people they are making the right decision by using them. " 5 5 10 +1725 1 "Dear @CAPS1 @CAPS2, @CAPS3 a world where nobody has any hand-eye coordination @CAPS6 they try to cath a ball it slips away. There are no friendships or communication with other countries. Is this really what you want? Computers do have positive effects on people. For example, they help with hand-eye coordination, give people the ability to learn about faraway places and people, and even allow people to talk online with other people. Computers have a positive effect on people and the society. First, hand eye-coordination is not something that all people have. However, you can make it better by using computers and that is a fact. Computers @CAPS4 said that computer help @PERCENT1 of @CAPS5 with their hand-eye coordination. For example, my mom used to have horrible hand-eye coordination but now that she uses a computer and it is much better. Oprah said, @CAPS6 I was young I couldnt catch a ball but now that Im older and using computers Im the best. @NUM1 out @NUM2 people agree that computer help hand-eye coordination. Next, computers help other people learn about faraway places. For example, if we didnt have computers people wouldnt travel to @LOCATION1. @PERCENT1 of @CAPS5 agree that they would never travel if it werent for computers it is a fact that people use the internet to learn about other countries for educational purposes. Www.exploretheworld.org wrote that @PERCENT2 of the people who use the website are students. Computers help other people learn about far away places. Finally, computers allow people to talk online. @PERCENT3 of people on facebook have at least one friend who live out of this country. It is a fact that countries are better allies @CAPS6 their people get along.Www.internationalfriendships.com wrote that they have over @NUM3 users who talk with people from other countries for example, my friends mother was born in @LOCATION2 and she talks online with many of her friends. Dr @PERSON1 said,@CAPS8 friendships are the best kind because you learn about other cultures. Computers are a wonderful way to talk to other people. Now @CAPS3 a world where every country got along because of online friendships. Where adults could play a game of baseball because they got their hand eye-coordination back. Where students could learn about distant places they didnt know existed. Does't that sound great? Computers teach hand-eye coordination, give people the ability to learn about faraway people and places and allow people to talk online. So @CAPS1 @CAPS2 computers do benefit the society." 5 4 9 +1726 1 "Dear @ORGANIZATION1, @CAPS1 you know that @NUM1 in every @NUM2 @CAPS2 families own a computer? Computers can be helpful if you need to write an essay for school, but when it comes to family vs. computer the average kid will usually pick the computer. Computers are taking away family time, exercise privledges, and time spent on school on school work. ""@PERSON3, get off the computer and come play '@CAPS3' with us!"" @CAPS4 mom's will say this to childeren at least once as week, the answer that is @CAPS4 common is ""@CAPS5!"" @CAPS6 childeren from the ages of @NUM3 to @NUM4 would rather spend time on the computer weather it's playing games or talking with friends. This is on issue that needs attention. Families should start to spend more time together instead of hanging out in front of a screen. My friend @PERSON1 has a little brother that is always playing games on the computer. Whenever @PERSON1 wants to play hide and go seek with him he always finds a way out of playing with @PERSON1 play computer. Aport from spending time with family computers take away @CAPS6 kids exercise privlidges. One example is that last week it snowed and I wanted my neigbor @PERSON2 to come outside and have a snowball fight with me but, she said had to finish a level on a computer game and it was realy important. This proves that it takes away time outside alone with exercise. A walk in the park with friends sounds relaxing to @CAPS4 people except for @CAPS4 teenagers would rather talk to their friends using a computer instead of actualy spending time with them. Lastly if time is being spent staring at a screen. When does homework got done? I took a survey recently among the eighth grade and the results showed that @PERCENT1 of the people that don't do their homework are due to spending too much time on the computer. In my science class a boy named @CAPS7 never does his homework. I asked him why one day and he says it was because he was talking to his girlfriend who also never does her homework because she always has something to do on the computer. @CAPS5 time spent with family, @CAPS5 exercise getting done, @CAPS5 time to play outside, and missing homework assignment are alot to sacrifice for ""@CAPS8 one more level."" I you want to help me get childeren not spend so much time on computer, write on artical on this important issue in one of your newspaper and please consider my ideas." 4 5 9 +1727 1 "@CAPS1 you want people to be over weight? @CAPS1 you wat our beautifal out doors to be ruined? And @CAPS1 you want familys to be distant because they are to pre @CAPS2? Statistics show that @PERCENT2 of familys dont talk because they are to preocupied with computar games. The issue to grapple with is @CAPS1 computars have an affect on people. Yes, I think that computars have a negitive affect on people based on the following reasons. People spent to much time on the computar and dont get enought exersize, they dont enjoy the nature that we have, and they dont inter act with there family and friends. People spent to much time on the computar and dont get enough exersize. Statistics show that @PERCENT3 of people that are over weight spend more time on the computar than on the track. I remember a time when I was over weight be cause I spent to much time on the computar. One day my mom took the computar ant threw it out the window and I had no chioce but to go outside and get some exersize. @CAPS1 you want kids to be over weight like I was? Many people dont get to enjoy the great out doors because they are to preocupied with the computar. Lisa, a volentere worker in @LOCATION1, says "This feild used to be a vast array of plants and animal life, but now it is a waste land because of computars. No one had the time to worry of the natural wonder because they were to @CAPS2 with there computar animated jobs and didnt care what came of it. @CAPS1 you want this to happen to our country? @PERCENT4 of high technological places are dirty with very little plant life because the workers need to tend to the computars rather than the bushes. Some familys have a hard time talking about their dayly lifes becuse they spendin to much time on the computar and dont spend the time to talk and get to know each other. Statistics show that @PERCENT1 ofdevorces are related to not being able to have aconversation and with more technoligy on the way that number will grow. I remember that my parents got devorced because my dad spent more time on the computar than talking to me or my mom. Most people think that computars are good for research. Yes, but you are still cooped up in the house insted of in a big library with all the information you need. I think that computars have a negitive impact on people." 5 5 10 +1728 1 "Dear @CAPS1 @CAPS2 I believe that there is more and more controvosy about computer and whether they benefit society or not. In my opinion, computers are a wonderful resource that will soon become a household item. I am writing to persuade you that computers have a positive effect on people. I believe computers are a good thing because they allow people access to more knowledge, they allow people to stay in contact with people they dont see very often, and they allow people to keep up and know whats going on in modern life. One reason computers are useful is that they allow people to stay in contact with people they don't see very often. Today, parents don't mind sending their children off to college as much because they can actually see them using video chat websites like @ORGANIZATION1. This feature on computers has a big impact on the life of people today. People in @LOCATION1 can talk with people in @LOCATION2. This type of often allows for people to share new and inventive things they've discovered. Another reason computers can be useful is because they help people keep in touch with modern life. Many companies are now erasing newspaper ads and putting them all on computer websites. Some companies are only selling items on their websites and shipping them to the buyers. With computers students can also get their homework done and send it to their teacher by email if they cannot make it to school that day. There is even at home colleges now where you take your class online. I believe that in a few years from now more and more people will do business with computers and more stores will sell online only. Finally the last reason I believe computers are a good idea is that they allow people access to more knowledge with the internet. There are websites soldy devoted to history and information on many things. Also there are blogging websites where people can debate on information or get questions answired by real people who @MONTH1 know a lot about the topic. Another thing on computers that helps you get informed is websites like wikipedia where people can search a topic, read history about it, and follow links to other websites if they want to pick apart the topic even more. Overall, I believe that computers area a great resource to human kind and will be used for more and more things in a few years. I believe computers are useful because they allow people access to more knowledge, the ability to keep in touch with others, and to keep in touch with modern life. I believe that in a couple years there will be liss stores on the streets and most will be online because it is much cheaper for the companies. So, most people in a couple years will be computers and use them effectively." 4 5 9 +1729 1 "Computers have gotten more advanced over time. They have even gotten smaller and smaller, and yet people still don't understand the dangers that computers have on society and their personal life such as; stress, addiction, and cyberbulling. I am here to write about how computers are a nuisense in our lives. First and for most, computers are one of the laeding causes of stress in daily life. About four out of every ten people that are stressed are stressed out because of their computers. For example, if you were writing an important document or sending an email to your boss about work and your computer suddenly crashes, would you be upset? Would you feel like you want to rip your hair out and throw that computer out the window? I'm pretty sure that you would because your data is lost, you will have to restart your computer and, worst case senerio, take your computer to the electronic store to get it fixed. Another cause of stress is if someone hacks your computer by uploading a virus. Hacking was @CAPS1 become a world wide sport. There are books and instructions on how to hack a computer and the government can't do much about that since the first amendment gives you the write to publish what you (freedom of speech and press). Just look what happened in @LOCATION1. A computer hacker hacks a computer and shut of power to an entire city for about @NUM1 days. Also if someone upload a virus into your they can take all of your personal information, like your social security number. These two factors will cause major stress in you daily life. Secondly, people spend too much time on the computer at home. A recent survey shows that six out of every ten teenagers spend more that two hours on the computer. This make them less social meaning they won't spend time with friends, family, or even try out for sports. They won't get the recommended one hour of exercise a day." 4 4 8 +1730 1 "Many people debate on whether on net computers have negative effects on them @CAPS1 believe have negative effects on them @CAPS1 believe computers are an asset to society because you can access almost anything. That is the problem. The content on computers is affilicted upon everyone that sees it, Computers also don't help people get healthir, anf if you need to research something books are more help than the internet. For starter, the contents on computers and the internet are too much for people and society. @CAPS4 I'm saying is way too much can be accessed on the internet. Derrogatory and pornagraphic websites harm people the @CAPS1 especially @ORGANIZATION1 and teens. Chinese government officials have cut off access to the @CAPS1 dangerous websites. Chinese readers started ""@CAPS3 belive the things that are easily accessed on computers are poisoning the minds of the youth."" The internet and computers are waiting to explode and invade the minds of everybody. Secondly, computers aren't metally from computers but physically unstable also. Computers offer of games for @ORGANIZATION1 to play. These games start off fun but they become habits. Don't get me away though games can be fun but when a child plays a game for hours a day there is a problem. The problem is that kids are not getting enough of the exercise they need. Studies performed by the @ORGANIZATION1 know that @PERCENT1 of child who play computer generated games are overweight. Therefore I believe games are harmful habit to young @ORGANIZATION1. Lastly, many people do research on the internet. but some facts are actually @CAPS4 im getting is that no one need a computer to look up or do research on projects. Instead go to a library. Many find books boring but it will help in the long . I remember a time when i had a project dure for @PERSON1's in @NUM1 grade on @LOCATION1. I looked up information on the internet instead of using a book just to learn that the facts were actually highly in accurate . Therefore, never depend on the internet as a source of research. from derragatory content, to unhealthy youth, to innacurate research. Computers are not assets to society but issues. In my opinion i believe computers are actually doing more harm than good to everbody that uses them." 4 6 10 +1731 1 "Dear Local Newspaper, ""@CAPS1 people have any viruses in there head?"" @CAPS2 they need a maricle to pop up away from the computer. Why I stated that is @CAPS2 its unhealthy for many people. Its not using time wisely. But most importantly, it can get you into trouble you don't want to be in. Stick around if you want the anecdote for the computer virus so people can be cured. OMG!!! My stepfather needs to get of the computer! It's unhealthy the amount of time he spends online. He needs to get up and move around. But instead he just sit there online everyday eating. Another reason why its unhealthy is, as you get older your bone's get weaker and when your old you can't move lik you use to and want to. Man just think, if we didn't have a computer, all the time/money people spend on computers can be spent for stuff more useful. For example @NUM1 out of @NUM2 people love computers more than life itself. @PERCENT1 of the world spend their time doing somthing active instead of being on the computer."" @CAPS3 an computer is nice but you got to know that you, can't get controlled by it. ALERT! ALERT!!! Sirence is getting closer and closer to my house. I am getting scared @CAPS2 I am online and i'm wondering if i did anything wrong. But it wasn't me who the cops was coming for, it was my next door neighbor. I guess he was doing illegal stuff online that he had no buisness doing. See computer's can get you into trouble. For example, I remember when i got into trouble with my parents and they look the computer away from me. Now, you know why computers effect people. How unhealthy it is, to many people. Why it takes up so much time from people's life. And all the trouble it puts people through." 5 4 9 +1732 1 "Dear, @ORGANIZATION1 are a major part in everyday life. They are used by just about everybody. There are so many benefits if you know how to use one propurly. They help you through everyday life whether your trying to find this song that is stuck in your head or trying to file you taxes, computers are a nececity in every house hold. They are also a great way to learn. You can look up a question that has been buging you or you could learn to play a new song on your favorite instrement. Either way your learning. So I think that computers deffinetly have more of a positive effect on society then a negative one. Computers are also a great way to interact with family and friends. Some computers even have built in cameras that lets you hold conversations with peers through the computer while seeing each other. This is great if you have family that lives far away, or your in a long distance relationship. Another benefit from the computer is that it is great for organizing things. Wheither it been @CAPS1 or @CAPS2 you can count on your computer to keep it all organized some computers also have a built in callendar that could help you plan out your day. But say you don't know what to do that day. Well that brings me to my next point. Computer are also great for looking up places. For instance say you fly to @LOCATION1 for the first time on a buisness meeting and you arrive a few days before the meeting. So maybe you diside to go sight seeing to some of @LOCATION1's most eligant spots, but have a computer you could look up some spots and be on your way to having a great day. Overall I think that computers make the world go round. They will never die out, that is why everybody should know how to use one, and if you don't you should hurry and learn as soon as possible." 4 4 8 +1733 1 "I think that computer are a good benefit for people because those who support advances in technology believe that computers have a positive effect on people. For example, they teach hand-eye coordination, give people the ability to learn about faraway places, people and even allow people to talk with other people. My first reason, is that important people around the world used computers to have a better future on life. The people that use computers have important jobs. For example, a judge, an enginere, a lawyer, an archytecht, a scientist, an archeologist etc... This is why I think that computer are helpfull for people. My second reason, is that computer could be helpful with kids because computers could help kids get better grades at school. It could help develop a smarter brain in many ways. The first way that it could help develop a smarter brain is reading a lot on the compute. It helps by knowing the meaning of new words. I helps you speak correctly and clear. That is why I think that computers help develop a smarter brain. My third reason is that it help adult connect to different places at the world. That could be a hobby for adults that does not have something to do could have a good time. My conclusion is that with computer you could have a better life. Computers could help you get a better future." 4 4 8 +1734 1 "Dear conneticut @CAPS1, you like to catch up on your favorite television showscar shop for the latest trends? Or maybe even planning out a get together with some of your old friends? Well with todays great technology you can do that on the computer! I can see that the experts are trying to decide whether or not computers are the healthiest thing that benefits our society but in my opinion I think they are great! As you @MONTH1 not know I am @NUM1 years old and have a @NUM2 year old brother; we spend alot of time on the computer not just for homework. I like to shop online for discounts and sales where I know thing are cheaper than in stores. I know my brother likes to go to concerts and buy himself the latest video games. My grandparents are older and don't watch alot of tv and read the Newspaper so the computer is great for catching up on your favorite tv shows and or the news. With these great pieces of machinery you can chat up a storm with old friends on facebook, @CAPS2, and @ORGANIZATION3. @PERCENT1 of teens @CAPS5 are shopping by brand names, like: @CAPS3, @ORGANIZATION1, @ORGANIZATION2, @CAPS4. All of these clothes and designer stuff is everything we want, but half of us don't have the money. If you go on the computer you can get all of these names and items for less than @MONEY1 compared to %@NUM3. Computers lower the price of things we want and need. I, @CAPS5 a days grandparents try to have a decents conversation with their kids or grandchildren but they go right vack to when they were little. As a grandchild to my @PERSON1 all she used to talk about was her days going through the great deppresion, but with computers she got to catch up on the news and @CAPS5 I can sit down with her and have a great conversation. You can also catch up on the shows you are missing when everyone is talking about them in school. The kids won't be missing out! When I was in @NUM4 grade I got my first facebook, I thought I was so could! That @DATE1 I went to camp and met all these new kids and found out that they all have facebooks. @CAPS5 I keep in touch with them, with out lossing my friendships. You see, I know the scientists or experts are probably smarter than a @NUM1 year old girl but I know that most teenaters and parents have facebook and say its great because we connect with people around the world. So I know these experts are going to make the best dicision on whether or not computers benefit our society but please take my ideas into consideration." 5 4 9 +1735 1 "Dear @CAPS1 @CAPS2, The issue before us is that people are addicted to computer. S I think we are not. In addition to all this some people can task and many things like hang out with there family and friend but most importantly enjoy life. In a way computer privliges can be as like your enjoying life. Say if you an your friend has the same computer which includes webcam, video messaging and more. That's life well what im trying to say is that yall can talk see each other, have private conversations. Computer's dont alway take you away from the important people or things in life. Some computers can help you, you can take school, learn how to write essays, learn how to read, and much more. Computers can be a success to some people. Only thing that can take you away from having fun with your family and friends is yourself you cant blame it on a computer. Imagine life without a computer what would you do? How can you survive? For example if you were giving some homework that you had to do on the computer and theres was no way for you to do that project in school. How would you do it? Some people need computers. I think if they thought and knew we was going to get so excited about how cool our computers' are they shouldnt so much new technologies in our life. Now you can probably see why I think we need computer and how it can sometime benefit our society." 4 3 7 +1736 1 "@ORGANIZATION2, @CAPS1 you imagine the kids in schools that you yourself run not being able to research on computers? Would you be okay with kids not having the option @ORGANIZATION3 typing their homework? Do you think the adolescence @ORGANIZATION3 @LOCATION2 would want to waste paper because @ORGANIZATION3 their messy handwriting and mistakes? I would hate to live like that, and I hate to live like that, and I know my peers would agree. This is just one @ORGANIZATION3 many reasons why computers have a positive effect on people. Other reaasons include, citizens @ORGANIZATION3 the world need an easier way to communicate with each other, and some people have to work at home. I know you as a @ORGANIZATION3 would not want to upset as many people as taking away computers would. First @ORGANIZATION3 all, think about the schools that the @ORGANIZATION1 runs. Now picture this; kids turning in eight page essays to their teachers, when typing it would have taken three. Imagine those kids the night before, scribbling words away with their cramped hands, typing to write as quickly as possible. These children have no computers, and therefore their teacher will have to take the time to try and comprehend the illegibal students' handwriting. I @CAPS1 almost see the kids screaming, their eyes darting around as they struggle to finish their high priority papers. If there were no computers, then this is what would happen to children. Also, students use computers for research; learning about different parts @ORGANIZATION3 the world. As a @ORGANIZATION1, I doubt you @CAPS1 say that research is a negative affect on school kids. I mean, unless you didn't want them to learn. Secondly, I want you to close your eyes. Think @ORGANIZATION3 yourself calling your best friend who lives in @LOCATION1. He does not pick up, so you walk to your clean, shiny black computer. You hear the clickety-clack @ORGANIZATION3 the keys as you write him a message, and the wooshing sound that your moniter maes when you press send. It is kind @ORGANIZATION3 amazing how advanced our technology is, how @CAPS1 you send a message from @LOCATION2 to @LOCATION1 in a matter @ORGANIZATION3 seconds. You couldn't possibly say that all the hard work put in to makng computers did not have a positive effect, could you? I know that I talk to my friends in @LOCATION3 all the time, but not on the telephoone. You see, my family does not have long distance calling, so if I didn't have a computer, I would never be able to talk to her. I know a lot @ORGANIZATION3 my friends have the same issue, and if not then the time difference between locatiions makes it hard to call people. Have you ever had this problem? Would you want the effect to be that you couldn't talk to some @ORGANIZATION3 your friends anymore? Most importantly, I would like to tell you a story. When @CAPS2 five, my daddy used to tuck me into bed every night. It was my favorite part @ORGANIZATION3 everyday. But then, when I was six, my dad got a job that required him to work late every night. He stopped coming home and tucking me in, and I didn't understand why, being as young as I was. I cried every night for three weeks. After those three weeks, my dad's boss told him that he could work from home... if he had a computer. His work gave him a computer, and he was back to tucking me in every night, and he still does now. If that wasn't a possible effect, then I don't know what is. Many people are able to work from home with computers, which is just another reason why computers are helpful to all citizens @ORGANIZATION3 the world. I'm you, a @ORGANIZATION1 @ORGANIZATION3, needs a computer to work. Although I @CAPS1 see why some people @MONTH1 oppose to computer, I completely and utterly disagree. Computers help people with working, learning, and even communication! People @MONTH1 think computers @MONTH1 cost too much, but you @CAPS1 find them for they almost any price range. I do agree that citizens should not spend too much time on the computer, but it still has a totally positive effect on people @ORGANIZATION3 the world. I know that a @ORGANIZATION3 @ORGANIZATION3 the @ORGANIZATION1 should agree." 6 5 11 +1737 1 "I agree with the computers helping people. To start with, computers have a possitive affect on us. They also give us the ability to learn. Also it allows people to talk online from far away places. So, yes, computers are good for people. First of all, computers do have a possitive affect. The computer @MONTH1 give some one motivation. Or it will help someone find their lost pet. Also it could help you get a job. Plus you can find a safe home with it. So, ya computers do have a possitive effect. You can also gain the ability to learn. This is by helping deth people with sites on sighn language. Also you can get information on places you will visit. This will help learn about diffrent contrays. Most importantly it will help kids an adults on school work or work. This concluds that you can learn things on the computers. The computer also allows you to talk with people far away. This will come in handy for familys. Also people who have hospitilized family. Plus fathers or moms in the military can talk with their kids. Most of all though is adopted kids could talk to their birth parents online. Here is another reason why computers are good. This is why I agree with computers. They have a possitive affect on people. They given us ability to learn! Lastly it allows you to talk to people you love that are far away. So, in conclution, it is a benifit for people to use the computers!" 4 4 8 +1738 1 "Dear readers, People around the world are starting to use computers now more, often, but theirs also people that dont agree that it benefits society, @CAPS1 not one of those people. I agree that this benefits society. One reason why I agree is because sometimes theirs teens and even adults that can chat online with their friends if they cant contact them in any other way. Another reason is because in all school teacher give their students project to do over vacation or weekends, for the projects they can look for information in the computer. The last reason is because computers can give ability to learn more about things they didnt know before. In my opinion I agree with computers benefiting society. Teens, kids and even adults would like to talk with their friends so they can get on the computer and chat with them if theirs no other way to contact them, @CAPS2 easy. You only have to @NUM1) get in the computer, @NUM2) get into a site were you know your friend might be @NUM3) log in or register in if you never been into that site @NUM4) last but not least look @NUM4 your friend to chat will teachers always give their students work for example like projects. Kids also do projects on weekends or vacation and so you dont have to go to a library to check out a book you could always get on the computer and look for the information you need their. Computers give you abilitys to learn information you didnt know before for example if your bored and you dont got nothing to do get in the computer and look up information about things like nature, books your looking for etc. I agree with computers benefiting society but not everyone, @NUM3 reason why I agree is kids can chat online with their friends, look up information for projects and find information they never knew about, what do you think @CAPS1 I right or wrong." 4 3 7 +1739 1 "Dear State legistator, @CAPS1 you live back a long time ago when there were no computers. The only diffrence now is the technology is there but you are not allowed to use it. Do you think your job would be harder. I deffidently think that computers are making your job and everyone elses lifes easier. With the computer it teaches hand-eye cordination, gives people the ability to learn about far away places, and it gives people the ability to talk to each other. I belive the @CAPS4 technology of the computer is defidently helping out society. To start, computers are helping many people with their hand eye coordination. As you know hand eye coordination is necsicarry for a good driver. The @CAPS4 statistics that came out from @CAPS2 drivers.com the rate of accidents has decreased over the past ten years. In fact it decraced over @PERCENT1. With all the computer games that they have for young kids it is improving kids hand eye coordination. Starting at a young age. With the games like @CAPS3 a majority of kids are ridding bikes skiing or snow boarding by five years old. All of these activities require very good hand eye coordination. Lastly , the resources that help with hand eye coordination are being used to help special-ed students get better at simple tasks at a faster pase. Secondly the world wide web is teaching people of all ages about places that are located thousands of miles away from their homes. Something that I personaly use my computer for is to research a location and find history on it before I go on vacation to that place. The computers in our school has helped our classes in social studies. My teacher @PERSON1 said that he has been grading more strictly often and the grades are still up by @PERCENT2 on computer and internet research projects. I should also add in that using the computers our school is in communication with a school in @LOCATION1. Once a week we email our pen-pa. the computers have deffidently helped my schools curriculum. Finally, computers are letting people of all ages talk to buisness partners, friends etc. The social networking sites have kept @PERCENT3 of friends in touch found in @CAPS4-tech magazine. I should also add in it has reconected @PERCENT4 of friends from high school all due to the computer. Another form of online talking is vidio chatting which many people are now using for buissness meetings instead of spending the money to fly to the location of their meeting. Now, for one day you should track how many hours you are on the computer for your job. I can bet the number is going to be about @PERCENT5 of the time you are in you office. The computers have with hand-eye coordination, give people the ability to learn about places far away from home, and lets people talk to each other online. So do me a favor state legislator relize and come to terms how much society needs the computer." 4 6 10 +1740 1 "I think computers have a good effect on people. They teach hand-eye coordiantion, give people the ability to learn about faraway places and allow them to talk online with other people. Computers teach hand-eye coordination. This will be used through out people lives. WIthout hand-eye coordination people will be clumsey. Hand-eye coordination is used from day to day everyday. Using a computer you have to look at the screen and type at the same time. For people who do not have good hand-eye coordiantion this will be a big help. They will be able to do more thing without messing up. Like hitting a baseball! For kids who want to play sports this could acually help. They will learn to use there eyes, arms, and hands to there advantage. Computers give people the ability to learn about faraway places. If we did not have this ability we will not be able to know what is going on around the world. Also if you have family in a faraway place you will be able to look online and see what is happening there. If something bad has happened you will know this and will be able to help them. Also to be able to learn about faraway places will help in school. If you have a report to do on of faraway place instead of looking through you can look on the internet for information. Computers also allow people to talk online with other people. This gives more comunication. You will be able to make more friends and better friends. To have the opportuniy to talk to people online is great. You can learn about someone and become friends and hang out a lot. Also you will become a lot more interactive with people. If you are a shy person this can help you. You will get used to talking to people and when you get comfortable you will talk to them in real life. This will make you a lot more friends. This will help you come out of your shell and become a lot more interactive around people. These are three reasons why I think computers are a good thing. They help hand-eye coordination give the ability to learn about faraway places and allow you to talk online with other people." 4 4 8 +1741 1 "Dear, local newspaper, @CAPS1 you like computers? I @CAPS1, computers help you learn about all kinds of things. Plus computers let you chat to people on there computer even if you can't call them. Another reason why I love computer are because when I have to write a project I can just type it!!! Computers make eveything easier. So, @CAPS2 consider liking computers. Initially, imagine you have a project due in two days. Your mom can't drive you to the library and you have no information on the subject. But hey, don't you have a computer. You can use the computer to lock up your subject and a @CAPS3 different websites will come speed quick to your screen. Most of then will help you learn about the subject and then you have time to finish it and hang out with your friends. Secondly, @CAPS4 @CAPS5!!! you frogot what page of the book your suspose to read. Also you lost all your friends contacts. Not to fear super duper computer is here. You can email or chat to your friends online and see what pages to read and get there phone numbers back. Did you know @PERCENT1 out of @NUM1 People said that the chat & email programs are @CAPS6 because they can contact friends, family, and co-workers. Finally, you can type your essay on the computer. Writing a @NUM2 paragraph essay takes to long, so use your computer to help you out. Go to microsoft office and type your essay. Computers make writing an essay really easy. @PERCENT2 out of @NUM3 people said they like typing on the computer more then writing it on @CAPS7. in conclusion, Computers are @CAPS6 tecnollogy when you have to chat to someone. Also when you learn about something. Another reason why computers are @CAPS6 is because you can type essays & papers, @CAPS8, @CAPS2 change you @CAPS10 of computers are bad to computers make us @CAPS11!" 4 4 8 +1742 1 "To whom it @MONTH1 concern; I am writing this to let you know how I feel about the effects computers have on people. My opinion on this topic is; I think that both statements are true, yes they give people the ability to learn about faraway places & people & also allow people to talk on line with others. If we did not have computers I would not have finfished many of my school process and homeworks. But the experts who are spending too much time on thier computers & less time exercising enjoying nature & interacting with family and friends. I know this is true because I know some peopel who have gotten addicted to online video games & wouldn't leave the computer for hours & I know I myself have found new website & want to learn all about it so I'll be on the computer instead of exercising. But even with both statement being true; I do not think computers efefcet on people. Because without computers alot more students would be failing classes & getting zeros// @CAPS1's on projects; class asignments & homework. Becayse they dont have a quick way to look up all their information. Also most families or friends will lose contact because they lost a fun way to communicate. i think computers have a positive effect. Don't you?" 3 3 6 +1743 1 "Dear local newspaper, I beileve that using computers is a good idea and will help people. So many people all over the world have computers. Computers are good because they help kids learn, communicate with others, and help teach responsibility. Please just listen to what I have to say. First, I beileve that computers help kids learn. If you buy computer games like a cooking game you can learn how to cook. Even if you buy the @PERSON1 you are still learning by taking care of them. There are so many good websites that you can go on like @ORGANIZATION1. People learn through playing new things and why not play with your favorite characters. Also, you can go on google and type in anything you want and it will give you the answer. You use a keyboard for all this so you also learn how to type. If your teacher gives you a homework assingment why not type it so you learn that skill. This is why computers are good for hearg kids learn. Secondly, you can communicate with others from around the word or just your friends. There is a thing called @CAPS1 or @ORGANIZATION2. You use a webcam and talk to anyone you want. There are also websites you can go on too communicate with people from all around the world. It is pretty cool because you don't have to travel there to talk to them. All of this stuff teaches you how people are different and no one person is the same. Peoples language could be different or there personality. So many communicating things make computers even better. Lastly, using computers helps teach responsibility. Kids who use internet know that poeple need privacy and that comes with responsibility because you should know that. If someone dosen't want to be bothered then don't bother them that has to do with privacy. Also, you learn to be nice on computers. If you video chatted you should definitely know to be nice and not be rude. That is how you get kicked off of these things. Another thing is people learn to take care of things a computer is worth a lot of money. Not everyone has one so you should be thankful for what you have. Don't brag, but just know you are privleged for a computer. These things are the reasons computers are good. So if you ever consider getting a computer the answer is yes because computers help kids learn, you can communicate with others, and you learn responsibility. Now you know computers are really good for kids not that bad." 4 5 9 +1744 1 "Dear Local newspaper, @CAPS1 you have a computer at home you enjoy? Computers are a big thing now in life, they help with many things. Such as staying organized, studies, and even entertainment. These are the three topics I will focus on, because I @CAPS1 believe that computers are useful and people use them a help to make life a lot more easy. Let me start by saying: ""I am a man who enjoys computers, as a way to talk to friends, listen and search music, watch videos on youtube, get school work done, and much more! Although, on main point is it helps me stay orginized. I can make many folders to store my work in, rather then losing or spilling something on the paper if I wrote it out. I can have my music, homework, projects, does work, videos, pictures, and much more saved and orginized so I know where it is everytime I go to find it. There can be no more, ""my dog ate my homework"" excuse. Moving on to the next topic. As I mentioned you can save work onto your computer, you can add without earasing as well, the work becomes neat and perfect everytime. So when you teacher is grading on neatness no worry. You can also look up information on any topic you are working on in class witch alows you to get. More information, the better the grade. Spelling is not a factor now, because your computer tells you when a word is spelt wrong. It even gives you suggestions on how to spell the word by underlining it with a red squigle line. This really helps because a lot of people have hard times with spelling. You can even get @CAPS2 to play a book you are reading, witch helps you learn new words that you @MONTH1 not have knew how to sound out. Teachers can even post notes on school websites of homework, when projects are @CAPS1, ext. No more, ""I didn't know/remember what was homework/project due. Lastly, entertainment is the biggest thing with computers. People go on every day uploading videos, pictures, blogs, and just about what ever they want. Games are played on computers by younger kids, just learning, while older kids are enjoying playing maze, driving, shooting, adventure, and much more types of games. Just about everyone using a computer knows of some chat website in witch they use to communicate with any one. Myspace, facebook, twitter, and so much more are used by people to talk, express how they feel to everyone/to just let it out), show love to someone, send birthday wishes, to @CAPS1 what ever. Those are endless possibilities at entertainment on a computer. Without a dobt, no more, ""I'm bored"". @CAPS1 you use your computer to @CAPS1 anything like this? If so you must enjoy it. People use computer for every thing from work to expressing feelings. Now what side are you at?" 5 6 11 +1745 1 "Dear local newspaper, @CAPS1 years computers didn't exist, but now many people are having internet in their homes. But to some, the effect its giving on the people is negative. However, I believe that computers have a positive effect on people in many ways. Such as, the internet allows people to keep in touch, gives them technology skills to prepare them @CAPS1 more hi-tech jobs; and allows them to find and learn about new things. Dont you think computers help society? People live in all parts of the world, and those that are lucky get to meet a lot of people from different places in the country. But, you can't talk on the phone due to long-distance calls; so with a computer people don't have to lose touch! Its quite easy @CAPS1 people to talk with others from anywhere without having to actually see them. Computers are an easy way to stay in touch with family, too. Therefore, people can talk to their distant relatives from all over when you don't even have to go visit them. Having a computer helps people to keep distant friends and family close in touch. Lets face it, the world is relying more and more on technology and computers. But, if young people start using computers sooner then in life it will make it easier to get a better job. Lots of jobs ask @CAPS1 technological skills in order to be hired; so having a computer when younger automatically prepares young adults @CAPS1 life. Besides that, there is a computer injust about every work place that is up-to-date; restaurants, hotels, retail stores. and even in construction business. Nevertheless, computer skills aren't just a good skill to have; they are a necessary skill. Last, Computers are a faster and easier way to find new things and learn more about different topics. Instead of looking through various books and encyclopedias @CAPS1 researching, why not search the topic? Although, the computer and internet shouldn't completely replace books, it is a valuable researching tool. Someone that has never been to the pyramids could easily just research the pyramids and see amazing pictures, ancient history on them, and learn so much. Computers can help you learn so much about the world without having to leave your house. Now is the time to make your decision on whether or not you think computers are giving a positive effect on people. @CAPS1 the reasons of keeping intouch, giving" 5 5 10 +1746 1 "Computers can take a lot of a person's time, but there are also benefits to having one. You could gain loads of knowledge and make interaction with others easier with a click of the cursor. The computer is the smartest thing youll ever see. All the facts of life and the world are put into it. Think of all the knowledge you would have from reading articles you find on google.com and all the other search engines. Wondering what is the best way to get somewhere? You can also look at maps of the whole world and zoom all the way to birds eye view. There's your map with just a click of the cursor. Does your child have a question from school that even you can't answer? There are help sites that can show and explain how to do your homework. Or if your child doesn't know what the homework and their friends are busy and can't tell them, most schools have websites with information about everything in school. There's your child's grades with just a click of the cursor. Your late for a party and you don't have a cell phone, but your family has one computer and you know your friend will be on. You can just log on to your facebook, twitter, or myspace and tell them your running late. It's @DATE1, no one writes letters anymore; there's e-mail and instant messaging. Letters take forever to write and if you mess up you have to start over. When you type, all you do is hit ""backspace"" and you write over only your mistake. Letters also take forever to recieve, while instant messeges come, well, instantly! Haven't seen your cousin or just want to see them? Computers are being made with webcams, or you can simply buy a detached one. You could be talking with your friend and seeing them right on your computer just with a click of the cursor. Don't think that's enough? If you explored the computer, then you'd find it can help you with a lot more than just learning and interaction." 5 5 10 +1747 1 "Dear local Newspaper, I think computer technogily is good. I think there are mang good effects on computers. I think the computer teaches us to work onlone with no ones help. Another good effect on the computer is we can talk to friends online. Also another thing is it gives us the ability to learn about it and surf the web. Another reason is it gives us hand cordanation. All of those are the reasons why I think the computer has good effects. My first topic, why I think there are good effects on the computer is we can do work by ourselves with no ones help. My first reason why I think that is because after looking up links on it and getting use to that homework would be eaiser. Also it will help you get more information on homework and you can get a better grade. Another reason is that you will be able to work onlone you will be able to get it done faster by going on the web. My second topic why there good effects is that you can go online and talk to freinds. My first reason why I think that because if you don't have a cell phone and you wanna talk to friends you can go online. Another reason is that is good is that if you can't do somthing and our in a bind you can tell the person that you can't. Also another reason it is good because you can talk to relatives you havent seen. My last two topics are that it gives good hand cordination and we can learn to surf the web. It gives us good hand cornation because we learn how to use our hands and fingers faster. Also it gets us away from typeing. You can learn to surf the web because after a while you will know were everything is and be a web master. Lastly you will be able to find everything you look for. In conculsion these are good effects. The computer teaches us how to type, and search on the web and learn about it. As you can see these are the reasons I think it has good effect." 4 4 8 +1748 1 "Dear local newspaper: I strongly feel that computer technology has a neagtive affect on the people of our society. People of our society are spending to much time on computers, and not enough time exersizing and interacting with family and friends. By starting now we can make a difference in the lives of thousands. First off I would like to say that it is imporitive that we exersize daily. If we don't fit exersizing into our day to day schedual, we are potentally putting our health on the line. Activities such as taking a dog for a walk, riding a bike, or taking a nice jog through the park are just a few ways to help your physical fitness. Also taking part in extracuricular activities can play a major part in exersize. This not only helps physically, but it helps mentally too. Finnally another method of exersizing is to play a part in your local community service projects. Exersizing every day is just one way to keep you active and off the computer. Lastly, interacting with family and friends can help you stay off the computer. Playing games is one way that can help you stay connected with your family. This can bring you closer to the people you love, and help them get to know you a little better. Furthermore you can play with your friends, and in the process develops social skills. Who knows developing social skills could help you in the future. Plus, by interacting with family and friends you can learn to be relaxed and let your life take its natural source. This is another helpful technique that can improve the quality of your life and keep you from the temptation of being on the computer. In conclusion techniques like exersizing and interacting with family and friends can help you stay off the computer. By working together and trying these methods, the computer can be eliminated from our daily rutines." 4 5 9 +1749 1 "Dear newspaper, I think that computers are great for researching things like for a car or sereach for people places and thing. @ORGANIZATION1 are great because you keep in touch with you family and friends. Like you can email them webcam chat and you can instant message them.I think a lot of people should get into @ORGANIZATION1 because you can do everything on them. You can save you picture, download music, play games. People say that some people spend to much time on the @ORGANIZATION1 well i think they should because they should learn new and different things about different countrys city or even states. I don't think there is noting wrong about spending time on a @ORGANIZATION1." 3 3 6 +1750 1 "Dear Local Newspaper, People all around the globe are using computers! Some people think this is a bad idea but I disagree. I believe that computers do have a positive effect on a persons life style. Computers help people stay in touch, computers are only getting better and they help kids in many ways. Computers definitly help people keep in touch. There is @CAPS1, myspace, twitter, facebook, email, and even video chat. For example, my cousin is in @LOCATION1 a sometimes we will go on the computer and talk to on video chat. Without this, we would have no communication with him. Many people around the world use computers to communicate. This is how people use computers to stay in touch. Also, computers are amazing now and they're only going to get better. If computers are so great now, just imagine what they will be like in @NUM1 or @NUM2 years. Plus, the more people buy and use computers the more company are going to want to invent new ones. As you can see computers are only going to get better. The last reason I would like to share with you today is that computers help kids tromendously. On average, about @PERCENT1 of kid in the @CAPS2.S use a computer every day. Kids use it to talk to friends, play games, do homework and to do many other things as well. Also, kids and adults just use computers if they need to know how to do something or even find places in their town. This is how kids are helped out by computers. As you can clearly see, computers are used all around the world for many different reasons. They help to stay in touch, they're only going to improve, and the help kids. Everyone is using computers, shouldn't you?" 4 4 8 +1751 1 "Dear local newspaper, I strongly belive that computers don't benefit society as much as people think. I think that nature can provide all of the same qualatys than any computer can. A computure can not provide fitness, real interactions with friends of family, or experience in the real world. Did you know that @PERCENT1 of children in @LOCATION2 are overweight because of a lack of exercising? Acording to @CAPS1 @PERSON1. a @ORGANIZATION2 and @ORGANIZATION1, computer systems are the leading cause of a lack of exercise. So why would a system that leads to obesity be considered a benefit to sociaty? Anotherthing on that topic is that overweight children that spend @NUM1 hours. Put off healthy activatys such as basketball or tennis wich also leaves them socialy behind and lacking he healthy experiences wich leads me to my next point. People think that computers know everything, but the truth is that their are vary little things you can experience on a computer. For example you @MONTH1 read about world war @CAPS2 but you realy know what people were thinking or what the combat fealt like? A computer can not teach you how to feal only a real life experience can do so. Many if you were deployed to an army write in @LOCATION1. You would know what its like to be in war. but playing a game or reading an article don't provide experience. My @NUM2 explamation for how computers are not the greatest affect on scociaty is true life interactions with your family and friends. Their is only one true way to see family or friends and that is personally. People claim that they talk to their friends and family over the @CAPS3 all the time but the only why to be satisfied is by seeing them for real for example a romantic relationship would fail if the only way they communicated was threw the @CAPS3. Unlike most relationships that sucseed. I hope my letter to your newspaper will get peoples attention, I would apretiate it if you joined my cause and help protect scociaty from dangerous computure technology that could cause, obesity, bad relations, and inexperience." 4 4 8 +1752 1 "Computers are great technology, but they have a terrible impact on peoples lives! Computers cause children to fail and lose their exercize. The children also put their self in danger by joining a few different websites. Dont waste your time in a boring computer screen! I am almost @PERCENT1 positive that the students who are doing poorly in school, are the students who go home, throw their back packs in the hallway, and start playing silly games online. My mom use to go on and on about how my dad spents to much time on @CAPS1, when he would only go one @NUM1 minutes a day to talk to family members. Now, my mom created a @CAPS1, that @CAPS2 said @CAPS2 was gona only go on to with the family, but @CAPS2 plays all the pointless applications, such as, ""cafe world."" @CAPS2 waste her time on @CAPS1 whenever @CAPS2 is home, when @CAPS2 could be going out and spending quality time with the family or out with friends. Something I havent mentioned is, I use to be one of those students who come home, throw their stuff in the hallways, and turn on the computer, the only difference is I didnt go online to play games, I would go on to talk to my friends I just saw! I relized after I got my report card that my gades were horifyingly terrible. My dad then disconected my @CAPS4, and I beleive my grades have gone up. At first I hated my dad for disconecting the @CAPS4, but now I want to thank him for breaking a disapointing hoby of being online whenever @CAPS3 home. He also mentioned to my sister how much exersize @CAPS2 was loosing all because @CAPS2 wanted to play online. In alot of ways, computers are pointless! Do you know how dangerous some websites can be? I once watched a television show at my aunts house, and an old creepy guy started a website were the teens had to video tape themselfs choking themselfs and who ever did it the longest won. About a hundred students died from playing the deadly game. There's also a website, ""blogtv.com."" were teens go online and go live on a webcam were anyone can watch them. I remember their was a week when my cousin, denise, and her best friend wanted to see who can get more veiwers. The two girls did unaproprient things on the webshows such as, flashing, dirty dancing, and showing body parts. The two girls were then banned from the website, but this was after people had screen shoted them and posted pictures of the girls. This should not be allowd for anyone to do, it's disterbing! Stop wasting your life people! Go out and have fun, dont let the @CAPS4 keep you home. The @CAPS4 is unsafe and pointless." 4 5 9 +1753 1 "To whom it @MONTH1 concern, @CAPS1 many hours a day do you spend on the computer? Too many is my geuss! They are warping the minds of people all over, and in my opinion things should go back to the way they used to be. Some people @MONTH1 disagree, and say that computers help children who are in school. That @MONTH1 be true, but honestly only a couple decades ago the average student didnt even own a computer, and school were teaching the same materials without the usage of them. Also, some children use computers to cheat on homework assignments and essays, and I'm sure many people would agree that that is not helping education for schools. Another reason computers @MONTH1 not benefit society is because of the dangers of them. Sexual predators sworm the internet, and many people talk to strangers over the internet that @MONTH1 be harmful, without even realizing it. A third reason computers @MONTH1 not be help society @CAPS2 you can see, I feel very strongly about the negative effects that computers have on society, for many reason. I hope you can agree with me " 4 4 8 +1754 1 "Dear Local Newspaper, @CAPS1 the men and women who write everyday for a living, I would like @CAPS2 you were to write rection on computers. They teach @LOCATION3 faraway places, help build hand-eye coordination, and let @LOCATION3 talk online. Computers are part of everyday life and needs to be told about. First, computer let @LOCATION3 learn about faraway places without leaving the rooms. One of my mom's friends, They decide to move to @LOCATION2 she didn't like computer so didn't look at @LOCATION2's laws saying, I'll find out when I got there. ""@CAPS2 did find out the laws she didn't find enough cause cause she was arrested multiple times in her first few years. A few monthes after her last arrest she came back to the @LOCATION3 where she could deal with the laws. @LOCATION2 is a buetifull country and all of arrests were accidents because she didn't know the laws. Ten minutes on computer searching the laws in @LOCATION2 could have kept her in @LOCATION1. Next, comptures improve hand-eye coordination. From a survey @PERCENT1 of children that spend more time on computers are better at tennis, and at baseball then others. @PERSON3, a gym teacher at the @ORGANIZATION2 says, ""@CAPS3 of these kids that spend time on the compture are weak and need to get some exercise.Dear local newpaper: @CAPS1 you being the local newspaper, you have the power to say how you feel about the effects computers give to people. I believe that computers give great effects to people because it teaches hand-eye coordination, gives people the ability to learn about far away places, and it allows you to talk to people. In all, @PERCENT2 of people agree with my idea about computers. Firstly, using computers teaches people about hand-eye coordination. For example, my grandmother told me that she knows how to use her hands and eyes well because of using the computer. This is because she types and researches information all day long. In all, computers are designed to help your eyes and hands to focus more. Secondly, computers have a lot of interesting information on faraway places. @PERSON2 from @ORGANIZATION1 quotes, ""I always use computers for my work because it helps me learn about many new things. @CAPS5, it lets my wife and I search details about a trip we want to go on."" @CAPS5, the people agree with what @PERSON2 stated. However, people @MONTH1 say that computers give the wrong information many times, but @CAPS2 you find a wonderful website, it will never lie to you. Thirly, @CAPS2 you use computers it will let you talk online or video chat with friends or family all over the world. How this benefits you is because @CAPS2 you have not seen your relatives in ages and you cannot buy a ticket to visit them, then video chat. It has gotten people so much closer and you see the world in a whole different way. @CAPS5, instead of wasting all your cell phone minutes, go buy a laptop or computer with a camera on it so you can video chat. Lastly, taking to people and being active in other peoples life is important. In conclusion, you will have great eye coordination, you will be able to research faraway places, and you will always be allowed to video chat or talk to family online. @CAPS5, I want you to tell the whole world that computers are useful and people use them everyday without a problem. Lastly, you will have the best feeling ever @CAPS2 you make everyone smile by knowing you believe that spending time on the computer can teach you a lot! From so many students having greater hand-eye cooridination they will enjoy what their good at like tennis. @PERSON1, a professor of the human body at @ORGANIZATION1 states ""Technology helps hand-eye. Many who use computers more than others to be greater at @CAPS6 @CAPS7 and games along those lines."" This shows how hand-eye and exercise is linked to computer. Furthermore, computers help @LOCATION3 talk with other people. When a child goes to college they will still be able to email their famlies and talk to them. Talking with others by computers makes the world go round. World business need computers to contact eachother to decuss plans on how to move toward economicly. Lastly, computers are useful and should be useful more. They teach @LOCATION3 of faraway places, improve hand-eye coordnation, and let @LOCATION3 talk to other people. @CAPS2 an article is made to show the pros or computers, more people will experience the wonders of them." 5 5 10 +1755 1 "Dear Local Newspaper, Computers are used everyday by millions of people. I believe that the technology of computers have a positive effect on people. I think computers have a positive effect on people because people use them for research. People use computers to communicate with people far away. Computers are even used as a news resource. In my opinion, computers make things easier. Computers have a positive effect on people because they are very helpful. You can use computers to research different things. @CAPS1 you have a computer, you can learn new things about places you never knew existed. For example, @CAPS1 you have a homework assignment, you don't have to use a book to get information, you can just use your computer. So, for those reasons, I think computers have a positive effect on people. Computers are always being used for several things. However I think people used computers the most for communication. On a computer you can communicate with friends and family members that live in other states. Instead of sending letters to people by mail, now a days people use e-mails and instant message. You can talk to people faster this way and it's much easier. Computers have a positive effect on people. It's makes some things in life much easier. I don't understand why they would have a negative effect on people. It's the year @DATE1, and computers are used for basically everything. Remember how we used to have to read the newspaper to find out about breaking news and important things? Well, since we have computers a lot of people don't read newspaper. On the computer you can read the whole newspaper, and even find out more about things that happen in our world. So what's the point of even reading the newspaper, @CAPS1 you have a computer? I believe computers have a positive effect on people's life because you can do anything on the computer. You can research information, commmunicate with people, and use it as news resource. Doesn't that make lif a lot easier? So why do some people think computers have a negative effect on people?" 4 4 8 +1756 1 "Dear Local Newspaper, @CAPS1 your computer daily can be a waste of your life. Your computer time can take away from your time spent exercsing and enjoying nature, distract you from human nature things such as communicating, and can also waste tons of energy. Picture yourself, sitting at your desk, talking to some friends online. Take away your computer and all youre doing is sitting thhere, not burning one calorie, or exercising one muscle, [expect your fingers of ] @CAPS2't you think you should be doing something more usefull in your life? Such as taking a walk and enjoying nature? That's what I thought. Nature is beautiful. So @CAPS4 enjoy it throug h a window next to your desk? obesity is a problem in @LOCATION1. @PERCENT1 of @CAPS3 are considered ""fat"" @CAPS4 would you even think about spending your day simply sitting in a chair? Go to the gym and loose some of that extra body weight! Communicating through @CAPS5's is so over-rated, people can't express their emotions! all they can do is send a smily face or happy face. Communication wih only your friends can cause you to miss out on things. For example, lets say there is a cancelation at your work place on the news, but you @CAPS2't see it cause you were @CAPS6-ing with your friend. @CAPS6? @PERCENT2 of people @CAPS2't even ""laugh out loud"" @CAPS7 they send that to their friends. Plus you @MONTH1 even go to your friends, house and instead of laughing, you'l say @CAPS6. Are instead of gasping, you say, ""@CAPS9!"" I mean come on people, get out and really ""communicate"" @CAPS10, so you bought one of those new lights? Too bad youre not even saving any energy by @CAPS1 that computer of yours daily. @CAPS1 that @CAPS11, uses about the same amount of energy in as @NUM1 regular light bulbs in @NUM2 hours, @CAPS12 that light really saving you that much money. Haven't you heard? the economy is bad, which means we @CAPS2't have alot of money which means YOU playing online games is wasting energy, which is wasting money. Someones going to have to work overtime this week, and it's not me. I @CAPS2't think hair spray is the cause of the layer being destroyed... Computers are bad, and dont have a good enough reason to be used. They take enjoying nature, reduse your communication levels, and not to mention, waste a lot of energy. Therefore, my point is made." 5 5 10 +1757 1 "I belive the reason why people use the computer so much is because most people might have to work on the comptuer or mabey even finish a project. But I understant the part when the artical said ""Some experts are concerned that people are spending to o much time on their computes and less exercising"". Mostly young teens use the computer at a earley age and become hooked, because there are so many things to do on the computer like download games for free and play with other. People around the world but you would think that anybody would play video game on the computer and have free time? NO! Most adults don't play games on the computer, they do work or reasearch an artical. But after that they'll continue doing their daily routine, but alot of teens are on the computer everyday and rarley get exercise. The internet has open alot of new enchanced technology, over the past few years you could search up old friends from mabey old schoold on the web or even chat with people who you don't know from all over the world. You could have an @NUM1 @CAPS1 and buy new song or new albums insted of going to a local store, or even shop online have have the cloths been brought to you. Over the years they would of never done that, and rent movies or buy them to have on your @CAPS2." 4 4 8 +1758 1 "Dear local newspaper, @CAPS1 on a beautiful sunny day, people inside on their computers instead of enjoying the weather. This is what could happen if people are using them. I believe that computers have a bad effect on people because their communication skills will drop, people won't get enough exercise & their health can be imnarred. As i mentioned, everyone who is using a computer on a daily basis, will drop their communication skills.. People enter chat rooms not knowing who they are talking to. For example, if i logged onto & chat room, someone might ask for personal information such as where you live, your phone number & your name. This could lead to things such as kidnaping & even rape. Also, interactions with family members & friends @MONTH1 decrease. You can be playing a computer game, online, or going on youtube to watch random videos of people. You tube in said to be a dangerous site for younger children. Kids could go under history to go to a website they were recently on when click the wrong one bringing them inapropiate website. Finally, teenagers and adults go onto facebook & twitter. Some @MONTH1 say these sites @MONTH1 change the social interactions, but it really isn't. Kids & adults are constantly getting addicted to it. Also telling people what you are doing every moments of your day everyday is kind of unreal. People don't need to know when you do things in your day i have keep up this our communication skills are sure to decrease. Secondly, exersice is a problem. Doctors say that @PERCENT1 of their parents are obeise or over weight according to @ORGANIZATION1. Kid just sit at home & play computer games such as sims @NUM1 & video chat with their friends instead of hanging out with them. No one really goes for walks any more either. Also, people don't go out & enjoy nature like the you. @PERSON1, a state @LOCATION1 from @LOCATION1 in @LOCATION2 said, ""each year the number of people are getting fewer & fewer. Preety soon all parks are going to have to get closed down."" @CAPS2 don't want this to happen, do you? I know i would not. Our generations are just becoming more technology enhanced. Finally, more & more people are becomeing unhealthy. A person's eye sight is most likely to drop if they are on the computer everyday. My aunt is required to use her computer everyday at work. She went to her eye doctor because her vision was become weaker. One of the first questions he aske was, do you use a computer on a daily basis? she answered yes. He said she would need cataraks eye surgery. This was all in result of using a computer. Finally, you could get althritis in your hands & fingers from typing & using the mouse all the time. Many people at the age of fourty are probaly going to need hand surgeries from all the work the do, likes! As you can see technology is harming your communication skills, exersice & you health. I bet you don't want your future generations like this. So take a part & contact your local newspaper today." 5 5 10 +1759 1 "Dear @CAPS1, I believe that computers have a negative affect on peoples lives. Computers occupy a lot of people's time which could be used for other matters. The internet also contains alot of unappropriate content that children should not be viewing. But above all, there are too many petafiles online preying on young children. These are all ways that computers have a negative affect on peoples lives. Computers occupy so much valuable time that could be used for other, more important matters. The childhood obesity rate in america is climbing. There is no doubt that electronics, play a huge role in this event. For example my brother plays on the computer everyday, so barely goes outside. He has allowed the computer and the internet to occupy his life, leaving no room for anything else. Also there is alot of content. Ranging from a song to websites containing pornagraphy. most sites don't even alert you that by how you need to be @NUM1 or older to view the content, and very little acctually ask for proof. There are millions of sites containing such content. It really is a pressing matter and needs to be deal with. Above all else, there are millions of creeps on the internet, preying on children as a young teens. Its truly disgusting. There are millions of chat sites in which people can meet and. Petafiles go on these websites under an alias, pretending to be teens and children. Their motive, to lure young teens unto meeting them in a secure location, and to commit rape. Some victims are enough speak up but sadly, most are too afraid or ashamed to do so this is all made possible through the internet. For these reasons I say that computers have a negative effect computers lives because some positive but sadly cons outweight pros such as before mention occupation of time, content on the internet. I truly believe that the planet would be better with out computers." 5 5 10 +1760 1 "I think we can all agree that computer usage is a very controversal issue. In my opinion, I believe that computers have a negative effect on people. For instance, it's not safe and children can get into all sorts of things on the internet. Also, people spend too much time in front the computer now a days, @CAPS1, its a major distraction and also a negetive effect on kids. school work. It's now or never! Do we dicide that computers have a negetive effect? You decide! Isn't every parents biggest concern the safety of their children? When on the internet, kids are capable of accessing anything and everything. Sometimes kids don't even look for bad things, they just pop up. Would you want your child veiwing things that you have no control over? Also, websites like @CAPS2.com one one of the greatest concerns when it comes to internet safety. Although you are supposed to be at least @NUM1 to have a @CAPS2, most kids lie about their age. Did you know that @NUM2 out of @NUM3 @CAPS2 users lie about their age? And it's not always a @NUM4 year old saying they are @NUM1, it could be a @NUM6 year old saying they're @NUM7! Not only do people lie about their age, they lie about who they are. Is this the kind of internet exposer you want for your children? Put a stop to this right now! More than @PERCENT1 of @CAPS3 are overweight and unhealthy. This is another negetive effect computers have on people. It's a gorgeous @DATE1 day. Bright blue skies, cotton candy cloulds, the sun is shining, and there's a nice warm breece. Perfect day to go out and get active, right? Wrong! None people would @CAPS5 be inside on the computer. Instead of going for a walk, people would @CAPS5 spend hours on facebook. This is a serious concern to our health. People don't exercise enough as it is, and then when you add computers, people will never get active! Instead of playing video games onlin, people need to be reminded that turning off the computer and playing a fun beighborhood game of baseball is just as fun and much more beneficial. This is just one step @CAPS3 need to take to get a healthier lifestyle. Wouldn't you agree? Did you know that kids that spend more time on computer are more likely to do poorly in school? Surely, if nothing else will convince you of the negetive effects of a computer this will @CAPS5 than coming home and doing homework, more time is spent in front of the computer. As a student, I will admit that the computer is a very tempting distraction and can easily pull a student away from their studies. You can't expect a child to make the right decision and tell their they have to go because they need to study. So you do! Take action now, or your child will definately suffer. The time has come to decide. Do you believe Computers have a negative effect on people? It's clear that the computer is not safe. Not to mention, too much time is spent on the computer instead of being active. Most importantly, computers will negetively affect children's grades. Don't wait another minute! Let's agree and do something about this!" 6 6 12 +1761 1 "Dear @PERSON1, Computers are very helpful in daily activities, but computers have a bad side. Some users are addicted to their @CAPS1 or @CAPS2, they are away from friends and family, and they are not exersizing it if fun to use the @CAPS4 but you should not use it too much! Some people are almost addicted to their @CAPS4. I cant blame them they can charge their ipod, tweet, listen to music, palying games and much more all at the same time! computers are great, but using it too much can make you miss out on tons of activities. People almost feel (some do) that they HAVE to go on facebook to harvest their crops in farmtown, or control their @LOCATION1 on @CAPS3. They get so wrapped up in it that they miss out on their important daily activities. It shouldn't that for but its became an epidemic, eveybody is being sucked into their computers! People who are on their @CAPS4 @NUM1 are away from their friends and family! they are like oh i haven't talked his surgery i wonder how he is! Lets see! They go on and You can talk to someone in just a click! Talking to someone facebook or twitter is no the same as talking to them in person! Its like people think computers is @CAPS4 take people away from their friends and family and them talk only on facebook .When people on the @CAPS4 they become lazy! A person who is @CAPS4 addict will say "" @CAPS5 supposed to go to they gym but let me check my twitter first!"" two hours later then they go the gym! People don't exercise as often as the should! When people are going to lay on the @CAPS4 for @NUM2 minutes it takes @NUM3 hours! They have to sign in, chat with their friends, check their mail look at their tweets look at their restaurnat check out videos on youtuve and do all other kinds of things! Computers are good but have sideeffects getting addicted, being away from friends and family, and not exercising. @CAPS4 addicts should minimize their time on the @CAPS4!" 4 4 8 +1762 1 "Dear Newspaper, @CAPS1 are worried that people are on the computer way to much and don't spend enough time outside enjoying nature or exercising. I wrote this letter to tell you that there are some good things about going on the computer. First, kids and even adults can talk to there friends online. Your popley thinking that the kids already some there friend at school but what @CAPS2 their moved. They could have moved to a different city, State or even cuntry and the only @MONTH1 to connect with them is by They can't call each other @CAPS2 they really far away that would be a pretty phone bill. Seventy five percent of people talk to thier friends through computer. About half of the people are talking to friends who live in another state. or country. Do you really want people to lose their friends? Next, people can actually make new friends in the computer, like pen pals. Pen pals are people you write to but they don't live in the state as you or sometimes not even the same country. assignment at school but you can do it on your @CAPS2 your pen pal doesn't live in the same country as you and doesn't speak fluend @CAPS3 you can teach them @CAPS3 and they can teach you these language. Finally, there's away for kids to go on the You could a limit on thier computer time Some wants to paly a game on the ""@CAPS5 you can play on the computer away from her the next day. @CAPS2 wants to go on the computer that day and throws a ten turn the parent should take the computer away for the next and so on and so on. Once your child finally cooperates they will get the to use the computer. As you can see there are meny things to do on the computer from talking to far away friends to making new friends a computer schedule. Thank you for taking you time to read this letter." 4 4 8 +1763 1 "Dear Local Newspaper: @CAPS1 you know that over half our nation own home computers? Recently, though, some experts have been concerned whether or not computers benefit society. I have been asked to state my opinion and I believe computers have a positive effect becuase, they are mandatory for work, allow online socialization, and expand traveling. After reading this, I am sure you will agree. Firstly, computers are mandatory to have for work and @ORGANIZATION1. Students keep their essays, study guides, and home work updates on files in the @CAPS5. Offices would not be able to function @CAPS8 computers; workers rely on the internet email system. An interviews with a student from @ORGANIZATION1 says, ""I use my @CAPS5 for everything; I would not survive the workload @CAPS8 @CAPS3."" @CAPS2 asked why, he replied, ""@CAPS3 keeps everything organized, and is an easier way to research topics."" A lawyer said, ""You can not support a client if you don't have the right tools, and a @CAPS5 is on @MONEY1 those tools."" @CAPS4, @CAPS8 computers offices would crumble and students grades would drop. Could you imagine writing a newspaper @CAPS8 a @CAPS5? Secondly internet access allows people to meet new people. Many websites such as '@CAPS6' and '@CAPS7' allow people to reconnect with old friends, and make new ones. @PERCENT1 @MONEY1 the nation owns accounts on socializing websites, and @PERCENT2 @MONEY1 the nation says their friend groups have expanded to the groups (according to a poll taken). A psychologist explains, ""Some people are too shy to meet new friends in person; online bloom."" @CAPS8 internet, citizens @MONEY1 @LOCATION1 would know little about other countries' people. My next reason, however is even greater. Lastly, @CAPS8 internet, people would do for less traveling. Internet allows citizens to research places they would like to visit and buy transportation to their destination. @CAPS3 also is an easy and effective way @MONEY1 booking where the tourist shall stay. Apoll taken by @ORGANIZATION2 airports shows that @PERCENT3 @MONEY1 the travelers book their flights online and @CAPS8 online ticketing 'the wait to book your flights would be unbearabley long; or stop travelers completely' (quote from a worker). My people and I went to various airports and train stations across the country and interviewed @NUM1 people each. We inquired about how the bought their tickets and @PERCENT4 @MONEY1 them said online. ""@CAPS9 do you mean, how? On the internet @MONEY1 course! no one could get anywhere if we stood in lines all day!"" said a person interviewed. Airports make @MONEY1 for the @LOCATION2 government, and @CAPS8 internet less people would travel. There for, computers are mandatory. Computers have a positive effect on owners; since they allow easy organization and research, online socializing and better ways @MONEY1 booking transportation. @CAPS8 computers internet access, our business would crumble, then the economy would follow. I know you agree with me." 6 6 12 +1764 1 "Dear @PERSON1, The advansing technology is showing a very negative affect on people. Because of computers people are spending too much time on computer and less time doing things that are better for them. First, spending too much time on the computer can be bad for your health in many ways. For example, looking at a bright computer screan for more than @NUM1 min at a time is extremely bad for your eyes. The brightness damages your eyes and can lead to severe loss of vision. Also, if you spend all of your time indoors and on the computer you will not get the exersize you need. @PERSON1, were you aware that for every @NUM2 min you are on the computer you should spend @NUM2 min outside. It is very important to get fresh air, sunlight, and exersize. Moreover, another problemwith computers is that you don't get as much interaction with people. With online chatting you can't know what the other person is feeling like, @PERSON1, or if you are even talking to other person you think you're talking to. It is much better to interact with people in person, face to face. To have good social health you need to hang out with friends, and laugh, and have a good time, not sit in a dark room and talk with online friends. @PERSON1, people need to interact with real people. Furthermore, computers can be very distracting to many people. For example, @PERSON1, say you needed to type up an article for the paper on the computer, but you decide to play a game for a min, or look something up, or talk with a friend. You say that it will only take a minute and then you with type the article. But when you stop all of a sudden you played for @NUM4 hours. Then you have to stay up later to finish. Computers are extremely distracting. People of all ages have this problem of being distracted by computers and not gettind work done. In conclusion, computers, although an advance in technology, have very negative side affects. @PERSON1, I feel that it is our job to tell the people of the negitive side effects of computers. It is our job to help people over come the side affects of computers. Please @PERSON1, we need to help the people by writing an article in the paper to warn them of the terrible effects computers have." 4 4 8 +1765 1 "Dear local Newspaper I ting that computers are good because u get to learn about other people like famous people that deid a long time ago. Computers are good because u get to learn about other places like @LOCATION2, @LOCATION1, texas. Learning about other places is fun. Having a computer is good because u get to serf the web you could play games, see and alot of other times you will like. You could talk to frends from far. Talking from mySpace or yahoo and other website that you could talk to tiferent people that you met trew the wed." 2 3 5 +1766 1 "Man has always been interested in technology. Computers are just one part. I think that computers have a positive effect on people. They teach hand eye coordination, saves trees, and allows people to learn about everything. Hand-eye coordination is a key part in our every day lives. Driving a car or writting all invile hand-eye coordination. I remember a few years ago I didn't have a great hand-eye coordination I had trouble catching a ball. Now days I spend up to on hour and a half on the computers. I have noticed my hand get neater and I can catch a balls with ease now. Do you want to be the one to crash your car because you have bad hand-eye coordination? Computers not only increase your hand-eye coordination they save trees too. Using a computer dosn't need any paper. You can read and write with out using a single sheet of paper. Since the computer @PERCENT1 of tree cutting has stopped. Saving trees help us stay alive. Trees put out the oxegyn that we breath in. Some say that computers are causing people to spend less time enjoying nature. I think that if it wasn't for computers we wouldn't have much nature to enjoy anyway. Lastly computer help people all around the world learn about almost anything. I scince kid, the head scientist says that ""with the computer we are able to toll the world of our discoveries much."" @CAPS1. @PERSON1 say ""@CAPS2 many people are laying had their die to the computer, they learn @CAPS2 many nutrition facts from the health sites"". Thanks to the computer we found a doctor to help my dad get fixed. The average people can learn about non average things any day. There are even dictionarys on the internet with many diffent translations that you would normily need about @NUM1 books to do. The computer is one of the greatest techlonagicly advances to this day. It has help our world is @CAPS2 many different ways too. Hand-eye coordination is @CAPS2 important and is preserving our environment. If you don't have knowledge you cant get anywhere in life. Our whole world senses is. " 4 4 8 +1767 1 "Guaranteed, @NUM1 years from now we will still be using computers they are probably talking to friends, doing research on something or are typing up something for @ORGANIZATION1. Computers are wonderful and let us do so many things that we can't do by ourselves. Without computers life as we know it would probably be way different. Firstly, computers let us talk to our friends and family. Allowing us to communicate to one another without us leaving the safety of our homes. See, just recently a girl in @CAPS1 went over her friends' home to do their homework together. When they were done the girl tried to walk home, and she was never seen again. With computers we can do homework with our friends without leaving our homes. Clearly, without computers life as we know it would be way different. Secondly, computers let us do research about stuff we don't know about. Allowing us to do projects without having to look in old books that maybe not have the info. you're looking for if it was to search @ORGANIZATION1 it would give me a map pointing out it's location and the schools website where I can find out my homework for that night. As you can see the computer allows ud to do things that would take us far more longer to do regularly. Without a doubt, without computers life as we know it would probably be way different @CAPS2, Computers allow us to do homework on it wether it's research or just typing something up, it lets us do more capable things. Most of our daily homework is on the computer. Just @DATE1 we had to type a prompt up on vending machines in our @ORGANIZATION1. So far in @NUM2 grade almost every night our homework is on the @CAPS3 if we were to forget to write down our homework we would have another to get this information. Obviously, without computers life as we know it would be way different. Furthermore, computers are on advancement in technology that this uses constantly. Computers let us look up valuable info. on things around the world. They let us talk to friends and family around the world. They @CAPS3 help us achieve great things in @ORGANIZATION1, wether it be homework or classwork. Without them it would take double to triple the amount of time to do something without them. Finally, I believe that people who are against them just haven't used them in the correct manner." 4 5 9 +1768 1 "I think the effects of the computer are bad, these are my three reasons why I think its bad; @CAPS1, the computer could cause blindness to people when they spend too much time or hours on their computers, @CAPS2, people need to relax their vision and do something rather than on their computers, @CAPS3, people need to use computers out a less time. These are the three reasons why I think the effects of the computer are bad. The @CAPS1 reason why I think the effects of the computer is bad is that computer could cause couse blindness to people when they spend too much time on their computers because the screen of the computer has too much light, people can't just stop staring at the monitor and even worse they could probably lost their sight and they will end up with blindness. That's why you have to be away from the screen but, being too long on your computer is bad. This is my @CAPS1 reason why I think the effects of the computer is bad because the computer could cause blindness to people when they spend too much time on their computers. The @CAPS2 reason why I think the effects of the computer is bad is that people need to relax their vision and do something rather than on their computers because when people are on their computers too much time they just couldn't come down stairs talk with their family of friends, they could'nt go outside and enjoy the glory of nature and the enjoyment at the outside world, and also if they had nothing they can just read a book, draw, watch the @CAPS4, etc. They could do those things rather than wasting their time on their computers. This is my @CAPS2 reason why I think the effects of the computer is bad is that people need to relax their vision and do something rather than on their computers. The last reason why I think the effects of the computer is bad is that people need to use their computer for a less time because when people use their computer for a less time it is good because now they finally could be with their family and friends and spend so much time with them. It also good to saving energy, and prevent you from paying alot of electrical bill, and also it is good to finally let your vision of the eyes to relax. In conclusion, the three reasons; @CAPS1, the computer could cause blindness to people when they spend too much time on their computer. @CAPS2, people need to relax their vision and do something rather than on their computer, and @CAPS3, people need to use their computers for a less time will prove that the effects of the computer I think its very bad." 4 4 8 +1769 1 "Dear editor, I think people are using computers to much and are not benifiting as much as loosing from it people are getting less exercise, not seeing nature, and not spending no much quality time with their family and friends. Read on to find ou more. First of all, people are not getting enough exersize. Especialy children, They spend to much time on computers and are becomeing over weight. America is in a crisis with child obesety. So computer have chipped into that. Many adults are over weight because they sit at computers and work as play games all day. I reason that computers are more unhealthy for us. Secondly, people are not going on hikes or trips to see the beauties of nature. Earth has many things to offer, new things to explore and discover. People can be discovering many great wonders. Finding new species, is something you need to explore nature for: animals, fish, plants, there are many out there waiting to be discovered. Reason @NUM1 why computers are not benifiting us. Thirdly, family and friends are not spending as much quality time together as they should. Realitives you talk to over computers, why not talk to them in real life. friends chatting online on facebook, aim, things like that, why not talk to each other in person and have fun memories with each other? More kids are spending time on the computer than sitting down eating a family meal together and expreriensing what a family should talk about. Reason @NUM2 on why computers are not benifitting us. In conclusion, Computers are taking over our minds and were not getting much exersise. Seeing the beauty of nature, and spending less more with their families." 4 5 9 +1770 1 "Dear @CAPS1 @CAPS2, @CAPS3, experts have been concerned that people are spending too much time on their computers, which is harmful to their health. They are wrong. Computers help people communicate, learn, and even provide entertainment. For these reasons, computers are good. Computers help people communicate with their family and friends, Some people @MONTH1 think that phones are better than computers for communication purposes, but computers are more long distance, and you will never get a busy signal. Some phone services are very expensive, and cost even more money for long distance calling. With a computer, though, you can send emails all around the globe... at no extra cost. Also, with a computer, you never get put on hold or hear a busy signal. You simply send your message, then do whatever you want while you wait for a reply. Computers help educate people, too. Many people take classes, especially college level classes, online. In fact, about half of the people taking college classes right now... aren't even in a school! This can help many people who are working most of the day, because they can get their degree in their. Also, computers can help people with the little things such as, ""where's the nearest @ORGANIZATION1"" or ""how much does something cost."" Computers can ever help people plan a vacation, or learn about a country on the other side of the earth. Computers can also provide entertainment for people. People who need something to cheer them up can watch a funny video with the click of a button. Someone who is feeling bored could play one of countless games that have been created, and range from pointless to addicting, from tiny to massive. For all those @CAPS4 lovers out there, the computer is an alternative. An alternative where songs don't cost money, and neither do music videos. Of course, computers don't fit in your pocket, but there's always a laptop. Based on what you just read, it should be easy to see that computers improve people's lives because they provide education, communication and entertainment." 5 5 10 +1771 1 "Computers, a @LOCATION1 topic if you ask me. Sure they arnt very good for you dosn't mean if you use it correctly then it can be a souce of life. Computers are helpful in many ways, they can be an information post. The social networks can help your kids get more interactive with the world. During school kids have projects and without computers. Read on as I will explain in details. Computers, as you know, are one of the worlds greatest information posts. @NUM1 out of ten people survayed said that the computers are a value of everyday life, The earthquake in haiti is recovalng now, but half the world wouldnt know that with out computers so have a heart, and dont take away the most valued info in the world. Secondly, what would you say if I told, you that kids are more socialy retarded than ever! Well its true. Over @NUM2 of the worlds people rely on intractive websites to comunicate with each other. Fact, children have more friends over the internet then ever. You dont want to be the @LOCATION1 in all this do yours ar know as the person who kept kids from living? I dont think so. Lastly, all people in school use computers to do projects, for instance @PERSON2 had horrible hand writing and this was the bigest project of the year. So he turned his computer to type it, he gets on at. But what if there was (@CAPS1) computer! @PERSON2 would have gotten a @CAPS2 - for the project. In fact teachers @CAPS3 wear tell kids to type hw/projects. @PERSON1 says ""@CAPS3 year kids pass my class by typing and if they then they would all flunk!"" @CAPS4 got the point but more importantly do you?! To sumit all up for those of you lazy enough to not read there story essay. Computers are used for everyday needs such as finding out information. Makeing friends, or doing projects. So are you gonna be the person who sits back and lets that happen or are you going to get up and stop the maddness once and for all. Its you choice but think of the socity retarded, dumb kids that fail the grade @CAPS3 year." 4 4 8 +1772 1 "Dear Newspaper Readers, @CAPS1 many hours a day do you spend on the computer? In this modern world, @CAPS2 @MONTH1 seem hard for you to tear away from that trusty computer screen and face life. Nearly everyone in @LOCATION1 has a computer, about @PERCENT1, and @CAPS2 is ruining our country. With all these hours wasted in the virtual world, people are lacking in exercise, leading to many problems. They are also avoiding nature outside, and losing contact with family and friends. I think that computers are causing way too many problems and peerhaps, with some consideration @ORGANIZATION1 my evidence, you could come to think the same. Statistically, the @ORGANIZATION1 is the most overweight country. One @ORGANIZATION1 the reasons? Hours @ORGANIZATION1 sitting at the computer replaces healthy exercise @CAPS3 are all spending our lives on the computer, and sitting and clicking is not exercise. The great lack @ORGANIZATION1 exercise is causing health problems. Not exercising can lead to abesity, which damages joints terribly. Then, diabetes developes, taking away from the quality @ORGANIZATION1 your life. Finally, there is heart disease, a top killer in our country. All this from spending time on the computer? you @MONTH1 ask @CAPS4 the amount @ORGANIZATION1 time @CAPS3 spend on computers is much more damaging than this. Every day is beautiful in its own way, and sometimes @CAPS2 is beautiful to us, in saying that beautiful to us (when @CAPS2 comes to the outdoors) is clear skys and a warm-temperature. These days come quite often, but what does @ORGANIZATION1 do? Glance out the window and go back to texting on that @ORGANIZATION2 laptop. Our bodies need this @CAPS5, @CAPS5 @CAPS6. @CAPS3 get @CAPS2 from the sun, and without going outside, @CAPS3 don't get @CAPS2. not traveling outdoors deprives our body @ORGANIZATION1 an important @CAPS5. @CAPS2 affects more than just our health, as well @CAPS7 inside on the computer keeps us from having expenence real experience. @CAPS3 learn things on the computer, but only virtually. What happens when @CAPS3 are forced out into the real world and cant really do anything? Everyone loves having friends and family, so @CAPS2 doesn't make sense why @CAPS3 would rather email them with trivial things instead @ORGANIZATION1 talking. Instant messaging doesn't really bond people, as conversations are planned out you have time to think, so the person doesn't know what the real you would say. This frays the bonds between people, and once @CAPS3 can't work together, even with family, @ORGANIZATION1 can't work together at all, and nobody wants that. Computers take away too much to be spending so much time on. Blatantly, they are bad for people. Not only do they effectively cause abesity, they fool us into thinking @CAPS3 can do things that really, @CAPS3 can only do virtually, and make close people come apart. @CAPS2's ruining @LOCATION1. A country cannot be by the sick, useless, and isolated. @CAPS2's time to step away from the computer and into real life before @LOCATION1 gets demolished by these effects computers cause." 5 5 10 +1773 1 "Dear @CAPS1 newspaper, I have resently read that ther are some people do not agree with computers. They belive that people use them all the time. I dissagre with them. One of my examples of why I disagree is because they give a person the ability to talk to someone. This is a great idea! What if your friend moved a few states over wouldn't you still want to communicate? Well, with high long-distance rates, many cna't afford this and how would you see your friend anymore? Well, if you send her pics, or video chat over the web, you can! Also, its a great idea if you want to send a small mesage like ""see you at @NUM1"", instead of saying it on the phone, and paying more, when its free on the computer. The computer also teachs hand-eye coordiantion that is important to use in the world. You can play games, take quiza and tests, go to school on the internet, even listin to music, that is important for us to express. Also there are sites that allow you to learn how to use a keyboard, and work electronics like a computer! And lastly, the computer gives you the ability to see far away places without even beiong there. This helps you do a project on a place you have never been, plan a family reunion or vacation, or find a place where you can have that fun in the shining sun, many people think that too many people are staying in front of their computer than exercising and being outside. To prevent that, they should just limit themselfs to the amount of computer and electronic time they have per day and then go exercise go to a faraway place. So, the computer teachs hand-eye coordiantion, allows you to talk to others,and allows you to see far away places. Don't you think that is great? Think about it. " 4 4 8 +1774 1 "Dear @ORGANIZATION2 (our local newspaper), @CAPS1 has come to my attention that more and more people have begun to use computers. This is a great advancement in our society! Computers have a positive impact on people because they teach hand-eye coordination, give people the ability to learn about faraway places and people, and even allow people to talk online with other people. @ORGANIZATION1, computers are making a great impact! Firstly, computers have a positive impact on people because they teach hand-eye coordination. This is useful in daly life all the time! Statistics show that sports players who own computers are @PERCENT1 more talented at things requiring their hands (like baseball or basket ball) than those who do not own computers. Owning a computer improves the way you use your hands in other activities too. Something as simple as driving a car doing the dishes is made easier thanks to the improvement in hand-eye coordination computers bring. This is a fantastic effect that computers have on people. In addition to the hand-eye coordination computers teach, they also help you learn about faraway places and people. This splendid information is easier to aquire thanks to the technowlogy of computers. ""@CAPS2 I didn't use my laptop for my @CAPS3 @CAPS4 report,"" says @PERSON1, and @NUM1 grade student, "" I would never finish. Books take so long and I learned so much about my topic from my computer!"" @CAPS2 you are going on vacation, You can easily research your destination's location and culture with this advanced search engine. Why wouldn't you use a computer when you learn so much from them? Finally, computers have a positive effect on people because they help them communicate with each other. They have lots of ways to video chat, @CAPS6 message, and even speak aloud to the person you want to communicate with. ""I had to move away from my best friend last @DATE1,"" says @PERSON3, resident of @LOCATION1, ""With my computer we can still talk to each other and stay friends."" computers are definatly a great way to communicate with friends and family. Computers have a positive impact on people because they teach hand-eye coordination, give people the ability to learn about faraway places and people; and even allow people to talk online with each other. So, @PERSON2, the increasing number of computer users is a beautiful thing! Ask yourself this, how would computers have a positive effect in your life?" 6 4 10 +1775 1 "Dear newspaper, In my opinion computers do benefit society because a computer is like a big electronics dictionary and they help our soldiers stay out of the line of fire. Computers benefit our society because they are like an electronic encyclopedia. Instead of leasing through a dictionary page by page trying to find a word, all that you would have to do is go on the internet type in @LOCATION1 and in the search box type in the word and every thing pops up. When i have to write a paper on someone I usually use the internet. The other day I had to write a paper on @PERSON1, so I went on the internet, found a website, took notes, put them into my own words and made a works called page. I thought that was easier then finding time to you do a and then find out there only childrens books on that person. And you can also look up places like @CAPS1 @LOCATION2, or if you need to find out where a place is use @ORGANIZATION1. Computers also benefit our society because they are like big cellphones with a huge keyboard. My big sister is always on the computer using @CAPS2 talking to her friends. This helped her learn to type. Also there are new things like @CAPS3 where you can play games with your friend and talk to them while youre playing. Lastly computers benefit our society because they help keep our soldiers out of the line of fire. When I watch futureweapons I see unnamed helicopters that can be controled from hundreds of miles away. Also there is a robot used that digs out mines which saves many lives. When I interviewed @CAPS4 @CAPS5 from the military he said, ""@CAPS6 use those helicopters all the time. @CAPS6 also love how noone has to be in the helicopters so @CAPS6 don't have to worry."" In conclusion computers benefit our society because they are like big electronic encyclopedias, they also are like big cellphones with huge keyboards, and lastly they help keep our soldiers out of the line of fire. In school @CAPS6 use computers all of the time for writing papers and researching different things." 4 5 9 +1776 1 "Technology, such as computers are very big. I belive computers have a good effect on people. People that use computers mostly use it to connet with family do research, or to be neat and not write it on paper. I belive that people who dont think computer make a good effect on people shouldn't bother wasting their time using one. @PERCENT1 of people only use computer to connect with family. Usually your family either lives far away or in another state and you dont get to see them very often. Thats why I think video chating on the computer is a good thing. Also is a family come up you could @CAPS1-mail @CAPS2 your family members instead of calling them because they would talk to you forever. Lastley if you use myspace, facebook or twitter you could connect with old friends and not just family members. ""@CAPS2 my teachers enjoy it when I use the computer to do my work, they said its alot neater"" said @CAPS3 romano from strong middle school. Teachers perfer it when you use the computers to do your work. When you are writing a book report or you are writing a story, you would want to use,icrosoft word of something to write out your paper so it is easer for teachers to read. Also if your in science class and you need to make the chart you would want to use exal to make the chart or graph look more professional. Lastly is you wanted to do a presintation on bloody @DATE1 or little @CAPS4 nine you would want to use a power point instaed of just reading from note cards. If people didn't have google or yahoo they wouldn't know what to do, computers are very good for research. If a student to do a presentation on something they would want to know more about it and look,the topic up. Also if your family was having a discusion at dinner and you had no idea what they were talking about you would look it up online, lastly if you just wanted to find lyrics to a song because you and a friend disagreed on something. Once again I belive that computers make a good effect on people, good for connecting with friends and family. Good for being neat and lastly good for reaserching anything!" 4 5 9 +1777 1 "Dear Newspaper, Computers have advance a lot since they were first made. Some people see computers as a way to rot your brain, while others see it has a learning device. Although computers have a negative effect when it comes to children, they have more of a positive effect because they give people the ability to learn about far away places and allow people to talk to each other online. To start off, computers are bad because they can be used as a way to babysit a child. When you're on the computer you're just sitting there staring at a screen with pictures and words on it. Some parents use the computer as a way to keep their kids quite, instead of taking the time to go outside. By growing up in an enviornment like that the children only know how to play on the computer. Kids have a lot of energy, and they need to do something productive, not play computer games and talk to their friends. All school day they talked to their friends, they need to be with family doing something to keep them fit and healthy. By using the computer as a babysitter, you as a parent are leading your child to obisity because all they do is games, and they aren't properly taking care of their body. On the other hand, computers give people the ability to learn about far away places and people. If your teacher gave you a last minute writing essay on @LOCATION2 that was do in a week, what would you do? You can't fly to @LOCATION2 and ask the @CAPS1 people what you want to know. That would be a waste of time and money. And if you go the library and they don't have any books, then you're in trouble. But by using the computer you can find endless information about @LOCATION2, and you could finish that essay in a day if you wanted to. Also, if you were going to @LOCATION4, but you knew nothing about @LOCATION4 you wouldn't be very confident about going. And you would feel like a tourist. But, if you went online and searched @LOCATION4, you could find the traditions, the clothing, and so much more. Lastly, if you wanted to know more about a famous person who isn't around anymore, you could go on the computer and find pictures and what they did, how they became famous, and so on. Finally, computers allow people to talk online with other people. Say your grandma lives in @LOCATION3, and you can't call to often because your phone bill will get to high, what do you do then? You talk online since you both have computers and it won't cost you to call. For example, my grandma and grandpa both live in @LOCATION1. When we call there it costs a lot because they're so far away. When they got a computer, we each bought a webcam and called them everyday on @ORGANIZATION1. Now, not only did we talk to them, but we also get to see them too. If your friend didn't have a phone and you really needed to ask them for the homework, you could go online or on aim or facebook and ask them. You know you can always get an answer because everyone is always on the computer at some point of the day. Although computers have a negative effect when it comes to children, they have more of a positive effect because they give people the ability to learn about far away people an places, and they allow you to talk online with other people." 6 5 11 +1778 1 "Dear Newspaper, I think that computers have a lot of effect on people @CAPS1 their not getting the exercis they need coz there just exercising there fingers. And while there at the computer there not looking at nothing else but the screen and thats not good for anyones health if there just looking at a computer screen the hole time. Another reason why i think at affects people @CAPS1 there not eatin wat they need to eat there just eatin something quick like junck food so they could on the computer. All are this effect stay on the @CAPS1 people either go places or have atheres might not be going out time their effects need to" 3 2 5 +1779 1 "Dear @LOCATION1, *@CAPS1*. Now I hear my favorite @CAPS2 tunes. A few clicks here and type in a word and I am watching a funny episode of ""@CAPS3 of @CAPS4 #@NUM1"". I go to my @CAPS5 page and feel the cool keys under my fingertips as I send @CAPS7 to my friend in @LOCATION3. These are only some things I can do on my computer. As you can see I need my computer for many things. I am all for using computers and I think they are a useful resorce. But @CAPS6't stop now, I have many more reasons for using computors. Thier not all that bad. Primarily, if you want to save money on gas, @CAPS6't Use @CAPS7 @CAPS8!! I can't stress @CAPS7 enough to say that if you need to talk to a friend far away @CAPS6't drive and waste gas, or even waste money on long-distance calls. Go to @CAPS5, facebook, twitter, or something that will save you gas and money. Some people want to talk to thier friends in @LOCATION2 but they @CAPS6't have any of these computer sites. Pursuade them too!! Another issue some face is, ""You need to get out and excersize."" I have only one answer. Most people @CAPS6't know the right ways to excersize. Then, they end @CAPS8 hurting themselves. If they just went online and found out that they could do a painless, priceless, fun work out that is very effective then they would not get in so much physical and finantial trouble. Also, others complain that people need to @CAPS10 more out in nature. Well, I say, what if you encounter a wild animal that you know nothing about, or say you were lost for days and didn't know what you could or could not eat? LIke I @CAPS9 say, ""@CAPS9 @CAPS10 @CAPS11"" remember @ORGANIZATION1. FInally, if your doing a report or something formal, you want @CAPS7 to look nice, right? Well, @NUM2 out of @NUM3 people in the @LOCATION4 have messy handwriting and 9/@NUM3 teachers mistake words that are messily hand-writen. This shows that if you use a computor @CAPS7 will not only show the word you wrote but also correct @CAPS7 with spell check. In conclusion, there are many benefits to using a computor. Lets recap, computors can save money, time, and gas. Computars can provide useful information in the real world. They can also correct spelling mistakes as well as prevent mistakes in legibility. Act now!!! Show others that there are benifits to using computers, show them all the wonders of this amazing machine, That is not only a time waster but a life saver." 5 5 10 +1780 1 "Dear Newspaper I think that computers were one @ORGANIZATION1 the best things ever created. They allow you to talk to people in far away places, help you learn about career and education choises, and you are able to learn about many subjects. Computers are here to help society not hurt it so why shouldn'y we use them? With @CAPS5 we can talk to people around the world or in space @CAPS2 that matter. You might not know it hut all @ORGANIZATION1 the communications in the world need a @CAPS5. There not the kind anyone could go out and but though. There satalites, the orbit the planet from space, @PERSON1, a proffesor at @ORGANIZATION1, told students at @ORGANIZATION3 that, ""A lot @ORGANIZATION1 every day items, such as rars and phones, all use some kind @ORGANIZATION1 @CAPS5."" @CAPS1 computers let people communicate with each other. In addition to letting people communicate they help millions @ORGANIZATION1 people make educational and career choises. Most kids that go to college don't know a lot @ORGANIZATION1 colleges out there. When my sister was picking what college she wanted to go to she didn't know which one to choose. She sat down and looked up hundred @ORGANIZATION1 schools. after narrowing it down she had made her decision she had picked @ORGANIZATION4, a @ORGANIZATION3 she had never even heard @ORGANIZATION1 a couple months ago. People are in this type @ORGANIZATION1 situation all the time at @ORGANIZATION2 a survey was taken by all the students to see what they wanted their career to be, @CAPS2 the rest @ORGANIZATION1 the week students got to experience diffrent carrer options. @PERCENT1 @ORGANIZATION1 the students picked a different carrer after that one week. Have you ever heard the old aget ""@CAPS3 is power""? well its true and computers are a great source @ORGANIZATION1 @CAPS3. they have many different subjects math, science, history language and much much more. people should be using this @CAPS3 at the @CAPS4 francisco national debate @PERSON2. Said that ""@CAPS5 are a great tool when used properly this includes looking up new places math. and even comunicating these are what computers should be used @CAPS2 not unhealthy games. You can learn about many new places with a @CAPS5. In @NUM1 grade my teacher had everyone do areport on a country me and my friend found this place we had both never heard @ORGANIZATION1. with the @CAPS5 we found onts @ORGANIZATION1 information on it such us its main income, exports, resorts, and fun activities. After reading all the facts surely one would agree that a @CAPS5 is a great tool that should be used. It lots people communicate, helps in educational decisions, and you can learn many subjects such as math, science, and language. I strongly believe that all people should use a @CAPS5." 5 4 9 +1781 1 "Mom!!! Did you know that the human body has only one liver!!!, @CAPS1 I didn't where did you find out, on the computer. I recently heard that some experts are concerned that people are spending too much time on their computers and less time exercising, and enjoying nature. I dont think that they should be concerned because the computer leave's people with an open mind and teach people new thing. So the computer does a lot for people, give's them the chance to learn new thing, a chance to chat with friends far away, and also expand your mind of travel. Computers can do a lot for a person's life of know'lleage. Just yesterday I found out that the human body can not survive without its liver. The computer also helped me with my strugle's in math, even though that's what the teacher is for she is not always their, like when I am home or away on vacation and I just want to remember so thing's in math. Its also help's people who want to know new launage's such as @CAPS2, @CAPS3, and @CAPS4. So you see a computer has a big affect on a person's life. Two days ago I did a video chat with my grandparents back in @LOCATION2 it was great. After six year's not seeing my grandparents they really changed, and I was starting to forget what they looked like. I never knew that a computer could do a video chat from so far away I was surprised. I dont know why you experts are so concerned about computer taking away people's live's look what it has done for my family. I know that if one of you experts family member went away for a long time you would miss them and want to talk. Some people's love to video chat like people in the army because they get the chance to see their love one's. A two-way ticket to @LOCATION3, To see all those beautiful sight's and taste their wonderful food's look at that waterfall where is that, In @LOCATION4, @LOCATION1 now I have to go their. The computer has shone me places that I have neve sene before. The computer is a wonderful thing. So dont be concerned about us and what we do on the computer. In conclusion dont listen to the experts they dont know what their talking about, for all we know they use the computer more than we do. The compute can touch you new thing, give you the chance to chat with family and friends far away, and open your mind on travel. The computer is not a bad thing all it's doing is making life a little better step by step." 5 5 10 +1782 1 "Dear @ORGANIZATION1, I believe that computers are a good source of technology. The reasons which I am fighting for tell why, kids are in school more than half of the school day. Parents should be limiting there childrens use and what they do, and computers are a way of contact and research. To begin, kids are in school more than have of a school day. How could children stay on the computer when there in school learning? They can't. In school you get alot of exercise because your always movign around. After school kids usually do homework or go out with friends. Computers don't have effect on people, if anything it makes them smarter. Secondly, if children have a computer at home their parents should be limiting the time and what exactly they could do on the computer. The people who support advances in technology are correct, computers open up imagination, and learning. Parents of the children that have computers should be more worried than anyone else and if they are , they should just take the computer away. Parents sould also take their kids places more often so the schild win not have to go online. Lastly, computers are a way of contacting others. If you don't have a phone, you use a computer to go on your email, or personal websites. Also poeple need computers for schol work and for their jobs too! Another thing numerous peopel use a computer for is research and reports. We need our information! To conclude, my thoughts are very important to consider because, mny other people would be shy to wirte this and get it published in their local newpaper! I would like to say computers are not interacting with family, friends, nature or anything of that sort. We as a whole need computers to do daily life things, without be able to go online, or save files we would be lost! So I will say again to consider my ideas. Thank you." 4 4 8 +1783 1 "Dear @CAPS1, @CAPS2 several reasons on way I that advances in technology are harmful to our socitey is because it opens doors to strangers on the outside world. Its also takes you away from family and friends. Lastly it also takes you away from enjoying life outside of the internet. One of my severl reasons on way I feel advanced technology is harmful to our socitey is because it opens doors to strangers @CAPS2 teens, adult's and etc. The probem with this is that you never really know whos on the other side of that door, that chat room people can miss guide you into thinking there someone who there not. @CAPS2 example theres a show called dateline. This show is about how young teens put there selev's online and grown or young men click on a picture of you and that opens up a chat line or as I say opening a door, you dont know who's on the other side of that door. So these men online makes these teens trust them and make them feel safe if they are a friend you ""hey can I come over sometime?"" you this young teen thinking thats your friend says yea sure. Dont forget you dont see his picture so he come's over and most of three men are looking @CAPS2 a quick fix. If you know what I mean. This is what go's on during dateline t.v show just imarge how many other kids or teens are out there doing the same thing the difference is they dont get caught. Secondly on why is harmful to our socitey is because it takes you away from your family and friends. It takes you away from your kid's family because that will start to fill as if you love that computer more then them. It take you away friends because they might say hey let's go out to the mall or @CAPS2 a drink youll probably say check up on somethings online. This will one move slowly away from you, all over a computer you will start to lose the people most important to you. My last reason on why you can harm society with teconogly is because it takes you away from living your own life and doing thing's you wanna do like online is a bunch of stuff that everybody else say's is cool. Do what you think and feel is cool. @CAPS2 example if someone posted something saying @NUM1 guys lodon is so cool you gotta go there but youve always wanted to go to @LOCATION1, @CAPS3 thing is that you do get to have enough air outside like your skin will get pail and icky and this is why I feel that way. In covlsion all though some people might think that advanced tencogly is good well cleary there not because they open doors to danger, take you away from friends and family. Also it takes you away from what life has to offer." 4 4 8 +1784 1 "Do a adults and kids spend to much time on the computer? Well I dont think they do. Sure they use it a lot but still it's for enter to inment. Kids need to use the computer because it's another way for them to communicate with each other. Textings good but it costs money, so does to lking on the phone. If a doesn't have texting they can go on facebook or something to make make plans to do something with a friend. What if it's a rainy day outside and there's nothing to do? Well that's what a computer for.Kids use the computer for entertainment. There's tons of games to play. All on different websites of course but that's beside the point. There's mmorpg or rpg those are two type of games I can think of computers are like kids own virtual outside world. Computers are also needed to do research for school projects. Also to get pictures. Sure there book but they don't always have everything you're looking for. You can't cut pictures out of books. You need a good grade on a project. Therefore computers need to be used a lot. for communication, entertainment, and school projects." 3 4 7 +1785 1 My opinion is that people should have computers in their homes. Computers should be for important things like searching for jobs and other things. People can do their work in the computer. To teach your childrens how to use a computer or let their children go on the internet to they can search kids stuff. People shouldn't all their time on the computers and spend less time with their families and friends. I think people should spend more time with their families and their friends then spending it on the computer. But a lot of people use computers almost everyday. But a lot of people use computers almost everyday. Probably your family are worried about people spending their time everyday in the computer. They their friends how to type in the computer and teach them some stuff about the history. Do you think that people should alot more time with their families and be happy about it the they are spending time with their families. I think people shouldn't use the computer when they have a vistor over their house they don't their vistor think you are attracted to the computer. They should give people the ability to learn about faraway places and to learn things about the internet. But not everyone agree that people shouldn't use computers because people can get attracted to it and people don't want that. To happen. And families are concerned about that a lot of people use this can of stuff. Other people think that this is a great idea to use a lot of computer and spend more on it then their families. So do you think that people should spend more time on their families and friends then picking atention to the computers. 4 4 8 +1786 1 "Dear readers, I think that its good and bad to use the computer to much" 1 1 2 +1787 1 Dear - Local Newspaper I agree thats computers are good for society. Without computers a lot of things couldnt be done. Computers are sometimes the easy way out. And thats why I love them. Computers almost makes anything possible. Now say if your an elderly person and you cant get up and your bodys really bad. Well all you need is a computer. You can pay your bills online or you can get a job online or even shop online. All you need is a computer. Computers are also good if your lazy. You can just lay in bed all day and go online to work or to the mall and order things all youll have to care about is personal hygenic. Sometimes computers take a lot of stress of you. No more ignorant co-workers or no angry boss everythings a-okay. Computers are also swel because its the eazy way out. But you have to make sure you get a good computer. Not and old one because it can breakdown. Dats one reason why computers arent so good. But as i said computers are very good they might be a little pesky but ones you get the hand of them everything gonna be alright and remember you can do almost anything with a computer. 4 3 7 +2978 2 "Certain materials being removed from libraries such as books, music and magazines, shouldn't be removed from the libraries. It gives people a chance to understand how the real world @CAPS2. Having certain materials such as books and music definitly should not be removed, because most books and music can show most people how bad the statement in the book @CAPS2 or how bad the lyrics are in a song, and help that person to avoid that type of thing that the book or song @CAPS2 saying to the reader or listener. People should give every type of music at least a try and not always doubt what they hear about what people say about that type of music. I always hear about people saying how bad the band @PERSON1 A.M. @CAPS2, just because in the lyrics it talks about drugs and how much cursing each song has. Really the band @CAPS2 talking about one mans life and how he turns his life from being a drug addict to having the best life someone could ever live. People always doubted him and never gave his music a chance. Another example would be @PERSON1's book, '@CAPS1 @CAPS2 @CAPS3 @CAPS4' for it talks about drug addicts, homeless people, people who have been born with disfigured arms or even someone who lost there legs, and telling how beautiful each and everyone of them really are. His book taught me a few things and made me think different about people. It doesn't matter how they look or how they talk, no matter what, that person @CAPS2 beautiful. As far as movies and magazines has gone within the last few years, I think that the also shouldn't be taken from libraries. I think @CAPS1 for the same reason of how I feel about the books and music. Of course we see previews of movies and think that they @MONTH1 not be good, but libraries shouldn't keep leave them out. Movies @CAPS2 a great way to learn how to treat others and how to act around other people when you don't know how to act. If you act differently around people that you've never been around before, then you could feel embarassed or maybe even get @CAPS4. Movies can help people learn about the real world by seeing how to do those type of things as we get older. Same goes with the magazines, they also help people see what not to do or to help them understand the consequences of something that shouldn't be done. Knowing what to do from a magazine could possible save your life or perhaps maybe even someone elses life. I don't understand why some libraries would want to banned certain materials to help people understand the things that happen in someone elses life and to help them not make the same mistakes as that person once did." 4 4 4 4 4 4 +2979 2 "Write a persuasive essay to a newspaper reflecting your views on censorship in libraries. Do you believe that certain should be removed i think so be no that yes i think should no person that in chager the book, music, movies, magazines, ect., that be no agure why do i think if you need that please think i no thank you please if i need why do we if know that if i failure the this test i who need to graduate please the children allow to home please yes. Why do we need to be a prafece person please why do we need to do this why write this assgiment because you mean to be the best teaches ever and ever facebook is my password is @PERSON1 @NUM1 that why i need my myspace is the same thingh but different at same time please know that i need to know i really i need to my e-mail address is @EMAIL1 that is my e-mail please work m" 1 2 1 1 2 1 +2980 2 "Do you think that libraries should remove certain materials off the shelves? People have different oppions, of whats good and whats bad. I have read and seen a lot of books in my life time. I hear people telling me, 'oh dont read that book its a bad book.'But I ask myself, @CAPS2 do I know it's a bad book when I haven't even given it a chance?' @CAPS1 are some books, music, movies, and magazines out @CAPS1 that are offensive. Yet we still want to read, listen, watch, and look at them. If we tried to remove all the offensive books, from the libraries we wouldn't have anything left on the shelves. Katherine Paterson said, 'If I have the right to remove that book from the shelf that work i abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' Katherine Paterson makes a great point out of her quote. Why should we have to remove a book if just some people think its offensive? Ask yourself the question again, '@CAPS2 do you know it's a bad book when you haven't even given it a chance?' @CAPS3't judge a book by what you hear. Find out what your own oppion is" 2 3 2 3 3 3 +2981 2 "In @DATE1's world, there are many things found offensive. Everyone has their own opinion on what is offensive and what is not. Many parents are becoming upset because they think their children are viewing things that they should not. Other people are upset because they think the libraries are offending their culture or way of life. This is even taken to the extreme where people want censhorship on libraries to avoid this, which is wrong. Some people are becoming concerned about the materials in libraries. They find these things to be offensive. Everyone is entitled to their own opinion, but there really is nothing anyone can do if someone is offended. The world is a public place and everywhere we go, something might be found offensive. The library is a place for study. It is never intended to offend someone, or bring bad to the world. It is simply a place to inform, and if someone is offended by what they see, they should stay away from the library. I have been to the library many times, none of which have I ever seen anything offensive. Everything I have ever witnessed at the library is for learning and research. There are certain sections in the library. If a parent does not want their child seeing something, they should keep their child in the children's section. I can assure you, there is nothing offensive in the children's section, or else the library would not have it in that section. The owners of these libraries know what is going to upset people and what will not. If there was truly offensive materials in the library, those materials would be taken out. Also, if a person complains, and the materials are removed, it could lessen someone else's chance getting the materials they need. One person could think the material is offensive, but someone else might want to learn more about it. If one is offended by a certain material, all they simply must do, is not look at it. The library can be compared to a big computer. One can basically find anything there. Asking the library to censor their materials is like asking the internet to censor theirs. It is a way of learning and researching and it would be almost impossible to censor everything there. Everyone is going to be offended some point in their life. If the libraries removed everything that could offend someone, they would have no materials left. People need to stop being so easily offended and realize the library is not trying to harm anyone. There does not need to be any censorship in libraries. It is simply trying to teach people about the world and let them enjoy books, music, movies, or whatever else one might go to the library to find." 4 4 4 4 4 4 +2982 2 "In life you have the 'offensive things'. The little stuff that gets under our skin and eats away at us. No it is not easy to get over ,but these things will make you stronger. Sometimes there are books, magazines, music and movies that offened us. The only reason why we get offensive is because the subject either reflects our personality, or our life. It's not the authors fault, they write what they feel and what is the truth. Okay, so libraris are full of book's, movies, music, etc. You can't just take books off the shelves, just because they offened you. Other people @MONTH1 like the book you hate. There are more books in the library you can read. Another reason people shouldn't remove offensive material out of the library; it will hurt whoevers' company got the book published and also the writters. Writters and publishers would lose so much money because the library sells' there books,magazines, movies. They make thousands of copies of thier product, which takes money. So to make thier money back ,they sell to thousands of book stores. Must of the offensive material will open the worlds eye's. Everybody needs to see whats going on in the world. Books, newspapers tell the truth about a subject. Now the writters intent is'nt to hurt you but to help you. Why cant the world be more open? I know in my own life i have read books that at first ,the book offended me. I would get so mad, i would put the book down and walk away. But then,my eyes would open and finaly it hit me. The offensive part out of the book helped myself relives a new understanding. The views i used to have would be gone. It is strange how you finnaly open up, and your life changes. Some people might even find this paper offensive. But if nobody is stepping on your toes, and getting under your skin you wont ever change. Offened is a word used lightly; yes, people use it a lot but do they really mean it. Some people need to use 'well this book bugs me'. Stop being about yourselves and get over it. Life is to short to worry and feel offended. Every single book, magazine,movie and music needs to be left alone. Those materials @MONTH1 reflect other peoples life and help others with thiers'. Just read another book, or watch a different move. Please do not remove anything from the selves, because it will only do more damage" 4 4 4 4 4 4 +2983 2 "A lot of @CAPS3 today are censored because of the content in books, music, movies, and Magazines. I think that it all can be fixed if you have certain sections, @CAPS1 @CAPS2, and my views on the censorship of @CAPS3. Here's my idea to fix the problem. I understand that books and other material @MONTH1 offend certain people, but it might not offend others. Thats why I think @CAPS3 should have a room for things that might offend certain people. The sign should say what content it has so the people can stay away from the room. There could be seperate rooms for children. It has nothing but children's books, movies, music, and magazines. Its a great idea because your child would'nt be open to the bad content. This brings me to my next topic. You must be a certain @CAPS1 to enter the 'bad content' room. I dont think the library staff or their parents want a five-year old boy checking out a book that deals with sex, drugs, and alcohol. The library could get in a lot of trouble. The @CAPS1 @CAPS2 could be @NUM1 years of @CAPS1 to enter the room. That seems fair enough. Your old enough to be able to handle the content. I dont get offended easily, so I can read just about anything. Like I suggested previously in the article, the bad content should be moved to a room so that people dont mistakenly come across it. I like reading about anything and everything, so I would love to read things and spark my attention. Books like that usually deal with bad things. I'm okay with that, but I understand that others are not. Seperate rooms, @CAPS1 limits, and my views are all good ideas. Maybe a library will come across my article and do what I have said. I think that will be very affective. I hope to start seeing that in the future" 4 3 4 3 4 3 +2984 2 "How @CAPS4 you feel if your favorite book was taken off the shelves of your school or public library? I, along with many other students, @CAPS4 find this discouraging and distastrous, so I do not believe that censorship should affect books that are on the shelves. Otherwise, a demolished love of reading, crushed individuality, and separated population @MONTH1 be born. Like the beloved @PERSON2 @PERSON2 series by @PERSON1, many books and series are being taken out of libraries' collections due to people in society finding them offensive. In this case, the world of witchcraft in which this story blooms is against some religious beliefs; therefore, some individuals within a religion campaign to have these books banned. Fortunately, none of the libraries I visit, with their eclectic collections, had banned this series, or I @CAPS4 not have the strong thirst for literature as I do now. All books have the potential to pull a student into the wonderful world of reading, like @PERSON2 did for me, so taking away books that are most likely to spark an interest or start a firework of creativity @CAPS4 not only affect this generation, but the futures of all. If this censorhip was to be allowed, who is to say what all could be censored? Who @CAPS4 be the final judge as to what books @CAPS4 be banned? It @CAPS4 all come down to power and who was willing enough to take it. This struggle to be on top has the possibility of seperating people apart like political parties. Disagreements could turn into debates, and those could turn into fights. It can be concluded that people are stubborn for their beliefs, and to have someone choose what everyone is allowed to believe @CAPS4 be wrong. For instance, it @CAPS4 be like an @CAPS1 forcing a @CAPS2 to not believe in @CAPS3; a vegetarian commanding that meat can no longer be eaten; a woman taking away men's voting rights. Censorship @CAPS4 lead to the disrespect of other's opinions, and disrespect is never a beneficial thing. Each and every person has a different opinion on what is offensive or not, so to censor books @CAPS4 be to censor all individual mentality. Without each person's unique thoughts and beliefs, the world @CAPS4 become similiarly vapid and dull. Differences in beliefs is what adds variety to the population and what makes a person special; additionally, free thought is a right all people should have. If someone was to limit the mental, literary stimulants that are out in the world, the amount of creativity and individuality @CAPS4 decrease. To conclude, censorship @CAPS4 be a disrespect to individuality, personal beliefs, and the overall joy of reading a good book. Just because one might not believe in what a story says, it does not mean that the piece of literature should be forbidden. No one is being forced to read the books that grace the hundreds of shelves in a library, so if someone is offended, simply do not read it. So how @CAPS4 you feel if your favorite book was gone from all libraries? Disrespected? That is how I @CAPS4 feel" 5 5 5 4 4 4 +2985 2 "Do you think that you should be able to take certian materials off a shelf of a library, because someone finds it offensive? Here are some of the examples that I can think of just off of the top of my head. Books, movies, music, magazines, or even computer excess. So if you wouldn't mind sit back get relacked in a good comfortable spot, because here we go. So have you desided what you think about taking them off the self of your local libary or even your school library. We I have came up with what I think about it. In some way yes, but in other ways no. For an example I bet there are old books in my school library right know that haven't even been picked up for a long time, just because they are old and overly out dated. The reason I say they shouldn't be pulled off the shelf of a library. Well just becasue some people seems that it's offensive, doesn't mean it couldn't almost the most popular book in the hole library. The person that likes that book might find that the poeple that found the book offensive, they book might be offending the other person. So if you think about it, you will always have the poeple that like to complain about something no where you go. I just put an example out there of what I have seen. I was at a library one time and there way these to guys. One was complaining how the farm books never get messed with. Then the other guy walked up with two of the books that was over there in the farm section of that library. So the librarian is just taking in all the information that the two guys was disabuting during that time. During all of this I was just about five feet form the counter these guys was at. So then the guy that was talk about how the farm books should get pulled off the shelf he ask the librarian where the books was on spaceships. Then the guy that was getting the farm books said you really should take them off the shelf because he hasn't seen anyone over that way for years. So that is just to tell you that if you was to take a book, some music, or any other of the thinks that you can find in a library should just more in likely stay where they are, because the library got them books or any of that other stuff for a reason. That reason is, because you don't ever know what someone might just come walking through that door just looking for that lonely book, magizne, movie, or just need to get on the computer. Well know that you probably getting tired of hearing the reasons why I think no books or any other things should get pulled off the shelf. Now it's time to tells you why they should get pulled off the shelf of that local library in your neiborhood. The main reason somethings should get pulled off the shelf of the local library or school library is if the book was really damaged. For an example I have been to one of the libraries in my county and they had a book in there that the back cover of the book was torn completly off. That is bad that they would have that on there shelf, just because that makes there library looks like a trashed up place to go to. Another reason why something should get pulled off the shelf is if the book supported drugs. Like if there was a books about some that was doing drug and they got cought with them and they just got a 'slap on the wrist' as I call it. A slap on the wrist is when you get in trouble for something and you don't even get in any trouble you just get handed over to your parents. That is what I think the saying 'just a slap on the wrist' means. So all in all more in likely the book should probably just stay on the shelf. Like I said earlier in this essay, you will always have you people that like to complain about every little pitty thing they can find to complain about. Which I mostly learned that from the state tractor pulling club. So I hope that I haven't taken to much of your time up. So just think next time you are at a library and you see a book and you think man that book needed to be taken off the shelfs, just refer back to this essay" 2 3 2 2 3 2 +2986 2 "The idea of the removal of 'offensive' material from libraries is understandable. Some believe that this material is not appropriate for anyone to view. However, because we all have different opinions on what is offensive, I believe that books found to be offensive should not be removed from the shelves of the library. First, I believe that if this policy were to be in effect in libraries, there would not be many books left on the shelf. Offensive is a relative word. What @MONTH1 be offensive to one person @MONTH1 not be to another. Every has a different opinion on different matters based on their beliefs and life experiences. Many books have things people disagree with, but expressing this is a part of freedom of speech. Therefore, if everyone complained that they found a certain book or movie to be offensive, there would hardly be anything left, as Katherine Paterson said. The purpose of a library is to provide the people who go to the library a resource. If the sources were censored in such a way, it would be hard to get information. Sometimes, it is beneficial, even, to read an opposing view or side to have more knowledge on a certain topic and see things from a different perspective. However, some books @MONTH1 not be entirely appropriate to certain people. For example, some material in the library @MONTH1 not be best for small children to read or view. In this case, I do not necessarily feel that they should be removed from the shelves rather than placed in an area these children do not have access to. Having books, music, movies, or magazines removed from the shelves if they are found to be offensive is in my opinion, a ridiculous notion. It hinders expression. People have different opinions about what is offensive to them and it would be very boring if everyone thought the same. If someone finds something particularly offensive, I believe they just should not view it" 4 5 4 4 4 4 +2987 2 "All authors write for a purpose, whether it be to teach, entertain, or persuade an audience. No author writes something and says, 'I hope no one picks this off of the shelf!' So, if every author wants to express something through their writing, then why should we not let them be heard. We all have the freedom of speech, right? So, why not the freedom of writing? Libraries should not remove a book, music, movie, or magazine from the shelf just because they found it offensive. Everyone will read a book that they don't like, its natural, but that doesn't mean that no one will like it. Authors write for an audience, but maybe you are not in that audience; so, it doesn't appeal to you and might even seem offensive. Not everyone believes in the same ideas. You could think about an issue one way and your neighbor think about it a totally different way. Like for instance, you're reading a book about a young girl that is going through many problems in her life. She has gotten into some really horrible situations. Some of these situations you read about are so awful that you wouldn't want anyone else to read it. But, did you ever think that maybe there's another girl that is or has gone through some of these same situations. Maybe this girl comes to a library and finds this book; suddenly she finds guidence in it. She finds something she can depend on in her life that she's never had before. She feels like she has a friend in this book that can handle the situations with her. So, would you really want to take that book off of the shelf and not let that girl ever find her guidence? Situations happen like this all of the time. People find something special in what they read that other people might not find. When a librarian takes a book off of that shelf, an opportunity is forever gone. No one will ever be able to learn of what was to become of that writing and of those ideas. We all have a right to learn, to explore new ideas, and to expand our minds. No one should have the right to take that away" 4 4 4 4 4 4 +2988 2 "Have you seen a magazine, book, movies, etc., that are found affensive? What experiences did you have? Here is my opinion on if I think that those books should be removed or not. I have noticed that some movies are affensive to other people. Like for an example, the @CAPS1 movies, books is about @CAPS2 and some people don't believe in them or they don't like the movie so I do kind of see no point of making a movie that is about someone that is not real. However, some movies are okay for some people and their age. The movies that are rated '@CAPS3' are for the people who shouldn't be watching it yet like kids under the age. Magazines though do have some type of thing that I think that is affensive to other people. Like, I don't remember the name of them but they would have sections that would talk bad about another person like one of the kids would talk about the president or something like that. So I think some magazines should be removed off the shelves. The books however, I don't see a reason why to have them removed off the shelves. I don't think the books seem to be affensive as much as graphical. There could be some books out there that might be affensive to people though, like the ones that talk about a family that has no money or talk bad about them. For an example, you would be able to find a book and read it and find out that it is talking bout things that you don't want to know yet or want to know. So as you can see I have made an opinion on what they should do either keep the books, magazines, or movies off the shelf. But then I do see it the other way to. Some of us do like those kind of movies or book or even magazines and think that is very cool or interesting" 3 4 3 3 4 3 +2989 2 "Personally I don't think libraries, movie stores, etc., should be selling any of the items just mentioned. If they are found offensive to the public. I think it offends lots of people. Citizens such as senior citizens and children shouldn't have to be exposed to inaproppriate material. I think in order to buy or rent certain books, music, movies, or magazines you should have to be at least eight-teen years of age. The economy is bad enough the way it is. There is a new generation of people who are being raised at the moment, and they should't have to look back at their childhood and have memories of seeing offensive movies, or reading offensive books and magazines. I think music is what influences a person the most. If they are constantly listening to foul language and what not, that is going to just stay into a persons mind. I know this from experience. I also believe that movies influence a peron lot too. For example, a kid goes to see a movie that has a lot of violence in it. Well after he is done watching the movie he thinks to himself, 'well it must be okay to kill someone because i saw someone kill another person because they got away with it and never got into trouble.' That is just one example of how the humans mind can change. In conclusion I do believe that humans have the right to read, watch, or listen to what they want. I just think that people should have to be a certain age for some of the things though. Also, I think that anything citizens find offending should be hidden in some sort of area in a store or library. So that just people who want a certain item or whatever can get it with out other people having to see or listen to anything offending" 3 4 3 3 4 3 +2990 2 "A library is a place you can go to read, write, and relax. Nowadays, many people take for granted the knowledge that can be obtained there. Even more of the knowledge to be learned is being stripped away and cut down by censorship. Censorship can eliminate many varieties of reading materials that people can learn from and enjoy. First of all, removing classics from the shelves of libraries because they @MONTH1 offend certain people is completely unwarranted. If they offend you then do not read them. It is as simple as that. Many books offend people because they are not in agreement with their morals or beliefs. A great example of this is the @PERSON2 series. @PERSON2 @PERSON2 is a bestselling series with over a million copies that have been sold worldwide; however, it does not corrolate with many people's beliefs. Therefore those people boycott the series. I remember several years ago I attended a @PERSON2 @PERSON2 and the @CAPS1 @CAPS2 @CAPS3 party at the local library to celebrate the next book in the series being released. While I was at the library there was a gigantic storm brewing. Now most people would think that it was only a storm, but the people in town who did not like the @PERSON2 books blamed it on the party. They said that we were worshipping the devil and @CAPS4 brought the storm to tell us that what we were doing was wrong. I know many people do not like the @PERSON2 series because there is witchcraft and wizardry in it, but that does not mean that they should blame natural occurences on a book! Even great novels like the @CAPS5 in the @CAPS6 should not be banned because of their content. For a while, @CAPS5 in the @CAPS6 was reading material for school, but then the 'morality police' banned it because it was about a crazy person. Books should not be required to meet everyone's personal standards. Consequently, what Katherine Paterson states is true. If we ban books because we do not agree with them or find them suitable, eventually there will not be any left to check out at the library. Although there could be a way to compromise. If the books with questionable content had a sticker on them telling the reader that, then it could benefit both sides. In conclusion, eliminating books is not a good idea because of how beneficial they are to us all, especially children. When I was young I would always want to be read to and when I continued to age I would always read. While I was in middle school every day I would have a book with me to read. Books allow the reader to travel to far off places or see what it would be like to walk in someone else's shoes. Books are a gateway to another world. Why take that magic away from children" 5 4 5 4 4 4 +2991 2 "Yes and no, some materials such as books, music, movies, magazines, etc, should be voted upon the citizens to be removed from shelves. I do think that some materials in those catagories should be removed if they are offensive to me as well as others, but it will take a long while to get them removed from stores and other places if other people like them. I do not like how they make some music to be very violent and cause minds of most teenagers to turn bad and start selling drugs on the street of their hometown, but i can't do anything about that because that kind of music is admired by those teenagers as well as some adults too. If some people can buckle down and see that stuff like that will mess up lives of teenagers and some adults who fall victim to it, then there is a chance that it can be stopped. Stopping things like this will save a community from disaster and cause other good chances in life for people in need for those chances. Here's another example, like this music artist named @CAPS1 @CAPS2. She has made some great songs for the past year and a half now. People have told me that she is part of a group called @CAPS3 and its a group where they try to I think 're-birth' thereselves. My friends wanted me to stop listening to her music. I told my friends that I do not like the fact that she joined this group, but that doesnt mean im gonna stop listen to her music. Now if she makes a song that is offensive to me and as well as my friends, then that where I draw the line. What im saying is that if people don't have others to back them up if something is highly offensive to them and oblivious to others, it will be very hard trying to prove yourself in the best way possible." 3 3 3 4 3 4 +2992 2 "When talking about censorship in libraries, I don't think the people that work in the libraries should decide what goes on the shelves. The people of the community should have a say on what goes on the shelves, because their the ones thats going to the library anyway. I believe that everybody is intitle to their own opinion, but I think certain materials should be removed. For example, some music could be offensive; therefore, I'm not saying that music shouldn't be totally removed from libraries. I'm saying the offensive music should be removed" 3 2 3 2 2 2 +2993 2 "Dear Newspaper, @CAPS1 would you feel if someone wrote a book about @CAPS1 bad the newspapers are, and the tore you down so bad no one wanted to touch another newspaper? Think about it if something is found offensive should it be avalible for thousdands and thousands of other people to read? I believe that certain materials such as books, music,movies,ect. that are found offensive should not be allowed to be removed from a libraries book shelves, let alone even be on the shelves. Now lets just think about this for a moment.What if a sexist book fell into the hands of an inocent childs hands that could just read enough to get through the book? That child could end up living that kind of life that the book protays. If I were a parentt I know for a fact I would never want my children exposed to harmful reading materials until they know right from wrong, and have a clear judgement on it. Or from another perspective what if that one book, about @CAPS1 black people are bad and nasty, fell into the wrong hands for this purpose lets say a drunken, old fashioned man. Who just so happens to think we should continue slavery. That one book could stimulate this white mans thoughts and he could try to put his thoughts into action. Throwing what that book says about black people in a young black womans face. Then continues ,after seeing what that alone has done to her, rapes and beats her. Only to let her live and make her his own whore or slave for aslong as shes living. Can you imagan this world when @CAPS2 only knows @CAPS1 bad this woman is hurting. @CAPS2 is the only one who know @CAPS1 long she will deal with the pain.Before she stops fighting for her life. Just think all that I have told you about, gave you examples of all started with that one single book.The offensive book towards sexists and towards black people. these are all reasons for those book to be ban from libraries or at least glued to the shelves." 3 3 3 3 3 3 +2994 2 "A lot of people that are in school have probably seen or heard of a book or magazine that had profanity or offended them. Some people think that kind of thing is funny, but to others it @MONTH1 bother them. Not only racial slurs can offend people, but profanity can make someone disappointed. Some parents do not want their child to hearing or saying things like that. And I believe if it is offensive it should be taken off the shelf in a library and you should too. The movies and music I think if it really offended somebody that they should have to either change the lyrics or get rid of it. They just should not offend somebody to be a good song or a really great movie. You can't not make something that is making fun of another race or a movie of killing them. Going to like school libraries, for books I think it really depends on the age group. Like their should not be anything that would be offensive or profanity in the @CAPS1 or @CAPS2 @CAPS4. They are just not old enough or mature to be seeing or reading those things in books or magazines. So if a student comes home with a book the class is reading and the parent doesn't like the content they should have the right to say that they don't want their child reading it. And if was really bad be able to take it out of the school. Even @CAPS3 @CAPS4 that have more mature students get offended sometimes from the books their reading in school. One in example is 'To @CAPS5 a @CAPS6'. Even though it is a really good book and a lot of @CAPS4 read it. A lot of @CAPS7 @CAPS8 might get offended by all the racial slurs about @CAPS7 @CAPS8. They just do not feel comfortable fellow students saying them and their teachers saying them. And the @CAPS4 or libraries just should not make students read books that they don't feel comfortable reading. Or the libraries having books like that. Me in example, next year I'm going to have to read that book and I am just not going to like it. I'm half @CAPS7 @CAPS12 and I do not like people saying things like that. It is going to be a really akward moment for me. And I have some other friends that have read that book that didn't feel comfortable reading that book. Their are even little kid books that parents want out of their childs school library. The most challenged book in school libraries is @CAPS13 @CAPS14. I know this because my librarian told me this one day. It is just a good book, but some parents don't want their kids reading about witchcraft and wizards. So they try to get them out of the library. And they should if the parents do't want their kids reading it. I just think if their is a certain amount of people complaining about a movie or song that their should not even be a fight about it. They should just get rid of it. Same thing in a school, if their is students or parents that are complaining and their is a certain amount of them, the librarian should not even have a say in it or the school. They should just get rid of the book or magazine. I believe that if it a book, song, movie , etc is offensive to a certain amount of people that it should just be taken care of by getting rid of it. Parents might not want their kids seeing, hearing, or reading that sort of stuff. And some people get offended by some books or movies. Or they just do't feel comfortable. I believe that things that are brought to the world for entertainment should also be able to get out of the world if people are offended by it." 4 4 4 4 3 4 +2995 2 "Do you think that if certain books, music, movies, and magazines shout be removed from shelves because someone finds them offensive? Such as magazines, books, movies, and even music. I simply do not find any of it right that few peoples opinion's should matter depending on what they find offensive for two reasons. Those reasons being that you picked it out yourself and that you have traveled to the library looking for something you will enjoy. The first reason I think that certain books, music, movies and magazines should not be removed form the shelves are because people have picked them out there selves. Noone is ever going to pick up a book or magazine or even watch movies and listen to music that looks, seems, or even sounds offensive. Mainly because alot of people don't take being ofeneded to kindly. For example, why would a person buy an object that does not seem appealing to them? The second reason that I think that certain books, music, movies, and magazines should not be removed from shelves are because if your going to the library your looking for an interesting book, type of music, a movie, or a magazine. Most likely you're going to end up getting one that looks intersting to you and something that you feel fits your taste. So if there is a book, some sort of music, a movie, or a magazine and it looks offensive then don't get it because if somethings going to offend you its going to be pretty obvious due to what it looks like, seems like, or even sounds like. In my opinion I think that if certain books, music, movies, and magazines are offensive to some people that they should not be taken off the shelf. If you picked something out at the library or went to the library looking for something that you would enjoy, you will obviously end up knowing if something looks, seems, or even sounds offensive" 3 3 3 3 3 3 +2996 2 "If the people that are publishing and writing these articles in these magazines then yes, they can feel offensive about the @CAPS7 things inside the magazine or books. These people are going to always find something or some rumor to start a big fight about these @CAPS1 things, those people are called '@CAPS2'. They can find A eazy way to get something started just like that, That's why before i buy A magazine, I take A look inside of first And see If @CAPS3 interested in buying that specific certain book, or magazine. If I don't like the things that I see inside of @CAPS5, then I @CAPS4 not buy @CAPS5, @CAPS5's @CAPS1 As that. If they are @CAPS7, they should immediately be removed from the news stands on the streets of @LOCATION1, @LOCATION6, @LOCATION12, @LOCATION4, @LOCATION2, @LOCATION5, @LOCATION8, @LOCATION9, @LOCATION3, @LOCATION10, @ORGANIZATION1, @ORGANIZATION2, Or @CAPS8 @LOCATION11, @LOCATION7." 1 1 1 2 2 2 +2997 2 "I think that all the bad books should be taken out of a library. All the bad books, music, magazines and movies no one really wants to read. If a kid picks up the book and reads it, and there are bad content in the books, magazines, music and movies that would be bad to read. If they are young enough and they don't know if the movies or anything else in the library are bad, then it's the library's fault for letting them get the book movies, music or magazines. If the parent doesn't know that their kid read the book their parents will be wondering where they got bad phrases from. There are people that think that any libraries should have any bad books. There are many things in books that parents don't want their children to read. There are things like books that talk about sex. There can also be language that the kids should not read. I know for sure, that I don't want my kids to read anything bad when they grow older. There are also music that parents don't want kids to listen to. There is things like sex songs. There are also things that don't say sex directly, but imply it. I never want my kids to listen to bad songs like that, I want them to be responsible and not listen to terrible songs. There is also movies that I don't want my kids to watch, because of the content of the movie. There are so many things in this world that contain bad things, which all have something to do with sex. Latly all the movies that came out are very inapropriate. Their is one more thing that I think is very important, which is magazines. There are many things that can happen in magazines like porn. I hate when kids are tempted or forced to look at porn. I think in general we should get rid of porn, and descusting pictures in magazines." 3 3 3 3 3 3 +2998 2 "Dear news people, I am qriting to you because I have my own answer on what people should do with books. I think it is ok for people to write whatever thay want because it's a free contruy to where you can do anything that you tink you can do. What I am trying to say is that people can write books how ever thay want with anything in it such as drugs, sex, abuse, bad language, and so on you get what I'm saying. I think it's ok to write whatever they want and put whatever it was they wrote about on the shelf. It's they person who is picking a book choose to read a book just because they don't like what the book was about they don't have to make a big deal about it and cause a problem. People can just not pick the book up and look for another book. I don't think it's fear that people should make a big deal out of a book that they don't have to read at all it makes no since to me and I bet a lot of people would agree. If I was someone who was a aganised stuff like sex, and drugs and I saw it in a book I would just set it down and look for a book that I would agree with than causing a problem like others would. It just is not fare and it's a waist of time to me if someone has to complane about something so dumb. So to rap this thing up I think people who don't like the way books are writen should just put it down and not worry about it and buy a book that they feel better off with reading. There is no point to waist time and cause a problem that's my oppion about this problem hope it is yours to." 3 2 3 2 2 2 +2999 2 "I think that books, magazines, papers etc shouldn't be removed from the librarys because some @CAPS1 like to @CAPS2 them. Some @CAPS1 feel that reading a book about there problem will help them get through what ever problem they are having. @CAPS1 often say that they are stressed and depressed. Those @CAPS1 can get the books and @CAPS2 them to help them solve there problems. If the books etc are offensive then, the @CAPS1 who think they are shouldn't get them. The can't control what books are in the library. Some @CAPS1 have problems and some of the books can help them. Alot of @CAPS1 I know dont think that alot of books are offensive. Its eather they want to @CAPS2 them or they dont. If @CAPS1 think that books etc are offensive they will just have to deal with it. @CAPS1 like to @CAPS2 all kinds of books and some dont even like to @CAPS2. For the @CAPS1 who like to @CAPS2 they can pick whatever book they want that they feel confortable with. If they think that a book is offensive they go past it and find a different book to @CAPS2. I suppose if you find a offensive book you could go to the teacher or someone and talk about it. Im sure that they wont do anything about it. The books and other things are there for a reason, 'For @CAPS1 To @CAPS2', and to understand what there life is and how to fix it. You have to control under the books. You can't tell them what books should be one the shelf and what cant be on the shelf. In conclusion I think that @CAPS1 should deal with it because they cant control it" 3 3 3 3 2 3 +3000 2 "Hello, my name is @CAPS1, I feel that there should be any genre of media in libraries. If they call it a 'media center,' then why censor any media. People know to read the back of a book to see if they want it, so if they see something they don't like they are able to put it back on the shelf. People say The @CAPS2 and the @CAPS3 inspired @CAPS4 @PERSON2 to kill @PERSON1, that is completly speculated it's all a matter of 'he said she said.' I feel there should be sections for different sections for different age groups, but to censor literature is just un-@CAPS5. There should be a parent supervising children @NUM1 and younger, because where it really comes to are the children and them not being exposed to something there not ready for. There are some magazines and movies I feel shouldn't be in librarys, and those are as follows: pornography, non-educational movies, @CAPS6 @CAPS7, and social networks. I'm not saying to let kids listen to murderous music and jump off of the terrace but, shouldn't some leeway on books. This is an approved message thank you for your time, goodbye." 3 3 3 3 3 3 +3001 2 "Books Removed From Shelves? 'All of us can think of a book that we hope none of our children or any other children have taken off the chelf. But if I have the right to remove that book from the shelf- that I work I abhor- then you also have exactly the same right and so does everyone else. And then we have no nooks left on the shelf for any of us.' @CAPS1 statement was from @PERSON1. Do you think it is right for young children to look at immages that are not appropiate or read something that is talking baout sexual content? I do not think any of these materials should be removed from the shelves, but they should be put in a privite area where only adults can get to them. I think they should be put in a certain area, away from children, because children will get ideas from the material that they see and think it is okay to act like that. There are some books and movies out there that teenagers and young children see that are about cereal killers and children think it is okay to bring guns to school and it is not okay. Children are reading these books and thinking it is okay to act like their favorite character or acting like their favorite movie star in a movie. Some of the movies that are out there are about doing stupid stuff, and children and teenagers think it is 'cool' because the person that they look up to is doing that, so they want to try it out also. Children get hurt from doing @CAPS1. Whenever a child sees people having sex, they think it is okay to do it too, becasue those kids in the movies are the same age as they are. I think that movie producers shoudl be aware of what they put out there for children to watch. When you talk about the book @CAPS2 @CAPS3, you think what a great book. But would you ever think that it would be taken off of shelves because of one word that was used in it? I think that it should stay on the shelves, but if a parent does not want their child to read it, then they do not have to read it. If parents do not want their child to read something then just tell the teacher or child that they cannot read the book. I think the books should stay on the shelves and any material that has any 'bad' sontent on it should be put in a private section where only adults can get to it. Do you want your children looking at bad pictures or seeing or reading about something with sexual content? Children are getting bad ideas from books, movies, magazines, and music. They think it is appropiate to act like @CAPS1, because their favotire movie star is preforming @CAPS1 way. These books, movies, and magazines need to be put up out of children's reach, so they cannot get anymore bad ideas to do stupid stuff" 4 4 4 4 4 4 +3002 2 "I think almost every movie might offend someone in some way, So if your wanting to take every movie off the shelf then go ahead. Everyone has different taste in movies, music, books, etc. If the music offends you, don't listen to @CAPS2. If a book does, don't read @CAPS2. Its as simple as that. So I don't think they should remove the books, music, movies, etc. That could offend someone, and here are my reason why; If you were to remove all the things that might interest the people now a-day, then you wouldn't have anything that entertains the kids instead of them going out and getting in trouble, I believe every person has the right to read, watch, or listen to whatever @CAPS2 is they want to listen to. Also If they find @CAPS2 offensive then they just shouldn't listen that song, watch that movie, or even read the book or magazines. Everyones offended in different ways from another, So we can't help @CAPS2 if @CAPS3 little book, song, etc., offends a person. I also think if you give a kid the chance to read @CAPS2, and he sees how offensive @CAPS2 might be, @CAPS2 might keep him/her from doing some of the things he might do if he didn't read the book, Also if he watches what movies he wants, he will learn that, @CAPS1 every body is good people. Children read in a wide variety, some read there dr.suess books and other could be reading @PERSON1 '@CAPS2'. Depending on the children they should be able to choose what they read, listen to or watch. The only flaw I find about Children down side to some magazines is the fact almost every magazine has atleast @CAPS3 half naked women, or man in @CAPS2. Children in there @ORGANIZATION1 years through about first year of @ORGANIZATION2 should @CAPS1 have to see that. My @CAPS4 reason is, people have many different tastes in the materials, so I believe they can read what they want as long as @CAPS2 does @CAPS1 offend them. What there reading should @CAPS1 have any effect on others unless they are reading @CAPS2 also. There are so many people that get offended by the littlest things, but they don't see that its life they will get offended more than a hand full of times in there life. In conflusion I think that people should be able to read what they want even the books people find offensive. The offensive things Should @CAPS1 be taken off the shelves. I also feel that if children get to read some things that could be offensive then they will understand the fact that life isn't easy and you will end up being offended. Also that @CAPS1 everyone is good people, and things happen that people don't like but its life. Finally I think people should @CAPS1 have to give up reading, listening to, watching or looking at things that @MONTH1 be interesting to them" 3 3 3 3 3 3 +3003 2 "The world in full of offensive material, and there almost nothing we can do for it. These books that we leave behind influence the future of our society. These materials should not be removed from the shelves of libraries because it is part of a large varity knowledge and the library is not the last place someone will look for such material. On the logical side of this, the more a person knows the more power one has. That doesn't mean that some items such as centain types of music of movies are inapropate his or her age. Some partents get really offensive when they see something slightly inapropate but the thing to remember is that, those so called little children will sooner or later see such items; it is just a part of growing up. In the last paragraph, it suggested that a person should have large mass of imformation to choose from becasue there is not a perfect little soul and everyone has amounts of cruiosity. For example somethings like @ORGANIZATION1 and @CAPS1 are taught in school and could be consided dangerous. In @ORGANIZATION1 we learn the ways of atoms and make make perdictions of how they will react with other chemicals. When in the lab, students are required to wear safety material because of the dangerous enviroment. The same goes for @CAPS1, one learns about how to live a healthy life and this requires students to learn about the human body such as the reproductive systems. In these @CAPS3 we learn better how the world works around us and with this we learn things that can be dangerous. With everything that we do there is postive and negative outcomes. What I am suggesting is that, we need to find a healthy balance of what is really needed and the materials that are strickly entertainment, and those items should be removed. If it has some purpose behind it, then it holds a place but if it is some magazine talking about drama it apears very useless. In this large world there alway was and always will be people or material that are a bad influnce. Yet this is all a matter of perception and everyone has different torances and values. With this on going problem, we shall make this judgment with the best of our ablities, based off of our values" 4 4 4 3 3 3 +3004 2 "People are entitile to their own oppinion about things. What someone might find offensive someone else might not. Libraries should be able to put anything that might interest a person who educate someone on there shelves wether people get offended or not. If we went by what everyone said we probably wouldnt have anything on the library shelves. People will find something wrong with everything a person can put out thats just human nature. I have read nonfiction books and saw movies that are based on true storys that have used word and language that some people might find offensivc but how are people going to express their feelings and educate people without offending someone. How are we suppose to teach history without telling the whole story. Slavery and the @PERSON1 were a horrible things that happened and teaching about it is important so that it does not happen again. It would be hard to teach about these horrible events without offending people. I believe that we should put these materials on out library shelves anyway, and if people do not like it then do not check them out or look at them. That's my opinion what's yours" 4 3 4 4 4 4 +3005 2 I think if people find books offensive they should not even read that book to begin with. If books are found offensive and taken from shelves then book shelves would be emtpy. Then their would nothing left for people to read. Some of the greatest authors use offensive words in their books take them off th shelves and you will be getting rid of the greatest material. @PERSON1 @CAPS1 for example in the book '@CAPS2' its offensive to gays and one gets killed. 2 2 2 2 3 2 +3006 2 "A book is more than words or happenings; they're adventures and stories that travel from one person to another. I find it amazing how someone from one country could write a book, then someone from another country could read it. Inspiring stories reach from one person to another in books, music, and movies; I believe things like that help shape us into who we are today. There are many problems with entertainment today in my oppinion. They include things now that show a lot of violence and intimacy; which @MONTH1 not be fit for some people. I don't think they should take them off the shelves, but simply rate them so everyone knows what to expect. Movies are rated because some people don't want or need to see what will happen in them. While some of it is not appropriate, other parts of it guide us. It's almost like they are preparing us for the worst, but are hoping for the best. We see what happens to one person in these articles of entertainment, and it helps us to make sure we don't make the same mistake. I also believe that many stories and movies inspire us to be better people and to reach for our dreams. If we see that one person can do it, we think, why can't I? Where would we be in the world if no one encouraged or pushed someone else to do what they wanted? Entertainment pushes that concept, but adds everything in it to show the reality of it. Whether these things have offense or harsh contents to them, they still prepare and help us to battle through everyday life." 3 3 3 3 3 3 +3007 2 "I don't believe that certain books, music, magzines, or movies should be removed. If they are found offensive then that is not my problem. If they offend me then oh well that is my issue to deal with. When it comes to any of the mentioned items, sooner or later society will find them again and they will be back on the shelves. No matter how offensive they are curiosity will bring them back on the shelves. If a book id found offensive by one person or group of people that doesnt mean it should be removed off of the shelves. That is a problem that the one person or group of people will have to live with. Anything and everything is educational in it's own way. Even if it is offensive it can teach someone wrong from right. That being said is it wrong or right for someone to want something offensive to removed from the shelves? It depends on a persons personal views or beliefs. Whether they like it or not things are offensive to somebody out there and there is nothing we can do out there to change that. It's sad to admit, but there really isn't anything to change that. It's just easier to live with it. Maybe whatever you found offensive wasn't meant to be offensive. It depends on what you take offence to. Maybe the writer, director, or composer meant for something to be offensive, maybe they didn't. It's all based on how you take what they said into thought. So when it boils down to it nothing should be removed from the shelves. For if one thing must be removed then youi might as well remove everything." 3 3 3 3 3 3 +3008 2 "I absolutely do not think that any book, movie, magazine, music, etc., should be removed from the shelf because they find it offensive. If we do that, then all the books would be off the shelf. Sometimes the really good books are when they are offensive, because they are actually telling you what they really believe in. I remember when I was twelve, the news was saying that a school was taking books off the shelf because it offended one person in the school. The shocking part was that almost the whole school was reading that book. Even teachers were reading it. The school board did not even care though. I think that was completely handled the wrong way. They should have talked to the girl and said it was unfair to ask that when everybody reads it. If it offended her, then she should not read it. Music is an outlet for many people. They can express their feelings in a way that is amazing. Without music, there would not be any fun in the world. People are alwasy listening to music. When they are sad, mad, upset, confused, etc. If people think some kind of music is offensive, then they should not listen to it. Movies are going to be offensive to at least one thing all the time. That is what makes a movie: a hero and a vilian. We want to good guys to win. The movie makes fun of the bad guys. Somebody is always going to get hurt. When I read, watch, or listen to something, I do not think of how offensive it is to me or somebody else. I think of how the artist feels. Why they wrote it that certain way. If I am listening to music, I listen to the beat and the words at first. Then if I like it, I start singing it. If I do not like it, then I just change the song. I hope people do not end up just taking things off the shelf when someone is offended. We need the different opinions in life. If we all had the same opinions, we would not be ourselves in anyway. I do not want to be the same as everybody else. I love my personality. I am different and kind of an outcast. But I am true to myself. And I respect other people's opinions. I wish everyone would do the same. Or at least try to do the same. Thank you for listening to what I had to say" 4 4 4 4 4 4 +3009 2 "Books, music, movies, magazines, etc. should not be removed from certain library shelves because people have enough sense on what they are interested in and what they are not interested in. There will always be people that find specific thoughts or ideas offensive no matter what the subject is, so censorship does not really make a difference to the individual. Censorship is not necessary because people know what they are interested in without anyone helping them find what they are looking for. Censorship is not entirely necessary because people will always find something that they are not exactly looking for or interested in. People's interests are their own business without the censorship of others in the surrounding community. I've read a couple books that have cussing in them, but the book is still as good as it would be without the cussing in it. People like things no matter what, because there will always be flaws with some objects such as books, music, and movies. Books, music, and movies all have much interest from the common person, and each individual is capable of making their own decisions based on what they are interested in. The individual does not need edited objects, or music to listen to the music or other objects without being offended. There is something offensive to people in every work that has been published, and the buyer is fully aware of that fact before they go and buy something. Censorship is not necessary because individuals are aware of what they are interested without anything telling them what to look for. People will almost always get offended about what they are watching or listening to no matter what it is, so why is censorship such a big deal? Censorship is not needed in today's society because each specific individual is capable of making their own decision in what's best for themselves. Books, music, movies, magazines, etc. should not be taken away from the library shelves because there will always be some offensive objects that some individuals will find offensive no matter what the object is." 3 4 3 4 4 4 +3010 2 "Many people believe that magazines, books, movies, music, posters, plus some other kind of bad stuff that parents don't want there @CAPS1 to see. Some of the stuff they might have in the are books about different colored people, maybe there might also have some terrible things about that colored skin hairitage, @CAPS1 that are to young to be looking at stuff that is in these books. A lot of the @CAPS2 Libraries have these things speard around all over the store. Some of these people that get these books might need to have a good heart about what the book is saying about the skin color. If they don't like what the book and what it has to say then don't get that book. Because you can't change the way the author wrote the story, music, movie, poster. But most the people that I know that are different colored are pretty hilarious and sometimes make jokes about it. Maybe there might also be some pretty terrible things said in the book" 3 2 3 2 2 2 +3011 2 "Would you want your childern reaing about things that only @CAPS1 know's what? When you go to a library you aspect to learn about @CAPS2, @CAPS3, @LOCATION1's @CAPS4,@CAPS5 etc. Libraries are for learning new things about the world that will later help you in @CAPS9. When you first walk into a library you except to see people checking out @CAPS2 books , or books that catch your eye just by the title. If we find a book is offensive , or will not help better our childerns' future then stand up and fight for their own mental development. We must also think of what the childern want to read. They have the right to read what ever they want, as long as it's entertaining to them and they are learning something new. Some books teaches them about the world they are growing up in. There are some books that I would not let my own child read, but I know in my heart that she is learning something that I @MONTH1 not be able to teach her. Those types of books of are what I call, '@CAPS7's'. Those books that can come off seeming offensive, when in the end they are actually, what I call '@CAPS8', helping to prepare them for what is it come. Not every book will be full of rainbows, pretty colors, or pop-ups. They must know that they are some people they have to be mindfull of, and people who are educating them on @CAPS9. They have to learn the difference between what's right, and what's wrong. Remember the first book you ever read by yourself? I do. It was called 'Of @CAPS10 and @CAPS11'. I read that book when I was @NUM1. Till this day my mother says, 'I tried to stop you from reading that book so many times , it had dangerous wording that an @NUM1 year should no be able to read at that young age'. What she did not know was that; that book had taught me alot about the world back then. That knowledge I had obtain then had helped me later on my @CAPS9. Some books are ment to be read while some aren't. If you feel your child should not read a certain book then read it for yourself, and then tell your child the reason why they can not read the same book you had just read." 4 3 4 3 3 3 +3012 2 "Libraries have alot of material to read about. They have childrens books to adult books. All of the books vary on different age groups. So many people go to the libary a day. But the question is, should certin materials be taken off the shelfts because they are found offensive? The answer is no. When people go to the libary, that means they want to learn something, or find something to intertain them. When you go to the libary to reserch something, and they do not have the book you need, or the movie you need, what are you going to do? What happends when you are doing a project over something, and they do not have the book you need? Do you want your children failing in school because they libaries take materials off the shelfs? People should not take materials off the shelfs beucase 'they do not like it.' If they think it is offensive, then they should put it back on the shelf and go find something else. They do not have to take it off the shelf because they are agenst it. Everyone has different beleafs on things. Libaries have different sections to go find materials at. It varies from kids, fiction, and nonfiction. It also sometimes goes by what you are looking for. No one should take something off the shelf if it is offensive because it was their choose to look at it in the first place. No one can tell you what you can and cant look at when you go to a libary. If they do not like what they see, then put it down. It is that easy. If you can not find what you are looking for, then libaries also have computers to look up things" 3 3 3 3 3 3 +3013 2 "A book represents a person's beliefs and feelngs about a topic. Therefore censoring books is wrong because it goes against freedom of speech. I do not believe books, or other media should be removed because while it @MONTH1 be offensive, if it is the truth about something then we need to read about it to prevent tragedies from happening again. A person who finds a topic offensive isn't forced to read about it. If we do not accept other people beliefs, we are just as prejudice as the books we are trying to censor. Many books that are threatened by censorship are books about historical facts, such as the holocaust. I think we have the right to know about important events. For one reason, if we forget about such things, than they are more likely to be repeated. Do we really want the murder of millions of people to be repeated? Just becaused we are ashamed of something dosen't mean we should sweep it under the carpet where it can lay hidden waiting to stike again like a hungry alligator. Instead books about prejudice events should be kept out to show an example of how we shouldn't act. While some books are censored because of shame, some are censored because a certain group of people @MONTH1 find it offensive. There is a much easier solution that censoring those books. The offended groups should just ignore the book. If it is offensive in the first place then no one should be forced to read it. The book shouldn't be forced in any other way like posters, and television broadcast. It should be kept in a certain section of a library so parties wishing to avoid it can. The main reason for a book to be censored in the first place is because someone finds in offensive. However, isn't keeping someone from saying something just as offensive? To @CAPS1 A @CAPS2 is a big target for censorship, but it is about treating everyone fairly. If that book like that was censored, it would be like saying some people are better than others. Another big target for censorship in some countries is the @CAPS3. Censoring that book would basically tell the @CAPS4 population that they are wrong. Censoring something is wrong. Not only could it cause sad events to repeat themselves, offended parties can just simply avoid the book. While some books offend people, censoring a book can be just as offensive to other parties. The simplest thing to do is to leave it up to the reader to decid if they should read it, or not." 4 4 4 4 4 4 +3014 2 "There are many types of materials in the library to entertain you. Some of these materials @MONTH1 be books, magazines, movies, and music. Each person has their own type of information and genres that they like. For example, most teenage girls love to read young romance stories, and about young peoples' lives; @CAPS1 people like informational books. Everyone is different in their own way. The material they choose to read is their own choice. How would you feel if one of your favorite books or magazine were taken off the shelves of all the libraries? You would probably wonder why such a thing would happen. Well, some people would like to argue about how some of the information that is contained in such materials are offensive or innapropriate. They want these types of things to be taken off the shelves. But is it their decision to say that some things offend people? Everyone has their own opinion and can make their own choice on what they want to read or what they do not want to read. In my opinion, these types of materials should stay on the shelves. It is simple, if you do not like a certain genre of magazines or books, do not read them. If you hear someones music, and it sounds completely awful to you, then just walk away or listen to your own music. Theres a new movie out about how the world is going to end, and you disbelieve in the fact that the world will not end that way, do not go and see it. Some parents do not want their children to know about some of the things that are out there in the world, which is completely understandable. But, everyone has rights to what they want to know and what they do not want to know. If everyone had a right to take away some books that they think are not appropriate, do you think there would be any books left? The thing is, is that in today's society, people want to do what they want and think what they want. Some people do not agree with most things, but that is something they will have to face, because not everyone can be happy" 4 4 4 4 4 4 +3015 2 "Should certain materials be removed from the shelves of the library that are found offensive? @PERSON1 states that we will have no books left of the shelf to read if everyone removes a book they do not approve of. What some people think is the most innocent book, could offend another individual. Different people find different topics offensive. No two people think the same. Though certain books or magazines @MONTH1 have offensive subjects or materials in them, if they were to be removed, how would we learn? For example, say there was a historical fiction book about racism. The book might show different perspectives of how people lived when racism flourished. Readers could learn from the books how racism affects people, and why it is wrong. Learning about dislikes can make someone more knowledgable on why some people think the way they do. The readers can learn from mistakes made in the past. Books or movies depict how life was years or even centuries ago; morals were different a while ago from what they are now. If many people were to agree that a certain material is very offensive or not appropriate for adolescents or young children, one option that could be available is only allowing adults to check it out. The library could also put a warning on it if they think the content of the material is too harsh. Another idea could be setting up reviews on a website with a list of each book in the library. Consumers can read the review first and then decide whether to check it out or not. People have their own opinions and views on materials. A person should learn to be tolerant of materials; others might truely enjoy it. This article might be offensive to those who read it, because they might think things should be more sensored rather than tolerated. If someone does not like the material, they are not forced to check it out of the library so why cause a fuss over it? One person might find a topic very offensive while that same topic sparks interest in another individual. Each person has different morals so who is to say what should and should not be in a library?" 3 4 3 4 4 4 +3016 2 "One essential right that every man, woman, or child should have is the freedom of speech. Without this right no one would be able to express their views. When libraries pull books, magazines, movies, and music off of their shelves it takes away that right. Even if the matter of the subject is offensive to some people, the books or other items should be left on the shelves. What one person finds offensive another could find miraculous. If one person does not find the content of a book attractive then simply do not read the book. Libraries should not censor the material that they put on the shelves just because someone does not like it. I do think however, that books should be placed in the secton that they belong. Sections for childrens books, young adult books, adult books, and many more can all be found in a library. An example would be that a book about the anatomy of the human body does not belong in the childrens section. beyond this, the library should leave the rest of the decisons to the reader. If someone wanted to read a book on the @LOCATION1, then that person should be able to go to a library and check the book out. The problem with censorship is that a @CAPS1 could find the book offensive and want it removed from the shelves. Then the person interested in the @LOCATION1 would not be able to withdrawl the book. The choice of what material you read should be left up to you, not restricted by what someone else finds offensive. Libraries should not remove items from their shelves if someone else finds it offensive to their own beliefs. The person should just not read the book. Everyone is going to have a different opinion on most things and therefore, there should not be censorship in libraries" 3 3 3 3 3 3 +3017 2 "Writing is a way to express one's thoughts and ideas on a page. In this country, an author can write freely about whatever he desires and he is not subject to penalty for doing so. Sometimes reading these works can be enjoyable, other times it can be rather disturbing. However, just because a work is offensive does not mean that it is not worth reading. Books, manuscripts, and other forms of literature should not be taken off the shelves even if they are disturbing or offensive. The @CAPS1, a book written by @PERSON2, revealed the horrible practices of the meat packing industry. It was offensive to many, and in addition it caused an uprising among @CAPS2 because of its content. However, there is a reason that book is still talked about today. If there had been laws prohibiting him from writing about the horrific things that were taking place in those factories, it is quite possible and actually very likely that the industry wouldn't have been reformed for a long time. Fortunately, @PERSON2 exposed the horrific processes that took place in the industry and the government stepped in and solved the problem. Someone out there hates this book, and hated it from the day it was published. But that doesn't mean he has the right to remove it from the shelves and prevent all others from reading it. Too often students are forced to read works of fiction and stories that, although they are beneficial for students, do not inform students about the world in which they find themselves. It is important for a student to read @ORGANIZATION1, and the works @PERSON4 and @LOCATION1. However, students must learn and begin to understand the world in which they currently find themselves, the eras of the past, and the circumstances that they will find themselves in for decades to come. They must learn how to become successful in life. They should read works by @PERSON1, such as @CAPS3, which essentially tells the story of success and what seperates the average from the great. Someone out there hates these works, and he should not have the right to ruin the opportunity that these books and short stories could give someone else. Reading is the best way to learn. In a world of social networking and 'screens' of all types, the importance of reading has been diminished. Students must develop a love of reading, and if everyone who hates a book takes it off the shelves, then, as Paterson said, 'we have no books left on the shelf for any of us.' No book should ever be taken off the shelves. Never" 4 4 4 4 4 4 +3018 2 "Dear Newspaper, I beleive that no book should be taken off the selfs for nay reason. People @MONTH1 not be mature enough for some books, music, magazines, etc., and so the libraries that have a problem with some of the materials then maybe they should put a limit to age on checking out certain things. Libraires keep all types of books and magazines so what would be their reason to take the material off the self? I think that there are different types of people in the world and everyones going to wnat to read something different. If libraries are going to take the material off the self that people don't like then the material that others like would be gone. For instance,if i were to take the '@CAPS1' series off the selves then all the '@CAPS1' fans would be ferious and upset. But knowing that lots of people like the series, my library isn't going to do that. There is alot of books that parents don't want their children to read, but libraries arn't going to take them off the selfs. Some parents arn't going to want their children and teenagers to read a romantic, rasy book but thats what other adults enjoy reading. Those books arn't going to go away but if parents have problems with it then maybe they should mention to the library to put an age limit to them. The parents could also check on what their child or teenager is reading. But those books will be in libraries forever and you can't make them go away because you don't want you're chilren to read them. From experiance, I've read a couple racy books and they are disturbing for me, being an imatture addiunce. But i'm not going to ask for the books to be taken off the self. Some books are very vulger and nasty in the ways they discribe fights or wars or abuse but some people like readinf lititure like that so the libraries will keep them. If peoplehave problems with books then stay away from them and don't read them. Its as simple as that. In conclusion, I think all books should stay on the shelves because all people have different interest and opinions. If anyone has a problem with a book for being racy or vulgur then they shouldn't ready that book, and if they dont want their childrena and teenagers to read the book either then they should be a parent and not let them. They can't blame the library for books they don't want their kids to read because thats not fair to the people who enjoy those books and like to read them. Sincerly, @PERSON1" 3 4 3 3 3 3 +3019 2 "From many thoughts and arguments people disagree with the school libraries. The main reason is because of the books, magazines, ariticles, and internet that contains content very disturbing for children. Such content requires material as violence, drugs, and nudity. In this argument, parents do not like the fact that their kids have resources to uncensored content. Or perhaps the parents do not care about what their children have access to. Today libraries are not focused on the materials that they have on their shelves. That is how children could get the idea in being a 'bad kid' in school. They think it is cool seeing someone else doing drugs, violence, or nudity. But if the libraries have censored content in the library, then kids would not enjoy it if they would have uncensored content. In the parents thoughts, uncensored content should be kept away from children. The libraries should be more responsible with the content that they have on their shelves. They either do or do not know that they have offensive content in their library. They need to remove all offensive and uncensored content from their shelves for the children. It is not right for the kids to see any offensive or uncensored material. Their are parents who have kids in school, who do not care about what they learn or what they do. Parents should be more concerned about what their kids are learning everyday. Then they can at least teach their childern about uncensored content. Parents and libraries should be more responsible about the offensive content that the children could possibly have access to. Children should not see any of the content because it is not right for a child. The falt goes to the parents and the libraries. They should be aware of the material that the children are looking at" 4 4 4 4 4 4 +3020 2 "Do you want your nine year old @CAPS2 talking and reading about inappropreite subjects such as sexual relationships or language? No! I know I wouldn't for my @CAPS2. I think books that are offensive and inappropreite shouldn't be in @LOCATION1 school or elementray schools with little ones or even @NUM1 years olds. And parents should be in conrol of what thier kids watch and listen too. Honstley we can't control how people make movies or what singers are saying in songs but we can control who listens to them and watches them. Its the parents that are the only ones who can control thier children, no one else. In libraries I feel like its the librarians who are the cause for letting children read offensive books. And I don't mean any disrespect but wouldn't you agree? I mean think about it, librarians are the ones in control of the books that are in the library, and I think that they should make sure that the book young teens are checking out are appropraite enough for them to read. Ones that don't involve sex or violence that @NUM1 year olds shouldn't be reading. Here's an idea, maybe libraries should have @DATE1 year olds sign a paper or have a certain card with them that allows them to check out that certain book or @CAPS4. And it should have parents permisson on it showing that the parents approve of this. But I think high schoolers should only be aloud to do this because they are more mature than younger ones. They know better than to start fights or cuss in school. All I'm saying is that I DO agree with this problem, parents are the reason thier kids are immature and rude because they @CAPS1 thier children get away with the attitude and rudeness. So yes parents and other people do have the right to sensor movies and book, etc. But what about @CAPS4 theaters you ask? DONT @CAPS1 YOUR @CAPS2 @CAPS3 TO THE @CAPS4 @CAPS5 @CAPS6 YOU!!! It's that simple. Students in high school @CAPS3 to the @CAPS5 after school with friends and get in to see rated @CAPS7 movies @CAPS6 parents. And I do believe that some of them use fake @CAPS8 so they don't need a parent with them. Teens will @CAPS3 home that night and want to re-enact what they saw in the @CAPS4. Even if it's sex, or fights or even language. It's really sad that parents allow this to happen and I think the parents should grow up and disapline thier students. I've seen to many parents letting thier children get away with thier mouth and attitude. Most of my friends parents @CAPS1 thier children get away with everything. One of my friends is really bad at getting what she wants. She told me that all she has to do is cry and she gets what she wants. I don't always get what I want and I don't want every new thing out there because I don't deserve it. I have to earn to get a new phone or a laptop. I ask my parents and they eaither say we don't have enough money or you don't need it and I just move on with my life. But I don't @CAPS1 books or movies control my life and change who I am. Those things aren't that important. I mean the ones that talk about school or some random story that some stranger wrote and it just happened to show up in the school libraries. The stories or movies, etc., that teens should really pay attention to are the edicational ones. The ones that teach us about life and society. About the future and teach us how life is as an adult and ready us for the real world. Because once those seniors open those high school doors and graduate it's no more staying up late and sleeping in and parting on the weekends. Its the real world, the adult world. So please read this carefully and I hope what I have said has helped you realize why people sensor these things. Why kids are acting the way they are. Libraries should sensor certain things and not allow students below high school to read them. Please think about what I have said and thank you for taking your time out of your day to read this" 4 4 4 4 4 4 +3021 2 "In this millenium we really should'nt be to concerned about censorhip. People say so way worse in puplic and do worse things in public. On the other side of this, the parents of a child should be watching their kid and looking to see what they are about to grab off the shelf. Its the parents fault if their child gets ahold of a book that has adult content on or in it. So why should we have censorship? If a cd contains adult content and the child is underage and grabs it off the shelf listening to it, then its the parents fault for not being responsible enough to watch their child. Same goes for books and etc.. Now if the child is old enough to understand what they grab then they should be able to listen to it, and ask questions about it. If its about adult relationships and the child takes it, then the parent should explain it all and tell them what is going on. The parent should be the one to take responsibility. Now, if a book, music, movie, magazine, and ect.contain raceism in it then it should be censored, unless its about history. Kids under the age of teen usally repeat what they hear or read. Same goes for teenagers too actualy! Books with the wrong kind of words in it should be kept safe or there should be a age to where you can get it. The world has enough horrid language in it, why should the library add to it by letting kids get ahold of these books and repeating what they hear. I remember when I was walking around a library and I saw a little kid not older than @NUM1 grab an adult book and started to open it and look through it. The parent was no where to be seen nor heard, who leaves their child in a book section like that? This young boy put the book down on the hard floor and started to take off his clothes. This was no ones fault, wasnt the library, wasnt mine. People should take responsibility, control their kids and if they can't then leave them at home! There are also certain people who need book for research and need to take home books for their projects. We should'nt have censorship and take down all the books that should be contained from kids. Some of us need those kind of books in order for us to do our research and projects! No we should'nt have censorship in our libraries! Im not about to be able to miss a project or miss a good movie because some parents don't know how to control their kids and watch what they grab. We should be able to keep all the books, movies, magazines, and ect., there could be a way to censor most books but they would need their own shelf, and they could be a age lemit or a pass people could use. That would take to long to do so though. So keep our libraries filled with interesting things without censoring them!" 4 4 4 3 4 3 +3022 2 "Libraries, to myself, are a gateway to another world; where I can be who I want to be, and let my imagination wander where ever it pleases. Libraries should not have the ability to take a book off the shelves depending on it's content. We are all different people, we all don't enjoy the same kind of books. Also, some books @MONTH1 be needed for research. Censorship in a library should not be allowed. First, there are so many different people in the world. Some people learn more about people from books. Imagine yourself a white, @NUM1 year old boy, growing up in an all white town. Never in your life have you seen an @CAPS1 @CAPS2. You go to the library and pick up 'The @CAPS3 of @ORGANIZATION1.' @CAPS4 young boy has never been introduced to such racism. Books are history. Books are learning. Books can not be taken off the shelf just for their content. That content might be a whole other world for a young child. Next, libraries are used so often by college students to writer papers for school. Books are needed for research. For an example, you're a college student writing a research paper on abuse--including sexual, physical, and mental. A young author writes a non-fiction novel about her childhood ranging from being raped by her father at six years old to being bullied in school. After hours of searching, you find all local libraries have removed @CAPS4 book for it's explicit content. College students need books no matter what they're about. Libraries are open to people of all age. It is understandable that a twelve year old could easily get a hold of a book inappropriate for their age level, but that's why libraries are split into sections. If you find a book that is considered to be taken off the shelves, don't remove it, just move it to a more secure and mature area" 4 3 4 4 4 4 +3023 2 "Book @CAPS1 @CAPS2 I think about removing certain materials such as books, music, movies, and-or magazines is that it should be your choice. I always thought that was part of our constitutional right. I read alot of urban books because that's @CAPS2 I enjoy. They realae towhere I have been, or where I @MONTH1 be going in my life. No they are not the kinds of books I would read to my grand childern, but they @MONTH1 choose later in life that they also enjoy urban books and movies. You @MONTH1 not enjoy reading the materials that I enjoy either but that doesn't mean you should banned them. There are alot of books, and movies that I don't care for but I wouldn't ask for them to be banned. If everyone started @CAPS1 @CAPS2 they don't like, there wouldn't be any need for movies, libraries, or book stores. Kids wouldn't have a future because they wouldn't know where they came from. @CAPS2's bad to you @MONTH1 not be bad to me, or the next person. When you go into a library, or book store, you already have and idea of @CAPS2 you are looking for. If there are books that are not appropreiate for kids, they should have their own section that reads, 'For @CAPS3 @CAPS4'. We are the @CAPS3 and parents. We should be the one's in control of our kids and @CAPS2 they read and watch. I don't think @CAPS1 the materials would make the problem go away because kids these days, if they want them bad enough, will figure out away to read or watch them anyway. Ann @CAPS5 and @CAPS6" 4 4 4 4 4 4 +3024 2 "Libraries are our way of knowing what has happened in the past whether it is all fact or maybe fiction. No matter what type of book it is, it still tells us a story of another place and another time. Libraries should not be censored. Taking away one book because of one sentence that seems vulgar and inapropriate for young readers is wrong. I understand that reading books with adult material such as drug abuse and sexuality can lead to experimentation but is that not life? At least once in our exsistance on earth we find ourselves curious about something at we try it, just to see what it is like. It is all a learning experience. History would most likely be the touchiest subject in our libraries mainly because we are asshamed of what we acted like thirty plus years ago, discrimination in @LOCATION1, the @CAPS1, and now the wars in the middle east. Some countries do not even teach their own history to students in school because they are embarrassed of what happened or afraid that it might happen again if the students know @CAPS6, why and what happened. Reading and knowing about what our ancestors did will help us lead a better future not distroy it. Today's media has overflowed with adult material not suitable for kids under @NUM1. If anything we need to start censoring what we broadcast on television and also what we post on the @CAPS4 and leave our libraries alone. Most of the books that are in our libraries has been there for like forty years so it is completely pointless to remove it when it has already educated young minds for over forty years. I truthfully do not know why you would want to remove books or censor them with a sharpie marker. All that is doing is giving readers less material to read. In @LOCATION2, elementary educators are not required to teach their students @CAPS6 to spell, at all. I walked into a third grade classroom and watched a girl spell @CAPS2 '@CAPS3' thinking that was the correct why to spell @CAPS2. The @ORGANIZATION1's excuse for not having teachers teach @CAPS6 to spell is that they should learn that from reading books everyday. Well guess what @LOCATION2, with the @CAPS4, gaming systems and iPods, little kids are not taking to reading like they did ten years ago and we are going to have a lot of future adults not know @CAPS6 to read and this is what it is going to be like. '@CAPS5 @CAPS6 do you spell encyclopedia?' '@CAPS6 should i know, I wasn't taught @CAPS6 to spell in @LOCATION2.' You see what I mean, so if you are going to take away the ability to spell you better not take away our books becuase they are the only things teaching our @ORGANIZATION1's future on @CAPS6 to spell simple words. Today we have the @CAPS4, gaming systems, iPods and @CAPS8 to intertain us on a daily basis. No one is taking to reading as a way to relieve boredom, they are just sitting on the couch watching television. And now if you reduce reading material for teens and young readers you are not incouraging us to read. You are taking away all of the interesting parts of a book. To be truthfull I will read and reread a book many times over if it is a good story with some extra sizzle. I do not enjoy books that do not have drugs, alcohol, family stress, war stories or even some sexuality mainly because books without that are boring. When i read books like that they make me feel better about my life and @CAPS6 I interact with others. I have learned @CAPS6 to deal with all of those things from books. Most of my knowledge comes from those types of books and I would hate for my children to not be able to read the same materials as I did at their age and learn from those books" 4 4 4 4 4 4 +3025 2 "I belive certain materials, such as books, music, movies, magazines, etc., should never be removed from libraries because even if offensive people still have the right to acess that information. I make this opinion by the guidlines our country was built on, freedom of speech and equality for everyone. If we started removing books, movies etc. from out of our libraries for being offensive, where would we draw the line between offensive and not? To remove even one book from a library for offending a certain race or culture, would be the beging of a tornado of books being removed by eveyone who has ever not agreed with what is said about them or about their culture and lifestyles. Now, let's stop and think about what it means for somthing to be offensive in the first place. People are offended by things in out world every day and books and movies in our libraries are probably pretty low down on the offensive totem pole next to say the internet or news I would think, wouldn't you?. Plus, the materials we provide to our libraries with are for people too learn and teach, they arn't made to be offensive or rude and in my experience with libraries being a @NUM1+ year user I have never found anything to be offesive or hurtful to anyone.In my conclusion there are just too many books about to many subjects already written to even begin to go through which ones are offensive or not and too whom. In conclusion to that libraries are a place of leaning and teaching and the information inside is ment to be helpful and constructive not offesive or hurtful and to start removing materials now would eventualy lead to the end of libraries." 3 3 3 3 3 3 +3026 2 "Have you ever been offended? Did you lash out, or did you keep an open mind and come try understanding? People are offended by many things every day in life. So, we should broaden our minds, and see these 'offenses' as a normality. You're at a party with a bowl full of candy stationed right beside the front door. You walk in and take a piece. Wait, you don't want that piece? What are you going to do with it? Do you take all of the same pieces that you don't like out of the bowl and throw them away, or do you simply drop it back into the bowl and choose a new one? If you throw the candy away, what does that mean for the other party guests? You have narrowed their choices down because of your own selfish opinion. That candy could have been the guest favorite. But, since YOU don't like it, you take away the other guests' privilege to eat that candy. They didn't deserve that, now did they? If you're searching through books in a library and you come across a book that doesn't interest you or offends you, then put it back and look for a new one. If you're having trouble finding the right book, ask the librarian for suggestions on other topics or books to check out. Go to a new library, even, but don't mess with something that isn't yours. Especially, something as small as a book. The point of the matter is, if you don't like something then disregard it. The moment the book, and the book alone, starts causing problems is the moment anyone should intervene. But, come on, do you really think a book could cause a problem? If your child is having problems, don't you think you ought to check what's going on with him instead of looking to see if he/she checked out the 'book that we hope none of our children' took off the shelf. This is quite possibly one of the last things I would think of causing a problem, if I even thought of this at all. Opinions can cause a lot of problems. Sometimes, people just need to keep their opinions to themselves, agreed?" 4 4 4 4 4 4 +3027 2 "The libraries can contain book that are offensive to humans and animals. The book the are very offensive can contain megative coments just to entertain the readers. I believe that all book, music, magazines, and etc should be removed from the shelves if they are found to contain offensive and negative thing about any human. For example, in political cartoon inside of newspapers, @PERSON1 is sometimes compared with a @CAPS1. We as @CAPS2 @CAPS3 take it very offensive when they are called someone in our own race a @CAPS1. I take that very offensive because, back during the time when black were not able to do certain thing, the whites would refer to blacks as monkeys. I being offened is not a good thing, and they last place they need offensive stuff is in the libraries. Libraries are suppose to hold positive material on the shevles. Book that give knowledge to people in need, not thing contain negative depictions of human life. Also children should be able to pick up a book, and not feel offened by it. One night my little brother came home with a book that he got for the library. It was about a white dog and a dark colored dog together trying to find food and a place to sleep. But one day the dark colored dog was lefted out in the cold while a loving family toke in the white dog , into their warm home. My brother feel so uncomfortable with that book, he decided to take it back that same night. Libraries can contain very offensive things that can make a person sick to their stomachs. Offensive thing can hurt a persons feelings, and libraries should be the last place where a person should feel uncomfortable reading a book. Eventhough my brother found a book that he disliked, he still continues to go to the library to find excellent books to read. Libraries are fun to go to, but they can contain very offensive thing that can hurt a person's feelings." 3 4 3 3 4 3 +3028 2 "Censorship is found on television, in libraries, in schools, and even in homes. Do you think that censorship should be used? Censorship can be used to block one's personal thoughts and opinions to promote conformism. I disagree with the idea of Censorship. Not everyone thinks people should be able to have their own images and visions; however, that is what makes our world so individualized. Censorship in libraries is growing more and more gradually. The government does not want the society, especially the youth, of @LOCATION1 to read things that are deemed inappropriate. Should that not be up to one's guardian, or if they are old enough, to oneself? When you read books, you see language being block out, they take parts out to make the book seem more classy, also they block out things such as drugs and alcohol. A lot of people believe that books are what hurt a lot of today's society. I believe that reading material could be a lot more educational if the editors woud leave some of the things that they censor, in the book. I believe this because, if parents decide to not let their child read a story that is up to them; however, their child could learn about certain situations and possibly learn how to handle those difficult things. This opinion that censorship in books could be absolutely debatable. Censorship such as in the book, @ORGANIZATION1 is being used. The government is taking out certain words in this story because they are seen as offensive. This is understandable also. I do not believe this amazing novel should be seen in this way. The language was not meaning to be used offensively, but simply to state how people talked and how things were when @PERSON1 was alive. If it were not for books like this, how would out society learn about not only @LOCATION1's history, but other culture's history? In all fairness, @ORGANIZATION1 is an educational novel about how times were in the day of @ORGANIZATION1 and @CAPS1. Censorship in movies is also growing. Television will block out things such as language, nudity, alcohol, drugs, and things of that nature. I would not like to turn on the television and see these things everywhere, but it could educate people on what and what not to do. I believe if censorship were not used, people's thoughts would be more apt to imagine. Imagination can scare people. Some think that imagination can turn someone crazy or into doing something that is not normal; but what is normal? It is to the community, doing what everyone else is doing and not being different, this scares people. This whole essay brings me back to the thought that censorship is basically conformism. The word conformism means to all become one; to conform. If this is the case no one will ever come up with new books, music, movies, magazines, or ideas; we will all just be citizens of @LOCATION1 or any other culture trapped inside our very own minds" 5 4 5 4 4 4 +3029 2 wow thats racist. as i said when i saw the movi white men cant jump. yes that movie could have afended me a lot but it didnt personaly i thought it was funny i enjoyed it cuase its true statistics say black people can jump higher then white people. its all on how you look at it you have to have a sense of humor when it comes to stuff like that. everyone remembers sometime when someone said something offensive to them. but its your choice to take that to heart or just laugh about it. life is so much easyer when u dont cry over every little thing that someone said to you. see now i have a since of humor. when i was in that movie i was laughing so hard i almost peed myself. i didnt care that it singled out white people so what its funny. to kill a mochinburd was also a book that a lot of people called offensive and i can see why. it had the @CAPS1 word in there a lot. but back then it was a different time the people in the book werent saying it to you so why would you be offended by it. he wasnt offending you. if you take little things like that to your heart then you will have a tough time going through life. somethings you just have to let go and roll off your body. in conclusion yes we have had a lot of offending stuff said to us but you cant let it get you down so much you have to move on. and if you move on you will be a better person in the long run. 3 3 3 2 2 2 +3030 2 "Books, music, movies, magazines, and more are a good way to learn. Some of that material is bad though, but some is good. Not all people are the same, and not all books or magazines are the same. Books, newspapers, and magazines are good things, and they could be bad things. Some talk about nonfiction and some fiction. Others talk about famous people and all the good and mainly bad things they did this week, which is something some of us want to read but none of us should read or even write in the first place. Then there are books that have a childs story in them. There are also articles that everyone should read about, like somebody who saved a whole lot of people on @DATE1. There is a diverse amount of things to read out there, you just need to use a little discretion about what to read and put out on the shelves at a public library. Music is another good way to express yourself. There is good old fashioned @CAPS1 music such as @ORGANIZATION1. Then there is stuff that nobody should listen to, or for that matter even sing about like almost all @CAPS2 Music. They also have little childrens songs which no matter how annoying that most of it is, it's alright for anyone to listen to. Or you can pick up some good ol' @CAPS3 @CAPS4 or any other christian artists or gospel music.The music of this world is very diverse. The movies of today can, but most of the time aren't,be good things. You could pick up an educational video that talks about animals that most everyone could watch. There are also bad movies such as @CAPS5 and @CAPS6.It is a horror movie that made it hard to fall asleep for a few days. Those are some that nobody should even produce.There are video copies of television shows as well, which can be alright. The vast amount of movies made today should not even be a thought in someones mind but some are good and educational. So in conclusion, I think it should be reader and viewer discretion when it comes to content of things as this. Libraries everywhere should have most everything there is.Next time your in a library, just use discretion" 4 4 4 4 4 4 +3031 2 "Every library has tons of information on just about everything. There are tons of books, music, movies, magazines and more that contain this information. There is even some information that some people might take offence to. On the other hand, somebody else could be perfectly fine with it. I think that all libraries should keep all their books on the shelfs, no matter what kind of content they contain, because not everybody takes offence to some contents in books, and it is the same way vice versa. The subject race might come into play in some books in libraries. Books have information about people doing things to other people just because of their race. Some people want books took out of their libraries because of the content that they contain, but really it could be a n important part of history that people need to be educated about. Some books have words that are very offencive to people because of their skin color, relgion, or ethnic race. This information that people need to know because thats how people were treated back then and some stuff like that still occurs today. Libraries have all kinds of information. I think that all the books at libraries should stay there no matter what they contain. Even if some content is offensive some people it could still be a important part of history that people need to know" 3 2 3 4 3 4 +3032 2 "In my opinion, books, movies, magazines, ect., should not be taken off the shelves if they are offensive to some people. this is because everyone has different views on everything. Another reson is because for learning purposes in schools and etc. As well as authors would not want to be writting books because the books shelves are empty and their books, movies, magazines are getting rejected. Since most people have different veiws on everything then, every book or magazine would be taken off the shelf if they were offensive because, therefore, there would not be any book or magazine left on the shelf. This is because people think different things are offensive so what somebody thinks is offensive it @MONTH1 not be to another person. Therefore people would be angered or upset if their favorite book was taken off the shelf because someone said it was offensive. Another problem with taking 'offensive' books of the shelf is that it would be a result in people not learning in schools and ect. This is because we all have to go through some point in school where we find something offensive for example wars, slavery, and politics. If all these books were to be taken off the shelves then nobody would be learning about any of this. In conclusion noboby would be being taught why these events happened and why these events are wrong, so people would not have changed, they would keep doing these things because they were not taught not to. This in my opinion would cause alot of conflict between people and nobody would be educated on these events of history. On the other hand rather than books being taken off the shelf books would not be being put on the shelfs. In this I mean that authors, producers, would not be making movies or writting books because their work just keeps getting rejected. Not only rejected but nobdy is going to go through the time and effort to make one of these for it to be rejected because it was offensive. In my opinion it would almost be impossible for these authors/ directors to make a unoffensive book or movie for everyone that is going to read or watch it. In conclusion I have read many books in class every year that offends at least one person, but this person can choose not to finish the movie, book, or magazine if they find it offensive, or they never have to read it again. In conclusion there are many reasons why books should stay on the shelf even if they are offensive to someone. This is because it would not help with people being educated on events that happened, and people would not be reading any books in school. As well as authors would not be writting since their books are getting removed and the shelves are empty" 4 4 4 3 3 3 +3033 2 "Why should we be more carefull of what we get at the libary? Libaries can have books with knowledge, fun, rommance, and action or adventure, but some can be desterbing and grusium. Kids a lot of times will pick books that have pornagerfy or grusium action. This causes the kids to act in different ways. They act hyper and mean to other people or even other children. They are sneeky and do things behind the parents back. Why is because they think they need to act this way because its cool, but they don't understand this makes them look very ugly. 'So take them out' is some of the parents are saying now a days. Even if we do take out all the books that can be bad for our children, there will not be a lot of books left. Because now a days all books have something that is bad for our mind. So why do we need to be more carefull with the books we put in our libary and the books we take out of our libary? It causes the world to change very fast. Now libarys are a great place for kids to learn. Books can teach them new things and expand their knowledge. The libary is where all kids that have reports or essays on important people come to. Some kids go there just to get a book to enjoy. From my point of view libary is one of my most favorites places to be. Any where there are books involved count me there. Having books causes our imagination to come out and take us on adventeres that some of us will never get to do. Sometimes books can cause things to happen in families. Some of them causes us to have nightmares or have very bad behavior. If we try to take out some of these books it will help the familes to come together, but also if we don't take out some of the books, it will cause things to go wild. Because people and kids think they need these books to survive in the world. Which really its just the books and ect... that causes our mind to picture things that make us think we need them. Other writing materials and even movies cause problems in this world today. Magazines can have girls with not much clothes on or other things that make boys minds wander. Movies are even worse because the picture is right there in front of their faces. I am not saying all magazines and movies are bad to our mind because they can also be helpful. Magazines can help us with research or just to now what is happening in this world today. They also can talk on many subjects like cooking, room decerating, on how to decerate your weddings and etc... Movies can help us research and also show us what happened back then. Like watching docromentries, they are on people or what happened in our past. We don't need to take every movie or magazine out, but some we can do without. So why do we need to be more carefull for what we put in libaries? It can cause us to have bad behavior or bad dreams. So how can we help to solve this problem? We can take out books, magazines, movies and etc... that are really bad for our mind. So it can help our children to grow up well behavied and mature. Also one more thing books, magazines, and movies can be a very good thing if we use it right. How do we know we got a good book? We find right books for us by following our heart and our instinkes" 4 4 4 3 4 3 +3034 2 "Author Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf--that work I abhor--then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 quote is reflecting people wanting to rid of some of the literature, books, magazines, music, and movies in libraries, because they think that the material is inappropriate. If we got rid of all of the books from @CAPS1 world, we would have nothing left to learn from, and some of the main sources of entertainment would vanish. I believe that certain materials should not be replaced from the shelves, because the youth of today need to learn about the true past, people should learn about how cultures really are, authors and writers need to be able to express themselves, and parents should be able to control what they believe their children should and should not read. If it were not for books and novels from the past, the current generations would have no clue of what history was about. Children should be allowed to read books such as @ORGANIZATION1, The @CAPS2 @CAPS3, and @CAPS4 @CAPS5 in order to get a taste of how much times have changed. Stories from grandparents only take a person back about @NUM1 years; we need sources that can take us back thousands of years. Some families, such as an @CAPS6 @CAPS7 family, might get offended if their children are reading books that say things like 'nigger,' but that is our history. It is something we cannot change, and it is important for kids to know how things really were and how terrible people were treated. We also do not want today's youth making some of the terrible mistakes generations in the past made, so they need to be taught about the real but sometimes horrendous situations. Learning about different cultures would be another issue if books and movies were depleted. Money is not available these days to just travel to different countries and experience their culture. How is a young girl from a small town in @LOCATION2 supposed to find out how people in @LOCATION1 live their life? For all she knows, the people could be living in igloos. I believe that it is important for people to understand different cultures and religions in order to accept them in society. Movies can teach a lot about different countries, and books do a wonderful job as well. If they are gone, cultures would be misunderstood and forgotten. Also, authors and directors need to be able to express themselves. Every since people are young, they are taught that it is important to be unique and express their own style. Not every writer is going to want to write about butterflies and rainbows. There are people that love writing about violence, gore, and segregation. Those things are part of the world today and everyone needs to face that reality. Getting rid of all of those books from library shelves will not solve the problems; it would only cause people to not expect what might happen to them or @CAPS1 world. Now, some parents @MONTH1 have hard times when their young boy comes home from school with an offensive book, but parents should have control over their kids. If they have a problem with what their children are reading, then they should deal with that personally. They do not need to influence other people's lives by trying to get rid of the materials off of public libraries' shelves. Why people would even consider getting rid of history and learning materials about cultures and different subjects in @CAPS1 world is beyond me. It would be like asking someone to rewind time so that we would not have had slavery, depressions, world wars, and homicides. It is impossible to undo history, but we can learn about the things from the past in order to not make the same mistakes and things of the current world in order to be accepting and understanding. Books, magazines, movies, and music are wonderful. They represent self-expression and freedom of speech, so people should let them be an entertainment and learning source. Without them, we would be and have nothing" 4 5 4 4 4 4 +3035 2 "Many pepole think that offensive material should be removed from the libary because children could pick then up and look in them. I do not belive this should be done. They already have a childrens section if a child looks in a inappropiate book outside of the childrens section then its thier fault. I do not think it should inconvience someone to have to go elsewhere to get that cd,game,book, or movie they were looking for. It is very hard to come across a inapropiate book without looking for it on purpose. It could be a book used for teaching health or nursing class and is not meant to be inapropiate at all. These are a few things you should consider when choosing a side on this debate. Who knows we might have to vote on it someday" 2 2 2 2 2 2 +3036 2 "Who cares about unsensored things anyway? Offensive things have been around in libraries, probably since the first library opened. There has been 'offensive' things in a library for as long as i can remember. Now everyone is suppose to share there opinons on pulling these offensive books off the shelve? What is the differnce between someone saying somthing offense or writing it? Ok, so maybe you dont want your child reading somthing unsensored, but the chances are some other child will say somthing unsensored around him. If there is a book that is so bad you wouldnt want your kids reading, why would it of been published? Publishers do read the books they publish them, they will not publish any random thing. I think that they just need to leave the unsensored things alone. If you cant be mature enough to take a article, book, or magizine seriously, then you dont need to be reading it anyway. In the news or radio you always hear about some boy getting bullied and stuff at school. That isnt because of unsensored things, why dont they blame it on parents and ask where they were at? Parents look at anyone and everyone, but themselves when a kid comes home and has learned a cuss word or somthing. It is never the parents fault. If people pull unsensored things out of the library it will serve no purpose and thats just my opinion. I know that i have no say in it and thats ok i can still believe that i am right. Thank you for your time" 3 3 3 3 4 3 +3037 2 "When you were a child how much did you learn from books? Books are filled with great stories of far-away lands, accounts of real events, and poems with powerful meanings. All of those books were written by an author with a clear point to make. Those books should not be censored from libraries because of words or ideas that are found offensive. Children have to learn these things some time in their life and I think the earlier they learn the less trouble it will cause them later in life. There are also freedoms in the @LOCATION1 that grant us freedom of speech. Shouldn't there be a freedom to read as well? Authors are brilliant people. Without them, there would be no books for anybody to read. We should all respect authors and what they put into their books. This means when an author believes that a certain word or action fits in a book, we should leave that book alone and respect what the he or she chose to put in it. When I was a child I picked up on everything. I was a very inquisive as any kid my age would be. I remember wandering around my public library scanning the rows of books and reading the titles. There were books about politics, religion, sex, and violence. However on the other side of the library, there were books about children escaping their own world and traveling through time in a magical tree house. There were even stories about mice who had feelings and normal conversations amongst themselves! The library is great because of the plethora of knowledge contained in the unrestricted inventory of books. As I grew older, I began to dwelve into more adult books such as politics and religion. I then formed my own personal opinions on what I gathered from the books. Without those books in that library I would have never been able to research those topics. There is an amendment in our @CAPS1 of @CAPS2 that promotes freedom of speech in the @LOCATION1. This allows for anybody to say whatever they please as long as they don't infringe upon the @CAPS2 of anybody else. The definition of library is a place where people can read and check out books from library and return them when they please. Libraries should allow every book in their collection because every book has some sort of value. Taking a book out of a library because of offensive material is not right because books are important no matter what is inside of them. Some books @MONTH1 have material that might not belong in the hands of children. Children need to learn those things sometime in their life. Why not now? Books are what have taught all of us. Please let them keep teaching" 4 4 4 4 4 4 +3038 2 "Books that are offensive should not be taken off the shelf all together, but should be put in a section made for adult readers only. This way no children would see the book anyway. If an offensive book is in a school or any other place that the readers are children for the majority than it should be ok to take that book off of the shelf. All together it should be ok to remove an offensive book from a shelf but only if the book is offencive to the wrong audience." 2 2 2 3 3 3 +3039 2 "I think that everyones opinion is different about some books getting removed from the library. Do I believe that certian books should be removed from the library: yes and no. The reason why I choose yes and no is because some books are helpful to others for there class and their research for whatever class they need it for. Another reason why I say no is because of the fact, if the book offense you then dont read the book or think about what is says just leave it alone. The other reason why I picked yes is because if it shows some hurtful words in there towards other thats refering to the people thats its talking about then yes it needs to be removed before others start using thoes kinds of hurtfuls words to the piers or thier elders. If the book contains racial slurs to different races then yes they need to removed asap. If others get ahold of these kinda books then everyone would use them agianst each other which in relsult of that would cause an outbreak of fights people aruging with each other, just pure hate between thoes people using it agianst the different races. These are my opinions of removing some books that contains hurtful things or meaning in them that can contain voilence in them or call another person out of thier name or race" 3 3 3 2 3 2 +3040 2 "Should censorship be used on library books? Obviously if you are talking to an adult then yes, more than likely they don't want their pupils to be learning inappropriate words, but if you ask any student the same question you will probably get mixed answers. Some might say' I don't appreciate hearing or reading those words,' others might say' sure why not, I hear them on televison, see them on the internet, my parents say them so why can't I read them.' To me personally I don't think it's that big of a deal to have a few inappropriate words in a book, but they shouldn't be allowed on shelfs in a middle school's library or lower. High school and up I think that its okay to have on the shelves in magazines, books, music and movies. When I was a child my mother always said don't cuss, but growing up in an enviornment where the overwhelming majority of people you talk to cuss, then after awhile it comes out like normal words. So why not have it in the books, and movies? It's not like we don't know what the words mean. If they hurt your feelings then you know not to read, listen or watch it again. I'm not saying cuss words are good and that it's ok for them to be in every sentence you say, but hearing or reading a few won't kill you. In some cases, cuss words are good for a story. Sometimes your reading a book and someone gets in an argument, you don't even realize it till the argument is over, but with sometimes when there is a cuss word, you stop and say,' @CAPS1 something is going on here, and I want to know what it is.' @CAPS2 catches your attention and keeps you hooked on whatever it is until you find out what happened. Consequently; movies, books, music, and magazines with foul language does have an affect on our youth. A lot of children are cussing at an early age, but thats just how people communicate, show emotions, and get someones attention. Censorship can take away a lot from a book, overall making it less interesting, so again I believe censorship should not be a deciding factor in choosing a book, movie, music or magazine. Choose it because it looks interesting and its something you might enjoy" 3 3 3 3 3 3 +3041 2 "There are many books that are offensive to people. I personally agree. There are many things that shouldn't be seen by children.There is alot of material out there, weather its books, movie, and other things that have a bad influences on children. Children learn by watching and observing. They learn from us and our generation. What better way to protect them than by removing their bad influences. First, children watch movies and they see to people kissing and one thing leads to another. Some movies even show people having sex. What kind of influence is that on the children. Than the children learn and they go out there and do the same thing. Teen pregnacies have jumped threw the roof. High @CAPS1 are filled with pregnant teens. Any where you go I garentee you will see a pragnant teen. Some girls even get pragnant right after they have developed and were able to have kids. Now imagine if we were able to stop that. Theres a way; dont let the children watch these programs, that way they won't be tempted. Secondly, there are books and movies and other things that show the children shooting and killings and how people get away with it. This could be a very bad influence. There are video games with shootings and have limbs flying all over the place. Well the children will learn from those video games and movies. They think that killing someone is ok and you can get away with it. Bad influences like that make the children think it's ok to do things like that.There have been children who have killed their parents for a video game. Then the children become cereal killers or go on a shooting spry at school. Is that not much evidence at all to show the people that something is wrong. We need to take imediate control of this situation and stop it before one day you see your child on television for killing someone. Finally, all the children are getting lazier. All children do is lay down and watch tv or play video games. Their lazyness causes obesity. Their are many kids to whom this topic refers to. No parent wants to see their kid over weight for many reasons. Children being obeast causes lots of depression. The child feels sad because they feel ugly and they lose self esteem. Thechild then becomes shy and quiet. In some cases the child trys to comit suicide because otherchildren are teasing them in school everyday. I know any parent wouldn't want their kid to die. These are things that are happening and parents need to open their eyes and see whats happening before its to late. In conclusion, to prevent all these catastrophies their has to be change. Their are many harmful and bad influences out their today that can determine the childrens futures. There still time for change, so lets do something about it. Lets try to reduce teen pregnancies, bad influencial video games or movies, and instead of watching movies and playing video games all day get up go outside and go for a walk. These are little things we can do to make a change for good" 4 4 4 3 3 3 +3042 2 "I @CAPS1'@CAPS2 think that books should be censored. There are no books, besides maybe math books, that @CAPS1'@CAPS2 offend at least one person or a group of people. Books are an important part of the learning system. If a certain book offends you then you @CAPS1'@CAPS2 have to @CAPS3 @CAPS4. @CAPS4's that simple. there is no need to over react to words on paper. Besides there are more important issues at the moment. While being offended by a book is bad, we must realize that some people are going through things that are way worse than that. People who do drugs or have a family member that does drugs are an example. A better example would be the parents or gaurdians of a kid who was killed either by accident or on purpose. One of the most common but overlooked examples is the what the loved ones of people who die serving our country go through. As you can see if people can live with that then we can definantly handle an offensive book. Censorship causes blidness. What I mean is, if we censor one offensive book then we have to censor every book that someone finds offensive. All men are created equal, right? So they'd have to censor the book. If a book offends you that much then listen up, @CAPS1'@CAPS2 @CAPS3 @CAPS4! Just because a book is offensive to you doesn'@CAPS2 mean @CAPS4's offensive to everyone. sometimes a history book could be considered offensive so we censor @CAPS4 and then we @CAPS1'@CAPS2 learn about the mistakes of our past and repeat them. The point is if a p erson can handle some of the things I've mentioned, then we can all handle a little bit of words on a little bit of paper." 4 4 4 4 4 4 +3043 2 "This is what's wrong with today's society. We are too soft.We're too worried about what other people might think if we say this or do that. I'm the kind of person that doesn't care about other peoples feelings. And I say that to an extent. If we're talking about my friends, family, my girlfriend, that's totally different. I show a lot of respect to those people on a daily basis. But as far as people I don't know, I could care less what their beliefs, opinions, and outlooks on life are. Maybe we should stop worrying about other people for once and just try to grow and prosper as a race. Anybody ever think of that? If I had it my way, the @ORGANIZATION1 would not exist. @CAPS1, radio, books, movies, magazines would all be uncensored. Is life filtered and censored? Absolutely not! So why should those things be? I'm sick and tired of people constantly sheltering their children from lifes normalcies. They've gotta learn sometime. Life isn't lollipops and rainbows. It's hard, unforgiving, and it kicks you in the teeth. You've just got to learn to adapt to it. And censorship in libraries, on @CAPS1 etc, won't and aren't helping matters in the least bit. I guess I don't understand why we have to care so much. If everybody just relaxed a little and focused on themselves, we would be fine. Everytime I hear the word 'offensive' it makes me sick to my stomach, because in my eyes, that word doesn't exist. It's a made up word that really means we care about other peoples feelings more then we do our own" 3 3 3 4 4 4 +3044 2 "I don't Believe in censorship of libraries. Were @CAPS1 we live in a free country, and have the right to have access to the matrial we want from libraries. It doesnt matter if its age aproprite or not. If you dont want your kids listening to that bad rap artist, or watching that @CAPS2 rated movie, then its your responsibility as a parent to keep it from them. Part of what makes @LOCATION1 so great is the freedom that come with living here. If we allowed anyone to censor a library then we would have no books to read, movies to watch, or music to listen to. Katherine paterson said 'All of us can think of a book that we hompe none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' this quote shows that if anyone had the right to pull a book from the shelf we wouldnt have any books left. Censorship would just be the start.It could lead to the government censoring information from the public that they don't want us to know. which would take away the greatness of @LOCATION1, we wouldn't be free. Censorship of libraries would take away our rights. witch is why i apose it" 3 3 3 3 3 3 +3045 2 "Should books, magazines, music, movies, and ect. be censored for certin age levels? No they should'ent. Books can be very educational. Sometimes you can't even find a book with out bad things in them. Even if they do, sometimes it's the only way to learn some of the rich history of our country. Books can't be censored from children. Why you ask? Because the reason people read books is to learn. To learn about love, math, history, and much more. These books are writen by adults, not for adults, but for everyone to read. I read lots of books, and every book that I read I learn someting new. Back in the ninetinth and twentith centerys, cursing was huge in books. But it wasent just to curse, it was to show the full dioulge of the character. It also set the mood of the era, and the place, where the story is being held. Such as in war books the characters curse a lot. The reason for this is that if a man gets shot in the leg and all he said was,' @CAPS1!!' That isn't how the character would act. The man would curse his lungs out. Not literly but when the author writes what someone would truely say, the reader will have a better understanding of the characters in the book. As the quote says, everyone has the same right to read, which is true. Its true because everyone has a right to be interested and learn about what they are interested in. Right? I myself strongly belive they everyone should choose what they want to learn about, and then have the freedom to do that. So should books in a library be censored? No defenitly not. its the best way for people to learn what life is really like. Sometimes you can learn anything with out reading a book with curse words, sex, or violance. People worry that reading books like this will create bad people if they learn these things at a younger age. But it wont, it will only show them how not to act. And can only create a better person." 4 4 4 3 3 3 +3046 2 "I belive if the books, music, movies, magazines and etc. are offensive and are bad that they should be removed, the reason being is because of younger children. Younger children are not aloud to be exsposed to that stuff if it's bad or not pertand to them. Since there are books, music, movies, magazines and etc. that are bad and offensive, then I would suggest a room or some sort of place that they can be held and were only adualts can be around them and can get to them. Movies and magazines are my biggest thing that would worry me. There are more bad things in them then in books or music. Books and music have bad language but very rarely have bad images or other things like that. If there happen to be a book, music, movie, or magzine that you or any other person thinks that is inaproprete or offensive then you or that person would have permision to take it off and show it the main desk, and let them know what you think about it. I feel that they should seperated the censorship in libraries to keep the children safe. They should steel be aloud to have censorship books, music, movies, and magazines because adult can handle that kind of material to where younger children can't. So therefore to keep everything sepreate, and there shouldnt be no problem." 3 3 3 3 3 3 +3047 2 "Many people are very stern about there thoughts when they believe in something very strongly. In other peoples eyes you @MONTH1 find some who disagree and do agree with you from having similar life experiences. All of which peoples opinions are created by life experiences and many tragedy' they have been apart of. You will find sooner or later that some of the problems that many people deal with, that there is someone who has a lot worse than you do and that you should enjoy every moment you can. Opinions are alternated often about many different things, being a homosexual is one of the many that people debate about most often. In my opinion it doesn't really matter whether your homosexual or not you have to understand that everyone is different in there own way. Exceptence is what' key to making eveyone get along at some point, but people struggle with homophobia. Another big debate that many people have are with female and male opinions. It seems as if they dont get along because they disagree, but neither could live without each other. It's nearly impossible to find a male or female who agree' with you @PERCENT1, unless there pretending to be something there not. From life experiences from parents arguing, friends fighting, and other relatives you see people forgive and forget so easily because the world is supposed to gifted and cherished everyday. All in all I believe that most books are based off of reality and other peoples visions on the world and what they see. I also find it interesting when people are very dramatic when trying to get there point across. It helps others get a clear picture of who and what they go through." 3 3 3 4 4 4 +3048 2 "I believe that all the books are meant to be in the library. People would not want them gone if they thought of it the way I do. It makes sense that we need all sorts of books to learn from. Some books @MONTH1 seem bad, but when you think about it there is always a good lesson to be learned. There are many different reasons why all books should stay on the shelf, but here are a couple of mine. Two years ago there was a boy named @PERSON1. On many occations he found himself in bad situations that he did not know how to deal with. Many parents do not talk to their kids about certain things, such as drugs. This makes kids unaware and curious to figure out the truth. He had no other way of figuring out about how to handle fights, drugs, and alcohol unless he read about them in a book. When he was almost sixteen years old he began to hang out with a bad group of teenagers. They were going to take @PERSON1 to a party. @PERSON1 secretly left his house and went because he was curious. When he got to the party, everybody began to drink. He knew that he always wanted to try it, yet he was not going to because he had to be home before his parents got up at five the next morning. After several hours of setting on a couch watching everybody else do it, they finally had him talked into it. He figured that one would not hurt. Well before long, one became two, two became four, and it just kept going up. @PERSON1 was having so much fun that he lost track of time. He looked at the clock and it was three a.m., he got really worried. He didn't know what to do until he thought back to a book he read. The book was about a guy who was out drinking, the guy had know other way home than to drive. The guy decided he would just drive home because he was not very drunk. When he was driving home he pulled out on a highway at the wrong time. A semi hit him in the left side of his car. After thinking about that book he decided to be brave and call his parents. @PERSON1 knew that he would get punished, but he decided that grounding would be better than injury, or even death. @PERSON1 had his dad come get him from the party. He was grounded for two months. It would have been longer if his parents had not been so proud of his decision in the end. @PERSON1 was happy with his decision as well. Events such as that are the exact reason why I think that almost any book belongs on the shelf. The story in wach book helps everybody comprehend what should be done in a real life situations. I know that books help me figure out many things. Even what to do and what not to do. If you just give every book a chance you will find a good reason for it to be read" 3 3 3 4 3 4 +3049 2 "Do I think that certain books, music, movies, and magazines should be romoved from shelves if they are found offensive? Yes, I think they should be romoved from the shevles if they are found offensive to some or the majority of people. Some can be a bad influence on younger kids. Some can be offensive to someone's race or religion. It could also be offensive to people based on who they are or what they do. Some materials should be romoved because of the kind of infuence they have on younger kids. Some books can have violent language and actions in the book. Most magazines have inappropiate articles that they should not be reading or even looking at. The music nowadays are very explicit and do not need to be in hands of kids. Some parents don't even care about the music but it is one of the biggest influential things out. So that's one reason why certain books, music, and magazines should be romved from shelves. There are a lot of music and movies that are very offensive to certain races and religion. Hip @CAPS1 is one of the most explicit kinds of music and is very offensive to all kinds of religion and some race of people. Movies are the same with music. Magazines have certain articles that are racist and certain articles that are very offensive to certain religions. A lot of magazines have stories about celebreties that are very bad, sad, and private. In the past there have been some celebreties that sued some magazines and newspapers that put the wrong story out or something too private out. Those are just some ways and reasons why certain books, movies, music and magazines should be removes from shelves if they are found offensive. No one knows how people feel abouit themselves or things around them" 4 3 4 3 4 3 +3050 2 "NO, I dont think music.movies.magazines, and etc., should be moved from libraries because whats a libaray with only books? In even though you have to read and be quity and be seated. You can have music while on the computer and you can watch and check out movies you @MONTH1 like. And the magazines to keep you updated with the newest fashion on new looks or something thats going on and our community.Music is what you wont to listen when you come to the libary. It smoothing up the vibe and if you @MONTH1 be and a bad mood that music you @MONTH1 like @MONTH1 claim you down in put you and a better one. It relax you. You can be on the computer and still listen to music. While reading a good book you can be listing to music.Movies is a good source when and the libary. You can watch movies while and the libary and check some out. In take home and watch. You can watch all types of movies. Movies you @MONTH1 like and it also can be movies you @MONTH1 need for a project or even educatoinal movies. If you wont to leran about nature, animals,or even a @CAPS1 person from the @DATE1. Its always good for a movie and the libary.Magazines and a libary is very helpful. Because while you @MONTH1 be waiten on something or it could be on the computer you can seat and grab a magazine. In the libary its a varity of magazines you can read like sports,fashion,nature,cartoon,animals and etc. So magazines is very helpful and a libary.Thats why i say no, because it shoudnt be removed from libraries becouse you can do lots of great things and the labary besides just reading a book and getten on a computer. Movies magazines and music is helpful and a libary to. Who just wont to get on a computer and read a book. '@CAPS2 @CAPS3'." 2 3 2 2 2 2 +3051 2 "The library is a pathway to knowledge, which branches to many different cultural roads. It has expanded from just a place of books to a building which also houses music, movies, magazines, and other forms of media. But, there begs the question if certain materials should be excluded if they deemed to be offensive. There are many ways to approach this question. Is censorship an answer to offensive materials or an answer to what is not 'politically correct'? Often, people will claim certain work to be unjust without understanding the viewpoint of the supposed victim. It is quite ironic that the people with the power - who stand up for offended parties - often do not understand them more than the creator of the work. Another reason for censorship is to protect children from unwanted material, which is very understandable. But, where in the process do parents have control of what exactly they want their children to access. I believe it is the resposiblity of the parent to determine such restrictions. If a parent gives a child unlimited access to material at a library, then the child should be able to explore wherever their curiosity takes them. If the parent chooses to limit access, then they should be active in the process of selection. It is the right of the individuals who birthed and raise these kids to determine how they are guided. I myself am a musician, which is no more artistic in a sense than any other creator, such as an author. My creations are expressions that I give for world to enjoy and think about. To remove the work of an author in a library is to damage his ability to spread his thoughts. Of course, there are other outlets to acquire books, but the library is one of the greatest outlets. There are a couple complications that will arise in censorship on libraries. What guidlines do you have in determing excluding the offensive materials? If a material offends one person, is that sufficient enough to exclude it, or do you need a larger group? It is unrealistic to always get a complete consensus of a group's opinion, so how do you determine whats offensive and whats not. In all, I believe that everybody should have the ability acquire whatever material they want from a library. It is an institution that is allows one to go places that they will never go and live lives they never will live. Its ability to do such should not be compromised." 4 4 4 4 4 4 +3052 2 "In third grade, I took a book off the shelf of my local library that had an interesting cover. It was rather large, but I had come to love reading in that time of my life so I decided I was up for it. The genre of the book was fantasy which I enjoyed immensly. Although, there were some parts of the book that had me confused. There were scenes involving women that I did not understand, and many new words. Eventually, I came to ask my dad about a certain part of the book. He read the passage, and his eyes went wide. I never finished that book. There is no doubt that I had a learning experience by reading that book, but, as my dad obviously thought, it @MONTH1 have been a little too much for that time in my life. If it were not for my mom not wanting to make a big deal out of it, my dad would have had a little chat with that library. Now that I am old enough to understand what was going on in that book, I realize that I lost some of my innocense because of it. There is simply some material that is not appropriate for children, and it should not be put in our public libraries. Not censoring what is put on the shelves seems obsurd considering my experience. If I have a son someday, I want to be the one telling him about the touchy subjects of women and swearing; it should not be from some fiction book. I also do not appreciate the other material found in our libraries. The music that I see has artists that write their songs without children in mind, movies have up to @NUM1 ratings, and magazines promote gossip and have sexual references. Overall, it is disappointing to me that our libraries have allowed some of these things onto their shelves. As I think about my experience in third grade, I wish I had never seen that book. Maybe it would have allowed me to keep a little more innocense for a little bit longer, and maybe I would have respected women more through my youth. I would love to see more censorship in libraries so that we can protect today's children until the parents choose to open their eyes to the world." 4 4 4 4 4 4 +3053 2 "Have you ever noticed how much bad materials are out there for childeren to get ahold of? A movie, book, magazine, music, or even something on @CAPS1? It would be nice to get rid of all that bad material, but what if someone else doesn't feel the same way about that song, movie, or @CAPS1 show? I think it would be horrible if we took away all the bad materials because it might bring violence between some people who disagree on it, and it goes against one of our rights, freedom of speech. In the world we live in today, if you take something away from someone like their favorite book, its going to bring out some violence between some people. Look back into our history, we are a country full of rebels. That is how @CAPS3 even came to be. So take away something from people they are going to stand up and fight for it. There will always be people trying to smuggle and hide some things, so we will never be able to get rid of it completly. If you take away all the bad materials it would be taking away one of our rights, freedom of speech. Some materials out there @MONTH1 be offensive to others, but it's not like we have a right to get rid it. It's not like there is any book, magazine, or even a song out there that someone doesn't get offended by. If we do take away all the offensive materials we should take away everything. So what is the point we all will never all agree on something, we can't please everyone. In taking away all the offensive materials you are taking away people's right to freedom of speech. Don't try to take away all the offensive materials, it will just bring violence and make it all much worse than it was. If you're a parent it's not like you can shield your children from everything because eventually they will learn what it all is. So it won't do any good to try to get rid of it. It will still be around. It is just something in our world that we have to live with" 3 3 3 3 4 3 +3054 2 "Do you believe libraries should remove items some people find offensive? Do you find some items offensive and want libraries to remove them? @CAPS2 is a major problem that many people don't think about often before acting. Here are some situations many people run into: If one person finds a @CAPS1 offensive but no one else does, should @CAPS2 be removed? Many libraries contemplate whether or not they should remove an offensive item due to some peoples' opinions. This is because they know people like @CAPS2 and they know people don't; they wonder whether or not they should remove the item because a few people find @CAPS2 offensive, (this can range from books, music, movies, magazines, etc.). People often think they do what is best for everyone by asking the library staff to remove something they think is offensive. Honestly, they're only helping the people that want to have @CAPS2 removed and don't say anything, that is if the library removes the offensive item. If the library removes the offensive item, they @MONTH1 lose a customer, if they don't remove the item they @MONTH1 lose a customer. So they are faced with a dillemma, 'remove the item or don't remove the item?' @CAPS2's a tough decision to make especially when they @MONTH1 lose more than a few customers based on either choice. So what do they do? They @MONTH1 poll the customers and see what they think, they @MONTH1 do nothing at all, or they @MONTH1 remove the item to keep the person happy. The problem is what happens if @CAPS2's a friend who liked the item and you don't want to hurt their feelings because the item has been there forever and they love @CAPS2 so much, but can't afford to buy @CAPS2 at a store. What do you do then? People often don't want to think of other people's' feelings and/or the decisions they would have to face over something as small as 'an offensive' item, and they say things that they wouldn't normally say just to get said item 'out of their sight.' @CAPS3 is they just don't want to agknowladge other people's' choices, feelingings, opinions, etc. So what would you do if you found an offensive item at the library? Would you ask for @CAPS2 to be removed? Say nothing? @CAPS2 is your choice in the end, but not all people have the same tastes in books, music, movies, magazines, etc. that you do. So think about other people's' possible feelings, thoughts, opinions in mind before making a decision." 3 4 3 4 4 4 +3055 2 "If you were offinded by a book in the library would you want it took off the shelf? I wouldn't there is no point in removing it there are a lot of books that offend people, that one book isn't just towards you the same goes for movies and music. Books should be able to be written about any and everything that interests people. Some people @MONTH1 not find the same thing offending like you do everyone dont think alike. If books were made towards emotions or about how people would look at them then there wouldn't be that many books in the world today. This is a free country and we have the write to speak and write about whatever we want to get out. Movies are anoter way of getting you emotions or expressing yourself. People find most movies offending but neither are movies made up of how people feel about it. We are able the express any and everything we can in whatever it is that we do in movies. No one or no race is the center of attetion in movies people @MONTH1 feel as if they are but thats a personal thing people @MONTH1 go through. Music can be produced or even rapped or sung in many different ways to get to people. Music @MONTH1 be found most offending now days but, music is also away of getting emotions and freedom of speech out. I've never felt offended because of a song i've heard or anything people are going to say what they feel and want. Freedom of speech goes a long way in the world people either gotta het used to it or stay offended. Books,music,movies, or magazines wont be pulled because of emotions. I look at it as a way of art expression that shows how people think and respond to things" 3 3 3 3 3 3 +3056 2 "Many books and material in libaries are sometimes offensive to certian people but that does not mean they should be taken off the shelves of libaries. Material that might be offensive to one person might have a valuable intrest in another person. If you hated the subject of history and had the right to take it away, then someone else might come along and take away a subject you like like, science. If it is offensive to the general public, it should be placed in a special scection, be avaible behind the counter, or avaible only at specific libaries. Throught the libaries of the world, there are two general sections, adult, kid, and entertaminet sectioons. In these sections locate many topics and many views of ceartian things. Sometimes it is very offensive and it is almost 'hidden' from view and have to spend all day looking for it. It should be that contreverstial topics should be kept in a closed off section of the libary and can be accesed by the staff so that way none of the pubic can worry. Like cigarretes at a store, somethings should be behind the counter where the material can have a watchfull eye over it. These subjects include sex, racisim, porn, polotics, and other material like the ones listed. With these items behind the counter, people will not know about it and it will be hidden from view, but still acesiable with special order or request. This would help the public. Some material, when reached to a specific town, can cause an uproar that can shake an entire community. Some material should be denied from entering small towns and the specified material can only be aquired at large libaries or specific book stores. With material far away, people can be reassured in small towns that material will never upset their community. This is why some material should only have premettid acess under watchfull guard" 3 3 3 3 3 3 +3057 2 "I do not think that they should be taken off of the shelf because some people find it offensive. The way i look at it is, is that everyone has their own beliefs and rights their own opinions. Not everyone is going to think alike. As an example some people are against blacks and others are not. Everyone thinks different and have their own opinions therefore, they should all be able to listen to whatever. Not everyone is going to like what you like and listen and believe everything you do. Don't read it if it offends you, but just cause it offends you doens't mean that someone else out there doesn't believe in it or likes it." 3 2 3 3 2 3 +3058 2 "All throughout the world there are libraries. Librairies have all different kinds of materiel stacked upon shelves. Most of the material is helpful and enjoyable but some is not. I think libraries should be able to have whatever they want on their shelves. Yes, i understand some of this material @MONTH1 be inappropriate for a certain person but there is a way you can fix this. If libraries have inappropriate books, movies, music, ect. I think they should be able to keep them. Just because some people do not that material does not mean everyone won't like it. Everyone has their own style, everyone likes different things and has different opinions. Isn't that what makes the world go around? Adults @MONTH1 have a problem with the offensive material because they have children who go to the library. I understand there concern but there can be a way to stop them from getting to the inappropriate material. If libraries are going to have this kind of stuff in their libraries i think there should be a blocked off room where kids can't go. That way the people who like that kind of stuff can still get to it but the children can not. We go to school for a vast amount of reasons. Some being; to learn, to get us ready for college, and to be independent. While we are at school not only are we learing things like math and evolution, but we are also learing whats going on in the world around us. If you haven't noticed, all that is out there anymore is bullying, cursing songs and horrifying movies. We, as children and teenagers see and hear about this everyday. Since we learn and already know about all of this 'offensive' stuff, why not have it in our libraries for other people who want to study it? There is alot of different kinds of material in libraries. Some good for kids and teenagers and some inappropriate. I understand the concern for parents on censorship in public libraries, but there is a way to stop it. I think as long as its blocked off into a different room, everyone will be fine and it will cause no harm" 3 4 3 3 3 3 +3059 2 "Censorship is the idea of blocking or removing things that are offensive to peoples belief's, their religion, their race and just their ways of life. Therefore, i do not belive that books in libraries should be censored. I understand that things that people write can be offensive to yourself or others, but what if you found a book that was descriminating someone elses belief's but not yours. Would that still be okay with you to take those book off of the shelves?Also, taking books out of a library is not going to stop kids from learning about things that are not age approprite. If you do not want your child learning about them do not let them get it. You censor what your child reads and do not punish the people who go into the library and need the book. There would be no more libraries if people really wanted to start taking books off the shelf for being offensive. Some people in this world would just take the matter too far and get offended by everything. The things that people will read in books or magazines and see in movies is nothing compared to what they will see in the real world. So if anything, the books that @MONTH1 be offensive to people only show you that you will not like everything that someone writes or says. As far as movies, they are already rated on a decent scale. If it is not age approprite, then do not watch it, or let your children. The same applys for video games and music. Censor them from your children, and do not get them censored from the whole world. That is my opinion about censoring things from libraries. Just because you do not agree with every little thing that someone writes, does not mean that someone else in the world does not. Out of all the things that need to be censored the library is not one of them. Of all the places, taking things off of the library shelves is not going to do justice of what really needs to be done" 3 3 3 3 3 3 +3060 2 "Certain materials should not be removed from shelves if they are found offensive for three reason. The first reason being what maybe offensive to you @MONTH1 not be to someone else. The next reason being that the thing being call offensive can help teach other. The last reason being if we all just removed thing we don't like the world wouldn't be the way it is. The first reason is that what maybe offensive to you @MONTH1 not be to someone else. In this society we live in we shouldn't go base on ones option because everybody has a right to freedom of speech. History show that many different people found different thing to be offensive because some people think that book that haves gays shouldn't be in books, but many feel otherwise.That a good example on how people have different opition. The next reason being that the thing being call offensive can help teach other about many different things. The libraries being a place to study and learn should have a bus load different things even if some take offensive to it. Infact some books teach us that we shouldn't get offfensive because that what one person feels and at long as your got someone who love you it doesn't matter. The last reason being if we all just removed thing we don't like the world wouldn't be the way it is. Books are a way for someone to give there own point of veiw if you dislike it don't take offensive to it and try to removed it from the shelves. The @LOCATION1 has a government where they take everybodys opition. A prime example of this is the state funding schools which is a big issue we shouldn't just removed the school because someone doesn't like it. In conclusion certain materials shouldn't be removed from shelves if they're found offensive for three reasons. The first reason being if you found something offensive it @MONTH1 not be to someone else. Next reason being that the thing being call offensive can help teach other about many different things. The last reason being if we all just removed thing we dislike the world wouldn't be the way it is." 4 4 4 3 3 3 +3061 2 "Dear Katherine Paterson, Do you believe that certain materials, such as books, music, movies, magazines, etc., should be removed form the shelves if they are found offensive? I honestly don't think that's nessecary because not everybody @MONTH1 find those materials offensive. If a couple people think that a certain book or something is offensive then dont read it or pay attention to it, don't take something from someone that they like. I think that if there was people that found a certain topic interesting and there was also people who found it offensive, that they should keep the material and the people who dislike it would just have to get over it. Either way I think that they shouldn't remove those materials, enless everyone agrees that it's offensive.That's not fair to everyone else who likes that topic, just because one person found it offensive. Now if a magazine for the public is being racist or something like that then maybe that can be considered being removed, but other than that I see no reason why you should take away something that some people @MONTH1 enjoy. Let's say I enjoy movies, books, or magazines about hunting and people find it offensive to kill animals for the fun of it or for food. Just because that single person doesn't like that certain thing doesn't mean they should take it away from everyone else. That's just there opinion on things and you can't always get what you want, so just deal with it. Well those are my thoughts on rather or not you should remove materials that some people find offensive. My last opinion is if you don't like the material and it offends you don't read it or have anything to do with it. Other than that you shouldn't take materials away from people enless everyone agrees on it. Sincerly, @PERSON2" 3 3 3 3 4 3 +3062 2 "Many @CAPS1 have different opinions about what's appropriate and what's not. It's depends on one's beliefs and morals. I personally don't think that there should be any censorship in libraries. I think that @CAPS1 should have the freedom to choose what to read, watch, or listen to. Each person should be able to make a decision depending on what they believe. It also depends on a person's age and maturity level. Some parents let their kids watch certain movies that maybe other parents wouldn't. The situation is different for each person. It's hard to judge certain materials because some @CAPS1 might find it acceptable while others might not. There would be contraversy over virtually everything because everybody has different standards of what's acceptable what's not, and these standards would clash with each other. It would be impossible to make sure that nothing in libraries would be offensive to @CAPS1. If someone finds something offensive, then they don't have to check it out. I also think that there are some things that can be done to help appease the argument. For example materials can be catorgorized by maturity level. That's what movie ratings are for. Materials should be organized that @CAPS1 can easily see if they would be offensive or not. For example all the kids movies and books can be put together so that way parents don't have to worry about their kids seeing or reading something that would be inappropriate. It should be obvious to @CAPS1 who would find it offensive and who wouldn't @CAPS1 should have the individual freedom to make decisions for themselves. A library is a public place for anybody to go check out anything they want. Just because somebody finds a book offensive, that doesn't mean that nobody should be allowed to read it. That being said, certain things can be done so that @CAPS1 would know if something would be offensive or not." 3 3 3 3 3 3 +3063 2 "How would you feel if you wrote a story about your life, and someone found it offensive, so the took the book off of the shelves? I feel as if the censorship in libraries is becoming a controversial problem for the following reasons: it is wrong to take away freedoms, people have different opinions and views, and some books, magazines, or songs are trying to make people aware of dangers. One important aspect in why censorship is becoming controversial is; it takes away our freedom of speech. In @LOCATION1, we have the right to speak our minds. If everything we read was censored, there would be nothing to read. The liberties and freedoms of @CAPS1 citizens should not be taken away because of something that is thought to be inappropriate. Another reason why I believe censorship is wrong is; different people have completely different opinions on things. One person might feel that a book about a sexual assault victim is offensive, while another person might think the book is informational and helpful. No one can base censorship on one belief or idea, because it will never be the belief or idea that everyone approves of. A third reason why censorship should not be inforced as much is; it takes away the awarness of the dangers in everyday life. Stories about people who were kidnapped, or were in a car crash because the person who was driving was under the influence of drugs, can be a good thing. Eventhough the story @MONTH1 have some accounts that are not appropriate, it could be very influencial, and convince someone to make the right choice. If we censor stories about abduction, drugs, alcohol, or people making the wrong choices, no one will be able to read a story about it and make the right choice instead of making the same mistake as the person. Although stories or magazine articles that @MONTH1 be seen as vulgar are looked down upon, they help to make people aware, give people the freedom of speech, and allow them to have their own opinions. Censorship in libraries and media should be abolished" 4 4 4 4 4 4 +3064 2 "I actually do believe that they should be able to be removed from the shelf. On the other hand i do not believe that anything rascist should be on library shelfs. Teens these days want to be able to pick up a book that they can actually relate to and the same thing goes for a movie, nusic, and a magazine. You can't help what people want to listen to or like to read or watch. I don't really like robot movie's or any of that crap so that wouldn't be something i'd pick out to watch. On the other hand i don't think that it should have to be removed out of the library just because i dont like it. Also something like @CAPS1 in the @LOCATION1, i don't think that it should be removed from shelve's just because of the title. Family @CAPS2 is a really funny show but also has a lot of bad language in it but i don't think it should be removed because thats what people like to watch. Teens want to be able to read about they can relate to, but some of the things in the book can be offensive maybe. If they didn't have anything to read that they could relate to hardly anyone would read. Not everyone listens to the same music but a @NUM1 yr old doesn't want to go around listening to barney, they want to listen to the music that they like and think is cool, but on the other hand others @MONTH1 not like it. Not letting you get something off of the library shelf because it's bad is like saying you can't eat a certain kind of food because its bad for you. If people didn't get to listen to, read, or watch the things that they like they would be screwed and very upset. I think people are entitled to their own opinion, although some people's opinions could be rather stupid. Not everyone likes the same things and we shouldn't have to." 3 3 3 3 3 3 +3065 2 "From my own observations I do not beleive that any materials should be removed from libraries. All students have the right to read/learn about different subjects. Even if that includes some of them being offensive. Some subjects might be considerderd offensive, like the holocaust for example. If we didnt learn about what happened during that horrific time it could possibly happen again without us even knowing that it has happened before. But it is the students choice to read about that subject or to simply ignore it if it is cosidered offensive. In conclusion I do not beleive that materials in libraries should be censored or removed from shelves. People need to learn a little about everything that goes on in this world to be a better, more educated, well-rounded individual." 3 3 3 3 3 3 +3066 2 "I do think that there should be a censorship in not just in libaries, but everywhare. Personlly, I think that the way that the libraries have the books are appropite and if the parents do not want thier children going any where that is not privy to them keep a hand lenght away As for the parents, the parents know the aera that intrest them ,therefor the parents should go there" 1 1 1 1 2 1 +3067 2 "How would you feel if you were at your local library and you found something with something offensive in it? Many people would not approve of having offensive materials in their library. The library is open to anyone and anyone could see the material. Library's should make sure there isn't anything offinsive in their materials before they put them on the shelf. Everyone has access to the library in your district and can look at anything that is there. A lot of stuff that can be found in your library could be offensive; but how would people know what is offensive and what isn't? Library's shouldn't have that accessable. If they still have it in your library, then it should have a warning on it or be on a high shelf. Library's should be aware of what they are putting on the shelves and know if it is appropriate or not. Furthermore, children also have access to the public library. Most of the time the child will have an adult with them but sometimes they can pick up something before you can stop them. If there is something offensive in a child's reach, they might grab it and see whats in it. Most librarys have a childrens section where you can trust that there isn't anything offensive in it. Not all children will just go to the childrens section so there shouldn't be offensive material in library's or at least in childrens reach. Lastly, librarys choose what they put on the shelves and they never know who will look at it. If there is offensive material in their stuff then anyone can see it and it could put a negative thought in some peoples heads. There are some people who are mature enough to see the offensive material but there are others who can't. Thoes that can't, it @MONTH1 reflect something negative on them and it @MONTH1 cause problems. Therefore, there should not be offinsive material in librarys. In @CAPS1, librarys should not supply offinsive material. If there are people that want to see that kind of stuff there are other ways of getting that material. There shouldn't be access to that in your library because everyone can see it and you don't know how it will effect them. If there is going to be offinsive material in your library there should be an adult area where only people over the age of @NUM1 can enter. If there is something offinsive that is open to anyone, hopefully one day librarys will elimanate them." 4 3 4 4 4 4 +3068 2 "I believe that if there are offensive books,music,movies,and magazines are in the libraries. I think they should be taking off the shelf , @CAPS1 people should not want there children's reading or looking at thing they should not be looking at. Today I'm going againt the views on the censorship in the libraries. I think we should fight for what the libraries should have in the build for our children to read. The materials that the libraries has that are offensive should be put up in another area for older poeple. Not for the children's that go to the libraries. I'm asking the newspaper to help us to fight for what the libraries should have on there shelf for our young people and are children's. And what type's of book should be in the children part in the libraries on the shelf. We should have right's to take off book's on the children side. And have rights to put offensive materials on the side for older people that like books,music,movies,and magazines but not for young children to read. The point I'm trying to make is that we should think about what our children's should be learn. And what they should know as a young person. They should not grow up to fast like some people are .We need to make the better for our young children's. So they can do the same for there self and for there children's some day." 2 2 2 2 3 2 +3069 2 "If you walk into a store and see a book you dont like or a magazine you could care less for, should you be able to get rid of it? My answer to that is no you should not. You do not own the libraries books and you do not have any say on what is displayed in any store. You are the viewers and buyers to these suppliers and if you dont like it dont buy it or look. When I was in the eighth grade I went to @LOCATION2 for a church missions trip. There was alot of cool things there that I saw. This was one of the most popular places in the @LOCATION1. When we wouldn't be working or serving others we would walk around and do some shopping. There is alot of people in this city and it was packed all the time. Now with that being said there was alot of different stores and there are some in my opinion at the time that i thought were very inappropiate for my age level. My whole group walked into a store where we just really didnt belong and we all had no clue this was the kind of store this was. Our actions simply invovled nodding our heads good bye at the cashier and walking out continuing our day of shopping. We did not remove any books, pictures, or even magazines in that store. Reason being is that, that was their store and we had no right to remove anything. After we left there other people walked in that store and liked what they saw if we would have removed those items they wouldnt of got to see what they liked. That would be like someone removing something from a store I like meaning i'd never get to see it and I wouldn't want that. If you walk in to a store and see something you do not like you shouldn't be able to try and get rid of that object. Whether you want your kids seeing it or not you just cant do it. You take your own risk walking into a store and seeing what they have in store for you.You are there to browse around or buy a few things if you would like too. Every store should have their own certain things and what you find offensive other people might like. That goes for the opposite too what other people find offensive you might like. It is all a big chain with many loops. So say you do take that piece of material off that shelf or off the display. Now that material is gone all because of you thought it was offensive. Say another person walks in the ame store and takes something off the shelve that they thought was offensive. Now there is two things gone from the shelve, but you actually liked what they took off the shelve and your upset that they took that off. This will cause alot of conflict and big situations in the future if this was allowed. One person likes it one person doesnt. If you dont like what you see in a store then you shouldn't walk in or you should simply ignore the stuff that is offensive to you. These are some of my opinions about this catagory. I believe you shouldn't be able to take stuff off shelves and terminate other stores products. Always be aware of what your getting your self into and know the outcome of the decisions you make. This could cause alot of lossed jobs and many conflicts between shoppers and viewers like you. I hope you take this into consideration and understand my reasonings for what I have said" 4 3 4 3 3 3 +3070 2 "Libraries are very educational. They provide books, movies, magazines, music, and computers for you to locate something you are looking for. I dont think that libraries include anything offensive. If anyone finds anything that a library has that is offensive to them, then they should talk to someone who works there and see if they can come to a solution. It shouldnt be removed because not everyone @MONTH1 find it offensive. I've been to many libraries in my life and personally, it's amazing all the books, and things for you do there. I've actually gained alot of knowledge at the libraries i've been to because i found so many books that were just amazing. Never, have i ran into something that was offensive to me or anyone else. Everyone is different though, we have all have a different view on things and we all are unique. If a library does have something that's offensive to everyone then maybe it should be removed but like i said earlier if it's not offensive to everyone then it shouldnt be removed. I personally, think libraries hold so many unique things that if somethings were offensive to people then i'd understand why everyone would want it to be removed. If someone came up to me and said 'hey, i find this music to be very inappropriate for young children to listen to' i would say, 'well, that @MONTH1 be true, but some children do listen to that music, it wouldnt be fair to remove it, just because one person doesn't like it. Now, from my experience theres alot of things that people find offensive but personally, i think it would be outside of a library" 3 3 3 3 4 3 +3071 2 "Definately not, they @MONTH1 be offensive to some but not all. Everybody will be projected to offensive material sometime in their life, so their is no real reason to censor materials. These materials are made to entertain someone, some are entertained by offensive material. I honestly dont think that anything in the library is so offensive that it needs to be took out. If any material offends you, you dont have to acknowledge it, you can always check out different material. If censor material then you are going against the first amendment, @CAPS1 of @CAPS2. Everyone will find something offensive about a certain material and demand it gets taken off the shelf or censored, what happens when every book has been marked as offensive? We have no books, thats what. Books are made by the author writing down his idea's and creating a plot, some will think his idea's are offensive but not all will. Whether people think its offensive or not people still enjoy those books. Anyone can create material and share their idea's, those idea's could still be offensive but it doesnt matter, because we have @CAPS1 of @CAPS2 to say whatever we want and to not be prosecuted by it. If you ban any type of material, your prosecuting the voice of the creator's opinions, then all your doing is denying the @NUM1 amendment & being a hypocrite. Censorship of music and movies is not right either. When you censor movies and music your also censoring out their idea's. Music is an expression of life and censoring that would be like censoring emotion. Censorship of the movies, music, & books is just prohibiting the expansion of culture. All im saying is censorship is destroying america and hurting our progression in culture." 4 4 4 4 4 4 +3072 2 "Have you been to a library and saw no books or magazines on the shelfs? Well if the libraries try taking away all the books and magazines that are offensive then there wouldn't be anything there to read. If you pick up a book or magazine and you think it offends you then don't read it, grab a knew one. through out this article you will hear about how movies can be offensive, and how libraires shouldn't empty their shelves over it, then my belief against this topic. Movies, books, magazines and music can be offensive. If you think about it though if you get offended then don't read or listen or watch it. You just simply have to grab a new book. Now the question comes, what if its the best book or movie up there? If thats the case then watch it but just know its your own choice to. If you really want to get those books, movies, etc., off those shelves then grab one that just really offends you and take it to the manager and ask him/her to read it or you read a part to them. If he/she don't she a problem with it tell him/her to read from your perspective and then think about it. After you get done with that ask him/her wants a stack of the books, etc., that offend you. Thats when you start piling up the stacks right in front of him/her. The libraries on the other hand if your getting bombarded with people coming in and sayin this books offends me I can't belive this on your shelves, what if a little kid got ahold of this.......! Managers or owners if you get people coming in to tell you to read this book, watch this movie. What do you do? In my opinion i'd read or watch maybe the first two or three but after that i'd start playin it off and just agreeing to get them out of your office. Now you gotta think, man if all these people keep coming in here and saying these books, movies, etc. are offensive then you really got to take action. If you take books away from the libraries then you loose sales. I've been to a lbrary where everything was catagorized so people know what there looking through before they start reading which is what I think all libraries should do instead of just putting them out on the shelves. My belief on the topic is that you go into a lbrary knowing whats in a lbrary, books! Now if you go in there and theres a book or movie that alot of people complained about then i'd see them making an effort to get rid of it. But if your the only one then i highly doubt they will make a special effort to get rid of it. You also got to think the author of the book didn't write it just to offend you, their not singling you out.If its that bad where you can't read or watch it without something setting you off then take it back ang grab a new one. If that book or movie is their best seller they're not going to destroy it because of one single person. So if you go to a library and check out a book or movie without knowing whats it about then I wouldn't blame them for not doing anything about it, its your choice not theirs. This article took alot of diffrent sides which is good in a way because its not just about one single topic. However if you keep nagging on the manager to get that book or movie out of there and they still don't do it then go to a different library. Maybe that library wont have as many books, movies, magazines, etc., to get offended about and if there is maybe they will be cool about the situation and try fixing the problem to benefit the two of you. So if you read this article and get offended by it then sorry, just expressing personal opinion and trying to get you to solve your problems. thanks for reading" 4 4 4 4 4 4 +3073 2 "What are we hiding from? Is personal expression really that bad? Questions such as these come to mind when the topic of censorship in libraries arises. In my own personal opinion I believe forbidding works of art from libraries is the same as destroying the people @CAPS1 created them. Censorship in general is a way to hide reality and sugar coat the struggles within life itself. One can not learn unless given the oppurtunity to face the problems in society and the world. By banning certain pieces, the world destroys an opportunity to expand the knowledge of every individual. With the removal of materials such as books and music, libraries ruin the time spent and heart that the creators have placed trustfully within them. Although most people use these materials strictly for entertainment, the writers and musicians created them for self expression and to show their pain and struggles. It could even be said that expression such as this is theraputic for these specific individuals. How would you react if your form of art was dibbed unsuitable for a public audience? Would you be hurt and taken back? Many artists probably feel that they are being placed in a state of seclusion and hatred. With the creation of art there is always a deeper meaning behind them. The biggest question in my eyes is, ' @CAPS1 deems that material as unsuitable for libraries'? What can be so wrong with specific material that we must take it away from everyone? At the pace our world is going today their will be no individualism left within the next fifty years. If people are not even allowed to listen to specific types of music, sooner or later people won't be able to wear certain types of clothes or even dye their hair a different color. The human population's greatest gift is their ability to be different. If our society cannot even handle freedom of expression through art, how can it handle any other type? Libraries are created as a place to expand knowledge. If materials are censored how can anyone learn? Every individual has their own way of thinking and interpreting subjects. A book seen as entertainment and down-time reading to one person @MONTH1 be the very thing that strikes a world changing idea in the mind of another. A human's greatest idea comes strictly from the knowledge they have accumulated throughout their life time and off of their interests. If certain forms of art are censored individuals will never be able to find that form of interest in certain subjects. Everyone will strictly be forced to believe and learn the same things, restricting the world from the magical ideas one man could have formed with the information obtained from the art that had been censored. In a discussion based class I previously took, we read an article discussing the @ORGANIZATION1's decision to ban any information related to the loss of the @CAPS2 @CAPS3 and the terrible things their society had done in their attempt of complete succesion from the @LOCATION1. Through ideas such as this, you are not only taking knowledge, but also implanting lies into the heads of the next generation. In that specific situation in the @ORGANIZATION1 it created a hatred and false sense of the @CAPS4 in the childrens' eyes. How can one specifically influence the beliefs of a child @CAPS1 is only @NUM1 or @NUM2 years old based off of their personal selfish beliefs? Through censorship we are destroying the truth and knowledge that each individual deserves if they are determined to find it. The biggest thing about censorship is the cover up of reality. Do libraries think if they do not publically display a controlversial topic no one will know about it? Knowledge is all around us. No one needs a book to tell you our world is not perfect. For all we know, a book censored could have saved millions of lives. I cannot fully grasp the concept in my head of hiding materials from the public. There will soon come a time where expression at all will be censored. If we are getting rid of art should we remove people too? I can relate censoring books to censoring people based on my own personal experience. A teacher once told me that I would not ever achieve my career, because I had piercings. Opinions such as these could kill a person's dreams. I have known that I wanted to be a lawyer since I was seven years old and have been working to better my education based on my goals. How can you tell someone that they are not good enough based on your specific beliefs? There will always be something in the world you do not like. Each library @MONTH1 decided to censor a different type of art from their individual location. Eventually the world will have no art left, because those few people chose that it was not suitable for everyone. I can almost guarentee that most individuals have lived through worse experiences than what are being covered up. The world cannot be sugar coated or portrayed as perfect, because that is not lfe. Everyone will struggle at some point and its works of art that really get us through it. Sometimes we relate to them or in my case art such as music is what makes me feel better when I am hurt. The pain will always be there. Going through reality and the struggles is what makes each individual @CAPS1 they are. Censorship in libraries will not hide anything from the public, it will just destroy an oppurtunity to grow. Censorship in libraries is what will destroy our world. No individual can say that material is not suited for the public, because they are not the public. Every person poses their own opinions on life. By banning these works of art you are banning individuality as a whole. If things like this continue our planet will become mindless zombies will no personal opinions. Libraries will be taking knowledge from everyone and ruin the chances for greatness for many people. There is no true way to hide reality from the world. Let people display their feelings through their art and share it with the world. The struggles of one person @MONTH1 be what saves another and allows the ideals of the world as a whole to grow" 4 5 4 4 4 4 +3074 2 "Several years ago a parent at my school complained to the administration about a book, The @PERSON2, her child was about to read for his english class. She believed that it was an inappropriate book for a ninth grader to read. She was in her rights to be a little nervous about the book, there had been concerns from within the school when it had been added to the ciriculum. The administration eventually decided to keep the book as part of the class because even though the approprietness of one scene @MONTH1 have been in question the rest of the book taught lessons taht were important to children, like tolerance for other cultures, the imaortance of right and wrong and that you must fix the things that you have done wrong. Although I understand that parents do not want to expose their precious children to the rest of the world, I believe that it is important to be exposed to a wide variety of materials because it helps people learn about different cultures and other ways of life. I once read a quote that said something a long the lines of understatnding leads to tolerance. We cannot ban books and other media because we think they are inapproriate for a situation. Being able to understand another person's culture or point of view @MONTH1 one day lead to the solution of problems in out world today, such as the crisis in the @LOCATION1 involving the @CAPS1 and the @CAPS2. I agree very much with the quote by Katherine Paterson about how if we all take away books and other media that we dislike we would have nothing left. A good example of this is the popular internet video site, @CAPS3. There are thousands of videos listed on this site and millions of people who watch them. On each video there is a place to leave feedback on whether you liked or dislike said video. With all of the different viewpoints, opinions, and interests of the millions of people who have viewed this site it is very difficult to find a video without at least one or two dislikes. If we all had the power to take videos we disliked off the site, there would be none left for us to watch. Another reason why we cannot just remove offensive things from our shelves is that without authors taking a little rebellious flair and exposing new ideas, the material we read would quickly becme very boring. During the women's suffrage movment, the men of this country thought the idea of women being allowed to vote was offensive. Now after many years it is seen as a commonplace thing and it is now a legal right for women to vote.This is an example of how a once radical idea has now gained support and made people's lives better. If we take these books from our shelves we are harming ourselves and allowing us to become ignorant. All books and media have value, whether they express just one person's ideas or the thoughts of thousands. We remove material from our shelves at a risk to ourselves as individuals and as a society as a whole. I believe that the founding fathers of our country knew what they were doing when they included the freeedom of speech in the @CAPS4 @CAPS5 @CAPS6. If we remove books and other media from the literal and figurative shelves of our society, are we not denying the authors, writers, singers, and publishers who made those works their freedom of speech?" 4 5 4 4 4 4 +3075 2 "The old saying one should never judge a book by it's cover comes into litteral meaning with this particular subject. Every mind that is among the world is extremely different, just as every book is. One person @MONTH1 look upon a certain subject as offensive, while others @MONTH1 not have the same point of view. However, in my personal opinion books with 'suggestive' references or language should be placed in sections marked mature and clearly labeled with a warning of the contents lieing between the pages. With over a billion different points of views residing all over the world, why should books that only a few select find inappropriate people be removed? Every person has their own life story and rough experiences. Life's journey brings bumps in the road which can scare someone deeply and change their life forever. While reading a book, a viewer @MONTH1 skim across a passage that brings horrible experiences swelling back up in them. For one to have to relive a trauma that they have struggled to get over isn't right, but for another to read about a situation similar to a particular person's life journey could possibly grant them more understanding and compassion for the victim. I do not believe victims of abuse no matter what degree should have to read about that subject in a book they thought they were reading for leisure. However, these books should not be taken off the shelves because people who have not had to endure a struggle such as this should be able to grasp a better understanding for the other person. Books for a more mature mind should be monitored and placed upon a shelf out of reach from a child who can not yet handle that topic. At a young age I selected a book I had thought was a ghost story. Mid way through I came to the understanding that the book was truly about a young girl my age being raped. As a sixth grader I was horrified because I was not yet exposed to that danger of the world, and I was not mature enough to handle that subject. For weeks I walked the halls scaared that I might have the same fate as the girl in the story I had read. Books with mature topics should be seperated from those for younger childeren, because the description in a book @MONTH1 leave a child with emotional scares. Labeling books clearly with any 'suggestive' content the book @MONTH1 contain would help this issue tremendously. If books are clearly labeled that they contain offensive words, comments, or horrifying situations, then a reader who will become offended will have less likely of a chance to grab the material. If children who are still developing their level of maturity come across a book that mentions inappropriate subjects, they will have a better understanding of what they @MONTH1 be about to view. By simply pressing a label on a book that states the concerns can be found within the pages, it will save the world alot of harm. If books begin to fly off the shelves because of offensive topics, their won't be many books left to read. Every person takes a different look at what a story says, just as every age group comprehends the message that passages give differently. By monitoring and labeling books, book worms will be able make a quick decision on whether or not the material they think they want to read is for them. So, in conclusion don't take away the wanders of reading from those who enjoy traveling through the imagination of books, but let them know exactly what they will see as they mosey through the unknown pages of a new adventure." 4 5 4 4 4 4 +3076 2 "Yes, I believe that libraries should remove certain materials from the book shelves if they are found offensive to someone. First of all a oerson doesn't go to the library to get offended. Also if the liberian should know whats appropiate for the library. And items like the ones who offend people should not even be in a public area. A person does't go to the library to see something that offends them. People go to the library to read, study and to have a quiet time. And the people that go to use the library for a resourse, should not find themselves in a situation were they feel that they are being offended by a book, movie or magazine, because of what the autor says in the writeing. People might get offended and stop going to the library. Also the liberian is incharged of the items he wants to display in his library. If the liberian feel that a book its okay to be displayed he can dispay it, but if the book is offensive to someone else, he should be asked to remove the book. And if the book is resourceful for study the liberian should keep it in an area were people that want the book can ask for it. Stuff like that should not even be published in a public area. I think that there should be a law that does not allow offencive literature, music, movies etc... In libraries. Now this days people are allowed to donate items of litereature or intertainment to libraries, but i think that people should make sure that the items they are donateing are okay to be displayed. So yes I believe that offensive materials shoud be removed from the libraries. Because libraries are places were you go to have a quiet time to read and not to get offended. The librarian should be incharged of what he or she wants to dislay. Aand last stuff like that should not even be in a public area" 3 3 3 3 3 3 +3077 2 "It seems you cannot always make everyone happy. No matter what, someone is offended or upset over something. This holds true with everything- including media. Whether it be a book, movie, or a song, someone somewhere will be unhappy with it for some reason. Though this is true, it certainly does not mean you can take that media away from those who enjoy it. The @CAPS1 @CAPS2 of the @LOCATION1 @LOCATION1 @CAPS3 @LOCATION1 that all people are granted freedom of speech and freedom of press. Would taking 'offensive' material off of shelves not take away from this right so clearly and intently given to us? Not only that, but does sheltering the public and making us all believe the world is a place without bias, prejudice, or slander really help us in the grand scheme of things? Pretending that the world is perfect ensures that future generations of the world will be devestated by reality once they get out in the real world and realize everything is not perfect and nice and unbiased all the time. My ninth grade year in high school, I read 'To @CAPS4 A @CAPS5' by @PERSON1. This book demonstrates the harsh prejudice that used to be normal in the @LOCATION4 during the earlier years of the @LOCATION1. This book could certainly be considered offensive by a person living in the southern @LOCATION1; one could say this book steriotypes people in the @LOCATION4. One could also say this book is offensive because of the language it uses. African-@CAPS6 could be offended by the explicit rascist comments and names within the pages. Despite this, 'To @CAPS4 A @CAPS5' is considered a classic and is praised and tought throughout the @LOCATION1 and the rest of the world. I grew from reading @PERSON1's masterpiece- it tought me a lot about where the @LOCATION1 has been and how far it has come with acceptance of other races. You learn from your mistakes, they say. Therefore, we can learn from the media's mistakes. We can grow as people from being offended or having offensive material brought to our attention. We can stop history from repeating itsself by being well-informed. Theology is a huge matter of dispute among all cultures; @CAPS9 or @CAPS10'ite, @LOCATION2, @CAPS11, @LOCATION3, @LOCATION5, @CAPS12. Any book store you walk into, you can find a bible or a book on atheism or even '@ORGANIZATION1,' which focuses on @CAPS13. Any music store you walk into, you can find bands that bash the ideas of religion, but you can also find theistic worship bands or meditating music. Just the same, any movie theater or movie store you visit could supply movies with anti-theistic or pro-theistic themes.Taking such things off of the shelves because one work could be offensive to a group of people could limit another's options to explore theology and find out what suits them. It could limit one's exploration of interests. It could very well take away from one's personal growth. In any case, it is unfair to take something that could be considered offensive to one person away from another just for the sake of being nice and having discretion. Putting a ban on certain works could harm the flow of society. Putting a ban on certain works could limit one's awareness of the world around them or the history they could potentially be inspired by, it could limit the expansion of one's intellect, it could take away from one's exploration of interests or the search of who they really are or want to be. It is best to just keep things the way they are- free." 5 4 5 4 4 4 +3078 2 "Do you believe that certain materials, such as books, movies, magazines, etc ...,should be removed from the shelves if they are found offensive? Most of the people made books that are inapropiate or offensive and sometimes are the life of the person or some experience that they have live. But the problem is that a lot of people are not realistic and they don't thing that those is the live of person's and can be the future of more people.Peple sometimes like to be the best and can make problems with other and that mekes them happy that is a sad thing because that's bad and also they can get of the point of do things so bad that they go to jail that's are some of the experiences that people shows but others get it wrong. well thats their problem they can do what ever they whant . I know that live is not easy but thank's of that material we can have a better live and also we can deffence ourselves. Also i don't think that they need to be remove that books or magazines because that's what help us to have e better life and also in the future, they need to be in there and if people found them offensive just don't go there or don't see that materials ignore them more people like those and thinkthat are helpful for them and for me. I don't think that they goin to have a bad material in there, things that are inapropiate i thing that they can't have bad or nasty information in a place that a lot of people go and not only adult also childre's go too. And that's is more inappropriatefor kids. People know what's going on in there and some others persons know too. the world sometimes is a danger and sometimes help us for grows up that's is a good thing but we hace the choise if we want to read or have that information. I remember one time when i read a book that is kind of sad but that help me to know better our life it was about two boys the book has a lot of bad words and talk really bad bad olso that explain more the book and we learn more about it. that's some things that help us with life. One of the books, magazines,music,movies .etc that we can write is our life because we pass a lot of difficults times and that is a book of our life and can be a inappropriate book of our live.people like me give the tanks to those peoples that publish they experiences and at the same time help us" 3 2 3 3 2 3 +3079 2 "I think that books, music, movies, magazines, and etc. should be aloud to stay on the shelves of stores and libraries. We have to ask our selves these questions. Why should we take them out of libraries? What would people have to read when those books tell us about what went on in the early days, such as slavery, automobiles, and etc.? Who wants to sit and read about other stuff that is just down right boring? Why should we take down the books in the library? We shouldn't take the books down off the shelves. We @MONTH1 have the right to take down the books but why should we. It is taking away the knowledge for our children. We would be taking away a lot of stuff the our children should know about, such as the slavery, and famous people. What would we have to read about if we took most of the books out of the library? We would have nothing to read about other then the stuff that doesn't matter to us anymore. You have to think about if we took all of the books that were inappropraite off the shelves of the library there wouldn't be anymore books. Every book out there has something bad in it, so we would have to take away all the books other than the little kids books. Who would want to go to the library and want to sit there knowing that they are going to be reading something that is not interesting and just boring? I can tell u who wants to do that. Nobody,'' it's just dumb to do it and has no point, unless you are old, then you @MONTH1 like to, but not everybody is old. Reading is fun to some kids and they want to read about different stuff, but if we take the books they can't. We don't need to take any books out of the libraries? There would be no reason to go to the library or even read books, cause there isn't any good ones. We are just taking away something that is really big to us @CAPS1, and without those books there is no history for us to study. Our kids need to see those books even if we don't want them to. That is the early days and they need to know about all of it and how it was back then when they didn't have everything we do now. You can't take away something that is fun to do so why take them" 3 3 3 3 3 3 +3080 2 "I've recently read a letter from Katherine Paterson about censorship in libraries. This is my opinion expressed in words about how I feel about the whole topic. I've been reading ever since I hit first grade. To be honest, I couldn't tell you the names of @PERCENT1 of them because... well I just can't remember them. I'd like to think that it's because I have a horrible memory, but the truth is, they were just unappealing and unmemorable books. In all aspects, these books could be considered a waste of my life. Back then, I guess I only read them because I had nothing better to do, which is horrible because you should read books because you want to. I stopped reading books at around seventh grade because every book I picked up seemed to be extremely boring and it would take the first one hundred pages to actually have something decent happen. Luckily, there is light at the end of this tunnel. Every now and then you come across a book that changes your life. Not literally, but it feels that way at the time (which is what you should feel). These are the books I remember. These 'life-changing' books all have things in them that would interest anyone who picks them up. Unfortunately, these things would be viewed as innappropriate to a select audience. For example, one book @MONTH1 talk about murder and be viewed as highly offensive by a person whose mother had been murdered, whereas the same book could be viewed as a piece of art by someone who has escaped the terribleness of death. Apparently it has gotten to the point where people would have the books censored or have them removed the libraries completely. I can stand idle no longer. Books all go through a long, drawn-out process before they are shelf-ready. They need to be written, read, and selected to be published. For some books, this can take years. To completely alienate these books is extremely unfair to the time that was put into them. If you don't like the books, don't read them. It's as simple as that. If that's not enough reason for you, think of it this way: a book about a child getting raped and fighting to overcome it could serve as inspiration for rape victims. Or, a book about someone's parents dying could help a child in the same situation overcome the grief. All books serve a purpose and should remain staunch on the shelves of local book stores, regardless of the methods used in them. Even if they don't appeal to you, it could be a completely different experience for someone else halfway across the world. Let these books serve their purpose." 4 4 4 4 4 4 +3081 2 "What do you want your child being exposed to? In my own opinion I believe that @CAPS1 shouldn't be taken off the shelfs, because kids know what books are appropriate and innappropriate for them. This @CAPS2 why the library has @CAPS3 'kids' selction away from the 'adult' selction. They know their boundaries, and I don't think a librarian would let a child check out anything innappropriate. The library @CAPS2 a place for all sorts of books for anybody to come and have the right to check them out. Also, @CAPS3 not just librarys', @CAPS1 can be seen or heard from schools, on the radio, t.v. and video games. Any where you go they're more likely going to see innapropriate actions that take place. So as a parent @CAPS3 your job to keep your child away from the things you don't want them to see or hear as much as possible. The only way a child can be exposed to this @CAPS2 if their parents are unattended and irresponsible. Someday your kids will ask questions about that that kind of stuff they hear or see at school from other students. Just be open and honest at the right time but in a mature clean matter. I know alot of young children these days who are being exposed a lot from violent video games, music about drugs, alchol, and sex. @CAPS1 really bothers me, because when I was their age I had no idea what @CAPS1 even was or meant. @CAPS1's wrong for the parents to let them be around that when they know @CAPS1 has a label on @CAPS1 saying '@CAPS10 @CAPS11', '@CAPS12' or '@NUM1'. Every time I hear a child say something about this aweseome video game or cool new song they heard on the radio about drugs, violence and etc, the children tend to get younger and younger every time. I don't understand why parents let them be exposed to that unecessary stuff" 4 4 4 4 4 4 +3082 2 "NEWSPAPER @CAPS1 today im going to tell you what I think on offensive materials in libraries.Offensive materials such as books,magazines,music,movies are found in libraries to some people.But to others they can think its perfectly ok to have in a public place.Thinking somethings offensive is just an opinion and every person has a different look on things. The first thing I have to say about this topic is that these items should not just be taken off the shelves and thrown away.Some people can find these items very educational and they might be able to relate to that book that other people would say is offensive.And if offensive materials are really bothering some people and the libraries are getting alot of complaints they should just make a section in the library just for the offensive books,movies,ect.So people wont have to look at those offensive materials.Another thing is that libraries are a public place and they should have a wide range of books,movies,ect.Because not every one likes the same thing.People have different intrests and outlooks on different things.So people should just except the things that they might not be into because other people might be really into that.And dont always just think about yourself look at the big picture. So there are some of my thoughts and feelings on what I think about offensive materials in libraries.And I hope that you can see my point that im trying to get across." 3 3 3 3 3 3 +3083 2 "Do you believe that certain things need to be taken off the shelf that's uncensored for my children to see.No, I honestly do not because the library shouldn't have no uncensored things put up on the shelves that our children might not see.Cause the staff shouldn't let the children in that area without a parent were the uncensored books, magazines, movies, music and etc. But it's know ones fault because the media staff that works in the library shoudn't allow the younger kids to go in that area were those things are unless their guardian are with them. Unless they allow them in the area were the books, movies, magazines, etc.The kids should have a certain part of the library were they can take books from that's inappropiate for them. There's alot of books that children shouldn't be able to read but they read anyways without adults permission.And yes their some books,that's not inappropiate for the little ones and the big kids.Thing's like that is offensive toward the parents how the staff just let them read in see things like that in the parents wonder why, an how there children learning things like that. Certain things should be posted for things that kids shouldn't be able to see an read and do.And yes I have the right to say something to the staff for letting my child read, see things their not suppose to see.They know those things not appropiate for them so why would they let them watch or do or see stuff like that. My conclusion yes I think certain things that don't suppose to be were they suppose to be for young children to see.That's not right to let them see things like that. So that's why I'm writing this essay to the newspaper arguing on whats right for allowing them to see uncensored things they are not to see" 3 3 3 3 3 3 +3084 2 "Do you believe certain books should be removed from the shelf because they are offensive? From my point of view yes, because libraries are public which means they are open to any and everyone. Kids could see a photo that @MONTH1 not be appropriate for them, people of different religion could hear foul language, and it could give some libraries a bad image. I can relate to this because I have also heard some things that I am not proud of such as foul language. That effected me because when I heard it I went around people who were positive in my life saying it to them. Of course, this could effect a child in a negative way. Kids grow up to be as positive as they can, atleast thats what parents teach them and if they get hooked on things they see they will try to immitate it. From my experience it did not turn out so good because my mother believed in physical discipline. But if a child is not taught that those things have bad effects they will learn the hard way. This is a reason I wish censorship was in our local libraries. Also, people of different religion could find it offensive. We have different consumers that walk in and out of the library everyday, so when they enter they should find it peacful not the opposite. For example a muslim could walk in the library and here others listening into music with nothing but profanity. Now that person has the right to report that person who was listening to it and he can say the library has no restrictions. At times it is okay to want a book that has a few bad words but the library needs to know their limits. Then, the library has a bad image which is a big problem. When something gets a bad look sooner or later it will not be there anymore. Meaning consumers will stop going to that library and one thing could lead to another. For example when you leave the library the people that work there want you to come back and tell other people about their library. But if problems constantly happen there they will leave and tell their friends this is not a good library. Then those figures add up then finally you struck out and it's gone. Now, if they are not removed this is what can happen. Children will immitate what they see or heard, complaints will be filed on that library. If I had a problem with the restriction levels at the library I just would stop going. And if that library can not help it atleast have the courtesy to mark the sections of the library. This will make sure we will know what we are about to see and read" 3 3 3 4 4 4 +3085 2 "I beleive that certian things such as books, movies, music, magazines, etc., should and shouldn't be taken off of the shelf. The reason i think that they should stay on the shelf is because it might interest some of the people that read them. If people don't like them, or they think that it is offensive, they shouldn't go to that library. I don't get offended by anything. When I am going through the library I have seen people get offended by some of the things that they have on the shelfs. Reading things and them getting offensive is a totally different thing. People that read things and get offended by it, should have a say in whether it is on the shelf or not. The reason I think that some of the things shouldn't be on the shelf is because it might be inappropriete. It might not be good for the eyes of people. I think that all libraries should carry the same content in them. So that way noone is making a big deal about what is on the shelves." 3 3 3 4 3 4 +3086 2 "Yes, I think that some books should be taken out of all libraries. No little kid should be looking at or saying those things. Some of the books could offend some people when they don't know it. Parents need to watch what there kids read and watch on a daily basis. Kids need to know why they shouldn't watch those shows or read those books. Maybe if parents would watch there kids they would mind better than what they do. Some of the books could offend people when they don't know it. No little kid should be looking at or reading those books or movies. That is why i think those books should be taken out of all libraries" 2 3 2 3 3 3 +3087 2 "AS WE ALL KNOW, ALL KINDS OF INFORMATION CAN BE FOUND IN A LOCAL, BOOK STORAGE FACILITY, COMMONLY REFERED TO AS A LIBRARY. ALL KINDS OF KNOWLEDGE IS IN THIS LITTLE AREA, BUT, IS SOME OF THAT INFORMATION INAPPROPRIATE ENOUGH TO BE IN A PUBLIC PLACE? MANY LIBRARIES @MONTH1 POSSESS ON THEIR SHELVES BOOKS AND MAGAZINES AND EVEN MUSIC CONTAINING EXPLICIT MATERIAL, AND HOW COULD YOU AVOID IT? IN A MODERN WORLD, THERE'S GOING TO BE LANGUAGE AND PERSONAL ATTRIBUTES THAT WOULD BE FOUND OFFENSIVE TO OLD PEOPLE AND VIEWERS OF PUBLIC BROADCASTING. YES, I AGREE SME MATERIAL CAN AND SHOULD BE IN SEPARATE AREAS THAT MAINSTREAM MATERIAL, BUT ON A WHOLE, WHO CARES?I MEAN, MOST ORDINARY PEOPLE DON'T. I KNOW I DON'T. CENSORSHIP IS STUPID, BECAUSE MOST OF THE STUFF IN LIBRARIES, IF YOU HAVEN'T HEARD OF IT YET, YOU WILL SOON, NO MATTER WHAT CENSORSHIP STEPS ARE TAKEN BY LIBRARY OFFICIALS" 2 2 2 3 3 3 +3088 2 "I believe libraries should have all types of books, music, movies, and magazines. I believe if libraries had limited things that alot of people would not come to the library. For example, if I wanted to get a certain book for school and the library does not have it i don't no were else I would go. The library should have a variety of books if not what if the point of a library. Some books might be to explicit for a child to read. For music I think a library should be limited.I think music should be limited because alot of music has cursing in it. I don't think everyone wants to hear that type of music in a library. I dont think a person should be able to listen to music in the library anyways because a library is suppose to be quiet. But also people who listen to that type of music might be disappointed. Some music might be to bad for some chlidrens ears. For movies I think they should have an age limited for children. Thats simple kids should be able to only watch kid movies. Teenagers should be aloud to watch kid movies and teen movies. Adults should be able to watch all movies. That is how it should go. For magazines they should have all types of magazines. They should have them from child to adult but in different sections. For example, All the children magazines should go with the children books. All the adult magazines should be with the adult reading books. Some magzines are to explicit but the library should make sure the magazines stay in the adult section. Some books are offensive but there books and a library is there to provide books. All kind of books should be in the library no matter what in my opinion. I've never experience a nasty, or explicit book. So if anything is explicit keep it in the adults only section. Every book should be in the library" 3 4 3 3 4 3 +3089 2 "We've all heard the songs on the radio that are censored by constant beeps because of bad words, and we've all seen @ORGANIZATION1 shows and movies that are the same way. Books and magazines are censored the same way by either blocking out the offensive language or replacing the letters with astrics. Numerous amounts of people see no harm in this and support it, while others think that it is no big deal because, eventually, people are going to end up seeing the bad things anyway. If you were an author, musician, or director, wouldn't you want your work to be seen and published as you had originally written it? Most of those people would, and get angry when their work is edited. They want their work to be heard, and sometimes editing out the disrespectful things cause the message not to be understood as clear as it would be with those certain words. This can also cause the original message to be completely missed, and the work could end up meaning something totally different then what it was originally supposed to mean. However, another question arises: If you were a parent, would you want your kids to see those inappropriate scenes in movies, or hear harsh words in music? Most would not want that at all and strongly encourage editing out things that their children are too young to hear and understand. Eventually, though, kids are going to be faced with those things. In conclusion, cenorship should just be ignored. Children are going to end up hearing bad words, seeing inappropriate things, and reading offensive passages in books or magazines. Censoring things can mess up the original message being brought to attention and anger many authors and musicians. There are loads of harsh things in the world, its impossible to just edit them all out" 3 3 3 4 4 4 +3090 2 "They were talking about thinking of a book that no one should take off the shelf. But if the author had the right to remove the book from the shelf - that work I abhor, then everyone else should have the same right to remove the book from the shelf. But then, they would have no books left on the book shelf for any of them to read. They think that they should get some books that are not found offensive. This is what they should do about books that are found offensive. If kids were reading books that the author found offensive, they should get rid of them. The books that were found offensive should not be read at all. Books that are found offensive are really bad for you to read. Offensive books should not be anywhere you are at. If you are going to read a book, do not get a book that is offensive. Non-offensive books like @CAPS1, those kinds of books are not very offensive. If books were not offensive, people would read them very often. If people were to read books very often, there would not be enough @CAPS1 to do anything else. We do not deserve offensive books that have bad things in them. People deserve to have better and not offensive books. Every day we read books, but do we know if they are offensive. If we did not know about the books we are reading were offensive, then we would be saying things right out of the book that we should not be saying. If we say stuff right out of the offensive book, we would get in severe trouble. Getting in trouble can mean some serious punishment. When you get punished, it could cause you to lose something for a certain amount of @CAPS1. In conclusion, you understand what you can and cannot read. You also understand about what to do with offensive books. That non-offensive books can make you learn something. You can also understand about what happens when you say bad things out of the offensive books. And that you can end up losing something for a certain amount of @CAPS1." 3 3 3 3 3 3 +3091 2 "The way that the books, musics ,ect. are made for people basicly for that age group. Like if that particular book contains profanity that some find offensive, then they should ignore that book and move on to the other book that is more fitting for that person rather than starting a controversy over that just of one book. Some stuff will have lables on them like parental guidence to show that only particular age person can have. From my experience is that it's ok, but if it gets out of hand then I just leave it and go to the next thing. Although rmoving the books from most people might not help alot because some people would like to have that book that they won't find anywhere else. The librarians can put that particular book in the older age section of the library and have the kids book in the younger section of the library. So hopefully this might help the problem that you might have for people to enjoy that books, music, magazine, ect." 2 2 2 2 2 2 +3092 2 "Do you think there should be any books movies madaines etc tooken off the shelfs? Will if so then you should read my newspapper actle. I don't think that there is any books etc, that i would take off the shelfs. There are many books etc that kids should read, but you can tell your kids not to read them, or if they do start to read them take the book away from them. There are some books that kids shouldn't read, but only you can stop them from reading them. They willl always try to find away to get what they want. so taking books off the shelf wouldn't do any good, because they'll find the book movie ets somehow. The only way to make such is to keep your kids over watch, and to make such they do son't the stuff you don't want them to do. In conculusion taking books off the shlef would't help anyone out, but just try to keep your kids away from the stuff you don't want them to be around" 3 2 3 3 2 3 +3093 2 "If I owned or worked at a librarie, I would have books, music, movies and magazines that to many people are offensive. But I would not have the offensive books, music, movies, and magazines in the childrens area of the librarie.But I would have them in the adult area. @CAPS5 I would keep that type of books, music or movies might you ask? Well because the adult and older tenageers should be able to handle and act like adult when reading the book, watching the movie, listening to music. If the type of book, movie, or music is causing violent behavior around the town then i will completly remove the item from the shelf. Its that simple. If parents get mad and angree because of these books, movie, and music don't let your children watch, read, or listen to them. Pick out a childs book like @CAPS1 or @ORGANIZATION1, don't pick out a book from @PERSON1. Let your children read a book with lots of pictures and color. Watch @CAPS1 or @ORGANIZATION1 not @CAPS3 on a @CAPS4. My questions is, '@CAPS5 not let people read and watch something that they want even if it is offensive?' @CAPS6 people love watching the scary and offensive movie or listening to the rap music. People live in defferent worlds even though we all live in one. In my oppenion offensive books, music and movies should stay in libraries. Just little and younger kids shouls not read, watch or listen to them" 3 3 3 3 3 3 +3094 2 "Books, music, movies, and much more, being removed off of the self because no one liked them and find some of them offensive does not not mean to get rid of them. Many enjoy them, and could use them for shool research or topics for a class. First of all I know for a fact that some of the music my friends and I listen to would bother many other people, it was clearly our chioce to buy the music, book, or movie. We all have different opinions on what 'good' music or movies are. I can understand why some people would want us to get rid of it because of the foul language or racial slurs, but it is our money and our decision to buy it. Many teens take the music thing out of control and turn it up so loud that it will let @LOCATION1 hear it and with all the word and comments then make in the music I can see why adults don't want us to buy it. In respect for others I think we can turn down the radio, don't make comments to movies, and don't be immature with the books. Second, All the research and studying we have to do in school, it would be pointless to not be able to have books or magazines to do our research with. Now a days the students get to pick what they want to do a topic over and if they want to do that topic bad enough then I am pretty sure they have the material to look up the information on that subject. I do realize that it gets out of control with the music, movies, magazines, and books but we know when to settle down and grow up. Teens who are going to be immature about it does not deserve to have all those things. We just have to learn to use it with respect. Just getting them taken off the shelf would not be a good idea because some kids would actually use them for school believe it or not" 4 3 4 3 4 3 +3095 2 "yes because what if a @NUM1 year old could find a offensive to have a book that talks about his race in a bad way. Now if a man walks in and finds a offensive book about his race he @MONTH1 take the shitchuration to a new level like maby he @MONTH1 demand it to be taking off the shelf or somthing else. If a women walks in with her son or daughter and find a dirty nasty book about sex, drugs, guns and knifes. So yes a offensive book should be taken off a shelf if the book or books are in a public libeary. Only reason the books should be taken off the shrelf is because if its a public libeary alot of kids and their pearents to read, do research and do homework. And that is why a public libaery should take a offensive book off their shelf" 2 3 2 2 2 2 +3096 2 "I belive that they need to keep every thing and gain more. Their is so much to luearn about. The more information you have the better. I for one think that they need to put more magazines on the stands so you can have more information. Thow you can not trust every thing in one, You can still find many facts about what your wanting to learn about. On the other hand, Children should not be able to reach or see some of this. I could teach our children stuff that they are not yet ready to learn about. The fact is they need to have people watching the stuff so kids wont get in it and we can still lurean and find out new things. Not everything should be hidden. The more you know could just save the world." 1 1 1 2 2 2 +3097 2 "I @CAPS1 would like @CAPS4 if nothing was censored, but I don't matter, right? I am the kid that has no choice in the matter. @CAPS3 should I not care about what I am forced not to see? I am sure there are alot of parents that dont follow the censorship rules. Like buying a rated '@CAPS2' movie, or game for their kid that is @NUM1, and not @NUM2 years old, but @CAPS4 does matter that the parents are following the law. I say shrew the law, because when @CAPS4 comes down to @CAPS4, its the parents right to tell/show there kid about things, not the goverment. I Think that @CAPS5 have never really had a choice in matters that affects them directly, and I think we should. @CAPS5 have to follow what ever rules untill there @NUM2 years of age: @CAPS3? I wish I knew @CAPS3, but I dont. Because there is no logical reason for @CAPS5 not to have a vote on what affects them. For all I know there could be a law out right now that is going to make my generation less powerfull then the last generation. I am not saying that this is true, I am only saying that its possible for some thing like this to happen. Video games, They are my weakness I admit, but I don't see a reason for games to be censored. When people say things like '@CAPS5 who play video games with violence will make them murders.' @CAPS4 makes me frustrated. There is not one single thing that proves that. I have known @CAPS5 who have been censored all there life, and when they learn about @CAPS4 all they cant even handle @CAPS4. Its sad really to not beable to watch the news and learn what is going on in the world. Just because they have been kept away from all that all there life. I don't know how or where they get this censorship idea from in the first place. Did their parents tell them @CAPS4 was bad, and never watch/read @CAPS4? Where did they hear @CAPS4 from? I beleive @CAPS4 came from the media @CAPS4 self. I can see the headlines now, '@CAPS5 watching @CAPS6 movie cause them to be murders.' Then they would have some made up percentage on how manny @CAPS5 turn in to a murder that watch @CAPS6 movie compare to @CAPS5 that don't. What I am really saying is that I try not to let other peoples beleifs get in my head and change my own beleifs. Even by me writing this @MONTH1 have cause someone to change there beleifs, and I really @CAPS1 hope I haven't." 3 3 3 3 3 3 +3098 2 "Do I belive that some books, movies, magazines, or ext., shuold be removed do to the fuct some people might find them offensive? NO, I belive that every should have the chance to see it to other then the just the people how did and thought it was offensive. Someone could really like it or a group of people could.Even if some people find an object offensive someone else might need that object for something like school work. Lets say the libraries remove a human trafficking book from the libraries becuase people find it offensive. Then a local school has a praject on human trafficking. The students go to the libraries to get some books on it. Now do to somebody elses dislike of the books these kids don't get to use those books to do thier reshearch. It wouldn't be fair to everyone to remove objects from the libraries just cause some other people find it offensive. The libraries is a public place that everyone has the right to go and borrow stuff from. So no i don't belive that libraries should remove books, movies, magazines, or ext., do to the fact that some other people @MONTH1 find them offensive." 3 3 3 3 3 3 +3099 2 "Twilight, @PERSON1, or even The @CAPS1 @CAPS2 series are books that many guardians do not allow their children to read due to their beliefs on what is real and what is not. Magic, spells, and vampires many of us know are not real but others do not believe in what it is that is being taught to the younger readers. My personal view on censorship would be a very low tolerable standard due to different people, more variety, and different reading or viewing materials. But there would be certain circumstances where I would have to put my foot down and censor things such as sex and drugs just because that is not suitable for young children to be reading at that young of age. The reason why I would have a low tolerance of the censorship is because different people like different things. If someone was an athelte they might not find a book about cooking and cleaning very appealing. As if a person that was a cook might not find a book about athletics too appealing either. Just because one person has different beliefs or what their standard is for offensive would not change my stand point on the censorship of certain articles. Different beliefs of certain people is understandle but, just because you don't believe it doesn't mean that everyone else is going to right there not believing it with you. Dont't ruin it for the others who enjoy the interesting fact of a male @CAPS1 falling in love with a normal @CAPS3 girl just like you and me. Another reason why my censorship in libraries is because it would give my library more variety. If there was twenty different @PERSON1 books on the shelves many people would be able to look at them and check them out as they please. Also, if you didn't know what kind of book you wanted to check out, you could look around and get a mystery, drama, comical, or even a horror book. Having a wide range to select from would keep the guests always coming back for more. I know that when my library had a series of books that I found interesting that I was back in there after I finished each one. Also, having different reading or viewing materials on hand is important in a library do to the fact that some books these days are now turned into films which makes people more eager to finish that book in less then a week so that weekend they can watch the movie. Most people say that the movies are never better then the original book itself but an opinion is easier to be based off of reading the book and then watching the movie not just by stopping after reading the book. Now that you know my personal views about the censorship in libraries understand that not everyone is the same. That is why when school's talk about getting school uniforms many children are against it due to the fact of wearing whatever style of clothing you do each day show individuality such as which type of book your reading also, shows your individuality. That is why my personal view on censorship would be a very low tolerable standard due to the fact that different people, more variety, and different reading or viewing materials. Just because you @MONTH1 not believe in the magic or wizardry doesn't mean you have to ruin it for someone else. So don't jusdge a book by it's cover and lets not set a high standard on censorship in libraries." 4 4 4 4 4 4 +3100 2 "I strongly disagree.I think that materials should don't be removed from the library.@CAPS1 all the materials are part of the library and for the school and for us too.All the materials, such as books, music, movies, and magazines, cd's. should don't be removed from the library.I got my own reasons that materials should don't be remove from the shelf. like sometimes i don't found any interesting things to do, so i go to my tiny library that i got in my house and i pick any book that i like.But when i don't like or i don't find any interesting book in my house, i go to the library to find some intresting books.But when the libraries or the school got offensive books, magazines, movies, ect., i think that offensive stuff shoul be remove from the library,@CAPS1 is not good for the children's, like when they want to read a book, like cartoon or animal book, and they don't find what they want they are going to get mad. And what about the parents the parents if they need to found some information about a book, or they just wanted to read and they found offensive stuff, the parents are going to get mad, not all the parents right but some parent will.and they maybe are not going to came back again.I never experience something like this in my life @CAPS1 in my school and the library that i go they don't have anything offensive or inapropiated. that's why a respect the people for the library and for the school, @CAPS1 they respec us too. tha's why i never go to places that i don't know.Supose i go to a library that i don't know and i bring my parent and my little brother right and this library have offensive materials, my parents are going to get mad with me, they are going to said that if i don't have respec, and that i bring my brother to a innapropiated place they are going to be mad with me, that i bring my family to a offensive place, and is not my foul right.And those are my opinions why" 3 3 3 3 2 3 +3101 2 "No, i do not think that books, magizines, movies and music should be removed. However, I do think that the books, magizines, movies, and music should be monitred by age. The reason why is because younger children sould not be reading , listening, or watching material that is for adults or teenagers. They way these type of things can be monitred is by the child's library card. The card could have their name, age, grade, and date of birth. If there is a certain book, magizine, movie, and music that the child want a parent has to be there with them. The parent needs to show a form of identification so that the librian knows that the parent is of age. Teenagers should also be moniterd. Event though they are almost adults. Some parents @MONTH1 not agree with some of the material. So, if their parents does not want them reading certain things their should be stickers on their cards. Even though there are plenty of opinions about what a persons child is reading , watching, or listening to I think there should be certain ways to watch what children are reading, watching or listening to" 3 3 3 3 3 3 +3102 2 "Picture yourself walking through the library with your child. Now think of how hard you worked to teach your child respect and manners. Imagine all of those values going down the drain by them reading one bad magazine or listening to one explicit song. I agree with the censorship in libraries today. Most people wonder where their children learn curse words or sexual behavior and do not consider media as the problem. Libraries have continued to keep children areas clean of explicit materials and are careful so that magazines such as '@CAPS1' do not reach their shelves. Explicit material should be removed if it is found offensive. I have seen offensive material get into the wrong hands such as kids. That childish innocence disappears when they hear songs about money, sex, and abuse. Some books could give them the wrong idea and encourage them to make unlawful decisions. One example is a teen pregnancy book. The ideas in the book are either to keep the baby and deal with the consquences or abort the baby and move on with life. Some media says to abort the baby just because it is easier. Would you want your child to have the idea in their head that they should react first before they think? In conclusion, censorship should be kept in libraries. It helps everyone altogether not to worry about what wrong things their kids are doing, or how they snatched the wrong idea. Please help us promote censorship in libraries to make a more respectful environment." 3 4 3 4 4 4 +3103 2 "I feel as we are letting kids these days do as they feel, and do what ever they want. We are making them think that we don't care what they are involved in, but thats not true. We need to set boundries for what kids should and shouldn't be able to do. We need to show them that we know what they doing. I think that there should be an age policy for libraries. If there are any books that have any types of adult content, they should be in the adult section. If you ever wanted to check out books, movies, or magazines from that section you would have to be eighteen or older. If that was to much to ask for then you should at least have the parents sign a concent form. Book, movies, and magiznes with any type of adult content can be harzardess to child, whether its through their actions or behaviors. It @MONTH1 effect their lives depending on what age they were introduced to such things. We need to show them that we care. I know from personal experiences that being exposed to this, drasticly changes people, not over time but quickly. Now a days the media is portarying that money, alcohal, fame, and drugs are good things. This is what we are putting into our movies and books and magazines, and putting into the children of @CAPS1 heads. We are telling them that its ok, but its most certanly not. These are all the reasons why we should put cencorships and restrictions on libraries. We are letting the children of @CAPS2 grow up to fast and introducing them to things way to early. In a way we are brain washing them on how to live a destructive live, through adult oriented things" 3 3 3 3 3 3 +3104 2 "The media is destroying our youth! this is something we hear everyday. Teachers are telling us this, while parents and grandparents are telling us how mush different their world used to be. They explain how the media of their time wasn't as open about sex and violence. They go on to say how they didn't have violent video games teaching children that killing is alright. Because of these people, we think that the media is repsonsible for the wrong in the world of @DATE1. The truth is that it isn't the medias fault, it is the parents. It is the parents responsiblity to teach the children of the world the difference between right and wrong. If these such parent do their jobs correctly then the youth of @DATE1 will not need for everything to be censored. It is my firm belief that their should not be any censorships. When their is censorship people can govern what we learn, destroy what goes agiainst their beliefs, and destroy our god given right to freedom of speech Censorship will detroy the knowlege available @DATE1. We have had seen censorship in our history. When we look back we see that the @ORGANIZATION1's censored and destroyed anything that went against them. We hated it when they had book burnings and destroyed the custums, art, and music that the government felt was wrong for their people. How would we be any different if we did it. We could potentailly be destroying somones way of life. We would be destroying what could possibly be tomorrows masterpeice. In censoring we would be detroying history.By destroying history we would be detroying the brilliance that is learning. If we allow censorship anything that goes against our own personal beliefs would be destroyed. If you ask any christian if they would allow their children to read the muslim book of faith, the @LOCATION1, they would tell you no. It would be the same if you asked a muslim if they would let their children read the @CAPS1. The point is that if their is cansorship we would be destroying other peoples beliefs. No one has the right to govern what others believe in the world. Also in censorship we would be exterminating our freedom of speech and the freedom to express ourselves. If we don't allow peole to read what someone else has written because we believe it is wrong, then we are taking away their ability to learn new ideas because everyone has different opinionsand theories. Every newspaper would shut down because they would all be saying the same thing. No one would want to read them because they would already know what they would hav eto say. When we start giving up rights such as freedom of speech we will not be able to stop those people who took those right from taking more. Of course their will always be things in the media, in books, and in music that we don't like.Their will be cursing, nudity, and violence everywhere we turn. This is not because we want it there, but because these things are a part of life. They are the dark parts that we dont want to see. If you dont want to see dont look. Just dont close everyone elses eyes because you dont like what you see. Our learning, our beliefs, and our freedom of speech are too important to just give up to censorship. We cannot alow others to dictate, in this matter, what is right for us. Our media is too intertwined with our lives. Who's right is it to decide what is right for our lives. If we start giving up these small freedoms then those taking them from us will not stop. They will just keep taking what freedoms we have until we are nothing more that a dictatorship" 5 5 5 4 3 4 +3105 2 "Censorship in libraries should not be a big deal. There are materials in libraries that are found to be offensive to some people. To solve the problem, everything should not be censored. Why can't those that find it offensive just steer clear of it? I believe it should be a persons choice to read something or not and if they find it offensive, they should simply put it down. The book 'To @CAPS1 a @CAPS2' has offended many people. I have read it and was not offended. I found it very interesting and educational. Many people think the book should be censored. But if it is censored, the story would completely change and it would not be the same. I would have learned nothing instead of learning how people lived in @LOCATION1's history. If all the books and magazines that were offensive to one person were taken off the shelves, and all the books offensive to another taken away, what would be left? Little kids books about kittens? Well that's just lovely. I am very much against censorship. I believe that if a material is offensive to you, then you shouldn't read it or listen to it. But don't ruin it for the rest of us" 3 3 3 4 4 4 +3106 2 "The library is a place of learning, discovery, and knowledge, available to anyone willing to take the time to engross themselves in the rows and rows of information. Including children's books, novels for young adults, @ORGANIZATION1, @PERSON2, music, and movies, the library gives us a magnitude of opportunities to discover something we didn't know before. Although, there are other things that can be found in the library as well. Books including racial slurs, sexual content, and offensive religious comments can accidentally be stumbled upon while searching for something else. A parent should not have to worry about their child coming across a book or magazine containing inappropriate things such as this. I believe that offensive books, music, movies, and magazines should be removed from the shelves of our libraries. I would like to being by saying that I have an extreme issue with books that include comments, remarks, or names referring to people of a certain race. Imagine if an @CAPS1 @CAPS2 woman brought her daughter of @NUM1 years into the library to find information about a school project. Instead of finding the birth date of @PERSON1, she found a book making fun of @CAPS1 @CAPS4 and calling them inappropriate names. Children should not have to come across a discovery like that in a public facility, where fun and interesting facts should be found; not racial slurs. This type of event could cause serious damage on a child emotionally and mentally. That is why these types of things should be taken off the shelves immediately! Another issue I have is with sexual content being found in libraries. I do understand that several books contain some sort of sexual content, but I am speaking of a novel describing a sex scene in extreme detail, or images of almost naked women on the cover. If someone is searching for a book of that kind, they can travel to a sex store somewhere nearby and get their fix of sexual reading pleasure. That type of book, however, should not be found in the library. It makes our society look bad and taints our places of knowledge. Lastly, I would like to express how I feel about offensive religious comments being found in libraries. Every human in the @LOCATION1 is entitled to their own choice of religion. They @MONTH1 practice it freely, which is sadly not the case for others in different countries. If we have an uncommom right such as freedom of religion, then why would we put books in our libraries that include rude comments towards different religions. A @CAPS5 woman should not have to go to a library and come across a book stating her religion is an waste and stupid. This is not the truth, and it should not be in our libraries! Even though I feel this way about inappropriate books, I understand there has to be some sort of limit when it comes to censorship. Many people fear once we start removing certain books from libraries, more and more books will be taken from the public until almost all our libraries are empty. Yes, if we do not censor within certain limits, this could happen. This is not what I want to happen though. I simply want the people of this community to stop and consider what is easily available for our children to obtain. The least we can do, as parents, is to take books, movies, magazines, and music containing racial slurs, sexual content, and offensive religious comments out of the libraries" 4 4 4 4 4 4 +3107 2 "Two of the many privaleges that we have as @CAPS1 are freedom of speech and freedom of expression. Although some bodies of work @MONTH1 be percieved as offensive or inappropriate, I believe that they should still be available to the public. Some might agree with the topic being expressed, even if it is offensive or inappropriate, and others @MONTH1 not; but they should not be removed from libraries because of their negativity. These offensive or harsh pieces of literature could even be used to show the public what is considered rude, offensive, or inappropriate, and should be thought of as learning tools instead of being banned. Every person has a right to an opinion, and others @MONTH1 or @MONTH1 not agree with what that person has to say, but it does not change the fact that they have the right to their beliefs. Katherine Paterson says, 'All of us can think of a book that we hope none of our children or any other children have taken off the self'. I myself have read literature that is considered offensive, but as disturbing as the literature was, I am glad that I was educated on what people thought was acceptable behavior so that I know, and can teach others that despite what the book said, we now know that it was describing how people should not be living. I believe that it would be a grave mistake to remove these materials from the public eye, because many are ingorant to the historical beliefs of others that have affected our nation and other countries across the globe. All of these books are educational, though some are harsh, and they should be used to show what is right and wrong. If they are taken off of shelves in the libraries then people, especially children could start to think that a certain idea, that @MONTH1 be incorrect or offensive, is completely appropriate and acceptable. As someone once said, '@CAPS2 who do not know their history are bound to repeat it'. By removing the problem, we would be creating another issue. For example, many books have been written over history that convey hatred and discrimination towards other cultures, ethnicities, religions, and lifestyles. If @CAPS2 works of literature were banned and not available to the public, many people would not know that it is wrong to show hatred towards others just because they are different than you. This type of literature provides usefull information: it allows people to see how a large amount of people thought life should have been years ago, and they taught the people of @DATE1 that it actually was how people should not be living." 3 4 3 4 3 4 +3108 2 "Libraries are known as places where a person can go to find material on almost any topic they could want to learn about, whether that material is a book, movie, or magazine. Anyone can use the library, and it is a valuable resource to many people. So why do some libraries insist on removing some of those valuable materials from their shelves? In past years, censorship in libraries has been the focus of many news reports. In almost all cases, library patrons have been angry that certain materials have been deemed unsuitable to be offered at the library. I have to say that I agree with them. People have a right to choose what books they want to read, what movies they want to watch, and what music they want to listen to. People have opinions; people disagree. What one person loves, another person could hate. But just because one person dislikes or is offended by a material on a library shelf does not mean that the opportunity to use that material should be denied to all other patrons. I feel that if a resource is checked out by just one individual, and that one individual is able to learn from or enjoy the resource, then the library has achieved its purpose and helped the community by offering that material. In conclusion, censorship in libraries is limiting and wrong. It creates barriers for those who want to learn and it takes away people's freedom to make decisions for themselves. Everyone should be able to decide whether to pick up a library material, and censorship makes that impossible" 3 3 3 3 3 3 +3109 2 "Katherine Paterson stated this quote, ' All of us can think of a book that we hope none of our children or any other children have taken off the shelf,' @CAPS1 I agree . I feel that some of the books we have in our @ORGANIZATION1 libraries today just shouldn't be there. Offensive books, music, movies, and magazines can give students and young children the wrong impact on life or their envoirment around them. Now days, what children see is sometime what they do, so if books, music, movies, and magazines give them the idea that what they say or do is cool, then kids will most likely do it. @CAPS2 observation when i look at kids in @CAPS2 community playing is that they follow one another . When their playing tag and hide an go seek , So movies, books , music, and magazines play a big part on the way they behave. @CAPS2 own experience with offensive books would be, there are books that are made by @PERSON3. In these books they use curel language, use wonmen bodyparts as symbols and many more rude things. @CAPS2 little sister came across one of these books, when she ask me about it was hard for me to explain to her that this was no book for a child her age to be reading, So the best way for me to put it was that it was an adult book. For her to get any images out of her head that I felt she shound't have. Another experience I've saw was with @CAPS2 little cousin @PERSON2. He was looking at a magazine out of @ORGANIZATION1 library. The magazine was offensive to wonmen. It was a play boy bunny magazine. Now I don't know if you ever heard of these magazine , but I think it is very wrong that they use wonmen bodys for men to view . I also feel that those type of magazines should not be in a @ORGANIZATION1 library. I believe it gives children, mainly young men the wrong thoughts about wonmen. @CAPS2 overall thoughts on censorship in libraries, is that not eveyone is going to feel the same way I do . There are parents that allow their children to read, listen , and watch whatever they want. I'm here to say i don't feel that is the way to go about things , because it can influence your children to do inappropriate things . I hope you take with you, @CAPS2 personal experience with you and help you children read , listen , and watch age appropriate books , music , moives , and magazines" 3 3 3 3 3 3 +3110 2 "Do I think that certain materials such asd books, music, movies,magazines,etc., should be removed froom libraries, no, because people might need to know a certain information, certain lessons are taught in different sources, all sources are liabilities. Now, you just @MONTH1 need certain information, and in those sources there are an unnumbered amount of lessons to learn. For example if were to go in a library an need a book on religion I would need a book or movie to teech me on that particular subject, or even sex I would need a magazine or move to watch to know new information. There are different lessons taght in different aspects. For example some people learn by example, movies, music, and magzines. I it were to be me lokking for a source on music theory I might need one of those things to get what i need. Finally, those things are liabillities. Don't get me wrong like we need them on a daily bases, but in a sense we sort of do. We use search engines for everything, everyday. so what do you think. In conclusion i believe we need those sources because, someone @MONTH1 need certain information, there are diffferent lessons learned and taught in different things, a lastly ALL sources are liabillities" 3 4 3 3 3 3 +3111 2 "The right to remove a book off of a shelf is not good thing to do. My view on the subject is that, if this begins there will only empty shelfs in librarys across the country. Once the removing of books start there will be hardly any left. We use books everyday, for students we use them to learn and for a entertainment during someclasses. Books help us learn things, like new words we've never heard of before, or some major point in history we should know about. Even as adults some of them like to read in there free time. I think its wrong to remove a book off of the shelf, just because a few or a bunch of people think its inaproprate. If it is the librarys should have section for those books that dont let the little kids go in that section. their is a problem for this idea, what books should go into this section of the library? A way to solve that question would be to elect a nation wide library service to set it up and have people vote on which books to to remove or put into a speacial section in the librarys across the nation. This idea goes the same for everything found at a library. Another soulution to this matter is that, the librarys across the nation have another labeling system like the dewey decimal system but use both. this new system could contain information like reviews from crtics about the book, or what happend during the book. This would inform the reader more on what he is about to engrossed in for the next week or so. The books, music, magazines found in librarys should be left their for a reason. Sombody wrote, or composed for a reason. so people like you and me can enjoy good stories in books and read informing magazines ad listen to good music" 3 4 3 3 3 3 +3112 2 "Libraries should never remove any material just because it @MONTH1 be found offensive. Something that is offensive to one person @MONTH1 not be to another. If the material was so offensive that it went against the law, then it probably wouldn't have been published in the first place. People often get offended if they read, see, or listen to something that goes against their personal views, ethics, or religion. But people need to learn to understand that other people think differently and have different values. Though peoples' opinions differ, each opinion is equally important to that certain person. So many media sources today are censored that it is essential to keep a place where people can freely obtain material and express opinions. As a student I often have a hard time finding meaningful literature in the school library because it is so censored. I am not complaining about this because I understand that schools have to be careful of what they are exposing students to. But if I am looking for something maybe more religious, derogoratory, or less accepted, it is nice to have a public library where I can find these things. In closing, if people are offended by something on the shelves of a library then they shouldn't read, watch, or listen to it. But do not censor everything so that people who do enjoy these materials can no longer easily access them" 3 3 3 4 4 4 +3113 2 "I dont believe books should be takin off of the shelves for being offensive. Some books that are found offensive by one person might not offend another. People @MONTH1 have the right to say that a book is offensive if that is how they feel, but they do not have the right to deny others the right to read that book. I understand that parents want to protect children. Parents should talk to their children and explain to them why they dont want them reading that specific book. Parents might also just let their children read it and explain why they don't approve. I feel the same way about the censorship of music and movies. When I was twelve years old i started to listen to music that I enjoyed instead of the music my mother played. My mother was concerned about the lyrical content of the songs i would listen to. She refused to buy me the music and would not let me listen to it. I went to my friends houses and listed to explicit music and watched rated @CAPS1 movies. She could never really stop me because that explicit language was being said wherever I went. I think instead of trying to deny teenagers the music the parents should explain why and let them make the decision. I think censorship should be left up to the parents of that child. Sometimes when parents try to pull their kids closer they actually push them away. That's why I think it's so important for the parent and the child to always talk and be comfortable" 3 3 3 4 3 4 +3114 2 "Many people go to libraries; such as children, parents, and grandparents. I have come to realize that their purpose for going to this community loving place is to find peace and quiet. Some don't even go there for the books. They will engage in music, magazine, enjoy a cup of coffee, or simply get on the internet. Now some people argue that some of the books, music, and movies in libraries are inappropriate or offensive, but does that mean the libraries should have to get rid of them? These materials people find offensive have no reason to be banned. First of all, the libraries will lose customers. There is a majority of people in the world who really like listening to rap or @CAPS1&@CAPS2. It's hard to find that kind of music without cuss words or sexual inuendo. Even I will listen to that type of stuff occasionally just so that I can have a cool beat stuck in my head for a while. Plus, when you are in a library and listening to music you will have head phones on, which isn't disruptive to other in or around the library. Secondly, customers who don't like the context of these materials don't have to get them. If there is a book that has a sex scene or talks about drugs then don't read it. You have a choice to what book you would like to read and if that isn't your style then there are plenty of other aisles and children books you can look through. Those who are interested in those topics still deserve to be able to choose those books. I have been to my public library many atimes and all the times I have been there I have not once even seen a book, music, or a movie that looks displeasing to the eyes. So if you're a person who wants an offensive book, then it takes A @CAPS3 of looking, not just a quick little scan. Finally, freedom. Isn't that was @CAPS4 is all about? The freedom of speech, and religion, and even what type of movies you want to watch. I know this might come as a shocker, but there are labels on the back of movies that tell whether it is @CAPS5, @LOCATION1, @LOCATION1@NUM1, or @CAPS1. It also includes the not-so-nice content that will be present in the movie. So you have total freedom to purchase(check out) any of those rated movies. Like I explained clearly earlier, you aren't forced to watch any of the naughtier movies, so just pick what you want and be happy. As you can see, there is absolutely no reason to remove offensive books, music, or movies. There are many different types and styles of these categories and it isn't disturbing anyone. Libraries will lose customers, people dont have to choose the less appropriate things, and us @CAPS7 have freedom to do what we please, especially with what we would like to read, listen to, or watch. So save youself some time and just keep the few so called 'offensive' materials." 4 4 4 4 4 4 +3115 2 "There are many people that think certain books, music, movies, and magazines are offensive and should be taken off the shelves at libraries. If you had to do a project on a subject that was offensive to certain people and there was no information on it wouldn't you be a little upset? If you found somethings that are offensive interesting you should be able to go to your local library and read a book about it, and if you like to listen to offensive kind of music then you should be able to just turn the radio on and listen to it and not have to worry about those kinds of things getting removed. Some people are assigned projects for either their job or for school work. If the subject of your project was offensive to a certain race or person you would want there to be books or any other kind of information on the shelf at your local library so you could work on it. If all of the offensive books got removed from the shelves at libraries then nobody could be getting there work done. Some people find some offensive subjects interesting. For example, if someone found the @PERSON1 interesting they @MONTH1 want to just do some research to learn more about it. If the books and magazines all disappeared from the shelves about this subject then those people would not be able to learn more about those kinds of subjects. There are a lot of people that think most of the music that you hear on the radio today is offensive. If they got rid of all of that kind of music then there would probably not be a lot of music left to listen to, and a lot of people would be very mad. Also, if they got rid of all of those types of music then the writers of those songs would not be able to make any money and would be out of a job. I think that the people who think these kinds of things are offensive should just stay away from these things and stop complaining. All of the people who do not take these things offensively will be glad that they are not removings books, magazines, music, etc. I hope you take into consideration not removing these types of things from libraries and anywhere else" 4 4 4 4 4 4 +3116 2 "I think that if there are books, music @CAPS1, movies, or magazines that we should have a right to take it off the shelf if its offensive. The reason why I think this is, because I have a baby girl who I don't want to see that kind of stuff. I don't want her listening or watching movies or reading anything offensive or vulgar. I know this is a free country and everyone has the right to have their own opinions. The libraries are paid by tax payers dollars and if we take the offensive to vuglar movies, books, music and magazines then they should come off the shelf. Kids can read or see or listen the these vulgar things an think its ok or cool to say or do these things. They can see bad pictures, nudity, drugs and violence. They can see the different types of drugs and learn about them. For example pictures of weed, cocaine or pills are in books. The kids can look at this stuff and see violence. For example they can see pictures of men hitting women or kids killing kids and this sets a bad example. We live in a world where people are influenced by the things they read, watch, and listen to. It is important that people are aware of what their children are seeing. The library is a place where many people go to learn. It is important that only people are allowed to see material that is appropriate for them" 3 3 3 4 3 4 +3117 2 "Going into a @CAPS1 everyone has there own opinons as to what they should see on the shelfs, and what should be put out on the shelfs for everyone to see including children of all ages. Some people @MONTH1 agree that there should only be thnigs that is age appropiate for everyone, others disagree. In my opinion when im looking at this topic, i think that there should be books for everyone to read no matter what the age group, but there should also be a kid section. If parents are so concernced about what types of books their children might see at a library then they could just put them in the children section to view those. There is no reason in the world that there should not be able to be a variety types of books out. When it comes to looking at magazines, movies, and music i still have the same opinion to a certain aspect. There should be able to be all types of music out on the shelfs, because its not like people can listen to it by looking at the @CAPS2. But my opinion on the magazines, and movies could vary. There is a certain extant for movies, and magazines. I think they should all be aloud on the shelfs, minus any pornography. The reason i think like this is because, kids should not have that big of an affect on what they place on the shelfs at a library. Parents just need to be responsible and look for what their children are looking at , and pay attention to them. But when it does come to the pornography that should not be exposed in a public place such as a library. There is some where to draw the line, in any situation and thats where i think it should be drawn at a library." 3 3 3 3 3 3 +3118 2 "All libraries are not good cause some people are going to library an getting on the computer getting on websit that the child find. The people need the computer for appicatetionfor job an the owner be wanting to get a card .That is uncause for in some term. Out of all kides canlearn from the library an do there work if need it's so much they can do that they can be there all week. All people from littler children to adult can still learn now today in the @NUM1 centrey . You can learn about your ancienty or about car crash or about or thing that are going on it the world . As like japaness or chin ,you can do so much from the library or from the books thats there.It's up to the family to get to know more about themself by the library ." 2 2 2 1 2 1 +3119 2 "There are more than six billion people in the world. That means there are over six billion different personalities and opinons of all these distinct people. It would be virtually impossible to remove all aspects of media that could be found offensive, because almost everyone is offended by something. Some media can be found more offensive than others, but its likely that its something that the author feels passionate about and the author could be offended if his opinon was rejected. Now that the internet is accessible in almost all places in the world. Media that used to only be found on the shelves is now displayed online, which can never be permanently removed from public view. It's illogical to think that just removing materials from libraries would prevent different groups of people from being offended by the media. There is a big difference between awareness and offensiveness. Some books and magazines might just have the intent to explain a type a culture and raise awareness about the subject. However, there is a definite line that reaches over to offensiveness that can easily be crossed by authors across the globe. So, it is in those authors best interest to take into account the people they are writing about. It's important to avoid stereotypes because those can be hurtful. There is already plenty of offensive literature in the world and to find it all and restrict all of it would just be irrational. If a person is offended by something someone wrote, they should just avoid reading it. However, this does not give authors the power to target a group in their writing and offend them specifically. This is a very two-sided subject. It can not strictly be controlled by censoring libraries; it is also in the hands of authors and readers everywhere. Authors and media producers should take other people into consideration and put their efforts into raising awareness instead of offending. In regards to this, readers across the globe should keep in mind why the author might target them, and avoid conflict by avoiding the material. It is not right by any means to target and offend a group of people in a piece of literature; however, this is a practice that has been done before and just remvoing the materials from the shelves won't stop it from being exploited. Libraries are already decreasing severly in their reveleance in the world. All the new technology has hurt them and its not likely that they will ever become more prominent than other reasources, like the internet, again.With this in mind, how much would censoring libraries really help those offended groups in the world? Most likely, they would not even notice a change. Everyone has the right to have an opinon and share it, but it is important to keep the feelings of others in mind as well. The world is overflowing with different media that many people have access to, so writers and producers need to think outside of themselves before putting it on the shelves." 4 4 4 4 4 4 +3120 2 "What is offensive to you? See your answer might be different from the person sitting right next to you. There are so many materials in the world that are found to be offensive. The world wouldnt be any different if we were to pull all of these offensive materials off the shelves. There wouldnt be anything left because everyone has their own opinion about something and everyone has different inferences about what's offesive to them. I believe that offensive material shouldn't be removed from the shelve. Everything would be off the shelf if we were to pull offensive materials off the shelf. There is always something wrong with something. @CAPS1 might be the way someone has said something or the way they mean't @CAPS1 by. There is always that one person out of the bunch who has something negative to say. Either they take @CAPS1 the wrong way or they just think @CAPS1's wrong. Everyone has their own opinon about everything. Same for when some one asks you whats offensive to you. Someone else @MONTH1 say that what you find offensive, is no where near offensive to them. For instance, my grandpa loves all type of music and his life revolves aroud music. My grandma doesnt like some of his music because she says ' @CAPS1 doesn't sit right with me,' meaning that she doesn't believe in some things that the music is trying to persuade people to do. My grandpa really doesn't pay attention to the lyrics as much as my grandma does, because he doesn't see music in that kind of way. My grandpa likes a lot of music because of their rhythm and beat. They always kind of get into disagreements about music they want to listen to because my grandma finds something in the music thats offensive to her beliefs, but my grandpa doesn't. @CAPS1 doesnt effect him as much as her. If you were to go around and ask people whats offensive to them, their would be some many different answers and you could never sum @CAPS1 all down to one answer. With only a couple of people feeling offensive to some things, but the majority find @CAPS1 different, that would ruin @CAPS1 for everyone almost. Then that would almost be everything gone cause @CAPS1's always that one person that takes @CAPS1 the wrong way and has to feel offended. So I still believe that offensive materials shouldn't be pulled off shelves." 3 4 3 3 4 3 +3121 2 "I, personally, do not think that books, music, movies, or magazines should be removed from the shelves because they are found offensive. However, I do believe that there should be a way to protect adolescent, still-developing children from reading books that @MONTH1 offend them or introduce them to new concepts or ideas that @MONTH1 hinder their educational growth. Some kids who have not been properly educated over a controvercial topic (such as drugs or alcohol) @MONTH1 make a bad decision based off something he or she reads about in a book or on a webpage. To help solve the problem of offending children or deterring their education, I propose that we make a book 'rating' system. Similar to rating a movie or a video game, this system would rate the book so that readers know what age level the book is apropriate for, and state what factors the book incorporates to rate it the way they did. As a newpaper company, you obviously know about our @CAPS1 of @CAPS2. We, as @CAPS3, have @CAPS2. One of them being freedom of speech, along with freedom of press. With that said, I do not think that taking books labeled as 'inappropriate' off the shelves is a reasonable solution to the issue. I know, that from personal experience, when someone tries to take away my @CAPS2 that I'm entitled to, I get extremely angry. Authors, editors, photographers, and publishers all go through a lot of hard work and long hours to put these books on the shelves. By taking the books off the shelves, I believe that that would be repressing their @CAPS2 as @CAPS3. I know that if I were an author, and my book were taken off the shelf, because someone found it 'inapppropriate' I would be very upset. Taking books off the shelves could possibly cause an author's strike, to protest until their books are allowed to be enjoyed by anyone who wishes to read them. However, like I mentioned in the second paragraph, I do think that making a rating system for books is a good idea that allows the authors to express themselves fully, and also allows readers to know what controvercial material is in the book without them being affected by the information they would have read without the warning. I would strongly advise you consider my proposal, because it has the potential to prevent future confrontations between authors and the public." 4 4 4 4 4 4 +3122 2 "Why @CAPS1 @CAPS2? Is there movies, music, magazines, books, and more in our libraries today seen as offensive to some? A good portion of people believe so, and there is some that @CAPS2 doesn't even concern. So should they be removed from the shelves of our public libraries or should they be able to stay? Katherine Paterson made a statement and a part out of @CAPS2 said ' But if I have the right to remove that book from the shelf that work that I abhor then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS3, I believe that some of the literature and magazines should be taken out of the libraries just because of the content many books are loaded with foul language, violence, sex appeal, ect. For example I can recall a day I went to a local library with my little sister, and she was looking for a disney magazine and there were provocative magazines on the shelf that had half naked women on the cover right next to the kids magazines. To me this is an image of selling sex. What parent would want there child learning about sex at a young age? Next, even the music today placed in libraries is not good clean music. A lot of the music today is also sellling sex, violence, and drugs. My father tells me all the time till this very day that music back in the day was appropriate for all ages. Music such as hip hop, and rap, is the main source for all the inappropriate stuff, but the rappers and producers are not to blame causse they are only creatimg what people want and what is selling. Also, the movies rented out of the libraries today are very offensive. They seem to contain the same material as the books, magazines, and music.They all portray the same image that seems to be entertaining to majority of the society today. So can we just find something better to catch the attention of the audience who buy this material? In conclusion, I do believe that this material should be taken off the shelves of public libraries. But I dont think @CAPS2 would do any good, cause people will just find another source to get @CAPS2. Like Katherine said @CAPS2 won't be any books left if its all taken off" 4 3 4 3 3 3 +3123 2 "I believe censorship should be used in libraries to a certain extent. There are too many children that have access to inappropriate materials at the library, but some of it could be useful. There was a time when I borrowed a movie from the public library. When I went home to watch it with my mother, it turned out to be highly inappropriate and offensive, not to mention awkward and embarassing. My mom and I couldn't believe that a person of any age could have access to a movie as inappropriate as the movie '@CAPS1'. Although there are some materials that should not be in the library, there are some materials that could be thought of by some people to be offensive that are in the library for educational purposes. Some people think gay rights, abortion, and teenage sexual activity are offensive. There @MONTH1 be some people that would like to know more about one of those things for a project at school or a problem in their personal lives. Somebody @MONTH1 have a family member who believes they are homosexual, a daughter who has become sexually active, or a woman @MONTH1 be thinking about recieving an abortion. What is offensive to some, @MONTH1 not be offensive to others. I believe censorship should be used for some offensive materials. If it is educational, it @MONTH1 be useful to some people. There will never be a perfect answer for a problem like this in the world. As the world evolves, so does the human race's morals and there is nothing that is offensive to all the people in the world." 4 4 4 4 4 4 +3124 2 "Have you ever been offended by a movie, book, song, or magazine? Did you have a choice on whether or not you watched and/or read the item? The question that seems to be of intrest to people is should these items that are offensive be taken off the shelves. I don't think they should. I am sure that you could ask anyone if they have ever been offended by a movie, book, or magazine and all of them could give an example. I doubt they ever watched the movie again and if they did it obviously wasn't that bad. If something offends you, don't read or watch it. If you don't want your kids watching something, don't let them. You can make that desicion. No one is making you watch or read any of that. I know I have watched a movie or two that I probably shouldn't have. I've even read some books that are not the best, but I choose to read them. No one forced the act on me. Some of you @MONTH1 ask, '@CAPS1 about at school?' If a teacher assigns a book to read and your child does not feel comfortable with it, then take it up with the teacher. They will be more than understanding and possibly give your child a different book. They might even explain why he or she is having the class read the book and why the children need to be exposed to this type of literature. There are always going to be offensive books and movies out there. If you take out all the books in a library that has offended someone at one point in time, you probably wouldn't have much of a library left. The shelves would be bare. You have a choice to read or watch something. If it is offensive don't watch it. Everyone has different views on that book or movie. It @MONTH1 be offensive to you, but to the next person it might be a really good show. I don't think offensive books, magazines, music, or movies should be taken off the shelves." 4 4 4 4 4 4 +3125 2 "Libraries have tons of books from comedy all the way to violent.Some people like reading books about war and violence while others find it offencive. No matter what the book is about people have the choice to read them or not so why should libraries have to remove books that some might find offensive? They shouldn't! Every one has different views on ideas, and not everyone is alike. If all the books that were offencive to someone where takin off the shelf, there would be no more books left. People walk into the library and most of the time books are labled by what they are about. They walk to the section they like and pick out a book and normaly don't go to the section that they don't like. There is no reason to go to the section that they dont like becasue they wont be reading a book from there becasue they dont like it. They would just cause problems and disturb the ones that do enjoy reading those types of books. People have the choice to read a book or not so why bother even worry what other people are reading as long as they are happy with what thye have. If a parent does not want a child to read a certain type of book that is their buisness but other parents might want their child to soo what all is out there and develope their child's views on subjects. Everyone has different views and ideas. If every one was the same the world would be boring and there would be notheing to talk about. By reading different types of books and listening to different types of music there is always somthing to talk about becasue not everyone knows the same subjects. Reading a new kind of book might even open people's eyes to what differences there are in the world. Children often times are more open to different ideas than adults are so if the books are not there for children to try and read they will never know what they like and do not like. A book a child likes @MONTH1 not be that a nother child likes or even an adult likes but that is normal, people are not the same. If everyone took the books or music off the self that they found offensive there wouldn't be very much of anything left on the shelves. Styles are most the time oppisits, like comedy and sad books. Most poeple who would like comedy wouldn't like sad and visa-versa there fore they would take the other off the shelf so neither would have anything to read or listen to. Even with some of the best selling books poeple wonder why or how so many sold but thats just how it is. People out there like the book so if one person didnt like it all those people would never have known what that book is about and @MONTH1 have changed their life. Books can be very impactfull in people's lives and if they never read that book the change would never have been made to their life.The world goes round becasue of differences and the world becomes a better place because of different ideas. everyone cannot be the same it just would not work. Libraries should not have to take books off the shelf just because someone found it offensive or did not like it. People have the choice to read books or not and different views and ideas are good to make things more interesting. Moreover, if everyone tooks books and music off the shelves they did not like there would not be very many books and music left. So if you run into a book or some music you dont like just ignore it, dont read it or listen to it. Things will be much simpler in the long run." 4 4 4 4 3 4 +3126 2 "Real life is rated @CAPS1 so why pretend it's not? If a library feels that if a book is too graphic, a movie too violent or that music to agressive then its their own choice to remove it or not. It is true that that it's pointless to try and censor the lives of kids and teenagers.Explicit content is all around not only in the media and literature. The never ending game of shielding this generations teenagers and children is already finished. In this point in time, the main focus of alot of movies and music and books is something violent, agressive, inapproiate, or explicit. The idea of removing these things from library shelves is pointless. The will always be violence and crime in todays world along with excessive swares and cuss words all around. It's exceptable that some parents don't want their children reading,watching or listening to something they don't or wouldn't approve of but even if the kids are protected and home out in the world sometimes the parents wont be there. Libraries are public places, and a percent of the audience would be upset, frusterated or angr if the books, music or movies they liked were no longer avalable due to the cencorship. It @MONTH1 seem as if viewing, reading or listening to something violent or explicit, would have an effect on the listener. On the streets, at school, at the park and more places children and teens will be exposed to this type or explicit language so attempting to cencor it in their reading and viewing matterial is just pointless. In my experence I have grown up and been around people who have grown up listening to violent music, watching graphic movies and more explicit material and not been effected. I saw my first rated @CAPS1 movie when i was nine, so parents can give thier kids somewhat of an age but at one point trying to cencor anything is a waste of time. With schools now teaching their students the positives of being abstinent and the sexual deseases, students are more likely to refrain despite what they see in movies, read about, or listen to. Any child exposed to the internet could be subject to all kinds of inapproite material, explicit canotent, bad language, cuss words, and disturbing images. Real life is rated @CAPS1 so why pretend it's not? Trying to block the explicity and violence in the world is an endless battle. Certain things @MONTH1 go over the line, but others are just renactments and previews of whats really going on in this world.Why would you hinder the real world away from children and teenagers? Movies have a rating and music @CAPS4 have an explicit content label so people should know whats approiate for themselves. The first sware word a child hears probably wasnt in a song or movie and was probably somewhere in the real world." 4 4 4 3 3 3 +3127 2 "There are many books in the library that shouldn't be there. From books about racism, violence, or pornagraphy I wouldn't want my young children to be able to take those type of books out of the library. A library in a school is a great way to help sudents with projects, essays, or just to read. If my child was in elementry or even middle school , I wouldn't at all want them to be able to check out a book about things they shouldn't even know about yet. If my teenager was in high school though, I wouldn't mind that because they are old enough to realize the things that actually go on in the world. They also could be doing a project over the wrongs of pornagraphy, in which the library is better place to find a book then the interent that could take them to many bad websites. Since I go to my local high school I think its nice to be able to find anything I need in my library at school. It makes it easier to work on projects. Also in libraries there are a ton of music, movies, and magazines. If a library has educational music, why not keep them in there? If the music is rap, pop, or country they could just get it from @CAPS1 instead of the library providing it. Magazines can also be educational. If you are doing a project on fashion a @CAPS2 @CAPS3 would be excellent to help them find out some tips. Magazines can also have some inaproprate things in them. Since all they talk about in the media is sex, sex articles would probably be in the magazines. Whenever I look in magazines I just skip all of that nonsense they talk about and read the articles about clothes, food, and people. Exposing that to young children wouldn't be the best, but for teenagers they understand. Movies shouldn't be in the library unless they are educational too. There are a ton of @CAPS4 around that those scary movies don't need to be in a library. In conclusion I think it all depends on what kinds of kids are going into the library. For young children, stay with the cartoon educational type things. For teenagers, keep it educational but be more relaxed about it. If something offends you, go have a talk with the libraian they woukd probably be happy to take it off the shelf." 3 3 3 3 3 3 +3128 2 "Books can be good things, but are they always good? They teach us things, entertain us, and are sometimes good pillows, but they can also be bad things. When a book is inappropriate for the reader, then it should not be on the shelves of the library. Music is the same way. The library should absolutely take the book off the shelf if it is found offensive by someone. Some books @MONTH1 be offensive in religious ways. A person @MONTH1 believe in something very strongly, and then a book goes and makes fun of it or trashes it in some way. Some @MONTH1 say that the person just shouldn't read the book, but if it were me, I would want the book gone so it didn't remind me of what it had said everytime I walked by it. Books @MONTH1 even be inappropriate for little kids. It @MONTH1 have language in it that the parents don't like. People have said that they should just make a section for those books to where little kids can't get to them, but you don't know what the childs parents are like. they could think a word is bad when you think it's fine. Everyone is different. Furthermore, a book @MONTH1 contain images not suitable for children. It comes back to what I was saying before, you can't just make a section for these books and say the heck with it. Libraries could even consider censoring some of their books. Some religions believe that some types of music is the devils music. I know from experience that my mother thinks that scream-o is the devils music. She says that it is not right for them to sing like that and that @CAPS1 wouldn't like it. Other peoples parents @MONTH1 feel the same way. Magazines @MONTH1 also have words or images in them that someone could take the wrong way. Although I don't believe libraries should remove them, but they should still watch who reads them. They could even put a little label on the front cover of the magazine that says it @MONTH1 not be suitable for everyone. Books are usually good things, although they can be very bad. In the end, libraries should consider censoring their books, or if the book is bad enough and gets enough complaints, take it off the shelves completely" 4 4 4 4 4 4 +3129 2 "Just because I agree with something, do you have to agree too ? Your cousin believing in one thing,means you have to believe in it also? No,not in my opinion, and I hope not in yours either. If you were to see something you find offensive does that have to mean it offends another around you? The world contains things that children agree with and parents do not and this world consists of things that you like and others will not, but that does not make that item or that object invaluable or offending, and not the least bit inappropriate. Objects containing so called offensive material are always going to exist in the world we live in and they have for a while. They are going to be everywhere;in stores , in schools, inside, outside , they are all around, and there is no reason for them to be a problem. They will not disappear and that is nothing we want to have to worry about,that could become a criminal offence of any sorts. So why fight it,well I say we don't. Do you think that seeing an offensive item makes an area all the less attractive and good intended? What if something you liked ,was of an offence to another , does that make it all the more wrong for you to like it? Almost all the things and materials in this world are liked and disliked all based upon opinions. Nothing in this world exists without opinions. Life in itself can be an opinion. I believe that if there is something in a library that is deemed offensive by one,it is not deemed offensive by all. Nothing should be removed from a shelf or a rack because another doesn't agree with it. Substitute other objects or ideas with this, if one person in the world was offended by another person would you just remove them from the human race? No, I sure hope you would not, but to some they @MONTH1 see that as their one resolution. Well me, I do not, and I'm a strong willed, strong opinionated person and to me that is all wrong. Anything published or released to the world, to the public by someone means that is their way of expressing something, it is their way of living, and they have that right. That is who they are, and that is what they like,that is another person , anything we see or hear in this world is someone else because that has come from an individual who is equal to us,so why lessen there equivalence because its not the same way I feel? We @MONTH1 not all agree with their way of life, we @MONTH1 not agree with their choice of clothes, but how are we to know if we agree with their way of heart? No characteristic dictates the other characteristics of another,so why should an item? A good thing to you could be a bad thing to another, and what if that disappeared? Taking a cd off a shelf will not vanish it from the world, it could be found somewhere else, but still that is like eliminating your hand because your fingers don't look like mine. Nothing can justify removing things from the stores and the world because one group of people don't understand it enough to feel the same and agree with it. Anything could be deemed inappropriate,but what if your vision of appropriate is anothers eye to inappropriate. Maybe there just is no line of the definition inappropriate,especially in the world we live in today. If we start eliminating and removing everything we don't like, we would have nothing left, any and everything could be gone within a week or a month. People would take an inch to a mile , and erase everything, then we would start eliminating people we do not like , and it would all become a repeat. We learn about our history for a reason, does any of this resemble a situation or two the world has already been through? Erasing things from lives,have done no good before. If we start listening to the facts of people not agreeing with one thing, we will listen to the next, what happens when all the sudden the people come in again and say they do not like the women with blonde hair or the men with green eyes? The world will crash and burn before our eyes, and if I can identify these things at the age of fifteen, then some need to identify things at the age of fifty, accept that the world has its flaws too. So just because I agree with everything I said , are you going to agree with it also? No I know you will not,but think about that when you expect others to agree with what you say or think. When I think of people reducing the things that they do not like, I can already see the world losing it's pathetic value it has earned, and we @MONTH1 not all be fond of this world but we cannot lose it. Eliminating the things you do not have a fatuation with will do no good, so maybe we should take into acceptance the different people we've been blessed with and love what we have. Accept the world as it is,because it is what you live in and it is what you have,because with out it nothing would be anything.Attempt to fix the broken things not eliminate the jagged things" 4 4 4 3 4 3 +3130 2 "offensive materials in libraries should not be taken off of the shelves because of their content. Writing is an art form and censoring what an author writes could obscure their message. people live around offensivness every day on the street and in public places so censoring it in libraries would not protect anyone. Removing the books from libraries entirely could also interfere with research or school projects children have to work on for class. Writing is an art form and censoring what an author writes could potentially obscure a message or major theme of the novel. This style of writing can be seen in @PERSON1's novel To @CAPS1 a @CAPS2 by @PERSON1 using terms that are offensive to @CAPS3 @CAPS4 to set the one of the racial tension in the south at that period in time. This type of censorship would also be detrimental if a reader studying the holocaust can not view pictures of death camps because of the graphic nature, the reader would not be able to understand the true horror of the camp without it. People live around offensivness every day at home, on the streets, and even in school. A normal person encounters several occasions a day where they @MONTH1 hear profanities on the street from passing strangers or friends. Parents sometimes curse or use profanties in front of their children to prove a point or just by accident, and this would expose children to offensive behavior just as much as adults. Children are also exposed to profain language and behavior when they go to school and work around ither childern who might have offensive behaviors. Censorship of books in libraries could interfere with school or work related projects and research. Censorship could be an issue if a student could not get a book on a major war or event because of graphic nature, and this would hinder the students ability to efficiently complete their assignment. It could also cause problems if a teacher needs to rents a book that has slight profanity in it but is not able to because of the content, inhibiting her from teaching her students about the theme and lesson. Censorship of books based on the content should not be allowed in libraries. first of all trying to censor a novel might abscure the message or theme. secondly people live around profanity every day so trying to censor it would not protect people because they have likely already heard what is said in the novel. lastly censorship of libraries could interfere with work or school projects or research. If all libraries were censored it could potentially lead to several complications with workers, students, or people who are just looking for a good book to read" 4 3 4 4 3 4 +3131 2 "Libraries are sometimes connotated as very boring. Walking up and down isles looking at all of the books, and wishing that they were all more interesting. Minutes after searching through the one shelf you have been rummaging through for what seems like hours, you get a glimpse of a very interesting title. Inside of this book could be countless inappropriate pictures and profanity on every page. Who is to blame for opening the book and reading it? Profanity, nudity, and crude humor, as well as many other things, are all over the media, including books. Some parents try very hard to keep their children out of the way of those things by telling the child that they just simply cannot watch, listen to, or read certain things. The parents typically do not say why they are not letting their child see, hear, or read these things, other than, 'it is bad, and I said no.' If parents were to tell their child specifically why they were not supposed to be exposed to certain things, the child might not be so inclined to get involved in those things. Not only should the parents teach their child why they should not be exposed to those things, but maybe they should be around when their kids have an opportunity to see things they shouldn't. And if a child is too young to see, hear, or read certain things, than they are far too young to be browsing a library or any other place where they are not properly guided by a parent. Censorship, in my opinion, should not be done by libaries, movie producers, television programs, and record companies, it should be done by the parents of a child." 4 4 4 4 4 4 +3132 2 "Brian @PERSON1 @NUM1 @DATE1 @CAPS1 @NUM2 Censorship in Libraries Should there be censorship in Libraries? If this is a @ORGANIZATION1 @ORGANIZATION1 library no, but if it is a @ORGANIZATION1 library, yes. I am going to tell you what I think about the books, movies and magazines. First I'm going to tell you about the books. I think the books in a @ORGANIZATION1 @ORGANIZATION1 should not be censored because parts of history get kind of gross and nasty. Then also sex ed books need to be in the library so people can read about it and not just go with what other people say. I don't think they should matter if its a nasty love book or a @CAPS2 @PERSON2 book, all that matter is that they are reading. War books should not be censored because they need to let the reader know how war really is and its not a great place to be. Now in a @ORGANIZATION1 library yes because no parent would want their eight year old daughter reading about how to make drugs. I think they could put stuff in there about drug or alcohol perhaps but not go in depth, but keep it at a bare minimum. Next I'll talk about the movies they should have avalible in the library. I don't think anything over @NUM3 at a @ORGANIZATION1 @ORGANIZATION1 level. Exept like sex ed tapes and history movies, no free days in class, its got to be @NUM3. In @ORGANIZATION1 I it should be @CAPS3-@CAPS4 movies. In those grade they really dont watch educational films it's all for fun films, so theres no reson for there to be anything worse than @CAPS3-@CAPS4. Last I'm going to tell you about magazines. In @ORGANIZATION1 @ORGANIZATION1 I don't think the magazines are a big issue. Just as long as theres not @CAPS7 and stuff like that. At the @ORGANIZATION1 leave again I think they should be, kids that age shouldn't be reading @ORGANIZATION2. They just need to have learning and for fun magazines. Should there be censorship in libraries? No at the @ORGANIZATION1 @ORGANIZATION1 level and yes at the @ORGANIZATION1 level. @ORGANIZATION1 @ORGANIZATION1 leave the book shouldn't @ORGANIZATION1 they should, should in both @ORGANIZATION1 movies, and magazines shouldn't in @ORGANIZATION1 @ORGANIZATION1 and should in @ORGANIZATION1." 3 3 3 3 3 3 +3133 2 "To begin with I feel everyone should admire the libraries. I feel this way because at one point of time we didnt even have books let alone libraries to get books from. A library is a place that has a peacful and calm environment. People come to hang out at the library to collect good books, surf the internet, check out new music and aslo to relax. So to answer the question 'Do I believe that certain materials should be removed from the selves at the library if found offensive?' @CAPS1, I believe if things are on the shelf that @MONTH1 come off offensive to people they should absolutely be removed. You shouldn't have to be in an environment were things are offending you. If things seem to come off offending, it will make indivuals stop coming to the library. This will make the library loose alot of business due to lack of service. The library should be a place that consist of love, peace and harmony. It should be a place were people should feel free and relieved from any stress. By seeing or hearing something that comes off very offensive will tend to bring confusion to the library. This also will make the librarians job much harder than what it should be. They will have to work harder to satisfy the difficulties that you seem to be having with the library. Something that would offend me in a library is some of the music they carry. Certain types of music shouldnt be found in a library. An example of some offensive music is the '@CAPS2 @CAPS3' music, meaning the music with all types of different profanity. The music that is degrading women in a very disrespectful manner. Also the music that's making it seem cool to be violent. This will come off offensive to many men and women. Think about it who wants to listen to music thats makes women feel like their not worth anything and who wants to listen to music that's always talking about killing, fighting and gangs etc. People whould like to hear more soothing and relaxing music. The music that makes you happy no matter the mood your in. The library should just pick their music wisely so everyone can be well satisfied. In conclusion as stated the library is a great place to hang out and just to relax. It should never come off as a place with things that is offensive of so it should get removed. This would keep down less confusion and more people would continue to attend the library because they know what a nice place it really is" 4 3 4 4 3 4 +3134 2 "Some people might think that it is a good idea to censor things on library. People might think that some of the material might be offensive of bad for the youth of the people who go to libraries.People might think it @MONTH1 be better to take the bad and offensive item off the shelf. I have a different opion on the subject. I don't think anything should be censored in the library no matter if it deal with book, movies, music, magazines, ect., The real question is why should this material be censored removed. The answer to that question is that it should not be sensored removed. The library is somewhere you can go to get information on just about anything you want. If these items are censored or taken off the shelfs the resources would be limited and or no help to the people searching for the information. Another big problem with censoring or removint these materials is people might be missing out on alot of knowleged that they have never herd of that might be bad or offensive. Such as slavery, the @CAPS1 taking over the @CAPS2, and a lot of our world history. I feel strongly about people knowing about the worlds past. Now what happens if the items are removed from the shelfs of libraries. what are you going to do with the thousands of books that you can no longer read because it is offensive. We just can't get rid of them just like that. A lot of the offensive stuff is true or based on a true story such as @ORGANIZATION1 park getting arrested because she refused to give up a seat to a white person. so removing these books would be pointless because where ever you put them people will just go there to get the material they want to know about. The most important thing about this is who want these books censored or gone and why they want to remove them. Okay some book are bad and offensive but you have to look at it this way. People have there own choice on what they want to read , watch,or listen to. So just because some people dont like the material in a library doesn't mean everyone else doesn't like it. It the peoples choice not a opion on what a couple people say. So at the end i think that books and other items in a library sould not be censored or taken off the shelfs. I believe that people have the right to read, listen, or watch what ever they want. I see it as people opions fighting opions on removing the books. Also if people don't like the book at the library then no one told them thay have to go meaning their opion really doesn't matter" 4 4 4 3 3 3 +3135 2 "Okay, to me, people are way to moral in the modern world, i was taught that if you have a problem keep it to yourself. Most of everyone know that censorship is a big deal but it doesnt have to be. I know that somethings are a little, risque, but getting this our their quicker would be a better solution. Your probably asking yourself, how in the world can this be a 'better solution'? Lets talk about children and this content, if you get this out there quicker and subtlely, the children wont see the need to find out what it is at a later age. If that was to happen the conseqences could be fatal, such as; fines, misdemenors, respect, reputation, and even some time in jail. Tell the kids about murder, drugs, sex, and crimes in general, they are twice as moldable then as they are when they are older. Taking them off our shelves will only make us a nicer community, yea i know what your thinking, why not do that? If more people in your community are nicer, when a real threat comes, whos gonna help? The @CAPS1? who knows, it takes a little bit for a squad car to get around, even longer if your in a city. In that time, some one could have died, been robbed and that same criminal gone. So, if we let this stay out on the shelves and so on, people will have the knowledge to see that using these to help people can be benifical. Anyways, what im trying to say is, if you take this away from us, people will become weaker, if you let it stay, people will learn from it and use it for good" 3 3 3 3 3 3 +3136 2 "Have you ever watched or seen a book or even a movie that you do not think kids should be reading or watching? I have, heard of many books. There are even music out there that only adults should be listening too. There are some parents that are strick on what their kids watch, hear, read or sing. I know for a fact that my parents would not want me to be letting my childern read, watch or hear that kind of stuff. When you think of the music, books, or movies that need to be out of childern reach what should they be? I think the movies, books and even music that have bad language, violence, and bullying need to be hidden from childern. Bad language is not apporaite from kids to be hearing when they are under the age of ten or even older. When you hear a bad song coming on when you have little kids near you, you should turn the station to a differnet station. If little kids hear this kind of language they well be saying it when the are young. Another book, song or music that should be taken off the shelf should be ones that have violence. If kids watch, hear or read about violence, they are most likely to start being violent when they start hearing or reading about it. When you are walking around you, you should not be scared to walk by yourself with out getting attacked. If you see someone reading or watcing something that you do not think is right for them you should tell them not to be reading or watching that. Violence is bad for little kids to be doing when they are young. Books, movies or music about bullying should be taken out of. Bullying is not the answer to everything, even though many think it is it is not. If you think it is good for little kids to be learning about bullying you are wrong! It is a bad thing for little kids. Bullying also gets you in trouble when you are caught doing the bullying. Have you ever thought of a book that should be taken off the shelf? The books that I think that should be taken off the shelf would be the ones that have bad language, violence, and bullying. Childern should not be hearing or reading about bad language. They also should not be watcing anything about violence. Lastly they should not be reading anything about bullying" 4 4 4 4 4 4 +3137 2 "Some books in libraries offend others. So should they be removed? That is the point im going to get across today. Keeping people under self-control is top priorities for the public. So why do they keep releasing and publishing books if it offends certain groups? Graphic and gorey books are books usually that disgust people but should all contain a warning symbol on it for people with weak stomachs and those who just can't handle it. So by that means, I'm fine with it. People need to accept that the world is not all sunshine and rainbows and that gruesome stuff is out there. This is my take on the whole situation. So people, if you can't take the heat, stay out of the kitchen. However offense material to races, religions, and other personal aquisitions, is something of different concerns. This can certainly inflame groups, and even start protest or boycotting it. Authors in some cases need to review their materialand make sure it won't cause any disruption. Inflaming the public is not what you want young authors. This can not only make the public upset, but can possibly lead to the author getting fired. False statement or inaccurate statements in books can lead to public curiosity and even conspiracy. Not only will it cause a stir up in the press, but just like the race/religion thing, it can cause the author to be fired. This is not what the author wants. So making sure the work is true and not hipotheticle is a good step. These are great steps to achieving a positive step to public influence. So inconclusion, authors have lots on their hands. All the way from race issues, religion, fale statements, and so on. These are some of the things authors want to avoid. Making the public recommend the book, and it having positive outcome on the press is the best an author can ask for" 3 3 3 3 3 3 +3138 2 "In libraries, there should not be censorship on materials considering that it's an individual's decision to read what they prefer. There is no appropriate standard on what makes a book offensive to a group, so it should be undetermined as to what makes a book offensive. In a public library, many children, who the books are censored for, are with their parents. Parents should make an independent choice on what they can allow their children to read. Letting society ban a book simply for the use of inappropriate materials is ridiculous. If an author spent time creating a story, it should be appreciated, and should not put on a list of no-nos. If a certain person doesn't like a book's reputation, all they have to do is not read it. Even in school systems, librarians are there to guide kids to read good books. If a child wants to read an inappropriate book, the librarian will most likely discourage him or her not to read it. In my experience, I wanted to read a book that my mother suggested to me, but as I went to the school library it turned out to be a censored book. Some parents believe children should be ignorant about offensive things written in books, but honestly many of the same ideas are exploited to them everyday on television and internet. So trying to shield your child from the bad things @MONTH1 be a great thing, but the efforts are usually failed attempts. It also never occurs to the people censoring the books, that some people can't afford to buy the books they want to read. The libraries, for some, are the main means for getting books. To conclude there is very little reason to ban a book from the shelves. Many of the books banned have important lessons that can be obtained through reading it. If a person doesn't like a book, the simplest thing to do is not to pick it up." 4 4 4 4 4 4 +3139 2 "Honestly there's alot of books and magagives that need to be taking off the self. I can remember in the sixth grade going to the schools library and picking up a book that not only told me wha weed was it told me how to grow it! Also alot of book refer to drug and sex now a days and absolutly hate it! The last book I checked out, even though it is been a while sence ive checked one out, had enough referances to sex that i could honestly say I thought I was read a porn magazine. Our schools really need to watch what they put onto there selfs. I mean come on sixth graders shouldnt even be able know what weed is! Let alone read about it in school! maybe that why kids get interested in drugs and achole at such an early age. The book I read didnt have any negative satments about the weed. what makes anyone think that a book like that would keep kids from doing drugs? Like I said before alot of book in schools and pubic librarys have books that refer a lot to drugs and sex. They have books now in our library that tell you what the drugs are, what kind of high it'll give you. And were you can buy the crap to make them! Ok I know im in highschool but you should have book that seem like pron magazines. The book i read have pictures of postions in it! it broke everything down into details! It even gave websites on the back of the book. And that my friends is not alright. Its just sad. It is just starting to scare me about what kind of stuff my little brother and little sister could be reading. Doesn't it scare you? I know I dont want my siblings to be reading about drugs and sex in detail. Let alont them reading about it at all. just take the books off the schools and pubic librarys selfs. Hardly anyone will read them anyway. And if they do its by accident like mine incounters where" 3 4 3 3 3 3 +3140 2 "I think that removing books from a library that are offensive shouldn't be allowed, first off because people have different taste on the books they read. I also think that the books that the libary carries are educational, they might be offensive to people but sometimes they are good for learning new things about the world around us. Another thing is that a lot of books, movies, music, and magazines might be offensive to you, but if you dont want your child to read those then just keep them away from those types of books at the library, and the people that do want to look at that stuff can. So i think it just depends on what kind of stuff people like, everyone likes something different. One reason why i think that libraries shouldn't be censored is because some people have different taste in the books they read. Some people like scary books, some people like romantic, so everyone doesnt all like the same thing. Everyone might be offended of something but people should't let it bother them. My second reason is because books that they carry at the library are usually educational. They have learner books for the little kids to help them learn how to read, they have magazines for the people that are interested in the drama around the world, then we have war books for the people that are interested in history, so i dont think that people should really be to offended by the books that people read. Another reason is that if you dont want your child or a looking at the books or ect. That might look offensive to you then dont let them read them, everyone likes different things, and if you take away things that other people like then your just offendending them too. Thats why people that enjoy to go to the library should't take things so offensive, so we don't have to censor things at the library. So thats why i think that libraries shouldn't have to be censored at all because people have different taste in the books that they read, that books that libraries carry are usually educational, and if you don't want your child looking at those kind of books then don't let them read them. People need to undrstand that some books aren't always trying to offend people, but the ones that are they are just trying to state there own optinon" 4 4 4 3 3 3 +3141 2 "To @CAPS1 it @MONTH1 @CAPS2: @CAPS3 I walk into a library, I want to be able to think I am in a peaceful place where I can find books that are helpful for what I need and are not harmful to anyone. Anywhere I go I want to feel like a free person and shouldn't have to worry about things that will hurt others or myself. People are people and everyone should be treated the same. It doesnt matter what color your skin is, the way you look, or how you talk. Everyone should be treated equaly. I believe if there is something offensive in a movie, magazine, books, or anything to any kind of people it should be removed for good. It doesnt matter what the past was like. The present is all that matters and in my opinion everyone deserves the same. I beleive that no one in this world should feel ashamed of who they are. If someone is @CAPS4 @CAPS5 they should be proud of it and shouldn't be afraid of negative things that would hurt their feelings. I think most people would agree @CAPS3 I say everyone in this world should be treated the absolute same. Negative things in books or magazines or anywhere should be removed for good. We do not need things like that in our world. That is what causes people to become crazy and get into gangs or into drugs. Our world shouldn't concist of bad things that will hurt the lives of others. Anything that is negative to a person or group of people shouldn't be allowed and should be thrown away. Inacent people do not deserve what people received in the past. The past has nothing to do with what is going on in the present. Right now people should be proud to be who they are and not scared of things like that. I treat people the way I want to be treated and that should go for everyone. Harmful things need to be removed from everything. We do not need things like that in our world. People should be able to live free and feel proud of who they are. In conclusion I beleive that certain materials should be removed if they are found offensive. Everyone is who they are and that shouldn't have an effect on others and the way they live. People should feel proud to be here and not scared of things that could impact their lives forever. Harmful things are not good in this world and shouldn't have an impact on others. Everyone deserves the best and should be treated with care, not hatred." 3 3 3 3 3 3 +3142 2 "Comics, romance, adventure books, and mystery books are just the few different types of books out there as well as the magazines and music we listen to. With a little bit of everything, and whatever your passion is, we have that right in our local libraries to go look at or hear whatever pleases us but, some of the people that go there are not adults. Some of them are young children who are either checking out a book themselves or are simply with there parent/guardian. I believe that even though there are some books magazines, and music not attended for children, they still shouldn't be removed just because they are found offensive. Everyone once in their life had to atleast experience something unpleasant. But knowing our world today, we simply can not hide from those things but yet face them, we adults are old enough to just walk away from something we find offensive unlike what our children or other children can do. Sometimes, even children have to go through it as well. It's part of growing up and also a learning experience for all of us. If you already know what parts of the library have stuff children shouldn't see, don't bring your child to that area. And if it's possible, bring them to an area where they @MONTH1 sit and read there favorite books as well with you by there side where you can watch there every move. And at the same time, you don't have to take a chance at explaining something that you are not quite ready or sure that your child is ready to hear or see. Since it's impossible to hide things from your children that you are not wanting them to see and hear at the same time, that's a part of life. Even if they are still really young and ask what a certain thing is, we can simply turn there heads and make them get distracted by something else and pretend that we didn't hear what they said. But as your children get older, they should know right from wrong and know what things they @MONTH1 read and things they can't. Some of us are oblivious to the world around us and @MONTH1 not know that certain things can cause more harm than good, even like taking your children to the library. If you don't like a certain thing there or know that there is going to be something you simply do not want your child to see or hear, then don't bother taking them with you on your next visit and go another time when your child is with a babysitter or take a chance into bringing them with you an expect the unexpected when it comes to offensive items at the library" 4 4 4 4 4 4 +3143 2 "To start, if any materials in the library such as books, music, movies, or magazines are found offensive i believe that they should still remain on the shelves. This book or music @MONTH1 be offensive but everyone is intitled to their own opinon. People have all the freedom to read, listen or watch anything that is approperite to them. I believe it should all be up to the individual to chose what they should do with what @MONTH1 offend others. Also from my own exprience i have read a book about @CAPS1 @CAPS2 in the stadges of our history where they were salves and were hung for their punishment. It @MONTH1 offend some that their local library having a book on such a terrible topic but it is found that it is part of history and others @MONTH1 find it interesting to go back a learn more information. It does not have to mean that they are rascist or trying to offend you they would just like to learn more about our history. Each person has had topics that offend them but the libraries can not make all happy. If you chose to pick a book, watch a movie, or listen to music that @MONTH1 offend someone then it shouldn't be removed, if you would like to read, watch or listen to anything that @MONTH1 offend someone then it should be up to you to decide what to do about it. Therefore, i conclude that if any books, music, movies, or magazines are found offensive they should remain on the shelves. Everyone @MONTH1 have their own opinon or have their own ideals that offend them but it is our job to let those people choose their liking of anything open in our local libraries. It is for their own benifit, not for yours. It is up to you to decide wheather or not to come about the situation. Libraries should not be held responsable and have to removed anything open to the people that @MONTH1 just be part of our background" 3 3 3 3 3 3 +3144 2 "Censorship is used in the media to prevent people from being offended by what they see or hear. Although censorship isnt usually a bad thing, it is sometimes over-used. Not everyone has the same views and morals, what @MONTH1 be considered appropriate for some people , @MONTH1 be viewed differently by other cultures or religions. In my personal opinion if you find something to be offensive, instead of demanding it be removed or censored, simply do not watch, or read it etc. Obviously if the content was published in the first place it appeals to some audience. No one is forceing people to read or watch things, that is why there is something called viewers disgression. If everything that was considered offesive to a certain individual or group where censored , there would be no @LOCATION1. In @LOCATION1, we have freedom of speech, the freedom to write or animate to express any belief we choose. To censor things out is condraticary to that amendmant. For example the censorship of useing the word '@CAPS1' in vain on television. I myself find this to be excessive because it doesnt apply to my beliefs . Although the program ' The @CAPS2 @CAPS3 Of @CAPS4 @CAPS5 @CAPS6' protrays people of my age and nationality getting pregnant and doing drugs. Even though I find this offensive and sterotypical, instead of demanding it be removed, I simply don't watch it. I am not saying that I am totally against censorship of certain things, like nudity on television. Although if something is censored simply because of a belief, or moral, or worry for a one's children to be subjected to it,that is blowing censorship out of proportion. If you find something offensive just keep yourself and your children away from it." 4 4 4 4 4 4 +3145 2 "Censorship in libraries is not necassary. No reading material should be taken off the shelf. Every book has a different experience that can help a child learn. If the gurdain of a child believes that a certain book is bad or offensive; then the gurdian can forbid the child to read it. If people began to take away options on reading materials some kids @MONTH1 refuse to read at all. Every person is different and likes an option to pick a book that they can get in to. Censoring books at a library is pointless, you take away options, and the experience to learn from certain books. Every book has a different plot and a different moral. Each story in its own way teaches the reader a moral. When you start to remove books from libraries you are taking away the chance for a student to learn a certain moral from that book. You are sort of in a way trying to hide away reality when taking away certain books. No book should ever be taken off the shelves of libraries. Every book removed from the shelves is another learning experience taken away. If there is a book that a child's gurdian disapproves of; keep it up to them to forbid their child not to read it. A book is simply a way to learn and explore the different things in life. Censoring at the library can only keep kids away from the books for so long. Every child deserves the chance to read any book they wnat, unless a gurdian forbids. It is not up to libraries wether a book is offensive or bad. That is soley based on the readers opinion, and everyones opinion is different. So again, if a gurdian really wants their child to stay away from certain reading material they can forbid their child by theirselves. When libraries begin to censor books they take away the option to pick books. When you limit the themes of books in your library, some kids @MONTH1 just pick up less and less books as time goes by. Everyone enjoys a differnet kind of book, leaving options open gives everyone the chance to find a book they like. Although some stories @MONTH1 seem like a bad option, it is not until the reader has begun to read that he or she can figure that out. Leaving options open for students is the best idea, because more kids @MONTH1 actually read. All in all libraries should not censor books or any kind of reading material. Everyone is different even when it comes to reading a book. People like their options to be open and at a wide range. Each book tells a differnt story and teaches a different moral. So leave the options open to the children and let them learn from the stories they choose. Some books helps teach a moral or get a point acoss. Also some books help prepare a person for the outside world. Taking away certain reading materials is taking away the chance for a child to learn the things that are actually going on around them. In conclusion censorship is a bad idea and should be left to the gurdian of a child" 4 4 4 4 4 4 +3146 2 Should certain books be banned or shouldn't certain books be banned? In my own personal opinion no I don't think that any books should be banned from a public libaray. The authors of books have freedom of speech so yeah some books @MONTH1 offend people but if it offends them they should try stay away from that books or magazines. I think that if certain books get banned from the libaray then you won't be able to buy them in stores anymore because the stores will banned them as well. In my personal opinion no I don't think that any book should be banned from the public library. The reason being is because you can't judge a book by it's cover. You don't know if the book is goin to offend you until you read it. After you read it or you'r in the middle of reading it and it offends you you should take it back to the library and get a new one. Should certain books be banned or shouldn't certain books be banned? In my own personal opinion no I don't think that books should be banned from the public library. Because alot of books that do offend people are the one's that teach us about history. 3 3 3 4 3 4 +3147 2 IN MY OPINION I THINK THAT SOME BOOKS PROBABLY SHOULD BE REMOVED FROM THE SHELVES IF SOME OF THE BOOKS AREW FOUND OFFENSIVE. SOME OF THE MOVIES AND BOOKS PEOPLE FIND OFFENSIVE CAN BE PRETTY BAD AND SAY NASTY THINGS AND STUFF LIKE THAT. SOME MUSIC CAN BE PRETTY OFFENSIVE TOO BECAUSE IT CAN SAY NASTY THINGS AND THINGS LIKE THAT BUT NOT ALL MUSIC IS BAD.. IT DEPENDS ON THE KIND OF MUSIC YOU LIKE TO LISTEN TO IF IT SAYS NASTY THINGS BECAUSE THERE IS MANY DIFFERENT TYPES OF MUSIC TO LISTEN TOO. 2 2 2 2 2 2 +3148 2 "i believe that there shouldn't be any censorship in libraries. The reason why I say that is because of our first amenment which is freedom of speech we should be able to put anything in books, magazines,music,movies, and etc.. The other reason why we shouldn't take them off the shelf is because we should be able to tell if the book is good enough for your age or your viewings, depends on your point of views. My first reason is the first amenment which is freedon of speech. The reason why I say that is because we should be able to but what ever in our books that expresses our feelings in any way shape or form. Also, if we start taking stuff away because of censorship in books it will go farther than that and it will come to a point where the first amenment will become cease. In my culmination I have made my point that there shouldn't be any censorship in anything because of the first amenment. I also said the reason why we shouldn't have censorship is because it's another way to express yourself or your point of views." 3 3 3 2 2 2 +3149 2 "You know when you find a @LOCATION1 book on the shelf and discover that the content in the book are not word that are oppropity for children to read. Or when you go to copy something and you notice a magazine on the table and find out that the cover of the magazine has an image not for the young mind see. Or a movie or music that you see and the content from them shocks you and makes you that they bleep those word. I see it more better to have offensive items such as: books, music, movies, magazines, and etc. removed from the shelves, because those words and pictures will poison the minds of children and children learn from the world around them stuff like will make the child think that's how your suppose to act and talk. Here two example of why they should be remove from the shelves music and magazines. First, in deal with music children word immate act they see and the words the say. One good example is rap music: their song have cuss words in them and believe me when I tell you this that I have to constantly to kids at my school saying cuss words like the n- and f-word and many more and seeing some boy's underwear, because they think they are being thugs just because they have their pants sagging low. It drives me crazy and make me think why are their parents letting their children do this. In the next paragraph I will talk about magazines. Second, with magazine some of the images they use on their covers and pages are something that are ment to be seen where children read. an example for this is when I went into my school library's copying room to copy an article from magazine I found a magazine on the table and it show three of the cast members from @LOCATION1 in their birthday suits. I thought what in the world is this doing at my school they should have something like that in a place where kids are in a learning environment. Why on earth did they send this to a school for crying out loud. What do they think it want bother any kids' parent about it that I sure would be furious about it if I found out that my child had a something that at there school. In conclusion, this is why they should be removed from the shelves so the children don't see them." 3 3 3 3 3 3 +3150 2 "Freedom of press is a right not many countries have. America is the land of the free. To some, having this much freedom causes great things to happen. Without the freedom of press, many of the most classic modern literature would not exist and their messages would be unknown. To censorize the right to write freely about ones outlook on the world or government or anything means taking away imagination and in some cases statistics and events that relate to the past. Before todays technology, books were one of the only ways to obtain knowledge, and the process to make and publish a book took so long that it was an honor to recieve one of the few copies produced. People have a craving for information, they like to learn and advance. If all books that were found 'offensive' are stripped off the shelves, information is slowly taken away and the enjoyment of reading would be gone. In the brilliant novel, @CAPS1 @NUM1 a man who lives in a distopian society discovers the lack of literature. All books found in homes are immediatly taken out and burned in the streets for all to see. Children found it entertaining and adults did nothing. The man goes through the novel with a secret stash of books of his own. Once discovered he is on the run to protect his precious knowledge the government tries so hard to keep from the public. Censorship would create nothing but chaos and distruction as in the novel. Having the right to know about your countries history or what is going on in your current government is critical in shools and colleges. Parents often find offense in the authors schools choose to make students read, saying their ideas and ways of thinking are to single minded and wrong. Students need books to grow and learn and if every person chose one book to take off the shelf perminatly, there would be no more books. Eventually all information would come from what one would know before the books were banished and in time gone for good. Books are a history in themselves, no one wants to hear the raw truth of certain topics such as slavory or the possibility of a complete government take over. In order to avoid hearing of this one could simply chose a more ficition novel in which to escape into a fantasy of their own. No one can change history, however they can exagorate certain events and without the actual book or cite it came from, one could completely alter the publics view and thoughts of the past. Should one take offense to a certain book, they have their own freedom to write a negative blog or report on it. Writing is a gift few have naturally and to be able to show off ones talent is a privlage. Books help people escape the harsh world we live in, or help them gain more knowledge. Censorship is irrevelent, for having all forms of music, movies and magazines stripped of the truth, what does that leave? People always strech the truth or tell a 'white lie' however most information is factual. The freedom to write and make books and music and movies is not all about entertaining people. The messages behind said 'offensive' material could be quite strong and though the author might be long gone, his or her message could live on for decades" 4 4 4 3 3 3 +3151 2 "The entertainment for children and adults consists of movies, music, sports, video games, and reading. Books, music, movies, and magazines should not be removed from any shelf at any time. Libraries censor some material because of violence or inappropriate material. Children should have the right to read, listen, or watch whatever they want to because it's their life. Books, magazines, music, and movies can teach young people about life and the writers, artists, directors, and actors have worked extremely hard on entertaining the people.. The materials found 'offensive' should not be removed. These materials can be found helpful to others. Reading material can help a young person with life. If the reader is having problems and needs help, it is possible the book he/she is reading @MONTH1 help them in the thinking process on what they should do. The books, movies, and music have been made by extremely hard workers, so why take away their hard work by removing their material just because a couple of people have found it offensive. One of the many times i went to the library I was looking for a book I had read before but I could not find it. I could not find it because someone else found it inappropriate and had asked that the book be removed from the shelf. This hurt me because that book was one of my favorite books to read. Some books found 'offensive' or 'inappropriate' and taken off the shelves could be another person's favorite book to read. Why take it off the shelf? People are being too much self-centered. They care about themself and that is it. The material being taken off the shelves should be put back on the shelves for the readers who find the material entertaining. If a parent does not want their child reading a certain book then they have the authority to take the book away from that child, not the shelves. Freedom of the @CAPS1 states that the anybody has the right to write whatever the he/she wants to write. If we keep taking books, magazines, music, or movies off of the shelves then we're going to get to the point to where there are no books on any shelf" 3 3 3 4 4 4 +3152 2 "I do not believe that books should be removed from the shelve do to something offensive.Libraries are a very important aspect to life for most people nowadays. Mainly because where I live our city is working on a new plan to close the library nearby.For, me and my friends the library is very important because we do not have a computer in our home.The library has the internet and older books with information on the city. Living in the society that we have now not every household can afford a computer with internet.Me myself living in one of those households.The library is a great quiet place to get your work done.Its also, provides the internet that people cant afford and need for everyday life.Every job application or school assignment is no longer on paper ,but online. Being a @NUM1 grade student we have to alot of projects to do that require old books on the city and history.If they remove certain books of the shelve i @MONTH1 not be able to find important information that I need.Also, I know that every person has their own opinion on what is offensive to them ,however if everyone found something offensive in the book, movie or magazine does that mean it should be removed? If that happened there would be a very limited supply of books. I have a friend who is mixed with mexican and sometimes she finds slavery very offensive ,but to me I believe that it is important for me to learn about my history.Proving that something that might be offensive to one person @MONTH1 not be offensive and maybe very important to the other. In conclusion, I disagree with books being removed from the shelve due to offensive content I believe is wrong.Every person is different and find different things offensive ,but things should not be taken away from another person who @MONTH1 need it" 4 4 4 4 4 4 +3153 2 "Everyone has a right to read, listen, or watch what they want. Sometimes it's not always up to them. For example rated-@CAPS1 movies, most children under @NUM1 cannot watch them. Either its a law or the parents have made it a rule. Music I think is different. Some songs have a bad influence on children whether it has to do with violence or cussing, certain songs like that still give kids the wrong message. Libraries should not have those kind of books, music, movies, magazines, etc. If people want to view those kind of things that other people find 'offensive' they should buy them on their own time. Not everyone has a great sense of humor so things that some people @MONTH1 find funny other people get offended by. Even if libraries had anything that would offened someone else, it would be the readers choice to pick a book they want to read. Sometimes it @MONTH1 be better off if the children read these articles by themselves so it'd save time from having parents explain it to them later. They might ask a lot of questions the parents might not even have the answer for. For example, when my brother watched a rated-@CAPS1 movie. In my brother's younger years he was always curious and asked a lot of questions all the time. Sometimes my mother didn't know how to respond so she'd change the subject. Well, everyone knows the same old question '@CAPS3 do babies come from?'. That's the kind of question my brother was curious about. My mom never bothered to answer that question, but if she did she would make up some story. My brother was smart enough to know that what he was being told wasnt accurate at all. Finally one day he got nosy and took one of my mom's movies without asking. It happen to have the answer to his question. He was shocked and disgusted at the same time yet he was glad to know he finally found the answer my mom wouldnt give. In this situation I am somewhat nuetral. I dont object to having things that might offened other people be removed from book shelves but on the other hand it might not be a good thing to put 'offensive' things and certain libraries @CAPS3 children can get to them. Perhaps it's what makes things not boring and makes it more interesting to the reader. Not everyone has the same opinion on things. It just @MONTH1 be a good thing to have these types of books whether its stating a fact or stating their own opinion. Everyone does have a right to say their opinion and there is nothing wrong with giving informational facts in articles or movies either. The bad thing about having any 'offensive' things in libraries @MONTH1 not be a smart idea if it's @CAPS3 most children get there books. Parentscan always have a say in what kind of book their children read or what kind of movies they watch. Some parents might not want to go through all the questions the children ask and give something to them that will explain it better for there understanding, while other parents dont want their children to see or know of any sort of things that @MONTH1 be 'offensive' until their old enough to understand it better and are mature about those things. So in some cases it might be bad idea for things that only an adult should know be on book shelves in a library @CAPS3 a child might get ahold of it. The quotation ' All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if i have the right to remove that book from the shelf - that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' by Katherine Paterson has its own opinion. The quotation is basically saying if even a parent doesnt want their child to read something 'offensive' if that parent reads it that sometime their children have a right to know. If the child has tooken anything like that off a shelf that once they know they will not ask anymore questions." 4 4 4 3 3 3 +3154 2 "Dear @ORGANIZATION1, I think that it is wrong to remove offensive and other non offensive books from the shelves in the library just because one or two students do not like them or do not want to see others reading them. Somethings are ok for reading and learning although they are indeed offensive it is ok for these matrerials to be left on the shelves, if it will be used for a good purpose such as learning and not just for fun. It is important for readers to be exposed to a broad spectrum of reading materials. Not only should they be exposed to some materials that are not so clean and normal but they should be introduced to things such as foreign writing. If we took everyting off the shelves that was a slight bit offensive or was not completely suited for readers would there be many books that would keep peoples atention? In conclusion I strongly believe that these materials should be left on the shelf. These materials are important for learning in some cases and keep the readers attention. Keep these items on the shelves!" 3 3 3 3 3 3 +3155 2 The censorship in libraries should be as gog as it is for that age group. Children of the age @NUM1 to @NUM2 should be able to read books with any profanity. they should be mature enough to get through a book that has name calling and uses the profanity without laughing or taking it offensive. Children that are @NUM3 should not have books in their libraries with much of this pro-found languge. They are young and should not be expecting the fact that there people that use these words to express feeling or name calling. They should be able to hear very little or see very little but when they get older they are suppose to be use to this. If they dont hear it as much then yes i would agree but they should have a point of censorship in the libraries they are in. With children that are younger than @NUM4 years of age they should not read or seee things that have profanity or bad scenes unless their parents let them. We cannot controll what parents lets their children do but we can in the schools and in the public libraries 3 3 3 3 3 3 +3156 2 "I am a citizen of the @LOCATION1 and I believe that the censorship on the material in libraries is not good but it could be better. It should be an age limit on certain books and magazines ect. in the library. Somethings younger children shouldn't be able to read because of the maturity level. I remember taking my little sister to the public library and she got a book and began to ask me some words that she shouldn't even be hearing about now. On the other hand, those books @MONTH1 be needed. Some people need those types of books and magezines for research papers and things like that. Now I consider myself a young adult and I believe that other children my age could read about different things and know whats right from wrong. Its also up to the parent or gaurdian of the child , if you feel that you dont want your child to read anything thats not appropriate then go with them to the library. But then some children dont have a mature parent or gardian that would tell them what to read and what not so thats when the library should do something about the censorship on the books. Well I jus wanted to write you this because like I stated before the censorship on the books, movies, music, magazines, ect. in the library is ok but it could be jus a little better. There should be a certain age when a child reads or see's certain things. But you can't just take all the books and things out the library that are not appropriate because some people actually need the books. Thats why I believe that it would help if the library had a age limit or made certain things for mature audiance only." 4 3 4 4 3 4 +3157 2 "If something is to be found offensive, than it should certainly be removed from the shelves. When parents send or take their children to a library, they do not expect their child to be able to pick up something that is not appropriate. Some items @MONTH1 offend someone's beliefs and be rude. Public libraries are just that, public. Everything there will be seen by the public and large masses of people. No one should have to worry about being offended when they walk into a place of learning and knowledge. Parents do not want their child going to the library and picking up rude materials. Even if the child does not check the book or magazine out, who is to stop that young, impressionable mind from flipping through the pages. Perhaps he or she reads something that his or her parents did not intend on teaching them for some time. Books now have a lot of crude text and humor. If there is a topic that a younger individual is not mature enough to understand, he or she @MONTH1 get the wrong impression or ideas about the subject. If a kid is rumaging through the more adult section of the library, they might be expossed to some information they are not ready for. Offensive language @MONTH1 be present in the books and now the young person will see them and try to use the words or phrases. If a child read something about sex, he or she might be curious or confused, and ask their parents about it. The parents on the other hand, might not have wanted their child to know about the topic at such a young age. At that point there would be no turning back. Parents would have to explain things that are too mature for some young minds. Parents have every right to deny minors and children certain materials, but if the books are out in open, who will censor what is looked at by whom. Libraries need to put serious thought into what is on the shelves, no matter what form the information is in. People @MONTH1 think just because the story was in a book, than of course it can't be real. Some reckless senarios are played out in movies. Those movies are watched by people of all ages. If an impressionable teenager watches a movies that has offensive language or violent scenes, that teen might act upon what they've seen. Since the public library is indeed public, the materials it offers to people should not be offensive. All sorts of individuals walk into a library and look around. No one should ever walk out a library with the feeling of being offended. No parent should have to worry about what their child might pick up. Libraries should not cause worry or harm in any way." 4 4 4 4 4 4 +3158 2 "I feel that they shouldnt be removed due to the fact that somebody else @MONTH1 like that movie, book, music, or magazine. Just becuase we might not like it doesnt mean theirs somebodyout there that do. Everything shuld be in the library becuase their are different people and not everybody like the same things. The library suppose to have everything so if we declared to take something off the shelf becuase due to the fact one or a couple more people dont like something or whats being displayed out to people it wouldnt be right. I have been to the library and looking for an movie or a book that i like or want to see and it have not been there i have got mad for that. So ifeel as if it's not right nor fair. Everybody should have their right to what ever it is that they read or like to watch. Even though there are certain books or movies out their that chidren should not touch, i still feel as if they shouldnt remove anything off th shelves." 2 3 2 2 2 2 +3159 2 "Hi my name is @CAPS1 @CAPS2 @PERSON1 and I'm here to talk about why I thing we should have these certain materials in the libraries. Why I think these materials should stay well because, For @CAPS3 lets say its a certain movie or song or book or whatever just that one thing you were looking for, for ages and you couldn't find it in any other store and you just happening to go to the library just to look. Even though you know its not there, but you just looking and you end up finding whatever it is you where looking for. And what if you wanted to look for a myster book and only the library had that book you where looking for. I can think of alot of reasons why we need certain materials. well i guess that about sums that up for me. And in concultion put yourself in the same shoes or even my shoes. What would you do? would you let them remove those materials or would you fight for them to stay." 1 2 1 2 2 2 +3160 2 "What is your opinion on reading materials? Should people be able to read what they want, or should we limit them to what they read? Every library has different choices. They can say you can't get this without an adult, or they can just let you check it out and take it home. I have read many different things in my lifetime so far. I have read books that people have told me were not appropriate, and then nothing bad was in there. Most books even if they say one to two choice words it turns into an adult book. I think it should be up to the reader, if they can handle a book or not. Everyone reacts to things differently. Let's take people in my age group, for example, some of the boys are still immature, and think it is funny to act out. Those are the kind of people that cannot handle what we call 'adult' material books. Most girls are in the stage where they are maturing, still immature, but working their way up the scale. They would be able to handle something in the adult material category. The reader is smart enough to know what he or she can or cannot handle. If we take peoples choice away what are they going to have? You would make them feel more like they are being babysat because they have to take their parents to the library, and say hey mommy and daddy pick me out a book because I am not eighteen and cannot pick one. I would not like that. Being one that reads a lot I know my family is pretty busy and would not be able to find time to ride with me to pick a book. Therefore, i would not be able to read as much. I mean what do you think? Which side would you choose? Everything is a personal opinion. It is all about what you as a reader is comfortable with. Do you want to decide for yourself or have some one with you every step of the way. Some people are just too busy to even try to fit it in their schdule to go to the library. Others just want to have the freedom to read what they want to read. Why stop some one from getting smarter? A child will only learn more by challenging themselves. Why not let them challenge themselves in a good book, that they got to pick out. What do you think" 3 4 3 4 4 4 +3161 2 "I believe that libraries shouldnt be censored becuase people take offense to something. Everyone should be able to read, research, or watch anything they want at a library. I say this becuase everyone takes offense to something, If people can't find what they're looking for then why go to the library, also everybody likes diffrent things. I'll support them in the following paragraphs. Have you ever read or seen something that u took offense to you or others? normally when someone takes offense to something they try to get rid of the thing offending them. If people where to take away things that offended them in librarys what would be left of the shelfs? dust? Becuase there are many things that people take offensive, everyone is diffrent. This is one reason I support no on censorship becuase there would be nothing left. Also everyone tends to like many diffrent things. I @MONTH1 like something you could possibly hate, should it not be aloud in a library becuase you don't like it? No, becuase something you like could be taken away by someone else. So if everyone tried to take away the thing they don't like this would be another thing were nothing would be left. I think that becuase if we combined everyones things that they hate, it would most likely be everything. These two subjects bring me to my last reason, if people cant find what they want. Becuase it was taken away, why come to a library? People would just stay home to read what they like on the internet and librarys would become empty like there shelfs. Then it was a waste of money to make the building, purchase the books for people, and hire librarians. Thats wasted tax dallors we could have used for something better. After reading all my reasons and opinions I hope you can agree on not having censorship in libraries. becuase everyone is offended by something, everyone likes diffrent things, and noone would use a library if what they liked wasn't there. some people @MONTH1 disagree with me becuase they're one of these people being offended or not liking something. But say no to censorship, let our libraries do what there for, allow people to read, research, adn watch what the want." 3 3 3 3 3 3 +3162 2 "Censorship is one of the most broken laws in @LOCATION1. It is illegal to censor any publication such as books, magazines, music or movies. Censorship most often occurs with books in a school setting. Censorship should no longer be tolerated because it affects the writers, school system and escpecially readers. In the @ORGANIZATION1 every person has the right to express their feelings and opinions on any topic that they want to. School systems are taking away that right by not allowing them to have a certain book in a school. Schools should be a place for either all books or a place for no books at all. The faculty of a school does not have the right to decide what books are allowed in their school based on their own ideals. It is not fair to the writer to be descriminated agianst, and that writer must have the right to have their book read in any setting. The next group that censorship within a school system affects is the school system itself. If a school is allowed to take away one right of a group of people without punishment, then they might start taking away other rights. In general school systems and teachers are power hugnry leaders of the student body of a school. They make rules just to display their power over students, and take away many of their rights. If schools are allowed to continue censoring books, then this could lead to a downward spiral of all being censored. As Katherine Paterson once said,'All of us can think of a book that we hope none of our children...take off the shelf. But if I have the right to remove the book I abhor...then you have exactly the same right...And then we have no books left on the shelf for any of us.' The government of the @ORGANIZATION1 needs to crack down on school censorship because it is unconstitutional. The last major group of people that censorship within a school system is the potential readers and students. Censoring a book is taking that persons ability to learn about, and understand a certain topic that was censored. Students within a school must have the right to read what they want to read regardless of the schools beliefs and ideals. In conclusion, censorship in any setting, but escpecially in school must no longer be tolerated because it affects writers, school systems, and potential readers. Schools are taking away the constitutional right of all potential readers. The government of the @ORGANIZATION1 needs to crack down on the unlawful practices occuring in schools, around the country, everyday" 4 4 4 4 4 4 +3163 2 "What is this world coming to? We have stooped to the level of installing offensive materials in libraries where anyone can check them out. Being a daughter and teenager myself, I personally have had the experience of reading some of these offensive books and magazines. The sex, drugs, and violence used to create a story, have destroyed the minds of our youth. I strongly feel this disturing and destructive material should be removed from the shelves of libraries. I do not question whether children and teens should read, but rather what they read. I agree reading helps our youth learn and excel in schooling, but offensive books and magazines put nasty ideas into their minds and distort their way of thinking. The more our younger generation reads about these ugly things, the more curious they become. I feel they will eventually let curiousity get the better of them. Many would say that experiencing activities such as sex and drugs is all apart of growing up, but I disagree. Trying any one of these harmful activites portrayed in certain library materials could put you and your health in severe danger. It only takes one time to become pregnant or become addicted to drugs. To better prove my point, think of your favorite book. Did you look up to any of the main characters? Did you want to be just like him/her? Well it seems to me that this malicious material makes the main character and hero of the story a bad role model. They @MONTH1 save the world and be a hero by day, but authors and producers make sure they include their night life in the story as well. This tells our children that it is okay to do these things, when it is the exact opposite. I stand by my opinion and believe offensive books, magazines, and movies should be removed from the shelves of libraries. This material plants a bad seed in the mind of our youth. It leads them to believe everyone, including their heros in books and movies, does these things. Sex, violence, and drugs are not what this world was made for" 5 4 5 4 4 4 +3164 2 "People think that graphic images or words are going to change the outlook there younger child has on alot of topics. But really the kids wont remember half of what they read or see so does it really matter? Well according to some people it does which i can understand but i will have to go with the side that it does'nt matter to. Becasue its not like there not going to find out about bad language or sex so i say there should be no restrictions on books, music, movies, magazines, tv shows, ect. The fact of the matter is that people or parents get to offended or complain cause there little @PERSON1 said a curse word in front of them. Or becasue some of the material in the show or magazines are to offensive towards people with disabilities, races, ect. When really all of this is just humor none of it is the network or authors being serious. Authors works arent to be shunned apon but to be read and for people to learn from that book or just have a good time reading it. Through all of this you should know by now that i don't think that books should be taken off the shelf just becasue little kids parents are ashamed of what there kid read. Casue like i already said there are gonna find out about this stuff eventually. So no need getting mad over it. And if we got rid of all the more mature books what kind of books would all of us more mature kids and people have to read. Casue im pretty sure i dont want to read about a magical friendly dragon finding its way home." 3 3 3 3 3 3 +3165 2 "Dear @CAPS1, @CAPS2 name is @PERSON1. I am a student here at @LOCATION1, and it has come to @CAPS2 attention that the @ORGANIZATION1 is thinking about taking books they find offensive out of the library. I think this is wrong. If everybody at @LOCATION1 took the books we found offensive off the shelves and threw them away, we would be left with no books to read. I also think that no one person should have the right to decide what books are too offensive for me to read. I am sixteen years old and responsible enough to make @CAPS2 own decisions about what is too offensive for me to be reading. If I feel I should read books that others @MONTH1 find offensive then, why does that concern you? Just because I want to read the book does not mean you have to. Also, I think that having books that might be a little offensive makes that book more interesting. If you take every offensive word out of a book, chances are it is going to be hard to sit through it. If you take all offensive books from the library, kids will be even more discouraged about reading, and I know that is not what @LOCATION1 is looking to do. If you think that books are that offensive, try walking down the hallways. this is a @ORGANIZATION1. Kids cuss all the time, and talk about dirtier stuff than in any book I've ever read. If your looking to make children more innocent, then taking all ofour books out of the library is not the way to go about it" 4 4 4 4 3 4 +3166 2 "Every author has an intended audience when they are writing a book, and they write about what they think is appropriate for that certain audience. Unfortunately, sometimes other people that are not intended to read the book actually do read it even though it @MONTH1 not be something that they are supposed to be reading. When an author writes a childrens book, it is meant for a child to read, not an adult. Also when an author writes a romance novel, it is meant for people who can comprehend what the authr is talking about and can act maturely while reading it. Although some novels @MONTH1 not be appropriate for certain people, censorship in libraries is not they way to fix that, and it is a big mistake. As humans we are given certain freedoms, and one of those freedoms is the freedom of press. Authors should be able to write about whatever they choose to write about. If they choose to write about subject's that are not appropriate for all age groups they still have the right to have their books in libraries. Even though everyone isn't supposed to read them, certain people are. If you take those books away because your scared that a child might get ahold of one, then your taking away what certain people enjoy reading. Due to the fact that different books are intended for different age groups, libraries have different sections filled with a variety of authors. They have a children's section made primarily for children,an adult section with books that only adults are supposed to read and a teen section for everyone in between. By having sections within them, libraries are trying to keep people reading what they were intended to read without censoring or taking away people's favorite books. Having sections in libraries is a happy medium between letting anyone read whatever book they would like no matter how inappropriate it @MONTH1 be, and cutting out certain books all together. If a person is an adult, they should be allowed to go to the library and get whatever type of book, magazine, music, or movie that they want. If a kid's parent is okay with them checking out or looking at certain things then it shouldn't matter to anyone else if they think that the material is offensive. Instead of censoring what movies, books, magazines, or music that libraries have, there should be a certain age when someone can come in without a parent and check out whatever they would like. If a person is under that age then their parents should be present while they check out so they can approve of what their child is checking out. Censorship in libraries is ultimately pointless and shouldn't even be considered. Whether some people find certain material offensive or not, there are other ways to get that material so there really is no point to censoring anything in libraries" 4 4 4 4 4 4 +3167 2 I think that all offensive materials should be removed from librarys so every one can read a book listen to music and watch movies with out being offended. They shuld have there own section for that kind of material. Movies that are bad should be taken off the shelf. They should have a section just for those movies. The sction should be locked up so children can't get those movies. I think that this would be fair for everyone. Music that is bad should be taken off the shelf. They should have a section just for that kind of music. The section should be locked up so children can't get that kind of music. I think that this would be fair for everyone. Magazines that are bad should be taken off the shelf. These magazines should have a section just for those magazines. They should be locked up. I Think that this would be fair for every one. Books that are bad should be taken off the shelf. They should have a secton just for these books. these books should be locked up so children cant get them. I think that this would be fair for everyone. This is what I think should be done with this offensive materials. If this was done everyone would have a book to read a magazine to look at music to listen to and a movie to watch 3 3 3 4 4 4 +3168 2 "Picture this: you come home one day after work and before you even enter the house, you hear music blaring from your child's room. As you step closer, you begin to hear the lyrics that go with the banging bass and you realize that that isn't just any music, it's completely unedited, expicit versions of vulgar songs. Now, who would want their child listening to songs that make it seem like drinking, doing drugs, and other various risky activities are okay? I know I sure wouldn't. Music isn't the only source of offensive material in today's society. It can be found nearly anywhere. In books, magazines, @CAPS1 shows, movies, on the @CAPS2, you name it. All of these are easily accessible by children of all ages. That is why there should be censorship of certain materials, to a certain degree. By this, I mean that if there is a dirty book in a public library, it should only be able to be rented by people who are of a certain age. Just because it's bad doesn't mean that it has to completely vanish from the face of the world. There should just be a limitation on who can view it. That applies to everything that could contain offensive material. Kids are kids. There are certain things that should be absolutely off limits to them--such as explicit movies, books, music, etc.--as they do not need to know about drugs, sex, or alcohol at such a young age. Censorship should definitely be in effect in places like public libraries where young children are bound to be. But, as mentioned earlier, censorship should only be to a certain degree. Keeping childrens' minds clean for as long as possible would be a very positive thing to do for both them and our society in general" 4 4 4 4 4 4 +3169 2 "'And then we have no books left on the shelf for any of us.' @CAPS1 is such a strong statement by Katherine Paterson in regards to censorship in libraries. So often today do we hear of books, magazines, and numerous other resources in libraries being banned because of unpopular views. A classic novel, The @CAPS2 of @CAPS3 @CAPS4, has been removed from the shelves of many public and school libraries because of crude language such as the word 'nigger'. Libraries should not take resources off their shelves due to offensiveness because it goes against the library's purpose and because many people have different views. A library is a place with resources provided for information, interest, and enlightnement. When a book or magazine is taken away because of origin, background, or views that seem obscene or unpopular, then that library isn't serving its purpose. If I wanted to find a book on @CAPS5 but the library banned it because another religion found its teachings offensive, then why not ban the other religion's books as well? @CAPS1 goes back to what was said by Katherine Paterson earlier. What might be offensive to one person could be a lifestyle or interest to another. Children, however, should be treated as a special case. No, a child should probably not, in my opinion, be reading about adult things such as sex. However, that child's parent or guardian is the only one who has the right to restrict resources they feel as inapropriate. In most public libraries, young children are not aloud to roam the library without an adult. @CAPS1 is a very prominant rule because it sets boudaries for the adolescent so they are not to read about or listen to anything they shouldn't. Also, it is keen that libraries divide up the different resources into separate sections for children, young adults, and adults. Banning books and such from libraries takes away a part of history and leaves a gap for the future. To find that what our parents were once reading is restricted should not be an issue. Materials should not be censored in libraries beacuse they are found offensive becuase @CAPS1 is censorship and it takes away our rights." 3 3 3 3 3 3 +3170 2 "I dont think we should not take books, Music, Movies, and Magazines off the shelf gets because we think they are offensive to us. If you think somthing is offensive dont get it I know I would not get somthing that I think is offensive to me. Their lot's of books in the world that i dont like. One of them is @CAPS1 Books I hate them with all of my heart. The next kind of books that I think is offensive is @CAPS2 Books because their are lots of story that are in their that we dont read. So I think that it is a wast of paper. The last kind of books I think is offensive is @CAPS3 Books because they are hard to read them in @CAPS3. Their are lot's of music out there I dont like. One of them is @CAPS5. I dont know why I dislike @CAPS5 but I do. The next type @CAPS6- @CAPS7. The singer in todays @CAPS6- @CAPS7 I think are no good. The last type of music is some of todays rap. I think some of todays rap uses to much bad words. Their are lot's of movies out their I dont like. The first one is @CAPS10 @CAPS11. I did not get the hole plut of that movie. The next one @CAPS12 of the corn. Their was no way I could find out way the @CAPS12 was killing the people over @NUM1 in that town. The last movie that I did not like was ALL the @CAPS13 movies. I just did not like them ok? I think all of these things are offensive. But I still know that people like them so I would not take them away. There are thing people like but I dont like them. Their things that my friend like but I dont like. Their thing I like and they dont like. But I guess what I am trying to say is in life there are going to be things that you dont like. But you cant get rid of the things you dislike in the world" 3 3 3 3 3 3 +3171 2 "Our founding fathers creating amendments for the people. One of the greatest is the freedom of speech. Censorship of offessive materials is unnecessary. Books, music, movies, and magazines @MONTH1 have bad messages or nudity, but that does not give anyone the right to get rid of them. Book burning happened because of the dislike of people's writing. People have the right to say how they feel by any medium. Censorship of anything makes a child more immature. Book burning is a horrible action by any person. People used to burn them because of all the sex, drugs, and violence, but doing this destroys people's dreams, theories, and ideas. In the book @CAPS1 @NUM1, firemen would burn any book seen within a home. Almost ever single book in the world is not factual, unless it is nonfiction. The firemen in the novel destroyed any bits of type because it was false and went against the government. That basically means every kind of book out there. The causation of such a tragedy was that every citizen befriended their television or video games. Without books there would be no real sort of entertainment. Also, the things we read everyday are what make us who we are so there, in fact, should not be less books but more. Libraries have no right to censor books. Freedom of speech has been around almost since the beginning of this nation. Why should it change now? Stopping obscene literature from being in the reach of the people is stopping writers from speaking out. They @MONTH1 have already written their ideas, but if nobody reads their work then there is no way that they'll be heard. Libraries are not there to stop things from reaching little kids' ears but to provide any knowledge a man needs. Parents have always stopped their precious babies from watching certain shows and movies. I once knew a woman who would never allow her son to watch the @PERSON1 series because of the use of sorcery. She believed that he would try to learn witchcraft. I found that quite ridiculous when I heard about it. When a kid watches murder mysteries, fantasy shows, or dramas with bits of nudity, it is different to them and they are curious. After watching these kind of scenes, a parent needs to sit down with their child and talk about what they jus saw. The child needs to know that killing is wrong and justice is good and magic and dragons don't exist. Nudity has always been considered a bad thing but penises and boobs are part of the human body. Kids will be more mature about it the more they see it, but that doesn't the child should watch porn. Censory has always been taken the wrong way. People believe if that the offensive material is shown then the watcher or reader will have bad thoughts about what they learned about. We should not get rid of the obscenity at all. We should have an understanding of the bad things in life. Burning books is a bad way to destroy the foundations of the human mind. Freedom of speech is a law and should be followed. Censorship is not always a good thing for children or anyone for that matter" 5 4 5 4 4 4 +3172 2 "Should books, magazines, movies, and music be put in higher reaches of children, or should they be left in plain sight? Is @CAPS5 fair to not be capable to see a movie, magazine, or even read a book because others in the area believe @CAPS5's offensive in their view? If an adult is reading a specific book or magazine and they feel @CAPS5's only for their eyes to see @CAPS5 then they should keep that item in a personal place that only he or she knows, not anyone else. Books and magazines should not be removed from shelves if they are found offensive. The reason for this is because, @CAPS5's not fair to others who haven't read them, and who would like to read them, but can't because they have been removed to others oppinions. If the books and magazines weren't appropriate for children then the companies wouldn't print them and releasr them to stands for them to be sold. If certain music also wasn't appropriate then music producers wouldn't let artists release that song out on a track. There are many chances for school projects that @MONTH1 require getting information, but the student who is assigned to get @CAPS5 is not able to, due to the fact that adults think the website @MONTH1 be inappropriate. For example, in history class a student is assigned an assignment to get done over the @DATE2 about @CAPS1 @CAPS2 @CAPS3 for a grade. @DATE3 comes and he/she doesn't have @CAPS5 and gets a @CAPS4 for the homework he/she was assigned. The student explains why he/she wasn't able to get any information. He/she starts explaing themself by saying 'the websites I went to were blocked. The books and magazines I tried checking out were either thrown out, or I wasn't able to check them out.' '@CAPS5's all because our neighbors who live in this neighborhood think the pictures and words are offensive, and since then the librarians stopped putting them out on shelves.' The teacher then says, 'well then I will go and sign out a book for you and you can try and get as much information out as you can, how does that sound to you?' '@CAPS6 good, at least @CAPS5's better then getting an @CAPS4 on the assignment,' said the student. @DATE1 @TIME1 comes, adn the student has as much information he/she was able to get out of the two books, and hands @CAPS5 to the teacher. At the end of class @CAPS5 gets graded and the grade on @CAPS5 turns out to be a @CAPS8. Student is happy for picking up the grade but is still unhappy he/she wasn't able to get the items they needed from the start. This is why movies, books, magazines, or even music should not be removed from shelves. Things like this will probably happen, and the kids will land up getting in trouble for not having the assignment turned in which is not even their fault. If only a few citizens have oppinions about certain items and they feel that those items should be removed, then they should be from their sight, and they shouldn't bother thinking of them. Even if @CAPS5's for safety of the children they @MONTH1 have in the house with them, then they shouldn't even have the books out of the little private personal spot where nobody knows of excpet for that one particular person." 4 4 4 4 4 4 +3173 2 "Bad @CAPS1 in @DATE1's @CAPS2 Libraries are a great place to learn about many thing, from earths history to where will we be in the future. I think somethings should not be on the shelves of a library because some books can be found very offensive to some people. Even movies and music can be offensive to some people. I think the music of @DATE1 is a big problem because the lyrics can be very offensive. Movies are not a huge issue but they can be at times. There are many reasons movies can be offensive. If they are offensive why put them in the libraries? Well the libraries just want to make money so they do not care about offensive products. For example a @CAPS3 @CAPS4 @CAPS5 movie that is inaccurrate and poorly made might be offensive to real life @CAPS3 @CAPS4 @CAPS5 veterans. The veterans then might want the movie taken of the shelves. I have seen some great @CAPS3 @CAPS4 @CAPS5 movies but I have also see some bad ones too. My grandpa was a veteran and he saw a bad @CAPS3 @CAPS4 @CAPS5 and got so upset he cursed at the @CAPS15 and almost threw the remote at it. Then ther is the problem with the music of @DATE1. I do not think stores including libraries should sell albums of @DATE1's rap artists because all the talk about is drugs, sex, and girls. If you ask me its stupid. But when you start selling them in a library there is something wrong with that librariy. Some country singers can be like that to because all the sing about is getting drunk then having sex. I just think the most of the music of @DATE1 is really pointless and a waste of time because when I listen to it I think this is stupid and makes no sinces. Books can be offensive sometimes it just depends on the writer. Books with a lot of cursing can be offensive to religions groups who are forbidden to curse or read curse words. Why put it on the shelves of libraries then? Well it all lead back to money. If people buy the books that mean the libraries get money and the more books people buy the richer the libraries becomes. I read a book that was about some one killing cats and I found that offensive because I love cats I would never hurt them. I got really mad when I read it so I threw it down the took it to the library and complained to them. So over all the libraries should be more carefull on what they put on the shelves for people to buy. If the libraries but the wrong things on the shelves they might end up in a law suit. But if they do not put offensive things on the shelves they will not end up being in a law suit" 3 3 3 3 3 3 +3174 2 "I do believe that some places have magizines, books, movies, and music that need to be removed from all shelfs. Just think, if you had childern would you want them getting ahold of a magizine with nude men or women in it. Yes people tell you they have control of there kids in stores, but i know you see kids all the time walking away or roming off to try to do what they want, and go to places they shouldnt be like magizines for instence. Would you want to find your little one looking at a magizine with nude wemon in it? Thats not the things kids should be finding in stores, its not nessacary. Same deal goes with movies, say you rent a movie from one of your many movie places and it has nudity or cursing in it, do want that around your kids? i know i wouldnt, cause kids are like monkeys, monkey see monkey do, and you dont want your little one walking aroud cussing at you. I have little cousins and ive seen it happen many times where they cuss back at there parents, and when the parents ask them where they heard that its usually the same answer, tv or movies. So do you really think it's nessacary to have all that bad stuff around for anyone, of many ages to see? It's not. Everything like that just needs to be taken off all shelf and destoryed, cause I shouldnt have to see it and niether should anyone else, its gross, nasty, and inrepropriet to childern. I say get read of it all and do everyone a favor" 3 3 3 3 3 3 +3175 2 "Libraries contain many different selections of books, music, and magazines. However, are all of these materials appropriate for all @CAPS1 visitors? In this essay I will explain to you why I think offensive, distracting and inappropraite material should be removed off of the shelves, and put into their own section of public @CAPS2. If a small child were to walk into a public @CAPS1 and pick up a book about abortions, they would not know what the book is talking about, because most small children cannot read. What if a fifth grader was to pick that same book up? They would be able to read the whole thing with no problems. However, should a fifth grader be allowed to pick up a book about abortions at such a young age? I dont think so, fifth graders should be reading age appropriate books. This is just one reason why I think offensive, distracting and inappropriate material should be moved to its own section of the @CAPS1. When I think of a @CAPS1 I think of a quiet place that I can go to and read, or study. Although, some Libraries allow their visitors to listen to music. Rather it be on a computer, on a ipod, or even on a cell phone, there should be a sound limit right? Most people would think that Libraries set sound limits, and they probably do, but people do not follow directions and they are not attentive to what other people are doing. It is @CAPS6 distracting to go into a @CAPS1, to study, and the person next to you has their ipod blasted to a heavy metal rock song. Once again, this is another reason I think offensive, distracting, and inappropriate material should be moved to its own area of the @CAPS1. I also think that a @CAPS1 is a community place, that you can go to and be safe, and your parents would not have to go with you because they think that it is safe and appropriate too. Most Libraries have magazines, because its for your entertainment, and they want to keep you happy so you will keep coming back. Well not all magazines are rated @CAPS10, some have @CAPS6 inappropriate material in them. A child should be looking at magazines that are appropriate for children, a teenager should be looking at magazines that are for teenagers, and an adult should be looking at magazines for adults. However the adult magazines should not be showing people with barely any clothes on, or any sexual scenes, and neither should teenage magazines. With innapropriate magazines, I do not think they should have their own section of the @CAPS1, I think they should be removed all together. They have pictures in them and anyone can look at a picture. I really hope you can understand my point of view. It is nothing against public Libraries, it is just the material inside of them. If I owned a public @CAPS1, I would have rooms devoted to books that are for different age groups. For example, I would have a room for @NUM1+, and a room for @NUM2+. Those rooms would be for the books that are easily questionable for younger children. I would also have my own room devoted for music only. That way anyone could go in the room and listen to whatever kind of music they want, no questions asked. The rest of the @CAPS1 would be for people to study, and read. I think every @CAPS1 should be like this, it would help make the world a better place" 4 4 4 4 4 4 +3176 2 "Hello, my name is @CAPS1 and I think that books, newspapers, and magazines being censored should be done but shouldn't. When I say that I mean that some books dealing with adventure or romance might have parts that need to be censored, but thats how the author made the book. It was meant to catch your attention right off the first sentence of the story. I believe that sometimes magazines need to be censored because they are promoting bad habits for people all across the @LOCATION1 and other people around the world. Magazines in my opinion should be censored. Now some make it to where there less inaproperate which is somewhat a good thing, but others pretty much just let it slide and figure it will raise the sales by how ever much percent they want it to be considering what they put in the magazine. I feel that books should stay on the shelf however. Some people feel that the 'censored' parts of the story are really what catches there attention. I myself have never had an expirence in this field because im not one to be a strong reader, but knowing how other people are, I would suggest that we censor some things, but not all. People write books all the time dealing with something that has happened in their lifetime or something from their imagination. So we can't really help what people think about and what some people write down to be published in a book. For some readers, it is a very interesting story or passage being read from the back cover of the book, while others just want the book gone from there neighborhood library or out of their house. It all really depends on the reader. If I could, there would be things I would censor, but not in books. It was their idea to put it in the story but some things need to be left unsaid. Some readers appriciate it, while others do not. It is really their choice to read the book and if its not appealing to them they can simply put it back on the shelf and find another close to it. I just feel that some magazines should be censored. Constantly, you see swimsuit models and 'sexual appeal' in magazines everyday when you enter the grocery store or library. I just do not think it is right for little kids to see that when there looking for a @CAPS2 @CAPS3 book or a book about their favorite animal. Another reason to censor magazines would be because of some religious views on what people see when they look at the magazine. People everyday become @CAPS4 and being right with @CAPS5, so people will take offense to some of the disturbing images in magazines. I myself as a @CAPS6 take offense to some of these magazines, promoting being perfect and having the life sucked out of you as you read each passage. As I have said, I am to the understanding of the books having what they have in them, because of the authors imagination, but some magazines just need to be thrown off the shelf" 4 4 4 4 4 4 +3177 2 "The way i see it movies or books shouldnt be taken off the shelf .becouse it should be up to ower own right to take a movie or to tonot take the movie .Also music such as country or sad music ant like movies or books how can u take music of the radio u canot do it .Becouse it dnt matter what u do with the radio shut it off turn it down or change the chanel with the way the world is now days there will all ways be things on the radio that u wont wanna hear and there will be things that u do wanna hear ,thats my opinion about movies and music Also if there was any way to keep movies away i would probaly have it done there are goood movies and there are bad but one movie that is afensive and shy is (shylo) about the old man hittin the dog and stuff thats verry afensive to some one that was raised around beetings." 1 2 1 1 1 1 +3178 2 "We all enjoy having the freedom to read, listen, and watch what we like. How would you feel if that freedom was taken away from you? Some people believe that censored books, music, movies, and magazines should be removed from libraries. I believe you should have the right to read, listen, and watch whatever you choose, but children should talk to their parents about it first if it is a censored material. We all know that not everything is okay for certain age groups to read, see, or listen to. That does not mean that the item should be removed completely though. Instead, the child should talk to a parent about the censored item. The parent can decide if the child is mature enough for the item. Also, if those materials are removed from libraries completely, someone that is mature enough to be reading, listening, or seeing it will not have a chance to. I remember when I was in middle school, I really wanted to read @PERSON1 novels that I saw at the library. My mother believed that I should not read those novels at that age. My mother and I worked out a compromise that I could read @PERSON1 novels that she approved of. She said when I was older, I could read any of @PERSON1's novels that I wanted. I found this compromise to be very fair. I knew that when I was old enough to read those novels, they would still be there on the shelf waiting for me. We should have the right to read, listen, and watch what we enjoy, but younger children or other age groups should be monitored. That does not mean we need to completely remove those materials from libraries though. When those children are old enough to read, watch, or listen to those materials, they should be able to go to the library, knowing it will be there on the shelf waiting for them." 4 3 4 4 3 4 +3179 2 "Do you believe that certian materials, such as books, music, movies, magazines, etc., should be removed from the shelves if they are found offensive? No, no i do not. it is one thing to censor a book or movie, but to completley remove it is another. I feel like authors, artists, musicians, and writers should have the freedom to write and say what they want. Regardless of who is reading it. I feel like censorship is wrong. Authors should be able to feel free to express there thoughts and feelings about a subject or topic in any way they like. some times storys cannot be explained or told the way it needs to be without certain words. Wether those words be good or bad i feel like with out them the book that is being read is not all of what it could of been. in my oppionion censorship takes away from certain values or qualitys the book could of had with the original context still in it. and to me that is not fair. its not fair to the author. and is most certainly not fair to the reader who is reading the book. I know from my personal expierences with reading books that 'yes' i have read books that have had bad language in them. but just because a book has one or two bad words in it does not mean that it should be completley taken off the shelf. For example the book '@CAPS1' @CAPS2: @PERSON1 was an amazing book. I probably enjoyed that book more than i have any other book that i have ever read in my entire life. But that book would not be nearly as good as it was with it being scensored or taken off the shelf for that matter. All i am trying to get at is that good books with bad language should not be censored just because of some of the words it has in it. because that is getting away from what the over all message is about. Your almost taking the words out of context when you do this. Do i believe that certain materials, such as books, music, movies, magazines, etc., should be removed from the shelf if they are found offensive? No i do not. Neither should you" 4 4 4 4 3 4 +3180 2 "Sexual conduct, language, and criminal behavior are three big things in my school, and community. Certain books, movies, music, and magazines are all about those three things. If they are in our libraries, how can teachers and administration keep us from it during school? I think the censorship of some movies, magazines, and especially music should be highly discussed, and more strict. We do not really have a lot of movies in our school library, but I do know that there are some in the town library. Parents and adults do not want us growing up so fast, and yet they allow sexual, crude language movies to be on the shelves of libraries. If it is such a big deal, I think they need to be removed. I'm a big believer on the fact that if it happens, it is going to happen no matter @CAPS1 precautions are taken. But with that said, we can still take the needed precautions to keep it from kids that are too yound to see them, like under the age of @NUM1. It is not just movies that we have to worry about though. @ORGANIZATION1 is a magazine that is devoted to giving their readers tips on sex, problems with their sex lives, and the occassional '@CAPS1 to wear this @DATE1!' articles. I will say that I have read this magazine, but it doesn't appeal to my interests. Some kids today though, are very attentive to those subjects. Again, that goes back to the problem of kids growing up too fast. I have noticed in my school alone, that it is a rapidly growing problem. If magazines like this weren't on the shelves for us to see whenever we enter a library, maybe we would not be as keen to the idea. If we were not introduced to it so early, we would not be going behind our parents' backs trying to do it. @ORGANIZATION1, and other magazines like it, needs to be taken off the shelves as soon as possible. Music is a world-wide phenomenon. Say a child around the age of @NUM2 is listening to the new @CAPS2' @PERSON1 song. He is being introduces to crude language, sexual behavior, and criminal acts in the @NUM3 minute time period it takes to listen to the full song. Seriously, it only takes that long for a child to be introduced, and it is only one song out of the thousands that are out there. This music is able to be accessed on many computers, especially in public, town libraries. We are not allowed to act like that in school, and if we are going to be spending @NUM4 of our childhood/teenage years here, why let us listen to it? If you walk into a library, all you have to do is sign your name, the date, and the time you got there to access a computer. After that, they can not tell you to get off of it, unless you are violating the law or looking up something not age appropriate. Music does not fall into that category. It, too needs to be taken away if the language, sexual conduct, and criminal behavior messages are adult rated. I, personally, love magazines, movies, and music. They are my three m's and I live by them. But not the ones that are going to get me in trouble, put wrong messages in my head, or cause me (subconciously) do participate in a criminal act. I always allow my mother or father to read books, listen to music, and watch movies with me. If they are not pleased with @CAPS1 it is, I will not do it behind their back. The censorship in libraries needs to be more strict. If it were more strict, it would keep our younger children from growing up to fast and keep teens from participating in criminal acts. The censorship in libraries is an ongoing problem and it needs to be fixed." 3 4 3 4 3 4 +3181 2 "The diversity of the world makes it rather difficult to please every person all of the time. What I find appropreate, another @MONTH1 find obscene and volgur. What I enjoy to read, or listen to, or watch, or any other manner of media consumption I indulge in, @MONTH1 insult or bother someone else; as a matter of fact it probably does. That still does not make it right to remove what I, or others like because it offends another person. A child walks through a grocery store, doesn't get what they want and proceeds to drop the f-bomb. More than half the time, they heard that language from their parents. If not their parents, then the media right? Maybe so, but that media shouldn't be hidden for the 'just-in-case' a child hears it. If a parent or guardian does not want their child to hear such things, they shouldn't allow them to listen to it. They control what does and does not enter their house. To remove such things from the library, would be like trying to keep a child from ever seeing a naked body, or hearing a curse word. Every time they bathe they'd need blinders from themselves and they'd never be able to leave their house, because people do not always watch what they say in public. No, I do not feel like every type of movie, or book, etc., belongs in the library. There is a cut-off as to how inapropreate or volgure something should be and still be allowed in a public library. Novels that are so descriptive that the reader can almost see every aspect of the procreation taking place between the pages, should have its own place, seperate from the public library, right along with the movies that really do show every aspect. Although I like the thought, to actually remove said books would be unfair. To deny access to those who find those books fine for themselves wouyld be wrong. A wise author, Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' The truth of this statement would not be hard to prove. A religious family that believes @PERSON2, a book I find to be innocent fantasy, is a book series promoting witchcraft and satanism, so they remove them from the library. I remove the previously stated graphic romance novels. A mother whom wants her child to be sheltered from what she considers the filth of the planet, removes books of drug addicts, and abuse, and books of war because they're full of death. And as this continues, finally, we are left with the empty shelfs of a forgotten building that no longer has a purpose. The graphic novels I find inapropreate could be placed in an adult section, or higher up than most children can reach. The protective parents can deny their own children the media they deem inappropreate, instead of the world. Although not everything is appropreate for everyone, it isn't right to censor something from the world. There are ways to cencor things to parts and not others. Nothing should be romoved from the library because of its content. At most it should be placed in a less accessable manner." 4 4 4 4 4 4 +3182 2 "There are many diffrent people in this world, who have many diffrent oppions about books, music, movies, magazines, etc., @CAPS1 because one person dose not perticualy like horor movies, that dose not mean that movies stores should remove horor films from there shelves. as creepy as it @MONTH1 sound. there are many people in the world who are slasher film freeks. the live and breath scarry movies. I myself like @CAPS1 about eveything out there. i will read any book of listen to any type of music, it actualy widens my taste in certain materials. i feel like everyone should try new things. Say growing up your favorite books were @CAPS2 The @CAPS3. and you would like to shaire your childhood stories with your children. BUT @CAPS4, books stores took @CAPS2 The @CAPS3 off of their shelves because a tiger and a pig could never be friends. This is nonsince. many people like many diffrent things.there is no reason to only sell what you like. otherwise your busines will fail." 2 2 2 2 2 2 +3183 2 "What is consitered offensive? If we took books, music, movies and magazines that people found offensive of shelfs there would be nothing left. Everyone is diffrent which mean they all get offended in diffrent ways. By taking all this off shelfs we would be providing a smaller education for students around the world. Things we learn about in school, slavery, wars and some pollitics. Now all these things could offend many people but if we were to take them of off the shelfs at school and libraries children will have no idea about history or what is going on in the current world. What about drugs and alchol, many parents do not talk to their childern about the uses of controlled substances, so without these sources they @MONTH1 never know the harm that they can do to someones body. Everyone takes something offensive but not everyone takes the same thing offensive. So who is to say what offends people and what does not? If thats the case shouldn't we take all books, movies, music and magazines away from childrens schools and libraries? Adults get offended to so would we take all of their resources away also including the newspaper. By taking away what one @MONTH1 call offensive @MONTH1 land us in the dark ages with no books, no local news, no movies, no nothing because not one person can say what the whole world considers offensive. Everyone has the right to read and write what they want. No one can say what offends everyone. Someone @MONTH1 get offended by talking about ones race, another @MONTH1 get offended by talking about @CAPS1 and someone @MONTH1 even get offended if you talk about their cute little kitty cat. Everyone looks at everythings diffrently. So why try and control us all as one. All people think diffrent and they know what they want to read, hear and watch all by them selfs, they don't need someone to tell them." 3 3 3 4 3 4 +3184 2 "Censorship should only be used for areas in which young children are exposed to, suchs as schools and tv shows intended for young children. Things that aren't intendend for young children should not be censored. If you were to censore everything because some people find it offensive then we would never be able to find new ideas to improve our community. Censoring books, moives, magazines, and music that aren't intended for young people is a wast of time. If you were to take a book off a shelf that explaind the @CAPS1 of @CAPS2 because a person found it offensive then we would never make advansis in technology. Cenosoring items like books is just plane idiotic and ignorant. Studing matireal is our only way to advance in seiance, and if we can't get the right books to studie because they were taken off the shelf due to it being offensive then we will never make brakethoughs in technology. Parents that feel that books, movies, and magazines should be censored really arent good parents. If they really were consurend with thouse topics then they shouldn't buy them the moives or the books that they find offensive. It seems that parents want to proclaim they want to censore that items because they find it offensive. But not all parents feel the same way, some parents are open with their children about these topics and feel that their chilren are mature enough to handle things like these. As a child I wasn't shielded from these kinds of situations. I grew up with out censoreship. I wacthed movies and read book that were never censored, and I was mature enough to know what it all ment. I see why parents want to censore that kids from topics like thouse, but they never take the time to talk to their children about these topic and see if that are mature enough to hanld it. Censoreship is great for childrens tv shows. But when you start to censore someones ideas because you find them offensive and wrong then you are being ignorant. People here have freedom of speech and desirve the right to not have there work censored because a small group finds it offensive. Censoreship is a great tool, if used right" 3 3 3 3 3 3 +3185 2 "Book Censorship? Should books be censored? This a national problem about the contents of books. It is a big deal. What one parent feels is very offensive another @MONTH1 feel it has a necessary life lesson that their children need to learn. If you ask me thaqt question I would say, '@CAPS1 I believe the books should ,but to a national scale and not a community one.'@CAPS2 this I mean a book with things like references to nudity or other things of volgur nature ,not just because it has a bad word in it that a parent feels to be inappropiate for their child. I believe there should be a national rating system for books like there is in the movie industry. Also i believe that it is the parents' job to regulate what their children read. If they believe the book is vulgar or inappropiate but the system don't then you need to prevent their children from reading it without taking it off the shelf. It is the parents' job to regulate the reading of their children not the contents of the bookshelf. Like in Katherine Paterson's @CAPS3 ' All of us can think of a book we hope none of our children or any children have taken off the shelf. But if I had the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else.And then we have no books left on the shelf for any of us.' @CAPS2 this I believe she means that if we all took a book of the shelves for our children there would be no books because what is not offensive to you @MONTH1 be very offensive to another parent. So the parents should leave it on the shelf and prevent their own kids from reading it and let the other parents worry about their own kids. @CAPS1 I believe in a goverment censorship program but to an extent. It is the parents' job to regulate the readings of their children ,but they do not need to regulate the contents of the bookshelf" 4 4 4 3 3 3 +3186 2 "No, I would not think it would be the right thing to do. To just take a book off the shelf just because one person or a small amount of people think that one book is offensive to them. Its not only one person to decide that. People or some people would like to vote or have a meeting about taking a book or books off the shelf cause it's offensive to them.Just because one person finds that book or books offensive doesn't mean that they should have the right to just throw the book away. Thier could be many people out thier that really like that book or those books, and they wouldn't be able to enjoy them anymore. All because one person or a few other people don't like the book.Yes their are books out thier that a lot of people don't like but that still don't give one person to throw the book out, all because they don't like that book or that seires of a book. No one should have the right to just take a book that they don't like out of a libary and throw it out because they don't like it. Their could be a smart little boy or girl that likes that book and because that one person threw it away because they don't like it, now that little boy or girl won't get to read their favorite book. Thats why I don't think books that some one thinks is offensive should be taken out of a libary. Because theirs always some one out their that likes that one book that you might want to throw away. If you think the book is that offensive to you just stay away from that area of the libary and don't think about that book" 2 3 2 2 3 2 +3187 2 "The media is a way for some people to get out and reach others. Whether it is a magazine, movie etc everyone in the world is going to see it some way or another. If that piece of work isn't seen as acceptable from many peoples point of views it shouldn't be available to the public. I personally beleive that if something is seen as volgure and offence it shouldnt be displayed. Millions of people will be viewing this and I wouldn't want my kid looking at it. Why would anyone else want the opposite? Kids pay attention to detail really well and something so negative could change the mindset of the child. We all want to bring our kids up right and letting them have availabilty to negative material is uncalled for. Its not only kids either that are affected, adults also are affected by the media. Adults can get fooled too, beleive me. I remember one time that there were books and magazines at my school that were being taken off shelves for this exact same reason. I beleive that what the librarians did was right. Some kids in the school shouldn't be viewing or reading about unacceptable things. Some students @MONTH1 not have matured enough and can take something in a different view than another student. I beleive that if something is taken off a shelf because it doesn't seem appropriate enough I stand for whoever it is that did it. Nothing with a negative affect on a person should be viewed by an innocent child. There should be a positive affect on the child at all times so he or she is brought up to the best of its abilities" 3 4 3 3 4 3 +3188 2 "I think that they should remove books, and take away more stuff from the kids now a days, because they are getting worse in worse like everyday, i think they should move the @NUM1 to @NUM2, so atleast they are old enough to read, hear, or watch whatever they want, but they should go through and do a self-check on everything that they put out in the stores.They should also have different parts in a library so that the little ones dont get to the adult section, such as adult books, that have stuff in them about sex, drugs, or anything else that falls under that catagory. I have @NUM3 little brothers, and they are @NUM4, @NUM5, @NUM6. They know more stuff then my parents, and its because now a days kids pick up on stuff a lot more easier. So i say we as in the @LOCATION1 citizens need to watch out on how we put stuff out there that the kids can get a hold of. When i was growing-up i didnt know as much as my little brothers do today, and that is because everyday they are coming out with something else everyday that can effect our kids, brothers, or whoever. I also do think the schools should have a class about the stuff that kids are experiencing in todays life, in like elementary school, so that when they get older they will already know about the drugs, or the sex life. Kids also remember stuff a lot more when they are growing up, so if we put it in there heads at a really really young age, they will remember it. Im not saying that kids will stop doing what they are doing, but atleast the percent population will go down, and parents will be a lot more happier. I also think that parents should stop lying to there kids about sex, making up stories so that there kid wont know, they need to stop doing that because they are going to find out about it sooner or later, so why not now? they whould be more aware of the real life in how it is out there, so all the parents out there should not lie to there kids about the sex life. So thats what my person input is on the situation. I wish this would change sooner or later before the world becomes a big mess." 3 3 3 3 3 3 +3189 2 "Books have been apart of every single person's life as soon as they learn to read. First our parents read us books to get us to go to sleep. Then our teachers read us books to teach us things or to keep us preoccupied. Then, when we get a little older, we are assigned to read books for classes. There is even reading in the workplace, whether it be reciepts or orders or recipes. Readings is something that we cannot get away from. This leads me to say that authors write books for an audience and write the book as best they can to atrract the attention of the audience. I do not believe that books, regardless if one person deems them offensive, should be removed from the shelf that they have been placed on. I think that there are things we can do if we do not want to read that particular book. There are also things parents can do to ensure that the books their children are reading are appropriate and not offensive. Also there are advantages to reading books that @MONTH1 show something different that that person @MONTH1 have experienced before. First, I feel that books should not be removed from libraries because some people think that they are offensive. Everyone has an opinion and just because one person does not like the book, should not mean that the experience of reading that book should be taken away from someone else. If you find a book to be offensive, you can simply stop reading the book. Just because you do not enjoy it does not mean someone else will not also. That is just apart of humans having their own opinions. On a different note, I think that childrens' books are a little bit different. Parents have the right and responsibility to protect their children. I believe that parents should take a proactive role in monitoring their children. For young children, I think that parents should just read the book first and judge whether or not they think they're child should read it. Then for young adults, I think that parents could try to look up somethings about the book. The internet is a great source for reviews and ratings of books. Therefore, I believe that censorship for childrens' books is a responsibilty of the parent. Lastly, I think books that are different to everyone and can be interpreted differently. When I read a book, think about the scheme, imagine the characters, and react to the events, I come up with my own opinion of the book. My friend, who is also reading the same book, could form a completely different opinon of the book. But we both gained something by reading the book. In conclusion, I think that books should be censored by parents and that is it. I think that reading books is a very positive thing. So no one should have the right to tell people what they should and should not read. Also, books are things that can be discussed and everyone can make their own opinions about. It is my opinion that every book should have its own place on a shelf." 4 4 4 4 4 4 +3190 2 "I believe that they should not be pulled off of the shelf if they are found to be offensive. Many people have there own taste in what they like to read, write and do. Therefore, there should be a wide variety of these things on the shelfs so people can do what they enjoy best. Books and magazines @MONTH1 be offensive, but they @MONTH1 also entice the reader. i personally love books about drugs, sex, and many other inappropriate things. In fact my favorite book is banned from my school library. If they took all inappropriate books out of they library. What would i read? not everything can be just peachy kin all the time. Its not in real life, so why should we have to read a little fantasy world that we know isnt true? I know i would'nt want to read that. Just like books and magazines, every one has their own taste in music. some like country, classical, metal, and maybe even rock. If you took the songs that were offensive off the shelf that would make people angry. That's like not playing a song on the radio thats offensive, and many songs played on the radio are degradeing to women. if it can be played on the radio. Why cant it be in a library? there going to be able to listen to that song on the radio anyway. Most movies these days are very gory or offensive in many aspects. Many people are interested in these movies. If you can watch that movie in a movie theatre, why cant you check it out of a library? Some people go to check out movies that are shown in school so they can watch it if they were absent. What would they do if that movie got taken off the shelf? Fail? I know i would become angry if that would happen to me. Keep offensive books, music, movies, and magazines on the library shelfs. People will eventually see them, hear them, and watch them even if its not in the library. Even if you take out offensive materials there still going to get them sooner or later no matter what you do" 4 4 4 3 3 3 +3191 2 "When have you ever went into a library and found a book that is so offensive that you complain or try to get that certain book off the shelf? Have you ever read a book half way through and questioned why you are reading it? Why would you read a book that you know you're not going to like? If someone has the right and the authority to take books off the shelf that bothers them, then I have the exact same right as them. I thought everyone was treated by equal rights. When i ever do read I always read the back of the book or whats called the summary of the story so I can see if I'm going to like it or not. If I know a book is going to offend me or a magazine or even a movie, most likely I'm not going to even bother giving my attention to them. Obviously the author doesnt like censorship or she wouldnt be arguing about it. It's obviously something that bothers her and everyone is intitiled to their own beliefs and disbeliefs. I respect people that stand up for themselves and find the hardest ways out of hard prediciments. I can say I always go to libraries and read books because I'm not a reader. But i can tell you if I ever did go to a library and i found a book on the shelf that offends me its probably going to offend someone else. So why would they even try to bother getting away with being offensive to people. Everyone is intitled to their own opinion. But i think if it's going to offend someone in praticular it's probably going to bother someone else. I'm not saying everyone is alike but most people believe in things that other people believe in. People can hav the same agreements and disagreements. I do have to agree with @PERSON1 because she is right. You would be amazed on the amount and different things people can get offended by. I have tons of experiences of movies, books, music, and magazines that have offended me. But I didnt let it pull me down or anything. For example I stopped watching the movie, and I stopped reading the book that bothered me. You can't wear your emotions on your shoulders but you can stand up for your rights and tell people what you believe. @CAPS1't ever tell anyone that you can't believe in your opinions. If certain things offend you, @CAPS1't let them bother you just stop doing what your doing and move on to something else. Like I said I have had alot of experiences of offensive things I have read and watched. Like awhile back I watched a movie that had a black man in it and he was locked in prison and killed in prison for being accused of something he didn't do. It was just because the time era and it was also because he was black. Thats the kind of stuff that really upsets me. Because we are all the same. We @MONTH1 look different and see things different. But our bodies function the same and we all breathe the same air. I have always gone by the saying, '@CAPS1't ever judge a book by it's cover until you read it.' So whatever people @MONTH1 think I believe in one thing and it's to let people believe in things they want to believe in. @CAPS1't ever tell someone how to think, act, or feel. I agree with Katherine Paterson." 4 4 4 4 3 4 +3192 2 "When I go to a library I @MONTH1 find some stuff that is offensive to me. But if somthing is offensive to me the person beside me @MONTH1 not think the same thing is offensive to him or her. When people try to put boundaries on what is offensive and what is not they can not . There is a wide variety of people that all have diffrent opinions based on their history. What I think is offensive @MONTH1 be seen as the best thing that has ever been printed, published, or recorded and other people's eyes. The major problem is that offensive doesn't have a set definition. I don't think that you will ever find a definition that everyone can agree on. There needs to be a limitations to keep certain things away from certain age groups. For example you would not want a kindergarder to be able to check out a @CAPS1 movie. Some censoring has to be done to protect people.But it all comes down to common sense. We won't ever all agree on what is offensive but if we use are common sense the problem @MONTH1 be solved" 3 3 3 3 3 3 +3193 2 "Certain people beleive that offensive books, magazines, or music should be taken off of the shelves of libraries. I think that offensive books and music and media should not be taken off of the shelves. It is a persons own right to see certain things that are offensive if they choose to do so. It is also not another persons right to decide what other people can and cannot observe. If certain offensive things were taken off of the shelves of libraries such as music, books etc. the knowledge of people would be limited to only what the library or the government would want them to know and that is not right. It is someones personal decision wether or not they look at listen to or read offensive things. People shouldn't be sheltered by society and only know what is wanted for them to know. If libraries eliminated offensive media then people would be able to form their own oppinions and ideas. In some cases reading and knowing certain things that are offensive to some people should be known to the world. One case is how people should know about the holocaust in the @DATE1. Im shure reading about the holocaust is very affensive to copius amounts of people, but even though this history is disturbing and offensive people should know about it so that history does not repeat itself. The government and society does not have the right to decide what people take in. For example what if all of a certain type of music was eliminated from libraries, the internet, and tv; it would slowly dissolve out of existence. Certain things like reading about the times before racial equality, and such things as slavery are very offensive for people to read about. But these things must be read and heard and passed down through history so it isn't forgotten. The knowledge of offensive things should not be taken away from people by the libraries. Yes offensive things shouldnt be celebrated or looked upon as good but people should know. People in the world cant just know the good things or only what their society wants them to know, they also have to know about the bad things and offensive things that happen and have happened as well." 3 3 3 3 3 3 +3194 2 "Katherine Paterson said ' If I have the right to remove that book from the shelf, then you also have exactly the same right and so does everyone else. ' In this quote I think she was trying to get across that if someone picks up a book or a magazine and reads it and then puts it back and maybe its not the best book ever to them and they @MONTH1 find it offensive, but someone else comes along and wants to read it and they @MONTH1 not find it offensive, then you have two different view points on a book that @MONTH1 be offensive to one person, but to another it @MONTH1 not be. Different view points really effect how to censor books, because of how people are so different, there difference on how they feel about a book could effect what should happen to that book. I dont believe that books, movies, music, magazines, and other materials such as those should be removed from the shelves if they are found offensive to someone. If they are found offensive to a bunch of different people then yes they should be removed, but if its only bothering one or two people but there are other people that agree that its not offensive, then dont get rid of it just because of a couple people. Take a vote maybe to see how many people agree and dissagree on keeping or getting rid of it then decide whether or not you should keep or get rid of it off of that vote. I think it would be more fair and satisfactory to take a vote on whether or not it is fair to keep or remove it. If someone has a memory about something they read or remember an experience from it and then someone else reads it and feels offened by something its not fair to the other person to get rid of it. Its especially not fair to the person with the memories and experiences. So dont remove books just because a couple people might find it offensive, take a vote to decide. Let more than just a few people deciede on behalf of the book. More than just a few people can make an impact on just one book, and you never know what differnt views you @MONTH1 find from different people on just one book. People need to be able to discuss their veiws on the book and then bedate on whether or not to keep it, so dont choose to get rid of them without several view points on the book." 3 3 3 4 4 4 +3195 2 "Library Censorship Everyone has their favorite book. But if it offended someone, should he be allowed to remove it? Offensive materials should not be removed from shelves. If we removed books that offended even one person, then no books would remain. As americans, we have the right to freedom of speech. Authors use their freedom in their writing, just like musicians use their freedom to make music. But if we denied them their right to put out their creations, we would be denying them their basic rights as an american citizen. Personally, I hate rap. I don't even consider it to be music, due to the fact that no one actually sings. But I do understand that a large percent of our population does enjoy listening to it. Should I be allowed to remove it from shelves, leaving teenagers without their music, denying artists' freedom of speech, and ultimately, leaving them unemployed? One of my favorite series is the @PERSON2 series, by @PERSON1. It is about a young teenager who learns to deal with all the struggles of growning up by depending on @CAPS1, and it helped me do the same. But because it is a @CAPS2 series, should it be removed from shelves? Should other young girls be denied the chance to read this life-changing series, simply because someone might find it offensive? Although some wish they could elimate certain materials that they find offensive, it isn't fair to the authors, musicians, or fans of those pieces of work. However, those who find it offensive should be allowed to avoid it. Libraries need to make sure they separate each topic distinctly, so people can easily tell where they should or shouldn't avoid. Libraries are suppost to be a resource for everyone, which means they need to have materials for everyone, even though they might seem offensive." 4 4 4 4 4 4 +3196 2 "Cencorship in books is one of the main concerns in @LOCATION1. If it was up to me to remove a book from a shelf, I would not do it, to my personal opinion, I think that we as @CAPS1's should just read over the probloms and quit complaining about it. Yes, we do have some books that people seem to not like, such as 'The @CAPS2 of @ORGANIZATION1', but the only reason that it has been pulled off the shelfs of librarys and schools is because it uses the word 'nigger', and I find it to be kind of idiodic, that people would over react to that word when themselves were not even around to know the real meaning of. Cencorship in music. This is another big concern for people in @LOCATION1. The lyrics used in most songs I find to be 'disturbing' or are trying to get people and young kids to comite acts of crime and other illigal acts. Music such as rap and the lyrics used in rap are whats making kids do stupid stuff, the music talks about sex, drug usage, and murder. I don't think that I would go as far as to pull it off the shelf, but I would make the sellers put them in a 'can only perchas if @NUM1' section. Most of the crime we have today people blame on music. To my observation about these subjects are that I have seen people read a book that uses profound language in it and be ok with it, they don't over react to it so therfor it shouldn't be removed from shelfs. To my observation about the rap music, sure, in a way it should be pulled off the shelfs and never be sold again, but, I have seen people who listen to it and never smoke, never kill, and never harms another person. To my own experience I listen to some of these gore obbsessed bands and read profound languaged books and got over it, these thing should be overlooked and forgotten. This is just a common scence thing but, there are a lot of things that should be pulled off shelfs, I would, and it has to do with movies and magazines. Some movies have always been a problom to society, I have witnessed this that some movies show just a little bit to much nudeity in it, which I seem to think is not a good thing that our younger children should see, whether it's at the theater or on t.v. this things should be pulled. My observation about magazines it that I have personal her one of my best friends say that 'I want to look as skinny and this girl does on this magazine because I'm to fat'. There are a lot of magaziens that should not be showed or read because it does say that skinny is better and so many girls and women are starving themselves to look like the person on the cover of a magazien, and it's rediculous to see that happen, If it was my choise, I would ban these matirals from useage or sight, mainly because this is all just one big peer presure conspericy. I would not ban all of the things that I have put in this paper, just the things that I that personal find disturbing or not fot the publics eye's." 4 3 4 3 3 3 +3197 2 "I don't think censorship is right for our public libraries. In my opinion, it depends on what they are saying or what they are showing. Also, it depends on what what the ages the kids are or adults. People are different in many ways. It also depends on the way they take it in their signifaction. If they move books, music, movies, and magazines off the shelves because their offensive that wouldn't be a very good idea because how would other people get ahold of it and want to read it in life, if they get taken off the shelves? Some people enjoy actually reading that stuff and nothing else. I just don't think that people would be to happy. Also, they're different cultures in these countries that read stuff like that. People would like to learn about different things. If people took the books and other things like that off the shelves, there would be hardly anything to read. Childrens and up to adult books has all different kinds of things. The books and things like that you can read can have more things in it besides offensive things, sometimes they can have more information in those books than others. In my conclusion, censorship is not good in our public libraries because it taking basic things out of the libraries and taking half of the reading from people." 3 4 3 3 3 3 +3198 2 "If the library is in a highschool then we are all old enough that we have already seen or heard anything and everything offensive. In case we haven't though you can't shield your kids from offensive material. This @CAPS1 hurts them in the long run. Such as when your boss gets to work and you or someone around you mess up a important assignment or task he @MONTH1 use terms such as the '@CAPS2' word or other vulgar terms to describe how mad he is. If you were to just hear those for the first time being yelled at you there is a chance you would have a break down or be ineffective for work. Now im not saying we should all 'cuss' every day and talk in vulgar tongue. Im just saying that the real world doesnt have a 'clean' version. there is no mom or dad there to stand by and say, 'oh no thats not acceptable speech son'. If you took a survey of daily langauge of teens and young adults almost @PERCENT1 would say they use some form of vulgar langauge or inapporiate terms. We need to have our kids and teens to know its not ok to say those things and they need to know what is acceptable in society and not. but taking from them in the library and then thrusting them in a world with daily inapproite acts in not right" 2 2 2 3 3 3 +3199 2 "Do we have the right to take books? Author Katherine Paterson proves a point by saying 'if I have the right to remove that book from the shelf, then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 is saying that if everyone is able to just remove books from the shelf because they have something agaist it then we would hardly have any books at our libraries. Everyone has their own opinions. There are so many things that effect our opinions. Our beliefs, life styles, way of thinking, culture, and the list goes on. I'm sure I could think of certain books, movies, music, and magazines that I dont like and could just do without. Does that mean I want to totally rid the world of those certain materials? It sure wouldnt bother me but that would be extreamly selfish. Even if something is totally innopropriate and offensive it is still information. Maybe it shouldnt go in the little kids section of a library or store but i dont think it should be removed completely. Music especially. There are wide ranges of music from rap, rock, oldies, screamo, classical, country, alternative and the list goes on. I dispise country; I go for the alternative and classical music. I know a lot of people who love it though. All the old people i know hate all the rap. Most of it is pretty offensive but thats just how things are. So no, I dont think anyone should have the right to remove anything from anywhere just because they personally find it offensive. We cant hide from the world. I think people should be open to new things and understand that not everyone likes the same things. If we remove thing materials we dont care for, others will remove the ones you like and so on. So then were left with nothing. Just like freedom of speech we should have the freedom to read, listen to, and watch what we enjoy" 4 4 4 3 4 3 +3200 2 "I believe that censorship should be allowed when it comes to certain things but I don't believe censorship belongs in public libraries. Books are wrote to stimulate the imagination of a persons mind and if they cannot read books that are the slightest offensive, then they will never know what it is like to open some of the greatest books ever wrote until that person has grown up. And there are several studies that show that books stimulate the human mind and taking away these books would be a crushing blow to those statistics. For example, a student has been assigned a report on a piece of classical literature. So he/she goes to the public library to find a good book, but when that student gets the he/she finds out that all pieces of classical literature have been removed from the library due to being overly offensive. What would that person do? Should he/she just give up because every single piece of classical literature has been taken out of every library in the country, I say no! This is a problem because almost every great book ever wrote has at least a few parts where it is slightly offensive to that certain reader. From personal experience I can back this statement up with books I have read going through my school career. For example, when I was in the @NUM1 grade was assigned a book report over @PERSON1, so I went to our library in the school to look for this book and it was nowhere to be found. I asked the librarian where this book was and she said that it had been removed due to being offensive to the black population for having the word negro inprinted on its pages. So I asked her if I could go tot the public library to get the book and she said that it had been removed from its shelves as well. I did not know what to do, I was completely clueless and I had no book to write my report over. So eventually the teacher had to change the report topic because not on student was able to find @PERSON1. But if the state had not allowed these books to be taken off of the shelves then we would not have had this problem. Another example was when my friend @PERSON2 wanted to learn about his culture and where his ancestors came from. But when he got to the library he could not find any books over the arabic world. So he asked the librarian 'where are all the books covering @LOCATION3, @LOCATION2, and @LOCATION1?' And the librarian said that they were all removed because after @NUM2 @CAPS1 saw arabs as very offensive people and that no books were left unchecked. I'm sure that he found this comment to be very offensive but there was nothing that he could do about it because the white people found arabs to be offensive and unequal to the white race. These are only a few things that have already happened becaue of people finding certain books to be offensive, which is why I believe that the government should leave all the books on the shelves and let the people decide to pick up that book or pass it by. Sure people have a freedom of speech but it should not effect what books belong on the shelf. Which is why I believe that censorship should not be allowed to effect libraries of the public." 4 4 4 3 3 3 +3201 2 "Censorship in Libraries @CAPS1 are alot of things on the library shelves that you @MONTH1 be concerned about. You @MONTH1 be wondering why they don't take the bad stuff off the library shelves. On the library shelves it contains books, music, movies, and magazines. Some things are like what pictures it contains, launguage it contains, and what kind of advertising. Some things I have expierenced is with the launguage it contains. I have seen some books, magazines, music, and movies have are cusswords. Also some @MONTH1 have racism things in it that you don't like. Another thing is that @CAPS1 is some bad persuading such as bad things that you hear or see and you wonder what it would be like to do that stuff. Also another thing are advertisements. Some things a magazine can contain are about advertising tobacco, such as its good for you to try. Other ads are alcohol ads like a picture of someone with a beer or whiskey in @CAPS1 hand, and we think its cool to try it, but its not. The last thing that is really bad in advertisement is drug advertisement, such as a picture of a drug leaf, or inscents. It is bad to do drugs because it can ruin you whole career in high school and maybe in college. The last thing are pictures and scenes. In movies, @CAPS1 could be scenes that you don't approve of. In some magazines @CAPS1 can be pictures in which you don't approve in either. So things that I have seen are pictures and scenes in movies and magazines that have innapropiate scenes, and innapropiate pictures. Some things are like what pictures it contains, launguage it contains, and what kind of advertising @CAPS1 is. On the library shelves it contains books, music, movies, and magazines. You @MONTH1 be wondering why they don't take the bad stuff off the library shelves. @CAPS1 are alot of things on the library shelves that you @MONTH1 be concerned about." 4 4 4 4 3 4 +3202 2 "Books that are found offensive should not be taken off of library shelves. Books tell stories fiction or non-fiction. Many books that @MONTH1 be found offensive are historical. These books could include topics such as wars, eras, people, ect. Everyone has the same rights to read any book they want. They also have the right to not read the book at all. Books that are taken off the shelves of a library because of one person, or a group of people, being offended henders the ability of someone who wants to read the book, to read the book. We, as people, should not be able to take this right away from other people. They should be able to read anything they want. If someone wants to read a biography or history about @CAPS1, they should be able to. The topic of @CAPS1 and the @ORGANIZATION1 @MONTH1 be found to be offensive because of what they stand for. If we look at the topic as purely a historical reference not as a story to be read for enjoyment there will never be any offence in these books. These stories have a large role in history. If we do not learn from their mistakes, history @MONTH1 repeat itself. History is around to be studied, even if the topics might be offensive to some people. Political correctness can not always be followed when writing a story. Such as in To @CAPS3 a @CAPS4. This book has many issues when it comes to political correctness. These issues include; the killing of an innicent man and revealing the flaws in our judicial system, the use of the word 'nigger' to describe the black characters, and the racial unequality of the @LOCATION1 duringthe @DATE1's. These issues would deffinately be offensive to some readers, but this book is an award winner and uses history as a guide. The situations in this novel are ones that could be real. They are things we must learn about, so we do not repeat them. Another story that fits quite well into this topic is @CAPS5 @NUM1. This novel is about a world where all books are burnt. No books are allowed to be read by the people. This book reveals the removal of offensive books to its exteme. No matter who you are or what you believe, there will be some topics that you find offensive. If we remove every book that someone finds offensive we will have no books on the shelves of any library. A library is not a library wihout its books. If we allow books to begin to be removed from the shelves, we will not be able to stop it. One day we will end up like the world in @CAPS5 @NUM1. No history will be know but what is passed down. No more stories will be here to entertain us, but the ones memorized. No books will exzist and this world would be terrible without books. Books that are found to be offensive should not be taken off of library shelves. The taking away of these books takes away the freedom to read anything you want. It reduces the chances we have to learn and to flourish. Political correctness should not take the place of our own freedom, and as long as we keep our books on their shelves, it won't" 5 4 5 4 4 4 +3203 2 "I believe that libraries should have more cencorship. Some books, magazines, and movies should be removed or grouped by age. From my own experiences of reading or seeing people read these books, I believe they should be removed because they influence violence, sexual activity, and drug use. Young children should not be exposed to those things yet. First, I think books that contain violence should be removed. I believe that children are the easiest people to influence. I also believe that violence is the worst thing to be influenced by. Violence in books can influence killing. Fighting and killing is not good. No young child should be able to check out about full of shooting and fighting. The book will make the kids think thats the right thing to do if they are able to check it out. Being influenced by violence will make you commit crimes. Reading a book is not worth going to jail for. Next, I believe that all sexual activity material should be removed from libraries. Sexual activity should not be exposed to children until it is time for them to start learning about it. For example, a young girl reading about teen pregnacy not being a problem. The reader will think that is what she is suppsed to do which is wrong. Books and magazines containing sexually explicit words should not be able to be viewed by young children. Those thing @MONTH1 influence kids to do things they should not even be thinking about doing. You can atleast sort them all in an adult section. Finally, drug use should not be issued in books to kids. children should not read or watch anything that are talking about drugs in a positive way. Unless it is about saying no to drugs and not using them, children should not read them at all. Drugs make people do things that their right mind don't want them to do. Children should say no to drugs and to books that are influencing the opposite. In coclusion, that is why I believe that we need censorship in our libraries. we need censorship because of viloence and drug use. Also becuse of sexual activity and many more things" 4 4 4 3 4 3 +3204 2 "Dear newspaper and staff, @CAPS1 has came to my attention that @CAPS1 is being considered that most libraries in the community @MONTH1 have a removal and or censorship of some books in the libary. I find this not accepable; in my opinion this is a attempt to mislead or perhaps hide previous evidence of offenisve reading material from futher generations. For example, a personal favorite of mine is a book labled ' A @CAPS2 @CAPS3 @CAPS1', this book describes a childs heartships and the abuse he takes on a daily basics. Books of this sort are not only imformitive @CAPS1 also gives the reader an open mind on how things might have been. Some topics @MONTH1 include; slavery, abuse, war, and discrimation. These topics today are still among the things that happen in today's society. Censoring and removal of these book are pointless; for the simple reason that at least three of the four are a current issue. @CAPS1 is strickly important for our generations to be aware of the heartships, problems, and lessons in which these topics araised. Without imforming our generations of these issues @CAPS1 could result in a repeat of history, which we as a country are trying to prevent! My opinion on movies however are a little different. I believe some movies are okay; but they must not contain obvious and purpose acts of discrimnation and or offesive material. Most movies nowadays if they are offesive in a relating way to the movie then they are rated at least @CAPS5 @NUM1 or rated @CAPS5 @NUM2 this allows certain age groups able to watch material that @MONTH1 be offesive or perhaps discrimating. They @MONTH1 also need adult combinations to preview the movie. So in my closing i would like for you to consider my opinion as a wise outlook on offensive/ discrimating issues. I just fully believe open @ORGANIZATION1 content is allowed at certain ages, depending on the content. Plently observations must be made by parents/ guradians if needed. I appreatiate your time and understanding of my letter! Thanks! Sincerly, @PERSON1- @ORGANIZATION1" 3 3 3 3 3 3 +3205 2 "Everyone today gets offeneded daily. So to go to a library and see offensive material on the shelfs is no different than the rest of the day. However, there are those minds, which have not been poluted and influenced by these offensive materials, that should have a right to keep thier minds that way. One solution to the problem could be that we start rating books and magazines like we do for movies. The material rated for adults gets put in one area of the lirary while the lower rated material is put on display for the public. The higher rated can be put in an area that is not seen everyday by the public, and is kept secret thus protecting the uninfluenced minds and the people wanting said material can still have their way. Another solution might be to just get rid of the censored material. It, in my opinion and experience, corrupts both the mind and soul, and causes man to be things he is not by nature. Men, who have nothing better to do than to sit and read or look at things ment for inside of marrage, often accoplish nothing of great value in their life time. They are thus a hinderence to soceity. But if they can not accsess the material, they then need something to do to fill that time. In which case they can find a good classic to read or maybe pick up that dusty @CAPS1 off the shelf. This thus leaves the labraries with a choice. They can leave their library the way that they want, they can put the offensive material in a seclueded room, or they can remove definent offensive material and keep soceity on its feet accomplishing great feats for the next generation to odserve. Thus the amount of offending someone goes down and maybe the library attendence goes up." 3 3 3 3 3 3 +3206 2 "Have you ever found or seen books, music, movies, or magazines in a library that are offensive to you? If so, then would you have wanted to remove it off of the shelf so none of your children or anyone else that might have found it offensive, to see it? Well, I have actually gone to the library and seen some things that was offensive to me, and I have also heard my family members talking about it. So I am going to talk about what I have heard about my family seeing or finding books, music, movies, and magazines offensive. Also, I am going to explain how I felt and what i wanted to do when i seen those things in a library that was offensive to me. The last thing that I am going to talk about is how I feel on censorship in libraries. First, I have been hearing from my sisters, my mother, and my step-mother about how they find some books, music, movies, and magazines at a library that was offensive to them. Now I do not know exactly what the books, magazines, etc., was that they found offensive but I do know what they thought about them and what they wanted to do. So one day, my sisters, mother, and step-mother was talking about a couple of books that she found offensive. They never said what the books were but they kept talking about how they felt and what they would have liked to do with them. Now she told my family and I that she was badly offended by what they were called and what they were about. Also she was saying that she would have really liked to have taken the books, music, movies, etc., off of the shelves, so other people that might have found them offensive would not see them. But, they all did also agree on the fact that they really do not have the right to remove them from the shelves. Their reason why they do not have that right is because of there are a lot of people who they do not know if they find it offensive or not. The people who do not find it offensive might actually want to read them. So, they just agreed to look past them and ignore what is there if it offends them for the people who do not find them offensive. Now, from my point of view from finding or seeing books, music, movies, magazines, etc., in a library that are or was offensive to me. There have been a couple of times where I have walked in a library where I found a couple of books that was offensive towards me. I really did not like what the books were all about and called, and I really would have liked to take them off the shelves and throw them away so no other person who might have found them offensive would find them or see them. So what if there are other people who would have actually wanted to read those books? That was what I thought about when I was tempted to actually remove them. So I decided not to remove the books from the shelves, so the people who did not find them offensive could read them, if they wanted to. I respected the fact that there are other people that are out there that would want to read those books but at the same time, I knew that there are people who could find them offensive but I just thought that they would just ignore the fact that they are there. So, on to the last thing that I am going to talk about. Do I believe that certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves, at a library, if they are found offensive? Also my views on censorship in libraries. Well I do believe that they should be removed so they wpuld not be offending anyone that walked into that library. But, if people had the right to remove books or anything that is offensive towards them, then there would literally be no books left in the libraries. Then there would not be any point in having libraries or in anyone writing books. So then again, I do not believe that any person should have a right to just remove the books that are offensive to them at all. I belive that if they find a book that is offensive to them, then they should just ignore that it is there and respect that there are a lot of people out there who would want to or like to read those books. So I do not believe that there should be any censorship in libraries at all. It is not anyones fault that people find books, music, movies, magazines, etc., offensive to them. So no, there should absolutely not be any censorship in a library. So there, I have just explained my views on censroship in libraries and if I believe that people should have the right to remove books from a shelf just cause they found it offensive. Like I have stated before, there should not be any censorship in libraries at all. But yes, I do understand that people find things that are offensive, but they should just ignore that they are there and respect that there are people who want to or would like to read those books. Once again, do you believe that people should have the right to remove a book from a shelf just cause they found it offensive, and what are your views on censorship in libraries?" 4 4 4 4 4 4 +3207 2 "Should certain books, movies, magazines, music, etc., should be removed from shelves if they are found to be offensive. Books, movies, magazines, music are made to relay a message, express a point of veiw, or to perhaps state an oppionion, of which everyone has a different point of veiw. No, books, movies, magazines, music, etc., should not be simply taken off of the shelves or out of stores. All of the previously listed things are rated. Movies are rated @CAPS1 through @CAPS2, books are rated child through adult, and music if explicit has a parental advisery sticker, so just follow the ratings. IF a four-year old tried to buy two tickets to see a rated @CAPS2 movie the theater would not sell him the tickets because he is not yet off age. People @MONTH1 bring the point of maybe a child picks up a adult book or magazine in a store and begins to look at it and read it. The solution to that problem is simple create a seperate room in stores that sell these items and label the room adult section. Have cameras near by so if a yongster feels brave enough to tempt fate they will be caught or just put a desk out front of the adult section and require an i.d. for entrance. These are still books which are expressions of a persons dreams, hope, desires, fantasies, and heart, they should not be denied there dream because a person deems it unfit. And most apparent if it offends you dont read it. Simply follow the rating rules. Take necesary precations. If all of these rules are followed then buisnesses and libraries should have no probles keeping everybody safe and happy." 3 3 3 4 3 4 +3208 2 "If I could remove anything from shelves of libraries I wouldn't. Would you rather your kids to learn things from the facts or learn from friends? Censoring books, magazines, movies, etc and what goes onto the shelves are mostly for enjoyment or informational. Granted you wouldn't want a five-year old reading a book made for adults, but with age kids would have to learn things. You can't always control what children read unless you plan on going with them everywhere including college and on into their adult life. Books provide facts and more reliable information than what you can hear from people. If all the books on the shelves relating to drugs or alcohol were pulled off, how would someone write a report on those things. The books were created to provide people, kids especially, with facts that no one else could share and it could help with expanding their vocabulary and knowledge. If someone were to find a book or a @CAPS1 offensive, they don't have to look at it or even pick it up. Libraries can't always suit everyone's tastes and something you @MONTH1 find offensive isn't to others. Takign a single book from the shelves would result in others taking books off the shelves and then no books would be left for anyone to read or wish to take off the shelves. If you controlled what everyone read, no one would be happy and their brain wouldn't function correctly. You'd be taking one of their rights, one of the only things entitled to them without someone else telling them they can't. What kids read is shaping their minds for their future. If you removed their favorite series or genre from the shelves, they wouldn't read or listen to music or anything anymore because it isn't enjoyable. Kids get into reading when they can enjoy what they read or listen to. So with that, I wouldn't take anything off the shelves because everything appeals to someone in one way or another. Controlling what one person reads doesn't lead you nor the other person anywhere, someone could end up being offended if you take something you find offensive off the shelves, and you can't stop the knowledge that books can provide people if they read them. In one way or another something provides information for people." 4 4 4 4 4 4 +3209 2 Hi my name is @PERSON1 I have a couple topics that I would like to talk to you about. I have been hearing alot of people talking about libraries taking alot of there stuff off the shelves well I think that that the libraries around the world have alot of information inside of them and if we started taking information out of them then what would be the point in having them. I think that everything in libraries are very important and who is to know that everybody wants this to happen. The one thing that I dont really think that libraries need in them is movies because like pretty much every movie has a book that goes with it or is the same thing pretty much. And lets get on with the whole offensive thing I think everone should be mature about all the negative stuff people can say even if it is hurtfull. Though I think that the more people read about what people are saying about them is the less that they are goin to care because they are goin to just be so used to it that they are not even goin to know what they are talking about. If there was one thing that I could tel the world it would be dont be offened by what people say to you. 3 2 3 2 2 2 +3210 2 "You gotta admit, although you would like your kids to have freedom, @CAPS3 all of them are responsible enough to handle @CAPS1. You could blabber in their ear all day about '@CAPS1's responsible to do this and @CAPS3 do this.' and they will go out and do @CAPS1 anyways. Trust me, I'm a teenager. I know. So there are certin things that you have to take away from them in order to keep them from getting distracted on what @CAPS2 matters in their teenage years. And that is schoolwork. If school systems allowed there to be offensive or innapropriate materials on their shelves, I just know kids would find themselves to be...well... 'distracted'. And when I say innapropriate, I don't only mean on sexual terms, I mean for school. You would like to think that they would possibly save @CAPS1 for when they checked out and went home and did their work first but, like I stated before, kids are going to do what they want. And what they want to do is @PERCENT1 of the time @CAPS3 schoolwork. They would rather just sit down, crack open a magazine, and let their eyes glaze over at the sights of celebrities and new scandals. School work is a very important thing in teenagers lives, and I feel that when they are in school they should stay focused on schoolwork and activities. If they wanted to have free time to go and read magazines, they should do @CAPS1 at home. Offensive books should @CAPS3 be there to only distract the teenager from school. @CAPS1's unneccesary. But with public libraries, @CAPS1's a whole new story. I beleive that nothing should be censored from a public library because people go their on their own free will. I know I personaly go there for research and for the sheer joy of reading, as do many other people. @CAPS1's your choice if you are responsible enough to keep focused on work or get distracted because @CAPS3 only do teenagers go there, but adults do too. @CAPS1 is unacceptable for there to be only educational books because who knows what your there for? The library is for people to go and read, whether @CAPS1's just for the heck of @CAPS1 or for school. @CAPS3 everyone is responsible. Especially @CAPS3 teenagers. So that's why I personally beleive offensive or innapropriate materials should @CAPS3 be allowed in school libraries, but allwowed in public libraries. Although equal rights and freedom in necessary, schoolwork is too important to let kids get distracted from @CAPS1. @CAPS1 is the key to their future" 4 4 4 4 4 4 +3211 2 "All people have the same right to read, listion and watch different materials. To be censored should be no one choise but your own. For some one else to tell you what and what not to read is by my openion very wrong to do. If we would censore everything we did we would have a city and nation that would @DATE1 slowly. Any givein word can offend any certain person. The people that they offend are in my oppioen are the dead weights of our country that are just holding us back from fully ecpressing our self, the colorfull words that we @MONTH1 use can be offensive to one persson yet perfeectly fine to another. It all depends on the indivadual that likes or dislikes the word or readings. In my observations of people reading and dislikeing it because of it harsh and colorfull words is most offen people that do not fully express them selvs and our yet much more senitive. I think this also goes agenst freedom of speech. We were gaven that right so why wouldent we use it? Why wouldent people want us to express ourselvs? I have no idea why any person would want to take books,music,movies and magazines away from us. If every thing went by one mans rule of what to and not to read we would down grade as a country and @DATE1. Therefore i strongly advise not to take any books off the selves. The majordy of the people agree with me to not be censored and only the sensitive people that they offened will just make there own chiose not to pick the book off the selves,not to listen to music, And pick up the magazine. the right is ours and thats how is should stay" 3 3 3 3 3 3 +3212 2 "Censorship. It's a word that everyone has heard, but do people truly know what it means or how it effects them? In the past, books have been censured by rulers and leaders who thought that the material was harmful. How could they say that they knew what was best for their people? What gave them the right to decide what their people could or could not read? In today's society, we still have to deal with censorship issues. There are still people who believe that libraries need to censor their books. Censorship is wrong. Books, magazines, movies, music, etc. should not be removed from the shelves just because certain people find them offensive. Everyone has different tastes, not only in food, but in every other part of their lives as well. No one person has the right to say that one genre is better than another. Censorship is wrong because it limits what people can read, watch, and listen to. Censorship should not be allowed because it limits what people can read. Some people like mysteries, while others like to read romantic books. If we allow people to censor what we read, then how can we say that their is a book for everyone to like? If libraries censored every book that might offend someone else, then there would not be any books left for anyone to read. For example, certain religious books might offend people of other religions, but that does not mean that we should take them off the shelves. If we did that, we would have to take away all religious books so that no one was offended. Then no one would be able to find books about their religion, and no one would benefit. Similarly, censorship limits what people can watch. If we removed every movie that had even one tiny part that offended someone else, there would be no more movies left in the world. Every movie is going to have something that someone will love and someone will hate. If we only focus on the person who hates it and get rid of movies based on the people who hate them, then the people who love the movies will suffer for it. People who love horror movies probably hate comedies. This does not mean that we need to get rid of comedies just because that there are some people who dislike them. It only means that the people who don't like that type of movie don't have to watch them. In the exact same way, censorship keeps people from enjoying the type of music that they love. We can't censor music because everyone has different types and genres that they like. If we take away one kind of music, then we have to take away every kind of music. It is not fair to say that we can censor one genre of music because some people dislike it or find it offensive when there are people who truly enjoy listening to that type of music. It would be unfair to those people, and if we are unfair to them, we have to be unfair to everybody. People would be even more offended than before in that case. There will always be unhappy people in the world. We should not result to censoring books, movies, and music in libraries and other places just to try make people happy. Censorship in libraries limits what people can enjoy. It makes the the people who would like the items that have been censored mad. We should not result to that. We should allow people to pick what they like. If a person want to read something they should be allowed. If they want to watch a certain movie or listen to a certain song, then why not let them? The slim margin of people who dislike what those people enjoy can just avoid reading, watching, or listening to it. We can't take something away from the people who love it just because someone is unhappy." 4 4 4 4 4 4 +3213 2 "I believe that some materials are offensive to some people, but that shouldn't give them a right to want to take it off the shelves. No, I do not agree with taking them off the shelves because people could easily over look them and not read them. Some people @MONTH1 think they are offensive but they should know that they are not directed twards them. Magazines are different because they have peoples faces on the front cover which is uncalled for. Some of those people have a family, and doesn't want them to see their face on the front cover of a magazine. Katherine Paterson's quote is about wanting to remove books from the shelves so that childern won't be tempted to read them. If this is the case I think that its not the right thing to do. Some of those books people are taking off the shelves could be the book someone can use to relate to or even learn from. Weather or not you want your children to read them or not they could still find them and ask why they have never seen it before and parents wouldn't know what to say. Libraries are a resource to people that want to read and learn about new things. If you took a book off of a shelf, that could be the book someone really needs. Don't be that person to take away from a child's learning. You never know who is going to look for what your have taken away. And if you take it away they @MONTH1 never find it. Some people believe that reading something can be an influence to the way they act, but you cannot blame that on reading. That's like saying that your favorite color is lime green because thats @PERSON2's favorite color. Its not true and it sure isn't right. What would you do if your parents hid a book or something else from you? You would be mad at them and wonder why. It would make you anxious to read it. If they didn't hide it and you found it maybe you wouldn't want to read it because your parents would have let you see it and you wouldn't be interested. You have your own choice when it comes to what your children read, watch, and listen to. Just don't shut them out of what you read because you were offended. Think about it, the music, movie, or book your hiding from them could be the answer to a lot of things. It could help them figure out the path they want to take, or maybe the path they don't want to take. Either way it would help them be a success in their life. So why not take the risk? It could even help you." 4 3 4 4 3 4 +3214 2 "Censorship in the world we live in today is a very interesting concept. With the advent of social media, we now have thriving communities of people that want their voice to be heard, and people are listening. We now are able to tap into the huge ammount of knowledge from people all around the world, allowing us to see what is really happening in the countries like @LOCATION2, where media is considered treason. What do we do now that governments are starting to censor the internet? Lets start by looking an arguement that has been long talked about: library censorship. Today, it is almost a requirement for cities to have public libraries to be considered as real cities. Public libaries, and the funding they require, are not anywhere within the @ORGANIZATION1. Even so, they have taken a place in our neighborhoods that has made them indefinate sources of knowledge and culture. One public library @MONTH1 be a source of; historical town records, children's books, novels, research papers, non-fiction books, fiction books, magazines, and many other types of entertainment and knowledge. Public libraries are, even with the widespread usage of the internet, important places for us, as residents of a city, to socialize and learn. Libraries today @MONTH1 carry books that were in the past on the 'banned books' list, but that does not mean books are not being banned from libraries. Libaries are generally family institutions, and as being funded by the public, required to adhear by the moral and ethical standards of those who live in the area. This means that there is not one, 'national banned books list', but there many discrepencies througout @LOCATION1 in banning books. As culture moves more and more into more and more questionable materials, libaries are faced with a tough decision; keep up with the times and have more questionable and controversial reading material, or get lost in the past and try to kling onto the senior generation to stay alive. Bringing new literary materials into the library that is fresh and new means that more people will return to the library again, be it young-adults or older adults trying to get in touch with the current world. One major controversy of books in public libaries are the inclusion of sexual intimacy. As a new generation sprouts, fed with music lyrics by such names as; '@ORGANIZATION2', or '@ORGANIZATION3', we enter a new age where younger and younger kids are learning about sex. The authors of today have recognised this and have started to include references to sexual intimacy, but not detailed encoutners. I believe this is fine, because as we move on in generations we are going to find out that education about sex; safe sex, birth control, @CAPS1 prevention and testing, is much more important than trying to keep children ignorant. Keeping these young adults involved in books and trying to continue their learning outside of school is a much larger issue we should be trying to tackle instead of trying to create silly arguments against new reading material in a public libary. Public libaries are the centerpiece for learning outside of school in many communities, small and large. Knowing this, how could anyone truly believe that it would be smart to stop including new books that would entice new patrons? Even as a commercial buisness, this would make no sense, simply turning people away because you have a single view of what the future is and you refuse to listen to anyone else's opinion of the future. So why is there a question on including new knowledge? Isn't it obivous that we, as a nation, should show the world that we aren't living in the past. That we are indeed the future of the world, and that our young-adults will recieve the best education in the world by not only learning in schools, but by being the most active readers, and by extension, learners in the world." 4 5 4 4 4 4 +3215 2 "Do you believe that certain materials, such as books, music,movies, magazines, should be removed off of the shelves if they are offensive? My personal opinion is that they should not be removed. unless they are so inapropreate that children should not be avle to see. That is my opinion because if readers go into the library and find an offinsive book to us might not be offinsive to him/her and his/her standards. And if it is offensive to him/her so what he/she is the one checking it out so he/she obviously knos what he/she is getting in to so there for we should not remove books off the shelves if they are offinsive, because offinsive to one is not offinsive to the other. well actually my opinion goes half and half because if the movievs and librarys are inapropreate then aldults should be the only ones to buy them. That is my personal opinion many others @MONTH1 have different opinions on this subject but i just think every thing should just stay on the shelves. And movies sold to aldults and aldults only." 3 2 3 3 3 3 +3216 2 "Libraries are a place that provides people of all ages the oppurtunity to read any book, watch any movie, or listen to any music all for free and for a certain period of time. When people grow up, they tend to start reading, watching, and listening to material that they would never let their children listen to. Since books are read privately and movies and music are played publicly, books should not be taken from the shelves and only very bad movies and music should leave the library. Books have always been a way for people to get away from their life and into their own story world. Normally when people read a book, they don't read it in a group unless they are in a reading group discussing certain books. If someone wanted to read a book that was innappropriate for their children, let them do it; it's not hurting the children that they have been reading innappropriate topics, it will only hurt them if that child finds the book that should have been hidden in a better place. For example, @PERSON1 read the book 'The @CAPS1 @CAPS2', which had some innappropriate content for a child in there, but not so bad that it would be heinous. @PERSON1 will read the book in her own mind while finding it in the adult section of the library far from children; this scenario is how it should be. Although, if a library is putting adult books near children's books, they need to redesign to keep kids from accidentally walking into the adult section. Books can be kept from kids if hidden well enough, but movies and music can not be hidden in the same manner. Movies and music are a great way to kick back and relax after a long day, unless your kids are around. Keeping kids out of the room is a near impossible task, whether it is actually watching the movie or hearing the movie through his bedroom wall. Music can of course be listened to through headphones, but what happens when you leave a @CAPS3 is left in the car and a child is sent in that car to wait for his parents to get in? The parents might tell their child to start the car for them and the music will be playing away. The movies and music were from the library, a place where the child thinks that there would never be something such disgraceful material as what their parents are watching and listening to, ruining their good thoughts of the library. Libraries need to either get rid of all nasty content pertaining to movies and music or if their main business is that and can't seem to give it up, just put the content as far away as possible from the children. As said above, libraries need to remove all content that has potential to be exposed to children and destroy their innocent minds. Libraries are a place where kids can have fun picking out whatever book they wish to read, not a place where parents can pick up items that might spoil that child's brain" 4 3 4 4 4 4 +3217 2 "Whispers and comments fill the room while people make their way throughout the library. The critialzing of books and materials that are neatly stacked in the shelves, are taken and miss treated from the harsh people that think they are offensive. In my point of view, I strongly agree that there is no right to argue about what should or should not be removed in the libraries. The reflecting of my own views along with the libraries, shows intertest in the materials for people all over the world. The reason that I, myself, do not believe in this situation is how it mentioned in Katherine Paterson's passage. It explained, 'And then we have no books left on the shelf for any of us.' @CAPS1 everybody around has a unique part about themselves, and that is having a different look on something than someone else might have. This leads into taking a material or book they see, the wrong way and being offensive about it. However, there might be someone else that does not view that same exact book is wrong, but instead, see's something else that could lead to be offensive to them as well. To make this observation not as confusing, I will share my own experience that might help focuse more on my argument. There is a time when I went to the library and saw books and especially magazines throughout, that had an impact on colored people. It described how it would be like, if there was still slavery and that if everybody wasn't taught or treated equal amongst everyone else. In this situation, it could go both ways on how colored people tend to look and feel about this. Maybe the people are relieved and interested, knowing they are free now. On the other hand however, many colored people might get in an awkward position, having no passion of bringing the equiality up in the present world, or even the future. Many might want to forget about what happened, instead of books and magazines still publishing articles and stories about it. Again, this argument might go both ways, meaning one less book would be off the shelf, or many would be newly stacked aside from the others. When people think of materials, they most likly think of something that symbolizes an event, time period, or a symbol itself. This could also have an impact on the censorship in libraries. The way people want to take roll in the things they are part of, might actually be found in the library. However, someone that thinks there is no right for it to be shown, will remove the material. This tends to make the people that thought it was right, not find the interest they wanted to recieve. Another arugment people might have is that libraries are a public place, right? Well this should cut back or maybe even add more pull into what they can or can not share within their readings, materials, and movies. People might think that they have a right to argue or take the offensive actions out. Not so quick though as people can prove that they can put anything back as well. Well, instead of picking and choosing, I think everything should be left alone and people should only go to the section of interest they are looking for and leave the other materials out of their view. My experience and observations about this argument has covered why I, and all of you, should reflect on the views of censorship the approperiate way in libraries. Not saying this will control all the problems, but it will help from removing all of materials that could have a big roll in future process of taching children, teachers, and of course, each and everyone" 4 4 4 4 4 4 +3218 2 "I believe that certain books, music, movies, magazines, etc. shouldn't be removed from the shelves. I say this because, what @MONTH1 be offensive to one person @MONTH1 not come close to being offensive to another. There are many different types of books, movies and even some music that have some history to it, it @MONTH1 be offensive, but to some certain race or culture it's history. What @MONTH1 be historical or even informational to one person it will be offensive to the other and vice versa. If everybody had a chance to go into the biggest library made and take something that @MONTH1 be offensive to them down I think that the library would have little to no books in it. Katherine said, 'And then we have no books left on the shelf for any of us.' meaning if parents or teenagers took 'offensive' material off the shelf that there will be nothing else left. A lot of things are offensive because of religion beliefs, but not everybody has the same religion or even a religion at all. Just like religion shouldn't be taught in public schools, censoring shouldn't be allowed in public libraries. If censoring did happen in public libraries, I'm sure there will be protests and possibly riots over this censoring. People said that @PERSON2 was a bad man, well if we take books and movies off the shelves showing what he did, I believe history will be more likely to repeat itself. A lot of things have been bad in history that we read about today, like gangs, if we don't read about the wrong they do or see the movies to show how it would be like if you were a gang member would there be an increase in gang activity and members? this is why I believc we shouldn't take books, magazines, movies, etc. off of the shelves" 3 3 3 4 4 4 +3219 2 "I believe that libraries should provide any kind of book, magazine, music, and movies to the public, despite if they are found offensive. First, to support my position, we need to take into consideration that every person is different, and therefore reads and prefers different types of books and magazines. The same thing applies for watching movies and listening to music. Second, what @MONTH1 seem 'offensive' to one person @MONTH1 be perfectly fine for another, so the term 'offensive' is ambiguous in this case. There is no need for an angry public or strikes. Finally, I believe that the people have a free choice when choosing the types of books and magazines to be read, the types of movies to be watched, and the types of music to be listened to. After all, it is for their own benefit, entertainment, and learning. So, libraries should not have anything offensive removed from thier shelves that are found offensive. First, we need to take into consideration that every person is different, and therefore prefers different types of materials provided by a library. For example, one person @MONTH1 like to read philosophical books, and the other @MONTH1 like to read romance comedy books. If the philosophical books were to be taken off the shelves by the library officials, then the person who likes philosophy will not have anything to read. Yes, there are magazines available and movies to watch about philosophy, but they are experienced and learned differently than reading @ORGANIZATION2's book, or @ORGANIZATION3's @CAPS1. I had an experience similar to this with my friend. She preferred horror movies, and I historical. The horror movie she was looking for was not in the library, and later it turned out that the library did not have any kind of horror movie because they weren't popular in that city. My friend was not happy. The library had historical movies, but I ended up watching that by myself. So, libraries should not have to take away any sort of material that might be offensive to the public. Second, the term 'offensive' in this case is ambiguous, meaning that it has multiple meanings. What @MONTH1 seem 'offensive' to one person @MONTH1 not seem offensive to another. An example: a @CAPS2 @CAPS3 magazine cover @MONTH1 be offensive to a child because of the picture and 'adult' words for the child. However, that same cover @MONTH1 be interesting to a young adult because he @MONTH1 be into surfing, suntanning, or @CAPS2. Offensive is only used in the first part, but not in the second, and the same material was used. So, should that magazine be removed? I don't think so. The solution is for the child to look at @CAPS4 Magazines, @ORGANIZATION1, or @CAPS5 magazines. The library should provide a section for @ORGANIZATION1 so that they can read appropriate material. Finally, I believe that the peole have a free choice when choosing the books to read, the type of movies to watch, and the types of music to listen to. They should be allowed to do this because of their differences and their definition of 'offensive'. People should not be forced to read the same type of book, to watch the same type of movies, or to listen to the same type of music. They should have a choice of choosing the materials provided by the library which corresponds to their personalities. After all, the materials they see, read, or listen to is for their own benefit, their own learning, and for their own entertainment. The main goal is for them to be happy with what the library has to offer. In conclusion, I belive that libraries should not take off any material from their shelves that are found offensive. This is due to the different people, the ambiguous term for 'offensive', the for the sake of human flourishment. Libraries are for studying, learning, and entertainment in a quiet, peaceful place. They should not discourage people to discontinue learning about the world because that would lead to a bigger and more serious worldwide problem: the lack of education." 4 4 4 4 4 4 +3220 2 "'All of us can think of a book that we hope none of our chilren or any other children have taken off the shelf. But if I have the right to remove that book from the shelf--that work I abhor--then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf.'( Paterson) Katherine Paterson believes that if she can take a book off the shelf that she doesn't like anyone can. That should be the right way, but I don't agree. I don't think people should be able to take a book off the shelf just because they find it offensive. They don't have to take the book. I don't believe there should be censorship in libraries. If people find a book offensive they don't have to look at it or check it out. Other people might enjoy that book. Likeing a book is an opinion. For exmaple, if someone doesn't like your outfit you're probably not going to go and burn it or throw it away because that is just that one persons opinion. That is how it goes with movies, books, music, and magazines. Everyone likes something different so their should be different books. When you don't like a book I beleive the only time it would be right for you to take that book off the shelf would be if it was in your house. Then you can take that book off the shelf and throw it away or whatever you want to do with that book. If you had the whole town vote to get rid of a book and ninety-five percent voted to get rid of that book then I think it would be okay. You can't just think about yourself when it comes to public things, you need to think about the whole community. I read an article about banning '@PERSON2' from schools, I didn't think that would be a good idea. '@PERSON2' was one of the top picked books by high school students. If parents didn't like their kids reading it they should have just told them not to read it. I don't think it's right for parents to just go in the school and say they didn't like that book and take it off the shelf. I t's not fair to other readers who enjoy reading '@PERSON2 @PERSON2'. Choosing what book to read is your opinion so you don't have to read a book you dislike. People like all different books so it's not fair for them to not able to read the book they like just because other people don't like the book. What If someone didn't like a book that you loved? Would they just be able to take it off the shelf" 3 4 3 3 4 3 +3221 2 "Do you believe that certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves if they are found affensive? No, I do not believe that. Simply because if one person is offended by a book and or materials in a library someone else will argue because they like the thing that was taken out of place for that person's beliefs and values. I believe that if you don't like what is in the library you go to then don't go back, or just keep to yourself at least don't make a scene. There are a lot of racism being thrown around in books and songs and magazines but nobody takes that away. You just don't listen to it or you don't read it. If you would like to protest something that isn't in your beliefs or something that offends you, then go right ahead. It's good to defend yourself. I remember when I was about @NUM1, I went to a hotel in @LOCATION1 with @CAPS4 family and a family friend. And the guy @CAPS4 dad invited to come was @PERSON1. He isn't racist but he does joke about how people dress and he sometime gets out of hand with @CAPS6 comments on the racist names, but we tolerate him. So we go to check in at the hotel and the check in/ check out person at the counter was @CAPS1 @CAPS2. We pay for our room with no problem and we stand there patiently waiting for @PERSON1 to step up and ask for a room. @CAPS4 father asked him what he was doing, because he was just standing there looking at the person behind the counter. @PERSON1 looks at us and smiles, then he pulls out a pamplet from @CAPS6 shoulder bag and hands it to the girl behind the counter. @CAPS3 I have no idea what the pamplet said or what kind of pictures was on it, but when he handed it to her she dropped it, looked up at him with tears in her eyes, and flipped him off then walked to the back and got this man. As this rather large man walks around the counter towards @PERSON1 @CAPS4 father steps in the picture. @CAPS4 dad starts to talk to the guy but he doesn't seem to notice @CAPS4 dad because he was so focused on @PERSON1. @PERSON1 says, ' @CAPS3 look I was only kidding with the girl, she needs to learn how to take a joke.' @CAPS4 mom takes me and @CAPS4 brothers up to our room and trys to get @CAPS4 father to come with us instead he promises us he'll be right up. A good half an hour later @CAPS4 dad comes through the door with @PERSON1 close behind. I asked them what was on the paper he handed the lady, and @CAPS4 father says it was an aids pamlet he got from a rest stop. I looked at @PERSON1 and I said, '@CAPS5'd you give that to her?' @CAPS6 reply was well @CAPS7 a lot of people have aids but it's kind of an iside joke about 'blacks' and aids. So I just didn't really pay much attention to him anymore and I talked to @CAPS4 father. @CAPS4 dad said the reason @CAPS5 she got so upset was because her mother died from aids just a year ago. Which of course @PERSON1 never knew about all that. But I'm sure he learned @CAPS6 lesson. He should have just left her alone. So you see these things are a problem but nobody removed us. We stayed there all weekend. Of course her and @PERSON1 exchanged some hateful looks but we looked past that, and she moved on with her life. I still don't think you should have to remove something just because someone esle don't like it" 3 4 3 4 3 4 +3222 2 "Do I think materials, such as books, music, movies, and magazines should be removed from the book shelve if they found offensive? Yes I do beause why keep it on ther if it's offensive to young kids and other people. If it dosen't have nothing do with learning then it shouldn't be on ther. Its sertin things kids should read so if they want to put materials that are made for adults then they should put it in a sepreat section from the kids section. They shouldn't have any music or movies that have some type of violents in it because the kids now days have to much violents as it is.The only way they should put music or movies on there is if they have learning materials in it. So I think you should put books, music, movies, and magazines on the shelve only if they contain learning maertails and things that would persuad them to do some in they life." 3 3 3 2 3 2 +3223 2 "There are different types of books, movies, magnazines, and tape recorders in libraries. Books can be fiction or nonfiction. However, books or any other items can be offensive to people but to others it is just a book to read. So therefore, libraries should not remove books or any other items from the shelf. Who picks out the books, movies, magnazines, and tape recorders? The answer is the customers at the library. The authors of the books or items did not. The authors gave the decision to choice between books or items. No one can blame the authors. Also, there are different kinds and different types of writtters or artists. Writters and artists took their time for completing a novel or series for us to read or hear. People should not take it seriously about books or other source because it can be nonfiction are fiction. My next example why libraries should not remove items off the shelf is it might offensed someone but not to others. For example slavery can offensed a colored person but to others it is just a historical event. People need to know what happened in the past with historical events. People need to read the introduction before checking out the book to know if they like it or not. Therefore, people should not try to remove it. If a child checks out a book and their parents let them, it is the parents fault. It is there fault because parents let their child check the items out. Also, if a person has a problem with books or any other sources then complain but the libraries should not remove it from the shelf. Like I said before, one person might not like the book or other source but another person might like it. Libraries are for people to check out books or other sources, and not to remove books or other source off the shelves." 3 3 3 3 3 3 +3224 2 "Why is censorship important in libraries? Why should we care if there is censorship at all? I am here to tell you today my views and opinions on cenership at the library. When you walk into a library I assume you would expect a public area where you can read books and check them out, but what happends when you browse through these books and you find something offensive? How do you act, and what should you do? In my opinion censorship is alright but only used when needed. Censorship protects childeren and young adults from viewing things that are adult eyes only such as horror books, offensive music, and in most cases pornography. Censorship in the library is an important role because anyone can go into a library and pick up any book, but when you have and adults only section for books, movies, music etc. it stops alot of people to having to worry about there kids seeing bad things. For instance, if tweleve year old @PERSON1 goes into a library and finds a video game with large amounts of violence in it he can check it out and play the game without his parents knowledge of the incident. With censorship we eliminate such problems. Now like I stated before censorship is ok when needed, because censorship can get carried away as well. In reality, its the parents fault of why there kids do things also like letting there kids listen to music with heavy swearing or full access to a personal computer. Things like that are creating problems for parents as well as people around them. When I say censorship is ok when needed I mean people censor important information on the account of a event that has happend in the past. Another example, if your in ninth grade and you enter a library for a @CAPS1 @CAPS2 @CAPS3 movie but its to graphic the student is stranded for a source and must gain access to a computer. Now that you have my opinions and beleifs you can get a better understanding of what I mean. Censorship is a good thing but it can also be a bad one as well. I think that if censorship is controlled correctly it can become a powerful tool in any library, school, and even home. Censorship is at times out of control but maintained we can use it for many things and have a great community as well as country. In essence, Censorship is ok to and extent and you should beleive this as well just because if you think long enough you too can see what I see." 3 3 3 4 3 4 +3225 2 "Some of the most interesting books that I have ever read are offensive in some way. I have even read excellent books that offend me. If we didn't have books and stories that offend us, then we would never really find out what offends us. That is why I don't think books, magazines, music, or anything of that nature that @MONTH1 be found offensive in some way should be remover from the shelves. If you think about, almost all books can be offensive or hurt your feelings. It just depends on how you feel about what has been written. Something that is offensive to one person or a group of people @MONTH1 not be found offensive by another person or group of people. If we took all the books off of the shelves that someone said offended them, then there would be no books left. Writing is something you do when you want to express how you feel, or tell a story about yourself or someone else. Some authors @MONTH1 do this in a very offensive manner. Others @MONTH1 try to suger-coat how they feel about a person or certain idea. Either way you could still find something about the writing to be offensive. In conclusion, i feel that books that are found offensive or hurtful should be left on the shelves because, if we took all of them off, there would not be a very wide selection of books left" 4 4 4 4 4 4 +3226 2 "Many places show and sell offensive material. It is found almost everywhere. Many people try to shelter their kids from it but the truth is if the kids really want to look at it they are going to find a way. So I do not think all offensive material should be removed from shelves but sometimes things can offend more than one person in which case they @MONTH1 need to be removed. Take music for example, there @MONTH1 be explicit lyrics in songs but that doesn't make them terrible or make them worth taking off the shelf. Music is everywhere and if someone tells you can't listen to it over a few words then they are going to find a way to listen to it. Movies @MONTH1 be different. For some you do have to be a certain age and that is because of the offensive material. But still some people go see it anyways knowing that there will be offensive material in there but they go and see it and then complain about how offensive it was. Movies should not be pulled off the shelf because it is your choice if you want to watch it or not and if you choose not to there will always be someone who chooses to watch it. Books @MONTH1 be the only exception. Many people read books and many do enjoy it but many people do find books offensive. Now with music and movies people know they aren't real its just talk or acting. But some books are written by people with the actual beliefs they write about. which is why some books might be pulled off shelves because if one person believes something it won't be hard to convince somebody else. There is a big difference between choosing not to look or listen to something than being told you cannot look at something. All the things that show explicit material have some type of warning for it and if you choose to keep reading or listening it is your decision." 4 4 4 4 4 4 +3227 2 "Censorship in libraries in my view isn't a good idea. Library now days have alot of offensive language in there books so if someone were to take all of the book like that out of the library then library wouldn't even have that many books in it. Music is the same way all music now days might have some offensve words in them thats just something people now days have to get over. I think library censorship is not a good idea. Some parent might not like the idea of there librarys haveing offensive language in the books, music, movies, and magazines. If the parent don't want there children to not read those book then they need to chose there childrens book, but I think takeing all the offensive book of the shelves isn't very smart. Some people enjoy reading and listening to that kind of music. Some of the best books, and music now days have bad stuff in then like drugs, language, sex, gangs and much more but sometimes books like that can teach you a lesson on how to avoid that going down the road. So if you take those books off the shelves and werent able to listen to that music maybe your child could do some of those things. They really wouldnt know the side effects and bad thing that could come out of those things. Some of the top music and books have offensive materials in then and why would you not let your kid read them because of a couple choice word in them.I know some of this material could be bad for people but sometimes it can teach you a huge lesson in your life. If there are book you dont want youself to read then don't read them. I think it would be unfair to take everthing that have some bad language or maybe some racism away from us just because you don't think its good for your child to read. Its not fair to people who @MONTH1 enjoy those books to not have the luxary to read those book anymore cause a few parent got mad about a book. Some of the old books have alot of racism in them, and you actually @MONTH1 read some of them in a school for a class. Those book @MONTH1 also have bad language in them to. Take thing those books away from us @MONTH1 take away are education, and we won't be able to learn from those books like we should. So i think that censorshipn in library is just a horrible idea. It can take away from lesson we could learn and are education that we need to be successful in life" 3 4 3 3 3 3 +3228 2 "Censorship in libraries is a very contraversial. Many people believe that it is the right thing to do while many others strongly disagree with it. Censorship should not occur in libraries for several reasons. All people have freedom of speech in the @LOCATION1 and when books are taken off the shelf because they are thought to be offensive you are taking away that right. Authors have the right to express themselves and the right to have their works equally acknowledged by the public. Censorship is acceptable in some circumstances but what is censored should not be decided by the government. First of all, freedom of speech is very important to the people of the @LOCATION1. If this freedom were to be taken away, it would definitely not go unnoticed. When books, music, movies, and magazines are censored, the freedom of speech that the author had is being diminished. For example, what if an athiest wrote a book saying that @CAPS1 wasn't real? Many @CAPS2 would want to take this book off the shelves of all libraries. Just because one group of people do not like the topic, message, or theme of a book does not mean that it should be taken out of a library. A library is a place where all books have a chance to be read not a place where people get to pick and choose what they want there because of their beliefs. Secondly, authors have the right to express their thoughts and to have their works equally acknowleged by the public. Of course there will be books that are more popular than others, but at the same time there will also be books that are neglected not because the quality of the writing but because of the topic the author chose to right about. There is no reason to have a whole community ignore an authors work just because a large group of people do not agree with what it says. In that small group of people that were not trying to get rid of that book you will find a number of people that would read the book. Just because a majority does not like the topic of the work does not mean that the minority should have the book taken away from them. The author has the right to what they wrote and should have the opportunity to have their work acknowledged. Last of all, censorship can also be a good thing in some circumstances. It just depends in what ways censoring is used. For example, many parents do not want their children reading, listening or watching certain things. The parents of the child should be able to decide what a kid can read, listen, or watch, not a large group of people. Many parents have different standards and what some parents find acceptable for their children @MONTH1 appall others. So, there could never be a set standard for what is acceptable and not acceptable without creating a large amount of contraversy. Once that child becomes and adult they have all the rights to decide what they want to get from a library. There should be certain limits though. For example, a person must be the age of seventeen or older to rent a '@CAPS3' rated movie. This is the same age a person must be to get into a '@CAPS3' rated movie without parental supervision. Some of the age limits throughout society should be put in libraries, but other than that, the decisions should be left up to the person. Censorship in libraries will always be changing. Sometimes it will be in effect while at other times it will not. People of the @LOCATION1 have the freedom of speech and taking away books from libraries is partially taking away that right. The author should have the right to have their book equally acknowledged by the public and kept on the shelves. Censorship should be decided by the person themselves and should not have it decided for them. Parents should have the say over what their children read and should not have that decision made by others" 4 4 4 4 4 4 +3229 2 "Have you ever been looking for a book only to find it band from all local stores? Well I haven't had the misfortune of being in that situation, but I could only imagine the sheer distress of wanting but not finding that controversial book. I personally think that a young adult should be able to read any book or news article that they wish to. The fact that a book is found offensive of offputing to most is no reason to completely ban the book from store and library shelves alike, because if there is @CAPS5 one person that could educationaly benefit from reading this book then they should at least have a chance to obtain that information. One of the most impotant things to remember while considering this topic is that no matter what the source is or what it conveys there will always be someone that feels the book is just to graphic of hits to close to home for them to stand. In other cases however, there are books that are not proper for younger children or the faint of heart, such as the book series 'The @CAPS1 @CAPS2' in which people are thrown into an arena and forced to fight each other for their very lives. Most people who are above the age of twelve can handle almost all of the 'offensive sources' that are atainable by the public, but there are some cases that @CAPS5 adults cannot handle such as the famous book that @PERSON1 wrote in incarseration called ' @CAPS3 @CAPS4.' @CAPS5 in those extreme cases most adults can the read. Now that my argument has been said and you know my point of view is that it veries from person to person whether they can handle a book I ask you if feel the same way that I do. My main reason for this conclusion is that if someone thinks a book is too offensive they should simply avoid this book. We do live in @LOCATION1 the land of the free, I think we can a little controversy over a book or magazine. I do hope that in the future we as a nation can overcome these small setbacks that are caused by an over reaction to something offensive. I believe that we will see a day that no book will be band from the shelves, so that our children @MONTH1 gain the knoledge that is contained by thoes fragile pages of paper" 4 4 4 4 4 4 +3230 2 "I thank that all of the books and movies and more should not be censorship because people have a right to no what they what to no or see. They need to learn from books so people can learn from history and so that @CAPS1 war @NUM1 want happen again. The libraries is for freeom to read to do want you want and look up. In the newspaper and magazines people like to no that happens in the @CAPS1 or to people if its bad or not, because no how that cant happen to them, some people mite thank that people not read watch something but are they to tell what to do they can there own dishens" 2 2 2 2 2 2 +3231 2 "I can think of several books that, I would not want a child of mine to pick up and read. I as soon as I seen what I was going to be writing about this one flashed in my head like lighting. The book that @CAPS1 choosing is called '@CAPS2 @CAPS3 @CAPS4.' The book '@CAPS2 @CAPS3 @CAPS4' is about a young girl that grew up without a father. Her mother never wanted to talk about him because, she knew that this way only going to make matters worse. The young girl grew up with the dream of being daddy's little girl.That's all she wanted out of life. She sit and thought is that just a little to much to ask for. After a few years, had passed by she had finally got the nerve to go on a hunt for father. She went by herself, leaving her mother behind.Her mother always pumped in the head that her father was up to no good. That she would be better off without him there. But, she went on the hunt of her father by faith in the lord. After saying many prayers to the lord, she finally thought that.She just @MONTH1 knew what this hunt was going to take. So she went to her @CAPS9, hoping that she @MONTH1 just have the anwsers. That she needed to solve her heartace and pain. That she could just walk @CAPS4 knowing that somewhere out there in the world that her father would be waiting for her. It's was just before the sun was beginning to sit, when she noticed a little old southern bell. Sitting out on the front porch in a wooden rocking chair. She went up to her @CAPS9 and kissed her on the forehead,with tears filled in her eyes.Her @CAPS9 said 'now dear why must you be crying.' @CAPS8, with the lump in the throat she asked 'do you know where I @MONTH1 find my father?' @CAPS9 answered with yes! Dear, @CAPS2's laying down in his bed. That's when her face began to glow. She went in the old cottage to find her father lying on the bed writing her. She was nervous but with the help of her @CAPS9 she sit and talked with her father.Her father told her that her had wrote her a letter everyday.That's @NUM1 letters a year. She told her father that I've never recieved a letter from you in my entire life span. That's when it clicked to her that @MONTH1 be why her mother never let her check the mail. After @NUM2 years had passed by she finally found her father. Truth was that her father @CAPS3 out of his daughters life because, the mother didn't want him to be a part of her life. She did whatever it took to keep them apart, even if that meant going aganist law orders. Father explained that her mother needed her there to look after her because, her was into some heavy drugs at the time. Back then there was nothing @CAPS2 could do to take his daughter @CAPS4 from her mother. The reason I choose this book was because, when I was young my father did the same to me. @CAPS2 left me and I've never had the chance to get to know my family. The pain of growing up without either mom nor dad is tuff. You cry many tears and try to patch up the holes in you heart. Sometime's the bleed still seemeds to find it's way through. After reading the book I always wondered why they called her she. They called her she because, she took the blame for her father walking out of her life. Many children are growing up without mom or dad. There's a higher percentange of single parent family's now days than before.Just like in the book most kids take the blame for a parnet not being there. If I could take that book off the shelf, then I would because, no child needs to be reminded of the pain they went through.Would you do the same if you were looking out for your child? All these children want is to know there loved and that someone cares about them.If your going to have these types of books then there needs to be a form for the parnets to fill out giving permission. If they are over age then that's total fine. They're at the age where they should be able to handle it, than going through these feeling alone" 4 4 4 4 4 4 +3232 2 "Do you believe that certain materials,such as books, music, movies, magazines, ect., offensive? Support your position with convincing arguments from your own experince, observations, and/or reading. I do believe that if it's a book you not suppose to get, if it's not for age group, don't get it. Some libraries contains books that's highly not appropriate for children, they have sections for adults and children to check out books. Some libraries need book monitors to guide and put up certain types of books.The library is a plcae with all types of books, so you should go to your own section and check out your type of book. When I first went to the library for the time I didn't know what book to check out, so the librarian should me my section by showing me my age group. By then I was checking out books that was appropriate for my age, magazines I didn't care to much about, I just wanted to read a whloe book. In conclusion, when ever you nedd a book good or check out your section, make the book is appropriate for you and feed you mind with knowledge." 3 3 3 3 2 3 +3233 2 "Censorship In a library there are a plethora of books to choose from. Books ranging from children's to difficult adult ones. It's nice to know that you have many options and freedom to pick whatever book you would like to read. Censorship is the censoring of a piece of material so it is not legally or publically available. If a book was censored because of the contents inside it would bring into question other books or media related to it. I believe that if books, magazines, movies, etc. were censored in a library the material wouldn't have a chance to be exposed to people. Some people write books and songs to express themselves or make money. If a book is taken out of a library other libraries will have to remove it also, and other libraries won't buy it. Some people just wish to get there thoughts out and share their message with other people. Censorship in a way stops the flow of what people learn. Another part about censorship is where to draw the line on what is offensive enough to be censored. If a book is removed from the library for its contents, people will look into as to why it was removed. It gets people thinking as to what other books are also offensive. The reason why one book is removed could relate to another book and could get that one to be removed also. Since censorship is probably mostly opinion, there is no clear boundary as to what can sit on the shelf and what can't. With censorship you are only stripping the freedom of press away from people. If a publishing company accepts a piece of media only to have is censored later on, this might mean we need new publishers, or that they are also interested in getting what people have to say out into the world. The boundary for censorship is very opinionated and should not be dictated by a single group. When one book is taken down it only brings other ones into question. Those are my beliefs about censorship in the library" 3 4 3 3 4 3 +3234 2 "A library is a place to go when inneed of solitude and peace with researching or reading. There is no reason other than someones opion to why certain materails should be removed from libraries. We the people have a right to read what others have composed thourgh their thoughts and ideas. Certain materail @MONTH1 be offensive to different people, but to the others that could use that materail for research or for pleasure reading, would not be fair. If certain materials were removed because of someones action to there personal or religious opion, then those materials would nopt be avalible for those that would need to posess that information. Did anyone think when they asked for the certain offensive materail to be removed? If people did they would relize that someone had to put an enormous amount of effort to get that infomation out to the world. How do you think that author would feel? You just had their best work pulled from the shelfs because you think it is offensive. How would you feel if some to your best peice of writing and complained that libraries cannot put this on their shelfs because its offensive. There has been certain matierals I have listen to or read tht I thought could be offensive to certain people, but that is the media that writes the society as we read it. Some of those people @MONTH1 have certain religions that say they can't read or listen to certain things. Maybe not even watch certain materials but others, that might be there part of livlyhood. We can't just take materials off the shelfs of libraries. That material is the life blood of our society. If you cut the blood flow, bad things are bound to happen after that. For whoever reads this, remember what we produces as media is who we are, what we do , and what we live for." 3 4 3 3 4 3 +3235 2 "Why Censorship @CAPS1 @CAPS2? In our everyday lives, we come across many things that can be taken to offense. Some of these things we might not even realize, but they're out there. Everybody doesn't want there children getting into the wrong things early on, but we know it will eventually happen. We just have to teach our kids what @CAPS1 good and what @CAPS1 @CAPS2. This goes for literary items too. We need to have faith in our kids that they will do what @CAPS1 right. I think that when old enough, they should be able to read books and listen to music that might be offensive. I think we shouldn't get rid of all the offensive material at the libraries. Now days, there @CAPS1 a lot of hard work that goes into music, movies, and books. If we start getting rid of all the offensive material, many people will be offended that in itself. The people that worked on the movie or wrote that book put a lot of time and effort into the piece. They spent countless of hours working with others just to get the piece into publication, or trying to get somone to film their movie idea. I think that it would be wrong to outrule peices of great literature because behind every one of them, there @CAPS1 a person that put a lot of effort into that material. In every book you pick up today, you could look through it and find a offensive language or offensive gestures in it. The @CAPS3 @CAPS4 @CAPS5 @CAPS1 a very detailed book and has many great facts in it, but many people find it offensive because it says @PERSON2 had a wife and had children. This book isn't telling you what to believe or what actually happened, it @CAPS1 just a story full of conspiracy theories. You can still believe what you want and read this book. A movie that could be considered offensive just by the title @CAPS1 @CAPS6 @CAPS7 Can't @CAPS8. Many people hear this title and @MONTH1 not want to watch it, thinking that it will discriminant against @CAPS6 people, but instead it @CAPS1 a very good movie about a group of people that play basketball. Many things have offensive language but that doesn't mean we can't act like adults, read these books, and realize that they are just stories. They are not telling you what to believe and what not to believe. In our country today, we have many different ethnic groups, and many people think differently about things. In our society we are given the right to have our own opinion about things, and we are able to like what ever we want. Even though literary might be offensive, some people like reading books like this. If I look in the library, I could find a book with offensive material, but the book could still be a very good book. Even though it @CAPS1 disrcimanting against me, I could still love the book. There @CAPS1 always controversy in our society, and almost everyone loves it. Why get rid of these books when people are still enjoying them everyday. Like Katherine Paterson said, if she has the right to take a book off of the shelf, then so does everyone else. If we let everybody take books off the shelves, then there will be none left. We cannot control everything that people do. Taking offensive books out of the library will not stop people from reading them, but this will decline the library usage, and people will slowly stop reading. If they don't like the books at the library, then they won't have problem with not reading at all. I think that censorship in our libraries would be a @CAPS2 idea, and I think we should definitely not take out all the offensive material in the libraries" 4 4 4 3 3 3 +3236 2 "Books, books, and more books. There are so many of these spine bound papers, filled with everything from basic @CAPS1 about life, all the way to stories that capture the minds of faithful readers and take them to far off distant worlds. If we were to take all the books in the world and line them up in a perfect row, we would be able to create a bridge of knowledge and iformation far enough to stretch around the moon twice and back. The problem is, that with all of this @CAPS1 and knowledge, there are young minds that are not yet ready to soak it all up. There is no such thing as bad @CAPS1. There is only people who are not yet ready for the @CAPS1 they are about to obtain. So should these materials that open up doors to new minds sets, and feelings such as books, music, magazines, and movies be censored? That answer is yes. First off, there is a certain degree of modesty and curiousity that needs to be kept in children. Children need to have a hunger for knowledge to become great learners, and intellegent minds. If the @CAPS1 given to them does not come in the chronological order of importance in which it needs to, this will poison there minds and twist them in to something they were not yet ready to become. Secondly, @CAPS1 presented to kids to early can harm them physicaly. Children are born with the instict to repete what they observe. This is a primal instict that humans will forever have, and is essential for living life. So take movies for example. If a child watches movies that involve sexual themes, and actions, this can be very harmful to them physicaly. If a child experiences these things to soon, they will want to simply repete what they saw. Then what is next? The answer to that question is easy. There will be more teen mothers than there are needed. Lastly, premature @CAPS1 can harm mentaly. Take music for example. Music is an even larger gateway to mental damage then movies are. This is simply a result of bad censorship. Many think that music is not as bad as movies because you can not see anything visually, but they are wrong. Music is even worse because children can picture what ever they want to based on what is being said in the lyrics. There needs to be tougher ristrictions on music. Restrictions such as age for purchase should be raised, That is about the only way that explicit content can be blocked. In conclusion, there should be better censorship restrictions on certain materials. But I do not beleive that the materials that @MONTH1 be harmful or offensive should be remove as whole. Simply because adults do have the right to view these materials. Libraries around the world need to better there restrictions, even laws to stop poisoning the minds of our young. We people as a whole need to come together to make this happen. After all, the children are the future of our world" 4 4 4 4 4 4 +3237 2 No I do not belive that certain materials should be removed. I belive that people should be able to have freedom of speech. I also belive that if somebody has something on their mind they should should be able to say it. I all ways tell peolple to mean what you say and say whay you mean. Now if its younger kids getting ahold of magazines and movies with inpropriate material in it then yes it should be censored or they shouldn't be placed in places with younger kids can get to them 2 2 2 2 2 2 +3238 2 "I honestly don't think anything offensive should be removed from libraries, children don't really know what those offensive things mean.The library is the only good place to find information or to find a book that they enjoy. If you take things that @MONTH1 seem offensive to people; people are going to have a hard time finding any facts or anything they neeed. People use offensive things all the time but not everyone means to insult anyone in any way. The library doesn't intentionally insult people. The library just gives us facts about what we need to know about a person or anything like that. Some people don't know how to be mature when it comes to things like that and if they cant be mature about stuff like that then they don't need to be in the library. I would understand if the intentions were to insult someone but their not so why should the magazines, movies, books, an music be taken out of the library. Thats just not fair to others when they are trying to get some information. Slavery is an offensive thing to colored people cause the colored people get called names that i will not say in this essay. Most people have matured over the years about what happened in the past. Honestly I think people will be ok they dont need to get all bent out of shape because they see something offensive they just need to know that it wasnt intentionaly done" 2 3 2 2 3 2 +3239 2 "I strongly believe that books with offensive things should be pulled out the library. It not okay for you too say one thing and something your child found in the library say it okay. what if you were talking to your kids about not smoke and how it bad for them and could potentially kill them, would you like you child to say that i can smoke because all this character in the book are smoking? No that not right it just pure wrong. They shouldn't allow those kinds of books, music, movies, or magazine in the library. In high school we were told by our parents that we should not smoke do drugs or anything like that. Sometimes it might be hard to believe the things your parents talked to you about and how harmful they are to you and your body and would lead you to a trouble life down the road. Movie we watch today talk about doing drugs and how cool they are and how they had fun driving a stolen car. it wrong to talk about them that way because it get teens to think it okay for them to do it and nothing bad is going to happen. The media does a bad job of showing teens it not right to do the things they see on tv. The library set a bad example by allowing those kinds of books to sit on the shelves and think it okay for people to read them and not take it offensive. I was reading a book that was talking about how they think it okay to act rascist aganist other people and say mean thing and call them bad name. I really took that offensive because i wouldnt like someone calling me name and saying bad things about me because they think it okay to say things like that and act that way. If books say all those things and the readers actually believe them, then we might have a problem in our hands because some people would take offensive to it and cause a big issue over a small book and some readers might think its okay and cause even a big issue between people who take it offensive and people who dont take it offensive. There are those people out there who think that it okay for those kind of books to be in the library and other people who think it wrong and offensive. My personal view is that i think it wrong to have those kind of books at the library. We tell people how it wrong to do bad things and how we hate certain things that are offensive to us, but it say that in the book that it alright for those thing to be happening or it right to use those foul language. I just think it personal wrong to say those kind of things in movies. music, books,or magazines are okay to be in the library yet alone in the people it self." 4 4 4 4 4 4 +3240 2 "what i think about all of this? Is that to me i really don't care because that is like who i am. And its up the parents if they want the to remove the books off the shelf if they believe that a certain material as book, music, movies, and magazing should be remove off the shelves. Also i dont think a book will ever really hurt anyone. I mean its just a book it dose not really matter. Next, i am saying this becuse i dont really would get offensive to stuff like this argument. And also if there some stuff that kids shouldnt know about then they should put those stuff in the adult section and not a place where they can find it easy. They shouldn't put stuff that you think children should never know about in the kids section. Matter of fats i don't know why they should remove stuff like movie. Becuse if they are trying to block them form kids to see they are really dumb to do that. Beause there are moive that children can watch. And some parents is not going to let their children watch a @CAPS1 @NUM1 movies, and other movie they were not to see at there ages. Unless if their parents allowe it.And that goes with the same with the music. I don't know if they have bad music in the library.I don't see rap stuff in the library.like raps @CAPS2 and other stuff like it.So this is my thought about this arguments" 2 2 2 2 2 2 +3241 2 yes i thinck they should take efence books off the shelf because little likd read the books then they will probley be tought rong from right. And if the books had vilance then they will thinck tkat is right to. 1 1 1 1 1 1 +3242 2 "Censorship is a big controversy in modern society due to the fact of so many opinions being conveyed through all the new medias in the modern world. When a person has a veiw they tend to want to share it with the world or defend it againts those who opose their opinion. Some people do not always like what is being said or take offense in the way it is presented, thus causing the government, or any authority, to remove or replace these words, photos, lyrics, or film from a select public, such as children, or the entire public. This is censorship and it has caused many debates over what is acceptable in society's media. I believe censorship is wrong. It violates the @CAPS1 peoples' rights of free speach. When a person has an opinion, they have the right to voice it anyway they want. The authorities should not be involved in what someone writes, sings, creates, etc., in anyway. Censorship takes away from the integrity and purity of a human's thoughts. Who is to say what can and can't be said? Do we just let the government tell us what we can say and what is illegal? Do we stop expressing ourselves in the way we desire because it is not appropriate? No. We, as the people, must be free to say what we want in our stories and songs, along with movies and other media. If a person does not like what they see then they can turn away or they have the right to speak out against it in their own way; but they do not have the right to opress. They should write back, convey their message and try to win support, not control. Censorship is not good for any society. People want to say whatever they want and they have the right to. Censorship is not a solution to discrimation or anger, it is only a fuel. If parents do not like something and do not want their children to experience it then do not take it from them, then they should tell them how it is 'wrong' and give them their opinion and reasons so the child @MONTH1 descide what they believe in on their own. An opinion is every human being's right and it belongs to them, not the authorities." 4 4 4 4 3 4 +3243 2 "Have you ever walked into the library hoping to find a good book, and picked up a very volgar and inapropriate article? Were you dissapointed to see what children could easily get a hold of, or did you just place it back onto the shelf just simple thinking it wasn't your style of book? In this essay I would like to discuss both views on these censored books, and why I believe they should be censored. People all over the world are vastly different. From color, race, size, shape, and personality there is not a single person on the planet who is excatly like the other, so why would they all have the same interest in reading or music? Some @MONTH1 enjoy a romantic novel that makes your heart skip beats while @CAPS1 my prefer the thrill of a horror story. Either way everyone has their own opinion of what makes a great book. The same thing accures in the question, whether or not censored items should be allowed into a public library. Many @MONTH1 say yes, people have their right to choose what they @MONTH1 or @MONTH1 not observe or listen to, 'If you don't like the style in which the item is protrayed then don't pick it up.' @CAPS1 @MONTH1 say no, 'The library is suppose to be a safe haven where they don't have to worry about children seeing and hearing things they shouldn't.' In my personal opinion I believe the parent figure is right, although I also can understand the opposing opinion. As to the opposing opinion, I can understand why you @MONTH1 think that censored items are ok in libraries. If it is a personal choice of how the author writes the book and still makes a great story, I believe that the book is alright as long as it is not in reach of a child. Many people have different ideas on what censored means and there could be the consequence of loosing many books but there are always consequence to every choice, good or bad. In my personal experince, I have taken my ten year old sister to the library to barrow a movie and a few books. She is very scholary and comprehinds things quickly. Futhermore when she found a book that she thought @MONTH1 be interesting. The book turned out to be full of curse words and profanity. Think about it, what would you say to your child who just learned a few curse words from a place you expected to be a safe enviroment? To me it is rediculous to have to search every single book, cd, movie or magazine for profanity to make sure it is safe for my sister to read! Kids these days have changed majorly in their attitudes, language, and responses to things and I believe a big part of why is because of what they take in through the worldly materials. If the books and the music they read and listen to are offensive and rude then what else would they know other than to follow the lines of something more 'cool' than them. Therefore I believe that there should not be censored books in a library, and parents should have the right to ask for them to be removed. When I sit back and realize what I would want my kids to be reading and listening to I wonder why people would even chance the fact that their child could be negativly influenced by it. Why tempt them to be someone that reflects profanity and offensiveness when they could be so much more? Parents should do everything they can to make their kids the best person they can be and I believe that they have a right to protect their children from not reaching their full potential. Therefore in the end books should be censored!" 4 4 4 4 4 4 +3244 2 "Some books are not suitable for kids. They could make a section for adults that includes books that are not censored. These books should not be aloud to be checked out by kids under the age of @NUM1 unless their parent or guardian allows them to. Some adults don't care what there kids read but the library should. I've read books at school that were adult books at school. Back in elementary school, I remember checking out alot of books but I don't think they were adult books. Some kids enjoy reading adult books. It helps their reading skills but the content in the book is not suitable for them. Making a section for adults would help stop kids from reading adult material. I believe that this should take place at every library around the world." 2 2 2 3 3 3 +3245 2 I think as long as the book ain't offensive or bad then people should keep reading it. If its offensive I think they shouln't read it at all cause it would not be right to read such a thing. Also I think if there is bad music it should be taken off the shelves. Parents or teachers wouldn't want there kids finding out bad words to say 2 2 2 2 2 2 +3246 2 "I do in deed believe that certain material should not be in public libraries, or places where young people can see it. Things, such as pornagraphic material should not be out in the open where kids can see it. I think we would all believe the same way when we say that kids do not need to be seeing these things. I personaly have been in a movie rental shop, and seen some of the movies that my parents would not want me to see. Material such as this should be put away somewhere out of sight, and requested if wanted. I also have a religious view on all of this. I know that it is a sin to look at the things such as porn and so the people in charge of the shop, or library ought to respect me and my religion. @PERSON1 in the @CAPS1 says that if eating meat causes his brother to stumble than he will not do so. We need to have the same aspect on life. If something causes someone else harm we should not do it. This is an issue that we face every day, and the reason I am using pornagraphic material is because it is everywhere. If I am standing in the @ORGANIZATION1 check out line I see the people magazines and I find it verry offensive! I will say though, if you are old enough to live by yourself than you can look at whatever you want. I just find it untollerable to post these materials were viewers who do not want to see them have to see them." 3 3 3 3 4 3 +3247 2 "Do you believe that certain materials in the library should be removed off the shelf if found offensive? I believe certain materials, such as books, music, movies, magazines, etc., should not be removed from the shelves if they are found offensive. Some of my reasoning is very logical and if you were a reader I'm sure you want to read something thats true and very interesting. Libraries all consist of books from everything you can think of. Libraries are really for learning and not to offense anybody in any manner. The reason why I believe they should not be removed because everybody is equal and not everybody likes to read the same books. There should be offensive books because I think that theres just to many kids that would not like to grab a book and it be orginal and not offensive about them in some way. Books are created to read and have interest, laughter, enjoying. From some of the students at my school I spoke with said that when they are really having a bad day they turn on their music and it helps them because it makes them feel alot better and the day gets easier for them. They say they dont have to be depressed or thinking about something that made them mad that day. Well as in from my experience with books I can tell you somethings and sometimes that when I was feeling down how I grabed a book. The first time I realized books are really helpful and I'm also talkling about magazines, music and movies. Well to be honest I'm not a big reader. I enjoy listening to music because sometimes songs can relate to you and make you fell that your not alone. Also it helps you learn how to cope with some things that you could of never coped with before because it makes you feel relaxed. Just how some of my friends said that they feel relaxed when they read a book. So my point is that you know and I know that their are music out there that is very offensive and some books that are. Does it drive us crazy that they do? No it does not because it actually helps us. It helps us by showing us away out from our daily streesful lifes and sometimes you learn in books and songs of how other people deal with their stress. So you learn alot of things than feel offensive about books or music. As you can tell I'm a huge music fan and there has been lots of songs that were offensive but it did not bug me much. I hope I gave you some kind of shock that music and books should'nt be removed if offensive. It's just music is amazing as well for books we all need our space sometimes and those two things are just there for us which is either to help us learn or feel relaxed and calm. Thank you for reading this and I hope I persuaded you enough with my reasoning. Remember music and books are alot alot of fun and if you never gave it a chance, you should try it sometime. That's the end of my conclusion" 4 4 4 4 4 4 +3248 2 "No, I don't think books are offensive in librarys. Movies are a different kind of story if you child is under the age of eighteen they should not be renting a rated @CAPS1 movie, unless their parent approves of it. This is one reason why our public library should not have rated @CAPS1 movies. While i was in our public library one afternoon I was looking at the movie selection, i was tring to decide which movie to chose. There was a little boy, at the age of nine or ten it looked liked to me, but he had two movies in his hand. They looked really good it was an action type movie, so i asked the boy if i could see the movie really fast. He asid yes, so i grabbed it from him and looked at the rating because from the title picture it looked gory. I noticed it was a rated @CAPS1 movie, and i told the boy did u know this is a rated @CAPS1 movie and he said yes, I was surprised his parents would let him watch movies like that, if i was his age i would never been able to. My second reason why our public library should get rid of any kind of swimsuit magazines like @CAPS5 and/or @CAPS6 magazines. I was looking at the magazine rack one day and noticed magazines like @CAPS5,swimsuit magazines and many more. Do you think your children should not have seen any kind of magazines like that in our libray for the public to see. If a little girl went to the magazine rack and saw that magazine, she would either want to look at it or act like she not even noticed it. At her age she wants someone to look up to and if she sees a model on or in the magazine she would want to possibly look like her, so this is how eatting disorders start. This is the reason why library's should get rid of any kind of magazines under that catagory. These are the reason why I think our local library should get rid of rated @CAPS1 movies and/or Magazines like @CAPS5 and @CAPS6. If you agree with me contact your libray and tell them what i have told you today. @MONTH1 we put a stop to censorship in our librarys." 4 3 4 3 2 3 +3249 2 "There is a type of boundary that @MONTH1 restrict readers from gathering knowledge about certain things in books. This is called censorship. However @CAPS3 you @MONTH1 not have known is that it is thought about in every school and every public library. @CAPS3 would you do if you saw your child reading a book that contained frightening descriptions that are to horrrific or to adult like for their own good? This is the question that plauges them every year with new shipments of books. Although yes that seems terrifying it is not right to take books off the shelf for a few reasons; The congressional law allowing us to have freedom of press, freedom of thought, and the fact children must take in all the knowledge they can to be the best they can achieve. First of the arguements that can be held is the freedom of press. This law was enacted in the @CAPS1 of @CAPS2 and is still in effect today. If an individual wanted to write a book that was not for children then he or she @MONTH1 do so without penalizations. Children @MONTH1 read it yes, but that shouldn't be blamed on the author. If so then that person would never get any royalties for their story and no money to support themselves. It's hard to get upset with your children for learning something wrong, but it's not right to blame the writer. When it comes to the arugements of @CAPS3 to do on censorship the freedom of thought pops into most minds. This is another law that says citizens are allowed to think @CAPS3 they will of anything. Just as the freedom of press an indiviudal can pick up that book for adults and read it. No matter the age they are. If they are discouraged by it then by all means let them put it down, however, if they enjoy the read and the more unique wording than in childrens novels let them continue learning. A child can absorb many things and recall them at times where adults sometimes cannot remember. This is not scientificly proven but when you are around children constantly you notice this. Just as a babies mind is a sponge it still continues to gather all of the information it possibly can during its pre-teen years. When they are allowed to read any book and not sit infront of a television screen all day they learn more. Now someone can come along and say: '@CAPS3 if the book is a fantasy?'. It's no different. The storyline is not @CAPS3 teaches them, it is the words and how they are used that is knowledge. An educated man can sometimes get tounge-tied with words where as if someone who did not do well in school or college read quite a bit they are able to use words with great ease. It is not allways the case, but wouldn't you like your own child to sound intelligent while speaking during important events? All in all it seems to be a great waste when censoring books for the public. There can be great things in those books that not everybody can reap. Pulling them off the shelf could mean that you impede someones ability to learn a new word or gramatical law. If one parent could pull a book off a shelf then another could do it and soon you would not have any books. It would be a scary day if that happened. For it would not be something that went well in our history. Since humankind has had writing we became more intelligent, taking books off all of the shelves would revert us to primitive beings. So keep the books on the shelves even if children should not read them. Not just because they can learn far greater with a book as a resource, but that the two congressional laws say it should be" 3 4 3 4 4 4 +3250 2 "Some books in libraries offended some people. But other people want to read this book. None persone have right to say this book offended me so should the libraries removed it. If some book offend soome person that dosn't me all the people will offend by this book.My opinion is they should not removed this book, because some people like to read that book. If some one don't like this book and this book offended them.They shold don't read this book and read what they like. but son't say should be removed this book. I think evey one like different books. So should the libraries but every thing the people like read it.." 2 2 2 1 1 1 +3251 2 "If everyone in the world could permantly take a book, movie,music, etc., off the shelf because they think it is offensive would there be any of those thing left for us to enjoy? I personally think that if people could do that they would, but is everything someone else finds offensive really offensive to you? No, it might not be, so does that give that person the right to pull it off the shelf permanatly so no one else can read it? I think no one has the right to pull that item off the shelf because of there own opinion of it. If anyone could do that would there ever be uniqueness in people? I dont think there would be. Just because you think the music a person listens to is offensive does not mean they think the same. Thus it shouldnt be taken away from that person if he/she enjoys listening to it. On the other hand I understand that some people might listen to music or read books that has offensive language and that they would not want there children hearing or reading that but that does not mean the music or book should be pulled from the shelf. Ask yourself if you would react the same way to a person who uses offensive language what should we do then? You can just take that person out of the world. So I guess the point im trying to get across is that just because you think its offensive and dont like it doesnt mean everyone in the world thinks that. To end my acticle I want you to think about whats offensive to you @MONTH1 not bee the same for others." 3 3 3 4 4 4 +3252 2 "The contents of the books in libraries vary in many way. Some are children's books, some are adult books, and some are in between. Libraries have books that spark interest in a reader. Not all books are made for a particular age group or gender. Which that should not mean that a library should be picked apart because of the contents of the novel,magazines,music,or movies. A library is suppose to be for anyone that enjoys to read a variety of materials, not just a select few because some people don't like the text or the meanings behind that book , song, or movie. In the library, in our little town, splits up the variations of the reading materials,music,and movies. There is a children's section, that has all the books we all grew up with, in half the building. Also an audult section for larger novels topics that teens and younger children would have no interest in or their parents would want them reading. Another great thing is that they have books for people in between, like myself, with teen books that spark our interest. With the ideas that people are writing about today we can not possible control what comes to their mind. Some of the greatest books that are out are probably have the deepest meanings that some audiences don't prefere to listen to. But that is what is so great is that people have the liberty to go and find a book, or a magazine, or even @CAPS1 that they like.When freedom of what you read is taken away reader will stop reading. Doesn't the admisistrations of schools want kids to read to get their test scores up? If you take away what they like to read doesn't that mean they will stop reading? Also doesn't that mean the test scores will go down? In my experience of topics that I have read about have been more grown up than my mother would like,but the fact of it is, is that people will read what they want. People don't like to be told no in my personal experience. Taking away topics that are well liked even with words or contents of what they are reading is not fair to the readers. I believe that they should not censor books, music, movies, magazines, etc. because that would mean the libraries would be gone" 4 4 4 3 3 3 +3253 2 "If something offensive is found at the library, should it be taken off of the shelves? Some people might look at this question and instantly say yes. Others might not think anything of the item and move along. I disagree with those who believe the item should be remove. Instead, I believe the item should not be removed and stay on the shelves. As a child, I have always gone to the child's section of the library to find a book. I steared clear of the 'grown-up' area. So if my mother found an offensive item on the shelves she would make sure I didn't see it. I believe if the parent watches what their child sees then they wouldn't worry about them seeing something offensive. However, let's say that an adult sees this item and feels it should be removed. She/he has the right to remove that item but what if, to someone else, that item was exactly what they were looking for? The world we live in has many offensive things in it that we see everyday, such as newspapers, @CAPS1 programs, billboards, etc., and if someone were to come along and take it all away, we would have nothing left but that one persons interests. This is why we have a little bit of everything in our libraries. If there is an offensive book or a bad @CAPS2 and someone doesn't like it and feels the need to remove it, that is @CAPS3 but then they aren't thinking of what other people might like. I have always heard the saying, 'If everybody liked the same thing, it would be a boring world.' I find this to be completely true. If everybody liked the same thing, then let anybody that enters the library remove an offensive item. However, if this happens, authors won't want to keep writing books and singers won't want their @CAPS4 there if they find out someone keeps removing their work. On the same note, people won't want to go to the library if they know they won't find what they want because someone took it down. I disagree with the ones who feel the item should be removed because to someone that book might be perfect. I believe that the book or magazine or @CAPS2 should stay on the shelf for someone who has the intent to read it. If a person walks by and feels the book is offensive, they need realize that to someone else it might not be and walk away. I am sure people would find my choice of books offensive or bad and would like to remove them from shelves. However, I would stop going to the library if that happened. This is why I feel books should stay where there are" 4 4 4 4 4 4 +3254 2 "Censorship, or the removing of material deemed inappropriate or offensive, has been used as a means of controlling people's thoughts and feelings for many centuries. The @CAPS1 used it in the @CAPS2 colonies during the @CAPS2 @CAPS4 to keep the colonists loyal to the crown. The @CAPS5 used censorship not just during the @CAPS6 @CAPS7 @CAPS8 as a brand of propaganda, but also during @CAPS7 @CAPS8 @CAPS11 under @CAPS12 guidance. Censorship is still in use in the @LOCATION1 today, as a way to 'protect the children'. The @ORGANIZATION1 tells the @CAPS2 public what we can and cannot watch on television and what we can and cannot listen to on the radio. Other organizations tell us what books we can and cannot read, what video games we can and cannot play, and what items we can and cannot buy. Such organizations, I believe, are pushing the @LOCATION1 @LOCATION1 and other freedom-loving nations to the edge of totalitarianism. As Katherine Paterson stated, 'If I have the right to remove that book from the shelf--that work I abhor--then you also have exactly the same right and so does everyone else.' If one person has the right to control what we buy, what we listen to, and what we see, then how come we don't have that right to control the same things for them? Where do we draw the line? Eventually, all books, movies, magazines, music, and video games would be deemed offensive and inappropriate. Culture would slowly wither and die, and our lives would become drab and essentially useless, for lack of a better term. I recently read a book titled '@CAPS14', by @PERSON2, about two periods in a boy's life: his childhood with his family in tribal @LOCATION2, and the life he had after his mother's death in the @CAPS15 capital of @LOCATION3. @PERSON2's work includes some passages that are less than angelic, and, had strict censorship been in place, these passages would have caused the book to go unpublished. @PERSON2's work gave not only myself but a multitude of others insight into the life that @CAPS16 face in the changing landscape of their @CAPS7, and it certainly made me realize once again that I have a life rich in family, friends, and comfort. All in all, censorship is a horrid disease that slowly infects and consumes every part of our lives. If you get to censor something you find offensive, then why don't I do the same thing? Some censorship is good, and a fact of life. But we have to ask ourselves, where do we draw the line? Where's the boundary between safety and and outright police state? Censorship is just a fancy term for blatant disregard of the @CAPS17, as freedom of speech is guaranteed for all @CAPS2 citizens. As a famous colonial revolutionary once said, '@CAPS19 me liberty, or @CAPS19 me death!' If censorship continues to grow and our libraries grow emptier and emptier, then I shall take death over liberty, for liberty with censorship is no liberty at all." 5 5 5 4 4 4 +3255 2 "If any book, music, movies, magazines, etc. should be offensive to anybody don't even bother to look at the material. Even if you might find it interesting, in then end you find out that it is offensive to you then just take it the other direction. No material of books, music, movies, or magazines should be removed from the materials because authors, directors, and music writers have made it their creation. Nobody has the same views as everybody else, each person is different in their own way. Then why is it so bad when they have offended you if it wasn't intentional? Each individual has their own opinion of each material. It might be offensive to somebody else, but to another person it might not even effect their views about what they've read, seen, or heard. Others @MONTH1 have to realize that even if its written down it is not directed towards the person reading it, if they have tooken it the wrong way. Even if your just making an observation just walk away and do not let it get the best of you. Don't let anybody tell you different of your own opinion. The cenorship in libraries are not made just for you, they are made for everbody around you. If you do not like a book in the library or even think it is inapropriate then just walk away and put it down. Anything in the library shouldn't be removed, just because you didn't like it doesn't mean that somebody else will find it interesting. If you find any material offensive then maybe you should think in your head of ways to make an argument to prove the authors that they are wrong. You just have to be strong and take anything that comes your way, and you have to be ready for it. I go to the library once in a while,and most of the time i'm just looking around for something to read and I find something interesting and I pick it up. Once I start reading it, and if I feel the type of material is directed towards me and I find it offensive I just leave it along and put it down. I don't take it the wrong way because I know it isn't a serious type of matter, because it didn't have my name in the book. So, why should I get worked up about it if it isn't about me? I don't take any type of material that I'm looking at in any negative way because I know that someone else's opinion and not my own. If anybody takes it the wrong way then they should look at other things about the topic and put your own opinion on the topic. Anybody should know that your own opinion matters than anything else or anybody else. The littlest things shouldn't get to anybody, especially if it doesn't matter. It doesn't change how you feel about the topic. The way you feel about it should not affect the way other people feel see it" 3 4 3 4 4 4 +3256 2 "I myself beleves that censorship in libraries should not be aloud. If their was to be any cersorship it should be from the parents of a child or if your not a child then you dont need censored. By censoring something as small as books, movies, and so on I think it will give people a fake sense of what really happens. Just because something isent censored doesnt mean it should be taken out of context eather. Think of it like this if you walking down a street its not going be censor people will say bad words, show bad habits, and even go as far as seeing death or more. Being a kid who really never been censored from anything including books ive learned alot but I feel as if I went to a librarie to get a book and if censored or taken off the shelf then I will shown a fake world. Once again if life cant be censored then we shouldnt consor anything else. A censored book, movie or whatever it @MONTH1 be could also determin how much someone could learn from it. People go to liraries to learn hard facts with proff and evadience and depending on the subject in witch their looking up. This is some of meny reasons I think cendor in libraries shouldnt be aloud. Consorship should be chosen by who you are not by outher people. In the end we @MONTH1 never know whats better till we try." 3 3 3 2 2 2 +3257 2 "No because the writer is explain th way the story really happend.If ur kid ask u the word tell him/her it not a good word to say, r u can take the book back and get him/her a new one. Say him/her kids comes home from school and say a couse word and u asked him/her were they learned it from. An they said the teacher said it. U can tell the teacher u dont wounting ur him/her reading that book. Cousing is a way of explain the story better to them i guess." 1 1 1 1 1 1 +3258 2 "Library @CAPS1: @CAPS2 or bad? It is a very rare occasion that i go to the library, i'm a typical guy, i like sports, video games, and hanging with my friends. When im not in school i try to stay away from everything that reminds me of it, like libraries. Those very rare occasions when i do go to the library, for a summer reading book for school, i usually browse around to see what they have on the shelves. Some of the stuff i see at libraries catches my eye, and not because it looks like a @CAPS2 book, but because it's shocking to see what they allow to be even put on the shelves. On the book shelves that i have walked by i have seen romance novels and they arent as bad as i would have thought, at first they catch my eye with the titles because they are usually kind of out of the ordinary. I feel that these books aren't innapropriate for young adults, but younger kids and pre teens should'nt be reading them. So as long as there is seperation between the kids section and adult section then i think it is completely okay to have romance novels and any other graphic novels up on the shelves because they are types if literature. Now magazines on the other hand can be taken either way. Gossip magaziines can be entertaining, but they can also be highly offensive. The problem with magazines alot of the writing is people's opinions and they could be talking in a very negative wasy about some people or some things. I think its up to the library to make a decision on that but if someone complains about it i think the library should be kind enough to take it off of the shelf. They are also magazines that show off models in swimsuits and clothes, and i feel that if the guys or girls are nude at all in the magazine they should either be in a back room and have people request to see them or they shouldn't be in the library at all. I've seen parents walk into a library and their son asked them why that magazine had a half naked lady on it and i just felt like it was highly irresponsible for the library to just leave these magazines out for kids to see them and then bug there parents all day about what they saw at the library. Music and movies are not that hard to control from them getting into the wrong hands. Now a days @CAPS3 cases for music have stickers on them that say parental advisory, so i feel that the library should be able to have any types of music on the shelves because music now has warnings on the cases. Movies are the same way, they have ratings. If the librarian see's a @NUM1 year old kid trying to check out a rated @CAPS4 movie then she should be fired, because there is cleary no reason why she would do that. Excuses cant come into play here because if you look at the rating and then you look at the person you can usually see if the movie is appropriate for them or not. Now @CAPS5 movies should not be in libraries at all, libraries are supposed to be a place to get something nice to read or listen to. Pornography in a library is like haveing strippers in school, it is just not ethical. In conclusion i feel that cencorship in libraries is a @CAPS2 thing to have. If libraries organize things well and make sure kids aren't in ares that they shouldn't be then everything should be fine" 4 4 4 4 4 4 +3259 2 "I dont see any reason why to take books off the shelves. If someone doesnt like a book, then they dont have to read it. Books are ment to entertain or inform people. There are books that talk about black people in a bad manner, but they still need to be out there so that people will know. Libraries are out to make money thats all. Let them make money, they can sell whatever they want. If I had a library I would sell just about anything i could. people will: watch, listen, read anything. So why not sell it or rent it out. It's a honest way of making money." 2 2 2 2 3 2 +3260 2 "'@CAPS1, @CAPS1, @CAPS1 I like @CAPS4 @CAPS5 and I can not lie, when a girl walks in with an itty bitty waste and a round thing in your face you get sprung.' @CAPS2 song in itself depicts a rather provocative tone towards women and men. While '@CAPS3 a'las what sorrows can be seen over yonder' tells us that love can be found anywhere. Now look closly at both lymrics you will eventually see a connection in both. The rap song @CAPS4 @CAPS5 is about a man that finds love in large glutius maximi while the other says that love can be seen everywhere, and anywhere. To say that music, magazines, books, and more should be banned is to say that throwing an @CAPS6 flag on the floor is just okay. Well its not; banning books, music, etc. is just like cencoring someones imaginationa and creativity. It is just like the book @DATE1, where @CAPS4 @CAPS8 is watching, and that we are only based on what we are allowed to read, and even think. Taking away movies and books, is to not allow people to learn from their past. Take @CAPS9 @CAPS10 @CAPS11 for example, though that movie is rather gory and morbid, it still tells us of the horrors of the time during @CAPS12 @CAPS13 @NUM1 and that the past is never something that should be let go. Always remeber the past so you can learn from it. Had that movie been cencored or removed I personally would have never learned about the hardtimes of the @CAPS13 and what it can do to a persons soul and emotions. A book, magazine, movie, etc are all gateways to new worlds, where children can use their imagination and justify what their personality is. I can say that books and songs have saved lives. The other day a friend of mine was on the edge of suicide and was almost a squeeze away from pulling the trigger when I told him that what he was doing was wrong. I was @NUM2 at the time, and i rushed through my ipod to find a song '@CAPS14 to @CAPS15 a @CAPS16' by the @CAPS17. I basically read him the lyrics and he eventually put the idea of sucicide away. While yes, there aresongs & books like The @CAPS18 and the @CAPS19 that @MONTH1 have provoked people to do crazy things, even to kill. We stilll see more good being done and shown through reading and writing. Because they are all ways to express ourselves. A song can @CAPS15 a @CAPS16 as much as it can take one away. Even then we can that letting imagination flow is better than letting the imagination get cencored. If a book is seen as something unwanted or taken away, it will cause more harm in that it would be wanted more, it would be craved becasue it is an unreachable thing" 4 4 4 4 4 4 +3261 2 "The world today in the @LOCATION1 is hardly free. Everything that we see, hear, and read is censored. Is this good or bad? For the most part, it is good. Adults, teenagers, and young children all should only be allowed access to certain types of movies, music, books, magazines, radio stations, and so on. I don't believe they should be removed, but I do believe these materials should have limited access. Some materials are kind of hard to keep from children and teenagers, but I believe what is kept from children is up to children's parents to say whether or not the children can watch, look at, or listen to what ever it @MONTH1 be that is concidered offensive to some people. Some materials are and should continue to be censored, but to an extent. If a person were to watch an @CAPS1-@CAPS2 movie or even unrated at a movie theater, that person would have to be @NUM1 years of age or older. That is the law, and I believe this is a good thing. Parents should, also, definitely be the one's to censor what children watch, see, hear, or read. Children for the most part don't know any better. Children are curious little beings. If there is something that a parent has laying around the house that the child has never seen before that child will immediately wonder what this material is. If it were a magazine, they might look at it. I believe that there is a certain age to be allowed to look at these things, because there are a lot of materials in this world that are meant for adults only. These materials have to be kept open to the public or else all the people who don't find these materials bad would be broke because people fight for what they believe in and that costs money, especially if the people want to take their opinion as to why they should be able to see or hear whatever they want to because they are an adult and they are mature enough to participate in these activities. The people who fight for what they believe in would need a lawyer. Lawyers have to be paid or else they will not work for you. There are a lot of people around the world who know what they believe is good and bad. It's all in how these people being are raised, and were raised as a child themselves. If people believe something is bad, then they don't have to read, listen to, look at, or watch any of the things they find offensive. These activities are only for the people who do not have a problem with seeing or hearing these materials, therefore these materials should be censored, but only to a certain extent. If everything in this world that even one person found offensive were removed, then, what about all of the other people who do not find those materials offensive? What about the adults who find no harm in seeing or hearing these things? Not every person in this world has the same opinion. In conclusion, not everything should be censored. The materials children see and hear is up to parents. People will fight for their freedom to see and hear what they want because people know what they want and will get it any way they have to. This is @LOCATION2, let's not be overly strict about things." 4 4 4 4 3 4 +3262 2 "How many of you have ever heard any offensive language? Seen somthing that you think no other kid should see? Im going to guess a lot. Almost every person in the world has heard, said, or seen something that they shouldn't have. Most hear curse words before they can even walk. If you can't keep kids from hearing or seeing anything offensive then why would you try and edit what they read in libraries. After all it is a public place where anyone can go to read in peace. Almost every person in the world has said or done something wrong, but they learn from it. It allows them to mature and grow up. Children learn new words all their life and are bound to come across some that shouldn't be said. Yet, most will and see what happends and learn from it. If you take out things like that in the books they read, then how will they learn? The books that children read varys. The younger kids wont know what bad words are until they get older. The books that older kids read @MONTH1 have words in it to display a seriouse part to the story, or a tragic monment in the characters life. Some @MONTH1 even tell of what happens when the characters says a bad word and what happens to him if he says it. Authers usally vary their vocabulay in the stories that they write. If they are writing about the @DATE1's why would they try and clean up the grammer that was spoken from that time. Try and change what the reader might think about that time. Leave the libraries' books on the shelves no matter what is in them. Kids always see and hear someing oddensive no matter how hard their parents try. Books use words to display important parts of a story and our history. Books need to stay put in the libraries that they are in" 4 4 4 4 3 4 +3263 2 "Censorship of @CAPS1 of @CAPS2 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf -- that work I abhor -- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us,' is a quote from Author, Katherine Paterson. She is saying that there are some books that most people would think to be a little graphic or shocking, but we can not take those books off the shelf because then eventually there would be no books left to read. I agree with her in the sense that we can not take certain books off the shelves in our library. We can not take them off the shelves because that would be taboo in many ways. It would be stepping into hot water because the people would be violating the authors freedom of the press, who would decide what material was right and wrong, and how far is too far when it comes to censorship. These are just a few of the many reasons this is wrong. Taking certain books of shelves would be against our constitution. The @CAPS3 @CAPS4 gives all @CAPS5 citizens the freedom of the press. This means that they can write anything that they want without having to worry about the government's or the citizens' opinions. If we start taking certain books off shelves of libraries because they @MONTH1 include a few controversial things we are violating there natural right. Which leads me to my next argument in if we do allow censorship, who should be in charge? So many people want to include their opinions on what is right and what is wrong. So, who are we supposed to believe? On person @MONTH1 think somthing is out of line, but the person standing next to them would think it is ordinary. That is what makes this country great. We are a mixture of many different ideas that work together for a common goal. If the government would assign someone to censoring books, magazines, or music, there would be a uproar. How can one person say if something is wrong? And if someone was allowed to censor things, what would be included? How far is to far? This is a hard question to ask. If we were to allow one person to judge things what should be included? Would the judgement stop at just books, movies, and music? Or would it expand to judgement of clothes and lifestyles? If we implement this system of censorship, our who lives would become one big judgement. Self expression would go out the window because people would be scared of being deemed 'inapropriate.' Our world would become a puzzle of trying to fit in and to not be noticed, rather than standing out and pushing the human race forward. There are always going to be those people who disagree with things. They find it out of place or offensive. What we have to realize is that everyone views things in different ways. We as people need to learn to accept something out of the ordinary, and try to understand where otheres are comming from. If we can do that our world would be a much better place" 4 4 4 4 4 4 +3264 2 "I believe that everyone has the right to choose what book should be banned form their children,but not from the public. Everyonehas their owen belief in what he or she reads or rights even watches so the library is perfect the way it is . We can not through out books we find offensive because of our beliefs because somebody else might want to come along and read about a certain relgion or a certain topic. If we through out all the books and made a library with only the books we wanted we'd be in a lot of debt because then we'd have to build libraries for everyone instead of one that allows us all to enjoy our favorite books all at the same place. So if we have a problem with a book or movie form the library weshould just keep our children awayfrom that item and inform them on why they should not be subjected to that item" 2 3 2 3 2 3 +3265 2 "A very wise man in @CAPS1 life once said, 'The only way to escape temptation, is to remove the temptation all together.' @CAPS1 @CAPS2, @PERSON2, while growing up had poor influences all around him. @CAPS4 went to a run-down school, lived in a crime torn neighborhood, had a drunk for a @CAPS2, had no mother around to help him and had an older brother that often beat him and hurt him, emotionally and physically. As @CAPS4 grew up there were temptations to do the wrong thing morally all around him. @CAPS4 had no example of how to behave, yet @CAPS4 stayed away from @CAPS3, tobacco, drugs, guns, prostitutes, violence and fighting, and even something as 'minor' as pornography. As I have been growing up with @CAPS1 @CAPS2 as a hard working individual and having @CAPS1 mother around to help me with school work and preparing for college, the truth shows how times have changed. Just before I was born, @CAPS1 parents moved out of the old crime riden neighborhood and out of the city for that matter. We moved to the suburbs where crime is more rare and mostly just misdimeaners. @CAPS1 @CAPS2 told me one day, 'I'm scared by how the times have changed. When I was a kid, fowl language was un heard of in songs and music but now-a-days the songs seem to be about nothing but sex, drugs, killing people, and even about rape! At this rate I'm scared of the thought of what you're kids are going to see, son.' @CAPS4 had a valid point. In our curent days the youth can go to even the public library and get books on illegal drugs and movies with sex scenes and music that talkes about killing law enforcement officers. What has the world come to when a child of age eight @MONTH1 walk into a public library and check-out a book on cocaine? The worst part is that they can just read these books while browsing, they don't actually have to check the book out. A quote from the author Katherine Paterson stated, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' I believe that rather than hoping they don't pull the book off the shelf that we should just remove the book from the shelf and @CAPS5 have the book there at all. Public libraries are marked as safe places for children and adults to go to if they feel thretened or endangered. Well what if @CAPS1 @CAPS2 as a parent feels thretened by the fact that there are evils out in the world and they have become so accepted by todays society that they are even found in the public library? Then what? Public libraries and other public resourcess should be controled and monitored about what they allow into their doors. A parent SHOULD @CAPS5 have to hope that his or her child doesn't pick up a book about an inapropriot topic while in public but should know that that is @CAPS5 the case. Parents should be able to relax and rest asured that their child is safe from the filth of inmoral things" 4 5 4 4 4 4 +3266 2 "When I was in seventh grade I had a mission to read every @PERSON1 book I could get my hands on. Some of the material in her books proved to be a little too racy for most middle schoolers and some parents had apparently deemed it inapparopriate and our school librarian had made the decision not to carry it in the school's library. I was devastated, there would be no way my mother would agree to buy me all twenty some odd books that @PERSON1 had written and I didn't have enough money from my meager allowance and various lemonade stands to purchase them myself. Back then, this censorship which banned my favorite books from ever showing their covers in our school's library, bothered me immensely. I couldn't understand why some people's parents @MONTH1 view some of the subject matter in her books as too mature for our age group. However, I am having a change of heart. Now I can understand why our school's library @MONTH1 not be so fond of carrying books with racy aspects to them. That is why I believe that in school libraries, some books should be censored or marked mature. In public libraries though, these books should not be censored. Books need to be censored in school libraries because some children @MONTH1 be too immature to handle the subject matter within the book's pages. Most parents want their children to stay as innocent as possible for as long as possible and I can respect this idea. Having advanced books would also make the school look bad as not all parents would be on board with the idea and some would complain about their children reading something which they didn't intend them to find out about for many years to come. Not all censorship has to do with sex. Another type of graphic novel which is often censored is the violent type. The real-time war story which depicts the horrors of fighting for one's country and juxtaposes is with the thought that was is valiant and something to be applauded in the people back home. Some of these stories can get very graphic as to convey the point that war is not all fine and dandy and all it seems cracked up to be. These type of stories are important for our culture to prevent any misconceptions we @MONTH1 have or try to prevent them from a young age by shocking the reader. War should not be perceived as something fun and exciting and young @CAPS1 should know that so when they reach the age of signing up for the military they don't go into it misguided. In these instances, these violent stories are important for our youth to see and I think that they should not be censored in the library. One @MONTH1 raise the question of these books possibly invoking violence. I am not advocating that books with unecessary violence be put on the shelves. I believe that the books with violence which helps to convey and important point which should not be missed should be displayed by school libraries. Public libraries are a far different story. They have different sections for children's literature and adult literature. In school libraries the majority if not all of the library is devoted to children or teenagers. While in the public library it is the exact opposite, (unless the case in a children's public library). Most public libraries carry mostly adult books and a small section of children's books. In this type of setting it would be fine to allow any type of book in the adult section, marked mature. The subject matter doesn't really matter but the point of public libraries is to educate our citizens and if what they want to read is violent or sexually explicit then so be it, as long as they are reading at all and using the government funded resources provided for them. If the library was privately owned then the owner could decide to put whatever books they wanted into it and censor whatever books they wanted to. The purpose of libraries is to educate the citizens of this country and try to better them and help them make clear informed decisions based on their prior knowledge. If the books are censored then some messages might not get conveyed and misinformation @MONTH1 run adrift. We must prevent this at any way possible" 4 4 4 4 4 4 +3267 2 "In my opinion, they should not censor books. They should be read the way that the author intended for @CAPS4 to be read. I understand censoring songs and movies, though, so that they @MONTH1 be played on the radio and in the theaters. The books that are contraversial right now have great messages, and should not be taken off the shelves because everyone should read them. They were written with this language because @CAPS4's the way people talked back then. These books are classics and should not be changed, or removed from the shelves. In the book 'To @CAPS1 a @CAPS2 @CAPS3' by @PERSON1, they use a lot of bad language, but this is how they talked back then and the author is trying to convey a great message to the readers. @CAPS4 should not be changed @CAPS4 is understandable that they would change songs and take out the bad language so that they can be played on the radio. When an artist writes a song, they know that @CAPS4 won't be able to be played on the radio if @CAPS4 has bad or graphic language. I don't think they mind changing a few words of their song so @CAPS4 can be played on the radio for all to hear. The song '@CAPS5 You' by @ORGANIZATION1, they replaced the @CAPS6 word with '@CAPS5'. When he wrote this song, he knew that @CAPS4 wouldn't be able to play on the radio, so he changed a word, and @CAPS4 is still a good song. Movies are about the same as songs, they can't show a movie in theaters if @CAPS4 is too graphic. They @MONTH1 take out certain scenes, or change a few words, but that doesn't change the movie. Those scenes or words can be put back in the movie once @CAPS4 is sold in stores. I undertand and respect everyones opinion on this matter, I am just voicing mine. If these authors, or artists, wanted their work to be different, they would've made @CAPS4 so." 3 3 3 4 4 4 +3268 2 "Books are books, and as well as magazines, music, movies, etc., therefore one purpose only right? To read them well thats what I thought. Even though books, magazines and even some movies might offend some people, that doesn't mean they should be tooken off the shelf. I think they shouldn't be tooken off the shelves. Beacuse if someone just like you wrote it, someone like you will probably be even more willing to read it. Though sometimes the books and magazines are inappropriate and @MONTH1 offend some people, doesn't mean they should remove them entirely because sometimes people need to read things there not completely comfortable with. Because reading about things that you don't know about entirely sometimes helps you learn not to do those bad things. It also helps prevent some kids to not smoke and do drugs if they hear or look at those things from experience. Books and magazines that offend people are only telling them what they don't want to hear. Even though you @MONTH1 not want to hear about it, drugs and sexual content are always going to be in the surroundings of our children to see or experience. Putting a book or a magazine about drugs in libraries are not going to make kids or people try drugs. Its the people that can't control themselves when they get around it or see it or even hear about it. It's called self control and some people have it some people don't. Reading a book about drugs will only prevent things like that from happening. So I think libraries should just leave the books on the shelves. If some people don't want to see it in their local libraries then they don't need to pick up the book, magazine or watch the movie. These books and magazines and movies only help us become stronger people. They also help us as a community to try and stay clean. These books are very important to the community to read so they don't ever get the tendency of doing those bad things. This is why I think books that offend some people should't be removed from the libraries. The libraries itself just need to move the books and magazines to another section of the library if they don't want to see or accidentally read about something that could possibly offend them. This could help the people avoid such things. Libraries just need to keep the books and magazines and movies on the shelf. Just as they are today in our local library" 3 3 3 3 2 3 +3269 2 "Typically when you walk in to a library there are books, magazines, movies, and cds everywhere. Most of the items in the library are appropriate for children, but some are for adults and teenagers. Many people struggle with the fact that there are items in the library that are offensive to religion, have offensive language in them, or contain adult materials. In this country we have a freedom of speech and a freedom of religion which allows us to choose things that we feel are correct in certain situations such as this one. True, there are books out there that are very offensive to certain types and religions of different people. Have you ever seen or heard of a movie that was educational yet offensive? In my opinon people should have the right to censor what the library provides for their student or child, to a certain extent. If a book or magazine or whatever it @MONTH1 be is offensive to someone, I believe that they should be able to choose if their student or child gets to look at that certain item. People should not take this censorship ability out of hand. I believe that our generation is much different from ones in the past because most of the things we have to deal with are things that are most likely offensive to a certain religion and or type of person. Which in a sense is hurting the censorship of all the people who choose to take part in it. I believe that a person or authority figure at the moment should be able to take a book off the shelf if and only if they request it to the library and they approve of it. People have the right to do what they choose, but taking away other peoples chances to read a book, or check out a movie is going a little far with that censorship privalige. I think that when a person feels that an item in the library is offensive they should have to sign a piece of paper stating why they think it should be taken out of the library and the people you believe it is offensive towards. In doing so i believe that only that certain item should be taken away from that certain group of people. All in all i believe that the censorship in libraries is a spectacular idea because of all the bad things in the world that come out in books, movies, and cds. People have the right to change things if they believe they are wrong. They should jump at the chance if it comes to a point where they can change things for the better! Do you believe that censorship in libraries is a good idea? I do, because it gives people to oportunity to change and make things better for themselves if they believe something is offensive." 4 4 4 4 4 4 +3270 2 "I think that censorship should not matter in a library due to the fact that some of those books, magazines, music, and movies, are liked by different people everywhere. If you do not like something said or seen in some of the materials, then do not read or watch or listen to any of them. People have different tastes in what they like to listen to or watch or read about. Some people might like rap music but other might like rock music. People that like rock music might not like rap because of some of the languauge used in songs. This is why some people listen to other types of music and do not listen to the type of music that they find offensive. I like rock and metal music just because rap is a little offensive. I have had a lot of family members say that i shouldnt be listening to such music because of the language. Some people say that reading certain things is a prefferance, but what if you are sitting in a doctors' office and you would like to read a magazine that is just sitting around. If you start going through the magazine and find something you do not like or take offense to, either keep flipping the pages or put the magazine down. You have to think to yourself that there are other people that enjoy or are interested in something you might find offensive. The best thing you can do is put it down and think to yourself that it is not directed towards you. Magazines can have all sorts of stuff hidden beyond the pages, but sometimes you have to look at the cover to see what some of the things that are written in the magazine. Sometimes this can help you decide on rather or not to read it. Movies are always fun to watch no matter what occation. Some people like certain movies such as action, comedy, romance, or drama. Some people might not like action due to the fact that there is violence in almost all of those movies. Some might not like comedy because of some of the rude humor. There are just alot of types of movies out there and its not the producers fault that we do not like it. People make different movies because everyone is not alike. Some people might get offended by some of the contents of a movie and what you could do to help that is just by reading into the movies before seeing them. I think that cencorship should not matter in a library due to the fact that some of those books, magazines, music, and movies, are liked by different people everywhere." 3 3 3 3 3 3 +3271 2 "Censorship of books Should books, music, movies, magazines, etc., be removed from shelves if they are found offensive? Yes because certain things need to be removed from the shelves for example many things that don't need to be seen out in public. Personaly I think censoring certain things is alright because there are certain books that shouldn't be seen, music that has either swearing talking about drugs or other things, movies that kids shouldn't see like the rated '@CAPS1' or '@NUM1' that has either blood or nudity or somethen on that line, and magazines now magazines there are many types of magazines like for example adult, children, cooking, cleaning, house things, stuff for dogs or cats, and outside stuff. But censoring things that could be 'offensive' I can't understand how books can be offensive because some books are talking about history or something that has happen to them. Like for example lets just say a colored kid comes in and reads a book on '@CAPS2 slavery' that kid right there is going to get offensive about it and then that kid is going to say 'You owe me something because my anscetores were slaves' no your very wrong there kid because you either read the book wrong or you just didn't understand it. I have done that a couple of times either I got offensive about it and started getting very angry about it or just tose it in the trash because I got mad because I got offensive about it. Don't get me wrong I love reading but like I said before certain things are just ment to never be read or just never be found. But as for me getting offensive about a couple of books, movies, music, or magazines @CAPS13 I don't read magazines so I can't get offensive about that but books, movies, and music I take very offesively because like if I read lets just say the '@CAPS3 @CAPS4' and then I watch the movies @CAPS13 I take it offensively because nothing didn't tie in with the books or that person didn't direct it right. For books like I said I love reading books don't get me wrong but I do take very offensively because like something the character did or something that I wished I shouldn't have done something like that or a character dies and it reminds me of a close friend of mine or a teacher something on that line I either cry or I just stop reading the book period. Music now I could go all day on that because for example I used to love rap with a passion but now rap is just becoming horrible because the rapper is either talking about killing someone, drugs, or 'sex' it's like I said 'horrible' thats one thing that needs to go away for a long long time. But there are many other types besides rap. There is @CAPS5, @CAPS6, @CAPS7 @CAPS8, punk, @CAPS1&@CAPS10, etc like I said I could go all day on music. The people who are censoring things like t.v. shows like for example @CAPS11 @CAPS12 seriously there is nothing wrong with that show some people are censoring that because adults think it is bad @CAPS13 people there is nothing bad with that show. I have been watching it since I was five years old and there was nothing bad on it then, then why would there be something bad on it now. All there is, is a grown man acting like a child it's like your going to tell your husband or your wife or your kids '@CAPS13 @CAPS14 I'm sorry but I have to censore you because your a bad person.' I'm not saying that I would censore it I'm just saying maybe we as people should just take the time to look through some of these shows before censoring them. @PERSON1" 4 4 4 3 4 3 +3272 2 "libraries have tons...of books, cd's, movies, and magazines for people to read. they have all kinds for people who have intrest in certain things.and some might be offensive to some people...let me tell you what i think! Most people like stuff that is interesting to them and some like other things. There are certaint things for people for certaint ages to look at, there kids sections there is a teen section and there is an adult section. there could be some stuff that people will think is offensive. but that doesnt mean they would have to take @CAPS4 off the shelf they @CAPS1 @CAPS2 have to grab @CAPS4. simple as that. and thats all there is to @CAPS4..and thats what i think about library products like that. and what people should do to not getting stuff that is offensive to them...'@CAPS1 @CAPS2 @CAPS3 @CAPS4'!" 2 2 2 2 3 2 +3273 2 "I for one like books, movies, music, ect., without censoring. Sheltering the younge is not too bright because they'll get curious of things and sometimes they dont tell us they just find out for themselves. Most media and books have things uncensored for many different reasons and I think its going good. Yes there are some youth that take somethings too seriously but thats because the parents are not there to explain. I'm not saying go and show a four year old a rated '@CAPS1' movie but lighten up on somethings. Music is everywhere it's kind of hard to shelter your kid from music anyways because it's, well everywhere. You should be there to watch what there listening to but they're going to hear it sooner or later, might as well let them hear it around you then some one else that will give them the wrong advice. Some parents complain so much about this subject because they don't want to have to be there all the time to explain everything, but then why have a kid if you can't take that responsibility. Books are not so different, if a book has certain things that parents dont want their children reading then take it away from them. But most books with that kind of stuff don't have any pictures so they would have to imagine it and if they don't know what is being talked about then they wont be able to think of anything bad anyways. I'm not going to be a careless parent but I don't think sheltering kids from the real world and media and books is a good idea, very unwise. Kids are going to learn about curse words, drinking, and stuff like drugs someday, it's up to the parents to be there and teach the kid from right and wrong if they have a question from something they heard or watched or read. People worry too much about censoring and making sure everything is clean but media and books are not all clean, never has been 'till some people got lazy and didn't want to be there for their child @PERCENT1. When I was young my parents didn't shelter me or keep me from reading what I wanted to read, and I turned out fine. I don't drink or do drugs, because my parents were there if I had a question about something I didn't understand in a book or media. It's not the media or literature it's the parents, and if they can't be there to explain then why did they become parents. And as for magazines, if a parent is really that worried about certain ones around their children then don't let them buy them it's your choice. Don't you want your kid to get out there and live their own life when they become an adult? Then don't shelter them from everything. Let them find out about stuff when they ask a question. If they read something in a book and don't understand it then either you could tell them whether it's right or wrong or let them find out the bad way, that's your choice. If they see something on @CAPS2 then explain don't just freak out and block them from knowing what's out there in the real world. It's your choice to make on all that, but if you shelter them too long they'll never have a good life. Sheltering @MONTH1 not seem so bad now but wait 'till they get older and start they're lives, they wont know what to do or how to talk to people right. I've seen it with my own eyes on how bad sheltering kids from media and books can take effect on certain things in a human being's life. Censoring everything isn't good, the only way to learn anymore these days about real life is media and books. Not cesoring all that will help people see what the world needs to work on. So don't censor everything and let the next generation know what the generation before did wrong." 4 4 4 4 4 4 +3274 2 "In our world today, there is a way to find anything that you could ever want under one roof. People call these buildings libraries. Libraries hold almost every book ever writen and offer them to the public free of charge. If you can not find what you are looking for in a book, they also have many other resources: movies, music, magazines, and the internet. I am not here to say that we should band any materials that are offensives because everything is offensive to somebody. There is always somebody out in the world that would say they are offened just to make a point or to get attention in our world today even if they did not even care about the subject at hand. The internet can take you to just about any thing that you would ever want to go to. Yes, the libraries do have blocks on the internet for websites that are very outragously offensive, but people have learned how to get around the blocks. Libraries are set up to where all the kids materials is in one location, all the teenage stuff is in another spot, and all the adult materials are in another room. As a young child, I liked going to libraries and having fun and reading, but the one thing I never did was go to the adult room and I think many other other kids feel the same way. In fact, I have never seen a child in the adult section of a library. Movies and music have ratings and if the rating is over what the child should be watching, then the child can not check the movie or music without a parent's signiture. This ensures that kids can not check out bad or offensive materials without parental consent. Our libraries are set up just fine the way they are and I feel we should not try to change the libraries in any way. Movies and music have rating and kids can not check out offensive materials. The materials in a library are organized by age group and kids usually do not venture out of the area of their interest. Last but not least, if we took out everything in libraries that are offensive, then we would know longer have libraries in our communities." 4 4 4 4 4 4 +3275 2 "Dear @CAPS1 @CAPS2 Newspaper, or to whom this article @MONTH1 concern. It has become quite aware to me the problem we face in our media today. Information and how individuals seek it has evolved and is still changing at a rapid pace. Technology and new information is so vast its extremely difficult to censor. Two weeks ago i took my @NUM1 year old niece @CAPS3 to our local public library to find her a book. Once the automatic doors to the library opened she darted straight to the movie section. I couldnt help but laugh, because I knew thats why she truly wanted to go to the library. When i asked @CAPS3 what movie she was looking at, she turned the cover over with no reservation and, said' @CAPS5 @CAPS6'. 'I can't let my young niece watch @CAPS5 @CAPS6', I thought silently to myself. Then i realized how easy it is for a child to access adult information. I agree with the statement of @PERSON1 in some degree. I believe if we started taking certian information away completly we would find ourselves ignorant. But when we let our children ,the future of the world, vonerable to adult information they are greatly effected, @CAPS9 teens and violent video games, or explicit magazines. For example my niece is able to check out any book in the library, books like @CAPS10 @CAPS11 famous book intitled '@CAPS12 @CAPS13 ', which means my struggle in german. My @NUM1 year old niece can read quite well and is very impressionable as are many young children. Public media outlets need to be more heavily monitored, this includes public libraries, retail stores, the internet, and @CAPS14. I believe books should be censored by content much like movies. This makes the distibutor left responsible and the consumer more aware of the content and its effect" 3 4 3 4 3 4 +3276 2 "That saying Katherine Paterson said 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' I disagree with that statement. I think it is the goverment's choice if these items should be taken out of libraries or not. So we will need ligitement reason's to take some books off the shelf. Some people think we should take books off the shelf that teach the kid's our history. People don't have that right to take away from children. In the statement Katherine made, she is supporting that very idea; taking away our kids right to learn US history. The kids have that right to learn our very own history and some people want to take that away. Then what will our future generation be like. Some kid's might not even know who @CAPS1 @CAPS2 is or how we got here to this very continent. Parents also don't want us to read anything in books that have foul language or anything to do with nudity. I see what theese parents are trying to do. They are trying to protect their children, but the fact is people are going to have to go through this in life and if they arn't introduced at a younger age what will they do when they are older. Some kids that have that right taken away from will have no idea what to do when they get older and the foul language in the texts of theese books put voice into the books. We don't want the up coming generations to be blind to all of this because it is the real world. When I was was in fifth grade I liked to read alot. I really liked the adventure books such a the boxcar children and books like that. One time I went into the library and I picked out a book about a haunted house. The librarian would not let me check the book out because there were some texts in the book not apropriate for me. That sort of crushed my reading spirit and I really never wanted to go and check out a book by myself any more. So adults that want to take theese books of the shelves you might be stopping our generation from learning and if we don't learn then our next generation isn't going to want to read anything or learn. Theese are just a couple of reason we should not take books, magazines, movies, and music away from us. There are more people out there that have reasons to, so if you want to take this right away from us then be prepared for an argument because will fight for this right. So you adults who want to take that book off the shelf, you better have real good ligitement reason to take it off." 3 4 3 4 4 4 +3277 2 "Censorship is a tricky concept. It is a word that can ban music from stores, books from shelves, and movies from theaters. Katherine Paterson, an author, said that if all things reading or listening materials were removed, nothing would be left. I thoroughly agree with that statement. If someone finds one aspect of a work offensive, that does not qualify for the work to be banned or discarded. I believe offensive material should not be removed because of the following reasons: it suppresses the feelings of the author, nothing will be left on the shelves, and there is no defining line on what is or is not offensive. Now, I understand there is a vast amount of people who are against my position. I assure them that I understand those feelings. Some audiences feel that the removal of offensive material is good because it shields the ears of those who cannot handle the verbage or context. Others @MONTH1 feel that sensitive audiences @MONTH1 not be comfortable with the text. In addtion, many people believe that exposing people to violent, risky, and material with dangerous habits will evoke the same behavior in young children. Though these are all valid opinions, they are not enough to automatically think that it is okay to throw it off the shelves. Contrary to the opinions of others, I believe one reason @CAPS6 material should be kept on the shelves because if it is not on the shelves, the the thoughts and feelings of the writer will be suppressed. For instance, the book 'To @CAPS1 a @CAPS2' was banned for a long time. Harper @CAPS3's book, @MONTH1 have had some slurs we @MONTH1 find offensive today. However, that is the way people in that time spoke. Who are we to fault the people of the @DATE1 and @DATE2 for how that articulate words? By banning 'To @CAPS1 a @CAPS2' for the time frame that it was banned, generations were robbed of the powerful and beautiful meaning of the entire book. That meaning was that you cannot punish the innocent because they have done nothing wrong. The same for done for @CAPS6 book. @CAPS6 one reason why I believe that should stay on the shelves. Next, works of literature and music should stay on the shelves because as Katherine Paterson said if everyone removes a book, '...then we have no books left on the shelf for any of us.' @CAPS6 is very true. Many books have been on the banned book list. For instance there is 'To @CAPS1 a @CAPS2,' '@CAPS9 in the @CAPS10,' '@PERSON2,' and the like. What book will be removed from the shelves next? Once society is relieved of all literature, the next step will be music. Look at the singer/songwriter @PERSON3. He made some very sexually themed music. When people bought his records in the @DATE3, they had to be covered or placed in brown papered bags. They @MONTH1 be considered censorship, but that is one step away from being banned. His record company refused to produce his music under his name because of the scandalous lyrics. Because of that, @PERSON3 has changes his name to an unpronouncable symbol. What will be next? Finally, my last reason for why offensive material should not be removed is because who is to say whether or not something is offensive? A novel or song @MONTH1 be pleasing to @NUM1 people, but should it be extinguished from the record store or library because of one person? I do not think so. There are many words and concepts that have not be socially accepted of the centuries. However, those same appalling concepts have become accepted if not an uncommon habit. If @CAPS6 'offensive material' is given time, it will become unoffensive in the years to come. For all the reasons I have stated, I do not agree with removing anything off the shelves because something finds it to unacceptable if not offensive. If everything is removed because of an opinion, the world of the arts will be no more. Then, we as people will wonder what will be left of us. We will be nothing more than a mass of narrow-minded and ignorant individuals who know nothing about books, music, magazines, movies, etc. Now, I pose @CAPS6 question to you: If all was deemed offensive material, what would be left?" 5 5 5 4 4 4 +3278 2 "Everyone is different and unique in the world and they have their own unique opinions. Which brings us to the arguement of censorship on anything, because what some people find offensive others @MONTH1 not. The censorship that I am discussing is specifically about censorship in libraries. There are three main reasons why libraries should not be censored. The first reason is the books were written so they could be viewed by the public. The next reason is people have the right to make their own decisions. The final reason is parents can limit what their own children read. The censorship of libraries is an absurd idea, because a few people shouldn't make the choice for everyone. The first reason that libraries shouldn't be censored is the books were written so they would be read by the public. A library is a public place where people are supposed to get whatever books they choose. If a few people start censoring books then it will set off a chain reaction. After so many different books are censored there will be less books for peole to enjoy. All of the books that were censored were meant to be enjoyed. If books are censored some people @MONTH1 never even get a chance to see those books and they wont be able to learn from them. Books deserve the chance to be enjoyed like they were meant to be enjoyed and if they are censored that chance is gone. The next reason is people have the right to make their own decisions. If someone doesn't like a book then they don't have to read it. They don't have the right to go censor that book, because they don't like it. Another person @MONTH1 enjoy that book and many others @MONTH1 like it as well. People should be able to choose what books they want and they shouldn't be told by others what they can and can't read. They need to let others make the decision when it comes to getting their books. People can't go around preventing other people from reading a book that they enjoyed. They need to let others think for themselves and let them read what they want to. The last reason is parents can limit what their children read.If the parents don't want their children reading something then they can tell their children that they aren't allowed to read it. Other people shouldn't be able to censor a book, because it is innapropiate for children. The child's parents can protect them if they find the book offensive for their children. Everyone needs to worry about what they like and let the other people enjoy what they want to. Let the parents set the limit for their children and it makes life simpler. Also it allows everyone else to enjoy the books if they aren't censored just for children. Parents will worry about their children and adults can worry about themselves. The censorship of libraries is absolutely wrong and it is also unjust. Somone shouldn't be able to say, 'I don't like this book so censor it.' I will remind you of the three reason why this is true. First the books were written so they would be enjoyed by the public. Also people people have the right to choose what they want. Finally parents can set limits on what their own children read. Books should be left uncensored so they can be enjoyed by whoever wants to read them. Everyone needs to let books be enjoyed by all and they shouldn't take away a books cahnce to be loved by censoring it." 4 5 4 4 4 4 +3279 2 "Some people ask, '@CAPS1 books should be censored from libraries?' @CAPS2 are always parents who think that the libraries have books that are inappropriate for their kids, so they speak out against the library and tell them to censor or remove the books. I believe that in order for a library to censor or remove books, magazines, movies, music, etc., it depends on @CAPS1 the subject matter of those things are about. It's also the parent's job to monitor @CAPS1 their kids read, listen to, or watch. @CAPS2's no reason for a library to censor and take away books because one or two parents complain that it's inappropriate, when the parent can just pull their kids away from the book or movie and move on to something else. It's not the libraries job to watch kids and make sure they don't read, listen to, or watch anything bad. It's the parent's job. Katherine Paterson, an author, had a good point, also. She said that if she has the right to take books off the shelf, then so does everyone else. If everyone else starts taking books off the shelf, we have no books left. Everyone has a different view of books. @CAPS1 one person thinks is bad, another @MONTH1 not. It goes the other way, too: @CAPS1 one person thinks is good, another @MONTH1 think is bad. On the subject of movies, @CAPS2 are some that should be censored, like the movies containing extreme violence or gore. I remember going to the library when I was a kid, and I wanted to check out a @CAPS3 movie. I couldn't check it out because I wasn't at least @NUM1. I though it was ridiculous because it was only a @CAPS3 movie, and it was harmless. With magazines and music, it depends on the subject matter of those as well. Some magazines contain inappropriate pictures and articles for young kids, and it's those things that should be kept away from the kids. They don't neccessarily need to be censored or taken away, just kept in another section for teens and adults. The music poses a problem, though. A lot of the music these days can be very inappropriate, especially rap music. Music that sends negative messages and contains a lot of cursing in the lyrics should be censored, in my opinion. It doesn't belong in a library environment where young kids are roaming around and where they're influenced by it. In conclusion, books, music, movies, and magazines should or should not be censored or removed based on the subject. It just depends on @CAPS1 the subject is about and how inappropriate it is. @CAPS1 one parent thinks is bad, another @MONTH1 not. Overall, I think that books, music, movies, and magzines shouldn't be censored. Parents can just decide @CAPS1 they want their kid(s) to read, watch, or listen to" 4 4 4 4 4 4 +3280 2 "Today I am going to talk about certain materials, such as books, music, movies, and magazines. Should they be removed from the shelf if they are found offensive? In todays world it is hard to please every living soul. Every one is going to disagree about something in there life time. Life as we know it, everybody lives it a different way, and in a different place, but everybody has read a book, listened to music, and even read a magazine a time or to. People @MONTH1 interpride it different than others. Therefore I personally dont think they should take articules out of the library that you can learn something from, unless it's something like pornograh then they should deffently take it out. My conclusion is that you cant please everybody. I think that you shouln't take things out of the library that can help a student learn." 3 3 3 2 2 2 +3281 2 "At a local library you can find hundreds of books, all of different matter, a different style and of different stories. Not every person enjoys the same type of topic to read about, not every person enjoys the same music style, nor does every person enjoy the same fashion in a magazine or the same articles written in the magazine. No one is the same, we all have different likes and interest. Some people @MONTH1 find certain books distrubing and inapporiate, that the book shouldnt be allowed to be on the shelves of libraries. That is only some people, what one person finds distrubing and gross another person can find interesting. Not one person is the same so not all books are going to be eye ctaching and interesting to every person. If one person finds a book to be inapporaite, yet another finds it interesting and suggest that book to their friends, is that one whom disagress upon the reading material as unexceptable to thier community allowed to take the book from the shelf, not allowing anyone else to read it. Everyone should be given the same oppertunity to read the book that another made find inapporaite. People should be allowed to read the material and topics they enjoy to read. But when it comes to a nude magazine, all about sex and being naked, that should be in adult stores only. A child in the library can wonder over to the adult side and pick up the magazine and see all those women, that mother doesnt want her child to be able to pick up and porn magazine or video when she takes the child to the library. You must be eighteen or older to view or buy those magazines, so only keep those magazine in adult stores where childern wont be able to view them. Now some books @MONTH1 have a naked picture in the text but it could be to show how to give a breast examination, to educate women about breast cancer and to help prevent seriousness over that matter, to well educate the people in our society about the matter. Books of diseases that @MONTH1 have nude photos should be allowed, they educate the communitry and save lives. Although not one persons voice or opinion should be heard over others, we were all created equal, we all should be heard. Books are as of the same way, they were all created equal for men, women, boys, and girls to be allowed to read and find adventure, excitment, sorrow and anger. We all have different hungrys for different reading, music and fashin. In this world today, in our society, and in our community there are different views upon what the children should be reading or should be allowed to pick off the shelf at their local library. Books were created by different people, who dont share the same views,who look upon life in a different way, whose voices arent all the same. The book has a curse word in the text, that doesnt mean the book is an abomination and will poison the community. That book could be one of the best books the child or adult has every read in their life. Everyone has different views, likes, interest, wants and needs. Not one person shares the same hunger of reading material. We should all be given the oppertunity to read or not read what another person finds inapporaite. The author as well deserves to be heard and not shunned out because some people view his or her material unexecptable for the shelves of their local library. Freedom of speech, freedom of happiness should be implyed with the pursuite to find a book that feeds the hunger of one person. Let every voice be heard, let every word be read, no matter how big, small, or how many imapporaite context is included.Let everyone read as they please and let everyone be marry in what they read" 4 4 4 3 3 3 +3282 2 "Dear @CAPS1 @CAPS2 @CAPS3: @CAPS4 I am @PERSON1 and I have heard there has been a discussion about different things in libraries. And I would like to let you know what I think about the whole situation. There are many things like books, music, movies, magazines, etc. that people believe aren't appropriate. Many people have differnt opinions then other people. Everyone had a differnt point of view and sees things differently. Ecspecially when it comes to what is appropriate for kids. I believe if a child comes home with a book, movies, etc. and their parent does not approve the parent should go and tell the librarian about why she thinks it isn't appropriate. The librarian should listen to the parent and then take a look at it for herself and see what she thinks about it. And if she finds it not approprite then she has the right to take it off the shelf. If the parent comes in and talks to the librarian about why something is not apropriate and the librarian believes it is alright then maybe she needs to just put the book, movie, etc. in a different area of the library. Like if a little kid finds a book and the parent says its inappropriate the librarian could take that book out of the little kid section, and maybe put it in a older kid area. I have actaully had an experience with this. At my old school adults were always complaining about books they didn't think were appropriate. When the librarian told us, we were upset because us girls loved to read those books. The librarian at the time thought they were appropriate and really didn't want to take them out of the library. So she had a great idea. She took those books, the ones people were complaining about, and put them on their own special shelf behind her desk. If you wanted one of those books you had to talk to your parent or bring a note in saying that you were allowed to read the book. It was a really good idea, because if your parent wouldn't allow you to read them you weren't tempted to get one, and wouldnt even see them. And the people who were allowed and wanted to read them still could with no problem at all. Another idea I have is if you see a younger kid by older people books, movies, etc. go talk to them about why they are over there and, tell them that, that's not their age level material. Try to direct them over to their age level area, and try to find them a book, movie, etc they @MONTH1 be interested in. I believe that everyone has different opinions but just because one person complains it doesn't mean it has to ruin it for everyone. Just because one person doesn't like it doesn't mean everyone else does too. I think censorship should somewhat be in libraries, but not to the extreme. There should be many different topics in libraries so everyone enjoyes the stuff there. There should be action,adventure, humor, love, etc. Talk to people and see what they like. And just because one person complains, dont take it out right away because to another person they might love it. Thank you for taking your time to read my opinion, and I hope I helped" 4 4 4 4 4 4 +3283 2 "i think that the libraries in generally shouldn't take themusic,movies, or the magazines away. Because you never know what goes on at there home and they just want to get away and relax the self at the library to read. I think that they shouldn't take the books off the the shelves just for a reason because people love going to the library.And if they don't have those things then what the point of going there.my other thing that they shouldn't take those things away is thatthey will not make a profit. when the people go to the libraryand they dont see those things they are going to wonder want happen.i think that it shouldn't be the children fault that all of the books are gone. It should be the owners and the people that work at the library fault that they made them take the booksoff the shelves.I also think that when the children goes to the library they are going to ask there parent or someone.Where are the book because they want to read and also where are the book so they can check them out.But the people would want to keep getting the books from the library to check them out.I think that the people should not take the books off the shelves for a specific reason and that reason is that people and children would go like on a weekend to read if they dont have any of those things at home.My thing is that they shouldn't just remove anything at all because it going to be a big commotion. So by removing all of that would be sad because what if no one has no place to go and they are feeling loney and they want to go the library and read. but my whole point agbout it is that who came up with no books,music or magzines on the shelves.But i also think that if they did that in the real world. Then it would be terrible and a crisis to the people.I think that they should not do that because the people love to read listen to music and etc. I also think that they should not do that because people love going to to releave some stress that they might have and they jus want to go there.I also think that they might not do it anyways because they know the people love there jobs to not to.One of the things that i like is that when i go to the library it is nice and quiet and we can listen to our ipod or our @NUM1 player something like that.Some people just love to go so that they can see there friends and communicate with them to get on the computer. My reason is that they shouldn't do that is they can lose everything like there jobs and etc." 3 3 3 3 3 3 +3284 2 "Are you offended when you read a book and your eyes cross over a swear word? Does it bother you to hear them with your own ears? No matter how hard you try, you can not avoid the harsh language of today's society. Have you ever walked into your library and started reading a book but decided to put it back on the shelf because of the language in the book? Many books in today's libraries have offensive language. Sometimes it gives the book character and makes the story more real to the reader, but in other cases the reader @MONTH1 be offended. In my personal view, if you do not like the language of the book, put it back on the shelf. The author wrote the book the way he or she wanted it to be written, not the way you would like to see it. Some material @MONTH1 be inappropriate for younger readers. The maturaty level of the reader definitely makes a difference when discussing censorship. For example, I am sure many parents have a problem with the movie 'The @CAPS1' for its use of alcohol and drugs. Many people find this movie funny and entertaining. Should this movie be taken of the shelves because it does use alcohol and drugs? These words and actions we try to censor are not going away. We see and hear them in everyday life, no matter where you @MONTH1 be. So if you don't like the language in the book, choose a different one" 4 3 4 4 4 4 +3285 2 "I think that if certain materials are offensive that they should be taken off the shelf, depending on how they are offensive. If they are offensive by rachism or being prejudice i think they shouldnt be on the shelfs. Also if it is offensive to women or men then it should be taken off of the shelfs. People should be able to read and listen to stuff without being offended by it. I think that if it is offensive to different races then yes it should be taken off the shelfs. I think this because, children can read this and then, they would beleieve that it is right to be races against other races. I think that children and other people should be able to read and listen to stuff without it offending others. Also they should be able to do this and not learn how to be offensive to others. People reading these things that are offensive could cause problems with others. It could cause problems for the libraies also, doing this by people not wanting to come back due to the fact of they have offensive material. Then with people not wanting to be there then the libraies wont have enough service and they will have to close. I also believe that if the masterial is offensive to women/men then it should be taken off the shelf. The magazines that have women and men in them can be offensive, because alot of people look at them like they are trash. It makes a bad impression on some people. Its rude for it to be there. It puts not very good thoughts in some peoples heads. I believe that if material being read of listened to is offensive then it should be taken off the shelf. It can cause many problems with others. It could cause us to lose libraies if others choose not to go anymore. Things should not be left around if they are offensivce in any way." 4 3 4 4 3 4 +3286 2 "There are people out there that think somethings should be taken off the shelves or not even made. But thats their decision and not everyone should listen to it or just try to do it. I think things that are offensive should and shouldn't be taken off. They should because it might offend someone and it shouldn't beacuse then people can read or see it or even listen to it if its music and then know more about it and then they might not do the same things. So people do have a choice on what should be banned or not but they also have a choice on if they want to read it or not too. They might not want their kids to read it but their kids will still hear the same things somewhere else also. I think they shouldn't be taken off because no matter what they do or what they say, stuff will still be out there in the world that people think are offensive and you just cant stop all of it. I listen to a lot of music when I drive to school and most of it is rap music. Yes, most of it is ofensive to girls and stuff but thats just music, it doesn't mean its true or anything. People have the choice to not listen to it or not read about it. If they think it is offensive to them or to anyone else or just not like it, they have thr right to just avoid it and not look at it. People want to just change everything and make sure things are perfect and nothing bad is in the world. But no matter what you try to do, something bad will be out there waiting for you. You just got to know how to avoid it. Avoiding things that you don't like would be a lot easier then just taking all the time you have to to try to get something banned off of a shelf. You should keep it on the shelf for the people who want to actually read it or just want to read it to see what its all about. When I read or listen to something thats offensive and I don't like it. I will just turn it off or not read it anymore. Not try to get it banned because that takes to much time. People should just not worry about what is being said or written and try to get it banned becuase another book will be out again and it will be the same. So as you can see I think the material that is written should just stay as it is and people can have their choice on if they want to read it or not. If they do and they think its offensive then thats their fault for reading it when they know its gonna offend them. And for the people who don't read it, they are doing it because they know it will offend them. So not reading something that you don't like will be better in the end because then nothing will be banned and maybe nothing else will be made in the process of it being banned. So nothing should be banned and just keep it and everything will still be the same. We might not want our kids to read something bad but they will one day so why not just get it done and over with in the benginging." 3 3 3 3 3 3 +3287 2 "Censorship in librarys could be useful so children and young people don't see what their parents don't want them to see. In the kids section, they have kid's books. In the adult section they have adult books. Those sections are there to keep children from reading or seeing things that @MONTH1 be what their parents don't want them seeing. But then again, a parent could bring their kids into those sections so they can find their books without leaving their child unattended. Completely taking books out of the library because they are offensive is not a good thing. It takes away certain literature that people might like reading. But then it also makes those people that want it censored uptight. I am a big reader so I have been to librarys many times but I never actually saw any material that was so bad I thought it needed to be taken out. If there was though, they should just make an alternative section for books, music, movies, and magazines that some people think should be put there. For example, some albums that contain offensive language or topics have '@CAPS1 @CAPS2 @CAPS3' stickers on them. It's simple enough to see these stickers so that you can put it in the alternative section of a library. People that like and want to listen to that can easily go to that section and pick it out. Books always have reviews, so people can tell if those are too @CAPS1 or not. The library staff could put those books in the alternative section. Movies always have ratings, so staff could put anything rated @CAPS4 or above on those shelves. Now I've never seen a bad magazine at a library before. I'm sure they would never have magazines such as '@CAPS5' or '@ORGANIZATION1' there. People wouldn't need to worry about magazines from my experience. That is my solution. Make an alternative section for all the offensive material in the library instead of taking it out completely. That takes away a lot of literature for the people that like that material. You couldn't take away movie classics like '@CAPS6' or '@CAPS7'. Those movies have been put on the highest of best film lists. Yes, they are rated @CAPS4 but no, that doesn't take away the fact that they are great movies. Don't take the material out. Just make a new section for it." 3 3 3 4 4 4 +3288 2 "There are thousands of libraries throughout the world. All of which are filled with numberous books, magazines, music, movies, ect. for people of all ages to obtain. Some people think that materials in a library should be censored while others think everything should be allowed to be there. I do not think materials at a library should be removed, or censored, because the materials would decrease, people would choose what to look at, and the material would help with research. Materials at libraries should not be censored because the materials allowed at the libraries would decrease. Everyone has different opinions on what they think is appropiate or not. If one person were to decide a book was unappropiate and take it off the shelf, another person would have the right to take another book that they thought was unappropiate off the shelf as well. However, since everyone has different beliefs on what is appropiate and what is not, the books would rapidly decrease.The same would apply to the other items at the libraries such as magazines, movies, ect. Another reason is because everyone has their own choice about what they want to look at in a library. A fifty year old man would not have the same intrests as a thirteen year old girl, so if some materials were removed, there would not be as much of a variety to chose from. If there is a little variety to chose from due to materials being censored, the amount of people using the library would decrease causing the library to eventually get shut down from the lack of people using it. Lastly, materials at a library should not be censored because each and every item there could help with some kind of research. A child from high school could go to the library to look for a book to help research things for a report in one of their classes, or an elder women could go to the library in search of a cookbook to research something new to make for her next home cooked meal. Both people would need a material from the library to help them with their reasearch, but if some materials at the library were removed, they might not be able to find something to help them. Materials at a library should not be censored because the materials would decrease, people would choose what to look at, and the material would help with research. Some people believe removing items at a library should be allowed, but I strongly disagree. There are many different materials in the libraries around the world today for people of all ages to come in contact with, and that is the way it should stay" 4 4 4 4 4 4 +3289 2 "In my opinion i don't really think certain items should be romoved from the library. I think this because many people have different kinds of interests in many things they love doing. In my personal opinion I never remove anything from a library because I know their are alot of people with many interests. At the same time I do understand some of the items should be removed from the library, beacuse they could not appropriate for childrern. If we removed cerain items from the library people would get mad. I think no item should be removed from the library because many people are interested in many things. There are many ways we can arrange the library by sections so that certain books or topics are in one area, and others are in another area. We can aslo make sure that no under age kid can go to an adult area. If we don't remove nothing from the library we would have alot of people coming. In the other hand if we removed a certain type of books, people would get mad and not come to the library. If that happens smaller amounts of people will come. In my personal opinion no item should be removed from the library because many people have many interesting in many topics in the library. If we remove a certain item from the library then we would loose a certain amount of people. Thats why we should not remove anything from the library to provent the decrease of people coming to the library. Like I said many people have many intersts in many things and they deservie to enjoy them in the library." 3 2 3 3 2 3 +3290 2 "Books mean a lot to people that love to read. Books have pictures, or they @MONTH1 even be poem books. Some books should not be on the shelves in libraries. They have offesive language and not so well of pictures. They @MONTH1 be learning books but the little kids do not need to see that. I think books should be removed from the shevles if found offensive. Libraries need to up their standards of what should be in the library and what should not. The books, movies, music, ect. needs to be in a certain section of the library to where the little kids can not go or reach. A library is a family place not a fun zone for adults. On @DATE1, I went to the library with my brother to pick out a book for him. @CAPS2 is only six about to be seven. He had told me he wanted to get a book about dinosuars, but I told him to get one on space and aliens. @CAPS2 was very into reading. He read to our mom everynight before he would go to bed. We were walking down @CAPS1 street when a bolt of lighting struck through the trees. 'ekkkk!' said @CAPS2 as he ran around me. We walk into the library and the old lady at the front desk says, 'there is a huge storm coming.' We sorta ignore her and go on about our bussiness picking our books for @CAPS2. @CAPS2 and I walk up stairs to the childrens section. @CAPS2 is looking around and he says 'hey kayla, what is this and he picks up a naughty magaizine. i rush over to snach it out of his hands and he gets scared. He ask 'but sissy what is that?' I do not respond. I tell him to pick a book and come on. He grabs one and we are on our way to get it checked out and the lights go off. It was completely dark. '@CAPS3 stay calm.' a man says. The back up lights come on and we all go to the lobby area. We sit there for twenty mins and the lights are back on. Everything is normal again and we go to check out. We get up to the front and i turn in the bad magazine that @CAPS2 had found. The lady askd why I was bringing it to her and i had to tell her the bad news, that it was up in the childrens section. She said 'oh my!' @CAPS2 laid his books up on the counter and we checked out. We walked out the front doors and we were on our way home." 4 3 4 4 3 4 +3291 2 "Should public libraries have to censor some of the books, movies, and music they have on display? In my opinion they shouldn't have to. We as people have the right to learn, read, and expand our minds in whatever way we see right for us. There are three main reasons as to why I feel 'offensive' pieces of writing, movies, and music should be allowed in public libraries. One reason as to why they should not is that people have been writing and expressing themselves throughout history; therefor, there are far too many pieces that we would have to get rid of in order to eliminate them all. The second reason is that people have different opinions as to what is 'offensive' and what is not. The third reason that will be elaborated on is that people will be exposed to whatever it is you try to hide, if not throught the art of music, movies, or books, then through the real world we live in. Throughout history, man kind has been writing things down to document experiences, events, and ideas that have happend throughout history. With those expierences come profanity, sexuality, death, and abundant amounts of situations that the public eye might consider 'offensice'. If you were to try and delete these pieces, one you would be destroying a big part of history, and two there are far too many books, movies, and music pieces that you would have to get rid of. In almost every form of art there is some remark to something negative. If you were to take them out, you would be left with very few, if any books. The second reason is that poeple have different opinions on what is bad, and what is not. For example, I was going on a band trip with all the other band students, and on the way there we put on a movie. We ended up having to turn off the movie, because one parent found it inappropriate. While that parent didn't like it, other parents were upset we turned it off, because they saw nothing wrong with it. The same rules apply with books and music. It all depends on personal views as to it being 'offensive' or not. The third reason is that poeple will expierence all of the things you are trying to hide. If you take it out of the library, one will hear about it on the news, on the radio, in a restraunt, in schools, just about anywhere they are. Taking out the pieces in the library, will be useless in the long run. For example, people want to take out a book called, 'The @CAPS1 of @ORGANIZATION1' because it uses the word 'nigger' in the story quite a few times. There are a lot of people that feel it is not appropriate enough to be taught in school. On top of that, they want to get rid of all the books that say 'nigger' and replace them with books that say 'slave' instead. In my opinion that would be a stupid thing to do, because it takes away the authentisity and effectiveness out of the book. In the book when they use the word it is very powerful and makes you think. If you replace it with 'slave' that statement or passage loses its power on its readers. In conclusion, I strongly feel that libraries should not have to take out the 'offensive' books, music, or movies. If it does happen, we would be deleting part of our history and knowledge. With that if we do it, how will we know what books to take out, if everyone has a different opinion on what is 'offensive' and what is not. Finally, should we do this, it will not solve anything. People in today's society will still be mean, still do sexual things, people will still use harsh language, and people will still expierence 'offensive' actions. That is the society we live in and poeple will have to accept that fact. That is why I feel that we need to keep all of the 'offensive' pieces we have, that way the people reading them might be ready for the real world once it hits them." 5 5 5 4 4 4 +3292 2 "Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf-that work I abhor-then so does everyone else. And then we have no books left on the shelf for any of us.' Katherine has a good view on the idea of censorship in libraries. Most books have ideas and topics that are offensive to one person or another. I believe that books that have something offensive in them should not be censored. An idea that is offensive to one person @MONTH1 not be offensice to the other, and vice versa. Someone who is pro life on the controversial issue of abortion @MONTH1 believe that a book about a teenage girl getting an abortion is offensive and against their beliefs. In truth, the author was just trying to convey how the teenage girl feels and what happens when you go through with something like that. Katherine Paterson said it well when she mentioned that no books would be left on the shelves. If every person felt threatened or was offended by just one book, libraries would have to close because no books would be left. Books on the topic of religion would definitely have to be censored as well because people of differing religions. The @CAPS1 @MONTH1 be offensive to someone of @CAPS2 religion, and because of that the @CAPS1 would not be able to be sold. If that happened there would be an ongoing battle about it. Books should not be censored because an idea that is offensive to one, @MONTH1 not be to another. If books were censored, literature would have an immediate downfall. When authors write books they are pouring their hearts out to us. If someone thinks their book is offensive and it gets censored, the author of the book would be even more offended. Their life's work could go into one book and just because a group of people do not like it, it gets taken off the shelves. I don't know about you but I would rather read a book with an interesting and maybe controversial topic than a book that seems to go nowhere. If censorship in libraries actually happened, many authors @MONTH1 say forget it and not even right anymore. It is very hard to write a book that pleases everyone. Also, attraction to literature would seize. People are not attracted to books that do not have a quality topic that gets them interested. Literature would have an immediate downfall if books were censored. If books were censored, the quality of learning would not be the same. Books are tools for learning and taking them away would be harmful to education. Some teenagers including me @MONTH1 find some of the material they read-even in school-to be offensive or have a touchy subject. I do admit that reading books for class is somewhat annoying at times, but it will help us in the future. These books have meaning, which is why they are picked by teachers for students to read. Something offensive like a cuss word is not going to keep someone from finding the meaning of the book. The quality of learning would not be the same if books were censored. A book can be offensive, yes, but one book is not going to ruin someone's life. An important thing to remember is that by taking a book off a shelf, or not playing music because of a few harmful words is like denying the creativity and compassion of an author or artist. One book that is offensive to one, @MONTH1 not be to another. If books were censored, literature would have an immediate downfall and the quality of learning would not be the same. For all of these reasons, censorship in libraries should not be allowed." 4 4 4 4 4 4 +3293 2 "Recently the growing issue of censorship in libraries came to my attention. This is unfortunent in the extreme. People have a right to unmolested knowledge and censoring libraries is a direct violation of that right. Libraries are meant to be a place of learning and they should be kept that way. History is filled with moments both glorious and inglorious. We aren't always proud of want we do or what happens but those events remain, irrespective of whether or not we choose to acknowledge it. To think turning a blind eye to the less than clean will make it go away is not only unrealistic but also totally ignorent of facts. I realise that there are some things chilldren should not see or hear and I'm not suggesting we expose them to these things. I'm merely saying that trying to hide them from what we deem to be unclean is neither right nor a good idea in general. We can't shelter our children forever and sooner or latter they will learn things we wish they didn't. This is inevitable. Life doesn't seek to hide its darker side from us at all and to hide it from our children will serve little more than to handicap them. Do children need to be protected for some things? Yes, for a time, they do but it is the role of the induvidual parent to protect their child. Protect the children but don't do so at the expence of everyone else. Why should the views of some hinder all others? Those who would persume to know what people should see and what they should not are out of touch. Those prudish enough to believe that people need to be protected for natural, form history, or from their own desires have no more right, and preahaps even less than everyone else to interfere with induvidual decision making. People have a right to make their own choices on what them believe but no right to force those oppinions on others. This essay @MONTH1 make no difference but it has said what needed to be said and thus served it's purpose. With that task completed I can finnish with a good concious." 4 5 4 4 4 4 +3294 2 "I believe that if you hear or read something offensive they should stay for many reasons. I feel everyone should know the history of the world, whch means rascitism or being offended. I feel if you are reading a book or listening to music and you hear something offensive to you , just turn it off. You aren't being force to listen or read it, its your choice. Libraries should keep the materials cause the people of the world should know how it feels to be offended. I certainly don't like the feeling of being offended, but its something people go through life with. There @MONTH1 be people out there that probably disargree's with me, its just my oponion. You @MONTH1 go to the certain libraries in the world that doesn't allow certain people in because of their oponions on the selection of materials the library offers. I once heard a woman at a library talking about how she went to the police about someone writing offensive things towards her religion on the internet @CAPS1 happen to the person but, its the fact that she went to the police. She could have handle the sitiutation herself, by just comforting the person about it. I feel that the mintue she started to read it, she should have turned away or got off the website. It was her decision to keep reading it. I don't see why she should go to the police, if it was just the person's oponion. Libraries should keep the materials cause maybe someone wants to know the meaning of being offensive or being offend. Libraries shouldn't have to hide this topic from anybody. People are offensive because they were rasied or just born that way. Some people just have to deal with these people. They might not like it or @MONTH1 do somethings towards them in there lifetime but, they have to live with them. In the end, either if they want to or not libraries should keep certain materials out even if they are offensive towards people. Libraries shouldn't just change there ways for certain people that don't like the materials. They are plenty people of the world that want to learn more on the topic. These people shouldn't be stopped by the ones who don't like the topic. Its just apart of life" 4 4 4 4 4 4 +3295 2 "Should certain materials such as books, magazines, movies, etc., be taken off the shelf in a library if those items @MONTH1 be offensive towards others? There are many possible answers to this question, but I believe that if someone does not like a certain book or finds it offensive they should not have the right to take it off the shelf. I believe that him/her should not be able to take it off the shelf because if that person finds it offensive, there are others who would not find it offensive. For example, @PERSON1 might want to read a book about abortion, but @CAPS1 is against and offended by that book or subject. If that book is taken off the shelf, it is restricting other people, such as @PERSON1, who would like to learn or read about that specific subject. Another reason why I think that certain books, magazines, music, or movies should not be taken off the shelf is because if one book is offensive to some people, then another book @MONTH1 be offensive to others as well. So, if there are people who find some books offensive, and are then taken away; there will be a little amount of books for the other students to read. Even though certain books @MONTH1 offend people, I think the book or magazine should not be removed from the library or shelf. I believe that if someone does not like a certain book, magazine, movie, music, ect., that person should not have the right for that book or any other material to be taken away. They should not be taken away because other people might want to read that book, and secondly, that would leave a lot less books for other people to read and learn information about." 3 4 3 4 4 4 +3296 2 "Dear @ORGANIZATION1 , I dissagre with removing materials from the library. I personally do not think it is the libraries fault if someone is offened by books, movies , music or magazines etc. If they did not like the book or movie it is their fault for picking it in the first place. Children who are under the age of thirteen should not be able to watch movies that are not for them , they should not be seeing those bad movies or scary movies at such a young age. I want the libraries to think this over ; because it is not fair to adults or older children. Movies that are funny entertain children daily ; some children even quote movies and make other children laugh. I know for a fact us teens watch funny movies to make our rough day turn into a better day , well that is what I do at least. There are some movies out there that are just so funny , I could quote ever line of it. Music on the other hand is very important to teens these days. It is always enjoyable to me. I love music without it I'm not quite sure where I would be in this world. I love many different kinds of music , most of it is very fun to listen to. I'm not a big fan of rock , you would not see me picking that up from the library.Us teens love music , we use music for pretty much everything. We dance to it , sing to it , workout to it , and most of all we just enjoy it. Books are always important , even though I do not like to read that often I still like to read books that interest me. For example you would not see me reading a scary book , because it would just remind me of the movie , and I would have nightmares. The books that interest me the most are fiction books. My two favorite books are A @CAPS1 To @CAPS2, and The @CAPS3 @CAPS4. Both of those books are by the author @PERSON1. I love all of his books but these ones are the best. Please re think your decission about getting rid of the bad music , books , and movies. @CAPS2 it is not the libraries fault it is the people who are borrowing them. If they do not like it then they should have never taken it home in the first place. I say we just let it be, and let people be happy" 4 4 4 4 4 4 +3297 2 "There are many books that are not appropriate for childeren or teenagers, though they can still check the books out in the library. They can take them home, read it, and discover some things that shouldn't be discovered at their age. Childeren check out rated @NUM1 movies and rated @CAPS1 movies and unedited @CAPS2's and they learn a lot of bad things or words that they should not use at the age their age. The libraries are supposed to make sure your @NUM2 years of age before you check out a rated @CAPS1 movie. Also you have to be a certain age to buy @CAPS2's and games that are for the elderly teenagers. You should have to be a certain age to check out or buy a movie or anything that has vulger language. Today kids aren't as mature as they used to be. Things today are way different. My opinion is that teenagers should have to be a certain age to rent or buy things that are bad but I have read some books that were not really all that great for my age either. I guess it is just how mature you are and ready to accept vulger things. It should have to be your parents decision to see if your ready or not. My final conclusion is that it depends on how mature you are and if you think your ready. The stores and libraries should set limits on books and ages. Although some people will not agree. There should be boundaries for teenagers and age privelages and they should respect them enough not to do them" 3 3 3 3 3 3 +3298 2 "Many people base their actions on their own views. What @MONTH1 appear to be justified in their minds, due to their beliefs, might cause an uproar from others. One instance of this: media censorship. It happens every day, every place. Someone can take it upon them selves to ,in their mind, 'make the piece better for @CAPS8 viewing'. In reality, though, they are really ruining the experience of the media for everyone else and even impeading on the rights granted to us by the constitiution: @CAPS1 of the @CAPS2. First up, books in the library. Everytime I go to the library and pick up some books, there is always one book with the 'bad parts' marked out. Someone had found these words offensive and decided that no one should have to see or read them. To me, it was irritating. I don't always like those words either, but having them marked out is distracting from the page and , for me, ruins the author's voice and style of writing, hence impairing what I draw from the book. Some marked-out words aren't always offensive to others, either. Simply put, if you find the book offensive, don't read it. Others @MONTH1 enjoy it, whether they share your views or @CAPS7. People also take the liberty of simply removing whole pieces of media from shelves just because they find it offensive. If everyone removed anything they didn't like, or found offensive, there would be nothing left in the world for anyone to enjoy. We, as @LOCATION1 citizens, have the right to make our own choices, and our choices should @CAPS7 be limited by the views of certain individuals. That means that if I want to read or view something, it should be available to me, so I @MONTH1 learn and expand my views, even if it makes someone else uncomfortable. With nearly every disputable form of media that comes out, people harangue the producers and say the piece should have never been made. Wrong. Producers and authors can publish whatever they would like. It's called @CAPS1 of the @CAPS2, and it is a right garunteed to us, as @CAPS5 citizens, under the @CAPS6. And learly, if pieces like that are being produced, people read it. Plain and simple. You might @CAPS7, but maybe a neighbor, or even a relative, @MONTH1 @CAPS7 be offended by it and might read it. Supply and demand. If everyone found it offensive, no one would buy or read it, and because of that, it would no longer be produced. You would get your way. But, no. Some people do read it and it is produced. Again, if you don't like it, don't read it. People should @CAPS7 take it upon themselves to censor what others can and can't do, see, or read. If someone wants to read a story that has 'bad words' in it, so be it. Others should @CAPS7 ruin the experience by marking the words out. @CAPS7 only is it rude and ruining the experience for the reader, but it is also destroying someone else's property. If someone wants to view something that is against a certain religion, so be it. They have the right and no one can take that right away from them. In my opinion, censorship in libraries, whether by government, or other civilians, should @CAPS7 be allowed. We citizens are allowed the right to make our own choices and in @CAPS8 libraries, the @CAPS8 should be allowed to read or watch whatever they want. Choice is one of the prinicples of the constitution, and it should be protected, @CAPS7 limited" 4 4 4 4 4 4 +3299 2 "Many libraries contain books, movies, music, and magazines that can be considered offensive. All of these libraries, however, have certain reasons to have these books. Whether those reasons are for education or for recreation, the libraries have reasons for them. So, the libraries that do have 'offensive' books, should be allowed to keep them because they are not offensive to everyone, and they could be beneficial to the reader. These books that are considered offensive to some people @MONTH1 not be offensive to others. For example, @PERSON2, who is from the @CAPS1, comes into a library and finds a book that is all about the @CAPS2 @CAPS3, and she reads that the @CAPS1 is full of a bunch of people who mistreated their slaves. @PERSON2 gets a @CAPS5 offended by this. Then @CAPS5 @PERSON3, who is an @CAPS6 @CAPS7, picks up the same book and reads all about the @CAPS1 and how they treated their slaves. @CAPS5 @PERSON3 thinks that the same book that @PERSON2 hated is a great book. As shown in the example, @LOCATION2's people are very diverse, but what comes with that diversity is a lot of opposing views in its citizens. A library doesn't want to only appeal to one race, it wants to appeal to all of them, the only way to have that happen is to accidently offend some people in the process. The citizens of the @LOCATION1 need to be more understanding that their race isn't the only one here. If a book offends a person, that person simply should not read it. However, these books, who many @MONTH1 find offensive, could also be beneficial to its readers. Some of these books could be helpful to the people who choose to read it. Going back to the @CAPS2 @CAPS3 reference, @PERSON2 was reading her @LOCATION3 @CAPS11 text book, and she read about the horrible deeds the @CAPS1 had done regarding their slaves and the fact that they lost the @CAPS3 to the @ORGANIZATION1, and she got offended because her side lost. Then @CAPS5 @PERSON4, who is in the same class as @PERSON2, was reading his history text book and was becoming more and more elated as he read on. He found out that kids all over the the country were learning about what had happened to his ancestors and that the @ORGANIZATION1 defeated the @CAPS1. @PERSON3 was as happy as he could be with this book, whereas @PERSON2 couldn't be any more displeased. If this book was pitched out of the library, how would students all over the nation learn of the @CAPS2 @CAPS3? They wouldn't. Libraries cannot just throw out books because they offend someone. As Katherine Paterson said, if we all picked a pile of books that offend us and got rid of them, then there wouldn't be any books left for any of us to read because other nations would be offended by the books that appealed to one, and so on and so forth. So, libraries need to keep the books that they have and get even more books. This nation needs as many books as it can get because they are all extremely helpful to those that they appeal to. We just need to remember that not all of the books appeal to us and not to get offended by those that don't." 4 4 4 4 4 4 +3300 2 "Censorship in liraries, in my opinion is over-rated. Everywhere you hear of book, music, magazines, and movies being offensive or degrading, but does that mean that they should be taken off the shelves of our public libraries, or out of book stores? I say no because, future generations need to know of the material, it @MONTH1 not always be offensive, and the public libraries have no right to tell us what we can, and cannot read. Some say that our future generations will be greatly shorted of knowledge, or become naive because of this lack of knowledge. I say this is because of the censorship in libraries. Katherine paterson once said 'All of us can think of a book that we hope none of our children or any other chilren have taken off the shelf. But if i have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else. An then we have no books left on the shelf for any of us.' So if they're taking books off the shelve because they find them offensive, then there will be so many books gone, that the kids will not have a broder view as so many people are lucky to have today. Everyone has a different oppinion about everything, including what's offensive and what's not. If one person see's a book as being offensive, that doesn't necessarily mean that someone else will also. I've heard of teachers not letting the students see pictures of The @CAPS1, because the think it's offensive. Not everyone agrees with that. The @CAPS1 is a big part in history and it being catorgorized as offensive is wrong, it's not the only thing in history that is bad. If they start taking out big parts of history, it will be long lost and forgotten. Lastly i believe that the libraries should not be able to tell us what we can and cannot read. We have the right to choose what we want to read, if we think that it's bad and shouldn't be reading it, then we won't read it. But that doesn't mean they should take out the book because one person finds it offesive. Someone else might want to read it. I think that people are mature enough to pick what they read, and as for children their parents are the one's that could pick for them. With so many different oppinions it's hard to decide what to do about censorship, I believe that if it's offensive maybe they should have a special section for explicit media and reading. Maybe then people wouldn't be offended by it. Just because one person doesn't like it doesn't mean another wouldn't either." 4 4 4 3 3 3 +3301 2 "Dear @CAPS1 @CAPS2, @CAPS3, my name is @PERSON1 and I think that everyone has a right to there own opinion. People @MONTH1 not want there kids to look at certain things but, they need to keep them were there kids cant find them. Kids in the world hear bad language, see fighting, and even see people get shot. There is a lot more bad things in life than a movies, books, and music that childreen listen to, watch, or read. I think that the world is more harmfull sometime than anything. Adults @MONTH1 want kids to grow up differently than others so they need to tell them not to be listening and watching the bad things on tv. But, if there kids wanna learn about things that happen thats not the greatest, then people should let them. It wouldn't be right if people or movies or things had to change just because other people dont like it. Why should other people have to change just for the ones who dont like it. There are some materials that are bad but can be only purchesed at the age of eight-teen. Thats why people should be ok with things that dont envolve minors. Having things censored ruins a lot of things, the fact that its was made that way it should be kept that way. I'm sure many people @MONTH1 not agree with my report but, it's something to look and think about. People wouldn't make the things they do if it was supposed to be censored. That takes the whole meaning out of a lot of things. So my answer is NO about taking things away that are not censored. Keep them so people can understand life the easy way and the hard way. Sincerely, @PERSON1" 3 3 3 3 3 3 +3302 2 "I believe as a citizen of this city and as a avid library goer, that censorship in libraries is neccessary. Some of the material in the libraries @DATE1 are very graphic and sometimes quite a bit offensive. Do we really want our children looking at half-nude people or the murder of innocent people just because of their skin color? In @DATE1's libraries there are many books and movies that represent racism. Take for instance the movie '@CAPS1 @CAPS2 @PERSON1.' In the movie the white children get yelled at because they are playing with the @CAPS3-@CAPS4 children. This is a wonderful example of why censorship is neccessary. Just think, if your child were to watch this and then go and say something rude to one of their friends, who is @CAPS3-@CAPS4, it would be very offensive to them. Although this movie is about historical events, it still needs to be taken off the shelves, in @CAPS1 opinion. In @DATE1's society, nudity is becoming a big issue in movies and also in books. You @MONTH1 think that it is okay to let your child watch a movie rated @NUM1, but little did you know, there is nudity in it. Depending on how old your child is, and if you let them on the computer or not, they might think it is okay to go and look up nude pictures on the internet. Also, in books this is becoming an issue. It was just the other day I sat down to read a book about a musical that I wish to see, and there were nude pictures in it. Once I found this out, I asked @CAPS1 mother to please take it back. These are the sort of things that need to be taken off the shelves of our libraries. Language usage in music is also a big deal. Many rap artists think it is okay to use offensive and explicit language in their music. I do not think they take into consideration that young children will be listening to their music. This genre of music needs to be taken off the shelves. You @MONTH1 think it is okay for your young child to listen to it now, but just wait until those words make it into their vocabulary. I think that library censorship is a big deal that needs to be taken into deep consideration. It @MONTH1 be different at first, especially when you go in to get your favorite rap tape, or your favorite @NUM1 movie, but trust me in the long run, you will thank the library for taking it off the shelves. Especially when you get older and have children. You will not want them listening, reading, or watching the things you watched as a child" 4 4 4 4 4 4 +3303 2 "I'm writing this paper today to talk about cenorship of books, movies, music,etc. I think that there should only be certain things on the self that childern can see. If you walk into a store or video store there are so many different things that children are exposed to. They see things and then seeing them makes them think that kind of stuff is @CAPS1. I believe that there should be a very limited selection that children can see. Things that are inappopreite should not be visable to children. I think that things that are bad should be removed from the selves and placed some where else. Also the music on the radio is censored yes but it doesn't mean that people don't know what the words are. There are people that get affended by certain words and they are still on the radio, on @CAPS2, in books. They are everywhere. Things would be completely different if people would watch what they put in stuff. It makes people expecly children believe that certain things are @CAPS1 and they are not. We should have very strict rules on things like that so then nothing inapporpreite is shown to people making them believe it is all @CAPS1. There are rules now on things like that but it doesn't mean that underage children are still getting to see this kind of stuff. That's why I believe there is so much violence now because children are plating video games such as @CAPS5 of @CAPS6 and when they see shooting and stuff they think it's @CAPS1 and they grow up believing that. I am writing this paper today to ask of an article in the paper on stricter rules for these kinds of things and maybe it will start to make things such as violence less" 3 3 3 2 2 2 +3304 2 "How would you like to read or listen to something disrespecting and calling you out of your name such as, '@CAPS1 did you say to me @CAPS2'? Would you want to keep things like that in your libraries? I would, I think anything that was hurtful, harmful, or offensive should be open to the public because it's a great way and opportunity to learn. Books, magazines, and music on slavery are things I think we as a people required to read are things we are required to have. Sure it might hurt, depress, or even aggrivate some people but it also fills you with knowledge on the past. For a person of any race this is a way to feel the pain and struggle of people before us. Despite the pain or irritation this is a type of learning I would welcome in libraries. Knowledge of suicide is also something I think should be available. Because some of our friends and family have either did or attempted suicide, and without knowing about it how can it be prevented. Books on the subject would provide help for those going throughout life with suicidal thoughts. Reading about past struggles or facts about it could give them tips or ideas on how to avoid suicide. I think we need literature on this because I feel enlightenment on the subject is the only way you can avoid it. In conclusion, I think that all types of literature should be admitted and released to the public. I think this because all forms of literature offer a great opportunity to learn. I believe that only by reading the literature on past situations and struggles can you avoid or overcome struggles you face or will face in your lifetime" 3 4 3 2 3 2 +3305 2 "Why should books or other such ideas but lets get back to the subject. Should certain books be aloud to be in a libary. Cause if u dont have certain books you would have to read the same book over and over. But there are all kinds of books that you can pick you have history,poems,dramas,love,scary. But some are not aporpit for certain places. Certain music is ok but there are some that I would not aprove of. Like there rap its a bunch of people rymes. That people think up in there heads about life. Something that they want to express by telling raping. There is rock in roll alot of people did not care for it. When it was intruduces in the late @NUM1 but as time went on people started listening to it. But alot of people did not want there kids listening. To that back then they said it was devil music. But in this day in age alot of people still listen to rock n roll. Cause they were brought up on that kind of music. Movies there is a lot of diffent movies out there. There @NUM2 and rated @CAPS1 but alot of partents do not let there kids. Watch certain movies because they scare there kids. They are so ugly and gross that some people cant stand it. But there are shows for kids to there like a movie but a little shorter. Magazines just are a new thing that people are trying out. But mostly old people read magazines cause they have alot of time on there hands. But there are some people who cant get ehogh of magazines. Cause they want to buy every thing in the book. It catchs there eyes bye the way it looks . But there is all kinds of diffent magazines mucle, food ,cleaning, toys. But thats what I think about this kind . Of stuff it sucks people in but some cant get out. By the time they get out they are broke" 3 3 3 3 3 3 +3306 2 "If we were to take away every thing that someone in the world finds offensive, there would be nothing left. Many people in different cultures find many different things offensive. it's not right to take away from others something becuase a select group of people take offense at it. Something being offensive isn't always a bad thing. There's many different reason why, but removing something because of someone else's opinion isn't right. First, whether you find something offensive or not, is laregly based on your culture. To most @CAPS1 cultures, declining food is offensive. To @CAPS2, eating or hurting cows in anyway is a complete disgrace. If something is offensive to one person, it @MONTH1 be because they have a different background. You're never going to please everyone. Second, one of the best thing's about the @LOCATION1 is that you can have your own beliefs. If something was removed from the shelf at a library, because someone found it offensive, I would be disturbed. I have my own beliefs that I'm sure not everyone agrees with. Some of my beliefs wuold be offensive to certain people. That doesn't mean I should have to stay silent about my beliefs, does it? No, of course not. I wouldn't want anyone else's beliefs forced on me. I'm sure no one wants my beliefs forced on them. By removing things from a shlef becuase took offense at it, you'd be removing freedom of speech from the shelf also. That's not only wrong, it's illegal. Some people would be offended at a book with a cross on it. Some people would be offended by a @CAPS3 cover with a pentgram. That doesn't mean they should be taken away. It's good to get offended sometimes. It often makes people stand up for what they believe. To me, it's reminder of why I believe what I do. I @MONTH1 be angered by what I see. I'm sure the terrorist group @ORGANIZATION1 is greatly offended when they see the @CAPS4 flag. We wouldn't stop waving it, would we? That'd be absurd! Just because someone takes offense at something doesn't make it wrong. It never has. It just means they have different beliefs. We should have the maturity to look away instead of demanding that it be removed. I personally believe that removing things from the public eye, merely because they're offensive, would be wrong for many reasons. So many people find so many thigs offensive. It'd take away everythign if we removed eac and every one. Removing offensive items would also be an intrusion of freedom of speech. Plus, many things that are offensive often remind of of who we are. We should be string enough to look away and not fight about it. I don't think they should be removed. I want my library to be what @CAPS5 was made to be, a mixture of cultures and backgrounds. I don't think anything should be removed unless it directly causes harm to people" 5 5 5 4 4 4 +3307 2 Durning school one day all of our teachers told the class that most of the books in the libary is going to be took off the shelves. But our class don't want that to happen. All the teachers told us that some people parents has been complaning about what there kids are reading. I thank that most the the books that are in the libary is good for the kids to look at because thats what they like annd they like to learn about what would like to have or do someday. I also thank that it is a good thing that kids are wanting to learn about what they want to do later in life. Later in life when I have kids I would like them to dream about what they want to do in there life. So if that means that they want to go to school and look at magazines all day and make sure that thats what he wants to do thats fine with me. So if the teachers want the books off the shelves they can but I don't think that the kids are going to try much if they cant be what they want to be later in there life time. I know that if they did that to my kids that I know I would buy them all the magazines thay want so they can learn what they want to do in life. So if they take all the books off the shelves I know that all the kids parents are probley going to get mad because thats what messes up the kids dreams. Know when the kids what to read the schools is taking all the good books off the shelves none of the kids are going to know what they want to do in there later life. A good thing to do is to let the studends vote and see what the what to do about taking the books off the shelves. I bet most of the students in this world would say to keep them on the shelves because they like to read and look at pictures. That means that they want to be something when they grow up. I hope that my kid whats to be something that he likes to do when he grows up. I will help any kid as much as I can with there dreams. There is two things that are going to happen. One is that the school is going to take the books off the shelves and the students are not doing to try in school and they might not know what they want to be. Or they might just give up on it all. And I know that know one whats that to happen. The second thing is that the schools is going to keep the books on the shelves and the students are going to want to read them more. Also they will probley know want whey want to do later in there life time. If I could pick what to do I would keep the books on the shelves and make the kid happy 3 3 3 3 3 3 +3308 2 "Everyone has their own opinion on censorship in libraries.I think that what libraries choose to put on their shelves should not be censored. Every human being does not have the same taste in what they read, listen to, look at, and watch. In todays generation everyone has their own opinon on censorship. I do not agree with censorship because not everyone likes the same things, has the same thoughts, has the same lifestyle, and wants to learn the same things. Everyone is an individual and is different in their own way. If libraries wanted to censor what they put out not everyone would get to read, listen, and watch what they wanted. Having libraries censor things would make people feel left out. For example if the library only put out romance things, then what would the action lovers do ? A library is for anyone and everyone who goes to it. One specific type of person does not go to the library. Everyone grows up in a different lifestyle. Children do not choose their parents. Some parents censor what their kids read and watch,and some do not. Kids who have parents that do not censor what they choose to get at the library might have differnt interests. Not everyone likes the same things. In school most of the time everyone learns the basic information that is required. Outside of school there is so much more to learn. People can go to librarys' and learn about differnt things that they want to learn about. What people choose to study in their free time can range from drugs and sex to @CAPS1.If libraries censored what people can read, watch, listen to not everyone would get to learn extra information that they wanted to. Libraries can not censor their materials! I do not agree with libraries censoring what materials they choose to put out for the public.People are differnt and that is okay. If libraries choose to censor things then not everyone would have equal opprotunities. Parents can censor what their kids read if they want. Not every parents chooses to censor what their kids get at the library; therefore kids have different interests. Human beings do not always want to learn the same things. The librarys' who choose to censor what they put out is not letting everyone have a equal chance to learn. Please let people be who they want to be! Do not censor what libraries put out such as books, music, movies, and magazines" 4 4 4 4 4 4 +3309 2 "I beleive it is wrong to remove books from library shelves even if they are found offensive. I have three reasons to support this statement. These reasons are knowledge, different sections of the library, and freedom. I will explain these reasons below but before I begin I would like to add that most people want to censor things that they fear. If a book is removed from a shelf because someone finds it offensive then the next person who comes along looking for that book can not access it. How is that fair? In life there are many things that can offend people but thats life, you have to learn to let those things go. Everyone has a right to form their own views and oppinions on things, but they can not if they do not read other people's oppinions. Reading expands our vacabulary, at any age. Just because you do not like something does not mean someone else also can not like it. You have to give them a chance to form an oppionion. Library's are everywhere. If you are concerned about your children finding books that you do not want them to see then take them to a library with sections. All libraries are broken down in sections. Keep your children in the 'children' section and there should not be any concerns in that area. Once your children get older allow them to roam the library and develope an oppinion on what types of books they enjoy most. We live in @LOCATION1, which since founded has been all about freedom. Some people do not have the money to buy books, or internet, So these people rely on public libraries. If they look for books and can not find a subject that interests them they will not read. They could even be looking for a specific book and not be able to find it because it was taken off the shelf. There is also a religion conflict. There are many different versions of the @CAPS1 but, many different religions. People come from all backgrounds so if they do not beleive in the @CAPS1 do we take that off the shelves too? In closing I would like to add that I can also see why people would want to censor certain things. However most of the things people do not like to see are things they fear. These people can not hide from reality, not everything in the world is good, so let's not pretend everything is perfect and do our best to contribute to the wellness of society. What better way than letting everyone read whatever they wish" 4 4 4 4 4 4 +3310 2 "Cooling the @CAPS1: @CAPS2 and @CAPS3 From Book @PERSON1 _________ Censorship in public libraries would be an insult to the institution. A library, a citadel of knowledge, should not be bound by a society as to what knowledge it can convey. One point of a library, the destination of researchers, is to offer information that must be sought: for those who cannot find the information in their homes without fear, for those who cannot ask their questions without retribution, the library stands as a pillar of safety. Books are incapable of judgment. To censor the books held in a library is to chip away at human progress. A freedom of thought and a freedom of press, present within our nation and increasing in presence around the @CAPS5, precludes the idea of this censorship. If any book is subject to criticism or opposition, are not all books worthy of the same? To value one opinion or perspective less than another is to debase the entire culture from which libraries have arisen. Libraries are a communal institution, open to all views and writings. The point of bringing books together under one roof is to equate them, and give them all equal standing as literature or scholarly works. From personal experience, censorship in the library has cost me precious time, and has stolen from me parts of my life. Growing up in a small town, where ideas of gender and sexuality were somewhat firmly set, any search for dissenting opinion was often fruitless. When I visited my school's library, as a child searching for answers about my sexuality, I found little aid. Around the library were a thousand stories of a man and woman falling in love, but never did I find a fairy tale of two princes. It was not until I left the school that I found that such books did exist in my old school library, but kept removed, off the shelves, restricted. More insulting than finding books of @CAPS4 issues completely unrepresented was to find that they were treated so separately. Here lies the problem. Some people believe that if minority opinions or values are unrepresented, they will disappear. Such is the point of censorship: ignoring an issue or a life-choice to the point of extinction. But books cannot shout their values. They cannot shove information down our throats. Books must be read, we must give our consent to their knowledge. Unlike an advertisement that might accost us unawares, we must pick up a book and open it to receive its guidance. If my library had done its job and given me the guidance I sought, I would have grown so much more easily. I would have learned not only how to express and accept myself, but I might have grown to more easily accept others as well. In the past few years, with the effects of @CAPS5 @CAPS6 @CAPS7 reaching the newest generation, @LOCATION1 has searched for ways to pay homage to the victims of the violence of @CAPS8 and of the @CAPS9. What the country finds, however, is that it cannot effectively memorialize the tragedies. In trying construct a monument, the government and culture find that they have little to build off of. The products of murder and book-burning have resulted in an emptiness, a void. As such, architects have created what @MONTH1 be called 'anti-monuments', commemorating a void to posterity to memorialize what was lost. One of the most powerful, to me at least, appears in the form of a negative bookshelf: a solid wall, with gaping holes in the form of book spines, ranging across the rows. Such is the knowledge lost from book-burning. We cannot even describe what is lost, for the knowledge has vanished. We must ask, what are we missing? What views, what prose, what beauty has been taking from us while we continue living, never having the chance to glimpse it? This is the effect of library censorship. To remove a book from its natural and rightful place on a shelf is to set its words aflame. Once it is gone, it will be forgotten. To protect our posterity, to enlighten our descendants, we must work to preserve all books, any book that appears offensive, or disgusting, or brave, or new. Let the reader decide its value. Let the person in search of answers pick it up or leave it behind. Give the book a chance for it @MONTH1 have a power that is unrealized. Leave the libraries as they are, as the monuments to the preservation and progression of knowledge and wisdom." 6 6 6 4 4 4 +3311 2 "Have you ever wondered how libraries pick their books? Well, I know I have. There are some material out there that no one wants a little kid to get a hold of. I believe censorship should be allowed in libraries, because the censorship of books is vital for the kids of the world to live a life without books about violence, another reason is that it not only affects the lives of the children, but the social lives of everyone, and the overrated music of our generation. My reasons on this subject can be viewed in two different ways, but I would like to view it in my way. Look around, are their little children around. Well, if there is I would be looking at what they are reading or doing. The children might be reading books that are too explicit for their age. Take for example, a child that is six years old, and can do whatever he or she wants. They have no limits. So, one day the child decides I am going to check out a book at the library. The child obtains a book that is about violence and sex. What does the parent do when that child brings that book home? Nothing. The parents do nothing because they do not care about their own child. The time is now to step up to the plate, librarians. Take a stand and censor those books. This is what could happen to anyones child if there are books out their that could be harmful to anyone that picks them up. Children aren't the only ones that are harmed by this deadly disease called noncensored books. Think about the conversations that go on in schools and at the work place. What are the conversations mostly about? I would take a wild guess that they are mostly about sex and violence. How do these conversations come up? Well, the only reason is uncensored books at the library. Anyone can check out a book at the library. It could be the elderly all the way down to toddlers. When I was little, my parents use to tell to go to the library and learn something. What if the library didn't have censored books, what would I be reading? Social lives are very affected by what they learn and how they learn the material. Lastly, why is that everyone time I turn on the radio, there is always a song that is not right for anyone to listen to. I listen to the radio station @NUM1 sometimes and all the music is mostly about violence. Guess what the libraries have some of these compact discs of these artists that are played on this radio station. At the library, there is a music section, movie section, and lastly the books. All of that material combined can create a social disaster, if the material isn't censored. I believe that censored music is the best path to go, because our world wouldn't be obsessed with violence if they have never read or learned about it. Why should we have to suffer anymore with uncensored books at the library? Take a chance and fight for what you believe in and vote for censored books. A library is a place to sit and enjoy the surroundings. It is not a place for violence, so quit with it, go for a safer environment. No one deserves to be offered the damaging violence of uncensored books, and music" 4 4 4 4 4 4 +3312 2 "'@CAPS1', the woman shreaked as she had just received a fierce, sharp,and quick stab in the back by her abusive husband. This is the kind of violence children read about all around the @CAPS2. To think all of the innapropriate stuff children see around the @CAPS2 in television, the internet, and even what classmates are talking about isn't enough, well you are wrong. Some of the things you read and hear about in books are totally unacceptable. This is why books, and magazines need to be censored in libraries all around the @CAPS2. In our community library in @LOCATION1, @LOCATION2 we have magazines, in which case these magazines are very graphic. Kid's will read these over any learning or interesting book. Many kid's draw disrespectful things in them. As to think that wasn't ignorant enough they also rip them in half and do many other dismantling things to them. One of the reasons why I feel that the @CAPS2 has so much trouble with criminal people is kids feel these days that they are allowed to draw in books and rip them in half even though they aren't their property. Which allowes them to think they can do whatever they want. Kids read about crazy things that aren't necessaarily teaching you anything. Unless that is you want to learn about having a zombi apocalypse and zombies take over the @CAPS2. To have that in a school public library what is that teaching kid's? Absolutely nothing, but to teach them to take them home and show there little brother or sister a cuss word in the book is teaching them bad things. These are all some valid points as to censor or take out some of the leisurely reading books in the libraries, or to possibly censor some of the cussing. The last point I will be touching on this discussion is the loss of money that some of the schools have due to damaged books and stolen property. Also to mention all of the dirty pictures kid's draw in the magazines and books. Schools lose a great deal of money just to touch that point. They would save a much needed amount of money if they didn't let those books leave the classroom or school library. Kid's wouldn't be able to draw in them or steal them or even damage them and all the money they could save and put it towards something learn fulfilling. Well behaved children all around the @CAPS2 is what you can look forward to if you censor books and magazines all around the @CAPS2 in libraries. If you dont let them be taken out of the library how could kids possibly damage or steal or even draw in them. By not allowing kid's do do whatever they want and showing some authority lets kid's around the @CAPS2 know they need to show some respect. With all the money libraries and schools save they can put it towards something learn fulfilling. If you could please take the information i have given you and think about it, it would be greatly appreciated" 4 3 4 4 4 4 +3313 2 "I believe that there should be a little censorship in libraries. There are some books out there that could be a little offensive and cause some problems, but I also believe that even if a book is insulting you shouldn't be able to hide it from others. There are some books that have some pretty nasty stuff in them that you could find in a library. Since a library is public lots of people go in to get books. What is to stop a kid to getting to one of these books, or movies you can find in libraries? Do you really want a child to check something out that has violence, horrible language, and sexual innuedo? What can you do about this problem? You could censorship the books and hide them from the public, but that would cause another problem. The idea of censorship might sound ok, but really it's not the right thing to do. Hiding things from the public just because it might have some bad things in it is a little over the top. If you are an adult and your in the mood to read something with a little violence in it you'd have to go somewhere else because someone just took that book away because it had some swear words that they don't find appropriate in books. Censorship would just make it harder for adults to find some books that they would want to read. So what do you do if there is an offensive book on the shelf? Do you just leave it there, or take it away so no one can read it? You could just put age restrictions on the books. If someone underage wanted to check out the book, they would have to get permission from their parent. That way the book can stay on the shelf and be read by anyone" 3 3 3 4 3 4 +3314 2 "People all judge things differently. Thats why I feel that libraries should keep those kinds of books. What @MONTH1 be found as a offenisve book to one person might not to another one. If there are people saying that the certain books are offensive, then they should take them out of the library. You shouldn't take one book out because one person thinks it is offensive. What might be offensive to one person @MONTH1 interest another. The person that doesn't think it is, should have the right to read the book. That would be taking the rights for people away because a person finds it offensive. The person might find the book useful because they want to learn about the topic more. They will never get to learn about it if they take the book out because one person finds it offensive or doesn't like it. I personally like watching movies or reading books that are thrilling and @MONTH1 have some violence in them. If the library took these books or movies out because a mother saw her son or daughter read or waching then it would be wrong. The mother would be taking away what I like to read and watch. Thats not fair at all. A way to solve this issue is to have certain areas for each type of age group; therefore, they would be watching or reading types of things acceptable for their age group. I understand the fact that some people take things offensively. Also that they don't want their children to pick up a book or movie that isn't acceptable for their age group. They have to understand though that sometime people like those type of things, and they are taking it away from the people who enjoy them. It is like taking rights away from people because they don't agree with what is happening. It wouldn't be right at all to take those books out of the library. All people have different views about things. You can't change a thing if one person doesn't like it. People have rights to pick up a book if they want to or not. Not everyone is the same, so not all people are going to think the same way. I like things that some people might not like, that is just how human nature is" 3 3 3 4 4 4 +3315 2 "Over time, libraries have been used as a big resource when doing reports, researching, renting movies and simply trying to find something new to read. They have been used as a gate way for an extensive world of reading and learning. All libraries should have the right to have the content they please to have on thier shelves. No book, music, movie, magazine , etc., should ever be denied a place on the shelve because of it's content. Sex, drugs, violence. There are many books over these topics that many people @MONTH1 find offensive or just completely oblivious. Every mind is diffrent when it comes down to what it likes to read, watch or hear. No mind is the same, so no mind will ever like exactly the same thing. When ever someone wants to go buy a book about safe sex, it should not be denied to them because the library does not allow it. It should be placed on a different section of the library. Many books that people find as explicit content to them, @MONTH1 not be to others. When i was in middle school, i heard alot about sex, and drugs. I never knew what it felt like or how did it feel. What i did know was that I could get accesible information from my local library. What happens when a child wants to know more than she does? She looks, and researches it. If i would have been denied the access to books about sex or drugs, I would have probabaly never been warned about the out comes or the seriousness of them both. When you walk into a libraby and observe. Not everyone is reading a book about rainbows, and unicorns. Many people read books about the real life, books that they can relate to. Many of those books that many people read are those that others calls explicit. The purpose of a library is to have access to books, magazines, music, and movies of all kind of content, reguardless of others concerns. Also, Libraries can do many things so that certain contents @MONTH1 not be near others. They can organize there topics and genres. Explicit, or eighteen or older books, movies, magazines or music @MONTH1 be placed in a back room or simply on another side of the library. Far from the reach where kids and children are able to access. In conclusion I believe with my strongly supportive ideas that books, magazines, music or movies should not be removed if found offensive because every book has a right on the shelve no matter what. No book should be removed because someone @MONTH1 find it offensive. If a person finds something offensive they should take it up with the author or publishers not the library for they only let people borrow the conten" 4 4 4 3 4 3 +3316 2 "Censorship is a topic that it strongly opinionated. If one person does not like the content of a text, that person could might find themselves saying that they have to right to obstain from being able to view that text in a library, public location, or online source. But what about the other people? Shouldn't they have a say too? Let's say that 'person one' does not agree with the language in a text, but 'person two', perhaps does. Which person has the benefit in @CAPS1 situation? Freedom of speech and expression are two factors that are very valued, and pherhaps sometimes even overlooked in our society. In @CAPS1 case, both 'person one' and 'person two' are allowed have a right to say and think what they feel about the text. Should 'person one' still have the right to say that @CAPS1 text does not belong in a public location? Well, if every person had the right to remove something that they disagreed with from the public, there nothing would be left. In such a large and diverse society, there is bound to be at least one person who does not agree with the content of a certain material of each and every lyric, magazing, book, and text that there is avalible. Some might say that @CAPS1 is unfair to that one group who does not agree with the content of a material. But how is that fair to the other group who actually do agree with that material? Freedom of speech and expression are still not being excluded from that group who does not agree with such material. That group is still allowed to speak their opinions and takes on that particular material, as well as the people who do agree with the material. Take iTunes for example. If there is a song that has language and/or content that could be considered disrespectful to a person, there is a red tag by the song that says: 'explecit.' @CAPS1 is an indecator that a person who could find foul language offensive, that such person should no buy that song. There is also the compromise. Quite often, if a song is tagged as 'explecit', the is usually an alternative of the same song. That same song is then tagged with a gray tag that states: 'clean.' A song being 'clean' simply means that the song is still the same, but the considered to be disrespectful content is removed, or removed and replaced with different words that are not considered to be disrespectful. Both parties are now satisfied with the so called: happy-median. Take movies as another example. Movies are rated based on their content. The higher the rating, the more explecit such movie is. Along with the rating, there is an explanation as to why that movie is rated the way that it is. If you are a person who is careful about viewing things that are against your own opinions and beliefs, then by seeing the rating and explanation, such person knows that @CAPS1 material is not for them. Again, the happy-median. For every given case of a goup of people who do not agree with the terms of a certain content, the alternate group must be considered as well. Both parties in @CAPS1 case are still able to say and express their own opinions. So, should @CAPS1 context be removed from the eye of the public because a certain group of people do not agree with the content in it? No. However, one must keep in mind the views and opinions that each person has on such material, and that person should still be respected for their take on that material" 3 3 3 4 4 4 +3317 2 "Have you ever got or check out a book or something that has been racial to you or you think it should have been censored? I haven't but I checked out a book before that had a lot of racism in it and sex. Im not racist but some people are very racist. Some of the book in libraries aren't sutible for some viewers but yet again the can check it out, some books, movies, magazings, and others should be taking in consideration on being removed so some viewers can't read them. In libraries there are book that have alot of racism in them. Some racism gets to be very bad in the book and it could intrest and provoke the young viewer to go down that road in a later life. Which could be very bad if you think about it. He could talk his friends into becoming what he is. talk them into becoming racist towards others. No mother or father wants their kids to be racist, but there are familys that are racist. Which i don't get because we are all the same to me. In some books in the library there is sex talk that accores in it. Sometimes the sex talk gets into great detail which isn't sutible for young viewers, because they could get the idea that they want to try that with someone of a different genger. Which is okay if ur older but if ur really young and reading a book with sex talk in it. Well that's wrong because young kids shouldn't be introduced to that kind of life stile till later in life. Some parents wouldn't like their kids to read that kind of book. I know I won't let me kid read a book like that. Music is something that everyone listens to, no matter is its rap, country, or the blues. Certain people like certain kind of music. Some people think that rap music is offensive and should be removed off the shelves. Well rap music is based on their past and how their life is. It does have some racism in it like certian rappers say bad words that aren't really sutible for young viewers. Although some of the racism and cencorship that should be cencored are on shelves, I think it should be in a separete room so only older people can check it out or buy it, instead of the young kids getting a hold of it. I believe that books should have racism in it because it shows how much we have changed from the past" 3 3 3 2 3 2 +3318 2 "New @CAPS1 in the @CAPS2 @CAPS3 Have you ever seen a movie or read a book that you did not want your kids/family to read? I know I have, and sometimes there is no stopping them from seeing or reading those books/movies. I don't necessarily think the offensive books should be removed, but I think they should be relocated to a different part of the @CAPS3. This @CAPS1 of the @CAPS3 should only be entered by an adult, or with an adults permission. Little kids see stuff that their peers are doing and want to be just like them so they do the same stuff. What the kids don't realize is that most of it is fake, and the things that happen in movies aren't really true. By having this seperated @CAPS1 of the @CAPS3, it gives parents the chance to get the racist, drug/gang filled, and murder books away from the children. This will be good for every race too! If an african american family does not want there child to be reading books about slavery or gangs, they can keep them out of the @CAPS1 of books where slavery and gangs are. Some books are really emotional and can trigger a persons emotions. If someone is going through a really hard time and they read a book about suicide, they are more likely to think about killing themself. I think by separating the bad influencing books from the good influencing books it well help alot. People under the age of @NUM1 are not permitted to be in this @CAPS1 of the @CAPS3 without a parent, or parent signature. So come on down to the @CAPS2 council on @DATE1 and vote for the new @CAPS1 of the @CAPS3! Thank you for your time." 3 3 3 4 4 4 +3319 2 "Censorships in the libraris would be liked cutting the worlds air supply. It would be taking away from a readers imagintion. stoping readers from being able to express their mind. My veiw on censorship in the libraries would not be needed. Libraries around the world do good jobs keeping certain books in the apperpate ages levels. By removing certain materials out of libraries would cause reader attention to why their being removed. Then readers would demanded that we leave their books alone. Then fight for more books like those and then they would need censorships in libraries. Books were made to keeping people wondering, learning, and excited. By cutting away different materials would be stopping people from enjoying the world of minds. More you take books away the more the population on watching television gets higher. Then there would be no more author and more actors and actress. People minds would not be wondering, learning or being kept excited. I remember when i was a little girl i went to the library. I was in the library looking for a book. I wet to the big kids side as i called it and tried to check the book out. The library lady told me i was to young and showed me to my age level books and took the book back. Then i was able to check a book out. So all i am sating is that censorships are not needed in libraries. That would be tking away from a librarains job. So dont take away readrs imagintion" 3 3 3 3 3 3 +3320 2 "There is a certain amount of responsibility when it comes to censoring all the different types of media and literature. Deciding whose responsibility that is can be a difficult task. Children can be strongly influenced by all media out there and making that material has been made easily accessible. When someone comes of age to make decisions that affect their life then they should be able to. Shop owners should be able to sell whatever they want in order to make a living. When children go to a library usually they will not do so alone. Parents can decide what their child is allowed to take home or not. When a child comes to their parent with a book, movie, or magazine that is offensive or inappropriate it comes to the parent to decide whether or not they want their child to be exposed to that material. If the parent allowed for their child to have access to offensive media then that can give the child the idea that what they are looking at or reading is alright. If someone has come of age and has all the other freedoms that everyone else has they should be allowed to buy, read, and watch what they want. To prove to someone that you are of age to have access to offensive material you should have to show some sort of identification proving it. A shop owner or businessman/woman should be able to sell whatever he or she wants to in order to make a living as long as it stays within the boundaries of the law. Having someone who does not work in the law or a person who is not a legal guardian or parent of someone who is not of age should not tell someone not to buy, read, or watch something just because it might be offensive or offend that one person. I conclude that in order for a someone to tell another person not to buy or rent material that person would either have to be law enforcement or their legal guardian as long as they are not of age. There is no reason why people should not be able to access material that is not against the law. If someone is offended by some literature then they should try to make it against the law." 4 4 4 4 4 4 +3321 2 "Censorship, thats a word that causes alot of arguements in today's society. People have extremely different views on censorship throughout the world. In some countries dictators do @CAPS4 allow their citizens to have internet access watch the news or in some more extreme cases @CAPS4 even watch television at all. The majority of the time they do this because they do @CAPS4 want the citiznes of their country to know what is happening around the world. This sets up a 'fish bowl' environment meaning that people from other countries see all of the issues in that country but the people actually in the country have no idea whats going on around them. Although we don't always see censorship in that extreme of a sense it is still plays a large part in today's society. Everything from music on the radio to military files are censored. Think about it, how often can you listen to a song on the radio that all of the original words are still intact? Arguements over censorships have gone back and forth for years without really making much prgress at all. Each side of the arguement whether its for or against censorship is almost entirely opinionative. No one can say for sure that censorship is completely needed or @CAPS4. It's just to hard to determine who's opinion is really, more convincing. In my opinion I dont think anything should be consored, if the writer of a @CAPS1 show throws in a vulger word most likely it's for the effect that it has on people to show emotion. The samething goes for songs, when an artist writes the lyrics to a song they are trying to convey a message and they use certain words that get their point across more effectively or more dramatically. Parents argue that their children are seeing to much violence on @CAPS1 and are causing behavior problems along with other things, and that shows need to be more suiting for children. There is an alternative to censoring all of these things, rather than 'ruining' everyone's fun just dont let your kids watch that show. In the @LOCATION1 today we have something called freedom, we exercise this right everyday with what we wear, and what we say. I think that we should take that freedom and apply it to censorship. Instead of complaining about violence in movies and sex on @CAPS1 you can make a decision simply to @CAPS4 watch that kind of show. Everyone has the option to say NO; if you dont want to hear or see something simply choose something else to watch, or even just do someting entirely different. You DO @CAPS4 have to do anything that you don't want to do. It's is an easy solution, all you have to do is exercise a right that you have had since the day you were born an just say no, I dont want to do that. It's very simple and could potentially stop all debates on whether or @CAPS4 things need to be consored." 4 4 4 4 4 4 +3322 2 "Dear @CAPS1 @PERSON1, Should certain books be removed because some people @MONTH1 think they are inappropriate for their children to see or read? No, I do not think they should be removed. I honestly think all they all should be put in different sections of the library by age. Like all the children books and magizenes should be in one section. The younge adult and or teen books and magizenes should be in a section by its self. Then the adult books and magizenes should be in their own section. Even the autobiographys and documentories should be in their own section too. It would make things easier to find the book you are wanting to read. For example, if your a teenage girl looking for a book about a high school girl with a crush on a boy, it'd most likely be in the section for the younge adults. So yes, the parents that are concerned about their children's viewing of certain books should be able to say something about it. But what if one teenager is looking for a book about a famous person's autobiography for a school project. Even though it includes how they used to be into drugs as a teenager. That person shouldn't have to fail if they can't find it in a library because some concerned parent didn't think it was appropriate. Like I said the best thing to do is put all the books in subcatagories by age. It would make things was easier and faster to find the book of your selection" 3 3 3 3 3 3 +3323 2 "It seems as if inappropriate materials are found everywhere in today's world. In magazines, in books, in the lyrics of music, the possibilities of where to sneak in offensive references are endless, and they certainly pop up everywhere these days. But should your resources of where you find these materials be limited due to other people's morals or values? I disagree with this act, and I would like to tell you why I do. All of us have different morals, values, and sences of what is right and what is wrong; everyone's are different. Maybe it's your religion or culture that keep you from these materials. But why should your values and beliefs dictate what another person can or cannot get from their library? I know I don't just speak for myself when I say I would be very annoyed if I couldn't get the books or materials I wanted or needed just because the person next to me doesn't agree with what is being found through researching it. I do believe certain things should be seperated from other parts of the libraries. For example, books that would be found offensive to children should be kept away from where children can pick out things in a library. That is completely understandable. But when things are being removed because certain peolpe don't agree with them or find them offensive, that is when things are going too far. This nation was built on the grounds of freedom for what you believe in. So why should we force others to believe something we think? Just because I find something offensive, doesn't mean the person next to me does, which is completely fine with me. That is his or her own personal opinion, and what I believe should not keep him or her from learning about the things they would like to. One way to fix this problem would be to seperate things that could possibly be found offensive into another section of the library and to put out a sign or paper saying what exactly can be found in that section. In conclusion, no, I do not think libraries should be censored. I know I could walk into my local library and find things I found offensive right now, but I would not want my own opinion to effect someone else's viewing of that material. People should think about one another once in a while and not be so stuck on what they personally believe. The world is an opinionated place, if it were not we would have nothing. A library can be filled with usful materials, so the focus should be on what you can find in a library to help you, not on what is in the library that you do not want to see. If you find something offensive, simply stay away from it, but don't try to take it away from the rest of the world." 4 4 4 4 4 4 +3324 2 "Libraries should have censorship because young kids could come and open and look at it. I think we should have it because it would make sure the kids wont look at them. There are three reasons why they should have censorship. First they can teach kids bad things, second bad influence, and third they just dont need to be there. First was they can teach kids bad thing. That is because they would start looking at it more. Then they would get in trouble. There is really no reason for them to looking at it at all. Second, its a bad influence. They go and tell and show there friends and make them start doing stuff that isn't right. Makeing then do stuff and then have a bad future. Third there really isn't no reason they should be looking at it. Like unless it fell from a book case and was laying on the floor. But there really isn't no reason they should be looking at it. I think we should have it so it cant hurt and kids so everyone would be right in life" 3 3 3 3 3 3 +3325 2 "I think that a cencorship in libraries isn't needed. The grounds that are basing the cencorship are very opinionated and biased ones. Two readers of one book could view the material compleately differently. The reader has chosen to read that book, and thus more than likely know what the general plot is before they read the first page because of the summary on the back. People can make their own decisions, and can therefor choose wether or not to read the book to begin with. The books that would be found innapropriate or offensive would most likely be in teen novels or adult literature. If this is the case, they should be mature enough to handle stumbling across the material, and or making the decision to put the book back and to not continue reading. Saying that the material is unsuitable for a younger age group is correct, but at that age the children should be with @CAPS1 adult when checking out books anyway. The material that people find unacceptable would almost certainly be in a novel that is intended for a mature audience, so if it is being read by a younger age group that would be the problem in and of it's self. The teens and or adults whom would be reading such material is surely old enough to handle reading a few foul words and scattered inuendos thoughout the plot. The material that @MONTH1 be found innapropriate or offensive @MONTH1 be viewed differently given two different audiences. A teen in high school has probably heard worse in the halls durring passing; @CAPS1 adult that is worring about what their children read has certainly been exposed to enough thoughout their lifetime to either look past the text or to put it away. The material being called offensive just because of one person's views in not rite. The tough situations and our surroundings are what prepair us for our futures. A person seeing the bad in life would be more likely to do all in their power to make good of their futures and be more willing to help make shure it could be prevented. Should the foul things in life be ignored? Should the child that is being beaten at home have to suffer in silence because it seems too graphic to tell? The man who became homeless, only to turn his life around because he learned from his past, should that story not be told only because the troubles he had to face seem too disturbing? I believe that these are the stories that need told the most, in @CAPS1 attempt to teach those around us how to prevent, and how to move past the troubles in life. There will always be things that we wish not to see in life. But is it not our actions that follow seeing such misfortunes that determine who we are. The libraries should not be put on a cencorship, but open to the public that wish to dive in to these stories. Books are written for a purpose, and that purpose @MONTH1 just be to let people know that these things are happening, and if one thinks they are alone in these strifes that they are not" 4 4 4 3 4 3 +3326 2 "I believe that indeed certian books sould not be on libraries shelves. And some people @MONTH1 feel the need to remove books of their choosing but, I also say that if the library sees it fit to put such books on their shelves that is their problem. I believe that if you do not like the books then stay away from them. Now if the books are only meant to be seen by adult eyes then, yes by all means remove them. I personally know parents that would not allow their childern to need a book just because in the review they read the main characters kissed. I find it rediculous, but that is the way they parent their kids. And as long as they dont take it upon themselves to force they parenting methods on to libraries and other learning places just because of the books I am fine with it. I find that some people see books on slavery and the holocost and such topics to be offensive. I see those books as our history, those topics are taught to us in school and we will most likely hear about such things as we grow up. What is the difference between learning about them now and learning about them as a adult? People seem to be trying to shield the world from thing like swear words. Why? If a book has a few curse words oh well, tell your kids to stay away from it if you think its bad. But, do not take it upon yourself to remove that book from our library. People have different views, we always have and we always will. If a parent feels so strongly about a few books get a postition and get signatures saying that these books should be removed or atleast moved to a different part of the library. Do not force your thoughts on some one else" 3 3 3 3 3 3 +3327 2 "BOOKSDear @PERSON1,@CAPS1 @CAPS2 staring to tell you about the books in the libraries that some adults find offensive so for the kids. These books should be taken away so kids won't read them, second part is adults should protest so the libraries could get does maganzines away or etc, and my last thing is @CAPS4 do libraries get these books and let kids take them so they could read them.The first example @CAPS2 giving is I founded some books and other things that I search being offensive for kids. And the libraries letting kids read them without an I.D because they are for adults reading sections. These books need to be away so kids won't read offensive things or trying to them. They should pbs books so under age children could read and so parents don't have to be worry about there kids what they are reading in there free time.The second example is parents should protest so books or other etc things could be rid of. Parents need to protest so any thing they find offensive should get off of the shelve. Or another thing is they will have to make a list of what books are offensive and let only adults read them by having an I.D and could sound a little better so books or etc don't get rid of the books.The last example is @CAPS4 do libraries let kids take them home and read them.They should what kids need to read like educational books for school or for other things. Adults need to see what there kids read this days. Kids need to understand what books are good for them from there age and otherwise their brain will start confusing them at their age.The conclusion is that libraries need to make something up so children don't read these kind of books that the only thing will do is mess up with there brain and then there parents will need to pay so their children could take therapy and others kids so their brain could be better. So please libraries do something so parents don't need to worry about what there kids read these days. Like for me I won't like my kid read offensive things because they will start doin the same things so libraries do something about these on offensive things." 3 3 3 3 3 3 +3328 2 "In my opinion I think that censorship shouldn't be allowed in libraries.I think that people are smart enough to make their decisions on what they want to read. Their are a few reasons why I think censorship shouldn't be allowed in libraries or out in public. The first reason why i think censorship shouldn't be allowed in libraries is becuase it's showing disobedience. The second reason I think censorship shouldn't be allowed in libraries is because many people will overuse their authority, and it'll make many people have a bad review for that library. The last reason why I think censorship should not be allowed in libraries is that it'll change the whole enviroment of a library. Censorship should not be allowed in libraries because it shows a form of disobedience. I think that many people will use profanity and will have an I don't care attitude. If people use profanity at home im a strong beleaver on leaving it at home and not bringing it out in public. Censorship should never be allowed in libraries or anywhere else in my opinion. Censorship should not be allowed in libraries because many people will overuse their authority and most people wouldn't want to come back to the library. Some people overuse their authority by being loud in the libraries preventing others from reading or during something to occpy themselves. If a library is loud and obnoxious it'll drive people away from the library. I think that a library should be a nice quiet welcoming. That'll make the library much flow by easier. At the of the day i think that censorship should never be allowed in libraries or anywhere else public. A library is a place to go read, study, complete homework assignments etc. And finally i think that people should be able to make decisions on their own rather they want to read a book with censorship or anything to do with censorship as long as they can controll it" 3 4 3 3 3 3 +3329 2 "I do belive that certain stuff should be removed from the libraries like stuff that little kids should not be able to see. They should be in the other room to where you have to have like a id to get in. They should make sure about this cause you dont want your little son looking at like playboy. I know i dont. Little kids should not be reading books with alot of swearing and evrything cause no kid needs to act like that. It bothers them they could get in trouble with school and at home. Yes it @MONTH1 be true that adults like to read about sex, and drugs but do we really want our kids reading the same stuff that we read. Some people just need to think about what they just leaving out in the librarys because little kids loves to see new stuff all the time. So next time you working at the library or just there vistiing you might wanna watch where you put stuff at cause little kids will see it." 3 3 3 3 3 3 +3330 2 "Eventually, everyone sees or hears offensive things. However, the government has taken it upon themselves to try and keep youth from seeing it. They believe the parents should tell their children about everything while they try to make it one big secret for kids. But, if kids are introduced early, we would not have to keep it a secret anymore. Libraries and all types of media should not be censored. Kids always ask questions like 'where do babies come from?' and adults, wanting to avoid an awkward conversation, make up stories or do not tell them the whole truth. Imagine a world where the government let the media say whatever they want. Yes, at first it would be vulgar but the government would then have the right to teach about sex and drugs in school. More kids would be educated, so less of them would be curious enough to do any of that stuff. That is not to say that newscasters should curse everytime they are on television. It is merely suggesting that instead of having a metaphorical black curtain over half the news, they report the whole truth. They have freedom of speech, and we have a right to know. At first, people would think it was a terrible world. But, eventually, with right leadership, it would help make a more truthful environment. Kids would learn about sex and drugs in school, and have a safe environment to answer their questions if they have any. Drug use and rape would go down. Then, talking about 'offensive' topics would be non-existent so kids would not be embarassed if they had questions. This would change the world for the better." 3 3 3 4 4 4 +3331 2 "The library is known to be a place full of dreams and imagination. For some, the library is a sanction where you can escape reality and dive into a book where anything is possible. the library is full of many books for all ages. Therefore, books that are classified for one age group, @MONTH1 not be appropriate for another age group. This is where a problem occurs. If the library chooses to keep books in it that are only appropriate for certain ages groups, various problems can occur. The three main issues with this situation are young children can access magazines they have no buissness looking at, some articles or books can be found offensive to some races creating an uproar, and also events and instances played out in books @MONTH1 not be appropriate for all age groups.We have to think about books we have read, and contemplate if we would want others to read it as well. Young children are often daily visitors of the library. Most run aroud the library getting into any and all books or magazines the happent to come across. This is not always good. Int he library there are many magazines that are meant for adult eyes only. My family has had an experiance with this sort of situation before. My mother , brother, and myself visited the library one evening. While my mother and I searched the library chaotically, my younger brother found hisself, searching the magazine rack for something to keep his mind occupied. Well his mission was accomplished. On his search my younger brother had found himself a sports illustrated magazine. Inside there were pictures revealed that my mother was not to happy about my brother seeing. Instances like this happy everyday int he local library. staff members should think to put revealing works up to where the younger generation can not find them. Throughout the library, there are many books dealing with past historic events. Although many find these books helpful and interesting, some find these books to be quite offensive.ome races have undergone painful events in history. Many of those people do not want to relive the painful past experiances. It is in my opinion that the library should oblige by the people, and take in reference how different people feel about certain books. When i was a young girl in elementary school, I remember doing a whole unit on slavery and the underground railroad. While studing the unit, we were assigned a research assignment over the lesson. I choose to visit the library in search for books I could use to gather more information. While searching the library, I came across a book that my mother and I felt should not of been where younger people could see. the book enclosed many horrible acts against black people. This is a book that at my age, I should of never came across. For me reading books helps me escape the real world and catch a break. When I relax and enjoy a good book, I can't help but feel like nothing inthe world can touch me. Although I love reading books, I don't like when I come begin reading a book then have to hault because the book reveals events that I shouldn't be reading. One book I read, was definitley not appropriate for me. Although I found the book , in the young adult section, the book I read revealed a young girl encoutering many rapes and beatings. Now that I look back , that is a book that i might enjoy now, @NUM1 years later, but I don't feel i should have encountered that book then. What books should and shouldn't be encountered in the library is surely a never ending feud. Many believe that books should be taken out if they are not appropriate for all audiences. I think that if the inappropriate books that should not be viewed by all ages, were put away to where the younger audience couldn't get them, then the never ending feud might be able to be put to rest" 4 4 4 4 4 4 +3332 2 "Do I believe that certain materials should be removed from the shelves if they are found offensive? No, I do not believe they should be, but that is my opinion. It is pointless to remove them from the shelves because the children are going to see that kind of material outside of school, so why should we remove it? Music, movies, magazines, and books all have material such as; racism, murders, innopropriate language, etc. When we find materials, like those listed before offensive outside of school, we stay away from them. We ignore it and watch or read something that we do not find offensive. Movies and books about @CAPS1 @CAPS2 are sometimes found offensive to some people and if we remove them from our libraries then we can not have references for when we right essays over those topics. It would be hard to get the right kind of information off the internet because not everything is correct on there. One hundred percent of factual books is correct. You will have no worries then. Therefore, I do not believe that certain materials that are found offensive to some people should be removed. It is a pointless task to do. Children see it outside of school and stay away from it then so they can stay away from it in school also." 3 3 3 3 4 3 +3333 2 "Censorship in Libraries I think that things found in the library that people find offensive shouldn't be removed. Just because some people think it's offensive doesnt't mean all people think it's offensive. Some people @MONTH1 like the content it shows. I think that things in a library shouldn't be removed because everyone has their own point of view. If something was removed every time someone would walk in, then there would be no library. A library is supposed to be a variety of books. It is not supposed to be just one genre that only one person likes. It is important to offer alot of variety because if a library doesn't have alot of variety, then the library would lose all kinds of customers. A library doesn't want to target just kids or teen through aduts. The library wants to target all aspects of people. Even if it means that some content is innapropriate. All books are innapropiate if you look at them in the wrong way. I think that things found in the library that people find offensive shouldn't be removed. Everyone has their own point of view. A library should have a variety of books. Not just one genre a person wants." 3 3 3 4 4 4 +3334 2 "Have you ever been in a library and thought to yourself, 'hey, this book looks pretty good.' But once you read @CAPS3, you deamed @CAPS3 as innoproprate for younger people? I have, but unlike some people, I don't blame @CAPS3 on the libraries. I blame myself for picking @CAPS3 up in the first place. Some people do not want to take the responsibility for their actions, and so they blame @CAPS3 on the library for carrying a certain author's books, a band's songs, or a magazine's articles. This brings me to say that books, music, magazines, newspapers, etc. should not be taken off of the shelves of libraries. Just because some people do not like the content that they hold, doesn't mean that @CAPS3 can't be helpful or entertaining to others. I think @CAPS3 should be a matter of choice, like choosing which outfit you want to wear in the @TIME1. There are too many options, like when @CAPS3 comes to the books, movies, music, and magazines. If something strikes you as innoproprate, then simply take @CAPS3 back and exchange @CAPS3 for something better. One experience I can think of that is a good example of this is when I was @NUM1 years old. My mother took me into the library and I found a book, 'A @CAPS1 @CAPS2 @CAPS3.' I showed @CAPS3 to her just like any other time we had gone to the library. Only this time, she did not want me to check @CAPS3 out. She saw @CAPS3 as too harsh of a book for me to read at the time, she wanted me to wait untill I was older. @CAPS3 was about @CAPS1 abuse and she saw @CAPS3 as a very innoproprate book for my age, at the time. But she didn't blame @CAPS3 on the libraries, asking why they would carry such books where children could reach them. Other mothers and fathers are the same way, as I found out. My best friend's parents had been the same way with her. Only instead of a book, @CAPS3 was a music cd that she had wanted to listen to. They thought that she should not listen to @CAPS3 because the lyrics in the songs were too 'sad' for her to hear. They agreed that if she were just a little older then she could of borrowed @CAPS3. They did not blame the library. If someone else wanted to listen to @CAPS3, or have their childen listen to @CAPS3, then @CAPS3 was their own personal choice. I do not belive that libraries should have censorships. They can have different sections, such as adult, children, and young adult. But I believe that they should not have to take books, music, magazines, etc. off the shelves just because of certain people. @CAPS3 should be a person's personal choice. If they do not like the item that they picked up, they should take responsibility for their actions, and not blame others for their mistakes." 4 4 4 4 4 4 +3335 2 "I think books, movies, music, and magazines that are offensive should not be pulled from the shelfs. If you find something offensive then dont pick it up, its that simple. You @MONTH1 find something offensive but it might not be to someone else. It is all according to you own personal opinion. Sure, there are somethings that are very offensive to certain people, and those people will try to put a stop to it. But I think that is wrong. Because it @MONTH1 be offensive to you but what if there is somone studying that topic but cant find the information on it because you thought it was offensive and got it pulled off of the shelf. Then it disrupts that persons study. I am not promoting violent books and movies or other offensive material, all im saying if you find something offensive then turn the other cheek. It @MONTH1 be offensive to you but other people @MONTH1 not think the same way. There are many books and movies out there that are offensive to many people. And if we were to take all of those movies and books off of the shelf then there would be very few subjects and title to read and watch. In my conclusion, I support the fact that offensive material should stay on the shelfs. It could be helpful to many people and at the same time it can be offensive to alot of people. But if you are one of those people that find something offensive then dont pay any attention to it and find another subject or topic. For someone to take another persons right to read a book or watch a movie is wrong everyone has their own opinions and rights" 4 3 4 4 4 4 +3336 2 Their are some books that should not be removed from libraries do to censorship. From past exsperian with censorship I found out it can towne down a book. In the book @CAPS1 @NUM1 for exsample the books are being burnt and it is causing socity to fall apart. Censorship is from people with a more ethnich back ground that dont want the kids to grow up and see unappopreat langue. The most recent book that I have heard of geting censored is @CAPS2 @CAPS3. The main word they are removing from this book is nigar because some people fined this word very ofinceve to their race. The comittys are trying to remove the books from school shelfs. I think we should not have censorship just because parents do not want their kids to hear the words in school or read them when eventualy the kids will learn the words on their own or hear the words some were eles. The kids can even learn the word from their own parrent or from t.v. I personaly think that comittys should stop trying to censor every thing because they wont be able to sencer how adults talk when they are around chindren and younger adults 3 2 3 2 2 2 +3337 2 "Katherine Paterson, a well-known author, presents an idea with which I strongly agree. She states, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf--that work I abhor--then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf left for any of us.' If everyone has the right to remove certain books that they find inappropriate, there @MONTH1 not be anything left for people to read. Although it is a good thing for parents to have a voice and stand up for what they believe, books should not be banned. Many people have different views on what is right and wrong. Some @MONTH1 suggest that a certain book is obscene, while others @MONTH1 be offended by a different book. If every parent had the right to get a book banned, there @MONTH1 come a time when no books meet the approval of the parent. Some of these books present great learning opportunities to students. Books often allow students to think in different, new ways. They can learn from a new point of view. Often times, a student can look at his or her own morals and values, which is a good thing. If a teacher finds a book which they think is appropriate, parents should respect the decision of this teacher. They @MONTH1 suggest another reading, or offer other ideas, but to go as far as getting the book completely removed is not right. While removing books for reading @MONTH1 be going to far, things such as movies could go the other direction. Personally, my parents would be horrified to see grotesque, inappropriate movies set out in broad daylight where everyone can look at them. I think that this difference between books and movies is a simple thing: Books do not normally have an inappropriate cover, while bad movies often do. Because of this, even the people who do not wish to view the movie are often forced to see images which they find disturbing. If one was to walk past a book they did not intend to read, they do not have to be apalled at the cover as they pass. Although parents care about the things their children read, books should not be banned. Although other things @MONTH1 have affects on youth, books are a different story. They allow one's self to dive deep into thought, to make observations, and to form opinions. They are a key to growing, learning, and discovering." 4 4 4 4 4 4 +3338 2 "First off, I do like censorship laws to an extent. However, the government cannot ban everything that they deem innapropriate. I think it depends more on what the family deems innapropiate. I do not think they should have any completely inaccessible areas in libraries for children of younger ages. I believe that the viewer should have a family member's consent to view said content. I also believe that if the content is not relative to the viewers interests, then they should just not look at it. They are not required to look at it so if they do not like it, then they do not look at it. However, if the library does not consent to holding the books, music, movies, magaines, etc., then they do not have to and the viewer can go somewhere else. And if they do have the books, music, etc., then they can put limits and ratings on them. But I do not think that an adult could go in and complain about innapropriate material. As I said before, if they do not like it, then they are not required to look at it. I actually think that the government should not tolerate parents whining and complaining about the content of different materials. One parent should not have the ability to take away others' privilages to books, because they deem it innapropriate. Just because they do not like the content, does not exclude all others from enjoying it. Also, if a library does have an age restriction on certain materials, then appropriate acts of discipline should be taken for the viewer of said materials. However, if the viewer has an adult family member with them and has their consent, then I think they should be able to view the material, regardless of ratings." 3 3 3 4 4 4 +3339 2 "There are so many books and magazines, music, and movies to be discovered in this world. Some are funny, sad, wierd, scary, etc. And then there are some that are questionable to others on wheather it was even nessecary to even put the the material on the shelf of a library in the first place. I for one am not one of those people who would question a book, magazine, movie or music. I believe that everyone's voice needs to be heard somehow and if we all take a voice away that we do not like, then we will lose a lot of voices. We are all entitled to our own opinion. When it comes to some things some are more opinionated than other, but in the end we all have something that we feel strongly about. There are some people who want to express their feelings with the whole world with people that understand and agree with what they feel. If we take that away from people, then how will we all connect? Some things @MONTH1 come across as offensive to others, but who has the right to say that something should not be shared with the rest of the world. I have observed that when people have the same interests in things like music, books, or movies then it gives people a way to come together and talk about something. I have witnessed at concerts everybody seems to connect because we are all there for the same reason, to see the band or person that we all like to listen to. Everybodys different and likes to have their own personal preference on something. Like Katherine Paterson once said, 'But if I have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I think she was trying to say that if we all take a book off the shelf that we do not think should be on there, then there is going to be nothing left for anybody to read. Then what will we do? Theres such a variety of materials that are needed to be discovered wheather it is a book, music, or movie everyone has their own special type that they enjoy. I do not think that censorship is a good idea for any sort of material on a shelf. Theses materials are what keep people connected with each other. I think it is very important to not censor anything because it does not just give the writer a voice, it give a voice for the people that agree with the material of the book, movie, or music" 4 4 4 3 4 3 +3340 2 "There are many books, movies, and music in the libraries. These things can come in so many varities. Have you ever been to a library and not found something you liked? Well most people find a lot of things that intrest them in many ways. Many people come to a library a day to check out something they will enjoy and have a good time listing, reading, or watching. So many people are diferent and each person likes something diferent from one another. So the question is, 'Should we remove some books, music, and movies off the shelfs because they're offensive?' From experince, yes there are things at a library that children or younger teenagers should not read, hear, or see. Though that most libraries split a lot of there sections up by ages. Depending on your age you should go to the sections that mostly provides the thing you want. Do not go to a place that provides something that is not your age group, instead go to the place that looks like you belong. I personally have seen younger teens or children get a book or magaizine that was not there age group, but @CAPS1 that children wanted to look up on that thing. You have to understand that most younger teens and children are curious about many things before they even get to that age. As a parent or legal gardian, most children look up to you. @CAPS1 you read, listin, or watch something that is not to there age level, but the child wants to be just like you. Children look up to there parents or legal gardian. They want to @CAPS1 do the same thing you do, so they copy you. They will find soemthing that is similar to what you doing. They might go find a book, movie, or cd that is not there age group. They will do this all because @CAPS1 they want to be just like there parents or gardian. So as a parent or gardian you have to watch what you do also and try to set good examples to you children so they do not find offensive books or ect.. There are so many reason why people might think some things are offensive. Even though we are the reason why books and other things are brought into libraries today. Children today are growing up a lot faster then we want them to, but sometimes we can not stop that. Just set good examples to children or any person not to get a book, movie, or music that is not there age group. Libraries can be a fun and learning enviroment for everyone. Just sometimes we all do not think a like or like the same stuff. There are just to many people in this world and I have read articles about libraries. I have read why libraries might not be a family place anymore all because of the varities they carry. Have you ever thought though, '@CAPS1 its use humans that makes the libraries carry these varities?' I think so, because we are what makes up a library. We the people are the ones that want these books, movies, magazines, and music. So think about it next time you walk into a library and you see something that you @CAPS1 not think is right. Think about how @CAPS1 someone @CAPS1 really likes that. We all need to except things if we like it or not at times. Just set good examples to help people not get those things that could be offensive" 4 3 4 4 3 4 +3341 2 "Libraries should have whatever they want in the library. Everyone has their on thoughts on things. If you don't like what they have on there shelfs then don't go there any more or pick up something you like. Everyone is different so you can't just take offensive stuff off the shelves, it might be offensive to one person, but not to someone else. Materials, such as book, music, movies, magazines you can't just start taking stuff of the shelves just because there offensived you. The only way I would say take books or magazines off the shelves is if the facts are not right. Libraries hold almost anything anybody needs materials, books, music, movies, magazines and everythings for facts. So don't start taking stuff off your shelves. Teenagers might have to write a paper about something that people think is affensive, if you don't have everything in the library then we won't have good facts. No one in this world agrees on anything, all you would be doing would be picking a fight if you taking of offensive.Libraries are open to any one that wants to read about almost anything they want to read about. Music everybody has there on type of music you can't just start taking music of because you think it's offensive. Most people have there own type of everything. Children is there own person you can keep them from whatever you want to, the thing is you can't hold them back in life. They get older you won't be able to tell them want to do or want not to do. If you keep them from a book or etc they might end up reading it in the long run. Keep you kids safe is inpormant I understand your kids are going to expirects things you don't want them to. Just by taking offensive stuff of the shelves doesn't mean your kids won't fine them some where else. I could understand if the books or magazines were offensive to you because it was about your family, But of time your going to have offensive come up in your life. That means your going to have to not let it get under you skin or get over it. Things get under people skin to easy. This is why the world don't get along. If you don't like something don't me around it. Fine something unless to read about. Thats what I do if I don't like something." 3 3 3 3 3 3 +3342 2 "Libraries provide us with knowledge, entertainment, and peace. You can go there to learn and to do research if you have to write a paper. You can rent movies, music, and books at your pleasure as long as you take care of them. Also, if you're just having a hectic day and need some peace and quiet, libraries become a perfect get away. But, heres the truth. Many people find certain things in libraries to be offensive and would rather them not be on the shevles. So, do we remove these things or let them stay? My opinion is to let them stay. I believe that books are too important to throw out just because they @MONTH1 contain a few vulgar words or images. It's the same with magazines and movies. Also, music is changing as the years go on and many people, especially elders, don't enjoy listening to this new style of music. Just because one person my find something offensive, doesn't mean everyone else will. People have many different views when it comes to these things. Take history for example. Many history books contain harsh, real life facts about things that went on in the past. A song, book, or movie about slavery can cause some people to be offended. Whether it's because the person opposes slavery greatly or they believe that slavery was a good thing, people have different feelings towards it. Another good example is movies. Some people @MONTH1 find a movie offensive because of words said or if a certain person dies first, while others could care less. Additionally, many things that are found offensive to one person can make something more interesting to someone else. There are many movies nowdays that can be seen as very offensive. But honestly, the offensive things happening @MONTH1 just make someone else want to know more about what's going on. It is practically the same with books. I myself have read plenty of things that would make some people cry or even get really mad or disgusted. Even though in the end, I lfind them to be exceptionally books. It just on how you view it. So, should things that are found offensive to one person be removed from a library? The answer is no. There are just too many things that can be taken offensively. If you start taking away these things, libraries are only going to become vacant. Younger people will stop coming because materials will be less interesting. You will lose artifacts and stories about the history of the world. There will also only be so many books to read, if ever a non-offensive book could even be found. My advise to libraries, keep materials that can be found extremely offensive in their own area, away from younger people who @MONTH1 react strongly. Maybe even put a sticker on the book, if possible, letting people know just what they're dealing with" 4 4 4 4 4 4 +3343 2 "Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I adhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I believe that the books and other items should stay in the shelves of the library that censorship in libriaries is unnecessary. As Katherine Paterson stated there will be no books left on the shelves if you take every book off that someone in the @CAPS1 finds offensive. What is offensive to one person @MONTH1 not be considered offensive in another persons point of view. Children, teens, and adults have their own right to choose whatever book they want to read, movie they want to watch , or music they want to listen to. If it is a child or a young teen then I believe that the parents should have a say in what their children read or watch. In my case I am not allowed to listen to offensive music or watch rated @CAPS2 movies but that shouldn't mean that it should be taken off the shelves of the library. Just because that is what my family believes to be right does not mean it is the only wat to live. A person has their own rights to choose what they want to read, watch, or listen to. They can make the choice by the way they have been raised or just because that is what they think is right or wrong. If they think that a book is offensive then they don't have to read it, they have the right to say no and put the book back on the self. If they think that the book is approriate then they can read it and there is no law stating that they have to share the book with anyone else. If there is a book out there that is offensive in your view and you read it there is no reason you have to agree with it. Every person is free to disagree with anything they want to disagree with. If you are a parent to a child and you are uncomfortable with them reading, listening, or watching something that is offensive you should set the rules early in life with them. Parents should make sure that their children are not reading inappropriate things or listening to offensive music or watching @NUM1 or rated @CAPS2 movies. Therefore, if you are comfortable with your children seeing and hearing offensive things then you don't have to worry about what is out there in the @CAPS1.The things that your children are watching, reading, listening to isn't a problem and if it becomes a problem in the parents eyes then they have the right to stop the children from reading the offensive books or watching the bad movies and listening to the music that the view as offensive. Every parent and family is different, as long as your child knows the rules and what you believe in then there is no need for censorship in libraries. In my family I am not allowed to listen to offensive music. Offensive music in my house is considered music with curse words in the lyrics. The words that my family considers offensive @MONTH1 be different then what other families consider offensive. I know that I don't want to and can't listen to those certain songs but that does not mean that I can't be friends or be around people that listen to that kind of music. Just because that is what my family believes in does not mean that it should be taken of the shelves of the library or any other place. What my family believes in @MONTH1 not be the right thing in another familys view. Every person has their own right and if they want to listen to that music then they should be able to. My family also believes that at my age right now I should not watch rated @CAPS2 movies. If you took all the rated @CAPS2 movies off the shelves, then half the movies would be gone and that is not fair to the people who enjoy rated @CAPS2 movies. What my family believes @MONTH1 not be what other families believe in. I know what I stand for and I will do what I think is right and I won't listen to offenesive music or watch rated @CAPS2 movies. In no way though does that mean that other children, teens, adults shouldn't enjoy that kind of music and those movies. In conclusion, I believe that censorship should not be used in libraries. It is every persons own right and they are capable on making decisions that they think are the right thing to do. Parents also have a say in what they want their children to watch, read, or listen to. They can montor what their children are reading, watching, or listening to and if they find it offensive they can stop their children. It is not necessary to take the items off the shelf. In my family, my parents find some types of music and movies offensive and I know when I go to the library or any other place that I won't get those items. I will get the music and movies I enjoy and find age appropriate. Just as in @PERSON2's quote everyone has the same rights and if we all take the items we think are offensive off the shelves, then there will be nothing left on the shelves. Everyone has a different point of view and no one person has the correct or wrong point of view that the @CAPS1 has to follow" 5 5 5 4 4 4 +3344 2 "Offensive media is everywhere. From books to music lyrics, our culture embraces us with it. Children that see inappropriate media can pick up bad behavior. This can then lead to a child having a hard time associating with his peers. Adults are also affected by inappropriate media if they see their favorite celebrity or any other role model use inappropriate behavior. This could make an adult emotionally unhealthy and they @MONTH1 become violent or depressed. Finally, our world could be better if offensive media were abolished altogether. People's lives could be enriched with good, clean entertainment instead of being corrupted with inappropriate media. One can clearly see that offensive media must be pulled from our country's libraries immediatley. Inappropriate media is surrounding us daily, including children. What children see they imitate, even in the first couple years of their lives. So if they hear a swear word on t.v or see someone doing drugs, they @MONTH1 imitate it. Clearly this is inappropriate behavior for a child. If the child is exposed to inappropriate media, for a long period of time, they @MONTH1 think that it is ok to use it in everyday life. Their social skills and mind is being corrupted because of offensive media. Libraries should pull inappropriate media off of their shelves because it can corrupt a child's mind. Another reason why libraries should pull off offensive media is because adults can pick up different offensive habits as well. Just as children can pick up the offensive habit of swearing , so can adults if they are exposed to it for a long period of time. Besides swearing, adults can also think that killing someone is ok because they saw it in a movie. They could then pick up a violent weapon and try to kill someone if they are angry. This is not a healthy way to express your feelings towards someone if they are making you angry. Our country's libraries should pull off inappropriate media from their shelves because it can turn adults into being emotionally unhealthy. Finally , inappropriate media should be pulled off library shelves because our world could be a better place without it. Media is one of the root causes of why people act the way they do. If they see their favorite celebrity getting arrested for a @CAPS1 in a magazine, they @MONTH1 think that it is ok to drink and drive. Another example is if people read about someone doing drugs in a book, they @MONTH1 want to try and experiment with drugs themselves. This can lead to people doing crazy things that can be harmful to other lives around them. Offensive media is almost anywhere. When children see inappropriate media , they @MONTH1 think that it is ok to imitate it. Adults, when exposed to enough offensive media, can pick up nasty habits like swearing, killing or doing drugs which , inturn , can lead to to being emotionally unhealthy. With out inappropriate media on our library shelves, our world would be a better place. We would have less conflict, less deaths ,and better lives that are enriched, not corrupted , with quality media. Millions of lives could be made better if libraries pulled off inappropriate media from their shelves" 3 3 3 4 4 4 +3345 2 "All of us have rights, all of us have the same chance to express what we feel, think or believe. Freedom is the most beautiful and important thing we have and nobody can take that away from us: its just something that belongs to ourselves and that everybody does have. As humans it is not easy to understand othe people's thoughts and it could turn kinda of hard to accept the opinions that extrangers from us can apport. A library is a place where we can find all kind of material that can easily answer many or our questions, sometimes some material can be offensive and make a target of people feel unconfortable as well as there is material that can be really helpful through our searching. If i had the right to remove any magazine, book or movie off the shelf, i would at least think about it before remove it and consider how helpful and worth it it could be for someone that really needs it, and if everybody else had the same right as me, the we wouldn't have any material at all in the library. Music is a big topic to talk about, we all know there are people that are really used to listen to a type of music that other people can call it as 'rude music' and i could be pretty much offensive for kids. I trully believe it wont be fear for any of us to labeled people because of the music they like, the books they read or the movies they watch. We need to understand nobody is better than nobody and we also need to respect other people's feelings, its something that we have to work on." 3 3 3 3 3 3 +3346 2 "Should books, magazines, or movies that are found offensive be removed from the shelves? I think that the book, magazine, or movie should stay on the shelf even if it is found offensive. If it is offensive to one person, it doesn't mean that it is to every person. Everyone has their own view on the subject of offensive or not. I don't think the person that wrote the book or magazine meant for it to be offensive. They were just writing what they thought went along with the story and some people took offense from the book or magazine. But, they shouldn't argue over it because, like I said before, the author probably didn't mean for it to be offensive. In conclusion, the books should stay on the shelves. Everyone has different point of view. The author probably didnt mean for the book or magazine to be offensive." 2 2 2 3 3 3 +3347 2 "Censorship in the world is getting worse everyday. Many people believe that some material is unsuitable. I believe that if it is unsuitable for others does not make it unsuitable for some. I believe people have the right to read,watch, or listen to what they want as long as it is not breaking any laws. I am torn on this topic because I am against censorship, but I am also for it when laws are being broken. I believe that people should have the right to read whatever they want. Granted, some people read very incriminating books that could get them in a lot of trouble, but not everyone should be punished for another persons mistake. Sometimes you hear about terrorist groups and other illegal groups, but usually they do not market to everyday people. I think that when it becomes a threat to the @LOCATION1 they should remove material. Another simple fact is that the constitution @LOCATION1 that we have the freedom of @CAPS1, which basically means we @MONTH1 print and read whatever we want. Many people depend on the constitution to make their lives seem safer and sometimes there is a book,article, movie, or a song that goes beyond our limits. I believe that some people use materials wrongly sometimes to get ahead and to make a name for themselves. I just think that people should write for the pure joy of it, not to persuade people to do something bad,or give bad thoughts or ideas. The government has the right to control what we partake in, but does that seem fair? I understand thier logic behind this matter, but just because it has offensive matter does not mean they should remove it from society. I believe that if people want to experience it they should be able to without wondering if it will gone the next day. If people do not agree with this 'offensive' matter, then they should not take part in it. This is a true enough statement that it just makes you wonder about their logic. So, does the government have the right to say what we can and cannot read? I don't believe so, but that is my opinion. I believe that people should read whatever they so choose to and should not think they are breaking laws for some 'offensive' material. Freedom of the @CAPS1 is what people have to look up to for the government, but how are people supposed to feel secure when they are reading a book, watching a movie, or listening to music that @MONTH1 be assumed 'offensive'." 4 4 4 4 4 4 +3348 2 "Have you ever found books, movies, music, and magazines that are about drugs, sexuality, and violence? I think that books, movies, music, and magazines should be removed from the shelves of libraries if they have anything to do with drugs, sesuality, and violence. There are many reasons why I think that those books, movies, music, and magazines should be removed from the shelves of libraries. One reason is because little kids can get ahold of the book, the kind of music, the movie, and the kind of magazine that contains drugs, sexuality, and violence then they can learn how to do those kinds of things. A second reason why I think that they should be removed from the shelves of libraries is because I feel like a library is not a place to have those kinds of books, magazines, that kind of music, or that kind of movies for parents and their kids to read about and to watch, or even to listen to music that contains drugs, sexuality, and violence. The third reason why I believe that they should be removed form the shelves of libraries is because thoes kinds of materials belong in another building, a building that is far away form children and only certain people can get into the building and look at the books, magazines, watch the movies, and listen to music that contians that kind of stuff. The last reason why I believe that they should be removed is because from experience, one time I found a book about drugs I looked at it but it was very unappropate for little kids to look at, it had pictures of what drugs look like, what certain durgs can do to the body. In conclusin I hope who ever is reading this that you realize what these books, moveis, music, and magazines are doing to the people that are reading them, watching them, and listening to them" 4 4 4 3 3 3 +3349 2 "There are tons of books in the library that people @MONTH1 find offensive to young readers today. I think that these materials should not be removed from the shelves. People have a right to read what they choose to read. There are many reasons why I think these materials shouldn't be removed from the library. First of all, there are so many books that could be found as 'offensive.' @CAPS1 removing all of these offending books, you would basically be removing half the books in the library. Most young adult books have something to do with teens, drugs, violence, and other things that would come off as offensive. These books are usually the ones that teenagers read. Just because they're reading them doesn't mean their actions will be affected. These types of books are read for the purpose of entertainment and not meant to harm or offend anybody. Secondly, I think that people have a right to choose what they want to read, listen to, and watch. Books, music, movies, and magazines are sold for this purpose. Everyone has a different opinion and taste to what they like or dislike. Finally, I think that censoring what is put on the shelves would be a mistake. There are tons of great books or movies that could be found offensive and to take them off the shelf would make them less known. Children wouldn't know about them, and they could be missing out on some great stories. Everyone has an opinion, and watching out for your children is understandable. Censoring what is available at the library would make finding books harder for other people. Libraries are meant to have different types of material because everyone has a different taste." 3 4 3 4 4 4 +3350 2 I don't think that they should be removed from the shelfs. Everyone has a right to read it at some point in time. To were no little kids can rent the book. If they are complaining about how it's volgar or sexual. Then you shouldn't take it away. Try something else such as an adult section. One person @MONTH1 love a book that has some violence in it and on the other hand you @MONTH1 have a person who is real religous and can't stand to see it. There are very many view points of this topic. The parents who don't want their kids to be exposed to this type of life style. Some people don't really think about it being as bad as the next person. If it's a book you dislike on a book shelf and you don't like it put out in plain sight. Should you really be the one to make the decision on who takes it down? Some people don't know what their kids like to read. If they have the final thought on what gets taken down it @MONTH1 affect the kids reading habbits. What if your kid wants to read a horror book and you choose not to let those kinds of books on the shelf any more. Then they don't want to read the books that are left up on the shelf. I'd rather read a book that interests me than a book that I dislike. My point of view on this topic is simple. I don't think the parents should be in controle of what we read as long as it's appropriate. I think the decision should be left for the government to say which book should and shouldn't be taken away. 3 4 3 4 3 4 +3351 2 "When it comes to censorship I believe that very few things should be removed. Just because it is found offensive by some does not mean it is offensive to all. A material should only be removed if and only if that material offends an over ruling majority of people. If you find it offensive just ignore it you don't have to buy it. Maybe somebody else finds it interesting and it comtains the information that they have been seeking. When it comes to books, music, movies or magazines I believe almost anything should be allowed except for material that depicts nudity or drugs and alcohol. Other than that a little cursing here and there and some violence is perfectly acceptable, but it should probably be kept from small children if it's to bad. Usually if a child is exposed to that type of material they usually grow up believing that whatever they saw as a child is completly acceptable. Sometimes it's violence sometimes it's other things like drugs or alcohol, whatever the case @MONTH1 be. Many parents believe that certain material should be banned because it exposes their child to bad morals. But my belief is that if your a good parent then shouldn't have to worry about that type of stuff. If you really do not want your child to be of any part of it then take actions to do such. For example if you don't want your child watching a certain television show then block it. Don't just think they won't watch it and then when they do you get mad at the people who created the show. It's not their fault maybe you as a parent should have made sure in the first place that your child did not see that material. There are some people out there that believe that if any material depicts anything bad then it should be removed. But what I believe is that this is @LOCATION1 and people can read and write whatever they want, and if you have something to say about it then that's fine by me you can believe whatever you would like to believe. People should be able to keep their freedom of speech and be creative without being ridiculed by people" 4 4 4 4 4 4 +3352 2 "Yes because children should not be reading anything thats is like that. Children snhould be reading a book that haves good information in there and information the children should be learning while they are in class. Well if the books, music and other stuff to read and look have bad stuff in it should be removed from the shelf because children should not be looking at it. Some music has bad language in it and children should not be listening to music like that. Also movies that have inapproriate scenes in it should be watched by children becaus eits not good for the children to see all that and parents should do something about if their children is watching movies with inapprroiate scenes in it and magazines that have inapproiate pictures because children are too young to see that." 2 2 2 2 2 2 +3353 2 "My thoughts on censorship in libraries is yes some books, music, movies, magazines, and etc., should be taken off of the shelves if they are offensive. If they are left on the shelves some very small child or teens could come up and reach for a book and find that it has bad things in it that are ment for adults. The child will ask the caregiver that they are with '@CAPS1 does this picture mean?', and they will most likely not know @CAPS1 to say at that moment. Parents and caregivers are not always up to explaining or want to explain as soon as they have to about things sometimes. Everyone goes through life with different things they have to learn at different rates. Somethings should be taught when we young like how to brush our teeth, but somethings should be left until we are older like having babies or drinking. When parents going through the explaination of something like making babies you do not want it to be when they are only five years old. With books in a library with pictures of men and women questions like that do get asked to young. Libraries are public places and should be safe for any age no matter whether they are young babies or adults. Public schools have libraries in them also, and i would not want a child reading a @CAPS2 or @CAPS3 book with bad or offensive things in it. It does not just have to be a book with bad things in it, but it could also be something to do with religions. Everyone has their thoughts and comments on at least one religion. If you have grown up a @CAPS4 your whole life, and a kid picks up a book dealing with jews they will ask someone about it. Young kids and teens can always find things that they should notat certain ages, but why not make it less by not letting a library be censorshiped? When you were younger your parent did not want to take you to the library and be asked an offensive question because of a book, music, movie, or magazine. It has worked for so many years, so we should not have to change it now." 2 3 2 2 4 2 +3354 2 "I dont believe that it should matter what books are in a library. If you think a book would be offensive to you, dont read it. If you were to read a book with opinions about a cirtian race or religion, just keep your opinion to yourself. Most people make a big deal about cirtian things to get attention. If a library was split up into sections about topics and such, it would help a lot, and it would be a quicker way to get your books and get out to make room for others. I honestly have not seen a @CAPS1 in a school library, but its probly because I did not spend much time lookin for it. And if there isnt one, its probly because someone complained about it. If you are religious, you should have the right to be able to read what you want. Theres all kinds of weird books in the library, and a lot of people just look at them for the fun of it. I dont know why some people have so many problems with certian things. Like I said before, if you dont like it, dont read it" 3 3 3 3 3 3 +3355 2 "I don't believe any of those materials are offensive if found in a library. But if the childrens look somewhere else to find those things then they will find them anytime. The offensive materials are out there to be pick up by some people including children. The books aren't offensive only if found in the adult area. If so found there the children would'nt read it because it's too long for them and the book doesn't have any pictures in the book. Music is offensive but like I said only found in the adult area. Kids aren' interesting in music at that ageso they would'nt bother to see them. Movies and Magazines have offensive things in it and can be found any where, but found in a library is gonna be rare. The only thing you will find in a library that is offensive is gonna be a magazine.they make a bunch of different type of them, and can be found anywhere. To explain the offensive, and the none offensive books that are out there. I'm gonna talk about '@CAPS1 @CAPS2.' @CAPS3 book has a lot of bad words, sexual scenes, drugs, gang violence, racism. @CAPS3 book is so offensive that the childrens parents would'nt let them read it, but @CAPS3 book is based on a true story. Everything that happened in that book was real, and people need to know what happened and why were the people in that story doing those things. Some books @MONTH1 be offensive but you can learn from others mistake by reading that book. Everything @MONTH1 be offensive to you in one way, but looking from the other point of view it's a learning experience. People that made those mistake could tell the childrens that those stuff aren't wroth it. Everything has it's purpose. The books can tell you the story of peoples life, and the movies are based from the story and instead you can watch it. Music can tell you the life of people by poetry. Magazines really dont have a point their just there to gossip" 3 3 3 3 3 3 +3356 2 "Is the censorship in libraries really necessary? In my opinion it is but only to a certain extent. I believe that most people who frenquently go to the library know what types of books, movies, magazines, etc. that are for more of the adult group and more of the teenage/children group. I think the censoring is helping to keep our youth from taking the words and actions and using them in there daily lives. If we @CAPS9't want them to read or to even hear them I think the censorship is a great thing in ways. I believe if the censorship was to go away in some forms, I would use a different method of a censorship that was a bit more on the more favored sides for adults. The censorship would still be at the library in a certain form. There would be something just a bit different or new about whatever that person is checking out. If we could, when people are checking out these books, movie, magazines, etc. we could use a rating just like movies do. When a child whom is @NUM1 comes to the library to check out an item and they find one they are interested in they could bring it to the librarian and the librarian would check the rating and the age of the child with there library card and see if that item is appropriate for that child. There could be many ratings @CAPS1, @CAPS2, @NUM2, and @CAPS3. I think ages @NUM3 are for the @CAPS1-@CAPS2, the ages @NUM4 are for the @NUM2 and ages @NUM6 and up for rated @CAPS3. I see many times when children are learning words, phrases, and actions from movies, books, etc. that make them think it is ok to do or say these things. I think not. In my opinion I think that this idea could help out our youth and there parents make better choices in the content they are submitting themselves to. So if you feel like this is a good idea contact your local library and tell them you are in favor of the @CAPS7, '@CAPS7 @CAPS8.' @CAPS9't wait until you have forgotten, call now." 3 3 3 4 4 4 +3357 2 "Books, movies, music, and even @CAPS1 are all important in this life, and enviorment of ours. They all have a learning process. When you read you learn, when you watch a movie you learn, even when you listen to music you can learn. Weather its about past present or future, everyone has the right to learn it's part of being a citizen. Speaking of all this I belive just beacuse one book, or one movie makes someone uncomfortable i dont think that you should take that away. Thats not only taking away from your kid, or yourself thats taking away from everyone else. Just like the book huckleberry fin it's a wonderful book i love it because it's about the old days where they still belived in slavery, and there were still some good-hearted people around. This book to some would be very offensive beacuse of the fact it has the word nigger in it one-hundered and twenty-seven times. In fact last year at my school a mother tried to get it taken out, because she didnt want her son to read it he was actually a mixed boy but thankfully the committee saved it and it's still here. That's our history and everyone needs to learn some of it, weather it's offensive or not. As well as movies that can and mostly likely is offensive to people, they still should not have that stuff taken off either, like I said earlier thats taking away from everyone else. If you dont wanna see it then dont buy it, or if something that you find innapropriate comes on just change the channel. History is important and I dont think people should keep you from your right as a citizen and deprive you from learning what you wanna learn or need to learn for the future. Now the music part i can understand, some @MONTH1 be a little innapropiate for younger listeners so like i said before again change the station or dont buy that @CAPS2. Dont deprive people of what they wanna learn, watch or listen to. People that feel offended or embrassed should be ashamed of them self because that is very selfish, and rude. No one should be ashamed of who they are or any movie that describes the old days in the way it actually happened, if they put it in the nice way then it would all just be a lie. That's why I dont belive in censorship. It should not happen, any book, movie, magazine, @CAPS2 should be available to who wants it" 3 3 3 3 3 3 +3358 2 "People see libraries as a good place for knowlodge and just an information place, many people like them and some dread of the fact of hearing the word, '@CAPS1'. To be honust I only know a handful of people who use libraries in my life as a source for information now days but; Can some information from libraries be offencive to others? The answer is based by your own opinion to be quite honust, but yes I think some iformation that can be picked up from your local @CAPS1 can be rather, disturbing 'per say'. Theres books and information that you wish you would have never picked up in your whole life, then again thats everywhere. Now music and movies etc. is sort of the same way, some @MONTH1 not agree with what he/she picks out and you know they might be interested in. Can it be offencive to people? The answer is of coarse it can, but because people will be people. You @MONTH1 not agree on something, but your friend might think entirely different from what you are thinking, everyone is titled to their opinion on anything, well normally. Now if they have graphic movies or explicit music on the shelf where your little son/daughter can just grab, I could see that as a major issue. Some parents do not want their children listening to that music at such a young age, even though the way things are in america your child will hear or see those things, it's life. If that is the case where a five year old can pull a graphic movie or a cd that a parent doesn't want them to see or hear, then I do'nt nessasarily think it should be banned from the @CAPS1. I believe it should be handled well mannered and it should be moved, to a not so easy reach to a five year old. These are common arguements people have, about many places and about simular disagreements. Yes, I agree some things found in a @CAPS1 can be found offencive to some but my answer stays as, 'No' it shouldn't be removed unless it really is that offencive. If there is something that offencive in the @CAPS1 and mutiple people find it offencive in the community, I would take it to the people in charge of the local @CAPS1" 3 3 3 3 3 3 +3359 2 "I think that if u feel like they are sayin bad thing that you should not read the books or magazines and dont lisen to the music and dont look at the moves. If you feel offensive about it just dont look at it because a porson might not find it offensive.It is port of life to look at something offensive so why do it now. I think that if they do that they might just take some @CAPS1.Vs shows off the air becuas there are a lot off shows out there that are offensive and some do not like that but they dont take it off the air so why take books music, movies, and magazines off the shelves. i dont believe that they should do that at all becuas if i dont like it i dont look at it so i dont get mad at something somebody say bout my believe. A porson might not like the same music u like i might not like the same music he or she likes but i dont wont to take it off the shelves they should just stop lookin and lisning to all this stuff a porson says about there believe." 2 2 2 2 2 2 +3360 2 "Libraies should not be able to remove books, movies, and magizines off the shelves just because some kids might be offended. If the town libraries and school libraries took out the cool movies, magizines, and books that most kids love to read and watch then the kids that like those books , movies, and magizines would not return to the library any more. For example, I like to listen to hard rock, heavy metal, and rap. But, the people that go to church just like to listen to church music. If your with your friend one night because he invited you to come to church with him and you pull in the parking lot listening to your rap music some people @MONTH1 not like it. This doesn't mean that they should take the things people don't like off the shelves in order to satisfy them. Libraries should have a policy stating that if a child should check out a book or magizine or rent a movie, that they should have the childs parents sign and return a permission slip stating that their child has their permission to rent this book, magizine, or movie. Libraries should have an age limint to check out books and magizines. If kids would want to rent a movie then they would have to have a permission slip signed by their parents and returned. This permission slip will and can be used for all movies. Libraries should not remove their books, magizines, or movies. They should make a policy to allow older kids to check them out. So, library material should be a choice" 4 4 4 3 4 3 +3361 2 "Some people @MONTH1 think that certain book, movies, magazines, or music should be removed from libraries because they @MONTH1 be found offensive. I believe that libraries should not rid their shelves of 'offensive' material. What really makes something offensive? If someone were to tell me that it looked as if I've lost weight, I would find that offensive. The person wouldn't have meant it that way, though. Although I would have found it slighly rude, another person @MONTH1 have found it to be a nice compliment. With this logic, can one really conclude that anything is truely offensive? By saying something is offensive, you're stating your own opinion. Even if they aren't the same as everyone else's, everyone is intitled to their own opinions; equality is something most people find very important. Because of this, one person's definiton of offensive shouldn't be held higher than another's. If we rid libraries of 'offensive' material, that is exactly what you would be doing; you'd be making one person's definition of offensive superior to another person's. I also believe libraries should not get rid of 'offensive' material because by doing so, they would probably be getting rid of a lot of interesting material. Let's use my religious beliefs for an example. I am @CAPS1 @CAPS2. Basically, I do not believe in '@CAPS3'. If someone were to write a book about my religion, I would find it interesting. Some @CAPS4 @MONTH1 find it to be offensive, though. So if a library got rid of that book because someone found it offensive, I wouldn't want to go there as often. When I go to a library, I want to find a book that I'd enjoy reading. If all the material that is found offensive was taken out of the library, would there really be anything left? If so, I doubt many people would find it interesting. I also believe this because by taking a book off the shelf because you find it offensive, wouldn't you be offending the author? As I said before, everyone is intitled to their own opinions. Because of this, libraries should allow authors to speak their minds. By taking their books off the shelves, you'd be offending them. They took their time and effort to think about and write that book, and for you to offend them by taking it off the shelf, you'd be controdicting the entire purpose of removing it from the shelf. In conclusion, I believe that nothing can truely be defined as offensive. Also, people should be able to speak their minds. Therefore, libraries should not attempt to rid there shelves of 'offensive' material" 4 4 4 4 4 4 +3362 2 "Dear @CAPS1: Have you ever seen an offensive book on a shelf in a library? Would you want your children influenced by these findings? These are the question you need to ask yourself about certain materials that appear in libraries. As a concerned citizen I am writing to you to relect my opinion on censorship in libraries. In my own personal experiences I have come across magazines, books, and music that are offensive. I believe that these materials should not be found in libraries. There are many people that still would want these materials, so my suggestion is that there should be a seperate room for the offensive materials. If there was a seperate room, we can keep these materials away from young kids. When I get older and have children, I believe that the library should be a kid friendly place. In order to make that happen we need find a place for these materials or not have them at all. Libraries need to be somewhere were anyone can go: a college kid trying to prepare for a test, a young child wanting to discover @PERSON1, or a old man wanting to enjoy the peace and quiet. The distraction of offensive materials are not needed in a library. Libraries are places to learn and explore the different sources that are inside. For young children it is the fairytale land where anything is possible and the unimaginable can become true. If there are materials that adults do not want their children to see, they @MONTH1 not be comfortable having their child there. Libraries need to be kid friendly places, so that all the ages can enjoy what it has to offer. As you can see, offensive materials should not be in libraries. All ages should be able to enjoy what a library has to offer, and with some materials that is not possible. Please consider the following. Kind regards, @PERSON2" 4 4 4 4 4 4 +3363 2 "They need to remove the bookstors because all studeds wants that the library have many books like spanish books or the diffrent culture, and the students can knows diffrent languges or that they can do many this with that books. Like example they can read load and also they can do the same book with others words. And also the music and movies they need to remove because some dvds are spokeds thats they need to remove. For example librarys in the world that the need to borrow somes books for many people took, and the people can takes the book without pay nothing, thats the people want that the librarys are free. Also the librarys need to spants with many parts in the world that many people think that did's great idea because many people said no because the librarys can't not borrow a books or dvds, magazines, etc. Thats why the librarys need that the people know that the librarys not borrows books thats happed in the world.... I think the librarys need to do is go with the people and show what they have in the library and borrow books dvds thats the people want too... sometimes the library can rent the dvds that are interesting that the people can't find in the other place, like movies new but if the library not have the dvds somes people can go to the library and give to the bookstor that you can find in the other place. would we have to read more like many people do thats great idea. And the library need more style for the people are excited and take the books and read." 2 2 2 1 2 1 +3364 2 "Censorship is important. Especially pertaining to what books, magazines, movies, and music almost all people are reading, watching, and listening to. Some of the media such as books and magazines and such in libraries everywhere can be highly offensive to certain people or can send off the wrong message to children and teens. So, should we take them off the shelves? I personally think no, most media aspects that are on the shelves in libraries can be very offensive to people, but alot of it has to do with people's opinions. The readers are the ones that are claiming that the books and other media aspects in libraries are offensive. The authors and directors and singers just do what they do, and the judgement and opinions all come from the people, fans, and critics. We shouldn't be taking it all off library shelves just because it is offensive to some people. This leads back to the quote from Katherine Paterson when she states: 'And then we have no books left on the shelf for any of us.' We can't take everything off the shelves because everyone's opinions are different so if we censor everything, there won't be anything left. Right now, they are doing a good job with censoring everything such as putting a rating on video games, and movies. Rated @CAPS1 movies are known to be for adult watchers and same goes for video games. Music they play on the radio is censored of all the foul language, so they make an effort. That leaves people the choice to watch, listen, or read the things they want, and they have to know beforehand that it might offend them. Although sometimes people think censoring those media aspects is not enough censorship, that's about all that can be done to not offend others. By taking everything off the shelves because of people's opinions, it could potentially make someone else angry or them being lacked of the things they want to read or watch. Censorship can be wholesome without removing all media off the shelves and in the world" 4 4 4 4 4 4 +3365 2 "Censorship in Libraries I know as well as everyone else does, that you can find almost anything, reading related, in the library. There is all different kinds of stuff in there. From children's books, to love stories and people's magazines, newspapers, movies, and music. Everyone is welcome in the library, of course, but is everyone aloud to look at whatever they want? I personally think it's a good idea to have all of this stuff in the library, for anyone, even though some of it's not very appropriate. For people who sit at home and don't have a library, maybe they want to know about something specific and the first place they would think about going is the library. Nobody can really help with what people @MONTH1 find in the library but i think it's a good idea to keep that kind of stuff in a public place. You could go on the internet to get whatever information you need, yeah, but, what if the internet doen't have what you're looking for? I like books better then internet myself. Anybody can put information on the computer, but atleast when it's in a book, it's true, because it has to be published and read by someone that wouldn't let a book with false information be sent out to the public. If the libraians are worried about underaged kids getting into books that they're not suppose to, then put it somewhere where they can't reach. Put the adult books in the adult section, and don't let the little kids go in that area. You could always put them up high too so the kids wouldn't even know they was there. All the libraries I've ever been to, had their own sections, the adults would go to their section, and the kids would go to their's. If the parents are afraid of what their kids will find, then keep them home and don't let them go to the library. Make your own at home, then you could put whatever books and magazines you want in there" 3 3 3 3 4 3 +3366 2 "Should certain materials be removed from our library shelves just because it has uncensored materials inside of it? My opinion is no, actually heck no! Now don't get me wrong, but I'm not the type of person that likes reading materials like that all the time, but every once in a while there is a really good book or magazine I would like to read that is uncensored. The bad thing is that I am told I cannot just because it says something or shows a picture of something a teenager supposidly shouldn't be seeing. One of my main questions on this material is why are they allowed to show statues of the early roman times in our history books but not materials we hear and see on a daily bases? Half of the time the statues are of a naked person. I don't see why that is allowed but other materials about our times are not. We are in the time period were people are open that it doesn't bother them to see that stuff. Yes, some materials are not suited for teenagers my age, but honestly I hear offensive things all the time when I walk through the halls in my high school. Someone @MONTH1 have an opinion about how the material is offensive, but if its so offisive why do they bother even complaining or thinking about it. Yes, everyone has a right to their own opinion, but thats there opinion and that doesn't make them always right. That person can have there opinion but other people have opinions that might oppose the other persons opinion. Does that make them wrong? You will never know because everyone has there own and who knows whose opinion is right. Another statement I would like to just throw out there is that we teenagers are learning to make our own decisions because in the near future we are going to be adults and have to make those choices on our own. So, just let us choose if we would like to read material with uncensored things in it. It is our choice, why can't we just choose it without people telling us we cannot. I still do not see why it is such a big deal of reading uncensored material. Why can't they just allow the materials in our libraries. Don't make any decisions for us because we can do it ourselves, we are learning how to be more adult like, right?" 4 4 4 4 4 4 +3367 2 "@NUM1ed The censorship of certain media is such a controversial topic. Whether a certain piece of material is considered offensive and should be censored or not is more often opinionated rather than logically opposed, because it really does all come down to someone's opinion on this matter. It is too difficult for most people to step in someone else's shoes or be persuaded from a viewpoint different from their own or even escape pressures from the general public to consider something else. Things get censored for a lot of reasons, too! Sometimes they're just so intentionally offensive that perhaps the author or producer wants it to be censored or would appreciate the controversy, or that a new view or opinion is so radical and against a majority of the population that it is just considered offensive for being so different. Well, when does someone have a right to take a song off the air or pull a book permanently from a shelf? The first thing that needs to be contemplated is if something is offensive or not. There are extremes to pieces of media where one sometimes must ask, '@CAPS1 were they thinking when they made that?' A movie being so outrageously graphic or violent is a fine example (although the same thing can happen in books, just with words instead of pictures). At the same time though, whether or not something you might think as unnecessary gore in a film might just be @CAPS1 I'm excited to see when I go to the cinema - it's all opinionated! Another interesting thought is that somebody might come up with a revolutionary, radical scientific theory and write a whole novel or film a documentary explaining it all, but certain groups of people might claim that it is offensive to them. However, we might investigate into that theory ourselves and not be offended in the slightest. This is understandable though, people grow up in an environment that has its own set of ethics and principles, and people will honestly believe them and probably stick with those fundamentals throughout their lifetime. If you go against someone's beliefs that they hold so dear like that, they would of course be offensive to them. Does that mean that the something should be censored just because it offends a couple of groups in a population? Whether or not something is to be torn from the access of the public is left up to the opinions of the general public themselves. The opinion of the public is created by the current time, trends, ethics, and problems that are going on. When something goes against too many of those things, people get upset. If most people are upset by something, it will probably start disappearing from sight. It's bad for business, and libraries are losing customers already due to most people not having an urge to read anymore with all of the stuff that you can do otherwise. Certain things can just put a bad taste in your mouth, and if someone gets that too often when they go to a library, they probably won't go there anymore. So when it comes down to censorship in libraries, or anywhere, its just a bunch of opinions. If the general public does not like something, it will stop showing up. Certain books or other pieces of media are asking for the controversy that many subjects bring, while others are just unintentionally going against certain groups of people. People's beliefs are determined by where they grew up and when, and they'll hold on to those things for their lifetime. If something goes against those, people will be offended, and if enough people are upset, it gets taken away" 4 5 4 4 4 4 +3368 2 "Isn't it shocking that some books, music, movies and magazines you find on your library shelf today aren't appropriate for the little ones. I believe that if you have to question whether a child should be listening or viewing this item then it shouldn't be in or around a child section at all. Some content could be offensive to not just children but also to teenagers and adults. Some music @MONTH1 contain words that are children shouldn't be exposed to. Music such as hip/hop and rap @MONTH1 contain degrading comments to men and/or women. I wouldn't want my child listening to this type of music, or reading any book that talks about it. Music @MONTH1 also be offensive to cultures, religion, sexual orientation and race. Books or music with comments such as that should have notes written on them stating what they contain. I was reading a book called '@CAPS1 of @CAPS2', that i had picked up in the child section. After the first chapter I had wondered who who call this a children book. The character was using profanity and talking about sex the whole time. My child shouldn't be looking for a book on pie then find out its not about pie. I once was watching a movie with my two year old that we got from the library. The movie was full of inappropriate words, therefore I had to shut it off. Movies like that should not be on the shelf at the library for my child to view. I now have to worry about what we check out. I also have had a few bad reading experiences. Magazines is a big one. Some magazines @MONTH1 contain content such as innappropriate pictures and words. Magazines should stay at the grocery store rather then a library that I take my child to. Books, music, movies and magazines should stay out of the childrens section if they are only meant for adult viewing keep them in the adult section. Any parent would tell you that they don't agree with some of the stuff on your local library shelf today. Offendsive content shouldn't be found in the library at all. I know now to keep a better eye on what my child is reading." 4 4 4 4 4 4 +3369 2 "All kid's have their own style of books, @CAPS1 people like scary, funny, or romance books, but can we really take that to an offense? We should think of how taking @CAPS1 books off the shelf would affect more then one person, @CAPS1 people @MONTH1 be mature enough to read the more 'grown up' books or magazines, libraries have all types of syles for different people, you just might have to look a little harder to find the right book for you. I do not agree that @CAPS1 books and or magazines can be taken offensive. All libraries are different types of books,for example an elemantry school library they will not have grown up or teenager books, and a middle school will not have little kid books. We also have to think does peer presure effect what books or magaiznes kids read? , for example when I was in middle school my friends were all reading romance books, and I was still reading @ORGANIZATION1, and I had to change my reading style to fit in, so that's exactly what I did. Books that have offensive content shouldn't be taken off the shelf, I believe that if there is 'offensive' books in your library, just ignore them you @CAPS2't have to get that book, we cant just take the more grown up books out because @CAPS1 kids @CAPS2't know what their suppose to be reading. Libraries have all different style of books to fit everyone's taste, so just look for that right book that suites you, and @CAPS2't take all the books that have an offensive style of the shelf, @CAPS2't judge a book by it's cover" 3 3 3 3 3 3 +3370 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' - @PERSON1 If one thinks about it books are such a magical escape from everday life. They can take one anywhere they want to go at anytime. Imagine a world where books are a luxury or where they are simply not present at all.I feel as if this would become an all too real reality if we censor books. Where would the line be drawn saying a book is unfit to be @CAPS5 or placed into circulation. This would hold the world back since we could not express ourselves through our writing. So much would be left unsaid. I believe the quote stated above is quite true. If we place censorship on one book everyone has a right to ban other books as well. Just because certain books, movies, and magazines are deemed offensive to some, does not mean they should be banned for all. No one should we withheld from a book due to age, race, gender, or any other factor. If one has ever been prohibited from doing something due to age or size the feeling is not pleasant.No one neccessarily said anything mean or hurtful it just feels as if restritions and boundaries were set for no particular reason. I have felt this way multiple times. I remember one time in particular. I went to @LOCATION1 with a group of my cousins and their friends. Since I was the youngest I was also the shortest. I could not ride many of the rides there due to my size. I knew why those heighth requirements were set, for my personal safety. This makes sense, but why should one be required to be a certain age to watch a movie or watch a tv show. Honestly some people are more mature than others and grow up faster. Everyone is different. Everyone has a different personality and different perspective, there is no need to ban a book for everyone when we are all different. One should not be ineligible to @CAPS5 a book or magazine or watch a movie. Not wanting to is totally differnet from not getting to. The popular book To @CAPS1 A @CAPS2 was banned at one time in the @LOCATION2 simply for using the 'n-word'. This angers many especially when one ponders how much slavery as well as the @CAPS3 @CAPS4 affected and shaped us into who we are today. America is a great nation because of the @ORGANIZATION1.Do we need to have a @ORGANIZATION1 to @CAPS5!Why should we restrict ourselves and limit our own personal freedoms? If anything is to be banned, I believe it is censorship" 4 4 4 3 4 3 +3371 2 "When one person is giving a right to do something, then everyone else should have the right to do the same thing. But every so often, you have someone that abuses their rights to something. I belive that all books, music, movies, magazines, and everything else has a right on a library shelf. And they shouldn't be romoved if they are found offensive because in almost every book someone reads, there will be some kind of offence in it. I also belive that all books, music, movies, magazines, and everything else has a pupose to it. And if the purpose is good enough for it to be published than, it should have a good message worth delivering to people, even if it is a little offensive. I've read a few books, watched a few movies, and heard a few songs that were offensive even to me in some way. But, considering that there was more of a purpose to it, and the purpose being a good message, I liked the few movie and songs that most people would say its 'junk'. I don't have alot of experiences because there isn't a lot that I can say is offensive, but the few songs, movies that are offensive to even me, I belive that there was some kind of good message there. I personally think that no one should have a right to take a book, a peice of music, a magazine, or anything else off a library shelf. Because everything has some kind of purpose to it, and has some kind of message in it for each and every person to discover" 3 3 3 4 3 4 +3372 2 "Yes, I think they should be removed from the shevles. Some books, music, movies, magazines, etc. are overated and young children go to visit the library. They should have a shelve for kids, tennagers and grown-ups. Everybody should have they own section for their age group. Young kids are already doing things that they shouldn't be doing, like hanging out in the street, hang with older kids. They watch inappropriate movies, when they should be watching something educational. The music they have out now days, children shouldn't listen to it. It's to much cursing and violent. More parents need to spend more time with their kids and talk to them about these things. There are certain things tennagers should watch and read too. I don't think they should read about killing or sex. I rather their parents talk to them about that and stop hiding things from them. Parents will eventually find out what you doing behind close doors, they been through everything you doing or trying to do now. So just talk to them and be real about things. I think they should be certain magazines in the library. Young children beat theyselves up, because they don't look like the young actors and actress in the magazines. They try to rush their life and be somebody they not meant to be. Young ladies want to have big boobs and butt. Then, young men want to have big mucles and be buff. In conclusion, I don't think books, music, movies, magazines, etc. should be removed from the shelves. There should be a shelve for young kids, tennages and adults. The music that is played on the radio now days, shouldn't be on there. Magazines shouldn't out on shelves for children to reach. There are certain things tennagers should watch and read." 3 3 3 3 3 3 +3373 2 "I honestly think that anything should be allowed in libraries. If you think about it, there is a law called freedom of speech. This law should be all the reason for someone not to ban something for what it says. Also, in my opinion, if you find it offensive, you dont have to look at it or read it or listen to it. I remember walking threw the library in town and seeing a large quantity of books. None of these books really seemed offensive. Then again, this library had an upstairs that the more 'colorful' books were at. For example, some adult books etc. These books were offensive. They should not be banned though, they should only be moved. On a different akasion, i remember walking threw the library trying to find a book to help me with an assignment at skool and i seen several young kids looking at some adult books and magazines. I belive that these were put here for advertisements, however, they should be advertised in different areas out of site of kids and teenagers. Although it would be nice to see some books and magazines banned, it would be quite difficult to accomplish. I don't think that anything should ever be banned for what it says or shows or sounds like. Instead, moved from one area to a different area. For example, instead of showing certain things at low levels where younger people can get there hands on, they should be at a higher level or behind the desk." 3 3 3 4 3 4 +3374 2 "Have you ever found a book offensive? Many people can say they have. They might not agree on the point of the book or certain viewpoints in the text. When this happens, people stop reading the book and other books in the same category. Certain materials should not be removed from shelves if they are found offending to certain people. Everyone has opinions, what would be left without books? At my public library, citizens of my city can request certain books, movies, music, or magazines to be put on the shelves. We are very blessed to have this available because if someone cannot afford cerain books, they can always rely on the library. Many people have been very thankful for this system. If certain people at the library do not want to order certain books requested by citizens because they find them offensive, what would happen? More people would stop going to the library because there would be no materials sparking their interest. Everyone is titled to their own opinions. Just because one person does not approve of a book does not mean that book should not be offered at the library. There are thousands and thousands of books on display at the public library, that does not mean you have to read all of them. There are also many different genres of novels, movies, music, and magazines. Everyone has interests in different types. If people all liked the same things, would not life be boring? In conclusion, certain materials should not be removed from the shelves of libraries is they are found offending to certain people. Everyone is titled to their own opinions. If a specific book is requested and one person finds it offending, the book should stay in the library. There are many different genres of books, music, movies, and magazines. Imagine if the library did not have a certain type of novel you enjoyed, would you continue to go?" 4 4 4 4 4 4 +3375 2 "I think libraries shouldn't removed material from the shelves even thoug its offensive. The libraries should't removed offensive material because even though it might be offensive to some people other people still might want to learn about that topic. For an example the @CAPS1 didn't like the @CAPS2. In some books its has some offensive stuff about @CAPS2 that were stated by @CAPS4. Some @CAPS2 might take that offensive but other people from diffrent race or relegion might want to learn about what was said. Just because people read about it doesne't mean all of them are going to agree with it. People might have their own point of view, no one has there right of telling one person what they can or can't like. If cenorship starts to occur in libraries or other in other communtiy places, I think people are going to get mad and might have a bigger problem than some people being offensded of their material. They might think that they are being told of what they can or can't read,listen,or believe in.That will occur a bigger conflict and get a lot of people furious. I think it will be simplier if library haves the materials on shelves and people who are getting offended of what they have in there should ignore it because why will they read or listen to something if it only gets them furious? They might be offended of what one person says but who cares, not everyone is going to think or agree of what is being said. Its just a person point of view let them be them and just stick with what you think of yourselves and in your believes. Not everyone is right and perfect just be youselves" 3 3 3 3 3 3 +3376 2 "Materials should not be removed from libraries. It should be left up to a person to decided what the see or view. Books, music, movies, etc., are materials used by everyone and for some a library provide a haven where the can get there hands on such things only and no where else, so shouldn't try to take away any of these things from any body. One reason why certain materials should not be removed from libraries shelfs is that there will always be some subjects, and materials that a great many people will argue shouldn't be seen, and there will always be other people who feels differently. And if we allow them to be taken away you will only be taking away a person own choice, which is something we all should strieve not to do. Also just who would be left to decide what material should be removed and what material shouldn't? Is there really one person who could make a such a choice for everyone? Also there is no way everyone could agree on what material should be removed, so by trying you would just be providing something more for everyone to argue on. I believe that if not everyone can be satisfied then why bother. Another reason why in libraries certain materials shouldn't be removed is that by removing certain materials you would be interfering with education. Books, movies and other such things are used for learning even weather people realize it or not, and the more oppuntunties a person has to learn the better. And who are we to decide what a person decides to educate themselves about? There has infact been times in history when people in charge have wrongly decide that the public should not be educate or know about certain things and it was wrong then and it would be even more wrong now in our modern society. A society that is based on learning and knowledge, a socity that in situration should not hinder a persons ability to learn. Also I realize some people @MONTH1 argue that for young children some materials are better left unviewed, but that's is where parents come in. It's there resoponsibility to decide what their children read or see and not anyone elses. And so there is no reason why anyone should interfere with a parents choice as long as it is in aggrement with the law. These are the reasons why I think libraries shouldn't be allowed to decided what materials and subjects are put on their shelfs. For some dicsion no one can make to satify everyone and to be in the right. Therefore it is better that such things are left up to the person themselves." 4 4 4 4 4 4 +3377 2 "I do not beleive that certain materials such as books, music,, movies, magazines and ect. should be remove, unless if it has nudity or a lot of cussing in the books. Because some books and movies are bad to show little kids. But i think we should have anything, that teaches you something in the labrary. plus people have to do reports and homework on some books, and if its about something with a little cussing and kinda graphic it should be ok. i think if the library have these kind of books, movies, music and magazines they should let you if you are a certain age or have a note from a teacher that you need that book, or some kind of rule that lets you choice any kind of book but with permission. The library's would have more people going if they had more books and better ones. Because most of the things that people like is in the books or movies that the library wont have. So it just depends on the situation. There is a lot of offensive things out there, it doesnt mean you can keep it away from people. They will find out anyways sooner or later. I think its unnessary for the libraries to do that. I always hate when i try to get something when you find out you have to be @NUM1 or older or have an adult with you. plus some people dont have computers or enternet excess, so they cant look up things easly. They have to drive down to the library to look something up and if you are lucky they might have the thing you are looking for at the library, but if they dont that sucks. So thats my opinion about have offensives things on the shelves." 2 2 2 2 3 2 +3378 2 "People believe that censorship is impotant in Libraries. They believe that things should not be released if they have a bad subject matter. They feel that it is sending a bad message to children and teaching them horrible things to do and say. I disagree with them on this and these are the reasons why. I feel that books/music/movies/magazines shouldn't be taken off the shelf is they have cuss words inside, i feel that they should continue to sell them even if they have bad words inside. I feel this way because there are alot of horrible things in this world. Children have to learn that, and i feel like cussing or anything of that subject matter isnt that big of a deal there is so much more to worry about then a couple of bad words children read and listen to. I listen to music that has cuss words on the inside and i also read books with bad words and it doesnt infulence me in any kind of way. So we shouldn't always try to control every one we should just let them be on the shelfs and let them or there parents decide if it's innaporpate or not.in conclusion i feel again that they should be on the shelfs and people should be allowed to listen/read whatever they want to. if it doesnt harm anyone or themselfs then let it go on and happen. let them do what they want to" 3 3 3 3 3 3 +3379 2 "Dear @CAPS1-@CAPS2 @CAPS3 it @MONTH1 concerm; I'm writing you to explain that @MONTH1 students are tired of students in their school not returning books to their schoollibrary. Many students have report due on a book that a fellow classmate didn't return. Many students either forget they have a book out or even past due. So it makes it hard upon the student who is trying to do a report. If the books, music, magazines and etc., are not return people should have to be punished more than just having to pay a overdue fee. I have witnesses alot of students who didn't either want to turn in the book thr checked out. We the junior class at my high school had a term paper that we need books, newspaper, internet and magazines. Lucky, The senior class turned in all of their book, newspaper, internet, magazines and etc., that they used on their term papers, we the junior class were able to sucess on our term paper. But many juniors still havent reutrn the materials they have used.The teachers have threqten them with overdue fees and or have to pay for the losted material. I see that having to pay an overdue fee and or have to pay for the losted materials doesn't bother them. Even though teachers makes them pay the future classes will have to struggle and go out and purchase books, magazines, and etc., The classes that have to take @CAPS4 @NUM1 next year and do their term paper @MONTH1 not be able to sucess. It is unfair they have to worry will have the materials they need for them to sucess and do their term paper. I think if the schools took time out and got parnets involed. They would n't have as many students would didn't follow rules. students think that their teachers can't tell them what to so maybe if their parnets were involes they would follow directions and turn in their books, magazines and etc., In conclusion, If someone wants to take a book they should get alot of their personal infornmation as well as their school name.If people dont return their books their want be any thing left for other people to use.So i say everybody do have the right to use the books, music, movies magazine and etc. to their adventage. Just try to remember to return them for other students as well." 1 2 1 1 2 1 +3380 2 "No, I do not believe certain materials should be removed from the shelves in libraries if they are found offensive. You have the right to either read what you see or keep moving and read what you want to. Certain books, movies, magazines, etc. shouldn't be removed just because someone else doesn't like it. If someone of a certain belief sees something offensive to them or their religion, then they have an option to not read or look at it. Something that someone might find offensive might be interesting to someone else or they might have to do an report or project on it. There's no need to discrimanate against a book or movie just because a certain religion group or someone as an individual doesn't approve of it. It's an public library that has materials on display for the public! Any and everybody can come and read any and everything they please. A library is open to the public which means people of differenrent races, beliefs, religions etc., is going to come through and it's a possibilty that they're going to see something offensive or that they don't like. They have the option of either picking it up and reading it or the option of not paying it any attention and ignoreing it. The choice is theirs to either let someone elses's opinion actually bother them or not let their opinion matter at all and just keep doing their own thing. People have to be strong enough to rise above all the negetivity and keep doing thier thing and keep believing in what they believe in. It doesn't matter if someone hates or have hateful things to say about you or your perticular. Don't pay them no mind at all. I know you think censorship should be in public libraries, but that isn't fair to the people that are maybe being offended but they don't have to read it if they don't want to. They need to learn that in life there's going to be people that don't like. Even peoplr that @MONTH1 have hurtful or hateful comments to say about you. Learn to be strong enough to stand tall in what you believe in and don't let haters or other peoples opinions bring you down" 3 3 3 3 3 3 +3381 2 "I do not think that books should be taken off shelves just because it's offensive or because others don't like it. If everyone took the books, music, and movies off the shelves that they didn't like, then all that would be left would be empty bookshelves. I believe that the library was a right to keep whatever they want on the shelves. Some @MONTH1 say that the library has inapproprite books to check out, or they don't want their kids to pick up a book they don't like and read it. I think that's why the library has the shelves marked in sections for example, adult, young adult, children, and referance. I've never seen a book that was offensive to me in a libray, which brings me to another point. Everyone has a opinion, if a book is offensive to you it might not be offensive to someone else. For example say that you saw a book on animal mating and you thought it was a bad book for the libary to have because, little kids might pick it up. Well that is your opinion because, if a biology teacher seen a book like that then they might want to check it out. Another thing is that the library has certain book for a reason. Say that there is a book in the library that is about slaves, this book might be offensive to @CAPS1 @CAPS2 but, this book is there to inform people about slavery. What is offensive to some isn't offensive to others. In conclusion, I believe that books should not be taken off library shelves just because it is offensive to you. Everyone just has to remember that people have their own opinions about things and you just have to deal with it. That's why I think that books should not be tooken off shelves" 3 4 3 3 3 3 +3382 2 "There are people in the world who might be offended by various types of literature, movies, music, or etcetera. I understand this, but I don't think they should be banned just because someone else doesn't agree with it. Other people might like it or they might like it themselves if they give a chance. Before you go saying that you don't like something maybe you should give a chance. Maybe try looking at a a few pages of a book you once heard about. Watch at least one or two episodes of television show. Before you make an ultimate decision about something, give it a chance first. Some people don't some media because it goes against their beliefs. If this is the case then just ignore it. If you don't like certain type of music don't listen to it. Maybe it is a movie your not particularly fond of then don't watch it. In conclusion, people should learn to give some things a chance. They should also shouldn't get rid of something just because they themselves aren't fond of it or find it offensive. That said, I don't believe that certain media should be banned." 4 3 4 4 3 4 +3383 2 "For many students it is hard to compose essay's in a public school's library. Aquiring the neccisary information is comparable to finding a needle in a haystack. This is not due to the lack of funding or even the quality of teachers and staff. No neither of these problems is the cause behind many student's inabiltiy to compose thought provoking essay and analysis over a myrad of topics. This is due to the extremes in censorship that are being placed on libraries and schools in general. Many of the relevent topics and materials need to truely understand our constantly changing world is being removed from the grasp of those who will go on to lead this new world.Some prime examples of this tyrany on knowledge is the removal of books suck as @PERSON1, @PERSON2, the @CAPS1, and many other classical works. Each of these according to many parents has good reason to be removed from our libraries. @PERSON1 @PERSON1 promotes discrimination and racial supremacy along with being written by what @CAPS3 has pegged as one of the humanity's most vile of creatures. @PERSON2 uses racial surrs that are not appropriate to be in the hands of our young children. The @CAPS1 violates the separation of church and state. Many other classical works refference racism, drugs, murder, sex and use rampant profanity. All of these are valid reasons as to why a parent @MONTH1 advocate for there to be censorship of our libraries.These reasons, as well meaning as they @MONTH1 be, are no longer good enough to be valid in todays changing environment. Many of the books that have been recomneded to be removed show us an unfiltered view of a time period from a point of view that did not belong to the 'victor' of the social battle. As we know, '@CAPS3 is written by the victors.' @CAPS4 it is good that the @CAPS5 won the @CAPS6 @CAPS7 and helped abolish slavery it is still important to realize that we still cannot remove the view point from our centers of knowledge. To forget is to remember at another time. That time is when we repeat the same mistakes again.For the parents who also want to save the innocence of their children by forbidding these books from libraries need to realize that the media has been pumping these forbiden images to their children more than books have. To censor our libraries is to cripple our children from the knowledge they need to fully understand our shadowed and fragmented world. Just because we try and close our eyes to the realities of the world does not mean that they don't exist. It is better to see and understand than to enter the world blind and dumb" 5 4 5 4 4 4 +3384 2 "Should offensive material be removed from the library? I think no, and there are many reasons as to why I disagree with this idea. Many books, movies, and magazines are not ment to offend people, but just to let the reader know how the author feels. I think that the books, movies, magazines, etc. should stay on the shelf because if they are removed what are we left with? Seems like all that would remain would be the dictonary. I think that when Katherine Paterson said, 'Children or any other children have taken off the shelf' that she was making a big mistake. So what seems to be offensive to people? Topics such as gosip and politics are a gold mine for authors in the @DATE1. Yet people find these topics to be offense probably due to that persons backround. If aomeone find a read to be offensive, then they should stop reading and that be it. Instead, people deside to go on a rampage against that magazine or whatever they read and what it banned for life from others to read. Readers have the choice to read whatever they want and if they disagree with that subject, just move on with their lifes. At the library I attend many poeple different shapes and sizes walk through the door everyday. Many of them like a different subject then the others, so its commen to find everybody reading about a different topic. Sure someone here and there does not gree with an author, but never decide to go crazy about it. Instead they just go pick a different read to enjoy for themselves. People read what they want to so they can enjoy it, not to bash the wuthor for his writing. In my own read's, I have found at times stuff i disagree with. Instead of going off the deep end and getting all excited about it, I choose to think about where the author is coming from and try to understand his side. On the other hand, some movies are ment to be for one type of audience when instead another audience see's the material. This still should not get movies or whatever the material is banned from the library. When on the box it says rated for teenagers and up, that means it is not for a four year old to watch and their parents get mad at them for it. If people followed what the box says and listen to the guidlines, then there would be no problem. I disagree with @PERSON2 when she said that some books, magazines, movies, etc. should be removed from the library. People have the right to read anything and to see anything they want, and if they disagree well they should just deal with it. In my own exprience, I have not found there to be a problem in my community library with people wanting content removed. Once people start following guidlines and reading the boxes and still disagree, then maybe will have something then. But until then, we should keep our nations libraries the way they are today" 4 4 4 4 4 4 +3385 2 "There are big debates today over whether or not certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves of libraries if they are found offensive. Plenty of arguments are made from maybe somebody's own experience, observations, and/or reading. I have read plenty of people's concerns regarding @CAPS1 issue, and there are some valid points to be made from both sides of the story. No matter what your opinion on @CAPS1 issue is, there will always be someone who opposes of it. You see censorship of offensive language on television, but here is my take on whether or not censorship should take an effect on books, music, movies, magazines, etc. The first point that I would like to make about censorship is that people all across the world have come in contact with something that they @MONTH1 have thought to be offensive. When kids are old enough to understand what other people are talking about, they will come in contact with things that they take in offense at some point in life. I know from my own personal experience that you will see things that people think should be censored. Although I come from a religious family who does not like to offend anyone, I am old enough to realize that not everything in life is going to work out your way all the time. When you honestly think about it, you cannot censor out things that you hear in person, so why censor things in certain materials? The second point I would like to make about censorship is that no matter how much you try to censor certain materials, people will still find a way to take things offensive. There are certain things in life that you cannot control, and being insulted or offended is one of them. Even the most popular man or woman on the planet has been offended at least once or twice. It isn't about trying to censor every little thing that @MONTH1 be offensive to some people. Maybe it is about the people learning to deal with a little criticism. 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf---that work i abhor---then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 is a quote from Katherine Paterson that makes a big statement. Almost every well-written book that you will find on the shelf has something that should be censored. What would those books be without those statements? To conclude @CAPS1 debate on censorship, plenty of arguments have been made about the views of censorship. Many observations, personal experiences, and/or readings have been done by many different people. Truth is, there will always be people who disagree on @CAPS1 subject, but that is just the way things are. We @MONTH1 never know who is actually right or wrong about @CAPS1 topic. We do know though, that judging form the previous points above, it is very unlikely that certain materials will be removed from the shelves if they are found offensive." 4 4 4 4 4 4 +3386 2 "Have you ever imagined a @CAPS1 without movies or music to entertain you? A @CAPS1 that has no books to read or magazines to inform you upon the latest gossip and fashion? Well, if items are banned from being seen or read then there will be no creativity in the @CAPS1, there will soon be no books or magazines to read, no music to listen too, and no movies to watch, and you will not be able to express yourself or your opinions. I do not believe that certain materials should be removed from the shelves if they are found offensive. If the @CAPS1 is left without certain materials there will be no creativity. Everyone will be forced to think the same thoughts if they can't learn about other thoughts that are protrayed to be offensive. No one can read about a topic that they are interested in if it is banned, this will cease creative thinking by not allowing people to think differently. In the process of deciding what books are offensive and which are not offensive, all books will eventually be eliminated. Certain topics aren't liked by everyone and, as Katherine Paterson says, '...if I have the right to remove that book... so does everyone else. And then we have no books left on the shelf for any of us.' Paterson is exactly right too; if one person has the right to remove a book, so does everyone and this will cause everyone to take off that book that they dislike so much. Also, everyone likes different kinds of books and different topics, and this will cause less self expression because if someone doesn't like books about @CAPS1 @CAPS2 @CAPS3 because they think it is offensive to @CAPS4, then there will be no books about @CAPS1 @CAPS2 @CAPS3 on the shelves for anyone to learn about it. Everyone will turn out to be the same if they can't express themselves or their opinions. If a certain topic is banned for being discovered as a offensive topic then this will result in the thought being banned. If you can't read or watch a topic you shouldn't be able to think or talk of the topic either because you will offend someone. Also, if people can pick what books can be in a library, that will eventually be transferred over into other areas, such as clothing, food, thoughts, etc.. Eventually everyone will be wearing the same clothes, eating the same food, and thinking the same thoughts. I do not believe that certain materials should be exterminated from the shelves if they are found offensive. If specific materials are banned: creativity will be eliminated from our lives, eventually all materials will be banned, and we will all be the same by the lack of self expression. If you haven't ever thought about a @CAPS1 without books, moves, music or magazines; I hope you have learned how crule and boring the @CAPS1 would be without all of those materials." 4 4 4 3 4 3 +3387 2 "Any one has the right to anything. Right to speak freely; to watch what they please; and so on. The censorship on the media depends. People who like that sort of thing can go to a place where they can buy censorship and un censoredship items. Every place these days has censored books, cd's, video games, ect. But then they also have uncensored items. For those parents or people who disagree with what is shown on the shelf. Also on @CAPS1 parents complain about whats on @CAPS1, well there is a channel button and you can change the channel. Or even in todays technology you can block that channel from ever being watched. No body ever said that they had to buy what the person in front of you is buying. People have the right to chose what they want to buy, wheather its censored or not. Say or do as they please as long as it's with in the rights of laws. Its all about your style and what you let your child see. @CAPS3, @CAPS3. Its not as easy to keep children from the volgure things in the new technology. They go to a friends house and that childs parents don't care and let there child watch anything from @CAPS4-@CAPS5 rated. The most you let your child watch is @NUM1. Its hard to keep a child sheltered from what you'd perfer them not to see. But what people have to realise is that there going to find out one way or another. Also a child who is sheltered will go to the extremes to find out whats on the other side of the railroad tracks to get a taste of the water, to see what they have been missing out on. Childeren will be childeren and they will sneak behind your back and do what they want to because they never knew what it was like in the first place. Any one has the right to anything, you as a person chose not to allow your child you have a @NUM2 year old rated game, but his @NUM3 year old friend does have it. Remeber hes going to play it at his friends house. Everybody has a different taste on censoreship. Some think everything should be a little cleaner others think different. So thanks to both sides, stores sell to you what you perfer." 3 3 3 3 3 3 +3388 2 "@CAPS1 is the freedom of speech to be able to read, right and listen to whatever you want but under some conditions.I think that all books should be aloud to stay on the shelf. Like I said as americans we have the freedom to do and say how ever we feel about something without being worried about what will happen. But we should also think about what we are doing and saying and if something is wrong or harms someone. we should take rightfull ownership to our mistakes.But I do agree that some books should be taken off the shelves if they provide thoughts our ideas to cause downfall to our country. such as terrorist groups drug and alachol books should be taken off so we do not pullute the minds of our youth. Our youth today is very influenced by the music we listen to the books we read and the television we watch. From these things @CAPS1 shows us how to act, dress, feel, and treat other people @CAPS1 is the freedom of speech but say the right thing and be careful of what you say because some day @CAPS1 could effect you." 3 3 3 4 3 4 +3389 2 "People should not take all the books out for the librarie. Beacuse other peolpe would probley like to look at those books also. If people start taking books out, all the book will be gone .So that would mean where would be no books form people to look at. So thats why there should be a law that you can only have a book out for a given period of time . That would help to kept all the books in the liberary. So if people just start talking the book for the liberary there wont be any book left in the liberary to check out. So there needs to be a law that says that you can check out a sarthen numbers of books at a time. And how long you can have the books for . If you dont bring the books back in a certain amount of time you will be charged. The amount will build up every day you dont bring ther books in. Also if you dont bay the bill you dont get to check out books until you bay the ammount. So that would be a good idea for people not to steal or take the books. About the Book, moives, and magzines that are the liberary. All the books ,moives and magzines should stay on the shelves. Because if you take out one you should take out all off them. Beacuse every one needs to see these thing in life even if it has some thing bad like a movie or a magzine it should stay on the shelves. So if a book,magzine,or movie gettes taken off the shelfes all of them need to be taken off the shelf .Just becauseit not fare to there author , beacuse they toke time to make what ever they did. If you get them mad thill stop making book for me and you to read. So thats what I think about the things you should do if you try to take books off the shelf in the liberary.But if its some thing really really bad mabey you should get it taken off the shelfs at the liberary or at any where they sell that book,moive and magzine." 3 3 3 3 3 3 +3390 2 "I believe that all the uncensored books, movies, music, and magazines in a library should be taken off the shelves and put into a single room in the library and be labeled as the @CAPS1 @CAPS2. The children that go into the library at most libraries have a space where its just kids books but when the kids go with their parents or someone that is older up to the teenager and @CAPS1 @CAPS2 they dont know what they are looking at when they just pick up a random book off of the shelf and/or rack. Some people @MONTH1 think that it shouldn't be like that because they are weary of who might see them go into a little room marked @CAPS1 @CAPS2. However, if you don't want anyone to see you go into that room you just simply don't go in it. So by secluding the @CAPS1 books, magazines, videos, etc. you can keep the children from just picking up any book that has uncensored pictures or grabbing a video that the parents @MONTH1 not look at and end up being an @CAPS1 film and then the kid then might want to keep seeing the stuff like that when he reaches puberty he will be eager to have sexual entercourse with a boy/girl. Having said that, i hope that you see how my idea of sectioning off the @CAPS1 stuff will keep them out of the @CAPS1 stuff and keep them from having sexual entercourse at as early of an age as thirteen. As far as music goes, there really isn't a way to completely keep kids from listening to music such as rap that has foul language and it sometimes talks about having sex and drugs and the kids think that the artist who wrote the song made it to be a big shot and they did drugs and had sex and look how they turned out. The best way, in my eyes, to keep kids from listening to rap is for their parents to not let them listen to it while they are with them. However, the other music like @CAPS5 @CAPS6 and @CAPS7 or even hip-hop rarely has any references to the topics of rap music. I could also argue that parents should watch out for their kids to be aware of the consequences of some of the actions they take due to these reasons and they should take the action of diciplining the kids for their actions" 3 4 3 3 4 3 +3391 2 "'@CAPS1'@CAPS2 say that word!' That is exactly what I said to my brother after he had read the front cover of a magazine in the library one afternoon. Personally, I am an advocate of not saying curse words. Yet, my brothers are influenced by things, such as the media, to say them. Should we allow the media to sprinkle words like this on to magizine's and books? Or should the items containing these things be removed from the library's shelfing units? Magazine's are one of many ways that we get the latest gossip on the most interesting scandals. They also appeal to a lot of people across the world. Most of those people are @DATE1 of age. Library's will most often place the magazine's on the shelf so that they can rake in some adult costumers. Most of the content of the magazine's are pictures of half dressed women or men and explict lanuage on the covers these days. Should that be the new normal? I @CAPS1'@CAPS2 think so. I enjoy reading. I personally think that reading is better @DATE1 sitting on the couch and watching mind numbing @CAPS2.V. But, the material of some books have gotten to be where every other word is a curse word. Or they contain degrading scenes that no one should have to read. It used to be that books were read to learn something new, or to open your mind to a new culture or piece of information. In these times, though, it seems ardous to come across a good book that is like the classics. As though day by day, we are replacing the magestic words of authors for common words that anyone can use. Replacing such books like these on the shelves for anyone to read isn'@CAPS2 right. It shouldn'@CAPS2 even be allowed. With electronic devices such as the @NUM1 player and so on, most of the music comes from online sites where you purchase the song directly. Most parents @CAPS1'@CAPS2 know half the songs that the children buy, expecially when they @CAPS1'@CAPS2 buy it at home. With internet in many libraries kids can plug in their device and buy songs with offensive lanuage or graphic material without anyone knowing. Why @CAPS1'@CAPS2 the librarians put restrictions on the sites? The answer is that they can'@CAPS2. And, even if they did children would find a way to get around the restrictions. So, personally I think that they should remove the avaliablity of being able to download and purchase music at the library.Or take out the aweful lanuage all together in songs. Because the lanuage that they use is not needed. Although times are constantly changing and things are different then they used to be, with a little help we can restore it to where it used to be. Kids using such foul lanuage is an issue that needs to be taken seriously. From my own experiences I know that it is a growing problem. But, maybe if we put censorship in libraries then some or most of the problems can disappear. From magazine articles, books, and even songs explict lanuage and graphic scenes are almost everywhere. So, speak up and talk to someone about the idea. It might just start a revolution" 4 4 4 4 4 4 +3392 2 "Everybody does not have the same opinion on censorship. Some people don't like books and movies with profanity in it, but some other people @MONTH1. Also somebody @MONTH1 like the scary mystery books and movies, but others @MONTH1 not. I think all movies, music, and books are acceptable. I can understand why some people @MONTH1 want to remove some movies or books from the libraries. They want to because they are inappropriate, but the thing is, they are not inappropriate to everyone. A lot of people like the books and the movies with profanity in them because it brings out the real in the book. Personally I think that some magizines need to just stop being made. For example; @CAPS1 magizines are horrible to me. There is nothing but nude women in there. I say that the women don't respect themselves enough to cover up, but there are other opinions. Others @MONTH1 think it is creative and beautiful how the women look in the magizines, and it isn't jus magizines it's movies also. More and more movies are advertising sex and drugs in their movies. Everybody has their on opinion on censorship and everybody can not get what they want. I think if you are offended by a movie, music lyric, book, or a magizine don't read or watch it" 3 4 3 4 4 4 +3393 2 "Should certain materials be removed from your public library? Not everyone has the same views as eachother. What might be offenses to you, @MONTH1 be enjoyable to someone else. I personally don't believe that anything should be removed from a library, just because something you might not like someone could really enjoy. If you don't want to learn about something you shouldn't take that away from others who do. I think that if they do start removing things from library shelves they should still be allowed to be viewed to those who want to. Even if you just put them away would be better than taking them out of the library completely. More and more books are banned everyday, and I personally don't think that's fair to the growing generation who don't get to enjoy the things the old generation have. So I believe that no books should be removed from library's. If you don't believe or enjoy something doesn't mean someone else wont" 3 3 3 4 4 4 +3394 2 "What is appropriate in libraries these days? The opinions differ throughout the variety of different people across @LOCATION1. Censorship has taken a turn in public libraries, but still has been strictly forbidden from school libraries. Personally, I think that there is a difference between vulger and inappropriate items in a public library versus a school library. A public library is a place for anyone and anywhere to come and find an item that they are interested in. As we all know, everyone is different and have their own interests, so they should be able to find the book, music, etc. for them. The problem is, how do the libraries keep these uncensored objects out of children's hands? The answer should be simple. For thought, maybe all public libraries should be broken up into sections, each with their own subject matter. These different sections could include Children's, @CAPS1, and many more different titles. This set up is often used in well known book stores and libraries such as '@CAPS2 and @CAPS3' and '@CAPS4'. Overall, censorship in public libraries does not need to be as strict as school libraries. School libraries are a whole different idea. School libraries are made to help assist the students' academic acheivement, nothing more and nothing less. However, I also think that the content in the school libraries also depends on the maturity of the students. For example, elementary and middle school libraries should have a stricter censorship than high school libraries. The students in high school should be mature enough to handle uncensored material without creating a huge scene, like we all know younger students would do. I have personally seen and witnessed a few so called 'inappropriate' books on the shelf at my high school library, but the readers of the book have been mature about reading it. I believe that some offensive and vulger items can be interesting and educational. It is all a part of growing up. The censorship in our libraries today vary from each library to the next. School libraries and public libraries are completely different places of literate and media content. I think that it is a person's own personal decision dealing with which library they go to. If a family with young children want to go to the library, the parents need to choose the appropriate areas in the building to search for the children. Therefore, there should be no problem in running across a 'bad' book. The author, @PERSON1, states, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf... And then we have no books left on the shelf for anyone." 3 4 3 4 4 4 +3395 2 "The Author should be the judge on whether or not they want there book censored. I believe that libraries shouldnt have to take out books with offensive language. If the author likes how it was originally made, then thats how they would like to present it. It would be taking away a Right in the @CAPS1. If you were to write a book and somebody says you cant put a certain word. That isnt up to the public to make a decision. Its almost like rewriting history. It would be like having someone take out a word in the @ORGANIZATION1. If any word is changed it is a incorrect @ORGANIZATION1. It just changes the entire subject. You cannot reword whats been written. Public views are starting to take over the world. Instead of letting the facts be the facts people want to adjust things so it is less offensive. Next thing you know there will be a replaced word for slavery. Slavery is a strong, bold word that represents a horrible thing. If somebody switched that word it could lead to it happening again. I say with all my heart that people need to respect what has been written and leave it that way or dont read it" 3 3 3 3 3 3 +3396 2 "First of all, Do you believe that certain materials, such as books, music, magazined, etc, should be remove from the shelves if they are found offensive, thats question should not be ask ever in life. Why beacuse there are many people out there that read read stuff and listen to stuff that you might not like at all. when i first saw this question i answer to my self that, ''That if all people think the same way this world would be boring, and i answer the question by saying that there should not be any books remove or music remove, from any shelves' why beacause we all don tlike the same thing or do the same thing. In first place, I know that there are many different kind of thing that people beacause they love doing it and some dont do those kind of things beacause they really dont like or dont care about it. This is answering the question about removing books, music, or magazines from shelves even if the article the book, music, etc, say's or if its offensive to other people, that is not a reason to remove stuff. There are thing that you enjoy doing and things that you emjoy reading, listening, and looking, etc that other people dont like or hate about it. In second place, not only beacause you dont like something people should stop doing those things or stop buying those thing, NO!!, that is not the case here @CAPS1. or @CAPS2. you should not care just for you or do what ever is right for you. If you are a good person that wants to be someone in the future dont just care about you care about the other too, beacause you'll need those person or those book in the future when ever your falling down. In my conclusion, about this article. I think that people should not remove any thing from any library even if its found offensive to other people, those thing help other in life to do what they really want to do, while other are getting hurt for those offensive this that are writting on a little peace of paper. Hope this latter help you all think about and change your decision about this case, hope you all make the right decision that would not affect anyone in general. Thank you for taking your time to ready what I really think about removing articles from libraries" 3 4 3 3 3 3 +3397 2 "One person's strong negative opinion effects everyone else. That doesn't seem logical or fair. A library is a sanctuary for people to go read their favorite books for free, containing books from all types of genres. There is a book for everyone in the library; it's a matter of finding it. Therefore, finding a book offensive or unsuitable does not give one the right to take that privaledge away from everyone else. Books have a way of putting our mind at ease, whether that's because it's an escape or measured on how enjoyable it is to read. Books found offensive to one person could have a completely different impact on the next reader; some @MONTH1 even find the books relatable. For example, if there was a scene that one reader thought was too graphic or horrific for other readers, there @MONTH1 be someone out there who would find this scene enjoyable because they can relate to it. People who aren't capable of relating to such a scene would only find it as inappropriate and try to remove it from another's reach. One person's opinion is not of any more importance than the next person's. The book '@CAPS1' is a professionally written, fictional novel that has been praised for it's quality, hence the numerous awards won. Although, this book contains a rape scene and numerous other inappropriate events that this woman was succumbed to throughout her life. Even so, it is still on the list of suggested college level reads for @CAPS2 @CAPS3 @CAPS4 classes. It is disappointing to think that people nowadays focus on the graphic scenes in a novel, versus the exceptional writing style. If all readers were able to look past the surface amoung these scenes, less books would be contemplated on shelf removal. One person's negative interpretation of a novel effects everyone else's right concerning the censorship in libraries. Readers are fully warned beforhand of the maturity of the contents. The books are ranked, critiqued, summarized (back cover summary), and even sorted in a library. If one finds a book offensive, look in a different section. Books are sorted by genre for that reason as well; different genres apeal to different people. This applies to the maturity of the reader as well. Books are sorted according to what appeals to what age. If you find a book offensive, instead of having it removed from the shelf altogether, look in a section for younger peoples, or a different genre completely. If someone finds the book offensive, the fault is not of the book being there, but of the person being in the wrong section. The main problem concerning book censorship in libraries is not the content, but how the interpretations differenciate towards such content. On this issue, the other readers' opinions on specific books being removed are being significantly overlooked. For one to complain about a book's contents automatically give someone else the right to protect the book's contents. For libraries to remove books in order of censorship is viewed as favoritism and is completely against the rights @LOCATION1 has stood for" 4 4 4 3 3 3 +3398 2 "Do you feel that some material should just not be allowed in libraries? Censorship in libraries are a touchy subject. Many people with young children believe that some books should just not be allowed in the libraries, while others believe that because it is a book, no matter what, it should be allowed to be in the library. Who knows, someone @MONTH1 need to write a paper over that certain 'touchy' book. I think, personally, that as long as the book is in a proper section, it sould be okay for a person, of the right age, to be able to get that book or other material. The libraries should have a certain area for children's books and another area for adult or teenage level reading or material. This way, there is a less likely hood that a young child will end up getting a book with material for an adult or teenager. The library in the town that I live in has a clearly marked area for children and teenagers. This way, young children are not going to be looking for their favorite book with a book over something many adults should not even be reading. If people are concerned about someone being to young to read or view the material, the library can also put an age restriciton on the material. This way anyone who is under the age limit will not be able to get the material. The people who are of proper age will be able to get the material, however. Libraries are very important sources for studing in many people's lives. If people did not have a library, they @MONTH1 not be able to research a paper, or something else, that they need to get finished. I feel if people do not like the material that they see in their local library, then they should just not look at it or borrow the material from the library. I do feel, however, that little children should not be given even the slightest chance to stuble upon a book with disturbing material. There, in my opinion, needs to be a room with said materials that children have, in no way, access to. This way, children are not able to access the material, but they are still able to go into the library without their parents feeling that the children @MONTH1 see something unsuitable for them. I feel that those people who love reading should be able to go into a library, and not be afraid of if they are going to see a book containing material they believe to be unsuitable. I also feel that if I need to research something that is deemed, by others, to be offensive, I should somehow be able to research my subject. Also, if I was the author of a book that was said to be 'bad,' i would not want my book to be taken away, so that no one could read it, or study and learn from it. I do not think that censorship is something that people should take lightly. We all have the freedom of speech, so why not let the authors of the materials have that same freedom. There are procautions that parents and people who do not want to see this literature can take. Total censorship, I feel, would not allow for people to broaden their minds. If people just take procautions, there is no need for total censorship of materials, that someone worked very hard on for everyone to see" 4 4 4 4 4 4 +3399 2 "Libraries should not remove a book from the shelves just because someone didn't like it or finds it offensive. If there is a group of people that are interested in a book and want to read it more then once they will like telling a new person about it. Then if another student has decided they don't like the book and they don't want anyone else reading it becuase they find it offensive then I honestly believe it shouldn't be taking off the shelves. I think it would be different if everyone found the book offensive, but if it's just one or two people complaining then I don't think they should take it down and ruin it for everybody else. It's just a book and students should know just because it's there doesn't mean its directed towards them. I think they should overlook it. If your playing some music, dacing around, and just having fun with it then thats good. Now, if there is cussing and talking about drugs and those sort of things in a song then don't play it in a school system or around someone that @MONTH1 be religious or against that kind of thing because they @MONTH1 not like it and think that your into that sort of things. They might not want to be around you as much. Show them respect and play something everyone can have fun with. So if the libary has this type of music it should be monitored as to who checks it out. Movies are something you have to look out for too. Movies already have ratings so this kind of helps for people to check them out and make sure the movie would be safe to watch. If your getting movies from the libary then I would think it would already been watched by an adult there to make sure it can be watched by a student or a child. I wouldnt want my little sibblings watching something that they didn't need to see or hear. You have to watch out for magazines too. You want a magazine that is going to be interesting and clean. Kids @MONTH1 not know what is bad from good, but you still have teenagers. You don't want kids seeing nudity, cussing, or drugs in any magazine. If I were to walk in a library and see those kind of things in a magazine I would suggest you to take it off the shelves. I would only suggest that so the kids will have a healthy thought about things. I wouldn't want them thinking about doing anything bad like they saw in the magazine. I'm just looking out for their safety. Libraries @MONTH1 always need advice. They need to always have an eye out for things and make sure everything is clean and so that everyone can look at it, read it, or watch it. I'm glad we have these safety ideas for kids. I hope everyone has an eye out for these kind of things. I know I if I were to ever have children I would want them around something they understand and know, nothing bad and harmful. So thanks to libraries that have an eye out for things like this" 4 4 4 3 3 3 +3400 2 "People @CAPS1 Offensive by Libraries I think that libraries are sometimes offensive,but not all the time. It all depends on peoples different beilfs and thier culture. I can see where some things in the library are very offensive and where somethings are not offensive. I believe parents are more offended by things in the library ,because they don't want their kids to experience these things that are not the childs age. Movies that are at the library @MONTH1 be offensive ,because if a parent rents a moive for their child and gets home and puts in the @CAPS2. Then finds out that the moive they wasn't a kids moive ended up being an adults moive. Parents who don't want their kids to look at inporatiate things should not be suable for their childs age.One way to sovle this problem is to keep a eye on their child and make sure they don't go anywhere esle except the childrens area. This would sovle so many problems if parents would actually follow through with this it might work. Some parents bring their child up they way they want to. Also the parent or parents teach their kids that they don't need to go in any other area expect the one they are suppose to go in unless their parents tell them otherwise. I do get offensive sometimes when I go in the library, because they are some people who thinks it's funny to look at things just for fun not for any purpose. They make a big deal about and I don't like when people do that ,because it makes you think of the library as not such a place you wanna be at. If i was a person who got offensive by something that was on the shelf at the library I would pass it up and not pay attention to it. But some people would tell the people who are running the library that this certain thing on their shlef is very offensive to me and bothering me. If I had an issue with the library for some certian reason I would complain. Because complaining will more than likely do something about it. Instead,of not saying anything it won't get done or change it so it's not offensvie to others. I would let them know how I felt about a certain product in the library in a soft and calm manner. When you complain about something might as well complain in a nice way, because if you do then that person you are complaining to will be nice back. I know that everyone is not the same and feel the same about everything. But one thing is for sure is to keep on living life and don't let simple things about a library product offending you or bother you.You could not got to the library anymore if it's a problem or ignore the image that is offending you. There are so many ways to handle a situation like this it's just how you handle it. One way is to be respectful to people and people @MONTH1 be respectful back. Your attitdue has a lot to do with telling someone that something is offending you. If you can't get anywhere that way then just forget it and move on" 3 4 3 3 3 3 +3401 2 "I do not think books , music, movies, magazines etc... should be removed because they are offensive. There are books movies and music that offend everyone if we took them all away we would have nothing. Theres no reason for all that. Thats why i say we do not take away offensive materials. First, if we took away all the offensive materials off the shelves they would be empty. As well as the library, the movie store and everything else. If something like a book or movie offends you i feel bad for you anyways, but just put it down and dont wory about it. Second, i dont think we should remove offenssive materials off the shelves because of what they mean to us. They show us the good and bad the right and wrong, thats what books are for. Books are important to this world as well as movies and magazines and such. But to some more than others. You cant get mad at a book or a movie so just learn from them. For instance, say we did take away all the offensive materials what is that going to do? Is it going to make the word a beteter place? I dont think so. I think we need stuff like that on earth to show and to teach us the way to be. To educate and informate. In conclusion, i do not think offensive materials should be remove. We would have nothing and the libraries, movie stores and books would be empty. We would also be pretty missinformed about life. So we should not remove offensive materials off the shelves" 3 4 3 3 3 3 +3402 2 "In the world, there are just some things that our children should not be exposed to. I believe that the media such as music, magazines, and movies set a high bar for the individuals in our society. I highly disagree with what the media feeds to our minds as to the way our looks and lifestyle should be. The library is a place where most children go to feed their imaginations with colorful books with morals; but the library is also where adults go to free their minds of work and to escape many of life's responsibilities. Most children from ages @NUM1 to @NUM2 draw a curious mind to the very adult world and seek to find answers. Now the library is not a place where a child can recieve adult information right? Wrong! the library shelves are open to any and everyones advantage. A child can just as easily come across the wrong track to take ones innocence. Some parents in sociey believe that their neighborhood is a perfect harm free enviornment to raise children. Little do parents know, it is a very uncensored world and at anytime a child can learn of it's exsistance. The media draws it's attention to captivate our children. We have to watch what we let our kids watch, listen to, and read. For example, the girl in the magazine who just recently got a nose job because her nose was too big is feeding the idea to your eight year old daughter. She believes that she can recieve surgery to fix her big nose that the kids at school tease her about. Maybe your son listens to rap or rock music that condones the use of violence, drug, and alcohol use. He will think its ok to pick fights at school with other children or curse the teacher. Or the movie with the sex scene in it could give your child the idea to go out and practice what was taught. In our society, there should not be an image that our children should try and sustain. We should teach our children that life is better explored through @PERSON1's '@ORGANIZATION1' or through the wonderful adventures of 'The @CAPS1 of @ORGANIZATION2'. Parents should feed kids 'imagination' and not feed their 'image'. Life for our children should be about fun, knowledge, and life experience; but not everything that is on the shelves of our local library." 4 4 4 4 4 4 +3403 2 "Have you ever been to a library? Have you ever thought that some material from the libraries could and have been found offensive and wanted them to be removed from the library? I'm here to talk about the content of libraries and what we should do with them. Every time you walk into a library, you are surrounded with books and other learning or reading material. Yes this material is helpfull in finding things to pass the time or to help understand a certain subject, but some have been found offensive. Stories such as romance novels or vulgar horror and action stories have been viewed as innapropriet to some ages. These novels contain anything from brutal horror, to adult material, or foul language. Parents argue that these books should be removed from the libraries. I do not agree. I beleive that such books and novels can be a great help to the immagination of others and get the mind flowing. Yes i do agree that some novels are not age apropriate for young children, but that does'nt mean that they should be removed. I think that if people are so worried about their children reading these books that they should either go into the library with their child, or simply give the child a certain area that they are allowed to pick a book from. Another way of avoiding these wrightings getting into the wrong hands is to section off the more aggressive and adulterated books to a certain spot in the library and allow only age apropriate people inside. An age restriction of thirteen years and up would be a responsible decision. An age younger could be innapropriate for them, but any older and it could keep them from learning and expanding their mind to it's full potential. The point of this writing is to show that removing these books and novels from the libraries is not going to help anything. if anything it could hurt us by not allowing our minds to reach newer and higher limmets by learning and understanding the complexity of these novels. sectioning off these novels in an age apropriate area or having parental discression will help to keep the age correct for the books that they get" 3 3 3 3 3 3 +3404 2 "Censorship in Libraries In our libraries there are a lot of books that are very helpful. There are also a lot of magazines, music, and movies. A lot of the movies are adult movies ,but they do have a kid section at a lot of the libraries. Most of the books, magazines, and movies are all reachable by little children. I have been to the library as a child and seen all the books there. When I went to the library as a kid, I went with my parents. We would go there and mainly go to the kids section. I can also remember going with my grandparents. I would read books or I would put a puzzle together or something. I cannot remember a time when I went to the library and seen something that was offensive. I've never been to the library and seen anything that seems offensive to me. I'm sure that there is a book or a movie somewhere in every library is offensive, but to give you an example of a personal experience is something that I cannot do. If the libraries do have books that are offensive, they do a good job hiding them from me and other kids. I havn't heard anything about people finding these kind of books in other books or magazines that I read. I tend to not read very many books about the world. I like to read biographys about sports players and types of books like that. Whenever I read magazines usually they are about sports or cars, so I don't read much about offensive things that are going on, if they are. If the libraries have offensive books, but no kids or people that shouldn't be reading them, than the library doesn't need to remove them from the shelves. Some adult @MONTH1 come into the library looking for one of these books, so then they can ask and find them. So in my opinion, I think that the libraries shouldn't have to remove these books from the shelves." 4 4 4 4 4 4 +3405 2 "We see them. We read them. We gossip about them. Books that are found with inapropriate language, pages with the word 'sex' on them, disturbing thoughts and ideas, cuss words, its all there, but yet they are still in our libraries. My views on censorship is that, yes, our libraries should be more modest and not have books on the shelves with these things in them. The books in libraries across the @LOCATION1 that have found and profane ideas in them, is one of the direct faults in our teenagers today. In my personal experience with this, i have come across books that have had inapropriate language in them. I have also read books assigned to me at school that have had descriptions of sex and bad language in them as a third grader. As a young boy, I would go home to my parents and show them the content of the book and how despiteful it was. I've always been raised in a @CAPS1 home and seeing these things not only in schools, but on the bookshelves in libraries I believe is un-called for. I know that there are so many things that could offend people. Rascism, sex, cussing, rules, religion, but you need to eliminate the main things. It is impossible to please everyone. These ideas in magazines, books, in movies, and even in music has changed the world upside down. Even when I was young, we were taught no cussing aloud, and yet you see this all the time in books. In @LOCATION2, of course we have the freedom to do what we want. Authors have the right to put profane language in their books, and even dirty ideas. However, libraries are not forced to keep this content in their libraries across the globe. I believe that we should keep the future of @LOCATION2 in the back of our minds, that if we teach them this material, they are going to grow up in the world with no morals at all, and the world will become worse than it already is. In the quote by Katherine Paterson, I believe that she has made a strong point. If we take the books off of shelves, then our students, children, grandchildren won't be taught properly, and then there would be no education at all. However, I believe that from this quote even she agrees we in @LOCATION2 fear what our children read. So yet, why do we keep these books in our libraries? I believe that if we take these certain books, magazines, movies, songs, and internet sites off the computers, and out of libraries and schools, teenagers wouldn't be traveling down the road they are. Today, the world has turned to a disaster. The kids we saw @NUM1 years ago were on the right path. Now those same kids are smoking pot, having sex, getting girls pregnant, abortions, miscarriages, things that are not appropriate. And I truly believe that this content students read in schools and libraries across @LOCATION2 has something to do with it all. It is now in the hands of the @LOCATION3, whether our kids grow up to be the future of @LOCATION2, or the joke of @LOCATION2. We need this fixed" 3 3 3 4 4 4 +3406 2 "Offensive literature, sexual content, disagreeable topics. Books all have those things to someone some where. It would be impossible to get rid of all of the books that offended everyone and still have books left. There are many reasons why censorship is pointless and wrong. Censorship only causes curiosity. Censoring books could take away from learning. The real world is not censored so books should not be either. Consorship only causes curiosity. Young kids every day are told what to do and what not to do. Many people know that children are most likely to want to do exactly the opposite of what they are told to do. Being censored from things makes people want to rebel and learn the truth. No one likes to be told what they can and can not do. The same goes for being told what you can and can not read. No one wants the truth cut out of their reading materials. Censoring books could take away from learning. In school children are required to read many different books in their english classes. Some books, depending on the teacher, have what some would consider offensive language and topics. What some people do not understand is that reading those things are a part of life. Reading foul language would not be any more offensive than if someone was to use the same foul language in front of you in real life. In fact, the real life situation would seem to be more offensive. If we are censored from these things how will we learn that they exist. The real world is not censored so books should not be either. You can not go walking down the street and expect a loud beep to randomly play over someone's foul banter everytime they curse. When someone says something offensive in the real world you have to learn to deal with it appropriately and maturely. We can not cut out peoples offensive banter in real life so why should we do it in our reading material. Has no one ever heard of freedom of speech? That ammendment was created for a reason, to let @CAPS1 speek their beliefs. Everywhere we look today things are being censored and 'cleaned up' to make others happy who @MONTH1 be offended by whatever it is they are censoring. Sometimes it is appropriate for offensive language or topics to be written about. People need to be able to speek their minds and beliefs. But people also need to be able to have constructive critisism and be mature about offensive writing. Everyone will be offended in one way or another some time in their life by something they will read or already have read. It is just life" 4 3 4 4 4 4 +3407 2 "Books are important in the life of human beings wheather they are for studies,entertainment, or any other use. On the other hand, are some books offensive to readers. If certain books are offensive should you stay away from that type of book or get rid of the book altogether. With this being said, Should certain material be removed from shelves if they are offensive? Some reasons against this are you are taught to stay away from bad things, some people have different views of 'bad', and even if they are offensive they do not need to be removed. Some materials are offensive to some people but not to others. This is the case in anything for example movies, books, and daily life. Some people @MONTH1 think the type of words used in a book make it bad, but to others that is what makes the book. For example to show the full amount of hatred for a character you have to use some offensive words. Another example is describing how horrible a person was killed, it is not enough to say he got stabbed and beat, you have to describe just how brutal it was to please some readers. Another reason why books should not be removed is people are taught when to tell that something is offensive. If a reader discovers a book is offensive they should know to stop reading not finish the book then complain about offensive material. Also if a person rents a movie they know they aren't allowed to get an @CAPS1-rated movie then they should get another movie. People should know to not get a book read about the offensive stuff without stopping then go complain. If a person was concerned about a certain material they could ask people or go online to see if it is offensive or not. Even if a certain material is offensive it should not be removed. That is only the opinion of sombody. If the book was needed by somebody they would not be able to get it because it was removed. If material were removed because someone said it was offensive then ther would never be any more books. For the reason that anyone can be offended, so they might just say it was worse than it actually was because they are mad. For those reasons materials should not be removed. What if everybody started saying things were offensive ther would not be any more books. People should not have the complete say in the removal of books. Otherwise people would complain just out of spite towards certain people's material. So do you believe that certain materials should be removed from the shelves if they are found offensive." 4 4 4 4 4 4 +3408 2 "Every parent has their own opinion upon topics like this; but even if you were to censor out books, movies, music, etc., your child would still be allowed to find that book or movie on the internet uncensored. Yes, parents believe that having things censored will be better for their children, but children have much more technology and much more access to uncensored music. As each day goes by the minds of children become more and more cerious as to what the world has to offer. The more parents keep there children away from things in life the more chance they have of their child sneaking out or just not being the person you thought they would be. Every person is there own person; I personally would say to just leave the books, music, movies, ect. on the shelves of libraries; children will find out anyways, wither it is from friends, or the media. Its not to say that your child will become corrupt if listing to such music, but I believe that at a certin age parents should have talks with their children about stuff that is happening in the world, because children are not going to go be children for long and you will not be able to control them forever. Everybody was a child at one point in time and I am pretty such that most parents very much disliked when their parents would keep them away from things they wanted to do or maybe that they wanted to see, but life aways is not fair and these are just on persons opinions. Either way if you decide to take all the music and censor it out or if you do the same things to all the books and movies, etc. there will still be unhappy adults and unhappy parents. No matter what happens odds are is that children will find their way around these things, it never fails. There will always be some way your child can get around you, always going to be some way your kids will get past your rules; just think about it, if they disobay you once they will most likely do it again. It is in a child's nature. So like I said before every parent and every person has their own opinion upon topics like such, me personally I say just leave it and lets the parents of these children handle it the way they would like to, because yoy can not please everybody." 3 3 3 3 3 3 +3409 2 "Should books, music and movies be removed from shelves if they are found offensive? Books, music and movies have a certain veiw set aside for the reader or veiwer at hand. If someone has a different veiw of the text then they should not even be reading or veiwing them but to have books that are great be taken off of the shelves because they represent different veiws to someone else is unreasonable. People should give these things a chance because sometimes the non-original things just don't work. To have movies band from the public because they are offencive is something that is something that is just a way to control what we see and what we here. Books, music and movies should not be taken from shelves for the fact that they teach us a lesson about life without it really happening to someone. Books are a way that people can express themselves with out actually going out and hurting someone or something. Poetry for example gives the reader a feeling of what the writer was feeling when it was produced. Books that have political or social veiws on something should not be discriminated because someone does not like the side that they chose or the way that the author presents it to the the people. In novels just because someone uses profainty does not mean that there message is any less clear. Their message @MONTH1 be that profanity is used to offten or that the way that the next generation below them my turn for the worst but it is not used to harm. Music is a way that people can express their emotions without taking it out on the people that have hurt them or the people that they have hurt themselves. When someone uses profanity in a song it is not specifically said at one person; it is used to say how bad they feel about what has happened to them that they need something to really show how they feel. Many people who hear these lyrics sang to them @MONTH1 beleive that the person is telling them that that really is how they feel when its just a verse. Music should not be taken away because it is just words and they should not hurt someone, especially when it is only a way to express. In movies you see someone get shot, bruitlly murderd or attacked and its already a horrible thing because someone died or because someone did not have a fair life. This violance shown on the screens in homes, movie theaters and schools is shown to teach people what dangers are really out there; they are not shown to teach people other ways to severly injure another person although that is how people perseive them. Movies are about taking an idea and showing the world your idea; to show the world that this is what you are thinking and that this is how you feel about something. To have this all taken away shows that the generations before us are scared of what it is that we can do when we are a whole or what we can be if we stand alone and say that we don't like something. Books, music and movies that are all based on something that is real should not be banded just because they show individuallity; just because they have the deacensy to show us the truth in all the lies told to us but a higher person. These people most likely beleive that there is a thing as a perfect life when there is not one so when people show the way that things are they get scared that their ideas of a perfect thing are ruined by those who know the truth. The censorship of only things that are truely vile should be censored not the things that have nothing to do with the way that the comunities are today." 3 4 3 3 4 3 +3410 2 "I do not believe that certain materials such as books, music, magazines, ect should be removed from the shelves. Libraries or any place else. I believe that if someone wanted to know more information about something the library or the @CAPS2 should be able to provide it for them. Imagine if the Libraries and the @CAPS1 started putting these materials away, many people wouldnt bother to go to either. The @CAPS2 in my eyes is a place that shows me where we have been, what we have been threw, and things we have accomplished while we have been there.In the @CAPS1 could you imagine walking around touring seeing nothing about you past?,'No, I couldn't. Eventhough things @MONTH1 seem offensive in ones eyes, it could be the history of anothers. Many people now days relie on the useage of the magazines, books,and music to get information from. I believe that everyone has a right to know what has happened in their pass to have gotten to their future, so taking away information that @MONTH1 seem offensive to someone else isn't fair. I believe that we should keep all information in lilbraries, @CAPS1, art shows because everything has it's on history behind it, and if we just cover it up we will never know. I myself, 'would want to know, than not to ever have known.'" 3 3 3 2 2 2 +3411 2 "I belive that certain materials such as books, movies, magazines, etc. should be removed from public libraries. What if a young child were to stumble across an innapropriate magazine.. They would have the images stuck in their heads and could lead to unlawful decisions. There are many books and movies that aren't appropriate for most young aged children. I think that they should either be placed more appropriatly or removed completely. Some people will take certain materials to be more offensive than others, but if read, the person might get angry or start to have bad thoughts. Personally, I think that most fictional books are intertainment only. They do not display actual happenings or thoughts for the most part. If someone reads them as offensive, they might just be taking it the wrong way. Most Libraries have areas sectioned of for adults only but they aren't monitored. So how would anyone know if a child was in this restricted area where they shouldn't be viewing this material? They wouldn't have the slightest clue. I think that in today's society, most children already know about sexual graphics and whatnot, so why limit them to what they already know about? There are a lot of television shows and movies in the world that are much more graphic that books and magazines. Shouldn't they be banned too? The world is exposed to offensive material everyday. We just get used to all of it and do not take it the wrong way. But young children don't know better, so there is no gaurentee that they won't take ideas from inaprpropriate viewings and use them. So maybe things do need to be taken off shelves." 4 4 4 4 4 4 +3412 2 "Offensive @CAPS1 @CAPS2 @CAPS3 entering a @CAPS1 you know your are going to find something interesting to read,listen to, or even watch. Most people use librarys to find information on a certain topic, some of these topics are not always appropiate for certain age groups. I do believe that materials on any subject should reflect how people see the world now. Most kids go to the @CAPS1 and look to find books that interest them, sometimes they cross book about stuff they should'nt know about yet. Libraries should be allowed to have anything on there shelf that they please but allow it to certain age groups. @CAPS3 you were a little kid and you wanted to look up information on racing, you might have passes by many books about racism. As a little kid you might not know what that is but all you have to do is pick up and read. That kid just went from reading abot nascar to reading about racism and different races. I believe that book should be kept in order of age. @CAPS3 a teenager goes into the @CAPS1 to look up a book, they should be able to go to a section for teens and get a book on there topic. In most libraires there are topics such as sex, killing , and viloent matters. Kids should not be allowed to view that detail until they are ready for it. If I am at the @CAPS1 I will always look for a book interest me. My skills on choosing books for myself has changed since i was @NUM1 or @NUM2. Now that older and like to read, I read more books about action and mystery. I was at the our hometown @CAPS1 and saw a @NUM3 year old kid looking at books about pregnancy and was shocked to see what he was reading after he put the book down. That same day I came across a younger kid approaching his father with a book about sex and one about killing. @CAPS3 I saw this I was suprised to see what was happening. I do believe that libraries should be able to showcase what they have but in certain age sections.. Kids visit the @CAPS1 all the time and looking for books to strike interest and will always find something different that they should not be exposed too. Libraires would have trouble containg what kids read, so they should exposed all the differnt topics. @CAPS3 your little and your reading about these topics, you will then be more informed @CAPS3 your just little older. Next time @CAPS3 you visit the @CAPS1 check and see what kids in your local towe are talking and reading about. You will be suprised @CAPS3 a child apporachs his parents with a book about sex. I think that all libraies should exposed what they want @CAPS3 they want to ensure knowledge to everyone." 4 4 4 3 3 3 +3413 2 "I don't think nothing should be taking off the shelves at the libraries, if it's educational to your child in a certain way it should stay. Children can learn alot from the books at the libraries. If you need help or answers about certain things you can always find what you are looking for in a library, they have all the answers. You can not get everything off the internet some stuff you have to look up by opening a book. As I was growing up, I was able to get what I needed done for my school at the library. It's so many things at the libraries that's educational, you just have to know what you are looking for. For some of these adults, if you was having a hard time looking for what you needed at the library, do not mean the same for your child. Sometimes your children has a better time understanding then you did at their age. Parents please don't take away the good things out the libraries that could really help your child at times. If it was not helpful, they would have never put it in the library from the start. There are things that you would be better off finding in a book, because not everthing is on the enternet. So many sciencest found their information in a book, because its easier. You learn so many good things from a libraries. The books and things in a library help you with so much research. Taking materials out of a library I would have to disagree." 3 3 3 3 3 3 +3414 2 "Certain materials, such as books, music, movies, or magazines, do not need to be removed from the shelves in libraries if they are found offensive. There are multiple reasons to back up this statement, including an accurate quote from author Katherine Paterson. People build their character through their reactions of how people treat them. For example, in life sombody @MONTH1 offend another person, but that does not mean the offender is going to dissapear after doing so. How does this relate to libraries you might ask? Books and movies do not need to be taken off of shelves in libraries if they are found offensive because there are a lot of things in the real world that are offensive. It is your choice in what you want to read, listen to, or watch. Just because you @MONTH1 have the option of checking out something you do not think is appropriate or is offensive, does not mean you have to check it out. Some people @MONTH1 enjoy reading or watching things that are offensive. You @MONTH1 be wanting to argue, 'But I don't want my children being exposed to such offensive materials.' That is why most public libraries are split into children and adult sections. If you happen to come across an offensive book in the childrens section, then do not let your child check that out. It is as simple as that. Trying to take the book off the shelf or complaining about it would only take up more time. The quote, 'All of us can think of a book that we hope our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everybody else. And then we have no books left on the shelf for any of us', by Katherine Paterson, is a perfect example to conclude the reasons why books should not be taken off the shelf. She is saying that if one person is allowed to remove a book, then anybody else would be able to have that ablitiy as well. Therefore, a book that @MONTH1 not offend you at all could be taken off the shelf because somebody else does not approve of it. Eventually, there would be no books left. In conclusion, if there are books, music, movies, or magazines that offend you, simply do not check them out. You do not need to get rid of them because somebody else @MONTH1 want to check them out" 4 4 4 4 4 4 +3415 2 "No i do not think that books and other materials should be taken off the shelves of a library if someone thinks its offensive. Everyone has a different opinion on what books they like to read. I think that if you dont like the book and think its offensive that you shouldnt get the book and just leave it there because someone else might like that book and want to read it. Not everyone likes the same books but every book in a library is there for a reason. The library screans all of the books that they get in and wouldnt buy something if no one asked for it or if it wasnt a good book to have. I think that everyone has a right to read what they like to read and that no one should have the right to take books off of shelves in a library because what if someone is looking for that book and the library is the only place that has it. Then where would people spend their time reading and enjoing the books that they have an intrest in? If everyone could just pull a book off a shelf when they thought it was offensive there wouldnt be any books left on the shelves and no one would have books to read. I also think that if you dont like the selection of books on the shelf that you shouldnt be lookin in that section, go to another part of the library and look at the types of books that you like to read. Theres something for everyone in a library. This is why i think its not a good idea to be able to take books off of shelves, no one would have any books that they like to read if everyone did that when they saw something 'offensive'." 3 3 3 3 3 3 +3416 2 "I think that there are some books out there that really do need to be taken on the library shelves and just be put in book stores for ones own useage. Then there are other books that people just need to be more mature about like history books talking about wars, slavrey and books with curse words in them. School libraries such as the elementry and high school should have books according to their age groups. If the libririan knows the book is not something a young kid should read then they shouldnt let them check it out. The music,magazines and movies should also be age appropiate for the age groups too little children do not need to hear cuss words every five seconds in a song. Movies should be age appropiate too. Thats why libraries have sections for babys,toddlers,pre teens, teens and adults so if your really concerned that your child or even just your self are gonna find a offensive book or one thats not good for the age group then stay ing your own section. Lets say your a teen and theres a book that is not right for you too read and is for more older people then you should be able to tell a librarian that is there and maybe she can just move it out of that section. Every person feels differently about whats offensive and not offensive though so libraries shouldnt have to take out every book that offends one person cause it's not fair to the rest of the people. Besides no ones making you check out that book" 3 3 3 3 4 3 +3417 2 "hey what book is that lets me see it because I don't think I want you to read it because it is to graphic for a @NUM1 year old boy. This is what some parents might say to their child if they don't want them to read a certian kind of book or even a certin book. I feel that censorship is not needed in libraries, because either way the kids will be exposed to something the parents don't want them to see sooner or later I do not belive that any one has thr rite to remove anything from the shelves except the library. The can go ahead and complain that they dont't want it there. But if the library has it the library should be able to keep it there wheathere or not people don't want it there. I think the only real people that can remove a book for the shelves is the managers or manager if they agree with the patron. Ohter than those certin people I don't think a reagular person can remove anything from the shelves. At the library i go to they have any kind of book, music, movie, and magazine you want. Wether it is a adult content book to a rated r movie they have anything and they get new things every week. So if a person does not want a certin thing on the shelves they should not be able to by themselves take it from the shelves because what if another person wants to see the movie but they can't because a parent took it from the shelf because they did not want their kid being exposed to it. One time at my library i saw a verbal fight between a patron and the library manager the patron did not want the book in the section it was in because they felt it was to provacative for a childrens book. The manager refused to take it off the shelf becasue the library can have whatever books they want on their shelves.Another time i saw a person break a dvd because they thaught children at the age their children were should not be allowed to see those kinds of movies. But breaking the movie is just putting other people that want to see it put because noe htey can't because it is broken. To summerize everything I do not think citizens should not be allowed to removeantything from the shelves only the managers of the library should be able to remove anyhting if they want" 3 3 3 2 2 2 +3418 2 "Dear @CAPS1 @CAPS2, I strongly agree that certain materials should be removed from the shelves if they are found offensive. There are young chirlderen that will pick up a book, movie and/or @CAPS3 case, or even a magazine and read off whatever the front says. We @CAPS5't need younger childeren reading off whatever they know what to say. @CAPS7's already bad enough that they hear @CAPS7 from family members or @CAPS2 near them. The seller could also make an edited verison of the book, movie, @CAPS3, or magazine. The sayings,'You @CAPS5't like @CAPS7, than @CAPS5't look.','@CAPS5't got anything nice to say, than @CAPS5't say anything at all.',and 'If you wouldn't want to hear @CAPS7, than @CAPS5't say @CAPS7.',strongly apply to this. The way this world is coming to, @CAPS7 seems like they @CAPS5't really mind who sees their product, as long as @CAPS2 are buying their product. Now a days, @CAPS7 seems like the younger the child is, the smarter @CAPS7'll be. If a four-year-old picked up a @PERSON1 @CAPS3 case, saw a pretty much naked grown adult on the case doesn't put a good thought in their head. That child's gonna grow thinking, '@CAPS7's okay to be naked. @PERSON1 did @CAPS7. Why can't I?'. Childeren learn more things from family and freiends, before they start learning the truth in school. @CAPS7's just like you wouldn't want to take your child to the @CAPS8 @CAPS9, half naked to naked woman just walking around freely. Not something a little five-year-old needs to see. Just like a little five-year-old doesn't need to hear cussing or using the @CAPS10 name in vien. Having young childeren see, hear, say, think, or read things like that puts thoughts in their heads, making them think @CAPS7's okay to say whatever you want or to dress however they want, while they think @CAPS7's perfectly natural. Although, this @MONTH1 seem like a huge wake up call to some parents, but @CAPS7's not normal. @CAPS7's not more normal than telling your kids that they were a mistake. Things like that shouldn't be said to/ near childeren. Every parent wants the best for their child, they @CAPS5't want their childeren growing up in world that is full of bad nor do they want their childeren doing wrong. By letting companies sell their prodcut with half naked @CAPS2 on the front cover of a magazine or @CAPS3 case, or by selling books that talk about murding someone, hiding the body, and prays to @CAPS12 that they @CAPS5't get caught, or by playing music that is offensive in stores with younger kids, let's them think that they can sell whatever they want, promote their music where ever they want, makes the companies win. I'm not a mother, nor am I soon-to-be-a-mother, but I find @CAPS7 highly offensive that companies and stores would do that. i wouldn't want my child looking at a magazine than asking me questions about the @CAPS2 nearly naked, or have them ask me what a word means when @CAPS7's a cuss word. I certainly wouldn't buy a book that just looks strange or offensive to my child. As well, I strongly do believe in '@CAPS13 of @CAPS14', so the companies, in a way, do have a right to sell their product how @CAPS7 is. Just, if they really wanted to selll their product that much, that bad, than they should sell @CAPS7 online. @CAPS7 @MONTH1 cost more, but at least everyone would know that their childeren wouldn't see @CAPS7. Although, once you owned @CAPS7, than @CAPS7's the buyers fault if their child saw @CAPS7. That would be on the parents plate to deal with. Another thing with childeren, is that their brain is still developmenting at that young age, their imagintion is beyond fairy tale world, @CAPS7's kinda like their second home, only @CAPS7's inside their brain. Their brain is still developmenting and learning new things each and everyday. Once they go to the store with their parent (s), they're already jumping up and down off the walls for a new toy or a new pair of shoses, or just because they wanna run up and down the alies, @CAPS7's bad enough having them see something inopporty. I know I wouldn't let my childeren see things like those and I'm about @PERCENT1 certain you wouldn't want your childeren seeing those things. So, for the childeren's sake, think of them, their minds, and their developmenting brains and their off the wall imagaintion. Treat the childeren how you were treated growing up. Thank You, @PERSON2" 5 5 5 4 4 4 +3419 2 "I myself think that all books should be of the shelves because I do find some books to be offensive in their contents. I also find it very annoying when people have books and you are trying to talk to them @CAPS2 all they do is ignore you @CAPS2 keep reading i find that disrespectful. Myself though i do not like reading I find it to be boring @CAPS2 somtimes tireing unless it is actually a good book. I also could say that some movies should be taken off shelves because they are so stupid @CAPS2 have no point such as harry potter, twilight and most other books that have mythical creatures in them. Music on the other hand should @CAPS5 be taken off because it is alot easier to relate to and understand I @MONTH1 be wrong but thats my personal opinoin of the whole ordeal some music in the lyrics can show who you are and what you stand for in life music shows character @CAPS2 is easire to follow then movies or a boreing old book.I listen to music all the time you hardly ever see me with a book in my hands I sometimes do watch movies but they are more action , comady though I really don'@CAPS10 like scary movies though I do watch some @CAPS2 I don'@CAPS10 like ones with weird looking creatures in it thats just not what I look for in a movie. I can list some books, movies @CAPS2 music I like, for instant twoo books I like are blood is thicker @CAPS2 untill we @CAPS4 again by @PERSON3. Movies I like are all five of the @CAPS1 @CAPS2 @CAPS3 movies, @ORGANIZATION2, @CAPS4 The @PERSON4 and my all time favorite @CAPS5 @CAPS6 @CAPS7 And the new karoti kid. Music I listen to consist of @CAPS8-@CAPS9, @ORGANIZATION4, @PERSON2, @PERSON5, @LOCATION3, @CAPS10-@CAPS11, @CAPS12 @CAPS13, @ORGANIZATION5, @LOCATION1, @ORGANIZATION1, @LOCATION2, @ORGANIZATION3, @CAPS14 @CAPS15 @CAPS2 @PERSON1 they are all great singer song writers and do a great job at what they do @CAPS2 make millions off of it I mean come on people love music more then anything. there are movie music albums sold in the world the there are book and movies combind which I really think proves a big point when I say music is better. Serveys have been taken music wins everytime. So therefore this concludes my opinion on this subject and I hope I voiced it good enough to prove my point to people in the world that say books @CAPS2 movies are better because their not." 2 2 2 3 3 3 +3420 2 "Sometimes i think its always good to have an anappropiate material on the shelves of stores or a library. i feel this way because of when you see stuff that is offensive, most people are willing to buy. Or maybe when you been through rough times in your life, people like to read books that can be offensive be cause it was a reflection of the way they've been brought up. My views on censorhip contain to keep the offensive materials because its what people like best. Music, magazines, books, and movies. All of these materials can entertain adults, and teenagers because of the anappropiate sayings. It seems to give people to boost up their style and ways to act, such as music as the number one offensive material. Music comes from everywhere around the world, where young teens adapt to that kind of music and starts to feel that anapprpiate vibe. Another reason my views on censorship contain to keep the offensive materials is because of what we see and watch. Movies and television. when we watch a movie thats is offensive and that can be very anappropiate, you learn from whats in the movie. Most people make movies that can teach lessons if your willing to follow behind, or some movies contain advice for people that are going for the wrong things in life. Thats one of my main reasons i think the newspaper should keep offensive movies in stores. Television is basically the same for movies. You can learn a lot from a offensive @CAPS1 show, you can learn what and what not to do. Also my views on censorship contain to keep the offensive materials of what we read, books; books are entertainment and what most of us like to do when we have free time off our hands. People seem to read books because of the catorgories that most likely are to fit the way they are, such as reflections of peoples lifes, rough, lovely, funny and drama. We attend to read these offensive books because of what some of us been through as a kid or just would like to read it because they wanna maybe feel the same sympothy that some one else @MONTH1 have had. Also books can be adviceful of ehat people want to do in life, careers that you @MONTH1 be intersted in. last but not least on my views on censorship contain to keep the offensive materials like magazines. Magazines are the least offensive object that is placed on a shelf. I go against the reason of magazines to be on the shelf because its alot of gossip. I believe gossip is one of the main reasons why most people buy magazines. Also because of the false information. The false information that that give, is what we wanna buy. But for the most part of my oppinion, i believe that this material should not be in the store unless they change it up. I believe the offensive materials music, movies, books, and some what of magazines should be on the shelves of stores because lots of people are willing to buy. They all catch eyes for gossip, provokinding adds" 4 3 4 3 3 3 +3421 2 "@PERSON1, an author, once said; 'All of use can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' In other words, she @CAPS2 prooving the fact that books should not be censored in any form of way, in which I take the affirmative side on. To begin with, censorship @CAPS2 simply the banning of certain things that are thought to be offensive. An example of this would be the society in the book '@CAPS1 @NUM1' by @PERSON2. In this book, @PERSON3, the main character and eventually the protagonist, @CAPS2 a firefighter that cause fires instead of putting them out. The government believes that books are dangerous because they cause people to become knowledgable so as a result, they order people to burn them, making society ignorant and a potential 'slave' to their government. Despite loosing his job and almost being killed by the goverment, @PERSON3 rises to understand that books have true meaning and that what the government @CAPS2 doing @CAPS2 wrong. This topic now poses a question: '@CAPS2 all censorship bad?' Of course not. Some censorship should be allowed as a matter of fact. For example, any form of media whether it @CAPS2 books or magazines that portreys hatred toward a certain religion or group should be censored by the government because according to our constitution, people have the right to believe and practice whatever they wish (also know as 'freedom of speech'). However, the majority of censorship does not take a good side. In the political world today, censorship @CAPS2 applied to people who speak out against their government or leader due to the fact that they had been dishonest or ruthless to the people. Even in our country today, the government applies this which in some cases violates the constitution because people have the freedom of speech, but to a certain extent only. Overall, the negative outcomes of censorship outweigh the positive outcomes. Censorship causes people to become uneducated which on the other hand makes it illegal for a person to speak out against something even if it @CAPS2 wrong. On the other had, censorship towards things that portey hatred @CAPS2 not bad either. In conclusion however, bad censorship causes people to become uneducated, at the end resulting in pure ignorance." 4 4 4 4 4 4 +3422 2 I find it intresting that people think that its there problem to go to the book self and say this and that shouldnt be aloud here. I also feel thats if you dont like the book dont look at it. Or read it. I mean I kind of understand about the magazines becouse somethimes there can be pretty bad. I mean at the same time its noones job to say what is right and what is wrong. The music I am @PERCENT1 with it being taken out of the libraries. some of the music people lisson to today is just not right or kids or adults. People are wanting to know why there is so much killing and hate in the world today. The movies at the libraries are pretty good they dont let thim get to bad i cant compain to much about that. All around the libraries are doing a good job with how they handle it. Just some stuff that I would change but really what I think doesnt matter. Im only a @NUM1 year old kid i mean I can give my thoghts about it but thats about it. I love the libraries nothing will ever stop me from going. If I dont like something thin i just dont read it or look at it and thats how everyone should be 2 2 2 2 2 2 +3423 2 "'Should libraries censor reading material's to students at school.'That is a yes an no quistion because reading is good for people of all age's its just is the topic suitable for certain age group. Yes, I do think they should censor reading material, But to an exstent they need to have books for kids at certain age groups. like have sections for young kids then teens and then adults. if the child wants t read more graphic material then they must have pramission from their parent. the reason i say that is there are things that get published by authord that are ment to be read by certain people." 2 2 2 2 2 2 +3424 2 "Regardless of if we are speaking of the religous demanding books such as the @CAPS1 @CAPS2 series to be ripped from our shelves or @CAPS3 wanting to burn the @LOCATION1, books can always bring about controversy. In this country we are given the rights to freedom of speech and press, so why can anyone demand that a book be banned? Everyone in our world has different thoughts, beliefs, morals and values so why should we try to force our own views on others? We should not. Imposing our views upon others can be done just as easily through putting a controversial book on the shelves as it can by taking it off. Music, movies and magazines are no different, all express the ideas and beliefs of their respective writer, and all deserve to be accessed by anyone who desires to do so. Books, there are lists of hundreds of banned books and honestly you could find a dozen reasons to ban any book ever written. If you ban one writers words because they speak passionately or discretely on a controversial topic, then you must ban them all, and if you have to ban the words then you must also ban the writer so that he or she cannot voice his or her opinion. If we did this then our country and our world would be without opinion, voiceless, and without a voice their is no direction and no moving forward. If the people of our world are denied the right to write a book on their opinion then what kind of world do we live in? If you can ban my words, then I can ban yours and we have both lost our voice and our chance at somehow brightening the future. Imagine the impact if the @CAPS4 had locked away every copy of the @CAPS5 because it brought about change and controversy. Imagine a world where we had never heard of @CAPS6 or @CAPS7. It would be a would far different from our own. A world without powerful voices influencing not only our daily actions, but hundreds of years of war, love, and hate. It would be one without direction, where people are left to wonder but never to express or discuss. It would be a terrible place. While children should not exactly be watching porn or reading '@ORGANIZATION1', they definantly should not be kept from reading, listening to, or watching anything they desire. Values and morals should be gained by reading, discovering and thinking, not forced upon us by our government or our parents. Rap music @MONTH1 have lyrics that some would consider rude but to another they @MONTH1 speak a message. To a creationist @PERSON1's views @MONTH1 seem stupid and offensive, but to an atheist they @MONTH1 be what makes sense. We should all have access to all opinions so that we can develop our own. We should not have the values and ideas of others beaten into our heads, we should be able to develop our own through an exploration through those of others. Censorship is wrong, our government has no business in what we choose to explore and no one should be restricted by the views of another." 4 4 4 4 4 4 +3425 2 "I believe everyone has their own choice when it comes to taking a book off a shelf. You should know what your picking up. If you think it might be offensive to you, then set it back on the shelf. It's as easy as that. Taking offensive articles off shevles of libraries just because a couple of people are unhappy ruins everyones opportunity on maybe finding what they were looking for. Censorship in libraries is just uneeded. Everyone should be able to take care of themselves. Read the title before you pick up the book. It could give you a good hint on whether or not it might offend you. Children on the other hand should be overlooked by an adult just to make sure they dont pick up anything that should not be viewed as a child. Taking offensive articles off the shelves ruins good books for everyone else. Not everyone is offended by the same material. For some it @MONTH1 be pictures. For others it could just be words. But this offensive material happens in everyday life throughout the world. It just can not be avoided. So why take it out of libraries. If it's really offensive in any way put a warning sticker on the book. It will warn people that the book @MONTH1 contain material that @MONTH1 offend the reader of the book. It will benefit both sides of this argument. People will be less offended because they won't unexpectingly pick up a book and be offended. But the people that @MONTH1 enjoy reading the offensive books still can read them. Everyone has their own choice when it comes to picking up a book. You should have an idea of what your picking up. Just because you made a mistake and picked up an offensive article, why take it away from others that @MONTH1 enjoy reading them. Everyone is exposed to offensive material through everyday life. So why have censorship in libraries. It's not accomplishing anything." 4 4 4 4 4 4 +3426 2 I think that we should censor things our children read and look at in the libraries.They are young eyes and they are to young to be looking at that stuff.They would be taught the wrong thing at a very young age.They would grow up the wrong way.We need to take a stand on what are kids look at.Fr the future we need censorship.please everyone take a stand 1 1 1 1 1 1 +3427 2 "Do I think we should have to take books off of shelves? No we should not have to take certain things off of library shelves. Think of it in your own perspective. For example, say you like horror books. If someone else doesn't like horror and you do, and they take it off of the shelves, how mad would you be. I like @CAPS1 magazines. Magazines like @CAPS1 @CAPS2, or @ORGANIZATION1. If there is a bad picture or anything in it they took it off. My perspective is that if you don't like what you see then put the book, magazine or whatever it might be up. Don't just sit there and complain, because how would you feel if the same thing happened to you? I have had personal experience with these kinds of problems. At my school, we used to have magazines like @ORGANIZATION1. Just non-hurtful things. All it took though was one person to complain about it, and boom! They were gone. @CAPS1 fanatics like me don't like to see our favorite things gone. So really, what is the problem? The problem is that people can't handle what they see. It is understandable to a certain point. Like if your a very religous person, then yes i understand that you couldn't look at those things. But when you do it just to spite someone, then that is very hurtful. Finally, i just want to say that if you have a problem, keep it to yourself. Just because you don't like something, doesnt mean someone else won't. You wouldnt want it to happen to you" 4 4 4 3 3 3 +3428 2 "First comes censorship along with its totalitarian prowess, second comes the downfall of humanity. We have all seen the horrors of totalitarianism over time. From the @CAPS1 regime of @LOCATION1 to the banning of @CAPS2 in the @CAPS3 empire. It always is a terror that falls violently. Farenheit @NUM1 was written by @PERSON1 in the mid twentieth century, forshadowing a wicked future if censorship is brought to humanity. The human populaion will no longer have actual knowledge, only what they have been told. In this book, the population is forbidden from having any kind of book. Their history is completely makeshifted by the government into a psychological madness. As if propaganda doesn't warp the minds of people enough, censorship of books would be the end. Man must know his foundation and where he comes from. All it takes is one little book to be taken of the shelf. Eventually they all will start coming down til there are none. The government will erase history as it is and create one that warps the minds of all to believe the goverment is righteous. When the malignant being is the government itself. This all brings up one of the worlds greatest questions. What actually should be kept out of viewing for all to see? We all think it is correct to keep pornographic material and adult language away from children. What is it that actually made these things intolerable in the first place? We have been taught our whole lifes that these things are, but when real censorship comes in, so does the apocalypse of all knowledge. People believe anything they are told as long as enough people are saying it. I, without slight hesitation, stand against censorship in every way. People have the right to know everything. Parents still have the ability to keep things they see as unacceptable from their children as much as they please to do so. Let man choose what is intolerable to him. Censorship goes against everything the western democracies stand for. All freedoms are taken away by that one word. The democracies feared communism due to its totalitarian government. The communists censored everything inside the @CAPS4 @CAPS5. History has shown us time and time again that totalitarianism is unsuccessful. The people must be free and must be able to live their own lifes. Only then will they defend their countries so they can preserve freedom. Both world wars resulted in totalitarian regimes beeing taken down by the free, uncensored men of the democracies. A word is simply a word. People will always have their own views on everything. Arguments about every little thing will always be at hand. We all must understand that although we all have differences in our beliefs, we must prevent censorship and accept all. The day we dont, censorship will come, and noone will have the right to believe in what they want. It is humanity's decision and it must be made at this time when the world is at its greatest. What will become of the uncertain future?" 6 4 6 4 4 4 +3429 2 "Dear @CAPS1 @CAPS2, I think that if a book is on a shelf the book should be taken off if found offensive. People at libraries fight over a book. They need to have more than one copy of a book if they fight over one book. If the library dosen't have more than one copy of a book it will create a lot of prolums for everyone. People in library fight over a sigle book. I think who ever gets there first should get the book, but that just me. If two people fight over a book they should be kicked out of the library and never come back to the library. And that is why we have fights over a book. The next time you are in a library think frist before you act. Ask yourself '@CAPS3 they get ther before me?'. The library should have more that one copy of a book. Lets say '@ORGANIZATION1 @ORGANIZATION1' book sreies is in the library and thay have one of each book. Now the lat move of '@ORGANIZATION1' is coming out this @DATE2 (@DATE1) and people what the last book to read. The kids what it, but there is one book. So what do you do? Get more copies of the book. This is why libraries should have more than one copy. If the libraries don't have more than one copy of a book it will create a lot of prolums. If they have one copy of a book it will begin fights. You don't what to fight in a library (look @CAPS4 @NUM1). Now if it was me, I will let someone have it that whan it. So, libraries need more than one copy. In conclusion I think that if a book is on a shelf, the book should be taken off if found offensive. There fighting for a book and you don't whant that. The libraries needs more than one copy of a book, so they will not fight over it. If the libraries don't have copies of a book it will create prolums. So, think before yo act. It can be found offensive at time. Sincesly, @PERSON1" 2 3 2 2 3 2 +3430 2 "What do you consider an offensive book? Everyone has their own personal opinion on what they think is offensive. So how can you justify that a book, magizine, movie, music, etc. should be removed from a shelf due to content. Of course there are the ones that most people would aggree that are offensive to young kids and even some adults but then again other people don't find the same things offensive. The items that do contain graphic content, cursing, etc. and does offend most people should be set aside and putting in a different shelving area away from the others. So honestly no one can say that a certain book(s), music, movie(s), magazine(s), etc. do not have a right to have a place on a shelf and should or shouldn't be removed. If parents dont want there children or teenagers looking or seeing certain material that is something that the parents need to take into their own hands not a library or anywhere else. Now if this is an item at the home of a parent and they dont want their kids to see it they have every write to remove it from the shelf. Then again if their child or teen finds this item and looks at it and the parents didn't want them to they shouldn't have bought it in the first place of they should have removed the item. So can you as a stranger justify wheather or not somthing is offensive and a parent shouldn't let their kid look at it, or that a library or store shouldn't have that item on the shelf? No you can't. If you don't want you children to see it or if you don't set standards and rules" 3 3 3 3 3 3 +3431 2 "Every book has a meaning or message that all should know about. Taking a book away from a library shelf can decrease of knowledge from someone that might need that information. Just because a book @MONTH1 have certain views that can be offensive does not mean it should not be allowed on a shelf. A book should not be discriminated by what the contets @MONTH1 have source of a reader. Positive and negative books should all be allowed on shelve for any whom that have an intrested. As for music and movies that could be place in the same catogoery can be reasonable. Its really not that neccasary to be place in a library because its a place known for peace and quite and relaxation. If music or movies become a hazard then it should not be welcome in the library. Positive side music and movie has a way for some that comfort while having a good book at hand. It is understandable to have a little tone in the with some knowledge within the eyes in a book. Magazine is another non neccasary object that is place in the library. A magazine can have a mixture of good and negative thing obtain in it. Not all magazine have something that can be use to educate. Most magazine are known for entertainment and update on well known people around the globe. Magazines should be removed from the library. The library should be an experience of a learning envirnment and only materials that will be a good help instead entertainment for pleasure. Remove a book from a shelf is like decrease from knowledge that could have been known. As to remove books should not be allowed no matter how or what the content of the book @MONTH1 be. As for music, movies, and magazines should be a limited for usuage in the library." 3 3 3 3 3 3 +3432 2 "'@CAPS1 Should be Taken off the @CAPS2' @CAPS1 should be taken off the shelves? Nothing. At least thats @CAPS1 I think. For ant book you can find some bad thing about it. People can not keep bad things away from kids it doesnt work @CAPS4 that. Wether it is cusing, sex, gore, racsisem teens will find them and I think it would be better if they were foung in a book instead of real life. Most young adult books have cusing. There is no way around it. Teens hear cusing every day. At home, school, or even at work and yes it is offensive and no there is nothing you can do to stop it. It is there and part of our life. Most adults think thats if they don't shelter teens then they will find all this bad stuff in music. @CAPS1 adults don't understand is that teens doo @CAPS1 ever they want to be happy. The music of today's is very offensive, but the @CAPS4 it!!!!! THat is @CAPS1 is 'hot' in the music world right now. Ok say a kid was from a run down home and all he had was a radio, and that radio only got one station and the station was pop music, which most parents don't @CAPS4. That pop music would make the kid happy. Would you really take that away from him just because it is offensive??? Sex a lot of really good books have sex in there, but if a kid is at home reading about sex the he or she is not out doing it. Plus sex makes books better. I read books that contain rape, and other sexual acts but I've never done it only read about it. Race is anouther big deal. 'To @CAPS5 a @CAPS6' is an amazing book and every kid should read it so they can learn. That is the whole point in reading is so you can learn. We need to learn about those kind of thing. Keep us sheltered is not going to protect us it only makes us want @CAPS1 ever we can't have even more. Music, books, magazines, and other stuff help us learn dont take that away from us. If we don't @CAPS4 it we will not read it or leason to it. Don't chose for us let us learn on our own. It is our life. Let us make our own mistakes...." 4 4 4 3 3 3 +3433 2 "Libraries, not many people like them, but most people do. Libraries are almost in every town. People like to go there to read book, get on the computers, and do activities with their families. But there are some things that people would really want to do things there but they cannot because of their age or so, or it just might be prohibited at all times. Do you think the advantages and disadvantages at the library are fair enough for everyone? Most people really do not think that you must always go to the library for things because if you are a irresponsible person with all the damage that you have done to the item that you have checked out or how late you turn it could be the same ammount of money on buying that item. If you are a responsible person then you are fine. But some do not think that the libraries should be putting stuff there if they are not going to let any one touch it or check it out. So if they are not going to let one person get an item from the library then it should be removed from there, because there will be at least one person who will want to get that item and it would be rude if the librarian tells you no you cannot have that. Libraries should just stick to the same old same old a section for kids with kid books. A section for the middle schoolers and the teenagers. A section for the high schoolers and the adults and mostly everything will work out fine. Just want to make it fair for everyone since it is the public library of your town. Now that some facts and opinions have been stated hopefullly the libraries and librariens do think about what they are going to put and what they are not going to put on the shelves of a public library to make it fair for everyone. So do you think the advantages and disadvantages at the library are fair enough for everyone" 3 2 3 3 2 3 +3434 2 "Dear @CAPS1 or @ORGANIZATION1@NUM1'm writing your newspaper company this letter because @CAPS2 the same way Katherine Paterson feels, and we should not be able to have any of the following books @NUM2,and any sexual books. Because they can scar a kids mind forever, so in my opinion any books with thatstuff in the book should not be on the self for any public library. Also we should have more sensory in books with inaproprite speaking because it can give a person a change in thought.Also let me give you a example,lets say a little boy asks were the action books are, the libarien would say well aren't you a little too young to be reading this books an the child would say no but I heard this was a really good book an my big brother said it a good book too. And in my opinion that is all I need to say.Sincerly your customer @PERSON2." 2 2 2 3 3 3 +3435 2 "This statment is not right. Peolpe should be alound to read what ever they went or linst to or watch what ever movie they went. When someone read somthing thats bad they @MONTH1 or not like it. So people should not take away books, movies,and music that are bad. One thing that peolpe should have a choose of what they read and other stuff. Books some people like reading bad stuff beacuse they enjoy it. If the person do not like it they should put back and find somthing else to read. Now movies are a lot of fun to watch. But when you watch a new movie you should rent it first to see if you like the offensive sence or not. And the age thing yay you should watch a movie with andult if your to young. Now music is one thing that is offensive should not be takn off the shelves. Becasue if you dont like it do not pick it up from the shelves and tell people thats bad music when it could be some great music. Ok there is one thing that can be taken off the shevels is the magazines. Its bad for people to be reading those tip of magazines. if they went them they should order them offline mail at their house. So people should not take off the shelves are books, movies, and music but they can take away magzines.People like the books and stoffe that have bad stofe in them. And there should be no taking off the shevels. Thats what i think of if somone toke somthing off the shelves." 2 3 2 2 2 2 +3436 2 "I think that books, music, movies, and magazines should not have to be removed from shelves of libraries. People find entertainment to movies with sexual or violent activity in them. I believe that if we do take all of the stuff that involve offensive things off shelves then some people will be upset. In our generation today, people look forward to see things that they can't see at home with their parents. Music these days have a lot of bad language in them, but that's what makes people interested in them. The same with movies. Books, music, and movies today talk a lot about sexual intercourse, illegal drugs, and criminal involvement. This kind of stuff gets our attention, and makes us interested. If you have a child or someone in the family that you don't want them to watch, listen, or read about offensive stuff then don't let them see it. Most stores with offensive stuff have a back room where they keep all of it, so they don't have to worry about others seeing it. People do take it offensive sometimes but that doesn't mean that libraries should have to take them off their shelves. People can make there own decision of what they want to listen, watch, or read. Everybody can choose what they prefeir. Everybody has their own opion on things. I think that libraries will have more business with the offensive things then without. Younger people find more interest in the things that seeem like a dream, or things that seem so unreal. I think that they should keep offensive music, books, movies, and magazines out on shelves, because we have our own freedom to do what we want. Lots of people find many pleasures to watching offensive things. If you don't want to see or listen to stuff you don't prefer then don't look for them at the libraries" 4 3 4 4 3 4 +3437 2 "If you get offended because of a book, magazine, music, or movies than don't read, watch, or listen to it. America shouldn't be censored. Censorship should be fo young childen. If your grown and get offended by something having the '@CAPS1-word' on it then don't read it. If a movie drops the '@CAPS1-bomb' then don't watch it. i completly disagree with someone wanting to remove vulgar words. I don't get offeneded by swearing because its usually used in a funny way, like telleing jokes, or it makes a crappy song good. Censoship is helpful, but vulgar things shouldn't be removed from society, and it never will. More often than not, kids learn cuss words fom paents or friends. If you don't want your kid to cuss or be surrounded by cussing then remove them from that situation. It's the parents responsibility to protect or 'censor' a childs environment." 3 3 3 3 3 3 +3438 2 "The books in the libraries that I have read so far dont seem like they would be offensive to anyone and I havn't really listen to the music in the libraries or watch the movies and the magazines seem fine to. That doesnt mean that there isn't any of those that can be offensive to other people but if there is then I think that they should take them out of the libraries but I think if someone found something like that they would probably just put it back and not go there again. If they took out every book, music, movies, and magazines that people thought were offensive then I bet alot of them would be out and that wouldnt be fair to other people because maybe they want or listen or read or watch them and they would be really mad if they found out they was taken out because other peoplr thought they were offensive. Some people would probably understand that some of those could hurt someones feelings or be offensive to other people but then theres other ones that dont care. I think that some of them should be taken out if they are really bad and I wouldn't want other little kids reading them and gettin their feelings hurt or anything but if there not that bad then I don't they should be gone and I don't think people would really care if those stayed in them. If thiers ones that are really bad and if they stayed in the libraries then probably no one would want to come back to the libraries and sooner or later less and less people would stop going. So the best thing to probably do is just take them out and keep the people that keep going in the libraries because alot of people enjoy reading and thats what they do for fun and they would be really upset if they couldnt go no more over something that stupid" 3 4 3 3 3 3 +3439 2 "I think that most books, magazines or any kind of reading material that has offensive stuff to people are ok. Many people needs to read them and see what they are about. I think people take little things such as, curse words, or if the book or magizine is talking about drugs people take offensve. I don't think there is one book out there that doesn't have a curse word in it. Many people complain about small things like that when the reading material could be a lot worse than it is. I have read many books that have inappropriate words in them. I had a situation once when the title of the book sounded great and when I started reading it it had a lot of curse words in it. I guess thats just how it is now a days. You honestly cannot find a book without atleast one bad word in it. People just need to learn to get over the fact that many offensive things are found in many different reading materials. I do not think that the books, music, movie, magizines etc. should be removed from the shelves. It could be interesting to someone else but not you. Many people have different oppinions about different kinds of things and I think it should just be left up to that person weather or not they read, listen or even look at certain kind of reading material." 3 3 3 4 3 4 +3440 2 "Should taking books, music, and movies off shelves of libraries even be questioned? Aa stated in our constitutuion, people have the freedom to information. People have had this luxury every since the beginning of this marvelous country. Also @CAPS1 have the choice to either pick up a type of book or not too. So to answer my question, taking types of books and movies off shelves is completely out of the question, In the @ORGANIZATION1, it @ORGANIZATION1 that people have the freedom of speech, religion, and many others including freedom to information. Due to this reason places like libraries should have as much information as possible out on there shelves. Even if some of the conduct is inapropriate, it is still serves a way to educate. Which for children, education is largely what their childhood is for. Parents and teachers are always pushing their kids to go out, read and learn new topics other than what is being taught in the classroom or at home. If books were to be taken of the shelves, we @CAPS1 would only be depriving our youth of knowledge in the world. All books or magazines @MONTH1 benificial to some and offensive to others. However for those who would find this beneficial do we want to simply go against our @ORGANIZATION1 and deprive them of that information? Another topic in the @ORGANIZATION1 is the freedom of choice. Even if bad books or magazines are on the shelve, children have the choice to pick them up. Parents should simply tell there kids to leave those types of materials alone and choose something else. Having books that @MONTH1 seem innapropriate to some, aren't hurting anyone by just sitting on the shelve. However some, @MONTH1 come aross a book like this and find it very interesting and decide to check it out. This action plays no effect on child who is not supossed to be viewing material like that. Finally, it is very simple to avoid this type of information, all one has to do is simply not choose to look at it and walk right by it. As for myself, I personally as a child was not allowed to view certain types of movies, books, or magazines. For example I was restricted from watching rated @CAPS2 movies or things with innapropriate sexual actions. Since this was the case, I simply avoided those types of movies or magazines that had those types of content. For most of my childhood I did this and it was very simple. However, I don't think it would be fair to remove those types of things from other children. For the reason that it's their choice to do what ever they would like and that it has no affect on me at all. Lastly, I feel like removing certain things from libraries would be very unfair to children who have the privelage to view them. In conclusion, removing materials,s uch as books, music, and movies is completely absurd. As I said before doing something like this, would be going against our constitutuion. The answer to solving this problem to me is black and white, children should just not pick up those types of materials end of case" 4 4 4 4 4 4 +3441 2 "The library has many books, they would have anything that you could possibly imagine.The library is a great resource for any information. They have so much information that if you were to go to the library, you would be there all day. Libraries carry many different kinds of books. They would probably even carry a book perhaps on hats. There are libraries all around us and are very convienent. If a library carried misleading books, music, movies, or even magazines, I would have to say that they could get in a lot of trouble, especially if a magazine or a movie or any other source of information, would show anything that would affend someone in any way, then someone should tell the librarian or the manager and say this should not be on the shelf. When people go to the library they are exspecting clean reviews about the library. If a library were ment to carry offensive products it would not be called the library. The library is ment to be a quiet place where someone could go there and browse around maybe, or just go in and get what they need and come right on out . Most libraries are pretty peticular of what they should or should not put out on there shelves. If someone put something way out of the ordinary, and that person knows that they should not put the book on the shelf they should automatically be fired. In conclusion libraries are very nifty and important to the town or city. The only thing would be is to keep an eye out for any offensive books, music, and etc. You never know when they will be randomly out on the shelf, and if you happen to find one you should imediently tell the librarian or the libraries manager. The library @MONTH1 get in trouble and then again they @MONTH1 not" 2 3 2 3 3 3 +3442 2 "DO I BELIEVE THAT CERTAIN MATERIALS, SUCH AS BOOKS, MUSIC, MOVIES, MAGAZINES, ETC., SHOULD BE REMOVE FROM THE SHELVES IF THEY ARE FOUND OFFESIVE? I WOULD HAVE TO SAY NO. THE REASONE WHY I STATE THIS BECAUSE THOSE ARE THE BOOKS THAT HELP YOU THROUGH OUT YOUR LIFE. THERE ARE RUDE AND HORABLE THINGS OUT IN THE WORLD. LIFE IS NOT ALWAYS EASY AND SOME OF THOSE BOOKS WOULD HELP YOU WITH YOUR DESION MAKING. NOW THESE ARE THE REASONS WHY I THINK SO. FIRST, HOW WOULD THE BOOK HELP OTHERS IN THE LONG RUN. I THINK IT WOULD BECAUSE SOME BOOKS TALK ABOUT THRE REAL DEAL. LIKE HOW TEENAGE GIRL BEING A MOTHER AT A YOUNG AGE, OR HOW KIDS DONT FINISH SCHOOL AND NOW THEY ON THE STREET, IN JAIL, OR WORST. BOOKS MATERIALS LIKE THESE MAKE A DIFFERENCE IN SOMEONE LIFE OTHER THAN YOU. SO THATS ONE REASON. SECONDLY, THESE BOOKS IS LIKE A GUIDE TO OTHERS. THE REASON WHY I SAY THAT IS BECAUSE, IF PEOPLE READ ABOUT VOILENCE AND STUFF THEY WOULD SEE WHAT THEY DONT WANT TO GO THREW LIKE MYSELF FOR EXAMPLE. I WAS READING THIS BOOK CALL MY HOOD. AND THIS BOOK TALK ABOUT ALOT OF STUFF THAT I HAVE SEEN WITH MY OWN EYES LIKE GANG BANGING, SEX, DRUGS, HOOD FIGHTS ETC., THAT HAPPENS IN THE REAL WORLD. THIRDLY, MANY PEOPLE THAT I KNOW OF DONT REALLY LIKE TO GET ADVISE OR TALK TO OTHER PEOPLE ABOUT THEIR PROMBLEMS. AND THEY CAN GET A BOOK OR SOMTHING THAT HAVE THE SAME FEATURES AS WHAT THEY MIGHT BE GOING THREW. THOSE BOOKS AND THINGS IS NOT VERY BAD THEY ACTUALLY HELP. AND LIKE I SAID BEFORE THEY REALLY NOT BAD THERE LIKE A LITTLE GUIDE TO MANY PEOPLE. SO IN CONCLUSION DO I BELIEVE THAT CERTAIN MATERIALS, SUCH AS BOOKS, MUSIC, MAGAZINE, ETC., SHOULD BE REMOVED FROM THE SHELVES IF THEY ARE FOUND OFFENSIVE. ABOSULTLY NOT BECAUSE THOSE BOOK TALKS ABOUT REAL LIFE AND LIFE IS NOT ALWAYS FAIR" 4 4 4 3 3 3 +3443 2 "Censorship or not? That is the question. Many people @MONTH1 not realize it, but what they read and watch greatly affects them. If children watch a scary movie, then nightmares seem to occur more often. If teens read a book where parties seem cool and bad things are glorified, they too start to see bad as good. What if @CAPS2 article you are reading right now contained offensive language and inappropriate ideas? Most people would be offended and complain. I fyou saw an old man walking down the street yelling out obtrusive things, you would be mad and tell him to quit. So then the question is arised, why is it alright for us to watch movies like @CAPS2? Yes, books and movies should be censored. Children are very naive at a young age. When a child starts getting exposed to violence, illegal acts, alcohol and drugs in books or movies, they start to think it's okay. For instance, when I was younger, I watched the movie '@CAPS1.' @CAPS2 movie contains a profanity every other word, so it seems. I saw my favorite actors on @CAPS2 movie saying bad words, so I figured it was alright. It's not okay for a child to talk offensively like that. One day I even heard a little @LOCATION2 quoting lines from the '@CAPS3.' @CAPS2 movie is hilarious but extremely suggestive. It made me sad to hear an innocent little @LOCATION2 talking about things that are way over his head. Teenagers that listen to music from @LOCATION1 or @LOCATION2 are getting bad messages. Although these two rappers are seen as modern day music heroes, they shouldn't be glorified the way they are. They're songs are all about smoking weed and getting high. They make it seem cool. So teenagers think, '@CAPS5 if they can do it, so can I!' They start to engage in activities that were once frowned upon. If teenagers were't exposed to @CAPS2 kind of music, they wouldn't be as apt to take part in such things. As for adults, their movies and books should be censored too. One @MONTH1 think that once they're older they can do waht they want, but that's not the case. Let me throw out an example to you. Let's just say a husband and wife are watching a movie together. It's great until a rather, inappropriate ,shall we say, scene comes on. Not only does it make things awkward, but it sends out the wrong message. When adults or unmarried people see their favorite actors being naughty on television, it makes it seem right. They start to lose the concept that you are supposed to remain abstinant until marriage. After all, it is the only way to remain free of any diseases. If movies, books, magazines, and music continue to be left uncensored, the world will become a giant brouhaha. People will begin to lose the sense of what is right and what is wrong. We are on the brink of violence and total chaos. If we contiue to let our children and ourselves watch these types of movies and whatnot,things will get ugly. Yes, if libraries or stores find anything offensive on their racks, then they need to censor it before it corrupts any more minds" 4 4 4 4 4 4 +3444 2 "I do not believe that movies, books, music, etc. should be removed from shelves. I believe that people are entitled to their own opinion about what they choose to listen to, read or watch, everybody has their own level of maturity. Parents who are concerned about their child watching/reading something, always have the right to tell them no, and to keep whatever it is out of their grasp. People are entitled to their own opinion on what is appropriate level material for themselves. Whether it is books, movies or music, a person always has the choice of whether or not they want to be in contact with that item. It is a good idea to keep more explicit things only for adults, but if it is supposed to be for a certain age level, it shoud be out for the choice to be up to that certain person. Different people have different levels of maturity, so it is hard for one person or company to say what age level should or should not be using that material. A lot of parents will disagree with this issue, because they think that children should be kept away from the violence and vulgar images or language that are in the media these days. But at the same time, they fight for the right to raise their child the way they want to. People have the right to take away material that is too mature for their child, but no one should be able to say that someone else's child should not be able to view that material, because just because one person @MONTH1 find it offensive, does not mean that other people will. If someone should find something offensive they should have the common sense to not view that material any more, it's that simple. Everyone has that right so I do not think that companies have the right to take that away from them. Parents can censor what their children watch, and adults have the ability to make their own decisions about this topic. This proves that certain items, like books, movies, and music, should not be taken off the shelf." 4 4 4 4 4 4 +3445 2 "I personally don't believe they should us censorship in libraries. I feel as though no one has the right to say people are or aren't allowed to enjoy certain material just because someone @MONTH1 thing that it is offensive because, thats just one persons opinion. What's one mens trash is another mens gold, what one person finds offensive could be sawt out by millions. Plus in todays world if everything was censored there would be nothing left not even church because everyone has there own opinion and there own belief. Which would eventually eliminate everything because there will always be at less one person who thinks something is offensive in someway, shape, or form. If everything was censored people wouldn't even be able to exspress themselfs. If cenorship was used everywhere schools wouldn't be able to teach half of the material they teach today and kid would have nothing to involved. Author Katherine Paterson once said 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I for one completely agree with this quote. It's true as I have already stated if everything was cenored there be nothing left to be enjoyed. Think about it this way would you like someone telling you that your not allowed to read or listen to certain material just because someone felt as though it was offensive and thought it should be taken away from the public? I'm pretty sure that would make most people upset exspecially if they're a adult. I feel as though everyone has the right to choose what they read and listen to. So if you ever get asked if censorship in libraries should be allowed then think back to everything I've said before you give your answer. Once they start censoring what everyone can read and listen to then they'll feel as though they can censor any and everything and control peoples lives." 4 4 4 4 4 4 +3446 2 "The quote that Katherine Paterson declairs a very strong point and is completely true in my eyes. Everyone thinks and functions differently so therefore something offensive to one person might be completely fair and good in anothers point of view. Everybody thinks different and as you go to school or work everyday you find that obvious by just about anything the person is doing or owns. For instance, their clothing. Belongings can show a lot about a person just as much as actions or words. So what do you think? Do you think that any material from the library should be taken off the shelf just because someone or a couple of people think its offensive or terrible? In my opinion, no. Every book, magazine or anything in the media can send out a different message in everyones personal thoughts. For example, one movie could touch someone in a very special way and at the same time, someone right next to them could think it's disguisting and cruel. I have actually had a real life situation were this has been a conflict. During the years of my seventh grade experience there was this playstation game that i loved to play and enjoyed playing every single day with all of my friends. My mother, and pretty much the entire @LOCATION1 found it very offensive. It was really awkward and annoying that one of the things i loved is something that they tried to ban and not allow it to be sold from local stores. Now being in my shoes how do you think that felt for me? I thought it didn't feel very fair at all, it's selfish and inconsiderate. That's like taking somebody possessions and telling them your opinion on them and then ditching them into the trash to rote and vanish forever. I believe that you should be able to read anything you would like in the library without the fear of your next favorite book being taking off of the shelf because a group of people protest from the language or whatever they think is offensive to them in the novel, because the next time you know it, everything will be gone from the shelves since everyone has different opinions. If you dont like the novel, then i assist you to return it, and to never read it again. I feel this conclusion is very fair and considerable. So what do you think as readers, is it fair to be able to read whatever you want or do you think if you or someone finds it offensive, you can take it off of the shelves?" 4 3 4 4 3 4 +3447 2 "Throughout the world, there are thousands of people with various opinions. If one person thinks an art piece looks unique, another @MONTH1 not see any true beauty. But when people hardly underdstand the concept of other people, they should not be exposed to books or movies that could be defined as offensive. Some people don't know @CAPS2 it is like to be truely offended. When I was in middle school, I was a shy, fragile, young girl. I had just moved to a new school and was petrified of my new surroundings. For the first couple of weeks, I felt like an outcast; like an outsider looking in. I didn't fit in with anyones' group. Everyone seemed to of already have friends for years and here I was, a new student with no friends to communicate with. I was isolated and was desperately trying to find someone to be my friend. I wondered if something was wrong with me; if I has a bad odor or was dressed in an out of style fashion. I tried buying new clothes and changing my hair color. It seemed as if I wasn't even noticed. Before I new it, school was half way over. I was still a nobody. Then @PERSON1 came along and made me a somebody. @PERSON1, who had just moved to my school, looked bold and confident. At first, people waved a friendly hello but nothing more. As I sat at my empty lunch table, @PERSON1 approached me and asked to sit down. I couldn't refuse the offer so I nodded a sincere yes. The entire lunch period, we sat talking. We had a lot in common and I was glad to have made a friendship with @PERSON1. Months went by before I realized @PERSON1 and I were great friends. I knew I could trust him with all of my secrets. Even though @PERSON1 and I were close, I felt as though @CAPS3 was always hiding something. Occasionally I would have enough courage to ask if there was anything @CAPS3 needed to tell me, but as the same as every answer before, it was a no. @PERSON1 and I had always walked to my house after school. But on one afternoon, something felt wrong. The air seemed to lingere for miles. We didn't talk until we got inside my house. Suddenly @PERSON1 spoke and said, '@CAPS1 are people so cruel?' I was shocked by this question for I didn't know how to respond. @PERSON1 sensed that I had no clue @CAPS2 @CAPS3 was talking about so @CAPS3 continued. 'I'm gay.' I was appalled. Not because @CAPS3 was gay, but because @CAPS3 had never told me. I asked, '@CAPS2 happened?' @CAPS3 sat on the couch then and told me about how @CAPS3 was in the library overhearing some of our classmates reading a book about people making fun of gays'. I felt awful for @PERSON1. It wasn't his fault @CAPS3 was gay. I believe that certain books, movies, or music that are offensive to people should not be aloud on shelves. Some have never been offended. Some, always offend people for many reasons. Everyone has feelings and it hurts when they are offended. We, as a community, should love one another and respect them. Not read or listen to things that can hurt someones' inner feelings" 4 3 4 4 4 4 +3448 2 "Dear Newspaper, I do indeed believe that certain books, magazines or any other form of redaing material should be removed from the shelf if they are found offensive. I say this because, in every situation, either one side benefits, both sides benefit, or neither side benefits. If you do not want that article or piece of writing to be seen by certain audiences, then do not put it on a public display. It is best that they are in a solitare area for audiences mature enough to handle the influence and/ or consequences that go along with that type of material. I say influence, because studies and personal views have shown that teens and even young children are often influenced by explicit views portrayed by media. These children act in ways that reflect what they have seen. If they watch a movie full of violence, they @MONTH1 feel it is their job to act in violent manners. Until they reach an age of maturity and responsibility to make their own decisions, they let the outside world decide what is best. As a child is grows up, they are obligated to follow certain rules or take authoritative matters seriously. Authority teaches us, as children. We develop through our teachings and grow through our surroundings. You @MONTH1 ask what it is i am speaking about. Well, i believe that this situation relates to the phrase 'think before you speak' because it seems that the people displaying this media don't think about the after affects of their actions. Suggest that certain material @MONTH1 not only be impacting children and teens, but adults are highly affected as well. I am not speaking as though everyone who watches a movie or reads a book about a murderer will go out killing people. I am only saying that our surroundings almost make us who we are along with the way we were raised. The media gives us insight and ideas, in which sometimes revole around our every thought. I do believe that certain media, should be displayed in confidential locations. If not, then it should be a recommendation and obligation to have an age limit. My concern for public media display pertains to the concern of the impact on human lives. Thank you for your time. Sincerely, @LOCATION1" 3 4 3 3 4 3 +3449 2 "Many people find certain books, music, or magazines offensive or inappropriate for some young reads. Many people think that this material should be removed from libraries completely. People think that have young people exposed to this offensive material will effect the choices they make, and how they will react in certain situations. At the same time other people say that we should not remove it from the book shelves. They say that everyone has the right to read or listen to whatever he or she wants to. Its that persons right to choose weather or not it is age appropriate for them or not. Its not some elses right to take away choices that aren't theirs. People who belive that they should remove this material from libraries think it will corrupt young minds. They believe that this material will convey a message that it is alright to do what these books and music are saying. This in turn will create a different mind set for the young reader. Which @MONTH1 cause the young reader to be more aggresive or more like to make bad decisions about there well being or the well being of those around them. These people want there libraries to be about learning and be a healthy eviornment were young minds can grow naturaly and unharmed by offensive material. People who believe that they should leave this material on the shelf say its no one elses right to make this decison for you by removing them. Its the readers right to choose weather or not to read the material. The read will most likely learn what the material is saying regaurdless of weather it is in the library or not. They believe that it would be better for a young reader to learn about it in a safe enviornment then to have some one else later in there life show them or tell them. The enviornment maybe alot more dangerous then a library if learn though some one else. I believe in both in a way. I believe it is not some one elses right to remove these books from libraries. But i also believe that it should not be avalible for young readers to get. These books maybe be offensive to some people but its there choice to read it. They do not have to read these books it does not affect them. I believe the books not suitable for young readers should be placed on either a higher shelf or in a different part of the library where young readers do not have acsess to. If a readers parents want them to learn about it in a safe enviornment then they should sit there children down and explain it to them themselves. In the end we all have our rights and we use those to choice weather to read or listen to certain material. It is no one elses choice besides your own." 4 4 4 3 3 3 +3450 2 "While their are many books written out thier @MONTH1 offened many types of people thier are some that just need to be wipped off the face of the earth, those who do not learn from history, are doomed to repeat it. That is one of my favorite quotes and i don't use it lightly. Take from example 'The @ORGANIZATION1' the very book that gives instructions to build bombs, teaches you how to use firearms etc. this book is all about hate amongst people we don't fully understand like thier religion and how they look. This book frankly makes me sick to the stomach. Thats why i think this book needs to be taken of the shelves for good, thier was alos hate properganda in the books about how the @CAPS1 shouldn't be alive and that's disgusting i would be able to sleep better at night knowing this book was gone. One other book that should be taken off the shelves is a book written by none other than one other @PERSON1 the man that put so many people into gas chambers and many others to thier undeserved graves. He sent men, women, and childeren to his many death camps and work camps. One of those many childern was @PERSON2 who was in hiding from the gustappo or '@CAPS2 @CAPS3'. Because of this monster the @CAPS7 lost one of the worlds greatest and most deappest writers for the @DATE1's. This book was filled with hate messages and how the @CAPS4 people shouldn't be allowed to live amongst the 'supposed' @CAPS5 @CAPS6 @CAPS7. But if we did no have this book we would be sure to expect another @CAPS8 on our hands. All in all censorship in the libraries should be a rule but to only the books worth keeping not these horrific Books" 3 3 3 3 3 3 +3451 2 "The library is a public area where anyone can visit to find a book, movie, or magazine of their desire. Not everyone is interested in the same book genre. The library is meant to have almost any book someone could think of. If someone discovers a book or movie that offends them, they should not make a big deal about it. They should not be removed from the shelves of the library. I am against the removal of offensive entertainment because it is not fair to everyone else that is a member of the library. What if a group of adults enjoyed a movie that someone else thought was disturbing? If the library took that movie off of the shelves, they would lose business due to one person. If a mother of a six year old boy wanted to report an inappropiate movie to the librarian, it would not be fair to anyone that is mature enough for that movie. It just is not fair to everyone else. The library is public property. With that being said, it is the library's job to please the public's desires for entertainment. They are obligated to suppy books, movies, etc. for whomever. If one person does not like a particular book or magazine, they should search somewhere else for what they want. A few years back, my mom stopped taking my brother and I to the library. There were too many complaints about inappropiat books being supplied or taken off of the shelves. That year, the library lost @PERCENT1 of their customers because everytime the library tried pleasing them, someone else was not pleased. If every article of entertainment were to remain on the shelf in the library, everyone would be happy. If someone does not approve of a movie or something, they can search another shelf. Those who complain are only making more work for themselves." 4 4 4 4 4 4 +3452 2 "Do you think that certain books should not be shared with certain poeple? In all honesty yes, let them read and listen to whatever they think is interesting. No matter what the content that the book or @CAPS1 contains it's their choice, there is a power called freedom in this world. One might think that if you are able to read and comprehend the words that are wrote in that book or sang in a song, then yes read and listen to anything you want. If a young person such as a kindergartener picks up a book about sex you know there is no way that child will be able to comprehend it. So yes any books should be left on the shelf at libraries, open to anyone and everyone who are willing to read them. Its not that you have to be mature enough to read a book its that you have to understand it and are able to read to get what the book is trying to say. Yes some things parents don't want their children to know, but this world is filled with awful things and they are bound to figure some of those horrible things out sooner or later. Reading and music lets you learn and experience different situations that you might have never been in before. Both books and songs are a way to express yourself and everyone should express theirself in some way. When it comes to movies that's a different story. Those movies are rated for a reason. On a rated @CAPS2 film i could see @NUM1 year olds on up watching it, because by then those kids have been in high school and everything sexual and perverted have been put into their little heads. Also most have been in sex education class. Blood and all things cruel have been talked about and heard about too. So yes let @NUM1 year olds on up watch rated @CAPS2 films. The one thing that isn't suggested is taking a little kid to see a film that isn't rated for them. Say a parent took a @NUM3 year old to see a scarry movie, more than likely that child is going to be scared and scarred from see blood, stabbing, and sexual content. Movies should be left rated for whom they should be rated for. When it comes to music and books, they are wonderful learning tools also good for expression of ones self. So learn, experience, and express. No matter what your interested in freedom was gave to you so use it" 3 4 3 3 3 3 +3453 2 "I enjoy reading very much so and I have read several books since I've been in highschool. Three of the best books I have read through my high school career were about drugs, rape, partying, and had innepropriate language in them. Some parents would not like their children reading those books and would ask for them to be taken out of our school library, but I think that is completely wrong. We have freedom of speech and press so why can't those books be in our school libraries? What some parents think are offensive, others might not. Most of the time children disagree with their parents anyways so they are going to read whatever they want to read, or watch what they want, or even listen to what they want. People are different and we have a right to our own opinions. Some parents would say that those kinds of books should be taken out of the library but that's wrong, if you don't like them then don't read them, or discourage your kids from reading them. It's just a book, it's not like it's actually happening. Books are separated by age too, so a young child will be getting books from the children section so those books are for children and should be appropriate. Teenagers have a section too and they should be mature enough to handle what they read in books. I do not believe that certain materials should be removed from our libraries because a select few people think their offensive, that takes books away from people who enjoy reading those kinds of books. Then if all kinds of people are saying everything is offensive there will be no more books left on the shelf for people who don't think their offensive.When I am an adult I will tell my children what I expect from them and let them make their own choices because no matter what they will anyways and if they want to read a book with bad language in it, or a movie with language then so be it. It's not like they're actually doing what's going on in the book. Overall I think it is completely wrong for books to be removed from libraries for people complaining about them being offensive" 4 4 4 4 4 4 +3454 2 "I do believe that certain materials should be removed from the shelf. They are certain books, music, movies, magazines that people find quite offensive. There could be a few books that have some aweful material in it. The pictures in magazines, on cd cases or on movie/dvd cases would have stuff that people @MONTH1 find really offensive. I have never actually seen anything like that before, but it does happen in schools all aroung the world. People might not get what certain materials want you to do, but they @MONTH1 get offended and tell someone about it. They would most likely to tell people to not get it and tell the school that they were offended by the material. Certain materials should be removed from the shelves." 2 2 2 3 3 3 +3455 2 "Librarys have the right to diside how censored they want their material on their shelves to be. Much of this material @MONTH1 be considered offensive to certain people. However some materials @MONTH1 be as offensive to one perwson, it @MONTH1 not be offensive to another. Americans have freedom of speech, and writing, and many ohter rights. A library should have the right to put whatever materials it would like on to their shelves. There will always be offensive songs, books, movies, and magazines. Howver, some materials @MONTH1 be found offensive to someone, it @MONTH1 not be found offensive to others. A library @MONTH1 not be able to please everyone. 'But if they have the right to remove that book from the shelf- that work i abhor- then they also have exactly the same right and so does everyone else. And we have no books on the shelf for any of us' (Paterson). Paterson is simply explaining that if somone finds somthing offensive and wants it removed from a shelf then soon all books will be removed, and there will be nothing left at all on the shelves. A library is a place for everyone to come and find what they are looking for without any disterbances. A person probably isnt looking for somthing offensive. Therefore coming accross somthing that is offensive @MONTH1 be disterbing; however they should be able to try to ignore it. It is that persons choice to choose that library to attend to. So they will choose to maybe find offensive materials. If somone does not wish to come across offensive material they should choose not to go to the library. Americans have the right to be free, so does a library. If a person comes across a offinsive piece of material it should be ignored. A library can not please everyone by taking out all of it merchandice that @MONTH1 be considerd offensive. There simply would be nothin left. People should be aware that they @MONTH1 come across some offensive materials when going in to a library, so it will allways be the peoples choice of attending that library" 3 4 3 3 3 3 +3456 2 "I believe that some materail should be remove if very offensive. I also believe that if its helping you learn then it should stay on the shelf. Everyone, has different thoughts about was is offensive or apropreate and whats not. Also, everyone has different ideas or expectations on if books,music,movies,magazines, and so on are apropreate. Each person should read the cover of the book and so on to see if it will be apropreate for them.And the liabary should put warning stickers on the book, so that person knows the graphic or voulgur language. Therefore, I beleive that the laibaries should put warning signs on anything to reduce less books being removed from the shelfs. And so forth my decision is to not remove certain materail, only if offensive. The liabaries should use warning stickers on books so that person knows ahead of time about the graphic or voulgur language. I believe this will help and reduce the problems in our liabaries. Even thought alot of people will dis agree, this is what I believe should happen. Heres why I believe this should happen. One day when I was younger just starting to read I came across a book. I was reading it to my mother then she takes the book away and gives it to the liabarean and told what happen. I guess I said a very inapropeate word and they had no idea the book had that kind of language in it. So, now everytime my mother takes my younger brothers to the liabary she makes sure the book they want are apropeate for there age group so the same incadent wont happen again.wouldnt you be the same way with your children? I know I would not just for my kids but for other children also" 3 3 3 3 3 3 +3457 2 "In today's world being a child isn'@CAPS1 the easy thing, they have ideas and thoughts racing through our mind constantly, weather it is the stress of school or what there doing this @DATE1. But the last thought a child would have is if the literature their reading is offensive or not. I do not think that cencorship should be enforced more than it already is. Although that parents, and the government would disagree, cencorship is going to do nothing but make out future children more close minded and sheltered than they already are. Children shouldn'@CAPS1 lose their innocence so soon but they shouldn'@CAPS1 be so nieve about the world either. So I'm against censorship, because it's not going to accomplish anything but make children more sheltered. Censorship is already posted on music and movies, and it's not doing anything children are still goint to listening to music that isn'@CAPS1 appropriate for their age, but they don'@CAPS1 know the meaning behind the lyrics. And cencoring movies and @CAPS1.V show aren'@CAPS1 going to help much either, because of the internet it has made it easier for teens and children to access thing more easily. So unless we censore the internet to certian. Which nobody wants that to happen then we have to let our children be more open to the public world, because they will find out about certian thing sooner or later. Censorship is going to shape how our world operates eventually, but it doesnt have to. If parents just sat down with their children more and talked to them about certian then cersorship wouldn'@CAPS1 be needed" 3 4 3 3 4 3 +3458 2 "Hello! My name is @PERSON1. I am writting to you @DATE1 because their is so much conflict on the issue of 'if materials in the library are offensive should they be removed from their shelves'. I know their are people that will agree or disagree but what i think they should do is leave them. Yes i said it they should stay wright where they are. People all over this world get themselves worked up over all the little things in life but what we dont understand is their is always gonna be something in life we dont like and thats never going to change. Like this for example, people taking offense to materials in the library and wonting them to be removed. I mean come on people wake up and realize you are not always going to have things as you wont them theirs always going to be things you just have to deal with it. I believe that these types of materials should stay wright where their at because people can over look them we just decied not to. We all make a big deal over something so small. People should just not look at it and move on dont sit their and fuss about it just turn around and walk away just because you dont like it dosent mean that others dont. Everybody in this world needs to see that their are things were not going to like but we have to get over them and move on. This will always happen and theirs nothing we can do about it. All over the universe people @MONTH1 agree or disagree with what i have to say but its your perspective and what you think about it is your choice. I will say though that they should stay but people need to get over themselves and see the truth in life and know that even though their are things we dont like dont sit their and argue about it just leave it and go your own way. So this is my essay to you. People need to see their always not going to get what they want in life but they need to move on. Like this if you have a problem with the things around you such as taking offense to materials in the library and wonting them removed well sorry but no. learn to walk away from it because what you like @MONTH1 not be what others like and what they like @MONTH1 not be what you like we just have to go on with life leave it be because others oppinons @MONTH1 not match yours . Leave the materials alone because we as people need to see where not always going to get our way in life and to take hold of learning how to blow it off instead of making a big deal about something so little we could of walked away from" 4 4 4 3 3 3 +3459 2 "I do not believe that books should be censored. I believe that if it is on the shelf then anyone can pick it up. The books at the library are on a shelf and little kids grab them everyday so why cant they read them if there in their sight. I've gone in libraries plenty of times and in all my experiences I have never come across an offensive book. If the books are offensive I believe that they would not put the books out for everyone to see. All the times I go to the Libraries I have never come across a book that was offensive. I think that if they allow some commericials to be put on television then why can't some books be put on display.I believe that reading sharpens the mind and if a kid picks up an adult but who are we to say no you can not read that. The Libraries should not watch what they put out on the shelves because if you believe you should not read that certain book you would not pick it up in the first place. If your child picks up a book that you dont want them to read then you should not have taken him in the store in the first place. If you do not like the music selection that the libraries have then go to a different store. The libraries have bigger issues to worry about then your personal taste of music. If you do not like certain magazines that they have then order magazines online. There is no reason why you shopuld have any compliants to a library the library is a place to help you. It is no mandatory to go to one if you do not like what they have then do not to the library. Those are some valid points on why I believe that books, magazines, movies, and etc. should not be censored. If you dont like the movies they have don't go to the library. If you think their magazines are inapproapriate then order magazines online. If you don't like there books then order online or go to a book store. That is why I believe books should not be censored." 3 3 3 3 3 3 +3460 2 "As many would agree, censorship is a growing topic of concern throughout the world. I personally feel that censorship is necessary to a certain extent. If one feels the content of music, a movie, or a book is questionable, he or she has the option of reading, listening, or watching. Among many deabted materials, movies have ratings, just as music has 'bleeps'. Movies are rated '@CAPS1' for all audiences, '@CAPS2' standing for parental guidence, '@NUM1' for parental guidence for ages @NUM2 and older, and lastly '@CAPS3' meaning that anyone under the age of @NUM3 is either suggested or required to have an adult present during the viewing of the film. At home, the ratings are all based on the parent's preference. At the movie theatre, the restrictions become a sort of law. Anyone below the age of thirteen is not permitted to see a movie that is '@NUM1' or '@CAPS3' unless accompanied by an adult (anyone @NUM5 or older). Anyone who isn't @NUM3 or older @MONTH1 not enter a movie rated '@CAPS3' unless accompanied by someone @NUM7 or older. Depending on where you are, the restrictions @MONTH1 be more or less harsh. Ultimately, the rating system is intended to force parents to choose what is and isn't appropriate for their child. As for music on the radio, all 'curse words' are 'bleeped' out. If a person wants to buy their own music, artists are required to make two of the same album, one with censors and one without. Thus creating a decision usually for the parents, usually assuming they are the ones to but the album or the music for their child. When it comes to books, there are no ratings, just genres letting the reader know who the author's intended audience is. Types of genres include 'adult', 'young adult' and 'children' sections in libraries and book stores. Just like music and television, the final choice in the purchase is all dependent on the parents. Even though many restrictions put in place, there are still some faults to the system. Obviously if you are @NUM2 or younger, you most likely won't have identification. This leaves the person working at the movie theatre the option to let in who they believe to be of age. Looks @MONTH1 be decieving. Buying music from the internet doesn't require any type of identification either. How can they prove your age? When purchasing a book, not many cashieers would stop a child and say, 'that's innappropriate for you'. Maybe kids of all ages should have identification. Although these are all underlying problems in the censorship system, it seems to all lead back to the parents. Censorship is a huge topic of discussion for the parents of today's young and growing society, but in reality, if they have an issue with the content, they themselves will either rid of the material or prohibit the use and or puchase of it. All in all, it's about the parents and their personal preference" 4 4 4 4 4 4 +3461 2 "No books should be taken off the shelf. Most people have different taste in books, magazines or movies. If people find one of those offensive, then why can't they ignore it? They can go find a different one. Not everyone should have the same taste as one person, thats what makes the person we are today. If everyone had the same taste in everything this would be a pretty boring world.I'm more into horror novels more than anything. My own opinion, I think they have alot of excitement; with the killing and what not. I'm also not a big fan of reading, I read when I absolutely have nothing to do.Its very hard to move onto a different series of novels. Such as: romance, horror, adventures, even poetry!It takes alot to understand poetry. Poetry has alot of big descriptive words. @PERSON1 for instance, he's one of my favorite poets; he's actually pretty famous for what all he has done. Well, he didn't become famous until after his death.Overall, not everyone has the same taste in books, magazines, movies or even poetry. We're all different even when it comes to this." 3 3 3 3 4 3 +3462 2 "How often do you find a book or a magazine that you don't want children or someone to read? I mean I find them everyday for example, how people use there language like swearing or even the tv show they watch. I also hear when im with my friends or in a crowd of people. You hear them everyday even if you don't want to, but you do. I do believe libraries shouldn't even have that in where children can reach them or even in the library period. Its a public places and no one wants to see anyone with those books in the librarey. What would happen if a child got ahold of one and they were looking it and if gave them nightmares or if it deals with crimes, rap, or miss happens with something wrong. Sometimes what children read, they will say it or they will do it. so if a child see it they @MONTH1 think its alright to do it or they might think its amazing or cool to do and they might do it. Also again, you hear it on a daily basic like swearing. Lets say your child hears or reads horable language and they might say it to you or some of your friends, and you wont know where they heared or who told them. The movies even have something to do with it to, because it all the movies are together kids to adults movies. they should separet the movies or even get rid of the movies because the children could look at the case and see something scary or drug related, something that you dont want your children to or even hear to. Even though you hear them daily, you should never get them from the public library or even any public place where children are around. They need to take those book that discribe anything about crime, drugs, or even movies. Thats why i think they should get rid of those books and movies off the shevles and get them away from children" 3 3 3 2 2 2 +3463 2 "I think they should'nt remove material from libraries if it's found offensive. People find different things offensive that others do not. If you started takeing these things out,thers a good possibility that you'll loose everything,books and your people. One example I say this is because, some people are offensive bout movies that have violent scense in them. Others like the violence in those shows. The librarie might be the only way someone can get ahold of something they like. Another example is, magazines can contain material you don't want your kids round or seeing. That same magazine could help a student with a assignment at school. Kids might need the material that is offensive,it could help them through life. In conclusion I do not think we should take movies and books out if someone finds it offnesive. Some of the offensive material could be used to help students in there education. Other offensive material some adults enjoy reading or watching. Just because one person finds something offensive does not mean the next person that comes in will." 3 3 3 4 4 4 +3464 2 "Do people have the right to limit freedom? Do people have the right to limit imagination? Do people have the right to limit self expression? Many people in today's world think so. Book censorship is a big deal in the world today. Weather books deemed 'offensive' should be taken out of libraries or not is a serious issue. Censoring books not only limits self expression but it also limits knowledge and our constitutional right of free speech. I believe people should not be able to censor books. Censoring a book is like putting a limit on human imagination. All through life people are urged to think outside of the box. We are told as kids that being unique and diffrent is a good thing. We are all told this and yet when writers express themselfs in books, the same people that told them to think outside of the box, want to censor their thoughts. By censoring books, we are telling the world that imagination is a bad thing. Many people want to censor books so their children can not read 'offensive' matterial. They feel that by taking books they feel to be 'offensive' out of libraries, they can sheild their child from the bad things in the world. This is not the case. People @MONTH1 be able to censor books, but no one can censor life. Children will learn 'offensive' things with or without books. Book censorship limits knowledge. At the time it was written, The @CAPS1's of @PERSON1, was a very scandels book. Because of the laungauge this book used, many people thought it was trash. Many people wanted it to be censored. Today The @CAPS1's of @ORGANIZATION1 is a famous and classic book. In fact, I was required to read it for school. Regardless of the language this book used, it shows a part of @CAPS3 history. And to think, if people back then would have removed it form the libraries, I most likely would never have read this book, and I would never have the knowledge I gained from reading this book. It is our constitutional right to write and read the books we choose. America was built on the idea of freedom. Under the constitution we are garentied freedom of speech. By taking books out of libraries, we are limiting our freedom of speech. No one should be alowed to tell you that you can't read a book you want to read. No one should be alowed to tell you that you can't write a book as you want to write it. If we start censoring books, writers will be forced to censor their personal thoughts. Making writers do that, limits thier freedom of speech. If freedom of speech is limited, what other freedoms will also be limited with the years to come? Book censorship and censorship in gernal, is not a good thing; all it does is limit things. If we start censoring books, we are giving a messege to our children, that diffrent is bad. If freedom of speech is limited, how long will it be untill our other rights are limited? Where will it end? Before removing even the first book from the shelf, we need to ask ourselvees this, do we have the right to limit freedom" 4 4 4 4 4 4 +3465 2 "In my own personal opinion this letter to the newspaper with my views on censorship in libraries is that I think music, books, magizines, and etc should be stayed on the shelves. If they can get illistrated they should be able to be read or listened to. The things in this paragraph will be about the content of music,books, magizines, and etc. The music industry too many people think some songs are innapropriate but really that ruins the whole point of the whole entire song. Maybe it could be age adviced but thats all they should do they should not cut down the content. The magizines should be read or looked at by anyone because they are illistrated books. They should be aloud anywere if they got illistrated. Movies should be put in the library with age advice because someone had to allow that movie to go out in theatres, @CAPS1, or on the @CAPS2. From my experience I have seen people complain about these things. I really do not get why you should complain about these things. Now you decide what your views are on censorship in libraries" 3 3 3 3 3 3 +3466 2 "What is censorship? Cenorship can be described as limitations or restrictions, and it can aslo be called common courtsy. The real question is what are we limiting? Censorship is not something to support. Censorship to a book is like chocolate cake without the chocolate, its taking away the value and fun out of education. Though many @MONTH1 disapprove, libraries shouldn't censor their books, movies, or music because of that. Some @MONTH1 find that '@CAPS1 @CAPS2' or 'The @CAPS3 of @PERSON1' are offensive books because of their repeated use of the '@CAPS4' word. There is also some arguement to that, there are several @CAPS5 @CAPS6 that I know that find the '@CAPS4' word offensive, but not in this case. They say that it brings more educational value to the book, because in the day of @PERSON1 the '@CAPS4' word was an excepted word. Thats just how it was back then. Back then and now censorship is hiding reality. People who write, sing, and direct things that are considerd 'inapropriate' are the ones who are trying to set the truth free. The 'inapropriate' language, or experiences are the ones that really happen and are the words that are really said. By using censorship you are sheltering the world. Cesorship is tool we use to block ourselves from reality. Is that the right choice? Is it right sending sheltered teens out in the world unable to fend for themselves? Or should we let them understand how it really works" 3 3 3 3 3 3 +3467 2 "Censorship 'All of us can think of a book that we hope none of our children or any other chldren have taken off the shef. But if I have the right to remove that book from the shelf -that work I abhor -then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 was quoted from an author named Katherine Paterson. I don't believe certain materials such as books should be removed from shelves under any circumstances. Everyone is entitled to their own opinion about certain materials. If books are removed from the shelves due to censorship, than what is the point of writing or even reading books? If people continue to remove books because they're found to be offensive, then there won't be any books left to read. I have seen many offensive books. Whether it had something to do with religious beliefs or even revealing too much sexual content, I'm sure it's offensive to someone somewhere. Books are written by authors who believe they have the right to express themselves through writing. If you are to take away or ban a certain book from the shelf, than what would the author who wrote the book think? @CAPS1 world is full of offensive and rather disturbing books. It can't be right to just get rid of those things because they bother us. Everyone has the right to read any book they want to. Just because it offends one person, doesn't mean it offends everyone. I believe censorship is unnessesary. What gives anyone the right to remove or change something because it's inappropriate? I have personally read a few books that I wouldn't want little kids to read but that doesn't mean I should remove it from the shelves. Perhaps, somebody else has been waiting to find that book. If I did remove it than I'm restricting others from experiencing the joys of reading that book. Censorship in general is wrong. Everyone is entitled to their own beliefs and different ways of expressing themselves. I don't believe anyone has the right to take something, that someone has worked on for so long to make, and remove it because they find it offensive. There will always be something out there that you won't approve of. Just because you don't approve of it doesn't mean everybody doesn't approve. Authors write books for a reason, musicians write music for a reason, people make movies and magazines for a reason. What gives anyone the right to take something that somebody made and ban it from the rest of the world because it's offensive? Books are there to help us become more educated and more open minded towards different thoughts and ideas. We shouldn't just ban them because they offend certain people. If you don't like a book because it offends you, than don't read it. It's just that simple. If people continue to remove books because they're offensive, then there won't be any books left to read." 4 4 4 4 4 4 +3468 2 "If someone is looking for an offensive book, they are going to find it, whether it's collecting dust on a library shelf or is brand new in a book store. The same goes for an offensive @CAPS1, magazine, or movie. Removing the offensive items from library shelves will only cause the people searching for these items to look elsewhere. Different people have different opinions on what is offensive and what is not offensive. The @CAPS2 @CAPS3 is an example of a controversial book that many people believed to be offensive to their religious beliefs. While many people found The @CAPS2 @CAPS3 offensive, others enjoyed the story. If the book had been removed from libraries because some people found it offensive, then others who really enjoyed the book would not have been able to read it. Another reason libraries should not remove offensive items from their shelves is that, most likely, the entire book, magazine, movie, etc. is not offensive the whole way through. Even if a movie has one offensive scene in it, the rest of the movie could be a great story that many people would benefit from seeing. It is the same idea with a book or magazine. There @MONTH1 be a few offensive chapters or one or two offensive articles, but very rarely will you find a book, movie, or magazine that is offensive the whole way through. Of course, there are still offensive items that would be bad for younger kids to see even with the one or two offensive scenes, chapters, or article. There are easier solutions to this problem than having to remove the items from the shelves completely. One solution to this problem could be for libraries to put age limits on certain items, so that younger kids can't check out materials that are too innapropriate. But more importantly, this would be the job of the parents to monitor what their kids are reading, watching, or listening to. Removing offensive books, magazines, music, and movies from the shelves of libraries would just cause more problems and complaints. I think it is a good idea to leave the material on the library shelves and caution library users to 'read at their own risk.'" 4 4 4 4 4 4 +3469 2 "Censorship in school libraries is important, but at the same time it is not necessary. I believe that many books in the school library are not apropriate for younger children, but these same books should not be taken out of our libraries becuase I feel like high schoolers are mature enough to be reading this material. The material in this books are no differnt than what goes on in the high school years. Most of these books give a prospective on real life stories and @MONTH1 be able to help someone cope and realize that they are not alone. At the same time though many of these books do contain curse words, some sexual scenes, partying, drinking, and doing drugs. These books are too old for a elementary school age child and maybe even a middle school age child to be reading. For example the books by @PERSON1, these books are about a girl who becomes addicted to drugs, pregant, in jail, and homeless. I read these books, they are really good books, and they showed me how by just trying one drug, one time, could ruin your whole life. I learned a lot from these books, but I don't think that anyone younger than fourteen should be reading them. There should be a limit on the censorship. Many things talked about in the books, are the same things talked about in the school hallways, what is the difference? That is why authors write about the things they do, so they can conect with teenagers. Many books are an authors experience, so they are meant for high school age. Many authors will put an age level on their books, like fourteen and older. Librabries should pay attention to these ratings before putting the books in the libraries. Someone @MONTH1 become offened by what they read in a book, but I don't think that book should be taken off the shelf becuase of one person. If it becomes a bigger issue, than yes it should be taken off, but at the same time, that one book @MONTH1 be someone else's way from escaping the hardships in their life. Many adults would disagree with my statements becuase they feel like if a teenager is reading about someone drinking, do drugs, or having sex, then they are more likely to do those things. I feel like this is not true becuase the book I am reading now, they are partying and drinking, but I'm not out doing that. What is the differnce between someone reading it in a book and seeing it on television? I see many worse things on the @LOCATION1 than I read in books. Parents should be happy that their teenager is reading and not playing video games or out with friends. These are just my oppinons, some people @MONTH1 agree with me and others @MONTH1 disagree, but I am going to stick with my oppinons" 4 4 4 4 4 4 +3470 2 "Censorship in Libraries. Censorship is a big conflict in many libraries. @CAPS2 are plenty of offensive books that shouldn't be put on the shelves. Many schools call these books, magazines, and movies, '@CAPS1.' @CAPS2 is often a week where people read all of the books that have been @CAPS1 from school libraries. I participate in this school wide challenge beacause I disagree with banning books. Banning books can be good and also very hurtful in many reasons. First off, I like to think of banning books or anything else from the author or writers view. How would you feel if you spent around @NUM1 years writing this story/movie for kids that got @CAPS1 in the first couple of weeks it was on the shelves. I don't think that many people would enjoy that. I also think that many people don't think of authors at that big of a deal. When I think of that it makes me think of all the things we couldn't read in our world. Including, newspapers, books, and magizines. Maybe even include the fact that it takes a lot of work to write the things on what people want to hear, or see. I feel like when books or movies get @CAPS1 or removed, it makes the author feel like they're worth nothing. The parents point of view makes things a lot worse. Think of it this way, your child comes home from school with this book that he/she wants you to read with him. You sit down and start reading, when suddenly you come across a violent or inappropriate secne in the story. You stop reading all of a sudden and look at your child who is enjoying this violence and loving this story! What do you do? Many parents would call the school and explain what happened and complain about banning this book and taking it away from children that could get this book. Taking it away has no point because just banning it from the school library doesn't mean that they can't find it elsewhere. How do you think your child would feel having loved this story now it's gone? I know that it would make me feel like I did something wrong. Taking things off shelves also has a good side to it. When you take the book, movie or magizine off the shelf it is gone forever from that library. This can be a good thing because then kids won't have the obvious reason to get the story. If you don't want your child or other children to see it then it is quite a good idea. It makes the @CAPS1 object harder to find and also harder for the kids to grab intrest to. If the book or movie isn't around then they won't want to read the next one or see the next movie. @CAPS2 are many different views on censorship, which could effect how people choose what happens in libraries. My view on this topic was negitive and I support that fully. If the author works hard on writing the story they shouldn't get punished for expressing their feelings in a story. Many different poeple come across this issue and @CAPS2 are many different views on the topic. Next @CAPS1 book week I'll be supporting the authors that got crushed by their work getting @CAPS1. I hope that you will too." 4 4 4 4 4 4 +3471 2 "Censorship in public libraries, allowed? I believe it should be, with a few different veiw points. For one, why should the books come off of shelves because some people do not like the plot of the series? Two, @CAPS1 is over a million of us people out @CAPS1 and we all are not a like in many ways. Also @CAPS2, reading is one of those things that we differ with each other. One person might read peaceful warm-hearted stories, than you have people out @CAPS1 like want something more intense to be able to read. With all of us being different all over the world. Humans have different taste in food, music, movies, and books. All people have different ways to satisfy their pleasures in book readings, to me books are like religons not all of us are the same in that, and at the same time we are all freely living with our reglion without any punichment, so why would you take away books that people love to read freely? To me, in my eyes is just not right. It's like taking candy away from a innocent baby because it will rot it's teeth out. What I mean by that is, that sure some books to people @MONTH1 offend them yet their might be some people out @CAPS1 being offensive to that persons books and so on, but as all as your baby's teeth aren't rotting out, than why take the candy away? Meaning if the books have each individal shelf with labels on what it was all about, which they do. People wouldn't feel so offensive finding them in the wrong spot. Looking at the point of veiws do you understand where I come from with this? We are all the same, yet in books we find each other inside of them, finding ourselves into books, I know many book readers with different types of tastes. No matter who they were and who their friends were, we all are different. To many people other than myself, would agree with that. So tell me again why should censorship not be in public libraries" 3 3 3 3 3 3 +3472 2 "Books are a form of history, each telling a story from the past. in history we dont block any offensive events that take place so why should we removed any books that have offensive material in them. it would be wrong to strip the kids of any learning tools. books are a very important learning tool in todays schools and there is somthing new in every book that a kid can learn from. so even taking away one book could make a kid learn one less thing. and doing this on purpose would be aginst everything that schools stand for. there are many diffrent janras of books, but not everybody loves every jonra if a person only likes to read young adult books because it relates to there culture, wich most likely will have offensive language and events play out. if you were to take this away from a youngadult in school; once more this person would be missing out on books because nows they are not intersted at any of the books in the libary. if you can even think of just one instance that could strip a student away from a learning opertunity you shouldnt do it. but the fact is there any many reasons why you shouldnt remove any literture from libary shelves" 3 3 3 2 2 2 +3473 2 libraries shouldn't remove items just becouse some people find it ofensive. People prefer difrent types of books so renoving some reduses the selection. A lower selection of books means less people have a reason to go there. 2 2 2 2 1 2 +3474 2 "Can books, music, movies, and other materials be perfect for everyone? Everyone has their own oppinion and beliefs on what materials are good, and what are not acceptable for the human minds. All over the world young kids, young adults, and adults are reading books, magazines, listening to music, and watching movies. Those are all hobbies most people enjoy doing. Everyone reads different kind of books, whether its mystery, romance, or bible based books, people read. Removing books, magazines, and other materials off the shelves in a library leads to an unsuccessful empty library. When people come and search for a book to read, they search for what they think they will enjoy. If they enjoy one thing, another person might not. They might find a book offensive, but does that mean everyone else is offensive by the book as well? Taking that book out leaves the person who would enjoy that book stuck searching for another book. Everyone is different, everyone has their own story, just like these books do. Magazines are like books, they are meant to be enjoyed. I believe some magazines might not be appropriate for some people, But that doesn't mean they should take it off the shelf. It means that person should simply not read it. Magazines are made for all people to enjoy, that's why there are so many different kinds. They want to fit each magazine personally to each individual. Music is the number one entertainment people enjoy. There is a reason why there is so many different genres. The music industry try their best to sort the music to your taste. Just because one song has stuff in it you don't like doesn't mean you can delete that song from everyone. Music is used for many different ways. It relaxes you, pumps you up, it is used for parties, events, and so many other things. All songs are different so you can use them however you want. To band music because someone doesn't like it, changes music forever. There would be no music to listen to. People should be able to watch what movies they want. That's why there are ratings on movies. What is acceptable for teenagers, but not be acceptful for young kids. That's why they should not watch it. If people banned all the movies they thought were inapropriate. There would be no rented movie stores, theaters, or success in the movie production industry. Everyone should know what kind of movies they like, and they should just watch what they like, and leave the other movies for the people who enjoy it. No, books, magazines, movies, and music can not be perfect for everyone. Materials bring all different kind of subjects, and stories for everyone. Each materials brings enjoyment to different people. To band all the materials you believe is inappropriate will leave the shelves empty. What kind of library is that" 4 4 4 4 4 4 +3475 2 "I as a student, a child and a citizen of of the united states believes that every book, should be allowed in any library. Books, express feelings, emotions ect., the same thing with movies, music. I we don't have them how will we be able to learn anything in this world. Each book out there has an explanation, a title and a reason to be read. Today millions of poeple read more ad more because of all the books out there. I do believe however the reason why every book should be in a library is because all of them are different. It doesn't matter what the books about, some might seem offensive but everyone has something that they dislike. There are many poeple out there that get deffensive over things, for example certain people, animals, countries, different skin colors, cursing and even sports. We all have our own opinions, if you do not like a certain book because it has a content that you don't like then it's simple don't read it, others might like it. Movies, books, music, magazines, etc., should be allowed anywhere" 2 3 2 3 3 3 +3476 2 "Dear newspaper, In my opinion I don't think that censorship in libraries should be on materials, such as books, music, movies, magazines and more materials. Censoring materials in the library could resolve in many problems. I don't agree with the censorship in libraries on materials for many reasons. In my upcoming paragraphs, I will explain why I diagree with libraries having censorship on a lot of their materials. Many libraries in the world @MONTH1 have censoring on their materials. I believe that libraries have alot of censoring on most of their materials due to the fact that they @MONTH1 have children under the age of eighteen constantly viewing a lot of explicent content. Libraries shouldn't censor their materials but in my opinion they also shouldn't let under age children check out any kind of material that is only ment to be viewed by adults. Also if computer access is offered to children, an adult superior visor should be near by to make sure that no explicent content is being viewed. Censoring in libraries could resolve in many problems, such as, customers not getting all the information they need for a centain material, children not reading up to their abilities or standards, and also children not learning enough or getting information that they need for school. If all of these things happen prior to the fact that libraries have censors on their materials then many libraries will not get as any customers. Yes, most people @MONTH1 visit libraries for the wrong reasons but to other people, those wrong reasons @MONTH1 be the reason for them to gain more information. Materials in a library could also be found offensive to most people. But what's found offensive to most people could be found useful to other people. If something is found offensive to one person I don't think it should be removed from the shelves. If books and or materials are removed from the shelves, that can hide so much useful information that people could gain. In conclusion, I don't think censorship should be put on materials in libraries due to the fact that many information could be lost. Censorship doesn't always mean that the material is bad, it can also mean that the material is just not appropreite to be viewed or read by that certain age group. If a library that I visit has censoring on most of their materials, I would convince the library staff to take the censoring off. Censoring is not always bad and it's not always good either but it can hide alot of information from us which is not good at all." 3 3 3 4 4 4 +3477 2 "I think that all books, music,movies,magazines, and anything thats offensive should be took off shelves because @CAPS1 are lil kids that read books and they dont need to hear or reed offensive things. But at the same time for the peope that do wanna hear or reed things like that then their should be a area in the librarie for materials like that. @CAPS1 are all kinds of libraries that have offensive books,movies,magazines other reasons they should take offensive materials off the shelves because it could be racist or just offening certin things and people don't wanna see or reed about white people hating black people or black people hating white people or any type of racist things. It shouldnt be alounded because it can hurt someones feelings. I have my own observations with reading some books from my school librarie and have came acrossed some words that was offensive. like in some books they use the word nigger and since im black it's offensive to me i know that they are not saying it to me but they still say it and it kinda touches me in a way. Im not sayin that it is offensive towards all people but it is me so the way they could is like i said instead of having offensive books out on shelves they should have one area where materials like that could be found in stead of having the material where childeren and other people will get offened. The last thing i wanna talk about is that for childeren and other people they dont wanna see nasty things that are in books if i had a kid i wouldnt want my childeren too c nasty things that could be offensive to. @CAPS1 books also that talk about drugs and people dont wanna hear or read about that it. but @CAPS1 are some people also that do wanna see or read about things like that like older people they have diffent point of views about things so thats why again @CAPS1 should be one area in libraries for materials like that. In conclustion i think that @CAPS1 should hear me out and take in what i have to say because the material thats are in books,music, or magazines can be offensive to anybody any race could be offened by what they see or read so again @CAPS1 should be a place in libraries for that" 3 3 3 2 2 2 +3478 2 "Censorship is a big part of a lot of things at the library. There are books, movies, magazines, and computers that anyone that want to get on can do so. Kids love to go to the library to get books and just hang out with friends. Strict parents might believe that books, magazines, and music are offensive and should not be at the library, But that isn't what everyone else thinks. I believe people have different views about things. There are people that think there kids seeing bad things will make them want to do it. Others think there kids seeing those offensive things will make them learn from it. Another thing that people believe is bad in libraries is the talking. Not everyone that goes to the library wants to just sit and not talk to anyone. Most people do not go to libraries because of that. Libraries are fun to go to. You can just about get any book there you want to read. There is no point for any parent to be worried about there child reading a book that isnt for there age group, because libraries are very good at having the sections labled for age groups. They also would not be able to check out the book because the staff there are good at making sure it isnt a book that shouldnt be read by that person. Also most younger kids that go there are always with an adult. So the parent can keep an eye on there kid if she doesnt believe its right for them to read the offensive books. Parents should not let there kid go to the library without them if they are scared for them to do something or look at something bad. Talking at libraries is always fun because you can talk about the book your reading or just hangout. The staff and people there get so mad if kids are laughing or talking about something. I think they should make a floor people can go to, to hangout and talk. In libraries there are a lot of good things to do rather bad things people always feel welcome there. Books that people say are offensive are usually the interesting ones. So if you do not want to see or your kids to see the offensive books and movies you should make sure not to go in the adult section." 2 3 2 3 3 3 +3479 2 "A library is a place to go and find books, music, and other things. It's a big resource ; it has a huge variety of help for people. Question is , is everything that you can have access to be removed from shelves if there found offensive? If books, music , or anythingelse on the shelves were found offensive they should be removed off the shelves. They should have a section for those certain kind of materials. To accsess that certain material you would have to have a librarians permission that way it can't come off offensive to anyone. Your probably asking why you couldn't leave it on the shelf. You can't just leave it on the shelf because it could be offensive to someones cultural beliefs or seem inappropriate to the youth. So therefore thats why they would have to be removed. I do believe they should be remooved for those various reasons. Libraries are a place to go to be used as recources or fun. Everyone who goes to a library should have everything to there needs." 3 3 3 3 3 3 +3480 2 "Is it understandable to have some books restricted to people because of their age? No it is not the whole situation of wether or not libraries should have things such as movies, books, and cds restricted to certain people due to there age should not be an issue. My reasoning on that is not because of how it @MONTH1 influence people in a bad way. Then again it @MONTH1 influence them in a fantastic way. Thats how people find out who they are such as, what their interested in, what they like, and what they want to do. If it wasnt for establishments such as libraries most people would be the same as the others and not have a sense of character to themselves. People would be to similar and have little to no differences to themselves from others. People should be aware of some of the content in books. Just not to the point were those areas become restricted to certain age groups. Movies and cds are more understandable do to the actual graphic violence and language that some musicans and actors @MONTH1 use. Except in a book its not what other people are doing and saying its what you yourself is reading and how you yourself is interperating it. It takes more than what some people are doing and saying to reflect on what your reading and how your reading it. Thats why the whole situation of wether or not libraries certain things such as movies, books, and cds restricted to a certain age group, but instead having the ares labeled on what the category is to know before looking. So therefor that is my views and beleifs on why or why not libraries should be restricted to certain people." 3 3 3 3 3 3 +3481 2 "Many books in libraries have profanity, it just depends on how you read and anazlyze the profanity. To some people the strong words help the reader get the point across their head. To others the words are just offensive. I disagree that most books are offensive to readers I believe that they just help the writers get their points across. Many children come across books with offensive language, but if they only read books that are within their age level then they shouldn't have these problems. In adult books there is more offensive language, but to adults eyes and ears its a different story because they hear, and possibly say a lot of the words that they are seeing in these books anyhow. I believe that any offensive reading material should be found and then sent to a certain area of the library where if you are an adult then you can check these books out. This is a way to keep the children away from these books, words, and to keep them 'innocent' still. Children don't need to be reading books with offensive language anyhow, but of course this is up to their guardian. It's not necassarily a bad thing to have strong language in books, as long as the reader that has the book is taking it in the way the writer is intending, which is most likely to help the theme. Children should be kept away from these books but they should not be completely removed from the shelves. They should just be put in their own area for adults to read only" 4 4 4 4 4 4 +3482 2 "All libraries have books for all readers no matter the age. The books on the shelf are arranged or should be arranged in alphabetical order with the last name of the author first. I think that some, but not all, reading materials such as books, music, mvies, should be removed due to some of the graphics in each reading material. Every bookshelf should be arranged by age difference and spread apart from the other books and or bookshelfs. If a child would be in the appropriate isle for there age styled books, less children would pick up the wrong book. If children would understand to listen and follow dircections on where to find there specific age appropriate books, less accidents of children taking the wrong book from the bookshelf would occur. If children would take the wrong age appropriate book off the bookshelf, I would think that their parent(s) would be responsible and take it back and get the right book for their child(s). If parents would be responsible for taking action, their child should understand that they are taking the wrong book from the bookshelf. Wouldn't children understand that if their parent has to take the wrong book back, that they would learn not to do it again? I think that some, but not all, reading materials such as books, music, movies, and magazines should be removed due to some of the graphical features in each reading material. The books on each bookshelf are or should be arranged in alphabetical order with the last name of the author first. All libraries have books for all readers no matter the age." 3 2 3 3 3 3 +3483 2 "In many libraries there are books, movies, magazines, and music that people find offensive. Some find them more offensive than others. I believe that just because someone finds these things offensive that they shouldn't be removed from the shelf. I believe this because other people @MONTH1 be interested in it, we need information from the resources in the libraries, and all books make people more intelligent. These resources are in the library for a reason.If what is on the shelves is a distraction to people, they don't have to pay any attention to it. People can find what they like and stay away from what they do not like. For example, there are books that talk about real things that happen to real people in real life and some @MONTH1 not be able to handle the descriptive details that are given; if it's not easy to handle then just put it back and go read something else. Everyone in this world is different and we all like different things. In addition, some books in the library are used for informational text. College students, teachers, and students from all over the world need a library with these kinds of books, movies, music, and magazines. For example, they @MONTH1 need these rescources to help out with a class or presentation. If they were removed, they wouldn't have any way to find their information because it was found offensive. Lastly, all books make people more intelligent. Sometimes things are abstruse and these books help explain them better.We learn something new everyday and we learn it from reading out of books. Not only books but magazines and movies help as well. Reading books help people to get stronger with their vocabulary and communication.For example, the people who read more than others are usually the ones who like to be involved in plays and don't have a problem with speaking in front of people. This is due to their intelligent reading levels. They are more likely to remember better than those who do not read and also have a bigger vocabulary. So as you can see, people like different things and some are going to find these rescources offensive. Also, books are used to help people out and they make people more intelligent. If books, movies, and music were removed then we would not have a better intelligence than we do now. Every human being will have a problem some how and that is just what life is. Life comes with problems and we have to learn to deal with them. In fact, that is what we have to do when these problems come up because we all have a different outlook on everything but books being tooken off the shelves would not help anything; they can only help us out" 4 4 4 4 4 4 +3484 2 "I think that people who find them offensive just need to stay away from them type of books, music, movies and magazines. Some of the books people need to know about. Take the consentration camps for instince, people need to learn about them so we can prevent that horrible event from happining again. I think that by letting people read those types of books it help us understand and learn what happened in the passed. So we need to keep the books on the shelf and let people learn if not we could be in danger. They can be in danger by someone being like @PERSON1 and killing millions of jews just because they look diferent. Also like slavery just because they are a different color doesnt mean they are not human. So keeping them in shelves could help our future. Also if you are disturbed by music or movies then simply dont listen/watch them but let other people who is interested in them learn. My mom thinks that bloody-scarry movies shouldn't be allowed to sell in stores but i told her that thats what some people like watching and that people need to watch some of them to try to not let anything like them happen ever. In conclution, we should keep some of these bad books, music, movies and magazines on the shelves so we will fight to keep horible historical events form happining again" 3 4 3 3 3 3 +3485 2 "I do not believe books, music, and magazines should be removed from shelves. Wherever you go in the world, whether you like it or not, your going to come in contact with things you don't find appropriate or you think are offensive. @TIME1 world is far from perfect. One reason i don't belive they should be removed is because it would be unconstitutional. The freedon of speech and the press was not ment to be tampered with. If a specific library thinks their articles are innapropriate, an easy solution would be to put these articles in a certain section of the library and warn people what they are. The main reason I don't believe books, music, and magazines should be removed from the shelves is becuase the world is a nasty place and books are the least of your concerns. Kids can't be sheltered their whole lifes, they need to face reality and books are a good source of that. Kids these days are resiliant and can handle 'innapropriate' content. Parents need to face the fact that their kids are going to be exposed to offensive things in @TIME1 imperfect world of ours. It's just a natural part of growing up. Another contributing factor is that it would be unconstitutional to remove books and other articles from the shelves of @LOCATION1's libraries. When the amendments freedom of speech and press were written down they were intended to stay there. They are not guidlines that can be looked over, they are rules set in stone for @TIME1 great country. People to @TIME1 for freedom over much bigger issues than books. Who are we to tell people what they can and can't write down. People's natural opinions can't and shouldn't be governed. I think it would be a crime against @LOCATION1 to censor things in libraries. My final reason for not censoring libraries is that it all boils down to the people running the library. If they think some of their articles are profound and innapropriate, meerly isolate them to a certain section of the library and put a warning for people to see. If people don't want to be offended they simply have to just stay away from these sections. Take responsibilty for what is in these libraries that is apparently so offending and put them in their own area and stay away from them, do not take them out completely, because who knows someone @MONTH1 want that offending book. These are all supporting opinions why I personally do not belive libraries should be censored. @TIME1 world is far from perfect and it's not going to become perfect by censoring libraries. Plus @TIME1 act would be completely unconstitutional. Finally all the libraries have to do is exile these articles to certain areas of the libraries and slap a warning on them. If libraries were censored there would be a lot of missing information in @TIME1 world because there are many things in @TIME1 world that are 'offensive' to atleast someone" 4 4 4 4 4 4 +3486 2 I believe that in libraries certain materials should not be removed from the shelves even if it is offensive because if someone does not like that particular item they could always go and get another item. I have been to a library and nothing at all was offensive to me or anyone else. If you dont like that the library displays all the 'OFFENSIVE' items then you dont have to go it is an personal choice. Everyone has their own choice on what they listion to or read it doesnt matter as long as that particular person likes that sort of thing. That is what I believe in 1 1 1 3 3 3 +3487 2 "Everything is offensive to someone. There is no way to make sure nobody is offended unless you have nothing to offend anybody at all. If there is something on the shelf, someone can find something offensive in it. here is a good senario; there is a childrens book. It is one of the gratest books ever written, but it was written before the civil war and there is a racist comment in it. @CAPS1 good bye to that book. Some people would probably think '@CAPS1 its only a childrens book. I'm sure we will survive.' @CAPS1 lets move on to a bigger idea. What happens when someone says the bible is offensive. @CAPS1 thats gone, but now its supports are saying the other people's entire religion is offensive. Thats a couple more books. Now we have violence. Moderate censorship is acceptable for the young, but there is a line, even though it is hard to find sometimes. Obsence images that are illegal to view by a minor are acceptable but those that are legal should be seen without censorship. Censorship for those who understand is unacceptable, although select items should be viewed under supervision. To strip the rights of a person is not acceptable. The @LOCATION1 government has given people freedoms. One of those freedoms is the freedom of speech. This basically means i can say what ever i want and support whatever i want. A book is a form of speech. Although some speech is looked down upon, it should not be censored. Censorship is just basically saying; 'you can not say this.' That moves on to; 'you can not say.' then; 'you have no say.' In developing countries, such as congo, if you go to the goverment and say what they are doing wrong and that you are agianst them, take a guess at what happens. They shoot you. A better word for that would be they censor you. If you write a book saying how obama could be a better president, but someone finds it offensive, what happens. They censor you. Now you get no say in the matter because the supporters of obama dont want you to. Do you see much difference? Supervisation is a powerful thing. Guess what it can do better then censorship. With a supervison, children can still learn about topics but are not simply thrown into the obscene areas of it. A person is a human being. That includes children. The have a right to learn without the influence of others, but censorship denies them of that right. Censorship should not be used in libraries. It takes away freedoms and oppertunities for children. It causes violence among people. It scars culture, and ignores religion. Although censorship has the ability to do more damage then any single person, it is not 'bad'. Censorship was created to protect people from things that they feel to be wrong. But good intentions do not keep wrong consequenses at bay." 4 4 4 4 3 4 +3488 2 "With new things coming out these days, I, @PERSON1, believe that all things out in libraries should have a certain organization for certian subjects. I am not asking for any removal or destorying of books, magazines, or anything that is in the libraries but I am asking for a fair hearing of my opinion. I would like more organization for certian things, I do know people have their own ideas about things that should be in a book. These books found in a library could bring enjoyment to people, but sometimes can offence other people. So, with this way I would really like if there was a scale, or organization of books. So with that, people who dont like certain subjects could easily stay away from the books that they do not like. If there is a scale factor of these books, music, magazines, or movies, you can just have a number or a letter symbolizing the certain catagories. Even though, I, personally think it is alittle worse than a different organization, it would atleast worn people of these things. If you were to deside that either way would be better so then less complaining people would be wanting all books destroyed. I think that organizing the books in a different way would be better. This would be a lot of work but, thinking of a mother of a child could easily keep them away from books the mother would not even touch herself. I would not like any books removed from libraries. This is because if you start taking one out of the library, that my offence someone, I believe you will start taking out more than one. With this thought I think it will come down to either everyone complaining about a certain book in the library to no library at all. So please, please think about organizing the books, magazes, movies, music, and more so then this will not happen in the future. Thank you for your time to read this, I hope you can find a way of going in to this subject more. Also, maybe publish some too, into the newspaper." 3 3 3 2 2 2 +3489 2 "Do you believe everyone should have their on beliefs? Do you believe everyone should express themselves through their own culture, or have their own opinions? Where's that one place where you can experience all of those? In a library no one can judge you for your beliefs, culture, or opinions. In a library you have the right to have an open mind. I believe that any kinds of books, music, movies, magazines, or any other material should not be removed from the shelves if they are found offensive. Everyone is different and has their own beliefs and understandings. For example, if someone were to go to the library and purchase a book about the famous and deceased @PERSON1, and the other person did not like @PERSON1 and did not understand his cultural background they would take it offensive to come across that book on the shelf. If everyone had a say on what books or other materials were put on the shelves of libraries, we wouldn't have any libraries. If everyone kept their opinions to themselves in libraries everyone could possibly remain happy and have no arguements. Everyone could express themselves everyday, in their own way" 3 3 3 3 3 3 +3490 2 "The material that someone people believe shouln't be viewed by childern, I don't believe should be removed from the library shelves just for that reason. The library is not just for the children but also for the adults. Children are exposed to many things everyday that are not suited for them, whether it be in their home, at school, or even while their out in public. So why alter the library just for the children, when we don't even alter the public for them? I think if having certain material that isn't suitable for certain ages, then the children should be monitored closely on what they are pulling from shelves. By pulling something from a shelf just because a parent doesn't want their child to see, hear, or watch it, isn't right to the older people that come to the library. Another reason i don't agree with removing things is because, by removing items that are not suited for a child is like saying we should move the childrens things off of shelves, because the adults have no use for them. Their are always many ways to suit both the needs of a child and the needs of an adult in a library, and still keep the children from what they shouldn't read. Most children are so amused by their own materials in the library they are not worried about the adult things. If everything a parent didn't want their child to see ws pulled from the selves, then there would be no use for the older people to come to the library. Their only custmors left would be the children, and that wouldn't be much business, because the parent's wouldn't want to stay because they wouldn't have anything to entertain them for the toe being. There are always ways to make both side of the situatation fair. I just don't believe removing material not suited for children is the right thing to do." 4 4 4 3 4 3 +3491 2 "I personally dont think there should be any censorship in books coming into a @CAPS1. I think its wrong to do so, because any book should be read know matter what is said in it. Anyone who has a problem with something should just not read it and leave it alone. Now ive not really seen anything that i'd fine offensive, but ive read somethings with words i was sort of was suprised to see. But nothing that i found offensive personally. Books are there for their own purpose, and thats another reason why authors put them out there for the public to think what they want of it." 2 2 2 2 2 2 +3492 2 "In this life time we will all have our own oppinions about topics and problems in the world. There is a question that ponders in my mind. Is censorship in libraries a problem or a right? If i was a parent, I think I would be able to understand why I mite want to have a book removed from a shelf, but the thing is though, it is unconstitutional to do that. That is why in my oppinion censorship in libraries should not be aloud. When I was twelve, one time at the library I was reading the back of a book, and my mom approached me and told me that book was a little too graphic for me to be reading. It was about the @CAPS1. Now that I am older, I realize why my mom wouldn't want me to be reading a book like that at that age. That is one reason I can understand why some one would want to have a book removed from a shelf, but they can not do that because, that book is there to remind us why we should never have another world war again. I also think that everyone has there right of an oppinion on why somthing should be, or not should be done. One thing that I have obserbed, is that when kids read bad things, and look at bad things, it can really have a big impact on there life as what they do in the future, and there present. That reason it's self is a very good explanation on why I think that instead of censoring books, there should be some type of boundaries posted on what types of books should be read beyond a certain age, or if the child wants to read a certain type of book, the child must have a legal gurdian with them at that time. With that being said, I have come up with, what I believe to be a very good idea on what should be done in libraries. I think that any book that mite have somthing that is a little bit appropriate should be put into a section that is rated just like movies. If somthing has a little bit of inappropriate language such as cursing, these books should be put in a section for people over the age of thirteen just like a movie. Basically, the books will be put into sections depending on what they are rated just like a movie. If the book is rated @CAPS2, you must be over the age of seventeen to read it. This idea could be a really good solution, that way no books would be removed, but also these books will be kept out of harms way of children. Honestly, if I was a parent I would not want my children to indulge in reading of books that talk about sex, violence, and vulger, but also it is my belief that we all have our own oppinion, and have the right to be able to read and see what we want. On thing I think we all need to think about is things that have been done in the past that have had huge benifits on our country. Our four fathers, more than one hundred years ago wrote a document called the @CAPS3 of the @ORGANIZATION1. This document has amendments. These amendments state that we have the right to speak, have oppinions, and read what we want because, we should have the right to live a free life. To remove books from the shelves is unconstitutional, and I don't know about you, but I know that all the people that have gone against the constituotion have not found a great place in this world. My basic belief is that, why remove a book from a shelf, when we can impervise so everyone is happy? If the world would just get over the harsh things of the books we can all come up with a solution. There is an answer for this, books should not be burned they are master pieces. Cencorship can not continue in libraries or there won't be any books left." 4 5 4 2 3 2 +3493 2 "I think books that have nudity, curse words, or gang related violence should be put in either a adult shelf or taken off for good. They show kids stuff they shouldnt see or do when they get older. They just arent appropriate. No childeren should know about drugs, sex, or epspecially gang violence. Its stuff they should never even find out about. So i think we should take them books off the shelf, if people want to read them they can go buy themselves a copy." 2 2 2 2 3 2 +3494 2 "NO, I think books and ect. should be tooking down off selves if they are offensive! It's a free country and they have they will to freedom of speech. No one can think for nobody so everybody's going to have their opioin. As long as it's apporiate for the enviroment and its surronds ,there should'nt be any problems. If we took down the books people said offened them we would'nt have any books left. Everyone has their own opioin about things and diffrent views. It's most likely that someones goin to get offened. In some cases it makes a person better at wat their doing to be offened. Some offensive things are part of @CAPS1 and shows how things progressed from back then to now. What's a child without it's @CAPS1? Out of all the people who should be mad or think they should be offened is the @CAPS2 @CAPS3 ,but their not complaining about the books and etc. then no one should. You know jus as well as I know that most of the movies are about how we got whipped and sold back in slavery.Books about how only a couple of us made it. Magazines about how we sex and kill each other. Papper telling how are black communties are failing. So in my opioin, no books should be tooken of the shelfs if there found offenisve. It was going on before we got here and when we leave it's still going to be going on. It's apart of @CAPS1 and there's no better way to find out about things if you don't see it yourself. People always saying kids should read more. What's to read if you take all the books down thats offensive?" 2 3 2 2 3 2 +3495 2 "I believe that certain books, movies, music, and magazines should be taken off the shelves, to those who they are offending. I myself have not come across any books, movies, or music that have offended me. I believe that we should organize our books, movies, and music in a different way perhaps. First of all, people who are offended by certain books and movies should speak up, and do something about it. Finding a way to reach a happy medium. If everyone could take a certain movie or book off of the shelf there wouldn't be any left in my opinion. If people find it offending they should stay away from those certain types books or movies. Secondly, there are people like me who are not offended at all from these books, music, and movies. Its not fair for the ones like me to not be able to read, listen, or watch what we want to. If someone doesn't like the movie we loved, and they take it away it's not fair and buisnesses will lose customers. Lastly, to find a happy medium between the offended and the people like me. I believe we could organize our books, movies, music, and magazines in a different way. Instead of organizing by author they should be organized by age restrictions. Just like rated @CAPS1 movies, or rated @CAPS2 video games. Books and music can be organized in this fassion also. It would be easier for people who are offended to stay away from the ones they don't want to be around. In conclusion, I believe that allowing any one person to take a certain book, movie, or @CAPS3 off of a shelf is not very smart. One, its not fair for people who are not offended. Two, buisnesses will lose customers. Three, there is a better way to solve this problem" 4 4 4 4 4 4 +3496 2 "Dear, Newspaper editor I have recently been faced with a situation that has made me feel rather uncomfortable at my local library, I saw a rather graphic magazine being displayed in front of the entire library. Now I know that those magazines are, for some, a point of interest, but to others they seem a tad bit crude. It also came to my attention that magazines arn't the only form of crude murchandise on the selves of our local libraries. They are also littered with movies, books, graphic posters, along with, what i find to be explicit music. I know that it would be unreasonable for me to ask for the removal of the murchandise, but I would like to display a comprimise that could come into play. What I believe to be crude, @MONTH1 for some be acceptable, but why should I have to be uncomfortable at a public place, while the other is unphased. I believe that I have come up with a very simple comprimise, that would benefit me, as well as keep the murchandise avaiable. Now most, to all should know that there are children sections in most, if not all libraries. So I say this, what if we were to place all the explicit material in its own section, that way customers whom seek the material now know were to go to recieve it. This way, I believe would lower the uncomfortable-ness of going to our public library. The benefits of this comprimise seem endless, to me. This way the children are left with a safe enviroment to pick out their books, and the adults that find it explicit have a comfortable surrounding to enjoy their excursion to the library. Though I am not trying to benefit those whom seek the material, I think it would. This way all of the material they want can be found in one place, and they won't have to go searching the entire library for it. I think I speak for most when I say that our public libraries need to be a safe, family friendly enviroment, not only for children, but for those who wish to enjoy their library expierence. Thank you for your time, @CAPS1, @CAPS2 @PERSON1" 4 3 4 3 3 3 +3497 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' @CAPS1 does that mean well I guess it means if their is a book on the shelf then they probly dont want their children to get a hold of it. Maybe there parents should look at the books first or maybe they should have taken it off the shelf. I think all books that have offensive stuff in them should be taken off the shelf.If I was going to take books off the shelf it would only be the offensive science fiction books. If @CAPS3 based on a true story and @CAPS3 offensive it should be heard anywise because @CAPS3 part of history. Everyone needs to hear it because @CAPS3 true. If I was going to take music off the shelf it would only be the ones with a lot of bad language. For movies children should only whach @CAPS2 rated movies and nothing else. For magazines children should not read magazines they should be taken off the shelfs.The experiences I had with all these things when I was a child was my parents never let me whach anything or listen with anything with bad language. But I could read any book I wanted to. It was in a book @CAPS3 not like I could onder stand @CAPS1 that bad ward ment.I think @PERSON1 saying is that she wants to keep all books on the shelf because she said 'you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I think the point can go ether way because she says everyone has the same rights. And then she states that their wont be any books left for us. I think that means every book is bad if shes saying @CAPS1 i think shes saying.Their is a way to leave the books, music, movies, magazines, etc., on the shelfs. Like I sayed in the first pargraph there parents need to pay more attention to their children. And no @CAPS1 their reading. To sum it all up I say take them off the shelfs." 3 3 3 3 3 3 +3498 2 "In a library it's censorship should be conrtolled by the people that go to that library. If it is a public library then the visitors should have the right to choose what books go on the shelf. The libraries should not take books off the shelf due to the beliefs of one person, no the libraries should take all the books and give them a rateing once they have that only the reader should decide if the book, music, movies, magazines, etc, are offensive to them. Of course there are some books that adults @MONTH1 not wish their child to read and then they should talk to the librarian and set a boundry of what rateing of book their child can check out. Organizing the books this way anbody can read anything they want to though there are the books they don't want to read or even see on the shelf, they need to stop a minute and realize that one of the books they like someone else might not want on the shelf. In the end the books that are on the shelf are the choice of the library because they are the people that purchase the books. so to prevent a power struggle this way a comittee should be set up to decide what books to purchase. you will still have to deal with people not wanting a certain kind of book, but those people will just have to deal with it. The books on the libraries banned book list should be in the libray also, the books are just books weather you read them or not is your choice. The one exception to this should be at school libraries because it is the schools money purchasing the books the administration or the school board should choose which books go in the library. In short my veiw of book censorship is that, the library will choose the books that go into the library. To make things easier the books should have a rateing system that would be the national standard for all public libraries. Like I stated previously the books are just books its your choice to read them" 4 4 4 4 4 4 +3499 2 "Do you think books, magazines, or movies that are offensive should be removed from the shelves stores and libraries? In my opion, I think that the boss or manager of the stores should removed the books, magazines, or movies from the shelves stores and libraries that are offensive to adults and kids. Today I will inform you @NUM1 reasons why boss or managers should removed books, magazines, or movies from the shelves of stores and libraries that are offensive to some people and kids. One reason, why the boss and managers should removed books, magazines, or movies from the shelves stores and libraries is that some times kids go the stores and when the parents are about to pay what they are going to buy kids always get a magazine or a book and start reading it and probaly the magazine or the book have something nasty or inappropriate for kids and they should not be looking at and the parents do not but attention to what their kids are looking. Another reason, why the boss and managers should removed the books, magazines, or movies from the shelves of the stores and labraries is that for some people when they look at the magazines or books front cover and they see a picture from their culture or traditions and the people who did the magazine or the book wrote someting about thier culture or tradition that the person thinks that was not right or might not be true what they wrote about their culture or tradition and the person might get mad or insulted about what they read about their culture or tradition.My last reason why boss or managers should removed the books, magazines or movies from the shelves stores and libraries is that when I go to labraries and I see this little kids waching at the books or magazines and the magazines look nasty or inappropriate I get questinable and in my mind I said 'why the boss or mangers don't removed the books or magazines from the shelves if they look nasty or inappropriate and that might be something bad to show them. If the libraries should be good for kids/teenagers and adults for study in the libraries they should not have offensive books or magazines.In conclusion, I think that the boss or manager of stores or libraries should removed the books, magazines, or movies from the shelves stores and libraries because they might be offensive to some people and more for their kids. I all ready explind my reason why the boss and manager should removed the books or magazines from the shelves stores and libraries" 2 3 2 2 3 2 +3500 2 "I don't think they should take down any book because they were donated to us in the first place.Also,I dont think they should take them down because it helps us learn about what other people went through in there lifetime.Look at it and try to live life as you would in another persons shoes.Try to see where they come from and there life style.Im not as big reader or anything but wants I get that one book that just catches my eye and sounds good to read I look at it and if it is good I would take it and read for a long time because I want to know what happens next in the book.So I keep reading and reading and like in the middle of the story my teacher makes me stop reading.I would read as long as it takes but it just has to be the right book for me.I like all kinds of books from sports to sad emotional books.I like reading out loud to myself it helps me understand a little bit better." 2 2 2 2 2 2 +3501 2 "There should not be any style of censorship in the @LOCATION1. I am a strong believer that our country is the best because we are allowed by law and the constitution to have our own ideals, likes, and even dislikes. I understand that libraries are a place for all people of all ages, but I do not believe that they should censor what they put on their shelves. In the US we are known for accepting all different types of lifestyles, and religions; this is one reason I think censorship is against @CAPS1 policy. One of the things that sparked our countries secession from @LOCATION2, was censorship. The @CAPS2 would not allow the colonies news papers to speak poorly of him or his ideas and policies; this is why when the US was formed the @CAPS3 @CAPS4 built freedom of ideals and speech into the constitution. I do, however, agree with some censorship. The movie and song rating system is a form of censorship I believe to be needed. with out this form of censorship, small children would be aloud to see and hear things they are not ready for. This is also a good way for people to decide if they would like to experience the ideas and language presented by the matieral rated. I think that there should be a rating system (or explanitory system) present in libraries. Instead of pulling conservercial books off the shelves completly, we should rather put a warning on them. I feel strongly that I have a right as an @CAPS1 to read and experience any type of book, music, news, or picture I would like to see. If we start restricting what we as @CAPS5 are alowed to see, we start loosing our freedom; we become like those who live in comunist countries where only what the government wants you to see is seen. The statement made by Katherine Paterson supports my ideals greatly; especialy 'And then we have no books on the shelf for any of us'. This sentence shows that if we start pulling or restricting the things people deem offiencive, there would be nothing left to read or enjoy. Censorship in the @LOCATION1 is a direct violation of our consitiution. I am a believer in, if it bothers you or upsets you, dont read it. By doing this we can get rid of censorship, and be able to fully enjoy all our rights as @CAPS5. We also allow our right to be informed to be excercised." 4 4 4 4 4 4 +3502 2 "Movies, books, music, magazines, and more all have there own way of expressing the content in them depending on what the author is talking about. If the author choses to write something that you do not nessisarly agree with or is offensive to you then do not read or watch that piece of material. Everyone is intitled to there own opions. Theycan do and say what they want. Somethings those opions @MONTH1 have consequences involved but you still can write the material you want. As an author you provide a book to the public, If it gets that far. When a book is published then it is sent to a library that way you can choose to read if you would like. I book should not be taking off the shelf is someone finds that offensive. Someone else @MONTH1 not find it offensive and might actually enjoy that reading material. When a movie is made and it is '@CAPS1 @CAPS2' or is offensive to someone then people just do not go and see that movie. They do not stop playing it because someone @MONTH1 having different feelings about the movie. If you find a movie, magazine, or even a book offensive then do not read it or do not watch it. Someome else @MONTH1 enjoy something that you do not. Not everyone in the world today is going to agree on whats offensive and whats not. You can not always make everyone happy. If the book becomes a problem and it a majority amount of people that think it is offensive then yes maybe it should be talked about taking off of the shelf. If you think a book or movie is offensive then you have that right to not watch or read it. If someone else wants to read or watch the piece of material then they also have the right to do that. If something is offensive it is a personal choice to think so, so why take if off the shelf when they just do not have read it?" 3 3 3 3 3 3 +3503 2 "Censorship is a contraversal topic. Some believe that it is necessary others would disagree. My personal opinion would be that censorship is not necessary. Everyone is entitles to what they believe, and others have to have the maturity to accept that. Censorship is not necessary because if you are offended by some material then don't read or listen to it. It is as simple as that. Everyone can be offended by something, so if everything was removed that was found to be offensive to someone there would be nothing left. If things were organized into sections that stated how offensive the material was then it is likely that almost everything would be in the offensive section. Because censorship is contraversal there are many different thoughts on the subject. It ranges from no censorship to complete censorship, my view be just one of many. Censorship is truely just a matter of maturity and how a person goes about dealing with the material. The only person who can let you be offened is yourself, therefore censorship is not necessary in the library people just need to be mature about it." 3 3 3 3 3 3 +3504 2 "I think they should remeove it if the publick thinks its offensive. I think it should be that way about every thing. If something is offending you then you should say something about it. Im not saying that it will be takin care of all the time but you might get lucky and someone might fix it so your not offened all the time. Growing up at home dad would always tell me if I didn't like something then don't do it, unless it was somethin that had to be done then I would have to do it. So when something happens that I don't like, I either change my ways or I aviode whatever it is. I rairly change my ways though. Some times that is a bad thing though, but who hasn't mad a mistake or two? This is really hard for me to right about beacuse I don't care what other people think. So I really don't get offened. I do know some people the get offened easy though. I try to stay away from them beacuse you have to watch what you say all the time. To me thats no fun, I mean come on dude you have to be able to take a joke. If more people were easy going then I wouldn't be writing this essa. I bet there would be a lot less droma to but I dont know. If you know of a book, movie, anything that will or might offened you, just dont read it again. It might not offened the next reader. They might really like the book or whatever it is. All you have to do is stay away from what ever it is that is bothering you. After a wile you will forget about it. I guess if it really really bothered you, and there was a lot more people that felt the same way about the same thing then yes remove it. If there is only a hand full of people saying they are offened then I would just tell them sorry but more people like it better so it will stay." 4 4 4 3 3 3 +3505 2 "I do not think that anything is really offincive so i wouldn't really care what they have on the shelves. I do not easily get affended so i don't know what some things would be offincive but i guess that black poeple would be offincive of a rasist book? I don't think that porn or anything involving nudety should be used in school library's because some parents are very stricked about that kind of stuff and that is very inapropriet for school. I think some parents take it over the top with whats inapropriet and what's not. Library's that are just public library's are totally diffrent and should be able to have any movies and any books. It should not be a big deal on what there about. If the people don't like it they don't need too look at it or get it. So, i think that library's should have all diffrent kinds of books and movies. If the people don't like it then they can leave, and don't have too worry about it. That is what i have too say about that problem. I hope that this has changed or proswaded you alittle bit" 3 3 3 2 3 2 +3506 2 "I personally think that certain materials that are found offensive should not be removed from shelves. I think this because it's parent's responsibilities to keep track of what their children read, watch, or listen to. You can't get away from things that are offensive to some and everybody has a right to do what they want. The first reason why I don't think offensive material should be removed from shelves is because it is the parents duty to watch what their kids are doing. If parents don't want their children to observe this stuff, then they should keep it off limits. I have heard some parents claim that they didn't know what the material was like, but that is why they made warnings. That is no excuse. The second reason for not removing offensive material is that there is no way to get away from it. Now a days, material that is offensive to some is all around. Shows, movies,and music, they all have something not suitable for all audiences. Plus children will learn about this offensive material sometime in their life anyway. If they do not hear about it in movies or magazines, they are probably hearing about it at school. These days children learn about things sooner and sooner. The third reason offensive material should not be removed from shelves is that everyone has a right to read or listen to whatever they want. It is up to them as to what they want to watch, not everybody else. They should be able to go in a place and buy something that they want to watch and not get questioned about it. That is why I don't think offensive material should be removed. It is the parent's responsibilities, you can't get away from it, and everybody has a right to do what they want. A way to help with this problem is to move offensive material to a higher shelf. This would make parents of younger children happy, but also the people wanting to view this material happy. This way you are not completely removing it, but making it harder for younger audiences to get to it" 4 4 4 4 4 4 +3507 2 "How can writing be offensive? Many @CAPS1 find swear words in writing or violence to be very offensive. Yet others find that those things make their writing more interesting. Writing can cover all aspects of life and give us ideas like racism and other inappropriate thoughts. It seems like in today's writing you can pick up just about anything and somone will find it offensive. That means if we censored our libraries to the extreme there would be no books left. It is just like Katherine Paterson says in the quote, '...then we have no books left on the shelf for any of us.' @CAPS1 can't deny that books and any other writing place ideas in our head. That idea is a seed and we can either choose to water that seed and let it grow or cause it to die out. I believe we have a choice to either except or deny those offensive ideas in our head. If we find something offensive, simply set the book down and use that better judgemnt. We know what is right therefore we decide what is ok to read. Everyone sees things differently. What about children, can we trust their better judgement? I fear that children don't have as great of judgement as more mature adults. The resposibility of judgement lies more on the parents of that child than the libraries. The libraries place books for kids in a certain section to make sure they find appropriate books for their age. Both the adults and children get to find books that fit them and don't offend them. If libraries did do censorchip it would deny us our rights and freedom to speek our minds clearly without a haze being placed to confuse it. We as a country were built off the radical and offensive things written about the @CAPS2. Those words are what fired us up to become an independent country. Just think if they would have censored those ideas. Would we still be @LOCATION1 today? What it all comes down to is not that we should censore our reading but that we should use our better judgement." 4 4 4 4 4 4 +3508 2 "In today's society it is easy to find small things that offend people wether it is politics or religion. The truth is no one is able to keep everyone happy. A major debate of today would be that of the media. Should people have the right to remove books, music, movies, or magazines from our shelves because they are found offensive to one person? The answer is no. Three important reasons support this answer: freedom of speech, freedom of the press, and knowing everyone can find something that is offensive. When @LOCATION1 was finally free from @CAPS1 a main goal was to have our freedom of speech. This was a huge achievement for the @ORGANIZATION1. Allowing people to remove matieral from our shelves would be breaking the one rule we worked so hard to gain. People today rely on being able to speak their minds to be apart of their government. Another law that @CAPS2's appriecate is, freedom of the press. Being allowed to write how they feel is what @LOCATION1 is practically based on. With out this wouldn't we be back into the old ways that @CAPS3 fought to change? This is a question you must think about when making this important decision. Finally a huge impact on this decision is knowing that everyone has an opinion on something. It is easy to find someone that is offened by the smallest of things. What happens when someone decideds to find the @CAPS4 offensive to their religion? Do we take it off the shelve and tell the @CAPS5 sorry? If we decided to allow this would there even be books, movies, music, or even magazines for us? It is easy to assume just to take a book off the shelve because it's offensive to you, but what happens when we allow this to everyone? That is why when coming to a decision on how we should handle this, it is going to take much more thinking than a couple of days. We must remember though the rights we are given as @CAPS3; the freedom of speech and the freedom of the press, and we must always think about how this is going to effect our later generations." 3 4 3 3 3 3 +3509 2 "From the point of view of a student, books, music, movies, magazines, etc., should not be removed from shelves just because of the material it contains. I read, watch, and listen to things everyday that my parents my not be too thrilled about, but it hasn't changed the person I am today. You can't escape things like drugs, sex, and other explicit things that we might not want our children reading about. It's in society. These things are everywhere, and just taking these materials off the shelves are not going to solve the problem. I think that we have a freedom to read about, listen, or watch whatever we would like, and removing these things takes away our freedom. I think that inappropriate books, music, movies, magazines, and etc., should not be taken off the shelves. '@CAPS1' items are all over society. It's everywhere you look. Billboards, signs, books, magazine, music, television, movies, etc., but taking things like books, movies, music, and magazines off the shelves are not going to stop the inappropriate behavoir. Everyone in society is still going to act this way, whether you can stop your children from hearing about it or not. You still have commercials, billboards, etc. What are you going to do? Ban your children from life in general? No, I don't think so. Reading, listening, learning, about this stuff isn't going to make your child a horrible person. I personally think, at a certain age, they need to know about this stuff. For example, I'm a good student, I behave well outside of school, I have good friends, and I get along with my family. I also read every single one of @PERSON1 books. All of them are about people who do drugs, are suicidal, and do sexual related things. These books are extremely good. Definitely the best books I've ever read, but reading these books hasn't changed who I am. I don't do drugs, I'm not into sexual things, so why would it hurt if I read books about it? From my experience, reading these things are honestly kind of helpful. It takes you deeper into things. Everyone knows the basic learning you get in school, which is extremely @CAPS2. Reading these books, and listening to this kind of music, and watching these kinds of movies, takes a whole different point of view. Back to my experience with the @PERSON1 books, you read stories that are based off of her life and relationship with her daughter. Crank, @CAPS3, and @CAPS4 is a trilogy of books that show the life of @LOCATION1. You see the struggle, the hurt, and the pain the family goes through as @PERSON2 starts to walk with the monster, also known as @CAPS5. Reading these books makes me realize that I don't want to ever put myself through the things @PERSON2 does to herself, and her family. It gives a whole new look on things. After reading these, I believe I won't ever do 'offensive' things. From my experiences as a student, I don't believe taking offensive material off the shelves is necessary. It gives a deeper look into information about these things. Also, you can't escape explicit material. These things are a part of life, something you can't run and hide from. You just have to accept the fact that it's there, and it's not going away. If you think your children are going to start doing those kinds of things after reading them, talk to them about it. You can't protect your children from offensive material. At least not forever" 5 4 5 4 4 4 +3510 2 "I belive that thier should @CAPS3 be sesorship because we live in @LOCATION1,@CAPS1 belive in freedom and I do to, sensorship is @CAPS3 the way.my thoughts about people that find a book offensive slould @CAPS3 read the book if thay heard it was a bad book or thay dident like the way the cover looks thats thier problem dont ruin it for everyone els that likes the book.say if two people found a book offensive an five people liked the book dose that mean that it should be removed.What if you where one of thos five people and your favorite book was gone and you asked why and the librariean said 'well two people flaged the book for being offensive so it was removed '@CAPS2 @CAPS3 a book person but one time in school we read a book as a class called farenhite @NUM1 I thought it was a good book for its time, I head that some people wanted to ban the book and some people did.Two words for thos people @CAPS3 cool.I think if you walk into a librarie you sould expect to see alot of different ideas because thats freedom and the woulds @CAPS3 pefect.So what @CAPS2 saying is thay should come up with a new system for librareis if a majority of people flag book offensive and thay dont want their kids seeing it then thay sould seperate thos books,movies,magazines,ets., from erery thing els @CAPS3 remove them.A message to thos people -If you are one of thos people that finds a picifice book ofensive you should know where thay are and stay out of that side of the librareie.thats my thoughts and views on sesorship in libraries." 3 3 3 2 2 2 +3511 2 "Many of us have been at the library once in our life time, but have you ever had a day when you took your little kids to the library and they grab a book or a magazine and saw something that you were not very happy with? Well many of us have. Should the library have books, magazines, or even movies that are offensive to your kids, little borther/sisters, or friends? The public library should be for anyone and everyone to come and do what they have to do, not to see a nacket picture or something that can be offensive to you or your the little kids. Well we can do something about that. Having bad pictures in a book or magazine can be bad for the kids and even the young ones like us because many young teens can get bad censorship. The books, magazines and even movies that have offensive pictures or people with no clothes on should be removed from any public library shelves. A lot of the parents do not want there kids to go to the library and look at pictures that are really offensive. They also do not want them to be checking out movies that can give them bad influins. In the library there should be good and fun books, magazines, and movies. The people that work at the library should remove all the bad itams. Allowing to have all the nacket pictures and movies at the library will allow some teens to get bad ideas from it. This is why the libraries should remove all this books, movies, magazines, and even music! Many of the older people @MONTH1 think that it is not fair for them. Well they should know that it can harm there kids and it can also teach there young kids bad stuff. Some of the older people @MONTH1 think different and others they @MONTH1 think the same. Many of the parents do not want there kids to be seeing bad pictures or to check out bad movies or books. That's why removing these itams are good for many of the kids and young teens that are just learing how to have a boy/girlfriend" 3 3 3 3 3 3 +3512 2 "Libraries are public for a reason, and that is to interest people with different types of entertainment. I know some people have their opinions about things but that is why there are variaties because every single person is different. In my opinion no I do not think certian materials should be banned becuase they @MONTH1 have a more mature content than others think is appropiate. Disagree with me that is alright but, have you ever stopped to think about issues like this? Im going to list a few reasons with explainations on my opinion becuase I think they @MONTH1 point out a few good concepts on why I do not believe they should be banned. First, in the present society everybody has different views and opinions on things that should be discussed. The public has a right to entertain themself any way they would like to choose and with any material or subject matter they would like. Taking away their entertainment would be the same as telling them that they cannot wear the clothes they would like, or drive the car they want. If you were to walk into a library and see a subject that does not fit your standards or interest than you should simply walk away and find a more suitable subject matter for yourself. Some people look at things in a totally different way than you, @CAPS1 because you do not like different styles of entertainment does not mean somebody else dosen't. Second, You would be takng jobs away from many people who love what they do. People have an issue with some content of books, or movies, but that is sometimes based on what an author is feeling, or even what their life maybe like. Others they write about real life events things that happen to normal people everyday, that should be looked up upon to have people write their stories down for the whole world to see. Criticizing subjects of entertainment is downgrading different forms of art. Pretty much what people feel like is, its not ok to have a mature subject discussed about in a book but in a painting it is, very hipocritical. Lastly, If the material being pulished today was wanted off the shelfs of a library, than why would it even be printed and sold to people all over the world? It is because there are people who do like it and do not have a problem at all and like me is not bothered by it what so ever. In my opinion i do not think any form of entertianment should be banned or taken away from society in anyway, because than you would be taking peoples joy" 4 4 4 3 3 3 +3513 2 "In libraries, is censorship truly needed? I believe there should be some censorship to some extent. Libraries are usually pretty good at sorting things. I mean, they do use the @ORGANIZATION1 in every library I've been in. But even when they do sort the books, music, and magazines by topic, there's always something offensive that can fit in that topic as well. I remember as a child of seven or eight going to the library all the time with my mother. I realized I was getting too old for the 'kiddy book section,' so I ventured forth to places I've never been before. Any isle of books was open to anyone, I felt that I had the world in the palm of my hand. Most of the books were too mature of a read for me anyways, butt I still looked through them all. I mean, it was something very new to me; almost like an adventure. Then, I came across the music. There were so many inappropriate titles, cover-arts, and even names of bands. But this perked my curiosity. I remember thinking to myself, 'were books this way too?' I soon found out yes, they were. There were even doctor books with graphic images. The worst were books with cuss words that I found. Innocence in the library was gone. I think libraries should have a different section for older, more mature people; not including children. Some people loves books, and will open any book just to read or look at the pictures. Libraries need to realize that. I was once that little kid who opened the wrong book, at the wrong time. In conclusion, I think libraries should have at least some censorship. I understand that people enjoy the books and music that once terrored me, but I think there should be something done about it" 3 3 3 3 3 3 +3514 2 "The quote from the author Katherine Paterson is very true , I believe that if we were to remove everything in the world that we took offense to then there really wouldn't be anything left in the world to gaze upon. I remember when I was younger and I had just gotten off of school one evening and had decided to go downtown to our town's library , I needed a book for my school project on the holocaust and I remember one of the ladies working there telling me that the book should be removed from the shelves because it was offensive to jewish people. I had at first been a little bit outraged that she would tell the person checking out the book that it should be taken from the shelves mostly because since I'm the one going to read it why would you whine about it to me in the first place plus it's more offensive to tell the person that they shouldn't check out the book that they want to read then it is to the jewish. Another time something like this occured was when I was in @ORGANIZATION1 and one of the customers was complaining about some religious magizine that they shouldn't be aloud to sell because some of the articles were very offensive to people of certain religions. The customer who complained was taken straight up to the managers office because he actually ripped a couple of the magazines in half , talk about having issues , anyway the customer was kicked out to say the least and had to pay for the magazines they'd destroyed as well. There has been a lot of times in my life where someone has decided to speak out about their dislikes of something and although they put up a good argument they're lacking in a couple of important things , one of which is the fact that most of the things people complain that need to be taken from the shelves have something to do with history and another thing is there are not enough people complaining about it. But the quote by Katherine Paterson is like a knock at the door , it speaks of what could happen if we removed everything from our shelves that are offensive to others and when I read that quote the first thing that pops into my head is another quote , ' @CAPS1 speak louder than words '" 4 4 4 3 3 3 +3515 2 "My views on cencorship @MONTH1 not be what others believe. With a good understanding of what the majority of people would call innapropriate, evaluating what books should be placed on the shelfs is easier. Although many people @MONTH1 think that a certain book is appropriate, others @MONTH1 disagree. That's why creating a rating system would be best. With a rating system of books, movies, magazines, and other materials in a library, parents would have a better understanding of what they want their child to read or watch. If there is vulgar language inside of the book, it could be labeled with a rating and an explanation of why the book is rated the way it is. That way, if there are complaints of the item, the library would not be blamed. I personally don't think that getting rid of materials because of others' complaints should occur. I believe that the books could be kept, but labeled or even placed on a different section of shelves to reference that they @MONTH1 be more innapropriate than the normal. What happens when a college student needs a book that is mandatory for his class and the book is banned because of 'innapropriate usage'? There is no way of making everyone completely satisfied, but with this system a lot of issues would be resolved. My views on cencorship @MONTH1 not be what others believe, but taking away perfectly written books is not right. Disagreement isn't the easiest thing, but just because it's hard doesn't mean you have to give up. The rating system would decrease the complications and help others to be more free with their decisions" 3 4 3 4 4 4 +3516 2 "Books are gateways to other worlds. Today there are books on almost any topic anybody could dream of. People use books to forget their troubles and take a trip to somewhere outside of themselves. Now the content of some books are not always appropriate. Schools try to provide books that appeal to all audiences, but that ability is being impaired by books being banned from shelves. Students then can't read a book simply because someone else didn't appprove of the content. That is unfair and should be stopped. Students should have the right to make choose what they want to read, yet some people want to take that right away from students. Students, are also able to make choices on what's appropriate for them to read. If lawmakers give in to the complaints of a few people it could hinder a students rights and make students believe that they are not trusted. The content of what goes into a book is up to the author. The books someone decides to read is up to that particular reader. Sometimes authors go into extensive detail to get their point across or have a book with very mature content in them. Now some people think that because a book is inappropriate in their views then it shouldn't be avalivable to read at all. This is unfair not only to any potiental reader of that book, but also the author who worked hard to write that book. Students are smarter than many people give them credit for. They know what they should and shouldn't be reading, but if the choice of what they read is left up to other people they feel betrayed and untrusted. Students have as many rights as people who don't go to school. If books are being taken of shelves based on a few people opinions then their rights are being infringed upon by the people who deemed it inappropriate. Now the students freedom to choose what they want to read is gone, and all that remains is books choosen worthy by other people. Rights are something guarenteed to students as the enter school, buty now rights are slowly being taken away from students. The right to choose what book they read is one that should not be taken. As author Katherine Paterson said, 'If I have the right to remove a book from the shelf, that work that i abhor, then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' If one person says they think a book should be taken away, then another person wants another book taken away, until the point where no books are left then how will students ever get to read? Books are essential to a students growth into adulthood. If people gain the right to take books off shelves then music, movies, magazines will all get taken off shelves too. Books are for any reader that decides they want to go to that world. Students have the right to choose what books they read, as well as the ability to know what they should read. Books should remain where they belong, in schools on the shelves." 4 4 4 3 4 3 +3517 2 "Do you think there are certain books and magazines that should not be displayed in librarys? Well here's my perspective. I think that librarys shouldn't have certain books due to racism, violence, and etc. One, because there are young children that read books throughout the library, and two because books and magazines due to racism and ect. can be offensive to others. How would you feel about your children reading about stuff like that? That's something a child doesn't need to know at an early age. So that's my perspective on it" 2 2 2 4 2 4 +3518 2 "There are many materials in libraries that are offcensive to certain people. I don't think they should be taken off the shelves but I do believe they should be put into a different section in the library. Almost every thing in life offends someone in one way or another. It @MONTH1 be as little as 'blonde jokes' or as major as saying something about someone's sexuallity. I know little kids wouldnt understand those types of things but parents can't keep their kids hidden away forever. If someone says something about someone else, then I do believe it's wrong. I mean think about how many 'blonde jokes' there are. A lot of blondes I know, don't take those jokes seriously. One of my good friends is a natural blonde and she is probably the smartest blonde I have ever met. Whenever she hears a blonde joke she laughs and say something funny to go with it. Probably one of the most major things that people get offended by is politics or someones sexuallity. Politics create huge problems for people who don't think something should be one way and then if the governer turns around and says something and someone else will take it way to serious. Many people who have are different because they dont like who they are 'suppose' to like are always offended by someone in some shape or form. It's not like parents can keep us away from it forever. Little kids become teenagers, teenagers because young adults who eventually become adults. People should learn how to deal with different struggles in life. So in conclusion, if a parent doesn't want to expose their child to things they thing is offensive then good for them but other people like to learn about the things that people find offensive and that create problems in the @LOCATION1. I believe that by leaving the books, movies and magazines on the shelves in a seperate area of the library isn't a bad idea. Think about it, if you take books away from people who want to learn about the different things and want to know why people get offended, wouldn't they feel offended too because you took that away from them" 4 4 4 4 4 4 +3519 2 "Some books are offensive to some people. But eveyrone has the right to read any book they want. I believe we shouldnt censor books that are found offensive in schools. If people find offensive from the beggining, find another book to read or talk to the teacher. I have had my experience with books who are offensive to me. Everyone has a book they have read that does that to them. But that same book i have read might be interesting to other people. Whatever doesnt @CAPS1 you makes you stronger, right? So don't take a book in a hurtful way. Books are meant to be read and some authors direct the book to certain people. I had poeple come up to me from our own school saying the books they read were a horrible experience. Specially when all they talk about is suicide and one of my best friends has trouble with that because of her dad. I told her to talk to her teacher and he changed the book for her. Thats all you have to do and not make anything big about it. I also read the book, 'To @CAPS1 a @CAPS2', which is censored in some states because its hurtful to some people. The story is about a white family trying to help an @CAPS3-@CAPS4 man who was accused of raped when he never commited such thing. That was not acceptable at the time and with all the evidence in the world they still couldn't help him. Its a great story about what black poeple went through in earlier years. And to think they would censor a story about a white lawyer trying to help someone who isn't his own race is inspiring to me, not offensive. He got harrased and his children got harrased but he still fought with all he had to save his deffendant. I am a @NUM1 year old boy who when he read this book knowing who had a heart and who didnt made me cry my eyes out. It's sad to know this book is censored in some states when this is defenitely one of the best books i have ever read and also the only one that got to me. It would be a great experience for anybody to read this book so even if it is censored where you live, go buy it and read it anyway. I feel the state assumes they are gonna offend people. They might not even test it anyways. They might just say its gonna offend this kinda people and thats it. How do they cokme up with it? Do they let everybody read it once? No, and they should just leave it whoever doesn't read it doesnt have to or they can talk with their teacher. Its not so hard to decide to censor something when its only your opinion. Thats why i would look into the opinion of others. All in all censorship shouldn't be allowed. It ruins the oppurtonity for people to read books they might find good and interesting to them. Let the kids read atleast in highschool when they are all almost adults so they can read whatever they want" 4 4 4 3 3 3 +3520 2 "Censorship being as touchy a subject it is in my belief should be very rarely upheld, yes I believe there should be exceptions such as censoring materials in a childrens library or a childrens section of a bigger library, but to censor is to take ones freedom of speech, and expression away from them and is by my standards nothing more than unamerican. Censorship acceptions should definetley be held in certain circumstances such as on a children's television network or a school library. Growing up my parents have not set any regulations for me regarding censorship, ever since I can remember I have been able to watch, read, and listen to anything I have ever wanted so my opinion is obviously going to slide toward uncensorship right? Wrong, although I do believe that nothing should be censored from the general public except for in special cases, I believe that it is the parents choice and full responsibility regarding their childrens censorship needs. I myself when I am a parent are going to censor my children away from what I seem unfit for their age whatever it @MONTH1 be. The main reason that I am writing is to explain the moral issue that censorship is offering, yes the reason we consor is because we believe that the material is offensive or has ill moral, but these are the opinions and beliefs of the creators and being in a society that claims to be tolerant of one's beliefs we should respect the creator's beliefs even though it is not the belief of ourselves. To censor is to force an artist or in essence a creator to change they're very reflections of themselves, after all that is what a work of art is whether it be a painting, a musical piece, or a television show it shows a distinct look into the creators mind and beliefs to censor is to cut off or warp this communication between the audience and the creator thus violating the freedom of speech, and freedom of expression that our country holds so dear. I call this a touchy subject because when there is childrens welfare involved it is always a touchy subject, to prevent children from being exposed to what their parents seem inapropriate I believe that we should retain a censorship in such places as childrens library or childrens television networks, but as a country we are putting too much responsibility and reliability on the hope that the government will censor what we seem unfit when in reality it should be the job and choice of the parents to censor what their children are exposed to. to solve this growing debate I believe the solution lies in the question, 'should we censor material' well yes and no I generally think that for every book, song, or creation that some seem unfit for society should be released as censored and uncensored, this would open up oppurtunities for children to read more advanced literature, will not take away from the personel expression of the creators, and will not deny the public what they are looking for because a censored material is a loss for the creator as well as the audience who enjoy it" 4 3 4 4 2 4 +3521 2 "If materials are offensive they should not be displayed. Offensive materials can have big effects on children younger than at least ten years of age. I believe that if materials at a library are found offensive and proved to be offensive, then they should be removed. Materials at libraries are not for everyone. A lot of it is especially not for young children. For example: @CAPS1 could be a young child wanting to check-out a movie that looks interesting to him/her. The movie could be rated @NUM1 but the parents still check it out for them. Once they watch the movie, it @MONTH1 have some heavy language, sex-related humor or content. Then the child is learning and seeing all of this hapening in a motion picture. Also if they have nervous parents, the library could get some calls. Today, a lot of younger children about @NUM2+ have seen, watched, or read something that had profanity in it or inapropriate conduct in it. People have read some of the material that the library has and spotted some profanity not knowing it was in @CAPS1. If a religious man/woman checked out a book or a magazine from the library and spotted the profanity they put in a lot of these books and magazines, it would absolutely bother them. If they won't take them off of the shelves, the least they can do is keep a list of all of the materials that have heavy profanity, sex, and strong violence in them. They should do that so they can warn the person who is checking out the material. With all of the nasty things that are seen in books, movies, magazines, etc., people need to be alerted to what they read and watch. Some of the books can get pretty nasty and terrible with all of the things they say. Library materials must be checked. If they are found offensive, and proved offensive, they should be moved." 4 4 4 4 4 4 +3522 2 "People have different opinions what one @MONTH1 find extremely offensive another @MONTH1 not care or even laugh at it. In this next paragraph I will explain the reasons why censorship should not be allowed in libraries. One of the first things is our freedom of speech. If we really have that freedom the censorship violates it completely. Some people are offensive but you must remember they are entitled to their opinion. They have a right to speak for what they belive in. Whether it be magazines, books, newspapers, movies, or music. The author or artist @MONTH1 use those to spread his/her ideas and beliefs. Another reason is people's opinions. Does one person really speak for an entire gender,country, culture, race, religion? Whether he/she is the lowest of the low or a person of great power, someone @MONTH1 believe different and miss out on something maybe they would have been inspired by or learned from. It is not right to deprive communication through these things. A man @MONTH1 find a book offensive to him or his family but another man just like him @MONTH1 find the book funny and joke about it. People think differently from each other. Personal experiences are also have a place. Maybe a near death experience causes someone to write a book. Maybe a bad break up causes someone to make a song. These help inspire people. No person can tell them it's wrong just because they thinks it's offensive or wrong. All this things factor in. No one person or group of people have a right to take away our freedom. I am against censorship in libraries and I hope you are too." 3 3 3 3 3 3 +3523 2 "Does it ever come to mind when your child says they're going to the library to study, but in reality they could be going there to find books about murder, violence, or possibly helpful information. @DATE1 when searching through the library you never know what @CAPS3 will find on the shelves. Most of the topics of books, music, movies, or magazines are helpful. But there's always that one @CAPS2 that you don't want your child finding, or that one movie you just hope your child isn't watching! I strongly believe that the the types of topics like violence and murder should be taken off of the library shelves. When going to the library parents should be able to trust that their child is actually going there to study, not to look up bad books, movies, or magazines. Too many books and movies are showing that relying on violence is a good thing. For example when children are searching for a good book they aren't looking for something boring, they're looking for something that catches their eye. Most of these books resulting to violence. The more kids read about this, the more they think violence is okay. Also magazines like '@CAPS1 @CAPS2' or '@CAPS3 @CAPS2' are now showing stories of drugs use, teen pregnancy, or death of famous @CAPS3. @DATE1 our world has been increasing in the drug use of teens and adults, also the pregnancy rate of teens has went up dramatically in the past few years. These two things are not okay. I personally believe the reason these two topics have went up is because kids are thinking it's fine since they're reading about it in the new magazines, or seeing it on a tv, or reading about it in a book. Kids or teens are believing it's easy to have a child at such a young age, or using drugs is cool because all the hot famous @CAPS3 are using them, which is shown in the magazines and books. But what kids aren't understanding is that it's really not as easy or fun as the movies, books and magazines are making it sound. What happened to the library's that had information that was actually helpful in school? I understand that @CAPS3 are wanting to read about famous @CAPS3 and what's new with them. But when all of these types of books, magazines, and movies are put into our libraries it is limiting the amount of actual helpful information kids need for school or adults are needing for work. When I was younger, I would go to the library and I either went thier to study or to check out a good book. Not a book about violence, murder, or teen precnancy. Kids need to be able to rely on the libraries for a good book or information that will help them in school, not on topics that don't relate to school at all. As author, Katherine Paterson said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf'. I believe she is correct, these types of books, magazines, and movies that we don't want our kids finding need to be removed from the shelves of our libraries @DATE1" 4 4 4 4 4 4 +3524 2 "Who is to label a book offensive? What one might find appauling, others @MONTH1 find a novel or passage to be rather interesting. All books and other arts were created to be read and enjoyed by people. Libraries banning books, music, movies, or magazines seems unreasonable since there is such a wide variety of people and their interests. Books such as The @CAPS1, The @CAPS2's @CAPS3, and @CAPS4 @CAPS5 have been removed from many library shelves. Though people @MONTH1 check these books out, many others find them either offensive or think they should not mix with every day books. I have read a decent amount of each of the above readings, and have found the books to be full of remarkable things which have taught me a lot. If books are banned from libraries, it almost seems as if they're limiting our education. Why would a book be published, or written for that matter, if we were not intended to read it? Any book could be offensive to any one person. Any article, song, or film could be offensive. But, there will always be a crowd it appeals to. And that crowd deserves to enjoy every last word. Censorship in libraries has gone on too long, it is time for the world to freely take part in the literature that interests them. The solution to library censorship is the division of books into categories and sub-categories. First by subject, down to the author. Therefore, books that @MONTH1 be offensive are listed as such, but are still available to those who want to read them. Censorship in libraries takes away from individual freedom every day. People should be able to read what they enjoy and not be ridiculed for it. All books are written to be read, and with the division of such books, everyone can agree upon this: books help us grow. Growth is not meant to be limited, nor is freedom." 4 4 4 4 4 4 +3525 2 "People have a choice on the types of literature they want to read wether it offends them or not the chose to read it. Books should not be removed from the shelves of libraries.They need to try to avoid the books that @MONTH1 be offensive to them. Now if they cant then thats not the libraries fault. Books should not be removed for many reasons. One of the many reasons books should not be removed is because they know the risk they take when entering a library, and that's their decision that they are making and sometimes decisions have consequences. When and if they are offended, they will know the types of books that offened them so they would just have to do a little better job of avoiding those books. Another reason would be the libraries dont know what offends people it can be one little thing in a book but that doesn't mean that book should be removed from the shelfs. Also just cause one person tihnks its offensive doesn't mean that others will. People arn't all offended by the same thing some people are offended by little things, meaning they're offended easily, some arn't offended so easy, that means it make take more serious things than a book to offend a person. Another reason books shouldnt be removed is because students need them for projects and school assignments. Some school assignments require you getting a little offended exspecially if your african american and you get an assignment on slavery or something during that time. But we need to learn about past experiences and our history and we couldnt do that if some people are trying to remove some of those books from the shelf. You @MONTH1 get offended but there is no reason to remove that book that others will need at sometime.Find another way to solve that problem. There are other ways to solve problems like these such as tagging the books with a yellow small sticker so it would warn people that the book offended someone. There is no need to completly remove the book. Another solution would be to maybe seperate the books, meaning put the books in a diffrent location of the library if the get more than a couple complaints of being offensive. Also when someone check out a book the librarian can warn them that the book has been tagged with a yellow sticker and its possible that it @MONTH1 offend them. Thats why removing books from shelves arn't cause for." 3 3 3 3 3 3 +3526 2 "Do you think that certain books, music, magazines are sometimes found very offensive? If I had kids I wouldnt want my kids to be around any of these bad things. I think that we should remove all of these bad things from the world to help the kids and childern become better people in the world. There are a lot of bad people in the world but it is mostly because of all the things that people read and see. When people like great singers sing about drugs and other stuff kids think that it is cool to do drugs so they start to do them and then they cant stop! You want everyone to go to college and be doctors but they cant if they follow things that everyone else does. We need to encourage our children to be great people but we cant with drugs and volience that goes on around them, but we can try to banned the bad books, movies, and music. We need more good things to influence our children. We dont want our chilren to look at magazines and see women that are really tiny and they think that they have to look like that to be popular. If your children what to read and listen to these things then you cant let it influence them. I listen to rap music all the time but i never let it influence me because i want to be successful in my life. These are all the reasons why be should banned these things from our children. If you want your children to be successful then you will keep your kids away from the volience and drugs. I know what kind of things happen when you dont keep them away. You dont want these things to happen to your kid so keep them away from it." 3 3 3 3 3 3 +3527 2 "There are plenty of books that people don't want their children reading. Books such as '@CAPS1 @CAPS2 @PERSON1' is a book I had read and it was very out there and straight forward. But I would have to disagree I think those books deserve to be read. It shows kids that not everything is perfect. People complain about how they think books are bad or things people say on @CAPS3 or in music is bad but if you don't want to listen to them, don't let your kids listen to it. If parents are so worried about what kids are reading or learning because of the world we live in now, lock them up. But I do have to agree with one thing, there are alot of bad things in muic and magazines but I think it can be avoided and not be caused to crupt a kid. I'm very into music and some music I dont listen to because of the things in it but I dont let that music or magazines change my option on things. I dont think people should be able to take books of the shelfs becaue it doesnt give other students or people to read them. Some people get inspired by books about drugs, not like to use them but to know that there are people out there that have overcome stitutions just like them. I like reading books about teenage problems and like to know all the different ways people have overcome them and see how they live. If people can get offended off of a book or movie I don't think they have a right to take that away. I think people that feel offended by books, magazines, and movies should stay away from them if they are offensive to them, because everyone has an option and not everyone thinks the same things. With all the bad or good movies or books out there, I'm certain someone at least feels offended by one or two books or movies but that isn't a reason to want to take it down. Because once you do that someone will take a book you thought wasn't offensive and it will make you mad. I think if people stayed away from things that offended them and stayed close to books that they liked we wouldn't have much of a conflict unless you get that picky, always wanting to start a fight person to find something else to be picky about with the books or magazines or movies" 4 4 4 3 3 3 +3528 2 "Do you think having inappropriate or offensive books, magazines, movies or music should be found in a public library? Some books could be very offensive to people and when they take their children or younger siblings to the library, they don't want them looking at that. Others prefer looking at it which would anger them if they were taken away. Not all parents find some of the things in libraries offensive, even if they @MONTH1 be. Having music, magazines, movies or books that aren't appropriate for children should just be put into a different section, not taken away from those who enjoy it. Even though having children look at something they shouldn't could be bad, it's also bad and unfair to those who only come to the library to view those things. It shouldn't be taken away from them. If parents don't want their children seeing those things, the shouldn't take them to that section. Some adults don't enjoy seeing it, which can be understandable. No matter what, someone wouldn't be very happy about the decision. In libraries, there is usually an adult section and kids section. If an adult doesn't want their child seeing something, they could simply take them to children's section where it won't be seen. In the children's section it's hard to find things that would be considered 'offensive' to adults. For the adults or teenagers who enjoy viewing these things, they could be in a section far away from the children. Taking things that people like away from someone is wrong and it would be mean to take that away from those who enjoy it. Recently, the world has been turning into something it shouldn't. Some of the most disgusting and cruel things happen every day and you could probably find this news in a library. It's understandable if you wouldn't want your child around that, but I it's wrong to take away those things from the people that love that stuff. For example, scary movies could be very disturbing and too violent for a young child but they could be an adults favorite thing to watch. Thats why, if you put the more offensive things in a different section, the kids wouldn't notice it was even there. If children were put into a different section, they wouldn't even notice the offensive things adults find. Taking away the things some adults @MONTH1 find offensive is like taking away the children's section, unfair. It wouldn't be fair to take away something that some adults or teenagers only come to the library for. Not all adults would understand both sides but I can see where both sides are coming from. If I had children I wouldn't want them seeinig things that are offensive, but I would keep them away from it instead of promoting against it. Having music, magazines movies or books that aren't appropriate for children should just be put into a different section, not taken away from those who enjoy it" 4 4 4 4 4 4 +3529 2 "There are millions of books and other media in libraries all across the world. Millions of people read and listen to those materials every day. Some people @MONTH1 like certain books or media and dislike others. Many people dislike certain materials because of their content. Everyone has the right to read and watch what they want and not everyone will read or watch the same materials. Although some materials @MONTH1 be offensive, they should not be removed from the libraries. Books and other media should not be removed from library shelves because what some people find offensive does not offend other people. Everyone has a right to their own beliefs and opinions. If someone wants to read a book or watch a video, they should be able to. What is offensive and what is not is a personal choice and it all depends on that person's point of view. If someone thinks the content in a book, song, or movie is offensive, then they should not read or listen to it. Materials should not be removed from libraries because they can be used to learn history and other things that people should know about. Take, for example, the @CAPS1. There are thousands of books on the @CAPS1 and many movies as well. These materials should not be removed from library shelves because even though some people find them offensive, they can be used to teach people how horrible it was so that it does not happen again. People should inform themselves about something before they view it so that they are not offended by the content inside. Some content in history is very mature and should only be viewed by mature audiences. The offensive content should not be removed from libraries because it is usually in a mature section and it has a right to be there. Most content that some people find offensive is for adult audiences. There are not children's books that talk about things that parents would find offensive to their children. The content has a right to be there. If the author or publisher took the the time to create the work, then they should recieve credit for making it. In the @LOCATION1, there is freedom of speech and people should be able to say what they want to say. If the content is too offensive then it should be removed but only under special circumstances. The content in libraries, offensive or not, should not be removed. People can read or watch whatever they want. Many people have many different opinions on what should and should not be in libraries. The libraries are public and they are shared. No one person has the right to dictate what should and should not be in libraries. If it was not for libraries, the people in society would not be as smart as they are" 4 4 4 4 4 4 +3530 2 "Have you ever wondered why a movie you rented from a library when you were younger, isn't there today? This is due to censorship. Libraries censor certain books if they believe them to be inappropriate for young children. Should censorship be allowed in libraries? Everyone has their own opinion, as do I, and I believe it should be allowed. Censoring books allows libraries to withhold books, movies, magazines, music, and more from children who are not quite mature enough to handle the contents within the material, rather it be curse words in a movie, book, or music, nudity shown in magazines, or fighting shown in a video game. Young children look for role models, someone to follow, therefore, more than likely they are going to repeat what they hear or see. Some children are not quite mature enough to understand that it's not alway 'okay' to repeat what you hear, some words are inapporopriate for young children. Maybe they saw that on a movie, a man or woman solved a problem he or she had by fighting, the young child @MONTH1 take the message the wrong way, and try and solve one of his or her problem by fighting. I believe that an age limit should be set for certain types of materials. Children that are under the age of @NUM1 should not be watching movies that are rated @CAPS1-@NUM1. There is a reason the rating is what it is. Just because your child is not allowed to rent/check out whatever the material @MONTH1 be, doesn't mean that you couldn't check it out, maybe go home and watch/listen/read/play it. If it doesn't seem to violent/graphic for your child then allow them to watch the movie, read the book, or play the game. That is your choice, but a library doesn't want to be blamed for your @NUM3 year old coming home cursing and fighting. My sister took my neice to the library once to rent a movie, it was a childrens movie, and my sister thought nothing harmful would come about it, but in one of the scenes, there was some arguing and fighting, and my neice began arguing with my sister, and hitting her, and my sister wasn't very pleased that they allowed that movie to be on the childrens floor of the library. Censorship is a wonderful thing to have in libraries. Maturity level for some children is just not quite high enough for them to see/watch/listen/play certain materials. Not only should censorship be allowed, it should be enforced. I believe all libraries should have to have censorship in their library" 4 4 4 4 3 4 +3531 2 "One @MONTH1 walk into a library, look over at a magzine rack and think, '@CAPS1 is that in the young adult section, the content of that book is not age appropriate?' In many libraries, some books are not censored and catagorized the way they should. In some of the reading material, one might not even realize that some inappropriate things are in it. Supervision of children and young adults are not always looked upon, and some of these people might not even know what they are checking out. Censorship needs to be pushed more in libraries. In most libraries, the catagories for books are children, young adult, adult books by genere, magazines, and music, but what needs looked upon is what is on the inside covers of those books. Some magazine articles are not appropriate for some teens, even if it does claim to be age appropriate. I remember when I was fourteen, I read a series that was related to colors off the color weel. Each one covered a different topic such as suicide, alcholism, drugs, sex, same sex dating, and jealousy. Looking back on it, I am surprised I was allowed to check them out at the library. A fourteen year old didn't need to read books on such heavy topics.Also, language in books and music maybe unappropriate for children, and @MONTH1 be distasteful and disrespectful for some adults. The catagories need to be catogorized even more, so people further know what they are getting into when checking out a book or magazine. When a child goes up to check out a book they found, a librarian sometimes doesn't even pay attention to the book they are getting, they simply check it out. Libraries should have a rating system like movies do. Generally people would not let their ten-year-old go to a movie rated @NUM1, @CAPS2 or that is unrated, so @CAPS1 would they let their child get a book holding the same content? If books had a rating system, that ten-year- old would not get their hands on a book rated '@CAPS2' or '@CAPS4' for mature. In libraries there is not as much supervision as their needs to be. I am aware that libraries are not day-care center and the librarians are not babysitters, but there also needs to be stricter guidelines, because some people are not fully aware of what their children or what they, themselves, are reading. For example, a thirteen-year-old girl wants to check out @CAPS5 magazine, because her best friend's older sister gets it. The girl's mother allows it because it probably won't be too bad and she assumes her daughter wants to look at the pictures of new clothes and trends. What the mother @MONTH1 not realize is in the middle of the magazine contains an article about sex and protection, and that @MONTH1 open a whole new world for the little girl. Even though the mother shouldn't have had let her daughter check out the magazine, if the guidelines were stricter at the library the girl might have never have read that article. Even if librarians had to check or scan a person's library card to make sure they can be in the section or be reading a certain book, it would be protecting many more people then it would be hurting. If libraries censored books better, then children and teens @MONTH1 not be reading things not age appropriate to them. I'@CAPS4 not saying that books should be removed off the shelf, just maybe put up higher, and be watched over more carefully" 4 3 4 4 4 4 +3532 2 "This essay is to describe my opinion on if certain materials that can be offensive, should be removed from shelves in libraries. I think that overall, anything taken as offensive to anybody should be taken out of libraries. I think that if they are very offensive, then they should be taken out; but if they are just mildly offensive, then i think they should stay. Because the library welcomes people of all ages, materials that can be taken offensive for children are most of the time not taken as offensive to adults. But since children go in there and can have access to anything in there, they can end up finding something that can be offensive. If a child finds something that their parents can be taken as offensive, then the library could possibly get sued and that would not be good. So if they just take any books, music, magazines, or movies that are not suitable for people of all ages, they can cut the risk of being sued. Libraries are meant to provide information anyways. They have no need for things that are offensive, because rarely something that is offensive, provides information. Libraries should just contain what they were made for: encyclopedias, dictionaries, books, and other books that can provide useful information to people. In conclusion I would say that materials that can be offensive to anyone of any age, should be taken out of libraries. Libraries are meant to provide information to people so I think thats all that they should have" 3 3 3 3 3 3 +3533 2 "Should books, music, movies, and magazines that are offensive to public be removed? No, I strongly disagree. Should books that @MONTH1 be offensive to others no because there are hundreds and thousands of different books and even more. All books have different themes and subjects and all readers have different opinions on them. For example say there is a book about abortions and you want to know more about this subject so you deside to check it out. In the line behind you is a women who tells you not to purchase this book because she disagrees with killing a baby and tells the owner to cancel this book for that reason. No this would not happen just because someone hates or dislikes something it could very well be something someone loves and enjoys. Here are some reasons why you would agree to removing somethings off the shelves like sex. Things such as sex @MONTH1 offend people because you @MONTH1 beileve it promotes sex to young teenagers or young kids but thats not the case. Most books on sex teaches you the right and wrong things to do and how to stay self. People need to understand that @PERCENT1 of teens world wide are sexually active and books that @MONTH1 help you to protect yourself and others. In conclusion there are many people that @MONTH1 or @MONTH1 not like the books or other things that they find offensive but every one has there opinion. You cant take things away just because of one person that would not be far to a individual with a problem that is seeking help or information on there personal problem. For these reasons I disagree with taking away items that @MONTH1 be offensive to others because everyone is different in this world and that should not change because of a disagreement or opinion someone has on you." 4 3 4 4 3 4 +3534 2 "No, I don't think that books or any other material should be taken off shelves in libraries just because some people might find them offensive. I think that if a parent sees something that they do not want their child reading, then it is in their right to not allow that child read it, but it is unfair to take it off the shelf entirely. That book that has been marked 'offensive' could have been a way for another person to learn about that book and possibly gain something out of it. There are some non-fiction books out there that can marked as 'offensive', and they are just that non-fiction. It is something that really happen and anyone can learn something from it by reading it, and to take it away would be taking away the knowledge that another person could have obtained. I believe that in a library people should have a choice to read what they choose and not have it ripped off the shelf just because parents don't want their child reading it. I think that if they do not want their child to read it, then the parents can tell that child that they don't want them reading that and then everybody wins. I know that I have read some non-fiction books that would be marked by some people as offensive, but with that book I also learned much about the topic at hand. To take away that book would be showing that you care only about how it might be offensive to some people and not how it could help extend the knowledge of another. If we are to take away every book that might have a racial slur here or an act of violence there, what would we have left our children to read and to learn from. They read these books and they can find out how that racial slur or act of violence as hurt someone emotionaly and physicaly, and that they should never do it in fear of the concicence that they might have to face later on. Overall, I think that the books and other material in libraries should be kept on the shelves, and if someone finds it offensive or anything else they shouldn't read it and not deprive someone of that knowledge. We live in a world today where education is everything, and we think that everyone should have an education. But if we take away every book that a person does not like then what do we have left to learn from." 3 4 3 4 4 4 +3535 2 "Censorship in libraries is an inportant thing in schools and in the public. It is inportant beause some of movies, books, and magizines have a bigger influince on the kids then most people think. Like some of the really gory movies the are always people in the movie gettin cut up or shoot. Do you really think that some kids dont think about hat stuff. Somtimes the kids can get it in there head that they can do what they see or read. Like in the movie @LOCATION1 @CAPS1 they are beating up and killing people just because they are colored. And some kids @MONTH1 think that that is ok. And they can go down to there librarie and just get it off the shelf and check it out and go home and watch it. Now if you r using it as a thing to teach kid that it was the way things use to be and that it is wrong then that is ok. You can teach your kids all you want just make sure that it is the wright thing. And some magazines that are in the schools or in the public librarie are just not the kind of thing that kids should not be looking at. Like the gun magazines or the hunting magazines the just show that it is ok to carie a gun were ever they go. And the hunting magazines just show that you can go out and shoot stuff. And some kids @MONTH1 be confused that you need a lisense to do all of that. You have to at least put and age limmiet of some stuff. Go's the sameway with some of the books they always start out good and then the just turn into a big mess of gor and vileance. Like the spere it started out with a group of people going under water to explore a ship. And they find a big shpere and they go in it and get these powers and they imagin it and it comes true. Well when a kid reads that they @MONTH1 think that they can do that and they start imaging that they can eather hurt or really do some damage to someone. And then when they find out that it wont work they @MONTH1 do it to them themselves. So it just come to show that you should censor some of the stuff that you have in your libraries and if you can take them out then at least put and age limite on them" 3 3 3 3 3 3 +3536 2 "Do I think offensive materials should be removed from libraries? No, I think that if a person is offended by it then they should not get it. They should ignore it and find something else of interest to them. If the person complains about a book, music,movies or anything then they should not go to the library. I think if people get offended over a book or something like that and complain, they shouldn't be aloud in the library. When I was in seventh grade we took a field trip to the city library. I thought it was fun because it looked awsome inside. I was walking around searching for a book about animals because all the seventh graders had to research an animal. When I was looking, I saw a guy yelling at one of the librarians. He was a guy of color and he was complaining because he read a book about slaves. He was offended by it cause his grandfather was a slave. I read the book and I thought there was nothing offeensive about it because it told about the slaves having to do hard work, then eventually they got free. My opinion is that offensive materials should not be removed from libraries. People that do not think they are offensive will read them. If a person thinks that a book is offensive then they should just walk away and find a different book. That's why I think offensive materials should not be removed from libraries." 3 3 3 4 3 4 +3537 2 "Censorship in Libraries Author Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' @CAPS1 are many books, magazines, and movies out @CAPS1 that contain content not necessarily appropriate for young children. Part of a parent's job is to ensure their children are safe and looking at materials appropriate for their age level. However, this does not mean taking materials off of library shelves for everyone. Censorship in libraries rids people of their freedom to choose. Also, content that is inappropriate for children @MONTH1 be fine for adults to read. It is the responsibility of the parent to censor what their child takes off the shelf. All people of @LOCATION2 have certain rights allowing them to express themselves and to be free. People have the freedom to choose, whether it is books, magazines, movies, or music. Everyone is different and this causes the interests of each person to be different, also. Libraries offer a variety of materials and this allows people to choose what they want based on their interests. Censoring the content on the shelves of libraries @MONTH1 be a good idea for children, however adults have the right to choose what they want to take from the shelf. Would you like to have a portion of your freedom taken away? Censorship would greatly lower the freedom of everyone and their individuality. Furthermore, censoring what is on the shelves of libraries limits the range of materials that are available to patrons. @CAPS1 is content out @CAPS1 that children should not see; however adults have the right to choose what they want to read and come in contact with. Although certain materials are not meant for children to see, adults @MONTH1 find it enjoyable and interesting. Libraries offer a large range of materials and this allows people to express themselves and find entertainment. @CAPS1 are many different types of books and music out @CAPS1 and censoring these would greatly limit the variety. In addition, parents have the responsibility to watch over their children. They choose what @CAPS1 child wears, where they live, and where they attend school. It is no different when it comes to books, movies, and music. Each parent has a different style of parenting and they choose what works best for their child. If one parent finds something to be offensive or inappropriate, they shelter their children from it. However, another parent @MONTH1 not have a problem with it. The content children choose from library shelves should be at the discretion of the parent. Afterall, you cannot shelter children from everything. Censorship in libraries results in more problems than solutions. It rids patrons of their right to choose and their freedom. Censoring materials also greatly limits the variety of content available for people to choose from. It is not the responsibility of the law to choose what children can and cannot read, but rather the parent's job to watch over what they take off the shelf. As citizens of the @LOCATION1, we have rights and freedom allowing us to act as indivuals. Censoring the materials on library shelves results in very little materials left. As Katherine Paterson said, 'And then we have no books life on the shelf for any of us." 4 4 4 4 4 4 +3538 2 "Censorship Censorship is it needed in todays societey? Where things that were considerd bad @NUM1 even @NUM2 years ago are ok today to be veiwed read listened to and so on. Is it a needed process or should libraries have free will to stock there shelves with what ever they seem fit to be there.Is it still a good process to use or is it a outdated uneeded resource that is now no longer needed. Everybody in todays soicitey says to read, but libraries @MONTH1 not have the type of litature that your are in to, so why would you want to read somthing that you do not like because the library dos not have the book that you wanted to to see i. I believe that censorshop in libraries should be their to remove any book the find offenseive or immoral from there libary. I do not belive they should remove books becasue of bad language, or somthing about god. I think that books or magazines or movies with '@CAPS1' content should be removed from libraries if they see it fit. Libraries should only feature books tht they want to have not ones that are popular but considerd 'bad' by the library. They should only have books they want to have. I do believe that their should be censorship in libarys. I just do not belive that it should be a harsh system. I think that they should set standards on what they want to have and following those standards on books they buy. I do think however that some libraries will set their standards to low or high that they wille ether have many books that are considerd 'bad', or no books at all. It is a very fine line when it comes to materials that the library has to be considerd good or bad. I think libraies should havea set of standards nation wide to set what type of material is good for libraries. I believe that censorship is still a needed, and helpful process. I just think that it is to much of a opionated process. not enough facts or opions of the poeple. I think that is should remain in use for society i just belived it should be more under control then it is today." 3 2 3 3 2 3 +3539 2 "Author Katherine Paterson proclaims, 'All of us can think of a book that we hope none of our children have taken off the shelf. But if I have the right to remove that book from the shelf - that work i abhor - then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' A controversial issue in today's society are people's conflicting views on censorship in libraries. Many types of books, magazines, music, movies, and much more have been banned from being put on the shelves of libraries because of their content. From personal experience, observations, and reading of the issue censorship should not be allowed in libraries. The shelves of libraries will soon be empty if censorship continues. Certain readings, and types of entertainment have already begun to disappear one by one. It is understandable if one person does not agree with the material being placed into these books, but why should they ruin the entertainment for everyone else? From my own experience, people in my elementary school were not able to enjoy reading a popular series of books at that time period. Since I went to a @CAPS1 school, the priest at the corresponding church during that time decided he did not agree with the content in this certain series of books. As a result, he took charge and made the staff of the school remove those books from our school library, and no student was allowed to come to school with one of those types of books. If it had been up to him, he would have decided to go ahead and take out all those books from everywhere in the world. Just because one individual does not agree on the content of that book, they should not be able to have the power to banish the lovely leisure for the rest of the population. Authors and artists of books, movies, and music have the freedom to put into them whatever they choose. It should not be up to their audience to decide whether or not it is appropriate. The concept is quite simple; if the reader or viewer does not think they would agree with the work, then they should not spend their time to read or view the pieces at hand. Just because they might not completely think what the content entails is necessarily appropriate, someone else might enjoy it. Censorship is wrong for this very reason. The creators of their work are most likely proud of what they have accomplished and would like their audience to enjoy it to. The audience they are trying to appeal to @MONTH1 not have the same taste in style as someone who the work was not necessarily meant to have their own opinion on the matter. Books should not be able to be taken out of libraries because what one person might think is not appropriate to be placed into public, another person @MONTH1 enjoy thouroughly. Likewise, if the content of a work of literature does not appeal to an individual then it should just simply not be read by that person. As humans, there is the freedom of choice as to what people would like to read, and what they would not like to indulge in. So make the correct choice in deciding what you want to read, and do not ruin the enjoyment for many others. In a great deal of different types of literature censorship is touched on by the authors. For example, in the popular prize-winning novel, @CAPS2 @NUM1, books are burned, or 'censored' because they contain information people should not be aware of in that period of time. However, in today's world books are a major type of entertainment and are important in the knowledge of everyone. Books provide so much information on almost every subject known to human-kind that it would be such a dramatic loss if now books were burned if caught reading one. Paterson does point out that everyone has a right to their own opinion of this matter, but if people do not take the right approach to solving this situation, there will be no books left on library shelves for several generations after to enjoy for themselves. Every individual has their own right to be able to read books and absorb all the wonders and knowledge they contain. As a result of the growing awareness of censorship in today's libraries, people @MONTH1 never be able to enjoy certain types of books, movies, music, and magazines. From my own past experiences on this situation I know how wrong it is to take away someone's own privelage to enjoy types of literature. People should not have a say whether something is appropriate or not to be taken out of libraries. If the individual does not simply agree with the specific content of the work then they need to accept it and move on instead of causing millions of others to not enjoy it. Also, from different types of reading, censorship has definitely become a serious issue, but it should be abolished. Keep the books that are on library shelves now for many generations to come and enjoy for themselves" 4 4 4 4 4 4 +3540 2 "Censorship is a law and it is commonly broken. You cannot censor any books, movies, music, or magazines. The law of censorship is usually broken in libraries. I feel that censorship affects the writers and school system. In the US people have the right to expressed their beliefs and feelings on any type of topic that is brought up. Many libraries are taking away the right of that by not allowing certain books to not be read in classes or not allowing the students to watch certain types of movies. I think that this would offend the person whom wrote the book or the writter of the script for a movie. If they librarian doesn't want a certain type of book in her library then she shouldn't have that job or she shouldn't have books at all. Just because she doesn't like the genre of books doesn't mean that somebody else who comes in won't want to read it. If a teacher doesn't want her class to see a movie because it's something that she doesn't like then she shouldn't even show movies at all in her class. In school we aren't allowed to read about certain topics in the library, because the school system feels that it is bad for us to know about. If we want to learn about something we should be able to. Maybe we don't want to learn about something the teacher is teaching us about. Do we take away everything the teacher used to learn about that topic? Do we take the teacher out of the classroom? No. We show respect and we read what they want us to read about and we listen to what they have to say about the topic. It's respect, we learnt that in kindergarden. I think that they should show us respect to and let us read and watch movies about the genres of books and movies they take away from us. Censorship is illegal where we live. But why isn't it taken seriously by the government? I think that they need to realize that what they are allowing is discrimonation to the writer. We get in trouble if we virbally discrimonate somebody. So why are they not doing anything about the physical discrimonation? We should be able to have higher knowledge on a topic we feel the need to learn about. I think this law should actually be enforced instead of ignored. It isn't fair to us or the writter." 3 3 3 3 3 3 +3541 2 "Do you think that books that have vulgar things in them should be on libaries shelfs? We all know that there are books out there are parents hope we never get a hold of. In this time try and find a good action movie without cuss words in it. It is nearly immposible to do that. Just because books have vulgar language, blood and gour, and sexual things, doesn't mean they should be pulled off the shelf. Have you seen the banned book list lately? I have and some of those books on there are ridciolus. Here are a few @PERSON2, @PERSON1, @CAPS1 @CAPS2, and @CAPS3 @PERSON2's @CAPS4. I could go on and on, the list is a mile long. Some of these books have historical meanings behind them. There is also morals behind them. I think that books should not be pulled from the self because they have a few bad words in them. It's not liuke we have never heard them words. In @CAPS3 @PERSON2's @CAPS4 they have banned it from schyools because of the use of the word 'nigger'. This is not a nice word in our day and time. Back when we had slaves that is what they were called. It is points and views from an anti-slavery author. In @CAPS7 @CAPS8 it is banned because of animals talking. Come on really they have animals in movies that talk all the time. I belive that if kids don't no that animals cant really talk we might have problems. Do you find the show @PERSON3 the @CAPS9 offensive? Well it has been banned because @CAPS10 is racit against @CAPS11. I would like to no how some of these people come up with this at. Whoever picks up this offensive matrial has a choice wheater or not they read it. It should be on the shelf even if it is offensive. I belive that it is totally up to you, if you read it. Just like if you go to a mvie store they have the movies rated. You dont want to watch rated @CAPS12 movies then dont rent it. They could use the same method with books. Do you still think offensive books should be pulled from shelfs? If you say yes, I would like to no why. It is your choice to read it. There are already all these other banned books out there why ban any more. Just because books have vulgar lanuage, blood and gour, and sexual things, doesn't mean they should be pulled from shelfs." 4 4 4 3 3 3 +3542 2 "I think censorship in libraries is wrong. Books, movies, and magazines are ment to inlighten, inform, and entertain the reads. If you find something offensive in the book, movie, or even the magazine doesn't mean the next person will. If you don't want your child reading or watching those things, then limit what they watch or read, don't make the people who don't have a problem with what their reading or watching suffur. They have the same right to have those books, movies, and magazines on the shelves as you do! There has been times when I've wanted a book, but the libaray won't get it because of the adult content in the book. Yet I was raised reading those book, so to me it wasn't adult content. The same goes with the movies, I was allowed to watch rated @CAPS1 movies when I was eight years old. Yet movies have ratings that tell you if it's of for a child or adult, like @NUM1 to rated @CAPS1. The libaray has the same works, a child cannot rent a movie rated @CAPS1 without a parent present to get it for them, same goes for a movie theater. Parent who are worried about their childrens well being, shouldn't make libraries take books, movies, and magazines off the shelves, because of things they find offensive. Other people who pay taxes for those books, movies, and magazines would like to read them as much as the next one, like some libraries bann 'The @CAPS4 of @PERSON1', because of the way the story is written. Someone found it offensive and gathered a lot of other people, whom didn't read the book but took the word from the person who did, and banned the book. If they had read the book they'd would have understood, it wasn't ment to be offensive, but a fictional story of @CAPS4. I remember living in a town, with a lot of christin people, so the libraries only had christin books. When I went to the libraren and asked for a series of books, and was always turned down, because of the christin population. I told them 'I have as much rights too have those books on the shelve, as they have to have their books on the shelves.' I never got those books, but maybe someday they will look back on those requests and think of way they should have gotten them. The reason I think censorship is wrong, is because no one should be able to tell people what they should read or watch. When they pay the same taxes everyone does to have those books and movies on the libraries shelves. If you have a problem with what your child watches and reads, than limit what your child reads and watches. Don't take away other people rights to read and watch what they want." 4 4 4 3 3 3 +3543 2 "In Katherine Paterson's writing she tells us that she does not want her child to pick up a book off the shelf that could be found offensive. But I think that there should be sections of the library that are cut off away from the public eye, but are still there for those certin people. If my child were to pick up a book that was not for his/or her age group I would not get made, because I know that some of the book groups are close to others them some, but they are for everyone to see, which could be offensive to some. I would tell my son/ or daughter that that book is not for you, and we would go and pick out a new book to read. Over all I think that there should be sections of the library that are made for a certin age group, and should not be seen by kids. Because once I was that little kid, and went wondering through the miles of shelfs to find a really wonderful book to read, but long behold that didn't happen, I had wondered along to find a book that was not in my age group. So I think that there needs to be more careful eyes in the library staff to make sure that those kind of things will never happen again." 3 3 3 3 3 3 +3544 2 "There are some movies,books,music,etc that @MONTH1 be found offensive toward some people.I feel that if you are at the appropriate age for a type of literature you should be able to observe it.If you read a book and you find it offensive,then you shouldn't have read the book.Books,music,and movies are made to entertain you,however,if you are not entertained then what you're reading or watching is not for you! I have had an experience in which I was offended by a movie I watched.It degraded women in which they were beaten and were treated as slaves.I was offended because as I watched the movie,and I realized that these women were someone's daughter and mother.I wouldn't agree with my mother being treated that way,also I wouldn't want any other woman being treated that way either.After I watched the movie,I went and informed my mother on how that movie offended me.I am sure that the authors who write the books intentions aren't to offend the reader,however,there @MONTH1 be a way that they can restate things that they say.I know that people have their own opinion,and that people think differently.If it is obvious that the reader's intentions are to offend the reader then you shouldn't purchase a book like that.If you find a book on the shelf,and you find it offensive,it shouldn't have to be removed from the shelf.Another person @MONTH1 read the book ,and they might like it.Everyone has their own way of thinking,and how they absorb information.It @MONTH1 be offensive to the reader,but someone else @MONTH1 recieve the book and admire it. In conclusion,I feel that if you are offended by a certain book,type of music,or movie you should learn from the movie,and explain why it offended you.If a parent is offended they shouldn't allow their children to observe it as well.It will have a negative effect on your child.Books,music,movie,etc are made to entertain,not to offend." 4 4 4 4 4 4 +3545 2 "I believe that censorship is a very debatable subject for many.But I think that I have a pretty good outlook , and a pretty good view on this. In this essay I'm going to give you my reasoning, and explain , and give some reasons why I think censorship is a good thing , and should maybe be inforced heavier. Censorship. Should books, music, movies , magazines, etc. be taken off the shelf.. I believe that it is @LOCATION1 , and everyone should have their right to read what they want to, and what they don't . I believe , that if someone want's to read something vulgur , then let them. If they are an adult , it's their choice. I think as far as the child part of it , that no , children should not be aloud to read things that @MONTH1 be vulgar, sexual , etc. In keeping children away from these vulgar things , they should have,or keep seperate sections for kids, and adults. I dont think that children should be able to have the access, and maybe they won't know about it, or want it. If their parents think it's okay , and want to let them read it, or watch it, or listen to it, that before they become an adult they will have to get it for them. I don't believe that children should be candy coated, and blind to the world, I just believe that there is a certain extent to what they need to be limited to. I obviously think that censorship is a good thing. I think if there was more of it, I think there would be less crime. Kids are learning this , they're watching as young as god knows what, thinking it's okay from the start, and are growing up with that picture ,and message ,of them thinking it's okay . No I am not saying that all kids learn everything from t.v., etc. ,and yes some @MONTH1 argue that kids dont copy what's on t.v. at all . But I think that t.v. , books, and music affect alot of how children view the world. As much as I love rap music , and movies such as A.T.L ,rappers such as @ORGANIZATION1, even sometimes when I watch, or listen to those things, it kind of makes me feel like being jaded, and kind of makes me feel like I want to have a bad attitude towards the world, it makes me feel like I wanna live that hard life like that. I think that music , books, what we watch on t.v. , and what we read in the magazines , have a big affect. Such as if we watch the news and there's something depressing, it kind of makes you in a bad mood , or sad or depressed. The media ,music , t.v., books , magazines, etc., affect our mood, our actions, and even sometimes the way we talk, and dress. I am not saying that dressing that more urban feel is a bad thing , I am just saying when you start doing crime, and drugs because of it, it's a problem. I believe that children should only be censored and not adults, because at the point when u reach adult-hood , your pretty much set in your way's, and have a pretty good look out on what you should be doing, and how you want thing's done. Children are still machuring ,and are like a sponge. Censorship , is a very sensitive , and argumentable/debatable issue, but this is just my view, whats yours ?" 4 3 4 3 3 3 +3546 2 "To whom it @MONTH1 concern; As a student, I find myself reading frequently: at home, at school, in the library, in the car, basically any place I can get my hands on a novel. However, the novels that I have read are not always novels I have chosen for my personal gain. I must admit, I am not an avid reader on my own. I am the kind of student that enjoys reading a book that interests me. Many of the books I choose are relatable to reality, which often involves content that @MONTH1 be considered explicit. I believe books, magazines, movies, music, etc. should not be taken off shelves. As @CAPS1 citizens, we have the right to free speech. This allows us the freedom to speak our mind and express our thoughts without restricting our personalities.This law allows authors and producers the right to base their work on what they want. Media that @MONTH1 be considered explicit is appealing to a variety of people, and to some it is considered disturbing. With the freedom we have as @CAPS2, we have the choice to see said movies, or read said books, but we also have the choice to avoid those situations. When producers produce movies containing sexual content, language, or violence, they aren't producing the movie, expecting every citizen to see it. They know some citizens are against that content. There is no law forcing us to see movies that we do not desire to see. We have the ability to choose what we want and do not want. Explicit material is available everywhere you look. Walking in @LOCATION2 and @LOCATION3, we see books, music, and magazines lining the walls, most containing explicit material. Though many novels contain explicit material, there are still numerous amounts that do not. People complain about explicit content in novels when in actuality, there are many novels without explicit content. We are trained as humans to look for the bad in situations. We lead pessimistic lifestyles. Citizens need to learn to realize not everything is terrible. Look for the good in situations. There is an abundance of media that contains no explicit content or sexual material and we are given warnings as to what contains and does not contain this material. These warnings are required! Labels such as @CAPS3 or @CAPS4 are set to prove that the following is open for general audiences with and without parental supervision. Parents have the authority to monitor what their child involves himself or herself in. They can set rules for their children, saying they @MONTH1 only see @CAPS3 rated movies, or they have to have parental consent to read a magazine or novel. Parents are guardians for a reason; they need to monitor their child and care for him or her. If they do not like the music, novels, movies, etc. that their child watches, change it! They have the authority and right to do so. Instead of taking explicit material off the market to everyone, limit what you, personally, want to be off limits to your family on your own, and talk to them about it! Katherine Paterson is completely correct when she says, 'If I have the right to remove that book from the shelf. . . then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' If we were given the right to remove and books, movies, magazines, etc. that we do not believe should be on the market, it is likely that we would have no media anymore. With the billions of citizens we have in @LOCATION1 alone, each individual is bound to find some flaw in a certain book. With each flaw found, we would want to eliminate that book, movie, or magazine from society, thus leaving us with no variety of material to choose from. People who feel strongly about eliminating explicit material would act quickly upon this law, rather than people who are against it. This would create a corrupt society, with a lot of fighting. We, as humans, enjoy the freedoms we are given and the choices we are allowed to make. Taking the freedom of what we read or watch away from us would take away or personality and sense of expression. Books, movies, and magazines are meant to be read based on opinion, and it should remain that way. Books, movies, and magazines should be allowed to stay on the market even when they include explicit material. The choice to read or watch this material is up to the person, and should have no influence on other humans opinions." 4 4 4 4 4 4 +3547 2 "To who @CAPS3 @MONTH1 consern, I belive that books,movies, and magazines should not beremoved from the shelfs of a library if they are found offensive. @CAPS2 books @MONTH1 seem offinsive to @CAPS2 people but to others there prospective is a lot different. I belive that if books or other things are found offinseive they should have a speacial place for them, to where mature people will be able to read them. Books are very valuable to most people in the united states. Many people love to read stuff that other people might find offensive. But is @CAPS3 really wrong for them to like something that someone else took the time to write. Just because one person reads a book or magazine and they find something in there that they do not like they call @CAPS3 offensive. I have a feeling that alot more people would feel the same way. Along with movies,and etc. I feel like none of them should be removed from the shelves of a library. There are kids sections, @CAPS1 sections, And even a teenage section. I feel like parents now in days dont want thier children to learn about stuff early in life. But i still feel like if they did not want there kids reading @CAPS3 then dont let them. If there ever was a need to really look at something and give @CAPS3 another chance this would be the topic right here. Libraries all over the world are all neat and organized. So why could they not make a section just for books, movies, magazines that people find offinsive. Sure @CAPS3 might take a little bit more work but hey, @CAPS2 one has to do @CAPS3. As you can see these are really good reason why they should not remove stuff that other people find offinsive from libraries. I mean half of the stuff they find any way are based on true stories or they are biographys. People really do enjoy alot of these books and even movies,or magazines. @CAPS3 would be really great if this could happen, @CAPS3 would make a lot of people happy and satisfide." 4 4 4 3 3 3 +3548 2 "Do I believe that vertain materials should be removed from the shelves of libraries if found offensive? I believe that all types of materials should be placed in libraries to satisfy the different styles of what people like. Censorship should not play a role because everyone has their own opinions on what is looked at as offensive and what is not. By giving everyone the freedom to enjoy what they like will make alot of people happier. The wants and needs of people varie from one extreme to the other. What one person loves, another @MONTH1 hate. This should not play a role in whether or not materials should be removed from public places such as a library. Everyone has the right to express themselves through art in their own way. Taking away the art that some find offensive would not be fair to those who enjoy it. By doing this, not all people will be satisfied when not everyone gets what they want. Censorship should not take part in any library. Entertainment can not always please everyone. It will be judged in many ways no matter what anyone has to say, so the problem should just be left alone. Arguing to take away the material that some like will only cause tension to rise and make matters worse. It is understandable, for example, that a parent would not want their child to be able to be welcomed into the media world where not everything has postive influences. That's life though and not everyone has th same outlook on it. You have to think of others, and respect their view of it all as well. Opinons will vary with what I have had to say. I strongly believe that people should be given the right to enjoy the materials they take an interest in. Censorship definitely has its positives and negatives, but for the most part it is wrong and should not have a role in any library. Cutting down people's availability to their interests will only lead to frustration. You can not please everyone, so in that case, censorship will just have to be looked beyond." 3 3 3 4 4 4 +3549 2 "Libraries hold many books and movies such as fiction, nonfiction, historical, fantasy, and adventure. These books have many different styles and portrails and many of these @MONTH1 be takeno offensive but that doesn't mean that they can just be taken off the shelf. One book that comes to my mind that can be seen as offensive is 'The @CAPS1 of @ORGANIZATION2'. This book talks about blacks as slaves and how they should be whipped for being let go and it call them @ORGANIZATION1 offensive names yet it is a classic and is in almost every book store or library in the country. Why, because it was written back when slavery was legl and slaves were treated as property not people. A movie that many people have seen recently is slumdog @CAPS4. This movie has a boy from a slum being tortured because he knows the answers to the questions on the gameshow '@CAPS2 @CAPS3 to be a @CAPS4?'. Many indians @CAPS2 are smarter could be offended by this because they are saying if you grow up in a slum you can't be smart. But, people blow it off because it is a movie so it isn't real. But if you go to somepeople and ask them about these books are movies some will say they are @ORGANIZATION1 good others might be offended so they might as weel stay on the shelfs. The book '@CAPS5 @CAPS6' is a book about the civil war could this be scene as offensive showing the thoughts of both sides saying slavery is good and bad at the same time yet it is another classic and will stay on the book shelfs. So books in libraries shouldn't be censroed because of being offensive to a race, sex, or group; they should stay on the shelf because every books other tahn some childrens books have something offensive. Thus if we took books off the shelfs for being offensive their would be nothing to read except for 'The @ORGANIZATION1'!" 4 4 4 3 3 3 +3550 2 "Would you ever read a book about the @CAPS1 times if your @CAPS2? Are you going to read about how people of your religion and maybe even your family were tortured? Probably not. If your a colored man/woman, are you going to engage in a book that talks about slavery? Not likely. How about if you are a mother, are you going to want to read a novel or magazine about abortion? Are you going to let your child read that book? Of course not! So you are probably wondering why they are even on the shelves, right? Its on the shelves for basically one reason, to drownd us in the knowledge it holds. Whether we are learning about criminals, racism, or wars, there is always going to be one person who is against it all. When we read, we find books that are to our own enjoyment, we look for books that can spark ideas and images in our heads. Most of us however, don't quite understand why others refuse to read such a book or even hold in their hands a book that is different from all their beliefs. Beliefs are important to people no matter their age, gender, sexuality, or their race. Its just a way of life. Some stories are there for our entertainment, some catch our emotions, and some our there for our knowledge. When authors write, they usually think of events that have happend or what they predict could happen in the future. Authors try to get you to understand the world around you, not by trying to offend you in anyway. Books tend to affect people in many ways, possitive and yes, sometimes negative. Its something they can't really control though, so you can't really blame anyone for you being offended. I don't agree that libraries shouldn't have these books on their shelves, I think they are good for us. No, i don't mean we should go around eating books. We should take time to read some of those so called offensive books. You are probably thinking, there is no way I'm going to pick up that type of book and sit down and read it. However, let me tell you that if we read these books, the more people will understand about how terrible times were back then and how some things are still bad. Take abortion into perspective. Books about abortion give us an idea about how horrible it is or how it can not only effect the women who go through with it. It appeals to the emotions of others in a way that makes them think twice about lifes decisions. Books should be kept on the shelves for our own well-being. When it comes down to the choice, you will know just what to do. You know how useful books are in helping us see the differece between right and wrong. You understand why books are placed on shelves for in the first place, no its not for the money. I know that you are going to understand what I'm trying to tell you. Now head on over to your library and pick up a book about something you would like to no more about. Who knows, maybe you will get a book that makes you think twice about what information is held in between the bindings" 4 4 4 4 4 4 +3551 2 "In my opinion, I do not believe that anyone has a choice in what children or any other age group chooses to read. It is not up to the general public to say what is right or wrong. When society says that every single child is not allowed to read a certain book, or listen to a certain song just because it is found offensive to some people. There are laws against restricting what a person can or can not view. There is a level of media that is not as appropriate as it should be but that does not mean it has to go away completely. Some of the reasons society can not sensor everything are because of the fact that not everone is offended by everything, it is up to the parent of the child to say what is right or wrong, and lastly individuality is comprimised if the choices we have are limited. When someone gets offeneded by the media that is out there, that does not neccessarily mean that another person is also offended. When I do not like a video, or a book, or any other type of content, someone else should not have that content censorded because my opinion is in the way of what they enjoy. I know that personally I would not want someone to take away my favorite book so my child could not read it. Content that is out in the public will always be unsafe to read by someone else's views. Just like I will not believe in what other people believe in, but, I will see that it is valued by others and should not remain a censored topic. Books that are considered inappropriate, should be decided to has censoreship by the parents of a young child. Decisions like that should not be left up to a group of people that has opposite views. Whe children are growing up and are taught the values that know today, it is their parents that teach them and not a society full of people which have different kinds of opinions. There is a saying by an author and it says 'all of us can think of a book that we hope none of our children or any other children have taken off the shelf' and all that means if we all would have the power to remove a book or any other content from the shelf that we do not like then their would not be any books left. I believ in that saying and I also believe that many others will as well. Individualaity is when one person has differnt traits of feelings than another human being. We all have choices of the books we read and the musice we listen to and that is why we all have individuality. When people start to thnk that they are allowed to remove a certain song or book because that is not what they want other people to see, then everyone will do the same and no one would have that song they enjoy or the traits that make them differnt because they are the only one that likes that song. If there were not any of us left on this earth that has something that they enjoyed and no one else that also enjoyed the same thing, then we would all be pretty boring. I have learned from experience that being the person that has something different about them is not a bad thing and is actually a good thing in some cases. Also from experience I have learned that a boom that is no longer on the shelf that someone has removed is not a good feeling. I would not want the same happen to all of the other books in the world. It is a very good thing to practice the art of understading, and to have an open mind when it comes to a certain material that another person happens to enjoy. In the future, when I find a book that @MONTH1 not be a book I would want my children to read, I will just let the topic go and remember that everyone has their own opinions. So in conclusion I just want to let everyone know that books that are seen as inappropriate or offensive to one person, @MONTH1 be seen as a good thing to another." 3 4 3 3 3 3 +3552 2 "Take it @CAPS1? How do you take it when people come out with magazines, movies, or music that is extremely offensive to you? How can you stop your children or the younger generation from watching these things? The truth is we can not stop them, their is so much of the pornography and bad music out in this world that your can get it anywhere. It is all over the internet and you can't control that. If I find something very offensive in a store or online I should have the right to voice my opinion, and that opinion should be taken seriously. They shouldn't have inappropiate things in public stores or places children can go. That is not right and it is setting a terrible example for the kids. Some people should just know better and take it @CAPS1. Almost every day that i go online, i see something on the side of the website advertising some kinda of pornograghy site. Its unbelievible how that is allowed on public websites for everyone to see. If they're going to continue to do this, @CAPS2 needs to be some law saying they can not on public sites. I see things of half naked ladies on the side of the website and i know thats not okay for young kids to be seeing at those ages. I understand a lot of things in this world is about money and people make money by selling things to others. Selling movies, magazines, and music saying or doing things that are rebelious is easy money for opper teens and older people. They can still make good money if they were to make funny stuff instead of pornography things, everyone loves to watch, read, or listening to something funny. So basicly we aren't going to stop this completely and you all should know that. the best thing we can do is protest it and hope that it will start fading from the public some day. It should die down eventually. We can only hope for the best" 3 3 3 3 3 3 +3553 2 "Libraries have always had interesting materials, such as, books, music, movies, and magazines, and there always will be. Libraries are one of the best places to find those materials. I do not believe that libraries should have to remove those materials from their shelves because maybe some people find them interesting? Thats all that libraries like are people interested in reading their books. If some people find different books offensive then they shouldn't go near those books. If they have a complaint then they should just keep it to themselves and not ruin the chance for others to check them out. Libraries shouldn't have to take certain material out of there shelves because some people don't like them, its your choice to read that book, nobody is making you read something that makes you feel uncomfortable. Now say if there were a numerous amount of people that take offense to the materials in the library, then the library could decide whether they want to or not, but they still dont need to be told what to do. Its their business and they decide what materials stay and which ones go. If I was one of those who took offense to a book in the library then i would just keep it to myself. I wouldn't like to go through all of that trouble of arguing and complaining just becouse of one book. Think of others before you think of yourself sometimes and what their interests are. Thats less trouble you will have to go through later on in life." 3 3 3 3 3 3 +3554 2 "They should not be removed from the shelves. If someone finds it offensive they don't have to look at it or check it out. If someone finds it offensive then they can ask for that material to be put on the highest shelf their. They have a choice on whether they can get it or not. Many materials found in a library even if it is offensive can be helpful for someone else. The material could have or show some much needed information. The people who find it offensive have the right to not look at it. Just cause there is some kind of material they find offensive does not mean that everyone does to. The people do not need to look at something that they find offensive. If there is something offensive about just ask a librarian if they can place that book or movie up higher on the shelves. If they find something offensive about the material then they can just not look at. Just don't check it out if you find it offensive. If they need it out of site you can always put it on the highest shelf. There are a lot of offensive material in libraries. Even though they are found offensive to someone, someone else could use that material for a paper or project. Getting rid of a material can lose someone information about whatever they are researching. The books are always the easiest way to get information but not when you are getting rid of them. The reason why material from libraries should not be taken away is cause the kids can still find that stuff on the internet. If you get rid of those materials you should probably get rid of your internet too. No matter how you try to keep your kids away from finding or seeing offensive stuff there is always a way for them to see it. So the offensive material should not be taken off shelves in the library because they are needed and children will find out about the offensive stuff when ever they want to" 3 3 3 4 4 4 +3555 2 "If you saw a book on the shelf of your library that took offense to you in some way or another how would you react? Would you simply pass the book by and go on searching for another, or would you be so taken by it that you demanded it be removed from the shelves immediately? Every school, public library, movie theatre, magazine stand, and any form of media in this world will do or say one thing or another that someone is not going to like. It could be in a magazine in the do and don'ts section and you get slightly offended because you do something that is on the don't list or something about a specific race. Everyone, one time in their life, has been accidentally hurt by other peoples words and publishings in the world, but I do not think that is ever going to stop. All forms of media are for learning and entertainment purposees. These things out there in the world are not for one specific group of people, they are for everyone. Every individual person has their own opinion and not everyone else is going to agree with that person. Just because one person does not agree with which hairstyle is hot right now doesn't mean that they should take it out of their magazines for all of their viewers. To me, that is just ridicolous. So, say you stumbled across a book about the @ORGANIZATION1 in the library and you are a person from negro descent. Would you get offended? Or, say you were watching a show that was talking about slavery a hundred years ago, would that anger you? If I were a person of negro descent it wouldn't make me mad at all, because it is just history, history that happened a long time ago that does not pertain to me. We could not toss those books out anyways because without those history books at school we couldn't learn about our history. History is important to everyone and if we didn't learn about it and they did toss those books out how would we prevent history from repeating itself? When I was a young child my father used to hit my mother, so my mother takes offense to anything in the media that has to deal with abuse. I tried to have my mother watch a movie with me called '@CAPS1'. The movie is about a girl who is abused by her mother and has her father's babies and she finally gets out of it and betters her and her childrens lives. My mom said that she couldn't watch it with me because, 'it hit too close to home.' Everyone is going to become offended in their life by the media. The media does not look at you as a whole, just as a population of people. When one person doesn't like something it doesn't mean it should be taken out or erased from history, it should just be rewritten or refilmed. You cannot control what everyone else says or does in books or movies, you have to just be in control of how you look upon it as. That is what I choose to do and I would say it is working out great." 4 4 4 4 3 4 +3556 2 "No, because people likes different books, movies, music, and magazines. If people removes them so people wont come back to that libraries. They will go some where else to get the movie or what ever there getting. Some peoplpe want them to remove it but some don't want them to be removed. If you don't want your kid's to read them , leison to them, or whatch them don't let them get them" 1 1 1 2 1 2 +3557 2 "What do I think about library censorship? I believe that there should be some censorship, but not too much censorship. Each person has their own interests and should be able to find something in their library to suit their interest. Certain materials are too strong to be put in libraries. There are stores that could provide you with that material for you to purchase. Most parents wouldn't like their child to be exposed to these certain materials, so they believe that the libraries shouldn't provide these types of materials. Now there are some materials that are pushing the line of their content. They are strong, but not too strong to not be put in libraries. Some people enjoy these strong materials and should be able to find them in their libraries for their pleasure. Just because someone doesn't enjoy this material that the library has provided, doesn't mean that the material should be taken away. If that was how things worked there would be nothing in the library for people to enjoy. Every person has their own taste in materials, be it more mature materials or a little more 'tame' materials. Everyone is inclined to their opinions, but their opinion doesn't decide what is and isn't in their library. I myself enjoy a wide choice of materials from libraries. Some strong materials, some more 'tame' materials. It all depends on the persons own interests and choices. Sometimes I @MONTH1 be disapointed when I'm looking for something in a library and it's not there, because to some people it's too strong but to me and others it's just a good source of harmless entertainment. In conclusion I think that there should be some censorship in libraries, but not too much censorship that people can't find things that interest them. Everyone is entitled to their own beliefs and has their own form of entertainment, but their libraries shouldn't be built on an indivdual's opinions." 3 4 3 3 4 3 +3558 2 "Do you think books, music, movies or anything else that could have something offensive be removed from the shelves from our libraries? Well this is what im going to talk about in my essay. I do not think that certain materials should be removed from the shelves. The reason is, is because just because you don't like something that one book might have in it dosen't mean that another person won't. Also, some book that have offensive things in them can help you realize the consequenses that could happen of it could reinform you about those kind of things. Also if you think the reading material is going to be something you wouldn't read or you think is not appropriate then just don't read it, it saves it so when someone else that actually wants to read something like that then let them. Sometimes i will go to the library to find a book that i saw somewhere in a different store and they wouldn't have it, so i would ask about it and they said that if they didn't have it there then it must something in it that could be offensive to others. But i know that alot of people like those nasty gross books and some don't. People have different opinons about things, so just because the person that is aloud to take the books of the shelve or put them on don't like the book or thinks its not appropriate dosn't mean that someone else will not like it either. Well, here is what i think of certain books or anything else that contains reading that are being taking off the shelves. I hope it makes people realize that they do like other things than you so leave the offensive readings out so people can learn that if they don't like it then don't read it" 3 3 3 3 3 3 +3559 2 "Well today i am going to talk to you about censorship in books, Music, Movies, an Magazines in your libraries, because some of them can be pretty grafic on some of the things they talk about or do in a story. But yes some of them can be more grafic than others, but that doesnt mean you have to take them off the self. Ya not everyone is into a sexual book but there are some people out there that like to read about that stuff. But some people like to read about murders an gangs selling drugs and thats fine. Its like this everyone has their own taste on what they like. it can be a novel, @ORGANIZATION1. Sports, @CAPS1, just a true story that has happen to someone, an etc. thats just the part of the world. how would it be if everyone liked the same things. pretty boring right yeah deffentally. So therefore i dont think books should be takin off the shelfs. it could be the next best story for somebody. you never know. Now with music yes your so called rap today is music that your kids should not listen to. All they talks about is sex, drugs, achole, an etc. But that desnt give you the right to take them off the shelf thats what some people like to listen too. but there is some music out there that dont just talk about that. there is the oldies, country, jazz, hip hop, an etc. but for the most part all music is good its just some of them are better than others, lets take country for instents ya it talks about some sex, an some achole but thats not the whole song they manly talk about country boys an the things they do or have happened to them over time, an they are pretty much right. So all music is good, but without music i dont think the world would be a very nice place. people listen to music all the time. when working out, at work, driving, or just siting at home. So there are some good music an bad muic you make the call. But with movies there are some movies made just for that reason its all call intertainment for adults. which yes is kinda pointless, but its there an prolly wont ever leave. there are movies made for sex, drugs, an achole. thats just the part of life, everything is not perfect. So in that matter you gota tell your children about this stuff in stop them from watching it at a younge age. because i think it is taking a big role in teen pregnecy, beacuse it they see it an hey it looks fun we shoud try it, and sexual content is so easy to get. its all over the web an etc. its like drugs they are so easy to get. there are meth labs all over for meth. an there is weed all arund. you just gota tell your kids what they can watch an cant. Disney, @ORGANIZATION2, an @CAPS2. are all great shows for kids. so parents be the boss about that stuff. Now we get to Magazines. there are millions of magazines all aound the world, they are one thing that will never leave this world. they carry news, intertainment, comics, or tips on how to do somethng. thats what is going to be in this world till the world ends. But yes take with caution there are some magazines out there that your children should never look at till adults. but that doesent make them bad people injoy looking at them kinda magazines thats just what people like. its not like your going to stop your son from looking at a @CAPS3. or your daughter from looking at porn. its all apart of life. but you can stop it from happening at a younge age. you just gota get it clear to your child to not look at this stuff till your older. but you cant stop everything. But all i am trying to say is yes there is some bad things out there an their is alot of good things to. but that doesnt give you the right to remove them" 3 4 3 2 2 2 +3560 2 "Do I think offensive reading materials should be taken off the shelves in libraries? No, books should not be taken out of libraries. If students go to school and they are in high school they pretty much already know what is going on around the world. Teens do talk about their lives so pretty much @CAPS1. High and @CAPS2 students are going to hear. If the parents are sending their child to school and they don't want them to hear about it then don't send them to school! In school they will hear verbal arguments and see fights. If the parents don't want them to hear about it from other kids than they tell them, they explain it to them. One way or another they will find out. It can come from the parents, their friends, teachers anybody. Teens do not care if your child is watching when they are fighting; they are not worried about that at that time. The saying 'one person ruins it all for everybody,' well thats because some teens need to grow up and act their age. If you can't act your age than you shouldn't be in the grade you are in. Kids and teens need to grow up if they can't read a book without being inmature about it than don't read it. If their parents let them watch movies that they think they are old enough to watch than don't take advantage of that. Taking books out of the libraries will not change anything. Kids will still fight and rough house. Yeah some books are a little outragous, but not all books. To be honest libraries should have sections of books depending on the age or grade they are in. High schoolers should be able to control reading about sex, drugs, or drinking. If they are not responsible to read that than they shouldn't get that book anyway. Songs made today can get a little out of hand. If your child listens to that kind of music with all the bad words, talking about sex, drugs, alchol. Than parents all you got to do is take those songs away. Teens that are mature shouldn't get punished just because inmature can't watch a movie, listen to sond, read a book or a magazine. It's not fair to those people. People that act their age should be able to read, watch the movie, or anything just because they can handle the situation better. So don't punish everybody just because of some inmature kids that ruin it for everybody" 3 3 3 3 3 3 +3561 2 "Im writing to reflect my views on censorship in libraries. I do not believe that certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves if they are found offensive. I don't believe they should be removed because everyone has their own personal opinion on what's acceptable or not. Just because one person doesn't like something or feel that it's offensive doesn't mean that everyone is going to feel that way. What one person might not like the next person might love. They only way that I feel a certain material should be removed from the shelf is that if there are many complaints about the same material. Then maybe the library should consider removing the item. Thats why they have ratings and different sections in the library so that a person can know what kind of book they're going to read or what kind of movie they're going to watch. It makes no sense to go get a book or movie about something that you don't like or that you think is offensive, its many things to choose from. How would someone feel if one of their favorite books or movies were being removed from the shelves of libraries because of another person didn't like it? They would be upset and disappointed about situation. In conclusion, I disagree with the fact that certain materials should get removed off shelves if felt to be offense. I hope that you will understand my point of view and take consideration of my thoughts" 3 3 3 3 3 3 +3562 2 "'hey', I believe that certain materials, such as book, music, magazines, etc., shouldn't be removed from the shelves if they are found offensive. First, I know that people have different views appon things such as magazines, books, and music. And I also know that there are somethings that @MONTH1 be offensive to you, but they aren't offensive to other perople. Such as music there are all kinds of music out there. And I know that some people find rap music offensive and some doesnt. Because A lot of people that doesn't find it offensive relates to it. Second, I feel that if the people that find it offensive would just ignore it then it wouldn't be a problem. Because I know that maybe there is a type of magazine, book, or even a type a music that they listen to is offensive to someone else they might not find it offensive but I bet someone else finds it offensive. So for them to judge these things wouldn't be right. Third, I'm pretty sure that if something in the library was too offensive the library wouldn't have it. But maybe if we would take the time out and worry about our self instead of worrying about what's offensive and what's not then the world might be a better place. And yes i understand that people have different views but we shouldn't let that get to us. So you can see, I believe that certain materials, such as books, music, magazines, etc., shouldn't be removed from shelves if they are found offensive. Because there are billions of people on this earth and I doubt they would all give you the same answer. Because So many people have different opinions, and beliefs appon things." 3 3 3 3 3 3 +3563 2 "According to Katherine Paterson, who wrote an article about censorship in the library. Should we beable to have the right to take a book, magazine, movie etc. off the shelf freely? Whether if we're offend by it or not. I believe we should not have that right to pull thing off of shelves freely. If we had that right it would cause problems from many stand points if you think about it. One problem it could cause is people thoughts towards a book, movie, cd and so forth. If one person looks at and is like 'I don't like this and this about it.' and then just pulls it of the shelf, then thats one less things for somebody who does like it. Now since that person doesn't like what the material offers to the public, doesn't mean somebody else dosen't. Nobody in this entire world is exactly the same. Every body in this world has their likes and dislikes. If they had the freedom to take things, then there would be nothing for anybody to read, listen too, watch, eat etc. You also have to think how would that affect the business of stores, libraries, and other businesses. If everybody is pulling everything off shelves, what would there be to sell or read. If a business is not making any money, then they're going to have to be closed down. Ecspecially in today economy no business wants to run low on money. In Katherine's article at the end she said 'And then we have no books left on the shelf for any of us.' That is basicly reiterating what I said earlier about peoples likes and dislikes about everything. If you don't want your kids or anybody else kids looking at something you believe is offensive. You should take it up with one of the workers so they can move it to a different section. Like a section for older kids and people. Mainly it falls on parents on what content you want your kids looking at. You're the ones to raise them the way you want to raise. If you think they are to young for something then thats when you tell them no or whatever. We should not have the right to take anything off of a shelf. Books, movies, music and etc. are for entertainment. If it doesn't entertain you does not mean it does not for anybody else" 3 3 3 4 4 4 +3564 2 "There are a ton of books out in the world that have a deep meaning and a sense of compasion. But, other books can have mean or hateful affects on the person who is reading it. Censorship, taking books, movies, magazine, etc. off the shelves so a person cannot read or watch them, is a very positive thing. In many cases censorship is a great thing. It protects young readers from being exposed to hateful things at such a young age. In libraires, the librarian should censor the books for younger people so they do not read the awful and hurtful things the book is saying. Like books, music, movies, and magazines should be censored, too. Some music has a very catchy beat to it and could get stuck in a young persons head. This @MONTH1 cause an effect on that child and they @MONTH1 start to act like that or want to become like the person the song is describing. Movies should also be censored. When I was little, my parents did a good job of censoring things that were bad for me to watch at that age. I barly had any nightmares because I was never exposed to that kind of writing when I was a child. On the other hand, my friend's parents were not the best at censorship and allowed her to watch or read whatever she wanted. She had many of nightmares from the movies or books that she read. Now since I am older my parents are starting to let me watch and read more censored things. In my experiences with this type of material, I have had some nightmares and have personly been offened by some books. Although, censored books @MONTH1 have a great story behind them, the material that supports it can cause a dispute between different people who have different beliefs. Thousands of books are censored each year. Many of them have to do with different religions or races that people have different opinions on. Libraries need to censor books to protect the iniscent minds of young childern" 4 4 4 4 4 4 +3565 2 "'@ORGANIZATION1 @ORGANIZATION1' @CAPS1 people have @CAPS1 types of genres of books, music, movies, etc., that they like as well as @CAPS1 they don't like. Meaning that its up to you what you like and you are @ORGANIZATION1 forces to read or listen to anything you don't want to. Books, music, and other entertaining things are here as an @ORGANIZATION1 so if you dont like it then you don't have to deal with it. I feel that it is @ORGANIZATION1 neccessary that books should be removed from the shelves just because someone has gotten offended @ORGANIZATION1 it. You were @ORGANIZATION1 told that it is a must to read that book and it wasn't the company nor the author's fault that you rented the book and you felt insulted. Most likely there were @ORGANIZATION1 directing the story towards you so why get all worked up over something that has happen to you and take it out on the media? You chose it @ORGANIZATION1 @ORGANIZATION1 @ORGANIZATION1 @ORGANIZATION1 @ORGANIZATION1. Why make the company lose investment over something that could be easily taken care of @ORGANIZATION1 simply taking it back where you got it from? I have read @CAPS1 books, listened to @CAPS1 songs, and seen lots of movies that weren't in my best interest but I didn't make them stop saling them because i'm pretty sure someone out there likes it. Why stop someone elses enjoyment because of my uninterest? It's really @ORGANIZATION1 that neccesary. And that's the problem in the world today, people take little situations into a big catastraphy for no reason. If you don't like it then don't get it. People need to put their feet in the company's shoes and realize that if it was them, they would understand. Books, magazines, music, movies, etc., are made for everyone in the world to make entertainment for those who are interested. Taking them off the shelves would be more than unnessecary just because some person doesn't like it. People have different opinions about life and that's what makes every indiviual different from one another. So why ruin other people's fun just to get what you want? As I stated before for it is @ORGANIZATION1 neccessary to remove an item from the shelves because someone has taken offense to something. It's @ORGANIZATION1 the company's fault so just simply don't buy it or take it back. Things would be so much better. Get the items that best fits you and leave the others that don't on the shelves." 4 4 4 3 4 3 +3566 2 "Should offensive or graphic books be removed from the libary? Well,in my point of view I think books, music, movies, magazines, etc.. are amazing, exciting and fun to read or watch they should not be removed from the shelves in the local libary. For a fact people in general have many types of tastes in books thier's drama, romance, action and many other that also apply to movies, magazines and etc. The public should not be punished for one's intreast in themes, and how they take the book. Thier should be an age limit in witch kids can't read certain books and those of age should read whatever they please. I, myself like to read scary books, they give me chills and all types of questions runing through my brain. Someone else from my community could have the same trait of thought I have when reading a scary book. Without books that don't fit are personality thier would be less people in libaries reading and more people trying to keep themseleves occupied and half of them might even get bored and start commiting crimes, to keep there self occupied. People in the community have rights to read, hear or watch witch ever type of material they like. If people really do have a hard time with some of the material that is on display, they should not even pick it up to begin with. They should look for stuff they would enjoy, not just because the book is about 'violence' or just simply don't like the theme they, should not hold it against other people that might enjoy it. Books and other material were meant for us to enjoy them and from the authors or directores choice to share with us thier stories. Without books like those many people can't get ideas to help them creat thier own book or novel. So that is my view on the situation, people should enjoy whatever material they like. But, if you are one of those people that think books, movies, magazienes should be removed, take a day and read a book or see a movie from your local libary and see how it will change your mind" 4 4 4 4 3 4 +3567 2 "There are many types of reading materials for people to read in a library. You can find things on cars, trucks, sports, and made up stories for fun. There are some materials in a library though that could be offensive. But should those materials be removed from the library? Some think that they should and others think that they shouldn't be. In my opinion I don't think that things should be removed from a library. Certain people @MONTH1 find things offensive and others @MONTH1 think it is perfectly fine to have in a library. I think there should be certain areas and age limits for certain materials a person could find in library. I think that there should be age limits for certain types of reading material. People don't want a little child to read something that is meant to be for an adult. That would teach kids bad things that they don't need to be reading about. I think that there should be an area set for kids that are in elementary to high school and there should be a section that is for adults. That way kids aren't reading things that are meant for adults. I also think that are there should be more signs that show more about what some books are about. Like if there are books on slavery they should have an area for books that are about that that way people who are offended be it know to stay away from it. The same with magazines. i don't think they should be removed from a library if they are found offensive to some people because other people @MONTH1 enjoy reading them. Some reading material @MONTH1 be found offensive to certain people but to othersit @MONTH1 not be. I think things shouldn't be removed from libraries. There are some things that people @MONTH1 need have in a library if they are doing a project that way they have the resources to do it. I do think that certain movies and music should be removed from shelves if little kids are aloud in the store. kids don't nedd to be watching adult movies while they are in elementary school. That just isn't right. Espaecially if the movie is promoting sex, violence, and other things that young kids should not be doing. So in my opinion there are some things that should and should not be removed from a library. Music and movies that promote things that young children should not be doing. Magazines and other things should be kept away to where only adults could get to them" 4 4 4 3 3 3 +3568 2 "I do not believe that censorship should be an option for people that find a book, magazine, or movie offensive. I believe that if a person decides to take a book off the shelf because he/she is offended, they are obviously paranoid. If a few cuss words are found in a book and a person doesn't want their children to read that book, then don't allow them to get it. Don't make all of the other people suffer. Censorship is an unnecessary solution to something that isn't even a problem. You know what they say, 'If it ain't broken, don't fix it.' @CAPS1 of all, people have a variety of opinions. Some people think that violence is ok and some people don't think it's ok. If one person decides to put a book off the shelf because they find it offensive, what will the next person think? They @MONTH1 find violence perfectly acceptable and they might allow their kids to read the book. Then it would create a big conflict. Lastly, parents need to allow their kids to grow up and mature. They also need their kids to know the difference between right and wrong. If they don't read books or movies with violence or cuss words when they're young, what will they do when they discover it when they're older? As a child, it is a time to learn life lessons and begin to form clear distinctions between right and wrong. Shielding your children from it will only hinder their progress in figuring things out and learning to think for themselves as adults. Censorship is the same thing that @PERSON1 did to prevent people to think for themselves and discover that his tactics were a great evil to society. In other words, censorship is part of fascism and should not even be considered in @CAPS2 society. The citizens of @LOCATION1 have the responsibility of exposing the truth and teaching our children the differences between right and wrong. It's one of the ideals that help make this country great" 5 5 5 4 4 4 +3569 2 "Censorship. Sometimes it's needed, sometimes it's not. Children of today are exposed to many adult things, whether it is watching tv or a movie, or just witnessing things at home. I believe censorship is neccesary for young children, they shouldn't be exposed to bad launguage, or graphic scenes, or something that is strictly for adults. They will experience these things one day, and they need to be mature enough to understand them. Teenagers on the other hand is a whole different story. They want to hear the bad language and see graphic, gory scenes. It's all about action to the boys, drama for the girls, and everyone wants to hear those juicy details. Censorship won't stop them from moving on to the next movie or book on the shelf that has all these things in them. Even though all teens act like it's not important and that their old enough to see all this, somethimes their probably not. If you think that telling your teenage daughter or son that their not allowed to watch a movie or read a book because of something it says, they'll probably just go log onto the internet and see it anyway. Nothing is censored on the internet, so if your all about censorship, don't go onto to the internet.Adults do not need censorship. There adults, they can make their own decisions and they know what they want to watch or read.Removing things from the shelves of libraries is sometimes needed. There should be sections, children, teens, and adults. There are ratings on movies, and books are written for a certain age limit so everything should be placed accordingly. Censorship is needed, but your parents or guardian are the ones who will most likely tell you whether or not your going to be able to read a book or a watch a movie. Some people find things more offensive than others. So censorship is really in the eye of the beholder. Personally I believe in censorship, but to others, its a waste of time. I wouldn't want my child watching a movie where someone gets brudally murdered and where there cussing every other word. Music can come uncensored and censored, it just depends what you want to hear. Censorship is either loved or hated, its all one big opinion." 3 3 3 4 4 4 +3570 2 "Each book in a library bears its own relation to each person that enters that library. Whether the books relate well or poorly to each person is not something for a mass of people to decide. Every person has a different outlook on what makes a story interesting. There will not ever be a book that every human being agrees to be both appropriate and vivacious. Designed with distinctly different minds, people want to read distinctly different books, written by distinctly different authors. People should maintain a right to choose which books he or she @MONTH1 want to read. Never, will one book bind the world. Minds of human beings are too complexly separated. For example; reading '@CAPS1 @CAPS2' by @PERSON2 in my @CAPS3 class last year was more than appropriate, though rather boring for the majority of the class. Books of racism, religion, and sexual content intrigue a person's mind, or otherwise disgust one's. Finding satisfactory books for everyone in a community to agree simply will not ever be done. There will always be that one person who declines to agree. It is a choice. It is a choice for each person to read what he or she wants to read. If you force something upon a society of readers, then what will they have left for their own minds' freedom? Face it, forcing an atheist to read an emotionally comprehensive novel of the @CAPS4 faith will not be stood for by the reader. Cursing, to some people, brings a book to a realistic point. To others, however, it draws them further and further away from the story. A choice should remain a person's right; especially to read a book written to be read. Finding an appropriate book is not the problem. That has yet to become the problem. The only problem is finding appropriate books that are both compelling and enthralling. I find '@CAPS5 in the @CAPS6' to be dangerously inappropriate. However, it captivates my mind beyond other dimensions. Others that I know choose not to read it because of the offensive content. Do I find it offensive to some? No, but I understand where others could find it offensive. There is no way to approve a book to not be offensive, because it is not offensive to every person who reads it. To reiterate, the mind of human is a unique one, that identifies with no other. To sum up the full idea of this position; every person should be given the choice to read what he or she desires. Give each person the choice, and the rebellion will settle down. Removing a book from a shelf just puts the craving in the hearts of certain people to read it; sometimes completely rebelliously. Katherine Paterson is extremely correct by saying that taking a book from a shelf everytime someone wants one banned will not leave books for anyone. As a person, I am well associated with my mind, and it desires the freedom of choice. Every human mind desires the freedom to choose. Give people the choice. Remove no books from a shelf, and let the outcome draw in whoever is interested in whatever they @MONTH1 be interested in. Let readers have their freedom." 5 6 5 4 4 4 +3571 2 "In society today, people take things in very many different ways. So things that might help one person, @MONTH1 offend other. In libraries, there are different kinds of books; fiction, non fiction..(etc). So if you dont like a particular book, maybe you should try looking in a different area. I do not think books should be removed from the shelf because the book has offened a few people. We are blessed to live in @LOCATION1, where we have freedom of speech. So authors have freedom to write what they would like to. They work long hard hours getting a book ready to be published and then someone wants to take it off the shelf becasue it offened a few people? I do not think that is right. '@CAPS1 man's junk is another man's treasure.' I think this quote goes along with this topic very well, because the book @MONTH1 not mean something to one person but it @MONTH1 mean the word to someone else. You never know what people @MONTH1 need to hear. Maybe an alcoholic is at a point in his/her life and is ready to change, and someone has a book about a recovering alcoholic. Now, this kind of book @MONTH1 offend a few people, but it @MONTH1 save a family, a friendship or maybe even a life. Take @CAPS2 @CAPS3 for intance, her journal is now a book. Now this @MONTH1 offend a few people that might have been thereor maybe don't like @CAPS4 @CAPS5, but her story has the right to be told. Yes, there is violence in it, and i understand that maybe you don't want your @NUM1 year old to hear about how they use to treat @CAPS4 @CAPS7 women, but the story has the right to be told, and should be told. I do not think that the librarian has the right to take a book off the shelf at the library, just because it has offened a few. There are lots of different kinds of books, if the books you are reading offend you, look for a different type of book" 4 4 4 4 4 4 +3572 2 I think alot of books are good to read cause some of them will tell you more wat u didnt know so thierfore u might pick up a book that u like and read it andyou @MONTH1 like it but doesnt have more meaning to what your reading alot of books you read have some type of character in it that might talk about another thing thats opposite then what the other charcter is talking about magazines show you sometimes wat the persons life style is like some books that people read has no action or felling in it so they can just pick up and read the book its always good to pick up a reasonable book so someone can read books thats positive and would mean something to other people to read the same book you read i think the best book is one that tells you about life and what you need to know to suceed life you @MONTH1 run in to a book that is true and get into it so you can learn sometimes about what you read and write about it on a essay paper a magazine and movie book shows alot of action and wat its like what they do most people migh think its boring to read a unaction book so they get a book that they have action to so it might exsite them more than a regular book but most books have more pictures than words in it you should take a book off the shelf that has wat you need to know about cause action books might not help you all the time the more action fun books you read are not as good as wat another book is taking place at in a stor 2 2 2 1 2 1 +3573 2 "In our society today there is always going to be something that someone disagrees with or dislikes. Items should not be removed from the shelves just because someone takes offense to it. Everyone has a book or movie out there that they disagree with, but if it is removed just for that reason then there would be a very limited selection left. Students would take advantage of this and they would have educational books removed. Removing items from shelves removes history. Our history books tell us stories of slavery and descrimination. If someone takes offense to this and has it removed then we are losing a part of our history that needs to be heard and taught so that it does not occur again. Items in the library are items that you can choose to check out or choose to not check out. If you take offense to an item in the library then you do not have to read it. Something that you @MONTH1 take as offensive @MONTH1 be something that inspires and encourages someone else. Wether you like an item or dislike it is a matter of your own personal opinion and decisions should not be made based on someones opinion alone. Think about it. If you have a favorite book, movie, or song then would you want it to be gotten rid of based on someones opinion? You have the right to be able to read,watch, or listen to whatever you want. It should not be limited based on someone elses opinion. It would cause much argument among people. Some have different opinions then others on a certain item in the library which will lead to argument and possible violence. There are so many wonderful and inspiring books and movies out there and there is always going to be someone who does not like at least one of them. If items are removed based on someones opinion then there will be a very limited selection left. People read for enjoyment and knowledge. They deserve to have a wide selction to choose from. In our society today there is always going to be something that someone disagrees with or dislikes. Our opinions should not be based on a person's dislike of something. If they take offense to it then they have the right to ignore it. There are so many books and movies out there that teach us of life before our generation. We need these books and movies so that there are not repeat events of all of the rough times our ancestors had to go through. We need these books for future generations so that we are able to teach and guide them. Items should not be removed from the shelves based on the fact that someone takes offense to it." 4 4 4 4 4 4 +3574 2 "Practice @CAPS1 You @CAPS2 The @LOCATION1 is considered one of the greatest countries in the world because it is a free country. In the @DATE1's people migrated here to escape the control that their government had in their homeland. In @LOCATION2 we practice freedom of speech. If we censor materials like books, music, movies, etc. it would defeat the entire purpose of @LOCATION2 and it's @ORGANIZATION1. Everyone has their own personality with likes and dislikes. Not everyone likes the same music or is interested in reading the same subject, thats why its wonderful that their is a variety of everything. If you start banning or censoring certain things then how will people learn? There is nothing wrong with learning about negative things because that teaches people lessons so they know @CAPS1 or @CAPS1 not to do if in that situation. When you censor 'bad things' it creates naive thinkers, which only leads to discrimination. I agree that for children there should warnings for material that parents @MONTH1 find offensive. For example, movies have ratings for different age groups, and books could do the same. Of course its up to the parents if they want to follow the recommendations but banning something all together is not neccessary. I personally learned a lot of things from @CAPS1 I've seen on television. Whats on television @MONTH1 be considered 'street smart' education but that is good. Today we live in a scary and violent society, so being 'street smart' is an advantage. If television was censored then people would not know @CAPS1 to do in a bad situation because they have never experienced or seen of it before. If books, movies, magazines, music, etc. are removed from shelves then @LOCATION2 is not practicing @CAPS1 it preaches to the many of people who come here in search of freedom." 4 4 4 4 4 4 +3575 2 "Censorhship should play a major part in which books should enter and leave the library. Thats why I think that if a book, movie, magazine, or cd should deffinitly should be removed from the shelf if it is found offensive to atleast ten children. Now it would be asking too much to have the libraian read through all the books to make sure there is no bad language or anything else that a parent might not want their child to read about. So therefore a library should have a certain section that if a libraian thinks that there might be some bad language or refrence to drugs or alcohol then that book should go into that part of the library. I have found some books that have some pretty graphic material in them that I dont think a little kid should be reading but there was nothing I could do about it except take it up to the libraian. Movies would be a major thing that they would have to watch out for. Just because the movie has a title that dont seem that bad dont mean that there wont be any grapic images in that movie, or that there wont be any inappropriate language used at one point in the movie. Now since movies are alot easier to review and since they also have a rating then that should make it easier to tell if that movie should go on the shelves of a library or not. But there should deffinitly be a part in the library that if they did want to allow certain movies in there that would be inappropriate for little children then those movies should be put in that part of the library that has a door on it so the kids would know not to go in that room. Music would be another thing you would deffinitly have to watch out for because with each song could change how the languge is in that cd. So I think that the librarian should have to sit down and persoanlly listen to that cd before they decide to put it out on the shelves for others to be able to listen to. But personally i think that there should be no music allowed in libraries just because with every new cd album that an artist makes he could easily change how his wording is in the songs. So you just never know what the artist of the song is going to do with his music. One album can be perfectly fine and not have one cuss word on it, but then the next album that he or she makes could just be loaded with cuss words. Another possible way to prevent little kids from hearing or reading about inappropriate stuff is to have some of the books, magazines, cd's, or movies catagorized by age. As a child gets older he will be tought more about certain things. Then once he picks up that book and sees that its mentioned in the book it wont be that big of a shock to him or his parents. With the way things are today its almost impossible for a kid to pick something up and not read about drugs or violence. So if you were to go through and take everything off the shelf that mentioned drugs or violence then there would be nothing left on the shelfs for kids to listen to or read. Your not going to be able to catch every single movie, book, magazine, or cd that has something to do with violence or alcohol use. But you can take some of the stuff that has alot of that kind of stuff in it off the shelf. By just taking some of the materials off the shelf that contain stuff that @MONTH1 seem inappropriate for children will deffinitly make a big difference and it could possibly protect your child from reading across it someday when he or she reads a book and sees that or listens to a cd and hears the artist metion something about that. Game designers are now starting to make all their games around violene. So if you were to take all the games that have violence in them and take them off the shelf there would be no games left for kids to play. So there are just some things that contain violence that you just cant keep your child from seeing at one point in time. All the games have a rating on them so you should have an adult check that game rating before you let your child get that game. By doing that you will be able to somewhat controll what your child will see and it will also make it better because then you are not taking games that other kids might like off the shelf and making them no longer available. So I have pretty much covered about how who ever is in charge of the games, books, movies and cds should look them over and possibly listen or look at them just to see what they are like before they put them out on the shelf. You dont have to censor everything but there are deffinitly some things out there that should not be put out on the shelfs for little kids to look at or listen to. And if a little kid wants to get a game a parent should have to look at the game and the rating of the game to determine if that child is mature enough to handle what goes on in that game. But overall I personally dont think that they should just go through and ban everything from going on the shelfs it should be up to the child to determine if they can handle what that movie or book contains" 3 3 3 3 3 3 +3576 2 "Do I believe that some books should be taking off the shelves if they are found offensive ? Well what do you think ? I think they should depending on cause or what degeree of the party being offended. I feel if there are books ,movies,or music that are saying or showing a form of insluts then it depends on who is being offended. If you have a racist book against all races like blacks,asian,or mexican etc... other minorities @MONTH1 find out about those forms of insults and they raise an issue about it, then yes take it off the shelves. If you have a confrontation about it then it could get violent . Also, if you dont then they could sue you for racism or make it public to everyone that you are a racist library and you would loose business. So to avoid all of the fighting and lawsuits and other humiliation against you and the other minorites. If they bring up a situation then just take it off the shelves so you can stay safe and them as well. Plus , they only come here for an oppurtunity to start a new life cause usually they're coming from poverty srticken towns, homes countries. I myself, am not a racist person I think that we are equal just unique individuals we're all unique in our own ways that is what makes us who we are today." 3 2 3 3 2 3 +3577 2 "Many people have many different thoughts and beliefs. Some people @MONTH1 believe that a movie or song needs to be removed, but others @MONTH1 disagree, and nobody wants the things they enjoy to be taken away. If there was a book on a shelf in a bookstore that you didn't agree with and thought should be removed, and you removed it, then you are taking away from someone who @MONTH1 enjoy that book. If everyone removed things from life that they didn't enjoy, then there would be very little to enjoy. For example, I personally love horror movies. I love the thrill you get from a horror movie and how they can make you jump even though it's just a movie screen. I'm sure there are people in this world who think horror movies are wrong. If those people were allowed to just remove them forever, I, and many other people, would be sadly dissapointed. I also love video games. Video games are a huge part of my life, and I know for a fact that there are people who highly disagree with some of the content of them. If people could take video games away because they didn't agree with them, i would be crushed. I am also aware that people @MONTH1 just be worried about their children watching movies, listening to songs, or reading books that are not appropriate for them. I understand that the parents want their children to be supervised, but removing the books, movies and songs is not exactly the answer. Movies and books can easily be censored. Many movies and songs have language filters and some movie programs now have parental options that allow the parents to decide what movies they want to allow their children to watch. Parents can also supervise their children when they download music onto an ipod or phone, and depending on where they are bought, books and magazine's @MONTH1 require parental consent. Video games also require parental consent depending on the rating of the game. We can't just go around removing everything we dont like, because it is not fair to those who @MONTH1 like it. We live in a world with many different ideas, thoughts and beliefs, and we all need equal right to share them" 4 4 4 4 4 4 +3578 2 "Today in society there are many things people have different views on. They can be religion, race, or brought up in a different way. Today in libraries there are many books of all types. They can relate to all different kinds of people. If one book is discriminating against another indivual is this right? I think the libraries need to stay the way they are and leave things the way they have had them for different reasons. First off, no one is the same, what might be bad to someone else can be good to another person. If someone simply doesn't like the context of a book, movie, or even music ect. They don't have to read,watch,or listen to it. Since no one is the same what someone might not find appealing can be amazing thing to another person. Second, this can be there for purpose. The @LOCATION2 wasn't always a equal place. If there are books that talk about the discrimination on other races I think it's simply showing history. If we didn't have history to look back on we wouldn't be able to see how @LOCATION1 has progressed. From slave states to all free states. I think it is important for material such as that to be left so it can looked on upon. Third reason, is a library is suppose to consist of these different things such as books, movies, music ect. If we were to take everything out the libraries that comes off offensive it wouldn't be a place were you could find things that you wanted. It would probably be a boring place. If theres no variety in a library I don't see how it can be called a library. You can find whatever your looking for in a library whether its on how to do hair to the hitsory of the @CAPS1 @CAPS2. In conslusion, these reason make up why libraries should stay the way they are. One is because what might be offensive to a ivdivual might be different to someone else. Second, it would take a lot away from history. Thrid, it wouldn't make a library what it is today. These are ligetament resaons why it should be left alone" 4 4 4 3 3 3 +3579 2 "In our public libraries we can find books that are related to slavery, drugs, gangs, prostitution and violence. Theses books all have history in them of our past. We cannot, as a society, forget our past because as many historains say, history repeats its self. If we start censoring our libraries then all that history will be forgoten, and/or lost. Libraries can help us in many different ways. They help us with school projects, bussiness projects, and libraries better our knoweldge as a person. You cannot go censoring the libraries just because someone finds a book offesive. The stories of slavory are still taken offensively amoug people @DATE1, but if we start taking stories about people who have been enslaved and hide them from the poeple, we will slip back into that terrible past. There are gang stories of terrifying people, such as @CAPS1 @CAPS2. He killed many people, destroyed many shops and probably even sold a lot of drugs. We need history to show our weakness as a nation and not hide because of this weakness but thrive on it to better our cities, better our police training, and most importantly, better the next generation of kids to be raised better. There is more than just books at the public library, there are movies and documentaries of our nation and the @CAPS3. Movies that talk about @CAPS3 @CAPS4 @NUM1 and @CAPS3 @CAPS4 @NUM2. These types of movies can show how horrifying @CAPS4 really is and how cruel people can get. During @CAPS3 @CAPS4 @NUM2, there was the @CAPS9 where six million jews lost their lives because one person, @PERSON2, did not like them. People made movies like those to show the @CAPS3 how devestating man can be but people have made movies on amazing discoveries and amazing places. For example @PERSON1. One of the greatest findings amoug the @CAPS3. Music can also be a good way to better ones self. If you play an instrument and you need music to play to, why not go to the library to get some? You dont have to worry about payin for a @MONEY1 cd and you can use it until your done with it then return. Then with how advanced our technokwledge is, people can get cd's to burn on to a computer and put on their ipod or @NUM4 player. Plus the library is a good place to just go look for music you like. So, should there be censorship in our libraries? NO! There should not and the key reason as to why is because it is history. History of our country, history of our @CAPS3, and history of sad and hard times. Instead of censoring our youth of @DATE1 from history we need to set age limits. Young people of a certain age can not read certain books unless they are with a parent or gaurdian. That is one simple way to keep our kids from readin to mature thing but still able to get the history he/she needs because as historains always say, history repeats its self and as a growing nation, we need to better ourselves in every way possible. The answer to that is through our history." 4 4 4 4 4 4 +3580 2 "I dont think books that would affend people should be on the shelf. some of the books that maybe on the shelf @MONTH1 hurt some ones feelings. But i also think people should beable to read what they want to read. many people wouldnt read a book that they think would affend them. There are many kinds of books not all book will be bad or affend people. but books that are not apropriot for young kids or teens shouldnt even be in school librarys. In public librarys i think it should be ok to have every type of book. and have different books in different place's. like haveing the young adalt section and the adalt and children section. I think screton books should be sold in book stores like i dont think they should have inapropeiout books in children book store's. They should have a different store for certain books. And parents should monitor what there children are reading and take part in the book by helping them understand what the book is saying. There are lots of parents that dont really care about what there kids read, and to me that's there busness but my apenioun is that they shouldn't let there kids read what they want. Parents should be with the child when he/she is picking out a book. But if it is a teen @DATE1 and older, i think they would be old enough to choise what they want to read. by the time they are that age they have matured enough to read and understand things much easer" 3 3 3 2 3 2 +3581 2 "Hi im henry and I agree that if there are books in a school libray or a public libray that are offensive they should be removed. im a type of person who belives that offensive books shouldnt be in librays because i ahte seeing people upset or mad because they read a book that effened them. That inclues magazines and movies and even music. myself henry has read a few books that has effened my self or has made fun of black people and i have black friends. if I could have it my way i would have all books like that out of school librays and public librays. And i say that because little kids dont need to be reading that kind of stuff and neither do we. thats just like music now days you turn on a radio station and people are cussing and making fun of other colored people. Also you cant understand what there saying half the time. They need to put on music that u can understand that doesnt have cussing in it and that you can understand because some kids like to listen to music. magazines, I look at alot of magazines my self but there all like coonhunting magazines or four-wheeler ones lookin for tires or somthing like that. but yes also the bad magazines need t go to that way little kids arent looking at them. also it mite help some crime to stop to. I say that because people look at magazines that have shooting in then and that have crime in them to. So people see that and there like i wanna try this somtime. so then they call there buddies and say lets try this and most of them do then there in trouble. so i think that it would be helpful to get all the bad magazines that were made and throw them away and things mite change. make some that have like cartoons in them and comics for the little kids. you could even try and make some good health ones that advertise good health for people and teens. To me things would possibly change if we get all the naughty things out of book,magazines,music. Movies, this is a big one just about all the movies are bad. There are some good ones out there if u look. but i dont know how we could change the movies by anycahnce at all. That was my opion on things. i hope it all makes sense about how i feel and how i think about things." 3 3 3 2 2 2 +3582 2 Why censore something that someone worked hard on? People put up money and countless amounts of time to write this and yet you want to censore it.See there is honestly no need to censore any thing in the library because there certain sections for certain people therefore this whole conversation shouldnt be going on in the first place.People just like to knit pick about what they can not handle for instense like the word nigger i dont like it at all but i can handle it and therfore i just shut my mouth and suck it up.So I just feel like all the critique and all the imature people just need not to read or dont go to the library but thats only me though.So stop acting like little children the authors want their stuff on shelves and not being banned and raved and ranted about alsoIn conclusion stop being imature and if you dont like it dont read it. Always think to yourself about what your doing before you decside 3 3 3 3 3 3 +3583 2 "I do believe that certain materials such as books, movies,magazines ,etc should be removed from the shelfs if they are found offensive. I think offensive books movies music and etc should be removed from shelfs becasue that is basically encouraging young children that if they see something innoproperiate its okay to watch . I would not want my brother or sister to watch, or see anything thing that is not approperiate. I remember there was a time I was thirteen years old and my mom and step dad at the time did not agree that I should have @PERSON1,@CAPS1 or @NUM1 on my television, They thought that I was too young to be watching what was on @CAPS2 and it was innoproperiate in their opinion. I disagreed with that, I thought I should have the right to have watch it because I liked the shows and they were interesting to watch. Everything that was on @CAPS2 was not as bad in my opinion. When I would watch music videos on @CAPS1 every song that was being played was the edited version. I had to argue and prove a point in why I should have @NUM2, @NUM1 on my @CAPS2. Parents all have a different opinion in what is good and what is bad for their children. In my case my mom did not want me to watch anything that was bad. She knew what it was like when she was young. She thought that maybe i would think what i see on @CAPS2 is not a bad thing . I was thinking to myself that oh well i am young and i will eventually learn in the long run from what is good and what is bad" 3 3 3 3 3 3 +3584 2 "TAKING THE @CAPS1 TO @CAPS2 Everyone will read a book in their lifetime at some point in their life. The author cannot filter through the entire book to remove offensive language, racial remarks, slurs, etc. One offensive to a person @MONTH1 not be offensive to another. I strongly disagree that books should be removed if they are found offensive to a specific group, person, or community. Most books are organized in categories by maturity and genre. The reader should know where he/she stands among these categories, so they will not be offended. Maturity comes with understanding. Books are sorted by genre. Most, to all, times the @CAPS2 takes from the genre. The era of when the book takes place is also a key factor. When @CAPS2 an author must take this into consideration. If the setting of the book was in @NUM1 A.D. the author would not want to use grammar from the present day. The reader should be prompted on what books they @MONTH1 read before doing so. From one reader to another, taking the @CAPS1 on what we read is the real solution. Maturity comes with understanding. If the reader is mature enough to understand the @CAPS2 then the book corresponds with the age of that child. This is why I strongly agree that books shouldn't be removed from shelves if they are found offensive to one person, group, or community" 4 4 4 4 4 4 +3585 2 "Should we take off books that are offensive? I think that we should not take them out if they are offensive. If we do take off the offensive stuff off the self then there are not any more on the self. If all of us could take off the book, movie, or music that in fensive to us then there will be no books, movies, or music on the self. First off all, there will be no war books, movies, or music on the self. All the hippys will take the war stuff off because they dont like war. They will say that it infensive on them on take them off. I think that we should read about war and witch them because it is a good way to learn our mistake. If we don't learn the mistake of war we will lose and we wont learn how we loss and we will go into war over and over again we will win some and lose alot because we wont learn how we lost. Secondly, all the music that are good and bad will be taken off the self. All the mothers that are to protactive they will take them done. It have bad language in it and a bad theme to it. If they take them down how can the football players, solders, and fighters can be ready for the fight if they don't have the songs that they like to listen to and get pump for the fight. Finally, they will take out all thethe books of star wars and forgetten ralms. Some people don't like them because they think that it wont come true and they will take them out and say that it infensives them on there thinking wise. Star wars is a good book and movie and forgetten ralms is a good book maker company. All of this is why i don't want this to happen. All the good music, books, and movies well go away and the people who like them well get mad." 3 3 3 3 2 3 +3586 2 "Everyone person can think of something that we did not like or want to see. If you were offended by that one thing, do you think you should have the right to have it taken away or banned? Or what if you liked the choice of what the place had, but someone else didn't? Should they have the right to take it away just because they don't approve? What if @NUM1 people came into a library with @NUM2 books, magazines, music and movies, and @NUM3 of them did not like any part of the library and wanted every book, magazine, music, and movie taken out? Even if the @NUM4 others loved what they saw? Do you think it's fair just because some people do not approve, that they get to pick? I do not think it would be fair for just one person to be able to have the right to do that. If something is that offensive to that many people, they should be mature enough to ignore what they see and find what they like. If someone did not like your house and said I don't want to see it should they have to demolish it just like nothing? The world would have never ending chaos if people had too much power to change things. It could only get worse. I have encountered problems between people that do not agree on throwing out or keeping it. One solution could be just move it to a different area where if certain people would like to look at the item they could, otherwise have separate parts of a room that are divided into all ranges. If you read this and think to yourself about how many different options you have to get along and not have to worry about offending people you will realize that no certain person should be able to take that one thing that you would like to keep to enjoy and be happy." 3 3 3 3 3 3 +3587 2 Yes i believe that books should be removed if they have derogatory terms in there such as racial slurs disrespecting the race of ANY human etc. but the music part is up in the air because like kids hearing songs with cussing talking about drugs and all that other bad stuff shouldnt because like the way i see it everybodys gonna learn about it somehow and when you hear songs for multiple songs you tend to begin to know the wordsd and if you repeat the words in front of a parent thats when they can step into the aprent roll and tell them that the drugs and words are nto good. Really though if kids pick the book up and are able to read what it says then i feel like they should know right from wrong by then and clearly if someone is using bad language such as the @CAPS1 word they would know that its wrong and if they continue to listen to it thats on them. 3 3 3 2 2 2 +3588 2 If I was to right about to a news paper that are childing should not be looking at book and shoud be tacken off the shelf. The reson I say that is so are cirlden are not geting ideads from a book that is not aproprit for them. I thank that is the mane reson there are more girls geting pragnit at a young age. I thank if we were to tack off the notey book there would be less girls pragnet. I realy thank it could work if we would tack all of the notey books off the shelf and mack it a law that you hade to be a sherton age to look at them. I would like to see a chang in the way we look at notey book. I thank you should be @NUM1 to look at books that are notey. It would be a good thang to try for a wiyel. I thank it woukd work because it would not been showin to are childer and they would not whant to have babys as a teenager. This is the way I thank it should have been done in the farist place. We would not have so miny probloms in the frist place. The than is I thank thay not thak it well be to hard to race a chiled at a young age. If we would not have to see thans that we shouldent have seen. 2 2 2 2 2 2 +3589 2 "Censorship is a growing problem is today's world of literature. Censoring does not always allow the author to thoroughly convey his or her ideas as they were originally intended to. Katherine Paterson says that if were all aloud to eliminate things that we thought were wrong, then there would be nothing left to be right about. Censoring leads to an ignorant, opinionless, and clueless society. In the novel '@CAPS1 @NUM1' censorship is one of the main themes of the story. Bradbury portrays the burning of books as the way of ending all controversial opinions. @PERSON3 finds that the burning of books has lead the society that he lives in to be ignorant of what is going on around them. The government has tried to rule out all causes of controversial opinions in hope that it would make for a happier society. When in reality, members of the world are not happy and are consistently showing the reader that they do not know how to be happy. @PERSON3 decides that he wants to learn, but he does not know how. The brain is a muscle, if it is not excercised correctly, it becomes weak and useless. So when he tries to memorize a part of the @CAPS2, he cannot retain what he has been reading. Such as trying to fill a sieve full of sand, he does not know how to learn. The members of this novels society are basically opinionless on what is happening in their world. What they are told on the television is thought of to be factual, and that is what they do all day. In school, kids are being fed fact after fact and are expected to agree with what they are being told with no questioning involved. In a normal society, learning leads to questioning. But for them there is no learning, just accepting. And acceptance leads to contentness, which in the end leads to unhappiness. The society in '@CAPS1 @NUM1' proves to be oblivious to everything that is going on in many different ways. To them, death is not a big deal. @PERSON2 was killed by a speeding car, and @PERSON4, @CAPS4 wife, was not even shocked to hear it. Another example is when @PERSON3 was running from the police, and a car full of rambunxious teenagers attempted to run him over just because they wanted to. At the end of the novel, @PERSON3 is walking along the railroad tracks with his new friends and the entire city is blown to dust by bombs dropped by fighter planes. The city had no idea that this was going to happen, they were clueless to the war that was going on around them everyday! A clueless society is a useless society, and in the end they were destroyed. Censorship lies within the hands of the viewer. Censorship has become such a big problem in the world when there are so many other things people should worry about. Reading about somebody doing drugs will not make a child want to do drugs, it crosses every teenagers mind atleast once. But instead of not allowing them to even realize that it is out there, parents should do what they signed up to do, teach your kids right from wrong and hope that you did it well." 4 4 4 4 4 4 +3590 2 "Do i think that if books, movies, music, magazines, etc should be removed from the shelves just becuase they are offensive? No, i don't think that the stuff should be removed from the shelves just becuase someone thinks or takes it to be offensive. Let's say this ok if we had everybody go and say that this book is offensive, or I don't think this movie should be on this shelve because i think it's offensive or this or that then we wouldn't have anything to wacht, lissin to, or even read. I under stand that yes people do have rights and there believes on something but it doesn't mean that they have any say so on what should stay or what should go. If we let people do this than nobody would be abel to wacht, read, play, or even lissin to for fun. Us people used these thing for haveing something to keep us intertaned. Let's say this ok we all know how littel children have thier emanginashon and they used that to keep them intertaned just like us older people used books, music, movies, and ect to keep us intertand. Well if we don't have this stuff than we would be lost and won't know what to do with out that stuff. Just's think of our littel kids if we take there emanginashon away than they would be lost and hoples because that's how they learn and grow up. We people used this every day use to not onley keep us intertaned but to also help us learn more about what every we need to learn about to survive in every day life. See in ways we are not so diffrent from our chiledren at all realy. they used what every they find or see to keep them intertaned and for enjoiment. If people realy thought about what they are realy going to do by removing something from the shelves than they would regreat that what they did was stupied because now they don't have anything to read, lissin to, or even wacht. I my own self had experience on what it's like to have something like that polled down from the shelves befor and it's realy not cool at all fore that to happen. Takeing something off the shelfs that is alittel bit offensive doesn't meen that it should be tooken off the shelves. I think that if people who took something off the shelves just becase one person thought that it was offensive if wrong and should not take somthing down that maby other people like. I mean just look at what the thing is talking about first and see if it's offensive to you or not and maybe it's something that people could learn from. Taking something down befor even reading it your self is stupied on be hafe of your part becasue maby other people like and maby you like it who knows. I just think that people should realy think befor they go and take something off the shelves with out haveing alote of people giveing you a bad coment on it befor just taking one persons opean on it." 2 2 2 2 2 2 +3591 2 "Offensive or @CAPS1? Who can truely say a book, movie, music, or magazine is truely offensive. There are some of the obvious movies that completely make fun of or taunt someone's personal views as a religion or lifestyle but is a book about a wizarding world really that offensive? While growing up I had a friend who was very religious. Her parents would never let her read the @ORGANIZATION1 books by @PERSON1. At the time I didn't understand why she wasn't able to read such fantastic books. Now that I'm older I understand that her parents believe what is in 'The @CAPS2' and nothing more. Make believe and imagination was @CAPS1 a suitable thing fpr their child to read. For many families, though the @ORGANIZATION1 @ORGANIZATION1 series is nothing but a different world in which they can set themselves free from the real world. Should a book that many people love and adore be taken off shelves because some families are offended? I personally don't think they should. While my family loves the books and movies some families don't. That is their lifestyle and their opinion. Everyone has an opinion, and if we took out everything in this world that could offend someone we would be left with nothing. Movies would be boring, stories would @CAPS1 be interesting, and there would be no music. If our world was based off of the opinions of others and making everyone happy we would @CAPS1 have music. Music is a way for someone to release their soul. The different sounds of music are based off generations. My mother's generation was based on @CAPS3 @CAPS4' @CAPS5 and mine is of @CAPS6, @CAPS7&@CAPS8, @CAPS9. So what would really happen if all the offensive materials were taken off the shelves of a public library or say a @ORGANIZATION2. The shelves would be blank. Empty shelves would be a horrible look. Everyone is offended by something. I'm offended by the rape scences in movies but some people believe in some situations it makes a movie better. My friend's family is offended by the make believe world of @ORGANIZATION1 @ORGANIZATION1, and I believe that some where out in our world there is another world, a wizarding world as a matter of fact. People believe in many different things and like many different things. I've never met one person who is exactly like me, because there is @CAPS1 one. I'm an individual like everyone else and if the things I liked were taken off a shelf because someone was offended then my life would be boring because I wouldn't have the things I enjoy. In some cases some offensive things should be taken off shelves but who am I to say it should be, because there is someone out there who believes it should be on the shelves of @LOCATION1" 3 4 3 4 4 4 +3592 2 "As said before there would be no books for anyone to read if everybody removed what they felt was offensive. The libraries would have a very watered down material base and there would be no reason to use this place anymore. Some material is not suitable for young ages there is much from advanced material that can be learned; thus the libraries should sperate their books only as they do already. Some material does seem to advanced for others but these materials are needed to advance academic gwroth. Some people should think that school should not read @PERSON1 due to racism in the south. This was true history so there should be no restrictions to that sort of book. If there were those soprt of restrictions then schools would lack much of histories best literature. Just as the movies do for the gerneal population, @CAPS1 is for @NUM1 and up while @NUM2 is for @NUM3 and up. These are good standard that keep the youth from seeing what they are not yet ready for. This concept should be used the same way in these libraries where there seems to be a problem.Yet this is already done in libraries. There would be no reason to break these sectiopns up more then they already are broken. There is the young adult section, adult, and youth. Those are the main catagories that most perople want sperate due to offensivce material such as drugs, sex, and alchohol. Much of the media that is public today is censered and that benefits much of the youth, but there is a point where the public needs to realize that sheltering the outh can stunt them academically" 3 3 3 3 3 3 +3593 2 "Are books and other things found in libraries offensive to some? Why is it offensive and how is it offensive? What should be done about the books, movies, magazines, and movies that are offensive to some of the people? In my opinion there are some books that I could think of that are offensive to others for particular reasons. Some reasons @MONTH1 include: the put down on races, comments in the book, how the author wrote it and who it was written towards. Others find some books, music, magazines, and movies offensive because of the terms people use. Some people just get offended because they think it's directed toward them, and they take it personal. Music can be offensive to some people becasue of the language they use in it. They might look down on it because their children @MONTH1 listen to it, and children nowadays say things they here from music and try to be like the person saying it. Movies can be offensive because of the language, violence, the way people are treated. A good movie would be @CAPS1 @CAPS2 @CAPS3. It has violence, language, and people are treated in a harmful way. But overall the movie teaches you about war and the things they've gone through to get our country to where it is today. Magazines could be offensive by the words used, such as slang words, cursing words, and violent words. The magazines could have nude pictures of people and most parents do not want their children getting ahold of things like that. Overall, I think that any of these things could be offensive to some people, and probably are, but they shouldn't take it off the shelf because it's offensive to some. If you'd look at it in a certain way everything in the library could be offensive to someone, and if the case is take everything that's offensive they might have to take everything that's in the library. So, I do not find it right for them to take away things that are ofensive to some people. If it offends you then don't read it or listen to it or even look at it, no one is pressuring you to do it, you do it on your own. So therefore it's not right to take the things off the shelves just because some people do not like it." 4 4 4 3 4 3 +3594 2 "Censorship? What is it? Well from what i know cenorship is where you are blocked from certin things that you are not able to ever bring into the place that blocked it. So the question is it wrong to censor something or not, i think that libraries should be able to censor certins things that people find offensive. First reason why i think it is right that people should be able to censor things is becuase little childeren could be able to take at peek at what they shouldn't be looking at, when it comes to magazines and also movies. Next reason why i think labraries should be able to cenor is because people can find centin things offensive just as music, for example like vulgar language can be listened to and aslo also naughty things can be watched in movies. My last reasoning why i think it is fair that libraries are able censor things is beacuase some people like to read but in thier reading can be bad things that they find offensive and they can always find a way to take an item out from a labrary. These are reasons why i think they should be able to censor books, music, movies, and also magazines. My first reasoning in why i think it is fair that libraries are able to censor books, music, movies, and magazines is because little childeren could be able to look at things things they should not be able to take a peek at. Thses things could be like pronogaphy, and also really grusome things in magazines and in movies. If these things were in labraries they can possibly show other childeren, inwhich it would not be good. This can be a problem beacuase parents can put the blame on the libraries by saying that the workers didn't do a good job at watching out for the children. Also i think think they should be able to censor movies beacuse little childern shouls not be watching gursome movies at a young age. This can really hurt them and others if they learn and see what is on this movies and magazines. Also labraries can censor music. I also think libraries can censor music beacause in music these days there are very bad things that any body can find that is offensive. Little childern can be listenig to vulgar lyrics that are in the songs and they could be repeating it to other people. This can be bad in many ways because first of all they might not know what they are saying, so if one day they say it to an adult, that adult can put the blame on the library owners. Also they should be able to censor movies again beacuse naughty things can be shown in those movies that certin age levels should not be able to see. These are ressons why libraries have a right to censor music and movies. They aslo have right to censor books. Books in they libraries are great but some books should not be able to be in a library, certin books such as books about faith and other religions. And also about gursome items. Some people can find books about religion and faith to be very offensive because some people @MONTH1 not see eye to eye about other religions. And to minimize this problem libraries can take these books out so peolpe won't find it be offensive. And also libraries should be censoring certin books about death because it can really get to a person and they can show other people that will find it very offensive. So this is why i think libraries should be able to censor things. In conclusion libraries should be able to censor books, music, movies, and magazines, because in some books they can have religion problems and problems with death, movies beacuse in some movies it can show pronography and gursome things that peopel should not be watching, and they should be able to censor magazines and music beacuse in magazines childern could be looking at certin things they shouls not be looking at. And they should be able to censor music beacuse peopel can be offended if they ever listen to vulgar language. So in other words i do think libraries should be able to censor books, music, movies, and magazines" 4 4 4 4 4 4 +3595 2 "Libraries are for children, and adults of all ages. Because all people have different views on life, different beliefs, and different feelings, @CAPS4 makes @CAPS4 hard for libraries to please everyone. There are also different genres that people enjoy reading. Some @MONTH1 enjoy romance and comedy, while others like to read action books or mysteries. Today, libraries have sections dedicated to different genres of materials. They have kids, fiction, informational, and many more. They also have different areas where you can find movies or magazines. But, if there are magazines, books, or movies, that should be viewed only by certain ages, the library should put a warning sign in the areas where those materials are located. On the back of movies there is a rateing on @CAPS1 bad the movie is. Why not put a rateing on the back of books and magazines? This way people can know what to expect if they read @CAPS4. @CAPS4 would also help them decide if they even want to read @CAPS4. Rateings on the back of magazines and books would help destinguish what age is appropriate for @CAPS4. Once, when i was visiting the library, there was a man in the check out line, right before me. @CAPS3 was returning the book that @CAPS3 had just read and checking out the new one @CAPS3 had already picked out. When @CAPS4 was finally his turn in line @CAPS3 stepped up to the counter and explained to the sweet, old, lady at the front desk, what @CAPS3 had wanted to do with his books. She simply understood that @CAPS3 wanted to check out and return one. As she was checking him out she was making small talk and asked, '@CAPS1 did you like your book, @CAPS2?' @CAPS3 replied ' @CAPS4 wasn't what i expected. @CAPS4 was completly inappropriate. ' As they disscussed a little more @CAPS4 turned out that there were tons of curse words throughout the entire book. This is one example of @CAPS1 people don't know what to expect when they read a book. I don't think that libraries should remove materials off the shelves that people have complained about. They should simply do something to let people know what to expect when they read the books, magazines, or movies. Some people @MONTH1 not mind reading a book with a few curse words here and there, but others @MONTH1 find @CAPS4 outragous. Libraries spend their money to buy these books for the communities. Why take a book off if only a few people find @CAPS4 offensive? No one makes those people read those books, its by their choice. Libraries need to figure out some way to reasure people that they will enjoy what they are reading and not be offended by @CAPS4" 4 4 4 4 4 4 +3596 2 "Should They or Should They @CAPS1? What do you think? Music, books, movies and many others have been questioned either about there apperence or what they say. Most people bring up the fact that young children should @CAPS1 be hearing this or haveing to read about it at such a young age, but the children have ideas of their own. In my personal opinion i do @CAPS1 think that they should have to be taken off the shelf or from being sold. What does everyone else think though? Is it a bad idea to keep them up and let the kids learn about it at such a young age or does it help teach them @CAPS1 to be like that? One of the main reasons why I think it should be left alone as is so that the children can read it. They must learn the good from the bad sometime. Its better that children learn at a young age and just trying to keep things from them will make them want it more. Lets use music for example, some music is nothing but screaming and cursing. In real life though alot of kids have to listen to there parents fight and yell. So, why dont they get the choice to listen to it whenever they want to? There are also the bad things to keeping them out on the shelvs. As a mother and also a teenager I feel like as if I should have the choice to do as I please but at the same time there is no way I would ever let my daughter hear or read some of the things I do. That get me to my next point. If you really have a problem with some of the things out there why would you let your childern get it. As being a teegager I would go out and buy a lot of music I shouldnt be listening to, but even if my daughter was @NUM1 there is no way I would let her get it. After all I am the parent right? I have every say in what my daughter can and can't do. So do you over your own child. If other parents have no say in what there child gets just because they don't care, well thats @CAPS1 your problem. There should,however, be age limits on what some are allowed to get parent permission or @CAPS1. Books with sex scenes and murder should @CAPS1 be allowed into they @NUM2 year old books. Sure, teenagers think they know it all but they still shouldnt be allowed to read something that adults do. Most @NUM1 year olds don't hear about all the drugs, sex, or teen prganacy. As much as they should get information on it, have there parents pick out what book they should read to find out about that kind of thing. I think that in every library that has sexual books and alot of curse words should be put in a specific location that only adults can get to. Video games have to put an age limit on things so why shouldn't books have to have the same exact thing? The only reason they have'nt done anything so far is beacuse @CAPS1 enought parents care.This is your chance to get up and show them that you want to make a change, that you won't let your kids hear about things without your knowing. This brings me to my conclusion. Where are the parents out there? Why arn't you stepping in and showing people the right way to live? Make your nearest library have age limits on what the little young ones can read. See if the books you are letting your son/daughter check out are age worthy or @CAPS1. Last but @CAPS1 least try to talk your libraien into makeing groups of books. Some for the youngre kids some for the older. Woulnt kill for you to put your say in and try to get this kind of thing under control and @CAPS1 just removed. Why remove other people's interests when you can just put an age limit on it and @CAPS1 let your child get a hold of it. Today is the day!!Make a say!!" 4 4 4 4 4 4 +3597 2 "Some people think that offensive books should be off the selves, but some other people think that this should not be allowed. I do not believe that certain materials (books, movies, and magazines. If we take evey book off the self then we would not have any book to read. If we start taking offensive books off the self then every body coming in would be taking @NUM1 books off the self. Then with in two days there would be not books left. If we do not have any books then are eyes would be bad. We should not take books off the selves because of some people like to read. If people do not like the books in the library then they should not go to the library to get books. This is why people should not take offensice books off the selves. This will make peoples eyes so bad that they would not see good at all." 2 3 2 3 3 3 +3598 2 "Reading it is a joy to some and a pain to others. Do I think objects in the library with offensive details should be cleaned up or taken off the shelves? There are some things that could be censored, and others that wouldn't be worth using if it was censored. However, yes I do believe that there are items in the library that could be censored. I am going to tell you why they should be censored, and what should be censored. The types of items in the library that shouldn't be cleaned up. A perfect example of those items are historical documentaries or historical books they have no other way to get the information needed across to the reader or viewer. There are other types of library items in the library that could be censored. Like there are some magazines and movies that show uncensored scenes or pages that are not need to make a view across if there even is a view to get across. I think a movie, book, or a magazine should only be uncensored if it is trying to get a point across. If there are uncensored items not getting a point across then they have no business being in the library. As people can see library there are circumstances where a book, movie, or magazine uncensored is very useful in getting information. There are more circumstances where a library item does not need uncensored details because it is just offensive. If you ask me if I think censorship is important in libraries than I would have to say yes and no. I just gave you some reasons why I would say that. The next time you are in the library looking for a book ask your self one question is it to offensive to be important." 3 3 3 3 3 3 +3599 2 "Have you ever imagine goin to the libary and getting a magazine from the shelve and you find it offensive and you cant do anything about it? Well now you can say what ever you want because Katherine Paterson and me when to a libary together we pick out magazine from the shelve and it had alot of offensive stuffs we did not like. We went to the lady infront and she dint even knew this magazines where there. She got really mad and when back to the shelve and there where alot of magazines with offensive ritting, pictures and even comments. We got all of the magazined anf threw them away. In my own opin i think these kind of things thar are offensive like movies, music, and magazines should be remove. They should be remove because it a bad influence to the younth, and it gives them a picture in there head and they do it later or maybe say it to the plubic or even so it in there homes. They should be remove because its getting alot of people in to trouble and making them do what they see of it, this is getting to kids and they becoming more violent to there school, friends and even moms. We have to remove all of these offensive stuffs becasue we see these every where and its easy to find like in the movies it getting to the piont where you see naked girls in every movie. The parents have to do something about it to because they are the one who are buying them and then leaving it every where in the house and its easy for the children to find it. We have to be more care full about what we but or what we read because you can find it offensive and then your kids @MONTH1 read it and they would think another thing. So next time you buy or go some where and you find some thing offensive talk to the manager or the supervacer about taking it off. That why i think they should be remove" 3 3 3 2 2 2 +3600 2 "Parents should tell their kids what they are allowed to read at certain ages. That is where my opinion will start, and tell why it is that way. I will talk about why I disagree with this statement. Also, give reasons on why i feel this way about the statement. I really think that anyone should be able to read the kind of books that they like. The library is where they get the books from. So, just because a parent does not want their child to read a certain book doesn't mean that the book shouldn't be there. I think that parents need to tell their children why they do not want them to read a book. If the parents explain, kids will understand why it is not good for them. Those type of books are what older people like and they are very interesting. I think if people understand what the book talks about and if it does not bother them, then they are old enough for it. Also, the young kids that should not be reading these books should have and adult or guardian with them, therefore they can stop the kid from reading something that is not appropriate. Something else that will bother many people is them not being able to get a book just because parents do not like it. This is taking a right away from us, and we should not have to go buy the book and only read it once. If these books are so horrible than why would people still be writing them? So, if they have not bothered people that bad yet then there is no reason for people to not like it now. People should be able to do what they enjoy and not have that taken from them. This is my opinion of the statement. Many people @MONTH1 not agree but I just tried to make people to see my point of this statement. Then everyone can help stop people taking things away from the community that makes them happy. Also, I hope people can still have their rights and not let a couple people take it away from them." 4 4 4 4 4 4 +3601 2 "Television, news, drama, life, and controversy. These are just a few of the things books are written about. Some subjects are considered to be vulgar and innappropriate for young audiences. Many people believe that their children have a right to learn about all the things books can offer, but is that really such a good thing? Books have been an important tool for students for a long time. However, not all books should be considered appropriate for all audiences. Stories about knights and princesses are great for young people, but other stories about the darker sides of life are normally kept away from the hands of children. Books are censored for all sorts of reasons. Some of these reasons are frivelous and should not keep a book from reaching it's full potential. The truth is that there is a line that should not be crossed, and some books cross this line, and are banned. Great. However, some books do not 'cross the line' and are banned regardless. Honestly, careful consideration must be taken before the decision is made to ban a book or to leave it on shelves. If a book is written with only minor obscenities by a recognized author, and it is banned, then the author faces no serious pressure as the banning will be well known and consumers will still purchase the book just for a chance to read it. However, if an author who is relatively unknown writes a well-put-together piece that contains a few spots where the author @MONTH1 have made a somewhat vulgar reference, and the book is banned, the author is in serious trouble. This author can no longer have the luxury of having their book in libraries so that their work @MONTH1 be recognized. Banning books is hindering authors everywhere from being able to make a name for themselves. Books that are especially vulgar should definitely be banned. No child should be reading a book that has an intended audience of purely adults. Children should be protected from such material, and book banning provides this service. If a child has a burning desire to read a book, they can simply ask their parents to buy it for them, assuming the parents agree that filthy books should be okay for children to read. If a book can provide good discussion in a classroom setting, and is mostly 'clean', then it should certainly be available for everyone. Just because a book contains a few areas where innappropriate references are made doesn't mean that students shouldn't be able to read the book. If the learning material a book offers 'outweighs' the negative effects the book @MONTH1 have on a student, then the book should be available for students to read. However, because one cannot effectively compare knowledge and harmful effects, this is a difficult statement to make. Honestly, it is too difficult to say whether small problems in a book should be considered vulgar enough to ban a book. Many books should not be as available as others, but using a new system to find which books to limit would be too difficult, and keeping the current one would make more sense than any other alternatives. In the end, a system that caters to the most sheltering of parents is the best one." 4 4 4 4 4 4 +3602 2 "I believe there should not be censorship in libraries, because if some needs to read a book about somthing and the library does not have it beacuse they do not believe or like what the book as to say it makes the reader not know what actually. The very first reason in believe there should not be any censorship in librarys is beacuse a lot of student go there to study about papers.So if the library does not have the book that a student is looking for the library is failing its maine purpose. The sencond reason is that if the person in chage of the library does not like a book that does not mean he or she has to read the book books are ment for any one and everyone to read. Then the third is that a library is ment to have books so people can read them so if the owner takes the book out and some need that one book and the person can not get the information that they neeed out of that one bookthe library is faling its maine purpose. The fourth reason is that alot of people read books to read about something and just beacuse he or she does not like what the book has to say does not give them the right to take the book. Those are the three mane reasons i think librays should not have censorship. The owner of the library should have any book possibel and should not shose to not put a book in it beacuse he ore she does not like what the book says." 3 3 3 3 3 3 +3603 2 "I am neutral on this subject because it does not matter to me whether they put new books, movies, music cds, or magazines on their shelves or if they take them off. Also it does not matter to me if I have to pay for the things that I check out from the library. Also it does not matter at all if I had to pay a late fee for the books that I checked out from the library. Also I do not care about any noises that go on in the library. Also it does not matter to me what kind of books they have in the library. Also it would not matter to me how the library is run. Also I would not care if I had to be quiet in the library it would not matter to me. Also I would not care how long that I would stay in the library. Also it would not matter to me if I walked or drove or rode my bike to the library. Also I would not care if the policy in the library was not the right way to run it. Also if I got kicked out of the library I would just go to another one. Finally, it would not matter to me if I got ten books or movies from the library I would not care. Thoma" 2 2 2 2 2 2 +3604 2 I think that the books sould not be removed because people know what they are reading and if they dont like the book they sould leave it. There is no reson that the people would whant to remove any book for any reson because alot of people like different kinds of books If they would remove any books they would be alot of people mad because those people mighit of really liked that book and wanted someone else to read it. That book might of also been in there family for a really long time and they want everyone in there family to enjoy that book. It would also not be good to remove a book because if they remove a book they have to get more books and that would cost more money to get more books it will also waste more papper. Another reson that it would not be a good idea is that if you get another book replace the old one the people might not like the new book and the place where they have the book at will lose money and will not be good for them. So thays what I think would be my opinion about removeing a book it would not turn out very good and the book store will lose alot of money because they got rid of a good book and broght back a reallty bad book 3 3 3 2 2 2 +3605 2 "Censorship in Libraries Censorship in libraries is a big problem in today's society, many people get angry at libraries and markets because of the items that they have on display for the common consumer. If the consumer walks into a library and is looking for a book to read. What if they come accross a book from the early @DATE1's? In these times there were lots of words used that are 'harmful' to our people today, but what most people dont understand is that, these words that are harmful had different meanings in that time in history. So when someone picks up a book and finds harmful or un-appropriate words or phrases in them, they instantly get the wrong idea about the book. And then, this small group of people who dont like this piece of literature, go agains the vast majority of people who really do understand the literature, and the feeling and dialect of the book. That is where i am going to explain to this small group of people, a few details that they should keep in mind when trying to rip a book off of the shelf and throwing it away. When someone goes into a store or library and starts to look for a book, they @MONTH1 come accross a piece of literature that they dont completely agree with. When this person comes across this piece of literature, all they have to do is put it back on the shelf and move on. Nobody is forcing that person to read this book, so why make a big deal about it? Because most people who make a big deal about some of the word usage in a book, dont quite understand the dialect of the book, or the time period the book was written in. If you do not understand the literature completely, then i ask that these people do not make a big scene out of it, and that they dont try to revoke the author's rights to have that piece of literature on the shelf. Authors have just as many rights as we do. If they write literature. A poem, novel, or even a short story, these authors have the right to have it published and put on the shelf. So why would we not have the same rights? If we dont agree with some of the literature that are being placed in our society's schools, stores, and homes. Then we can write a novel, newspaper article, or even make a website about your topic. You can make web polls much more. This is a more indirect approach to removing a piece of literature. If you want to have a better chance of this book or novel to be removed from the shelves, you can use a poll or have people vote, to recieve other people's oppinions, and use these in your argument. If you have more than one oppinion on a subject, you @MONTH1 have a more likely chance of winning your argument. And this will cause a lot less chaos and attention to be drawn to yourself and others around you. Another reason why i dont think that people should be able to choose what is on the shelves of libraries everywhere. I do not think that anybody from anywhere shoudl be able to come into a library and take a piece of literature off of the shelves forever. Because, in todays society, we have researchers going all of the time, and we have so many people working on different theories and laws. So if we take one important book off of the shelf, maybe a book written in the @DATE2's about evolution. And we get rid of all of these books, what will happen when we really need that information? These scientists @MONTH1 need that piece of literature to test a theory, and if that piece of literature is expelled from the shelves, then we could miss out on a large variety of major information that could help out someone in the future. So the more information we take off of the shelves, the less we will have in the future to help us will our problems. So, now that i have told you all of my opinions on this subject, i hope that you will have a better view on the cencorship of libraries everywhere. And that maybe someday all books and pieces of literature will be able to remain on the shelves, being endlessly read by consumers" 3 5 3 3 4 3 +3606 2 "Curse words, alcohol, drugs, pornigraphic pictures. These are all things you would not like your children to use, see, or do. They are out in the world and and there is nothing that you can do to stop it. People do drugs and drink everyday, but just because someone sees you doing it doesnt mean they will too. People should not be shielded from the real aspects of life. When shielded as a child they would not know what do to if the chances came to them to do drugs or drink. They @MONTH1 not even know what the right or wrong thing to do is. Kids to a certain age deserve to know whats going to happen in the real world when they grow up and start a life. It won't happen to everyone but they need to know these things. It is important for parents to let their children know what is right or what is wrong. As an adolesent, they are very vulnerable to all the bad stuff that life can bring. Seeing these things in books, movies, magazines and etc. will effect their life in some way. It is their job to show them the right path. A thing that helps these parents are restrictions on the stuff that you are able to get your hands on. On movies there are age restrictions that inable people at a certian age to be able to watch and people that are within those guidelines to have access. With other materials like books, music, and magazines, there is no way to deny access to people to see or read them. Parents just need to be observent to their children and see what they do. Censorship is normally a bad thing, but in others it could help. For people that are more vulnerable to those situations or seeing those things, it could greatly help with some people and show them that it is not right. As much as people should be open and be able have access to this information, it is also important that other people did not see it. It is still an open debate, but, in opinion, censorship should not be done. Everyone had their own right to get and see the things they want" 4 4 4 4 4 4 +3607 2 "In libraries and bookstores worldwide books are written and published with subject matter ranging from odd or inappropriate, to serious or violent. These books are written to target emotions in the reader that spark excitement and humor, horror and empathy among many others. However, though these books are made for a specific purpose, it is sometimes unclear as to how the book is appropriate for the eyes of a young reader, or even a mature reader. These books appear unappealing and offensive. However, though they don't appeal to you as a reader, how could this book be censored without the unanimous disapproval of everyone? Censorship of these books is unjust because of the right of free speech and press, because all subjects are deserving of being written, and most importantly because target audiences deserve books written in their interest regardless of their approval. The first reason that their should be no censorship of novels and works of literature is because writers deserve the freedoms of speech and press. They are aloud to voice their own opinions and write about the subject matter that they are most interested in. Though many times they have used subject matter that is highly provocative or inappropriate, they still have the capacity and the legal ability to write about what they wish. To stop them from writing their own opinionated stories is similar to the censorship of books in nazi @LOCATION1. Millions of books were burned and hundreds, if not thousands of writers were executed for conveying opinions in their work that conflicted with the ideas of their government. Even though there are books not written for all ages they are still deserving of a reader. The next reason that books should not have censorship is because new ideas cover topics that have never been discussed. Books and stories are meant to push the mark of what has been written and what can be written. The variety of literature is the reason why it is so popular. For thousands of years, written text has been a way to understand and connect with cultures and people through written language. And though stories @MONTH1 not be written in a manner that would be appropriate for a child, it doesn't mean that the story shouldn't be written or read. Its use should simply be monitored so that only those capable of accepting or understanding its message are capable of reading it. Lastly, censorship is simply unjust because without it there is a better chance to discuss and attempt to describe stories that target a vast crowd of people. Though the materials found in a story @MONTH1 be horrific to a parent, it @MONTH1 be a preferred form of literature for a different group of people. And to limit the literary subjects that people prefer could be parallelled with limiting a person's voice of opinion. It simply isn't reasonable to allow only a single category of work, with only a few varieties of messages, for only a select group of people. Variety is what seperates a person's opinions, and makes their being different than another's. Therefore, censorship of literature should not be enforced. Writing topics should be open to all people, because whether they are offensive or not they convey a purpose. And because writers have the right to illustrate their points through a literal medium, there should never be a limit on these rights. That is why censorship should never be able to remove a piece of literature from any shelf." 4 5 4 4 4 4 +3608 2 "Well do you think that every book you read, every movie you watch, and all music you listen to is offensive. Who can say what is offensive to everyone? Who can tell you what you think is offensive or not? How can you be your own person if people are making desisions for you about the books you read, the movies you watch, and the music you listen to? I'm going to tell you about why I think that no certain materials such as books, movie, music, magazines, ect., should be taken off library selves because someone finds them offensive. Who can be the ultimate decision maker in deciding if something is offensive to everyone? Everyone has their own meaning of offensive. Everyone thinks that different things are offensive to them. How can you say that one thing is offensive to one person and is also offensive to another person?. I think if one person thinks that something is offensive to them that is ok, that is their own opioion, but maybe the next person that walks by and see's the so call offensive material will love it. You should not be able to make someone elses decisions for them if they want to read an offensive book, watch an offensive movie, and or listen to offensive music that is their chose not someone elses to make for them. If every peson took a book off the selves that they thought to be offensive then we would not longer have any books on the selves. Some people think that certain music, books, and movies are offensive and other people think that the books, music, and movies are cool and interesting so what do you do then? I have learned over the years that not every person will agree with your opinions on everything and you won't agree with them but yet you both still have your own opinions. You both are allowed to decide what you do and dont like. You both get to choose what books you read, what movies you watch, and what music you listen to. So why should we let anyone stop us from being ourselves? You can never say that anyone thing is offensive to everyone because no one person can be everyone. You can't talk for someone else because everyone has a voice for themselves. So do you think that every book you read, every movie you watch, and all the music you listen to is offensive? well you @MONTH1 not but someone else somewhere is trying to take that out of the libraries because they have a negative opinion about it but is that fair?" 4 4 4 4 4 4 +3609 2 "Imagine your child or someone that is very close to you. He's only around @NUM1 old just starting to learn how to be an adult and take on responibliltys. He wants to try new things. He listeans to his friends talking about drinking alchol and how much fun is it. He thinks it sounds amazing to drink. He dosnt no something is bad about it or not. No one every told him. So he starts to drink an dlater died of alchol posing. Now, you dont want this to ever happen to someone who is very close to you. If people are to scared to talk about the bad things in life. Like sex, drugs, etc..Then they should make books and movies to show how bad these thing are. There should not be censorship in libraries. Some of you @MONTH1 say 'well there to young they cant hanndle these things yet.' @CAPS1 your opinon you should think of there maturity level, aslo they can learn from other peoples mistakes, and it would educate people. How do you tell on someones maturity level? There are many ways to tell. If you talk to someone about sex and they start to laugh and make jokes then there not very mature. But, you cant asociate that every @NUM2 year old is immature. Many people @MONTH1 take this as a serious thing. Others @MONTH1 not but, they still will be able to see them in there own way. Putting censorship in libraries would not be a good idea. Many topics in books, movies, music, magazines, etc.. @MONTH1 have inapropte things in them. Like sex, drugs, drinking, bad language. Should all these things be taken out on libraires and off the shevles? @CAPS1 a hard question to answer. But, what you can answer from that is it would allow people to learn from there mistakes. If theres a movie and a guy and he is doing drugs and later dies. People could assume that drugs kill you. But, what about the other thing? Its hard to show how its bad to say an offensive word to someone, that they herd on the radio. But, when they here that word or read about something or watch. They can ask about it and we can say that saing those things or doing them can be offensive. Now, can you educate someone from letting the person listean, read , or watch about something offensive or etc..? It depends on the person. But, you can educate someone about the subject matter. No matter how offensive the topic is. We should teach people about them. If we dont, its bound to repeat it self. Say if we censor the holocaust becuase of how horifying it was. No one would no about it and we would most likely repeat the holocaust. Censoring certain things a library would not be that good of an idea. Ceratin people can hanndle talking about certain subjects. Its not always a good thing to censor offensive subjects. We need to teach people about these thing to educate them, and also so they can learn on what has been done and not repeat it, also some people can handle these materials, they just need to have a high maturitly level. These are some reasons why there should not be censorship in libraries and other places" 4 4 4 4 4 4 +3610 2 "Offensive books do belong in the library, just in a completely different area, away from the children. If we all chose a book that we didn't want in the library, there would be none left. So, since everyone has a different opinion about what is offensvie and what isn't, who's to say what can and can't be in the library? When I was little, my grandma would take me to the library almost every @DATE1. I noticed that she tried to keep me from getting certain books and was fine with others. My @CAPS1 did the same thing, but they had different opinions on what was okay for me to read and what wasn't. Grandma wanted me to get religious books and @CAPS1 was okay with that and things like '@CAPS2 the @CAPS3 @CAPS4 @CAPS5', and '@PERSON1'. Even at home, everyone's opinion is very different. For instance, when it comes to music at my house; @CAPS1 likes country, @CAPS7 likes metal, my brother likes alternative, my unlcle likes rock, and I like a combonation of all of it. That just does to show how different people have different opinions; some more strict than others. If we relied on peoples' opinions to keep our librarys free of offense, there would be nothing in it" 3 3 3 4 4 4 +3611 2 If you take any of these books off the shelves that would be lik taking away some of our chilldhood. that wuldn't be the nicest thing to do. Even if you did take some of them off then what would we show our children when they ask what was yoour favorite book as a kid. We will have to tell them that the library doesn't have those books anymore. the had to make room for other books. So if you would please under stand we got to read all of our parents favorite child hood books. I mean how wuld you fel if you couldnt share that with your kids? I would be upset because my parents told me and i went out and got them from the library and I loved them to So please if you can leave the books alone 2 2 2 2 2 2 +3612 2 "What is a library? A library is a place you go to that has books, movies, music, magazines, etc. With these things a person can do research or use for entertainment. Should there be censorship in libraries? In my opinion there should be very @CAPS2 censorship in a library. If there was a complaint about being offended by something in the library and it was removed from the shelf, there would be nothing left to use in the library. Many people like to go to the library to relax and have some good peace and quiet time and while there at the library they let their minds flow, imaginate, and dream. They don't worry about being offended by a @CAPS1 @CAPS2 book. However censorship in a library can be a good thing if used delicately. For example, moving grown up books to a section where children will not read them and have nightmares about a picture they saw in it. What I'm trying to say is have censorship in the library, but at a very low standard. If a library had high censorship and everything was taken off the shelf what is the point of going to the library, it would be an empty room. If someone is offended by something in the library, depending on how severe they where offended take the appropiate measures. For instance if something just offended someone unintentionaly leave it where it is, but if something offends someone intentionaly by their race, ethnicity or something like that, it would then be appropriate to take it off the shelf. Having low censorship in libraries would be good because there would be a good quantity of stuff for you to do your research on and there would be more topics to choose from to let your imagination soar. While at the same time you would not have to worry about being severely offended" 4 3 4 3 3 3 +3613 2 "Cennsorship in Libraries To remove something a person dislikes off of a shelf, is assuming other peoples opinions don't count. It really has to depend on what the product is. Such as a book, magazine, music album, or a movie. Usually in any store i've walked into, there are certain departments for each product. In these seperate departments, the product is always catagorized. Not from what people like, but by genera or age differences. If a person was to linger away from their section in that department and go to another part, their taste in their product will seem too different to like. A local library in a persons commuinty will have many books to read and to choose from. There are baby books, kids sections, teenage and adults sections as well. The teenage section is for me! Although I used to always be in the kids section not that long ago, those books should now be removed because I have no use for them or wouldn't be interested in picking another one up. Yet that is just me. However the generation under me will soon love them. Just because one person dislikes something, doesn't mean it should be thrown out for everyone else. Music is a different story. Some people like country and some people like alternative. In libraries they have all types of music albums that a person can listen to, before they rent it out. When I listen to one album to see if I like it and find out that I don't, I simply put it back on the shelf and try another one. The librarian doesn't throw it away because of my opinion, because to someone else it would be the sweetest music to their ears. Anyone can watch any type of movie in my opinion. Yet not all parents allow their twelve year old to watch a rated @CAPS1 movie. For them, it's only @NUM1 movies. This is how I grew up. Now that I am allowed to watch whatever my heart desires, i've noticed that movies are based on maturity levels. In libraries, some movies arn't allowed to be rented by a younger person. Yet it doesn't mean they should be tossed out. When they are older they might actually like them. Overall a persons opinion will be the most important one to them. Other opinions wont matter. Products in a library are for anyone to view, not to judge. If absolutly everyone did judge the products, there wouldn't be any left" 4 4 4 4 4 4 +3614 2 "I believe that it is unfair to ban ony sort of materials from the library. It simply isnt right to withold information from your children. Any information that they might read or hear is something that they are going to find out sooner or later anyway. Wouldn't you much rather your children find out from reading it in a book or magazine or hearing it in a movie or cd? Then they can ask parents any questions that they @MONTH1 have about things they have read and heard instead of hearing it from a teenager in the hall or talking to a friend about it and being misguided and given the wrong information. If your child is to read about sex or an affair in a magazine wouldnt you like to know? Would you want them to ask you questions about it so that they understand the difference between right and wrong. Wouldn't it be much easier to know that your child is educated on certian things so that they know when things are false and they're not confused or worried about something small? Any of the things that they @MONTH1 read in a magazine or see in a movie are things that they could easily look up on the internet. On the internet there are more graphic photos, and some websites give false information on subjects. Your childs curiosity could take them to inappropriate websites. When i was a child and I was curiouse my parents sheltered me from certian things. I found out what kinds of things they were trying to hide from me while I was only in @NUM1 grade when high schoolers on my bus told me all about sex, showed me pictures and told me things that I would have much rather heard about in class or read. I felt like I couldnt talk to my parents about these things. I mean what would you do if your second grader came home form school and started talking to you about the kinds of things that they had heard on the bus. What if the high schoolers had been lieing to me, I would feel stupid for saying anything about it because my parents wouldn't have understood what I was talking about. What I'm saying is that understand that there are some things that a child should never be allowed to read, see, or hear. It isn't fair to them that they don't get the opportunity themselves to learn about it and ask questions. Besides isn't it your fault in all reality if they get they're hands on somthing innapropriate for their age becuase they aren't getting the proper supervision? If you feel that they are reading, listening, or watching something that you feel is in appropriate, ask questions. Explain things to them when they ask you a question. Don't beat around the bush. Make sure that they know the difference between good and bad, right and wrong. It truely is not fair to take these things away from them when they don't even know why they are not allowed to look at it" 4 4 4 4 3 4 +3615 2 "No because all people like to read different books. Some of the books that people want taken off bookshelves are considered to be part of history.Books help people advance in their reading skills and also help them find new things out. When I was in middle school I always liked to read @PERSON1 and @PERSON2 books. When I asked the librarian if they had any of their books they said no. They thought that kids in middle school shouldn't be reading books with cuss words in them and vilence. I don't think it should matter what kids read because you can't make a kid read something that he's not interested in because everybody is different all people like different types of books. Theres all kinds of books like for example theres mystery books, fiction books, non-fiction books, historical books, etc. The books you use in classrooms are considered books but there not books you read everyday. I think parents should take their kids to the public library to get a book.When I was in elementry and through junior high we had to take reading tests on the computer.In seventh and eighth grade we had to sit around the room and take a book and read it for part of the hour. We also a challenge in middle school to see which school could read the most. That was part of our grade in our english class. It was never a problem for me because i loved to read.Now there are some books that libraries should take off the shelves. For example any book that involves nudity or lots of vilance. Now thats just for kids that are under the age of thirteen. Now there isn't that many of books out there for little kids to read. Theres more adult books than little kids books.All I have to say is that watch what your kids read. Don't keep them from reading books because that will effect them later on in life. If they don't like to read persuade them to try it. I also think that more kids would read if they seen their relatives reading too. Just remember kids and adults of all ages reading is a good thing no matter what you decide to read." 4 4 4 3 3 3 +3616 2 "In this persuasive essay i'm going to write about why or why not offensive material should be banned from library shelfs, and there are a couple reasons that are going to help me do that. I think that we should'nt take anything off the shelfs in libraries. My first main point why we should not take any material off the shelfs in libraries is that there are some material that people might find offensive that others do not and are getting affected by those who do want these material off the shelfs. I think that some of the movies and books that is taken off the shelfs should be material that some kids should experience that @MONTH1 help them in the future. My second main point is that if we do take all of the offensive material off the shelfs there would only be movies and books like bambi and scooby-doo, because all the material that are in libraries are offensive to people in some ways different than others. I have not found a movie or book in any library yet that I have found offensive. Also if we do, we might as well not even have a library, because there would only be about @NUM1 movies and books in the whole building, because of all of the offensive material that people could find in cd's, books, and movies. People hear cuss words probably everyday, whether its at school or home. So all of the words and actions in movies are not as bad as people in real life saying them. I just think of every movie and book as just a movie and book. Scary movies are not real and some books too. There is sex and other inapropriate things in movies, but thats also why you have to be a certain age to even get the movies. To summarize up what I was just talking about in the last couple paragraphs, I think that we should not take any thing off the shelfs in libraries, beacuse it will hurt others, and theres just no need in it" 4 4 4 4 4 4 +3617 2 "When I walk into a library to look for a book, I would love to do so without seeing inappropriate books, movies, or magazines. When I see that, I think, '@CAPS1 if a child saw this?' I would like a library for my child to visist without me worrying about the things they could see.To fix this problem, the libraries could do a number of things. First off, the libraries could censor @CAPS1 they put out on the selves. By putting the adult books section by the check out place, an employee at the library could easily find any small children wandering into that section. If that soultion does not work, then try and rate the sections like we rate movies. Put @CAPS2 books and movies together, @CAPS2- @DATE1 books and movies together, @CAPS4- @CAPS5 books and movies together, and so on. One time, when I took my baby brother to the library, he decided to bring me an adult book with a nude woman on the cover and asked if he could check it out. I was shocked and embarrassed. I did not think that that kind of thing would happen at a public library, but it did. I believe that everyone should have the option of finding the book or movie of their choice. So I do not wish to have any inappropriate books or movies removed, but placed in better order so that children are not going to see that kind of stuff." 3 3 3 4 3 4 +3618 2 "Should the librari be censord on the books it has on the shelvs? I think it should be. There are many offensive books and thangs on the shelvs. I wouldnt want my kid or anybody els kid reading offensive books. So lets get rid of all the bad stuff or atleast filtyer it all. I beleve any book, movie and magazines that have alot of profanity or bad pictures in them should be removed or not be able to be cheked out to a certion age. If they wana keep teh books on the shelves they should make it where you have to be in high school and have a permsion slip to get the books. Removing teh books and thangs complitly @MONTH1 cause to much troubl so we should defntly make sure the kid is a certian age and has permsion. I would not want my @NUM1 year old kid read a book with bad language in it. Kids cach on to that stuff and they will start talking like that and it would not be a good thing. There is alot going on in socaty now a days that badly influnce children. They do not need to read about how guys rob places and are crimanals. I think thats why we have so much of a probly to day becouse evry one sees it at a young age and they want to be lyk that wehn tehy get older but that is a very bad thing. They do not need books and movies that make it worse on them and make them think bad things are good. If we do not filter wat they do at a young age they will end up being hellins and outa of countral becouse they will think just becouse someone in a book or movie did it that its ok for them to do it but its not. I would not wnat a young kid to read bad things. I say lets put a ge limit on them and mack our socity beeter and are kids to become beter adoults later on in ther life. We need to filter out the bad and put new in for our younger kids. If we don't who knows how theyl grow up to be the world could go to hell if we dont stop the kids from learning bad things. So lets get the fi,ltering satrted and save the world and our kids future." 4 3 4 2 2 2 +3619 2 "Thoughts of @CAPS1 I feel as though offensive literary pieces should be able to be taken from libraries. If a piece of @CAPS1 is particularly offensive; the piece should not be displayed. From my own experience, controversy is the reason that books are stricken from libraries. All of my experience, observations, and reading have told me one thing. That one thing being, pieces of @CAPS1 are taken away because of their offensiveness. From the experience that I have had with books that cause controversy, I have noticed myself not liking the book. I believe that is the reason people do not like certain books in libraries. Coming from someone who does not particularly like reading. I feel as though reading something that offends me puts me in a state of mind as though I would not like to read any longer. All of my experiences seem to point to not reading books that cause distress or controversy. Of all that I have observed, I have found similar things as my experiences. I have seen people, classmates in particular, that do not desire to read because they feel that a novel has offended them. Though my observations @MONTH1 seem one-sided. I truly have observed more lack of reading due to controversy than the increasing of reading due to controversy. All of my observations seem to point to supporting the revocation of 'banned books'. The piece that I have noticed most prominent to this topic that I have read would most definetly be @CAPS2 @NUM1. In said novel society has outlawed all books. The story seems to heavily favor those who wish to read controversial novels, though we can take something from reading this book. The reading of this novel can be interpreted to favor my argument, as people lived happily without controversial books. Granted not all people did, but that is because of certain variables. From stories, such as the three little pig and the big bad wolf, we can understand how poorly the concept of controversiality is drawn. For instance, I was mortified hearing that the first time. I have never had the interest of hearing it again, as I felt that the story is not politically correct. Pieces of @CAPS1 are taken away because of their offensive properties. If someone has no interest in reading a book because of the thoughts maintained inside of the text; the book must be stripped from the public. As it would only make sense to try to keep the peace. I for one support the cause to remove books from public places due to controversiality." 4 4 4 4 4 4 +3620 2 "People today always seem like they are trying to find something offensive. The problem with the @ORGANIZATION1 is that it always feels like it needs to appease these people. The truth is that when you have as many as there is in a country, there are going to be many different ideas, thoughts, likes, and dislikes. Libraries are places of knowledgee. They keep many differnt books, magazines, and movies there, so that people with all different tastes can enjoy the library. Most people, with books, figure out early what genre of books, which authors, and how long of books they like. So books are usually very hard to offend people, because most people can usually tell right away if they like the book or not. Magazines are like books in away. People know what they want. With magazines though, people ususally just flip threw the pages, and skim through articles. They will keep skiming through the magazine, until they find that perfect article they want to read. Usually after that, they are done with the magazine. Music has been around almost as long as mankind has been around. There is something about music that soothes the human body. Music is one of those things that ais constantly changing with time. Before instruments, music was just purely voice, but as the centuries went on, music became more advanced. Now it would be nice if there was just one type of music that everybody liked, but there isn't. There are so many types of genres of music, that it would be hard to find a person in this world that liked every type of music. There are people who hate change. Likewise thet don't like to change there favorite music types. But if people changed with time, then there would really only be a few types of music. But since there are many types of music, there is always going to be someone out there in the world that doesn't think that song shouldn't be played. Just in the last century movies have came along way in advancement. Movies use to be simple, they would have a simple plot, and everyone loved it. But there are so many people who love to see technology advance, that they want movies to change. Movies today are all about special effects, love, sex, alcohol, parties, fighting, and the list could go on and on. Directores try to make the best movie possible, so its almost like they try to put just enough of one thing to keep the audience into the movie. But if they go overboard on a subject, that is when at least one person has a red flag go up in their head and think that is offensive. Movies are suppose to be enteraaning, not something people should get offended by. Movies are good about it though. They have created a rating system to try give the audience a fair warning heads up, so that the audience knows what to suspect in the movie. It doesn't matter what it is, book, magazine, music or movie, there is always going to be someone who doesn't like it or is just offended by it. There is nothing to do about that, and it's not a bad thing. It's just simply means everyone in this world is not the same. So I think we can all come up with the conclusion that: just because one person doesn't like something, doesn't mean the next person will" 4 5 4 4 4 4 +3621 2 "Should books and such be removed off of the shelves if they are found offensive? Personally I don't think they should be. If @CAPS3 is something in the book that is remotelly offensive towards children then it should be put under a section for adults only. Most libraries I have been to have different areas for each age group. If @CAPS3 is a book that is racially unexceptable then it should be put in the adult section not anywhere for children. When a book is being questioned if it is offensive or not they should review all the possibilities of how someone @MONTH1 comprehend the story to see their reaction with it. @CAPS3 are many genres of books, music, magazines, etc., so @CAPS3 is always a place that the book can go to. Most of the questioning about a book is the language in it. For example, in @CAPS1 we just finished reading the book '@CAPS2 of @ORGANIZATION1.' @CAPS3 is a lot of question if the book should be read in schools or not because of the 'n-word'. It is a very harsh word, but it goes with the setting and the background of the story. When someone is not sure if a book is acceptable or not they should take in concideration what the story is about and whether or not the word is needed or not. In many cases the unexceptable thing @MONTH1 work along with the story. If one book is being questioned about something wrong with it then shouldn't all books, music, movies, magazines, etc., be questioned? If something is not allowed for one item then it shouldn't be allowed for something else. It is all about the audience who reads that certain book if it is appropriate or not to the person reading it. I have read many books that have certain words that don't bother me, but someone else who isn't use to it @MONTH1 not like. Some parents don't want their kids hearing foul language or inappropriate stuff from the type of music they listen to. It all comes down to who reads the book or magazine, and who listens to the music. Katherine Paterson makes a very good point about how if we start taking the books off of the shelves then eventually @CAPS3 wouldn't be any books left on the shelves anymore. Just becasue something has a bad word or phrase in it doesn't mean it needs to be taken away from peoples enjoyment!" 4 4 4 4 4 4 +3622 2 "If you have been a child with parents who cared, then you have heard them say, 'No you can't play that game, you can't listen to that music, or you can not watch that movie.' @CAPS1 you asked why you were not allowed the same answer was always givin, 'You're not old enough.' If you ever had the courage to ask why again they would most likely have said, '@CAPS2 if I wanted you to know then I would allow you to find out for yourself!', and that didn't get you anywhere now did it? Now I would like for you to think back on those things you were not allowed to do, and how now that you are old enough you can do those things. How would it change things if those movies, @CAPS3's, or games had been removed from the shelves before you had the chance to get to them? What would you and your friends have done if you didn't get to watch '@CAPS4 @CAPS5 @CAPS6 @CAPS7 @CAPS8' that night because some parent or other individual had had it removed from the market because they found it offensive? I would also like for you to think about the child you @MONTH1 have or @MONTH1 plan to have, would you want your child to be subjected to such things as '@DATE1 The @NUM1' or '@CAPS9 and @CAPS10' as a @NUM2 year old? Most likely that answer is 'no', but what if, because they were found offensive, they were simply removed from existence? Then they would never see them and to some that @MONTH1 be what's right, and for those of you who think that I have some news for you, those kind of movies are still made today. '@DATE1 The @NUM1' has been remade and is more graphic than before, and there are countless other titles that i could throw @CAPS6 you now that have some form of sexual themes, drug use, or foul language. They still exist and are becoming more and more popular among movies. There are @CAPS11 movies that will have some sort of sexual reference, a cigarette, or a bad word in them. You might be able to get rid of a few, but would probably never rid the shelves of all of them. But let's say that you did, that you were, in fact, able to throw away any title that contained these themes. What would there be left to watch? If those movies do not exist any more, then what would your kids have to be able to watch, @CAPS12 the @CAPS13 and @CAPS14-@CAPS15? Not only that, but what movies would you watch, if all movies with something offensive in them were removed then you wouldn't have anything left for yourself. Every thing that you might like and/or think is funny in a film, but don't want your child to see is gone. My answer to you is to not just throw everything out that @MONTH1 be offensive, or that you might not want your child to see. Instead of going to such drastic measures to shield your child from them, but to simply not allow them to watch those movies or listen to that music. It's what I'm sure your parents did you, and I know it's what mine do to me, and guess what? It has worked so far, so why should we change it?" 5 5 5 4 4 4 +3623 2 "I don't think that anything that gets checked out from the library should be censored. Some of the people that go to the library aren't looking for material with offensive language and/or themes. On the other hand, there are some people who go to the library who find that having offensive language spoken when it was meant to be is better than censoring it. Take for example a book about @PERSON1. It could have some things in it that people could find offensive. But if someone has to write a report on @PERSON1, it would be best to have as much information on him as possible. I will make one compromise: if there is music being checked out with offensive language, they should provide it with both a clean and explicit version of the album. There are ways that censorship can be good, and some ways that it could be bad. Some people find bad language and themes offensive, while others find that it gives freedom to the artist or author. I think that uncensoring things in the good and bad form is better than not uncensoring things at all" 3 3 3 3 4 3 +3624 2 "A kid walks into the library up town. He looks around and finds a movie one of his friends recommended to watch. He checks it out and goes home to watch the movie. Later on, his parents come home to see their son acting out of the ordinary. He starts to say rude comments, being violent, and using profanidity. Who is to blame? The friend who recommended the movie, or the library for having this movie on the shelves and letting the young kid check it out? Today, many libraries have a variety of books, movies, music, and magazines to choose from. Some libraries even have computers for kids, teenagers, and adults to use for certain things such as business, personal mail on websites, or games for kids to play. But are all the libraries meeting their requirements? Some people find many books, movies, music, magazines, and even websites threatning. Libraries have movies that are rated @CAPS1, @CAPS2, @NUM1, @CAPS3, or @CAPS4. They @MONTH1 also have music that has explicit lyrics on the @CAPS5. Some libraries @MONTH1 not meet their requirements and that is why libraries do not have as much business as others. In my opinion, I think that if a library has offensive material, such as books, music, movies, magazines, and websites, they should be removed from the shelves. If the librarians are letting young kids check out explicit music, and @CAPS4 movies, they should possibly be fired. From my own experience, I have not had trouble with libraries and materials they have to choose from. I have not visited a library that has had explicit music to choose, all of the bad websites are blocked on the computers, and all of the magazines are appropriate for all ages. In conclusion, libraries should have respect not only for people, but for the materials they have. They need to show respect for the books, movies, music, and magazines they provide for kids, teenagers, and parents. Censorship is required for every library and I think that all the libraries around do meet their requirements." 4 4 4 4 4 4 +3625 2 "Censorship at the library is not needed at all times. It is the parents who should take the books away from the kids. It isn't the libraries job to tell people what to do. There are certin cases when it's needed though. It's the parent's job to tell the kids what to do. They are the ones in charge of the kids. they are the ones who should tell teach them right from wrong. They are the ones who are raising the kids, not the library. Other wise, they parents are having their job done for them. The libraries have the right to get what ever books they want as long as there isn't anything really bad in them. I do get it if they pull off books, movies, and magizines for adults, but if there is one little word in there, people will just have to get over it. Isn't that why people are wanting classic books, such as '@CAPS1 @CAPS2's @CAPS3' and 'The @CAPS4 of @ORGANIZATION1,' changed? Because black people find it offensive? It's not rignt. People are trying to rewrite history; to sugar-coat the truth. Well, the books are like the real world. People aren't always going to be nice to you. They can be down right mean some times. The whole world is just corupted. There shouldn't be a problem with just one little bad word in great works of liturature. People will cuss you out if they feel like it while in books, the language limited to one or two bad words. They shouldn't be trying to change great books because the minority find it offensive. The library shouldn't be the ones who tell us what we can and can not read. The library shouldn't censor their books." 3 3 3 4 4 4 +3626 2 "The seven books which constitute the '@CAPS1 @CAPS2' series by @PERSON1 are books which are frequently censored in school libraries accross the country. The main reasoning behind this is that since these books portray witchcraft in a positive light, they must be harming our innocent children. Many books, from @PERSON2's 'The @CAPS3 in the @CAPS4' to the '@CAPS1 @CAPS2' series have been banned from school libraries due to their content being deemed inappropriate by a group of people who fail to take the larger meaning of these works into account. Works meant to be accessed by the public should not be removed from the shelves of libraries if they are deemed offensive. Under the @ORGANIZATION1 to the @CAPS7, every citizen has the freedom of speech, press and religion. By censoring the speech of authors, their rights have been denied. It is an author's right to say what he or she feels needs to be said, and it should not be up to a board of parents or directors to prohibit that right. By prohibiting books such as '@CAPS1 @CAPS2' or 'The @CAPS3 in the @CAPS4' to be read; the greater meaning of these works is being disregarded. Many conservative @CAPS12 groups have advocated that '@CAPS1 @CAPS2' be banned from schools because of its portrayl of witchcraft (and therefore satanism) and the nominal fact that @PERSON3 has stated that @PERSON4 (the @CAPS15 in the series) is homosexual. However the ultimate message of the series is that love triumphs over evil. Apparently that is not a message worth teaching the youth of @LOCATION1. However, even if every school in the country took '@CAPS1 @CAPS2' off the shelves; that would not, and should not, stop children from reading these books. Since 'The @CAPS3 in the @CAPS4' began to be part of many schools' curriculum in the @DATE1, it has been at the top of the most censored book list due to its vulgar language and a chapter involving a prostitute. That has not stopped millions of teenagers from reading this novel, which is considered to be a rite of passage for most young adults. Being one of the most continuously challenged books over the last fifty years only seems to add to its allure and its popularity amongst the very people that these censorship boards are trying to 'protect'. If a parent, however, does not want his or her child to read such a novel; it should be left to the parent to censor what his or her child reads. But just because one parent does not want their child to read '@CAPS1 @CAPS2', does not mean that every child should be denied the opportunity to read it. Censorship should be a matter of the private, not public sphere. Books and other works should not be censored in libraries. In doing so; an author's freedom of speech is violated and the greater meaning of the work is disregarded. And while certain groups @MONTH1 advocate to protect the children of @LOCATION1 from these offensive works; the children will still find a way to access them" 5 5 5 4 4 4 +3627 2 "I belive that the view on censorship in libraries are fine as they are for many reasons. The main reasons that i belive censorship in libraries are fine are that almost everything in the library are for people to learn about weather they read it or watch a movie about it. Another reason is that if they took everything that was offecsive or unliked then there would be a lot less information for people to learn about in libraries. I agree with Katherine Paterson in her quote because it means that if we took away every book that someone found offensive then there would be no books left. Every person has different things that offend them and it would not be possible to remove everything from the library that offended someone. For example, if someone wanted to learn about a historic war from the past, but if someone was offended by the war because they lost a family member or friend to it, should the piece of writing be taken away? Libraries are a place that someone can go to, to learn about something. They hold a lot of information about many different subjects that people go to learn about even if it @MONTH1 be offensive to some people. If someone doesn't like something or finds it offensive then they should just leave it on the shelf and move on because someone else might learn something important from it. There are things in life that people need to be opened to or informed about even though they @MONTH1 not always be plesent. Libraries are the place that people get introduced to these things and if these things are removed then where will people go to be informed about this information. To sum it all up, yes there are things in libraries that some people @MONTH1 find offensive but other people @MONTH1 learn from it and it would be unfair to take this information away from everyone else. A library is a place to go to learn about different things and should alway have information on different subjects and topics. Many people have learned things from a library that have affected their lives and will keep learning more things as long as they are still opened to a wide source of information." 4 4 4 3 3 3 +3628 2 "Censorship in Libraries I believe that there should be censorship in libraries. In @DATE1's society there are many kids who are hurting and are getting into bad things. There are somethings kids just should not see. Censorship should be used in libraries to steer kids in the right direction, to take some stress off of parents, and because some offensive movies are actually offensive. Censorship in libraries can steer kids in the right direction. Odds are, if a kid sees his role model on the front of a movie case smoking a cigarette, then that kid is probably going to become curious about smoking. This has happened to me before. I once saw this kid that I looked up to drinking, and I almost took up drinking myself, but because I had the right peers, I didn't. The point is that when kids see someone they look up to doing a certain thing, it has a great impact. If that movie case is sensored then that kid would never even think about smoking because of his role model. Every parent is worried about their kid getting into trouble with the law, right? Some of the movies that a kid can get at a library has the actors doing illegal things in it. A kid will see this and then they will probably think it is cool and go out and do the same thing. I have seen plenty of movies that made me want to go out and do what they did in the movie. What if that thing they see in a movie is murder? It maybe crazy to think that a kid would go out and murder someone because he saw people do it in a movie, but it could happen. A couple years ago I can remember reading an article in the newspaper about a kid shooting his father in the head. This kid was only six years old, but he thought that playing with guns was safe because he saw them do it in the movies. Censorship can take some of the stress off of some parents' backs. Parents stress all the time about where their kids are, what they are doing, who they are with, and so on. If the library censors some of the music and movies that kids watch then his parents will not have to worry too much about him going off and doing bad things because he sees his peers do it. This makes parents feel good and confident in their child's life. Finally, offensive movies are actually offensive, whether this be to the kid himself, the parents, or the audience that the movie is targeting. Keeping offensive movies censored can relieve a lot of hate in a kid's life. I say this from experience. In movies we always see the smart kids getting picked on and it seems like the athletes get all of the attention. Well I am sort of considered that smart kid. I feel that, because of some of the movies my peers have watched, they find it okay to pick on me. This creates hate inside of their hearts, all because censorship was not used. In conclusion it has to be obvious that I feel censorship should be used in libraries. Censorship should be used in libraries to steer kids in the right direction, to take some stress off of parents, and because some offensive movies are actually offensive. With censorship, all of these things can be accomplished. This is not only helpful to the kids, but the parents as well. In my experience, censorship is a good thing to have." 4 4 4 4 4 4 +3629 2 "People from all over the world have many different opinions. If someone doesnt like something they do have the choice of not looking at it. Therefore, I believe that when you find something in a library that comes offencive to you you should not be able to remove it. One main reason why I feel that the offensive things shouldent be taken out of the libraries is because, not everyone @MONTH1 feel the book, movie, magizine, or music is offencive. People have their own opinions on everything, and if someone takes out a book or any thing in the library because they feel its bad, the other person is going to miss out on something they like to read. Another reason I feel the bad things shouldent be taken out of the library is because, some people could get mad at another person for taking all the offencive things out of the library. Many people like the offencive things in books, movies and soforth. I think from my own prospective that I like having a little bad in my life and if reading a book, watching a movie, listening to music, or even reading a magizine is what it takes I want to be able to go to a library and pick out something good with out haveing to worry if its there or not. In my own opinion, I believe that with out offencive remarks or words there wouldnt be any humor in books and stuff today. Just because the offencive things seem rude and unapproite doesn't mean that they are. It's just something said to make a book or anything interesting and funny. Although some offincive things in libraries can seem too unapproiate, I believe that if they're there then obviously there not too bad, and they shouldnt be taken out because one person feels that its not something that belongs in a library. Everyone has there own opinions in life and sometimes keeping them to yourself is the best thing to do." 4 4 4 3 3 3 +3630 2 "There are numerous books and movies which are deemed not appropriate for younger audiences. By marking movies with a rating, and marking books with a specific age group, it helps categorize them. In our public libraries, all books and movies are settled into one place for everyone to have the ability to check out. There is the ongoing discussion on whether these should be available to everyone. If a child were to check out a book, and it happened to be rated @CAPS1, the parents would most likey become upset with the library for giving the right to the child to check out a rated @CAPS1 movie. There is also the instance where a parent would have the child check out a specific movie with a @CAPS1 rating. In which the library would be harrassed for not letting the child check it out. Furthurmore, should public libraries let certain age groups check out movies/books which are not appropriate? The logical answer concludes to no, they shouldn't. If a child can not see a rated @CAPS1 movie at the theatre, why should they be able to check them out freely at the library? Public libraries should invest in a way to keep underage kids from checking out inapropriate materials. By simply having their age on their library card, there would be a lot of misunderstandings taken care of. Our public libraries should take it into their own hands, by changing their censorship. It would give them a better name, and give our children a secure place to gain access to these matirials." 3 3 3 4 4 4 +3631 2 "Wouldn't it be nice to walk into a library and be able to find any sort of book possible? I believe that it would be very useful and helpful for many libraries to allow a varied censorship of books. In my opinion it would be beneficial to students, parents, or teachers to get information on different topics. As well as many students who need to write a paper about a certain topic that they @MONTH1 not be familier with, and allowing all the types of books would help anybody with any topic. A library is a place where anyone can go to find information on something, find an interesting read, or just relax. If your going to get information on a topic that you know nothing about, it would be nice to find a book telling all about the topic. This would help students with reports, along with any other person who is trying to find some extra information they might not know about a topic. If a person was to not want a certain type of books in the library, then I think that person should just try and ignore the books. I think this because I dont think books should be taken out that are beneficial to others, just because it is offensive to someone that could just ignore it. Maybe the books are about drugs, sex, or violence, but they still are able to teach many people that aren't already knowledgable about the innappropriate, or offensive topics. In conclusion, throwing books out and keeping a library censored, would be a mistake. It is a mistake because it is taking away from many people who are wanting to become knowledgable about different topics. It takes away from people who need to learn about topics for things such as school, or even work" 3 3 3 3 3 3 +3632 2 "No, cause if that is the case evry book you read could be offense to somebody. If they think the book is bad then don't read it.First off a book should not be banned from a libary.It is just a book.Second the only reason they would want to band a book is because people like to start drama. Third reason every could be offense to somebody. First off they should not band a book just because people don't like it.If your child read an adult book that is good for them, for reading those big words.And if they just happen to see a naked picture it is not the end of the world. I bet it is not the first and it won't be the last. Second some people would try to band a book just to start drama. They know it will cause a lot of crazy things with the author. Finaly If they band books for being offense then they would not have a libary. Cause any body says something is offense.In all they should not band one book." 3 3 3 3 3 3 +3633 2 "In libraries there are certain materials on the shelves that @MONTH1 be offensive to some people.I have seen some of these materials in with my own eyes. But Should libraries take them off the shelves because of this matter? Thats the question. Some might find it offensive and others @MONTH1 not. It all depends on the person. Libraries cant please everyone. In my opinion libraries should not take these materials off the shelves, because a material that they take off the shelf could be a material that another person enjoys. Just because you dont take the material off the shelf doesn't mean that there aren't other solutions for those that think the materials should be tooken off the shelfs. Some solutions to fix this problem could be to take these 'offensive materials' and put them on taller shelves or in a room by thereselves so that children or people who do not like the idea dont have to see these certain materials.Then 'people who find it offensive' and 'people who dont' both get a side in this matter and it solves the solution to the problem. If this solution doesn't work there are many more. The librarie can take out the really offensive materials and replace them with others more suitable for all. Overall I do not think libraries should take out these materials. Just try to make people on the offensive and nonoffensive side both happy then there will be no more conclusions as in this one." 3 3 3 3 3 3 +3634 2 "Yes I do think that if material in a library is offensive that it should be taken out the library because the libary is a place where people go and get a better understanding of something they dont know.Here is why I say this. If you go to a library and you see something that you dont like and you dont think it is apppraite for people to see then it should be taken off the shelf. I wouldnt want anybody in a libary unsatistfied with the books, movies, music or anything else especially if childern are involed.People should be able to go to a public place where they are satistfied with the way they carry their place, also it should be suitable place for childern to come and learn.The libary is a learning enviorment where education, growth and devolopement should be inspired. My reason for saying all this is that a library should be a place where learning should be its number one goal and that if things in the libary are offensive to a person that it should be taken off the shelf. I know that childeren should be able to go to a liabrary and be satistfied on the way the libary is." 3 3 3 3 2 3 +3635 2 "Should materials in libraries be censored? No, i dont think that stuff in libraries should be censored or taken off the shelf. If something is offensive to someone then that person doesnt need to look at that material. People should have the right to get whatever they want from the library and if someone doesnl't like the materials they have then thats too bad. What if kids get bad stuff off the shelf ? If a kid were to get something bad or innapropriate for themselevs the libraries wont let them check it out so it is fine, and the parents should be watching the kids get. I go to the library all the time and I have never seen anything thing that is innapropriate and i don't know anyone who has ever told me they have found something offensive in a library, because I think the libraries know what people want and what people dont want there. and it's not right to take something off the shelfs if a few people dont like it because im sure other people like it. But if there is something very offensive that everbody thinks is bad than you can remove but you can't remove material every single time someone complains it is offensive because then there probally wouldn't be anything left in the library. So I dont think anything should be removed from shelves just because some people find it offensive because im sure just as many people don't find it offensive and it would be wrong to take it from those people." 3 3 3 3 3 3 +3636 2 "I believe that if there is a book in a library that a child is not allowed to read that the book should be some where the kid shouldnt be able to get it. I think those types of books should be stored in the part of the library were a child shouldn't have access to. Also the library should have a section to where only the certain age can read that book. In some libraires there are a bunch of books that are not made for a child to read and they have them to where a child can get access to them and that shouldnt be allowed. So i believe that they shouldn't allow children to get access to those types of books. The same thing applies in a store. In some stores they have a magazine section where there are bad stuff that a kid is not allowed to see. I know in the grocery store that i go to there are inaproperiate images and words that a child should see or read. So there should be an area inside that store that a certain age can access them because one day i was in the store and i saw a little kid reading a magazine and saying the bad words that were in it and looking at the bad pictures it also had in it. So that is the reason they should put the magazines in a place were children shouldn't get access to them. In the same store there is a music section and there are children in it all the time. The music is not all that bad its just that the kids can take these off the shelves and take it home and listen to it. This is the part that is the parents fault by buying the @CAPS1 for the child to listen to. So if the parent buys the child that @CAPS1 that is bad it is the parents fault. But i think that the @CAPS1's for little children should be in one part of the store and the @CAPS1's for the older people should be where the can get access to it. This same thing applies with movies. There are movies in stores that are rated from @CAPS5, @LOCATION1, @LOCATION1@NUM1, @CAPS6, and even for @CAPS7 audiences only. In a bunch of the movies form @LOCATION1@NUM1 abd up have a bunch of stuff in them that a child should not see. Like in the @CAPS7 audiences only movies they show nudity and a lot more stuff that no one under @NUM3 shouldnt see but they have some of those just sitting on the shelves at stores. So children shouldn't be able to have access to those types of movies. The reason i explained all of this is so children dont get ahold of them. Like in the music if the kids start listening to some bad music they will start saying those bad words and get in trouble at school and anywere else. Even if the chid reads a book that has bad stuff in it they will start saying those words or even do the stuff that happens in the book. In the movies that a child is not suppost to see like a gory action movie or a movie that shows nudity or even a movie that cuses that child will see that movie and will show there friends or get ideas form the movie. And these are the reasons why a child shouldn't be allowed to get access to this kind of stuff." 4 4 4 4 4 4 +3637 2 "Should we have the right to be able to remove materials from shelves if they are found offensive? I believe that we should not have the right to be able to do this. I believe that if we had the right there would be no materials left for future children to read. A big thing to consider when you think about this right, is even though our materials speak of discrimination, or use a word that someone might find offensive, or even if we did not like the book, movie or magazine and thought that it was a waist of space. We should never have the right to be able to remove these materials. I know of several people that think the harmless childs first book is trying to discriminate someone, or a race of people. There are books out there that are discriminating certain races of people, or informing us of a time when people were discriminated against. If we would have the right to remove these materials, all of them would eventualy be gone. Our future children wouldnt know that the event even happened or if they did half of their information would more than likely be wrong, since over years people would probably change the story to a version that they wanted their child to think. If someone found one single word in the book or even a movie that they thought was offensive then they would have the right to remove the material from another persons view. If someone found a curse word in the material that they found offensive, or if they just find the idea of using curse words offensive they would be able have the material removed and that would mean that thousands of good books and movies would disappear for a word that one person did not like. Some people might find them to be a waist of space and just remove it, if they did not like the book, movie, music or magazine. There are some people out there that like to read or listen to them and @MONTH1 find some of the them that we cant stand to look at, good or entertaining. Some people do not like a book by its size or by how big or small the words are. These arent ways to judge a book. I think that nobody should have the right to remove a book, movie, music, or magazine from the shelf. We all should keep these materials as a reference to future generations. Past people in the world have destroyed materials that they didnt like, now we will never know what they were about or even trying to tell us. There is no reason to remove a material just for the oppinion of one person or even the oppinion a a group of people." 4 4 4 4 4 4 +3638 2 "Removing certain materials from the shelves of libraries is not the way to go. No matter how offensive they might be, there are many other ways to solve this problem. I believe that certain materials such as books, music, movies, magazines, etc., should not be removed from libraries for being too offensive. First off, many people have different opinions about what is offensive and what is not. For example, many people have different intrests than others. Some people @MONTH1 like certain kinds of books and movies while others @MONTH1 not. For instance, one of my favorite types of movies to watch is a comedy. On the other hand, there are many friends of mine that love to watch horror movies. This is something you can not change. Everyone is going to have their own preference on what they want to read, listen to, or watch. Why would you take things away that people actually enjoy? There are other ways to solve this problem. I believe that we can solve this problem by just seperating certain materials from others in the library. For example, if something is thought to be offensive, then it can be placed with others like it. These materials do not have to be removed completely. Mothers are often worried about their children picking up things in the library that they think are offensive. If these materials are seperated from others, there will not be a problem. Certain materials do not have to be removed completly from a library. All in all, there is no need to remove materials from a library because many people have different interests. In conclusion, I believe that materials should not be removed from libraries for being to offensive" 4 3 4 4 4 4 +3639 2 "I'm really sick and my head really hurts at this moment while having to write this paper, so please take @CAPS1 easy on me. Any source of literature is someone's own creation of imaginiation, taken in whatever direction they so choose for @CAPS1 be to be taken. The creation of that art form as writing would be nothing less then lonesome trash floating the winding streets if @CAPS1 were censored. @CAPS1 is almost like when watching television; your kids are up and want to stay up late to watch the new horror movie but no way, that movie is way to scary for them, plus @CAPS1 shows some nudity. If the movie is not appropriate for your children then do not let them watch @CAPS1. In a library though, your mother might not always be there to pre-read your books for you. So maybe you just have to assume responsibility and read the book if you choose to, or not read the book depending on how your mother would feel about @CAPS1 of course. The thought of there being censorship in libraries is quite ridiculous. Of course I would not like to see @PERSON1: @CAPS1 in my childrens section but that is all up to just having books in their right sections. Have the explicit books on one side of the library and the non on the other side. The main point is that most people that make use of the library are old enough to choose a book of their liking and if they are not they have their mother accompanying them" 3 3 3 4 3 4 +3640 2 "There are many different types of books, music, movies, magazines,ect., that fill the shelves of libraries and stores across the country. Consumers are constanly taking these items off the shelves without realizing what they are really buying. Some parents @MONTH1 not even realize what their teenagers or little children are actually buying. Some of the material @MONTH1 be offensive and have a bad influence on those who buy into them. But if parents were more careful about what their children buy then there would not be a problem. That is why these materials should remain on the shelves. One vital reason these items should not be taken away is because it is the consumers choice on whether or not they want to buy or check out these items. People should be able to decide for themselves on what they will or will not buy. If they do not want to buy or check these materials out then then they should just go to another shelf, or shop at another store. I have seen some parents who do not really care what their children buy, and I have also seen parents go the other way. If stores take away these items that it is almost like taking away their right to make a choice. It is the adult's responsibility if they do not want their children to watch movies that are for mature viewers. The parent should be able to prohibit certain things until their child is old enough to make its own decisions. If they trust their children with these materials then that is their choice. These offensive items can not just be taken off the shelves just because some people are bothered by them. With the way the media works, it would be difficult to remove all these items from libraries and stores. No matter what there will probably always be a way for younger children to be exposed to these materials. On television there is always commercials that will attract kids or teens and influence them to but their stuff. I have also seen music videos and magazines with their favorite celebrities on the covers. It is almost impossible to control every aspect of society to make it appropriate to younger viewers. If all the people were able to take all the items that they did not approve of off the shelves, then there would be many of these shelves left empty and bare. If everyone were to take a book they did not like off the shelf then there would be a little selection at the libraries. By taking off one of these books, someone could be taking off another persons favorite book. People can not just take books off the shelves because they have some bad language. There is a reason for separating the children's section from the adult's section, and it is because some books might not be appropriate for all readers. From my personal experience I have not seen any problems with kids checking out offensive books. Most little kids are attracted to the children's section because of the colorful pages and simpler words. There is a variety of materials available to the public that @MONTH1 be offensive to some, especially to their little children. As a parent it is their responsibility to keep track of what their children are being shown. People can not take materials off the shelves because it is only offensive to some. This would not be fair to those who enjoy these kind of materials. If they do not want to buy it then they should simply move on to another shelf or to a completely different store. It is their choice as the consumer on whether or not they want to buy into the many different types of books, music, movies, magazines, ect." 4 4 4 4 4 4 +3641 2 "I believe that if you are at a library or movie store, or where ever and there are books,movies, magazines, or cd's that you think are offensive that they should most likley be taken off of the shelf. Have you ever walked into a store and seen something not approprite for little kids, and you get a little embarassed yourself?I know I have at least one point and time in my life. Which is why I believe that it should be removed from the store, or at least the shelves. I always try to think of how my grandparents would feel if they new what kind of music most teen's are listening to today. There is so much terrible language and talking about violence and bad things that really just isnt appropriate for anyone to hear, or even talk about. Some people feel differant about this, and some people take it a little to serious, but you have to remember everyone has their own opinion" 2 3 2 2 3 2 +3642 2 "Dear @CAPS1 paper, I for one do think that certain books should be removed from the book shelves at the libraries, but I also disagree with that same situation as well. For example, I believe that certain books shoud be removed from the library shelves because, under age children also attend the library, and because, other people might find certain books offensive and should not be displaed in a library. My disagreement to the situation is that the its a library, and libraries have different types of books. First, I think that certain books should be removed from the library because, it a public library and not only adults attend that library, but under age children as well. I know that certain books under age children are not allowed to check out, but they are not deprivcd of their privlliages of staying in the library reading such books. Next, I do not agree that cerain books should be viewed on library shelves because, other people might find such a book offensive to be in a library. The reson I say this is because some books oppose humor to other people race, and if for say a black, mexican, maybe even a arbiana person was to come in the library looking for a book and happen to fall upon a book that talks about their race, most people would take that offensive. However, I do not think that any book being deprived from a libray. My reason for thinking that is simply because its a library, and libraries are developed for many peole types of intrest in books. And I don't think it will be fair that certain books should be removed from the library because people think they are inappropraite in certain people interest in books. And people should be free to come in and look at books without having to search for books that interest them but are removed because other people find them offensive. Therefore, I do and also don't agree that a library should be stripped of a book becuase it lacks intrest in someone or offend someone. And that such a person should 'put the shoe on the other foot' as the saying goes and try to see from other people point of view." 3 3 3 3 3 3 +3643 2 "When u go places there will alway be something that one won't like not everyone likes everything. A library has to be the worst place for people not liking things. Censorship in libraies is getting worse and worse everyday, it is in everything in books, movies, music, and magazines. Should we keep things like this on shelfs? Everyone that will read this will think differently about censorship in libraries. On the shelfs is lots of things with bad laugauge naughty pictures. These books little kids can pull off a shelf and see things that there parents dont want them to see. Censorship is everywhere not just in libraries. The books and things in the libraries need to be changed and not be so bad. If there is a need for things like this Then have a special store for things like this" 2 2 2 2 2 2 +3644 2 "Censorship in libraries is kind of a big deal in schools. There @MONTH1 be a book that someone really wants to read, and they cannot get it in their school's library. A lot of books that are great educational books have been taken off of the shelves of libraries, because they are either too violent, or they have bad language in them. If kids or parents are offended by these types of books, then they do not need to check them out. There should not be censorship on books in schools. There have been a lot of books, teachers view as being educational books, that have been taken off of the shelves in libraries. Books that teachers would like to give to there class to read. There should not be any problem with giving someone a book that has a few bad word, or a few violent scenes for them to read. Some of the books that are banned could relate to someone, and touch them. Banning books in libraries needs to change. People should have the right to read what they want to read, even if the book or magazine comes from a school library. There are books that are very good that have been banned. '@CAPS1 for @PERSON1' for example was banned in public schools for some reason. This book is one of my top five favorite books, and i could not check it out of the library because it was banned. This kind of stuff needs to be open to everybody no matter the age. Censorship in libraries is something that needs to go away for good. Many peoples lives could be changed, touched, moved, etc... due to a book. Many books that have been banned are great books that can have an effect on someones life. People should be able to read what they want to read when and where they want to read it." 4 4 4 4 4 4 +3645 2 "I think certain materials should be removed from the shelves if they are found offensive because the word is just saying 'OFFENSIVE', or those things should be placed where not everybody can get it, like the little kids or when your religion doesn't accept that kind of things. For example in my opinion there are some books, music, movies or magazines that show images or words that are offensive, and not just for me or other people too. Offensive for me is when its not an appropriate thing like certain images, videos or bad words that should not be use for everybody to hear or see. You have to be careful when you think something is offensive because not everyone thinks like you, and everybody has a different opinion and conclusion and we have to remember, we have the power to talk, read and write what we think is best. I'm not saying that they should prohibit certain books or music, I'm just saying that there is time for everything and we are young and we are looking for a good future, not just for us also for the younger kids and the older people have to provide us the best they can, because they have experience and they know what is best for their kids. This is a free country and people should express their opinion and make it worth, if you think something is being bad say it, and its important to remember do not let people offend you with words or images and don't let them force you to do something offensive for someone else" 3 3 3 3 4 3 +3646 2 "In @DATE1's world there are so many things around our children that if we tried to take materials away, we would be take most of what is made for entertainment. Many adults say that our world has changed so much from the time when they were younger. Well, why don't we do something about it? People need to stop complaining about everything and just do something. Adults can eliminate the amount of materials the children take home with them. If you were to walk into any store these days you would find something that you would not want your children to watch, see, or listen to. I believe people are doing the best they can to seperate these materials from the family oriented materials. Sometimes it is just not enough, children are still getting addicted to some materials at a very early age. These children share what they have with their friends, and these other children start doing the same things. Many materials such as movies and music have negative ideas that teach children things they do not need to know or learn. The material that talks about drugs, parties, and drinking does not even need to be on a radio station or a television channel that a young child would listen to. Our adults need to also learn that it is not good for the children to learn and listen to these things, and to keep their children away from it as much as possible. Like the author said if everyone was able to take something off of the shelves there would not be anything left. We are always going to have these things that we do not want children to see, but we can start to eliminate some of them. The others we can not eliminate we can continue to keep on the shelves and other places, but just kept where children don't go. I believe that our towns and cities can do a better job of keeping our children away from @CAPS1 rated movies, negative songs, and different books that talk about 'adult things.' The children are the future of the world. If that's all they are watching and thinking about then it does not look good for the future. There are many things we can do to stop our children from watching, listening, and learning about these negative things in life. Keep the children away from these materials, it will be a better world if we do." 4 4 4 4 4 4 +3647 2 "There are many books, music, movies, and magazines that people find offensive. Some people even believe these things should be taken off the shelves. I do not believe that the books, music, movies, or magazines should be taken off the shelves completely. Not everyone finds these things offensive and they should not be taken off the shelves because a few people do not agree with them. First, people have different views on what they find offensive. Not everyone will find the same things offensive or want the same books or song to be removed. With people always having different views it is difficult to take books, music, movies, or magazines off the shelves for everyone. Just because one person does not agree with what is being said in the movie or book does not mean that every single person wants that movie or book to be removed. If one person found my favorite book offensive I would not want it taken off the shelves completely. Equally important, if every book, song, movie, and magazine that someone finds offensive is taken off the shelve there would not be many books, movies, songs, or magazines left. Author Katherine Paterson once said, 'But if I have the right to remove a book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 is saying that if every single book that offends someone is taken off the shelves there would be no books for anyone to read. People find different things offensive and if everyone took these things off the shelves there would be none left for anyone. Finally, if someone finds a book offensive they do not have to read it. When someone finds a book, movie, song, or magazine offensive they don't need to watch it or read it. Instead of taking it off the shelves the person could just not read it. Not everyone finds the same books offensive and taking them off the shelves could upset many people. When someone finds something offensive they could just avoid that instead of getting it removed and upsetting other people. If someone was offened by one of my favorite books, I would prefere if they just avoid reading it instead if taking it off the shelves so that I can not read it. Some people find many books, songs, movies, and magazines offensive. They would like these things to be removed from the shelves permenatly. I, however, do not believe that these things should be removed. Taking these off the shelves could make some people happy, it could also upset even more. Not everyone finds the same things offensive and should not be taken off the shelves because a few people do not agree with them" 4 4 4 4 4 4 +3648 2 "Imagine walking out of your home and you see right down the street a giant bonfire, right in the open. You see men walking into a library empty handed and walk out carrying armfuls of books, magazines, movies, and other media. The men then toss them into the raging inferno and you seem them become incinerated, lost forever. This is what will happen if we let censorship of our libraries take place. We should not let censorship of our libraries take place since it violates a constitutional right, will gradually make our society more and more ignorant, and will let this nation slide from a democratic nation to one where the beliefs and ideals of the people are controlled by a small group of people. Letting censorship of our libraries take place will violate a basic constitutional right, plain and simple. In the @ORGANIZATION1 it clearly says that there will be freedom of the press. By tossing out certain literary works this right will be thrown to the side and by violating one constitutional right, what will come next? Will our freedom of speech be negated, or our freedom to assemble? As citizens of the @LOCATION1 we can not let this happen to our great nation. By allowing certain books and essays to be thrown out of our libraries, the people's knowledge base will eventually shrink down drastically. For example take @PERSON1's theory of evolution, a very sensitive subject among people of the @CAPS1 faith. If all of his works regarding that were to be thrown out, much information that was very valuable to biologists would be lost and those biologists would not be able to improve upon the existing pool of information. If this was to take place our civilization would experience a lessening intellect and a expanding ignorance regarding many fields of knowledge. Picture @CAPS2 in the @DATE1. Hitler's @ORGANIZATION2 has taken power and our systematically destroying all materials they find to be subversive to the @ORGANIZATION2 cause, only allowing materials that contained beliefs and ideals that they thought were correct to exist in libraries. This is exactly what we would be doing if we allowed censorship of our libraries to take place. The censoring of the libraries would be controlled by a relatively small group of people which means that the censoring would be controlled by that same people's beliefs and ideals, and those same beliefs and ideals would thus be forced upon the people, shaping the beliefs and ideals of the masses to those select few. In conclusion, letting censorship take place in our public libraries will dismantle the basic structure of our society by violating a constitutional right, making our society gradually become more and more ignorant, and letting the beliefs and ideals of our people rest in the hands of a select few. This is not what our @CAPS3 @CAPS4 envisioned @LOCATION2 to become and they were right. Letting censorship exist in our public libraries is simply wrong" 5 5 5 4 4 4 +3649 2 "Everyone has things that would offend them, whether they admit it or not. Books are known to do this to people. However, there are all different kinds of books, music, and all the other materials that could offend all different kinds of people. There are even books read in school classrooms that offend people. Reading is an important thing and whether or not the reader likes it, they will come across one that offends them. I believe we have the right to have those offending things because there are so many books who offend people, music and movies have censorship, and if they don't like it they should ignore it. First of all, we have the right to have these kinds of books. Just like in life, there are certain things people don't like, but deal with it anyway. That's what this is. Even though there are the handful out there that don't like those certain books, those books are the ones that are well liked and become famous. I have read a book that people have wanted to ban and it was one of the best books I have read. To sum that all up, if we took away every book that one person didn't like, there would be only few left. Secondly, music and movies have censorship. You can choose whether you want that censorship or not. Movies tell what ages are okay to watch those movies. Music blocks out the words that need to be. If they don't want it they don't have to listen to it or watch it. We all have the certain things we love and hate, we can't eliminate all of the hated things. Last of all, in my opinion if they don't want it they don't have to have it. The music and movies are an option to people, they don't have to listen or watch something they think is a bad idea. It's all opinionated, there isn't a right or wrong to it. I know of people out there who don't have @CAPS1's or they don't listen to the radio, that's perfectly fine. They don't have to complain about because they don't pay any attention to it. To wrap this all up, there are so many books out in the world that offend people, the music and movies have censorship, and if they can't stand it they don't have to deal with it. As I said, these books, magazines, music, etc. are very well liked by many of people, so why get rid of them for those few who get offended? We all have things we do and don't like that we cannot do anything about. As Katherine Paterson once said, 'But if I have the right to remove that book from the shelf, then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.'" 4 3 4 4 4 4 +3650 2 "There I was, shuffling my way through the library, finding the perfect books to check out. It was then that I had stumbled upon a book that looked incredibly interesting. The cover page featured a depressed girl with the look of hope plastered on her face and the back included the summary of a book I wanted to get my hands on. The book, titled @CAPS1, was about a girl who went through some troubled times but found her way out of it. Stories, novels, magazines, or books on tape of any type find their way onto our library shelves, it is then our job to discover them. Whether literature includes stories of love and breakbreak, sorrow and depression, or the success of a sports team, it should all be allowed on our library shelves. Opinion, everyone has one that conflicts with someone elses. Our world revolves around these different viewpoints and ideas, should our literature and music not reflect these opposing sides? Literature is an escape for many people, it is their way of experiencing the world and to live through the main character of whatever they are reading. If we remove books that @MONTH1 be offensive to one, we are taking away that opportunity for others. In my opinion, the removal of the potentially offensive material in our libraries, is sheltering our world. Regardless of how hard we try, children and teenagers will one day be exposed to the offensive material we are attempting to remove from their lives. We should not attempt to hide what our actual world is like, rather allow them to experience it in a safe way, like reading or listening to music. If someone views material as offensive, it should be the parent's responsibility to regulate whether their child reads or listen to it or not. The removal of the potentially offensive material would not be any help. In conclusion, offensive material should not be removed from our libraries, rather regulated through our parents or elders. The idea of regulating what is on our shelves is not the most effective. If any material has the potential of being offensive, it is not the library's role to regulate whether or not it is displayed to the public" 4 5 4 4 4 4 +3651 2 "The censorship in a library should be kept the same as it is already. A few reason explain why the censorship is alright as it is. Those reason are That the parents should be in charge of the books their children read, that not all people agree on censorship, and that the libraries have books of different subjects that people like to read. The first reason is that parents shoud be in charge of what their children read. If the parents would just tell their children no to a certain book, then the child will not read it. If the parent does not want their child to go into a section then, the parents can just say keep away from that area. Although, sometimes the child @MONTH1 stray away from its parents it is not very likely that the parent will not notice. That is why the parents should be in charge of what their children read. The second reason is that not all people agree on censorship. Certain people think that religion is important no matter what the book shows, but others would think parts of religious book (nudity, swears, etc...) is extremely innapropriate. Some people would say that books like @CAPS1 mythology books are innapropriate and need to be censored, although others think these books are past culture and that they should remain in the libraries forever. Most children will look at these books and think that the books are to big to read, so they would not even look at them. Few people would agree on censorships, and a lot of people would disagree. The third reason is that libraries have different subjects than the innapropriate books. The people can look at a different book and completely ignore the others. It is not like a child will go up to the dirtiest book they can find and say '@CAPS2 I want to read that one.' the child will probably want something that relates to a television show or a movie of some sort. The point being that a person can read other books than just innapropriate books. Library books should be kept the same because the parents should be in charge of what their children read, not all people agree on censorship, and libraries have different subjects that people want to read. The censorship should be fine according to some people other would disagree. The children probably would not look at the innapropriate book anyways, because they would not interest the child." 4 4 4 3 3 3 +3652 2 "So you see a nice, old lady looking at one of many books throught a library, she chucks @CAPS4. You look at her, she looks at you, she walks away. You go and pick up the book, @CAPS4's about medical marijuana. She took offense to that? I don't really care what people gotta say, if @CAPS4's on the shelf, @CAPS4 stays on the shelf. I'm convincing librarians, readers, and everyone else that if you have offense to a book, magazine, movie, or anything you can find at a @CAPS1 library, shut your fat mouths. A library serves many purposes, one, @CAPS4's @CAPS1, itt's open to anyone and everyone. Two, if you have a library card, you can check out books, movies, music, etc. Three, if your walking down the road and 'gotta go,' you can stop right in and leave. What I'm trying to say is that nothing should be removed from any shelf at any library. Yeah, I mean there's a certain point at which you got to take charge, but even then you can have an adolescent room or what not. I think that if you take something off the shelf at a library, you can just taking away part of the heart. Let's say you have @NUM1 @CAPS1 libraries in your town, one library has one thing the other doesn't have. Someone riots and they get to take @CAPS4 off the shelf. Your never going to find that anywhere else unless you buy @CAPS4 off line. And sometimes, that can get a little pricey, especially since you can get @CAPS4 free at a library? But then again, I see where people are coming from to take certain materials off the shelfs. Say you gotta @NUM2-year old kid, and he walks up to you carrying a sex love book. What can you say about that? I mean in sounds corny but @CAPS4 can happen. Most parents just want to keep their kids in a safe, harmless enviroment. That's where they come in and say, 'I thought this was a @CAPS1 library?!' Then that's where @CAPS4 goes bad. After all that happens, people just accuse the librarians to @CAPS2 they got these books, movies, and music that's just bad for a young kid. But @CAPS4's not the librarians' fault, different people like different books, that's @CAPS2 a library has many, many choices when @CAPS4 comes to books. That's when the question comes up, '@CAPS2 don't we just have seperate rooms, for seperate books?' @CAPS3, that sounds good and all, but who's gonna pay for @CAPS4? Libraries get donated alot of their stuff, they are profitable, but then again a non-profitable resource. Libraries have been around for ages, most of them started out small and now are big. That's when the library gets donations, looks through them, and sells the books they don't want or need. They make money off that, that's when they start making seperate rooms. @CAPS4 sounds crazy, but @CAPS4 wouldn't cause a riot to go on about people. Therefore, people are happy, librarians happy, and most of all you are happy. You can find the book you want or need easy as one, two, three. All you gotta do is go to that certain room, look for @CAPS4, check @CAPS4 out and you got a nice book to be reading anytime. @CAPS4 sounds easier that looking @CAPS4 up, get the dewy decimal number, find the number. All in all, we shouldn't remove anything from a library shelf bevause @CAPS4 @MONTH1 be the only one in your town, maybe the only one in your state, maybe through the whole country. You never know. All I gotta say is, '@CAPS4's better to keep a book, than to forget a book." 4 4 4 3 4 3 +3653 2 "Maybe, to a sense I do not think that boo'ks should be removed to an extent. The reason for this is becasue that some books, magazine and other stuff can be informative. They can help you wtih certain questions. They @MONTH1 not always answer what you need but they are there to look back at and see what type of generation we have. But, there is also other reasons things that can be offense to others. People @MONTH1 take that aspect to the next level to where they are getting hurt. I think that maybe certain books and magazines should be removed. They tend to do damage to others and can hurt other poeple. The sense of this nautre is to ask the store to remove the books or magazine. The store can not take the books off the shelf if one person is offended by the book. If you take every offensive book of the the shelf then you will not learn from the other mistakes it has taken on other peoples lives. They maybe think it would be a good idea to books off the shelf but younger adults could not learn the mature items that the parents do not want to terach. They @MONTH1 think they are doing t the right thinking by not showing you sexual offenive stuff. You @MONTH1 not want kids or others to see this sexuality and see what the world is becoming. Also, I can see why they would want to take that stuff off the shelves. They @MONTH1 not like what they see but they think it is the truth and is very offensive to see the sexual, mental illness people have. Certain books @MONTH1 stay on the shelf such as a @CAPS1 book. @CAPS1 books so the human body they do not hid the human body we should know about the human body. So the @CAPS1 books and magazines should stay on the shelf. If you want to look at naked provakadive stuff then go to a sex store. Do not put out books in public that can show the sexually side of humanbeings. The @CAPS1 magazines are there to learn not for enjoyment. You can go to a different store for enjoyment. But, if you take off stuff that can be offensive to others then that means you would have to take off the @CAPS1 items. People could get offenive by not looking like the poeple in the magazine. That could offend them so would you take it off the shelf or not. Not you would not becasue a @CAPS1 book is there for you learning envoirment not to ofen you. That also could go for the sexual magaizes. Yes, sex is good for you but would you want to teach that to ounger kids that fast. You would want to teach them about sexual introcourse not a magazine. I know that @CAPS1 books and tapes can be incouraging sex but they are mainly talking to adults. As far as music and tapes go no I do not think that those types should be removed. That is for enjoyment and people liek to relax to this sorta stuff. I mean I do not buy tapes of @CAPS2's or music but othe people do. They enjoy it if you did take it off then what else would they put up? You have to think about the younger generations. The older generations lived a happy not violent life. But, for teenagers now in certain places they have it hard. They need to make a living on the street. They need something to listen to. This offensive music is to listen sure some music is horrible but what music isnt these days. If music is what you are instersed in then why would we take it off the shelves. People make a living listeing to music and cerating it for others. It is a wonderful thing it really is what makes the world go around. Making stores and stands take the music and newspapers off would be a disappointment to see such a wonderful thing go down the hole because it hurt others. If you go back to the @NUM1's there music was about drugs as well and nobody ever had a problem about that. Maybe people don't have a problem with it but its becaseu they grew up around it. Just like we have grown up to the rap and the sexual musice. We are teenagers and you were once a teenager. You know you would not be listeing to a beetles song that wouod not be about drugs or sex or getting high. The beetles sang about all the stuff singers sing about now. Generations change and so does the enivorment but you can not change they way we grew up. You can try to make it better but it will take a lot of will power. The generations now are tough and they wont let down. You might as well stop trying to take down what we grew up to away from us. Nobody was trying to take away your music so why would you take away ours. Its not something you want to take away it's somthing you want to look back and see how much are generations have changed from one to another" 4 4 4 3 3 3 +3654 2 "In my opinion I believe all types of material should be allowed in libraries. If someone takes offense to a particular topic or section they dont have to read it. Not just certain types of genre and themes or magazines. Everyones different meaning they have differents personalities and views on what they like. I think libraries such actually expand thier variety of books. Libraries that don't cater to a persons desires or interests , what would make them want to stay? Libraries should be filled with all sorts of subjects appealing to everyone. Just like how they have an adult and children section. Everyone has a place were that feel like they belong. Even if some people get offended. A person can get offended anywhere not just by a certain magazine or some music style. I do believe if there is a certain line of respect of course. Nothing should get to out of line were it's an issue with a numerous amount of consumers complaining about the same topic. You can tell if a certain section or material is crossing the line. Each section should be written to speak the truth but also in a respectful manner. In the times that I've been to the library there @MONTH1 be some things that I don't agree with how certain things are certain ways. But then I see a person really enjoying their time at the library. I know when I go I always find my style of music that appeals to me. Not just the same thing everywhere I go. Theres always a choices, different options and more things I can learn about. Keeping all the materials like books, music, movies, etc is a way to appeal for everyone. I person should have their opinion and the choice to be able to read what they like. There will always be a certain movie or book you don't care for ,but others might. If everyone told what they like and don't like about a certain book. Where's the variety? What books will be left? Everyone has their on thoughts on what they like, if theres a topic you don't like you probably know least about it. And the library is a good way to search and find information about anything" 4 4 4 4 3 4 +3655 2 "This essay is all about wether certain materials in libraries should be removed from the shelves if they are offensive to some. I do not believe things should be removed from shelves in libraries if they offened someone. Just because it is offensive to one person doesn't mean its offensive to all . If you are offeneded by somethings they display there are ways that you can avoid seeing them. One thing you can do to avoid it is never go by or around the shelves displaying it , ask for help so you get whatever it is that you need , or try to search what your looking for on the internet. When i visit the library I already know what im going to get so i have never found anything offensive to me. If I did find something offensive to me I would complain and if they didnt do anything about it I would just never go back. I would just research online or go to another library where I know they will meet my needs. The libraries I go to always have sections seperating the different age groups. The sections are split into children , teens , and adults . I' ve been to the library numerous times and I have never heard anyone with a complaint about something being offensive. If the library had something that would offense me I wouldn't know. Everytime I go I stay in one paticular section for teens and look at magazines and books . I feel that if people are offended by what they see on the shelves they should just avoid or ignore it because everyone has their own opinion on what offends them and what doesn't" 3 3 3 4 4 4 +3656 2 "I think we should not take it off the shelf beacus what @MONTH1 be offensive to you @MONTH1 not be offensive to me. or some thing that fun or i think or beneficial to me. and what @MONTH1 be offensive to me @MONTH1 not be offensive to you. And i think if some thing are offensive to some one thay should just walk off, or just dont mind i" 2 2 2 1 1 1 +3657 2 "I believe the current way materials are censored and removed works, and should continue. While everyone @MONTH1 dislike a particular novel or book, libraries can not remove every book a person dislikes, as Katherine Paterson said. When a book appears so controversial to the point where the majority of people disapprove of it, then the book usually is taken off of the shelves. The possibility children will see the offensve material appears unlikely. Most public libraries do not put their offensive material near the childrens books. At my local library, their is a section that has the more offensive or obscene books all in one place. To acquire these books you must have a parents permission or be @NUM1 years of age. It is very unlikely a child would ever see the materials in question. Numerous people who find the materials offensive must also remember the time and place the story originated. @PERSON3 @PERSON2 @MONTH1 have had racial slurs in it, but if one considers the time and place of the novel, these slurs were normal for the time. Someone can not be frustrated with a novel written @NUM2 years ago because it has something offensive in it by todays standards. While I believe, for the most part, libraries should not censor or remove materials, there should be some restrictions set in place to keep extremely harmful materials out of libraries. For instance, libraries should not have dirty magazines or movies on their shelves. If a high majority of people want a particular material banned, then it is hard to ignore them. When a book is so vulgar people begin to protest the book, there are questions as to whether the book should remain on library shelves. When a high percentage of people join that cause, then it should be banned. Censoring or removing materials from libraries remains a hot topic today. I believe the current system in place to censor or remove books does its job, and that it should continue. If few people disapprove of a particular material, the book remains in most shelves uncensored. When a lot of people begin to protest that same material, it has a high probability of being banned. With this process, every book with a racial slur or questionable scene is not removed, while the ones that truly deserve it are removed." 4 5 4 4 4 4 +3658 2 "Have you ever been at the library and asked yourselve any of the following questions? Who reads this? Why is it here? Are kids reading or watching this stuff? Do kids check these out? Or have you ever wondered or said to your self any of these statements? I don't want my kids to pick this up and read this. This is so offensive. This goes against all our morals. I don't know what kind of freak convention this is but I'm no part of it. Lets get out of here. This place is wack. Ever consider what books get banned from the library? Who bans the books? I think things should have to be very offensive to pull them off the shelves. I think that they should just stick them to a side of the library and put a age on it or you have to be a certain age to check out those books. I dont think the cussing books are that offensive. When the person (No matter who it is)goes out into the world. They are going to learn and hear curse words. People use them like they do the words 'and' or 'the'. They are going to hear them till thier grave. Wheather they chose to use them or not that's thier choice. For them to be banned or moved to a diffrent group of books they should have to be sexist, raciest, have alot of sex, or just really grusome. I think they should go upstairs with the mushy romance and wacked out western. I mean people could go up there and check them out but that is the adult library area. The staircase should be by the circulation desk. When they are not busy they should go upstairs and check and see if there are any young children up there. I think The top level or a certain area should be the adult area. They have mushy lovey dovey stuff, they have cow boy shoot off stuff, and the offensive stuff. The stuff with too much sex, really raciest, or really sexist, or grusome stuff like people killing people for fun.Also they should have the adult magazines up there too. Don't act like you don't know what im talking about. You know how you go down a aisl at the @CAPS1 market and there are girls in thier bikini and half naked. Then there are the cosomos both should be upstairs. I mean they talk about how to give pleasureable sex. I would hate for some little @NUM1 year old or @NUM2 year old to pick that thing up she would be scarred for life. Then the main level or area should be teen books. You know vampire books, @CAPS1 heros, crazy fiction stuff, and then the magazines and movies that aren't bad. Then the bottom level should be the children level. Games puppets and movies and easy books. That about sums that up. I dont think just anybody should be able too ban a book. I think it should be open but not just anyone. There should be a huge meeting. With the mayor, a couple teachers one english teacher from each level, and parents, and the librabiens. The person who wants in banned should have to tell everyone why and stuff. Like Author Katherine Paterson said 'All of us can think of a book we hope none of our children or any other children have taken off the shelf. But if i have the right to remove that book from the shelf, then you also have the exact same right and so does everyone else. And then we have no books left for any of us." 5 5 5 4 4 4 +3659 2 "Censorship in the libraries. Do you think that we should be able to take movies, magizens, and books off the shelf. There are many different arguments about this subject. I believe if they put the books, movies, and other stuff on the shelf than it should be able to be read by children and others. They need tho learn about everything thats out there in this world. because if they don't learn about this now than they will never know about all of this when they get older. I think that it is cridical for our youth to know about it. Some people @MONTH1 say that we are two young to be looking at that stuff but the younger you find out about it the better of you will be when you get older. So that is my input on the situation. the younger you are you can learn more about the stuff" 3 2 3 3 3 3 +3660 2 "I think that certain materails should not be removed because a couple people do not like what is in a book, or movie, or in music. If we where to listin to what everyone said and remove the books that they do not like then other people would not have anything to read. For example if a man came in a library and asked the library to remove a book that is about murdering and has violence in it. A person that @MONTH1 come in the library daily @MONTH1 want to read that book because that is the type of books that the man likes. Another example is if a person has children that come into the library and there children were watching movies about gangs,drugs,and violence, the mother would want that movie removed from the library. I say that if the mother does not want her children to watch the movies they do she should say something to them and punish them every time they are cought watching it. Instead of parents trying to remove the books that many other people like they should be more disciplined with there children.A way for the library to stop children from geting movies or books they should not be reading is to put all the books and movies in a special area where it will be watched. Many people like movies with drugs, and violence. There type of movies or books should not be removed because of what another person thinks about that certian thing. I also think that if a person does not like the type of language or images in a book or movie then they should not read it or watch it. And if they say there children watch it or read it without there permission then that is there fault and they should know more about what there young children are doing instead of trying to get that book, movie removed sometimes books and movies have very offensive languge but that is because they are just trying to show some of the stuff that happens in the real world. They want the movie or book to be as real as posssible." 3 3 3 4 4 4 +3661 2 "Censorship; the aspect of removing offensive materials from the public eye. Is this the right thing to do? Should society as a whole take away variety? Do you believe our generation or future generations should not get to experience and understand what the past generations have? I believe censorship is wrong in every aspect, but I also believe that materials that are offensive, or unappropiate for certain ages can be controlled. Movie theatres, video stores, @ORGANIZATION1, and television all do it. They use ratings and age control for their viewers. Now control can be difficult, and @MONTH1 not always work if not handled correctly. To handle this situation before it arises, the library can use a system like restaraunts or bars use; such as, checking identification before letting a book that is '@CAPS1' rated or above be checked out. Different sections in the library can be available to certain age groups. Now you @MONTH1 be thinking; doesn't this idea take away from the liberties that libraries give us? Well you @MONTH1 be right, but you would rather have our children see violence and other inappropiate materials that they shouldn't? It would be just like the movie theatre. You would not need to buy a ticket, but the control of content would be phenomial compared to what it is. Would you want your six year old girl picking up an adult violence movie, sexual content movies, or even a @CAPS2 with cursing in it? Why should the library offer things for children that parents would frown upon? I believe the library should be a place of learning and freedom, but the learning should be something age appropiate. Our society is maturing too fast for young children, why should the library take part in that? Libraries located in schools do not even offer this material because they know that the majority of the readers' for their library are students. This being said why should public libraries be okay with stocking this material. Yes, media is everywhere. Movies, books, magazines, newspapers, music, and much more flash and sell more than they should. Media shows children things they shouldn't know about until they are young adults, but does this make it okay? Does it make is right for children to see and want all they want to? No, it does not. Fighting fire with fire only makes a larger fire. Why start our children out at a young age with violence, sex, and inappropiate material? Would you like to set your children up to fail? I know I wouldn't so why let our libraries hand out books, magazines, movies, and more to let our children thrive upon the culture they are stuck with? I do not think we should remove these books from our libraries because everyone has a different opinion, but I do believe that control needs to be put into place for our children's and other children's sacks. With that being said, censorship is overrated, but some of the material at the library are underrated, and that needs to be handled and controlled" 4 4 4 4 4 4 +3662 2 "Everyone has a favorite book. And some of us can't put it down once we read the first sentence. Then days later, the library takes it down and states that it's offensive to many people that have read it. Why should multiple people lose a good read just because someone doesn't like what they see? We're all trying to accomadate to everyone and their needs just to please them. Whatever they ask is done because we don't want a big scene. A majority of people think, 'That book is offensive! Take it down! Disgusting!'. But why? Everyone has a right to read what they want to read. No library should uphold to the needs of a minority about an 'offensive' book just because they say it's inappropriate. Who are we to judge what's good for everyone and what's not? Books are written for a reason, and that's to share the ideas of the author, not to corrupt society with their 'evil' and 'offensive' ideas that could potentially cause a child to rebel. That excuse is ridiculous. A parent should've taught their child to differentiate between right and wrong, and if they use the '@CAPS1 child will become a rebel if they read this!' excuse, then they're not confident in their childs capability, or the fact that they taught their child well. Also, it's not just the readers getting angry, it's the author. How bad would someone feel if they spent a year or two on a fantastic book, just to have it banned from library after library? Probably angry or upset. Authors have the right to write whatever they want. If they wish to talk about dragons and princesses, so be it. If they want to discuss why we see a full moon when we do? Go right ahead. No one can stop great books from being made and they certainly shouldn't be able to stop people from reading it. If someone is offended by a book, then don't read it, simple as that. Parents like to protect their children from harms way and bring them up as fine citizens of @LOCATION1. By having this desire, the parents do every little thing to make sure their son or daughter doesn't see, hear, or read anything inappropriate or 'bad'. This is just ridiculous. Controlling a childs life will just cause them to rebel more and more as they get older. Let children have a choice in what book they read, or the movie they watch. Parents need to teach their children right from wrong, and in doing so, letting them see, hear, or read whatever they want should be no problem. Without books, movies, and music, what would the world be like today? No one knows. Books are a great source of information, letting the author express themself as well. Movies are almost just as harmless, limits are needed, but overall? There should be no problem. Also, music allows the artist to bring out their side of creativity and emotion. Allowing that music, or movie, or book to be made, and then take it away is ridiculous. If it offends someone, then that person should just forget it, instead of taking it away from the people who love it and the person who made it." 4 4 4 4 4 4 +3663 2 I dont think there should be any censorship good books and music shouldint be removed just becaus one person finds it offensive. Becaus the opinion's of one @MONTH1 be diffrent with another.I beleave music is cencord the most becaus not many people get offendid by books but censorship in music i think is destroying it.Becaus its an artists way of expresion and if people dont wana listen to what there saying then they should just not listen to it.Books i think shouldint be taken offensivly forthe same reason music shouldint its a writers oppinion and expresion its like telling someone they cant voice there oppinion on anything like racesim or use curse words if they want. 2 2 2 2 2 2 +3664 2 "To @CAPS1 @CAPS2 @MONTH1 @CAPS3: I am writing to you today concerning cencorship in libraries. I have had a select few instances throughout my life where I have read a book or magazine that to some @MONTH1 seem offensive and to others not at all. However, I do have my own view point on the situation and I feel that @CAPS2 is my duty to inform you that I feel offensive books, magazines, etc., should be removed from the shelves. Everyone has grown up and been taught different values and morals that are important to them. They stand for these values, but at the same time respect that other people have the right to believe differently than they do. With the world the way @CAPS2 is now, violence can errupt from the simplest of things. Putting books on public shelves for the public to read, can very easily cause outbursts and debates between people who have opposite opinions. Offensive books and magazines put out for the public is asking for something bad to be a result. My suggestion to you is to remove these offensive books. This will create a safe and happy envioronment for all who visit public libraries,and other public places. @CAPS2 will create fewer arguments between adults and set an example for younger children who are observing their parents behaviors. Children follow in their parents' footsteps. Observing bad behaviors from the parents due to offensive books does not teach the child how to act in a responsible way if they were put in this postion. When our children grow up, we want them to beahve in a responsible way. Offensive books not being put on shelves will hopefully create a healthful environment for appropriate behavior. As a student, I want to grow up in a world that has people who are resepectful, happy, and responsible. I want people to get along with each other. I feel that taking offensive books off shelves will help with this somewhat peaceful world I would like to live in. Violence can be created through anything, and I feel that offensive books should be the last thing added to that. Without offensive books for the public to read, will create a better environment for the people living today." 4 4 4 4 4 4 +3665 2 "Removal of Books If there is a book that someone takes offensive, should every book similar to that book be taken of shelves?No, even though people @MONTH1 find things in books offensive, they should not remove the books off shelves. When i was in the sixth grade my teacher asked me to read and write a summary on 'A @CAPS1 @CAPS2 @CAPS3'. I searched the whole library for the book then finally decided to ask for help, the privilage to read the book has been taking away. The book was no longer allowed in elementry schools, due to the fact parents were seeing what their children were reading and found the book very offensive. After many reports about the book, the book was taken out of the library. For me to do as my teacher asked i had to go to a public library and get the book. If you find a book offensive keep @CAPS3 to yourself and dont read the book, they shouldnt be able to remove books just because of what people think of them. Many people love different types of books, no matter if they are offensive or not others @MONTH1 like them. I believe that everyone has a right to read anything they want, books are made to be read and looked at. If books are being taking away then very less books will be read. But the more books read and understood, more books will be wrote and published. The same has to do with music, movies, magazines, ect, they all are made for a reason and should be checked out. @CAPS3 is great to learn about different things by reading, listening, reveiwing, ect, even the things people @MONTH1 find offensive, they @MONTH1 teach lessons." 3 4 3 3 4 3 +3666 2 "Going to the library you would think of it as an family environment, wouldn't you? I know that when I think of the library I do not think or offenceive material that would make anyone upset. Surprisingly many of the libraries do and I do not think that they should be alouded to, since it is not aimed just for adults. Children loved to go to the library to check out books and many more things that they enjoy, but a five year old does not need to see a movie, a book, or anything else for that matter descrimanting against the other gender or another race. These materials should not be able to sit apon the shelves no matter what the writers say if they are putting someone down. The writers or the library owners wouldn't let there own children read it so why should it be okay for someone else child to read or watch it. I'm not the only one who thinks this, I am sure that there are millions of people like me that would not appericiate their loved ones finding these things and reading them. The information that young ones see or hear while they are still young will carry on with them throughout their life; who knows what they will do or think when there are old enough. Theses places are supposed to be an family place where you can go to get information not for someone to pick up on violence, drugs, racistism, and any other diragotori subjects. Young kids are not the only ones that should not be reading these cruptied material; teenagers and adults are more likely to understand it better and take the subjects into account. I am begging these library owners to please take these offensive materials out of their branches; not only because small children could see them, but adults does not need to be reading, listening, or watching these things either. If you would not want oyur child to why would anyone else want their child too?" 3 3 3 4 4 4 +3667 2 "Why should they take them off the shelves? If you ask me i think they should leave @CAPS1 up their. I think they should leave @CAPS1 up there. Not only is @CAPS1 happening in the libraries its happening on televisions also. Everything in the library might not offend some people. Some people take @CAPS1 offensive when they see something thats against their religion, culture, or maybe their country. But we have the people that take certain things in the library offensive but don't worry about @CAPS1. I say, 'If you check out the library and find something that you take offensive, don't get @CAPS1 just beacuse you don't like @CAPS1 doesn't mean other people won't like @CAPS1. So why waste time trying to fight to get @CAPS1 off the shelves when @CAPS1's really you the only person worried about @CAPS1?' @CAPS1 just doesn't make any sense how people put up a fit because a certain material offended them. Like someone said a pastor was on tv, talkin about how bad hell really is since some people don't think @CAPS1's not going to be all that bad. He was on tv at the time and this lady got offensive about @CAPS1 and had them take him off tv. But she didn't havve to watch him on tv, she could of watched something else. Nobody made her watch @CAPS1, she chose to watch @CAPS1. So what I'm saying is that just like the author of the newspaper said, 'I have the right to remove that book from the shelf that work I abhor, then you have exactly the same right and so does everyone else.' @CAPS2 that if you want something off the shelf, think about the other people that actually want to use @CAPS1 rather than thinking about just you." 2 3 2 2 3 2 +3668 2 "Libraries are great for multiple reasons. A library is the place to go if you need to do research, meet with a tudor, find an interesting book to read, find that one song you've been looking for, or pick out a new movie to rent for tonight. However within a library there are limits toward what they offer and what you can get. Censorship in libraries is a topic that comes up every now and then, and people will debate over whether they think censorship is a good or bad thing to have. Personally, I think that censorship can just be more unconvienient for some. For example, when I was in the ninth grade I was assigned to do a research paper over @ORGANIZATION1's. However this topic turned out to be a challenge to research because the libraries I went to did not offer many books or resources over @ORGANIZATION1's because it is seen as an 'inapropriate' or 'offensive' topic. Also, the librarians wouldn'@CAPS1 let me check out some of the books because of my age. Since they thought that I was too young to be reading that information, they weren'@CAPS1 going to let me proceed with my research. I think that if it's something going on in the world we live in, then it might as well be available for the public to access. If there are people who wish to not see or hear about certain topics, then they can take it upon themsleves to avoid it. Rather than just getting rid of it all together. The same goes for any form of media. If there is a @CAPS1.V. show that you don'@CAPS1 like, don'@CAPS1 watch it. If there is a song that you dislike, then don'@CAPS1 listen to it. It is that easy. I know I do it all the time. People need to take it upon themselves and understand what they can and cannot handle, and then apply that to their daily lives. When it comes to children, and censoring certain topics from them, I think that it is up to the guardians of the child to determine what is @CAPS2.K. and not @CAPS2.K. for them to see or hear. Then it is the responsibility of the guardians to make sure that their rules, or guidlines, are set and the child understands what they are. In conclusion, I think the purpose of a library is to offer information. Any information. Then people go to that library to find the information that they are looking for, with the wide selection the library has to offer. I think that libraries should'nt have to feel responsible for censoring items that @MONTH1 be offensive. It is their job to just offer information" 4 4 4 4 4 4 +3669 2 "I do not think books should be censored from the shelves of library's. Katherine is correct in many ways. We would not have any books if everyone removed the ones the disliked. The world would lose alot of information on important things in their worlds. I'm writing this to explain why I don't think books should be censored. I don't think book's should be removed if they are offensive to some people because they, sometimes, help people see the errors in their ways like a book about gloryfiying the way white men and women treated @CAPS1 @CAPS2 men and women. now a days people would read that book and if they were racist they wouldn't be after that book,because they see how wrong @CAPS7 is. Music is freedom of speech, some artist's see themselves as 'liberaters', 'idol's',and even 'love spreading',yes their are some songs that could be 'seem' offensive but you'll never know how high a @CAPS3 will grow if u cut @CAPS7 down In example the song titled '@CAPS4' by @CAPS5 @CAPS6,@CAPS7 has catholic churches furious because they automaticly assume she's disrespecting @CAPS8 when in reality she's speaking a whole different tone. People learn special, powerful life leasons from things or situations that are shunned by our society and @CAPS7 will probably always remane that way,we don't know.But one thing we do know is we can change what we do in the present and better what were going to do in the future." 4 3 4 4 3 4 +3670 2 Libraries are plase that you can get a book you shute be oergat to be lick soem ales you are won porsn you have eve rhit to got in book you wat. I bleva that ther shou not be a what to sop pelpar of reede. So i belev that the suet stop bloe us bie tack the book of the shaf 1 1 1 1 1 1 +3671 2 "Should books, movies, magazines etc., be removed from shelves if they are found offensive. No, because all you have to do is ignore it or not pay any attention to it and it shouldn't bother you that much. Most people might look at something and think it is interesting like something that happened on the news lately and was published on newspapers or put on the internet. For example, the @LOCATION1 story, that has been on the news for the past week, people think that it is awesome that he is was finally found and killed. If people found that offensive that might be because they don't know what he did or wasn't around when it happened. If they took down stuff that was offensive then we would have nothing interesting to read. If someone found a movie that was racist the don't get it, just put it back and find something else like a romance or a comedy. Everybody could use a laugh every once and a while. For music if your friend recommends something to you, check it out on the internet first to see if it is any good, if not then tell them no and that you find it offensive. If they were a true friend then they would understand and perhaps make it up to you with something else. Magazines, from what I know don't really have anything offensive in them. The only thing the have a some pictures, gossip, facts, and some stories that might peak your interest. Books might have something things that you find offensive but, if you like the book so much you might as well finish it. If you found a book that you really like then read through it a bit or check it out on the internet to see what is about. Out of all the books I have read, I have found none of them offensive they were all good books, books that i would probably read again if I wanted to, but I won't, because I'm lazy. Newspapers are interesting to read and might have little to none offensive remarks in them. Some might pertain to blacks or mexicans, something like that. Well I haven't read any like that yet but, I have heard somethings about it. In the newspapers there might be little comics or gags that would probably be more offensive than anything in the newspapers. I think that if you find something offensive then just ignore it and move on to something else instead of throwing a fit about it because that wouldn't do well at all." 3 4 3 3 4 3 +3672 2 "There are so many things these days that people find offending, in so many different places in magazins, books, movies, cell phones, on the internet,even some words in songs. Some people find it so offending that they think they should be able to remove these offending materials off the self. A big thing for parents in this situation is what if my child gets ahold of this? I dont want them reading this! What if it messes up their childhood? Honestly parents if you dont want your young child to read these things or see these pictures then why take them too these places where it is at? On the occasion that they do get ahold of it, then sit down with them and talk to them about it so they understand that its something they should not be ossiated with. Also if evryone took things off the self what they found unoppropiate then we wouldent have anything left to read, listen to, or watch. Alot of times one thing that someone finds funny could offend another person to no end. For example @PERSON1 could find something very enjoyable, but @PERSON2 could find the very same the extreamly offending. It would lead to many arguments amoung or communites. Yet there is still another reason that this would not work out well, and would not be a good idea. If this were to happen then kids would grow up thinking that this is a esay world. This world is harsh and not easy at all times. Kids learn alot of this through the media. As long as we have postive role modles to exsplain to kids that what they see in some of the media is wrong, and they should not take part in it, then why would it need to be removed? If people were able to do this then the communities would have alot more crime from anger, we would have nothing left to read watch or see, and kids would live a very confused life not knowing what to exspect from the media. So now i ask you, what do you think" 3 3 3 3 3 3 +3673 2 "At my point of viwe i think if materials such as books is offensive to the reader the reader shuld just leve the book allown.Because other readers might just wont to read it.Same thing for music,movies,and magazines, or any thing else just because you fide some offensive it wont be right to take it away from @NUM1,ooo of more people.Also i think if some is offensive to more then one person it shuld not just not be taking away right then in there we as people shuld step up in have a vote or talk about it about the problem.I think it just wont be right for us or to the rest of the wrold and then look at how much work the author hade to put in i never wrot a book but i also know it's not easy to do.Heres a example me and my family want out to eat but we dent no were to eat at so every body was thinking about pizzy but my big brother dent wont to so we dent go out to eat that night because of one person dent wont to thats not fair now is it. So in my conclusino i dont think its wood be ringht to take some away because some body fund it offensive you just got to look at the rest of the wrold you just got to because it wont right to the rest of us." 3 2 3 2 2 2 +3674 2 "The content of a library should be full of various material even if one @MONTH1 find certain materials offensive. Just because someone @MONTH1 think a material is offensive does that mean we just ignore the subject, forgeting it altogether? Some subjects @MONTH1 be awkward to talk about, read about, or even think about, but that doesn't mean we should ingnore them. One subject that @MONTH1 be awkward to read about is sexually transmitted diseases. You often see people walking through the library skimming through the aisles, once in a while opening a book to see what it's about, but when they come to the section on sexually transmitted diseases they just walk on by, to uncomfortable to be seen in the area. It's not a subject that people normally read for fun, but everyone should be aware of it. There are many subjects like this that everyone should be aware even if you think it doesn't effect you. Another reason to keep all books in the library is to be informed of history. Some history @MONTH1 be gruesome and completely crazy, but we should be aware of those things and not forgot about them. The @CAPS1 for example. That was a very dark period in history. Over six million people died becasuse just one person didn't like what they believed in. It's sometimes hard to read about, but you should be aware of what happened in the past no matter how depressing it is. We should be aware to prevent another event like that from happening. People's likes in music vary. There are so many different types and styles of music. Some music @MONTH1 be offensive to other people, but does that mean you should get rid of it at the library? The library should always have a large variety of different music. Often people would like to widen there music intellect and the library is the perfect place to do that. Everyone is different. We never all like the same thing. Taking materials from the library to avoid the subject doesn't stop someone from finding that information. If people wanted information and they couldn't find it at the library they would most likely find another way to get that information. Having a vary in books, music, movies, and magazines make what the library is, a place to learn new things, no matter the subject." 4 4 4 4 4 4 +3675 2 "Your watching a movie on tv that you and your friend have seen in theatres. You both love the movie and just as it gets close to the best part, the tv skips over that part because people think that that sceen is inapropiate. Censorship is good, but sometimes it is too strick when it comes to movies, music, and books. Some of the movies that are popular will end up on tv for the viewers entertainment, @CAPS1 some movies have sceens that are a little inapropriate, and even though it's not that offensive, the tv compaies will cut that sceen out of it. Also, if there is bad language in the movie, they will take that word out and replace it with another word that makes no sense with what the movie is trying to say. Censorship tends to ruin the movies that most people love. The tv companies even censor historical movies. If its a historical movie, it shouldn't be censored because it takes away from the true story. Music is another item that tends to get censored quite often. With music, if there is a bad word, the word is just skipped over or bleeped out which makes the song sound strange. Most songs are censored because parents don't want their children to listen to it. I don't think music should be censored just for little kids. If the parents don't want their children to hear those words, they shouldn't let their children listen to that kind of music. Book tend to be censored and even banned at schools. Not too many childrens read books anymore so if they do decide to read a book, we should let them read what they want besause reading helps the mind. Some schools banned books becuse of inapropiate language. That is unfair because some books are beautifully written, but children can't read them because of language. Also, some books are censored because they are too detailed when it comes to certain scenes dealing with sex and crime. Some books are just too good to be banned. A lot of theings seem to be censored in this world. We should have censorship, but it shouldn't be so stricked when it comes to movies, music, and books." 3 3 3 3 3 3 +3676 2 "The library is meant to be a place that is filled with materials of all different genres and types. Many of us go to the library because we are looking for something in particular, rather than just browsing. Although some materials that people need to research at the library @MONTH1 be considered inapproproate for certain audiences, it still serves as a useful resource for others. This @MONTH1 include getting information for a research paper, renting a movie that needs to be watched for school, or looking for a certain type of book to read. By taking certain books, music, movies, or magazines off the shelves, we are limiting the amount of materials for people to borrow. At many schools, students are asked to write research papers. What is considered a valid subject for a high school research paper @MONTH1 include information that is not suitable for all groups of people. A student @MONTH1 write a research paper on the effects a certain drug has on an individual. Just because the student chooses this topic, does not mean that he or she supports it. Some adults @MONTH1 say that information on drugs should not be on the shelves in a library because it @MONTH1 include material that they consider graphic, but a student looks at this material only as a resource for an educational purpose. My freshman year we read @ORGANIZATION1 and @PERSON1. We also watched the movie to get a better understanding of the differences between our time periods. There is death and violence in the movie, along with a brief flash of nudity. Many would consider even this great literary work as a movie inappropriate. The movie helped us to get a real life picture of how things were back then. We were mature enough to look past the graphic scences and see the movie for what it really was. If this move was taken off the shelf, some people wouldn't have fully understood the story because they couldn't picture it. Sometimes, we just want a good book to read. Many teens gravitate to the young adult section because it includes age-related material. Many books in this section @MONTH1 include works that have a dark or graphic theme with subjects that are inappropriate for younger children. If we eliminated books from this section because they are being censored, we will end up with even less teens that read. Certain books provide an escape for some teens, and @MONTH1 even help them to confront or deal with problems in their own lives. If libraries start censoring books we @MONTH1 end up with less and less readers as the years go on. Instead of censoring the books, we should censor the people reading the books. If a parent doesn't want a younger child to read about a certain topic, then they should keep them away from that material. Libraries can put age approval marks on certain books to permit only certain age groups to read them. Authors of the books should not be punished for what they choose to write about by taking their books out of the library. No matter what a person's purpose for reading is, they should have a choice of what kind of material the book contains." 4 4 4 4 4 4 +3677 2 "There are thousands of books in libraries, which are inapproriate and some that are. But libraries are to learn about many things such as reading for fun, reading the newsletter, or just looking for random information. Libraries are places that we refer to when we need to find historical moments, or about animals or anything else. We need all books because they teach us the past, they all have a purpose, and we become more intellegent. I believe that all books in a library have a purpose. They @MONTH1 be offensive but they teach us many things. For example, there are books out there that talk about the @CAPS1. For some people this @MONTH1 be a touchy subject and some might take it offensively, but if we didn't have those books to learn from we would make the same mistakes as we did back then. Books can teach us so much about the past, we can learn so many things from books then anywhere else in the world. I also think that all books have a purpose to them. whether they are fiction or nonfiction. You @MONTH1 ask 'how do fiction books have purpose?' @CAPS2, fiction books have a purpose because they teach us to really use our imagination, quite a bit of books make us relieze that the struggles of a character can be the same struggles of someone in real life. And the most important reason is because fiction books not only catch our attention, but they also catch our childrens attention. Fiction books are the first books children know how to read, this is where they start their reading skills. My last reason for why I don't think 'offensive' books shouldn't be removed from shelves is because all books make us more intellegent. We learn so much information from all sorts of books. Another example would be, that @CAPS3 books could be 'offensive' as @CAPS2, but if we didn't have them we would not have intellegent doctors. My final reason why I disagree with books being removed if they aren't suited for everyone is that someone that wants to learn something wouldn't be able to because what they want to learn could be offensive to others. What I mean by this is that we would pretty much be telling that person that they are not able to learn something new because others think it's offensive. Every human being has a different outlook on something that could be offensive or could not. But why should we remove books, magazines, movies, etc from shelves? Just because we don't like it doesn't mean we have to remove it. Everyone has different taste, we wont ever agree on anything. But removing books from shelves isn't fair to anyone. Yes, they @MONTH1 be unsuited for others but when we don't like some thing don't we just move along to something we do like? Yes we do, so we should do the same thing with books" 4 4 4 4 4 4 +3678 2 "No, I do not believe that certain materials, such as books, music , movies, magazines, etc., should be removed from the selves if they are found offensive. Here are statements on why i believe this. First, I think if you are reading, listening, or watching any of these things then dont read the part that is offensive to you. If you believe that it is offensive to you then why are you reading it? If you believe this is offending you then put it down and forget about it, you dont have to read or watch it. I think if you are reading or watching it, then it is at your own fault if you are offended by it. When does anyone even write about offending things lately anyway? Like I said before if you are reading or watching or whatever it is then it is your own fault, @CAPS1 states that when one of you states you have been offended you just get rid of that thing and tear it away from our lives.Well it stops today I am writing today to stop the people who are ruining other peoples lives by getting rid of what other people like to do. If you believe that you should take away our fun and pleasure of doing these things, then do it, but remember of what your taking away from those who like to read all of that.If you get rid of the books that keep us entertained then there will be nothing left on the shelves for any of us. I have written in this newspaper of things that should be left alone.I have also written about if you do take away our simple things we like to read, just think about your taking away from those who read, listen or watch these things. Take in order of what I have said, goodnight." 4 3 4 3 3 3 +3679 2 Libraries @CAPS1't Remove Books @CAPS2 i would like to start off this story by stating i don't believe that libraries should remove books if they are offensive. If a book is offensive thats not a reason to take it off the shelves we watch movies in school today showing the past when @LOCATION1 had slaves. I myself don't believe it is fair to show a movie in school about slavery but we cant have a book that doesnt actually show anything to us just tells us whats going on. In my eyes a book is less harmless then wating a show on the subject. A movie can show alot more detail in it then a book can so i say let the books stay where they are. Don't try to shut down a author beacuse you dont like what they wrote their might be more meaning in the book then you can see. Just keep reading you never know how the story might go on. Just like dont judge a book by its cover. We @CAPS1't take away a book someone might like. Someone might hate the book but beacuse they hate it would you quit reading it? I don't believe it is right to remove something beacuse someone might not like what is it saying. i myslef see alot of things i don like everyday but i do not try getting everything changed. This is life as i know it there is alot of offencive people in this world and it wont change anytime soon not for me or anyone. Unless they make a law against being offencive. I can see someone in a band saying something offencive about someone but we cant not sell his cd's beacuse someone might like what he said in that song. Or i dont like alot of shows and or movies on tv but i dont try to get the station shut down i just change the channel. As should lets say someone in a book store sees a offencive book they should just look away. Not go and try to get it shut down. All i can really say tho is that i couldnt tell you what i would do beacuse i dont read very many books so i dont see them being offencive. So i can not tell you i wouldnt be mad but i still would just put the book down and not touch it again. 3 3 3 3 3 3 +3680 2 "I will be talking about, do think books, music, or even magazines should be removed from libraries if they are found offensive. In my opinion I don't think books, music, movies, or magazines should be removed from shelves if they are found offensive too some people. Because not all people have the same interests. First of all I think things shouldn't be removed from library shelves because people don't like the items because they get offended. But the people who like the item say like an explicit @CAPS1 they would probably buy it. But also the people who don't the explicit @CAPS2 would get offended and would want it off the shelves. Another example can be a book. what if a person didn't like what he/she read and gets offended. They would return the book and would not want to sell anymore and wouldn't mention it to a friend. But another person comes along and picks the same book and did like what he/she did read and that person would probably recommend it to a friend. The same way goes for a magazine also. What if a person gets offended at an advertizement. A person likes it and returns it, then comes along another person who gets offended at it and doesn't like it it shouldn't stop selling for that particcular person. In conclusion I think things in the library shouldn't stop selling because one person gets offended at it. they shouldn've look at the item in first place." 3 3 3 3 4 3 +3681 2 Books are books we all read them and summary's over them. To find what we need to know in the past or future or mainly whats going on todays life. So we shouldnt take books off the shelfs just like magizens. They might have information to tell people around the world. Thats why people make books and magizens so people like us can read them while were notbusy in life or just relaxin. People read bad stuff all the time in books or magizens thats what life is about cause there's some good stuff and there are some bad stuff to read about in life. I mean hey if you dont want your children readin them than have them not read at all. Because more they age the more there going to know whats going on in life. There's stuff thats bad like you cant really stop them. When there at that age in there life so there going to find out some how or another. Cause there are schools that have alot of reading to talk about good stuff that might be important for there future's.Schools are mainly why kids know what they know now because you got all your history clases. That talk about slavery and every thing els thats bad. When kids say it outta class rooms they get in trouble. So if they get in trouble outta class then why do would you teach it or even say it. History classes are very helpfull because they teach you about all the different wars. That has happend and who invaded other countrys or states. They help out on findin places on a maps. That shows all the wolds state and countrys and even where we live in our country. So really why would u take stuff off the shelfs if other people read them. Mainly why would you do it since other people have worked very hard and there time makin books. Then have them published for you to just take them off the shelf. What if they wanted to do that to you if you wrote maybe some bad stuff in a little writing. Whats the harm in it anyway 3 3 3 2 2 2 +3682 2 "For as long as people can remember books have been banned for various reasons. Whether it be a time of war or a religious restriction, it is always viewed as a negative thing and therefore should be no different today. Though it @MONTH1 be a bit less extreme, books or content such as movies, music, or magazines should not be removed from library shelves based on someone else's opinion. It is a right to be able to obtain the information theses materials offer. No material should ever be removed from a public library based on censorship. Some @MONTH1 argue that certain material @MONTH1 be offensive to other groups of people, but who is it to judge how another feels. Material is written or made to show the feelings of the author and how they want thier feelings or knowledge portrayed. The author is merely taking advantage of their freedom of speech. It is at the responsibility of the public to how they use the information they receive. It is still a piece of history and was recorded for a reason. Religion is always a hot point when it comes to censorship, but is that not in our constitution. Freedom of religion includes how we interpret and study our religions. Most have holy books and writings. Many express their religion by means of music and culture. It is a right for the public to be able to access this material. There are some rare situations when restrictions @MONTH1 need to be upheld but merely based on age. This however doesn't restrict the public, but offers parents the right to censor what information their children are able to get ahold of. An age limit on specific types of material could be added in the cases of sexual content, vulgar images, or distrubing content unsuitable for children. This way information is never censored completely. It is never right to tell people what they can or can not know. It is a part of the very structure of our country to allow all information to be shared freely. Censorhip of these materials is not and never will be the answer. Although, age restrictions @MONTH1 be an answer for younger citizens these materials aren't taken away from the public. Whatever it @MONTH1 be called, book banning or censorship, it is a negative thing and should not be a part of our public library systems." 4 4 4 4 4 4 +3683 2 "Should there be censorship in libraries? People think that there should be and some think it shouldn't matter. I think there shouldn't be because maybe some people like those books. I have three reasons why there shouldn't be censorship. My reasons are first people like certain books and should be able to get what ever they want. Second, the libraries should be able to put what ever they want on the shelfs. Third, if you don't like what the books say then don't get the book. Libraries have many books for you to choose from and you can pick which book you want to check out. Libraries don't need to censor their books because some people might want books like that. Everybody has there own preference on the kinds of books and music that they like. Censorship wouldn't allow them to get what they want which would make them mad. There is all kinds of genres of books and music around, some have more strong language in them then other genres. Some people like their music uncensored and should be able to get it. Libraries and entertainment stores are the ones who buy the books and music not you. Libraries have the freedom to get what ever books they want to and put them on shelves. If you don't like what certain books or music say then go get something you do like. There is no rule that says you have to get a certain kind of music. Some people like the music genre called rap which does have some strong language in it but its your choice to listen to it. the stores just put the products on the shelf to make money not to get you angry about what the products say. There are sections on the shelves that say what genre they are. People that want to say something about what the language is like in the book should not have checked it out. You have the right to ask what certain music, books, or movies are like, and movies have ratings on the case. Music and movies have ratings which tell you how strong the language is on the cases. People can not say to monitor that when it tells you everything thats in the movie or @CAPS1. The libraires and stores usually mark the sections on what genre they are. That can tell you where the uncensored parts are. You can stay away from those sections if you find them offensive. The libraries should not have to censor there books and entertainment store should not need to censor all the music and movies. Its your choice what to get not theirs. People can stay away from those areas that they find offensive. Everybody should be able to get what they want even if it might offend others." 4 4 4 4 4 4 +3684 2 "Have you ever watched a movie that had some scenes you didnt't want your kids to watch with you? What are you suppose to do when this problem happens time and time agian? Do you just tell your kids to close there eyes and cover there ears? Well i honestly think that shouldn't ever have to happen to you. I think that you as a parent or adult should be warned about certain behaviors during a moive. That you do not approve your child of watching even if it is with you ,it's just flat out wrong I would say. So i say that we should get some kind of extra warning that these innapporiate behaviors are showing up in movies. Parents should be able to know what there kinds are bout to watch is ok for there age and what not. So to wrap this all up nice and sweet. Just make some kind of label that says that there might be things in the movies or whatever item such as books and magazines also. That there might be things that a parent will find innapporiate for a child to watch or read. If the people that make these products do this it will be much more easier for parents to do the right thing for there children" 3 3 3 3 3 3 +3685 2 "I think that a library should be just books because that what they are made for. If we started putting movies in the librarys why put books in the libraries. I think it should be one or the other. If movies were in libraries i think that people would get more movies than books, and just think how it would be if you put music in a library also. I do think that a magazine is a book. Movies should stay in a movie store of at the movie theater. not in libraries. Music should stay on the radio or in stores not in libraries. People would lose intrest in books if people started putting movies and music in libraries. I think they are trying to put technology in libraries and im not for that. If music and movies were at libraries their would be no need for books and people would stop buying books. We need books they are the oldest but most acreart way to express yourself or tell a story. but now they want movies or music." 2 2 2 3 3 3 +3686 2 "Cencorship The topic I am going to discuss today is censorship. Do you think that censorship is a good thing or a bad thing? I am going to list a couple of ways that i think censorship is bad and also why it is good. The first thing I am going to talk to you about is how it is bad. The bad part about censorship is that it can offend people very easily. Most people can handle alot of abuse, but on the otherhand alot of people can't. In my oppinion I think that it is fine to have some things out that offend people because that is how alot of people find humor. Such as political cartoon. They make fun of the @CAPS1 and alot of the other people that are in office, but you dont see them complaining about it. In my oppinion if you dont like it then dont read it. That is all you have to do and then it will never bother you again. But on the other hand i can see how some people can get offended. Because some of the things are very mean in books and movies. I think that there should be some type of line that seperates going to fare and what is good enough. most people can live with it, but others can't. Such as @CAPS2, there is a whole lot of @CAPS2 in the @LOCATION1, and expecally in this time period. where ever you go there is always some sort of @CAPS2. In conclusion I think that people need to get together and create a line that can be drawn befor they get to far. and some of the stuff now needs to be taking off of the shelves, but not everything" 3 3 3 3 3 3 +3687 2 "Books, movies, magazines, music, and most of all, life. We all know whats wrong, and what's right. Every school is different. Some schools have limits on their books, such as if you're two years old, and reading something like @PERSON1, then that's gonna be inappropriate. If you're sixteen and reading a @PERSON2 book, then that's too inappropriate for their age limit. Every age is different, so your not going to find some forty-three year old hobo on the streets reading, '@CAPS1 @CAPS2 @CAPS1' by @PERSON2. Most likely, he'll be reading a mystery book, or something appropriate for his age not for someone that's five. Books shouldn't be banned because some elementary mother doesn't want her seven year old reading '@CAPS4'. Just because some mothers want it banned, doesn't mean it should be. Be smarter and watch what your kids are reading, it shouldn't have to be banned from other children just because you don't want your kid reading it. Don't we all agree that music is life? Not everyone has to listen to rap, nor do they have to listen to opera. Don't you see that we have musical artist in the world that depend on music? So why should rap be banned just because it talks about killing, drugs, and drinking. I say who cares? Don't listen to it if you don't like it, it doesn't mean you have to ruin it for everyone else. I love all kinds of music, so nothing should be banned. In my opinion I hate christian songs, I think they're too slow, and constantly talking about @CAPS5, but that doesn't mean I should ruin it for everyone else, just because I hate it. Everyone is different, no one is the same. Music helps me gets through life, and I know it helps you get through yours too, it shouldn't be banned. Movies, movies, movies! Video games, video games, video games! We all love cuddling and watching movies together, but not all movies are right for us. Movies have ratings like video games do. Ratings show what's appropriate for a twelve year old verses a twenty-five year old. Adults would most likely be playing a rated @CAPS6 game, and watching rated @CAPS7 movies. Little kids about the age of six would be playing rated @CAPS8 games, and watching rated @CAPS9 movies. As you can see everyone is different especially when it comes to these things. Rated @CAPS7 movies usually have gore, sexual themes, strong language, and things little kids should never watch. It doesn't mean it should be banned, maybe blocked in your home, but not banned. In my opinion, I think all movies, books, music, video games, etc., shouldn't be banned. It just should all be carefully watched to see who's hands it lands into, and who's eyes are viewing it. We should be responsible enough to pick out the material for ourselves. No one should tell me what not to read or watch: unless I am a youth. Then material should be suppervised by my parents." 4 3 4 4 4 4 +3688 2 "Censorship in libraries? That could be a good and a bad thing. Is it really that big of a deal for kids to see some bad things in books? Will authors remove their books from libraries? Censorship in Libraries is not as needed as most people think. Children now a days know a lot of things and are intelligent about certain subjects. I understand parents dont want their children to read books containing drugs, @CAPS1, sex, etc. Their going to have to learn about it sometime in their life though. They might as well get ahead start on it now. Young children most of the time are not even interested in going to those kinds of books anyway. If you censor all the books in the libraries then some students would be in trouble on projects they @MONTH1 need those kinds of books for. Say I needed a book on '@CAPS1' for a project im doing in @CAPS2 class. If the books are censored then I would have no sources to get information from. On the other hand, I can see why adults would want the books censored. No parent wants their child coming home from school talking about sex, and drugs they saw in a book at school. If I was a parent I would be concerned myself. If it's that big of a deal to some adults then what are they going to do when their children see the same stuff only worse on t.v. Commercials about condoms, and advertisements telling them to use drugs/@CAPS1. Atleast with books, the book is teaching you about the drug and how dangerous it is for you. If one author takes their book off the shelf because they don't want children reading it, then that gives all authors to do the same. Which could mean that we would have no books on the shelves for anybody. Books are a key to learning! We need to keep ALL books in the libraries no matter how explicit they are. Parents should sit down and talk with their children about not picking up those kinds of books if they don't want their child reading them. Yes, I have seen people pick those books up and start making jokes about them, but thats what children do when their immature. You have to expect that from kids now a days. No matter how bad they are their informational books and we need them to learn" 4 3 4 3 3 3 +3689 2 "NO, I do not think that books, music, magizines and etc. should be removed from the shelves if found offensive. Books help people in many ways. Music helps people find their activity in many ways. Also magizines helps people do things thats meant to be done. The reason I said books help people is because it furthers one knowledge to understand things better. It also hepls one vocabulary more stronger than it once was. Last but not least it helps people become more focused and when saying that I mean that it makes you understand how to be focused on the main idea and the whole concept of the book. When people read and they don't understand what they are reading, they look further to try and understand the words they misunderstood which is good because you will learn alot more then you thought you did. Music is also a very good thing to use because it make people calm when they have had an long stressful day at work, school, doctor, or etc. Music also helps you look into your creativity which means you want to do more things such as dance, sing, or some even start to paint. When im tired and I have had a long day , I like to go home and lay down and listen to music and that is because I feel relaxed and more calmer. Last but not least, magizines. Magizines gives you alot of information that one @MONTH1 be seeking for. Just say that you were looking for a recipe and you don't have an computer and you have magizines, you can look and a magizine and see when was this recipe effective and by whom it was wrote. Also if you were to want to order some things such as shoes, clothes, perfume fragrances, lotions and some even order house hold things if needed. When I look in a magizine,I like to order shoes or even just compare the prices of something store bought or the magizine price. There are many different things you can look foward to when looking in a magizine. So take my advive and try it because sometimes what your'e looking for can be right in your library. With all that being sad books, music, and magizines can be very helpful to you and any body else. Books are very helpful when it comes to essays or etc. Music is very useful when youv'e had a long day at your place of buisness or etc. Magizines are very self explanatory when it comes to food, clothing, shoes, topics , essays ,cars ,houses or etc. When you have a question or a concern or maybe even a doubt you can go to your nearest own personal library and borrow or read a book, magizine or listen to a little music. All these things can be helpful and all you have to do is take in it and take advantage of free information that is given to you. All of these things can help you in a way" 4 4 4 4 4 4 +3690 2 "There are people that are officave to all kinds of people. So what will make it different if someone writes a book that someone else doesn't like it should not matter if someone does not agree with someone else desion on a book cause someone else might like his or her book.There are books, music, movies, magazines, etc that someone will not like that is just part of life it you ask me. So i think haveing books that some people dont like is a great thing to have in are world. It tell you whether people are going out to see what is going on in are world if people are really caring about what other people write or say to other people.There is just one thing that people should allows keep in mind when they are write a movie or even in your local new paper the articles that some people put in the movies and papers are taking a little to far sometimes by what people say. I do bevlive that there should be a line as to what you can and not write in a book and i think that should be deminded by the write of his best judgement.Why do some people complane about everything that is meant to be told to them is because they know that what he or she is saying is very true and they dont want other people to know there past if it is bad or of sumthing tragic has happend top them whether it be in ther family something bad happend to them but i think if somebody would talk to this person they would not get so mad at someone for speeching the truth to the public.Well you have heard my side of the store on what i think about peoplle getting mad at other people for what they say and i belive that what you say is very true that we do ahve a freddom in this country." 3 3 3 2 3 2 +3691 2 "Censorship seems like a great idea at first thought! It allows parents to have their children closely monitored without actually monitoring them. Consequently, censorship in libraries creates the possibilty for every book ever written to be removed from shelves around the world. There are multiple things wrong with the idea of censorship. It creates objections due to differences in opinions and autors being completely and uterly offended. Censorship is a disgrace and should not be forced in libraries. People have different criteria when it comes to deciding a level of offensiveness. For intsense, if a fifty-year-old @CAPS1 female read a violent book with some curse words and sexual content she might think that it was offensive. Likewise, if a twenty-one-year-old, careless male read the exact same book he would probably enjoy its content. This defference in opinion poses as a huge problem in allowing libraries to censor their selecion. I feel that it would be unfair to remove books that some audiences would enjoy. Instead of completely banning some texts, why not move them to another section of the library? Libraries could take some time to separate the books into categories and the books that they feel are offensive could go into a separate section of the library. This section could be as simple a separate shelf, or could go to the extreme of a separate room or area closed in by a curtain. Either way, completely getting rid of books because of their content is a terrible idea. Authors could potentially lose money from the action of censorship. They put in numberous hours and a lot of effort to write books and novels. Some spend years trying to perfect their masterpieces. Magazines and movies provide the same amount of time, but they also aquire an unimagineable amount of money. If these authors, directors, and producers have their specific product taken off of the shelves it would be offensive to them. They could have a decrease in sales which would cause a decrease in money as well. The idea is simply unfair. Librarians have the right to display the content of which they choose, but making them remove products that they feel are fine is ridiculous. I think that censorship is a terrible idea. If anything should be banned from a library it should be censorship itself!" 4 4 4 4 4 4 +3692 2 "Have you ever seen a crazy person walking around saying odd or unique theories? Everybody is different and have their own opinion about what they think is right. It is alright to have different beleifs but that shouldnt mean people shouldnt seek to understand others. I beleive that the censorship in libraries is very important but that people need to seek to understand each other more, not be so stubborn, and look at different perspectives so that people can get along easier. Many different materials are found in libraries and some of them are more censored than others. Many times the reason that the books or magazines are censored is because they portray strong ideas and theories. People have the right to speech so they should be able to show others what they beleive, but they need to make sure that showing what they know is not hurting anyone else. Explicit movies and music are very bad with seeking to understand. They are good because of the rating systems but still are very ignorant to others. Many people just simply take the ideas of others the wrong way. People have trouble looking at things in different perspectives and because of it they can cause trouble. If people would seek to understand more, then the conflicts of different beleifs would not be as common. When people have different perspectives, they can be more knowledgable of various opionions. Some people are just stubborn. They choose to only beleive their ideas and refuse to listen to anyone else's. Being stubborn is the opposite of seeking to understand. If people were less stubborn, they could see more perspectives and become more aware of how others felt. When people are stubborn, it can be very hard for others to deal with or for them to get along well with others. In conlusion I do think censorship is important but I think that the reasons why we censor things are equally important as well. If people were more understanding of others, then we could have more censorship for the things that agrivate other people. We would also have less censorship for people who only try to spread there ideas. If people sought to understand, ;ooked for different perspectives, and were not so stubborn, then they would get along much better" 4 4 4 4 4 4 +3693 2 "I understand how some people @MONTH1 get offended by some things they @MONTH1 watch or they might read but that doesn't mean that other people shouldn't be able to know about it because one person doesn't like it. It's kind of a matter of opinion of whether it is offensive or not. I myself have never really read or watched anything that was completely uncalled for. On just about every movie or music album that is produced they rate it so that you can know who should be watching this movie and who shouldn't. If the movie was made with somekind of offensive parts to it then they put with the rating that yes, their is some rude language and things like that. So just because somebody didn't read close enough to see that their might be something they don't like in the movie shouldn't cause everyone else to not be able to see that particular movie. Personally I don't find books to be the greatest things but I am sure of that some books or magazines do tend to have something rude or crude in them but it's not always horrible. If someone thinks that the book @MONTH1 be inapproiate for some readers then they could tell a person in charge in the library that maybe they should only be letting certain people be reading that book because of the content. You shouldn't have to throw a book off a shelf because one or two people thought bad about it. If it was me choosing whether or not to take movies, books, magazines, etc off of the shelfs I wouldn't. I say this because @PERCENT1 of the time things have been rated or in someway approved to be put on general store shelfs. People can simply read details on the back and see that it's not going to bother them in a way or that it could be offensive and they shouldn't be purchasing. If someone complained about a new cd or movie that I personally wanted to see or listen to and it was taken off shelfs I would be upset about it because it probley wouldn't even offened me at all. So no, i completely disagree with the idea of movies or books and music having to stop sales because two or three people were offended by it's content" 3 4 3 3 3 3 +3694 2 "I believe that certain materials such as books, music, movies etc. should not be removed if they are found offensive. The library has different sections for different groups like the yound @CAPS1 or @CAPS2 section, easy children or picture and @CAPS1. Young @CAPS1 or the @CAPS2 section is for mainly the teens. They have books that a teen who normally read. The @CAPS2 section has music which teens listen to. For @CAPS4 they have the twlight soundtrack. This section does not have any explicit language.The teens who go into the library actually enjoy the select of books offered to them.It has everything most teens like to read about. There is nothing offensive in this section and it should not be removed. There is also a childrens section called the easy or picture book section. This section are for the younger children. Children that are not in school or in the early stages of school. The books, music an movies in this section are cartoons an animals. Things that children would like to read, listen or watch about. For @CAPS4 this section has movies like strawberry shortcake, athur, even lilo and stitch. eveything in this section is made for children there is not one thing in this section where the child or parent who think is offensive. The library has a section for adults. The @CAPS1 section is there to catch adults eye. It a separate fom the @CAPS2 and Children sections. It is located at the other end of the library. If there is an @CAPS1 who thinks that something is offensive they have the right to talk to someone who works at the library. Most adults do not have a problem with the items in thier section. The library keeps the adults section with things that adults would want to look for. It would not have something little children would want. The entire library is split up into different sections. It is easy for the children to look at books for them and for adults to do the same. There are only a few that I named but every age group has a specific spot at the library. If there is something found offensive to the people I dont think it should be removed because it might just be in the wrong section. The library takes great precaution to the censorship of their books, movies music etc" 3 4 3 3 3 3 +3695 2 "When people think of libraries they picture this cold place with and old mad lady telling you to be quiet.Or they just picture this books every where . But libraries today has be way more improved and advance with music,movies,and etc. When i was young I never really like libraries because they seem boring to me.Thats why I wasn't good read either until I was in the six grade because I discover the library was actually cool place. They different thing to do like look up books,music,or movies you can check out the libraries. Or sometimes you migth have magazines you can check out too. Then at the libraries there people who don't like it because of the music,movies,and etc.This reason is because use to it being quiet in libraries and not full with kids and teens.Thats why the faithful and ones go to the libraries everyday take the new things offense to the library. When it all boil down this topic makes me think about To @CAPS1 a @CAPS2 @CAPS3 because it was offense book talking about the whites treated the negreos back then. The reason say that is because old tradition in the library are like the whites in the story and the new things in library are like the negreos who was outcasted by the whites.Then in book it took one little girl to settle diference and knows whats right and wrong. Thats why I think instead of banning or remove stuff we should have disscusion.Which we can come to adgreement keep new ideas in the libraries.When do keep the ideas maybe we can make a section for thet new ideas so the people comes to library wouldn't get offend" 3 3 3 2 3 2 +3696 2 "Everywhere one goes, something is being kept from them. It is either to keep them safe, pure, or happy. In the everyday world people who break the law are put into jails and prisons. Not only is it a punishment for them, but it is also to keep them away from other people. This is much like how our libraries are becoming. Books that have questionable content are being thrown out. I do not believe that this should be done. Books are here to enlighten people and let them experience something they never would have been able to on their own. People should be able to choose what they @CAPS5 and if it offends them they can choose by theirselves to stop reading that book. Many times I have learned new things from books that @MONTH1 not have been appropriate for my age, but it taught me a valuable lesson. For example, I @CAPS5 a book about a teenage girl engaging in sexual relations, she became pregnant and it ruined her life. From this, at the age of ten years old, I learned that I do not want that to happen to me, so I am abstaining from adult relations until I am married. Of course the libraries should be seperated into different categories such as: @CAPS1, @CAPS2, @CAPS3, @CAPS4, and @CAPS5 at Your Own @CAPS6. Also, the same with magazines and music. That way, a person could go to a specific section and know what to expect from there. This is much like the movie ratings, a mother can pick up a movie and see that it is rated @CAPS7 and know that it is exceptable for her nine-year old to watch, except possibly save for a few curse words, but a child hears that in their everyday life anyways, wether the parent knows it or not. In conclusion, I believe that literature should not be censored from the people. However, it should be categorized so a person could have an idea of what age group it would be most appropriate for. People have the right to choose what books they @CAPS5 and what they @CAPS5 about. Everyone can learn a valuable lesson from any book, it just depends on how they interprate it." 4 4 4 4 4 4 +3697 2 "I belive that certain materials should not be removed from the shelves if they are found to be offensive. The main reason I say that is becuase there are not just postive things in this world ,but there are alot of negitves also. It is very important for children to learn and understand the things that are going on in the world they live in reguardless if they are good or bad. Everyone is going to have to learn about the things going on around them sooner or later ,so it is better to find it out as a child rather then later on in life when you might not have someone there to explain it all to you. I understand, there are some age limits that should be inforced becuase of some of the fowl nature of them. Though at some point and time before a child becomes an adult they should know most of the basics of life no matter how positive or negitive. Children should not be shelter at a young age to just young adult things because they need to know what else is out there in the world. For example, children should be taught that there really are bad people in the world. If they dont understand that something bad could happen to them beucase they did not know the dangers around them because they never learned it. When I was younger it was required to know other people out side of your race or religion beucase not just your race or religon is in this world. Also we learned the diffrence between good and bad choices. If us children did not learn that at an early age many of them would be in some very rough situations today. On the other hand there is an extent the children need to learn also. For example, say you buy a video game for your child ,but make sure you inforce to them that killing and shooting is not something that they should be doing out in the real world. Make sure you teach them the diffrence between really and fakeness. That is a main reason why kids today do not have self control becuase of the things they learn off of video games. Now a days on @CAPS1 there are people being preasured by the media to act out of there charater just to get attation. They are publicsizing sexual and inapproprate things for child to be learning about at a young age ,but they need to be aware that its out there and it is bad. In magazines they will destorte famous peoples bodies to make them look like something they are not to make people feel like they are not good enough. Children sould be taught that not eveything they see, hear ,and read are not always right or true. With todays media and materials it is easy to know the diffrence between right and wrong ,but they put it out there as if one person is doing it it is ok for everyone to be doing it. In most cases it is not until that person understand all of the facts about it and can make rashanal dessicions on there own and on there own time. Children now a days will get presured by media, magazines ,and sometimes by peers. The media is telling them to do something that is not neccessarliy right ,but is popular. You should not teach you children off of things like that it will make them want to do things without thinking or considering what is really going on. With todays magazines, the writers will make people look like something they really are not just to make them look good. That is not fair to readers, the person that is being expoused, or the author themself. Finally, with peer pressure today kids will see something off of television and try it then try and get there friends to do it even though they know it is not the right thing to do. I belive that children, when they are faced with delimia's like these, should know right from wrong with the trouble they are faceing. If they know nothing about it they need to walk away or learn how to say no reguardless of how hard it might be. In conclusion, I believe that the children now a days that are exposed to any type of offensive things should know the meaning behind it. Also they should know the right ways to haddle it when they are put in certain situations. Lastly, I believe kids should know what is going on around them so when they grow up they know how to fend for themselves ,and not be counting on someone else to tell them baisc things that are going on in the world around them." 4 3 4 3 3 3 +3698 2 "In @DATE1, there are many rap/hip-hop artists. They all sing about gangs, narcotics, alcohol, and using women for favors. @DATE1 is something that our children should not be exposed to at such a young age. There are children that know the words to alot of the rap songs out there. The parenting skills of some parents also reflect on if the children learn the words or not. I understand that children have to be exposed to some things in life. There are other genres of music that deal with all of the things i listed above. I dont think that it is right though for young children to learn about these things. How would you feel if your child came up to you asking what drugs are ? Or what alcohol is? I also understand that we should let our kids get a little taste of the real world to see what it is like for themselves but that can only go to a certain extent. After that extent, the kids would be learning too much at such a young age. In my personal opinion, we could let our children listen to an edited version of the songs or even chose a different genre that doesnt use those such topcis as much. Country music for example is very peaceful to me. I suggest that people listen to it because it is very realistic in ways. I also understand that rap music can be realistic in ways too. Everyone has a different outlook on what kind of music children should be allowed to listne to. I will sometimes listen to rap music but i would never allow my kids to listen to the uncensored version. Magazines also have alot to do with why children are so 'street' smart these days. Magazines can put false information out so people will believe it. Magazine companies put revealing pictures of people on the front cover to catch someones attention. It works most of the time and children also see that. They are young and nieve so they will do what they see someone else do. That includes looking at the magazines with good looking men or women on them. Another subject is the movies that are coming out in @DATE1 world. Movies can reveal whatever they want. Normally the movies that are inappropiate for children are rated @ORGANIZATION1 will find a way to see @DATE1 stuff. A child could be on the internet and something accidentally pops up. All of the advertisements on the side of the computer screen are viruses just waiting for children to click on it unintentionally. These are my strong opinions on what we should do with todays society. We need to try and watch what our children are listening to and watching. I know that we cant watch their every move but we can do our best to watch what they are doing when they are in close watch. Thank you for your time!" 4 4 4 4 4 4 +3699 2 "My views on censorship, I don't belive in any type of censorship. Books, music, and movies shouldn not be censored. When it comes to children, it should be the parent's responsability to choose what they feel children should and shouldn't read, watch, or listen to. Taking books, movies, and music off selves isn't fair to thoose who want to read, watch, or listen to them or to the authors, directors, or musicions. People should have the freedom to write whatever they want, the reader dosen't have to agree or enjoy the things the author is saying, but it is his freedom to say it" 2 3 2 2 2 2 +3700 2 "Katherine Paterson once said, 'All of us can think of a book that we hope none of our children have taken off the shelf. But if I have the right to remove that book from the shelf--that work I abhor--then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us'. Although I understand her message, I don't completely agree with it. I believe most things such as books, music, magazines, etc. should be censored in some cases. One reason why I think there should be censorship is because of minors that @MONTH1 want to see things that @MONTH1 not be suitable for them. First of all, children often follow after what they see. For example, adutly trends that they see on the television. Not all things adults do are not appropriate for the young eyes.That's why I consider that the things that are broadcast should be censored. Children are being influenced by things that they see, read and/or listen to. Another reason why I believe there should be censorship is because of a lot of very explicit action that appears in today's movies, books, magazines, and music. Violence is a main topic in newspaper articles. For instance, most front page content is about the wars and hostility in the world. It is hard to believe that we ever had a peaceful day without any violence. Disrespectful acts, cussing, and rude gestures are not a positive way to keep a more mature role going that will make a better environment. Because libraries are public, they are open to all eyes so we must be careful about what we allow on their shelves. In addition, censoring is the correct thing to do. Where would it lead us if we don't? Do we want our society to be badly influenced by a bunch of profanity, violent slogans, or jargon? Shouldn't we all want to be treated with respect and common courtesy and avoid promoting outrageous movies, music, and books on the shelves of our public libraries for everyone to see. So now you can see why I believe that such things like books, music, movies, magazines, etc. should have some type of censorship. We don't want all the disrespect in the country, so why make it available in our public libraries? Keep these things separate: adult books, magazine, movies, music, etc." 4 4 4 4 4 4 +3701 2 "Censorship. If someone does not like what a book, magazine, movie, etc., shows then they should put it back up and not worry about it. But their are people who do make a big deal about that kinda stuff. Most people who do i personally think are immature. Censorship in libraries would take away from people some historical readings, because of nude statues and the way they talked. A lot of the old plays were very sexual and many people find them offensive today. Sometimes their is no way of getting around inapropriate materials. Then their are a lot of people who find those subjects very intersting and like to study it. So by taking those books off the shelf those people would not have any way of researching those materials and therefore they would get upset and complain. The music that is out today has a lot of inapropriate words and sayings in them that would be offensive to most people. But the teens and younger adults like that kind of music and enjoy listening to it. Most of the time they aren't listening to the words, but just like the beat of the song. Almost all of the older people hate this music and never wanna hear it and think it should be banned. What they dont realize is that if it was taken out of the library their would be more upset and angry people then happy. Magazines and movies today have a lot of inapropriate advertisements and pictures, but now that is what most people like and want to see. You cant really take anything out of a library because either way their would be a lot of upset people. Taking all the materials out of the library would most likely take the number of vistors that come to the library go down, because what they are intersted in would not be their anymore so they would have no reason to go anymore. That is what most likely would happen if the books, magazines, movies music, etc., were found offensive and were taking off the shelves" 3 3 3 4 3 4 +3702 2 From what I seen in my life about censorship is that they should not take stuff off of the shelf just because of its content. I think that libraries should keep the thing in the shelves but seperated from the rest if found offensive. It's bad enough that everybody is offended by the smallest thing which makes it difficult for everybody else to enjoy it. I think that we should not even censor the content because I feel like that is making people wanting to know why they censored it in the first place. My personal opinion is that censorship is useless because it ruins it for everybody because one person got offended. I like the saying sticks and stones @MONTH1 break my bones but words will never hurt because it says if your offended then get over it. Why should your opinion speak for everyone else. Another reason why I believe that we shouldn't censor things is if someone really wants to know they could always find a way to get it so the censorship thing is kind of pointless. I also feel like censorship is making people soft because everything is censored and when people get into the real world they get hit hard. My conclusion is that they should seperate the stuff that is offensive and put it in another section of the library. They could also develop a rating system like they do in video games so you know what kind of content is in it. Simple stuff like this can make everyone happy because the person who is offended doesn't have look at the stuff that he hates. 3 3 3 3 4 3 +3703 2 "I do not think that libraries or any one should have censorship to books, movies, music, magazines ect. People who put there time to writing all of there thought and ideas in that should not be just thrown off the shelf. People who wrote that stuff have freedom of seach and the wright to write that stuff or say that stuff. Yes I have read books that I have found offensive or that I don't like, but I dont think they should not be in libraries. They are there because some other people @MONTH1 like that kind of stuff no reason why we should exclude what they like to read out of the libraries that everyone shares and goes to. There would be nothing left in libraries because almost everything out there someone could find offensive. For example people such as @ORGANIZATION1. People say his lyrics and music say alot of bad stuff but most of his music is about him and his life. He has the freedom of speach to wright and publish that for the world to see and hear. His music is just i @CAPS1 of his life. In history @CAPS2 because he killed people. Should take him off the shelf because jews @MONTH1 think it was offensive, yeah it might be but it lets people know about our history and what has happened. If we keep that cencored who know history my repeat its self. which is a saying I have heard many of times. So censorship or not I just think they had the freedom of speach to write that stuff down and be put in a library for people to see learn, edgucate, and entertain themselves by. Doesn't mean if it offeneds you that its offensive to other people" 3 4 3 3 3 3 +3704 2 "Do you think that books, music, movies, magazines and other media material in libraries should be censored? Why should information and knowledge be with held from people? Learning is exceptional for not just only the person reading, but also the human race. There are two arguments to cenorship in libraries. I believe in not allowing censorship in libraries. In the @ORGANIZATION1, everyone is given the right of free speech. Taking someones work and blocking it because it is 'unorthodox' or 'offensive' takes away that persons' rights. Also, people go to libraries to find something out. They look for knowledge and taking away a persons' learning capacity can be harmful to everyone. When one article gets censored another artical after that gets censored and soon most material will be 'offensive' and 'unorthodox.' We will take away man kind's capacity to learn. Many reasons support censoring for minor offenses such as: inappropriate language in songs, books, movies, and magazines. Also, obscene graphic material in movies and in magazines. These are small issues that can be blocked and censorships can make a clean version. All minor adjustments and easy to make. Taking media off the shelves is not needed. The material is not serious enough. Minor adjustments can be made so that people can be allowed to read, listen, or watch. A library is made forwhat the people want to learn. Taking that away is very serious." 4 4 4 4 4 4 +3705 2 "To me that is not good to take some music or book to be removed becuase that is not cool to do that becuase people read or sing what they feel most of the time. That is what people mose do they rend or sing what they feel about in waht they feel in there body that is what I thing that they should not removed they music or book, movies. You are going to remove people tallens I do thing that is ok to do that to those people they work haren to do wan they like in just be the thing they say or dowen you are go to remove there tallen no. The people that do like that than do lessn to it or see just shanjet to something more than that. You know that is bad to remove there musics and books because you wall remove there carenos to not just @NUM1 thing you will remove more than what you thing. You just make gtham lusen averthing to that is wan they like or love to sing or dowe there books of wan they think that is more than at book or song to them. I say no becuase that is what they like to do in if you do like it than just do hare just shanjet than instad of makeing a big delown to them in make there life mesoper by harening poeple takeing of them of wan they sing or rending" 2 2 2 2 2 2 +3706 2 "Turn @CAPS1 @CAPS2 I see a book that I don't particularly care for, I simply put it down. I really don't see the need to due @CAPS1 with all books that @MONTH1 be offensive to a single person, or group of people. Any time I look through the library, I come across a few books that are slightly inappropriate. However, @CAPS2 I see these books, I don't make a big deal about it. I just put that book down and continue my search. I couldn't imagine how scarse out book selection would be if we were to rid the libraries of all books that people might find offensive. Also, there are many people that find The @CAPS3 offensive. If we were to remove all @CAPS4 text from libraries, then we would have a hard time passing the word of @CAPS5 to people who do not have access to such literature. Although I do not fully agree with the ideas of many theorists, I do not ask that their work be banned from public libraries. I don't like @PERSON1's book on eveolution; but because of our freedom of speech, he has every right to write about his discoveries and belifs. As you can so clearly see, I am by no means claiming to be open-minded to others thoughts or beliefs. However, @CAPS2 it comes to literature and and art, I think that a variety makes us unique. If everyone read the same books, listened to the same music, and watched the same movies, then we could have a very boring culture. That is certainly not the basis on which this great country was founded!" 3 3 3 4 3 4 +3707 2 "Dear @CAPS1, @CAPS2 are many books, music, and magazines that are saturated with offensive words or obscene themes. However, just because a book or song contains an foul word does not mean that the book needs to be sheltered from the public's eyes. @CAPS2 are many reasons we should not censor public media. We cannot ignore wrongdoings happening in our world; plus, in @LOCATION1, we have the freedom of speech; and, finally, if media was censored, people @MONTH1 start to think every little word has an offensive connotation. If a bystander observes a person being abused in a hallway or alley, the bystander just cannot pretend like the incident never happened. If the world never reported accidents, @CAPS2 would be too much crime and terror. Sometimes, a book or movie is like a cry for help or a way to raise awareness about some wrongdoing in the world today. Most of the time, I only hear about an event through movies or books, and I want to know the honest story, not a fairytale version of it. After all, if the language in some slavery books was not as vivid as it is, some people @MONTH1 not oppose slavery as strongly as they do. Here in @LOCATION1, we have the freedom of speech. We are allowed to give our opinions on any topic, and describe it in any way. We should be permitted to say anything we want, even though in our hearts, we should know what is right and wrong. People should at least be trusted enough to use their own conscience. Also, another reason why books and other media should not be censored is because people @MONTH1 judge almost every little word offensive then. Then we @MONTH1 have 'no books left on the shelf' according to Katherine Paterson. Once people are allowed to censure books or other media, they would look for words with negative connotations. If a word was close to being offensive in one person's perspective, it would be left out. Then, many words would be gone. Sure some types of media, especially songs and movies, just spill out nasty themes and foul language. However, I have the choice to watch a movie or listen to a song. I can always change the radio station if I do not like what I am hearing. People however, just cannot remove the words of another right from their mouth, no matter how bad it is. We just cannot pretend that we all live in a perfect world where everyone is polite and caring. If we hear about something wrong in our world today, we need to act. However, we might not act if we do not know the full extent of its terror. Sincerely, @PERSON2" 5 5 5 4 4 4 +3708 2 "Everyone likes to watch movies, jam to some music, and get lost in an interesting book. Therefore everyone should be able to read, watch, or listen to what they want and the same things as other people are reading, listening to, and watching. Some things are needed to look up or look at if one is doing a project. Other people just @MONTH1 be entertained by certain peices of liturature, or music. In that case, why censor certain things that people are interested in, or even things to research, in libraries? Many people enjoy violent writing or gorey movies. Reading these things also amusses them. So why take away what they like? If a library takes certain books off of their shelves, then they could be taking away a type of literature that people are interested in. If one removes a book that twenty people take pleasure in reading, then thats twenty people that are not going to want to read anything else. People are different in many ways. That includes the variety of things humans are interested in. For example, things they are interested to read. Humans having a major differences in characteristics, meaning they don't enjoy all the same things. The articles, magazines, or movies @MONTH1 be not suited for schools or libraries, but if it's a topic people like, or if it's someone needs for a project, then there is no reason to get rid of it. Some books offten offend certain groups or races of people, but the book gets it uniqueness from what it says. Some books are writen in times of racisim. This shuold'nt make a book worth critisizing because that was the way things were said in that time. It allows the book to give off a feeling of living in the time is based in. On the other hand, some magazines are writen about horrible events and wars, but people find entertainment in reading about these events going on in the world. They want to know what is really happening across seas or even around home. Someone isn't able to know what's happening is no one lets him or her read the magazine. Authors and writers write these things for the entertainment of people who want to read them. Due to the wide veriety of interest people have, there are many different types of writings. People should'nt have their favorite book taken off shelves just to see that the guy right next to him found the book he loves. That just would'nt be fare. Libraries should put on the shelf what people write, so that others @MONTH1 enjoy them." 4 4 4 3 3 3 +3709 2 "When you go to a library you think its going to be a place that is a good influence. Your not thinking when you send your kids their that there's going to be bad things. Most people go the the library to study or use the computers... But what about the other people? I went to the library and saw racest books most adults would find that offensive especially if its an afracan american. The thing is that people would also go there and check the books out to sutdy about the old times it's not there to offend people. Some books are very infromational and people need to study and learn about the past so that it doesnt happen again. Another peroblem most people have is with the adult books parents defantly dont want their children looking or checking thoughs books out. But when noone stops them from checking the books out there really is not anything you can do about it. I believe that libraries should have an age limit for checking out certen books. The last thing is the music it has bad language in it and kid can just check them out with out even trying hard. Most parants the to sheild their kids so they will be good and not use dirty language but when the and go to a comunity plase and just listen to anything that causes a peopblem. Personially I think that it gives the library a bad name and therefore that get little business. You know that if you were a parent you really wouldn't want your kids grabbing racest, adult books, and music and you would like for the government to take some the books and music out of the library. I believe that their should be a vote to see if we could have thoughs books amd music removed or atleast put in an adult section in the back. My main point of this essay is that they either need to have voting for what goes into the library or they need to start censioring the books and @CAPS1's they put in the library and make accessalble to the comunity. The up side to doing that is the library would get mor customers and that means the government would make more money" 3 4 3 3 4 3 +3710 2 "Does The Book @CAPS1 @CAPS2? @CAPS2's alot of books out @CAPS2 that I would love to take off the shelve's but the one book I would to take off the shelve's would be 'To @CAPS3 A @CAPS4'. While I read that book it had alot of offensive language and alot of graphic not only in the book but in the movie to. On top of all that both the movie and the book weren't good at all. The only thing good about the movie is @CAPS2 was a few dramatic and thats it. Another thing that caught my eye was when the author repeatedly kept on saying the same offensive language over and over again. It's like the liked to keep on saying the same old thing using repitions. But some how it got an award and is one of the must for high school student's. I think the story overall was alright beside the fact @CAPS2 was offensive in it though. Books like that shouldn't be put on shelves and if they are the need to take the offensive language out but obviously people liked the book or it wouldn't have awards. So obviously 'To @CAPS3 A @CAPS4' was a good story but when it comes down to it could offend alot of people I hear people talking about the book still and I read it last year. So In @CAPS7, I think @CAPS2 should be censorship in libraries." 2 2 2 2 2 2 +3711 2 "I agree and disagree with the prompt. I think that it is good everyone is allowed to take any book off the shelf, listen to any music, watch all types of movies, or read any type of magazine. Then I think it isn't okay. First, reason for agreeing is because some books, music, movies, magazines, and etc. @MONTH1 not be suitable for most young children. They @MONTH1 use profanity, show naked pictures, or take about things that a child is not yet supposed to be exposed to at that age. Most music and movies these days use bad language or show people having sex or without proper clothing. Also, adults @MONTH1 use these materials in a way that could cause many problems with the library. So these are my reasons for agreeing that certain materialsm such as books, music, movies, and magazines should be removed from the shelves if found offensive. Then, on the other hand I think that libraries should leave most of the books, movies, music, or magazines on the shelves for everyone to take off. I say this because if a child does not be experienced to what could happened if they use bad language or go out without proper clothing, or go on watching adult movies. So this gives them an opportunity to see what is wrong with it if they are exposed to these things at a certain age. I think it would be better if they had a section for the books other than just taking them off the shelves permenantly. In conclusion, I think that this could go both ways. But, the books, movies, music, or magazines that are felt like they are offensive should be move to a certain area in the library" 3 3 3 3 3 3 +3712 2 "Hello, I am writing to you today about my concerns about my views on the cencorship in a library. First, I think some of the music they play and listen to can be a little graphic. I know some of the music that is being played can deprive the feelings of others. Music should have meaning and instead of blood and killing it should be about the better things in life. Second, I would like to talk about some of the books libraries have. I think if they want adult type material they should have a section just for adults. reading sould be about what you like but it should also be about what you are able to read. Next, I would like to talk about some of the inapropriate magazines that some libraries feature. Some magazines show off a little to much for some of the people that go to the library.Most magazines that are show are for adult and teen over a certain age.I believe they should make a section for each of the ages and age group. Finally, I would like to get on some of the movies they let people check out. Libraies has a graphic selection of movies that are easily in the reach of young children. Children do not need to know about any of those types of things at all. Libraries need to learn more about there surroundings before they continue what they are doing. In conclution, I believe that everyone has the right to a library I just feel everyone doesn't have a right to have everything libraries hold. Bad things create bad minds and we have to learn to stay above those influences.Libraries need to change some of there ways and there selections to make things more sucessful on thier behalf" 3 3 3 3 3 3 +3713 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf..' said by Katherine Paterson. Books are used to entertain and even teach readers in certain aspects of life. Not exactly all books are offensive but some are. Those who are, should be taken off the shelfs, especially if it is in a school library. Children could take that offensive or violent book into action. Other children could show the book to other peers. And also, children can get very offended. Now should offensive books be taken off the shelfs? Children nowadays are being motivated alot. Whether it's through television shows, video games, or even music. On the news, there has been reports about children being influenced to have a gun and hang themselves, etc. Books are meant to entertain readers in a good way and not teach them to become a violent person. Some readers who read such things can turn those words into action. Then the student could be in trouble. And people really wouldn't want that. Children have a tendency of showing off to friends. If a student sees something offensive or violent on a book, there is a big chance that they will show it to their peers. Just because children think it's cool. Having one person read this could be a problem, now imagine having more than just one, a whole clique seeing this. It could end up in a huge problem, not only for the children and their parents, but also for the school. The children learning these new things from the book can cause the children to use everyday and make it popular. The school can have a bad image from the students. Passing on the information can become a conflict, and people certainly do no want that. School is not only a teaching building, but also a social place. There are cliques in every school. Within the each person there is a different color, religion, style, and personalities. Children can be easily hurt. If books are being offensive, it can just easily hurt anyone reading that book. Once again, books are meant to entertain readers and not to hurt them. So why even have authors write something offensive in their books? Maybe authors feel the need to add interest in the book and suspense, but not all readers would take it easily. Hurting people isn't a fun thing to do, and people certainly do not want to do that. So why have offensive books in shelfs? These books can cause children to use it in action, to show it off to other peers, and to hurt them as well. Children nowadays have it hard on themselves, why make it harder. Books are meant to entertain readers, why not just do that. So yes, take the offensive books off and there will be no problems." 4 4 4 4 4 4 +3714 2 "Yes, I do believe that certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves if thery are found offensive. The reason why I think some things shuld be removed is because some kids don't need to look at certain things. Parents don't always go with there children to the library and tell them what they can and can't get. At school libraries they really dont have bad things they only have school approte things. But the public library has alot of different things and than a school library. Therefore those are my reaons why i believe certain materials should be removed." 2 2 2 3 2 3 +3715 2 "Censorship In everyday life we see stuff that we think is appropriate and should be romoved but do we have the right to be able to get that certain item off the shelfs to stop the sppread of this certain item, and is it safe for the future of kids not to see this kind of material in stores, librarys and book stores. Most cartoons have violence in them, matter of a fact almost all them do, every conflict is resulted to violence over a certain thing, kids sit down to watch these and not understand that there is violence in them, and understand that it is wrong not to be violent like they see on tv, some shows, movies are not right for kids. Same with books, now days kids get into newer books based off of movies, like twilight, these book series have violence in them and if parents had to censor what their kids could or could not read, most of these books would be off the shelf and won't be able to be viewed by anyone mostly kids. In newspapers there are violence shown, reported, or even been told, as a fact of kids safty if they saw it they would want to go and see if it still going on and to see it, kid safty is a high priority because we care about the future of them, on what they read, view, or even hear from books, tv, movies, and in newspapers. All these reasons are good enough to give parents some censorship on what their kids read, hear, and view on a daily bases, even if cartoons show violence, kids can watch them and enjoy them, but not act the violence shown in the cartoons and be saying some of the bad stuff it says in them." 4 4 4 3 3 3 +3716 2 "Should libraries remove offensive reading material? No, I don't think certain reading material should be removed from libraries just @CAPS4 some people find @CAPS5 offensive. There's offensive material everywhere. Just because you find @CAPS5 offensive doesn't mean someone else does. In my opinion if a person finds something offensive they shouldn't look at @CAPS5 or read @CAPS5. A few months ago I was at the library. I was trying to find a book to read for an essay I had to write. I over heard two girls talking. They were arguing about something. I moved closer to them so I could hear. '@CAPS1's this one about?' The girl asked. 'That's a really good book! @CAPS5's about these two people who fall in love and their love lives. @CAPS5 goes on to talk about how the man tries to find a woman after the girl he fell in love with dies, and about his love life after @CAPS6's gone.' The other girl said. 'So you're saying @CAPS5's about sex?' The first girl asked. '@CAPS2, but only slightly.' The other girl answered. 'I'm not going to read this!' The first girl said. '@CAPS3 why not?' The second girl asked, confused. '@CAPS4 @CAPS5 talks about sex! Teens shouldn't be able to check out books like this.' The first girl answered, '@CAPS5 sends the wrong message.' @CAPS6 added. After those girls left I went and got the book they were talking about. I started reading @CAPS5. Intresting. Actually, @CAPS5 was a very good book. The second girl was right. @CAPS5 wasn't mainly about sex. @CAPS5 was mostly about the love those two people shared for each other and @CAPS1 the man went through after his love died. That got me thinking. Should certain reading material be removed because @CAPS5 talks about sex, drugs, murders, ect or @CAPS4 someone finds @CAPS5 offensive? No, @CAPS5 shouldn't. There's offensive material in real life and @CAPS5's not being removed. Why should @CAPS5 be removed from a library? @CAPS1's @CAPS5 matter if @CAPS5's in a book? There is always going to be something somewhere that offends someone. That's just how life is." 3 4 3 3 4 3 +3717 2 "Should books, music, etc; be removed from shelves if they are found offensive? well people have the right to look at what they want, to hear what they want. Some think its not right to have offensive things out in the open on the shelves.Some people think its alright. I gusse it all just depends on that person and thier feelings. Lets say i was in the library and i did see something offensive. well the world does not stop and say ''hey look at that @ORGANIZATION1 finds that offensive so lets take that off the shelves just to please her''. Am sorry but thats not how life works. If you dont like looking at it then turn the other way. If it were me i would be worried about more important things such as war or things going on in my life other then something offensive on the book shelves. Its a big world out there and it is not getting any smaller and it is not going anywhere anytime soon. There are going to be things in life we the people dont like to look at, to maybe hear thats offensive. Heres what i say to it, get over it . The other day i was at the bait shop and i heared a word that i dare not to even say and i hate hearing that word. What was i going to do tell a grown man to not say that?...... I just rolled my eyes and went on about my buisness. Should books, music, ect; be removed from shelves if they are found offensive? well like ive been saying this whole time, in live there are going to be certain things that are offensive to you. You have to get over it . Sometimes geting over offensive things that you see are not easy but hey lifes not easy" 3 3 3 3 2 3 +3718 2 "If I found a book that offendide me i would have to go and take it off the shealf because if I find that a book is offensive i know that others would think the same. I agre some books can be offensive to some and not to others and its really not fare for thows who think that way. One reason that i would take it for that shelf would be to keep youn childern form reading it. Parents dont really want there childern reading about vilence and murdare. Most of what I would take off the shelf would have to be about people being racist agents another person or people. people killing others and be doing sexaule things. People really shouldent read things like that because it puts things in there heads and somtimes make the think the same way as the writer. If childern read books about vilence and sexaule actions they could think that its ok to do these things to other people and get in to alot of trouble with the law and there parents. Children really need to be keped way from these kinda of books, tell there older and undersdtande whats right and whats wrong. Some books have alot of cursing in them and alot of childern pick up on words and start using them more and more tell it becomes a habbit. Evern thow some books are of real people they should still be taken off the shealfs. In some of these books there is alot of vilence and childern should not be exsposed to that kinda of book Books can sometimes be more bad then good. If everbody had there way and could take a book that offendid them off the shealf whenever they wanted then there would be no books left." 3 3 3 3 2 3 +3719 2 "If a people want to remove books, movies, music, magazines, and exetra then they will if they feel it is offensive to others. I wish they would not ,but they feel the need to take things off the shelves if so. They feel that if someone can find some kind of offensive thing then they will feel it is okay to say or do thoughs things that they read or hear. It also commine sence to not do thoughs things that people wrote about. The auther's wright things to intertane and to egicate us about things that where okay in the time peroid that the story in this case was okay back then. Most people these day take things way to serous now mostly because we have things like lawsuits and dercrimation. If someone can find something to complane about they will do so. if there is a book out there that is about back in the day when @CAPS1's had slave's and if there calling them a name that is not very nice. Then someone and complain and say that it is rashal and there will be a disbute about it and the auther will most likely loose and have to change that word into something els. People do not relise how much this happens it happens a lot expeshally with books. Movies are a whole different thing now the things that happen on the movies get away with it mostly because they have money to get away with. There is a reason why things are @CAPS9 @CAPS2, @CAPS2 @NUM1, and @CAPS4. @CAPS2 is for children under the age @NUM1. There are serten things that can be in though's movies. @CAPS2 @NUM1 there can be a lot more things it can be scarry to an extent and there also sometimes sexual things ,but they do not show the whole thing. There also can be villons and some swaring not a lot though. @CAPS9 @CAPS4 that's a whole new level they can have anything they really want and its a little more than @CAPS2 @NUM1 they kind of have a little more graphic than @CAPS2 @NUM1. Sometimes they have to choose between @CAPS2 @NUM1 and @CAPS9 @CAPS4 it depends on how graphic things are. Music is a whole other thing depending on what kind of music you are lissening to like theres @CAPS11, @CAPS4 & @CAPS13, @CAPS14 @CAPS15, @CAPS16, @ORGANIZATION1, @CAPS17, and exedra. with all thoughs they talk about sex and volints. Now all of them excepent contry talk about drugs and @ORGANIZATION1 talks about @ORGANIZATION1. There are some that talks about more things, but most of them thats what they talk about. If perents do not want there childeren lissening to it then they do not lissen. there are ways of still lissening to it. most radio stations they can not swre on the radio, but they just cut it out. there are ways to have the uncut version, but thats on a @CAPS18, @CAPS19, or @CAPS20 @NUM7 player. There are ways to get around it. See i think that it is dumb to take things like that away mostly, because they are going to see or hear about it someday anyways expeshally when they are in high school. Most teens do things with out there parents knowing and when they start driving they can lissen to whatever they want. Also they can read anything they want too, because they can buy the book and read it and hid it. Face it kids even younger find ways to do things that their parents do not want them to do. Matter what age they are they find ways to do what they want if they want it bad enoff. I think if a school wants to read something than they should have to have parents exent about it and if the kids can not read it than they can do something els insted or read something els. Do not take thing off the shelve just, because a couple of students can read or watch it. Your spoilling it for the kids that want to and can it is really unfair to the rest of the students they can not hepl it that there parents wont let them. If the parents won't then try to talk to them and tell them about it help them understand. Also people should have to watch what they do just because theres a kid the parent should leave them with a babysiter or something." 4 4 4 3 3 3 +3720 2 "Books That Are Offensive @CAPS1 view point is that books should not be taken off the shelfs if taken offensive to one person. Sometimes people get help from books that are offensive to others because somebody is doing something wrong and the book @MONTH1 help the other person. Everybody should be able to read a book if they want in a library. In a library everybody should have the right to read every book. The idea of taking a book off the shelf is a bad because people want to read books like that. Some people have a problem with that type of book but if they don't like it then tell people not to read it not take it off the shelf. If anything put it in a different area or just move it put all that type of book in one area not mixed in. When people need help they read a book or look it up. So if the book is offensive but can help somebody with problems then don't even move it. People do have a reason to read books that are offensive. We don't know all of the reasons but there are alot of them. If a movie is not good for children or just very horid it @MONTH1 need to be put in a place where nobody will look. Kids and grown ups are the same and nobody needs to see a movie if it is really bad. Usually when somebody takes something offensive they are guilty of something and know they are but will not admit it. People think other people write things that are just offensive on purpose ,but they don't they write it and somebody is guilty if something and can not live up to it. Sometimes just the reading is read wrong and misunderstood. Everybody has had a book that they thought was offensive but then the next person read it and they might think it is funny. The biggest problem is some people can't read. then some people read so fast they do not comprehend it correctly. I don't feel like them certain materials should be taken off the shelf if found offensive because that person @MONTH1 be feeling guilty of something. If the materials should be moved they should just be moved to a different area not off of the shelves totally. If it is taken offensive they should tell the librarian and then if very many more people say it is offensive then it can be taken off the shelf." 3 3 3 4 3 4 +3721 2 "The belief of certain materials, such as books, music, movies, magazines, etc., should be removed from shelves if they are offensive, depends on the situation the material is relating to. If one wants to see these type of resources, then he/she must be mature enough to withstand it. It all depends on where the material is at in the library and what situation it's in. If it is in the children's area, I highly suggest that it should be removed from there, since it's clear that a child should not process this type of information. If it's in the teen section, then the person must be mature enough to take this sort of inappropriate matter or just leave it be. In the adult section however, there should be no argument of any sort because it is obvious that the person must be fully mature to take in this sort of material. One example on why this sort of aspect on whether or not inappropriate material should be removed are the comic books called '@CAPS1 tales' or '@CAPS2 the @ORGANIZATION1'. These type of materials have some from inappropriate to disturbing events in the books, but have been distributed to the teen section. Now from ages @NUM1 years of age usually spend their time there and would likely read this type of information. Some teens would be horrified of looking through these books and others would be fascinated by it. It varies through the people and what type of material they would like to read. It all depends on the situation where this material is distributed in. Another example on whether or not inappropraite material should be taken out of the shelves is how movies are put in situations. There was once a time, a young lady around her early teens who wanted to check out a type of movie in which she have never saw before. So once she checked it out, she watched it with her parents and saw some uneasy sections during this movie. The person should have thought this through before jumping into the situation. If the person was mature enough to go through this matter, it would have been fine; but she was young still and so it made the matter worse. Whether or not inappropriate material should be removed from shelves depends on how and where the material is distributed and so it shows that one person can change the difference in the situation.Therefore whether this type of material should be taken off the shelves depends, once again, on the situation it is at" 4 4 4 4 3 4 +3722 2 "Books, music, movies, magazines, we've all had the pleasure of seeing/reading/watching our favorites, but many are considered unsatisfactory in their content to younger children. Parents, now than ever, are concerned about how their children are raised, and are always looking to clear inappropriate things away from their lives. Things with heavy violence, gore, language and even scenes of sexual content, all of these are wanted by all parents to be censored from their childs' eyes. There are many reasons why parents worldwide wish to hide these things from the eyes of the young, such as; personal influence, emotional growth and even the chance of a child becoming disobedient to the parent. These are all valid reasons why some things should be removed from the public eye. Again, we've all read or heard things that affect us personally, maybe you read on how you can make your life happier, or maybe you heard an inspirational song that conviced you to follow your dreams. Well, this is also true for everyday books, movies, magazines or music. If someone is introduced to something telling of a life with hatred or someone living in a violent way, it can influence a young reader to wish to live the same style of life if it sounds even a little remotely fun. True, children are encouraged to have fun, but to a certain, but safe extent. These are even known to affect someone's emotions. Maybe a great song that made you happy, or a movie that made you laugh. But it is true the opposite way as well. Songs that are dark and have a gloomy feeling to them can make a person feel depressed, or a scary movie @MONTH1 leave a person with a new fear or a nightmare in their sleep the same night. It has even been known that some children are left traumatized for life just because they weren't ready for what they saw in certain violent and gorey scenes. These are all things that parents want to keep away from their children in order to keep them safe. People are very easily moved by any form of information, song and story alike. It is our responsibility to keep the good influences around and keep the bad ones away. Children are easily affected in behavior, maybe they just saw a movie of @CAPS1 @CAPS2 and thought he was so cool and they wanted to be just like him. If a child is exposed to a movie of great violence or bad influence, the child @MONTH1 then start following what happened in it and begin not listening to their parents. It is only right to keep these bad influences away until they are able to handle things so violent or misfortunate. So yes, certain materials should be taken away from the public eye, for the safety of the community and for its' children. Books, movies, music, magazines - We've all seen/read/listened to them, but what have they influenced on you? Have you become a better person for doing so? Or a worse one? Or maybe you weren't affected at all? We need to be careful about what is available to us and to the rest of the world. Keeping the bad things away from our children and from anyone who can be influenced in a negative way is a top priority for any one person, group or business." 5 4 5 4 4 4 +3723 2 "Newspaper staff and/or whom it @MONTH1 concern, Reading material found in a library is very useful and informative to the world, there is no limit to what could be found on paper. Whether it be offensive or not, having limits to books will only create tension, effect the economy, and will lead to illegal activity, ironically enough, in which offensive books will be written and sold, completely undercover. In today's world, it would be nearly impossible to pick up a book and factually state that it is not offensive. Almost everyone has some little issue with something in the world today, and because of that, original and unoffensive material are hard to come by. With the stripping of offensive material from libraries, authors will be devastated, not just emotionally, but will be out of a job and will have less income. Because of how virtually impossible it is to write a book that is not offensive, authors will become very frustrated, and most are very passionate about what they do. Also, because almost all reading material is offensive in some way, there will be little to no reading material on the selves of the world or nation's libraries. @CAPS1 could potentially lead to violent protests that quickly tear down even the most successful of nations. However, physical devastation would not be the only toll paid for the stripping of offensive reading material from libraries Books cost money; to make books costs money, to buy books costs money. Paper companies would take a major nose-dive in the market, having almost no clientel. When a major divistion such as the paper industry falls, it will bring others down as @CAPS2, and due to the nation's market complexity, almost all major companies rely on paper. @CAPS1 would ruin the economy. Some might say, '@CAPS1 means that the people of @LOCATION1 will be much more green!' @CAPS2, the past few centuries when economics and the environment are put on a scale, economics takes the cake by a mile. Obviously, @CAPS1 will do much more harm than good. The people of the world always have a priority. Also, the majority of the people don't enjoy having something taken that they have grown so fond to. People, in general, want what they can't have. An obvious example would be illegal drugs; the drug market is extremely successful, but it's illegal. If people were to have these currently illegal drugs for their use, being completely legal, chances are that the success of drug marketing will plummet. The opposite situation for books: We have them now, but when they are taken, we will want them even more. People who read tend to be very passionate about literature and very intellegent. All it takes is one group to gain numbers, and have a very talented speaker persuede others to follow in a potentially violent revolt to be given back permission to write and publish alleged 'offensive' books. All other material found in libraries, such as music and movies, being taken away will have the same effects, give or take a few similarities or differences. Avoiding such problems is easy, keep the books and all other material in a library on the shelves. It will only be problematic to take it all away, especially for being offensive, when there are very few books that the general population will find not offensive. If keeping the material in libraries means individuals will become offended for very different reasons, let it be organized chaos. @CAPS1 is how people work, and keeping the material on the selves is how the people are pleased or motivated" 5 5 5 4 3 4 +3724 2 "Well to begin my Persuasive @CAPS1. THATS @CAPS2 @CAPS3!!! How could they!? Dont we have a say in this?.... Well.... WE SHOULD!!!! This is a little bit about what i think of this letter. I think that if books, movies, music, magazines,or anything else is offensive, then we shouldnt have them in libraries because its not right, and its @CAPS2 cuel, and people shouldn't putting those things there if there insalting to others or mean to them. In my experenice, I have had that happen where I cheaked out a book on something and it turned out very Offensive to me. It was at the @ORGANIZATION1 when I was @NUM1 years old. My parents and I where there for some movie or something, and we were looking at some books that were there, and came across a book called' @CAPS4 in @LOCATION1 ' And it was offensive to me because @CAPS5 was the reglion I was raised in, and they @CAPS2 talked about there feelings on faith, and how they thought of it. And it made me hurt because I go to chruch and read the @CAPS6-I-@CAPS6-@CAPS8-@CAPS9. And i was raised on a type of faith that I know alot about. And if you read that book, it made my question everything i belived. So to rap up my thoughts and feelings. I think it shouldn't be there for people to read, like i said before. People have other books they can have there instead of one that are offensive poeple. All in all I hope you think about my persuassive letter, and tell them about your thoughts and ideas too." 2 3 2 2 3 2 +3725 2 Hello my name is @PERSON1 one day me and a friend were in the librairy on @DATE1 @TIME1 looking at some books. Later that day my @CAPS1 and I were at school reading our books she came up to me in the hallway. @CAPS1 said that her book was offensive and she was going to tell somebody about it. So school went by the bell rang it was time to go. When she got home she went and told her parents he parents said that she should go and tell the librarian. On our walk to the librairy @CAPS1 and I stopped at the store to get something to drink. While were were there she got a newspapaer to read about what was going on at the scool when she noticed something about books about how they needed to be taken off the shelf. when we walked in the doors to the library the librarian was sitting at her desk she asked us if we needed any help. @CAPS1 said no but I need to talk to you about a book the librarian said she was way ahead of her. That she had already had complaints about the books and she was taking them off the shelfs. And moving the to the back closet. About a week or so later @CAPS1 and her mother were reading the newspaper about the library it said that all the offensive books were being taken off the shelf and they were replacing them with newer and better ones. Some people thought it was wrong and they shouldnt do it because of one person said it was offensive but they did it any way. 3 3 3 3 3 3 +3726 2 "Censorship helps prevent people from viewing, listening, or read disturbing images or ideas for certain age groups. But in the case of libraries, all the books would have to be taken off the shelves. And if all the books are taken off the shelves, then all the books in stores would have to be thrown out as well. Books are essential part of life. They have great ideas and thoughts expressed through these amazing pieces of word art. People who think that the books in libraries should be censored, are fools. These people want to keep their children and themselves safe, and that is understandable, but at the same time they are hurting people with the decision they have decided to put forth. Authors are hurt because it is their work that is being censored. People who enjoy reading the books, that are wanted censored, would no longer be able to read those books. It is mainly the choice of the person to avoid these books if they truely find it offensive to themselves. They should not go all out of their way and try to censor them, because they would eventually might cause everyone or some people to think that they could find a book that should be censored. And if that happens, then there would be no more books on the shelves. The government will take notice and ban these books or worse remove all books forever just like what happened in @CAPS1 @NUM1. Over all, books are a good thing. They gives us inspiration, and help us pull through life with the thoughts expressed in them. It is your choice to avoid the books that upset you, not what other people think about them." 4 4 4 4 4 4 +3727 2 "Do I believe that ceertain materials, such as books, music, magazines, etc., should be removed from the shelves if they are found offensive? NO, the reason I say that is because if it was offensive to me,they might not be offensive to other people. Im not saying things like that are offensive to me because there not. I personaly love reading books like comic books with super heros in them. That excites me. Back to the point if people thinks a book is offensive to them then they don'@CAPS1 need to pick it up! If I knew a book would be offensive to me I would never pick it up. I know what your going to say 'but what if they didn'@CAPS1 know it was going to be offensive to them'. Well thats a gud question. Just put it up and dont complain because the writer didn'@CAPS1 know you were gonig to take it offensive or the wrong way. They were just writing a book. It's not the writers fault. He or she was just probable writing a book that they though was a good book. When it got published and you read it and you took it offensive. DON'@CAPS1 because they exspecing there self's. So dont take no book's off the shelf's in the libraries because stupid people wont to get mad beacause they took it offensive. Your going to ruin it for the other people that though the book was either a good book or an azsome book. So now that we got that out of the way lets move on and get on with our life's. Thanks for the conversation. See you next" 3 3 3 3 3 3 +3728 2 "Society is always dealing with what is appropriate and what is not. We witness things of that nature every day even when we are not trying to. It is the classic argument between two parties trying to prove eachother wrong, what is admissable and what is not. We should try with all our efforts to keep inapporpriate books off of our shelves and out of the hands of the young population. People can be influenced to do just about anything. There are too many of these tales to pick out even one. The interesting thing is people can be affected by someone indirectly. Whether it be through television, music, or books, man can be molded into something through what they are conditioned to believe. The influences one encounters can be either positive or negative. As a lowly person who only wants what is best for society, I know that movies with criminal acts or explicit images do not help anyone become a better citizen. It is no different with books. Books that have politically incorrect messages are in no sense better than movies that achieve the same goal. I am not in any way against reading books, rather I am quite on the contrary. Reading is overall good for mental and social health because it allows us to explore things deep inside of us that are often rendered useless in our fast-paced world. But if one is constantly overexposed to books that are against our very human nature, they should be removed for the good of the people around us. If one cannot find a book to read that is not deemed appropriate, then he or she needs to take a look at themselves. There are millions of books that are not only exciting and stimulating but also can have a positive influence on one as well. We as members of the @ORGANIZATION1 are already in enough trouble as it is with all our financial troubles and what not. We do not need to add more to the table when we let the population gain access to obsene books that would typically make someone only rebellious to society. If something is making the people of our lands more riotous than it should immediately be censored or removed from society in general. Believe it or not, there are ways to have fun and get a good message across at the same time!" 4 4 4 4 4 4 +3729 2 "Dear Newspaper; In libraries I do not feel it is neccasry to take stuff away that poeple could find offensive, because honestly if it offends you than don't look at it. You are your own person and can make your own decisions, if this so called offensive material is not veiwed offensive by someone. Then why should that person be punished by someone who has to make a big deal out of something. Just because you don't like it doesn't mean I don't like it. If someone finds a book offensive then don't read it, if there is a magazine that you find offensive, don't read it. It is as simple as that, people are wise enough to know what is good and what is bad for them. There is no reason why someone can't choose what they want to get, where they want it. From observations of my own I have seen numerous times when someone has found someones music offensive, but they don't say anything. They just ignore it, the world needs more people like that. More people who will stand up for what they believe in and won't judge others for what they belief in. It seems as if the world is becoming filled with a bunch of people who care way to much about what other people are doing. That is not a bad thing nessaccarily but everyone will be offended by something but it is your choice to whether or not let it bug you for the rest of your life. Listen to what ever music, read what ever books or magazines that you want. If someone finds them offensive, so be it. You are your own person and that won't ever change. Do what makes you happy and nothing else." 3 2 3 3 3 3 +3730 2 "Why censor things? When there's always going to be someone out there wanting to read a book or magizine that others think should be censored. If this visious circle would continue then we wouldn't have any books left at all to read. Theres lots of things out there that some people dont like but that doesn't give them the right to take it off the self. Then by doing that and taking it off the self just because they didnt think it was an apropriate book. Will leave someone with nothing to read now. If the books or magazine would start being taken off the selves then we would have less ways to research or learn certain things. Even though there might be graphic pictures or writing in books or magazines doesn't make them inaproprieate. It needs to be labled on the book that it has it in there. If you see the mark and you dont want to look at it then you dont have too. We need to code books for different ages. Then parents could be happy if there little boy or girl could only read certain books because of how old they are. Then if parents give permission then children could read books that were ment for older kids or adults. Even though im not the biggest fan of reading but i will sometimes pick up a book that has things for me to learn in it about an engine. I dont think that people should be able to restrict anything and take it off the selves everyone has there own right to read the book or watch the movie, etc. But children are different because they dont need to learn all those things at an early age. So parents can pick what they can read. but if your an adult you should be able to read, listen, or watch whatever you want to." 3 3 3 3 4 3 +3731 2 "There are many things in this world that childeren should not see and that poisen the minds of them and others whatever age they @MONTH1 be. The things people see these days can be bad and shouln't be seen by anybody of any age. These things should be disposed of so our minds will be clean and the minds of future generations will be clean also. The reason that I think that no one of any age should think about these bad things is because if kids shouldn't know about them than, then why should the same kid that has grown up know these same thing. But if things like this are in libraries thenthe question is who should be in charge of deciding what is right for wroung? Sence the worlds population is so large and so many people have diferent ideas then how could we get one person to look through all things and decide between good or bad? Well the awnser would be that it is impossible to. That is why it is up to the head of the family to decide what to do about this crisis." 3 3 3 3 3 3 +3732 2 "I believe that some materials should not be on the selfs, but not removed.They should have a room with everything that someone could offened anyone.Some books; music, movies, magazines,and etc. should not be totally removed from a public library. I have seen a little kid pull a adult book of the self.The mother got very mad at the library for having it so low, on the self.I can understand some books being in the library.They should have all the adult book and etc. on the higher selfs so the little kids can not reach them.The library should have a room for only kids, and teenagers books; magazines, music, movies and etc. The kids should not be aloud in parts of the library that are to vilont , or sexual.The library should also have a room for all the adult movies and books with a locked door,along with the kid room.If the library does not have enough money for the rooms, they can atleast put all of the adult stuff on a top self or higher self. I believe that some materials should not be on the shelfs,but not removed from the library.Because, someone might need that book to research something for school or a job.It could also take someones history out of the library if it is removed.I mean there is a reason the book; movie, magazine, music,or etc. was made.There is a reason that the material is there.Also the parents can help the library, by keeping a closer eye on their kids.Watch what the grab off the self.The parent can even have a friend or neighbor watch the children while the parent goes to the library so the kids wont see anything the shouldn't. I believe everything i have wrote here is the truth about the way things should be in a public library.The adult stuff should be higher up.If a parent doesnt like it they can leave their kid at home,or not go to that library anymore." 3 3 3 3 3 3 +3733 2 "There are many kinds of books, music, movies, and magazines in one library. People all over the world have different interests in differtent subjects. Some people take offence to certain books, songs, movies, magazines, etc. Another person @MONTH1 not and think its offencive at all. For example, a religous book that talks about @CAPS1 being one guy when some people beleive differently. The book should not be put away, for there are also books that will be all about your beliefs. The variety of subjects in a library such as songs, magazines and everything else in the library is huge. There should never be a book, movie, or item removed when one person takes offence to it because in Katherine Paterson quote, its makin the point if someone decides they want to remove a book from the shelf anyone could. Which eventually would leave people with no variety in books which would start a huge problem. People would not be able to read as much as they'd like because they would not have the ability to pick between many options. The library provides information for teachers, students, researchers, writers and for readers who do it as a hobby. If that was takin away from people, the people would become less informed about many things in the world. In @CAPS2 freedom is important and we expect it, freedom of speech and the freedom to have your own opinions and interests. Therefor if items were being removed from a public place that gives that, @CAPS2 would not let this happen. People have the right to like whatever they want, if someone takes offence to an item in the library they should walk away from it and not stress about removing it" 3 3 3 3 3 3 +3734 2 "It dose not really mater to me, we all have the wright to are one likes and dislikes. Someone @MONTH1 not think that movies with blood in thim should alowed, but other @MONTH1 thimk that movie with adalt content should not not be alowed. If you dont like something and someone eles dose why should you get what you want and not what someone eles want. So if we tacke one movie, book, magazine, type of song or music off the market why dont we just all of thim off the market. Then there will be no arument about what is soutibal to watch and what is not. So if you dont like somthing or have littal kids and dont want thim to watch something or read somthing or look at somthing then just bont bay thim and if you do make sore it were they cant reach or fine or get to" 2 2 2 2 2 2 +3735 2 "Books, music, movies, magazines, etc., should be removed from the shelves because little kids shouldn't be watching: seeing: or hearing them. Vielence is not a good thing for little kids to be watching because they will want to grow up and fight. We already have a high teen vielence rate. Our teen vielence rate really needs to be lowered. When teens start to fight they don't have control of themselves. The movies in my oppion need to really be removed because that is how children are learning to fight. They see an older kid fighting and they want to try it out. Movies are a bad influnes on little kids when it comes to fighting and killing. Movies could also get kids to be bullies. When a kid is a bullie they don't really know what they are getting themselves into. Another bad example would be drugs and alchoale. Teens and other children get put into peer prushior. When teens and other children have peer prushior its hard to say NO. The kinds of music people listen to. Music could also be a bad influence on kids. The music that kids listen to would have something about killing, drugs, and alchoale. When kids get involved in drugs and alchoale that will mess up their whole life. For example the screamo music to me sounds like someone would be killing or beating up someone. Magazines are a bad thing for teens and children to be looking at and reading. Magazines have bad imangs in them and when teens see the imangs they want to act and or be just like the people that are in them pictures. Books, movies, music and magazines should be removed from the shelves because of all the vielence. There are so many different fights and different teens that get other kids into peer prushior. That is why im persuativing you to take the books off the shelves" 3 3 3 3 3 3 +3736 2 "How much hurt can someone take from a book, popular music, a movie, or even a magazine, etc.? Well, as shown by studies, @CAPS1 ctizens @MONTH1 take what these items say more offensivley than what it @MONTH1 seem. They @MONTH1 seem to go overboard or exaggerate what these updated articles are spreading across @LOCATION1, but is it really true? Due to all the diffrent races @LOCATION1 sees every single day, sometimes we @MONTH1 @CAPS2 be doing our best to accept their diffrent cultural backrounds in our modern day society. I have noticed just by going to a pretty much all white school how most people judge other races other than their own, wheather it be making fun of what they wear or how they talk, etc. Sometimes I wish they could just consider that we are all human beings and no one deserves to be treated that way. Taking this all into consideration, I think that wheather or @CAPS2 they are racial books, magazines, or movies they should @CAPS2 be removed from there distribution around the world. I know that wheather or @CAPS2 that these books, movies, magazines, or music are racial they should still be able to be heard by those who want to hear it. I think that there are some people out there, for example myself, who like to watch movies and read books about slavery, the holocaust, etc. It's a part of @CAPS1 @CAPS4 and I enjoy learning about it very much. It @MONTH1 seem racial though to those who went through these hard times and these items which try to explain the pain these people went through @MONTH1 just seem like a joke towards them to make fun of all they went through, eventhough it is @CAPS2 meant that way at all. I also understand that there are people who write books about mexican jokes, black jokes, etc. or even make comedy movies joking over diffent races. These types of things I think should be taken OFF the shelves everywhere! These are the types of things that I feel are what bother many different races and make fun of their cultural backround. When it comes to music these days, it seems they always sing about love, being hurt physically and mentally, and so on. I feel like music shouldn't really have an affect on diffrent races, unless it is purposley made for the reason of making fun of people. I don't see where magazines can be harmful to a certain cultural backround. The magazines I read about aka seventeen magazine seem to comment about how beautiful these people. Overall, I think that making fun of diffrent races around the world is never going to get better if we never do anything to help it get better. Eventhough all these diffrent items such as: movies, magazines, books and music @MONTH1 seem racial I think they should be left on the shelf of every library to let people watch and understand more about the @CAPS4 of our world, but if it is a truly written book, song, movie, or magazine article that is aimed to hurt someone of a diffent race, that should definatley be removed from every shelf around the world" 4 3 4 3 4 3 +3737 2 "Should books that are offensive be removed from library shelves? Some books in the library are offensive to some people but should the books be removed from the shelves? I personally don't think the books should be removed. Some people @MONTH1 think the books do need to be removed some don't. What is your choice to this difficult question? First off as I said before I don't think the books should be removed; but some people @MONTH1 not like my opinion. These books should not be removed just because they are offensive to other people. If another finds any book offensive that person should just ignore the book, not asked for it to be taken off the shelf; someone else might want to read that same book but if it is taken off the shelf then that person can't read the book. It isn't fair to take books off the shelf just because someone finds the book offensive. Any person that finds a book offensive should just ignore it and not read the book. That book that is offensive to someone isn't directed to he or she; the authors opinion shouldn't matter. Second, everyones opinion is different. Some people want the books off the shelves some people don't. So who gets their way in this little arguement? I think the books should stay on the shelves. One person @MONTH1 find the book offensive and the next person @MONTH1 not. Other people @MONTH1 not even read the offensive book. But no matter if the book is read or not it shouldn't be taken off the shelf; it just isn't fair to all the other people who actually do want to read that book. Lastly, everyone enjoys different book themes. If you don't like the theme of the book then why are you reading it? If you don't like the book or you find it offensive go choose another book. Don't make it to where other people can't read the book if they like those kind of themes. You wouldn't like it if that happened to you. No one would like that. Just pick a book that has a theme you like. So as you can see I don't think it is fair that books get taken off the shelf if people find the book offensive. Some people @MONTH1 like that theme of the book or the story it has to it. Some people have different opinions of the book or it means something different to them. And just because someone finds a book offensive doesn't mean it should be taken off the shelf; it just isn't fair to other people." 4 3 4 4 4 4 +3738 2 "Have you ever read a book you thought was offense? Have you ever read a book you didn't want any one else to read? I agree with katherine paterson if we can take one book off the shelfs we can take all the books of the shelf. Katherine Paterson says if I have the right to remove that book from the shelf that I abhor. Which means that if one person takes a book off the shelf then so does everone else then we will have no books to read at libraries. This is why I agree with katherine on this subject books are wrote for us to read not to be sensored just because so stuck up parent doesn't want their kid reading some book that so many other people enjoy. Magizines that people think are offense then the should put in a differnt area so the kids cant get them. The same with movies so movies are not ment for kids, but that doesn't mean that we have to take them off the shelf! One thing we can do is put the valgur moves that we dont want are children watching behind the counter and have the libraian get them when we watch them. As far as for the books make a separte part of the library for books that kids shouldn't read, such as romance or horror books, adult books, some action books. Music is another thing that some parents have a had time with because of the offense lyrics in them, but some poeple like that kind of music so we can't take that away from them because we don't like it. does that seem fair?? Now does some of those books seem a little better now? Yes we still dont want are kids read valgur books about killing, and romance, and serial killers, but for some people enjoy reading those novels. This is why i agree with Katherine @PERSON1" 3 3 3 3 3 3 +3739 2 "Libraries in @LOCATION1 I am going to write a persuasive essay about what I think about some books and magazines that some people find offensive thing in the book. I dont think that just because it is offensive someone it should be taken off the shelf, because some people have different views over the book or magazine. So I am going to tell what I think over this subject. I think if someone dose'nt like whats in the book they should just not read it or something, because some people might find it interesting. People just need to stop being so selfish and start thinking about others. For example the author of the book or magazine some how relates to them, and they probably made it so other people could relate to them also. Thats why I think people should not argue about taking books off the shelf and start thinking of others. Thats what I think about people trying to take the books off the shelf. So whoever is reading this please take this in consideriation and relize that some people like different books than others. So don't start taking books off the shelf just because a few people find them offensive. So thats all I have to say about people that are trying to get them taken off the shelf because there offensive to them" 2 3 2 3 3 3 +3740 2 "In Libraries there are many books, magazines, music, or movies that @MONTH1 be found offensive to many, but it might be what some people like to read; therefore we must keep all of the materials no matter how crude. These library materials are all part of the worlds past and all have a bigger story behind it which has an even bigger story behind it and so on. If we start removing books and everyone removes one then we are going to be left with nothing to learn off of. The world will be less intellegent and we start to forget and lose our past. This is the reason that we must never take any books, movies, music, or magizines off the shelves of a library for it @MONTH1 be special to someone or @MONTH1 be crude to others but it in the end they all contain some past that no other book @MONTH1 contain. A world with no so called innapropriate books, magazines, music, or movies would be a less crude place but it will be stripping people of knowledge that @MONTH1 be needed. If everyone took a book off the shelve than none would be left. The books would start to lose their love, compasssion, and livlyhood within them. Other books @MONTH1 contain segregation and segregation is a big part of americas past. The word negroe is offensive for some and if we took all of the books with the word negroe out than we would lose @NUM1 years of americas past that cannot be forgotten. Documents containing stories of wars, leaders, rising and fallsing of many empires and kingdoms would all be gone because the violance was to offensive. Many historic moments in the world's history woul.d be lost forever. We cannot get rid of offensive books for the sake of the world's past. The world would lose too much history in getting rid of offensive books. If the books were put in there own section in the library than kids would not be able to see them causing this to be no problem for young eyes to see. If you find many books offensive than you just should not go to a library because no matter what happens no books are going to be just thrown away for they have history within them. If we start deshelving books than soon movies will be going and than magazines will be limited to only say so much. I believe that if our kids cannot get to the section with offensive books then we will not have to worry about them seeing the offensive materials. If we want to keep all the books and people are still trying to throw away offensive books than we should just have a section where offensive books should be and kids cannot get to. In @CAPS1 this is how we could censor books in libraries. Books, Movies, Magazines, and music are a part of every country in the world today. It is was changes countries and makes them different, it gives them there own culture which we can share with each other. So no matter what we should should never try and take offensive or any kind of book off the shelves of libraries. Censorship @MONTH1 be needed but the offensive materials do not need to be taken off the face of the earth or thrown where no one could ever read it again. All in all we cannot get extinguish the flames of our past or we @MONTH1 never have a future" 4 4 4 4 4 4 +3741 2 Censorship in Libraries I think that censorship in a library is fine some people @MONTH1 feel that children don't need to see certain things. Which that @MONTH1 be true there are a lot of things that even adult shouldn't even see themselves. If there is going to be bad things in the library the owners might make a section just for those things. People should have the right to be able to look at anything that they want in the library 2 2 2 2 2 2 +3742 2 "Libraries are a place where anyone can find books to read, on any topic they choose. This is a right that should stay in the reader's hands, and not the library's. Every person can read about whatever topics they please, and those working at libraries should not have an influence on which books peole read. Censorship of books is competely unneccessary. If somebody wants to read about a specific topic, then they have the right to. Reading a book that is offensive to the reader is the reader's choice; nobody forced them to read it. Upon finding a book that is offensive, the reader then can make that decision, and not read the book. Though just because this one reader finds this book offensive, does not mean a different person would, and this different person has the right to read this book if they choose. Finding a book offensive is a simply an opinion, and has no factual evidence. So who has the right to say whether a book is offensive or not? Just because somebody running a library belives a book to be offensive or innappropriate, does not mean the book should be taken off the shelf. There is no one person who can say whether or not a book is offensive. Other items such as music, movies, or magazines also should not be censored, though some of them are already. Movies for example, are all rated, and this therfore gives the viewer the choice of what level of movie they would like to watch. The viewer should not expect to check out a rated '@CAPS1' movie, and see no material with foul language, violence, or other 'offensive' subjects. By choosing a higher rated movie, the viewer is making their own choice of what they see, and so the librarians should not take it upon themselves to take away these films. It is simply not thier responsibility. Music also is rated, and if thought neccessary, has a parental warning label, telling the listener that this album has explicit content. Though just as with movies or books, everybody has the right to listen to whichever music they please, and should not have to search at places other than a library, because the librarian thought the music to be innappropriate. Magazines @MONTH1 not be rated, but this does not mean the library should make the executive decision to rate them, and get rid of the ones found to be 'offensive'. As mentioned several times above, it is the reader's choice to view material; not the librarian's. Whether the material is books, music, movies, or magazines, the consumer has the right to read, listen to, or view whatever they please, without the influence of librarians. Each person has their own say of what material they choose to consume, and nobody else has the right to tell them otherwise." 4 4 4 4 4 4 +3743 2 "Dear Newspaper, I don't think there should be censorship at all. Everyone has the right to read or watch whatever makes them happy. Just because someone is offended by them doesn't mean it shouldnt exist. Maybe if you were to take books and movies off the shelfs for censory that alone would offend someone? It would offend the person who wrote the book or made the movie. There are many reasons why censory shouldnt be in libraries. My first reason is freedom of speech. People have the right to say or write whatever they believe. Just because it can offend someone doesnt mean you should take the opportunity to read away from the people it doesn't offend. Give people the full right to read and write whatever it is they want to. Also if you use censorship then it's going to effect literature in a bad way. By using Censorship you will have to take the books that offend people off the shelves. Not having these books up on the shelves, means no one can read them. If no one can read the books, no one learns. One more thing to take into consideration, is the authors money. Alot of times in the library if I see a book I really like, I'll go buy it. But taking these books off the shelves means no one will see them. The author's write these books so they can make a point and make money. If we take the books down, they dont make money and they dont make their intended point. In conclution I think censory is overall a bad idea. One because of freedom of speech. Second is it could possibly drastically effect literature. Third is its taking away authors money and point of view. These are the important reasons I do not surrport censory." 3 3 3 3 3 3 +3744 2 "I dont think that music, magazines, books, or movies should be removed from the shelf because if some people dont like it some other people might find it intertaining than what other people do. I think that if people dont want there children to see it then dont let them. I believe that children should have the right to know about some things but not all. I mean everyone has the right to know about what is going on or what happened years and years ago. I mean it is all put out there to be seen not hidden from eople because people want others to know what has happened even if they take it the wrong way. I would rather my children know about everything so they know what is wrong and what is right. There is some stuff out there in books, magazines, and ect. that shoouldnt be seen or heard of but people listen and read it all the time no matter what it is. Schools teach children about almost anything does that mean schools should be shut down? No! Some people homeschool their kids for that reason ,but do they think about when they go out in public what people say or do? I dont think so, there is really no reason that if people take it offensive about something they read or listen to. There is no reason for people to take it off the shelf if they dont like it because other people will and they will buy it just to listen or to read something. People need to realize that there is stuff everywhere that people dont want their children hearing but they hear it anyway. It is just hoe our economy is these days." 3 3 3 3 3 3 +3745 2 "Yes! i believe that because such as books had alots of informtionsalso when listen musice i feel like so sweet like i maen i'm so happy... when i read the magazines i know about the world something about people and animlas about... @NUM1 i belive that because musice is good for listening..when you listen musice everyday you know what they mean then you will be know the mean, first i'm listen american musice i feeled like crazy now i know how to listen musice...Yes! i belive that because the magazines is good for reading .one think when i caome american i feel like so sad because i don't no anyboday also i don't no how to read magazines that's why, and two month later i have new friend then they teach me how to speak @CAPS1 and they teached me how to read magazines @NUM2 yers later i got alots of friends in school my teacher told me kabee don't worry about to learn speak @CAPS1 when you come school everyday you will be speak @CAPS3 very well then i'm studies everyday for learn speak @CAPS3 now i can speak @CAPS3 very well at @CAPS4 i love all teacher because they are teached me how to speak @CAPS3 that's why..." 2 2 2 2 2 2 +3746 2 "In the current life we are all living we find a need to make things more an more private. If this something is said and we don't like it we find the urge to rid the @CAPS2 of to '@CAPS1' other people from it. In modern writing @DATE1 and all throughout history there have been certain books that we don't like because they go against what we find moraly right. But just because a group of people say it's wrong is there a need to completely abolish from the @LOCATION1? No. When something is written it is written for a purpose. If there was no purpose then we wouldn't have anything to read at all in the first place. Yes, there are some books and magazine's that can be very vivid and unsutable for younger minds to experience. But that it is why these books are created for older people to read. I am a large fan of books over the two @CAPS2 @CAPS3 that took place. I find them very fascinating and I love to see what my life could be like @DATE1 if the outcomes of those @CAPS3 would have been different. I will admit many of these books contain things that are very real in a sense that some adults even can't handle, but this would be no reason to get rid of them all together. These books signify a great part of human history that many people need to know. Without these books these @CAPS3 can become something in the past and nothing more. There are also many books out there that have a large deal to do with very mature themes. These bookos can include very detailed areas about a sex scene. Yes indeed these books can definently be very unsutable for younger kids. But that is where the idea that these books were not created for them. They were created for older more mature readers. Also if we are so concerned as to what our children are seeing then that is where the parent would have to step in. The parent can control the limit in the intensity or maturity of the books their child is reading. Looking out for what are children see is a large matter, the other side though is the thought of people getting ideas from reading more intense books. For instance when people find something that they truly believe in they can become very motivated to expand peoples knoledge of that matter. If one person reads a book about poloitics and see a side that they have never seen before they could become driven to form a group to drive that thought or matter into all of the minds of the human race. This could greatly affect us by having a large amount of people come to an uproar at a group even as large as our current governament. But even though this could happen what type of free, run by the people for the people, group are we now. Overall putting restrictions on the things we read or see, to our country, would have to be moraly wrong. Limiting what are nation can see would lead to most likely more of an uproar than just having to deal with different thoughts or outlooks of a group of people. This could happen because people would see it as the government maybe making more socialist acts by trying to control our knoledge." 4 4 4 4 4 4 +3747 2 "I believe that books, music, movies, magazines, etc., should not be removed from the library shelves. If the materials propose things like racism, I would like those items taken off the shelves. Sometimes politics have a say in this. This is my say on this topic. First off, people have an option of looking at those things on the shelves or on the internet. All of us have our own opinion about what is offensive and what is not offensive. Lots of people have families and kids and they don't want their kids to have to see that kind of stuff. The parents have the knowlegde of where most of the materials in libraries are. Also if the parents want to get books, why not go to a different library and get books. Or go to a store that sells books and is a little more censored. I only have one execption though, if the materials in the book, music, movie, magazine is racist in anyway, I would want that removed from the shelf. Many people have the choice of wheather or not to go to a place that has offensive materials. Sometimes the local, state or even the federal government have a say in wheather or not this kind of material gets put on the shelves of libraries or on the internet. Who knows, maybe someone likes these kinds of books, music, magazines, movies etc., and they don't want them takin off the the shelves or off the internet. Even going on the computer and 'surfing the web' for stuff like that is a little bit crazy, but thats their choice. So thats my view on the censorship in libraries." 4 3 4 4 3 4 +3748 2 "Should certain books and magazines be removed from the shelves if found offensive ? YES! Children shouldnt be exposed to certain things. Some books and magazines are to explict for children at certain ages. Children should read books that meet their age group. If children read books that are inapporiate for their age they might start to act out that way. Parents should try and remove all books that are offense to their children because that can have a real bad affect on them. Children at a certain age group should read books thats on their level and apporiate for them. Certain books, magazines, music, and movies are to explict for kids these days. I think they should all be blocked and out of children reach. If children started to listen inapporiate music and read offense books it might affect the way they act. Children shouldnt be exposed to things that might brain wash them. If kids start toread horrible book and listen to bad music imagine what affect it might have on them in the world we live in today! I think parents should try and do all they can to keep certain things out of the reach of their children. Parents should protest and call meetings to make sure libraries are taking inapporiate things off the shelves for kids. Parents should want to keep kids far away form certain things that @MONTH1 appear offense. It will mean that they'll doing their job as a good parent. Sometimes kids wont always agree with what the parent might say but they hav to realize it could be whats best for them. Parents shouldn't always want to be their child friend because, sometimes kids would run over you. I know from personal exprience because sometimes peoplecan take kindness for weakness! Being a parent you should already be prepared for things like this. In conclusion explict magazines, books, and music should really be taken off the shelves from kids. It might expose children somethings that isnt always good for them" 4 4 4 4 4 4 +3749 2 "If i had the right to remove books, music, magazines or other things that were offensive from a library i wouldn't do it. I wouldn't do it because everybody as a right to read, lisen and see whatever they want. If people really didn't want to see offensive books or anything else why would they be seeing it in the first place. Some parents think that they shouldn't have offensive books beacuse it would affect their children.Their would be a change in kids education. Everybody has the right to read whatever they want. Their are different kinds of people that like to read different kinds of things. If books would have to be remove from the library then everybody would start taking all the books out. One way or another evrybody ends up reading all those offensive books at a certain point of their lifes anyways. The parents that are so worried about what their kids would see at a library should inform themselves of what their kids are reading and prohibid them from doing it. In my opinion I think that if parents took the time to explains their kids the good and bad things about life it wouldn't be that offensive for their children. Another reason of why i wouldn't remove books from a library is because it would affect the education of many kids. Removing books means taking away history from them. There are many painters in our history that painted naked womans many people find that offensive. I think they should never take that history from them beacuse they are just learning things about their history. Books, music, magazines, ect should not be remove from libraries. Because those things are important for everybody whether you read or not. Removing this items would just be a total chaos. They should leave the libraries just the way they are. Everybody has the right to read, lisen and see whatever they want." 3 3 3 3 4 3 +3750 2 "Should certain material found to be offensive be removed from the shelves of our library? Many people find material they see in libraries such as books, movies, music, magazines, etc., to be offensive; but does that mean that they should be removed? I believe along with many others that libraries should not censor out offensive materials. To censor libraries would neglect parent responsibilities, destroy our profitable media, and be unconstitutional. Parents are responsible for their children, not only when it comes to providing food and shelter, but also when their children are viewing inappropriate or offensive material. If you do not want your child to be offended or see vulgar shows, texts, and music, do not let them see it. For instance, if a child is listening to a sexual song on their I-pod take it from them. It is not a right to have the device it is a privelage and parents are aloud to take away privelages. In addition to neglecting the parent's responsibilities, it would be a gigantic blow to the media economically. Most media is viewed, because of the inappropriate material appearing in their shows, books, and music. If you censor all of that material out less movie tickets will be bought, less books will be sold, and less music will be listened to. In a time of recession, like the one we are currently coming out of it is more beneficial to provide as much income as possible, instead of destroying current oppurtunities for profit. Both of these points are valid, but most importantly censoring libraries would be unconstitutional. In the preamble we are given rights to the freedom of speech and press. These offensive materials are included in this right. I understand admentments can be added to specify what type of speech and press is appropriate, but how will officers monitor that. Not to mention all the jail space that would be needed for people smuggling inappropriate material to buyers. In brief censoring libraries is a bad idea in the areas of parent responsibilities, media economics, and our constitutional rights. When negatively effecting all of these areas the consequences are much more influential then the benefits. Obviously censoring is not the answer to offensive material" 4 5 4 4 4 4 +3751 2 "Let your mind wander to a place of peace and tranquility. You are in a world of endless possiblities. To each side of you lies a vast collection of diverse adventures and anecdotes. You are in a library where each book holds the key to a door of knowledge and adventure. Looking for an adventure of your own, you drift down each section searching for the one suitable to your liking. Turning the corner, your eyes suddenly glance over to some books and magazines with provocative and inappropriate pictures on them that are blatantly out in the open for anyone to gaze upon. Quickly turning your eyes from the unfortunate meeting of offensive pictures, you race down the hallway to a different section. You think to yourself how unecessary those images were, now scarred into your mind. In most libraries, you will find anything you are looking for that can be contained within the confines of a book. I believe that because libraries are used by everyone of all different ages, races, and genders, that some censorship should be put into effect. Some of the content found in libraries should be censored due to a diverse group of people in the world with different views, opinions, and morals. This censorship is @CAPS1 narrowed down to just inappropriate images, but religious, political, and cultural innuendo as well. Censorship should be evident in all sections of the library. I do @CAPS1 think that certain books should necessarily be removed from the shelf because of violation of rights to speech which includes written speech as well. I do, however, think that they should be sectioned off and clearly marked to warn unwanting eyes and ears of the material found there. Libraries are one of the number one resources when researching, reading, or gaining information and knowledge. Most everyone has used, uses, or will use a library in their life. This includes children and families. Children do @CAPS1 need to be experiencing, learning about, or exposed to some of the content and material found in libraries. I do @CAPS1 think the books should be removed from the shelves, but put somewhere else where a child could @CAPS1 find it. Children have rapidly developing minds and are sometimes defined by the images that they are exposed to. Something a child sees is more commonly and easily remembered for a longer time than if an adult would see that. This shows that it is @CAPS1 good for a child to see such offensive things. Censorship, in regard to moving the books to a new location where a child can @CAPS1 stumble upon it, is the best choice. Another reason that I believe that the books should @CAPS1 be removed completely, but rather taken somewhere else in the library, is because that everyone has the right to express their opinions and feelings toward a subject. Also, others have the right to express their opinions toward another's thoughts. Just because you find something offensive doesn't give you the right to take that away from someone. I think that if a person so desires such things and feels the need to read about them, then they have the right and the choice to do that. Although, people who do @CAPS1 want to see that should also have the choice to have that somewhere where they will @CAPS1 come across it. This is why the books should @CAPS1 be out in the open for all to see, but taken to a secluded section. In conclusion, the best solution when dealing with offensive material found in libraries is to @CAPS1 remove it completely, but section it off from everything else and allow exclusive access to only those who so desire such material. Everyone should have a choice and a right to see or @CAPS1 to see certain material they might find offensive. In doing so, the library, I believe, will become a better environment to all those who wish to access and use it. More people will use it and the library will then appeal to everyone." 4 5 4 4 4 4 +3752 2 "No, I do not believe that anything should be taken out of a library because someone thinks it's offensive. I believe that poeple have the right to read what they want and so do authers have the right to wright what they want. One of the @CAPS1 of @CAPS2 statements is @CAPS5 of speech giving people the right to say and wright what they want. People shouldn't take anything out of libraries because libraries are built for storing things like books, magazines, music, and movies. If people start to take those things away then what use would be for a library. If everything is taken out then nobody would have any reason for going to a library. This brings up the @CAPS1 of @CAPS2. ''@CAPS5 of speech'' meens that people have the right to wright what they want to. if others find it offensive, then don't reed it. Also @CAPS5 of expresion lets people do this to. If people wish to express themselves by reeding it then they have that right. One of my personal experiences is that I love music, so do my two best friends. One of them goes to the library to find music and we both listen to it. He found these bands I had never heard and I realy liked them. If someone found them ''offensive'' I would have never got to hear how good they were. This is why I believe that people shouldn't take things out of the libraries. not only does it deny others of something they could love but it also destroys history. libraries will be around for a long time and they store so much information,it would be a shame to deny future people the right to read these wonderfull peices of work someone worked real hard on to create." 4 4 4 3 4 3 +3753 2 "In libraries there are a bunch of books, music, movies, magazines, and etc. to let the general public check out. This topic about censorship in libraries is a diffitcult one because everyone has different views on things in life. Certain materials in libraries should not be remove from the shevles if they are found offensive by someone. Being in a library there are lots of choices to see and check out. In a library, someone comes arcoss a book or a movie that seems offensive to them. That someone should just look at the other way because a library is for the general public. It seems to be harse about this, but it is not up to that person if the material in the library should or should not be in that library. The materials that are offensive to people could be in a special place in the library to comitdate everyone. Libraries have the right to censor any type of material that seems or is offensive to the community. This is right if the community strongly agrees with their local libraries. If the whole community disagree with a library about a certain material then the community have a say in it. Yes, there are books out in libraries that are offensive to a group of people, but that does not mean take that material out of the library. Our country, @LOCATION1, say that everyone has the right to free speech. @LOCATION1 @LOCATION1 has banned books thats are offensive to @CAPS1, but other countries around the @LOCATION2 might have those books in their libraries. There is a thick line if a certain type of material in a library is offensive or not. Someone should not have the right if a book seems offensive to that person, but if the whole community says that the book is offensive then yes. The libraries and the community have choices to not have a offensive book on the self. If it is offensive to everyone then it should be off the shelf. Censorship is a diffitcult topic to agured on" 3 4 3 3 3 3 +3754 2 "No, I dont think you should be able to take the magazines off the shelf because it is pointless,to some people @MONTH1 find everything offensive and others @MONTH1 not find it offensive like me personally stuff people find offinsive I find it kind of humorous. And I understand how some people are more likely to be offended because of say their sexuality or ethnicity. But other than that there should be no censorship it makes the place that is doing it seem like they are very strict and because of those strict policys it makes some people wanna go there less to get what they want and who knows the thing you @MONTH1 want @MONTH1 be censored. And I understand that when you have a kid you dont want them to fo the wrong things in life and try and keep them away from the bad stuff as long as possible. But as your child grows older he will be introduced to older/adult type material and you should cut them a break and not punish them very bad when something like that happens. From my humble opinion some parents are very strict about censorship and I completely understand the parents point of view. Eventually people will have to let their children find out about certain things, so you might as well allow them to see it at possibly the age of @NUM1 or so that seems like a suitable age for early privelages. When it comes to taking items off a shelf some peole have worse judgement than other people and that can effect everyone from their bad judgement." 3 3 3 3 3 3 +3755 2 "Imagine. A nice sunny day, sitting outside under a tree and reading one of your favorite books. Feeling the wind in your hair and taking in all that is going on in the story. You not only read at home but at school as well. Just think, what if you could not read that book because it was offensive to someone else in your school? How unfair it would to allow nobody to read that book just because of one person. This i could not imagine. At my school, teachers and other faculty are always encouarging kids my age to read more often. Most teenagers are always busy participating in after school events such as: band, playing a sport, theater, choir, ect. Not many teens are able to just be alone and read a good book, which is why I was so shocked when i heard about this strange news. Should books, magazines, ect., be removed from shelves if they are offensive? I do not think doing that would be a good decsion. Kids should be able to read what they want to read. As you probably know, not all kids are alike. Some enjoy things that others @MONTH1 not. For example, not all kids like to eat corn. This goes with reading as well. Not all kids like to read romantic or action books. I enjoy reading romantic and mystery novel. Some novels, more than others have a lot more graphic content such as @CAPS1. @CAPS1 has a lot of fighing in it. If a mother did not want her son to be exposed to fighting, should we take all @CAPS1 movies, books, and magazines out of our libraries? Another example would be the @CAPS3 series. Some parents do not want their children reading about vampires and werewolves. Should we not be able to borrow or rent this movies? I do not think so. Another reason I do not think that we should take out book and magazines in our libraries is, not everyone is offended by the same thing. For example, @ORGANIZATION2. Personally in my family, me and my brother believed in @LOCATION1 for many years. My cousins however, do not teach their children about @ORGANIZATION2. If I brought over @ORGANIZATION1 and read it to their kids and they got offended, should we get rid of @ORGANIZATION1? The answer is no. Some families have a tradition. Just because one family does not want their kids to know about @ORGANIZATION2 does not mean that eveyone should not be able to get the satisfaction of reading or seeing a movie about @ORGANIZATION2. So the final question is, should certain materials be removed from shelves if they are found offensive? Can one person eliminate more than one book just because it offensive to them? I guess it all depends on your view of the situation. I do not think that offensive novels should be taken of the shelves because: kids should have a choice in what they want to read, not everyone is going to think that the same book if offensive and lastly because if we got rid of all the offensive books; what books would be left to read" 4 4 4 4 4 4 +3756 2 "There are many books, types of music, movies, magazines, etc. that are found offensive to people. Should they be removed? It depends. If something is so inappropriate or offensive then it should be removed. Today, there are many books that teach or give a bad message. If I see one, I just try ignore it; I do not pick it up and read the back or take it home and read it. I know what I am allowed and not allowed to read. But does that mean I should take it off the shelf and throw it away because I'm not allowed to read it? No. As much as I would like to, just to prevent others from reading it, I cannot. It is sad that we have to worry about these things in the first place. I think the area where the most offensive things are, are movies. There are so many movies now that have inappropriate scenes: bad language, scary scenes, etc. Some movies are not rated appropriately either. There is a movie out now that is rated @NUM1 and is extremely scary. I cannot imgaine watching this movie as a middle schooler; I watched it as a sophomore and was scared. I never would have though it would have been that bad because of its rating. Some movies for children even have inappropriate things; they might be hidden and the child not understand, but it is still there. Why does it need to be there in the first place? Is it that important? No. Another area that is bad, are video games. There are kids who play them so much, all they think about is killing, guns, and war. There are kids who think of these things so much they begin to think it is cool to point guns and knives at other kids. Some do it in a joking way, but others do not. These things are dangerous and hurt people-mentally and even emotionally. You go to a grocery store or a gas station and see magazines with inappropriate things on them. No child should see those things, but if they are there anyone is going to look. Different genres of music @MONTH1 even send bad messages. There are some radio stations that, with certain songs, bleep out words like drugs and alcohol, but with other songs that have curse words, keep them there. I do not really understand that. Yes, drugs and alcohol are bad, but why isn't a curse word? Just saying the words drug or alcohol are not bad. These types of things are very offensive to people. But is there really anything they can do? Not really. We all have our opinions and we can speak our minds, but sometimes we do not get want we always want. We cannot really do anything about this. Others belive it is okay to watch and listen and read these kinds of things, but with the things we read, watch, adn list to on a regular basis are what we think about. If you put bad things in your mind that is all you will begin to think about and it will become a part of your life" 4 3 4 4 4 4 +3757 2 "I belive that beople have the right to know and learn about stuff even if it is found offensive, the reasone why i say this is because if one person finds it offensive doesn't mean that another person might think it is. If people think that a film from back in the late @NUM1's about the @ORGANIZATION1 that is used for educational perposes is racist, then they need to just grow up and to go back to school for this stuff. Just because some people think that a book with vulger language is offencive then they need to know that more than half of the worlds book have profanitey in them and just because it does, doesn't mean that they need to be removed form the shelfs in the library. I have had my own incounters with books that i thought were offencive, there was a book that i was reading in my fresh year of high school and there were people in it that were part of the @PERSON2 and they were having meetings and one guy said that he hated negros and they he had picked one for tonigh and were going to lynch them with the nuse they had made the night before and that really hurt me because I have some one in my famliy that is black and to think about someone doing that to him, that would just break my heart and I would probaly go out and find the people that did it and kill them. In the quote that was writen by Katherine Paterson, she talked about how if she has the right to remove a book then we do to and if we do so then there will be no more books left for us on the shelf is a great way to say that almost everybook we have has something volger in them and if we were to take them all away then there would be none left. If there was the posibility of all the books being taken away from us then there would be a huge uprising and everything would be going down hill form there, because there are people that can't go a day with out reading a part of there book and some people have devoted three hours to reading ounce a day. What im trying to say is that there is no way to get rid of our books today that have volger langage or something offencive in them because if we tryed to do that then we would be taking every book away in the world and then no one would be learning anything" 3 3 3 3 2 3 +3758 2 "The question is, should we censor materials in libraries if it is offensive? In my opinion I dont think they should censor the material. Some things that we read, see, and hear are just going to be offensive, and we cant control everything that offends us. I do agree that people have freedom of speech, but not over everything. People need to stop over reacting to something that might have been said @DATE1. Some things just need to be left in the past and kept there. For example, some @CAPS1 @CAPS2 are still upset over slavery, and that happened over a @NUM1 @DATE1 @DATE1. Censoring certain things means that people are not going to learn from the mistakes of our pass. We need to stop all this over protection in our libraries of all places. Children need to know what has happened in our past to see what they can change in our future. Why? Why is my only question to why the people want to censor material in the libraries. Are they trying to keep their children from seeing it or just for their own selfish reasons? My conclusion is that they should not censor material because it offends someone. I have been offended by lots of things that I have read but I dont try to get them censored or removed from the place I read it. Sometimes you just have to deal with things that you dont like or dont agree with sometimes." 3 3 3 3 3 3 +3759 2 "In my opinion, I believe that if the only purpose of it is to read it then it should be in a library. Magazines, comics, books, music, and movies should be one hundred percent accessible through a library mainly because many people can learn many different things in many different ways such as visual leaners which are people who learn better by looking and observing the topic. The listeners which are people that would rather have something read to them instead of trying to read it themselves. And lastly, the readers, who can do all of the above and read! I know not all people are literate but maybe visiting a library once in awhile would help them with it. but in order for that to happen, that library must have something more than just things to read because many illiterate citizens that have to work their way up to being able to read. I hope understand through my point of view All I'm trying to do is to make sure everyone has a chance to learn how to read because being able to read opens up many possibilities but some people havent gotten to the reading stage yet. Why not start learning in a nice, calm, relaxing township library" 2 4 2 3 3 3 +3760 2 "There are so many resaons why taking a book, movie, or anything else off the shelves is wrong. If it is violent or sexual i can see why it shouldn't be on the shelves but if the reader doesn't like the book or movie, then don't read it or watch it find something else. If everyone took a book of the shelf that they didn't like then what would we have to read because everyone has a book or two that they don't like or think is offensive. Every book can't be perfect for that person. Everyone has there own veiws on books wether they like it or dislike it. If that book isn't what your looking for then put it back and stop reading it. There have been many of people say 'If you don't like it then don't listen to it'. They are excaclly right because if there is something that you can't stand to listen to or read and you do it anyway thats going to make you mad. Then your going to complain that it is on the shelfs and say it is bad and it shouldn't be on the shelves anymore. That is what starts all these things of people saying it is offensive. People know what they like and don't like, so if there is something that you don't like then don't listen to it or read it. It all comes down to common sence. We all have it we just need to start using it. That means if you like country music then don't listen to hard rock or rap because that isn't what you like so don't listen to it. Because if you listen to it then your like why is that stuff on the shevles for people to listen to it's bad for you it is puting bad thought into those teenager's heads. If eveyone sticks to doing what they like and don't worry about the other stuff then eveyone will be fine." 4 4 4 3 3 3 +3761 2 "History is bond to repeat itself right? Well, we must make sure that this is a great opportunity to ensure our future @LOCATION2. By censuring items on certain shelves is like when your mother makes you leave the kitchen so you don't get burned. This is just a way to protect the minds of young ones, which are like little sponges soaking everything they see or hear up. The effects of what @MONTH1 come are far worst than making it so an adult must reach a little high for the book they want to read. Making it so only certain material is available to young children and teenagers is a way to prevent the same racism, poverty, assinations, and religions protests of the past. The @ORGANIZATION1 prides itself on that children are the future, well, why not put in the effort to prevent the from seeing what the see or read? I wish that when I was younger many people were trying to stop causes of such things as teen pregancy, drugs, alcohol, and abuse. But, there wasn't, there was a thirteen year old girl in my class who got pregant. She thought it was cool, because she read it in a book. This book she read wasn't hers it was her mothers and she left it on the table to take back to the library. Her mother forgot and @PERSON2 read that book. She told a bunch of friends and me about it. @PERSON2 said the book explained what guys wanted. She did that because of a made up story her mother checked out at a library. This story makes me think about why they should put books on a different shelf or higher up. I have two younger sisters who already have to worry about being picked on; because of their clothes, their religion, the fact that they only listen to certain music. They should be able to go to school, and not worry about the book that they @MONTH1 grab at the library. My sisters are the inspiration for me to make the world in which we live a better place,well, my brother is too. But, my point is they should have to live up to the expectations of others, or the what's cool. By censuring what children are reading or listening to is a way to make them be children. When they look at magazines or listen to music, they make discissions that could effect the rest of their lives. Just like how @ORGANIZATION2 has a new song out. The lyrics are inapporiate of many young children, but you can look it up on youtube. The lyrics of many songs or singles that have just been released are astounding. These songs show us why children are having children, or doing drugs. It is all caused by what they see or hear around them. Our country has hit an economical low, and this is caused by the youth not taking life seriously. I think that if we could focus on the factors in hand, such as censuring we @MONTH1 accomplish something no one else has. To show the world @LOCATION2's youth is the future, and it is looking pretty bright. We each should take proud it making the children learn better, act better, and above all make their dreams come true. If we have more students reading stuff such as, ' @LOCATION1, or To @CAPS1 a @CAPS2,' and enjoy them it would show that their dreams can come true fiction or non-fiction. It doesn't aways matter as long as your reading something that isn't stopping your mind to grow and develop fully. Many of the young women in my sophmore class have read, ' the @CAPS3 series,' and they loved it which made them read other vamiper books. It shows we can read stuff that is stimulating and not just to make us act like celebrates who party all the time or go to jail. By looking at those magazines or reading books about those people teenagers think that everyone is doing it. To tell you the truth more people aren't doing it and have found other ways to stay occupied. We have say in whether or not the future is good or bad why not make the choice easier by elimating the ones we would choose for ourselves at the age of children picking up the books or reading the magazines; about @PERSON1 who just drove around with her baby on her lap. What choice are you choosing for you life? In my personal oppion I believe children and adults should have separate televisions shows, magazines, and books. We want children to mature without the lies that everyone lives this way. These are the reasons as well as more to why censuring in libraries would help the impact of lies to children lessen. To add one final thing, would you tell everything you know to a five year old if you knew they would retain every word? I don't think I would want them to mature that fast, otherwise what is the point of life, or school. To go and learn what you already know" 4 4 4 3 4 3 +3762 2 "I think censorship should be allowed and the libraries because many people have diffrent oppions of what type of books they like and should read.I don't think people should remove books or any type of materials just because of hte dislike.Many people think by looking a diffrent types of materials can have you look for the right imformation.I feel that if you limit the books and libraries that whould be less resources to help out with the imformation that you are trying to recieve.Many people find it hard if the imformation they are wonted is not there and the local libraries. Libraries should a be able to find all the books, music, movies and magazines they wont and need.Books should never be tooking of the self but only should be allowed more on the shelves for any imformation that are needed" 2 2 2 2 2 2 +3763 2 "Books and movies are a way for many people to use their imagination and creativity. Taking certain books off the shelves @MONTH1 have a negative effect on people. Certain books, music, movies, and magazines are not always as bad as what some people think. People have different views on what is good and bad, so you cannot really remove certain books because, like Katherine Paterson said, '...Then we have no books left on the shelf for any of us.' We need to leave every book on the shelves. Using my own observations, reading, and my own experience I will prove to you that we need those books on our shelves. First, I watch younger children getting so many books off the shelves and maybe they aren't the best for them. I believe from watching them, that it helps them grow. Being a young kid you're curious and they need to be able to look at just about anything. Honestly, if it's really that bad to you they won't remember it the next day. Personally I think that them seeing what we call 'bad things' will make them not want to look again, and help them learn right from wrong. Secondly, I have seen many magazines, read many books, and watched many movies that I probably shouldn't have. I feel from seeing and reading those things it has made me a better person not to do the 'bad things' that they are doing. I've read books about slavery, and war and it just wants me to make the world a better place. Knowing that younger children than I are reading and seeing all this negativity in this world doesn't always put me in the spot to say 'keep everything on the shelves,' but I also believe children will know between right and wrong. Lastly, I have experienced children and young adults abusing the library and getting movies they shouldn't be watching, which would make many people want to take certain books off the shelves. Certain books need to be kept away from young kids, but not from everyone.We older, and more wiser adults need to realize that it's not all bad, yes bad for our young ones but maybe not for someone else. A family member of mine is a photographer and he looks at nude magazines and movies to help him with his career. Not every nude movie and magazine is abused, and everyone should realize this. All in all, I understand of removing some books, magazines, and movies but we can't. I don't believe a certain book is offensive to everyone, just certain people. Different people need books and movies for different things, and they aren't all used for bad. We need to all come together as one to keep certain books out of young peoples' reach, so that the books and movies aren't abused. Hopefully, everyone keeps every book on the shelves. Again, as Katherine Paterson stated, '...Then we have no books left on the shelf for any of us,' if we remove them" 4 4 4 3 3 3 +3764 2 "In this article I am going to talk about the way libraries sensor their books. I am going to hit points on what I think about the subject. But also give what point of view I feel about the books that are on these shelves. Also on the way libraries should handle this matter by pre-sensoring the books on the shelves. I will try to give details on why it does not or if it has to be taken off the shelf. I think that certain materials should not be a problem if the librarians can keep a closer eye on what their reading. But it can be stopped by just looking at the review and seeing if this is a good enough book for your child to read. This can be a problem in some ways if kids are exposed to this material that they are reading. But some children can take some of this stuff the wrong way when they are reading a mature type book. But you just can not for get about those books, you have to watch what they are reading. Some ways that they handle this problem can get a little extreme. If you take a book off the shelf what is the older person going to read. You just can't do this because what if another persons wants that book and they can not have it. But what you can do is make a special section for those types of books young children will not get those books. This I think can help with the problem. I feel that they could also pre-sensor these books. This will help explain things in a way they can understand it. Plus it can improve the way people feel about them books. But also they print two copies one for a more mature audiance and one for a younger one. If they do this it would make an improvement so younger kids can take this information lke a mature person does and say this is not real life. In @CAPS1 conclusion I feel like I am nuatral about the subject. I think it is a bad thing to have them on the shelf in a library. But I feell it can be prevented in the way libraries run it. Just keep a closer eye the younger audiance. Also to try and pre-sensor them to make them more friendly to the younger audiance" 3 4 3 2 3 2 +3765 2 "Censorship in Libraries The library presents to the community many different things for entertainment. They's a large variety of enterianment such as: romance movies, adventurous novels, dramatic music, comical magazines, and many others. Yet they're are some that have unappropriate things. I believe that any of the things in the libraries that have unappropriate things in them should be censored or removed from the public view. If this is done it will benefit our children's moral beliefs, the library's family image, and save money for better things. Our children are the most important things to us. They are the future of our country and our world. They are the people who will be leading our country. We teach our children from a young age our moral beliefs. Yet, if they start seeing or reading unappropitate things that they can find at a library then their moral views will change. They will think that the things they see are okay in society because it's in a library. If the library, which is thought to be one of the most educational places, has bad things then the image of the library will be thought as bad and dirty also. The library needs to censor the bad things to allow their self image to look well. Many parents won't want to take their children to the library if they know that there can be a magazine of death and murder laying out on the shelves. The library would also save alot of money if they censored the things they have. Many of the pornagraphical things they have cost alot of money. Usually if they buy movies that aren't censored it cost extra. If they buy things that are approptiate they would benefit greatly. They could us that money and buy better books and at a lower price. The library is a very important part to one's community. We need them in our lives and our children's lives also, but we won't take our children if we know that the things there aren't good for them. That's why the library need to censor the unapproptiate things so that the parents feel safe when going to the library. The library is a fun place to go, and it would be even better if everything there was good and not bad" 4 4 4 4 4 4 +3766 2 "Certain books, magazines or even music contains mature or graphic nature. The music will always have ratings, just like movies. They dont need to be deleted from a library unless it is an elementary school. Most language arts are sorted through out the library in an orderly fashion, so the younger children will only purchase there age level books, or art of choice. Music always contains warnings for the rating of the book. a child should never murchase a mature level book. books, movies, and music are all the same. they are made for certain types of audiance. If a movie is rated @CAPS1, then it is made for eighteen or older audiance. They are situated throughout the library for children, adults, and teens. The children just need to stay in there own age levels. If there is a mature or graphic book in a childrens library then that should cause conflict. any parent would agree with that statement. The only way these mature arts can be shared without conflict is through public libraries. public libraries that are divided to connect with all age groups" 3 3 3 4 3 4 +3767 2 "Keep or Remove? Every year, more and more books of significance to literature are being taken off of the shelves in our local libraries and classrooms. And although these books @MONTH1 contain some writing that is offensive now, they still have shaped the @CAPS1 culture today. Along with books, many movies and magazines are also being taken off of the shelves because of offensive material. Just because some of these materials @MONTH1 contain offensive content, does not give people the right to make them out of reach and deprive the public of what they enjoy. So is it right to remove offensive material from libraries? Absolutely not. Many people enjoy books, magazines, and movies of this nature. In reality, it is more than likely hurting the library's business more than anything because these types of materials is what @CAPS1 culture is all about. People don't want to read about what's happening at the animal shelter across the street. They want to read about what's going on in @LOCATION1 and about the hottest trends for seasons. All in all, removing these materials will only hurt the library's popularity and the amount of customers they attract. Artists write about what they love and how they feel. How can someone tell an author of a book that his or her writing is too graphic or too offensive? That is what he or she chose to write about! That is how he or she expresses themselves through their writing! By 'frowning upon' books, magazines or songs with certain offensive content, officials diminish the creativity and uniqueness of authors. If a certain author or artist has a really great, original idea for a new song or book, but is worried about it not being carried by libraries because it is a little offensive, then obviously that author or artist is not going to write that book or song. By removing offensive books, songs and movies, we the public are being robbed of creative and imaginitive writing. All in all, the removal of offensive books, magazines, movies, and songs is harmful to the public and to the libraries themselves. Generations @MONTH1 never even hear of 'The @CAPS2 of @PERSON1' just because it uses racial terms. So what would you do if put in this situation? Keep or remove?" 4 4 4 4 4 4 +3768 2 "In this persuation essay it will talk about the content of should we or shouldn't we remove all offensive books, music, movies, magazines of the shelf. In this essay everyone will agree with the content or be in the opposing side of the aurgument. In this essay it isn't the exception that this essay will disagree with some of the viewing audience; however, there are situations in which the audience can go with both sides. To begin with, in the matter of the case should we or should we not remove offensive books,music, magazines, or movies from the library. I don't believe that all content should be remove for all to see. In some cases there are the exception, but in banding all material doesn't seem logic. In my point of view the removal of materials seems a little extreme; however putting the content in a higher shelf seems more pratical instead of removal all for good. Yes, it might be offensive but in this time period offensive movies, books, magazines, books, and so on are look as more comedial and not taken serious. For example, a really offensive show called '@CAPS1 @CAPS2' is a really offensive and people just see it as entertaining. This show can be offensive to everyone, but yet we still see it. In this show there is warning label stating only be seen to children @NUM1 and older. Parents are advice and to be acknowledge what their kids are seeing. It's not the creator of the content to be banned, yet it is the job as a parent to be mindful in what their kids are reading, watching, looking, or listening not them. In which case there there isn't away to be right in this subject. However the creators of the conent see it as a way to vent over their lifes, experiences, and what opticals they had to faceor just to make people laugh. They see it as a safe way to espress themselves. It might be offensive to you, but for some people that's there life. You might not like it or it @MONTH1 seem harsh for you, but that's real life. Secondly there are always something that @MONTH1 offend you, but it doesn't seem logical to banned it. An example might be religion. A religion a person might be it might offend you. It doesn't mean if the religion offensive that it will get banned or be remove for everyone. Your religion @MONTH1 offend someone, but they deal with it and embrace the differnces. If your friends has a different religion it doesn't mean you will never talk to them ever again. Thirdly, you might express yourself and there are going to be people out there that won't agree with you. You might create a book, a song, or a movie that will offend someone in a way. For example, the @CAPS3 series is offensive to some guys and girls. A disagrrement between two girls fighting over which charater is better for @CAPS4. There are always an opposing side. A @CAPS2 might be tried of hearing about @CAPS5 all of time and might find offensive when a girl @MONTH1 compare him to @CAPS6 or @PERSON1. Saying why can't boys be like them, but even then they don't remove @CAPS3 all together. For you it might seem the greatest movie ever, or the most terrible movie in the universe. Fourthly, another example is a @CAPS8 show called, '@CAPS9 @CAPS10 @CAPS11 @CAPS12' (queen of the south) where a women that had nothing to begin with, yet ended up being the most wanted in some countries. Some people @MONTH1 seem that it might be cool to be just like her. It doesn't seem that people will go uot there and do what she does cause in the television show shows all of the consequences there are if you do what she did. This show is an example of what could happen if you become exactly like her. Some offensive material @MONTH1 teach a lesson and can pervent a person to do something that they @MONTH1 later regreat. In conclusion, everything in our life offends us in some way. It doesn't matter what it is we deal with it and our life goes on. There is no way to see this, but one thing you enjoy maybe be offensive to others. It wouldn't seem fair to take something you enjoy just because it offended one person. So I belive that the libaries censorship isn't at risk. In my opinion everyone has the freedom to choose what they want to read, watch, or even listen to. And also have the choice to stop reading it, watching it, or listening to it" 4 4 4 4 4 4 +3769 2 "My views are that if it is offensive to someone or other people the certain maeterial shouldn't be taken off the shelf. I think you should have to have permission from a parent, or guardian if the material is explicit. For example in a store where you buy cd's, games ect... you have to be of age to buy the material that should be the same with books. Say a book has a certain word on it like '@CAPS1' it shouldnt be taken off the shelf just because of its name. That brings up the subject don't judge a book by its cover. Just because the name isn't to someones standards it shouldn't matter. Pick the book up read the back and see what it's actualy about. Then if it's what you was exspecting it to be talk to someone who is in charge, and explain top them what the problem is in your case. Also you could always have a section of the store, or librarie just for adults only. It @MONTH1 sound stupid, but it can actualy help out alot. There is tons of books out there that have things in them not appropriate for children. Such as love books, they talk about love, and passion in ways that are very innappropriate for children. If there was a section of a store or librarie it could help keep these things out of your children, or other childrens minds. You or anyone else wouldnt have to worry about children picking certain material up that you wouldn't want them to see. Just keep this in mind next time your in a librarie and you see something you wouldn't like for your children to see" 3 3 3 4 3 4 +3770 2 "Censorship is a very sensitive topic. Everyone has to deal with censroship whether it is directly or indirectly. There have been many complaints and arguments involving the government regarding acts of censorship throughout the past. If censorship were to be equal for everyone, there would be nothing left in the world to be censored. Censorship is a major subject when dealing with books, newspaper articles, movies, and other literary subjects. The writer or director must be able to create an interesting topic or story line while at the same time keeping it appropriate for most audiences. If everyone were to censor one piece of literature or film that offended them in a certain way, then everything in life would be censored in one way or another. No matter what, there will always be a certain situation in which one person in the world will be offended by. Censorship is wrong, especially in the @LOCATION1; the @LOCATION1 citizens are granted the freedom of speech and the freedom of press. With an understanding of these basic freedoms, one would think that censorship is against the law considering it is one of the five basic freedoms granted to @LOCATION1 citizens. Censorship is wrong because it violates at least two of the five basic freedoms granted to all @LOCATION1 citizens. There should be absolutely no censorship when dealing with books, movies, and newspaper articles, because they all deal with the freedom of speech, or the freedom of press. If the act of censorship begins to expand, everything we know today will become censored in some manner just because one person would find it offensive. Some citizens @MONTH1 argue that censorship is a positive thing because it filters out all of the inappropriate, offensive, and derrogatory language and situations from our nation's youth, but from a teenager's standpoint, the children will find out about such situations and language use regardless. There is no point in hiding the truth from anyone, because no matter what they will find out eventually. We need to push for less censorship in the @LOCATION1, because if we want to keep our five basic freedoms of life granted to us by the first amendmant, then we need to fight back censorship and remove it completely from our society" 4 4 4 4 4 4 +3771 2 "Libaries everywhere might have a book or two that @MONTH1 be offensive to a reader. I haven't found a book offensive to my readings just yet. Some people might think that some music, movies, magazines, etc., should be removed from the shelves of the library. But some people are against it, like me. Its going to take more than one person to remove the music, magazines,etc., from the library. Music in the library is good because you can't find old music like in the @DATE1's in a music store. If someone finds music offensive in the libary it might be because they don't know the history from where the music came from or what the artist has been through. Say for instance the person is offended by hip hop music. I'm sure there's a book for that and the person can look up where the music came from. Maybe then they wouldn't be so offeneded. Magaizines in the library are really for people who love the media. There are so many magaizines that have interesting facts about what happen or what's going to happen. For example @ORGANIZATION1 has all the newest event or something big that happend, just in that one @ORGANIZATION1. Then there's advertisments, how would people get money if they didn't put there adverstisment in a @ORGANIZATION1 so people could buy there product. If not nobody would buy the products. Movies in the library are for teachers to show students. Half the stuff in the libary, you can find at blockbuster or walmart. It's because the library has old movies and current events that happened years ago. They might even have a movie to go with the book the reader has read, but some people are more visual with the movie. So they read books. Overall I hope the music, magazines, and movies stay on the shelves of the libraries and don't change they way the library is doing things. Some books might already be off the shelves that people have complained about or got offeneded by already. So its already too late for that. But its going to take more than one person to be aganist it. So that's my view on taking out music, magazines, and movies out of the library" 4 4 4 4 4 4 +3772 2 "I belive that everyone has there own appioin on whats appropreate, and whats not. You can't @CAPS4 taske a couple people and ask there oppinon because everyone is differant, we all have our owne rights to know books and what the aurthor realy wanted us to learn or here about. Like i said everyone is differant if you @CAPS6't want your @CAPS1 to read it tell your @CAPS1 why and explain it to them. @CAPS6't make the rest of the @CAPS1 suffer. I belive some parents need to look at our ansatre there wernt even aloud to have dreams and thoughts. Why would we want our @CAPS1 to go threw the same thing they had to, @CAPS1 @CAPS2 everyone shopuld have a right to look to read listen to what ever makes them happy, So what if i has volger launguage in it get over it or @CAPS6't listen to it all. Would you want someone telling you that your life story for example was crummy and diddent like the way you worded things. Thats the way you talk it's because it's your life story. The way i see it is let our children of this generation learn all they can about the bad stuff so they can stay away from it and also infor them of the good stuff in life so there won't allways be in fear. Let the chinlden read what ever they want to read. So what they curse tell your @CAPS1 that its bad launguage. @CAPS6't get ride of good books movies music.(@CAPS3:) @CAPS4 because the Author has a diff veiw on life than yours. Open your @CAPS5, @CAPS6't be so shallow" 3 3 3 2 2 2 +3773 2 "If you are sitting in the librarie and you are minding your doing your homework and studing for a test next hour, I wouldn't thank you would want to be messed with.Would you? Well im going to explan what I think about everything that's in the libraries. Like some stuff we should have in their and some stuff we shouldn't. I beleave you should have no problems with noise or anything while you are trying to study in a librarie. There are some things in the world today that alot of people find offensive. Their are like people that are offensive and things that go on in our and your area were you live that are really offensive. When it comes to our libraries there are some things that need to be change and some thing that don't need bothered. There are some book some kids shouldn't be seeing in the libraries but to other people mite enjoy them. But I don't beleave that they should be taken off the shelf. They just need to be placed better where smaller kids can't get to easy. You wouldn't like for some books taken off of the shelf because somebody thought they were not good for kids. They just need to be move to a shelf were only bigger kids can get to. When I am studying I like to listen to music. It helps me think what I am going and calms me down. But when I don't have my music playing I don't like when other people have there to loud. Thats one thing that need to be changed in the libraries. Some movies are really offensive and they should be removed from the shelf. Another thing that has been a problem is magazines. There are alot of all kinds of magazines with all kinds of stuff to read about and they need to be watched. I beleave if anything is offensive it should be taken off the shelf. Some people freak out every easy and this world is every offensive and people need to think about other people. If they don't somebody mite take it the wrong way and it could get bad" 3 2 3 3 2 3 +3774 2 "I disagree that certain material, books,movies, or magazines should be removed that are offensive to some from the shelves of libraries. There are three reasons why I argue this topic. One reason is that books, music, etc. that are inappropiate should not be in a section that a child would go and look for a book. A second reason is that for a child to check-out a book and the book is inappropiate, they should have identification to show that they are of age. The third reason I think that things like that should stay on shelves is because adults have books, movies, music,etc. for them for many reasons. Ther should be nothing inappropiate in a library that a child can get a hold of. A child should only have things appropiate that they can grab so parents do not have to be worried about the things they child hear, see, or read. There are some libraries that will let a child get a magazine or book, and let the child check the book or magazine out. This is where th problem begin. All libraries should identitify each child when they check-out a book, magazine, or music. that why movies are rated, so that a parent could what kind of movie their going to be watching. A parent should keep a close eye on what their child read or see. I think that things inappropiate should stay on shelves, but I also think it shoud stay in the adult section of the library. Childeren should not be able to go in the section for the adults. The inappropiate things on the shelves could be useful for the adults in some cases. There are some material that a adult @MONTH1 need to help in life. In conclusion, childeren should not be able to get a hold of inappropiate material in a library, all libraries should identify someone the inappropiate material,and adults should be able to have this type of material on shelves in libraries" 3 4 3 3 3 3 +3775 2 "If you were an author, would you think it would be fair for someone to have your creation taken off the shelves because it offended someone? In my opinion, I believe that there are some references, considering movies, books, music, magazines, and more, that are inapropriate. However, I don't think anyone should have the right to take them off the shelves because they are offended by it. If everyone had the right to take something off of a shelf because it offends them, we wouldn't have anything left. In my mind, everything could possibly be offensive to someone. For example, I read a book and they stereotyped the cheerleaders, just like everyone else does. The way they make all cheerleaders out to be is horrible. Considering I've been a big time cheerleader my entire life, I got a little offended because I'm not the way the book described them at all. After reading the book, I might not have enjoyed it, but it was my choice to read it. I wasn't going to @MONTH1 back to the book store and demand them to take it off the market because I, only one person, didn't like it. My philosophy would be to just ignore the things you don't like, or not to purchase the item if it offends you. I know that the age of the targeted audience of some books or movies aren't always the only ones that come across them. For example, a child coming across a movie that includes inapropriate languages or scenes. That is when I say that you just have to keep walking by and only pay attention to the materials that are for you. Or parents, censor what you children see, hear and read about. Moreover, I do not think it is fair for someone's artwork, whether it is music, a book, magazine, or movie, to be taken off of display or off of the shelf. Those authors or creaters worked just as hard as anyone else. Just because it is not best suited for one person, does not mean it isn't suited for someone else. In conclusion, I don't think it is fair for items to be taken off of the market because it doesn't please a few people. I'm sure there is someone out there that will enjoy it. It wouldn't be fair to the artist, after all of their time and harkwork. Everything on the market could probably offend at least a few people in some way, but welcome to the real world. They just need to learn to deal with it, or ignore it like I do." 4 4 4 4 4 4 +3776 2 "Without books we all would not know what we know now.Its just like saying without a heart your body will still function. Books today are basically telling you real life things that happen or can happen if you do anything. Personally books are made for a reason, whether some people like it or not. Books help you get a better understanding of many things someone else @MONTH1 not know,and or understand.The same thing goes for musis, movies, and magazines. I clearly understand where some parents, guardians, and caregivers come from, but they have to realize that everything they think is wrong for our society today really is helping the next person. Also someone else is thinking different then they are. Books are another way of learning as well, they all are not bad for the younger or whosoever it @MONTH1 be. They also help you get a better meaning of alot of things. I am not only going to say that books are most peoples main problem, but there are some movies, music,and magazines. But some tell you what age it is suitable for. For movies they tell you things like '@NUM1, @CAPS1' and other things like that. Also for music all you have to do is look at the songs on the back or they have them with or without anything bad on it. Magazines they have many different varieties of things for all ages and you pick the ones you want for you or your child. Everything is not all bad, it is what you feel is right for your child or whosoever it @MONTH1 be. You can not blame others for what they feel needs to be heard or said to some. You have to look outside the box and know that there are people who really need to hear, see, and or do. Just to better themselves as a individual. People are so quick to judge the next but really don't try to understand that everyone needs help and that just because your life or whatever @MONTH1 seem to be heading in the right direction at that time doesn't mean someone elses can't change.Those things are there for a reason if you dont like it then try a better way to get away from it. Without those things in our life I really can see this world falling apart. We barely understand what some of the books, music, movies, and magazines are talking about so just try to picture all that being taken away. Its not a pretty site, accept the things that we have now and use them to the best of your ability. They all are there for a reason." 4 3 4 3 3 3 +3777 2 "Materials that are offensive for some people in my point of view should not be removed from the shelves. If some people are offended by materials they shouldn't pay any mind to those certain materials. If everybody paid attention too offensive entertainment regardless to what kind, people would be upset all the time. There are many things people see, hear, and read about that @MONTH1 be offensive. Don't take everything seriously most of those offensive things @MONTH1 just be a joke or just someone trying to get attention. When you just sit and think about it, most television shows you would watch everyday @MONTH1 have at least one moment that's says something offensive. In example I watch a television show some nights that says something racial about @CAPS1-@CAPS2. I don't pay the show any kind of attention because I know it's a show their just trying to get more rating. So when it really comes down too it I am goin to be watching the same show again the next night. What if some of our most historical people had listened to everything that everyone esle said about them. Then, our black culture and history wouldn't be so '@CAPS3' today. I probably wouldn't be able too take this test that im doing right now. So don't take everything so serious everyone has some type of humor. If we removed everything that was offensive today. Some of your favorite actors and singers wouldn't be the famous actors or singers you love and respect today. All of the grammy's and award shows that we watch on television would not be themselves. There are all kinds of different genre of music. Some of the words that different artists use would be offensive but they still release those same songs because they're only words. My conclusion, is that anything and anyone can be offended or offensive. People don't take everything serious because it might just be a joke or some ignorant person that needs attention. When I was younger my mother always said 'sticks and stones @MONTH1 break your bones but words only make you'. So don't take everything serious I mean it's only the media, tell me who does take them seriously" 4 4 4 3 4 3 +3778 2 "Dear @CAPS1, The things we learn at such a young age really need to be changed. It would really help soicity.Here are some ways how. All books are diffrent. Some @MONTH1 have offencive language. If books have offenceive language you dont have to read it outloud. You can always substitute other words in there for those or just skip over them like nothing happened. Some books say sexual things in them that @MONTH1 offend a race of some type or a gender. If books are sexual for your age group then I would recomend choosing a new book. But no matter how you look at it. It could always be much worse than what it is. Music music needs to be some cencorship on that. When your listening to the radio or a cd or ipod. You cant always censor that. the radio compianies need to do a better job at censoring them out of songs. Many young teens think its cool to use vulgor language. Movies have diffrent ratings for diffrent age group. I'm sure no one would let a two year old watch a rated @CAPS2 movie. That kid would have nightmares for a week. so censorship woukd really help the parents out on choosing the right movie for family night instead of picking one that they have no clue about. Magazines are nothing but gossip. Most magazines do nothing but talk about the bad in people or the good in them.There should be some censorship in there because it is a persons life who there talking garbage. Some say kids are like sponges. Whatever the kid hears he will repeat. Whatever a kid sees he will try to repeat it. So whatever a kid reads or watches will probably be the same. Things do need a little censorship. If we didnt have that its hard telling what the world would be like. The world would be full of a lot of people with no motivation what so ever and if we take things away then the world would have nothing to do.I know that when I was a little kid I would hear somthing on the radio and think it was cool to say. My parents would'nt know what to do to me. I kjnow as an adult i would'nt want my kids learning the stuff I did at such a young age." 3 3 3 3 3 3 +3779 2 No i dont hink that should happen that would be stupid and im sure alot of people will disagree with it. one reason is because adults like all of that stuff. And if they were doing this because kids keep geeting into them. then just get a door that says @NUM1 and older and put cameras up. If kids parents complain then at lest you can say that its all in one room and no kids aloud. this shoudnt be a big deal if your a kid you are going to have to be round all the time when you grow up. So you might as well get used to it. it is a big deal if your cursing all the time but most kids know better and know not to do bad stuff. when i was growing up i was around all that stuff and i think i turned out allright 2 2 2 2 2 2 +3780 2 "Dear @CAPS1 @CAPS2 @MONTH1 @CAPS3, I am a student from @CAPS4 @CAPS5 @CAPS6 @CAPS7, I do think that certain materials such as books. music, movies, magazines, etc, should be removed from the shelves if they are found offensive because, some students read book on a daily basics and reading also keep some students out of trouble. The @CAPS8 I say that is because if you find a book you might be interesting in the book and you might share @CAPS2 with you youger sisters or brothers to keep them from doing the wrong things. Also some books that are offensive shows students to not do the things they see in the book. Some books that are offensive show how people that do bad thing have to pay the cost and people can learn from other people mistakes. Some books that are offensive show people what to do or what not to do so you wouldn' t have to pay that cost from doing something wrong. Also music can be offensive because of the curseing that some of the songs have in @CAPS2.The music is sometimes good to listen to because songs speak and takes action in a certain way.The offensive part about the music is that some music is calm music and @CAPS2 keeps you motivated inside and some music have bad vibes to @CAPS2 and can make you do bad things.Most of the time music can make you happy and you can undertsand alot in life just by listening to music. Music is a description of life meaning that life is ful of offensive things but you have to be very selfcentered to understand. Some movies can also be offensive because of the actions in the movies. Movies are enjoyable and you can also relate to some movies in your own way. At times movies can be very interesting because of the actions and drama in the movies. The titles in the movie can also be offensive but that don't mean the movie is a bad relation in the story. Magazines can also be offensive because of the things inside of the magazine. Some magazines shows appropriate things that children and adults can relate to. Also there are different things like activitys and things for family and freinds to enjoy. Many magazines are different in there own way @CAPS2 depends on how the cover is and the person who created the magzine. Some things are good about magazines because they show you posters of some of the super stars in the music career. There are alot of things that can be offensive in the world but you have to learn how to seperate yourself from the negative things in life. Also all things are not offensive because you can relate to some of the books and music that we here in these days. The most important thing is that you don't have to listen what the magazines and movies are telling you because, you have a mind of your own. People don't listen to what the books and etc, are going by because some of the things they are talking about is false information. So thats why i say @CAPS7 i do believe that cartain materials should be removed from the shelves if they are found offensive. Sincerly, @ORGANIZATION1" 4 4 4 4 4 4 +3781 2 "Removing literature from a shelf should not be permitted just because you think something about it. Everyone has different ideas and opinions about what is appropriate and what is not appropriate. If you don't like a certain book or you do not want your children reading that book then don't take them to the library in the first place. In a public library you have to be old enough to buy a library card to check out a book, so if you are old enough to have a library card then obviously you arent going to find a book that is innapropriate for your own age. You @MONTH1 find a book that is immature to you, but you do not have to read it. Men and women go to public libraries to learn. If you want to learn about something that is offensive, then you won't beable to if one person comes along and doesn't approve of the book. Is that fair? You tell me. In a school library yes there should be a limit to what children can and cannot read. In a junior high school the standards should be different compared to an elementary or a senior high school. In an elementary children are required to read as part of their academics, but they are not old enough to want to learn about something offensive, therefore they will not need those types of books in their library. In a junior high school there should be a limit on the offensiveness but the students still have a right to know what is going on arond them. In a senior high school students should have a right to read whatever type of book they please. Magazines are a different subject. Alot of times in magazines there are advertisements for smoking products or alchoholic beverages. Those types of magazines should not beable to be read in a school library. In a public library a person should have the right to read whatever he or she pleases. In the end im saying adults and teens have a right to learn about whatever they like, but children should be young and innocent while they can. You cannot keep them shielded from commercials and people advertising these things themselves, but what you can prevent you should. Nobody wants their children growing up too fast, but do not limit their growth." 4 4 4 3 4 3 +3782 2 "People all around the world think differently about music, books, and movies. Some think that books and music should have different kinds of ratings. Some people think that a song should be rated '@CAPS1' for mature when others could think that it shouldn't have any rating at all. Level rating stops young kids from buying something they are not mature enough for. Level ratings help the parents know what the kids are getting into. If everyone could pull off a book or magazine, etc then there would be no books left. This is why we have levels of maturty on the material. Levels are letters, such as '@CAPS1' for mature. '@CAPS1' means that their will probably be some naked and sexual play into the video or song. With this on their it warns the parent so that if they do not want their child listening to it they can take it away. This leaves the parent with some control over what kids can watch and hear. Stores won't let kids under the age of @NUM1 buy a rated @CAPS4 movie. Rated @CAPS4 stands for sexual act, language, and blood. It can stand for more things such as drugs. I am happy that my nine year old can't buy a rated @CAPS4 movie, but senice the law says a @NUM1 year old kid should be aloud to watch it, then its saying they should be mature enough to see or hear it. We should be happy that we can have some control over what are children watch and listen too. We could try getting rid of all bad books, movies etc, but over time I'@CAPS1 sure more will be made. I am also sure that over time we will find a old copy of a book on a website. We cannot save our kids their whole life, so over time we have got to let them grow up. Our kids will decide if they are mature enough to watch something we would rather them not watch. We just have to raise them the best we can." 3 4 3 4 4 4 +3783 2 "Does censorship really helf or setback our libraries? Does it try to mask @CAPS7 really might be happening in this world or does it try to make you feel all happy about this horrendous place that you live in? To one person a book could be very offensive and to their neighbor it could have a whole new, opposite meaning. Its all in perspective. Personally, i think that taking out some of the 'offensive' book in libraries could be a diaster. In one book that we read this year in my @CAPS1 class was '@CAPS2 @NUM1'. This book was all about a distopia where people burnt books who didn't send the right message to society. People were numb to feelings and that could be the outcome of censorship in the libraries around the @LOCATION1. Libraries are a place that sparks imangination for all ages and if you censor things out then how is that suppose to happen? Looking at books in the past that were defied as 'offensive' and taken off of the shelves at libraries and banned to read in @CAPS1 class at school, were mostly about womens rights and @CAPS3 @CAPS4. Some of then just had bad words in them and others about dystopias. If you took out all af those books that pertained to these topics how many books would you ave left? And for that matter, my best friend is an @CAPS3 @CAPS6 girl and we both have equal rights now and we both have jobs so @CAPS7 is the big deal with living in the past? Theres is also the fact that it is innevitable to get away from cursing everywhere you go. All along the streets, in schools and sometimes even in church. So if you are around it in real life then why can't you read about it? Now when people who are all for the cenorship in libraries say something to the affect of ' @CAPS7 about the children, i dont want them reading a book that i think is offensive,' i say then cenor them. Its your own choice on how you raise your kids but other parents think that you should have an imagination instead of the same old, same old. Its good to have a varity of things to read that doesn't limit the brain. All in all, i think people who would want to censor books are crazy and it could potentually be taken way out of hand and then a distpoia society would form. Children should not be dissillusioned on @CAPS7 the world is and could be. Think about that next time that you think a book could arise tension between people and think are you taking away rights of other" 4 4 4 3 3 3 +3784 2 "In the literary world of today it is never hard to find a topic that will interest you. Science fiction, thriller, romance, how to build a car with household materials and many more topics all await you at your nearest bookstore or library. With this vast array of topics it isn't that surprising that you will find some authors that have decided to go against the norms of society and write a book that is controversial in the ideas that it presents. These books will often get put on a 'burn list' or censorship list and will be taken off the shelves of the local libraries in order to protect the patrons of those institutions from those books' ideas. Many have argued that this is a way of keeping the society pure, but this censorship of literary works is probably one of the biggest mistakes a civilization can make. Removing books from the shelves off a library is a form of censorship, which is a clear violation of the @CAPS1. In the @LOCATION1, everyone has certain unalienable rights. These were written out in our @CAPS1 as the first ten admendments to the @CAPS1. One of those rights is the freedom of speech, or the right to voice your opinion. By remving a book from the shelf of a library, you are silencing the author of that book and thus taking away that author's freedom of speech. This clearly violates the @CAPS1 and thus is unconstitutional and illegal in the @LOCATION1. By violating the @CAPS1 openly, this opens the door for other areas to be violated in the @CAPS1. The president is now a dictator, we are now a communist country, and many other actions are allowed, leaving the @CAPS1 as a scrap of paper with no meaning. Without the @CAPS1, the @LOCATION1 is just like any other country and has no direction. This leads to a downward spiral of our society. The silencing of the voices of authors also stops new ideas from coming in to a society. Every year thousands of new books are introduced to the @CAPS8 public. Many of these have novel ideas that help shape our society for the future. If you take these books off the shelves, and out of the publics hands, you effectivly stop all change from new ideas in a society. Nothing would ever get better, and the society would stay at the same level that they were when the censorship began. Censorship can also lead to the downfall of a society. In the novel '@CAPS9 @NUM1' by @PERSON1, the censorship of books has gone so far that all the great literary works of the world are banned. Anyone who is caught reading a book that 'makes the think' locked up or killed. The main characters job as a fireman is not to put out fires, but to set books on fire that encourage people to think. The censorship of that society had gone so far that no one did anything, they just sat at home and watched the television all day. Many people will argue that pornography is something that should be censored out of society, but the problem is once you start censoring, where do you stop? Censoring out pornography would lead to romance novels being censored, which would lead to magic books being censored, and so on until you are censoring out @CAPS10 @CAPS11 or the @CAPS12. By censoring out the books and movies that make people think, you quickly lose all intrest in higher learning. That is why censorsip can quickly lead to the collapse of a society. Although censorship @MONTH1 seem like a good idea, it is really one of the largest mistakes a society can make. It can lead to the silencing of all the voices of change in a society causing society to grind to halt and stay right were it is. Not only is it determental to a society but it is also is clearly unconstitutional if you look at the @CAPS1 of the @ORGANIZATION1. So let us hope that all though we @MONTH1 play with the idea of censorship, that we never go down that winding road to no where" 5 5 5 4 4 4 +3785 2 "I think everything should be there. The examples of things that should be there are: all magazines, books, and @CAPS1 service. For the magazines there should be all cars, trucks, atvs, mtvs, utvs, espn, golf, game informers, and wwe magazines. Now for the books. All the types of of books that should be allowed are @CAPS2-@CAPS3, @CAPS3, @CAPS4, @CAPS5, @CAPS6, and @CAPS7 books. And last the @CAPS1 service. The @CAPS1 service sould be used for school work, to play all games on any website, and to use youtube on any computer. This all should be used there because certin things some kids don't have at home." 2 2 2 2 2 2 +3786 2 "'Book or no Book?' Certain studies have shown that there are many people in this world that have many diffrent intrest. Wheather that be cars, boats, toys, or animals it shouldn't matter what the intrest is. I firmly beleive that a library should have books over tons of things. Just because one person might not agree with it doesn't mean that another should not be able to read or possible learn about it. This is a on going debate nation wide and there is going to have to be a decision made fast!! There are to many people making enimies all over the world. I was asked to submit my opinion and i beleive that they should be allowed to check out any book that they want too. If the opposite person does not agree with the fact that those books are being checked outh then they don't have to watch it. There are multiple solutions to the problem. The librarys could have diffrent sections for diffrent types of books or such as sorting them by class or hobbies. There could also be age limits so that kids don't get ahold of anyting that they shouldn't be watching or reading.That way the other people would never even have to see the books that he or she does not agree with. Well i cant wait to see how the results turn out!! I also hope they people make the right vote. Im not saying that my vote is the only way, its just my opinion. Either way there will be angry people and people that will be bursting with joy. So @CAPS1 @CAPS2 and @CAPS3 for letting me voice my opinion!" 4 3 4 4 3 4 +3787 2 I think that all books that are found offensive or sexual shouldn't be taken off the shelves completely. I just think that they should be placed in a certain section of the library where kids should not be at or not allowed to go in like a section only for adults. I think if a kis see something they think is interestiong and will teach them something they didnt know before they're going to pick it up no matter what unless someone steps in and tells them not to. I dont think kids should be exposed to all of that and some kids are getting ahead were they shouldn't be in life. If a kid decides to try and check out a book like that either they shall have an i.d. or there parent should be with them comfirming they are able to check out that book. Many children I think are already exposed to things they shouldn't be around and books like that would just make it all worse. Some books send out really bad messages but then again that's only for adults to read it should be kept out of the way of children. Some kids could live in a fanasy world and have a split personality or something off of things like that and it could really affect someone badly. If a parent wants there kid to have the book or dont mind anything about it then that's there choice they have permission. I know I wouldnt want my kids around that untill they were @NUM1 years of age or older but I know some parents dont really care alot about it. So my best solution for this problem is to keep those books and things out of the reach of children or have a specific age limit. 3 3 3 3 3 3 +3788 2 "Throughout my life, I have seen many books that seem offensive to me. However, they should not be censored just because they seem offensive. I believe that books that are found offensive should not be censored. A reason why I think books that are found offensive should not be censored is because what seems offensive to one person, @MONTH1 not be offensive to another. Classifying something as offensive is an opinion. Unless everyone in the whole world thought that a book was offensive, it should be able to remain open to the public. Another reason why we should not censor books that are found to be offensive is because in our @LOCATION1, we are given the right to express ourselves freely. If we censored books that are found to be offensive, we would be violating this right. This would not be fair to the people who wrote the books and to those who like them. The next reason why we should not censor books that are found to be offensive is that if we were to censor every book that we found offensive, we would not have any books to read at all. Books that some people like are found offensive by others. For example, suppose a few people loved the @ORGANIZATION1 @ORGANIZATION1 series but another person who read it later found it offensive and had it censored. The people who loved the @ORGANIZATION1 series would now find the books the other person likes and censor them. If this continued, we would have no books to read. Another reason why I believe books should not be censored is because without offensive books, we would never learn from terrible mistakes. Suppose every book relating to both world wars were censored and could not be read. Sooner or later, no one would remember what terrible things happpened and history could possibly repeat itself. Unless having books that seem offensive is worse than having the events we dread happen again, then books that are found offensive should not be censored. I believe books that are found to be offensive should not be censored because without them, we would be violating the right to freely express ourselves and we would be allowing terrible things that happened in the past to be forgotten. Without books that are considered offensive, we would not have any books to read at all" 4 4 4 4 4 4 +3789 2 "They will see it eventually. There is no reason to censor a library, I believe. I think they should be sectioned off, maybe put the 'offensive' books in the back of the libarary is enough censorship. You have to look at it in the publishers view also. They want to sell and advertise their product and they have a right to do so. Libraries shouldn't take their product off the shelves just because someone stumbled apon something they believe is offensive. We all know what offensive things we could find in a library or a bookstore like @ORGANIZATION1. Things that show innaproperate pictures, drugs, firearms..ect. I believe they are already censored enough. Most of magazines that many people find 'offensive' are always put in the back of the store or secetioned off so people don't stumble upon it or have their childern flipping threw the pages corrupting their minds. Some material are even put in a plastic sleve so the person must puchase it before reading. If you decide to write and publish a book, don't you think you should be given the right as everyone else to put it on the shelves and promote it? I do, there is no reason why you shouldn't be able to. The library shouldn't censor your book just because someone else thinks and feels it's offensive. That's not fair in @LOCATION1. I think that the libraries shouldn't censor any materials. offensive or not we have the write to publish and promote it" 3 3 3 4 4 4 +3790 2 "I don't think they should publically exploit the books if certain people feel offended by it, but I personally do not get offended by anything so my opinion will be different than others. However, if the library recieves constant complaints about this issue then I could see why they would want to get rid of it. So what i'm saying is that if it doesn't cause a problem for anyone other then a select few then I believe they should keep it but just let the offended know that the book is going to be out of sight, therefore making the issue non-existant. I don't think that librarians will intentually put out books that offend the public people on display in front of everyone to see, I believe that they just have the books for their purpose and that's to be read. I've been to the public library many times and out of all the times i've been I dont think i have seen a single thing that has offended me or made me un-comfortable. The books are there for public reading and the growth of knowledge, without them I believe it would hurt our nation as a whole, due to the fact that we need knowledge to do things and the more knowledge we have the better our lives will be. So no, I believe libraries should keep all books unless it causes a big issue and many people are constantly bringing up the problem." 3 3 3 3 3 3 +3791 2 "I think that everyone has different views on different things so I dont think that they should be because if they would be that would be against the first amendment where it says everyone have the freedom of religion and speech. If you disagree with the book or whatever it @MONTH1 be you can just ignore it and keep walking and never have to pay any attention to it. People these days are taking things way to far with their opinions. People need to mind their own business and stop thinking the world revolves around them. There several billion people in the @LOCATION1 and every person looks at thing slightly different and this should be taken into consideration when the get mad just because there is a book or movie on the shelf of the library. For example I like movies with comedy and sometimes a scary movie but girls @MONTH1 not like scary movies and @MONTH1 like movies with droma or somthing in that line. Just because we like different things doesn't mean we should have to put just a so certain kind of books or movies on the shelf. Yes, there are movies that I dont like because they stand for things that are against my religion but I dont stand around and say no one should watch these movies because just because I dont beleive in them doesn't mean I should judge other people for it. I know some people feel that everyone one should look at things the same way as they do and everyone should should agree and get along but that is not how it is and no matter how much you want people to agree and get along it will never happen. I think people need to mind their own business and let people read, listen to, and watch whatever they want to and it should not affend anyone. I know people like to think that they know everything there is to know just because they have their own ways and thoughts. People like this you can argue with and you will never win the arguement and you can never get them to understand how you look at it. They just think think my way is the right way and the only way. This is the way I feel about people getting mad when there is a book or movie on the shelf that they dont not agree with. I just think that evryone should try to undersatnd what you are saying and listen to you instead of ignoring you. I feel this way but I am not a person that is tuck in their ways where you cant change their mind." 4 4 4 4 3 4 +3792 2 "I believe that if something is found offense to someone then it dosent mean its offense to someone else. In libraries there are books, music, movies, magazines, etc, some of these different type of things @MONTH1 come across as offesnse to some but others @MONTH1 enjoy it. Therefore it shouldnt be taken away from those who enjoy reading or listening to these things. Some things such as adult novels and explict music are things people consider to be offensive. But what they dont understand is that some people actually enjoy listening or reading this material so taking it away from them is not right. Everyone should be able to have different likes in these areas. Everyone is not the same. If you attend a library you should be able to find something that fits your style or sparks your intrest. If the things that people like are being taken away then its not giving them a wide variety of things they enjoy doing. Its more likely closing them out on things they like because other people dont like it or find it offensive. Lastly, those that think that these things are offensive are entitled to there opinion. But so are those that believe that these things are good. There should remain a variety of different books, music, and other things that appeal to all types of personalities. Everyone has a right to say weither they dont like something. But what you dont like someone else does. So to take away things that other people enjoy is unjust." 3 3 3 3 3 3 +3793 2 "A colossal number of significant and life-changing books can be found in the millions of libraries throughout the world. The big question is whether or not individuals should get rid of the books of lesser importance, and the books that are found offensive to a number of people. In my opinion, there are a certain number of books wasting away on the shelves of the library that need to be disposed of. That is why libraries need to discover which books are creating issues, such as books on race or religion. Although Katherine Paterson boldly argues against taking books off of the shelves, I strongly disagree and believe that libraries should remove materials that are creating tension or books wasting away on the shelves. Race is an extremely important topic in the world today, and I believe books that discrimate against certain ethnicity's need to be removed immediately from libraries. @CAPS2, there are exceptions to this proposal. For instance, books talking about the civil war and underground railroad need to be kept in libraries because they are significant historical events. Unlike fantastic books about our nation's history, there are also books about race that are of lesser importance, and they @MONTH1 offend people. In that case, libraries need to crack down on this issue and remove offensive books from the shelves! Secondly, libraries need to be extremely cautious about what music is made available to the public. It is important that we teach our children the difference between right and wrong at a young age, and if the kids hear some of the derogatory music on the shelves, they will lose all sense of what is right and wrong. As Katherine Paterson mentions in her quote,' All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' @CAPS1, that same quote can easily apply to the music on display in the libraries. By libraries exposing children to derogatory music, they are creating enormous liabilities for the children and their families. Overall, our society would benefit greatly if libraries removed derogatory and offensive music. Lastly, Katherine Paterson says that if we keep removing offensive books from the shelves, there will be 'no books left on the shelf for any of us.' @CAPS2, that is a nieve comment as @CAPS1 as an exaggeration. There are millions of libraries throughout the world and thousands of items in each of those libraries. Therefore, it would benefit our society if we would dispose of the items creating the greatest amount of tension, and there is one simple but effective way of doing that. When people are at the check out desk at the library, the library could have a sheet of paper asking if the customer found a certain book offensive. If the same item appears regularly on the list, remove the item. That would benefit everybody greatly because the offensive items would no longer be on the shelves, and it takes little effort from all parties involved. In conclusion, I oppose Katherine Paterson's decision and believe libraries should remove offensive materials immediately. One highly controversial topic is race, and if the book is not informing us about a historical event, it should be removed. Certain derogatory and offensive music is available in libraries, and it should be removed from the shelves as @CAPS1. A quick and efficient way of figuring out which books are offensive is to have a list available to the public where they can write down which book they find offensive. Ultimately, libraries need to take action and dispose of the offensive materials that pose a threat to our society" 5 5 5 4 4 4 +3794 2 "Do I believe that certain materials should be taken off book sheleves if found offensive? There are many answers to this question and many people have different views to the question. For instance, you have to look at all of the different races, customs, and more of what people believe in to find the true answer. Some materials are very offensive, but should they be taken off the shelves of our very own libraries? There are thousands of books in a library, and hundreds are written every single year. These books range from romance, action packed, and scary. Now many books are starting to be found offensive to our society today. I have read many books and have not found hardly any book to ever be offensive. There are offensive things in other matierals such as: music, movies, and magazines. I do recall listening to music, watching movies and reading magazines and not liking what i was doing at all. Some music today is just extremely bad. From the fowl language and missinterpretation of words, music has become worse. Some movies that I have watched are not very well either. Movies can be offensive in many other ways than any other material there is. You got the scary, gorry and the movies with all of the different sex scenes that are made every year. This can teach the younger kids what is wrong and right, as well let them be aware of what life is about. I do believe that all of these materials should stay on the shelves of our libraries. Learning from books, music, movies, and magazines is good in a way. Knowing that many things in this world today are offensive to people, I think that it can only make our society stronger to help us understand all of the different views that our people have. Yes it can go in bad directions, but there are many ways to get people to understand what is right and what is wrong to push them to stride for the best. Knowing that materials on our shelves are offensive, I still believe that the right thing to do is to keep them there. Clearly people get mad and upset when reading, listening, or watching these materials, but this is what makes us who we are. There will always be offensive stuff being said written and so on, but the way you can handle it yourself will show everyone around you that it is possible to change their own views of the offensive matter and look at it the better way." 3 4 3 4 3 4 +3795 2 "In the quote that @PERSON1 wrote she talks about how books can be taken down from a shelf if it is too provokative. This is a very interesting quote. She talks about how things should be taken of the shelf to prevent the children from seeing it. In everyday life there are things that are said in movies, music, and magazines that kids should never watch, hear or read. Some movies can be way too provokative. Directors try and cover them up, but we know what they are trying to get across. Some scenes can get out of control and there is no stopping it. People wish they could close their eyes and it would all be over. When parents get movies they try and keep those scenes hidden from their children. The parents do not want to get their child having bad ideas of what the movies are saying. To many children take the movies to the extreme and try and act like the actors or actresses, and the children end up getting hurt from these actions. Music is especially one to do this. There are not a lot of songs in the world that do not involve language, drugs, or sexual content in it. Many parents do not want them to be exeposed to that way to soon. If people listen to this they might want to try it and end up going down a wrong path from these words that are said. Mothers do not want to go get their child out of jail from doing something that was just like the song they like to listen to. That is not a mothers dream to go and do that. There are too many magazines that try and expose women. They use this to try and see more magazines. This is wrong to do. A little while back a magazine took pictures of a girl and tried to expose her, this is just wrong. Parents do not want their children to look at this and get the wrong idea. When girls look at a model in a magazine they try and be just like the model. They girls end up being underweight, sick, and maybe do drugs. Parents if they see this should take the magazine away from them if it is not what they approve. Some parents let their kids get away with too much. They should censor what their children do. Some kids will try and get around them so there is not helping them. Everyones point of view is different. People @MONTH1 think that this scene is to provocative and another person @MONTH1 look at that and say there is nothing wrong. It just depends on how society feels about the whole situation. If we were to take a movie or music down because of what they say then there would be no contents on the shelf" 4 4 4 4 4 4 +3796 2 "Libraries are a great resource for information all around the world. They contain many different styles and genres of books. Some might not be appropriate for young children to read. There are people that debate whether or not some books are too offensive to be put up on library shelves. I believe that no book should be denied of this right. Most children that go to a library already know what kind of book they want and are with an adult at all times. Most libraries have children sections. Offensive books are most likely found in the teenager or adults sections, not the children section. So, to my defense, there could really be no way that a child would seek out these 'offensive' books anyway. Children today are exposed to more explicit topics, but I doubt they would want to read a book about them. Next, if a child goes up to the check out desk the librarian should be able to tell their parent or guardian that certain book is not suitable for that age of child. Going back to my point of children usually go to libraries with their guardians, they should be supervised at all times while in a library. If an adult cares that much about what their child reads they can easily decide what is offensive or not. Finally, authors should not be punished for writing something they believe in or like. They worked hard on writing and publishing their novels, they should be able to show them off. If librarians do take off books for being offensive to some adults, a lot of books will be gone from the shelves. The quote used for this essay explains this thought more thoroughly. People should be able to read whatever they want, offensive or not. Children being able to do this? Depends on the parent. There is no way a child could check out an offensive book, take it home, and read it without their guardian knowing. Yes, all parents do not care about what their child reads, so this could happen. Just because some adults complained about books being too offensive for their children doesn't mean a revolt has to happen. Those parents should just step up and be more strict about what their child can and cannot read. Some of the most 'offensive' books out there are the very best to read." 4 4 4 4 4 4 +3797 2 "Censorship has become a major part of the media now-a-days. It is everywhere: books, movies, songs, and television shows. The government is trying to make the children of @DATE1 less corrupt, but they will end up learning everything that is censored for their friends and peers anyways. I feel censorship is a waste of time for the government. Children learn mature information sooner than they should in @DATE1's society. Censorship should be more for the media children and young teens pay attention to. It should not be put into more mature movies and music, such as movies with adult content and rap. Those are more of items for grown up and teenagers than for children. If parents allow their children to listen to and watch that certain media, then they must feel their children are mature enough and know enough to not be majorly effected by it. Censorship also ruins the quality of books, music, and movies. Certain words help to better express people and their views. If they can not use the specific word they feel describes them the best, it tends to ruin the quality of their character. People cannot be themselves when they have to watch what they say and are looked down upon because of their choice of language. I, myself, am very free with my language and the inappropriate and vulgar things I say. They are just a part of my nature and help me to be more expressive of myself. There are probably better, more appropriate words to use when I am in public, but then I would not feel like I am being quite myself. I think censorship is corrupting our society. The government is trying to control us with censorship. I am not one of those paranoid people that thinks the government is out to get them. This just happens to be one of my opinions of censorship. We should get rid of it. It is changing the way people are and the way they feel they can act around others. People have to be careful of what they say, and I feel that makes speaking and attempting to express yourself so much more challenging. Censorship should be stopped before it ruins the quality of all the media." 3 3 3 4 4 4 +3798 2 "How would you feel if your son or daughter saw a naked picture of someone, kept hearing bad words from a song that was in the library! Would you really want that for your child? Thought a library was supposed to be a learning center, didnt know it was a bad place to be. People have their own opinions in everything! A lot of things these days are changing and it's not for the better! Television, books, and music are becoming dirty and unenjoyable to people. Please help try and help us stop this! We don't want it getting to our kids, like it has to others! Some people like these kinds of things with bad actions in them! One thing that catches them is the beat, it just makes them want to start dancing. Another reason why they like it is beacuse their friends like it also! People these days are becoming more of followers than leaders like they should be. When people grow up they usually have an idol whether its a singer, book writer, or actor. When that idol grows older it most likely isnt going to be the same person with the same thoughts it had @DATE1, they change for the worse most of the time! They get caught up in drugs or the fame that it puts them in. When that happens people loose than interste in them unless they think its cool! It all just depends on the person! Some people thrive off of these things! Libraries are supposed to be for all ages! If a kid finds something that was bad at a library and tells their friends or parents thats just putting down the library and they aren't going to want to go there anymore. This is just hurting the library because it will loose a lot of their buisness. Young kids these days are being expossed to a lot of more things that they should'nt be! What little kids already know is sickning! Hearing them say that they have boyfriends and girlfriends, and how they know bad words just at the age of @DATE1! It might have to do with the parents or the friends the kids choose but in my opinion it's right! Kid's are growing up way to fast because of the things that they know! Movies, music, books, etc. are not like they used to be in the fifty's, even the eighty's, yeah they werent the best, but its gotten a little extreme theses days. The words that they say in songs, the things we see in movies, and the picture we see in magazines are getting out of hand. There should be a section that is blocked off only for eighteen and older that has all the bad things in the music, movies, and, magazine articles/picture. People shoud have id's that they have to have to get into this section! This is going to try and prevent kids from seeing what they are these days when they are at a young age. This might not even work, but its worth a try! The world is'nt a happy place anymore! It's filled with violence, sex, drugs, etc. Some parents don't care about the things that their child does, says, or sees. It all just depends on the family. Whether they believe in @CAPS1 or if they don't is another example of this! It always affects ther actions and thought! People try and do the littlest things, and they try and make a difference in the world. That is what people need to do, not get involved in horrible things. They need to get involved and stay out of these bad things; seeing bad picture, hearing bad words, and watching horrible things in movies. Try to make a difference! dont be a follower because it's not going ti get you anywhere in life! Everything counts!" 4 4 4 4 4 4 +3799 2 I believe that books should not be taken off the shelves of libraries because without books we would not know anything about life to survive. The books and media help the human race sympathize with eachother and know about things that already happend so that we don't repeat history and do it all over again. Some books are made up for entertainment and others are for education and help children learn about what happend in the past.Taking books off the shelfs of schools and libraries would be uncalled for because you are taking away from children who have nothing else to turn to besides school and knowing what the teachers are talking about in the classrooms. Books that are offensive should be taken off the shelves but not the books that make sense to people and help you suceed in life. some schools don't have books to read because they are in a poor country and don't have much to do besides go to school and learn. books are important in so many ways that it would be a lot of drama if they took books off of shelves because people all around the world need to know about everything that has been done and the people who done it. some books don't make sense but that doesent matter if it does or don't. 3 3 3 3 3 3 +3800 2 "In todays world there are so meny movies and books that it's hard to watch or read all of them. They all have different look and ideas. Every one in the world is not all going to like all of the same movies, books, and music we all have different testes. That is why I think it wouldn't be right to just take the books or movies off the shelf. I think they make so meny different types of ever thing becuse we do have different beliefes like relegen, class, and cultur. Music, there is rock, rap, hip-hop, country, jazz, and the list goes on and on. And if you just take it of the shelf becuse someone somewhere thought it was offersive we would not have music or any thing like that. I don't really have to meny thing that I get offened by but I do know that I have seen some showes that were that way and some people I'm guessing thought was funny. Books, there are meny different gerens in that too just like music so if it has a bad work, or a rude annicdout some people @MONTH1 not like it. Books are good to read. It would be bad if they were all gone. Then it would be hard to learn or teach anything. Take for an example The @CAPS1 is one of the most read books in the world and if they just took it off the shelf becuse some people don't believe in it so meny things would change and releges are not going to be the same in any way. That is the way is going to be with it all and most people do take offens to that. The way i put it in my head is that if they don't like it they don't have to read, watch, or leasn to it. Every thing in all of these bisnisses is in taking a resk. Its all about how you look at books, movies, music, etc. So I think that just taking it off the shelf would be a bad chose for this. That is why we have our own free will and and make the choes that you want to good or bad, right or wroung. You might not think about it much but thing like this do happen it might not be in your town but some where out there in the world it will be happening" 3 3 3 3 2 3 +3801 2 "There are some certain materials i think is affensive to childrens is book,music,movies an even magazines.Books have a lot of materials unsafe for children because they can get a hold to @CAPS1 books and other unsafe materials.Another thing is music, and even music videos has a lot of profanity in them.Movies such as @CAPS1 movies some children @MONTH1 watch them and reflect wat they have watched on tv.The next thing is magazines,has material such as appropreate pictures in them tats why they should take the books,music,movies and magazines off the shelf." 2 2 2 2 2 2 +3802 2 "How would you feel if you were forced to only enjoy the exact things that everyone else enjoys? If you were limited to only certain subjects because all of the other choices were thrown out you might begin to feel trapped. Everyone in this world is different from the next person. So I believe that each person should be able to read any book they would like without any restrictions. Some reasons for my opinion are personal values, unique interests, and the fact that people should have a right to read the books that they like without judgement from others. For my first reason goes along with personal values. For example a person of higher authority @MONTH1 find a particular book, magazine, or movie inappropriate due to their values and beliefs. So if this person is the owner of the library they would be able to throw out all books and movies pertaining to that topic. This would make it unfair for the people who do enjoy these topics. My next reason is that every single person has their own unique interests. If someone begins to dispose of books that they are not interested in the library will lose all of the visitors that do find that topic enjoyable. This can cause the library problems and be a disappointment to those who find reading about that certain topic a great way to pass time. Everyone likes different things and has different views. They should not be forced to read only the things that are selected by another person. People should also have a right to read the books that they like without judgement from others. I know from experience that being ostracized for doing what you enjoy is completely unfair. If everyone did the things that every other person does our world would not accomplish anything out of the ordinary. Many people find inspiration from books and movies so if these were limited to only particular subjects people would begin to feel pressured to be the same. Every person should have a right to enjoy the things that make them happy without being hurt by the opinions and judgements of others. Books should be something that each person should have a choice in. If there are endless choices of books and movies a person could learn about many different things and develope a more open mind. If everyone in this world opened their mind people would become more accepting of others. So I believe anything that is published should be there for the public to read. No one should be limited because of other people's values or interest. The right to read the books, magazines, and watch the movies you like should always be present." 4 4 4 4 4 4 +3803 2 "Should we remove books and media because they are offensive? I do not believe so. In this essay I will describe to you why I think this way. The word offensive is a contreversial word. Is it kissing that makes books and media offensive or is it curse words or fighting. Many people see many different things. Many off the books today's youth read are 'offensive' to older generations. That is because today's standerds are different. Children are more free to do what they want and say what they want, making offensive a changed word. If a book, song, or video is offensive then the parents should take that up with their children. Things that are offensive for some people are just fine for other people. Just because it is out there does not mean that we have to see it. So in conclusion I do not think that books and media should be removed from the shelf for being offensive, because offensive is a changing word and it is different for every person." 3 3 3 4 4 4 +3804 2 "In my personal opinion, I do believe that certain materials whether it be in books, music, magazines, or movies be romoved or edited more carefully. Most parents, including mine, expect their kids to behave with manners and not use foul language or make out with their boyfriend or girlfriend in inappropriate times, and yet we promote it and that's unacceptable. In bookstores or even libraries, they have some books on the shelves that can be considered inappropriate. We encourage and even push kids to read, but we can't even say, pick any book you want. These books @MONTH1 have foul language, gang violence, or even sexual jestures that I wouldn't even consider giving to a niece or a baby cousin. There are many types of music out in the real world. Everyone has their favorite music and they have their least favorite. In my opinion, you can't make everyone happy so your just going to have to ignore it. There are different cd's, cassate tapes, or even records, that you can buy. Yes, I think what some people put in their music is not appropriate but we can always change the station on the radio. You don't have to purchase that cd, and you can always ride with no music on. Magazines can get pretty ugly sometimes. Whether it's @PERSON1 on the front page with no hair, or @LOCATION1's next top model. Quite frankly, I don't mind seeing that in magazines but strict parents @MONTH1 not want their kids being exposed to @NUM1 actions. Magazines could talk about anything such as someone on drugs, alcohol, or winning the lottory. You just have to choose what you and your kids look at wisely. People can get pretty crazy on what they do and how they do it. Whether it be in writing, singing, or pictures, you know there is always someone going to do something inappropriate. This is reality and there is nothing that we can do about it. If you don't want to hear it, don't listen. If you dont want to see it, don't buy it. Its quite simple" 4 4 4 4 4 4 +3805 2 "Censorship in libraries!Do you believe that certianmaterials, such as books, music, movies, magazines, etc., should be removed from the shelves if they are found offensive?NO!, I do not think they should be removed. I believe everyone is intitled to there own opinion, @CAPS1 if something is offensiv eto one person @CAPS2 @MONTH1 not be to another. No one thinks the same or has the same opinion about somethings thats why there is a variety of books, music, movies etc. If you take out the 'offensive' things, @CAPS2 @MONTH1 cause offense to another.People just need to stop being sefish and understand everyone is different and we all have different interests" 3 2 3 3 2 3 +3806 2 "Many people, after reading a book, listening to a song, watching a movie or reading a magazine have found themselves upset or disturbed by that peice of media and feel that it should be removed from the shelf they found it on. I feel that since everyone has their own definition of offensive and disturbing, that libraries and media centers should separate such materials from other books, magazines or @CAPS1. My opinion is that not everyone will find the same things disturbing or offensive. It depends on that person's background, religion and personal beliefs. I do not that think books, magazines or @CAPS1 shoulds have to be banned from library shelves just because that particular person finds that peice of material offensive. If they find it so disturbing then they should discontinue reading that book or magazine, or listening to that @CAPS3. One person should not be able to make the choice of keeping a certain book or magazine on the shelf because somewhere out there, I'm sure there is someone who does not find it offensive. The partial point of writing a book or song is to express one's opinion of a topic and if the reader or listener does not approve of their opinion, then they should respect that director or author's thoughts and move on. If a library or media center contains inapropriate books, magazines or moviees, they should create special areas or shelves to keep such material. This area could be created for adult or mature readers, viewers or listeners. I also think that books and other peices of media of such inapropriateness should have a label regarding its offensive or explicit content. If someone finds a song, book, or magazine article offensive or disturbing; I do not think that a single person has the right to have it removed from the public and that there are other ways to keep such material out of a reader or listener's hand, that @MONTH1 not know about its possible offensiveness. If warning signs are shown, then the reader or listener should realize that they are taking the risk of being offended or disturbed. If such measures are taken, I think they will keep all readers, viewers and listeners pleased." 3 4 3 4 4 4 +3807 2 "Every person is different, and in being different, people have many varying veiws as to what is or is not acceptable or offensive. Something that is very offensive to one person @MONTH1 not be offensive to someone else, it is all a matter of values and beliefs. Libraries contain a variety of books, music, movies, magazines, and other materials on a variety of topics, some of which @MONTH1 not be appropriate for everyone. I do not believe that a material should be removed from shelves just because one person or a group of people find it offensive. The offended group is not being forced to read that book or magazine, listen to that music, or watch that movie. Materials are placed in a library for the public to enjoy, not just to please certain people. I do beleive, however, that materials should be clearly sorted in a library. If they are clearly sorted, people are less likley to take something that offends them by accident, and can completely avoid books, movies, magazines, and music that they do not to read, watch, or listen to. This can also help keep children away from unwated material. To conclude, materials should not be removed from shelves if they are found offensive. What is offensive to one person, another person might enjoy watching, listening to, or reading. It is impossible to please everyone, because every person has different veiws, but a situation can be avoided by careful organization. If everything that was found offensive to certain people was taken off of library shelves, there would be nothing left" 4 3 4 4 3 4 +3808 2 "I do not believe that books that are considered offensive should be removed from public libraries. I could understand if it was school libraries that were in question, because of the fact that some of the materials that these extremely explicit books contain is not for a child to be reading. I feel as if these certain materials can be helpful to seeeing other peoples point of views on certain subjects. Though books this material can be called offensive, to certain people this is there culture and how they live. What would happen if every book that was considered offinsive was actually removed for book shelves? Some of the most interesting books that I have ever picked up have been controversial. The eye-opening world of these books is amazing. The fact that I can read about other peoples life, and their everyday struggle is astounding to me. If we all made a huge decision based off of one persons opinion, then our world would be a mess. Therefore, if all of these 'offensive' books were to be removed, then what is left to read. I want to read something that is going to grab my attention, and make me want to keep reading. I do not think that i would have that type of experience if these books were removed." 3 3 3 3 3 3 +3809 2 "I believe that censorship is rarely acceptable, and certainly not in libraries, at school or otherwise. Censorship prevents knowledge from being obtained, spreading ignorance and intollerance. Libraries and schools are meant to be places that encourage free thinking, discovery, and learning. Censorship stops these things from occuring. If people are prevented from reading what they want, then many will not read, period. Not all children and teens are drawn to reading. If there is a book that a reluctent reader shows interest in, then why would someone want to take it away? Because @CAPS11 or she finds it offensive? Because @CAPS11 or she does not agree with the views expressed? Neither are legitimate reasons for censorship. Most justifications for censorship would not stand the test of time. A great number of books challenged in the past are today considered classics and/or important works, such as To @CAPS1 a @CAPS2, @ORGANIZATION1, The @CAPS3 of @ORGANIZATION2, and @CAPS4 @CAPS5 @PERSON3. To @CAPS1 a @CAPS2 and @PERSON1 were censored because of the racist language. @CAPS12 language helps to set the time period in the novels. Also, To @CAPS1 a @CAPS9 is about a lawyer who defends a wrongly accused black man in @LOCATION1. The main antagonist is an ignorant, rascist man. The book itself is not racist, only the villian of the story. Censorship for such reasons is different than not allowing a young child to watch something violent. Preventing a child from seeing a rated @CAPS10 movie or reading a letter to @ORGANIZATION3 is a separate issue from censorship. I define censorship as preventing someone from seeing or reading something due to personal views rather than for the good of the sheltered person. Keep children sheltered when they are young, if one must, but as they grow older and mature, it is essential that they are allowed to mature in their reading, as well. If someone lives their life reading only the books others choose for him or her and seeing only the movies and shows chosen for him or her, then @CAPS11 or she will not be his or her own person. Living a sheltered life can catch up to people when they reach adulthood. They will not have their own views, and will be largely ignorant to the world around them. @PERSON2 said, '@CAPS11 who destroys a good book, kills reason itself.' @CAPS12 is what happens to people who have grown up among censorship; they have very little reason. Censorship can mold people, not for the better. People who grow up free to read and watch generally what they wish can turn out differently. These people can have views and values of their own, formed by, among other factors, influential books they have read throughout their life. Many of these people better understand others, promoting tolerance. Censorship takes away all of those wonderful qualities from people. Anyone is capable of possessing them. Censorship cannot be seen as the norm. Libraries and schools should allow children and teenagers to learn and grow.That is the purpose of the institution of education. Therfore, censorship should not even be considered. Students' freedom to read what they desire should be the policy of all schools and libraries" 5 5 5 4 4 4 +3810 2 "I think that libraries should not remove material such as book, music, movies, magazines. I think that libraries should keep them because thier are alot of people tht has thier own stlye at reading. Sometimes i will go to the librarie and get a book, then i will go look at magazines, movies, music. Thier are alot of movies out right now, and now u can go cheak them out. Music is the same way. I feel like if thier stuff in the librarie that kids like they should go for it. Im sure that they have edgucational books, movies and magazines. If people take out stuff that kids and teens like. Some of them might not return back.Thier are alot of students that listen to music and watch movies too. I love cheaking out movies from the libraries its easy and they always have the movies that u are lookin for. The movies are easy to find. and its quick. If the music has some offfensive stuff in it that they should take it off the shelves because it will have peopel thinkin why would they put a movie, music, magazines and book up on the shelves if they know it is offensive to the public. Inconclusion i hope the people at the libraries take the offensive stuff off the shelves.It would bring move people in and they would have more respect for thoes people. The public would`t have to worrie about picking up a book that has alot of stuff that thier kids do not need to see, read, or listen. That goes for movies, music, magazines, books and more. I really hope the people make the right choice" 3 3 3 3 3 3 +3811 2 "Nearly every person has seen, heard, wrote, or said something that offended someone. Most of the people that offened others do it on perpose in there music, books, or movies. While some other people accdeltly offened people by the way the worded somedthing. If someone finds something offensive, they should ask for it to be placed somewhere else so it is still avaible, ask for a vote to remove it from the shelves, or just keep it to themselves until they know their not to only one offeneded. When someone gets offened by something they see and hear in a library, that person should ask for relocation for the offensive meteral they seen or heared. In this case, other people can still watch, hear, or read the book or magazine, movie, or music. Just because something is offensive to one person does not mean it is to someone else. A book or magazine, song, or movie could be offensive to a lot of people, so it should be voted to be removed or stay in the labrary. This way the materal has a chance to be avaible in the future. Some music and movies could get removed then replaced with the censered version so it for the people that were not offened. In some cases there is only one person that got offeneded by something that was in a library. In these cases the person could chose to wait to until someone else is offeneded by the materal to speek up about it's offensiveness. If materal is offensive to someone they should get it relocated, voted on, or hold their peace. If relocated the materal is still avaible to other people. When voted one it could stay or be removed. Someone can speek up about the offensive materal after someone else find it offensive as well." 3 4 3 3 3 3 +3812 2 "If I think that something is offensive then yes, it should be removed from the bookshelves. The library is a place for everyone and not just one type of people. If something offended you then u wouldnt want someone else of the same race, religion, or family to read it and be offended. Yes, we have freedom of speech and can say anything we want, but i think it should only go so far and then should be stopped. Someone can only take so much and then when they reach that point nothing turns out any good. If somebody were to write about the blacks and saying they are all dumb just because they are black, then the blacks would notjust stand around and do nothing. After u call someone names or pick one them so much it scars them for life and it could hurt their whole communication skills for the rest of their life. Not everyone but some even take it so far as hurting themself or others. So if i seen a book on the bookshelves of the public library that offended me then yes, i would want it to be removed so it doesnt offend anybody else. I dont think that hurting someones feelings is worth messing up their whole life or causing them to hurt themself. If something hurt u or offended u would u just let it happen or would u use the rights that we are given and try to make it right and not hurt anyone else? Would you want somneone writing about u in a mean way? You would probly try to make it right. If you could fix something and didnt just because you didnt feel like it and it continued to offendother people then not only is it the persons fault that wrote it but i could see it kinda being your fault for letting that person still burt people." 3 4 3 3 4 3 +3813 2 "Should we remove offensive items or materials from a public library? My belief is no because many people in today's society are pretty offensive themselves and the books are meant to show the life of fiction or fact and when you do censor something the other person will try his or her best to try and find an uncensored version of the same material. Art books are another thing that should not be censored because the artist is not trying to be perverse or offensive he or she is just trying to show his vision of art in the form he or she feels people would find artistic. Censorship is important in some ways but you also have to have an opened mind because someone who finds something offensive might not feel that way later on in their life. So my belief is don't censor something because it might offend some, because there are many who probably don't take offense to it be it books,music,videos,video games,writing,or movies. We are all going to have a democracy over if something should or shouldn't be appropriate. So what are your thoughts censor a book because of it's content or leave it and let the people decide? My thoughts would be censorship is moral but you also have to think it would be immoral to take a book away from a reader that might find this book interesting. So please don't censor books from our public library, we need books that have facts or fiction in them but also have a great story in it's words. My other thought would be what i would do is let the reader decide censor it or keep it the way it was intended." 2 3 2 3 3 3 +3814 2 I think that that if there is a book in the libraries that is hurmful. Then you should have to be at least @NUM1 years of age to check it out. The reason why i say @NUM1 is because at that age you should know whats right or wrong AND you can handle it if is wrong. I mean if you know its wrong then dont read it no one is maken you read it. It would be differnt if some one waz but no one is.Some people like to read differnt kinds of books just because its not right and hurts you dont mean it hurts ever one it @MONTH1 make it helpfull to some one esle and if its tgaken out then there wont be any books in the libraries for anyone to check out and read. BECAUSE ever book in there is going to hurt some if u made them read it. If you have have a problem with that you can contact me at @NUM3 ask for @PERSON1 and we can talk bout it and mabe you @MONTH1 be about to change my mind or after you read this you make think the same way as i do. The reason i feel thinks way is because like i said before there is a part in ever book that will hurt some one so you should have to be @NUM1 to check out surten books.If ur getting hurt by a bunch of books then i would sugest you to stop readen because a book is a book not somthing to hurt you.There is so many people in the world that is into books and resourcen bout stuff. What i do not agree with is that kids getting out of class going to the library playing games and putting puzzels togther that is the problem i got.I mean yeah people do go in there and do work witch is find BUT some say that they have work and they dont.They just want to get out of class and not do work. People go in there and play games and when people need on the cumputer there is no were to go because of kids playing games. But as the book part in the library i dont have a problem with that thats what i got to say bout books hurting people is dont read them other people like them being there for them. 3 3 3 2 2 2 +3815 2 "In many libraries there are books, movies, magazines and much much more. Some of these items though are seen as inappropiate for certain ages. I believe though that every customer in the library should have the ability to choose what they want to read. It is up to the parents or the child to decide what they want in their heads. Let us start with books. There are many different types of books. From scientific data about human anatomy to dragons and vampires. How can you choose a book that is deemed appropiate for you though? The answer is simple. When you are younger, your parents help you choose the right books to read and as you mature, you begin to make thoses choices yourself. It is up to you whether or not you should read a certain book. Movies guidelines are along the same pattern. Your parents helped you choose appropiate movies in your youth. When you grow up, you learn to read about the movie, and look at the rating. If it seems to intimadating, or innapropiate, or violent, you make the choice to see it or not. Sometimes you see offensive material in movies or books. If you dissaprove of it strongly take the dilemma to the librarian. Discuss why you think the movie/book is unnappropiate and offer some ideas on how to deals with the situation. Some suggestions could be: to remove the item from the shelf, or to write and extra review on the book, or write to the author/movie director. The simplest solution though is to just leave the offensive item alone. If it offends you, just send it back to the library and warn your friends not to check it out. Others @MONTH1 still enjoy the item even though you don't. There are many books, movies, magazines, etc. out in the world. Some @MONTH1 be deemed as innapropiate or offensive. There are many other choices that are 'okay'. So if you don't approve of a certain book, just send it back to the library and find one you do like." 4 4 4 4 4 4 +3816 2 "Should books, music, movies, and magazines be removed if found offensive? Well i think that they they should be put to a vot for everyone, who goes to that library, to decide. That some might not find it offensieve as others do. No because people have different beleafs than others. I think they should be put to a vote for everyone, who goes to that library, to decide because the staff might think its morally incorrect and morally offensive. But others like the people checking out the books might think differently then the staff. The staff is not the one who reads all the books their customers do. Some might not find it offensive as other do because every one person thinks differently. No one person thinks the same reson unless they have been told what another person thinks. the library might loss its people if they take a book out for the wrong reason. Weather they like it or not all books teach a lesson about life. No because people have different beleafs then others. In one culter that book might be aloud and they might live around that library. So that would make then miss out on going to the library for books. For example, if the library choose to take out the bible and romance novels then they would loss a lot of customers. Their business would fall. The library staff should not be aloud to choose what books are aloud because if some one has a fine they get money. So my answer is no because they shuld put it to a vote, some might not find it as offensive as others do, and people have different beleafs than others do. No one person has the same thought that the next person does it is impossible" 3 3 3 3 3 3 +3817 2 "Dear editor, I feel that we should not take any movies, books, and music off the self. I mean realy it will start confliced.Then we have law suight. I have seen what happens when you take a book off the self. the people start yelling because they did not find it offending. Then they say that they are going to suw. Last it costs mouney to go to corght. I have also seen what happens when u take music off the self. people yell at first. Then they start to get vilent. Know you have a mob of people destoyinh your store because you took down some music. This is why we need to keep them all up. You can take this any way that you want but i hope you learn before it is to late. I hope that you will put this in the peaper thank you. Sinserily Your, @PERSON1" 3 3 3 2 2 2 +3818 2 "I do not believe that any material should be removed from library shelves. I stand frmly with this because it is a choice to read material that is found offensive. I would not expect a young child to seek out inappropiate materials because they are not interested in them. Just as I would not expect an adult to go searching for a little kid book. Basically there is a maturity barrier that seperates what each age level is interested in reading. There is no point in removing any material from libraries because you would accomplish nothing. People who would get offended mainly children are already exposed to violent videogames which glorify war and violence. And you can not just go ahead and remove material that you think is offensive. If you removed offensive material from libraries then I guess you would have to shut down the internet as well. A child could much more easily go to a computer and find anything offensive they want to find with the click of a button. Also at a library their are age level restrictions on cards that prevent a child from checking out offensive material. Some people might enjoy material that is offensive. If material is removed alot of people would be upset that libraries do not carry what they wanted. There would be alot of complaints, and problems. And some people might stop going to the library because the content was limited.. The best thing to do is allow libraries to have whatever material they want to have. Many people will be satasified, and most people will be happy" 4 4 4 4 4 4 +3819 2 "The author Katherine Paterson makes a very good point when she states that there are books on the shelf that poeple wish that there kids or even there on self did not read or that people wish they did not read. But if your were to take away ever book someone found offensive there would be hardly any books left in this world. There will always be one person that finds a book that they do not like because of tone the author uses or if they do not like what they call eachother. People all have there own mind sit to away that they want to live or how they want there kids to live. Having books taken off the shelf because people do not like them would result in having no more books on our shelves. I feel like if there books on the shelves about kids drinking then have bad effects on there life cause they did drink then maybe the kid reading it would stop drinking or not even try drinking. The books about getting raped and them not telling becasue they are afriad of what would happening. Then in the long run telling after they get pregant or injured from it. Them saying that they wish they would have told might help the kids that this happened to or this might happen to might help them feel so relief and tell someone and save themself. Books like these should not get taken off the shelf because one person does not like it, in the long run if they did take it off some could get hurt or not know what to do and it couls be all that one person that did not like it fault. How would you feel if you did that to someone. Maryrin @CAPS1 is a good Author that shows how something that you @MONTH1 think is good but truns out to be really bad. Her books focus a lot on how girls need to watch what they are doing to keep themselves safe. I have a friend that have parents that do not like the music on her ipod. So she had to take it off. Well with taking it off she made @CAPS2 of the songs that they did not like. She drives so they music is always playing on the radio while she drives so she can listen to the songs that she does not have on her ipod. That is just one example of how you will always get around listening to what you want to hear. Music will always be out there. There will always be songs that poeple do not like. Either due to there religion or even if they do not like the words used. But even if they stop putting songs on the radio there is still internet out there and people can just get there songs from there. There are songs out there that should not be out there but the more someone tries to push the songs out of the world and out of people listening to them the more some kids or even adults are going to try to listen to them. In the world today there are always a good and a bad song that is the same. Artics now always have a bad song that they would have to make into a good song. That is just how the songs go. That is just how they use there brains. No one can stop them. Not even the people that publish the songs and put then on the radio. In the long run of things the more people try to stop things from not being in this world the more people are going to try to get them. It is a very bad idea to take the books off of shelves and take music off of the radio. People need to hear what bad things can happen when you do not listen to someone. A kid @MONTH1 grow up knowing not to talk to people they do not know but never really understand what bad could come out of it. But when they read a book about a kid there age getting kidnapped they @MONTH1 understand more clearly on the whys in life. So if I can say so myself I think that it is a very bad idea for books to be taken off the shelf because one mother or two dads think that book is not good for thier little girl or there teenage son. They need to read it for themself and find out what really could happen if they did something like that. Keep the books on the self. Keep playing the some music. Let your kids or grandchildren find out the danger on there own rather then you just keep telling them. I am a teenage girl and I would rather read about it then having my parents tell me over and over agian. So keep the books on the shelves. That the radio play. Just be safe in doing it." 4 4 4 3 3 3 +3820 2 "Should books, magazines, music, and movies be removed from shelves, if found offensive? I think the answer is yes, as long as it offends more than a few people. If it only offends a few people, then I think the answer should be no. Why should they be removed if they offend a lot of people? They should be removed because offensive things can lead to more dramatic things. It's almost like when people were segragted by race. The segragation led to fights between the people. How would you feel if segragation was still around? You might be upset and find it unfair, because you cannot do some things. That is probabally how some people feel when they get offended by the media. Why shouldn't they be removed for offending a few people? They shouldn't be removed because they might be able to help younger generations decide what is right and wrong. They could help by giving the people choices of what is right and what is wrong. If there was nothing out there that offended anyone, how would younger generations learn how to decided what is right and wrong? In my opinion, it all depends on how many people are offended by it. There are ups and downs either way it goes. If you removed everything that offended anyone, it would be harder to teach younger generations to decided what is right and wrong by themselves. This would mainly be because you would only have one point of view, the point of view that is perfect for everybody. The way I see it, that point of view does not exsist. Therefore, I believe by removing everything that is offensive to anyone, we would not have a media. However, if we did not remove anything that was offensive, serious issues could occur. For example, fights could break out or wars could even start, depending on how many people were offended. The last thing we need in our society is fighting. So my answer for removing offensive things would have to be yes and no." 3 3 3 3 4 3 +3821 2 "Everybody is in tittle of making their own desicion. If that includes not letting their own children look at certain books then that's okay, but that doesn't mean they have to make that desicion for everyone. Everyone has their own opinion of certain books that might be less modest than others that just how it is, but to take the book out of the libraries is not taking in consideration of others. If there are some books that are offense to a certain type of ethnicty or religion ect. then just ignore it and go on. There is no reason to take those kinds of books out, for what we all know that certain book might be used for research and that person that needs. Taking out certain books of the library are depriving the youth from contemporary literature that is going to be very imporant for the future. The @CAPS1 is a good example, in the time it got published many people wanted to get rid of the book because it was not traditional, that book is now being used in our class room and is teaching us many literary techniques. There are countless books just like The @CAPS1 that are being taked out of libraries now and that could be deeply appreciated by the future writers. Katherine Paterson has the prospective of many authors, taking out books that are offensive to people is going to cause us to have no books. For hard working writers it is unfair to work so hard and have the book band from the libraries because a certain group of parents didn't find it approving. If they don't approve of the book then tell the child not to get it. A library is a place to enjoy the countless amount of literature of many different styles and should not be restricted. The library is a place of discovery not a place of restriction." 3 3 3 4 4 4 +3822 2 "Libraries are often known for protecting our children and keeping an education atmosphere, however, you would be suprised the content our children @MONTH1 find in such a seemingly friendly place. With a simple library card, children could check out a boat-load of information that could be teaching them lessons you would not want them to learn. But nobody can be looking over thier child's shoulders all the time. The answer to this problem is strict censorship. Books are big, powerful, and a vast amount of information. Even though most parents believe publishing companies would intend on not letting children reading books that can be easily misunderstood, the truth is it's up to the library wether or not a book can be checked out. Most of the time, only adults can understand what the charaters in a book are going through. This @MONTH1 be because of the adult's extensively more experiences throughout their own life. Another comon belief is that seperating a library for the younger and older would solve this problem. The fact is, even if an adult checks a type of media from the older selection, this does not stop the younger child from witnessing or reading something as simple as a video or magazine at home. The only solution is to stop these materials from entering libraries and censoring the offensive, easily misunderstood media before it gets into the wrong hands. Libraries are great for research or school projects, but books and magazines that are inapropriate should never end up in the place built for an education experience for your kids. Censorship has to be inforced to help keep and maintain our libraries educational atmospher and keeping our children safe from offensive material" 3 3 3 4 3 4 +3823 2 "I don't think that certain materials should be removed if they're found offensive to people. If someone reads something and it offends them, they can go do something else. I'm not the type of person to get offended too easily, So I don't know how well my opinion fits. Everyone gets offended over something, so I can see why people find somethings offensive. But in all honesty, if someone read something and thought that it was offensive, they have the option to either say why they thought it was offensive, or they could just ignore it. In libraries, I think that if the @CAPS1 finds a story offensive, it should be okay for them to take it off the shelves, They work there after all. If it were me though, I'd just let it go, and if someone asks me to remove it, I might do it. Alot of people now-a-days, seem to take offense over everything. But a material should not be removed from a library shelve, unless the @CAPS1, or the manager, find it offensive, then I can understand their decision." 3 3 3 3 3 3 +3824 2 "Censorship on Libraries. Do you ever walk into a library, walk up to one of those gigantic, cluttered book shelves and pick up a book that looks promising, and worth reading? Well, what happens if you go to read the summary of this unfathomably great book, and you just feel...alienated, by the style that this book is written? Do you ever want to take that book off the shelf? Well, I do. But, if everyone takes a book off of a shelf that they are uncomfortable with, there would be a miniscule amount, if any books to read at all. Books based on @CAPS1, @CAPS2 and even @CAPS3 can be a nuisence, because it segregates people. When you go to the various sections of your local library, what section do you start sprinting towards? The adult section has tons of different genres of books, but what do you do when you find one about @CAPS4? If you are a person of a certain faith, and you find a book that is making fun of your faith what do you do then? Nothing, because there is freedom of speech. You @MONTH1 be uncomfortable about that book being sold in countries all over the world, but what if someone feels that same way about your favorite book. This is a topic people have been 'debating' for years. Suppose you glide on over to an alienated shelf. This very colorful book is just screaming for your attention? You pick up the book and come to find, it is talking about @CAPS2. That could make anyone feel uncomfortable. I personally do not agree with making fun of poeple in this way. Poeple are made to look different for a purpose, not to humiliate them but so not all of us look the same, and we can be our own person. What would you do if you picked up a book, where someone is being teased about their looks, and @CAPS3? Sure one joke can make everyone love you, but when one person is not very fond of you, well that speaks a thousand words. Different genres of characteristics include; being bigger or smaller, taller or shorter, having brown, blonde or red hair. Millions of people are critised and teased relentlessly becuase they look just a little bit different. Everyone has been teased once in their life. It is not very funny to the person being teased. Books based on @CAPS4, @CAPS2 and even @CAPS3 can be a nuisence, because it segregates people. I have written you this letter to tell you that I do not support some of the books on the market or the @CAPS9 @CAPS10 @CAPS11, but if everyone felt this way there would be no books. So I do not think we should take the books off of the shelves. We just need to embrace the fact that everyone is different, and that is not a joke. Where would the world be today, if we believed the same way we did years ago about these very topics? Do not take the books off the shelf, maybe one day it will signify what the world used to be" 4 4 4 4 4 4 +3825 2 "It has been brought to my attention by some members of my community that the local library is planning to remove some materials such as our books, movies, and music. I've confronted them and they've made no such such effort as to amend the censorship that has already taken place. I understand that some works @MONTH1 be found offensive to some audiences, but I believe all people should have access to the knowedge they wish to acquire. These works they wish to condemn and banish are works of passion and labor. What I've noticed is, the materials they view as compremising are some of the most passionate, heartfelt labors of expression; and I firmly believe this removal act hurts more than those that are banished. This denies those artists of their own freedom of expression and represses something simple, our own expression. The capibilities of the human mind are limitless, but yet those who display it's functions are limited. Knowledge is the key to unlocking a much more vast understanding of the world around us and I believe this censorship highlights what I attempt to depict in my own exposition of our minds. I believe we have come very far in the evolution of our liturature and I would hate to see the flame of inspiration for creation snuffed out in a modest dash. Just out of a few broken heartstrings? Or a spare tear lost upon the earth, dusted by some ignorance forsaken, missunderstood language doomed to be lost; out of a loss of understanding? I think not. In conclusion, I've noted what I wish to converse and I firmly stand against this censorship. I'm only one voice, but this is a call to arms and I believe we can accomplish great things together. So let's get the word out and defeat this repression of expression" 4 4 4 4 4 4 +3826 2 "Knowledge @CAPS1 @CAPS2 you ever remove something that be misconstrued as offensive to someone, although you don't believe it is? Neither @CAPS2 I, and I dont believe libraries should either. Removing books, movies, magazines, and music from libraries is unconstitutional, and it seems to lean toward controling how people think, known as communism. Also anything can be found offensive by one party of people, and so everything @CAPS2 be offensive, and removed. Then libraries @CAPS2 cease to exist. What about in the court room? If one side of the story is not told, how will the jury be able to tell if the accused is guilty or innocent? Taking out certain 'offensive' learning materials @CAPS2 leave people in a bored mindless state of mind. Do you want the government controling what you think? I didn't think so. In the @LOCATION1, modern day @LOCATION2, @PERSON1 did just that. He decided exactaly what went in and out of peoples minds. He did this by desiding what they could read, write, and listen to. That sounds like things you can get at the library, right? We can't have the government controling what we think, and mostly all libraries are government run. If we let them deside what we read and listen to, thats the first step in losing our freedom, and nobody wants to lose their freedom. Lets say a white man goes into a library and looks at a book about racism, and how it has helped the nation. Then, at the same time, an @CAPS3 @CAPS4 women goes into the same library and gets a book on why women are better than men. Then they see each other, and the woman wants the mans book banned, and the man wants the womans book banned, and both the books are removed. Then neither party is happy, because both of their books are gone. The point is, anything can be found offensive, if you just glance at it, or look at it to much. Plus if everything can be found offensive, and all of the offencive materials get removed, then all the books and learning materials are gone. Noone is left happy. If you are being tried for murdering someone, and the lawyer of the defendent gets to say their piece to makes it look like you are a murderer, and you don't get to defend yourself, what are you going to do? Your going to go to jail, most likly an innocent person, and your marked as a murderer the rest of your life, all because your side of the story wasn't heard. That is unjust, unfair, and unconstitutional. If we let this happen to our libraries, half the books will be sentinced to 'death,' without a 'fair trial.' So, if you want to have an un-@CAPS4, communist, and unfair library system, that is your choice, but I believe that the way we do things now is just fine. No book should be banned because of its material, because noone, except the writer knows exactally what it means. People get to read what they want to read, and don't have to read what they don't want to read. Thats what the freedom we have is, you have a right to read, watch, and listen to whatever you want, and nobody can stop you. Do you want that to change? I know your awnser; it's a no" 4 4 4 3 3 3 +3827 2 "A library is a place to rent books, music, movies, etc., that you don't have at your home. Some people go to a library to use the computer for a project, or to check out books, musical materials, movies, etc. @CAPS1 isn't a bad thing if the library has materials that are offensive to some people. If people don't want to see material that will offend them then they shouldn't go to the are in the library that contains the offensive materials. In my own personal opinion, @CAPS1 doesn't really apply to me if there is offensive material in the library. If there is going to be offensive material in a library then you should be a certain age to rent @CAPS1 or read @CAPS1. Not just anyone should be able to walk into the library and check out these offensive materials. If someone that is under this age tries to check out this material, then they shouldn't be aloud to have them. Another opinion of mine on this subject, is if these kinds of material offend someone then they could not go to that area of the library. Instead the person can go around this section of the library or they could not pay attention to the materials. The library could make a certain part of the library made just for these kinds of material, so that people nor children have to see them. Also, if a child wants to see these kinds of materials then they could find another way to see them. They don't necessarily have to go to the library to find these kinds of things. If a child wants to do something badly enough then they will find a way to do @CAPS1, or in this case the child will see something that they want to see. If parents don't like these kinds of materials in the library then they should teach their children not to look at these kinds of materials, if they catch their children looking at materials that are offensive then they should punish their child and let them know that they shouldn't look at those kinds of materials. A library shouldn't have to take off their books, music, magazines, etc., just to satify parents. If the library took these kinds of materials off of their shelves then they would lose business. So in theory, libraries should not have to take their materials off of their shelves just to satisfy parents. Libraries need money so that they can buy new materials and without customers they have no money which enables them unable to buy new materials. So parents should keep track of what their kids check out at the library. Offensive materials should not be taken out of libraries, these kind of materials should just have rules." 4 4 4 3 3 3 +3828 2 "To begin with, a woman might read a book about wifes and find it offense. But it was her choice to pick up the book and read it. Should it be taken off the shelf? No why should it. Different people have different perpectives on what they're reading. Not all people feel the same way. Samething goes for music, movies, magazines, etc. They might see a naked picture of someone in a magazine and not like it. It was there choice to pick it up and read it. No one held a gun to there head and said 'read the book etc.' @CAPS1, why should a book, etc., be taken off the shelf if one person doesn't like it? You still have the rest of the population who might love it, some might just like it, and the ones who don't. You can't just think about that one person you have to consider everybody esle. If that person finds that book, etc., offensive then they should have chosen wisely the first time and/or never should have chose what they did. It's there own fault. For my conclusion, nothing should be taken off the shelf if its offensive just don't read the book and etc. Another person might read it and like it. Some people who finds things offensive are maybe looking at it in the wrong way. Keep the book etc., on the shelf if they take it off then sooner or later they will take everything off the shelf for being offensive. Then what we will be able to read or listen too" 3 3 3 3 3 3 +3829 2 "There is much censorship that occurs in the world. Music on the radio, television shows, or the internet is all censored. In todays society the library is a forgotten wonder to most, making it a secluded world. The library is a place were one's mind can explore and discover as much as it wants. The library should not be a place of restricted discovery, like on the televsion or the internet, censorship in libraries should be non-existant. People learn from books; books with happy endings, and sad endings, and gruesome endings, are all able to provide lessons for the reader. Many say that history repeats itself. Therefore history is taught in schools so that the bad events that occurred in history can be prevented. This is the same for the books that are on library shelves. When reading a book, the reader is able to experience the lifes of the characters as if they are living with the characters. Through the experiences of the characters, the reader gets to observe all the things done wrong and right by that character without acually living the experience. By the end of the book the reader will have knew views on life, and will try to not make the same mistakes as the characters in the book. A major fear among the parents is the inappropriate language or scenes that @MONTH1 be described in books. To be blatantly honest, there is foul language and inappopriate doings in this world. It is much better to have it discovered gradually through reading and maybe a couple of life experiences, then to have it all thrown in ones face at one moment. The censoring that occurs on the radio and television is fine, just when someone wants to improve themselves by reading, they should be able to read whatever they feel. A library is a place of wonderous learning, but if there is censorship, it restricts ones learning. Through reading one is able to experience life without the consequences of experienceing life. All books are able to be learned from, and they should all have the opportunity to be learned from." 3 4 3 3 3 3 +3830 2 "Have you ever felt as though your reading choices are dwindeling? Censorship is taking away our freedom to experince to read or listen to what we want, who has the right to tell us what we can watch, read or even listen to? As an avid reader of all kinds of literature i cant stand censorship. Kids today need to be able to read what they want, to open up their minds to new ideas and ways of life. The so called 'banned' books are some of the best anyone can read, as @CAPS1 we should be able to read what we want, wether it is offensive or not. If you want to put certain restictions on a book such as a age limit i can understad that, but to completely take them off the shelves then we are losing our greatest right as an @CAPS2 citisen. To read and watch or listen other media is a great way to learn about things other than what is in our back yard. Music and television i understand some censorship, i dont want my little brother or any younger youth hearing the '@CAPS3 bomb' or seeing anythin obsene, but these days its getting harder and harder to control what they watch or listen to seeing how it's so easy to obtain those sources of media. Many kids today have access to the enternet which can be good and bad. If a parent does not want their kids watching or listening to anything obscene then they have the right to but certain blocks on their computer. Kisd these days mainly use two kinds of media which are the enternet and @CAPS4, but a kid who wants to read should have as many choices as possible weather it be fiction, classics such as 'The @CAPS5 snd The @CAPS6', or educational litterature. So is our reading choices becoming scarese? Yes i believe so, na it all has to do with censorship. We cant read some of the classics because the're 'racist' or are 'pornagraphic', but you have to understand for the time they were written the weren't. so let everyone read what they want when they want." 4 4 4 3 3 3 +3831 2 "'Do you bleieve that certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves if they are found offensive?' No, I do not believe just because someone individually finds something offensive means everyone else does. Everyone has a different opinion, we're all different. We need variety of all books, music, movies, magazines, etc.. Censorship is understandable, in some ways. Without a variety for all would leave everyone less choice. Your opinions, decisions, outlook on life yourself is one of a kind. How are you to tell someone they can't listen to a certain song or read a specific book? Exactly, that doesn't make sense right? If individuals didn't have options of choices there would be no entertainment. In my opinion; if someone has such a problem with a certain topic, subject, etc. then leave it alone. It's a big world with more than just you with your opinion. Be open minded! Someone else is probably writing this essay with the total opposite response to this prompt. It just goes to show no ones opinion is right or wrong. Individuals should all have individuality. Without variety, how is that possible? From music, books, magazines, movies, etc.- disagreements are one thing but in questions like this you have to agree to disagree" 3 3 3 3 4 3 +3832 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if i have the right to remove that book from the shelf--that work i abhor--then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' Katherine Paterson said this about the topic of book censory in the library. This is a very tricky subject because no one will ever be happy. All books, music, movies, magiznes, etc.can be considered offensive to someone. When it comes to books in the library we should have sections. One for @CAPS3, child, family, activity, romance, etc. if we have thoes then it would cut down on what books children can look at. One time I went to @CAPS1 and @CAPS2 and I accidently wondered into the @CAPS3 books section. I knew that I was not suppost to go into that section, but if they had it marked that it was the @CAPS3 Books section then I would not have gone in there. Parents need to moniter what there kids look at, or even what part of the library they go into. If a child wonders into the romance section then they are going to see that kind of book it is not the librarys fault or even the fault of the writer. If the parent does not want to moniter what the child looks at they could set boundries. they could say 'Do not leave this section.'. If my mom said that to me i would stay around the child books. The parents could moniter the child to solve the problem. Library's need to decide what kind of books they are going to have in the library. If the library does not have the kind of books you do not want your child to see then your child can not look at that book. If your public library does keep thoes books in the open the parents could always go to a town hall and tell the mayor, librarian, or other towns people about the rude books. If you tell people the library has that kind of books then others will stand up aginst the books. If you do not like what the library has on the shelfs, suggest sections for the books, keep watch of what your kids look at, or tell someone that can do something about the problem. What are you going to do to improve you public library? how are you going to make you kids not go and look at the books you dont want them to see" 4 4 4 4 4 4 +3833 2 "Censorship in libraries should not be mandated. Censorship should not block the the 'allegory' in some books that the author is trying to give a story within a story to the reader. Censorship would lead to @ORGANIZATION1 just like in @DATE1'. You could not the true meaning of an art piece that the artist is trying to show, so there could be no possible abstract art. The word definition of allegory is a story within a story. It is where the author is trying to show to the reader. For example like in the book '@CAPS1 of the @CAPS2' is an allegory. It shows many storys tying in with each other. When @ORGANIZATION3 dies on the side of the cliff by @CAPS3 when he launches the huge rock over board. That shows the fall of man. In the @CAPS4 where @CAPS5 eats the apple from the tree and that is why we sin. You just cannot censor such a great book. Very many people would not like that book because it shows young boys being savages and killing each other. Everyone needs to look at both sides of the story. People need to know the true meaning of what is being said. Art should not be censored at all. Art is what makes people creative. The way artists make things abstract that could kindle some controversy. Also they make things that we use today that we just don't think about, that are utilitarion. Who would give you the right to censor thier master pieces. For example @ORGANIZATION2 had a dark period in his work and painted demon's in his paintings and people might think that is way too graffic. People need to see why he painted such works of what was going on during his life at that time. Censorship is @ORGANIZATION1 @ORGANIZATION1. This would to a book called '@DATE1' by @PERSON1. In his book he show complete govnerment @ORGANIZATION1. We as the people of our goverment would be classified as the '@CAPS6'. The @CAPS6 made the majority of the people and were not very smart people. Also could not think for themselves because the @ORGANIZATION1 censored everything you could think of. The @ORGANIZATION1 did this because so they would not have anyone try to be a rebel and over throw the @ORGANIZATION1. They knew that @CAPS6 could over throw them, but they were on top of their game and censored everying. This is what would happen if we censored everything. We all would have not personality at all. No one could express love the way we do now. Censorship would in libraries would not be the most best thing anyone should do. No one would know what an author would be leading too, not a single artist could display their art. Aslo censorship would lead to @ORGANIZATION1 @ORGANIZATION1. This could not work in our society today. So censorship is not the best idea anyone could think of." 4 4 4 3 3 3 +3834 2 "Bad @CAPS1 @CAPS2 off yes, I do think think they should be removed if they are bad. If you wouldn't say it to your parents face when your at a younger age then you don't need to be listening to it or reading it. I would not want my younger kids reading or watching anything that they know they couldnt say to my face. There are so many things that little kids can see. Like at any @LOCATION1 or any where there are magazines with ladies in there bra and underwear and its the same thing with the guys. I dont think its right they should they them put up where it isn't so easy for the little ones to see. Those kind of things are justy going to get kids asking question that make the parents have to lie. Then theres kids watching tv and they have the stupid cartoons where the kids are on there cusing and talking aboout sex then your kid goes to that channel when your not around hear all these stupid stuff. Then their going to go tell there friends what they heard because they think its cool then all kinds of kids are hearing it. When you can just take channels like that off your tv and make everything easier. I think the worst is liking people sign about killing people and raping kids and all this and that. I would never let my kids listen to music like that i don't care how old they are. I also think that is where most of the stuff kids pick up are from the music they want to listen to its horrible. I would do anything to make it where kids coudnt listen to that stuff until their parents didnt care. I know my parents didnt like me listening to it when I was young and I see why now that im older and know what all of it means so i'm never going to let my kids listen to it when they are at a young age. In all that I hope that I made a good point and hope you feel the same way. Why let are kids listen to the stuff that hurts them and us in the longt run it just not worth the trouble letting them do what they want." 3 4 3 2 3 2 +3835 2 "I believe that everyone should be free to read, listen or watch what they choose to. Anything publically exposed is goin to be seen anyhow. I think it shall be up to that person if they want to read something to mature or @ORGANIZATION1 for themself. If it is a child i think the parent shall be in charge of that decision not the libarian. Books, movies, and music are forms of entertainment. People read @ORGANIZATION1 material to entertain themselves, and there is nothing wrong with entertainment. Everyone loves entertainment but to put a limit on it is unfair. If it is public that mean it should be released under certin circomstances or age, and maturity. Regaurdless of in a book or magazine everything that you dont want people to see will always show up somewere else, such as the tv or the internet. The public library is were people go to get books to larn more about something so if u yake that book off the shelve someone might miss out on on education about somthing. I wouldn't take any book off the shelf because it was put there to read, and it might be a good thing that child gets that book so that they have knowledge about somethings that are out there. If its there to read then let it be read instead of hiding it from them it only makes children more anxious to read or see it. If its in a public library let it be read people and children shall be free to anything in the library unless other wise consented by a parent. anything publically exposed in a book, magazine or movie will be shown on the internet or tv so children will see what they want rather elders' agree to it or not. Nudity, perfanity, violence, and provocative materialare in everything now days even cartoons so there is no way of kepping it from children or people its apart of everyday livng." 4 3 4 3 3 3 +3836 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 many people believe that certain books should be banned from schools, just the opposite is true as students can learn valuable life lessons from these books, get a deeper understanding of the past, and comprehend the true meaning of an author's unique style. Over the years many well-written books have been on a 'censored list', meaning that they are at a risk of being removed from the library. 'The @CAPS2 of @ORGANIZATION1', '@ORGANIZATION2 @ORGANIZATION2', and '@CAPS3 to @ORGANIZATION3' are all examples of books that have been marked down as being offensive. These books are all written in a style of their own and can bring a different lesson to every reader. While one reader @MONTH1 love the story and wear out the pages, another @MONTH1 get halfway through and never finish it. However, the belief that there is freedom of choice in reading is correct. 'The @CAPS2 of @ORGANIZATION1' by @PERSON1 is a classic example of a censored book. Throughout the book there is foul language used that is considered offensive to some. However, at the period of time the book was written, these words were not considered to be wrong. Books like this should be saved for older generations to read; however, we also have to realize that if a parent allows their children to read that book at a young age, there is nothing that can be done about it. None-the-less, removing the book from the library is not the correct response. Ever heard the saying 'learn from past mistakes'? Books are a fantastic way to learn about the past in a fun and enjoyable way. They are a tool of knowledge. Removing a book from a library is like removing hundreds of pages of knowledge. Every story has a unique style, which @MONTH1 appeal to some and not to others. Many books give readers a deeper understanding of what the time period was like when the book was written. '@ORGANIZATION2' has been a known censored book from the beginning due to its somewhat dark and gloomy aspects at certain points throughout the story. How many kids do we see at school carrying around one of the '@ORGANIZATION2 @ORGANIZATION2' books? They often state that it is their favorite book of all time. If the book were to be removed from the library, it would cause many students to never have the opportunity to read a fantastically written book, which has a unique style about it. Throughout our twelve years of school, students are taught to think for themselves and make their own decisions. How are we encouraging this if we are removing materials from their grasp? If we cannot let students make such a simple decision as to whether or not to read a book, we are teaching poor life lessons." 4 4 4 4 4 4 +3837 2 "I feel that there should not be censorship in libraries. All offensive material, as much as the more conservative patrons @MONTH1 not like it, should stay where they belong, which is in the library for all to read. I have several reasons I feel support my opinion about not removing material found offensive by some. My biggest reason is the learning capabilities these articles offer. Most works, even the more crude pieces, have some sort of educational value. Without articles based on the less comfortable or more gruesome items of life, people start to only understand in a surrreal sort of way, not understanding how the less fortunate things function or how to avoid them. Those who pursue a true wanting to gain knowledge will look at many different kinds of informational items, no matter the subject. Allowing this to occur is allowing the library to be used as in the way it was meant to be used for, a resource for knowledge. All offensive items a library @MONTH1 have stored should stay in that very spot, for learning purposes. No one should be denied the ability to learn just because of the sheilding nature of others." 3 3 3 4 4 4 +3838 2 "All of us can think of or have this one book that we read and hope none of our children or any other children have taken it off a shelf.Well at least I know I have a book like that, its called '@CAPS1'. I, myself personally feel that this book should be removed from the selves because for the simple fact it is over-rated and contains lots of violence and sex. A while back when I was in the seventh grade, I read this book called,'@CAPS1'. I was a good book but it was also very explesive. The book was mainly about this teen who had a rough childhood and was trying to make it through high school while being engaged in a abusive relationship, peer pressure, and a adiction to sex and drug. This book was exposing and very detailed, In which I strongly disagree with other children reading this book. I feel sex and violence shouldn't displayed in books or any other type of media. Inconclusion, I believe that certain materials such as books should be removed from the selves if they are found offensive. Books that display lots of sex and violence should be restricted and not able to leave the selves of libary unless their issued to someone eighteen or older" 3 3 3 3 3 3 +3839 2 "I am writing to the newspaper, about removing certain materials, such as books, music, movies, magazines, and more. I dont think this should be allowed. I dont think it would be far to others. I'm going to give you three reasons why you shouldn't let people just remove stuff like that off of shelves. @CAPS1 first reason is that, what if you had a child and wanted he or she to see the same movie or book you did when you were little? But they took it off the shelves. That would be sad and you would want them to see the movie or book you did but they cant. Like what Katherine Paterson said 'All of us think of a book that we hope none of our children or any other children have taken off the shelf.' @CAPS1 seceond reason is, what if you and a wife or husband had a favorite song, but they took it off the shelves? That would be devistating, it would just break your heart. Well I know it would me if it was are wedding song. The last reason and @CAPS1 favorite reason is, you just have your own opion. Everyone has thier own opion, if you dont want to see them or look at them just dont do it. It's as easy as that, just try to ignor it. It's really not your problem to worry about. Those are just three reasons why you should not let people remove anything off of any shelves. Like what Katherine Paterson said 'But if i have the right to remove that book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS2 if we let this happen everyone will take avanege of it. That is why I am @CAPS2 no to letting people remove anything off of any shelves" 3 3 3 3 3 3 +3840 2 "Should we censor books in libraries? Katherine Paterson, an author, once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf - that work I abhor - then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 provides a very valid point. If we start taking off book that we find offensive, there will be none left. Books are meant to provide information and insight into someone's life. If we take away that book, it would be like saying that person's idea did not matter. The main reasons why we should not show censorship in libraries are a loss of insight, books, and personal creativity. Books provide insight into the author's life. Also the things that are happening in history affect the author's tone or style, like @ORGANIZATION1. During his lifetime, @CAPS2 was ruled by kings, so if he wanted to be successful, he had to appease the @LOCATION1. It also helped appeasing the @LOCATION1 since he was sponsoring @ORGANIZATION1's plays. Another example of an author influenced by his time and upbringing would be @CAPS3. He was alive during the middle ages, and he constantly saw oppressive things like serfs. When he wrote his tales, he made the high class people sort of mean while he made the lower caste people on the humbler side. @CAPS3 was not afraid to displease the @LOCATION1. If we start taking off books from shelves in a library that we think are offensive then soon there would not be any as Katherine Paterson said. Where one might find information, another might find it highly offensive and vice versa. Every book would have someone say it was offensive. It might be the context or the tone or even the person who wrote it; it does not matter. Sometimes the books that are the most informative are the ones that are offensive. However sometimes it is good to have offensive things in books. It builds the tone and mood of the story or character. It might create a certain image. It also teaches us not to what these people are doing. The books sometimes show us a depressing ending of a person who lived a vulgar or criminal life. These stories teaches us life lessons. Yes sometimes I read a book that I find offensive, but I have learned that if I do not like does not mean someone else does not. It would not be fair then to take off a book that someone might have learned something from just because you do not like it. I am sorry, the world does not revolve solely around you and me. It revolves us as a whole, and if someones starts taking off books, who is to stop someone else from doing the same. It would not be fair. Finally, if we started taking off books, it would start influencing kids in thinking it was okay to throw away someone's creativity. It also make them think that there ideas would not matter and no one would be able to appreciate them. I for one do not like doing things, if they might offend someone. I could not imagine what it would be like in that type of society. Books are important to have. They teach us about events or people who were before our time or problems some people experience. It is important to be aware of what is going on around you. I grew up ignorant of big problems that were occuring in society. My parents tried to shield me from the bad news and creeps in society. Reading books is what opened my eyes to what life is really like. So taking off books from shelves would have hindered the process of me growing up. I would still be that ignorant little child thinking that life ends in a happily ever after. Unfortunatley most do not, but there are some that have a happy life. That is what books are for, to teach people about other people's experiences, the good and the bad. So @PERSON2 was wise in her observation. Who is to stop someone from taking off books once this processes has started?" 4 3 4 4 3 4 +3841 2 "Books movies and music should not be removed from the shelves. For many of years people would come to the libaray for them. some @MONTH1 be volger as well as they @MONTH1 be offensive, but there should be a age check out law. as well as being with in consideration for this centerys ways. There are many people who thribe off of the horrable thing people put out in to the world. They love to pain of others. Instead of taking the offensive work off the shelves, there should be a age limmit to what sertan age groupes should read. Yees there are young kids who are reading this kind of things, but that lyes with the parents. If there was a age limmit of what people should be able to read then that would solve the problem.As well we could have the parents sign out the book saying it is okay for their child to read such a book. if we had all of this then there would not be any more problems. it would be a nice controled libaray. so in conclustion this is the way to go. this is the futur of tommorw" 3 3 3 2 2 2 +3842 2 "Lets think in todays known world the childern and teens have access to pretty much everything. If you ask a teenager this same question should this stuff be tooken off the shelves. They might say no. If ask an adult how ever they are most likely going to say yes. The music that surrond young adults and childern isn't the best. Go ahead and listen you will be amazed. If they have access to it then they are going to take it and borrow it. I feel that most of the music and movies on shelves anywhere should be taken off. Now thats just my opinion. Even adults listen to this stuff and watch all of this stuff. I say that the reason why people are failing school is because of all this stuff. @CAPS1 you think about it they have so many rights that they shouldn't have. If there is anything offensive then it should be tooken off the shelves. They should be replaced with educational things. Lets go back to where it all began back @CAPS1 everytbing started to come out. Did you have most of this stuff growing up? You probably didn't. But now you can find anything almost anywhere. Which is kind of sad if you ask me. Magazines however are starting to bcome more like movies and music. Mainly with all the nudity and foul words that they show. If you look at atheltes it doesn't matter who it is they get in trouble for things they shouldn't of said. @CAPS1 they should be out teaching kids not to say this stuff. That right there will help out educatiion and what not. You can become a more responible adult by showing them whats right and whats wrong. Starting with what they listen to or what they watch. I'm not allowed to watch current things and yet I do anyway. Thats because my parents aren't giving me enough discipline and they didn't @CAPS1 I was little. If you let a child grow up to listen and watch what they want the odds they might not do good in school. One way you can help out is by hanging out with the chiold or childern. Even teens. Even though the don't want you too. Talk to them make conversatuions teach them right from wrong, @CAPS1 you teach a child right from wrong the outlook on school will be better" 3 4 3 3 4 3 +3843 2 "When you are taking your little kid to the library because they want a book you think 'hmmm, there isn't anything bad at the library its all education books.' @CAPS1 would you feel if your child wanted to check out a movie there? You would be ok with it because no one thinks there are bad images or movies at the library. A little girl could be with her mom at the library in the adualt section and they could see some things you would not want them to see. The romance books usually have girls on there half clothed and the guys in basically nothing. A child could easily see that and not know what it ment but they would have theat image in there head for a very long time.Some of the kids could go up to the movies section and pull out a scary movie that shows blood and guns. Its not just the kids seeing the stuff its everyone. A teen could easily get a book and not be paying attention and see stuff about the other gender. A couple could go in the library trying to find a good healthy funny movie, but could find a movie that would make them uncomfortable. An older person could try to find some music from back in their time but when they get it, all of it is about drugs, sex, or even acohole. The magazines always have girls half clothed, even in seventeen magazine. The car magazines of girls modeling infront of the cars to make them look better or irristable. You can get a baby magazine and it shows a mom breast feeding. You could have jsut wanted to look at if because of the babies you or your child do not want to see a mom breast feeding. The library is a very resourcful place and you can get very good information about things there. They have some bad parts about them too. I think they music that talks about personal things and bad things should be in its own little place. Same with the magazines, movies and books they should all be in a room together away from all the rest of the items in the library. They should have an age limit you have to be to be able to go in that room. They should tell you what type of stuff is in there before you go in. I'm not saying the library is a bad place for kids or teens or anyone. I just think that certain books, music, and magazines should be kept in a different place instead of out in the open where everyone can see them." 3 3 3 3 3 3 +3844 2 "Libraries are stocked filled of all kind of reading materials. Such as books, magazines, and catalogs, but are all of these appropriate for the crowd that dwindle around a library? My answer is no, but should they be taken away from the librabires, no. Although many kids go through libraries so do many adults trying to find good pieces of litature, that is why they should keep these books available to most. When i was in the seventh grade i recall reading a book, by the title of @PERSON2, about a child who had gotten sexually abused, i wish i had never picked up that book. Although it made me very frightened, it taught me a very good lesson. I learned at a young age to never associate with strangers, and if it wasn't for this novel it could have been very different. Therefore i believe it is good to get children at a young age small dosages of the real life, not every thing in the world is sugar coated like @PERSON3 would argue. From @CAPS1 to the bible, there is a vast variety of litature. This variety provides stories for many audiences. The libraries try to do there best by catagorizing these books so that smaller children do not get there hands on the wrong books. Instead of taking the books totally out of the repitoure, another suggestion that could be made is to have a system like they do for mature rated video games and only allow people over the age of @NUM1 to check certain books out. This making it near impossible for children to get there hands on the wrong books. Lastly, a suggestion that could be made is to label inappropriate books such as @CAPS2.Ds and movies. This could make a small difference and make children think twice before opening up a book labelled for mature audiences only. This providing stories for all, and protecting small children from magazines such as @CAPS3. Like Katherine Paterson said 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if i have the right to remove that book from the shelf... then you also have the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I percieve what she is trying to say is similar to what i am. She wants all the books to be provided and kids just to be shyed away from these, and hope that children can make the right decision when choosing a piece of litature from a library" 4 4 4 4 4 4 +3845 2 "I think that if it is a problem for others and not all why can't we just seperate the things in sections. That way there would be no problems. I mean, why change something if only a few people doesn't like something? Thats only goning to lead to a big conflict. Think about if we were to tr and give everyone what they want, @CAPS1 would that work out not good at all. So you should just limiy thing dow and put them in setions." 2 2 2 2 2 2 +3846 2 "Censorship, a very sensitive topic. @CAPS1 are so many things people dislike, so they censor @CAPS2, hiding the idea's from the people who don't know about @CAPS2. I personally detest censorship. I would rather the world be an educated place with minor dangers, then a place where everything is kept secret and safe. You must be thinking, '@CAPS1 are some things we have to censor, @CAPS2 can harm our childrens minds.' But in truth, your children will find out about @CAPS2 in the real world eventually anyway. In reality, drugs, alchohol, sex, rape, violence, and all the other things you censor are common things that your kids will hear about. Most children first hear about @CAPS2 in school, normally elementary, and if not they will definately find out in junior high. If they will eventually find out anyway, wouldn't @CAPS2 be better to let them find out the easy way? Now you must be thinking, 'But if they find out too young, @CAPS2 could tramatize them.' That is a risk, but most teenagers are more tramatized anyway when exposed to @CAPS2 without any prior knowledge. If they already know what their dealing with they would know how to react, but if they have no knowledge of whats going on they could make a major mistake without even realizing @CAPS2. Once again, wouldn't @CAPS2 be better they find out from you or a book, then find out the hard way? Now, you @MONTH1 be thinking, 'Our children must be protected, this knowledge could just put them in more danger.' @CAPS2 @MONTH1 put them in more danger, @CAPS2's always a possibility. The world is full of possibilities though, anything could happen. This knowledge that you always hide from them @MONTH1 be what they need to know later on, and wont know when they need @CAPS2. What would they do if they see their friends start doing drugs, and since they have never heard of drugs, they don't know @CAPS2's a bad thing to do? Or if they see older kids drinking, and are offered a drink, but dont know they shouldn't take @CAPS2? Or if they wind up kissing someone they like, and @CAPS2 goes too far, but they don't know what their doing? Anything could happen, and your children need to be prepared. If they don't know of these things, they can't tell if what their doing is good or bad, and they @MONTH1 wind up getting in trouble or hurt. Tell them, or let them read the books you always censor at the libraries so that they know. Life is full of risks, so let them know, that way when the time comes their ready." 4 4 4 4 4 4 +3847 2 "As I walked through @ORGANIZATION1 and @CAPS1 as a young girl I saw a @CAPS2 magazine book, seeing this and being a girl that likes reading that magazine I opened it. I soon found out it was a book that I would never actually read. I found my self embarrassed and wondering why they wouldn't make it clearer that it should be censored. I think that censorship in libraries and book stores is a good thing. Yes, kids need to learn about relationships and intimacy, but that is their parents jobs. A @NUM1 year old girl should not be able to see an inappriate movie, magazine or book when ever she wants because we need to teach them ourselves. Censoring magazines gives children a chance to find who they are not what the world wants them to be. Censoring the book helps by keeping small children 'sheltered' they don't have to know everything by age ten. It gives them time to grow up themselves. The movies that are made give a false out look on what sex and intimacy really is. You flip through magazines and see child stars everywhere feeling the pressure to grow up. They think they have to dress like an adult and act like one too. Children see this and think that if @PERSON1 acts like that so should I. The magazine industry really hurts children in the long run. They put the super skinny model in a barely there bikini. Sports @CAPS3 prides its self on that. Maxim has the '@CAPS4 @NUM2 a bunch of @CAPS8 laying around in clothes that barely cover them. The boys all think that its @CAPS4 and that that's what every girl is supposed to look like. They get the @CAPS5 magazines and drool over how the center fold looks. Letting small children see this makes them think that they have to dress and act a certain way. It makes them think of you dress like this when you get older you can get all the boys too. Today there are so many books on how to keep your man happy, how to spice up the bedroom, @NUM3 things to try in bed tonight that a child could just walk and see. Many of these books have images of how do this and that. That it could really make a child and his or her parent(s) feel very uncomfortable. When yougo to @ORGANIZATION1 and @CAPS1 or any book store they have a relationship, love section that are all these kinds of books. Many young people @MONTH1 think love, oh I bet that's @CAPS7 or a @PERSON1 and @PERSON2 book. They see the cover that intrigue them. They think oh this girl is pretty.Censoring these books can give an ease to kids and parents. The kids can just grow up the way that they should. Now movies give a very large false pretence on what sexual intercorse really is. They see the people do all these things and they think that its normal and you don't have to worry about a thing, but kids here's the kicker sex is not just sex. When you have sex you have to make sure you are safe. This isn't just fun and games. In @LOCATION1 today many young @CAPS8 get raped. Does it show that on the movie no it doesn't, many young @CAPS8 as little as five go around thinking about how awful it was to raped, but yet we set back and let pornography be made. Pornography is false, @CAPS8 don't just look at eachother andget turned on. Sex is never going to just be sex, and by censoring the movies kids don't get that idea before they really learn and have the knowledge of what sex really means and is. Censoring is something that I strongly believe in. To this day my parents still make sure the movies we pick are appropriate. Parents and children can learn about sex whenever they want, but some parents choose to wait. By putting those movies and those books in a separate area it gives parents the chance to teach their kids, and the kids time to grow" 4 5 4 4 4 4 +3848 2 "Katherine Paterson wrote, ''If I had the right to remove that book from the shelf that work I abhor~~ then you also have exactly the same right and so does everyone else.'' quote.Having the right to do something is a part of freedom of speech almost. Its believing in your decesion or choice you have made. If I were to reflect my views on censorship in libraries, we all would have that same oppurtunity to state our opinion about what we feel should not be included. There could be unappropriate books in the library that we absolutly would not want our younger group of siblings reading. The best thing is to ask ourselves, Should we have the right to take our kids freedom an right to read, listen to, updated media and publications from them when we had it? Should we put a censorship on the libraries really? I feel that censoring a library would not be nessarry considering a library is a manual guide of history. Our libraries or organized from A to @CAPS1 in authors names, seperated from non fiction an fiction, cd's seperated in one section, movies one section, magazines, and adult books from children book seperated in diffrent sections. Libraries all across the world has had a kid that might have choose a book that was not appropriate for them to read but what kid hasn't. What would a book hurt them if theres plenty of bad influces, peer presure, violence, and sexually publicity everywhere and @PERCENT1 in the media. It would not be fair at all for us to rob our kids of the chance to read and learn from books. I feel no we should not take our learning form our babies. Growing up as a kid I loved being able to go to the library it helped to enhance my vocabulary, spelling and which I learned plenty new words. Books I read growing up wasn't perfectly @NUM1 but I could relate to alot of books I choose as a kid so no I feel we should not censor libraies we need them to be a fun place to our children and us to go to for learning, fun, confort and etc. We can't take that from our generation it just would not be right." 4 3 4 4 3 4 +3849 2 "Having offensive books and movies in a library shouldn't be allowed. If you were in a library and you saw a book or anything that you took offensive, more than likely someone else will find it offensive too. So, by eliminating the problem before anyone else sees it, will reduce problems before they even happen. Now, more then ever, you will find offensive things in libraries. More people get offended by lesser things now. One reason to have a censorship in libraries is that, if you had a child, would you want them going to the library and seeing derrogitory writings and movies? I would be very upset if my child had to see that. It's teaching them different values and it's teaching them that since it's in a library it must be okay to do out in the community. For example, if the library has a book or movie about doing drugs or anything sexual, they're going to look up to that and more then likely do those things, which they could end up harming themselves or others. If the goverment provides the taxes for the libraries, doesn't it show that our goverment doesn't care about the offensive items on the shelves? It gives them a bad name. If we look to our goverment for support and answers. How would we feel if they had no judgement about the offensive things in libraries? It would seem like they didn't care and that might cause panic throughout the country.Which would cause many more problems then needed. It would be a easier thing just to censor our libraries. If our libraries weren't consumed with negative and offensive literature, we would have a lot more room for things of greater value. We could have books and movies that are educational and will actually teach a person something. Rather than, lead them into making bad decisions. There are plenty of other sites and places you could get a book if you really wanted it. Not just the library has books. You could find one quite easily if you tried. If a library does have offensive things, I think they wouldn't have a large variety, so it would be a better decision just to look for it elsewhere, where you could find a larger quantity of the subject you are looking for. When I go to the library, I go there for educational books, not books that teach kids how to 'fill a bong' or 'different sex postitions.' I highly disagree and I think it's a negative outlook on our society by putting those things in our future generation's hands to read. So by putting censorship in our libraries, not only will calm down some of the problems that are re-occuring in our communities, it just might eliminate the problem completely." 4 4 4 4 4 4 +3850 2 "There is alot of different thing that can offensive to all sorts of people . so if we started taking thing off tv or out of book ,and magazines we would be always takeing stuff out. if it to graphic for kids put it in the adults area. would censorship be the awnser to take out stuff no. we need to be more aware of where ur children are an there would be less probblem. If we made the change the age limited on movie we might be even better off . If parent were to watch the movie then the parent would be able to tell them what ok an what not. we need to put more true history stuff in them an make them where you want to watch them we could be teaching kids more stuff so they know.the music should be censorship some what like with rap. there is alot of rap music that should be cleaned up so little kid dont hear it. There might even be a better way to controll this stuff so little kids cant get a hold of it. We can have teacher help tell the kids an let them no that it not right for them to watch that. we also need to look at some of the new cartoons that are on tv. There are some that need to be clean up. There are also lot of different in what people want. Then there some that dont care about it to. Maybe someday we will figure it out and be able to do it" 3 3 3 2 3 2 +3851 2 "A lot of people believe that books are useless and should not even be on a shelf. Well I believe that no book is useless nor should it be removed from shelves from any library. All books are worth something toward anything like careers, and being able to learn new things. Magazines @MONTH1 not be any help towards alot of things like books are, but they are something to entertain you. Music is not just something you listen to, but its something to help keep you nice and relaxed while you are reading a book. Movies can have a certain impact on someone; alot of people think movies are just entertainment for them to watch, but it could have some encouragement, or it can really show how a person acts if you really pay attention and look into what the movie is saying. No book, magazine, music, or movies should be taken off shelves because they are not there for you to read or listen to or watch, but those things are all there to tell people something about things people do not even know. People should take a second look at how all of these things can really affect a persons life. More books, magazines, music, and movies should be put in the libraries of school, or even the public libraries.The more people read, watch, or listen to these things the better they @MONTH1 understand life. I have noticed from experience that people just go to the library and read a book just to relax, but yet at the same time those people really do not understand what they are reading. Its really a shame that people do not look into what they are reading, thats why it would be important for more books to be put on the shelves. Just like Katherine Paterson said: 'If I have the right to remove that book from the shelf , the work I abhor, then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' If people really understood what that quote really means then they would have a better understanding of what books actually mean in life. We should be thankful to have authors like Katherine Paterson in our life because these authors are there to help us understand the meaning of these amazing books in this world." 3 3 3 4 4 4 +3852 2 "A library is a public place for all ages. They have many different kinds of books for specific reasons. For the children they have a nice comfy spot for them to pick a book and sit down and read it. For adults they have coffe tables, sofa seats, and many different things while they read their books. never should a library have to disclousre certain materials because of the ages that come in and out. Censoring a library would not make it any easier to keep young children away from certain materials that are offensive. I feel that when a child is in a library they should go to their specific areas for which they came for, they should also be monitored while in the library. Most kids woldn't go to a book that doesn't have a lot of pictures or colors in it any way. The library is a public place and is made for all ages, even though there are book stores that sell just adult books, movies, and magazines, they still shouldn't throw them out of a library. There should be equal rights all over, yes even in libraries. The world is full of offensive things period. Now while a child a is not within a library they could be at home or in a public place and see things that they could also see in a book at the library. The removal of certain books, movies, and magazines wouldn't really stop anything. I think that if the parents teach thier children right from wrong there is nothing wrong with them being in a library that has adult books, movies, and magazines. If I owned a library I personally would not mind all kinds of books that are appropriate to a certain exstint in my selction of books. I have been to plenty of libraries and have seen stuff that I thought shouldn't be in thier but at the same I was not in my right section or doing what I was supposed to be doing. This subject really doesn't bother me, so no I don't think they should remover certain books just because children are in the library." 3 3 3 3 3 3 +3853 2 "Censorship @CAPS1 was the last time someone told you what you could, and couldn't do? Especially if it was somthing you didn't want to do. How'd that make you feel? You probably didn't want to do it did you. Censorship is somewhat the same way. The other day, my friends and i wanted to go see a new movie that just came out. We weren't aloud to see it though. You know why? Due to censorship, we weren't old enough to be able to see this movie. So, now the only way we'll be able to see this movie is if our parents go with us. Have you ever had your parents go with you and your friends? Doesn't go so well does it. Censorship violates freedom of being different. You can't listen to music, watch movies, or even read certain books, unless your of a certain age. That's not fair. Censorship is like a modern day @CAPS2. Tells you what you can and can't do, how you can dress, and what to say. Everybody would be the same then. How did @CAPS2 do with his idea, he failed miserably. How do you think the @CAPS4 victims felt, they were punished for believing, or doing something different. They weren't hurting anybody, they just wanted to live they're lives a diffent way. Thats what censorships doing, classifying people in to certain groups. telling them what they can and can't see, do, or listen to. Thats what makes the world different, people that are different. Dont't make everyone be the same." 4 3 4 4 4 4 +3854 2 "Everyone has different views on works of literature, wheather it be books, magazines, movies, or music. If libraries were to removes this stuff from the shelves then they would be loosing business, they would be loosing children, and they would taking away the reason of it being on the shelves. These libraries would be loosing business to the people who maybe like the kind of stuff that they @MONTH1 not. The people running the business @MONTH1 decide to take out older pieces of work that @MONTH1 offend younger people in this generation. The stuff wrote, sang, or played in these things @MONTH1 harm these people but that is not what it is in there for. The things that harm people are in there to show people in the younger generations how life was lived in the older days, as in the slaves. This would play a roll on children that use this library also. If this literature was taken out, children @MONTH1 think that things have always been the way they are as they see it. If these children grew up and were to see a book, hear a song, or watch a movie about how things were in the olden days, and how much it has changed, then they @MONTH1 never believe it because they were not taught as children. As they are older, they @MONTH1 still never have the interest to learn about these types of things because they never knew about them growing up. These things are wrote to teach people and children about how things used to be, they are not used to harm people. When people take these things harmful, they are not getting the true meaning that the author had in mind when the wrote them. Libraries should keep these peices of literature on their shelves, only to teach young people of what the world has came from and how their older relatives lived, and what they came from" 3 4 3 4 4 4 +3855 2 "I feel that it should be censorship in libraries.Children shouldnt be able to go to the library and see certain books if they aren't supposed to.This could save people from getting in trouble and reading thye wrong stuff. There should be censorship in libraries.I feel that it should be censorship because they already have stores that contain certain things that kids aren't able to buy.One other reason that i feel that it should be censorship is because children will probably read something and take it the wromg way.When you are a kid and you know that there is something that you know for sure you shouldnt be reading or watching,you try your best to sneak and read or watch whatever it @MONTH1 be.Thats why if we had censorship,they wouldnt have a chane to do so.Another reason i say we should have censorship is because libraries are public, and if you have to be a certain age to look at or view something then you should nt have it in the library. As you can see,these are the reasons that i feel we should have censorship in libraries.With censorship nobody will feel left out and everyone will be treated equally and feel the same.They already have book stores and online site, where u can buy books and movies,and they have no censorship u just have to be a certain age and have a credit card.That way, they are for sure it is okay for you to rent things from them because you have to be a certain age to have a credit card.So with that being said,I feel there should be censorship in libraries." 3 3 3 3 3 3 +3856 2 "The library is a place for people to go and read whatever they want. Some people just enjoy reading and others go to find information. People are allowed to read and write whatever they want and sometimes it might offend others but there's nothing you can really do about it. Sometimes there might be inapropriate books at the library or the super market but even if it doesnt apply to you it might to someome else, for instance say there's a book or magazine talking about being homosexual and you dont think it should be allowed but someone who is might find it interesting to see how other people deal with it. Another topic most people argue about is books about sex or drugs. Adults who have children don't want them reading about those things and in some ways they might because in a book it might show the reader how there bad for you and that you shouldnt do them. I know I ike reading books like that because it just shows me how it messes peoples lives up and I dont want to live like that. There are some things I dont think should be allowed like books, magizines, music, and movies about racialism. I don't think its right for people to talk about others just because there skin is a different color, they have just as much right to be here as we do. Another thing that bothers me are movies about people that have problems like adhd or down syndrome and other kids bullying them because its not there fault there like that and its just inapropriate. Some people don't realize what they write might hurt others and sometimes they write them for that purpose and even though we @MONTH1 complain about them no good ever comes out of it because everyone has a freedom of speech and we just have to deal with it and go on with our lives. And if there are inapropriate things at the library you dont like or don't want your children to see then don't let them go." 4 4 4 4 4 4 +3857 2 "I think that some material should be removed from the shelves if they are racist or contain unsightly images. But that brings up the question about racism almost all of the classic books have some form of racism in them such as To @CAPS1 a @CAPS2 @CAPS3 that book uses the @CAPS4 word to describe african americans, but when that book was published that was common talk now people look at you like you have just murdered there first born child if youu were to use that word. For the most part though books are not all that offensive at least none of the books I read. I know that there are books and magazines such as playboy and maxim that are offensive to women and have probably cause a lot of breakups and divorces, but they have laws on who are able to buy things like that. I know that kids still have a way of owning magazines like that but they are a small percentage of the kids. I know that during @CAPS5 @CAPS6 @CAPS7 over in germany many books were banded because they had something to do with catholicism or something that @PERSON3 believed was bad and not what he believed was the perfect race. I know that for a short time alot of what @PERSON2 wrote was banned for using the @CAPS4 word but people have to realize that when @PERSON2 was alive that was everyday laungage. As for me being catholic there is a codex of forbidden books that is a list of books that I am not supposed to read as a good catholic. I have no idea what those books are and what got them on this list but they must be very rude and vulgar to be on this list. I can see how some of those books could be banned. As for music I think that the only music that should be banned is the kind of music that talks about killing police officers and hurting the people that are trying to make our country a safer place. I know that all of this rap genre is what my generation is into even though I dont see why kids like that kind of music. I also think that music produced by the arian brotherhood should not be allowed in libraries because there music is overtly racist. I dont think that movies shouyld be banned form the libraries because of violence or anytning of that nature. I do think that the movie should be banned if it contians anything of the nature of pornagraphy but they do not let those kinds of movie in the libraries anyway so they are a step ahead of me. I do have to agree with Katherine Paterson on what she said that if I have those rights then everyone else does to and there will be no books on the shelves because someone will find that offensive then someone else will find something else offensive and soon eventually there will be no books left on the library shelves. My view of what I think is offensive is very relaxed compared to other's I do not get offended at a lot of things" 3 3 3 3 3 3 +3858 2 "The @CAPS1 Materials Have you ever came acroos a book that you thought was really good, but knew it might show certain offense to someone you know. My censorship on materials that show offense in libraries is they should not be taking off the shelves. People should have ther own choice of books, and who has the right to tell someone what they should read. My opinion is that materials that @MONTH1 be offensive to certain individuals should not be taking off the shelf, but put in a certain section that says adult material such as books, music, movies,etc.. I myself have experienced not being able to get a certain movie because of my age. The book was called @CAPS2 @PERSON1, but it was just full of action/adventure.This was very unfair in my eyes, just because I was young I couldnt check out a certain movie. This was experience that I been through, which lead me to my opinion that materials that might show certain offenseto someone should not be removed. Another reason that the materials should stay on the shelf is because many people like different things. No one is going to have the same interest all the time. So by takiny materials away is just helping one person, but hurting many by taking somethimg they @MONTH1 be interested in. I can understand that people have been through things, and might not be happy that offensive materials are around. Then again I think all materials are not the same they can get the materials they enjoy, and leave the other materials up to other people to choose from. In conclusion I believe that the materials that show offense to certain people should stay. The reason being is because by the material that might show offense to an individual, might just be very interesting to another person. This a saying I heard before from the ebony magazine ,'another person junk @MONTH1 be someone else treasure' which I believe is a good saying for this topic" 3 3 3 3 3 3 +3859 2 "I do not feel these types of things should not be taken off the shelves.What i think is that thing should come with a rateing because this is a free country and for some one to do something like that it would be takeing away someone's freedom of speach.To many people have faught in the past for just simply freedom of speach.I think that if people rate the thing's that come out then they will not go in to the wrong hands. That's like saying they should have taken @CAPS1 @CAPS2 @CAPS3 when it first came out off the market because it has violance in it ,profange language,and guns that company will had lost a lot of money because it is inapprotive for kids.I think that parent's shouldn't go buy a @NUM1 or @NUM2 years old something like that but some parents do .It not the creaters fault of the actions of how people react to what ever is put out there because the buyers have to be more responseable and make sure that what ever it is is supervised and carefully montoired. There's an old saying ' every thing isn't made for every body' .I strongly belive that;That saying is so true .Every body don't like the same thing that some one eles likes but its okay for that person but it's not okay for you because as they say everything isn't for every body and you can't fource nothing on some one.Well every thing isn't approtive for every one we all have are limites to every thing and if you watch what kids watch and do than things want be so inapprotive for this wold . Certion books young children should not read because they have sex in them and they talk about things that a child should not even be thinking about at that age.When children read books like that they tend to think about sex and how what they read about will feel but children should not be thinking about that type of stuff that why its there parent's responseabitly to montoir what there children read because that there job as parent's to do not the person who wrote the book because they @MONTH1 think there writing to a much older group that can relate to what there talking about but then again there just speacking there mind and infourceing there freedom of speach right one of the rights that we as a people together have been fighting for .I also feel that music help's us to express are selfs so if someone feels that the music is inapprotive for there child then they need to watch what there child is listen to.Music brings out the different moods in every body.All magazines are not for every one because as we all know there are adult magazines the produce certion imagary that children should not see but you can not blame the creater only the buyer is in fault for leaving it in the wrong place after there done with it .There just people trying to make money off things that they know that people like." 3 2 3 3 2 3 +3860 2 "Don't you hate when you come across a book that you wish was never written? I'm sure we all come to that point in our lives, constant readers, or not. Like a qoute i once read, 'All of us can think of a book that we hope none of children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf then you also have exactly the same right and so does everone else. And then we have no books left on the shelf for any of us.' - Katherine Paterson, Author If you ask me, I think there should be a certain autority to these books. Maybe if we could make a petition and have at least @NUM1 people sign it then the book could be removed. All of this goes for music, movies, magazines, even bibles in librarys. I'm not saying we should make a law that says if one person dosen't like something then no body should have the right to have it. But as a public if enough people all agree we shouldn't have something then maybe its best that we dont. We all worry about our children, having to keep a constant eye on them making sure there not getting into something there not supposed to be in. Same goes with books and movies, even music and magazines nowadays, and for certain people, even bibles. Now dont get me wrong, I'm sure we all know that when a child goes to a library and trys to check out an 'inapropriate' book then the checkout counter will deny the child and take the book. But just think for a minute here, That doesnt meen the child cant go into the library find a book and just read it there. Theres also the senario where, mind me it @MONTH1 not be your child but with todays crime records then this is very probable, the child could grab a book, magazine, even a film and just steal it. In the long run there are many things we can do to prevent things like this from happening. There could be an adult section of the library, not just for '@CAPS1' rated books or films but just a place where we can keep all the books we dont think children should be reading. Still we should definately have the option to petition off books we don't think our children should be reading. Think what you will but this is my opinion of library censorship, hopefully its yours now too." 3 3 3 3 3 3 +3861 2 "Why Should you be offended? The @CAPS1 is a place where you come and get what you like.The Libraries are organized for a reason,what I like is my prefence.You don't have to look at it if you don't want to. Everyone has there own taste. Books, movies, music, and magazines are made for people to look at, read, watch. ect.. People have a prefence and they like to have it avaible when they want it. Libraries are great use for that. People go to get what they like to watch, read, and listen. And other people should not get offended by what other like. Most Libraries are organized into sections for children, young adults, and adults. If there is material that you don't think is 'ok' for that sections then you can ask for it to be removed to another section. But don't think something is offensive and make it be removed because you don't like it. How is that fare to others who might like it. If you are offended by a material that is in a section of the @CAPS1 that you think is not 'ok' then it ok for it to be moved to another section. You don't have to look at something if you don't like it. Someone else might like it. Libraries are made for all people, and everyone has there own taste. Don't be offended by what others like." 3 3 3 3 3 3 +3862 2 "Libraries are a place for everyone; from young children, to the eldery, therefore there is material to suite all ages. When you go to a library you assume that no matter what kind of book you are wanting to read, they will have it. From personal prefrences, to school research projects, libraries should have it all right? Well some libraries want to take that concept away. A library has books on nearly all subjects. That is because of the individual differences of the people that go to the library. Someone of an extremist religion group could be going there to read on something of their religion. If a strict @CAPS1 would happen to find a book on the extreme religion they could be offended. That situation could go both ways though. Because of the individuality of people and different beliefs and customs we are all going to appreciate and depreciate all different kinds of literature. Most of the libraries are big enough to be sorted into sections. There are sections for young adults, mature adults, children, non fiction, fiction, science fiction, and so on. If a child ventures off to the mature adult section and flips through the pages of a book that is above their maturity level, then that is the childs fault. The mature people who can handle the content of more adult-orientated books shouldn't be punished by the library removing all books of that content because a child didn't stay in their designated area. With different cultural beliefs comes different beliefs and views of everyday things. Some readers could strongly disagree with a book and others could recommend it to all of their friends and family. One book to one person could mean something totally different to another. It could be understandable if there were books about sex, for example, right next to the childrens' books, but that isn't the case in most libraries. Libraries could even have a restricted section that warns readers about the content of material in the books in that specific area. Books in libraries are wrote for multiple kinds of people. Age, gender, religion, maturity, race, political beliefs, and so on will all effect the way you take to a book. Whether or not a book appeals to you is about your beliefs, values, or customs. With that being said, why would a library take away books that only a certain percentage of people will disagree with? Taking away books of a certain subject could upset people that like that type of book or it could even pertain to their everyday lives. A library is a place of knowlegde. It is filled with facts, beliefs, theories, and opinions of people. Wouldn't removing someones opportunity to read into a subject be revoking the author and their freedom of speech? Just because of a controversial subject or mature topic shouldn't mean that people shouldn't be allowed to read it. If people could only read certain literature that someone else is deciding whether or not it is okay to read, then where is their freedom? A library is a place for everyone. It has all different kinds of books for all different kinds of people. A libraries interior could be arranged to that the young children aren't going to find a book about sex near their kid books. Taking away certain books pertaining to controversial subjects isn't fair to those who don't disagree with that topic. A library should be a place of balance. A place where someone could read on anything they want to, not what certain people think they should or shouldn't read" 5 4 5 4 4 4 +3863 2 "I believe everyone has the right to voice there own oppinion on life. If we censor ones books, music, or movies because they are inapropriate, it would be like silencing an oppinion that stands out among the others. If we silence the author and there story or song how will we be able to view life in another persons view? In the @ORGANIZATION1 we have the freedom of speech and press. these amendments make it so that otheres can voice an oppinion with out being shot down. Although we have the amendments there are still restrictions on what we are aloud to publish. Say we found a diary writen by @PERSON1? Are we aloud to view his deepest darkest thoughts? or Are we going to say that it is too dark and depressing for the average person's eyes. His ideas are different, does that mean we shouldn't show them? no we should show them, we need to educate people that there are indeed different ways of viewing life. I believe that no matter whos ideas it is, if aloud by the author, should be aloud to be read and comprehend in our own way. If one wishes to learn about how to murder in a @CAPS1 then i think they should be aloud to do so. The reason why; The @CAPS1 is becoming absolete, the technology era is officially here. There is not a thing we can't find in @CAPS1 that can't be found online. Although the @CAPS1 is a government run facility, many people will go elsewhere to find the materials wanted to view the censored media. It is true that if we allowed 'censored' material into a @CAPS1 a child could find it. But like the internet you can block things from those kids. All voices need to be heard, even if it is racist, sexist, biest, or just insane. these are ways to view the persepective or the reason behind hate and war. if we can learn from other mind sets through books, music, movies and movies, then i think we should be aloud to. Nothing should be blocked from the public. Every one has the right to voice there own oppinion through there own way." 3 3 3 3 3 3 +3864 2 "KEEP @CAPS1 ON THE SHELF! I think we should not get rid of any books that are in the library. If we did that then there wouldn't be any books left. The only thing we should be worried about is the rated @CAPS2 movies. Yeah those can be taken out of the library. If one book is offensive to someone, then dont get it, but someone else might like that book. For example, an older woman is looking through this magazine, and she sees this teenage woman taking drugs, or being half naked. Although the teen sitting right next to her likes that gossip. We shouldn't get rid of any books because then we would only be down to one genre. There wouldn't be any categories left in the library. A good idea is to separate the books, put the ones that seem offensive in the back. keep the childrens books away from the big mystery horror books. Another example is this. A student goes to the library to work on a history report over slavory, but there isn't any books on slavory because somebody thought it was offensive against african americans. I understand that there is reasons why some books are taken out of the library because of some sexual content. Children do not need to be around those kinds of books. Or some books being taken out because of religious belifs. like one book being taken out because it was about worshiping the devil, or something. The movie situation i understand. I wouldn't want my little daughter walking up and grabbing something that has a sex scene, or drug content in it. You can take those off the shelf, but wait, right there is another example of why it shouldn't get taken off the shelf. Just because i want it off the shelf doesn't mean everybody wants it off the shelf. Then the libraries movie business would be over. To sum everything up, nobody should choose what should be in the library and what shouldn't. Personally i think that there should be a variety in the library. If not everybody would get bored of the same books. Over and over. KEEP @CAPS1 ON THE SHELF" 4 4 4 4 4 4 +3865 2 "Katherine Paterson, who is an author, thought that if a book was not one that she would want her children to read that it should be taken off the shelf at the library. If you found a book in your public library offensive, would you want that book removed from your sight and public view? Personally, I wouldn't. I would not want the book to be removed because that book could be a good learning experience for others. In this essay, I will explain from my personal experience @CAPS5 I disagree with Katherine Paterson. In the sixth grade, I learned about how to find a certain book in a public library using a system. We had to find certain books in our school library, using this system, as an assignment. One of the books we had to find was the @CAPS1 @CAPS2. I found it very easily because I knew where it should have been and what it looks like. But there was a child in my class who had never seen a @CAPS2 in her life. After helping her find the @CAPS2, she ask, '@CAPS5 is this book so important to people? I don't understand it.' I explained to her in the best of my ability the life of @CAPS6 and @CAPS5 this was important to me. She soon found out that it was something she wanted to learn more about. It is against the law in some states that a @CAPS2 be in school at all. This is because of others beliefs or non-beliefs. If it were not for the library having the @CAPS2 on a shelf that girl would never have learned something that is now important to her. A book can be offensive to other people but that book can change a person's life forever. Katherine Paterson believed that some books should not be found in libraries. Unfortunatley, other people think this also. One book can change a person's life, what if that book was not in the library to change another?" 4 4 4 4 4 4 +3866 2 "I feel that a library can have any kind of book stating any kind of material. Its a library, a place where people go to get information. If you dont want your kid, or kids reading, watching, or listening to those kinds of material then you shouldn't have to let them read, listen to or watch any offensive material, untill they are at a certain age and are mature enough about it. It is a library, and they are gonna have a wide variety of books. I dont think any book should be removed just because someone gets offended or its to ghory or has to many curse words for your kid. Not everyone gets offended by the same things, or the same material. If you do then dont read that book or watch that movie, but that shouldn't mean it has to be taken off the shelf just because one person got offended by it. Libraries are made for the community and the people in it, not just one person. Other people might want to read or watch the material that some people get offended by. This is what I think on the censorship on the book, movies, music, magazine, etc. Its a library, they are going to have a bunch of material. If you find something offensive, be mature, put it back and find something else to read, watch or listen to" 4 4 4 3 3 3 +3867 2 "In a library, should certain materials, such as books, music, movies, magazines, etc., be removed from the shelves if they are found offensive? Many people @MONTH1 feel upset if they find a book or magazine or any type of material that is inappropiate for anyone to see/hear. Inappropiate material is commonly referred to as pictures and or words that @MONTH1 offend people. The words in songs can be offensive. Talking about girls in disrespectful ways in music can offend girls and listeners. Pictures can also be offensive in many ways such as sex, race, and violence. I believe that, if a book, music, movies, or magazines upset you then you should stay away from that section or just that material in particular. If you have been to a library you see that kids mainly stay in the kids section anyways; and if you're an adult then you should be mature enough to ignore what bothers you. I have been in a library a few times in my life. When I search for what im looking for, I ignore what offends me or upsets me. In a library, should certain materials, such as books, music, movies, magazines, etc., be removed from the shelves if they are found offensive? My answer is no, for the reasons I have listed above. People should be mature enough to stay away from and not let the offensive materials in a library get to them" 3 3 3 4 4 4 +3868 2 "Whose to say what is appropriate for whom? whose to judge right and wrong for anyone? It depends on a point of view like most things. The sheltered must learn one day, and if kids learn now about the truth, such as, not to stick forks in outlets, then they won't be as curious when they are older. Being sheltered is not always a good thing and censor ship of what we read, watch, or listen to is ridculous, and disrespectful to authors. In matters of censorship, I find it to be pointless. Censorship doesn't prevent your kids from learning about anything, except mother won't let me watch that. it just keeps your kids more curious and more obligated to hide things from you and like they cannot ask you questions or be open and honest with you. Causes children to go behind your back more and when they're in trouble they'll as if your they're last place where they can ask for help, where you should be they're first resort. No, I do not believe that libraries should censor anything. Its altering a authors work. How would it feel if you had written something and it had been published and was in the library and didn't like something about it so they decided to just bleep it out or not allow certain people to read it? I believe censorship should be illegal not required. Sheltering things from kids prevents them from maturing, and discovering the real world. The idea that the world has no evil, or hiding the evil from your children will in most cases cause them to rebel and in other cases leave them unprepared for the future and the real world. Wouldn't you rather be able to help your kids and teach them about things instead of tell them that everything is perfect and only bad people use that kind of language. Or make them feel like a bad person for do something your grandparents did when they were young? I conclude that censorship is injust, unfair, and is the real wrong. Not the profanity or the violence that will one day be apart of their life in some way. You don't go through everyday in the 'real world' with a mindset of there's nothing wrong in this world. Or everything is censored and everything is controlled I believe censorship is just another way of controlling the mind through nuture" 4 4 4 4 4 4 +3869 2 "I believe that it is unnecessary to remove items off shelves for offensive reasons. I feel this way for several reasons, but three in particular. First, it @MONTH1 be a book, movie, or magazine that someone plans on reading, and removing an item will let down the customer. Second, @CAPS1 are many solutions to try out before taking an item away. Last, customers have to accept some decisions a business decides to make. First, it @MONTH1 be a book, movie, or magazine that someone plans on reading, and removing an item will let down the customer. People come to libraries to look at what they're interested in to entertain themselves. @CAPS1 should be all types of literation in the library for all types of people, because everyone doesn't think alike. Everytime an item is removed off of a shelf, @CAPS1 will be an unsatisfied customer. Second, @CAPS1 are many solutions to try out before taking an item away. Libraries always have some type of organization. In order to not offend anyone, items should be divided into their own categories inside their own sections. This solution will prevent anyone from seeing something that offends them. If that doesn't help, librarians should post a sign stating what type of objects are inside on the front door, so everyone knows before they enter. Last, customers have to accept some decisions a business decides to make. A customers' needs and wants should be met at all times, unless a customer is trying to run the business as if it was their own. If a particular library chooses to have certain types of items, because they know what what readers' like, then no one else should involve theirself. If I owned a library, I would be upset if a customer removed a book off a shelf, because they would be interfering with my business. In conclusion, I beleve it is unnecessary to remove items off shelves for three reasons. First, it @MONTH1 be a book, movie, or magazine that someone plans on reading. Second, @CAPS1 are many solutions to try out before taking an item away. Last, customers have to accept some decisions a business decides to make. I believe I expressed my opinion to the fullest. Although some people @MONTH1 disagree with the way I feel, I'm sticking with it. @CAPS1 defintly wouldn't be any books left for any of us if items were removed for offensive reasons." 3 4 3 4 4 4 +3870 2 "Newpaper company,@CAPS1 am writing to this company on why I think the certain books, music, movies and magazine should be removed form the shelves if they are found offensive. @CAPS1 wirting to tell you from my own experience and readings that will convince a argument. @CAPS1 reflecting my view on censorship in libraries. @CAPS1 writing so you can hear me out on what I have to say and persuasive you on this essay. First, I think know book should be taking off on any shelf of any library. Rather if it was to do with people thoughts on religious, race or any other thing that has been offensive to anyone in the past. For example, gay and lesbian marriage peoples thoughts and opinion on this topic. I beileve that know one should disrespect anyone opinion on what they have to say. It depends on what kind of language your using for this type of subject if its has harsh words and its suppose to be harmful, then yes it should be remove. Another thing is children taken books off shelves. Maybe you should ascort your child in the child section and telling him or her what they should not do like taking stuff down that they are not suppose to. What I'm saying is if suppose to hurt other and is offensive using negatively words to harm others feelings, it should be remove. My letter to you was to show you on my opinion on what I think should be in a library or not. I have use some examples and common sense to show you my point of view on what I think is right or wrong in this situation. I hope my topics and argurment has convince you on if you should remove a book from a shelf. @ORGANIZATION1" 3 3 3 3 3 3 +3871 2 "Are there universally evil books that no one should read? Are good and bad no longer matters of opinion for the readers themselves? The answer is no. Censorship is a terrible practice masquerading as a boon. The right to read certain books should not be left to a conservative few, because everyone has their own opinion about everything. There is always something we can potentially learn from books, and it's never right to take that away. Freedom of speech should certainly come into play here as well, allowing the authors' words to be heard without interference from those who would dictate what we read. There is a reason libraries have many sections. They have to cater to the individual tastes of the masses, without regard to what other people find offensive. If one was to go through the library and burn every book they did not like, there would be scarcely anything left. Send in another person with different tastes, and then you have a completely empty library. It is far better to leave all the books alone so that everyone can find something to enjoy reading. Basically, there are bound to be people who have similar opinions to the author of just about anything, so allow the authors to share those opinions. Then we have the knowledge portion of the issue. Offensive material to one person might be what another person wants or needs to read, whether for recreation or class. There is much to be learned in the way of psychology and human nature from almost any writing. Perhaps a restricted section would be in order if the problem would involve corruption of innocent minds, but a full censor would never be necessary. Finally, there is an amendment in the @CAPS1 of @CAPS2 for preventing censorship. It is unconstitutional to restrict any form of expressive speech, whether it be books, movies, music, or magazines. And what is more restrictive to an author than to have their books banned? The greatest difference between our country and a totalitarian government is the simple freedom allowed in the @LOCATION1. If we start restricting that freedom, what are we then? In short, censorship is a harmful practice that should never be used. People all have their own opinions, all media can be learned from, and our freedom should not be restricted. The practice of censorship is what should truly be banned from the shelves." 4 4 4 4 4 4 +3872 2 "Dear @CAPS1, @CAPS2 is it safe to draw the line on what kids should or should not see as far as the world is concerned. What makes kids behave better, being sheltered from life or being life smart and knowing what is going on in this world. I think its safe to say what we do or do not want our kids to do, say ect. But in other terms do we have full conrol of our kids @NUM1. I knw that this might sound wierd but I strongly believe in the simple fact hat kids are being over sheltered to day! Our kids are groing up with the new technology. Its the centry for computers and laptops and gaming systems. Our kids dont know what its like to go out side anymore. The world has so much to offer us yet, we turn it down beacuse we see what all the new advances have to offer as well. I think it is very important to be books smart as well as street smart, if you spend all your @CAPS3 doing one thing at at @CAPS3 you are gonna end up lacking on one thing. I blelieve grades will come. I think that our kids are over sheletered for the simple fact that when our kids see something that we dont want them to see, or there not ready for then there not allowed to see it it, but whos to say on the days your not watching them that there not going to go in the real world and just see exactly what you didnt want them too! This is why its important for you to teachyour child what is going on in the world and noth leave them in the dark. Also we are living in the new age of life, were computers and laptops are the number one thing in the world right now for people to be usign and on throught the day. It is hard for kids to understand the realness of life since ever thing is done over the internet now. It is a privilage to be so far advanced in the world yet we still dont know what to do! As we get older we are not gonna know nearly as much stuff as need to be known and taught beacuse as we get older were gettomg, more logic and more information over the materials on the web. Kids will not know how to fix cars or know to start up a lawm mower. I think that books should not be taken off te shelf beacuse as the day goes by kids reality is getting taken and taken more and more! I think that it is a big deal what kids learn about the everyday life becuse that is our future and if they have no idea what is going on and it scares me beacuse the are going to be alot more battles for our kids to fight we just have to teach them all that we can and hope that they become the best people they can be in life ! Thank You for Your @CAPS3! Deven" 4 4 4 2 4 2 +3873 2 "Censorship in @ORGANIZATION1 has been around for as long as their has been the various mediums of art. In many cases the censorship @CAPS9 of what many would agree as not suitable material for anyone to create and enjoy. But then in other more serious issues that the censor has deemed not suitable for a certain audience, or even to a whole country. What @CAPS9 it that gives a select few the right to ban any given number of imaginative creations, even if they are in some aspects more lued in nature? Censorship has and @CAPS9 still a very usefull tool that many governments employ to accomplish a wide variety of tasks, considered to ensure the 'safety' of both our minds and bodies. Some of the more widely know cases of this most despicable tactic of control come from the countries of @CAPS1 @CAPS2 @LOCATION3, @LOCATION4R, @CAPS3 @LOCATION5, and @LOCATION2. In these countries all materials that are deemed potentially hazardous to the wellfare of the @ORGANIZATION2 are heavily policed and in many cases destroyed. The most noteworthy instances of this occured in @LOCATION3, where the @CAPS4 would gather up large amounts of books from the people and burn them in massive rallies. The people were so enthralled by the @CAPS5 leadership that they would often times freely relenquish their books with no resistance, and in some cases join in and throw the books in themselves. The same thing @CAPS9 still occuring in @LOCATION5 today, wtih a censor still on their internet surfing possibilities. In @DATE1 the popular search engine @ORGANIZATION3 attempted to set up shop in the country, but quickly entered into dispute with the @ORGANIZATION2 about the censoring of certain materials. Some months after the argument began over the censoring of @LOCATION5's people, the company completely removed all bans for a short time, much to the dismay of the @ORGANIZATION2. During that time it @CAPS9 reported that some of the main search topics were that of many social reformers and of different religions than that of the @ORGANIZATION2's sanctioned religion. But the one country that takes the cake for having the most censorship @CAPS9 @LOCATION2, they're @ORGANIZATION2 has restricted and policed any technology in the country. The common people live in a so called '@CAPS6 @CAPS7 @CAPS8'. In our home country of the @LOCATION1 we are promised many rights to protect our freedom as citizens. We are promised the freedom of speech as well as press, and in censoring our libraries they would restrict both. If we do not stand up and protect our rights, then who will? Are we not a @ORGANIZATION2 for the people, by the people? Why are we allowing the censorship of our own intellectual creations in a place that was created to provide access to said materials for those who are less fortunate, so they themselves can gain knowledge and understanding. If we as a people were to allow such a blatent restriction on our given freedoms, then we are in no position to have them in the first place. Our country was founded and later almost torn apart by the men and women who were willing to risk it all in order to protect their freedoms in this country. Are we descendants of those same people? If so why should we allow ourselves to squander what was hard fought for and earned by our forefathers. The censor often poses a few questions that do cause one to wonder '@CAPS9 it really better off this way?'. They point out that for every great work of intellegent art, other of a more deviant nature create some more innapropriate pieces of 'art'. Pornography @CAPS9 the most prevalent of their examples, pointing out that if they did not restrict it, then who would stop the hundreds of children that not only roam the libraries bookshelves but also the provided internet services. It @CAPS9 a reasonable question, once that should be take into consideration, but in answer to it I believe that it @CAPS9 and will always be the job of the parent or guardian that bring the child with them. It @CAPS9 simply not enough to drop a child off at the local library and hope they find something interesting. Helping that child find what they want @CAPS9 a journey that should be taken by both the parent and the child. And what about those who believe the censor isn't always right about what @CAPS9 and what @CAPS9 not acceptable for the general @ORGANIZATION1? As author Katherine Paterson once said 'All of us can think of a book that we hope none or any other children have taken off the shelf. But if I have the right to remove that book from the shelf-- that work I abhor -- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' Censorship has been around for a very long time, and will most likely never be fully cut out of any functioning @ORGANIZATION2. That @CAPS9 sadly an inevibility that cannot be avoided. But the amount that it occurs in your daily life will be directly affected by how much of your freedom you are willing to stand up for." 5 6 5 4 4 4 +3874 2 "Almost everyone in this world reads. Many people have to read almost every day, people @MONTH1 not realize it but they do. Reading is just a part of life If you dont know how to read you are most likely to not be sucessful. Even if you know how to read a little bit, if you just the knew the basic words people would probally fine but people deffinatly need to know how to read. No, I do not think they should take anything off the shelf. Why would they take anything off the shelf? If anyone finds it offensive they should simally not read it. Just because it offends them other people @MONTH1 find it interesting. If peolpe just started taking books off the shelf because they were offended by them, who knows how many books we would have left. people can be offended in the most easiest ways. We could have no books on the shelf because almost every book out there can offend someone in a way.The same thing with moives, moives can offende people justr the same as books. I think moives would offend more than a book would. In conclusion, Books, movies or anything of that matter should not be took off the shelf because it offended someone. Many people get offended in this word way to easy. One person @MONTH1 love a book and another person hate it. Just because you hate it does not mean it should be tooken off the shelfs" 3 3 3 3 3 3 +3875 2 "Censorship is one of many important issues facing the world today. Many argue that materials considered offensive are damaging to society, and should not be tolerated. Others believe that freedom of speech is a universal right that should extend to any and all forms of human expression. The issue is further complicated by the concept of what is and is not appropriate for children. Are there materials that are acceptable for adults, but not kids? Questions such as this have plagued humanity for hundreds of years, and there is no simple solution. Today, so many people think of censorship as a bad word. In fact, there is nothin inherently wrong with the concept of censorship. It is only when people begin to abuse their power and censor materials that should not be censored that problems arise. For example, many countries have restrictions on selling and owning copies of '@PERSON2,' the book that @PERSON1 wrote as a sort of mission statement for @LOCATION1. While many of the ideas contained within the book are horribly offensive, it still should not be censored. People have the right to read the book and form their own opinions on @PERSON1's teachings, it is not the government's place to decide for them. While oppressive dictatorship and mass-murder are crimes, reading about them is not. There are few materials available that should rightfully be censored and taken out of adult hands. If someone understands what they are reading, and are able to form an educated opinion on the material, then nobody has the right to stop them from expanding their knowledge, or expressing themself by creating similar material. However, the issue changes completely when one considers children. If adults want to view pornography, or read accounts of extreme violence, that is their business. However, those concepts are obviously inappropriate for children, and any decent parent wouldn't want their young kids filling their heads with such things. Children need to be slowly and gently introduced to these concepts so they can fully understand them. In the case of children, careful censorship is necessary for healthy development. When it comes to libraries, there are very few materials that should be banned. If libraries are meant to be places of learning, then one has no right to limit the information they contain. However, that does not mean there should not be any limitations. Libraries should offer a children's section, as many do, that would contain materials only appropriate for youngsters. Then, it becomes the parents' responsibilty to ensure that their child stays in that section. When a parent believes the child is ready to explore the adult section, they are free to take their kid there. This system gives parents the ability to keep their children away from harmful material, without taking it out of the hands of adults. Many would argue that unsupervised children could gain access to inappropriate material, but that is really an issue that needs to be handled by parents, not the library. After all, it's better that a few kids see something they shouldn't have than all adults have to read censored material. In conclusion, censorship is a concept that has its place in society, but must be used very carefully. When the goal is to protect people, especially children, from harmful material, it can be used sparingly. However, when those in power use censorship to attack ideas they disagree with, it becomes a form of oppression. Above all else, people must be free to educate themselves, form their own opinions, and express themselves. If someone doesn't like a piece of material, they can leave it alone, but they should never try to take it out of someone else's hands" 5 4 5 4 4 4 +3876 2 "Books can make a very deep impression on whoever reads them, and sometimes these impressions are not appropriate for the reader. Books that are found inappropriate to children or even teenagers should be reconsidered to be removed off shelves that are exposed to children or teenagers. I think that children should not learn inappropriate material if they are not ready to learn about it, in other words if they are not age appropriate. Books are just one thing, there are also movies, music, magazines, and etc. All of these things can give wrong ideas to our children and teenagers. Inappropriate media or imformation should not be exposed to people that are not ready, or mature enough to watch movies, or read books that could harm or give them wrong impressions. Children that have read books or watched inappropriate media can sometimes change how they are like. I think that many children that watch movies especially that should not be exposed to them. Some of the movies that I have seen have been very inapropriate and I could not imagine young children watching these movies. This is because I do not think children know as much as we do, so it will give them wrong ideas they have taken the wrong way. I think that books or media that is inappropriate can change childrens childhoods in a negative way. Children and teenagers should also be mature enough to be exposed to all of the books, movies, and magazines. If all the age groups would be exposed to all of the higher rated movies, books, and magazines I dont think that would be very resbonsible on the libraries part, or whoever was exposing it. I think that society would be harder to control with this kind of media everywhere. Parents would also not appreciate if their children were reading, or seeing something that they think their child should not be exposed to. I think that children are simply not mature enough to be exposed to all of the books, magazines, and movies. It would cause a lot of problems for many people. Many of the children would be doing stupid things that they have seen in a movie or read in a book that they thought was cool, or that they should try it. Were are already having a problem with pre-teens or teengers. This is because many of them are exposed to things at a early age they should not see, that effect there actions. There are many actions I have seen or heard of that relate to a book, or movie that probaly would not have happened if the person was not exposed to it. Children simply are not ready, or mature enough to be exposed to everything that books, movies, or magazines have to offer. It can change the way that children think, or what they think would be cool to physically do. I think that it is bad enough that a lot of teenagers have been exposed to a lot of these things already. This should be a wake up call for those who have children. Books shold not be exposed to every age group, because it would hurt society and whoever is not ready to learn or witness what they will" 4 4 4 3 4 3 +3877 2 "Censorship has become a major topic when it comes to books, music, and movies. These are being censored because people don't want young kids to read, listen, or watch these materials. What about the adults? Books, music, and movies being taken off of the shelfs in libraries because of censorship, is not fair to the adults. Books now are being rewriten so they won't have offevsive language in them. To @CAPS1 A @CAPS2 is a classic example of this. Changing the offensive language in this book would totally ruin it. This book is mainly about the racism that whites had towards the african americans, and if that was altered the readers wouldn't get a sense of that racism. If libraries have books that are censored they should put them on a shelf just for censored books so adults could still be able to read them. Music is another peice of material that censorship has gotten a hold of. Offensive language is being taken out of songs and uncensored cd's are not being sold in some stores because of censorship. Some adults like the original songs with the original words. Libraries should carry both the explicit and the clean verions of cd's to they some them that are suitable for kids and the ones that adults can listen to. Movies are another peice of material that censorship has taken over. They are being rated @CAPS3, suitable for all ages, @NUM1, suitable for children @NUM2 and older, and rated @CAPS4, suitable for people @NUM3 and older. These rating are good guidelines, but parents should be the ones to make the final decision on whether or not their child should be able to watch a certain movie. Libraries should have all kind of movies on their shelfs. If a twelve year old kid wants to watch a @NUM1 or rated @CAPS4 movie, he or she should be able to with the consint of a parent or guardian. Censoship is a good thing but it doesn't need to be taken to the extreme. If an adult wants to read a censored book, he or she should still be able to read it at their local libary and if a young kid wants to watch a rated @CAPS4 movie, he or she should be able to with the consint of a parent or guardian." 4 4 4 4 3 4 +3878 2 "There should not be a certain kinds of books in the library. Books should not be tooken off the shelf just because some people find them offensive. Do not get the book, other people might like it, its just for entertainment. If you do not like the book do not have to get the book. While looking for a book if there is one that does not seem right just look past. It will not even be a bother. There is a lot of books in the library, just find a different book instead of just focusing on that one book. There will always be many more books there to look at. If there is a bad book just go to a different section in the library. There is going to be more good books for a person than bad books. If other people would like the book then the library will not take the book off of the shelves. It @MONTH1 be offensive to some people but there will be some other people in the world that likes that same book. Some people go to the library just to see them kind of books. Certain people like certain types of books, maybe it was not the right section for a person to be in. The book could be a interesting book all there is to do is try it. If anything the reader might even like the book and check it out. The books are there for entertainment. Thats why they have so much different sections and selections to choose from. If an adult does not like a kid book because its giving the kid the wrong idea then do not get the book for the kid. A different parent might come in and think that the book will be great for their child though. Books should be sat out on the shelf for anybody that goes to the library. The librarians will not take books off the shelf for one persons opinion. When all they have to do is do not get the book, think that others might like it, or remember they are there for the readers entertainment." 3 4 3 3 4 3 +3879 2 i think censorship is stupid when it comes to putting it on adult show's. i can see why they put it on the kid's show's.. but like really?you guys will put that stuff on good movies? or song's!? what has ever happened to freedom of speech? 1 1 1 2 2 2 +3880 2 "Dear Newspaper: @CAPS1, there should be censorship in libraries, but people should be a certain age just to check the book out. Some people go to the libraries just for censorship. These days censorship basicly is how you get children or students just to pick up a book. Plus, if the parents aloud their child to read cebsorship books because they think it does no harm to the child which it don't. Put a @NUM1 and older section in the libraries so any and every body will not be able to enter unless they have @CAPS2 just to solve the age problem. However you do it the libraries will lose the little money they are getting from the people. I no you think censorship should be taking off every shelf in the libraries, but they really shouldn't because I believe if you do that then the libraries will go out of business for good. That is the reason why the libraries should keep censorship on there selvies. I'm finish but I will leave you with this question: do you really want to take censorship out the libraries?" 3 3 3 4 4 4 +3881 2 "Now take a moment and go back to highschool. Do you remember roaming under the opera house with the phantom? What about fighting for @PERSON2's freedom with @PERSON1? Perhaps getting people into trouble in @LOCATION1 with @CAPS1? No matter what your favorite classic piece of literature was, you recall the wonderful feeling you felt when reading it. It enveloped you into its world, and you felt every sensation it offered. What is this though? The author is a @CAPS2. The author uses occassional bad words. The author is a woman. This is not an acceptable excuse to miss out on everything literature offers. Censorship in pulic libraries is wrong. The @CAPS3 was a dark time. Thousands upon thousands of @CAPS4 people were killed for their religious belief, as well as homosexual people, and other minorities. Amidst all of this chaos, the @ORGANIZATION1 decided it would be a good idea to burn all books written by @CAPS4 authors. So they did. Millions of books were eradicated along with their owners all because of a religious difference. Does it even need to be asked? This was wrong. Many say that ignorance is bliss, but is it really when people impose their ideas on others? Let us now look now at what a book, movie, magazine, or song offends with to be censored. A curse word, a bit of skin, a controversial idea. Sometimes these are needed for emphasis of the compilation. Imagine how much less forceful an angry character would be without a few curses every now and then. Pathetic. So is it worth it to you? Will you give up a beautiful composition because it is controversial? Will you hide your children from materials that will make them form their own opinions? One thing is certain, I will not. I will stand against censorship until it has felt the mighty blow that it has inflicted on so many beautiful works. One day my plea will be heard. Censorship in public libraries is wrong no matter how you put it" 5 5 5 4 4 4 +3882 2 "There are a bunch of very good book sat a public libary, you can get all kinds of different types of books. You are get a book on anything you really need, any facts you need to know or anything you want to know how to do, I'm sure there is a book out there that can help you out. Just because a book is an opion dont mean it needs to be taking off shelves. Everone looks at everything differently. If you read it can help you in many different ways, you can learn alot just from reading a book. Me personally i hate reading, so i dont learn much. I'm more of a hands on type of person, words just fly through one ear and out the other really. It is really have to understand when im trying to read and listen or write an listen i lose my thoughts to easily" 3 2 3 3 2 3 +3883 2 "My say would be no. becuse all that was history, say you hade like a kkk thing or anything like that. say you had a wighting aport but need the information for that. you would need information for that and that information would have notes,dates and other thing" 1 1 1 1 1 1 +3884 2 "I do belive in censorship, but i do belive that it is not that big of a deal. It should the parants job to block materials that they think is bad for their kids. If it is to bad then it is the parants right to make sure that their kid does not see it. My point of view in stoping materials like books, music, movies, and magazines is that some things are not ment to be shown, read, and heard by someone of a yonger age unless they get the ok from their parents. The views of censorship in my mind is that if someone see something they don't like they want to get rid of it and if is something to wrong then yes it should be censor, but if it could be avoided and is small like a word in a book then I say that people should be a little more understanding of it and try to think past it or try to find another path to take about it. If you don't like something then maybe you should not read it or listen to it, and if is so bad don't let your kids get involved in it. I have never found a book and readed it and found it affensive or disterbing. I have found books that I don't like or are not good but never have I seen something so bad that I never want any one to read it. If people are going to censor something I think it should be for a good reason not because they don't like the person or they think their idea is wrong, but for something that is bad about anetirer race or to graphic for a yonge age. My point in censoring something in my mind is the right way to look at it we see it all the time in the real world people do something because they dont like some one they try some extreame things to get rid of some bad marerial, but in any case is a lot in this world that people should know about and when i do have kids I will decide wether to block something if I wont to and that is how it should be" 3 3 3 3 3 3 +3885 2 "If I was givin the chance to choose if people should take books off of shelves or not that offend people at local libraries, I would think neither taking the books off the shelf, nor leaving them on @CAPS1 are quite correct. I would defiently reccomend a voting to take place, in order to figure out what to do with the books. I would say a vote would be reasonable because many people have many different beliefs, in which some could be offended. So I would take at least ten different people with different religions,backgrounds, and so forth, and I would have them all vote on which they thought they should do with the offensive books. People believe differently, so it would be hard to please them all. That's why a vote with different types of people would be effective for almost anyone. Just like my mom said, 'you will never make everyone happy.' @CAPS1 are so many things out in the society today that can offend people, and what might majorly offend one, might have no effect on the other. This is the main reason voting is rough, because @CAPS1's a wide variety of people on earth today. You would have to probably also look at how many times the book has been checked out before, because @CAPS1 is a possibility that no one in the voting group has the same opinion as those who have checked it out before. Although if the book is voted to stay in the library, I believe the book should be labeled in the correct area. Due to the fact that the book could be offending to some people, should be labeled incase someone who doesn't know, like a child, comes upon that book. Voting is used in our society today and has been very effective for many years now. Voting doesn't only have to be used during an election, but also can be used for this reason as well. Voting is always important and people should notice that. I believe that voting could be the answer to many problems in the world today" 3 3 3 4 4 4 +3886 2 "When ever has a few bad things being said ever effected how or what people read @CAPS2 a days. That's what is hot in this present lifetime. No one wants to read a boring article, not unless it's meant to be. I'm going to share with you my opinions on certain materials, such as books, music, magazines, ect.,should be removed from the shelves if they are found offensive. I have observations, experience, and reading some of my the articles that were called offensive to prove my opinions. In my opinion, no ones work should be taken off of a shelf due to any thing, because I'm sure they worked on it an awful lot for it to be placed on a shelf. So there is no reason for it to be taken off. If that was my stuff that had got took off the shelves I would be shocked and upset. So that is one reason why you shouldn't do that. It could hurt people emotionly. Following that statement, but there can be times where you just don't want them to be seen because they are to embarrassing. Such as an athlete interviewed in an @CAPS1 article, that got suspended from their sport due to violations, and this athlete is just cursing and being out of control. I would put that article away also, just so the public won't see it and no one is put on blast. Finally, @CAPS2 everyone knows that some types of movies, and music can't be put on display in public. So you would have to ask for the movie or @CAPS3 and someone will go get it from the back for you, due to explicit content or explicit lyrics. G-@CAPS4 @NUM1, should be the only movies allowed on shelves, rated @CAPS5 and up should be behind counter, and the same with music. I am pretty sure that is clear with this audience. @CAPS2 that I have shared with you my opinions on different views on censorship in libbraries what is you thoughts on this topic as you read this persuasive essay. You have read my thoughts on experience, observations, and just common sense on this topice. If you had to write an essay on censorship in libraries, how would you come about this." 3 3 3 3 3 3 +3887 2 "Materials such as books, music, movies, and magazines are used for peoples enjoyment. Adults and kids get a lot of information out of the libraries reading materials. Books give people another way to learn new things, instead of in a class. If the reading materials are already in the classroom they should not be removed. If someone is walking into a library, they have to be responsible. Adults along with young adults have to know what they should read and whats not acceptable. No one has the right to take a book off of the shelf, because they think its offensive. There are millions of book in the world that people find offensive. Theres not one perfect book in this world that doesn't bother somebody. Every single book that is made today has a right to be read. Theres people out in the world looking for a certain book, magazine, movie, and even music. That material is hepling find the answer to a problem, giving the right decision, and helping someone walk in the right path. The @CAPS1 is a book of understanding and knowledge. There are a good number of people how think we shouldn't read it, or even pick it up. Like the @CAPS1 say, free will. It's our free will to pick up books we want to read. Books give people another way to learn new things. Adults and kids get a lot of information out of the libaries reading materials. Books, music, movies, and magazines are used for people's enjoyment" 4 3 4 4 3 4 +3888 2 "Should offenive material be censored? No, censoring books, music, movies, magazines, etc. takes away from our freedom as an american citizen. If you think books should be censored, then think about this. Would they take 'hell' or 'damned' out of the bible because those words are considered offensive? I do not think so, those words give power to the book. @CAPS1 books, considered offensive, are an insigh to history and culture. Taking away these books will limit education. Books should not be censored. I very resent and much talked about case of censorship is the popular book '@ORGANIZATION1 @ORGANIZATION1.' The book tells the story of a young white boy running off with an older black man. In the story, the word 'nigger' is used frequently. A lot of people were offended by the using of this word, so they republished a new version of the book, replacing 'nigger' with 'slave.' @CAPS1 people were happy with the word change, but others felt that by censoring the word they were taking away a very vital part of the story. I agree with the latter statement. The story's setting was back when black people were slaves and known as niggers. I agree that the word nigger carries a heavy connotaion, but that is the purpose of using the word. The author used it so that the reader could get a feel for what life was like back then. When thinking about the coming generations, who will not know about slavery or black oppression, the book gives a raw insight into how life was for a black man. The word itself is a symbolism of slavery, without it, the book is not as powerful. Censorship is a fine line, and everybody has a different place where they draw that line. The story of @ORGANIZATION1 is just one example of censorship. On television, nudity and language is censored when dubbed inappropriate. It should be up to the parent to decide which books there child should read, which magazines they should buy, and which television programs they should watch. If the parent sees the book as offensive or think that there child should not read it, then they should be the ones who makes sure their child does not read it. The books should not be taken of the shelf because they will entertain and educate other children or parents. Books should not be censored, if a person does not think the book is appropriate, then they do not have to read it." 5 4 5 4 4 4 +3889 2 "Imagine @CAPS1, you are in the library looking for a book to read, to when your son or daughter runs up to you holding a magazine of questionable nature. What do you do? A library should not have inapporiate items on the shelves. Censoring libraries is something to protect you and your family. Libraries should be censored so that way everyone can enjoy themselves. The first reason I thing that libraries should be censored is because of the children that go there. Children are curious and they are always attracted to things that are colorful and different. An example I have of @CAPS1 is my baby sister. She wanted to go to the zoo instead of the museum because as she said 'I want to see the animals, not a boring statue. I can see those anytime around town.' @CAPS1 is showing that children want to see different things and if they were to go to the library and see the same items then there is not anything to worry about. The first time they see something of questionable nature they would want it because it is new. The second reason that libraries should be censored is that sometimes not all of the items in the library are put in the right place. Say that you wanted to watch a movie that sounded really good and you checked it out at the library, went home, put it in, and find out it is not the movie you thought it was. What if you rented that movie for a party and had guests over? Would that not embarrass you? Well something like that happened to my cousin but she got a @LOCATION1. She was embarrassed for weeks after it happened. All of that embarrassment could have been prevented if the libraries had to be censored. The third reason that libraries should be censored is that sometimes seeing certain material in a library can be rather offensive. Would you be offended by seeing something like that? I know that I would. I would not want anyone to be offended like that. When I was little I went to the mall with my grandmother. We were trying to buy a new pair of jeans for me. I got offended when the salesperson said that I 'looked fat' in the jeans I had picked. I know what it is like to be offended and people should take other peoples' feeling into account before they offend. While some people thing that inapporite material is fine to have in a library I believe that they should find other places for it. Think of your family and how much you love them. Think of what not having a censor on the libraries can cause. Do you want to be responsible for not doing anything to help? Try to find ways to get stricter laws on censoring libraries" 4 4 4 4 4 4 +3890 2 "Why should books that some people enjoy to read be removed off of library shelves? That is ludacris. There are so many alternatives then to just take those certain books off the shelves completely. We all have seen or heard of books that are inapropriate to certain audiences. It is understandable that young children should not read or be associated with these kind of materials such as: books, magazines, poems, movies, songs. It is totally unnecessary for children to be reading such explicit material, but it is possible for us to prevent it. One way libraries throughout the nation can prevent this is by making a complete different libraries or have the explicit materials be located in the total opposite side of the library from the children's materials. I know that libraries tend to have opposite corners of the library dedicated to adult materials and childrens materials, but there should be more strict rules of kids being in the adult section. Another idea is to have parental permission on the child's own library card telling the librarian, when the child checks out a book, where in the library they can get a book. For example maybe the childs' parents only will allow him/her to get materials from the children's section in the library; therefore if that child wants a material from a different area of the library they cannot get it, unless his/her parents are their telling the librarian the child is allowed to get it. I know when i was a child and i couldn't do something that my parents were doing, it made me feel upset, but now that i look back i realize why they wanted me not to do what they were doing. They wanted me to be a child as long as possble. They knew if i was reading or listening inapropriate materials then i was growing up way too fast. I know that now and understand it now what they wanted for me. To conclude, lets keep those filthy books and magazines away from the younger kids. I don't want to see it get banned from the libraries or taken out of libraries; I just want to see parents stepping up to be parents and not letting their young children be exposed to that kind of thing. It isn't the libraries faults if people's children are being exposed to this explicit material; it's the parent's fault for letting it happen" 3 4 3 4 4 4 +3891 2 "Should materials that are offensive be taken off shelves?Should movies you loved and use to watch when you were a kid be gone in a instant? Magazines are offensive, they always have been, they get the truth out of celebrities and people and they twist their words into something totally different from what they said. There are tons of movies in this world that will show harm to people, replay a bad part of somebodys life, say things about people.Music is just words and sound, they make songs about people that have done stuff in the past , that people would find offensive. I have seen a music video about @PERSON1 and making fun of her being in jail, but do i think that should be taken off the computer, no its entertaining.This world needs something to keep us intertained. Imagine what it would be like if we had no news reporters, no paparazzi. We wouldnt know anything going on around the world, and seeing the things about celebrities that they would find offensive, i can understand where they are coming from, getting talked about all the time, especialy about mistakes you have made in your lives, but thats how the world functions, thats always going to be apart of everyones lives,talk. So as i have been saying, getting rid of movies,music,magazines,books that are offensive would not be a good choice in my opinion, cause what would entertain us if they were gone?" 3 3 3 3 3 3 +3892 2 "Here in @LOCATION1, it is in our constitution that says anyone can have freedom of speech. Freedom to say anything they wish to get off their mind and express individuality and opinions. This should also include books, music, movies, magazines, and any other form of entertainment. However, there will always be people that could take offense to others' ideas and opinions that comes with freedom of speech. In a case where someone was to find a certain type of material to be offensive at a public library, then it should be known that he or she should not observe the type of material given. He or she should not throw a tantrum over something that they find offensive while other people find very enjoyable. It is in that person's standpoint that they should realize and come to grips with freedom of speech. What they @MONTH1 not like could very be what others do like. So, why should other peoples' form of enjoyment be censored and taken away from them just because of one bad lemon? It shouldn't. Everyone expresses themselves in their own way. It's a form of getting positive and/or negative energy out in a healthy way. Whether it's writing books, posting articles, or writing music, it's a way to vent and some people @MONTH1 like that venting person's style. It is completely up to that person who takes offense to materials on whether or not to observe such style. Censorship should not be allowed in libraries. If there was a type of censorship, it would be taking away what some person would like to enjoy. It would also be taking away the artists' or authors' freedom of speech and expression. There are books that were banned from schools throughout the country. Just because they think is right doesn't always mean it is right. Sure, they just want the people protected from certain offensive stuff. but why keep them from the real world? Let people out to see what this world is like and it's various types of art." 3 3 3 4 4 4 +3893 2 "Censorship for books? Never thought I'd see the day. But, that doesn't necessarily mean I approve or agree. Just because I don't approve or agree doesn't mean I do not oppose it. I find that need taking a step back and arguing both sides is sufficient and fair. Shall we? Among others, I find that if you censor one thing, you censor them all. Public items such as televisions, radios, magazines, and even books have wriggled their way into our not so perfect world. Yes, there are crimes and indecencies happening as you read this. But, is it entirely fair to say that these public items have completely influenced and brainwashed children into early adulthood? Maybe. Then again, maybe not. It is true that children, at their youngest, are easily molded and cut out into who they will permenantly be, or at least until they're old enough to form their own opinions on certain topics.For instance, when I was younger, my cousin, who happens to be just a few years older than me, started to like a certain thing. After spending time with her for an elongated amount of time, I started to 'like' it too. I found myself obsessed with it. Now, before you start getting it into your mind that it was something bad, I can assure you, it was nothing other than stacks of @CAPS1 cards. Anyway, it wasn't until later that my mother informed me that it wasn't really my interest. It was hers. I modeled after her likes and dislikes. Every other child in the world has done something similar. What makes anybody think they wouldn't do the exact same after listening to uncensored music, watching uncensored television, or reading an uncensored book or magazine? On the other hand, it would be unfair to take away some books that people find to be improper or indecent. If that were the case, nearly every book would be out of sight, but not out of mind. Today, you can't turn on the radio without hearing something about sex, drugs, alcohol, or smoking. Now, those things are a lot more accessable to anybody. You can't turn on the computer without advertisements for porn or other sexually crude websites popping up on your screen. Books have gotten out of hand, as well. The world nowadays has gotten ridiculous and out of place. But in the end, I'm sticking to my original opinion: If you censor one thing, censor them all. It's only fair. Radios, television, movies, and even @CAPS2's have been censored. Books are not as innocent as they seem, anymore. So yes, my final opinion is that libraries should, in fact, censor their books, or at least make an effort to. Libraries are places to learn and have fun doing so, not have a mental scar leading back to what they read in a 'harmless' little book." 4 4 4 4 4 4 +3894 2 "You are not elgible to check out this book', says the libranian. You are just too young for this book. To me censorship laws in libraries are not needed. The common people should have the liberty to check out what ever they please. The people who make the censorship laws should be pleased that young people actually want to read. Books, music, movies, magazines, etc., are all under censorship. Everyonee takes things in differently, being said some are mature than others. If they want to play that game, or read that book they should be allowed. The person who picks up the product should know how they are and should know if they can handle the material. Therefore they are held accountable for their actions. Isnt that how legal laws are carried out? If any sort of content is found offensive it still shouldnt be removed from the shelves. Something @MONTH1 seem offensive to one person but someone else @MONTH1 find that interesting. For example, when the newspaper talks about a specific athlete they @MONTH1 say things tha offends his?her fans. They people who are not fans of him/her @MONTH1 find it ammusing; so they should remove the post because some people dont like it. Someone @MONTH1 like that book, music, movie, or magazine dont inconvience them because of a few people. Interest @MONTH1 vary, but a teen @MONTH1 like the same type of books as an adult. Censorship laws wont let the teen read the book they likes because of his/her age, and to me that is unfair. It is a new day and age; things have changed from what they once were. Cencorship laws should be wiped out completly. If you @MONTH1 find a book offensive in any way, shape, or form just dont read it. Nobody is forcing to read that specific book; libraries are filled up with a numerous amount of books. There is a book out there that you will enjoy. In conclusion, certain material shouldnt be removed from shelves if found offensive. Some other peoople @MONTH1 like that same aterial. There shouldnt be censorship laws in libraries at all. That is just unfair, and unjust to some people. Its a new time and age and things are different. People of any age should be able to check out any book they please" 3 4 3 3 3 3 +3895 2 "The things we find in libararies shouldn't be offensive to anybody. It's the choice you make rather you won't to read it or not. Nobody is making look at those things if you don't want to. Don't look at it, if you think it's offensive. The best thing to do is to keep it on the shelves. Some people like looking or reading things like that. People don't go to the library and pick up a book or a movie that they know they wouldn't like. If that was to happen, then there wouldn't be any library around because anything you get from the library, I bet you can find something offensive about it. People find stuff like that entertaning when watch or read stuff like that. That hurt the people that make the books and movies that are offensive because they feel like thats what people wan't to see. True enough thats what people won't see as long as it's not effecting them in no kind of way. That what we see on a daily basic on tv is offensive things, so if we can sit there and watch it on tv then we shouldn't have on problem reading or watching a book about it. I see stuff offensive on tv about everyday, but it doesn't bother me so reading a book or anything else like that, I woudn't care because i'm use to seeing it on tv. Nobody can make read or stop reading things like that, only you can. You don't have to look at it if you think its offensive. It shouldn't be a problem with anyone because thats what we hear and see everyday. No matter what some people find that entertaning." 4 4 4 3 3 3 +3896 2 "What is censorship? Censorship is editing or just plain getting rid of. Censorship can be a good thing it could also be a bad thing. Does censorship really help in our society? Actually think about it, there is still murders, rapes, and whatever else with censory. How I would argue with this, is by listing my own experiences, observations, and readings. Firstly, my experiences would have to be about movies and/or television shows. In some movies you get to choose on what you want to watch. The unrated version or the censored version. Well, most people want to watch the unrated version, beacuse it's more than likely more funny and shows more. Other people might choose the censored version, because of the fact that they have children and dont want them watching stuff that would be in the unrated version. I would perferably pick the unrated version, because i like all the funny parts that wouldn't show in the censored version. Then there are those television shows that 'bleep' out alot of words, because of course you are not allowed to say them on television. Parents dont want their six year old going around and saying all of them nasty words. That's why most of the time you hardly ever see them kind of shows on in the afternoons, they are usually on at @TIME1 or later. Secondly, my observations about movies and/or television shows. I cant say that I dont watch shows that have some language in them nor can I say that I dont watch shows that are all bloody and gory. I do watch them, but i would never watch them around my younger sister! She is eleven years old, I dont want my littel sister going to school and saying a bad word and have a teacher hear her. Then she would say well @PERSON1 was the one who watched the movie. I would also never ever watch a bloody, gory, and really graphic movie in front of her either. Some movies could do without so much violence, but they have to make money some how. Right? Last but not least, my readings about, lets say books and/or music lyrics. So many books have been banned across the @LOCATION1, because people were offended by them or just didnt want that book on the shelves just in case their child reads it. Some songs cant be played on the radio, because of some of the stories behind the music and/or the words in and through out the song. That's why the artist of the song has to make two different copies of their song, so they can be played and so they will get popular. I have read books that do have some words in them, but they are also my grade level and I'm pretty sure most people are more mature than they were. When I see a word that isn't the nicest word ever, I keep reading and dont let it bother me. Same with songs, the artist probably has a reason why he/she uses the words they use. Censorship can be good or bad, it really depends on how you look at things. Honestly, I have no objections to censorship and other times I do. My experiences, observations, and/or reading has made me think about how censorship could be bad or good." 4 4 4 4 4 4 +3897 2 "I believe that if you find a book offensive then you should not read that book. What some people find as offensive some other people might find it not offensive. I do not think that people should not be able to take books off of the shelves. For example if there is a person of the jewish religion they might find a book about hitler offensive. In that sense if they take the book off of the shelf then the other kids that are soon to come into the age of studying this era will not have a book to look at. Without these books our history of the world will be soon forgotten. Another example would be slavery. I believe that slavery is a hard subject to come to grips with. In the reality it was a hard time for the africans. I do not think that they will take the books off of the shelf because of it being offensive. How could you take away the future of learning from the children that are our next generation. If we are to take the books off of the shelves at the libraries what do we do about the bible. Some people do not believe that there is a god or a heaven, but a lot of other people do believe in it. So how would that work out in the long run? it would create a lot of problems for the public library and for its citizens as well. In reading books as a kid i have found that some things are bad and i do not like them, but i dont believe that we should take the book away from people that like the books.How do you take away from the people that like to read different nopvels than you is beyond me, but it will only be a problematic subject in the future. this is an essay by @PERSON1" 4 4 4 4 4 4 +3898 2 "Older authors love to write grusome stories about their pasts, whether it's fiction or nonfiction. Sometimes those books can get into the wrong hands and end up in the trash or burned. Other times parents get angry at what they're children are doing and saying, and they normally blame television or other kids at school. Parents don't always look at the big picture. Any child at anytime can walk right into their school or public library and pick up an inappropriate magazine,book, or movie, but parents don't usually catch on until it's too late. There are all kinds of books out there and no two books are the same. Nobody can tell a book is going to be inappropriate just by looking at the front cover. Even though books are meant to be read, it doesn't mean they should be read by all age groups. No book at any point in time should be completely removed from a library, that's just not right. No matter how graphic, perverted, or inapproriate a book can get, it should never be thrown away. Those certain books are written for people with those kinds of interests. Even books about drugs should be allowed to be read, some children or adults could be interested in what they really do do to your body and mind, and they'd rather read a book about it rather than trying it themselves. Books about murder should also be allowed to be read, but not by children under twelve. If people in libraries would just start putting books in organized age groups then there probably wouldn't be any problems. The author should never be blamed for something they wrote. It's their own personal thoughts and feelings and most of all it's their story. It's how they wanted it to be written and nobody should get mad over that. The rule should apply for magazines, music, and movies. Those people wrote the books, movies, magazines, and music so it should be expressed the way they wanted it to be. Even if the authors themselves thought their own writing was too bad for a child to read, or hear they would make it clear by putting something like, 'not for children under the age of twelve or whatever age they recommend.' If adults are really getting mad about this then they need to look back at the kinds of things they were doing, saying, or reading and maybe it would change their outlook a little on movies, magazines, music, and books." 3 3 3 4 4 4 +3899 2 "Walking in to the library and looking for a good book or magazine to read, you run into some of those disgusting books that are offensive to some people. Some people think they should be removed from the shelves, and I am one of them. Are you? There are some books, magazines, movies, and ect., that we all run into that have very bad language, racism, bad religious talking, and even some about sex. Nobody needs to be reading those kind of books, it is bad for our minds and is very offensive to some people. A lot of people do not like to hear curse words or see them. Seeing those words in a book will make that person think wrong things about the library and put the wrong words in their head. Then there are those books about racism and that is the worst topic to most people. If someone came across that in a book, it would hurt their feelings and they would not want to finish that book. Their are others that are very religious and if they come across something that is wrong about their religion the will be very offended. There are a few ways that the library could handle the books that offend people. The librarian could think about putting a warning sign up and seperating those books, magazines, and etc., into their own section for people that do get offended by those things know where they are and know not to look there. Or inside the front cover the librarian could put a warning note on there to show the person that there are some things in there that @MONTH1 offend someone. It would be very helpful to so many people! In every library you won't see that all the books are perfectly good. We all know that there are going to be some bad things in books, but there are some books that are way too inapropriate and those books can be removed. There are just way too many people that get offended while reading the books they want to read. Let's put a stop to it. In conclusion, many of the libraries around are going to have the kind of books that offend some people. There can be a stop to that by removing them from the shelves or at least warning others about the things in the books, magazines, and all the other entertainment people like these days. It would be amazing to know that all the people that love to read will not be offended by what they are reading!" 4 4 4 3 4 3 +3900 2 "I believe that there are certain movies, music, and other things that are bothering parents. I would not whant my kid listening to music that has a lot of things that can teach you wether if its write or wrong, I would check the kind of music my child listens to to see if they are bieng tought bad things. I believe that there are some movies that are to violent for anyone to see, but this is a free country which us regular average people will watch any way. There are movies made for adults, but how many adults let their kids watch them to. No matter what they make there will be people who dont like what they see or they know somebody who didnt like what they saw.Some times there are people that dont like what they hear, or knows somebody who didnt like what they hear'd in music or on the television. There are times my mom here's something on t.v or music and said turn that of. my friends all listen to this music that i dont think amounts to nothing but the production of inmates, and other wrong doings such as, gangs, fights, shootings, and jurry trials. there are things on the market that has an error of a certain group who might like action movies. Well there are kids out there learning those things they saw, and they are trying to do what they saw, becuase they think that it will make them look cool. There will always be things that peolpe do not like and will never like. I learned that when I was young, just like most young kids have. I think the biggest thing that sell's, is the dramma, action movies, and the stuff that parents will like. Very little of baby movies, and baby music. But what can you do about that? I like most of what I hear, and see. I have always thought there was a lot of violence, and picture shots, and things about drugs that just should not be on national television to teach the young.This is what I think." 3 3 3 3 2 3 +3901 2 "Human beings, like snowflakes, are very much alike in a unique way. Just as there are no two identical snowflakes, no two humans are exactly the same. As everyone has their differences, there are always those who have a greater sense of curiousity, and prefer to think outside the box. However, it is difficult for these curious people to extend their strive for knowledge, if they have restrictions as to what they can read or study. Therefore, if a person is mature enough, and desires to study or read upon a certain topic at a library, they should be allowed to extend their knowledge on any topic of their choosing, with permission of a gaurdian of course. Unfortunately, it is often times a group of minorities that ruin something for the greater minority. Libraries often times take in account a child's age as a factor towards what a they can, and can not read, but age seems completely unfair to a child who is mature enough to read, and handle the more adult rated intell in a fashionable manner. If one is legally eligable, and they have permission from their gaurdian, then he or she should have no restrictions to the materials provided at any library what-so-ever. Who is one to say a ten-year-old is too young to learn about @PERSON1 and his horrible plans for the @CAPS1? A person is never too young, or too old to learn something new, if the curiousity and the proper level of maturity is present! It is curiousity that has led mankind to discover something new each and every day. As well, it is curiousity that has brought mankind to the extraordinary level of technology, and inventions that it is at today. The youth of the present will one day be the engineers, doctors, scientists, and moving leaders of the future. If these young people are curious, and desire to achieve greater knowledge on a certain topic for positive reasons, then let them be!" 3 3 3 3 3 3 +3902 2 "In most libraries in the @LOCATION1, there are certain books, movies, music, etc., that could be inappropriate to younger children. These books and movies can contain graphic content or offensive language that any young child should not be hearing or seeing. However, this does not mean that the libraries of @LOCATION2 should get rid of these books, videos, etc. The libraries should keep these books and videos because the adults of @LOCATION2 like to use them, the kids probably already know about the language and graphic content, and some of the books and movies that are offensive are very educational. When you think about your childhood, there would always be things you couldn't watch or listen to because you were to young. Your @CAPS1 and @CAPS2 would watch movies that you couldn't watch because they would say you aren't old enough. They enjoy watching more mature movies because it is more interesting to them than cartoon shows or movies. The mature content in movies, books, and more should be kept in libraries because mature audiences enjoy watching and listening to them. If they are taken out of libraries, this mature audience has nothing to watch or read in the library. They do not want to be reading children's books all the time. Also, most children have already observed or heard this offensive content in these books and movies. Most of the parents in the @LOCATION1 have used offensive language infront of their child without even realizing it. The kid then starts using these words because they think they are cool if @CAPS1 and @CAPS2 use them. Another thing is that most kids have seen a movie with graphic content in it, or they have played a video game with it in the game. They have seen blood, gore, and other things in these games and movies. It's already too late to try and hide your child from seeing or hearing these 'bad words' or 'graphic content'. Many movies and books that contain offensive language and graphic content are very good and educational videos. For example, '@CAPS3 @CAPS4 @CAPS5' was a great movie describing the search for one man in the middle of @CAPS6 @CAPS7 @NUM1. These wars actually occured and movies like this give a great amount of detail on what actually went on during these wars. If you want kids to know about the history of our country, they need to know what actually happened. There is no point in trying to hide the truth. Overall, most kids in the @LOCATION1 have heard offensive language or graphic content. Whether it was from a parent or even their best friend, they have heard it. So why woyld we try to hide this from them? Keep these books, movies, music, and more in the libraries for the benefits of the adults, the kids, and for the history of the country." 4 4 4 4 4 4 +3903 2 "Do you think @CAPS1 is going to prevent people from getting offended? Taking items such as a books, music, movies, magazines, ect., will not stop people from getting offended. The @CAPS2 question's are who decides what is offensive, and how is it offensive? What makes something offensive" 2 2 2 2 1 2 +3904 2 "Many people in the @LOCATION1 read. Books, magazines, news papers, and music are a great passing time. I enjoy reading books about people with special powers; such as necromancers. If we were to take such books that offend someone out of our libraries, what would we have left? I, for one, don't like reading @ORGANIZATION1 books, which seem to be the only type of book that wouldn't offend someone, unless they have some severe hatred towards letters. Think for a moment about what you like. Think about your interest in music, art, and the style of books or magazines that you read. Now imagine all of those gone from the one place you can get away from screaming children or annoying neighbors: the library. You @MONTH1 be baffled as to why all of your loves have dissappeared. That book you love, the one about necromancers, it's offensive to @CAPS1 because only @CAPS2 has the power of waking the dead. The song that you have had stuck in your head all day is now no longer online. Its use of certain words are offensive to those with 'sensitive' ears. If I were to walk into a library and find that all the 'offensive' works had been band, I would be shocked. Every one in the universe finds certain things offensive. My @CAPS3 @CAPS4 teacher thinks that rap and hip-hop or pop songs are offensive to women and their bodies, but I think that some of those songs hold a different meaning. If everything offensive were to be taken away, what would be left? Nothing that a teenager or an adult would want to read. Heck, @PERSON1' works are offensive to some people, they think he was crazy, and who wants their children to read a book written by a bafoon? Also, the less the library contains, the less people go. Libraries would soon close because everything is being found as offensive. All of the books we had hoped to read would have to be bought online, if it were still allowed. For all of the Book @CAPS5 out there, finding an attention-getting, eye-opening book is like finding buried treasure. It's an event that changes your life, makes your blood rush, and leaves you hanging onto your seat. It's an adventure played in your head, one that you set the specific details of each character, or it's the book that provides the knowledge that feeds your brain every time a new sentence is stored. Taking away everything offensive is like having a child being taken away, you can't replace that love with a distraction" 4 4 4 4 4 4 +3905 2 "Do I belive that certain materials, such as books, music, movies, magazines, etc. should be remove from the shelves if they are found offensive @CAPS1 choice is no. I have several reasons for that one is that this is a free country and a person has the right to speak on how they feel or whats on there mind. And that should be aceptable any where cause every on has their on opinion about what they like or read. And if you feel that it offen you maybe you shouldn't be reading it or watching it or what ever the case @MONTH1 be. You can find something else to read that you'll enjoy or your friends and family @MONTH1 like, @CAPS1 second reason is that you can learn from stuff that @MONTH1 offen you and any kind of way. Such as this magazine I read about black males sagging there pants many white people that seen there pants below there waist had something negative to say about the young men. They only jugde a book by its cover because they didn't know nothing about the person, that they was talking about and one of the black males was a honor student in high school that was going to attend a white college. And when many whites started to find out they begin to question the young man about how he dress and why. He told them this is a free country I can do what ever I like and whites liked that he spoke up for his self. So with @CAPS1 reason being said I find it not right to remove certain materials,such as books, music, magazines, etc, should be removed from the shelves if they are found offensive. So I hope you enjoyed reading @CAPS1 essay. If you have any arguments or questions you can surely contact me" 3 3 3 3 3 3 +3906 2 "No Censorship Do you enjoy reading interesting books, watching superb movies, or listening to appealing music that some people don't approve of? Most people would answer yes to the question because anything that a person reads, watches, or listens to @MONTH1 be found offensive or crude to someone else. Certain materials in libraries should not be removed from shelves if they are found offensive because different people find different materials offensive, people sometimes specifically come to libraries to search out materials they can't find elsewhere, and if a person finds a material offensive, they don't have to keep reading, watching, or listening to it. The first reason reason why censorship shouldn't occur in libraries is because different people find different materials offensive. Each person is different, and people have all sorts of opinions on books, movies, magazines, music, etc. Also, several different ethnicities exist in the world and many nonfiction books educate people on different cultures around the world. The ethnicity of the people living in the culture @MONTH1 find what the authors of nonfiction books are writing about them offensive because the book is talking about something in their culture they wouldn't want the public hearing about. However, the public needs to be educated on the cultures of different people. Students do research in libraries for research projects and essays. Also, books pertaining to racism such as To @CAPS1 A @CAPS2 and books about slaves @MONTH1 be offensive to the race that is being victimized in the book. In contrast, some people @MONTH1 love the book because of the a good theme, symbolism, word usage, etc. So, who would be the judge of whether a material is offensive of not? If the person who is doing this for a certain library finds many materials in the library offensive, the whole library could close down because many materials that could have been popular were taken out of the library. Another reason why certain materials shouldn't be removed off shelves if they are found offensive is because sometimes people specifically come to libraries to search out materials they cannot find elsewhere. Libraries are the one place that people go if they are looking for that certain book or maybe even a movie they can't find at a video store. In my experience, there have been an infinite number of times where I have wanted to read a book I have heard about, and I've gone straight to the library and found it there. Also, because no video store exists in the town I live in, I go to the library for movies because I know they have a large selection. Some of the books and movies I or other people like @MONTH1 be found offensive to others, so if they were taken off of library shelves,I'm not sure if I would go to the library as often. A third reason why censorship shouldn't occur in libraries is because people don't have to read what they @MONTH1 find offensive. Everyone has the choice of what materials they acquire from a library, unless it's something they have to read for school. If a person hears about a book that @MONTH1 be found offensive to them, why would they read the book. Also, if a person accidentally checks out a book or watches a movie from the library that they find offensive, they can always just stop reading the book or watching the movie. Censorship shouldn't occur in libraries because everyone has different opinions. Libraries assume that if someone finds a material offensive, they'll just stop reading it. Also, if libraries take out all the materials anyone finds offensive, what will be left to read, watch, or listen to?" 4 4 4 4 4 4 +3907 2 "I do not think that any books should be taken out of libraries because they are found 'offensive'. Something that is offensive to me @MONTH1 not be offensive to another. Although I have all the right in the world to object to a book that I find inappropriate, somebody else might believe that that book is completely appropriate. The main issues that most people have with books are foul language, sex, and difference in opinion. These three catagories are very sensitive issues, some @MONTH1 not be comfortable disscussing these issues. Many books in the library systems today contain foul language. Surprising enough a majority of the indecent language can be found in the young adult section. I don't believe that parents would be very happy to know what their children are reading. In our modern day world we are bombarded with images of sex and indecency. Books containing obscure acts are no different from television or magazines. Most romance novels are very descriptive and leave little room for imagination, and in the wrong hands can lead to some very prompting questions. Difference in opinion can be a big problem for some libraries if patrons do not like the message a book sends. Religion, politics, and morals can lead to some nasty debates, but sometimes we have to just agree to disagree. Can teenagers handle that kind of language and sexuality in a responsible way? Should the books be taken off the shelf just on the basis that we don''t agree with what it says? Should there be a sensor on what can and can't be put in libraries? I dont think that any books should be taken off of library shelves. If you don't agree with the book then don't read it. Instead of blaming libraries for what your children read, perhaps you should look at your own parenting and make sure they arn't reading something they shouldn't" 4 4 4 4 4 4 +3908 2 "'@CAPS1 - @CAPS2 or No?' Katherine Paterson's quote about offensive books is completely true, and I @PERCENT1 agree with her. She's saying that if everyone had the right to remove a book they found offensive off of every shelf, there would be no more books for people in the world. There are most likely books that one person could find offensive, but others do not. What would the world have left if almost all books are taken off the shelf? I do not think that offensive materials such as books should be removed from shelves because not everybody could find them offensive and could be depriving people of their favorite subjects, I've had my own experience with a supposedly offensive book, and because there would not be books left in the world. There are books about every single subject in the world. Some are about subjects we love and could read about for days. Others are about subjects that we hate or that just plain bore us. Though whatever the subject is, whether it be about the media, science fiction, romance, or anything else, there are different people in the world who love reading about different subjects. If a person had the right to remove a certain type of book from libraries and stores, say a romance book, because she found it offensive in some way and it was taken off the shelves, then a person who loved reading that book would be deprived from it because one person found it offensive. Just because on person finds a book offensive, doesn't mean everyone else in the world would too. I've had my own experience with a supposedly offensive book. In my @CAPS3 class, we were assigned to read 'The @CAPS4 in the @CAPS5'. As we were reading the book I honestly thought it was a very interesting story. Though later with some research I found out that the book was banned in alot of schools all over the @LOCATION1. Teachers from those schools reported that there were some very subjective words and events in the book. I do agree that there was some bad language, but I don't think that's a reason to ban the book from schools. It's an awesome story that won a couple awards, and my class also enjoyed it. My experience with this proved another point that certain books should not be banned. Just as @PERSON1 stated, if every person was given a right to ban certain books from libraries, there wouldn't be books left in the world for people to read. There are millions of people in the world. If every single person was able to ban one book in the @LOCATION1, what would we have left? There would probably be nothing left. If every book was gone from the @LOCATION1, what would kids in school be able to read? Kids would start reading at a slower rate, causing grades to drop. One little law change in @CAPS1 could cause great negative changes in the future. There's always going to be people in the world who find certain books offensive. That's never going to change, but people also have the freedom and choice to stay away from the book they abhor. Unless you're a student in school, you don't have to read or look at a book you find offensive, and you can also try to keep your kids from reading whatever it is because if you want one book banned off of shelves, your depriving other people of books. So I say every library stays the way they are now, and keep every book they have for all kids and adults." 5 4 5 4 4 4 +3909 2 "Would you let someone ban your favorite movie, just because it has mildly offensive materials in it? I know I would not. If everyone had the right to ban books then we would have no books, because something would offend someone. You should not ban books because it desecrates our individuality , we have the freedom of press, and because it would ruin the future. If you ban a book then you are giving up your indiviuality. If you let someone decide what is offesive to you, then how can you express yourself. Therefore, by letting someone else decide what is appropriate for you to read, you are giving up your freedom. By banning books, you are not being yourself you are conforming to what other people want. Therefore, you should not ban books because, it demolishes your individuality, and it makes you conform to what other people want. There should not be any banning of books. You should not be able to ban books because we have the freedom of press. The freedom of press means that we can write whatever we want. However, you should not ban books because we have the freedom to choose what we read. This means that we as individuals should be able to decide what we want to read and what we do not. You should not ban books because we have the freedom of press, and because we have the freedom as individuals to read what we want. If you ban books then you will ruin the future. There are hundreds of really phenomenal books out there that would be banned, and future people would not be able to enjoy them. There are books that can change your life, and teach you how to deal with things, and if we ban them then we are ruining the chance to help future people with their problems. People turn to books for knowledge, and help, and for ideas, and if we take away their books then how can we say that we are paving the way for the future if we are destroying it along the way. Books should not be banned because if they were then, we would be ruining the future for others, and we would be destroying our own future. In conclusion, books should not be banned because, it limits our individuality, we have the freedom of press, and because it destroys our future. If you ban books , more likely than not, your favorite book would get banned. Also, if everyone could ban books, then there would be nothing to read because all of the books would be banned. By banning books you are destroying the future, limiting our freedoms, and abolishing our indivuality." 4 4 4 4 4 4 +3910 2 "Do you think that books, music, magazines, movies should be removed form a libraries shelf? A libarys should carry every kind of book, movie, Magazines, Music etc. The reason that a libary should carry every thing is because say a farmer wants to come in and get a book over cattle and some city person says that its no use and throws it away the farmer is outta luck or say the oppiset would happen. Another reason would be a persons tasted some people like romance and some like action etc so if they dont carry one type someone will get mad about it and stop going. Say if @PERSON2 dose not like viloence so they take it off the shelf and @PERSON1 dont like chick flicks etc what would that leve in a libary no one would have anything to read and they would close the libary down because there would only be a few books. The movies and magazines i would say carry anything that was approperat and if it was rated @CAPS1 you had to be @NUM1 to rent it then the person would be a adult. There is different cultures out there that only like certon thing so what are they going to do make seperate libarys so that each culture will be happy or just build one big libary and the ones that dont like just leve the book or whatever there. Altmentley its up to the parent to tech there chiled noy yo pick up the bad items if there not liked by a certin family or cultuer. If they would get rid of the stuff one person didnt like it would loss custmers and make others mad so in my eyes its better to have one person mad becaues a libary carryes a certian type of item then to loss custmers and make @NUM2 people or even two to make one person happy when it is as simple as dont pick it up. So altimently we can not make everyone happy so just look over the items you do not like teach your childern not to bring them home and move on in life and dont start a problem" 3 3 3 2 2 2 +3911 2 "I think that none of the books should be removed from the shelves of a libraries. I think that everyone should have a change of reading any book they want to. Just because a person or few people don't like it dosen't mean remove it. They don't have to read that book. If I did like a book i just don't like it. everyone has their own choice of what kind of stories they are into. Like im in to freaky novels. Everyone I hangout with is not in to freaky novels. In I mite not be into what they are into. Like I dislike a lot of love stories not them all just a few of them I don't like. I can say I am in to abnormal stories. I like fiction stories then nonfiction. My most favorite novels is 'The @CAPS1 @CAPS2'. Most people would want to remove the stories with bad lauguage or vocabulary off the shelevs. I know a lot of poeple that are into those kind of stories. I think that would be unfair to do that. Why take away what they like in not what you like. Like I am into all kind of sex books. Some poeple wouldn't want those books on the shelves either. Just by removing someones type of book could make people don't want to read anymore. I know it would make me stop reading if I can't read what I want to read. Now think to yourself would you risk taking away someones favorite book. In the results of them not reading anymore. If you do theirs something wrong with you. How would you feel if that was to happen to you. So you all way pose to look at it in anothers persons point of veiw. You should look at all the possitive way first. Like how happy dose that makes that person that reads the books. Not olny would it effect the read but the person who wrote the book. You will be doing a lot of damage to a lot of people. You would be putting someone out their job. You could mess up someones family of living. You could take away somones belifes. You can make what they thought was a good thing into something bad. You can drive a person crazy. You can make what that person stand for meaning nothing at all. Books could be a way people escape the real world. Reading books could give people more things to talk about. Books can be a way of learning how to deal with thing in a better way. I suggest that people should just leave the books wear they are at. Books are way people express how they feel, they life style, and what they been threw etc....... Life is hard in books makes it eaiser for some people" 3 3 3 2 2 2 +3912 2 "No criteria such as books, @CAPS1's, magazines, etc. should be removed from shelves just because they are found offensive. The @LOCATION1 is a free country, which means that if you find something offensive such as a book or magazine, you don't have to read it. When people get all upset over a book or movie they saw it really drives me crazy, simply because you don't have to go see that movie, or go read that book. Different people find different things offensive, this can be because of race, gender, ethnicity, etc. So we shouldn't start removing materials from shelves just because a few people find it offensive. Some people think it is offensive that proffessional athletes get paid @MONEY1 for playing a game, when there are homeless people living on the street. Never the less the @CAPS2 @CAPS3 is the most watched event in the world when it comes on. Just because a few people think sports are offensive doesn't mean they should be shut down for good. Another example is racial jokes, some people think they are funny when others find them very offensive. This still isn't going to stop people from telling racial jokes. Just as Katherine Paterson said, no criteria should be removed from the shelves in the library just because some people find it offensive. People do not find the same things offensive, so taking material off the shelves would not be the right way to deal with this issue. If you find something offensive then just dont pursue it. Almost every single book in the worls has something in it that someone, somewhere finds offensive. If we took all of these books off the shelves, there would be nothing left to read. This is a free country, which means you have the right to choose whether to read or pursue something or not. So instead choosing to eliminate books from the library, just dont read them, because maybe somebody doesn't find the same things offensive as you do, and they might like to read that book." 3 4 3 3 4 3 +3913 2 "@CAPS4 I think all books,music,movies,magazines,etc. should be removed from the shelves if they are found offensive. The reason I say this is because what if their are little children that are willing too read grown up books and its all types of naked pictures and words thats not in a child vocabulary. Then they will pic up bad habbits and then use them with knowing what the words actually means. Then, I think music should be edited because somer music has cursing and talking about things that a young minded child or children shouldn't hear. The music should only be something children are suppose too listen too things that are in their age group. Next, I believe movies should be censored because now a days we are letting are children watch every and anything they want too. Things that doesnt control their language such as(@CAPS1 @CAPS2). I believe that @CAPS3 sahow needs too be blocked because they really do and say exclusive things on that show, and alot of childern watch and repeat every thing they hear and see of that show. Finally, magazines...I say @CAPS4 too magazines because they have neaked girls and men on the covers and pages of these magazines that shows just way too much and they put things in the magazines too them look real when they are actually not. I think that etc.. should only be used when needed too research and do homework because children use enternet too watch exclusive things and listen too such bad things. Inconclusion, All together I think it should be an limit too everything we listen too and watch. Because children pick up everything they hear and see" 3 4 3 3 2 3 +3914 2 "I don't think they should remove anything thats offensive from the library cause honestly, most of the books author publish have something offensive in @CAPS1. I'ts not the library's fault, if there's children reading these books that are offensive then that's the parents fault for letting them read them. I've been to the library and listened to music, watched movies, and even read magazines that have some offensive content in @CAPS1, but if they weer to remove all the offensive content from the library, then the library would be half empty. I've seen parents discussing to the librarians about banning content thats not appropriate from the library, but why would @CAPS1 even matter if they can just ignore @CAPS1 and keep @CAPS1 away. @CAPS1 honestly isn't a big deal when @CAPS1 comes to these type of problems. I discussed this with my mom once and she completely agree's with me. My mom said ' @CAPS1 would'nt be a problem as of today if they could of just ignored @CAPS1'. Also the music that they have should stay their wether or not its offensive cause people like to express themselves with the music that they listen to. The movies that are made these days all have innapropriate content in @CAPS1, wether its a rated @CAPS2 movie or not. As of all the argument going on about library's having offensive content, @CAPS1 should still be kept at the library and not removed. I'm sure alot of teens and adults enjoy all the content that's kept at the library. If children end up listening to the offensive music, or watching offensive movies then think about @CAPS1 like this, they need to grow up someday. If that's not the case then parents should keep them away from the content" 3 3 3 3 3 3 +3915 2 "Certain material such as books, movies, and magazines should not be removed from libraries. The quote by Katherine Paterson simply states that if everyone had the right to remove a book from a shelf, then we would have no books left on the shelf for any of us. The world would be empty because there is always something that a person sees as offensive. To each person that finds the material offensive, there are always ten people who do not find it offensive at all. A person's beliefs can cloud their views on things like religion. There are so many wrong things out in the world that you can never do right by. In places like libraries, you never know who might come in to check something out. That is why it is recommended to make sections in the library. Adult novels, childrens book, science finction novels all in different sections of the library. This would make a parent cautious of where their child goes. If a child walks into the wrong sections, there is only one person to blame; the parent. Children always wander off into random places because of curiousity. Parents have to make sure that nothing horrific happens such seeing something that a toddler or a teenager is not supposed to see. One object, such as a book, a movie, or a magazine, can teach a person millions of lessons. If those lesson are not tought yet, they will be tought later. In a harder way. The person might have to live the lesson to learn it. That is why some material should not be taken away. Everyone believes in different things. There is always someone that has a different opinion of things. The world contains of many things that people find offensive, but it does not mean those things have to go. There is always a choice of what to do and what not to do. Someone has to find a way to fix things and in a good kind of way where people can find peace with themselves and others. Removing material from libraries can cause many things; approval, disapproval, anger, and happiness. Most of all, it can cause fights, which later on can turn into war. The material in our libraries is meant to teach people about life, and people find that wrong, then it means they do not experience life" 3 4 3 4 4 4 +3916 2 "Censorship is not an easy question to anwser; it involves a great deal of thought. When thinking about a topic like this you must look at a greater picture. You should think about after math like thoughts and opinions from everyone else. When it comes to censorship in libraries I feel that all the books should be left on the selves. So, why would we take books away from people who want to read them just so that others don't? If you don't want a child to look at adult books, then you can censor them by watching them, and not taking them to places that have such books. This way other people can read these books. If you truely think about it, then you will relize that if you are trying to keep something from a teen they can, and will, find a way of getting it. If you are trying to keep things from them that will only make them want it more. Books are good for people. It tells them stories that cannot happen, past events they did not live through, and even the thoughts of others. Keeping books away from people is not good for them; they would not be able to learn from the things they read. So, maybe some books are more racie than others, that does not mean you should hide it from your children. If you were to start censoring books in libraries it could cause some problems. Now you will have no books for some people. You will have taken most books out of libraries because one person thinks it is not good for the children. This will cause arguments over what should and shouldn't be in the library, and people will stop going to the library all together. So, when you think about banning books just remember that there are other places to get books. Books are good for people especially teens, whos minds are developing. In some places books that are banned to other places are celebrated. When trying to get rid of books just think about the people you are taking them away from" 4 4 4 4 4 4 +3917 2 "You go to a library to read books, music, and magazines, but soon you find out that there are very offensive books. I strongly say yes, I agree that we should remove the books, magazines, and music from shelfs if they are offensive to people. We are suppost to feel safe reading books, listening to music, and reading magazines. When I was younger I went to the library all the time. I would get books to read and look at, and for a while I was excited to go to the library, but all the excitment went away after a few bad exsperiecnes. Remembering the names of the books are not going to come to me, but I know I was so upset by how the book was. It had words that I never heard before, and I got confused. This could happen to many little kids that come across a bad book, but really librarys should only have good books not bad.After that bad experience happened to me I ignored it like it will go away or something. Bad books, offensive books, should be taken off shelfs for good and never to return. I feel very strongly about this subject, because I am a book warm, I love to read books and being able to go to a library and find a good book thats not offinsive is all that I ask for in a library. Offensive books, music, and magazines should not be aloud to be in librarys at all. When kids read books or listen to music they want to be able to disappear in them, but if there are offensive stuff out there, how will they be able to do that. There are things that should be left out of libraries and that is offensive books, music, and magazines.In closing to my essay I still have full curage in my answer, I still say yes, they should remove the offensive books, music, and magazines. If it was your sister, your daughter, or your neciece that went into a library and found an offensive book, what would you say? I ask you this, how would you feel?" 3 3 3 3 4 3 +3918 2 "When I was in fifth grade, chaos broke out in my community. Everyone-- teachers, students, parents, school board members, community leaders-- had something to say about the topic at hand. This topic was censorship. A high schooler's parents were outraged that their daughter had read The @ORGANIZATION1 @ORGANIZATION1 in class. In these parents' opinion, the rape scene in the book was far too disturbing for their precious daughter. While this seemed a fair stance to take, the parents then took things a step further. They sought to ban the book in the schools in our township, wanting to spare all other children the experience of being exposed to @CAPS1 was clearly traumatic material. This crusade of theirs posed the questions '@CAPS1 can and should be censored? And when?'. As the debate continued, I myself begin to ponder the subject. Who had the right to tell me @CAPS1 I could read? Or listen to? Or watch? The answer I came to was 'no one'. No one has the right to censor anyone else. This comes with one exception: parents and children. Parents have the responsibility to monitor their children. They must use their best judgement to decide @CAPS1 their children are old enough and mature enough to hear, see, or read. This was true in the censorship of @ORGANIZATION1, as well. No one fought back against the family because they did not want their own child to read the novel; it was only once they tried to keep others from the book that the problem arose. This is why libraries should not remove materials from their shelves because they are, in the eyes of some, offensive materials. Music you love @MONTH1 be offensive to me. Books your @CAPS2 teacher assigned @MONTH1 not be appropriate for five year olds. Your friends @MONTH1 be offended by your favorite movie or @CAPS3 show. These feelings are subjective; almost nothing is universally offensive or universally appropriate. We must, as a society, be able to accept this. We learn throguh @CAPS1 we see, @CAPS1 we hear, and @CAPS1 we read. These experiences teach us @CAPS1 to do, as well as teach us @CAPS1 not to do. Because of this, it would be unfair for materials to be removed from libraries based on solely opinions. To do that would be to steal from community members their chance to learn. Parents have the right to censor @CAPS1 their children see, hear, and read, but even this censorship must be done carefully in order to not hinder the child's ability to learn. We must not hinder our children's ability to learn from the mistakes of book and movie characters, singers, comedians, and artists. If we do take away that ability, we are setting these future adults up for making mistakes that could have been prevented by allowing them the chance to learn. Removing materials from the shelves of libraries based solely on opinions is not only damaging to our society, but, ultimately, it is dangerous to the people we wish to protect" 4 5 4 4 4 4 +3919 2 "Libraries are a source of information. They provide us with valuable research, entertainment, and cold hard facts. Therefore, I do not believe that libraries should have to censor the books that are supplied for the citizens to check out. Everyone is faced with choices in life. Some are more difficult than others and will have a greater impact on your life. We decide if we want to wear the black shirt or the grey shirt, the blue shorts or the brown shorts. Everyday we have choices. We also have choices at a library. If we see a book with a title that sounds like @CAPS2 might be offensive, then we should just walk past @CAPS2. Most libraries are organized and the book sections are clearly stated. Common sense would tell us that this section might contain offensive material. We have the choice on whether or not we check out a book that might offend us or not. If @CAPS2 does offend us, then @CAPS2's our own fault. The second reason libraries should not censor what books they provide goes right along with the choices we make in life. No one forces us to check out this book or that book. @CAPS2's a choice. No one puts a gun to our head and says, '@CAPS1 this book or you will die.' @CAPS2 just doesn't happen like that. No one forces us to @CAPS1 something we don't want to. @CAPS2's all up to you and how you feel about the book. Different subjects offend different people. I'm not offended by a curse word here or there, however; I am offended by sex related instances that often occur in movies or books. I make my own choice to not watch or @CAPS1 those kinds of materials. Since everyone is different, the sex related instances might not offend another group of people and they might see @CAPS2 as perfectly fine to watch or @CAPS1. Different subjects offend different people and taking away a book or movie because @CAPS2 offends one person should not happen. If libraries were to start censoring what materials they put on the shelf, I believe many people would be upset. Who would decide what is offensive and not offensive? @CAPS2 would upset too many customers and the use of libraries would probably dwindle. When you are in charge of censoring what goes on the shelf many problems come into play. Do you count different religions offensive because they blaspheme another religion's god? Do you count a certain work of fiction offensive because @CAPS2 contains one curse word in the whole book? There is no way to properly censor all your books without upsetting customers. I'm not saying that libraries should be allowed to show every magazine known to man. Some are obviously worse than others; but, when @CAPS2 comes to books and movies, the people know what they are checking out and know what they will find offensive. There are too many people in this world to try and censor the materials libraries display. Libraries should not censor the materials they display" 4 4 4 4 4 4 +3920 2 "Certain materials, such as books, music, magizines, etc., should never be removed just because a certain person, or group of people, find it offensive. The authors of these books have the right, as stated in the @CAPS1 of the @LOCATION1, to have the freedom to say what the wish within the context of their own individual wrighting. Also, certain materials that some people find offensive have little to no offensiveness to many other people who @MONTH1 enjoy the book or movie. Finally, many books that are on the shelves of many of our libraries have no end to the amount of things that @MONTH1 be considered offensive, but allow a certain knowledge to be had by, not only the writer, but the reader as well. If something is stated in such an important document as the @CAPS1 of the @LOCATION1, one that set the standard for living and set the laws of a nation to parchment, than it should, for lack of a better term, be taken with the utmost respect and dignity. Several great leaders, such as the first president of the @ORGANIZATION1, @LOCATION2, decided that freedom of the press was a viable asset to a new and growing country. This simple fact alone should hold more than enough levity to allow all materials, no matter how offensive, to not only be published, but also enjoyed by all people. It is this simple freedom that causes books to be published, even written, no matter how offensive they @MONTH1 be. Certain materials that a person, or group of people, find offensive @MONTH1 not be offensive to everyone. No matter what religion, ethnicity, or moral values you hold, just because it is offensive to you does not mean that it is offensive to everyone. Many people in this world serve in their nations military, ones used to fight more battles than any history book could hold, is just one example that not everyone in this world holds the same morals or ideas that others do, and tensions will always arise because of it. That being said, this also holds true to the way certain people percieve literature and art. @ORGANIZATION3 would hate @ORGANIZATION2's art, and @ORGANIZATION2 would hate @ORGANIZATION3's, however, neither has the right to condone it or to keep it from the eyes of the world. Many times literature gets removed before their true meaning can be shown to anyone. This is disheartening for several reasons, one being that whatever we, as a human race, could've learned from this piece is now lost forever. Many books could teach the older generations how to leave a legacy for generations to come. Others @MONTH1 teach how future generations can change the world by simply working hard and doing their best. These are best portrayed in books that are sometimes removed from the shelves because of hard lessons or graphic words used. Is censorship in libraries ok? No. Not at all. All works of literature should be allowed to be read and enjoyed, not only by the author, but also by the young, the old, and all ages in between, of all races and religions. The longer we allow materials to be removed from the shelves of our libraries, the less of a chance we are giving, not only ourselves, but future generations to learn and be all that they can possibly be." 4 4 4 4 4 4 +3921 2 "There are many different styles of literature and media in this world. With this variety, it has to please at least one person. If not, why was it made? There come a point when things just become too much. Some media and literature has passed this point and it should not be allowed on shelves. Media is a huge influence in todays society. What would you do without it? Everyday, everyone is using media related, whether it is turning on the televison in the moring and watching the '@CAPS1 @CAPS2' to opening up a magazine and reading about what famous person is in jail this time. You cannot get away from it. Teens @CAPS1 are truely addicted for the most part. We have video games, online chats (facebook and myspace), and moives. Many things we learn from these are not good for our minds and health. Some video games are good to play but when you become wrapped up in them, playing non stop, killing people and laughing at this, here you know there is something wrong. Our minds are exposed to so much immorality and violence, so we think it is okay to do. Many people see it as, the movie stars do it, so why can't we? @CAPS1's society is killing our minds and many young people who think their life is miserable just go out and commit suicide. Music can get too extensive as well. Yes, you have you oldies, country, and the jazz but when you add in the rap and heavy metal music, there is no understanding. Rap is all about who am I going to sleep with next and how many times I can have sex. Really, is this what our lives should be focused on? I didnt know people like the thought of a @CAPS3. Heavy metal music, you cannot understand it, but when you research the words you see that life is useless and why are we living? People say that this music helps them calm their anger down. Feeling realived after they have listen to it. You @MONTH1 be clam now but after hearing these words and banging your head around, what is going to happen when you do get extrememly mad? Too many lives are effect by @CAPS1's media and literature. Lives of friends have been lost and friendships have been ruined. Someone is always going to say a certain amount is too much, but I think we need to set a goal of how much is too much and try to save ourselves. We are not like a video game that has seconds lives" 3 4 3 3 4 3 +3922 2 "Books, music, movies and magazines are all offensive in different ways. They all are some how offensive to people if they have inappropreiate launguage or actions or stories in them. Should thease materials be taken off the shelf just because some people think they are to offensive to be on there and they don't want their children getting ahold of them? When I go to the library I see different sections, fiction, nonfiction, ect. What I don't see is a section marked 'offensive'. Librarys don't do that. If parents or anyone don't want their children or any other children reading offensive books they should go with them and make sure they don't pick up offensive books, or have them wait in the childrens area. Librarys usually don't carry offensive music. They have @CAPS1's for books to listen to. That might have offensive lauguage in it. Before renting or buying the @CAPS1 you should ask someone who works at the library to tell you if they conscider it offensive or not. If they don't know then don't get the @CAPS1. Most of the time you know what your looking for before you go to the library anyways. If movies are offensice they are marked rated @CAPS4. @NUM1 movies are the better ones. If parents or anyone do not want their children watching rated @CAPS4 movies before renting or buying one they should check the back where it always tells you. When I was young my mom would always check the back of movies because she didn't want me watching rated @CAPS4 movies. She herself thought most of them were too offensive for me to see. Most of the time magazines don't have offensive lauguage in it but they sometimes have inappropreiate pictures of men and women. They also have a bunch of gossip stories you might not want your children to read. But if your letting your children read this then you should read it before they do to make sure for yourself there is nothing you wouldn't want them reading. I don't think there is any reason to remove books, music, movies, magazines, ect., from the shelves if they are offensive to some. If a parent or anyone else doesn't want their children or anyone else's children to read something they think is offensive they should make sure they read something before they let them read it. Also walk around with the child in the library to make sure they don't pick up anything they wouldn't like, or have their child pick things from the childrens section. Some people like reading books, magazines some might think are offensive. Everyone shouldn't be punished for those who just don't want their children finding offensive things in the library" 3 4 3 3 4 3 +3923 2 "Books, movies, magazines, or music that is offensive in any way should not be aloud to be showed to the public. If these offensive things were not aloud to be showed I personally think it would help out are country is full of racist people and documents. Everytime you pick up a magazine or you watch a television show about a famous actress or musician you see embarrassing aspects of their lives all over the world. This is not right at all! People should be shown respect and allowed to have some privacy in there life. If it wasn't for actress and musicians we wouldn't have any television shows to watch. There would be no use to have radio's. There would be no reason to, their would be nobody to sing songs for us. Why would we want to embarrass these guys anyways? They work their tails off to produce new things for us. Books in the libraries should not have sexual assualts in them at all. Books like this in school libraries have no reason to be there. Why would you want your child to read something like that out of a book in the school? Expecially foul language in materials at school. Books at the library should have good examples in them not vaulgar sayings. This is a disgrace to the school. Movies are a big concern. Any child or young adult could go into the movie section and get any type of movie even if it is rated restricted. Would you want your child brining home a movie that had nudity in the film? I remember one time my little sister brought home a movie from are local library. This movie was a total disgrace to this library it had nudity, foul language, and lots of violence. I couldn't believe what I had just saw. My library would have something like this in the library? Children go there and pick movies out. My mother had went in and made a complaint about the restricted movies being in with the children films. She said that the movies should be seprate from the rest. You should have to be a certain age to rent this movie. Or atleast have a parents permission. Every local library or school library should be taking action in doing this for their community. Lets keep are children and young adults away from violence. By allowing this in are school libraries and local libraries it is just saying it's ok to letting this violence in. We should put a stop to it and prevote good attitudes. So please take the violence off the shelf" 4 3 4 4 3 4 +3924 2 "Are some materials, such as books, movies, magazines should be removed from the shelves if those things are found offenisve? There are some things in books are movies that are offensive, and that other younger adults shouldnt watch or read. Reading a book also says alot about certain topics that are offensive. But at the same time can you learn from these things such as finding it in a book or seeing it on tv. So I dont think that certain things that are found offenisive should be taken off the shelves, because people should learn off of these things. Some people have a hard time understanding what's right and wrong in life, because their not getting the full effect in life and what it is meant. The problem I think is people @MONTH1 not think certain things are offensive because they might not know what it mean. Movies on the other hand has a different side of the fence. Movies can affect someone, especially someone who is very young. Those children can look what's on tv and copy exactly what they are doing. They also @MONTH1 be a role model which is not always good for some people. Another thing is that music plays a big role in someone's life because there is sad music, loving music and also violent music. Music can define a person. For example if you are listening to a sad song, you @MONTH1 feel sad or depressed. Or a person listening to hard and violent music @MONTH1 feel upset or angry. Certain music that peole listen to can define who they are. Especially when i had said it determines what kind of a mood you are in. I think when people listen to the music he or she likes, it defines who they are, it shows what kind of mood there are in. Secondly, magazines are an advertisement. It shows everything, it tells you stories. Just like in the movies if you see it, youre going to do it. But magazines are different, they show like the styles, and life stories of others. When you see things you @MONTH1 want to do things just as the what the magazine. Usually when you look in a magazine you usually see pictures so its not as big of effect as the others such as the music and movies. They more likely describe things. Books on the other hand are similar. You can learn what's in a book just by reading it. So if a person @MONTH1 read something about voilence he or she @MONTH1 think it is right to do so. Even if that particular book is telling you what's right about the topic. So no I dont think that some books that are found offensive beacause only that person or indvidual can learn what being offensive is. So keeping these types of books @MONTH1 help other people who are readers." 3 3 3 4 4 4 +3925 2 "What is @LOCATION1's main idea in the area of art, language, and music? The idea of @LOCATION1 in those catagories is freedom. Freedom is to write what we want, draw what we want, and say what we want, and in all, to express ourselves freely as a person. It is one of the amendments in the '@CAPS1 of @CAPS2', known as freedom of speech. Saying that, I believe that we should not be able to ban, censor, or remove any books, music, or movies from the @CAPS3 public. It is their right as an @CAPS3 to buy what they want. It takes away @CAPS2 from people, and when they do that, it makes citizens feel like toddlers. They can't choose for themselves what to see and what not to see. Everything in this world can be offensive to somebody. Just because that one person finds something bad or distasteful, doesn't mean that they have to make everyone else stop seeing it. That's what gives the world its varieties. What someone might think is weird, somebody else might think is normal. When that happens, why is it okay to take away what makes that person feel normal? Just to make the other person feel better? I walked into the store once before wanting to buy a videogame. I found one I thought looked cool, took it off the shelf, and brought it up to the cashier. He took one look at the game, saw the rating for it, and said that I had to have an adult with me to purchase the game. I went on about how my dad would not care if I bought this game. The cashier said it didn't matter and that I still had to have him here. Then I had to search throughout the store looking for my dad so that he could walk back to the cashier to buy the game for me. What difference did it make? In the end I got the game anyway. That experience I had at the store that day let me know how it felt to have my wanting of something be shot down. It made me feel like a baby that needed permission to do something. It also helps me know how the writers, artists, and movie directors feel when they get their work censored, rejected, or banned because somebody somewhere found it offensive. We need to let people express how they feel. If we didn't then a lot of the stuff today would be different. @PERSON1 had the idea of the world not being flat and that he could sail all the way around the world without falling off of it. Everybody thought he was crazy and got angry at his thinking. But he did it, and proved himself right. Galilaue @CAPS5 thought came up with the theory that the sun did not revolve around the @LOCATION2. He started doing experiments and tried to prove his theory. The people of where he did his work got engraged and through him into exile and imprisoned him. After that somebody thought that it was a good idea, he experimented on it, and the people supported him. Now we have that theory as a fact, that the sun doesn't revolve around the @LOCATION2. That is what makes freedom of speech so important to the world. It makes people think in different ways. It helps people think of new ideas. Freedom is the key to any way of living." 5 4 5 4 4 4 +3926 2 "There are alot of things that u can find in the libraies that you can find to be inapporite to some but not all people. if there was something that i was ofined by then i would ask them to pull it off the shelf. if u have somewhat of a project to do then go to the libarie to meet some friends and work on it there. If you need help to finding a book for your project ask the person at the desk where to find it. The libarie is here to help those that dont have a computer at home, they can go to the libarie and do there work there. If they would have alot of there books on a disc or dvds,movies,tape players alot more people would want to read more. If that all libarie had all the same books then they would have more people in and out getting the book they want to read. if there was little kids that want to read kid books then they should have a section for them. All the libarie should get ride of the inapporite books that some of the people right off the shelf so that they dont have people complaing about the material on the shelf. Theres probale about @NUM1 to @NUM2 libarie in the @LOCATION1. I know for fact that there something inapporite on the shelf in all ther libaries. There are tons and tons of books in all of the libarie so theres a good chance there something out there that someone will find they dont like and ask for it to be taking off the shelf. if they would get alot of people saying they are offenied by it then they would have to take it off. There is also alot of magasins out there that some should be seen to little kids. if they get on that talks about drugs and some other things they could be offensive by that. all magasins should have some what of a rating on them. you would have to be older than @NUM3 years of age to get a pg-@NUM3 mag. some of the magasins should be for little kid that go there all the time and adult. they should have them divid into sections for little kids and adults. They need to respect all the people in the libarie at that time. I think that theres some of that here in are home town but not @PERCENT1 postive there is. We all have the right to ask them to take it off the shelf and if they dint then they well get into trouble" 3 3 3 3 2 3 +3927 2 "Dear newspaper editor, @CAPS1 I am writing to tell you about the censorship in the libraries of @LOCATION1. This doesn't seem like a big problem to some, but a very major problem for others. Censorship has removed books, music, magazines, movies, and other things, from the shelf of local stores and libraries for being offensive to the seller or workers. Its not what some store owners or library owners like in some cases, but its not about what they like. Its about the people in general that have a certian intrest towards that subject. Some people have even removed the @CAPS2 from local library systems. Does it even matter what the owner wants to sell? In most cases, no. The belief in a religon or even a book, magazine, or movie that had one small comment about; sex, drugs or alchol is removed for just that. If we remove everything about any of that, the only thing left @CAPS3 be childrens books. Some people @CAPS3 find ways to get those censored as well. We @CAPS3 become illiterate without books, magazines and other things of that nature. Theres even an account of a person being fired from there job for reading a magazine on there break at work! What happens if we all listen to another person that wishes to remove a book off the shelf? Then another and another, we @CAPS3 have no books in our libraries or stores. This censorship is a major problem, very few people really care about this subject. Most think it should be done to most items, some think we dont need to censor anything, as we are a free country. So newspaper editor, please question yourself, ask yourself, '@CAPS3 I like to have all of my favorite magazines, books, and movies gone forever, never to be seen again?' Then everyone will know the answer." 3 3 3 3 3 3 +3928 2 "Some books on the shelf at libraries have bad things in it, whether it is what the book is about, the curse words in them, or just not very aproprit for some of the age groups. Should the books at the libraries be censored or should we just leave them for the reader to decide if they want to read it or not? I dont think any of the books, or magazines should be censered. If some one wants to read a book with curse words in it or anything like that then let them. The parents @MONTH1 not let some kids read them but some parents just dont care. I think if they read them they might say them but they will learn not to say them and that they are not very nice to say. Should the movies you get at libraries be censered? I dont think they should because the parents arent going to let them get it or watch the movie if they dont think it is something they need to be watching. The kids know what they can and cant watch so if it is something they know they cant watch then they shouldnt get it. The kids might get it but the parents could take it away and tell them they cant watch it. Should all books.magazines, music, or movies from libraries be censered? No. If it is a library at school everything has to be school approprit. If the book, movie, magazine, or music is not approprit they the school cant lone it out. A public library can but there are mostly adults there. The kids should know what they can and cant watch, read, or listen to, so they should know better than to get something they cant read, watch, listen to, or look at. Some parents @MONTH1 agree to censering them but if you do that you are limiting the books everyone can read. Even the parents or adults wouldnt be able to read them aswell" 3 3 3 3 3 3 +3929 2 "What do you think about Books? Do you think it matters how appropriate they are? Well im going to tell you my oppinion on the books that should and shouldn't be in libraries. I think that there are many different few from many different people on books. Someone just cant say that they think a book shouldn't be in a library period. I think that if maybe it is a inappropriate book from someone in grade school to read then it should be in the high school or a public library. I can see that some parents @MONTH1 not want to have their kid reading it but i think that they are going to hear a lot worse and see worse than a book is going to have. I can also see where parents are coming from when they say that they dont want there child reading that kind of book. I belive that if a kid wants to read it than they are going to read it, parents shouldn't be so up tight on what there kids read. I know that they want to protect their kid from seeing that stuff but its going to happen one day so they might as well get used to it. Also a grade school shouldn't even have a book that would be considered inappropriate to a student in there library, or should have a parent sign somethign saying that they are ok with it. So inconclusion thats what I say if parents have a problem with it than they should discuss it with the school. They should just go in and talk to the librarian and tell them that they dont want their child to check out such books. All a parent would have to do is go in to the school or where ever their child is getting the book and tell them that and it would solve all problems" 3 3 3 3 3 3 +3930 2 "To censor, or not to censor? That is the question. I am positive that there are a great amount of different views portaining to this topic. Everyone will have very good points on either using, or not using censorship in the library. Although this is true, I believe that there are many more valid reasons not to use censorship in libraries. First of all, how offensive can library material truly be? I do not believe that is very offensive at all. There will be movies and material specifically designed for a mature an older age group. This is fine; if the person choosing the material is of age then he or she should have no reason not to choose advanced material. A mature person will not want to read elementary books their entire life. Sooner or later, they will have to be intruduced into the real life. It would not be beneficial to them or society if they are sheltered their entire lives. Also, if the person is still a child, there should be no reason for a child to choose the older level of material. There @MONTH1 be times when he does; however, this is not a problem because all the parent has to do is explain to him that he is not of age yet. This is an easy fix. As I said earlier, ther is no reason we all need to read the same thing. Variety is what makes libraries apealing to the customers. Who would want to go to a library with all the same books? I myself would not. Within the library, there are sections specifically just for children. If all the slightly offensive material was to be taken out of libraries, that would eliminate a large portion of the customers. Also, this would discourage writers from even producing thier material; thus hindering their income and motivation. We have freedom and choice in @LOCATION1, and I feel this would go against @CAPS1 values if they were to induce censorhip in a harmless library. No one is perfect and we all make mistakes. However, we can also improve and learn from them. If a person does choose an inapropriate book, they will most likely learn and improve from their mistake. We have a choice about what to choose when we go into the library. I believe if not all, the majority of the time we make the right choice. Libraries are a supercenter of learning and information. This would not be true if certain portions of information began to be removed. I have had many worthwhile times in the library and was never once harmed or offended. Libraries are here to help and not to hinder our learning. I am most likely not the only one who feels pleased with the way libraries are now and feel no need to change what is good" 3 4 3 3 4 3 +3931 2 "My opinions on the censorship in libraries are that libraries are great places to get information on books such as biographies, fiction, nonfiction, science fiction, and other genre books. I don't believe that books, music, movies, magnizines and other things should not be removed off the shelves because people love music and they want to get information about the artist who made the songs and information about the artist. Also people want to learn the lyrics to the song. The reason why books shouldn't be removed off the shelves is becuase people enjoy reading books and they want to know what the book is about and have some information about the book. Books are very important to people and need some entertainment other than television. Also people used books to study for the book is going to be read and then going to be tested on. The books that are found offensive should be removed because people get very upset if they find out that the book is talking bad about them. Unless some people are not mature at all and can't read books that are not even talking about them. Movies shouldn't be removed off of shelves because people love watching movies and they are very entertaining to them. If a movie is very offensive to the people, yes it is probably best to remove the movie because they don't want to watch it anymore. But other movies are not even bad. Yes some movies have foul language but people still enjoy it. But sometimes in movies people hear something from the movie and they spread it around the @LOCATION1. Then everybody starts saying the foul language. People just have to learn how to not use foul language when not needed. Magazines shouldn't be removed because people love reading magazines especially sports related. I know I love reading sports magazines because I am a very true sports fan and sports are very important to me other than school. There are very inappropiate magazines that children shouldn't be reading and they should be removed off of shelves. Magazines are also used for different things such as comics, housework, as for ladies makeup, perfume, etc. People think that magazines are very important to the society" 4 4 4 4 4 4 +3932 2 "Censorship in libraries is almost a primitve if not childish way to exclude what one might think to be offensive from everyone else, is it not? Think about it. A kid who doesn't let another kid play with him at recess today, only because he stuck his tongue out at him during math the previous day, seems pretty childish, and several much more reasonable solutions come to mind to anyone who sits and thinks about the situation for more than a second. This scenario runs paralell with censorship in libraries. A book is a book to be read. That is, of course, an obvious statement. But why read a book? To get information. To learn something that you did not know, or to build on knowledge that you already had. How do you cook an exquisite meal? Go read a book to find out. How do you graph linear equations? There are books that will explain it for you. Is it fair for an avid astronomer, fealing no need to know how long a turkey needs to stay in an oven, to remove a book that teaches that very thing? Now, of course cooking a turkey will most likely not come across as offensive to someone perusing through their local library, however, think about this. The book has been written, so is that not a sure sign it is not offensive to at least one person, that being the author? There are things people will not agree with. And just when you think you find something everyone likes, someone will come along and disturb the peace. Not everyone likes rap music, but it is still playing on the radio. It is free choice to listen to it. It is a free choice to read a book, regardless of what it says. Just because people have the misfortune to be subjected to material they find offensive, by accident or otherwise, and then project their disdainful comments toward someone in charge, does not mean that the offensive material should be thrown out. Perhaps, radios and libraries can be even further examined. Radios have specific channels, playing specific music. There is a country music channel for those who want to listen to country music. As for libraries, there is of course the @ORGANIZATION1, but that is about as far as categoriazation goes. Suppose books be even further distinguished by the location within a library. A certain area designated for certain genres. That way, if you happen to find books about @CAPS1 concentration camps distasteful, then you can avoid the @CAPS2 and @CAPS1 ailse of the @CAPS4 @CAPS5 @CAPS6 @CAPS7 section in your library. Problem @CAPS8. I find it hard to see something as offensive if I can't even literally see it. You see, outright removal isn't really the best option for pleasing dissatisfied people. Compromise is. Now, after having thought about this situation for more than a second, I'm sure you have thought of much more reasonable solutions than something so ludicrous as censorship. Now the best part is seeing people enjoy books, and not being offended by the ones they don't like anymore" 4 4 4 4 4 4 +3933 2 "Having libraries is a good thing because it teaches children to learn how to read and get examples from the book or magazine that they are reading or just looking at it. How can they help with children and family memebers that hardly ever knew how to read and write about them. Some libraries have shelves some of them dont that is crazy but silly to.Libraries have books and magazines that is for children and also for adults and even grandparents. How can they tell if there is a position that you have to put your books on bookshelfs and on a cart. They would have to have alot of respect and also alot of body work to put the things that need to be in the library. Librarians can have more than just books they can have cds, computers, and also a table that has coloring pages for children.I think they need to be removed because i wouldnt want my children going in the library and finding a whole bunch of stuff that they dont even know what it is about. This would be a wonderful thing to do they should not have stuff like that in a library in the first place. The librarians should convince the person that brought those in there and tell them to take them back where they got it from.I would think that they should just put stuff that would usually go into a nice and quite place to sit down and read and also there is other options computers to do your homework on. Librarians can have stuff like that that is wrong that children see that all the time this is ridiculas and un called for that can teach them bad stuff they shouldnt be doing.How can they tell if they shouuld convince them to not have unappropriate things that should not be in a library that children should not see. They could take a book home that they dont even know what it is about or what might be in it that should not be in it. I think they should just take everything that is approprate and just send it somewhere else where it belongs instead of where little children can reach and learn whats going on." 3 3 3 2 2 2 +3934 2 "'@CAPS1 Books, Movies, Music, and Magazines?' @CAPS2 do people take @CAPS1 books? Some people believe books, movies, music, and magazines should be sensored or 'band'. Why do people believe this should happen? Well there will be three topics that will be talked about in this eassy. The three topics are children, @CAPS4, and religion. First, '@CAPS3'. Many parents themselves don't want there child to be exposed to viloence, volgure language, or even possible drugs. Viloence is one of the main problems to do with all four of these types of entertainment. Influencing there child could cause a loss by doing things as far known as stupidty. Another is volgure language, to adults for a generation above us, they take it as being disrespectful. News wide to this very day deals with drugs and teens getting more into them, causing an overdose that could lead to death. Second, '@CAPS4'. Many people going from black to whites to eveyone around the world with different colored skin or more different type of features as one another. Here starts racsism, meaning against ones color or there ethics. Now to this day it has been calmed down but there was a time that certain words labeled certian people showing that they were less than others. Leading this to riots and gang viloents to earning respect. They want to be treated as an equal not less than others that which our ancentors did them in the past. Third, '@CAPS5'. Religion is pretty big in the world and shows alot about the past and what certain people believe in. Religion is shown in these four types of form in these objects. Everyone believes theres is the right way and someone elses is the wrong. They cause conflicts in between one an another. So trying to keep them from bein banned isn't going to help for religion matters, because people do talk and some people out there want to change certain people to believe what they think is right. So back to @CAPS2 would everyone or some take to @CAPS1 books, movies, music, magazines? Well it's going to be exposed sooner or later. Options are let it happen now or let it happen later. The sooner could be better or for the worst. Either matters just let happen what happens, someone will learn from there experience so why banned now?" 4 4 4 3 3 3 +3935 2 "Leave @CAPS1 on the Shelves In every library it is intitle to have all types of books, movies, and magazines.Even if they are good or bad. Not everyone in this world is going to have the same likings.If there are people that are offened of what types of sources they find in the library I don't think it should be taken off of the shelves. Everyone in able to agree or disagree in what types of things they like. If the library didn't how would people learn about things today that are going on in this world, because not everything that is said on television is true. Every library in the world should not take certian books, movies, and magazines down just so kids or anyone else can't read @CAPS1 or watch @CAPS1 because there might be other people who would like to read @CAPS1 or watch @CAPS1. If the libraries took down certain books, movies, and magazines then it shouldn't even be called a library because it is suppose to have all types of sources. Not everyone is going to have the same opinion on whether or not certain books,movies, or magazines should be in the library, but all types of these sources should stay in the library beacuse if they are offensive to some people there aren't going to be like that for everyone so that wouldnt't be fair for the other people who enjoy reading, looking at magazines to see whats new ,or watching all different types of moive, and listening to music. I think that the librarians should not take anything down in their libraries because they know what they are doing when they put those sources on the shelves and also they should stay on the shelves because if they didn't want people to feel offended then they wouldn't have made books, moive, or magazine that would offend people today. Libraries don't leave the sources on the shelves on perpose for people to feel offended, they leave @CAPS1 for other people to read.With this being said all types or books, magazines, or movies should be left on the shelves to help other people learn what they want to learn about" 3 3 3 3 3 3 +3936 2 "I think that they shounldn't remove the censorship books in the libraries because so bigger kids can read the books not the little kids because they don't need to here the kind of words in the books. Also the little kids has to small of ear to hear and also to small of eyes to even see the words in the book like that. The bigger kids like in grades @NUM1 should be able to look at the books because it will be word that have heard before. The books shouldn't be in the lower grade libraries becaues the little kids will ckeack the books out of the libraries, like the books thatis called @CAPS1 A @CAPS2 @CAPS3 because it says the n word a lot of times, a other one is @CAPS4 and @CAPS5 becaues says a lot of dirt words like the f, s, and ect.words that they don't need to hear that young of age. Another reason why it wounld not be fair to the bigger kids if they take away from the libraries becaues they tring to get the out of the libraries so the littler kids don't get the books to take home read at home. If you are going to take away the books tale them away from the grades @NUM2 becaues the that the book called @CAPS1 A @CAPS2 @CAPS3, and @CAPS4 And @CAPS5 will be bad for those kids to read. Some more reasons why bigger kids should read the books and why not the little kids shouldn't read the books. Why should the bigger kids in grade @NUM1 should read them becaues they are bigger then the littler kids are. The littler kids shouldn't becaues we don't want the littler kids to go home and say the words to there mom, dad, grandme, grandpa, and ect. Now I have come to the end of my persuasive essay for the newpaper about my reflecting on why or why not we should get reid of the consorship in the libraraies. Also until the next time I right again about this topic and I hopest you like this persuasive essay for the newpaper." 3 3 3 3 3 3 +3937 2 "Picture for yourself you, as a @NUM1 year old child sitting in front of one of the greatest philosophers of history, @LOCATION1. Days later, you come to find out that he has been killed for 'corrupting the minds of the children.' @CAPS1 what? One of the greatest minds in human history has been censored because they didn't like his ideas. This is censorship at a basic level, and it happens to millions of books, movies, and songs every day. Censorship is not only wrong, its unnecessary. Here's why. @CAPS1, when it comes down to it, most books, movies, and songs are meant to be interpreted in many different ways. For example, some poems are written with a vague tone so that they can be interpreted in different ways based upon the person. Besides, most music and books are meant to entertain, not offend. Granted, some books are meant to be interpreted in a certain way, but that still doesn't mean that they were meant to offend. Think about it next to you look at a copy of '@CAPS2 @CAPS3' by @PERSON1; is it really that offensive to you? When you are given a book in school for a class assignment, they usually expect you to read it because its of some educational value to you. Books like 'To @CAPS4 a @CAPS5' provide a huge educational value because they show what @CAPS6 culture was like, but everyday, someone new is trying to get it off the shelves of every school library in @LOCATION2 because they find it offensive. Ask yourself, is it right? The answer for me is no, since books like that hold an educational value that outweighs their offensiveness. There's one last thing you must understand, and that is the fact that no matter how many books you take off the shelves, and no matter how many movies you ban, or how many songs you take away from us, the problem still isn't solved, its just been suppressed enough for different problems to arise, and those problem are that there are people who wanted to read this book @CAPS1 can't because you thought it was offensive. @CAPS1 this person complains to whomever banned this form of literature, and the book or other form of literature is put back on the shelves. @CAPS1 you feel it right to try and ban it again, but what does that solve? Nothing. Even if someone doesn't unban it, people can still teach and tell of what its about, making the ban worthless. I hope that before you think about complaining about some book you found offensive, you think about this. Your complaint that causes the banning affects everyone. It affects a teacher's ability to teach, and a student's ability to learn. Is it really right of you to take away a good teaching material? Or you could ask yourself, what does it really solve? Either way, you still must know that bannig these things in wrong." 5 4 5 4 4 4 +3938 2 "I think that the bad books, and all the adult books, magazines, and all the other articles should have its own room in the libraries. If you don't want little kids and teenagers in those kinds of books and magazines then put I lock on the door and if you have proof of @CAPS1 that shows your @NUM1 then you are going to be aloud back there if you don't have proof of @CAPS1 then I guess your not going back to the adult section. I say this because they have movies at the movie stores that are not aloud to be seen unless your @NUM1, but the thing is kids have imaginations that if you read a book you can also see pictures just like a movie. The movies in the movie store are locked up in a back room where you have to be @NUM1 or older to go back there and look. I bet its ruff when your kid is reading books and getting bad words out of them and saying them around like an even younger sibling, because then thats just going to cause a bigger problem then what you started out with. People have to understand theses days that kids are growing up way to fast to just leave stuff like that laying around. Parents need to keep stuff like magazines, movies, pictures, books and stuff like that up away from kids. I feel like once you become a parent you automatically think your smarter than a kid but yet kids are pretty darn smart. I understand its only a word but its disrespectful to have your kids running around cussing and saying inaproperiate things to nice people. When kids do that then othere parents that don't let their kids do that stuff think ' wow these parents obviously don't care'. I have a feeling that its never going to stop but it would be better if childrens parents did not let them cuss around other people ok at home if your parents don't care then sure but when you go out to eat or something and your son or daughter is over there cussing like a freight train its all because of those books she has been reading, the magazines and the movies. Im going to close this little description now and im still against kids cussing under the age of being a mature teen" 3 3 3 3 3 3 +3939 2 "There are many inapropriate types of intertainment in the world but does that mean we should take them all away? I believe that censoring things such as books, movies and music in a library is not a good idea. We would not have any diversity in the world or any type of intertainment because everyone has a different view on what they think is offensive or inapropriate. With censoring materials in a library it will extremly limit on what we can learn. For example if someone thought that a book about how an animal catches it pray was offensive then if a person was interested in learnig about that topic they would not able to. Many peoples only way of reserch is at a library, so if they had on assignment for work and they could only get informatoin on it there they would not be able to finish their job if only one person thought a book about that topic was offincive. Also people in the medical feild have to watch many movies deminstrating sertain proseedures. What would they do if one person thought that a movie on what they were doing was offensive? They might not be able to save a persons life. With censoring there would be no diverstiy. Censoring would cause us to have a very small choise in what we could read for intertainment. It might even cause us to not have any books to read for intertainment because it one person does not like a sertain book it can be gotten rid of. So if not all the books are gone there is still going to be a few books to chose from. It would cause all to read the same books therefor making the diverstiy very small. I see only a few good points in censoring. Yes, it would prevent children from learning or hearing about inapropriate or offensive things but, that is what is in our world and i believe that we just have to accept it. Our society today is filled with crime, haterid, sexually things, and profanity but there is no changing that. Censoring @MONTH1 hide that for a small amount of time but its not going to keep it away forever. Censoring is not going to change our society. I do not think that we should censor thing in our libaries. It can only lead to a downfall in our communitys. It is a great idea but i do not believe that it can help us more than it would hurt us. Censoring will cuz a lack in diversity education and a realization of our society" 4 3 4 3 3 3 +3940 2 "Now, one way or another that certain peice of material will be found and be used. Someone out there in this world will appreciate that material and want to share it with others. So really, either way you @MONTH1 try to remove any material that you think is offensive but is it your right? I don't suppose so, I would consider that unfair. It's unfair that you were able to see this material and just because you thought it was offensive, it does not mean that others @MONTH1 find that offensive in their opinion. So the idea of pulling them off the shelf for your own selfish opinion is ridiculous. For you to do that would be defeating the purpose of being an @CAPS1 for the author of that material. Having the freedom to sell or convey something they want viewers, readers, listeners, etc. to look at and use, would not happen because a person or a small group of people consider it offensive. It's big world out there, you think just because you can try and hide certain material from people in your area to see, that no one will find a way, people will always find a way for it to get out or be found. It would be as if your trying to control what people should be viewing, listening, reading, etc. Almost as if your in control of people, but you got to realize that you can't hide everything in this world. Also that not everybody in this world has the same mind set as you do, and that what ever you find offensive @MONTH1 not, or actually does not mean everyone else does. So this leads to my conclusion that it should not be your right to remove material from shelves that only you or group of people find offensive. Do not try to control what people or childeren should view, listen, or read becuase it will be found sooner or later. No matter how hard you want this world to be perfect, reality is that it won't happen and you can't keep everthing hidden" 4 4 4 4 3 4 +3941 2 "Most people do not think that kids should see certain things if they are found offensive. Like some books, music, movies, and magazines. I do not believe books or any other thing should be removed from libraries shelf. It should be the parent choice to what their child can look at or listen to. But now days when a child parent or any other authority don't let them do, watch, or listen to something it make kids want it more. Since they want it more they will find away to do, watch, or listen to what ever it @MONTH1 be. They will even go behind there parents back and probably won't care if they get in trouble. With this new generation authority can only limit so much of what children see today. Children see a lot of things that they are interested in and can find it all different types of ways. Computers, televsion, and the radio are three differnt major ways of finding things that maybe offensive but kids are interested in all the time. Young parents i do believe is one of the reasons kids know about these movies, books, music, and magazines. They say things and do things that young people should not know at a young age. That what make kids think its alright when their parents do what ever it maybe. So let it be the parent choice of what there child can see. Cause either way they going to be able to find away to get it." 2 3 2 2 3 2 +3942 2 "Things that mean so much to just one person @CAPS1 to start this off, I am going to say Katherine Paterson is saying / @CAPS2 what is correct.They're is alot of @CAPS3 around this world that is very senceitive about there things in there house and around there life that they wouldnt want anyone to touch. Or be around. One important thing that I have that means so much to me & my @CAPS4 is the @CAPS5 that my @CAPS6 gave to us right before he passed away. Me & my @CAPS4 have been wanting to listen to it for a very long time. But we just cant get the nerve to do it. We do not like it when someone thinks they can just do what they want by walking up there where we have that @CAPS5 and just grab ahold of it. @CAPS1 me and my @CAPS9 do not like that. So we say something. Thats one thing that we @CAPS10 like for anyone to touch. Because it means so much to us! Most @CAPS3 think we are crazy because we @CAPS10 like anyone to be around or touch it, but all I have to say is that there is other @CAPS3 around this area that is more crazy about there things being touched. For example: ' @CAPS10 be over there by my clock hanging on the wall I @CAPS10 want you to knock it off, so get away from it! ' That is something that my bestfriends @CAPS11 had said before. & she still feels the same way still to this day! But I mean its just how we feel about everything around us that means alot. But to get back to the situation about why do @CAPS3 get so fustrated about things that are hanging on the wall, or things that are in cases and thats where they have been for years and years. Its because it means so much to them. Its not just cause there mean or because of some kind of reason to gripe. It just because it means so much to them, & when I say means alot to them, I mean a bunch bunch!! There just trying to say that it means more then anything to them and they do not want it to be bothered. Just try to understand what there trying to say to you. Because it could mean so much. & you could get to the point to watch out for it also. Just to help out. But the store that Katherine Paterson had wrote is saying the right thing. & she also probably has things in her life to that means alot to her. You just have to reconize what she has that is so important because there is alot of @CAPS3 that have impotant things in there life, & you could be one of them. Just try to see & feel how alot of other @CAPS3 do around the world around you. Just have to remember whats important to someone and help keep an eye out with them. & because a good friend to everybody else." 3 3 3 2 2 2 +3943 2 "What I do think is that they should keep everything in the library. Some people like to stay and read the newspaper and listen to music while out in the library. If you do think it's offensive, then don't read it or just pick out another book. Everybody has their own ideas on a library and if they want their voices heard let them speak it out. What I think about all this stuff in the library these days are good for the kids so they can learn faster and have a lot more to look forward to when they do get older. My own experiences in the library that I do see that there is a lot more people in the library and there is a lot more you can do instead of reading books most of the time. You can read magazines or newspapers to pass the time when no one is home or to hang out with, and it does get boring just reading books so try something different for a little while then go back reading the book that you did start with and wanted to take a break from. Then other people have their own voice to say something if they don't want it in their library. Some of my observations that I have seen were not really good. I've seen some protesters in front of the libraries and I have seen them close down because of it. But people sometime can take it to far and do sometimes burn it to the ground. I have seen people cry over it and it makes me really upset that I want to do something to help them but I really can't do nothing. The most valueable thing is the kids and young children that read the books. What if someone burn down you home, this is how these kids feel when you close down the most safe place to them? They have the biggest voice of everybody put together. That if you do something that make them feel better that would be really good to them. That they have not done anything to deserve this kind of mess that we put them through. It is very difficult to have somewhere to go to read but there is nowhere to go. If you don't want to be quiet then let your voice be heard aroud the world and have the freedom to let it come out. You have three diffenent voices your own, other people that do or don't agree and you have your children. So which one are you going to listen to? When you have a choice and you have to make it and hope you make the right one" 4 4 4 3 4 3 +3944 2 "Should you conceal a child from the inappropriate half of the world? Not letting them hear, see, or read the bad in the world. Letting them grow up as innocent as possible. Should libraries take these procautions? In a world like ours were bad things happen everyday when it comes to people comminting suicide, being murdered, goverment scams, and even terrorist attacks its hard to keep people that shouldnt know, from knowing. It is very easy for our nation to figure things out, all we have to do is watch @CAPS1.V. or even go to our local library. While we already censor what goes onto our television, we dont think to care as much for our libraries. Our libraries have anything from thousands of book and magizines and now having an equal, or more, amounts of movies, @CAPS2, and videogames. I think a library should have censorship when it comes to what they have and how they organize it. There should be different sections of libraries, much like they do now, of age groups and what is appropriate for them, and to avoid people checking-out items that are from sections above them they have an age group security check on the libraries card fileing system. This sounds very complicated but at least we are doing as much as possible for trying not to expose anyone to anything they are to young for. When it comes to offensive material, I think that should not be taken off the shelf but put into a different place in the library. Some people need to read some thing they find offensive, maybe they need to read it for a class, maybe the book is offensive but needs to be read because it teaches a very good life lesson. There is a book that is called '@CAPS3' its by a man with the last name of @LOCATION1. It sounds very offensive but it actually teaches people the origin of the word and how it came to be offensive to people. It @MONTH1 be offensive for some people to read but it teaches a lesson in why people shouldnt say it. Yes, there are always going to be some parents out there that don'@CAPS1 care as much when it comes to what there child read, watches, listens to, or plays. But, for there kids to get it, there parents will have to come and get it for them, that way the parents know what they are extracting from the library." 4 4 4 4 4 4 +3945 2 "We all find things offensive, wether it be in a book, magazine, movie, cd, tv show, or a newspaper article. Libraries hold all of those items and somepeople @MONTH1 or @MONTH1 not want to remove the items that they think are offensive, but would that be right? If everyone went to the library and took everything that they thought was offensive off the shelves, we would have nothing left. Maybe writers should just cut down on things that are innapropriate, racist, or things that include foul language. Then not as many people would be offended and they would not have any problems with letting their children pick out books on their own. Although, it @MONTH1 not be the writers at fault here. It @MONTH1 be the readers. Some people should just stop taking everything so seriously, then they would not have to worry about things like what their children are reading. Yes most adult things now are innapropriate for children, but that's why it is for adults. Children have their own selection of books and movies. And parents need to realize that maybe they should take their kids to the childrens section. All types of entertainment are categorized by age and people should start paying more attention to that. If parents started watching what their kids do, then they would not be worrying about the reading or watching something they should not be. That is what parents are for, taking care of their children and some people do not do a very good job of that. If there is a book you read and it is something you do not want your child to read, it is probably something you read when you were older, so do not worry about it until they get to that age. And maybe then it would be ok of they read it, because they are old enough to realize right from wrong. Parents can not always control what their children do. And if they do by chance pick up the book their parents never wanted them to read, they @MONTH1 see it in a different way than their mother of father did and they @MONTH1 learn a very valuable lesson from it." 3 3 3 3 3 3 +3946 2 "When going to a library you expect to see various books, movies, music, magazines, and maybe other items. If a person is looking for a book that maybe could be offensive to a race, culture, religion, or etc., they should still be able to check out that book. Libraries shouldnt be able to control those situtations, because it's a persons choice or adults choice to read those kinds of stories. In our country we are allowed to express our opinion by the @CAPS1. The @CAPS1 includes free speech which insures that anyone can express their personal feelings or their opinion on certain matters. If a person would want to check out a book that could offended another individual technically by the law they have the right to do so. I'm not condoning that someone should read books, listen to music, or even watch movies that could be hateful or cruel, but by the law its ok for people to want to read, listen, or watch those works. Libraries are government funded organizations. Therefore meaning they dont have the right to disregard these works. The government pays for the books that are purchased into the library. This means they need books that people would want to read, and be interested in even though some gruops of people might not agree its there job. I'm not encouraging reading these novels or listening to offensive music, but as citizens of the @LOCATION1 we are allowed to listen to what we want, and read anything we want, because thats what our country is meant to stand for freedom. When I think of @LOCATION2 i think freedom, and i have to say I'm proud our country stands for that, and we should stand for that freedom even when it comes to the small things in life" 4 4 4 3 4 3 +3947 2 "Know you ask me to write an essay to a newspaper reflecting my views on censorship in libraries. Well ok then I will you my not like what I have to say but I really dont care @CAPS1 if it was up to your dam goverment to decide what we could say or what we can read or even do. Theyd have us all in our house with our hands tied so we couldent learn more then how to eat, clean, and dress our selfs. Now the way I see it is that we have every rite to read any book we please when we whant to read it. now if we dont want to read a book then we dont have to read it. but we as a people and they as a goverment do not have the rite to take your books out of the libraries. Now we as a people can press any thing we want @CAPS1 no matter what they as in the goverment thinks it is the people who run the stat not the dam goverment. My point is, is that the books are there to teach us about our lives, our histoy. Books teach us about what wrong and what is rite. Books are here to give sceary story by a camp fire they are here to give kids a bed time story. If we take thos books off our shelves you think the kids of your generation are bad just wait @CAPS1 the next one will be worse than this one i promise you that. Now it is our rite to save our books, @CAPS1 if we do not then us as @CAPS3 will be lost. For without book our passed is lost, our fock tales are forgoten, our kids will not be able to sleep at night without there storys. Now come guy as a all pull it together. If you see a book on the shevles and you think its offences then by @CAPS4 put the dam thing down and walk away from it dont complane about it. No one told you that you had to read it. So don't ruine it for everyone just @CAPS1 eather you dont belive in @CAPS4 and you think that the bibles not rite then dont touch. its the same way around if you do bleave in @CAPS4 and you think that all book that tell about a witch or vampires or that my even have a hore house in just leave it alone. its just a dam book let us read them. See you guy blame us kids that the vido games roten our minds but realy its the parent that dose @CAPS1 see there is nothing more a teenanger like myself loves to do more than to do something there mom or dad says not. So gut just back off and let us read and play and do what in the hell we want to do." 3 3 3 2 2 2 +3948 2 "Many people like different books, music, movies, and magazines. Some people take offense to them. Others do not. For me I dont. I do not believe that certain materials such as books, music, movies, magazines, etc, should be removed from the shelves because there are different types for different types of people. If a person took offense from a book or magazine I believe that person should just put it back. If books that offended people couldn't be on the shelves there would be no books on the shelves because I'm sure there's atleast one person in the world that would take offense to each book. There are o lot of people in the world after all. For music there's different types also. There's rap, country, rock, pop and many more. For example if someone likes rap but not country that person has a choice to listen to rap and not country. If that person doesn't like country though it shouldn't be removed because others @MONTH1 like country and want to listen to it. For movies there are many different types. There's horror, comedy, romance and many more. That's why at the theater there's different rooms for different movies. People always have a choice. Many people like different books, music, movies, and magazines. Some people take offense to them although some don't. Every person is different. People like different things. That is, in my opinion, the beauty of human nature" 3 3 3 3 3 3 +3949 2 "The views on censorship in libraries definitely varies from person to person. There are those who are offended by the material that is out there for anyone to access, and then there are those who want the right to read, listen, and watch whatever they choose. I believe there are pros and cons to each choice, either way you look at it, but there does need to be some sort of censorship in libraries; the line must be drawn somewhere. The lyrics in music can come off extremely offensive to some people. The inappropriate scenes in movies, whether it be involving two people of opposite sex or intense action moments, are not something people of a young age should be exposed to. The easy access to the library is part of the problem. Someone of any age can get their hands on just about anything they want. In my own experience, I have had the opportunity to get whatever I wanted at the library. The advertising pictures on the cover of books, movies, magazines, etc., gave me a false sense of what the material really contained when I was younger. I came home from a day at the library with materials that my parents did not approve of. If you look at it from the other point of view, you would probably be thinking, if we got rid of all material that someone would find offensive, our libraries would be left with close to nothing. In reality, I believe that once people realized that exposure to this kind of material is offensive, authors would change the way they would write; directors would change the way they produced movies; artists would change the lyrics to their songs. So yes, library's shelves would have been rid of many materials, but they would be replaced with what the people want. Others might argue that they have the right to read, listen, and watch what they would like. This @MONTH1 be true, but shouldn't others have the right to let their children go to libraries without worrying about the gruesome material they might be exposed to? Although to some people this argument @MONTH1 go either way, if the line is never drawn on what is available, who knows what the world @MONTH1 come to. From here, the material can only get more offensive, more disturbing, and leave a bigger effect on the minds of people. Children will be exposed to the 'evils' of this world at even a younger age, and if that is all they ever know, they won't realize what else this world has to offer them. Authors, directors, producers, and artists will all change their material if we show them that it is not what we want." 4 4 4 4 4 4 +3950 2 "Do I believe that certain materials , such as books, music, movies,magazines, and so on should be removed? Yes I think that they should all be removed, becuase it could hurt people's feelings, and could make them do plenty of things. Such as suicide, drama, and so on having any of these things at a library could hurt someone's feelings. I really dont think that I would like having racial comments about me in a book so why would anyone else? I think that by removing all these things could make some peoples lifes better. From exsperince in the library last week, I seen this girl that ran to her mom crying becuase she was african american, and the book said something about thier race. And she was all worried that what happend back in the day with all the slavery would happen again. I would be so terified reading about people that would make fun of my life, call me names, and beat me, that kind of thing would just ruien my day. Now I think that library's would learn to take this certain stuff out of stock. Now that I have gave you convincing arguments about my choice from my own experience. I think that they should take my advice, and realize that having that kind of stuff is not good for kids,teenagers, or even adults that they should not be reading that stuff. All it does is bring some people down, make them cry, and also so stupid stuff. Now by making the choice to remove all this stuff would be smart, and make things better for everyone" 3 2 3 3 2 3 +3951 2 "Imagine walking into a library where the shelves are empty. A library where there are no books to lose one's self in the pages. A library where we are not allowed to read controversial classics that fill and open our minds to new views. A library where works of literature such as @ORGANIZATION1, To @CAPS1 a @CAPS2, and @PERSON1 are not on the shelves awaiting students to dive into their pages. Some of the greatest books ever written are respected for their controversy and mind blowing ideas. Censorship in libraries should not be applied because every person has the personal right to read whatever they like, has the right to broaden their minds, and has the right to enjoy a practice which is being taken over by modern technology. A number of children in the @LOCATION1 are unable to read at their appropriate grade level. This number is greatly increasing due to poor education opportunities, lack of interest in education, and lack of resources in the @LOCATION1. Reading is the fundamental basis for each and every school subject. It is proven that children who are successful readers are five times more likely to be overall more successful students. However, by censoring what books are allowed in a classroom and library we are taking away a child's chance to broaden their minds. We are also taking away books that @MONTH1 interest a child. Children are @PERCENT1 more likely to read a book that they are interested in. Allowing a child not to read a book, such as '@CAPS3 @CAPS4' is unpractical and harmful to the child. By taking away a book that students greatly enjoy it discourages them from reading altogether. A person not only has the right to the best education one can receive, they also have the right to read whatever they want. Books open up a child's mind to new places and adventures that they @MONTH1 not ever be able to experience in their lifetime. Books have the ability to broaden people's minds. Some of the most interesting and controversial books that challenge an individuals beliefs and thoughts are being taken off the shelves and no longer readily available to people. @LOCATION2 was founded on the basis of freedoms; freedom of speech, freedom of thought. Why should this freedom not apply to books? Why should any person be allowed to tell another person what you can and can not read? And why should these books be available to everyone through public libraries? This freedom should apply to books. No one should be allowed to tell another person what they can and can not read. And these books should not be censored in public and school libraries. No one should be denied the chance to learn. By censoring books in libraries throughout @LOCATION2, millions of children are being denied the chance to learn. We live in a world where televisions, computers, iPods, and cell phones can be found in most homes and in everyone's hands. Books are thought of as 'a thing of the past' and not up to speed with today's technology. However, books are an important part of one's education. Censoring libraries discourage kids to read even more than they already are discouraged to reading. Kids do not want to be told what they can and can not read and by taking away the books they want we are supressing their minds. Censoring will only make them want to read less, and play on the computer more. Censoring in libraries is also a pointless and non effective method. Kids with internet access can look up almost anything on their home computers. The things they find on the internet will be more controversial then the majority of books that are being censored. A favorite book of many kids is the @CAPS3 @CAPS4 series. These books have been taken out of many libraries for their use of witchcraft. However a child could go home and watch the movies or search the internet for something more controversial. Censoring is pointless because children have other ways of viewing things that would be censored in a library. Censorship in libraries should not be applied because every person has the personal right to read whatever they like, has the right to broaden their minds, and has the right to enjoy a practice that is being taken over by modern technology. Today's youth is exposed to wars, terrorist attacks, gangs, domestic violence and drive bys everyday. The world of books can be an escape from the world they live in. Books can help a child overcome poverty, mental challenges, and violence everyday. The pages of books fill them with hope and give them courage to create a better future for themselves. The inspirational stories in books have inspired millions to achieve more then they thought possible. Censoring would take away the chances for our future generations to become inspired by these books. Censoring would only hurt our youth and the greatness that they can accomplish." 5 5 5 4 4 4 +3952 2 "First of all i believe if its on the shelf you should be able to get it, no matter what your age is. Yeah theirs thing's that shouldn't be on the shelf, but how are kids and people supposed to know to get that or not. If kids arnt alowed to get certant material on the shelfs, Then it shouldn't be their, @CAPS1 my oppinion. Parents @MONTH1 think differnt, parents might think only certant things should b alowed at a libray. @CAPS1 not their choice though. Anything is alowed to be at a libray. If you dont want your kid reading or getting certant thing's, then when your kid goes to the libray go with them. Help them pick out a book. In conclusion i believe you should be able to check anything that is on the shelf. Kid or if your an adult. If your not alowed to get, then why is it their? I dont know i couldnt anwser that question, other than why is it their? @CAPS1 my oppinion though" 2 3 2 2 2 2 +3953 2 "'@CAPS1 are you reading' asked mom. I immediatley hid the book behind my back, knowing she wouldn't like the idea of me reading such an in depth book. Some parent don't like for their kids to read some content. If it's not okay at home it shouldn't be okay at school. There is some subjects that maybe we shouldn't but we do because our parents say no. Removing said subjects will remove the chance of disobeying or parents, and coping behavor from book. There are books, movies, magazines and music that is 'cool', but not all that appropriate. Some movies and music use offensive language and actions that some kids pick up on and refelct actors, actresses and artists. Soon they start making a name for themselves by using such language or actions and eventually becomes known as the bad kid. Students such as myself are inferior to being popular or noticed, so they feel the need to do things to become noticed. Most things students model after are the things they see, hear, or watch, such as the media. It is wise to set censors in the libraries, for students. Though some students don't nessicearily want censorship in libraries, it is only for their best intrest to remove materials that are offensive. It will make students including myself better people by not learning of the things we hear about or watch. I think by using censorship it will help student to make the decison at home to to become involved in such thing. I have noticed that students often watch how movie stars and famous people act, if they are a fan or the famous person then they are more likey to model after them and do the thing they do. Lets say I was a fan of @PERSON1 and I read that she stole something. Being a fan of her I would either find someone else to model after or do as she does because it cool. If I did the things @PERSON2 done my parents would most likely kill me, and if I got luck somehow and they didn't then I would go to jail for sure. So in conclusion, I think censorship is important in libraires because it insures the well being of students and protects them form things they odn't need to be part of. I would respect the idea of censory in my school becaus eI would know it is only there to help me. I hope that all students see that it is important not to be subject to violence, sex, drugs, drama, through movies, music, magazines, or book" 4 4 4 4 3 4 +3954 2 "I don't think censorship should be practiced in libraries, @CAPS7 it's not fair to everybody. If censorship was practiced everywhere, there probably would not be any movies or anything entertaining out, due to a large amount of people complaining. I have a few reasons also @CAPS6 I think there should not be censorship in libraries. @CAPS5 first reason is freedom of the press. In our @ORGANIZATION1, we are given the right of writing what we want, and if censorship continues, we will lose one of our rights. I don't think that's fair to control what we want to write or read. Another reason I have would be freedom of speech. Also written in our @ORGANIZATION1 of @ORGANIZATION1, we are given the right to say what we want, and nobody can control that. If we keep using censorship, then this right will also be taken away from us. We're slowly losing our @CAPS1 given rights, @CAPS7 people are offended by books and things of that nature. A personal experience I have was one day @CAPS5 friend and I were going to go to the library to get a book for our history report. The report had to be over the @DATE1's and slavery. Unfortunately, @CAPS5 friend was @CAPS2 @CAPS3, and he had a hard time not being offended by the assignment. When we got to the library, things got worse. All of the books we found were over how bad the slaves were treated back then. @CAPS5 friend was getting very upset at this point. Finally, he saw another book making fun of the slaves, then he went up to the librarian asking, '@CAPS4 you take those books off the shelf and put them somewhere else?' The librarian just looked at him with a straight face and said, 'No. What makes you think you should get any special treatment?' @CAPS5 friend was dumbfounded. He couldn't believe what he had just heard. After he had came back over to where I was sitting, I had told him that she was right. '@CAPS6's that?', he said. I said, '@CAPS7 if she would've taken all those books down, she would've had to take about every other book down too, @CAPS7 somebody would find something hurtful.' 'You know, your probably right,' he said. Censorship isn't fair, @CAPS7 it limits us to our abilities and what we enjoy. It's not fair to punish other people based on what they read, write, or say. We all have our own preferences; how would you like it if yours got taken away?" 4 4 4 4 4 4 +3955 2 "Some people often go to the library to check out books,movies,magazines,etc..But what some people might not realize is that some of the things that they have at the library might be offensive towards certain people. I think that everything thats in the libraries should stay there. Obviously the library allowed it there for some reason. So honestly it cant be that bad. I do not think certain things should be removed from the library. People have to realize that that's life. There's going to be certain things that you dont like but you have to deal with it. If you watch tv you'll notice that there's some offensive things towards certain people. But no one really makes a huge thing out of it. The books might be offensive to you but to someone else it could just be another book that they want to read.With no intentive purpose of offending anyone. The library is all about learning. Everything is for educational purposes. I've read books that I stopped and thought about for a second while I was reading it and noticed that theres some pretty harsh things in it. But i didn't complain about it, I just kept reading. Alot of books are based off of true events so no matter how offensive they are to people, you just have to think what the purpose was for the author to create this book and same thing with movies. So people can see what the author has to say. Everyone has the right to have their own opinion. And thats what most magazine articles are about. Expressing what you think about a certain topic. Even in the @CAPS1 class that im in now we had to read 'To @CAPS2 A @CAPS3'. Some @CAPS4 @CAPS5 people might think its racist but it reallu isn't. The author is trying to get his point out. Of how things use to be before white and colored people were treated the same. Now if you still think that is being offensive towards you or other people then thats alright. That's why this is a free country. Everyone has the right to say how they feel and not get in trouble for it. So I hope i got the point across that it's alright for some things to be offensive towards people. As long as thats not the whole point of what you watching or reading. Which i doubt it is. So next time your reading or watching something that is offending you. Think about the point that the person who wrote or made the movie were trying to get across. Mybe by it offending you it is getting the point across." 4 4 4 3 3 3 +3956 2 "Censorship can be a very good thing. It keeps inapropriate material from falling into the wrong hands. It also keeps the horrors that are in the sensored material out of the community and that makes the community a better environment to live in. But too much censorship can become a bad thing. For instance @ORGANIZATION1 had an extreme censorship policy when he was burning all of those books. There also several books that talk about the censorship idea getting out of hand like the book @CAPS1 @NUM1. Libraries should censor some of there material. Books and magazines need to be censored according to there content. Books and magazines both use words and sometimes pictures to get there point across. If a book is using vulgar and inapropiate language in should be in some way censored. With this in mind I should not be able to pick a book and open it to find sexual dialog. I also shouldn't be able to find the constant use of swear words in a book or magazine. Also lots of people get offended with violence and lots of gore. Magazines and books also use pictures to help get there point across. If there are inapropriate pictures in either of the two sources that material should be censored. If I am walking through my local library and just see a magazine sitting ou with a nude picture on the front I'm going to wonder about my library's censorship policy. Another example would be that I pick up a book and start looking through it and it has an inapropiate picture in it, I am going to wonder about my library's censorship policy. Also if a magazine has an extremly violent picture or extremely gorey picture it should be cnesored. Overall if a book or magazine is extremely inapropriate, then it should be, in some way, censored. Music is another form of media that can be found at a library that should be censored. Musicians use artwork on the album sleeves to grab the attention of people. If that artwork includes swear words or inapropriate pictures it should be in some way or shape be censored. Musicians also play music of course. But if the lyrics to there songs are explicit or has many sexual themes it has to be conesored. Someone should have to deal with wading through music like that. No matter what, if an album of music is out of this world inaproiate, it should be censored. Movies are most likely the hardest things to sensor. This is because they use language, pictures, music, and video. Movies are multi-media monsters that can sometimes be very clean, and sometimes be very inapropriate. If a movie is rated @CAPS2 it should not be in a public library. Movies that are rated @CAPS3 for seual content, nudity, drug use, alcohol abuse, or swearing should be censored. A kid should not be able to get his hands on that kind of stuff in a public library. Also depending on how violent and a gorey a movie is it should be cenesored. Movies that are inapropiate, especially ones rated @CAPS3, should be censored. The fact that this debate even needs to happen is sad. But it does so we must censor certain things that people @MONTH1 get a offended by if they saw it in there public library. Things containing nudity, sexual content, swear words, gore, and violence to possibaly be censored. There also needs to be a line where we stop sensoring or pretty soon, just like Katherine Paterson said we won't have any books left. But overall there needs to be some type of censorship in public libraries." 4 4 4 3 4 3 +3957 2 "As an individual and what books I have read, I believe some books needs to be taken off the shelf. My concern is for the children who get a hold of these books. Kids should be kids and wait till they're older and more mature to know about certain things. This also includes music, movies, and magazines. Some people believe these things influence bad behavior like stealing, cussing, and even murder. The less obsene matterial we have the better we can control our kids or at least some of them anyway. We see bad behavior every day like stealing, cussing, murder, and assault. Ever wonder what causes people to do it? Just look around you they show it in movies, they talk about it in books. theres even songs about it, no wonder kids think its okay to do these kind of things! If we limit these items we @MONTH1 see positive results. Like I said before kids should be kids and be free of these obsene materials. They will be exposed to it sometime but hopefully when they're older. In the mean time censors should be put on these items or taken off the shelf." 2 2 2 3 3 3 +3958 2 "Do I believe that our libraries have some books on their shelves that they shouldnt have. Well of course I think that there are some books, music, movies, magazies, that young children should not read about, hear, or watch. These kind of things affect our every day living. Lets start off with a book that has killing in it. I'm not a parent at the time, but I know for a fact that I would not wan't my children reading about that kind of violence. Thats not something that a twelve year old child should be reading about. Those kind of books could get kids thinking oh he killed someone why couldn't I, and thats how some kids grow up to be bad and have to go to jail at the age of @NUM1, because they have killed someone or tried at least. There also other books that some children shouldn't read about and that @MONTH1 be about slavery. If a mother doesn't want their child to know about slavery at the age their at there shouldn't be that type of book on the shelves for a ten year old to read about. I mean if I had family members that lived in the slavery days i for sure wouldn't wan't my kids to read about it, because that shows how white people disrespected the blacks and that could have an affect on that child. That could cause them not to like white people. Second is the music. I know that most libraries don't have all that bad music that is on the radios, but I'm sure there is some music that has something about steeling on it. Thats aother thing that could give kids the wrong idea and send them on the wrong track again. There's just some things children shouldn't hear unless their with one of their parents, and then that parent could explain to them that you shouldn't do what the song says. But they shouldn't be in our school or public libraries. The third thing is movies. There should not be any movies of killing, breaking in peoples houses or fighting at any sircumstance in a school library. School is not a place for a child to be watching those kind of things. That just gives a young child the wrong kind of idea, and isn't approperiate for schools to have. The last one is magazines. There should notbe magazines at school of women in their bathing suits or men with out shirts on. That could make the kid think he could do that and he could get him self in to big trouble. Thats what I think about the books, music, magazines, and movies in a library." 3 3 3 3 3 3 +3959 2 "If there is any books, movies, music or magizines that is offensive, then I think it should be removed from the bookshelf because of caution for little kids. Everyone wants to look at different movies, books or music that isn't right for kids, but we all have too know where kids get acts from. The books can be left on the shelf, if the younger kids does not bother them. They have to know that adults don't always want to watch kids shows. There should be a right that adults can remove books from the shelf if its not right for there kids. Yes, books, magazines, movies and music should be left off the shelf if offensive. This is neccasary because they can watch the movies and learn bad habits from the shows, listen to the music and learn bad words, and look at magazines and see bad pictures. So have kids stay away from offensive materials. There is a lot of younger kids that love to get into stuff they are not suppose to. Such as bad movies not for their age, because kids learn their bad habits from t.v. shows or even movies. If the movie is offensive then it should definantly stay off the shelfs. Inless it is just grown ups in the house. If movies are just laying on the on the shelf or around the house. Younger kids could always just grab them not knowing what it is and go watch it in there room. Horrible music is just as bad, because they can listen to it and get their bad language from the @CAPS1. If parents don't want there kids growing up to be bad people then I advice all parents to keep the worse @CAPS2 away from children and hide them all. They can always hide them in the rooms, in a desk draw for child safety. Have all kids stay away from offensive and bad items they are not aloud to be around. Magazines are bad to look at if they have pictures not neccasary for children. Watch all children around the magazines or look at the magazines before allowing them to read it. There @MONTH1 be disgusting pictures that children can not see that young. So make sure they all stay clear and far away from them. I would keep all items away from young children at all times, if they are not good. Just watch all children around magazines, movies, and music. All of these materials, all children can learn bad habits from. If they are not offensive then don't worry about them getting them to watch them, because it wont be bad. They all want to live a life sometime and act like they are adults. So, sometimes you have to treat them like an adult. Yes, make sure all books, music, movies and magazines all stay away from young children if they are offensive. Movies needs to stay away from children because they can learn bad habits from the shows, music needs to stay away from young children because they can learn bad language, and magazines needs to stay away from young children also because they can look at bad pictures they arn't suppose too." 3 4 3 3 4 3 +3960 2 "In a way many books are put on the library shelf for a reason. Some of the books take race, sexism, bullying, ect., to extreme. Putting myself in a child's shoes when they read those books, magazines, movies, music, ect., would have to be scary. The languages in movies and music are not what we think they are. Would you want your child, that's @NUM1, to go out and do what the other @NUM1 year olds do because they think it is cool for others to do? Remember back in the days when you were young and your parents didn't have to worry about what you were doing because your generation wasn't like the generations now? Well, these generations to come will probably get worse if we don't do something about it now. Taking some books off a shelf, or taking profanities out of a song will not hurt a child or teenager one bit. These things are telling your children it is ok to have sex, smoke, drink, or even cuss. I know that my mother worries about me @NUM3, because she's always calling me to check up on me and asking how my day was, or if i had any problems today. If we work together on taking care of all of the profanities then i bet the world would be a much safer and nicer place. Bullying wouldn't be a problem anymore; neither would cyer space or the drugs and alcohol. You need to step up and show your children that doing those things are not exceptable or nessesary in any life. Remember them that there is a whole life out there without the sex, drugs, and profanities. So, the next time you think that your going to buy a dvd or a cd preview it before you buy it. Make sure that if your child listened to it that it wouldnt be hurtful or have any profanities in it. Make sure that you talk to your child about what is right and wrong. Lets make these profanities go away on their own. If they aren't something you want your child to listen to then you shouldn't listen to it either" 4 4 4 4 4 4 +3961 2 "Browsing for a book at your local library that you've read, wanting to reread @CAPS1 to enjoy the sounds of its words again? You look shelf after shelf, not locating @CAPS1 anywhere. You searched everywhere, by everything that the book would possibly be listed under. You've browsed paper backs, hard backs; eventually letting your frustration take over.Giving up on locating the novel, you walk over to the librarian and ask about @CAPS1. She replies with, 'I'm sorry, we had to remove that particular novel due to a person finding @CAPS1 offensive to them.' You're infuriated, you decide to write a article to your local newspaper about the outrage of the books, movies, music, etc. that has been taken out of your local library. Personally, I don't think that the media taken away from the library should be considered offensive. How can you consider what is offensive and what is not? A book could be offensive to one person, but not another. Different people have different opinions, and @CAPS1's not reasonable to remove a book or other type of media from a library because @CAPS1 contains 'offensive material.' @CAPS1's ridiculous; @CAPS1 infuriates me that someone would do that. If you think @CAPS1 could get into the hands of a child, or someone that @CAPS1 would effect, do not rent the item. That's why at most libraries, there are seperate areas for adults and children so that children don't obtain these items. How can you determine if something is offensive? I personally don't find a lot of things offensive, but just because something is offensive to me, doesn't mean I will request to have @CAPS1 banned so that other people can't enjoy @CAPS1. If you find something offensive, just leave @CAPS1 alone. Don't bother, annoy, or hassle someone else that had nothing to do with its creation with @CAPS1. @CAPS1's not only disrepectful to the individual you file a complaint to, but the artist who created @CAPS1. You do have the right to voice your opinion, but sometimes, @CAPS1 doesn't have to voiced. We live in such a closed-minded world. We have people who don't even think @CAPS1's approprite to show one's arm. I can see why some people take offense to these things, but honestly, @CAPS1's mediocre to report something just becuase you do not agree with @CAPS1. We have a vast knowledge of what's right or wrong, what is or is not appropriate for an audience to hear. If @CAPS1 weren't appropriate, you honestly think @CAPS1 would have been published? Sure there are things in book, music, etc. that are inappropriate, but to be so closed-minded to have something banned for use of foul language, minor sexual content, or violence is unlogical. You can find worse, hear worse, just by walking down the street just about anywhere. To answer the question bluntly, no, I do not think that media should be banned just because @CAPS1 is offensive. We as @CAPS2 have the right to speak our voice, from two different perspectives. You can argue if something is mediocre, is offensive; I will argue back, just because I have the right to voice my opinion as you do. These reasons that enjoyable media are banned, such as language and violence, add emphasis, meaning, emotion, and make the reader dig for so much more in a book, song, etc. These are how the authors see their work, they want to show the people what they see, even if @CAPS1 does offend someone else." 4 4 4 4 4 4 +3962 2 "Imagine that a person comes up to you and says, '@CAPS1 is that you are reading there? Wait, I know that book! That book is absolutely offensive! How dare you read that!' Then, imagine that they snatch that book up, and you never see it again. This is an example of how censorship works. If the government notices citizens in our country with offensive magazines, books, movies, or music, is it right for them to grab it away? No, not in any way do they have a right to do that! Everybody should be able to decide for themselves @CAPS1 is right or wrong to; watch, read, or hear. Nobody has to be exposed to anything that they don't want to. Also, if a person truley wants to find an offensive form of entertainment, they will find it, no matter if it is legal to or not. Therefore, I believe that trying to stop people from this is a fruitless action. Remember when you would get to listen to your favorite bedtime story, '@CAPS2 The @ORGANIZATION2'? Well, you can't read it anymore, the government declared the book offensive to camels and took it away. Now, you have only a boring book on facts about camels. @CAPS1 fun is that? And I have to think, '@CAPS1 about the authors?' @CAPS4 thing that is amazing about our country is our freedom of speech and expression! Stopping all that creativity from our author is tough and cruel. Writing a great story is near impossible to accomplish with limitaions that could result from government censorship. If a song is beautiful and sweet, but contains @CAPS4 bad word in it, is it a bad song? If there was censorship, who would decide @CAPS1 is appropiate? Would the @CAPS5 decide for us? Or would the @ORGANIZATION1 get together and read aloud the books before they were declared inappropiate? Personally, I would love to decide for myself. And, as a mature adult, I can. I have the morals and the mind to choose for myself @CAPS1 is good or bad. Perhaps, the multitude of books and songs that we have now would disappear altogether. It is possible. It is incredibly difficult to imagine the entire country having the same moral opinions on our entertainment. This could cause a number of entertainment forms to be eliminated. So, how can we create a standard to approve these forms of entertainment? Understanding that there are young, fragile children, that are privy to all forms all public entertainment, some censorship @MONTH1 be required. However, I strongly believe that this should be limited. The censorship should be used only to help the kids. This is similar to the way a parent has their children eat healthy food instead of junk as they are growing up. When the kids are grown, they decide for themselves @CAPS1 food to eat. Some of the items I believe should be censored are; public commercials, children's television shows, and children's movies. The things I, and many others, believe should be censored are; profanity, violence, and offensiveness toward race, religion, and gender. Later, these children will be able to chose for themselves @CAPS1 they think is acceptable, and the censorship can end. Total censorship is bad. Each and every citizen has the right to read whatever they please to. And nobody should ever try to take that away. Please, don't ever let people tell you your own morals." 4 4 4 4 4 4 +3963 2 "Many Libraries today have limits on what they can put on their shelves. Yes, their is offensive material out there in the world but, its just artists triing to make a name for themselves. If we start controlling each others thoughts, feelings, and artist ability where will that get our culture that is rapidly expanding? Libraries should not have the right to censor material. One way to appeal to everyones demands would be to divide the library into two major sections childrens and adults and then you could contiue dividing sections. Doing this would be cost-effective and adding a age limit in the adult section so no noisy children could get into there would be nice. It would help making finding a book easier for finding that right book. Censorship is defined as taking out a paticular item, thats either offensive to a certain group or is banned. If someone took out @PERSON2's @PERSON3 statue and other peices of work, we wouldnt get where we would be today. If you take out material you never know where it could go or lead someone. Censorship holds back many artists true potential. Limiting someones knowledge could hurt that persons chance at becoming something in this world. I have read many books that are both offensive in ways and other books about knowledge and intelligence and their is no difference. Many things interest different people. The author Katherine Paterson's quote explains this all to well if someone has a right to remove a book from the shelf than everyone has a right to remove a material off a shelve and so there would be no books left. Censoring something not only hurts the person who created it but hurts everyone else. Libraries should not censorship any material. Censoring material hurts everyones yearn for a open mind or a better understanding of something. As Katherine Paterson's quote goes 'All of us can think of a book that we hope none our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf---that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 explains that if one person has a right to take a material off a shelf than everyone else has that right. Censorship shouldnt be in libraries." 4 3 4 4 3 4 +3964 2 "Is it offensive? Should people have the right to take down other people ideas? What do you think; I think so ? for centuries people have been writing,making video,and, all types of music. Some consider it a freedom of speech. Others might think of it as being rebellious or conspiracy. I believe @CAPS1 are exceptional writers and promising producers and artists. But not all medias are good. Over a vast amount of time young children have been influenced by medias such as:books,movies,music,etc...Its perfectly normal for many adults who have children to discriminate against certain media .But thats not all @CAPS1 are more cases than just children that are suffering theres also religon, race, gender, sexuality, and social groups. @CAPS1 should be a certain rules and certains laws that are against such wrong doings.But everyone is entiltled to @CAPS1 opinion.Hundreds of people are discreminated because of what they here and see in the medias.A life changing expierience for me was the movie The @CAPS2 @CAPS3. This could be considered offensive to lots of peolpe such as those of the african american decent or any other race that has suffered similar abuse. This is just a few issues with freedom of speech ,but @CAPS1 will always be disagreements and differennt views of oppinion.But I for one believe that theres just certain stuff that shoukdnt be allowed to be put out in to public media" 3 3 3 2 3 2 +3965 2 "Dear @CAPS1, To @CAPS2 Or @CAPS3 To @CAPS2 @CAPS5 it wrong to ban a book? It has come to my notice that this @CAPS5 exactly what our library has just thought about doing to any books, music, movies, magazines, etc. that any person finds offensive. To this I disagree. The world @CAPS5 a better place to live, when everyone has a level playing field. Some information @CAPS5 sensitive, but that same information should never be blocked completely for nothing more than just the @CAPS6 itself. Our country @CAPS5 based on a freedom of press and speech, to deny that @CAPS5 to deny our livelihood as a country. To solve a situation as this, we must all create a type of checks and balances system to keep the information out there, but also protecting it from younger ones until the time @CAPS5 right from a guardian's viewpoint. Our country has many problems, but a few of them are @CAPS3 the core values that are upheld in the @CAPS6. In the @CAPS6 it @CAPS5 stated that we have the freedom of press and speech. This means that we can publish anything, no matter the inappropriateness of the matter. This also protects any reader from being denied the right to have information at their fingertips. There was just an example of this, inside the @LOCATION1,when a local library had to allow any person wanting to look up porn on library computers because of the laws stated in the @CAPS6. However much some @MONTH1 dislike the thought of this much freedom, we cannot ban works purely based on the discretion of some. The world @CAPS5 a contantly changing place, with almost nothing a given constant. This @CAPS5 the exact same for information of all types. No one can say what will or won't be accepted in our society in the future. At this moment many sexual subjects are quite offensive to many and are viewed unacceptable to the younger generation. The only problem with this @CAPS5 the ease at which this type of information can be gotten. The internet @CAPS5 the very place where so much information passes through, be it good or bad. To block all of this information just can't be done, but to restrict it @CAPS5 our only hope. To to create such a restriction, our library can needs to have a type of checks and balances sytem that could allow those with orderly consent or those of age to get a hold of these types of works. Those of age @NUM1 or older could easily be allowed into sections containing these works, but those under @NUM1 would have to have a guardian's consent before allowed in these sections. A perfect example of this would be off of '@CAPS10 @CAPS11 and The @CAPS12 of @CAPS13' when @CAPS10 @CAPS5 @CAPS3 allowed in the restricted section of the library unless he has a signed pass from a teacher. That type of protection would still allow the works to be released to the public, but still keeping the younger generation from having any freedom to look at inappropriate items for their age. As humans we crave information, whether it be via watching, listening, or reading. To block any part of this experience @CAPS5 to block our full potential. Many things are offensive, but then again much of life @CAPS5 offensive. Our founding fathers knew this and took it with them while writing the @CAPS6, and now we have a @CAPS6 that protects all our information. This @CAPS5 a very good thing, but some things need to be upheld from those too young to understand the meaning of them. We need to protect our freedoms, but also protect our children. To do this we must create a program that allows those that want view what they want, and those that are too young view what they are allowed by their guardians." 4 4 4 4 4 4 +3966 2 "I'm ok with censorship on reading materials. I understand that the poeple selling the prodects want to appel to the eye and make poeple buy what they are selling. I have alot experience with this because I read alot of car magazines and they sometimes have alot models in them, but I'm your avage seventeen year old and I'm ok with this also, but there is a lamt. My school is very good about this they see one flag it and put it in the back , but they still let you read it. I like this because it keeps the bad apples off the self. I have a very good kinship with my mom and dad they do tell me I can get, but if it's nineiy-five perent cars and only five perent models they are ok with that. I said a thing about limt. All things have a limt like how much hosepower stock parts can take on a car before they break. I have a limt on what I buy sent I'm not yet eightteen I can only car magazines but don't get me wong I love cars and have sent I little" 3 2 3 2 2 2 +3967 2 "What is offensive? How do we know what offends people, I mean everyone is different, everyone has their own thoughts a beliefs. So how are we suppose to know what offends who? The things that I would find offensive would be racial discrimination, gender discrimination, or religious discrimination. Those types of things would offend most people I think, but you can never be to sure. Books will always be books though and you can not tell people what they can and can not write or publish, because everyone has the right to freedom of speech. People will always say what they want but not everyone can get what they want. People need to come to sence and understand that consept. If a book, magazine, song, movie, or any other type of writen or vocal recording offends some one then do not read, listen to, or watch that item. No one can make some one watch or listen to something that offends them. People will always have a choice to do what they want in most cases. Books, songs, movies, magazines, and many other things will always offend atleast one person in the world we live in, but to be honest do we really care if it offends people if that is how we feel or believe? So I believe that if it offends a person then they will not take it off the shelf and if they do then that is their own personal problem people can not tell others what they can or can not write or record, it is their life let them live it." 3 4 3 4 4 4 +3968 2 Isn't there a saying in the world called its a free country? I thought it wasthere are alot of things that people should not see in the world. But we find ways to see it anyway no matter what it is the world has so many sources to get the truth or maybe even lie's to the world we live in. From the media to the press to poparasi maybe even from the people around you they all help the cause of things that should not be being seen by the people. There thing's out there that we the people don't know nothing about that the goverment and world shields from our eyes. Then there's the things that we are showin by the world like @PERSON1 alot of people think what happend to him is offensive. Not only that but racisim in general also the news why would people put violent things on the news like murder storys and kidnapping and robberys and many more. People find that offensive and even scary to alot of people but yet we keep it on there. So no i don't think it should not be removed from shelves and or were ever all things found to be offensive to people are located. Just like when that marine died and gay supportors and protestors were near his funeral chanting with (offensive) thing's. Say thank god for dead soldiers and god hates the army. Nobody stopped that. If we as people are not going to come togeather and work with one another about the things that should or should not be displayed then whats the point of telling someone else what is offensive to you when your going to end up doing it to. And your going to do it with out a care in the world not thinking about who your hurting . Everyone has and opinion and wants to demained it but people are diffrent and some will always see it diffrent than what you see it. So if you see something offensive in a book or movie or outside. Dont watch it dont read it dont try to hear about it from a friend or stranger leave it alone. We put so much effort into hearing about these offensive things when all you had to do was leave it alone. And then you wouldnt have even known about it. Live life and dont worry about the negative lets focus on the positive of what you see. 3 3 3 3 3 3 +3969 2 "'Can I read this?' @CAPS1 a round the world have asked this or been asked this question. @CAPS1 have their own right to read what they want, but are the childern alound to? There are books that children or young adult should read and should not read. This @MONTH1 vary for it depends on age, and the way the reader will understand the content of the books. There are cursing, smut and @CAPS4 in books that for children should not read. In highschool there are some books like '@CAPS2 and @CAPS3' that has cursing in it. For highschoolers of @NUM1 or older will be alright to read. Highschoolers understand and has heard these words more than once before. If a teacher gives this book to a @NUM2 grader they would not understand the full potential it hold for the learning of it. Childern in that age range will not understand that the man is handicaped, then the childern would not understand the killing the handicaped man had done or why his friend killed him after it. Will a parent let a @NUM3 year old read a smut novel? This depend on the way the parent was raised and how the feel it will effect the childs development. An @PERSON1 book would not be approprent for a child of that age for the child does not, and will not understand the book it self. The book is more then just that one part of smut. There is a gothic and romanic was of writing to @PERSON1 books. A child of @NUM3 years old would not have developed the mature way of think of the book. @CAPS4! '@CAPS4 is not the answer.' Everyone has heard this saying. This say is said but its not followed. Young adults play video games, read books in school related to @CAPS4. '@ORGANIZATION1's don't @CAPS5' is a book of a colored teenagers going to a white school. This is a book giving the kids to see how things were. A child in elematenry would think its funny if a cartoon is played for them and someone gets hit. The children will is it a game and do not have enough background or maturity to under stand what is really happening and that it is wrong to do that. For just watching a tv show with hit or punch the child will think it is ok to do it. Over all there will be @CAPS4, cursing and smut novels out there. The thing it depends on the parents and maturity level of the person/child. There is a wrong and right way to do it but for @CAPS1 it not right to let some underage read a curse, voilents, or smut" 3 4 3 2 2 2 +3970 2 "Almost everyone has a movie they would like to see, or a book they would like to read. What happens if they take a trip to the library, and check the catalog, only to find out it had been removed from the system because of bad language or mild themes? I believe that people should be able to choose what content they decide to read and let their children read. Some parents don't allow much offencive material at all while others don't mind it. Also the books and movies for adults are different than children books and movies. It would not be fair to remove offencive books, music, or magazines, from the shelf because different people like different content. Today, we live in a world of violence and it is going to be hard to avoice violence and offencive material. For some people, they want to avoid it at all costs, while others don't care or they like it. First of all, different people consider the same content differently, and the titles being removed @MONTH1 not be judged fairly. The people who want to see the latest movies that just came out, are usually going to see some type of violence. With more advanced computers and technology, there can be more special effects and move violence added to movies easier. In books, they @MONTH1 have old language that isn't up to the standards of today. For example, in the @NUM1 and @NUM2, when the word 'gay' used to mean happy. It is a whole different word now and it is a lot of old books and songs. Some people @MONTH1 find that offensive and some @MONTH1 not. Adult content is very differnt than children content. Adults have movies and music based on real life situations and stories while most children content is based on the alphabet and sing alongs. There are also the more grown up kid movies like @ORGANIZATION1's '@CAPS1.' @CAPS2 one is based in @LOCATION1 with @CAPS1 training to be a hero. During his fights, he kills the creatures that he fights. So if the libraries started censoring mateirals, then a classic @ORGANIZATION1 movie would be considered violent. The adult movies are worse in every way. They involve cursing, killing, gun battles, and sexual content. I'm not going into any further detail about adult movies. Being an adult, one should have the choice of what they are going to watch and the judge of what they are going to let their children watch. Different people like differnt content and it is only fair for them to be the one to decide what they watch and consider violent. An example one person might grow up around a farm and be used to seeing animals killed, while one who grew up in a neighborhood has never seen an animal killed. When they both see the movie or read a book with an animal killed, it will have hardly an effect on the one from the farm compared to the likely painful effect on the one from a neighborhood. Think about a gun battle scene of a movie or a death in a book. A soldier who is in the army will take killings and seeing deaths much easier than a @CAPS4 of a company. As stated before, different people prefer differnt types of content. All in all, I don't think there should be any censorship on library content. It should be up to the parents to make the choice of what they are going to let their childern watch or read. Adults can also be the judge of what they let themsleves watch. Lastly, again, different people like different content and it's not fair for one to choose what another can or can't watch" 4 4 4 4 4 4 +3971 2 "Censorship in libraries should not be allowed. I believe that even if books, music, movies or magazines on the bookshelves are offense, they should still be left there. They are apart of our history and the history we're creating. If anyone wants to read a certain book or magazine, there's a big chance they will end up reading it. There are so many ways to get to those things with the technology we have today. You could just look them up online and read them or listen to them off the computer. Also, censoring in libraries, where everyone feels tranquil and comfortable, can make people rebel and even put the library out of business. From what i've observed, most people look up inappropriate or offensive things on the internet already. Especially if they know that it's something that could be debated about being censored. A lot of books and movies, great ones even, contain some offensive content but they are classics. Generations, one after the other, have enjoyed them. Now tell me, who would want to be the unreasonable person and take that away from anyone who is interested? Everyone should have the right to these books, magazines, movies, and music. Libraries should not censor them." 3 3 3 3 3 3 +3972 2 "Libraries are full of all different sorts of books, movies and magazines. These books, movies, and magazines @MONTH1 come across as offensive to some people. Parents might not want their children to see certain books or movies. Does this mean we should take thoughs offensive books off the shelf? If everyone decided to take one book or movie they think was inappropriate off the shelf, there would be nothing left in the library. Books contain adventures and life lessons that kids and adults need. Young Children need books to help their imagination grow. If there was not anymore books in the library, children would not be able to learn or grow. Movies are just like books but for young children it is easier to visualize a movie rather then a book. If the book or movie is found offensive to you, pick another, but it should not be removed from the shelf. One book or movie @MONTH1 seem offensive to you, but @MONTH1 not to another person. A world without books. No imagination. No adventures. It would be a boring world. I would rather have a few offensive books then none at all. That way I can learn and see character's adventures through my own eyes" 4 4 4 4 4 4 +3973 2 "Would you remove a book from a shelf just because it offends you? If you said yes, how is that any different than a white boy saying i can't learn with this black girl in class with me? Or if two people with different religions yould say he or she offends me because we dont believe in the same god. Just because someone is offended by book or wrighting does not mean it should by removed form the shelf. In fact if they dont like it they dont have to read or even look at it. That is one freedom we have in america is to read anything we would like to. For someone to take anything off of a shelf that is open to the public is taking away their freedom. In conclusion it is not okay for anything to be takin off of a public shelf no matter who in offends. It is a right we have as american's to read or wright anything we would like to, And removing offencive meteral would be taking away our freedom" 3 3 3 3 3 3 +3974 2 "I do not think that censoship has a ightful place in our librares. I know that libraries were created to be information! hubs for the public. If censorship were put in place, then many books would be gone as they @MONTH1 be seen as offensive to a minority of people................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................" 2 2 2 2 2 2 +3975 2 "I do believe that libraries should censor certain materials. Some things like music and magazines have bad language and racey pictures in them. Some parents might not want there kids to be exposed to this. Some parents might not know what their child is looking at in the library and wants them to be safer. The easiest way to prevent children from listening to innappropiate music or looking at offensive books is to take them off the shelves. Some children go to the library without adult supervision and have freedom to check out whatever book they want. The child could easily pick out an innopropiate book and read it because there is no parent there to guide them. There is nobody to tell them what is wrong and right so some kids might not know. Thats why some books and music should be removed. If you do not remove innappropiate books and music from the shelves you would have to have an attendent. The attendent would have to walk and around and check out what each individual kid is doing. It would be a lot of busy work and the libriarians are aready busy enough. Nobody really wants to do that so the simplier solution is to just remove the books and music from the shelves. Another opition if you do want to keep the music and books on the shelves is to have an age limit on the books and music to check them out. If this were done it would still lead to problems like kids reading the books at the library but never checking hem out. This is an easy way to get around the system. A child could easily ask an older friend to check the book out for them, so they could read it later. This is another example of how easy it would be to get around that system. Therefore, the easiest way to aviod problems with books and music is to remove them from the shelves. If this were done it is harder for the children to get the innopropriate books and music. If somebody needed to check out an innappropiate book for any reason, they could go someplace else. This is the best and most efficient way to protect and keep everyone safe" 4 4 4 4 4 4 +3976 2 "Censorship? Have you ever been looking for a book and not being able to find it? Have you ever gone to a library and the magazine you were looking for was behind everything else on the top shelf? Well if you have, you have experienced censorship. Censorship is where things are sheltered from the the light of day. A specific place of censorship is with books and magazines at libraries. Most people today are worried about offensive things on and in books or magazines. A big question I ask is why? Well I can tell you why. Most people of today are too afraid of what other people think. Everything and everyone has to be perfect. I strongly disagree with this because if someone writes a book, they should not be afraid to put something in it because of what other people have to think about it. If they do not like it, then do not read it. I do not think that things should be sheltered from libraries because sometimes it can get a point across to some people. If there is a article up on a shelf and it has an appealing image on it, you are going to stop and read it . If it has a good message to send to you will think about it. Then once you have thought about it, you will make your own opinion on what that article said. If you have a positive opinion you might go pick that magazine up and read it. If you have a negative opinion on what it said then you will not even look at the next time you go by there. If you think that something is too bad for eyes of other people then so be it. That is your opinion and you have all of the right to it. I will not dislike you for your opinion and I will not look at you any differently. The only thing I hope is that I got my point across to you." 4 4 4 4 4 4 +3977 2 "I do not believe there should be censorship in our libraries. By censoring our libraries, they're censoring us. This is supposed to be a democracy, not a dictatorship. A good example of censorship that has recently happened is rewriting all the @PERSON1 books just because they use the 'n word' and some people find this offensive. The thing is, this is how they talked back then, this is just the way things were. People can't just rewrite books because they don't like the history behind them. They can change all they want, but in the end it still happened. We recite history so we don't make the same mistakes again, and this is a good example of it. Music shouldn't be censored. Music is a form of expression, and by censoring the music, you're censoring the artist. They say the things they do for a reason and they work hard to create the things they do. We're supposed to have freedom of speech, so now why are we getting these freedoms taken away from us just because a select few deem it inappropriate. We don't make anyone listen to anything they don't want to. Each generation has it's own style and music, has it's own problems and ways to deal with them; our generation is music, so let us express ourselves. Movies are censored due to language and content, which I get, but actually removing them from our libraries should not happen. If the audience is mature enough to handle it, they should be able to watch it. We don't need to take out curse words or remove inappropriate scenes just so childern can watch them. If they are really that bad, they don't need to watch them period until they are mature enough to handle it. Magazines should be censored in the same way as movies, by maturity level and age. I agree there are some movies that are inappropriate, but taking out articles just because someone in charge doesn't like what's being said is wrong. We can't just block out all the bad things that are happening in the world and just pretend nothing's wrong because the stories aren't being told. People deserve to know what's going on. People deserve to read, watch, or listen to anything that they want. By censoring things, they're only going to make us search to find them, therefor making it kind of like a reward to get to see the things others find so inappropriate that they're willing to go out of their way to get rid of them. You can't please everyone, so just elt us make our own decisions. Censoring our libraries is like censoring us. We have our constitution, we know our rights, now why are people nowadays thinking they can change them? They can't keep us dumb by hiding things. We're still going to find them, they're just going to make it like a game of tag; so let the game begin" 4 4 4 4 4 4 +3978 2 "In the words of the author, Katherine Paterson, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have a right to remove that book from the sheld---that work I abhor---then you also have exactly the same right and so does everyone else. And then we have no books on the shelf for any of us.' @CAPS1 are countless books in the world which will offend someone in one way or another. If everyone were to expect their feelings to be accounted by everyone, they are mistaken. Everyone has a right to discover the thoughts of others as long as they keep in mind they @MONTH1 not always be pleased with the outcome. Certain books carrying harsh opinions or uncencored material can be found on every shelf. As my many years as a student, I have come to find books containing vulgar images and language. @PERSON1's play '@CAPS2' describes him in very crude ways. Our class was very surprised at the language and sexual innuendos involved. @CAPS2 was described as a 'black ram' by his nemesis. Comments such as these in books can mold a young mind into thinking name calling is appropriate. Unfortunately, this is how children are to learn the nature of select authors and the world outside the classroom. @PERSON1 also discusses a 'strumpet' in '@CAPS2'. Once a mind is aware of such adult matters they will look at the world completely different. Life must be hard for children as their books and magazines show racy pictures of girls and advertisements for products. Magazines are a threshold of adult matters. Once a teenager or child view all the vibrant advertisements and beautiful models selling products, they begin to lose a sense of reality and childhood. The photoshopped images of tall, tan, and thin models make a girl's head ponder that way of life. They begin wearing shorter skirts, dieting, and tanning all because of an ad they saw in their magazine. Who wouldn't want to be like a model? When every actress, singer, and model begin looking like godesses, the men picture the perfect girl as the ones they see on billboards. After the men picture the ultimate female as the images they see, the women will never be able to add up to their qualifications. A whole cycle of being underappreciated and the obsession to be perfect makes the media more powerful. In conclusion, the world has become absorbed in the unrealistic fantasies racy books and magazines provide. Crude comments are found in classics and are a powerful influence on the mind. Advertisements in magazines cause a sense of worthlessness in women and the feeling of unfulfillment for men. Are you going to control you're life or let the media?" 4 4 4 4 4 4 +3979 2 "Kids today have a whole lot of options of books they can or cannot read in the schools library. The things they cannot read are censored. School systems have good reasons why they censor some book, and I agree with the cooperation. The facts on why books are censored in a school campus is to much racil slurs, profanity, and unaproperit situations. How many schools have books that have racism in it. Racism happens in books all the time. In fact one out of fifty books contain racism. The big book is '@PERSON1' fin by @PERSON2. It recently got banned from schools all over the @LOCATION1. People all around the world are trying to teach their kids what to say and what not to say. Kids pick up some bad language from the books they read. Even though some of these books still lay on the shelves of the schools. It is up to the kids not to read them. Uniproperit situations is why schools only order some sports illustrated magazines. The school librarians don't want the kids looking at any nudity or violent scences in the books. Do you say to blame them? I believe that the schools and parents are doing the right things. It is up to the kids to make the decision to listen or not listen to their parents. I believe censorship is a great thing for @CAPS1 youth." 3 3 3 3 2 3 +3980 2 People out there have the right to descide weather or not there childs books have censorship in it. Some parents dont want there child to read books like that till they get older. Kids in grade school dont know the book they are getting has profanity in it. I think that in all grade schools and middle schools should have no books that have censorship in them. Yea some parents dont care what their child reads. Think about the ones that do. Not every one has the guts to say something to the school. If you ask me i would not but books with censorship in them in my childs school. Then again the high school students are old enough to look threw the books and descide if they want to get that book or not. Yea some parents still care about their child when they get into high school but high school students are old enough to make their own descions. Some students @MONTH1 not relize what book they grabed untill they start reading but thats when they turn around and exchange it. I think high school students are smart enough to choose their own books. This is why I think bout the books and magazines etc. with censorship should be removed from the grade schools and middle schools and not high schools. If you agree YOU can do something about it. Talk to your childs school 3 3 3 3 2 3 +3981 2 "Remain on the Shelf? Certain materials such as books, music, magazines and more can often contian offensive information that many would want censored. The people writing the items are not making them so that they are just plain offensive, the way people take in information is the main factor. People choose whether or not to believe certain things for themselves, and with those come their personal opinions. Books and magazines should not be removed from shelves if they are found offensive, this could create more problems with the public and those who disagree on what has been taken out, that dont consider them to be offensive. What is offensive to one person, @MONTH1 not be offensive to the next. Items being removed because of a complaint made by one person should not even be considered. Whether it be a book, magazine, or music the author had a purpose for it and it was not intended on hurting someone's feelings. For example, a book about slavery could be offensive to a white man, but a black man would consider it to be about his history. People can find many things offensive by just reading titles, or listening to one lyric from as song, but that does not mean they have to read the book or keep listening to the song. Someone else is enjoying the book and the song could be what another person looks forward to everyday. These magazines and books could also be seen as informing. The material in a certian magazine @MONTH1 not be acceptable by some, but a lot of new information can come from them. If everything found offensive was removed from the shelves there would most likley be nothing left. Removing them could cause choas to someone who is trying to learn more about a disease, when another person who is suffering from it does not want their story told. Certian materials being offensive can only offend so many, and chances are what doesnt offend them offends the next person. Informing articles and books should not be removed from shelves in libraries because they are there just to provide a source of knowledge. Censoring in libraries would also take away from those who are just interested. A lot of people like to read and rent movies just for fun, but chances are if the book or movie does not sound interesting, it is not going to make any profit. What is considered offensive to a person could be the interest of another. From my experience teenagers are interested in alot of action and romantic films and books. They often times contain alot of physical and sexual content along with a decnt amount of foul language. A older person would not be interested in the foul language and content, they would consider them to be offensive to either the girl or boy in the story and would wonder why it is even being read. Most would even say that the books and movies can be degrading to some, but it is what interests teens and makes them want to read more becasue they can't wait to see what is going to happen next. Removing items such as these would push teens away from reading and viewing alot of movies because nothing then would spark their interest. Scenes and facts in materials that could be offensive to a person are usually not intended to be. People are not being made to read and watch what offends them. Everybody is different and what offends my neighbor @MONTH1 not offend me. Chances are that there will alwasy be something that is going to offend at least one person. The more we all get used to it , the less many people will actually run into items that offend them. They @MONTH1 still be offended on the insided but it won't matter because they will have realized that not everybody is offended by the same thing" 4 4 4 4 4 4 +3982 2 "Should materials such as books, music, movies, magazines, etc., be removed from shelves if found offensive? Censorship can be a huge deal depending on who you ask or where you go some find it necessary so kids do not get into these things found in librarys or some @MONTH1 not think it's so important. Books are important parts of peoples lives, learning, etc, they are also read for many different reasons but some of the topics books are written about @MONTH1 not be right or could be innapropriate or possibly against all of someones beliefs or religion. I personally do not think that censorship is necessary to keep some things out of librarys just some thngs shouldnt be available for anyone to just walk in and pick up off of a shelf in a library maybe materials that are innapropriate for children or people @MONTH1 find offensive should be kept away in a different secluded section of a library and be clearly labeled of what the purpose of this room is so people will clearly know and won't really risk the chance of just stumbling upon those materials. Another reason why censorship @MONTH1 not be necessary is that things that anyone could find in the library that @MONTH1 be offensive or innapropriate can be found just as easy if not easier on @CAPS1 or on the internet by anyone anytime of the day. @CAPS1 has some censorship but not enough to remove the effect that @CAPS1 show or movie or internet site could have on the minds of todays young people and children such as violence, drugs, language, and racism that is found in almost everything today. Todays children and young people should be taught of whats wrong even if they do think it's dumb or unecassary at the time when they mature they hopefuloly will see whay they were taught those things and why they should always try to stay away from things that are seen in movies, magazines, books, and mostly on @CAPS1 and not get involved with these activities. Censorship I still believe is not necessary even though I know of all the innapropriate and harmful things in todays culture. Even though I know how harmful it can be if they see the effect it could have on their future and what it has done to other people that saw things in movies, books or even heard it in music if they could see and hear from people who have been affected by these things they would know to stay away from bad things and go along with whats right. In conclusion censorship is not necessary, it could be in the future but if everyone is lead to what is right they will hopefully make the right decision and stay away from harmful books, movies, music, magazines, and other things alike." 4 4 4 4 4 4 +3983 2 "You Are @CAPS1 You @CAPS2? Censorship is a touchy subject in our society today. People ask, '@CAPS3 much should be censored?' or even 'Should @CAPS9 be censored at all?' @CAPS4 opinion is that censorship should be left up to the parents of the children that are reading, listening to, or watching materials. Television networks and reading companies, including publishers and libraries, can't possibly take the place of a parent. I believe that if a parent is not responsible enough to care @CAPS1 the child is reading, the distrubuters of the materials can't be punished. In @CAPS4 experience, @CAPS4 mother has taken part in censoring me from offensive materials from a very young age. She is always interested in @CAPS1 I am reading. Occasionally, she will glance over a book or reading material herself in order to deem it appropriate for me to @CAPS2. @CAPS4 mother has also censored @CAPS4 music by glancing through @CAPS4 music player and every so often, playing a song or two. @CAPS9 discourages me from listening to anything that @CAPS4 mother wouldn't approve of. I have also experienced censorship in @CAPS4 local library. The library is divided into sections, begining with the children's books. These books are appropriate for young minds and have no offensive material. @CAPS9 section leads to young adult, then eventually the adult books. The music is also similarly divided into these catagories. I believe @CAPS9 is acceptable because there are certain materials and music that a young child should not be exposed to. Through reading the book '@CAPS5 @CAPS6' by @PERSON1, I have observed that parents need to have some involvement in @CAPS1 their children are reading, listening to, and watching. In @CAPS9 book, @PERSON2's parents simply left him alone while he was in his room. They let him listen to his own music, and watch @CAPS1 he wanted. @CAPS9 led him to listening to a @CAPS7 metal band called '@CAPS7 @CAPS8.' @CAPS9 band influenced him to commit a homocide in his school, killing ten students. @CAPS9 is a worst case scenario in which censorship was not practiced at all. Violence can have a large impact in young kids; therefore, they shouldn't be exposed to it until they are mature. Through @CAPS4 reading, I have taken the position that the government does not have the right to impose censorship on the whole population. The novel '@CAPS10 @NUM1' is an example of censorship being taken to the extreme. Reading is banned in their society, except for comic books and sex magazines. @CAPS9 shows that without a right to @CAPS2, society is reduced to very simple, uneducated creatures. Censoring an entire people's reading is impractical. @CAPS4 opinion is that once a person is an adult, they have the common sense and maturity to @CAPS2 whatever they choose. Censorship is difficult to take a stand on because ther are so many posatives and negatives to consider. @CAPS4 position on @CAPS9 vital subject is that parents should be the ones censoring their children's reading, not the government or the reading companies. Once a person is an adult, their right is to choose whatever they like to @CAPS2. Reading is a magical thing that should not be held back from adults who are prepared to experience it to its fullest. As long as society keeps a balance between the outcome of '@CAPS5 @CAPS6' in which censorship was not practiced, and '@CAPS10 @NUM1' in which it was enforced to the fullest, I believe that we have reached an appropriate balance. Censorship is healthy for children, but restricting in adults." 5 5 5 4 4 4 +3984 2 "Many people think that libraries should be censored in one form or another to keep certian types of book away from people. How does that really help? Even if you remove certian book or music from a library doesn't mean people won't still get that same information from somewhere else. Besides many of the things that people should be censored is probably not that bad. I think it is better for some one to read about somthing the have it happen to them and then experince it. Like Katherine Paterson said if we let people get rid of book of music that they think are bad for people to read or listen to what will we have left. Nothing! Through people think censorring libraries is for the greater good, it just has too many bad side to have much of a good effect. When people try to censor things they normally just take things off of shelfs and get rid of them. But, in today world of technology that doesn't stop people from obtaining there goal. We have the internet that lets people upload book and music to share. So yeah, you many not be able to get a book at the library but you can almost always find it online. In result trying to censor libraries by removing books and music really is doing anything. How do you determine what should be censored? People all have a different idea of what is ok for the public and what is not. Some book that get removed could insult a group of people because it related in some way to them. Then you loss business and make poeple mad at the same time. In some way isn't it better for people to learn about bad things like crime and death through ways that aren't real and don't hurt. When things like that happen in a book they normally don't just stop there. They show the results or how the situation was handled. Which could come to help people who end up in the same sort of situatuions later on it there life. Which makes it really hard to determine what should be censored and what shouldn't. Katherrine Paterson even said that if we let people censor what they think is unmoral nothing will be left. Everything will be gone, because every person in the world would find something is every book that they could find bad. Even if there is a book that people agree should be censored, there are people that think the other way. No books would be left if we censored libraries because people could find thing bad or unmoral in every book. Overall, censoring libraries ends up being more pain than it worth. It is not stoping people from obtaining the information another way. There is no way to decide what shuld be censored. And, censoring somethings will lead to people wanting other things to be censored, which will leave nothing. In conclusion, censoring doesn't really stop people and ends up leading to bigger problems in the end." 4 4 4 4 4 4 +3985 2 "Dear Newspaper staff, @CAPS1 @CAPS2 is @PERSON1 I @CAPS3 to @CAPS4 @CAPS5 @CAPS6 I am in the @NUM1 grade. The reson for this letter is that I belive that certain material, such as books, music, movies, magazines, etc. Should be removed from the shelves if they are offensive. The reson why I think it should be done because kids know days minds be every where from pron to games to bad music etc. In @CAPS7 books, magazines, movies, have things in it that shouldnt be in there. When kids get a hole of it they act like they anit never seen nothing like it. When they get on the computer they get on web sites that they know they are not suppossed to be on. If we didnt have these things we wouldnt have to worry about the loud music, the virus on the computer and the books being riped up. But know a days there are so much stuff people can do to get all of things. If someone just removed all the things that are found offensive from the shelves. That would be so wonderful for everyone. If they leave all the materials out there its going to be more and more problmes. When they just take it off everything will be in grate shape" 3 3 3 3 3 3 +3986 2 "What is the extent of reading that should be read by the public world? There are so many different types of reading and music that many people enjoy as a hobby. Books have been around for centuries and can create a whole new world for readers. The latest gossip can be found in many magazines. Music is sometimes said to help people cope with life problems. Movies can open up peoples' imaginations and make them feel emotions for a theme of no importance. All these things make up peoples lives. Without any of these enjoyments what would people do with their free time? Books, magazines, music, and movies should not be taken off shelves. They're huge factors that make up the society and make life what it is. Books and magazines are two fun things people love to read. Fiction or nonfiction? No matter if books are real or fake they create stories that interest people. Reading is a hobby that's been around since the beginning of times. There are many different selections in reading, for example, adventure, mystery, comedy, or love stories. People will always read no matter what. Most books read are the ones that are sad and sometimes gruesome, but those are the stories that draw people in. Magazines are often picked up when going into the check out line in a grocery store. People love to read gossip, and learn about the latest trends. Magazines provide a type of self enjoyment for people. When reading a juicy title, most people can't help themselves but to pick up the magazine and learn what's going on in someone else's life. Music is used for so many different things. It's often listened to when driving down the road. Many people fall asleep to soothing instruments that make a beautiful melody. Lyrics in songs relate to common people and at times it can help a person through a rough challenge. There is something about the different beats songs make that can change peoples' moods. On most @DATE1 nights, it is always seen that movie theatre's are very crowded. Movies bring out imagination and stories where people can watch and follow along. When watching a movie with a sad ending, most people cry. Although not always real, it touches people on an emotional level. Movies can bring things to life. Life is what it is from contributing factors. All people think differently and like unsimilar things. Books, magazines, music, and movies all relate to peoples' likes and dislikes. Taking things off the shelves because they are offensivc or don't alway make people feel good, won't make our world any better of a place. If anything it will take away happiness in the world. These things make people feel different in ways that can't be described. Most often things that are offensive is the truth. Why hide things that are real? What would writers, musicians, and actors do if they couldn't do something just because it could offend a couple people out of millions? All these things are comfort for some people. Books, magazines, music, and movies make the world and everyday life what it is. They are simple things in life, but once gone they are a huge gap missing. Things are fun and creative because of books, magazines, music, and movies. In my own experience books make me interested in subjects, magazines fufill my want for reading about celebrities, music makes me feel happy when I am sad, and movies make me feel like I can feel the same emotions as the characters do.They should not be taken off shelves just because they are offensive, they are part of life." 3 3 3 4 4 4 +3987 2 "In this essay I am going to write about the books about the librabries. Also if they are books that can be offensive and that it can or not be removed by the libraries.I think that the libraries have the right to have any materials such as books, music, movies, magazines, and more on the shelves. Well in my opinion I think that they should not remove any books because people @MONTH1 think that it can be offensive but other people @MONTH1 be into those books. So no I don't think they should remove any because some people have different opinions on different books.When I go to libraries they are books that I can enjoy reading or not like but that is just my opinion. Some people might like the book that I did not liked or hate but I think that the books should not be removed from the shelves because some people might enjoy it and some won't.I think they should not remove books because the books are for people that are interseted on the books that they want to read or learn about the stuff about the past or just fiction books.I just talked about the essay I just wrote I talked about the books about the libraries, and how some books can be offensive to other people that are trying to pick books, and also if they should or not remove books from the shelves" 3 3 3 3 3 3 +3988 2 "Books are an extremely important part of literature. Many different people have different views of different kinds of books. Some people enjoy books, and some people don't. Some people are fast readers, and some people aren't. Reading is in individual task. Your reading abilities, interests, and preferences are different from everyone else's. The main idea here is preferences. You @MONTH1 enjoy a certain genre or topic that someone else @MONTH1 find offensive. But just because someone else doesn't enjoy it, does that meant that you shouldn't be able to enjoy it for yourself? Just because it is in the library, doesn't mean you have to check it out. Just because it is the new release in the book store and everyone loves it, doesn't mean YOU have to buy it. Other people can avoid the topics that they don't like. For example, if the local library took out all of the books that had anything to do with drugs and alcohol, because they found them offensive, the fact that they took the books out, could be offensive to the other people who enjoyed them. Also, some things could be offensive to some people that could be critical to research for others. Then, some people @MONTH1 not have the resources available that they need. If it is music, movies, or magazines, then it should be dealt with the same way. People have a choice of what they want to buy and rent. If a certain artist or actor is offensive to them, they should find something else and leave that @CAPS1 or movie for someone else to enjoy. They shouldn't complain about it. How would they feel if someone found their favorite band's music offensive and then no one could rent it from the library or buy it anywhere? Then, people would understand that everyone is different in their own way and not everyone will enjoy what they do. I think that knowing that everyone is different and special in their own way should show that, everyone is going to enjoy different things at different levels. Every book, movie, @CAPS1, magazine, and any other thing, should be left for people to enjoy and hopefully you can find something you enjoy too" 4 4 4 4 4 4 +3989 2 "People of the world @MONTH1 always find something they think is offensive that others don't. In this case I think that if it is in a public library they do need to watch what they put on the shelves. If some little kid grabs a playboy from the youngster's section, the library is probably going to get sued. Libraries are supposed to be a place where people can get a book to read or to look up some information about any school-work they have. Books about anatomy are an exeption but if that library has a book like sex for dummies then something needs to @CAPS1 in that facility. Movies too, if somebody wants that kind of material they need to go else where to find it. Exposing those kinds of movie clips and images could be harmful to the children of future @LOCATION1. If our world crashes as we know it because kids couldn't find the correct information needed, then that shows that we deserved it. What kind of movies we watch, advertisement we pay attention to, what music we listen to most, and many other things are what make people who they truly are. People these days read magazines that can be completely harmless but come with an ad. that says @CAPS2 @CAPS3, or All @CAPS4 @CAPS5, these are found in a lot of magazines like @CAPS6 @CAPS7 and sometimes @CAPS8. These ads. are totaly uncalled for. If people looked into this more, than they do we wouldn't have to fight this as much. These things that people find to be offensive are harsh and cruel things to show our young readers, writers, and musicians. These type of things influence kids to do this type of stuff that americans and non-americans find so offensive. So libraries be aware of what you put on your shelves and be aware of the consequences." 4 4 4 4 4 4 +3990 2 "Censorship is a tough topic to discuss. Everyone has different views on what is and isn't acceptable in libraries, because of the content in some books, music, movies, and magazines. When you start to censor what information is available to certain people, they get angry, and it can cause an uproar of protest. There should be an age limit on some materials however. So how can you tell what is okay for younger children and teens to view? For movies, music, and magazines, there are already limitations on how old you have to be to buy or rent them. With movies, the rule in libraries should be the same as anywhere else. It should be that you must be seventeen to get anything rated @CAPS1. I'm not sure what the age is to view unrated movies is, but for libraries it shoulld be the same as anything else. Anything else, should be open to all ages. Music is also a controversial material to censor. If a @CAPS2 has an explicit label on it, you should have to be eighteen to check it out. The reason being, is that some music can contain violent lyrics, and unless you are eighteen you shouldn't listen to it. When you hear music that is offensive to you, you must be smart enough to not listen to it. Anything any artist wants to say on a @CAPS2 can be recorded, and children should not be exposed to that until they are responsible enough to know what they should, and sometimes shouldn't be listening to. Printed materials are the hardest to censor. Personally, i don't believe any book should be kept from anyone. The only type of book that should be kept from some people is magazines. Once again, magazines can contain some graphic content, and should only be kept from anyone under eighteen. There are just some things kids shouldn't see, but if you are a legal adult, and want to read any kind of book, it should be available to you. With any of these materials, it should all be available to you in a library. It is a place to learn about how a writer, a movie director, a music artist, or magazine editor feels about the world. If we censor the material in a library, it is denying the public of the real world. Also, we would be revoking the right given to us of free speech. I do not make fun of books because I know whatever someone writes down, in their eyes, is the truth. It is an expression of self, and to stop someone's work from being available to the world, you are taking away the right of free speech." 4 4 4 4 4 4 +3991 2 "Magazines and Books I am writing an essay on should we take books, magazines, or movies off the shelves if they have bad language or have violant roles in it. First thing we should discover is how many people like books, movies, or music like that. @CAPS3 me personally like books that have violance and graphic language in them @CAPS3 that just makes the book so much more interesting. And when it comes to music their parents need to be very careful what they let their kids listen to. And @CAPS1 boadcasters need to watch what they put on the air @CAPS3 some of it can be pretty bad for a kid to watch. The second thing is, is it ok for kids to be reading these kind of books. I dont think it would be ok for a kid under fourteen to be reading about violance or hearing words that are graphic. But its not up to me they need to take a survey on the moms and dads of these children and see what they think about it. @CAPS3 it is up to them if they want there kid listening to or reading material like that. And its also up to the childrens parents what kind of music they listen to. @CAPS3 there is more cerse words in the @DATE1 than there has ever been in the history of music and the same goes for books and magazies. Magazines sometimes can be pretty graphic when it comes to picures.me myself dont really look at magazines @CAPS3 they dont really intrest me I would rather sit down and watch what ever it is on @CAPS1. Then the third and final argument is how could we make our libraries in american more censored for kids. I think the libraries shoul have different rooms that have different types of book in them. @CAPS3 if you just have a library that anybody can go and pick up any book that they wanted then kids are going to go straight to the funny books or the books that are not suitable for kids to be reading. They should make it so you have to be a certain age to check out a book that has bad language or that has graphis pictures or that just are not suitable for children. That is why I think that books need to get into the right hands and not into kids hands. Kids dont need to know bad language at their age @CAPS3 that is a bad habit for a kid to learn then they will go to school saying them. And reading books that talk about beating somebody up or murder mikght get it in a little kids head that that is ok. And that is not ok with me" 4 4 4 2 3 2 +3992 2 "Cursing, violence, gang activity, murder, ect. All of these are factors found in our books and music we have today. Do you believe these items should be cencered? If books or music have these types of messages in them it is going to influence children and adult's choices on what they do in life. I feel that, yes books and music should be cencored. My first supporting reason of why books and music should be cencored is the fact that children and adults get a huge influence from the information. Look in today's world; murders are happening, gang violence, and even abuse. If a book or song is advertising about murdering some one, or selling drugs nine times out of ten people think that is the 'cool' thing to do so why not do it. With people following uncencored books and songs it leaves dead people, inmates, and poor choices. Most people want to follow what an artist or author is doing because they are famous, which is causing peer preasure. The second reason books and music should be censored is the simple fact of respect. Some books or music affends people by their race, religion, or their apperance. You find most of the critizisium from music more than books, but it does occur. Young children and teens shouldn't listen to or read about racism, sex, how to drugs, ect. Books and music that have advertisment about these types of things is disrespectful to parents and what they teach their children. The message brought from the book or song is basically saying go against your parents and do this. A person should be able to sit and listen to a nice song, or book without getting disrespected and offended. My final reasoning for books and music being cencored is the reputation it will have or has. Books and music are just like people, they can send off the wrong message leaving a bad reputation upon others. For instance, @CAPS1 @CAPS2 and @CAPS3 tend to have a lot of bad messaged songs, so therefore most people think that all @CAPS3 and @CAPS1 @CAPS2 are bad. If songs and books were cencored there wouldn't be a sterio type against a certain type of music, or books have the best message. A normal person bases the first song, or book they hear/read by if or not they or their child can listen to or read that type of material. Love, positive messages, influencing good, these are the types of things most people want to hear or read. If books and music are cencored there will not be any more cursing on the radio, bad ideas given to those influenced, and could stop less violence. Again I state, yes I feel books and music should be cencored." 4 3 4 4 3 4 +3993 2 I do not think they should be removed at all. They show a persons opinion on something. We can't just disregard it because we dont like what its saying. Thats like us saying black people aren't allowed here because we don't like how you look. Or just anyone that we dont like how they look. I think anyone who wants to speak their mind should be able to without having to worry about censorship. I @MONTH1 not agree with all the statements they bring up but they should have a fair chance like anyone else would. You should restrict to age accordingly to content so you don't have little kids reading about stuff they really shouldn't be. I could get a book removed because it offends me. Well then I could get a franchise closed because it offends me. People are offened by little things and should jut except the fact that other people have different opinions. It's just like judging a person for their race. They have differnt morales and values and you can't just change that in a person. Like if you don't like this article just don't read it. Don't say other people can't read it because of your views. I don't think there should be censorship. 3 4 3 3 3 3 +3994 2 "There are many opinions on censorship in libraries. Some people believe that if books are offensive in any way that they should be removed, while other believe that these books should stay since there are different opinions on what is classified as 'offensive'. I believe that books should remain on shelves due to the fact that all people view things differently and its free will that allows people to pick up these books. No one if forcing them to read them. I believe when books, music, movies, and magazines publish offensive material that it is just a matter of opinion. I feel that people have different perspectives on what they find appropriate. For example, a magazine article containing information about the wrong doings of the political offices or a cartoon of a certain candidate. Some poliliticians might find this article offensive and take it as a jab towards them while others see it just as an opinion on the matter. Another example would be a book on religious purposes. For instance, a book on an @CAPS1 religion. Some @CAPS2 might take it as offensive if the informations paints them as being a certatin stereotype, but others @MONTH1 see it as educational learning. I also feel like this somewhat goes along with the idea of free will. No one can force a person to not read a certain book or listen to a certain song. It's free will that allows us to read, listen, and watch whatever pleases us. I feel that if someone was to go and demand that we take a book off a shelf that takes away from a person's free will who @MONTH1 be coming to rent the book that day. Its up to an individual to decide on what they will read and what their take is on the matter. I also feel that these types of media should remain on the shelves because of learning and educational purposes. I believe that even though some of these books or movies might have a couple of offensive lines or phrases that does not mean the whole thing is offensive. I think that the library is a place where people can go and research information. Some of the material found @MONTH1 be offensive to a certain person but that does not cancel out the rest of the book and mark it as being 'wrong'. I think that we must decide on what we believe is right in books and tune out what we feel is offensive or else many informational books would not be available today. The library is a place where our free will comes into play. I feel that the offensiveness in books, music, movies, and magazines are all based on personal opinions and that they should never be removed from libraries. These books all contain information that could be veiwed in different ways and that it is up to the public to decifer for themselves what is offensive and what is acceptable. I believe that no one should decide for us" 4 4 4 4 4 4 +3995 2 "Can you think of a book that you hope none of your children or any other children have taken off the shelf? But if you had the right to remove the book would you? I believe if I found a book, magazine, any type of music, or a movie offensive I would not remove it, because everyone has a right to their own opinion, even if it is offensive. Also, instead of removing the materials completely, why not remake them into a more suitable manner to where they are less offensive. First, noone should have the right to remove materials they find offensive. Because if people were allowed to do that the world would have no music, books, movies, magazines or anything to intertain ourselves. Also it would start a big fight because alot of people do not find certain things offensive like other people do, and when the people that find materials offensive start removing things that other people dont find offensive, a big riot will start. secondly, why would you start removing materials if it could be remade into a more suitable manner? maybe instead of removing everything, why not find the publisher and see if the could make it @NUM1 or less vaulger. Same with music, movies, and magazines. So to conclusion everyone has a right to their own opinion, no matter if it is offensive or not. I think if i came across something that offended me I wouldnt do anything about it. Because maybe that person who wrote the book, or movie was expressing how they feel, and you can not tell someone how to feel or express themselves. So instead of removing materials off shelves consider that someone was just expressing how they feel and have the right to their own opinion just like you do" 3 3 3 4 4 4 +3996 2 "Empty @CAPS1 @CAPS2 is it wrong to censor? In the world there are today there is about @NUM1 billion people. All these people make up diffrent groups with diffrent moral codes, ethics, beliefs, and out looks on the world. With this in mind, there comes a problem with what is wrong and right. The three subject that will be discused in this article will be censorship, expression, and society. To be censored puts a lable on things that says this article is not fit to be seen, or heard by anyone. Censorship was made to protect people from raw material that is seen as unfit or cruel. Music is censored for the subject or matter it speaks about, wether it would be of sex, drugs, or poltics. This goes for movies, magazines, newspapers, televison, or other forms of media. the reasons that somethig is censored changes from place to place. Expression of ones inner thoughts of the world or a genral area could be desaterous in the eyes of some. To others, expression gives the chance to see who could be the next @CAPS3 vinci, @PERSON1, or anyother great thinker of the world. Censoring these people can and would be horrible. The idea that just beacuase someone has a diffrent out look does not mean they are the evil that is in the world. True their work could cause a problem, but their idea should not be shuned by the world. The material they produce should be aloud to be seen by anyone of any age. Society possess a big problem. Society or how one should act in public is diffrent all over the world. So therfore what is censored here would not be censored somewhere else. This also mean what is wrong or right is diffrent to everyone on earth. The society will have great effect on with is aloud to be seen or heard by those that live in the society. if the society disagrees with the ideas of something the society will have it banned. If this is let to continue nothing will be aloud to speak its mind on anything. So @CAPS2 is censorship wrong? Censorship is unjust to those with ideas unlike others. If someone can censor someone else then that person that is being censored could in turn censor the person that is censoring them because of that persons veiws. So yes it is wrong to censor anything or anyone for thier ideas, morals, ethics, rules, laws, beliefs, or conduct. Everything should be aloud to exsist and be seen or heard by anyone who wants to look into that subject of matter. In conclusion censorship, expression, and society will always have veiws but none of these view should ever be hiddin from anything or anyone." 4 4 4 4 3 4 +3997 2 "If content in a library is considered offensive, @CAPS1 should still remain on the shelf regardless. Perhaps the media would prove inappropriate for many, but select few will still value the media for what @CAPS1 is. Taking one kids cake because @CAPS1 has to much frosting would anger most kids (and adults).If a book, album, movie or a magazine is known to contain offensive or inappropriate material @CAPS1 should remain organized with the rest of @CAPS1's kind, not exiled in the furthest corner. When one checks out such media @CAPS1 they should be required to state they are comfortable with the fact that their media might contain inappropiate and/or offensive content.I personally find @CAPS2 @CAPS3 or in the context of a song, @ORGANIZATION1 fascinating. Every time i look up these poems i have to accept an agreement that I am comfortable with @CAPS1's violent or hateful content. Although, I do agree @CAPS1 should not be readily available to anyone looking for something new to read(or listen) without their consent.I believe that simply asking the costumer if they are comfortable with a form of media's content would prove suffice. No one wants to settle for less or no frosting, and they should not have to." 3 3 3 3 3 3 +3998 2 "Some materials could be seen as offensive to some people. It could have language, racial slurs, or anything else one might find offensive. In my personal opinion I believe anyone should have the right to read or watch whatever they choose. These books or movies are put out there for entertainment or learning purposes. Some things did happen, such as the @LOCATION1, that many people would like to forget but no matter which way you take it, it happened and we can't change it. This can teach the next generation that it was a bad idea and should not have happened in the first place, so they will not do it. Language is a big part of today's world and many do not appreciate a bad word. They put these in movies to emphasize somthing big because everyone will remember that word. I know that it is not necessary all of the time and could be taken out, but for some movies a certain word could make or break the scene. Some movies have a lot of cursing in them but that does not make it a bad movie. A few of the best movies I have ever seen have too many bad words to count but the stroy line is phenominal. What you gain from watching those movies is not the cursing, it's the success of the protagonist that makes it enjoyable and worth your time. As for books in libraries, we should make a seperate section for these offensive materials so that a young, innocent child does not wonder across them. Put up signs warning people of the material contained in that section and put a speical sticker on the book to warn parents as well. In conclusion, offensive materials are not always bad and should not be removed from shelves, just mabye to a different location. Let the people read what they want to read." 4 4 4 4 4 4 +3999 2 "As far as opinions go, everyone has one. Only in certain situations are people's opinions actually taken seriously. When it comes to a debate on serious situations such as 'censorship', there will be an arguement for those who agree and for those who disagree. Agreeing to a cause such as 'inappropriate book removal' in ones opinion shouuld not be omitted.. At the ages of children, teens, and young adults, their minds are very curious. If interested in something they will go out and seek information for it if the adult does not provide proper information to what is asked. Books, magazines, newspapers, novels, etc are public reading materials that are meant for everyone to see. Hiding it would be like robbing them of their right to be informed. Not all reading materials are dangerous to the mind and eyes of the youth. The issue is how the parents raised them to embrace knowledge that they see. A maturity level must be high enough for that child to be able to understand what it is they're looking at. It would be useless for the adult to hide things from them until the age of @NUM1, when they are legally obligated to consume any sort of knowledge. The easiest way would be for the adult and child to have a sit-and-chat session for better understanding. Removing novels and books from libraries publicly or even at school would do nothing more than just raise the childs curiousity level to the highest extent. This, some would believe, would persuade the child to go out and experience it first hand so that they know what it is, and later in life know what to expect. Doing so would, could, and @MONTH1 be harmful and dangerous depending on the act made by the child. When the simplist solution would just be approving that child to read and be educated. Therefore if one person out of millions dislike a book becuase they feel it can greatly influence one child to do the wrong thing, then another child who try and keep their self away from it can't be taught because someone had a deep abhor for it and decided that it was outlandishly inappropriate for someone, much as a child, to read. To agree to removing information form the library is absoulutely purposeless, and @MONTH1 be an inconvenience for someone whom @MONTH1 have been determined to research something. With all honesty, books and novels were made for a reason. That reaason is to entertain, inform, and educate. By removing every source all those who agree to the cause should also agree to the fact that they have no remorse for the outcome of how their child grows up and become someone they never wanted them to be." 4 3 4 3 3 3 +4000 2 "Libraries have so many books, and books that talk about everything so what would be the point of having a book taken off the shelves. If people want to read something that is to bad I say let thim what is so rong with reading everyone needs to read maybe thats the only books some people like to read. So by taking thim books off isn't helpping anything. I think some of the bad books taken off the shelves are good just have bad things in thim, any book is a good book. If something is so bad it needs off the shelves there has to be a reason for it, the way I see it is that there as to be a really good part in that book that just loves to make people mad and you know what that is funny. People get mad at books that they dont want there kids to read, or there mad because that didnt come up with that idea. If you dont want ur kids to read it tell thim not to let the older people that dont care have a good time reading. Most people like to read about mested up things. Music and Movies are a different story. Bad movies shouldent be put out for everyone to see movies arnt the same as books because a kid could get a bad book and not now have of the bad stuff means. But movies show you how bad things are shown. Music can also teach you how to do bad things by doing the same thing they did to make thim look cool. But I still think you should be able to have what you want to pick and if you have kids you are a boss to thim you can tell thim not to get anything bad" 2 3 2 3 3 3 +4001 2 "In all libraries you are offered a choice on which book you would like to choose. So if you want to read a book with no censorship or if you want censorship then you can. The libraries should not take away books because of the content, in my honest opinion it should be the readers choice and not someone elses. When choosing a book you have to think, do I really want to read this? each book gives you a little description on the back of the book giving you a little inside so you can tell if you would like to read the book or not. I do believe if it has sugested content that you should not let little kids read them but at a high school level we pretty much are able to make choices for ourselves. Music should not be censored because if a song says something that you dont want to hear like cussing or sugestive content then just turn the station. You dont have to sit and listen to the song, you can change it with a click or push of a button. Songs that are on the radio are for enjoyment and entertainment so you made the choice to go to that station and listen to the music that is on it, you made the choice and nobody can make it for you. With movies they have a description on the back that tells what is going to be in the movie and what it's rated, if you don't want to watch a moive with bad language or bad content you should not have chose the movie in the first place it is clear as day on the case what will be in it. On movie cases it even gives you pictures of certain scenes and if they seem a little sugestive then put it back and select a differnt movie. Magazines are meant to tell the truth and sometimes the truth is hard. Magazines are stocked on shelves in stores and on the front will tell you exactly what is in the magazine itself. If you are really bothered by certain language thumb threw the magazine and see if it is approprate or not for you. Libraries should not have to get rid of books just because some content, a person who walks threw those doors should be aware of what is in the library and what exactly they will find. In libraries they have catagorys in which certain topics are under, by going towards a selection it is saying that you understand what type of book it will be" 4 4 4 4 4 4 +4002 2 "Libraries should or should not have books, music, magazines that are found offensive? Some people like things that are different than what you or anyone else like you @MONTH1 think some of the things are offensive, but yet again something you don't like someone else @MONTH1 like, and want to read. Would if be fare to you that you like something, and want to read it, but someone else dose not like, and thinks that it offens them, and they should take it off a shelf at a public library because of what that person said. I don't think that thinks like that should be taken off a shelf for something like, becasue there could be a person in school that needs soemthing like that is not right for a child to be looking at,but what if there is a kid in high school or collage that needs a book to do a project over that type of things, but also yes I do think that things that little kids should not be looking at or listening or reading something like should not be able to get a hold of because parents should not have to worry about them going to a librariy, and there children see something that they do not want them to see. There are vary many ways that people that work in the libraries can keep things up from children that is to little to see or hear what there parents do not want them too. Some ways that you can do that is by putting all the books and music that is like that in a section of the library that you have to be a sertent age to be able to go look or listen to them. Lubraries are for everyone no matter what you look like or dress. You as a person has the right to go in to a public library and look for something to read no matter if it has some curse words or some violence in the reading. If you are reading those kinds or books you should be machure for your age and not have to worry about it. You hear and see everything that you read about today so I don't see the difference in if a child hears or sees it beacuse you see it just about every where you go now days. You really can not get away with out dealing with it" 3 4 3 2 2 2 +4003 2 "First, libraries are a good source of information. At the same time a library can have pros and cons to its information. Some information should be only seen by adults. Have you ever wondered what if a child got their hands on an adult book? What's one way we can stop this? Next, you can find information about everyday life. Through magazine, movies, music and books are ways you can find them out. You have explicit music where the artist curses, and says inapropriate things. There has been books from my past experiences where an author just talked about her sex life. I have a past experience with magazines too, such as '@CAPS1'. All these have to stay out of libraries or put in a section where children can't reach them. Third, parents should monitor their children when they go to public places anyways. The library should be divided into different parts. Music isn't really necessary at a library. They could throw the music out. Also, at the same time children shouldn't get their hands on the books but they would have to learn about that stuff in life eventaully. The committee should have a contest in which people of any age of the community could write an essay telling their opinion also. Finally, I've came up with a plan to fix this situation. I personally don't think they should throw these books out because this is how people make a living and some people actually like these things. So they should set up an adult section in the library where you have to be @NUM1 or older to enter and a identification card to prove it. Also, you must have a membership to that department. That way we don't have to worry about censoring these books, etc. Children will not be able to proceed in this section. In conclusion, libraries are a good source of information. So they shouldn't throw these books, music, magazines and movies out. The library could just set up a different section for certain things and people of certain age. In that way they won't need censorship" 4 4 4 3 3 3 +4004 2 "I feel that u have the right to chouse to remove setian books, movies, music, magazines but only if they are not apropreat for some people and children. Some people like thim others do not it all depends on who you are. If I go to a library and the books I want are on the restricted list, the library should have a small fee some were arould @MONEY1 to @MONEY2 depending on the typ of book. For instance if i wanted the movie @CAPS1 @CAPS2 @NUM1 and it was restrected i wouls pay something like a redbox rental fee. That is what I think about restrecting sertion items from the library. -@PERSON1" 2 2 2 2 2 2 +4005 2 "People that walk the surface of our planet sometimes feel the need to have something banned or atleast get some dirt on it to make people think less of it. It is just the way our world works when it comes to something you just can't stand, but why even bother, just what exactly are they going to get out of it? If someone took the time to make it then we all deserve the right to view it. I do not agree on censorship in our world. Local libraries are a very nice place to go for books, movies, and information. How is this to be such a good resource for people once everything is gone, especially considering some of the worlds greatest books ever written are the ones that are targeted by censorship. I believe Katherine Paterson has a very valuable point in saying, 'Then we have no books left on the shelf for any of us.' because it is true. People don't stop at just one, once something is gone they will continue hunting for things that they just hate, which will lead to people suffering from not being able to enjoy the things they want. When I was younger, I remember going to the library all the time for @CAPS1 movies and books. I personally got to actually see a book be removed because of censorship, although I did not fully understand, I felt that if I read it, I would get grounded. Which is also not good for kids because they shouldn't be scared to read something. We live in a place with the freedom of speech, but yet that right seems to be fading away. There's still more ways to see censorship and how it affects the libraries though, such as actually reading about some of the cases that have tried to ban books. Although most fail to be banned right now, the world is very unpredictable. In school there have been many times where kids got the chance to read case after case about people trying to get some of the best books banned. Which is funny how those books are the only books that were fun to read during the school year. So that doesn't make sense on why to take them off the shelves. Reading is what keeps us informed, on the past and even the future. 'Then we have no books left.' if this is what people wish for then keep at it, but if there is some sort of decency in you, I would imagine when it comes to making an easy choice like this, you too would choose the right one. Saying no to censorship. Reading is what keeps us strong, entertained, and those who know the past are not likely to repeat it, unless books are gone." 4 4 4 4 4 4 +4006 2 "Many individuals vist different libraries all over the world everyday. Some for books, some for magazines, some for movies. Everyone has different taste so a libary is where they go, because they have absolutley everything. Libraries have all kinds of amazing different books. It is where people of all ages go to find books or other materials that they would like to read or use for research. There should be no limits on what books, movies, magazines, ect., are on the shelf. Everyone has different beliefes/feelings on what they would like to read or see. If libraries starting limitting their options, i don't think that they would have as much business and people would not read as much. Which means that an indivudal's @CAPS1 could go down. Reading helps everyone in this world, by learning new vocabualry and just excersizing their own eyes. By taking away someone's intrest, they won't read as much, or feel as free. Just because someone doesnt like something, does not mean the next person won't. If a book or movie, ect., is offensive to someone they just just simply not read it or watch it. No one has the right to take over someones mind of what they are interested in. However limmiting the age groups for certian items would not be a horrible idea. Books that @MONTH1 be offensive or not approiate for a young child should not be aloud to be seen or checked out by a young child, but that does not mean take it away from others." 3 3 3 3 3 3 +4007 2 "Books now an days have action, romases, and, etc. So that's why the books that are not moving off the shelf is because they don't have what other books have. So they just sit there well most of the other books that are getting off the shelf are the happy @CAPS1, The @CAPS2 side, The @CAPS3,and all of the vampor books. It's because they have action, love, and etc. The books that are on and off the shelf. Are maybe really good books. Some books don't ever leave the shelf it's probably because they are not. Really that great the reason for it is because the books that are on the shelf is. Because the book is boring, or a old school book, they really don't have what the raeder is looking for. However the books that are really getting readers happy are the books that are from the movies like the @CAPS2 side. That book has gotten sold faster than the movies. The reason why readers like the books more than the movies is because. The books from the movies like the @CAPS2 side. Is bacuse the author gives more informotion on the movie. I heard that, that book is nothing like the movie the book is so much better than the movie because the book gives more informotion on the movie. So their for poeple really like books that from a movie. They are more reasons why poeple like books now and days. You don't have to go to a book store anymore the books are now on your iphone, ipod, itouch,ipad and a nook,etc. So now you dont have to go to a book store anymore. You can get it on you iphone and other stuff poeple are raelly happy that they dont have too get up in the morning or when ever they get they books. They can however now just get them on the go. So that is why books are now on the shelfs for good. Because you can get it on the go. But I believe that poeple whom ever like the feel of book. Should try and just go out and get a iphone or nook something thaat saves you time while you are on your way to work or school" 3 2 3 3 3 3 +4008 2 "First,I do not think the libraries should take all of those thinks because some of those things people need to help them with their work.when some people need music to think and maybe somepepple need magazines.so I do not think the libraries should take the items off the shelves." 2 2 2 2 2 2 +4009 2 The @CAPS1 @CAPS2 I @CAPS3 The @CAPS4 @CAPS5 @CAPS6 short is about my @CAPS1 @CAPS2 watching the movie antolgy horror of @CAPS7 with @PERSON1. I admit i was scared out of my mind then i got over it.Then after a few times you get use to it I did.That's it for @CAPS6 assighnment 1 1 1 1 1 1 +4010 2 "The library is an important place for the knowledge seeker. The library holds books of past and current writers. It also holds information on past and current events. Censorship in libraries has become an ongoing debate. Censorship in libraries should not be allowed to avoid offenseive history, books, or newspaper articles. Censorship in libraries should not be allowed to avoid offensive history. One reason to ban censorship in historical events is because it would create a loss of information. Periods like the holocaust, the genocide of about six million @CAPS1 by @LOCATION2, would eventually die with the generations that knew about it. The holocaust was an event that became known @CAPS2 wide during @CAPS2 @CAPS3 @CAPS4 which was a major historical event. The slave trade would be another historical event lost to censorship. The slave trade is a major part in @CAPS5 history that helped shape the country it is today. Another reason to ban censorship in historical events would be because of their importance. If we censor certain materials we began to forget key parts of history. Keeping those historical facts poses an opportunity to teach and learn. Censorship in libraries aimed toward historical events should not be allowed. Also, censorship in libraries shouldn't be allowed to change books. One reason is beacuse authors wrote their books how they intended them to be read. An example is @PERSON2. The author of The @CAPS6 of @PERSON3 and The @CAPS6 of @ORGANIZATION2. Both books use the word @NUM1r to convey the tone. Another examample is the author of To @CAPS7 A @CAPS8, @PERSON1. Another reason to ban censorship in books is because that's an authors writing style. The author writes a book how they want it to be read. Therefore they use the language and words of the time period they write about. @PERSON2 didn't use @NUM1r because he was racist, he used it to convey what times were like and how people talked. Censorship in libraries shouldn't be allowed to change books. Finally, censorship in libraries shouldn't be allowed to get rid of newspaper articles. One reason is because newspapers was the way to send out information. It brought peoples attention to recent happenings. It informed people of what was going on. Getting rid of that is just another loss of information. Newpapers were key players in getting out information about @LOCATION3, @CAPS2 @CAPS3 @CAPS4, the assasination of @CAPS12 and @ORGANIZATION1. Another reason to keep from censoring newpapers in libraries is because of their importance today. They continue to keep people informed of recent and also past events. An example is the death of @LOCATION1 and how he caused the deaths of many @CAPS13 on @DATE1 eleventh. Articles about views on the death penalty. Censorship shouldn't be allowed in libraries to get rid of offensive newspaper articles. The library is a homestead to the knowledge seeker. There, they can read about past and current events. They can also read classics by great authors. Censorship should not be allowed in libraries to avoid offensive history, books, or newspaper articles." 4 4 4 4 4 4 +4011 2 "Dear @CAPS1, @CAPS2 the world there are people who censor what their people read and write, these works are oftenly produced by communist and socialist governments. Here in @LOCATION1 we have the right to say,read, and write what we want,about anybody or anything. Censoship does exist in the @LOCATION1, and it is in the form of opoion that it exists. I have read artricles in the paper about how text books have covered up the truth,due to what is politicaly correct. I have heard of libaries taking down books that have a very strong political opoion, often these are books written by conservitives.I have read about books coming out with the only intention of slamming,proabable presidential nomanees. Being a conservitive myself,I do not believe that these books should not be in book stores,libaries, or other public venues. I believe this because in @LOCATION1 we have freedom of press and,for these books not to reach the public is against that right and,the free-flow of ideas.You @MONTH1 ask way I believe this? I believe this because I too want others to hear and read about my ideas, on how to obtain life,liberty, and the pursuit of happiness. Now that @PERSON1, is why all books should be in our libaries.I agree with a restricted section where certain books should be stored,so little children will not get a hold of @NUM1 I would like this paper to put an article out about these thoughts. We the @ORGANIZATION1 are a republic,and we for over @NUM2 years have encouraged the free-flow of ideas.Why stop now?thank you @PERSON2" 3 3 3 2 3 2 +4012 2 "My views on censorship in libraries are alike in many different ways. Certain materials, such as books, music, movies, and magazines should be removed from libraries if they are found offensive to more than just one person. If they are not that big of a problem they shouldn't be removed. People might change their mind about going to that particular library, if they find a lot of offensive things there. Also having these offensive things in libraries greatens the chance they could be read by the wrong minds, and it could possibly change how most children act, or think. A few things that I would find, that would bother me are books or magazines that contain drugs, nudity, horrible violence, and bullying. From my own experience, having books that contain these types of problems are very offensive to most parents and can effect the way you live, if you take them seriously. Some libraries don't even realize that they have these offensive books, magazines, or videos. I have had a teacher take a book away from me and I got in trouble for reading it, even though it was in the library where anyone could have grabbed it off the shelf and read it. In my opinion I think libraries should take the time and look through the books they have and decide whether or not they are considered offensive to parents if their children were to read them. I agree with removing certain materials that contain offensive things, from all libraries. Also I believe if parents could choose they would decide to get rid of all the mean, nasty, and offensive materials" 4 3 4 4 4 4 +4013 2 "I believe that there should be censorship in public libraries. Libraries have families and young children going to them that do not need to see, hear, and read certain things. If people would like to buy inapporpriate reading material, movies, or music they can do that elsewhere. Certain things are acceptable in public libraries and other things are not. Certain material such at rated @CAPS1 movies and romance novels are not inappropriate or unacceptable. They are meant for adults but they are not showing extremely racy pictures on their covers. Other material, however, most people are not interested in having to see and our young children should not be subjected to that. People that wish to view, listen to, or read inappropriate material that is not meant for all ages or covers shouldn't even be viewed by young children can and will purchase or find them elsewhere. People that wish to possess these items will find another place to get them besides a public place with families and children. I believe these people reserve the right to view and listen to what they would like but they should be censored in a public library. Most people don't read inappropriate material in public and most extremely racy movies aren't even shown in theatres so why should you be able to check them out in a public place? Besides that many people do not even want other people to know that they are viewing these objects in the first place so many wouldn't even check them out at a public library. I also believe that not only should children not be subjected to these things but parents should not be subjected to their children wanting to know what certain things are that they are far to young to know about. The youth of @LOCATION1 is getting into new things younger and younger daily whether that be drugs or inappropriate magazines so I believe that we should not begin subjecting our children to that at an even younger age than they will already find out about it." 3 3 3 4 4 4 +4014 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 the author, Katherine Paterson. Her quote means that there might be a book, magazine, etc., on a shelf that someone shouldn't see. I beleive that certain materials, such as books, music, movies, magazines, etc., shouldn't be removed from the shelves if they are found offensive. There are ways people can avoid seeing them. I think that if something is found offensive then they should be in a special aisle. First off, if there are items that people find offensive then they should be placed in a specific aisle. There are things that only adults should see so therefore there should be an aisle dedicated to the offensive or inapropriate things. And for someone to get into that aisle they should have permission to get into the aisle and show and I.D. so that kids and children don't accidently slip in and see things they shouldn't. Because if a child sees something bad, then that might influence them to do bad things because they won't know any better. Secondly, if an indivual finds a book or magazine offensive, then they can avoid it by simply walking away. That person doesn't have to read it or look for it in a library if it's in a certain aisle. But if someone is really offended by something then all they have to do is go complain to the person head of the library and it can simply be removed if there are enough compaints. Then again, it's not that hard to avoid something you don't like. It might bother you that it's there, but it should be out of the way for younger kids to see. Thirdly, the library will contain things that are found either offensive or inapropriate so children entering the library should have adult supervision so that they don't see the bad things. If a child sees something bad, they might find it interesting so they might want to pick it up and read it, which is bad because it might give them ideas. Finally, there are many ways to avoid seeing something you find offensive. You can walk away if you notice something you find offensive or you stay away from that area of the library. There are going to be many things out there that people find offensive and inapropriate, but there's not much you can do about it. The best thing to do is ignore it and walk away. And if you're that concerned about it then you can always make a complaint about what has offended you or what you think is inapropriate for children. Putting bad things in an aisle is a smart idea because little kids won't be able to access it." 4 4 4 4 3 4 +4015 2 "Books on shelfs are there for a reason 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' Katherine Paterson wrote. The quote in short words for me means what should and should not be allowed for children and what they should learn as children. Libraries have non- fiction and fiction books as well as magazines, music and movies. I myself like to learn a little bit of everything but of course there is things that I dont like learning when I am too young. I like discovering things on my own. There is times where I do like discovering new things because I dont know when life ends. In other words I'm surrounded by reality and have to come out of the fantasy world. Magazines also just have a lot of trouble and sometimes, yes it's life but also its just dramatic things about people A library is a good place to learn lots of things. You can learn about the history of presidents, countries, important people music,etc. Honestly, the only thing I go there for, is to read and to check out books, but from books I have learned a lot. There is some material that shouldnt be read and discovered when your too young. Theres material that is too strong for some children and they should learn it as they grown not in a bunch. Libraries should have different stickers or labels on books for children and have a warning signs for their age. There is times where it is good to learn about life but you have to becareful because it @MONTH1 be to strong. There is books that teach you a lot. I have learned a lot from old books to new books. I don't think that the books should be removed, yes they @MONTH1 be strong, but is our owns choice to read it or not. There can be racist books, but they are there for a reason and it's not to make fun of people. Magazines also are sometimes good because they teach good things and keep you updated about whats going on around the world. There is also some magazines that just talk drama and criticize famous people. I dont think its important and to be showing other people's personal lives or criticizing it. That is deffinetly not good for children to learn at that age. Magazines shouldn't be removed because everyone else has a decision at what to read and what to look at. Music, at the library there is mostly music from like a centuries ago, but they were also great composers. No the music shouldn't be removed because everyone has a different taste in music. There's also new music, everyone has different taste and should choose what they want to listen to or who to listen to. Movies, are a big part of life, so I think. Theres a lot from them that I learn from. From slavery to the future, there are movies where I have learned a lot. There is also some videos that are rated @CAPS1, @NUM1, @CAPS2, etc. It is our choice to watch the movie without no one telling us if we should or not. There is different reasons why there are certain books, music, magazines, movies that offend people, but it also has a significance. Books are not racist so other people can be made fun of but to learn what they went through. I'm glad that I as I grow I know what to learn and when I'm to young to read something. I think it should be allowed because it's for everyone. I dont think nothing should be removed from shelves even if the material is offensive" 4 4 4 3 4 3 +4016 2 "As a fellow person of the community and a person who often vists the libray, I think that books,magazines,movies,etc., should not be taken off the shelf. The reason for this thought is because, although it @MONTH1 be offensive to one person does not mean it's offensive to another. Taking various books and items away from our libraries takes away from many peoples' knowledge of our world. This in turn makes the world illiterate. Libraries provide multiple things that are not family disscreation but, to the right age group offers alot of knowledge. Movies are a large portion of this problem but, they are there do to entertainment reasons. I feel that all items that are equipped in a library should be looked at as a way of knowledge and not as weither it is offensive to a certain quanity of people. The removal of these things @MONTH1 become harmful to a new generation in the long run. I personally think as a person who attends the library often, that things being taken away cause uproar in different ways. I have read multiple books that have been aquired from all different sections of the library. Some even pertainig to racism of my own ethinticity that uses words that are not to my liking. I tolerate with the words do to the fact that I would like to know what my ancestory had to do in order for me to get where I am today. Magazines are also a small portion of this conflict. As like movies though they are there to provide entertainment. Most people like to use the library for a time of relaxtion. The library is not just there for people to take books and other things it also there so that people can have a comfortable place to learn something. In conclusion, As a fellow person of the community and a frequent library attende, I think that things should not be taking off of shelves. Libraries provides various things that are not at a family disccreation level but, @MONTH1 provide help to other people. Some books pertain to racism of ethnitcity. It's not meant to be harmful but to show what your ancestor had to endure to get your where you are. Things like magazines are there for your entertainment and if you think it's inappropriate then you should'nt read or watch it." 4 4 4 4 3 4 +4017 2 "There are two things that i would have to say about removing books off of a library's shelf. First being that there will always be something offensive to someone no matter what it @MONTH1 or @MONTH1 not be. Second, no matter what you do or try to do there will always be something that a child will do or see that you @MONTH1 not want them to see or do. If people could remove things that they find offensive then there wouldn't be anything on shelves or in stores or really anywhere. There are too many different kinds of people who @MONTH1 dislike too many differnt things from anyone else. If a person were to remove a book, and another person wanted to get that book, but found that a person requested it to be removed that person whouldnt be happy and stop coming back to that library after one person had to ruin something they enjoy because they found it offensive. So what if a book found offensive was removed? there are much worse things on television. Cartoons are more violent then what most books are, more and more commercials and other types of advertising are using wemon, money, and fame to lure people. Most of the time they are not meant for children, a billboard on the way to school advertising an alcohol product, or some kind of adult enjoyment, they are part of life. No matter what you @MONTH1 try to do to keep your child 'safe', just will not work these days. No matter hard a person @MONTH1 try to change something they find offensive there will be something just as equal around the next vorner, be it a billboard, a poster, a movie cover, or a band, someone will always find something offensiv and teach their children to do the same but, just beacause someone @MONTH1 not like something does not mean their children or anyone else's childer will not eiuther" 3 3 3 2 3 2 +4018 2 "Conflicting works of art such as books, music, and movies, have always been seen in libraries. Whether it's @CAPS1 or @CAPS2 @CAPS3 @NUM1, someone is going to be offended. But whether or not these offending works should be banned is a common topic among authors, musicians, and movie-goers alike. I personally believe that all of these works have a right to be seen, heard, or read, because the creator has put much effort into stating their opinion and have a right to freedom of the press. You could take any famous work and someone could be offended @CAPS5 it because it displays something contrary to their beliefs. But this does not mean that that work should be banned! Banning a book would mean total rejection to the author's thoughts and opinions, and everyone has a right to those. The censorship of any work is unconstitutional because as citizens of the @LOCATION1 we have total freedom of the press. You simply can't apply censorship because whether you keep it on the shelves or not, people are going to be offended. Also, as shown in @PERSON1's @CAPS4 @NUM2, the censorship of books could lead to a society unable to have a real knowledge of the past and the feelings and thoughts of the people of that age. To me, 'offensive' books, movies, and music are not bad, they are merely a stimulant for debate. They can allow you, rather than just the author, to express your feelings on what was presented in the works. But to completely remove the cometition of the debate would be sabotage. @PERSON2 @LOCATION1 that 'if I have the right to remove that book from the shelf...then you also have exactly the same right and so does everybody else.' @CAPS5 saying this she is expressing that if we all could go into a library and remove the books, magazines, movies, or music that we do not like, then there would be absolutely nothing left. Every work would be remove because at least one person is offended @CAPS5 every work of the sort. Therefore, to allow books to be read, music listened to, and movies watched is to allow everyone the freedom of writing down their thoughts or stances. The censorship of any work, anywhere, is allowing for the 'shutting up' of ideas. These ideas are the ones that keep society going @CAPS5 making us think and helping to formulate our opinions. @CAPS5 allowing this we are creating future generations of great thinkers. In this case, @CAPS5 keeping books, magazines, and music on the shelves, we can continue to 'learn from the past' and utilize the information and ideas that have been used throughout history" 4 4 4 4 4 4 +4019 2 "The shelf is an object that holds many types of diffierent materials such as movies, books, magazines, and music. Its all media and entertainment. But not everyone likes the media because one or all of these materials @MONTH1 be offensive towards the foriegn and children. Censorship in our libraries could get a little graphic and such. Yes we all the it in movies and music, but we do not want it in our libraries. A library is a place for study and learning for educational purposes. There are not for entertainment and things of that nature. Sometimes they could be a little fun but for the most part, people would like to take there children and show them something to help there minds focus on school. By all @CAPS1 rated @CAPS2 movies, dirty music, adult books and magzines should be taken off the shelves. One day as I was in the state library looking on the shelves for a book on @LOCATION1 and its people. As I was reading the book, it said some very mean and offensive things about the @CAPS3 people. I thought to myself that this book should be takken of the shelves forever and never seen again. It shocked me that someone would put that book in a public library and let the foreign and others read it. After some people read about the @CAPS3 people; They had second thoughts and started get angey and disliking them for theses things and offensive comments made! Magazines and movies should be taken of the shelves in the catagories in my opinion of the poeple in different countries and the way they live. That could be very sad for someone because they could of really went through everything in that movie or what ever that magzines says. Another reason censorship should be under control is the titles to these materials. If a child looks at an adult film and it happens to be for a child, wouldnt you think thats a little offensive? I know I would. There is no way I want my child watching some violet movie. We have to think for our children and the people that come in form different countries when it comes to public libraries. If censorship is not observed carfully then we could make the foriegners very angry or make our children become very violet and reckless because of the films on the shelves, and the people that come in to our country would never come back if they picked up the book that they might of thought that was int interesting but turns out to be very offensive in there opinion. Censorship is very imprtant in libraries and on the shelves" 3 3 3 3 3 3 +4020 2 "I can think of a book that we hope none of our children or any other children have taken off the book shelf. I hope our children or any other children take this book off the shelf because it would be offensive or demeaning to the race of me or the children. This book would probably make the children asks question that we don't really want to talk about. This book would probably be a book I wouldn't recommend for my children to read or even look at the pages or cover of the book. I mean if it wasn' t demeaning to anybody's race or skin color I would let my children read it, but if it had like profanity and racial slurs in it I would tell my kids that this book is off limits until you are older. Certain magazines such as like swimsuit models and other inappropriate stuff my children shouldn't be aloud to look at. Music is like the magazines if it has like profanity and talks about drugs then I'm not going to let my kids listen to it. Movies are just like magazines and music, if it has inappropriate stuff in it then my kids don't need to watch or listen to it. My exception for a movie is if it is rated @CAPS1 or @CAPS2, then they are aloud to watch it but if it is rated @NUM1 or @CAPS3 then my kids can forget about watching it. So in the end, yes I can think of a book, movie, or magazine that I don't want my children or any children to get their hands on cause you never know what that could lead to. And if your a strict parent like I plan on being don't let your kids watch, look at, or listen to inappropriate stuff because that is just putting bad stuff in their brain. I have to admit I have watched, listened to, and looked at some bad stuff but I regret it all so very much so. There are so many inappropriate books, movies, magazines out there in today's libraries, it's bad because little kids can get a hold of this stuff and take it home without their parents noticing that they took this bad stuff home" 3 3 3 3 3 3 +4021 2 "If someone is offended by a book or a movie from a library, should they be able to get it removed? In the following I want to explain my opinion towards censorship in libraries. If some parents see a book they are offended by, and they don't think their children should be able to get it from the library, they could just forbid them to read it. I don't think they should be able to remove it, even though they might think other children shouldn't be able to get it either, but that's not their decision. Every parent has to decide on their own, if they want their children to get certain books, but one parent shouldn't be able to decide for everyone else by removing a book. Some people might be offended by certain books in libraries, but just because one person is offended by a book, doesn't mean that everyone else is going to be offended by it. Does this one person have the right to say that a book should be removed? It is their personal opinion that they don't like it, but by removing it they would also keep other people from reading it, and that is not fair. Different people like different books, and are offended by different books, so if everyone would remove a book they don't like from the library, there wouldn't be any books left. I think if someone is offended by a book, they just shouldn't read it. They could tell their friends and family not to read it, because they thought it was offensive, but in the end everyone should decide for themselves. I don't think people should be able to remove books from the libraries, but if the library itself thinks a book is offensive, then they shouldn't have it. It is their library, so it's their decision what books they want to have there. i also think that when the library doesn't have certain books, because they really pay attention to the books they take in their library, that that should be good enough for other people. So all in all I don't think people should be able able to remove certain books, because everyone has their own opinion towards what is offensive, and what isn't. We all should be able to read or see, what we want to, and not what others think we should." 4 4 4 4 4 4 +4022 2 "Everywhere I go, there always seems to be something, small or big, that can be considered offensive. Because of these offensive things, there is often censorship in public places. It is acceptable to view non-noncensored materials at your own disgression and privacy, but not very acceptable to do so in public. I believe that censorship is necessary in libraries because of the wide range of audiences, the public materials, and the opinions of certain people. Libraries are considered public places and have a wide range of audiences. Whether it be children, teens, adults, or elders, some things are inappropriate and should not be accessible to certain people. This is directed mainly to children, however. Like the quote mentioned, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' @CAPS1 put these offensive books in libraries then? Censorship will block out inappropriate parts of books, movies, music, and magazines in order to make these materials more suitable for all age groups. Because libraries are considered public places, their materials are considered public property. Everyone has the right to these materials. However, not every library will have the book, magazine, or movie you could be searching for due to the fact that it @MONTH1 contain profanity, or inappropriate content. Some people @MONTH1 be against censorship in libraries, but there often is not censorship in bookstores, movie stores, music libraries, etc. If you desire a certain non-censored material, then go purchase it. That way the material will no longer be public, but rather your own and you can do with it whatever you choose. We now live in a world where everyone voices their opinion freely and you can not be punished for doing so. Libraries are targeted toward every age group and censorship just allows everything to be appropriate for everyone. Certain parents do not allow their children to read certain books, view certain movies, or listen to certain music and this is just because it is their opinion and their parenting. Some parents, on the other hand, do allow their children to partake in inappropriate materials, and that is perfectly fine, because it is their parenting and their children. However, libraries should not have the right to introduce inappropriate things into the lives of children; that should be the decision of the parents or gaurdians. In conclusion, censorship should be allowed in libraries because of the wide-range audience, public materials, and the strong opinions of the people. Everyone deserves to read, watch, and listen to whatever they choose, but not everyone deserves to be around inappropriate things in public places. Not everyone can be happy, but everyone can be appropriate" 4 4 4 4 4 4 +4023 2 "In my experience some music is just too offensive. They use words that should not be heard by certain people and especially certain ages. Even the magazines have things that are just way too inappropriate for some people. Some of the movies they put out these days are just horrifying to see. The fact that they put these things in a library shocks me greatly. One day I was babysitting a little girl and I had taken her to the library. There was a @CAPS1 on a shelf and she put it in her @CAPS1 player. It was making very sexual references and had many curse words in it. I was mortified that the little girl had to hear those words at such a young age. As soon as I put my ear to her head phones, I turned it off immediately. They should really watch @CAPS4 music they put put out to the public because if I hadn't of been with her, she might have picked up on some of those words. I don't think @CAPS3 would want anyone listening to that kind of language at any age really. It disciminates woman and gives young children ideas in their heads of sexual activities. One other thing they put out in libraries i don't agree with is magazines that are a little too mature. I went to the library one day with a friend of mine and i picked up a @ORGANIZATION1 magazine. I was flipping around and I saw all these revealing pictures and I was thinking to myself, '@CAPS4 if a yooung cjild picked up this magazine when no one was looking?' That would be a horrible experience for a young child to have. I've read somewhere that things children see at a young age, have a great effect on who they will become. If this is true I certainly thing we should censor @CAPS4 we out out in our public libraries and be careful if we take our children to the library. We should make sure the next generation doesn't see certain things that we have. We should also monitor the movies the watch and keep a close eye on the things they read" 4 3 4 4 3 4 +4024 2 no i dont think anything should be removed caz not everyone wants too look at the same thing i think if you dont like it dont look at so there is no need to remover it no matter what 1 1 1 1 1 1 +4025 2 "'All of us can think of a book that we hope none of our children have taken off the shelf. But if I have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 quote from @PERSON1 voices a strong point on citizenship. Censorship happens everywhere you are. Whether its a book, a magazine article, or even a tv show things are censored. Censoring things doesn'@CAPS7 make anything more enjoyable, but infact makes less things enjoyable. I think that things that are offensive should niot be removed from the shelf. Censorship diasble the viewer and or reader to be able to enjoy the full potential of things. I myself watch tv shows all of the time. When the censor things it makes me angry. I already know what the words are so why censor it. @PERSON2 wrote a famous book called @ORGANIZATION1. and that books has been banned from being taught in schools simply because it says a racial term. I have two things to say about it. One if it offends you then you shouldn'@CAPS7 watch or read it. Second one would have to consider the time and age that the book has taken place and that was language used back then. So then one could take in thoght when the book was written, what was the time of when the book had taken place, ect. There are two books that I read called the @CAPS2 and @CAPS3 @NUM1. Both books have one thing in common. The use of censorship in their society. In @CAPS3 @NUM1 books are censored. @CAPS1 causes one to challenge that concept because he and others felt that it wasn'@CAPS7 fair for books to be banned. Also in the @CAPS2 a boy challenges his @CAPS6 society because they too censored certain things. Censorship also happens in todays' media. Some example are @CAPS7.V shows. TV censors vulgar language, and sometimes violence and gore. Now its understandable to censor childrens shows but shows for mature audiences are unacceptable. Considering the freedom of speech one can express. Also mature shows are only ment for mature people to watch them so why censor them? Katherine Paterson makes a valid point in her quote. I feel that if you find something to be offensive then don'@CAPS7 read or watch it. If you feel that something is so offensive to you that you have to compell otheras in to believings what you think then you are wrong. People should have the right to read, watch, or listen to anything they want uncensored." 4 4 4 3 4 3 +4026 2 "Does censorship solve any problems? If one person wants to censor something in a library, there is bound to be another person on the other side of that arguement trying to protect that work from be taken away. As a free country, it is every individuals right to take in whatever form of literature or music that they find pleasing, and history has shown the world that censorship leads those in power down a dark road. The shielding of offensive materials is only necessary and fair when the young, impressionable minds of the world's youth are at stake, but once a person is old enough to make informed decisions, it should be their perrogative to choose their own material. Censorship is unacceptable on the grounds of personal rights and how it has affected history, but necessary when protecting the young. It is a person's right to choose what kind of literature they would like to read. If someone does not like a book and it becomes banned from a library, then everyone will want to have a book that they do not like banned. For example take a hypothetical public library: a public library is an open, free place where men, women, and children of any background can come to learn and enjoy themselves with a good book, magazine, or music. A great mental image of serenity and peace. How does this picture appear to a bystander once books begin to disappear off of the shelves? Suddenly right and left, books are disappearing as if by magic: a ceratin book is disapproved of by mothers, a religious group does not like the message this book sends, and this book makes people sad. Before long, there are not very many books left in this hypothetical library other than books for toddlers. With this system, everyone suffers. Everyone should retain their right to read what they would like to. It would all just be simpler if book were just not banned from libraries. History has given the world many a cruel dictator. Oftentimes, once he comes to power, he is not the most popular of governmental forms. To keep his subjects underneath his rule, often he has to resort to taking away civil rights. This could be a curfew, fake elections, or censorship. If the ruler has the power of censorship, he or she can control what the public thinks, feels, and believes. With this power over them, the people are weakened and often abused. Now imagine that censorship occuring in a country that has civil rights. People would not stand for it. So why begin censorship in an area that promotes freedom? There is absolutely no need for censorship to occur, and as history has shown, it certainly is not a good thing. Censorship is unacceptable in all forms in a free country that promotes civil rights. There is, however, one other element at play here: protection of youth and innocence. Almost everyone can remember a time a child when they were young and innocent, free of worry and trouble. That can disappear in a instant. Children should not be exposed to things that are innappropriate for their age. Nearly every movie nowadays has violent and risque, if not full-blown-adult, materials present in it. The age of innocence is getting younger every generation, and children are becoming conditioned to this material to an extreme point. A claim like this @MONTH1 sound hypotcritical coming from the mouth of one against censorship, but it is not 'censorship' when one is protecting the young. Due to personal rights and what history has shown the world, censorship should never be tolerated unless on the grounds of protecting children. It is each person's choice of what they would like to read and absorb, so their choices should not be infringed upon. The world has seen on several occasions what censorship can do to people. Also, children should be protected, and that is not censorship. Censorship solves no problems, but it makes everyone unhappy. Therefore, why censor" 5 5 5 4 4 4 +4027 2 "I think certain books such as offensive books shouldn't be remove. I dont think so because that's how some kids learn better and read better. Kid's dont like reading boring books. Things like music, movies, and magazines are interesting to us. If this world didn't have movies kids wouldn't read books. Most of these kids now a days read books because they watch the movie to the story. Some kids like listening to music while reading. I'm glade people invited these thing's. I feel like if people didn't invited these things this world would be boring. Magazines are also great because they help people start to read books and so on. Magazines are entataining to people. I say they are because they have pictures, glossip, and much more. Magazines are good to read it help alot of people to read better. It's also bad because kids read it and start doing what they say in the magazine. Some books are good some are bad. I say that because some books get out of control with cursin and the cover of the books well pictures. Some arthurs write good things and some write bad things. Hope you get something out of what i wrote. This is how i feel about books, magazines, music, and movies. I love to read and listen to all of them. I enjoy books alot. P.S @ORGANIZATION1" 4 3 4 3 4 3 +4028 2 "When @LOCATION2 was made and our fore fathers signed the constituition of the @LOCATION1, freedom was the big kahuna. With every signature endorsment added to the constituion, @LOCATION2 became one of the few countries with freedom in every right. Laws such as 'you are innocent until proven guilty' and freedom of speech have made our country stand out from other nations that suppress thier own people.Freedom is @LOCATION2's middle name and it is the birth right to our future! Freedom of speech has been shown everywhere and even though some people's voices say a little too much it is still a right given to us so we must accept the nonsense that is said. Offensive things are common, since we are all differnt and the variety of ethnic groups in @LOCATION2 are so vast, that at one point in time someones toe are going to get seriously stepped on. This is not tolerated but still it goes on through the world. Freedom of speech is a unidentified form of express, since it is allowed to say what you feel but sometimes it is said to much and you end up in a fight. Speech is still a freedom though, and if we cut out freedom we would be in a bad spot. Genocide, and inlawful inprisonment are two factors that happen regulary on account of no freedom. If you speak out against a powerful figure, you go to jail. If you belief in something differnt armys come and kill you, all because some country do not have freedom like @LOCATION2. This freedom might cause controversy and produce offensive products such as reading material and videos but its alot better than living under the shadow of a dictator. Crude forms of freedom always end up on magazines, books, and cd's but if you think about it there being produced then they are being bought, or they would not be made at all. On certain occasions items are not being made for economical benefit but mearly on belief and religous values, that is also a freedom that many have paid with there life, to have. Also with the production of books, movies, and cd's you are protected from being exposed to points of view you do not like these things do have a rated supervision system, and if you do not like the product put it down and walk away, yes it is that easy. I do not see freedom being thrown out the window anytime soon, we might just have to keep living with offensive products. We should all just be glad we live in afree society that lets us express our diffrence without being killed in the process. You cant just go take the constitution and disgard like trash so society will just have to bear the burden of expressed freedom. Freedom comes in disc and books but it is still @LOCATION2's middle name and the birth right to our future" 5 4 5 4 4 4 +4029 2 "Do you think that books, movies, music, etc., should be moved if they are found offensive? I can't choose @CAPS3 they are both understandable. Therefore, I well dicuss how i feel about it in this essay and what I have experience on this topic. Well lets get started! I could go both ways with this. But first I well just discuss the way I disagree with removing offensive things. Material that is instersting to many people mght not be instersting to me. I mean everyone should be able to listen and read things that the loved and enjoy. And I could really careless what other people loved to read and listen to. Someday, we all might come to enjoy things that we wouldn't every think we would. It's just that simply. I mean I love romance and scary books, and someone else might dislike them both. Noone can tell anyone what they should like or dislike. I agree in away too! When people make a big deal out of somethings it kind of gets on your nerves, like when your mom is telling you make sure room is clean all the time! I agree with this @CAPS3 something maybe to offensive to someone and doesn't want their children. One time I was in a library looking at this book that really seemed good to read. But then some lady told me that I shouldn't read it @CAPS3 it to much for me. But it was just right for me. @CAPS2 went up to the main desk and started complaining. I was like, 'Are you serious?' I didn't want to be rude so I told her calmly, '@CAPS1 are you so worried about what I am reading?' @CAPS2 replied, ' @CAPS3, the book is to reviling.' I showed her what the book was called, '@CAPS4 @CAPS5 @CAPS6'. We ended the agruement. I still checked out the book, @CAPS3 I knew I would love it, and I do! They should just put things aside, that they think well be offensive and let people ask for the things. So people won't make a big deal out of it. Just keep the peace and give everyone what they want. Well I'm done now. Hope you understand both sides of the agruement. Just remember that if you agree or disagree.Or you like me, who can't choice or understands both sides. It's your decision and noone can make you change what you love and enjoy to read or listen to. But I can't pick aside @CAPS3 either way their both a understandable." 3 3 3 4 4 4 +4030 2 "I believe that certain materials that seem offensive to certain people should stay on the shelves. I feel like as though its on that person whether they choose to read or listen to the material or not. I have also been in this position where I came cross an article that upset me. Also I have had an arguement once with someone who found what I was listening to was offensive to them. Once when I was reading a paper on that was making fun of my town that I grew up in. The paper said how my town was filled with rednecks and that many people there were not very educated and not intelligent. This upest me and made me feel ashamed for living there. But I thought more and more that this article was someone elses opinion. That just because they wrote that article, doesn't make it true. This arguement went out of hand. She had her opinion and I also had mine. My friend came by my house one day to hang out and do some homework. While we were in my room I turned on my favorite artists cd. I listened to rock music at the time and loved how talented the artist was. My friend went to my sterio and turned it off. She told me she didnt like it and that it was offensive music. So after that we pretty much argued the whole time. I finally said that I feel its great music and I shouldnt have to stop listening to it. We had a deal that while she was there I wouldnt listen to it, I felt I would respect her feelings. Over the past years I have observed that more people are taking what others have to say or sing about to heart. When an author writes a story or an article, they are putting their opinion into it. Sometimes they are typing the facts and also what they feel is write to say. I mean if it is on the shelf and dislike it, dont pick it up and read it." 3 3 3 3 3 3 +4031 2 I dont thank so due to the fact that most libraries in towns and cities are open to the public. if the person or persons find the peice of material offending then they should pass the item. or they can skim over it. on the other hand the person or persons does have the right to freedom of speech but should not exceed their opinion above the level of the law. if music is played in the library that others do find offended then in my opinion yes they should and can speak up for their rights. books and magazines should be allowed in the public library even if they feel offended. this is due to the fact that it is a public library and there should be many many different kinds of books. this is because people hav different personalities which mean we wll like different things. that does not mean that others can not speak their opinion because like i said earlier every one in the united states of america has the right to speak what is on their mind even though it @MONTH1 not be what others want to hear they can still do it. well that is my opinion on what i think should happen. 3 3 3 2 2 2 +4032 2 "I think people read more books that are banned from schools and libraries, they listen to 'rebel' music, or they just watch controvesial movies, so is censoring really effective? I do not think censoring is really necessary. If you think a subject might be offensive for you, you should not read it. instead of censoring the products in a library we should censor the readers, I believe people are mature enough to choose what they want to read, watch, or listen. Media is just another way to gain knowledge that's why they are used at school. I would like to go to my school library and find books like, 'The @CAPS1 @CAPS2', I know this book is considered as one of @LOCATION1's most famous literature work, but it was once banned from some schools around the nation. The reason of the banning was that they believed that the book contained pornography, and it wasn't school appropiate. My english teacher used this method, by telling us this, to encourage us to read it. My classmates who hadn't read the book wanted to find the pornography in it, if you were to ask me... I did not find it. Another literary work which was banned once is 'The @CAPS3 of @ORGANIZATION1', this book was banned because @PERSON1, a black character in the book, was called a @CAPS4,and thought to be stupid sometimes during the book. Even though @PERSON1 is the most noble and innocent character in the book, some people found this offensive and not appropiate. Movies with strong language are rated for it's public so I don't think this should be a problem. Music in the other hand, depends on the singer's music style and that should be monitored by parents. I trully believe that we should not censor any material in libraries, but if it's necessary, they could stablish an age limit to check-out any controversial material. As I said before, media is just another way to gain knowledge" 3 3 3 3 3 3 +4033 2 "As @CAPS1, we are entitled to both freedom of speech and freedom of the press. However, these rights are somewhat suppressed in the censorship of media at libraries. I can understand why libraries feel that they need to ban certain works; there are many children that frequent libraries, and having explicit content could deter parents from allowing them to visit. Surely, though, the media in question could be placed in a seperate area, off-limits to anyone under a certain age. Even if someone gets their hands on one of these works, safeguards could be used at the front desk to keep them from borrowing the material. Their library card would show their age, and the worker would not allow them to check out the work if they were too young. Furthermore, I trust in people's common sense. If they believe that a book or movie will be too adult for them, they will avoid checking it out of the library. Parents, as well, will surely not allow their children to borrow risque material. Information is open to those that search for it, and the knowledge it brings prevents unwanted results. There are those that want this content banned because it does not conform to their morals, but this is really just setting restrictions on other's freedoms. They @MONTH1 think it is too explicit, but another @MONTH1 not. That other person might want to use the material, but because of restrictions set by the first person, the borrowing of the work becomes prohibited. It seems that if the first doesn't agree with the material, they could just let it be, and not bring others into the dispute. People know their limits and generally make sure they don't cross them. I think this conflict represents the @CAPS2 way of life in itself. When a disagreement arises, no matter what the topic, one group of people wants to basically control what everyone else can or cannot do. They organize protests, sign petitions, etc. True, people do protest laws, and with good reason. However, there really is no need to argue over petty issues that could easily be avoided if people were to just use common sense to reach a consensus. I think this censorship issue is a prime example of that. When it comes to these kinds of debates, we need to learn that we can't be too quick to place restrictions; that we should leave others to do what they think is best for themselves. The best course of action is to leave others alone concerning simple things such as this, and to avoid placing any restrictions on anyone's works, rights, and freedom. To paraphrase @ORGANIZATION1, I @MONTH1 not agree with what you say, but I will fight to the death your right to say it." 5 5 5 4 4 4 +4034 2 "I believe certain materails such like books, music, movies, and magazines are offensive and are inappropiate. Why I believe @CAPS1 is because there are things that are in these items that hurt people in many ways. But when the people make and read these items they dont know how effective it is to the people that are buying these items from the maker. I also had experience a offensive book and a inappropiate book. When I went to a public libary I picked up @CAPS1 book and said too my self ' @CAPS1 might be a good book I can do for my book report' so as I picked up the book and flip threw the pages I saw words and images that offened me.there was words that where calling color people out by there names and pictures of the color women getting rape or abuse. So I did not get that book I just put it back and was mad at the people that treated my culture wrong. So @CAPS1 white lady 'The libraryan' came up to me and asked me did I need help finding anything, but I did not answer her I just looked at her and shook my head. As I walked threw the library I saw inappropiate books such as '@CAPS2 books' that these kids was looking at I could not believe what I was seeing. Becasue I think they should have these books some where else so that the younger kids will not get to these adult books including the music that always talk about @CAPS2, drugs, and gangs. Because I think these things are bad for the younger kids to be looking at or listing to because it can effect there futrure in life and also can cause violence, abuse, harrasment stuff that will get our younger childern in trouble as they get older. I think all public libraries should have @CAPS1 type of stuff kept in a section for adults only and have to show some type of I.d to prove you are @NUM1 and older." 3 3 3 3 3 3 +4035 2 "Readers of the @ORGANIZATION1, Censorship in libraries should never be an issue. It is a very simple concept. Obviously, no one wants their children being exposed to inappropriate reading material or movies. If a child wishes to visit the public library, their parents shouldn't have to worry about what their children will be looking at there. A library should be a family-friendly place where children can get together for story time, or where college students can study. I remember going to the library all the time when I was younger. I would read a different story every week with a large group of kids in the community. It was something I enjoyed doing. Don't you want your community library to be a place where children can learn and enjoy themselves? Unfortunately, some libraries do have offensive reading material, movies, music, etc. It is the responsibility of the library employees to put these offensive materials in the adult reading section of the building. Parents should tell their children that the adult section is off-limits, and the library employees should keep children from every being in that restricted area. These items @MONTH1 be offensive to some people, and they @MONTH1 be too inappropriate for children. However, there are some readers who have the right to look at these materials if they want. That's why they shouldn't be taken off of the shelves completely, just removed from the rest of the books, music, movies, etc. I am not one to deny anyone their rights. Even though I don't personally see the need for offensive reading materials in a public library, that doesn't mean that someone else shouldn't get to view these items. All in all, we have to be fair. Would you want someone taking away your right to do something you like to do because they find it offensive? No, nobody wants that. However, we still have to be reasonable about it. If there are going to be adult reading materials in a community library, they have to be in an area where children aren't allowed. It's just common courtesy, and everyone has to cooperate. This is why censorship in libraries should never be an issue. I hope that you can see it my way, and help me in fixing this issue once and for all. Sincerely, @LOCATION1" 3 4 3 4 4 4 +4036 2 "We all have that favorite book, mine is ' OF @CAPS1 and @CAPS2.' @CAPS3 is a book I would recomend to anybody, but there are libraries that have some books that are so bad I would be scared if my mom even picked it up and looked at the cover. My name is @PERSON1, and during @CAPS3 essay I am going to show you what I am talking about. I love to read during the day. I like to go out and just pick a book right off the shelf and start then and there reading, but when I see a book or a magazine that holds sexual acts in them I become very anger. I have seen many of my friends get lost in these books and magazines right in front of a adult like there mothers. They can go to a public library where they're children (as young as the age of five) and read and look at these terriable things. I don'@CAPS4 know why these books are even needed in a library. Now people can get on the @CAPS4.V's and but or rent them. I have a best friend who lost is father to these sexual acts and pictures. My friends mother had enough and had to kick him out. Now my friend is becoming the same person. He can go out and buy these magazines from friends that steals or rents them from our local library. He doesn'@CAPS4 even reconizes that his father did the same thing. He still never wants to see is father, but what he is doing is the same thing that his father also did. I have had varies talks with @CAPS3 friend, but he said it isn'@CAPS4 hurting anybody, but what he doesn'@CAPS4 see is that he is hurting me. Back in the late @NUM1's early @NUM2's parents saw some of the books that their children were reading. That tried to put a stop to it, but the plan never worked. Since then @CAPS3 problem has grown to a point that we will never be able to control. The libraries do @CAPS3 all for money they make. More people go to a library now not to study or to read in peace, but to get a sex high. @CAPS3 is where about half of the libraries money is being made. The goverment tries to stay out of @CAPS3, because the money they get through taxes is coming of these people. When will it stop? No one really knows, but we will try to stop it all we can. The reason for @CAPS3 essay was to show why the process needs to be stop. If you go to your local library and really look at what they sell or rent out, you will then know what I am saying. I will try to stop it, but probably will not suceed. That will not stop me with helping my friends in the future. Just be glad that you know about it now" 4 4 4 3 4 3 +4037 2 "Offensive much? Thats what multiple people feel towards curtain books. For instence if @CAPS5 was the bible and you were an athiest, or a person who doesn't believe in god, then the bible @MONTH1 be offensive and hurtfull to you. I feel as a student that there are so many people in the world that by the time everyone inserts their own feelings by taking away books then we would have nothing left to read. You see, everyone is different in their own way, so books, magazines and music wouldn't be around because everyone feels differently about different subjects. I feel that they are a resourse that is very helpfull, and multiple times knowledgeable on many grasping subjects. First, besides books, we have magazines. If we would get rid of all of the magazines in the world then there would be a cut down on all those horrible advertisements that men long for. Second there would be less gossip. Most magazines are about @PERCENT1 gossip about the recent break-ups, and make-ups, of todays modern celebritys. I feel that the magazines are a waste of time because they hurt peoples feelings, also its offensive the way that some famous people act. I strongly believe we should take magazines off the shelves. Lastly there is music. Some of the greatest inspiration comes from music. Don't you remember the song, 'We @CAPS1't @CAPS2 the @CAPS3?' @CAPS4 if you don't then i'll tell you a little about @CAPS5. @CAPS5's about america, things that have happened in the past and were a big deal. In the chorus @CAPS5 says, '-we @CAPS1't @CAPS2 the @CAPS3,- but we tried to fight @CAPS5. @CAPS5's always been burning since the worlds been turning.' @CAPS5's a song that is about americans saying that they @CAPS1't cause panic and such things, but that since the begining of time @CAPS5 already was. The song inspired many of the famous singers you @CAPS4 know. Elvis @CAPS6 is one of the many that you should know. We should keep music out so people, like me, who have been inspired, can inspire others. Music helps the blind, heals those who are sick, and give hope to americans. Without mucis there would be chaos. Last and furthermore is movies, where would we be without movies? We need movies, not just for our intertainment, but some of the best movies are historical events. Events that help us get a better grasp and keen look at what has happened in the past. For instince the movie @CAPS7, and @LOCATION1, even the movie The @CAPS8 @CAPS9, they all help us picture events that have happened and are very enjoyable but also very educational. We should keep movies, there is no doubt in my mind. In conclusion I hope I have created a clear message that you will take into consideration highly. We need books and music to inspire and electrify the world, and magazines we need not. We all need a little inspiration in our down spiraling lives, and we need education. Not the kind that we wish to see but the kind we need to see. I hope I have made a positive inpact on your thoughts, and feelings." 3 3 3 3 3 3 +4038 2 "There are too many people in the world to just have one opinion about one topic and nothing else. If a person knows something is unjust, they obviously have to tell the world about it, or they feel like their opinion does not matter. Take, for example, women's clothing. If you show a man a piece of women's clothing on a computer screen, he will probably only have one or two opinions about that piece of clothing. If you show a woman that same piece of clothing, she will have more than two opinions about the piece of clothing. This is how society works today and it is not just because we were brought up that way; this is how we think and how we act. @ORGANIZATION1 depicts beautiful as half dressed and makup put on like plaster. Many magazines and books, such as @CAPS1 and books about modeling, portray beautiful as stick thin and your clothes almost falling off your body. Many songs and movies tell you that being beautiful is on the outside. If you can find these magazines, books, and movies at your local bookstore, don't you think that they could possibly be two miles down the road at your local @CAPS2 library? Libraries aren't just for adults and teenagers. They are intended for people of all ages. Many people do not realize this, but at many libraries, there are sections specified for teenagers. Young adult books and magazines should not even be put in the teenager section, only for the reason that there are subjects in many of the young adult books that a lot of teenagers have not even begun to dicuss yet. If these books and magazines are put in here for teenagers, do you not think a five year old child could wander up to the section, take out a magazine and wonder how the women in the advertisements grew up to be so beautiful? Like I said before, @ORGANIZATION1 depicts people to look beautiful, when it's all photo-shopped. If a five year old child can get their hands on books and magazines that they shouldn't even know about, @CAPS3 would a library keep them on their shelves. The thoughts that the five year old child has now is '@CAPS3 am I not that beautiful?' @CAPS4 image is the key to how people view society today. Modeling agencies, photographers, and even cheerleading coaches make girls feel like they are worthless because they are 'too fat', 'too ugly', or 'too short' to be part of what they have wanted to be in their entire lives. Many women that @CAPS8 starve themselves every day just to maintain the 'healthy weight' which is @NUM1 pounds and you can see every rib in her body. Many books, magazines, and television shows portray this as well. You can find them in libraries nation-wide. The magazine, @CAPS1, has articles about how to become skinny. The television show, @LOCATION1's @CAPS6 @CAPS7 @CAPS8, shows people that being tall and as skinny as a stick is the way to go. Many workout books tell you that being like @PERSON1 is the 'best for your bod' way to be. You cannot tell a girl that she needs to be a specific height and a specific weight by a specific time. Woman don't work that way. No one does. Many magazines, books, movies, and music tell you this, and it is not true. I believe that if libraries took these types of materials out of their facilities, then if would drop the rate of society's '@CAPS4 image' rapidly. Many woman and girls wouldn't feel like they are ugly or fat. They would love who they were and they would not believe what another person says about them or what they look like. Being beautiful is not just on the outside. Anyone can have a beautiful heart and that will shine through more than anything else." 4 4 4 4 4 4 +4039 2 "Ever went to the library and seen a book that was to graphic for a certain section. When little kids came into the library does it seem like they should stay away from that section. Well censorship should be in librarys now a days. Many children are seeing bad material at too young of an age. Due to seeing this they @MONTH1 get bad ideas and possibly lead them the wrong way in life. In librarys they have many books that are too mature for young children. They should have a restricted section in the librarys that only peolple of age or with parental guidance can pick books, movies, music, games, and magizenes from that section. For example, in video stores they have and adult section that only adults @MONTH1 enter not children. Librarys should be that same way but not with same material in video stores. Personaly, I have seen children learning bad behaviors from video games, movies, and some books. While these children are young they do not know what is bad for them. So when these kids see the movie stars they envy and video games they enjoy harming other people they will pick up on the violence and do it themselves. Librarys do need to take these books, movies, games, music, and magazines off of the shelves. If they do not then they should make a place children can not get ahold of these materals that can affect judgement. So when taking a younger child ta a library go in with and walk with them. It will save our kids of the next generation from violence and all other wrong doing habbits in these books, games, magazines, and music. As long as there is not censorship in librarys our children will see these bahaviors and recreate them with other friends thinking thats its okay to do. Yes, once again I say censorship should be in librarys of any thing of certain age groups or if it is offencive. Do not let young kids walk alone in librarys so they can come across the wrong material for their age." 4 4 4 4 4 4 +4040 2 "Books have been around for hundreds and hundreds of years. They have significent value in culture, lives, and everything else. We all see kids laughing and enjoying books about pretty ponies and little puppies. What we don't see is how books and magazines are really effecting people of different race, religion, or age. We should take a stand and get rid of these bad books. Negitive books, movies, and magazines should be taken off the shelf to prevent hurt feelings and ideas. We have learned to accept everybody no matter what color they are. I remember in @NUM1 grade when a girl named @PERSON1 got very upset because she thought a book was making fun of her skin color. Everyone in the book was white and excluded a african american girl from playing with them because she wasn't pretty enough. She went to tell the teacher and the teacher threw the book away and said that we should all learn to treat everyone with respect no matter what they look like. We need to have more books like what the teacher was trying to teach us. To boost everyones spirits and make them feel better about themselves. The world has changed and books should too. Many things influence people of different ages, race, or religion. Books that talk bad about other religions or make you second guess your faith are considered negitive and should be taken off the shelf. How would you like it if someone was putting down your religion? That is how many people feel when reading that kind of material. These books, magazines, and movies are not good for anybody and should not be anywhere near libraries. Have you been watching what your kids are reading about or what movies they are watching? Most of childrens books and movies have pretty princesses and little mermaids but not all of them. Behind some movies or books there is are violence and bad scenes. When fight scenes occur and zombies attack, children believe that everything is real and that it is ok to kill someone if they are a bad. Boys believe that it is ok to hurt people because that is what happens in the movies. Girls believe that everything about a princess is perfect and flawless and to be a princess they also have to be flawless. Do we really want childrent to think it is ok to fight and be upset because they are not perfect? Libraries need to get rid of these book and movies because it is badly influencing the children in the world. Not all books are bad and not all of them are good, so we need to divide and conquer. We need to take a closer look and really examine what needs to be taken off the shelves. The books, magazines, and movies that influence people to think differently about themselves need to go away for good. To get rid of these books that cause conflict within a person is like getting rid of a big burden. It can make a really big improvment in adults and children. Please take negitive books and movies off the shelves to prevent any unnecessary problems!" 3 3 3 4 4 4 +4041 2 "Books @CAPS1 @CAPS2 @CAPS3 @CAPS4 your in a library its many book that children decide to read that @MONTH1 not be suited for their @CAPS3. Many parents allow their kids to read those type of books so they're use to it now. But some book aren't for children @CAPS3. Now and days kids are more mature and knowledgeable and can read on higher levels. @CAPS4 kids go to the library they look for book that catch their attention. Some books that are out shouldn't be out and thats my opinion. Most authors write about things such as sex, drugs, and other bad thing. @CAPS4 a child looks at things like that they get ideas about what the book is talking about and try those things they read. Im not saying that all kids read books and decide to try all the things that they read, but most will. Some kids minmic off certain things they hear, see and even read. Kids are always going to look up to other people so what they see you do they will try to do it. I beleive that things like books that kids should'nt read should be put away. Books should be taken off the shelves and put in places where only adults could get them. Just like video games only a certain age group could play the game because of the things they do in the game. The things kids see they soon try out. They should also make it where you rate a book like you rate movies, video games and other things. All books aren't bad for children @CAPS3 but some are. I notice that many parents don't care about what their kids read as long as they're reading. People should'nt think that way because its alot of crule people in this world. I even seen on the news where it was an author who wrote a book about how he killed a lady. So many teens read that book and found it interesting. And it even gave young boys ideas about killing people or girl friends. That book should be in the hands of someone with a mature mind that really knows right from wrong. Its parents out in this world that wouldn't allow their kids to read books that have bad things in them. Most parents find it offensive that book stores or other places sell these type of books to their children. The things authors talk about in their books and what they include no @CAPS5 should read. Books that aren't good for certain age groups or that have inaproprate things in it should be removed from the shelves. But certain people interpret the words different and veiw it different. Its many books out in this world that most parents or grandparents hope their kids or grandkids never take off the shelf. But its going to keep going on until someone speaks up." 3 3 3 3 3 3 +4042 2 "The material we read in books are sometimes offensive. Books that are offensive should be supervised as to who gets to view them. I believe that every parent has the right to oversee what there child reads. I also believe that Censorship is a good thing sometimes The material we find in books is not as much of a proplem to our youth as any other thing. The reasoning for me saying this is that youth to day are not really woried about picking up a book and reading is as much as them picking up a magazine, cellular phone, iPod or using a computer. I believe magazines are worse than any book. Books are reed mostly for knowledge wereas magazines are mostly reed for people to catch up on the latest trends. Magazines can lead to people listing to the next hotest band, singer or rapper, whatever. Music that you hear on the radio is filled with suggestive lyrics. Then people get pulled in. Music doesn't have rating were movies do. Movies are a little easier to control because of there ratings but children are alway going to get there hands on it no matter what. This is were the internet comes into play. Most people have acsess to a computer. Children could be on the internet for hours looking up things that aren't ment for them to see. Internet is also use to educate. The internet also opens up the doors to video games. Children can play with there friends all around the world now without leaving there bedroom. They also play with complete stranger. Some of the other player could be a bad influence to them because they were influenced by music, magazines, music, ect.., that send a bad message. No one is ever going to be able to control what our youth see. The only way is to close our libraries and shut down the internet. Even if we do this there could always still be away." 3 3 3 3 3 3 +4043 2 "One book or movie doesn't make a difference in the huge library full of books and movies. Thats why the books, magazines, or movies shouldn't be removed from the book shelf of the library. They shouldnt be removed because some parents of the children don't care what their kids listen to or read. Only if they are doing what the parent says. Also the parents might think to much of their kid and think that their kid knows what books you want them to get or don't get. Although, if your one of those parents that not only care about what your children read or listen, and you realize that every kid doesnt know what their parent wants, then you should talk to the school's principle and see if there is a way that you could come up with an area of the library that is just for the books that have the wrong type of language or sex appeal that you don't want your children to have, or ever read, or you could ask them about a permission slip for the students to ask their parent if they care about these types of books. Then there are some kids who like to read those types of books and would be very dissappointed if their favorite books got taken off the shelf, and they didn't have anything else to read, but everybody else in the school got to have their favorite books in school. If someone where to tell me that the book is changing their lives into something that is unbearable. I would say to them that, its not the book. The kids chose to read the book in the first place, so it would be their own doing if their life changed. Finally, thats the reason why books shouldnt be taken off the book shelf because some people like them, and if you are some of the kids or parents who dont like them or don't want their kids reading them, then have the librarian make a note to say they aren't aloud to check them out" 3 3 3 3 3 3 +4044 2 "Author Katherine Paterson once commented, ' All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf-- that work I abhor-- then you also have exctly the same right and so does everyone else. And then we have no books left on the shelf for any of us'. Many people in society share Katherine's view, while some belive in strict library censorship. It is important not to infringe on the rights of other people, surpress freedom of speech, or limit their knowledge. Therefore, I support her sentiment. If materials are thought to be innnapropriate for children ,or others for that matter, then censorship needs to be set up in the home by the parents, not by a public institution. America was founded upon the need for freedom: freedom of speech, of religion, and press. If we start to change that or limit what press a library can or cannot have, we are destroying a nation's core values. Can we turn our back on what our forefathers knew we had the right to? Furthermore, if we start to take a few 'offensive' books off the shelf, where do we draw the line? Anybody can claim almost any book is 'offensive' in some way, shape, or form, that does not mean we should immeadiatly take it off the shelf of an important public institution. If you do not want to take my word for it, look back at histroy. What kind of civilization was @LOCATION1? Not one you would want to live in I suppose. Hardly anyone would, and one of the things they controlled most was personal freedom. They started it off with the seemingly small act of censoring books. First, it was just viewed as unsavory to have a book they deemed offensive, in this case it was the works of @CAPS1, @CAPS2-@CAPS3, or @CAPS4 authors. Later on they started to burn theese books, and punish people for having them in thier possesion. If we are to live in a country, where a man has the rights he should have, then we cannot censor library books. This seemingly harmless act could have much greater consequnces than foreseen. Many families have different values they want to pass on to their children, morals they hope to teach them. The problem is, is that each families' limits and values are unique; We cannot just assume anything about families in general. I personally know a family that is very protective over what their children read, watch or listen to. On the other hand, I am aquainted with a family who allows their children more freedom to choose what they read. What one set of parents want to limit their child from reading @MONTH1 vary from another set of parents. If they find material they do not want their children to read, then they should censor in the home. They could start with a disscusion about why the material is inapropriate, and give the child the responsibility to obey their parents. It helps the parents become more involved in their childrens' lives and it aids the children in personal growth with responsiblity and respect. In the end, it all boils down to freedom. Do we want to live in a counrty with freedom of press and the right to publicly access it. My answer is yes, and I belive it is the answer of my fellow @CAPS5 too. We cannot clearly draw the line between 'offensive' and 'okay' because we are all different. Therefore we cannot bring our opinions down on the public instituion, but the home. It is not right to limit a whole society on what they have public access to because of one opinion." 5 5 5 4 4 4 +4045 2 "Most people consider libraries an unharmful place. However it's often found that some libraries have offensive books as well as magazines on it's shelves. Kids that are interested in reading can't be looking for a book and pick up a @CAPS1 novel with a nude lady on the cover. I do believe libraries need to have some sort of censorship on not only their shelves but computers and movies as well. Let me further explain to you the reasons why libraries should have such boundaries. A library is a place to get away and explore your mind in a fascinating way; by reading books! Now would you want to be looking for one of your favorite books and find an offensive image? Nudity, cursing, and drugs are all offensive images I have seen in a library. It's not appealing to see an article about some sort of alcohol when its sitting right next to a kid's magazine. What kind of message are we trying to send to them? That it's ok to get drunk or have sex and read the magic school bus? I think there needs to be some kind of organization set up to go around and help censor libraries. Since the media controls the internet and most of the magazines, I think it would be a great idea to dispose of that in our libraries. Libraries are a reading playground for not only our children but friends and family as well. We don't want our kids getting the wrong message when they go check a book out and pick out an autobiography on @PERSON1. Censorship does need to occur in our libraries and I believe it should happen soon. I'm not saying go and wipe out all the books you have already purchased at sometime because that's already in the past. No matter where you are you cannot escape offensive gestures; but please let's keep it out of the library." 3 3 3 4 4 4 +4046 2 "Do you want your children to have bad images in their head? Does everybody deserve to read or watch anything they want? I believe strongly that these materials should be removed from libraries in most cases. Offensive materials have no business being in libraries. These materials are not good for children, offend people, and do not look good on the libraries that carry them. First, I believe there is absolutely no reason for any child to see explicit material. This material can create a very ambitious young child. If a child sees a magazine containing pornography, the child will think that this material is acceptable. The truth is, that child should not know about anything of this subject until he or she receives approval from his/her parents. I know from experience that most parents would not want one of their children to see any of this material for a very extensive time. I have had a few disturbing experiences myself. One time when I was a young lad, I checked out a horror movie from the local library not knowing what the movie was about. I made sure my parents were not home when I watched it. After about three minutes, I was terrified. The images from the film stayed in my head for a good month. Children do not deserve the feeling of fear for that long of a time. Next, some material in the library contain certain things that offend random people. Large public libraries contain music with explicit lyrics. We, as a society, do not want our youth to hear the nasty words in some of the rap songs that are released. In addition to that, this music offends many adults as well. Adults agree that there is no reason for any rap to be released in a public place like a library. Music is a very great art, but when certain people abuse it, it no longer has a good image. I have observed that children listening to rap at a very young age are more likely to end up turning out to be an unsuccessful individual. Also, some specific magazines contain images that are offensive to the people of our society. This idea relates to my first idea, but I will speak some of it again. Images like blood can sometimes offend the people of our generation. We do not need any of this. If offensive material was banned from libraries, our society would have eliminated one more problem that is taking away from our good world. I have been offended of some different magazine pictures before. Someday when I have kids, I will never let them go to certain sections of the library with this material. Last, I want to address the fact that specific libraries can carry a bad reputation if they carry this material. In addition, employees will definitely go to a different library without the bad music and the violent movies. Most of the adults that want their children to be successful and have a good, creative mind will think twice about going to the library without censorship of certain items. I have read that libraries with bad material are much less likely to attract customers than libraries with censorship. I know that if I was the manager of a public library, I would make sure that any items that have the potential to offend people would be immediately removed. A library should definitely not want that bad gossip to go around town about how bad that specific library is. Censorship is as necessary to libraries as flavor is to food. Shelves that contain inappropriate books, magazines, and music will only make their number of customers drop. If you think that this is only going to help libraries, I dare you to go ahead and try it out. Everyone has their own opinions, but I am a firm believer in censorship at public and private libraries. Inappropriate books, magazines, and music will only destroy the good reputation that a library @MONTH1 have. A library is a great place to be, but the libraries without censorship are an utter disappointment. After all, it is your life, and you get to choose the way you want your children to act. Disturbing materials are only going to bring a negative effect on these minors. I hope to see the amount of censorship rise in libraries. If it does, people will see a dramatic change in all of my ideas discussed." 4 4 4 4 4 4 +4047 2 "As the Katherine Paterson's quote states everyone in fact has the right to take books, movies, magazines and other items off the shelves if deemed offensive or inappropriate. However this should be their decision and only their's; not other parents rallying together to get their desired results; the removal of certain books. In todays times so much is viewed as offensive or inappropriate that wasn't when the previous generations read them. When parents read these things today they feel these items are inappropriate versus when they were teenagers they felt it was appropriate. Of course in todays technological age kids can lay their hands on just about anything if they know how to. So, if parents begin censoring items there is one incentive or reason for them to read or listen to it; and disobey parents. They also get receive an unconventional or unintended education. So if parents censor the kids have been given a multitude of reasons to go against their parents wishes and read or listen to it anyway. So that is why parents shouldn't censor what their kids read, listen to, or see because eventually they will see it. Do you want that?" 3 3 3 3 3 3 +4048 2 "The topic of library censoring has been increasing over the past few years. It has been discussed by many people, but a decision has never been reached. I say that there should be no library censoring. I would not have found my love for reading if libraries were censored like they are. I think that there should be no censoring of libraries. It would impair our basic rights. Such as our right to freedom of expression. And our right freedom to the press.We would no longer live in a free country but a totalterrian state. Though if they would put an age restriction on certian things that @MONTH1 please the debators. I think that many would agree to this if it was proposed . Thus, if we did this children would only be able to read or listen to materials apporiate for their age. Though it is the parents who should censor what the children read and listen to not the libraries. It's the parents who introducee the children to music, magazines, and books. If the parents started to censor these materials early on this debate would not be going on as it is. The topic of library censoring has been discussed and debated at increasing rates over that past years. Some want to censor our libraries though that is not the best choice. @PERSON1 said 'that if we have the right to censor libraries then thier will be no more books for any of us." 3 3 3 3 4 3 +4049 2 "I do not believe that such things as book, music, movies, magazines,etc., should be removed from libraries. First, books can be used as monumental learning sources for kids, teenagers, and adults. Just because a book talks about the @CAPS1 and @CAPS9 dying @MONTH1 be a little inappropriate for some age groups but not for teenagers and adults. Also books give a message about how times use to be. Take a book that refers to slavery and what they use to call black @CAPS9 back then. Just because it has some words that are frowned upon does not mean that kids and @CAPS9 shouldn't know about it and where it came from so they won't go around affending @CAPS9 and they don't even know what the word means. Next, movies now some movies shouldn't be played for certain age groups and I understand that, but movies like @CAPS2 and To @CAPS3 a @CAPS4 @CAPS5 are teaching us our @ORGANIZATION1 and how far we've come from being segregated and the disrespect of each others race. Also movies gives a more visual way of what things were like so we can kind of get a interactive way on how things look like and how you can relate the book to the movie. Movies also make points, some state if we don't do anything about pollution this is whats going to happen. So movies are definetly a stay on my list. In addition, a big factor of @CAPS6 and @ORGANIZATION1 is music. I could see how some music could be bad but also some artist talk about how it really is tough where they come from and how music is a get away for them. Plus, music isn't hurting anybody. We learn how music was in the @DATE1 and compare it to music now. We also learn how music evolves from one thing to another, kind of creating off of itself. Music has the power to say things and communicate with @CAPS9 and make statements that could only be made by music. For example, take somebody giving a speech about what they feel or what they think. Now take that speech put it in a song form and I guarantee that more @CAPS9 capture the message and take it into there grasp on how they could help the cause. Especially if it is by their favorite artist. Say your favorite artist is @CAPS7 @PERSON1, now wouldn't you rather listen to @CAPS7 @PERSON1 make a statement about life or a political view rather than a song like that by @ORGANIZATION2. So music is most definetly staying on the list because it has the power to move @CAPS9, make you feel different ways, and look at things you've never seen in away before. Last, magazines, some Magazines are just inappropriate. Now I'm pretty sure that you will not be seing those magazines on shelves of a library so nobody should be worried about that. Now some magazines like @CAPS9 and @CAPS10 @CAPS11 are just there for fun and they are not hurting anybody because its just pictures and honestly no child would read the words of a interview with a famous person. So magazines are harmless to in a library and are only there to stay up on current events and to inform @CAPS9 on if a new discovery was made or whats going on in the @ORGANIZATION1. In conclusion, I do not believe that things such as books, music, movies, and magazines should be removed from library shelves anywhere." 4 3 4 3 3 3 +4050 2 "Somethings on the shelfs in books stores and other places can be very offensive. I think having cuss words in music and sexualy things can be offensive to women. I do listen to some music but noting like that becasue I think it should not be in music and books. One day I Think the @CAPS1.S.A will be ran by a woman. @CAPS3 is noting wrong with that. Woman have the same rights as @CAPS2 do. @CAPS3 is some people that think woman are just @CAPS3 slaves, that is dead wrong. Woman and @CAPS2 are the same no matter what people say. Katherine Paterson as the right idea though. It would be great if the law would state that if you think something is offensive you should be able to take it off the shelf and throw it away, but some people would say other because @CAPS3 is some people out @CAPS3 who just care about them selfs and acted what ever way they want to so they can act or make them selfs feel better than they are. @CAPS3 are some kids who like to look and go though magazines and see all that bad thing they think that those people are cool so they teaches them how to acted and do bad things, That it why i think we should be able to take it off the shelfs @CAPS3 was this one day I was in @CAPS4-mart just looking around and I saw a magazines with some movie star holding her three kids. The title of the magazine was superstar. It really hurt to see those three kids on the cover becasue one day they @MONTH1 not be like @CAPS3 parents and have all the money in the world. It @MONTH1 seem really stupid these days that some people would care this much, I really think deep down that its life and we all need to get over our selfs becasue we can not all be right and have all the same feelings for life. All my life I have thought about this subject cause it seems like now days its all about the money, what @CAPS3 wear and what type of car or truck they drive. It seems really stupid but when i see someone who drives a new car worth @MONEY1 it really makes me think about how someone as the money for this car and everything else." 2 2 2 3 2 3 +4051 2 "Libraries. What things are found in libraries? Well libraries contain more then just books. They can have music, movies, magazines, books, and much more. All of the things are not for just one particular age. Libraries have things for people of all ages, even though some do not like many of the materials found in them. The library in my town has certin place for chilrden, teens, adults, and for @CAPS1-rated thing. Not all people agree with what should be aloud in a public area. Libraries try to make everyone that comes find something that might be intersting to them. Even though some of the things they chose might be different then what the public expects. When I go to the library I think I would mind is i saw some @CAPS1-rated thing. Even though I think everyone should have the freedom to read, watch, listen, and hear about what they want. I think making areas where children can't go is a good way of letting people get what they want to get and not exposing it to younger people. Haveing these areas would help parents and childern feel alot better about what they would hear or see at a library. What can be done about this problem? Even though it @MONTH1 cost more or be to dificult for an ower of a library to do, I think that building rooms for different age groups would be an good thing to do. If smaller children see thing such as violace, durgs, and sex, they @MONTH1 think that it is ok to do. Most parents try and keep there kids away for those parts of library but don't always sucide. So there for I think that building rooms for these area is the right thing to do. Even though we all think different things should or shoulden't be seen in public, we can't stop them from being there. We could try to contain them to where only people that would like to see them do. It would just cost a little more money then some are willing to spend, but if you think of when you were a child would you of liked to see some of those things? If u ever have kids whould you like for them to see it? I would hope not. So try and make the better choic when u find unupropret things for unger viewers." 3 4 3 3 3 3 +4052 2 "As Katherine Paterson said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' I think we all can agree with @CAPS2. We have all read something that we did not necessarily want to finish or that we wish we had not read. I, however, believe that these materials should not be taken off of the shelves and be put out of reach of our youth, or adults. When you take away materials that some people use to learn, you take away their ability to learn. Yes, they @MONTH1 choose another book and learn from it too but it should not be our choice to dictate what they can and can not read.Take for example the popular internet video clip, '@CAPS1 guys one hammer.' @CAPS2 is a video of two guys beating a homeless man to death with a hammer and screwdriver. I have never seen @CAPS2 movie and listening to my friends talk about it, I do not want to. @CAPS2 seems like a gruesome and horrific video clip that would scar me for life, but it is a perfect example for @CAPS2 because what some do not want to learn from, others can. I would never watch @CAPS2 or anything like @CAPS2 but my friends who have watched @CAPS2 have learned something. That is that you should be successful in life because if you are homeless then you could be beaten to death by some teenagers who are looking to have some 'fun.' I kid you not, after hearing about @CAPS2 sad video it has inspired me to be a successful person and not become homeless. @CAPS2 brings us back to the main point - had someone said, 'No, @CAPS2 video can not be on the internet.' none of my friends would have seen @CAPS2 or told me about it. Therefore I would not be driven to be a good student and a good person. Then, when I was older I would have become homeless and would have had the chance to be the star in one of these videos. You can be sure that that is not something that I would want to be.In conclusion, I believe we should not interfere with some people's right to learn. We should not take away materials that can be used to learn no matter how bad we think they are, because you never know, one man's pain is another man's learning tool. If we all took away the materials that we felt were innappropriate or needed censorship then we would have very few learning materials left. As Katherine Paterson said, '...then we have no books left on the shelf for any of us.'" 3 4 3 4 4 4 +4053 2 "Coming from a teenager, @CAPS1 offensive books, magazines and movies should be removed from a local library. A library is a place to go relax and read. Most books and movies are filled with sex,gang violence, and drugs. In my generation sex, durgs and, gang violence seem to be high at risk everywhere. Books are suppose to be about learning. Offensive books and movies set bad habit on younger children.These are the reasons offensive books movies and also magazine should be removed from our local libraries. Sex, gang violence, and drugs seem to appear everywhere in my generation. Whenever you open your magazine you find different topics, but they all deal with either sex, drugs, or violence. Children should never be exposed to that type of offensive behavor. You should be able to open a magazine and learn somthing brand new. Books are good for reseach paper and other school project, but sometimes you cant find what you are looking for because of other topics. Reason you cant find what your looking for is because every book or magazine you look threw is covred with the topic you dont want. As a teenager each book I look at its always about sex or gang violence. If younger children, countiued to read about bad topics, it will create a bad habit on that child. They say you are involved with what you read. Bad habit could lead to many things, such as killing, smoking , and pregnacy's. Thats why all parents should have guidence over there children. Being who I am , there should never be any offensive books, movies, and magazine in a local library. Offensive books and movies can cause many problems. It drive children where they sont need to be, and you wont be able to learn if you have to many bad habit. there should only be book and movies where you a re able to learn something in your local library." 4 3 4 3 3 3 +4054 2 "The @CAPS1, I read an intresting @CAPS2 the other day by Katherine Paterson an author. The @CAPS2 said 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- the work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I believe that people should not have the right to take matieral such as books, music, movies, magazines, etc. of the shelf of a library, or anywhere else those items are displayed. So I agree %@NUM1 with Paterson because people have their own opions. Some stuff @MONTH1 be more offensive than others to different people. I have observed people, and were all different so why should our thoughts be to? The answer is yes they should be different. But it is pretty simple if you find a book, song, movie, or magazine that you find offensive or distasteful then put it back another person might find it intresting. I want to know the thoughts of my fellow citizens about what Paterson has said. I am asking for your help to do so. I would like you to put the @CAPS2 in The @CAPS1 and hear what people have to say about it. Thank You for accepting my @CAPS4. @PERSON2" 3 2 3 3 3 3 +4055 2 "Most of us have had times when we are really into a book or magazine that we are reading, and all of a sudden we come across vulgar language, pictures, or activities that are not suitable for us. Why did the author have to throw this in the book? Why didn't the back of the book tell me that there was offensive behavior in this book? Why is this magazine in the library with risky pictures? It @MONTH1 even make some people not interested in that specific author anymore, or quite possibly persuade someone to stop visiting that library. Certain materials in libraries should be removed. The first reason certain materials in libraries should be removed is because it is not suitable for children or even young teenagers. Let's say your child is at the library and they pick up a random book to check it out. Turns out, the summary of the story on the back is actually about college kids partying and participating in illegal activities. Your child on the other hand, does not read the summary and just wants the book based on the moral of the story, interesting cover, and critic reviews. If your child reads that book with vulgar language and illegal activities, you are most likely going to be upset. The second reason certain materials in libraries should be removed is because the books and other materials with offensive material can be placed in book stores, instead of the public library. In that case, parents can feel more content with having their children read any material at the library. Adults and older teenagers can still have their material choice, they will just have to take a trip to the bookstore to find what they need. They @MONTH1 not get to check out items for free like at the library, but it will be safer for the children and young teenagers. Not to mention, the people who respect their morals too much to read offensive material. The third reason certain materials in libraries should be removed is because the library should be ordered to state on the back of the book, magazine, movies, etc., in any way they choose, if the book contains anything that @MONTH1 be taken as offensive to a reader. That way, if someone is questioning the summary of the book, a risky title, or cover illustration, they can flip to the back to see if it will be tolerable for them. Libraries should remove certain materials from the shelves. It will create a more civil trip to the library. No more worries about accidentely coming upon a sentence or chapter in a book that is against someone's morals. Or flipping through pages in a magzine and seeing a picture that offends you. Libraries will contain safe books for all ages, while bookstores can have the pleasure of having offensive material on their shelves. It's a win win situation." 4 4 4 4 4 4 +4056 2 "Should books that seem offensive to you be put off of the selves? I know that most people who agree that it would 'better' our kids if the didn't read or listen to certain things. But, what would happen if everything that we thought was wrong was taken off of the self? I do not think that we have any right to take a book off of shelves because of it contens. If I look at a certain book and think, '@CAPS1 book is offending me and my beleives,' then I should just not read the book. Just becauseit is offensive to me doesn't mean it will offened someone else. Every book that has ever been written has effect someone, either in a good way or a bad way. Does that mean they have the right to say, 'take them off the shelves?' I remember when I was in second grade, there was these girl in my class who's mother came in to complain about my teacher playing gospel music while we worked. The parent was extremly engery at the teacher and, at that time, I didn't know why.Now I realize that it was because they didn't believe in what the lyrics in the song were saying. The teacher never played the music in class again and was to afraid to play anyother type of music. Since everyones views are different, by the time every person took off the books that offended them, there would be no books left. As Katherine Paterson put it, 'But if I have the right to remove that book form the shelf-that work I abhor-then you also have exactly that same right and so does everyone else. And then we have no books left on the shelf for any of us.' In conclusion, I strongly think that books, weather they offended someone or not, should be kept of the selves. Taking the book off wouldn't accomplish anything to begin with." 3 3 3 3 3 3 +4057 2 "I think that we should have offensive materials on the shelfs in libraries. People have their own ideas and opinions about offensive material like @CAPS1 shouldnt be around in libraries for children to read or we should have offensive material because @CAPS1 might help someone one day. Some times when people think of offensive material they think of bad and not good for people to read or watch because @CAPS1's not treating people right. Then also some offensive material like videos or movie can be very fun and make the movie great to watch. Today im hear to tell that offensive material can help students in high school research for a project, @CAPS1 can also show us how offensive materials were back in the old days, and @CAPS1 can also teach us more about offensive material. Today in are generation we do alot of studing or projects for school, we do this so we know more about the subject. As a high school student i would research the topic about offensive material. Why would you ask i do this? Because of researching this offensive material you can learn more about @CAPS1. Like where did @CAPS1 come from, why people are offensive, you could probably find out more than what you know and thats a good thing finding out what you dont know. So if we take away the offensive material we would never get to learn more about @CAPS1 or know where @CAPS1 came from. Its good to still have have books that are offensive material because you get educated not to be offensive. Going to a library is fun and exciteding because you get to read all these books. Well when you choose a book you can choose the most recent one or the one back from the old days. In are case we have offensive material on the shelfs in libraries. Lets just say here you went to the library today and you wanted to research a paper on offensive material from the old days. Well in the library they will have generations of books on offensive material. This provides us of offensive material back in the old days. So the library is a good thing to have that because we need to know about what happend back in the old days. Everyone one goes to a library to learn more about what they like to do or read a really good book. Well i know alot of people that would love to learn more about offensive material. Offensive material to people is like a good book you can read @CAPS1 and learn more about. Some people think learning to much is a bad thing exspecially when @CAPS1 is on offensive material. Learning to much is not even a discusion because people can learn whatever they want to. If the libraries take away the offensive material @CAPS1 is just like talking a good book from you. People can think what they want to think about offensive material. Like i said before if libraries take away offensive material book, its like taking away a good book from a reader. People do need to learn about offensive material thats why we still have the books. If we didnt want to know about offensive material why did they publish all the books and videos about @CAPS1. This is why i think we should have offensive material on the shelfs in libraries" 3 3 3 3 3 3 +4058 2 "To who it @MONTH1 concern: @CAPS1 you take away books because someone might find them offensive? Do you believe racism is a part of liturature? Libraries are considering removing books, music, movies, magazines, etc. from their inventory for censorship. They believe individuals might take offense to certain types of beliefs from the different variety of entertainment that they have in their library. These types of entertainment should not be aloud to be removed from public or private libraries. In many libraries, their inventory is being stripped for censorship. This means that books, magazines, movies and music is being removed because some individuals might find it offensive. Individuals might disagree with certain beliefs concerning their lifestyle and what they believe. Liturature can be described as art that an individual portrays it as in his/her own way. It has been in the world since man first learned to write to present day. This means it has been there wars, politics, art and slavery. All of these are a part of liturature, so liturature is history in it's own way. Some say offensive material should be taken out of libraries. they might think that it should be removed from everywhere. It should not. It is a part of history. @CAPS1 you take away an era of history just because you find it offensive? I know I wouldn't. It tells us what was happening at that certain time. It tells us what was happening in that part of the world. It tells us what the opinions were of people at that time. Many people believe racism is wrong, but we shouldn't believe that no one thought it was right. Many people thought is was right. They might believe white skin is superior over dark skin, but we should respect their beliefs in return that they respect our's. Liturature is important to society and how it works. Without it, we wouldnt be where we were today. Liturature should stay in the shelves of libraries where they belong. Personal opinions are a part of books, and we should respect that. @CAPS1 you want to be know for destroying an important part of history" 4 4 4 4 4 4 +4059 2 "Many people have different views and opinions on things. No opinion or view is right or wrong. Books, music, and movies of controversy shouldn't be removed from shelves because not everybody finds them offensive, people have the right to view them, and others can't make the desicion for everyone. Everybody is entitled to their own views and opinions, but they can't make others see things their way. If someone was at a library, and thought the '@CAPS1 @CAPS2' series were offensive, they might be the only ones to think that. They can't tell the library to remove them because they're uncomfortable with the books. Things go by majorty rule, and that person is not the majorty. They're the only one with the problem. Everyone has the right to view or listen to what they want, as long as it's legal. If someone finds a type of music that they find offensive, they can't tell the store to remove it. One person can't change everything to fit their needs. They would be making plenty of people unhappy if that type of music was removed. To make everyone happy, the person could just not listen it. There's a huge selection of music a person could listen to, without being uncomfortable. One person cannot make the desicions for everyone. The president doesn't even make the desicions by himself; he has the government helping him. If one person felt as if a magazine was inappropriate, they don't have the right to change it. They're not the one in charge so they can't be the one to change the magazine. It might be inapprpriate, but other people enjoy reading it. I believe that everyone's entitled to their own opinions and views, but they shouldn't make everyone see it their way. Books, music, movies, and magazines are few of the things that people try to control because they're uncomfortable with the subject inside the material. Some of the stuff is inappropriate or offensive, but one person can't change it. Not everybody will find it offensive, people have the right to view, watch, or listen to what they want, and one person can't make desicions for everyone" 4 4 4 4 4 4 +4060 2 "Should someones work catagorized as 'inappropiate' or 'offensive' be taken off of a shelf and not able to be sold or seen in stores? If you believe so, then do you think it is okay for the campaigners that run for @CAPS1 be able to express their thoughts and opinions on different topics? This is exactly what is being done when someone writes an article or a book that they have published to be distributed into stores or libraries. When someone writes a book on something, they usually have a lot of interest in whatever topic they are discussing. Just as when @CAPS2 campaigners present themselves to the public and announce what party they will be running for and what their beliefs and disbeliefs are. If it is okay for someone to take a book off of a shelf, or even a magazine because people think the book is 'inappropiate' then maybe we should reconsider what the campaigners say on live @CAPS3. Even if you were to walk into a store and there be nude magazines on the shelf, or cd's with lyrics that contain cuss words do you feel those should be taken off of shelves as well? There is a time and a place for where things like this should not be displayed. For example, when you go to a little kids store and things like this are being sat out for the kids to see, they will not forget what they saw or heard if referring to music. Kids have a great memory on things that should not be remembered. Like when they read a story and it includes someone robbing a bank, or a song that refers to drinking or doing some form of drug. When kids see or even hear things like this, they are more likely to try things that we would hope little kids would not try. When someone spends months or even years on writing a story, they hope that they can get it published and be rewarded for their long, hard work. By doing this they try and get it to be published, and put in stores so people can buy it. Whether or not if your talking about music, movies, or books, its all the same. Things should be put out on display and people should be able to see all the different types of music and stories that are available. If things were going to be taken off of shelves or not put out onto display, people will stop recording music, acting out movies, or even writing ad's and books. When and if this were to happen, people will not become educated with new available data. If there is nobody to write science books, or biography's then nobody will learn about new things. Same with music and movies, if people spend a few months or even a year writing a new album, or coming up with an idea for a movie and they work hard to get it done, they expect to get it out to the public. If its finally out and people have the chance to buy it, they hope it will stay available. If it doesn't and people think the movie is 'inappropiate' then the song writers and actors will more then likely not have the urge to do it all over again. In conclusion, I think that if someone writes something or records something that has taken them a good amount of work and time that they should be rewarded and allowed to have their item sold. If someone belives that an item is 'inappropiate' then they should keep their comments to themselves, and not have the item taken off display. There are some people out there that enjoy things that are not 'appropiate' and they think its funny. Surely if the write or producer got a book or movie produced they thought it was good, and they believe that people will buy their product. So, if the writer thinks this, surely there is someone out there that feels the same. How are we to know if there is someone out there that agrees, and enjoys the book or movie if it has been taken off of the shelf because someone thought the material was 'inappropiate.'" 5 4 5 4 4 4 +4061 2 "What if someone told you that you couldn't wear a yellow shirt because it was offensive? What if they said you couldn't look a certain way because you might offend somebody? Not just one person or group of people have the right to decide what is suitable and what is not. There are so many different religions and traditions throughout the @LOCATION2 it would be completely rediculous to set one standard for all people. If @CAPS1 aren't restricted when it comes to apperal, groceries, or automobiles, why should there be limits in the libraries? Libraries should not be censored because not only would censorship limit the resoursfulness of the libraries and smother the knowledge intake across the @LOCATION2, but it would also pose a threat to our future. When one takes a trip to the library, one would expect to find a book, magazine, and/or movie on just about anything. It would be extremely frustrating to find that a library, which is supposed to contain content on nearly every subject, does not have what your looking for. Say a book on the asassination of @PERSON1 is what you fancy, so you ask the librarian where you could find it. You would be dissapointed if she says they don't carry assassination books because they are too vulgar for young children. This could become very troubling and would limit the library's resources. Not only would censorship in libraries limit the content but it would also limit learning in the @LOCATION2 @CAPS2 are people supposed to stay informed if they are being sheilded from knowledge? Many people that do not have computers depend on the library. If they cannot get what they need at the library where would they go? The libraries would lose business and funding if they did not supply library-goers with the content which they desire. People would take their business elsewhere. Protests @MONTH1 break out and rebelious citizens @MONTH1 protest the censorship, causing an uproar in society. The people would not be the only thing out of hand. The censorship would surely get out of hand, aswell. @CAPS1 are already being censored through news stations, radio, and tv shows. Libraries are a place where infinant knowledge is realistic and that is comforting for many @CAPS1. In libraries people choose what they learn: they aren't forced teachers or parents. The censorship @MONTH1 start out as a small intervention, but it could turn our nation upside down. Next thing we know, our desisions could be influenced by the books that only 'they' decide are suitable. What kind of society would we have then? Individuality would be lost and opinions would be forgotten. Clearly, censorship in libraries is dangerous and unpredictable. If libraries were cencored, not only would knowledge in the @LOCATION2 desinegrate, but libraries would lose their respect and threaten the future of @LOCATION1. No one tells me what to wear or say, so why should anyone tell me what to read? We are all entitled to our own opinions and beliefs. Our @CAPS4 @CAPS5 earned us our freedoms, we can not let censorship take them away" 6 5 6 4 4 4 +4062 2 "@PERSON1 @NUM1 @DATE2, @DATE1 @CAPS1 @CAPS2 You should be able to read any book, listen to any music and watch any movie you want right? Well in some libraries that isn't always the case. Some people find books, music and movies offensive and not suitable for public libraries. In a public library I think that all books should be there to check out! The books might contain material that is more adult, but thats okay. For the books that are more inappropraite the library needs to offer an adult section. Just for the books that contain more adult material and are not suitable for younger readers. The person checking the book out should make the final decision if they think the book they have selected is right for them. Music in libraries should not be censorshiped. The lyrics might be inappropraite, but most teenagers listen to that type of music. For younger children they should not be able to check out a @CAPS3 that is more adult. In @CAPS1 opinion, for the music that is more adult you should be at least thirteen years old. Children under thirteen years of age should not have the option to check out that music. Some parents don't know what their child has checked out from the library. The child should have parent concent to check out any music if under the age requirement. I think that some movies should defenitely be removed if they are found offensive. Some movies have scenes that are horrible and that should be in the adult section. In a library you aren't expecting to find a movie that contains very adult material. At a movie rental store you would expect to find movies that are adult, but not in a public library. Movies for kids to check out should be educational, fun and most importantly, appropriate! Katherine Paterson says, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf' that is exactly right. I would not want @CAPS1 little cousin reading books with racial comments and just plain out inappropraite content for a child that age. Even if the child doesn't understand what all of the content means, they will ask questions that the parent is most likely not ready to answer. As children,they might get the wrong idea in their head and say things that are not right. In public libraries books should not be censored movies should be censored and music should not. It all comes down to what do you allow your children to read, watch and listen? Its a debate that has gone through several libraries over the content of the material. Now that you know @CAPS1 opinion on censorshiped, maybe others will consider this an important topic, too" 4 4 4 4 4 4 +4063 2 "Freedom of speech is a keen aspect in @LOCATION1 and thats what made our country flourish through many years. In the constitution it states that there is freedom of the press, which means that if something is written that might affend some people, then they have to deal with it. Some might say that some material is offensive, which sometimes it is. However I do not think that the books, magazines, etc. should be taken off the shelfs due to the feelings of another persons thoughts. In @LOCATION1 over the years things have become more exceptable in media and books. The rights have always been there but not fully practised. There have been book burnings, banned books, and even people being killed for there writings. For many years it went on until @LOCATION1 changed its way of thinking to a broader more open perepective. Though it still goes on I think that it is very closed minded. In some cases people blamed books that had nothing to do with killing someone, for the reason why they commited a murder.I do think there is a limit to how you distibute certain books and magazines. They shouldnt sell a book about death,poverty,or sex at a public school. We all have diffrent things we like to read and write about. So why shoud we be taken away from because somone thinks its to offensive. I think not, if you dont like it then put it down and let someone pick it up who will read it. With my own experience i have seen bad people do what is expected of them , bad things. And they try to blame it on a book, story, or @CAPS1 show they had seen. Thats just a easy way out of a situation. I have read and saw very intense things in my life but does that make me want to do bad things, no! I know i cant speak for everyone when I say that books, magazines etc. or not harmful. But think about it like this wouldn't sometimes the person reading the stories figure they could learn and embrace from it rather then go out and do what the character did in the story? Reading opens up new things and is scientificly proven to make you smarter in the long run. The more you read the more awareness and knowledge you gain ,and just becuase you read a book about something doesn't mean you support it. It could maybe mean that you want to learn about it so you can understand it more." 3 3 3 4 3 4 +4064 2 "Nowadays, children can look on the shelves of libraries and find any type of reading you can imagine. Some magazines, books, and movies that are age appropriate. Children can also reach up on those same shelves and find some very inappropriate magazines, books, and movies. Should we remove these inappropriate items? Can we somehow get kids to not see them? Children are very curious. They want to know about everything and they will ask as many questions as they can. When they see inappropriate items on library shelves, what do we do? Libraries shouldn't get rid of items that @MONTH1 be inappropriate for children. Instead, there should be a rating system on the books and magazines. Movies have ratings so children don't see things that are inappropriate; books should have those ratings too. If someone wants to check out something that isn't suitable for kids, then they can show the libraian their @CAPS1. Everybody can check out what is appropriate for their age. Libraries could even put all of the most inappropriate items in a separate section of the library. It could be a section that kids could not enter. Parents should also watch their kids to make sure they aren't getting into anything inappropriate. The only censorship they should put into libraries is rating the items by maturity. Children can look onto the shelves, but we should put labels on what they can and can't check out. Parents could look out for what their children are trying to read. I believe that's the most we can do." 3 3 3 4 4 4 +4065 2 "There are many libraries with many books, magzines,music, and movies. Some of the things in a library are inappropiate for children. So the library makes a section for the adult's and a section for the children. There should just be a children library and then make another library for the adult's. Then I also think that they should take the bad things of the shelf's at libraries. So there are children books and there adult books. In most libraries I seen that they either have and upstairs for the adult's and they have a downstairs for the kid's. They also have toy's down there for kids so if there parents want to go upstairs then the kids can sit there and play with the toy's. Then I also think that they should take off the bad things on the shelf's. Becuase wjat happens if a kid goes up with there mom or dad and opens a book and sees something very inappropiate? So they should be taken off the shelve's in a library, and if someone wants to buy them then will have to go online or to the store and buy them. The people that own the liobrary or are in the library should take all the bad magazines, music, books, and ect. off the shelf's. It is a very bad thing to have at a public place, and that should not be aloud. The public libraries should take all the inappropriate things of the shelf's" 3 3 3 3 3 3 +4066 2 "Libraries have books, magizines, movies, ect.The library is a wonderful place to read in a quite place.It can also be an offensive place to some people.They think they can complane and bikker about it, But should all those activities be removed from the library shelves? But whose oppenion is it anyways. If I found an offensive book, movie, or magizine on a shelf at a library I would just leave it. Apparently its not a bad thing because if it was they wouldnt have it on a shelf. So if I got offensive by it I wouldnt look at it or pick it up. I mean its that simple.A library is full of well, about everything you would enjoy. Many diffrent people like diffrent books and movies to read and watch, that means the library has a right to put what ever they @MONTH1 want. Even if it is offensive to some people. With my experences in a library nothing has came across to be offensive to me. Im a kind of person that dosen't care. However I have seeen so books ware the author is making fun of the @CAPS1 people. Also @CAPS2 seen a book ware the author is writting about the black people and how they used to be treated and some of the book has the @PERSON1 in it witch is a major racism to black people. It could be a unfair situation to some people that have kids with them and a inapropreate book is on the shelf and they see it. That could be offensive to the children and the parents .Or it could even be in a magizine. But why should the books magizines and ect.. be tooken off the shelfs when its not effensive to all people? If the libraians took all the offensive books off the shelves then there wouldn't be any left. Everyone has diffrent things that can offend them. If you dont like how the book is you can take it to your friend and they can read it or you can just turn it back into the library. You can also talk to the library manager and tell them the issue with the offensive it has given you. Books, movies, magizines and ect are all in a library. They could be offensive or not. If you think they are then dont look at it or read it. Its that simple get it or dont" 3 3 3 2 2 2 +4067 2 "If we remove all books we think should't be on the shelves. What would there be to read? So many books have great detail in them to give us a vivid picture about what we're reading. Even at times the books we think are alright to read end up having a surprise that no one saw coming. I don't think we should have to remove books, music, movies etc., just because they are found offensive to some people. Instead of removing the books others love to read, what we should do is rate the books like we do movies and music. Or put the books some people find offensive in there own area. If all books were rated like movies, we would know just what were buying or checking out. Movies are rated by the language and content they have in it. Books should be the same way. Or if someone was to find a book or magazine offensive they should be put in a different location with a labe identifing that they could be offenisve to others. I do not think they should just be removed and out of the way. I think having books that are too offensive should be put in there own bookshelves. By doing this, people would know not to let there childeren go near them because they have been labled. And like rated '@CAPS1' movies a minor needs to be with an adut. But with books you should be find with your own choice at the age of @NUM1. In my opinion this would be a great idea to be done and should be done. There's a bunch of books i can think of that would not be suitable for young childeren. Yet little kids love to read and could easily take a book off the shelf if they so pleased. Many parents complain about what thier childeren read, watch, or listen to everyday. Labing would be such a great way to control a bit of what they hear and see each day. I think many parents would agree with my opinion and stand by it. I'm not saying to throw away the offensive books, music, movies, etc., but to labe them so others know what they are going to read or see. I believe this would be an excellent way to make sure our childeren don't read the things we as parents wouldn't want them to read or check out" 4 4 4 3 3 3 +4068 2 "Dear Newspaper @CAPS1, I've recently finish reading a quote of the great author, Katherine Paterson, and her feelings towards the certain type of material use in books. For example some @CAPS1 @MONTH1 be offended be certain type of language used in books. Other @MONTH1 just feel the pictures are not quite approprite. With that being said, I believe that if there's a certain material presented in a book that you feel uncomfortable with, you should just pick up another book instead. My beliefe is that many authors feel like a book is a place where they can write their thoughts and beliefs about things that happen in this world. Authors shouldn't be denied the oppertunity to write a book just because of the way they express their feelings. @CAPS1 shouldn't be allow to give hateful opion just because they didn't like a book. As I see it no one is forcing them to read it. Now I'm not saying I'm a huge reading. As a matter of fact I barely read but when i do start reading I sometimes am eager to keep on reading. The way authors discribe things even with sometimes profanity is just amazing. You can actually feel that you're part of the book. Now then my point is that even though to many @CAPS1 a book @MONTH1 be horrible but to others it @MONTH1 be the best book in the world. So if you do start taking down books from the shelfs you would ended up with nothing but a huge, empty shelf. There's no book out there that is what we would consider, ' The perfect book.' @CAPS2 book can be given a nasty comment but then again @CAPS2 book can also be given the best comments. This world is to big to start picking and choosing. My beliefs won't be the same as yours but this is how i feel and this is how i will keep on feeling. So tell me, what's your belief then?" 3 3 3 3 3 3 +4069 2 "Have you ever went to a library and found that some books arn't really the best choice for younger kids to be reading? Well I am about to write a persuasive essay explaining what I think is best for younger children to be reading. I have went to multiple libraries and found that some books, magazines, and movies are way to extreme for kids to be reading/watching. I personaly think that children who arn't above @CAPS5 years old shouldn't be exposed of rated @CAPS1 or @CAPS2 @NUM1 books, movies, or magazines. Children shouldn't have to know what adult movies, books, or magazines should look like at the age @NUM2. What I think kids should watch or read are @CAPS2 movies and books. Some of you are probly like 'but it's not like there going to know what it means.' @CAPS4 if children don't know what something means then that deffinantly won't stop them from saying it. Children learn by hands on or watching other things. They will eventually ask what does this mean or mommy what does this word mean. No parent is ready to tell there child at the age of three what a four letter word means. If you are one of the few parents that don't know how to explain things to your child then thats when you can bring out the older books/movies. But don't let them read it on there own. Usually kids will start asking about more adult things when the hit the age @CAPS5 and up. Thats when you as a parents can start letting them read and watch older movies and books. Tweleve years old is still a pretty young age for a kid to be reading and watching older movies on there own. Thats when you as a parent can sit down next to them and explain what is going on. As a kid we look up to our parents. We learn from seeing what you guys do. That is the exact same thing as reading and watching movies that are way to extreme for us at the age of ten. At the age of sixteen then usually kids are fine on there own they know what to expect. They know what is happening and they know how to handel it. In conclusion I think that rated @CAPS1 books, magazines and movies should be kept above ages one-@CAPS5. I think that kids will be better off learning about things that they need to know by the time middle school starts. Then once they hit highschool they will already know about what becoming an adult is all about" 4 3 4 3 3 3 +4070 2 "Many books, movies, and magazines are made for the different age groups of adults and children. I do agree that certain books are not approperiate for some children. Is it right for some parents to ban books from schools and libraries? Authors create books and stories because they like the idea, and students can wright what we want on paper because it's what we want it's called freedom. Schools can try to be creative and have a way to only allow books to the approperate age groups. Books are a great part of a students learning. Parents need to learn, and understand no matter how much they don'@CAPS1 like it that they can'@CAPS1 protect their children from the world some day they will be moved out of the house supporting themselves. How would childern and teens even know how to live or what and how to react to hearing a bad word or watching sexual on @CAPS1.V. If students never know how will they live. Books can be learning in many ways. Some things a teenager might be experiencing a parent might not want to talk about with their child. Maybe the family can'@CAPS1 afford to buy a pass to the public library. So the only other option is the school library books. If students can'@CAPS1 have access to then whats the option for them? Everyone knows how today's society is changing, if a student wants to learn about sex or @ORGANIZATION1's they should be able to if the age is approprite. All libraries check out books so the book is under a name. I know at our school students just come in and take the books instead of checking them out, but some students do still use the card and check the book out. If schools had books that our for only a certain age group a soultion to getting the older students to check them out and only the right age could be the books are in a case that is locked up. So for the student to have the book unlocked and checked they have an electronic key to unlock books for the age group they are in. When the student unlocks the book and goes to check it out the computer knows what books that specific student can get. Books are very important to learning and all books need to stay and not get blocked by parents." 4 4 4 3 3 3 +4071 2 "Censorship in libraries? In my opinion I don't really care if books, movies, or magazines are censored. I'm not a person that does much reading but I do know of some books, magazines, and movies that are filled with perfanity. In my opinion that is just the authors way of how he or she wanted to do it. I believe that libraries should keep these type of materials on the shelves but have them in sections maybe. Taking them off the shelves would be disrespectful to the authors/producers. That is their work and they took the time to do it for our entertainment! Maybe you really dislike all the cursing in books and magazines and want them gone...Well listen, there are heeps and heeps of books out there you can find that are not bad! If you are more of the movie type of person but also do not like the cursing or nudity, there are plenty of movies out there that are very innocent! I hate when I sit down to watch a movie with the family and then all of sudden the actors start throwing around the @CAPS1 word and half naked women appear. But if we would simply read about the movie on the back of the case or ask about it then we would know to choose a different movie. One that is more family oriented and safe for children eyes. So just because there are some materials that are out there with all sorts of fowl language and indecent human behaviors doesn't mean you should ban them from the libraries. If some people want to fill their mind with filth, let them. But for you who do not, get other stuff. Simply try telling other people about better books they can read and nicer movies to watch. Be a role modle and teach them about healthier viewings" 4 3 4 4 3 4 +4072 2 "Censorship in today's libraries is a major issue. There are groups who both support and challenge these ideas of censoring books and other media from our children. Do you think it is right for someone else to decide what we can or can't read? Personally, I believe that we should be able to make our own choices when deciding if a book or movie is too indescent to read or not. We as human beings have the ability to make our own decisions. Everyday we are faced with hundreds of decisions; whether it be what outfit we are going to wear for the day, or what type of food we want to eat. In that sense, nobody can tell us that we can't do these things so why should they be allowed to tell us what we can or can't read? What @MONTH1 look vulgar to someone, might not look so offensive to another individual. Everybody has a different taste in media. That is why it is wrong for someone to make decisions on what to watch or read for someone else. What they think is wrong @MONTH1 be completely normal to the individual they are making the decison for. Censoring of media for kids should be the responsibility of the parents. If a parent does not want their child to be exposed to a certain element of media then that parent should not allow their child to see or read it. Everybody has their own opinion on things, that is what makes us human individuals. The ability to make and process decisons is one of the human races greatest talents. These descisions should never be left up to someone sitting in an office in @LOCATION1. When the government is making decisions that effect us that personally, do we still truly have freedom? When censorship of television comes into question I believe that this is the reason we have ratings. Theses ratings warn people of the content included, whether graphic or not. With these in place, there is no reason why we should completely remove shows or movies from the public. I believe that the same should be done for books. Books should be required to have an age appropriate rating on them. If you are under the age required to purchase or check-out a book, then you will be rejected and not able to get the book. Ratings worked with television and movies, so why can they not work for books to? In some cases, some media should be destroyed and hidden from public. Media that show racism towards any ethnicity or religion should be banned. By doing so, I believe the only effects this will have on society are positive ones. Censoring these types or movies, books, ect. can save a lot of people hurt or embarrassment. I believe that we should be allowed to choose which books, shows, or movies we read or watch. This includes all forms of media, excluding any media that provoke racism and hate against a group of people. The decisions we make should be influenced by a rating system put in place for all media. We as humans have the birth given right of making our own decisions. This right should never be taken away from us" 4 4 4 4 4 4 +4073 2 "I do not believe that people should be given the right to do that. Just like Katherine Paterson had said, if people did away with everything that offended them, there would not be any books left for any of us. Everyone has the choice whether they either want to read the book, or they do not. If they do not want to, then they do not have to. Just because one person does not like something does not mean that everybody else cannot either. Honestly, there are some people who take offense to everything, and if they do not like the book or whatever it @MONTH1 be, they do not have to read it. I find a lot of people to say things that offend me, but that does not mean that I have the right to make them stop talking. However, I do agree that there should be certain standards set for some of the books out there. Some books are too graphic for young children to read, and I think that one should have to be a certain age to be able to read them. But, I do not think that just because they are graphic that they should be taken off the shelves. Maybe the book gets a very delicate point across, like the book '@CAPS1', for example. In this book, a young girl is raped very harshly. But, the author did not write the book to tell everyone about her experience. She wrote the book to explain that no matter what happens, there is always something that can help. This book was a success story, and the graphic detail is there to show the agony the girl had went through. Some might find this offensive, but most think that it is uplifting to know that they are not the only ones who have had it happen to them. Books are not the only things that might offend some people. In certain department stores, there @MONTH1 be a movie that has a line in it that I take offensively. Does that give me the right to take it off of the shelf and demand that it be banned? No, and why might that be? Because I have a choice if I want to watch it or not. Another place is the @CAPS2. If you ask me, there are a lot more offensive things on the @CAPS2 then there are in books. Kids can get on the @CAPS2 and stumble across things that they definitely should not see, so does that mean we should ban the @CAPS2? No, because the @CAPS2 helps in a lot of ways too. If I wanted to, I could find offense in everything that is in a library. Books based on religion, or maybe a website based on a musician that had references to drugs in their lyrics. I would be mad if I came to the library to listen to music and someone had removed them from the computer. Maybe I do not like what they're listening to, but that does not mean I can do anything about it. So, my opinion is that books, or anything else for that matter, should not be banned because someone didn't like what it contained. Not everyone is going to like the same book, and that's why there is such a variety to choose from. Libraries should not be told which books they can and cannot lend out. After all, we are not forced to do anything. All of us are different and we like different things, but we should accept the tastes of others as well as our own" 4 4 4 4 4 4 +4074 2 "Books, music, and movies are being taken off of shelves around the globe, because they are found offensive. Books, movies, and music were created for a reason. It's a form of entertainment as well as to build knowledge. Artists, authors and publishers release their work to get information out and to let others hear their voice, it is their freedom of speech. Books, magazines, music, and movies should not be taken off of shelves if they are found offensive. Censorship in libraries just hides certain things from society. If all books on the @CAPS1 were banned and nobody could read them, nobody would be informed on the horrible event and it could easily be reincated. The majority of movies and books have relevant information, portray events that could take, or have taken, place, and teach valuable lessons. Artists and authors use their works to get points across to their audiences, whether it is a lesson or learning valubale or interesting information. People shouldn't be allowed to just take things off of shelves like they are doing. The material we read, music we listen to, and the movies we watch should be our decision to make. It shouldn't be decided upon by others wanting to take it off of shelves. If someone finds material offensive then they should take their own actions to benifit themselves such as, choosing not to expose themselves or their family to the material. Banning things from the public takes away opprotunity for people to engage in things that interest them. Some material could be banned for something as simple as one provocative word, sentence or even a thought. The book '@CAPS2 @CAPS3's @CAPS4' had multiple occurances of cursing, but the book told a true story of an event that can happen to anyone. It also indirectly included that families can be torn apart if you let them be, but the choice is yours and you can prevent it from happening. Small things like such as language should not cause the material to be taken off of shelves where people who appreciate it cannot obtain it. Katherine Paterson's quote is correct, if we can just take things off of shelves then there wouldn't be anything left for us. Most materials contain something that someone isn't going to agree with, but if we just keep getting rid of things then what is the point in making new material. There is always going to be the issue of finding offensive material, but nobody should have the right to ban it from everyone. Materials around the globe are being taken off of shelves due to offensive material, but they were created for a reason. Not only is it for entertainment, but it is also for knowledge too. Artists, authors, and publishers release their work to get information out to let others hear their voice, it is their freedom of speech." 4 4 4 4 4 4 +4075 2 "Did your child ever bring home a book? A piece of music, movie or magazine? Did you ever stop to think that the piece of information that your child was bringing home could be offensive to someone else? There are points in time where there isn't an answer to that question and you dont want to chose yes or no. The driving question is do you want to remove books, music, movies and magazines from the shelf, just because a parent thinks that its not fit for a child to be reading. Katherine Paterson said 'All of us can think of a book that we hope none of our children or any other children have taken off the shel. But if I have the right to remove that book from the shelf, that I work abhor, then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 point in this quotation is that if you take a book off the shelf everytime that someone doesnt think that its right for children to see, then there will be no books left to see. In agreement to Katherine, parents @MONTH1 want the best for their children, but there are reasons to why you should agree with the average parent and then there are reasons to why you shouldn't. There are books out amongst the world that only adults should see, and their are also books out there that are way too advance to be read by children. These books are all made for a reason and have there own purpose on why they are put there. Parents have to sit back and think of their children and then think of the rest of the world, its a big world and you cant just take things away from it. No matter how much you want to protect a child from the point of seeing the books that are meant for older age ranges, there isnt a way that you can stop it. I think that books are there for whatever reason they were written for. There is no reason that because one person doesn't agree with the way that someone has written that book, it should be taken off the shelf just for that child. Libraries cant just start taking books off the shelf for individual mothers that dont like this or dont like that. Many people come from many different areas and see things in a different perspective, they dont know the difference between right and wrong. It's a bigger world out there than you and me. When one person tries to stand against the world, they're going to get knocked down. So why fight when the world was meant to be at peace?" 3 3 3 4 4 4 +4076 2 "I don't think that censoring books and movies is needed in my opinion. Very many people are just too protective. They just need to calm themselves down and just face the facts. Eventually everybody will come in contact with almost everything that is mentioned in books at some point in there life. Life is unpredictable and anything can happen at any moment. You will probably end up reading the books that you are not supposed to anyway when you get older. The people that think there should be censorship on library books will most likely get there way at least in their community. I think that libraries should be organized in a way that when you walk in you know the section you want to be in. They should have the books for adults in one section, books for teenagers in a different section, and books for kids in another section of the library too. This would help the parents that go with their kids keep them in the right spot. This would also help in a way to find your book if you know what type of book it is. Another good thing that would help in a library are signs that catergorize the books. So if you walk in the teenager section and you are looking for a good mystery book. You just look at the top of the book case or at the ceiling where the signs are. This would help majorly for people that have never been in a library or don't know how to search for their book in a library. The next thing would be to have all the movies, magazines, and music in the categories of adult, kids, and teenagers too. They would be in the sections of the books but at the same time be seperated to where the signs in the section say movie and music. This way kids don't have to roam around to find a certain movie that they want and have to roam around in the adult section to find it. The movies and magazines don't have to be exactly in the categories of mystery and things like that because normally movies are more well known than books in our time period. A good thing that would keep little kids in the right section would be to color it with a lot of bright colors that will attract their attention. If a little kid goes into a section that is dull and boring they @MONTH1 just wander in the adult section and stumble across something that their parents don't want them to. The kids section could be lots of colors, the teenager section could be maybe one color, and the adult section could be the most dull of all of the colors. All of my ideas would work and keep all of the kids entertained. They also will take more of an interest in reading if they are interested by walking in a library. These are the only ideas that I have that would work well. There could be more things that would keep kids interested but only for a little bit" 3 4 3 4 3 4 +4077 2 "To remove or not to remove Should people be able to remove books that are offensive? I think so;it would help our kids and young adults, to read more educational books, rather than magazines and comics. To start off with everyone has their own opinion of what is offensive ,and whats not. personally I don't think that we should remove books, because their offensive; I think we should just not let that perticular person not put out anymore books. But it's like I said everyone has their own opinion. Secondly it's entirely up to the library where to place certien books with blood and gore,and if to have them or not. personally I like books with blood and gore; because it shows how the world auccualy is. It'snot like a book where you save the princess or damsel in destress. Lastly if parents are conerned about offensive books don't let your kids get those kind of books give them a boring book. I mean we know the books that kids are not supposed to read but parents let kids read them. In conclusion if you feel that a book is offensive do't pick it up, and don't have it taken off the shelf because there is always someone to disagree with yo" 3 3 3 3 3 3 +4078 2 "I do not believe that censorship in libraries is a good thing. For many reasons but to save sometime here are just a few of the reasons why I believe this, there would be no books left for anyone to read, if certain books where taken off the shelf we would not have the knowledge from them, and our kids would not know what other people can think of. At the end of this essay one might understand the advandages and disadvantages to censorship in libraries. @CAPS6 many books would be gone? If we all took off one book that we found offensive then our children and other children would not be able to read. Taking off one offensive book per person leaves no books left in a library. What one person @MONTH1 find offensive another person could find rather enjoyable. Some of my friends think that '@CAPS1' is an offensive novel but I found the book to be rather enjoyable. On the other hand we also have to understand that there are somethings that just shouldn't be put out in public. @CAPS6 would we get as much knowledge as we have? Without all the books that are in our libraries @CAPS6 would people get the knowledge to make great discoveries in science, history, and electronics? People would be lost if we didn't have our books. The books give people great knowledge and a great place to learn @CAPS6 to do things. I myself have learned @CAPS6 to become a successful @CAPS2 novel @CAPS3 from the @CAPS4 I took out of 'A @CAPS2 @CAPS3's @CAPS4 for @CAPS5.' @CAPS6 would the ideas of other people be heard around the world without books in our libraries? Those books that are offensive can also be of great use when doing a research paper or just trying to find something to talk about with friends at school or work. Without the books that we have in the library people would not be able to understand what other people thought about certain ideas on politics and other issues in daily life. The books help people come up with ideas to create things and be createative in everything they do. The ideas that one person expresses in their writing is a great place to find a spark of imagination when a person needs something to keep their mind off of personal issues. Life without books? Censorship is a good and bad thing in libraries, I myself on one hand do not find it appropraite but on the other hand it can be taken to a whole different perspective. People who want to use it don't understand that other people could take the books off the shelf that they, themselves like to read in their spare time, nor do they understand all the knowledge that we gain from books even if they are fiction, and lastly without the books that we have no one would know what someone in a different park of the world was thinking. Foremost people who want cenorship in libraries don't understand what would happen if we had the power to all take one book off the shelf. One could understand both sides of the coin here but we need to step back and think about what life would be like without our books." 4 4 4 4 4 4 +4079 2 "There are many books, music, movies, and magezines in the world. Some are humorous, historic, or romantic, however some are offensive in some way. People @MONTH1 get offended when they read or listen to certain things, but does that mean that those things should be removed from the shelf? Some people @MONTH1 find something offensive while another person does not, therefore the music, books, movies, or magazines should not be removed from the shelves. If a person thinks that a song should be removed from the shelf and it does get removed, what about the person who did not find it offensive? People are intitled to their own thoughts and feelings, however that doesn't mean that one person's feelings are better than someone else's. If everyone tried to make everyone happy then there wouldn't be a lot of options to chose from in the library. If one person finds something offensive in a book, another person might find another book that is offensive, and it goes on until there aren't any books left. With entertainment it is hard to please everyone. No matter what it is there will always be at least one person who doesn't like it. This, however, does not mean that it should be removed from shelves. If one person does find it offensive then there is most likely someone else who doesn't. The people who don't find something offensive want to be satisfied, too. It is impossible to please everyone, so what should be done? If someone finds something offensive, they shouldn't read or listen to it. People can chose to quit listening to a song, quit watching a movie, or quit reading a book or magazine that they @MONTH1 find offensive. They have the right and freedom to not pay any attention to it. This way the person who isn't offened can still enjoy their choices of entertainment at the library. If I find something offensive I try not to pay attention to it. There are many books or songs that I do find offensive, so I just avoid those. By avoiding these books or songs I don't offend anyone else by taking away something that they might enjoy. I still am satisfied and so are they. The library workers know what they are doing. If the library takes away a book because some people find it offensive then they might be offending those people who didn't find it offensive by basically saying that their morals are better than yours. A library should take a book or magazine out if it feels necessary, but not to please certain customers becuase then they aren't pleasing the other customers and could offend them. People have the right to voice there feelings but that doesn't mean that they are always right and that certain things should be changed because of them. It is impossible to make everyone completely satsified but there are compromises. The libraries shouldn't remove things off their shelves but should give more options that won't be offensive, and people should avoid the things that they find offensive" 4 4 4 4 4 4 +4080 2 "Libraries have always been an outstanding source for information. Among the myriad of resourceful materials provided by libraries are book, movies, and magazines. Recently, the debate over whether libraries should censor offensive materials has caused quite a stir. Many parents argue that they don't want their children to be exposed to explicit materials, especially books, exhibited in public libraries. Others have retorted to this statement by saying that if every book that is viewed as offensive is taken off the shelves, the shelves would be nearly empty. Author Katherine Paterson stated, ' All of us can think of book that we hope none of our children have taken off the shelf-that work i abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us' (Katherine Paterson). Books that are offensive should not be removed from libraries for the simple reason that they are still one of the most reliable sources for information and historical events, and, without books, society would suffer. The most important reason as to why people shouldn't be allowed to remove offensive books from shelves is that if every person was allowed to remove a book that he/she found offensive, there wouldn't be many books remaining on the libraries' shelves. There are many historical works that contain offensive images and content, but people have to overlook this because these books are accounts of our history. Without them, society would forget about the past events that shaped and molded our world into the world it is today. Another important reason why library censhorship is wrong is that material that one person @MONTH1 find to be offensive @MONTH1 not be ofensive to another. Every person has his/her own view on certain matters and events. For this reason, the censorship of a certain book shouldn't come down to the opinion of one individual. Rather, the decision to take a certain book off of library shelves should come from the opinions of a large group of individuals. By doing so, a fair representation of @CAPS1, most books are meant to tell either fictional stories or historical events that aren't meant to offend anyone. Fictional books are meant to fill the mind of whoever reads them with tales and mental images of a story created by the author. Also, historical books are meant to capture the events of our past so that people @MONTH1 be able to look back on these events both now and in the future. In all, the idea of censoring libraries is a negative proposal. Books were meant to provide historical accounts and fictional stories to enrigh the minds of readers, not poison them with bad content. Everyone has their own views, which is why people should learn to respect the views of different books no matter how offensive the material @MONTH1 be to them" 4 3 4 4 4 4 +4081 2 "Do believe that any boook or form of literature should be removed from a library just because someone takes it into offense? No, it should not be removed. That person should clearly just not read the book or let their children read the book. They have a problem with the book, not everyone else if the book was good enough to be published that means someone wants to read the book which means they would make others who want the book upset over their own opinion. In the words of Katherine Paterson, a famous author, she says,'All o fus can think of a book that we hope none of uor children or any children have taken off the shelf. But i fI have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 she means by that is everyone has their own opinion on every piece of material that hits stores and libraries. If we shall let everyone choose to take these materials off the shelf then we might as well have no books, music, movies, magazines, etc at all because someone somewhere will always not like the material. If someone finds something offensive they should simply stay away from it. Everyone has their own view of everythings they come across which means if you hate something, your neighbor might love it. So simply because the boo or other form of material offend you that doesn't mean that its worth taking off the shelves of libraries and book stores. Don't get me wrong I believe in some forms of censorship. I just don't believe in people taking their opinion and choosing whether a certain piece of literature or music can be in our libraries. I just believe that our libraries are a place where authors can express themselves and share their book, novels, poems, etc. I believe that if something is offensive to you that's your opinion and there's an easier way to not hav eyour children read the than getting the book removed, just don't bring the book to your children stay away from the book as much as possible. If you @MONTH1 come across it just don't acknowledge it. Your children are more at risk of being in a carcrash then reading a nonapropriate book only if you teach them correctly, not to sound harsh but to shine reality on the fact. That is why I do not believe in censorship in libraries nor bookstores" 4 3 4 3 4 3 +4082 2 "Dear sir or mam, Have you or someone in your family ever read a book, magazine, or watched a movie that was taken to be offensive? Do you or that person think that it would make a difference if that one book, book or movie was removed from the shelves? Would removing every book, cd, movie or magazine from shelves that were to have a great or small amount of racism, violence, bad language and other inappropriate things be helping the community? Do you believe that its everyone's decision whether or not those things should be removed from the shelves? I believe that alot of people in our community have read a book in their lifetime that they considered to be the slightest bit offensive to them. I bet people all over the world have read offensive books. But the only types of people that those books, movies or magazines would affect would be teenagers and kids. But at the time they wouldn't see it as offensive, they would think that it was cool and interesting and they would want to read or watch it over and over again until they were to get bored of it then they would gone back the library and get another one. I think in a way it would and would not make a difference whether or not they were removed from the shelves. Because if only that one book, movie or magazine was removed from the shelves then the person that got it removed would move on from that book,magazine or movie and find plenty more of them that would be more or equally offensive. If every people were to remove every book that they were to find offensive then other people who would enjoy them that certain thing wouldn't beable to obtain it.If everyonewere to find all kinds different books, movies or magazines offensive and got them removed from the shelves then their wouldn't be very much left for the community. In conclusion I believe that every individual has their opinion and own way of thinking when it comes to what is and is not offensive. I think it is not just up to them on what should be on the shelves in a library, but the communities choice. If someone wants a good book,magazine, or movie they should ask suggestions from a friend or family member on what they should get. If they can't get any suggestions on what they should get they should just what they think is interesting ignore the offensive parts" 4 3 4 3 3 3 +4083 2 "Have you ever wanted something removed from the shelves of a library because you thought it was offensive? If so, how did you go about the situation and what did you want done about it? I know in my experiences I have found some things that were offensive, so I am sure that they are out there. I think there are so many rules, qualifications, or standards that can give someone reason to take something off a shelf, and those can be different for everyone. If you were in a children's library or a school library, I am sure most people would agree that any book with offensive language, situations, opinions, etc. should be removed from the shelves. Now if you were in a public library in the teenage or adult section and those same books that were inappropriate for the children's library are in the teenage or adult section, that might be admissable. The audience is different; therefore, the types of literature, music, movies, etc. can be more opinionated, mature, and controversial. Part of why something should come off of a shelf depends on who is going to be reading it or listening to it. In my opinion, there is a fine line as to what can be considered too controversial or too mature. @CAPS1 is one reason why I think there should be censorship because some things are definitely too controversial or mature. Although, I also think there should be guidelines, and perhaps rules, on what should be allowed on shelves and what should not because some things might be on the edge of the line, but depending on what it is it can be, for example, a learning tool or great read. As Katherine Paterson said, 'But if I have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else.' @CAPS1 is why I think there should be guidelines or rules. If everyone had the right to remove something from a shelf, there might not be anything left to read or listen to. Different things are offensive to different people. If there were rules or guidelines, that would ensure there would still be things to read and listen to in the future. I think there should be censorship in libraries. Some pieces of work are just too offensive, and they need to be taken off the shelves. I think it would be appropriate for some rules to be developed or some guidelines to be created. As Paterson stated, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.'" 4 4 4 4 4 4 +4084 2 "Today in our day and age we have books, music, movies, and magazines that say or show materials that young children and teens should not be seeing at their ages. I am writting your newspaper company to tell you that I think the censorship should be implied more in libraries. Their should be something like a warning label on the magazines, movies, music, etc. that the parent has to sign before that says, '@CAPS1 child can see or hear the materials being displayed.' In this centry we have @ORGANIZATION1 and @ORGANIZATION2 @CAPS2 @CAPS3 shows showing violience, sexual content, alcohol, and drugs. Its almost impossible to keep all children away from these things, but we should at least try to. There are shows on @ORGANIZATION2 @CAPS2 now showing teenage pregnencys, and they are pursading the viewers that its okay to have children without being married, or even in a relationship with the person. @ORGANIZATION1 shows are now showing things like stealing in stores and the actor or actress getting away with the prize with no conserquence. Also they have violence and uneeded langauge. I know from @CAPS1 own experience watching @ORGANIZATION2 @CAPS2 @CAPS1 dad has came into @CAPS1 room, and told me to turn it off. That they shouldn't be allowed to do somethings they are showing the viewers. I know when I am married and have children I will keep @CAPS1 kids away from certain materials as long as I can until they are old enough to understand, and know the right thing to do in the situation. Some of the language they use such as 'retard' I find offensive. In @CAPS1 opition the censorship in libraries and in households have really declined. Some parents have no idea what their child might be watching behind closed doors. A good parent would make sure that the materials their child is watching is appropraite for there age. Even books have sexual contact, and language. When I have children I will make sure that they are reading materials that fit them. Magazines these days are even worse. The call the @CAPS7 '@CAPS6 @CAPS7' for a reason, and young teens are picking it up off the shelves at conveniate stores and are reading it. Most music you hear on the radio has some sort of offensive words, refuring to sexual activity, or they are singing about drinking or drugs. Parents need to get more involved in their childrens life, and what they are reading or seeing. I am not saying that all materials need to be removed from the shelves, because some movies or reading materials send off great messages to kids and teens. I am just concerned about some things people can get so easily without any censoring. I hope you read this essay and really take it into concerderation. I hope to hear back from you soon. Thank you for your time" 4 4 4 4 4 4 +4085 2 "I believe that certain materials should be removed from libraries if they are offensive. Children shouldn't be allowed to read books that have inappropriate pictures on them. Censored material can have bad influences on children. Scary movies can make children have nightmares. There should be restrictions against offensive materials. Libraries contain plenty of books, music, movies, and magazines for everyone. Libraries also have some offensive items in them. Offensive material should be removed from libraries. Children don't need to see inappropriate material in libraries. Inappropriate material can have bad influences on kids. Censored material such as offensive language, smoking, and alchol are extremely bad influences on children. Children don't need to say cuss words. Smoking can lead to cancer or death. Alchol is also addicting and can cause a person to become violent. Children shouldn't be able to see these inappropriate items in libraries. Scary movies can give children nightmares. When I was a child, I saw a scary movie and I couldn't even sleep that night. Inappropriate movies need to have ratings so that kids don't watch them. Kids believe most of what they watch in movies. Movies should be restricted from children to watch them. There is a lot of material in libraries that should be censored from children. Bad influences can have a bad effect on children. I believe libraries need to restrict items that will have a bad influence on children." 3 3 3 4 4 4 +4086 2 "Parents are responsible for their child, whether it's taking them to school, making sure their grades are up or even watching what their child reads. Libraries should not remove 'offensive' books, magazines, movies, etc. That is the parents reponsibility, it's the library's. The library is a place to go when you want to get a book or a movie or a magazine, ect. Whether it's for enjoyment or research. That book was specifically placed in the library for someone to read. If we took out all the material in the library that some people, in there oppion, found offensive, then there wouldn't be very many books left in the library. Who is to choose if the books were offensive anyhow? If an adult or mature teenager went to the library to look for a book and it wasn't there because they took it off the shelves because parents couldn't watch their child pick out a book? Or even teach them that those books are wrong. The parents have full responsibiliy if their child is reading something that is inapropriate in their eyes. How would the library know which books to take off the shelf because all parents have different ideas of what is right and wrong. If the kid is young, the parent would be the one taking their child to the library, so they could easily watch which book, magazine, or movie they're picking out. Most libraries have a children's section anyway. It is not the library's responisbility to watch out for your child, it's the parents. Their job is to supply the community with books, movies, magazines, etc. Libraries should keep the books on the shelvles so people from all over can enjoy any book they would like to read." 3 3 3 4 3 4 +4087 2 "Some people do not like the fact that there are books on the shelf that they consider offensive. People argue to get the corruptive books, magazines, movies off the shelves. The customers have the choice not to check out the material, it's not their place to try to get the object removed from the shelf. People that go to the library have the choice to read the book or not, if they have heard bad reviews about the book then they can just ignore it. The books on the shelves in public libraries are there for a reason, and its not to be taken off just because some people dont care for it. Reasons might be that the book goes against beliefs of religion, or just the way those people view things, but that still does not give them the right to remove the book from the shelf. Everybody has different likeings and tastes when it comes to books. Because a book is not up to one person's standards does not mean that it is not up to another person's. Beliefs and standards differ from person to person and that is why the likeing of books is different to most everybody. Most people are worried about their children reading the books that they find offensive. If your child is looking for books to read and they pick out one of the books you dont want them reading then tell them that the book is innapropriate. The kid will most likely listen to you and put the book back, that is a much better technique than trying to get the book removed. Removing a book from the shelf is completely unfair to the other people who visit the library. Everybody should have the right to read what they want and have the choice to ignore the books that they choose not to read. When looking for a book, magazine, movie, etc., and you run across one you find innapropriate then ignore it and continue with your day, it's as simple as that" 4 4 4 4 3 4 +4088 2 "It was during @CAPS1 class that we visited the library to look at various books. One of which, that my teacher picked up, was '@CAPS2 @CAPS3 @CAPS4 Right @CAPS5' by @PERSON2. The book had been written during the cult of domesticity and was filled with ideas of the submissiveness of women and their devotion to the home. I found that book to be very offensive just because I was looking at it from a modern perspective. Nowadays it would be considered sexist to assume that women should stay home and take care of the house while men work outside of the home. Just because it was a piece of literature that I didn't agree with, doesn't mean that it's not a valued work. Certain materials should not be removed from the libraries if found offensive. There is such a wide variety of people who search through the library, so finding a certain piece of material that not one person finds offensive is nearly impossible. Materials shouldn't be allowed to be censored for that reason. Materials found in the library are a form of expression to the individual who created them or to the society as a whole. Censoring those works would be considered a violation to the freedom of expression. People of all ages look through the library to find books or music or magazines. Each of those people has a different belief. What is considered a work of art to one person could be seen as highly offensive to another. If libraries were to start censoring their books, then the result would be a small selection of drab, emotionless materials. People visit the library to find materials that they are interested in, or look around to expand their interests. Libraries need to contain a wide variety of material to satisfy this knowledge.A library's job is to educate the people who enter it. A good form of education is the exposure to different types of material. Sometimes the offending nature of a novel is what makes it good. It gets the reader thinking about what the author's purpose was. 'The @CAPS6 of @ORGANIZATION1' by @PERSON3 was seen as a very offensive work for a long period of time. It incorporated the issue of slavery when many people weren't ready to deal with it. As a result, that book was banned from libraries and schools. Now, it is seen as one of the most famous works in @CAPS7 literature. That example proves that material that's reguarded as offensive, shouldn't automatically have its value lowered. 'And then we have no books left on the shelf for any of us,' as said by Katherine Paterson, is an accurate depiction of the outcome of a library with censorship on its materials. Part of what make a good work great, is its ability to stir up controversy among its readers. Removing the controversy will remove an aspect of education along with it, which is essentially the main purpose of a library" 4 4 4 4 4 4 +4089 2 "I think @CAPS4's ok to have books even if they are found offensive, because to some people those books aren't found offensive. People shouldn't let what is in books bother them. The way I see @CAPS4 is, if the book offends you, then don't read @CAPS4. There is no reason to throw a big tantrum over a book, that to some people isn't offensive. I agree that books that are offensive are bad, but then again that's why you have the choice to @CAPS1 not open @CAPS4. @CAPS4 would be easier to find certain things if we @CAPS1 had a library for everything. Like for instance, music. if we had a library for @CAPS1 music, @CAPS4 would be easier to narrow down things and find exactly what you are looking for. Same thing with movies and magazines. The only problem with this solution is the economic expenses. Back to the point. I've never ran across an offensive book, and if I did, I would @CAPS1 simply put @CAPS4 back. Why take a good book to many people off the shelf @CAPS1 because one person might think @CAPS4's offensive? Most libraries have labels for certain books anyway. If you know what kind of book your looking for then @CAPS4 shouldn't be offensive. Books are a good thing and aren't meant to be bad. Books are for entertainment and fun, and they shouldn't be found offensive. I've said @CAPS4 before, and I'll say @CAPS4 again. If you find a book offensive @CAPS1 put @CAPS4 back on the shelf and leave @CAPS4 be. Music on the other hand, is offensive to many people. I mean, let's face @CAPS4, we all have a type of music we love and a type of music we hate. They're are a lot of offensive songs in the world, which I personally think shouldn't be around at all, and putting @CAPS4 in libraries is even worse. Music is a persuasive thing, and if a kid walks into a library and picks up an appealing @CAPS2, @CAPS4 could be bad. That @CAPS2 could have everything about doing drugs on @CAPS4, which persuades kids to do them, and no one wants their kids doing drugs. I say that if you find anything offensive that should be taken out of libraries, @CAPS4's music, not books. I've pretty much said all that has been needed to have been said. books are books, they're offensive to some people, and to some people, they're not. In the end, @CAPS4's all a matter of opinion" 4 4 4 4 4 4 +4090 2 "I believe that if there are books, music, movies, or magazines that offends you. People shouldn't be able to disarm that material off of the shelf. If it's there children they're worried about just teach them from staying away from adult section. Also, some people don't like foul language but thats there opinion. Than we wouldn't have any material left in the library if everyone had the rights to disarm offensive material. 'And then we have no books left on the shelf for any us' (Paterson). If it's your children your worried about seeing censorship in libraries but, you don't mind it just have them stay in the kids section reading books. You could just go a day where you want to go by yourself so you don't have to worry about your kids spotting any censorship. Before checking the material out skim through it make sure there is nothing offensive for your child. Many people don't like foul language but, that's there opinion. It doesn't bother me because it gives the book a little taste and it's more interesting. Helps you understand what the reader is feeling upon someone or thing. Sometimes it helps show what mood the reader has in the story. Finally, if everyone had the right to disarm all the offensive materials, we wouldn't have anything left. This could effect peoples education and reading skills. Some of that material is peoples hobbies they wouldn't be able to do what they like anymore. 'All of us can think of a book that we hope none of our children or any other children have taken off of the shelf '(Paterson). It's an easy fix just teach your children from right and wrong. Would you rather have your children have a good education or not know how to read? Many people dislike foul language but it could make the book better. I don't know what I would do if there was no more books. Well these are examples of why people shouldn't have the rights to disarm material off of the shelf if it offends them. What would you do if you had something you loved taken away from you?" 3 4 3 3 4 3 +4091 2 "Removing certain books,music,movies,magazines,and so on is a serious question to ask.Well,some believe its a good idea,on the other hand other people dont. If you ask my opinion I would have to side with not removing certain books,movies,music,etc. One of the many reasons why I believe we should not remove them is because everyone is entitled their own opinion.Some @MONTH1 find a book offensive,well on the other hand some @MONTH1 find it riviting and not offensive at all. If the person thinks the book is offensive they should simpily not read it.They should not have to band books,music,movies,etc. just because some find it offensive .Well others @MONTH1 find things offensive that the other person does not .We all have are own beliefes and we should be free to express them,as long as it doesnt involve breaking any laws. Another reason why I agree with not removing certain books,movies,and so on is because we might not have any left.Like i said before we all have our own opinions.Not every single person is going to say a book,etc. doesnt offend them.We should not have to take away certain items.But on the other hand i believe we should restrict certain books,moves,music,etc. If a book,movie,etc.,seems to complicated for a child to comprehend,then they should not be able to read,watch,etc.,the item.We should classify things based on knowledge,understanding,and maturity. Also I believe we all have a right to believe what we want to believe. Just as we all have choices.I can agree with some of the arguments other people have for removing certain books,and movies,etc.,but the main idea is to do what is best for everyone.I just dont see that removing every book,movie,music,etc.,will solve any problems .In fact I truly believe it would make matters worse.Their would be arguments of what to remove and what not to. In conclusion I belive we should keep libraires the way they are.It would keep things less complicated. Also it would be the best choice. i\" 3 4 3 3 4 3 +4092 2 "A @CAPS1 @CAPS2 @CAPS3 there ever a time where there @CAPS3 a movie that you wanted to see, but due to graphics in the movie you were not aloud to see it? Many parents or young adults believe that movies being @CAPS1 are a good thing. What they do not know is that if something is @CAPS1 that's just going to make the kid want to go see it more. Frist of all, if they kids want to see it badly enough they will just sneek in or get a copy of it off the internet, which is illegal. I remember when I @CAPS3 younger me and my friends always wanted to go see @CAPS4 rated movies. So we would have our parents drop us off. When we would arrive home are parents would ask what we saw, we would lie and say we saw the new @CAPS5 @CAPS6 movie. Therefore kids will get into trouble for a stupid thing. Secondly if you don't believe your child should watch a movie because of your religous beliefs, then you and your child should have a talk. Statistics show that the more the kids can talk to their parents openly and come to an agreement, the less the child is going to lie and go behide their parents back. Many parents come to an agreement, that if they get to preview the movie frist then they will decide if it is approprite for their child to watch. In many cases this works out great for the parents and children, fore if the adult gives premission for the child to go see it then the parent and child will have something to talk about when they get home. Finally, I believe movies should be uncensored. For the movies are not really that bad, your child will end up seeing it one way or another. Whether it's at a friends house the internet, or going to the theater. What harm could it cause to see it now. So in conclusion to my statements.To know that your child will see this movie, wouldn't it be okay not to censore it. 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf, that work I abhor, then you also have exactly the same right and so does everyone else. and then we have no books left on the shelf for any of us.' as said by Katherine Paterson is true. Could you imagine living in a @CAPS1 wold? I know I can't. So think are you for or against censorship. Would you want your kid to lie to you about where they were going or what they saw? I know I wouldn't" 4 4 4 4 4 4 +4093 2 "There are all kinds of different people in the world. People with different views on things, people with strong opinions, people who are very outspoken and mature and alot of those people are authors of the hundreds of books that fill our libraries at school. Some schools censor certain books from schools because they think the tone or message is inappropriate or too violent, but I believe that we have a right to these books. In my opinion no book should be censored from the library. We have troops fighting for our freedom of press and freedom of speech and censoring books completely ignores these wonderful freedoms our country has given us. During my freshman year we read a book called '@CAPS1 @NUM1' and before we read it our teacher told us a little bit about what it is about. She said the book was about the way a society had banned books like they were drugs or something that could hurt us. Now apparently a school didn't like the idea of a society banning all books so they banned this book from being read to their children. Now if you actually read this book they portray how bizzare and crazy this would be to have all books banned but here we are banning a book about banned books! Does this make any sense? To be honest by the time you are in high school you have probably seen, heard, and done crazier stuff than what people put in the 'banned books'. Now I know there are some people who would say just because you do things that you should not be doing in the first place does not mean you @CAPS2 to read about it all the time and fill your head with ideas about it, and I agree on some level because most of the stuff high schoolers do they shouldn't, but thats life, plain and simple. In my opinion, high schoolers really are mature enough to handel some offensive language or violent scenes because I'm sure they see worse stuff on the televison or sometimes in their own homes. One of my good friends is @NUM2 years old, has two jobs, her own apartment with her boyfriend, and is not supported by either of her parents. Now this girl still goes to high school and has great grades and is obviously very mature for her age but yet even she is not allowed to read a book with some offensive language in it. I think our society 'babies' us a little to much because when we get out into the real world things are not going to be censored or kept quiet. I think high schools @CAPS2 to put these books into the libraries because it might help some kids grow up and become more mature. When we go into the work place after college and start our lives with careers, homes, and families we @MONTH1 be to immature to deal with it and I know some people who are! Censored books are just a way to keep the way we live life quiet to some people and never let kids grow up and experience things. We have a right to these books just like the people who write them have a right to do so. If they can publish them, then we should be able to read them no matter what our age is" 4 4 4 4 4 4 +4094 2 "Inappropriate magazines in the reach of children?!? '@CAPS1 just not right', says reporter @PERSON1, 'I think that magazines, books, and other profanities should be out of the reach of children and only discussed when chosen by an adult'. Libraries in the present day need to overseer children when they are looking in the library. If children see something that they want with no guardian then they shouldn't get it, its just that simple. Although the books can seem inappropriate to some people they should not be taken off the shelves because older books help children learn about what happened in the earlier days, it teaches them some of the ways that we use now, and it shows real stories about people in modern day. For example some of the books about @ORGANIZATION1 connect some people as being to abrassive and mocking, but it just shows what happened long before there were laws for racism. The books about @NUM1 also come provacative to some people because they lost someone close during the bombing, the books teach the kids that not everyone is nice and cruel things happen to some good people.Books about peoples life are also in libraries talking about what happened to them as they were kids or how their parents died of cancer, the books teach the children that outcomes can turn out for the good or the bad. Some entertainment is not intended for kids to see, for example, pornography and provacative language. Pornography is thought to be an entertainment for adults, but many times it is just something that can scare kids at young ages if they do not know what is really happening. Also, provacative language in a book or on a cd is not something that kids should be listening to. However, they need to learn that if they hear those words they need to know not to say them so they don't get into trouble by their parents. Books of history are thought to be helpful when children are growing up. Most of the time that is correct, about @PERCENT1 of the children take in the information and use it to help them. However, there is @PERCENT2 of children out there that will just think of the information that they are being told as good things. @ORGANIZATION2 didn't just wake up one day and say im going to bomb the @CAPS2 @CAPS3 @CAPS4. His devious plans and clever mastermining took alot of time to plan out. People @MONTH1 object to children learning some things about history, but i think it is needed for every child to understand. Everyone needs to know about the ups and downs about their country and the others surrounding them. Children @MONTH1 not understand right now what is wrong with the economy, but they will soon learn when they are adults why people complain so much. Books about this stuff @MONTH1 come offensive to some people, but down the road books are used for many things, we still learn about people from hundreds of years ago. Children will soon learn of the harsh conditions and the reason why things happen. Without the books and the videos the future will never know what happened. Many young people @MONTH1 change words in books, but the books will always still have what really happened. @CAPS1 why i think that the libraries should keep the books on the shelves, just out of reach of the children" 4 4 4 4 4 4 +4095 2 "Reading is very important for kids these days. Libraries should have the right to have any kind of text, movie, magazine, or genre of music that is desired for a student to learn from. There are not any kind of books that could be deemed offensive in any way to people these days. There are exceptions to this however like any book written to specifically target a race, religion, or gender. Such as books written by raving racist fanatics like members of the @ORGANIZATION2 or @CAPS1-@CAPS2's. Being a high school student and having a nice library in my school I have learned a lot from the books in my library. I have never in my @CAPS6 years of @CAPS4 seen a book or heard of someone who saw a book that offended them. I can assure you that there is not one book in the @CAPS7 that would offend me personally, this is not to say though that there are books out there that will offend certain people. Reading books is fun to me and I would not want to miss out on a good book because a library is not holding it because there is the off chance that someone somewhere might get offended by that certain book. Reading should not be limitted based on content because there is always someone out there who is looking for that certain book for a good read. I have heard of people who have gotten mad because there was a nude picture in an art book. Seriously? An art book? Art is what it is. Art has had naked people in it for thousands of years. Why should it start to offend people now when it didnt offend people then? People are just weird in this day in age i guess. There are certain movies that should most definately be removed from the shelves of libraries, such as porn for example. Porn should never, under no cercumstances be held in a library. There are special places for porn such as the internet. Music is a different story however. Music should not be taken out of libraries because there are some people who cannot affort to buy music for places like @LOCATION1, iTunes or @CAPS3. Music has so many genres that its is impossible to make out what should and shouldnt be in the library, and there are so many different types of people that listen to different types of music in the @CAPS7 and it would be wrong to tell that certain group of people that their music is too heavy or too rappy for the library. Listening to the music in the library is a different story however, you should definatly not be allowed to listen to your music in the library or at least not be allowed to have it loud enough for everyone else to hear it. I dont read magazines but i know enough about them to know that they should and shouldnt be allowed into a library. Magazines like '@CAPS4' and '@ORGANIZATION1' should definatly be allowed into a library because they are the hub of learning from magazines. However there are magazines that should not be allowed into a library like '@CAPS5' and other pornographic magazines as well as ones like '@CAPS6' which are magazines that target young girls to make them think that they should look perfect like the models in the pictures. Those are the types of magazines that make young girls dress skimpy and inapproprietly and make girls turn to throwing up to keep themselves skinny. There are definatly some things that should be kept out of the libraries but one book, or one movie, or one genre of music, or one kind of magazine should not keep them all out. One problem shouldnt make them all a problem. Libraries are a place where people go to escape, similar to things like @CAPS7 of @CAPS8 and other videogames. People should have the right to go to a labrary with the intent of getting something and they should be able to get what they came for." 4 5 4 4 4 4 +4096 2 "What is @CAPS1, @CAPS1 is whay made this country the who we are today! There are manny ways people can exspress them self in todays world, and it just so happens the art of writing acting and art are a huge part to the way people exspress them self. Because all of us are different and have our different veiws on the subjuct. Im not going to preach to you about what is right and what is wrong. im just going to share a few prior exspereances. Now all of theas were from being in a libraries. Some of them in smaller towns, others in the hart of a larger city. There is evean a story of a man and wife, in the suburbs of a larger city. It is also amazing to see what is exsepted in differeant parts of our country. Well it all started when I was sitting at a small table in the back of the @LOCATION1 librarie. It was a small groupe of friends and we were all working on our reaserch papers. But we then saw a man and a woman, what I proseaved as husband and wife. They were looking at the magazines on the shelf directly infront of us. As he picked up a @CAPS2 @CAPS3 magazin she looked over to him and proclamed, that is so derogitory against woman. So he put it down and walked out. Wandering what was so bad about this magazin I walked over to the rack to see a woman standing in her underware with a classic car. About a mounth later I was walking in my local librare droping off some books for my mom. Instantly when opening the door I hear to people having a heated conversation about the painting they had hanging on the back wall, in the adult section. Wich was of a woman with her chest exsposed, now mind you this was not a modern painting it was rather old, with the paint slowly pealing off. Now that painting was there for manny years with out any one saying any thing and that was the argument made by the head librarean. There were manny people standing in the area that this was taking place, and manny of them were not evean willing to hear what the woman had to say, because the painting turned out to be very famous and has been there since before some of the middle aged people in there could reamber. As you can see there are manny differant veiws on what is exsepted in the modern time. Advertizement is all over and manny magazines use peoples bodys to draw people to their add, so they can try to sell their product. I belive there should be a line drawn when it comes to that kind of addvertzing. They @MONTH1 have to come to a agreement that each magazine should say if it contains the kind of adult content like that. if they were to make this a law they should have to put it right in the front cover so you know if you pic that magazine up, you are at risk of seeing things like that. altho when it comes to a painting of times before the @DATE1 and people had grown up in that same area for years and have been seeing this painting since they were yong too, I do not think that painting should have been taken off the wall. There is a fine line when it comes to the information being exseptible or not that is why I do belive there should be some kind of rating system whith the book and etc" 3 3 3 3 3 3 +4097 2 "@PERSON1 is saying we shall all share then never giving @CAPS4 back. Also we can't all get what we want at the sametime or at all. If that book is popular then they should of bought more to sell for the other people that doesn't have the book and would like to have @CAPS4. Of course sharing is better then wasting your money on something when someone has the book that you know and would let you barrow @CAPS4. And yes, We all know that most people these days don't usually share. To tell you the truth you don't always get what you want. Either get over @CAPS4. Yea @PERSON2 has a @CAPS1 but to tell you the truth everybody has there own opinion. We all don't have to listen to what other's say but if you agree with that person then you agree. Like I said everybody has there own opinion and I stated mine.Pretty much like '@CAPS1 OF @CAPS2.' No, I do not believe that books,music, and etc. should be taken off the shelves because @CAPS3 @CAPS4's stupid you'll lose your job and @CAPS5 people out there in the world need something to do @CAPS6!? I don't read I mostly listen to music because I think music to me is more interesting and entertaning then reading a book. I mean yea I read articles from magazines but like I said mostly listen to music. Reading a book is mostly like someone telling you a story about so and so or somthing . So to me @CAPS7 book is in infront of @CAPS7 face @NUM1. '@CAPS7 life' @CAPS8 later on in @CAPS7 life I will be interested in reading a book but now I'm enjoying @CAPS7 life being a teenager. So basically I'm telling you @CAPS7 own opinion and I think @CAPS4's completely stupid for being graded for this because everybody has there own opinion just saying. You could either agree or disagree but for this @CAPS4's mostly a disagree" 2 2 2 3 2 3 +4098 2 "I am writing this essay to puersuade the members of our local library to use better censorship when putting unfit material on the shelves for the members of our community to use. In this essay I will reflect my views of this subject, backed by true facts that I have learned from many passed experiences. I believe that there is a large amount of reading material on the children section selves of our libraries that is far to advanced for many young children to understand. I myself have reviewed many of the books in the childrens section of many libraries. When doing so I noticed that many of the material makeing up this section is far to advanced or is to profound for children to absorb. Young children need to be reading more books of fantasy to allow them to use their imagiation more and not let their head be filled with thoughts of war and disaster. The children that read today need to have more material offered to them that they understand and not so much material that they can't comprehend. Lets use put more fit books on the selves of our library and quit wasteing our money on unfit books. In reaching the conclusion of this article I hope that I have persueaded the readers to understand the point I am trying to make. I hope my readers take the information I have givin and put it to work" 3 3 3 3 3 3 +4099 2 "Libraries are community centers. Children and adults go to libraries to check out new books that could give them new experiences and information. If libraries took out books because they were inappropriate or offensive, then young adults and adults would never recieve those new experiences. Libraries require all sorts of books to make it a qualified library. If libraries censor their books, then other materials might start vanishing as well. Most young adults read about books that are about adventure, mystery, or love. A person could find a mystery book with a serial killer for a main character offensive, but you can't rewrite the book for one person; futhermore, take that book completely off the shelf. That book is public property. If the library took that mystery book off the shelf, then the library is taking away the experience of another young adult reading it. One teenager's thoughts do not account for other teenagers' thoughts. Libraries that take away offensive or inappropriate books might influence other multi-billion dollar industries to second guess their work. The movie industry, for example. The movie industry might second guess the directors or actors/actresses they are hiring. Actors and actresses have a large influence on many teenagers and children. Imagine if a child's favorite actor disappeared from future movies; that child would be left without a role model. The affects of censoring books and magazines go way beyond the libraries. Music artist might also be affected. Rappers curse and swear in their music because it is how they voice their opinions and personal experiences. For example, @ORGANIZATION1, a famous rapper. He curses in his music because it's how he shows his emotion in an event. If music publishers wouldn't publish him because his work is offensive, then he would lose his job and career. This is how people in today's society make their living; by providing entertainment to other people. Libraries have no right to take away any books from other children and adults. Authors know what they are writing. They write it because it shows emotions and feelings. It is the same thing with music artists and screen-play writers. If movies were all about unicorns the movie industry would fall apart quickly. Libraries, as a whole, need to think about the bigger picture before they extinguish books, experiences, thoughts, and hard work" 4 4 4 4 4 4 +4100 2 "Raded @CAPS1 for @CAPS2, violance and some nudety. This kind of movie shouldnt be on any kind of shelf. Its to inapprope for kids, see or even read what the movie case says. There shouldnt be any kind of movie or magazine with nude pictures. Its bad for the kids to see or here because one day a little boy/girl is going to do something that they see in a movie or a magazine and get in trouble. Its just wrong to see other people naked if u ask me. The only person i want to see that way is my wife in ten or so years. But i dont want to watch a movie and see a lady nude. The nest thing is violance. Man i just wish guns wernt invented or bombs. Because I have lost alot of friends to guns. I lost about six cousins in the war from where a bomb hit there area. More and more people and going out and buying guns and bombs because, of movies and what people say in books and in magazines. People are getting name of guns and what they look like from movies and magazines and getting them and getting bombs off the black market. People get these ideas because of movies. Last but not least @CAPS2 it the main thing kids get in trouble for in schools. They leard it from movies mainly because the actor say the words. Now the kids know how to say them. Sitcs say that kids say and do what there favorite actor says and dose on and off the air. My conclusion says that all every thing with violance should be taken off the shelfs" 3 3 3 3 3 3 +4101 2 "Throughout history there have been many books written at a time in history when their beliefs on certain things differed from what our world today believes. Things that have changed as our world has changed are the views on slavery, womens rights, religion, and many other things. These views are based on what most people of a time frame believed. I feel that just because something someone wrote or said offends someone, does not give people the right to ban that book or quote from society as a whole. They have the right to ban it from themselves, but it is up to each individual whether or not it is banned for everyone. Our government gives us the right to have freedom of speech. This shows that even though someone @MONTH1 write or speak out against the majority opinion, they can say whatever they want without being punished for it. This means that people can not just ban something for what it might say or portray. In my life explicit music seems to be something that some people are trying to ban. My parents believe that I am at the right age that I should be allowed to listen to whatever type of music I want to. I feel that public libraries can set age restrictions on items based off language, nudity, and other inappropriate things for children just as movie theaters do, but they do not have the right to ban books. Even though there is an age restriction, as long as the guardian of the child direct says it is fine if his/her child @MONTH1 check out the book or the parent checks out the book for the child, then it is fine that that child gets that book. The choice for what is appropriate for that each child should be left up to their parents. If libraries had to ban books because someone said that a certain book or magazine was offensive, then a library would have very few to no books. In almost all of books someone @MONTH1 be able to find something offensive to them or to someone else. These books that offend people should be kept on the shelf so that people can understand how society's views on things were back in the time period that the book was written. These items in libraries that are found offensive shows us what was wrong with society at that time and helps us learn from past mistakes in history and how to avoid them. For example, in the play A @ORGANIZATION1 it shows how the society's view of women was. It showed that they did not think highly of women and how there purpose in life were to raise the children and that was it. They did not feel that they had the intellect to talk about science or anything like that. This indirectly teaches us how we should not treat women today. If libraries start to ban books, music, movies, magazines or other items then they are hiding things they do not want people to read. Libraries should not be able to ban something because it is offensive, but they have the right to put age restrictions on certain things. Authors and artists have freedom of speech to say whatever they want and libraries can not take that away from them" 4 4 4 4 4 4 +4102 2 "I believe that the children of today should be able to read, and learn the same things that our parents have learned in the past. Learning things through the same teachings, books, movies... etc. Learning things this way would be better then taking out cussing, swaring and certain detailed writing, because if you took all that away its like lieing about history, and what really happend. Should the children of today be deprived of the truth? Would you want your children going to school everyday and learning things from a text book that were twisted around just so that it was apropriate and non offencive? Think about it... Were you deprived of learning history when you were in school? I didn't think so, so why start now? Say your child is going to be reading '@ORGANIZATION1' in @CAPS1 class today. Would you want to ruin a classic book by taking the '@CAPS2' word and the word 'slave' out of the book? Depriving them of how there use to be slave owners, slaves, and racial comments? Depriving them of actual history? Would you also deprive them from learning about wars, revolutions, and mass killings just to make learning apropriate? No. I wouldn't. I would want my children learning anything and everything about world history. I do not think that there should be censorship in libraries" 4 4 4 4 4 4 +4103 2 "Libraries contain many helpful and entertaining materials for people of all ages. Some @MONTH1 argue that a library holds documents that are offensive and should not be put on the shelf, but I beg to differ. A library holds many books, magazines, movies, etc. that can advance the knowledge of citizens. Libraries can, and probably do, contain materials that are guilty of being offensive, but they shouldn't be taken off the shelf because of this. Instead, libraries should be divided into sections based on topics. If a parent doesn't want their child to read a book based on racism, then the parent simply keeps the child out of that section. How will children learn about what goes on in @LOCATION1 if they are not shown? Children won't know how to cope with the harsh realities of the world unless they are exposed to them early. This doesn't mean that a child should be shown a magazine highlighting @PERSON2's next drug scandal, but showing them that stuff like this does go on and you should not live that way. Libraries don't contain material that is offensive without a reason. What if a high school student is doing a report on the rise of teen-pregnancy? This student should have no better source for information than a library. The library would be the most trustworthy documentation of facts about this topic. These books that a library holds are not only there to educate us, but to entertain us as well. If a library removes a biography on the rapper, @ORGANIZATION1, because he has a 'rocky past', they @MONTH1 lose one client who came to the library to be amazed by the struggles that many successful people have overcome to get where they are today. As Katherine Paterson said, 'And then we have no books on the shelf for any of us.' If a library censors all of the material that goes throught the system, there @MONTH1 not be any books left to entertain ourselves. Therefore, libraries should not monitor what material is put on the shelf." 4 4 4 4 4 4 +4104 2 "There are thousands of books in libraries now a days, some are from @NUM1 years ago. Books are books, and anyone at any age should be able to remove any type of book off of a shelf. Books, music, movies and magazines are all mad to interest people and what they enjoy reading. Authors and publishers should not be pentalized for their hard work they achieved. There are many people in the world, who like all different types of books. But just because a book has censorship inside the story doesn't mean any human being will enjoy the story. I enjoy reading stories about romance, and I'm sure there is censorship inside a romance story. I only prefer romance stories, and if every single romance story had censorship and libraries removed the books from the shelves, I wouldn't read any type of book. Because I only enjoy reading about the romance. I only find adults and young adults reading romance stories, and these people have the matureness not to act out about censorship. It's not best to ruin the stories for adults and young adults who like to read about the censorship inside of stories. There many be people who find it so interesting, that if it's based on a true story then they would want to be willing to help the person out based on the situation. Don't take away the chance for these authors to succeed more in life. Let these young adults read about everything they are interested in. I'm sure there are many different people who would be upset if the censored stories were eliminted from the shelves in libraries" 3 3 3 3 3 3 +4105 2 "Censorship, only for the light hearted. We have had this issue for as long as man can remeber. Since we were only little kids to adults. Everything was censored. Bleeps on the television to hide harmless words to random letters in curse words as if we did not know for example what @NUM1k spelt. I agree, censorship is needed for a certain period of time, but when that time goes on for to long and even in books and newspapers to limit what we can handle, that's when it goes out of hand. I am a highschool student and even I have to say limiting our reading because a book might have one or two bad words in it is just redicoulous. Its the most hipocritical thing to do because even science and anatomy books show certain parts of the body like genitalia but thats okay because its in a science book. However if its in a normal book, everythings a big deal and we can't handle it big woop. I say its a library, let us read what we want to read. Like i said before highschool is where the maturity hits and the censorship should be lowered. Im not saying just completly take it away but come on now I think highschool student can handle a few bad words in an outstanding book. As far a movies and music go, anything pornographic or just plain idiotic and demeaning should ofcourse be censored, but if theres just a few bad words why should that stop an entire school from enjoying some good music and possibly an amazing movie. So the point is, let there be censorship, but only to the point where people wont just take away music and books from us highschoolers for a few bad words. Censorship is for the lighthearted, and nothing is stopping the lighthearted people from not picking up that book with a few words in it they don't like, just dont read it. Thats all I have to say about censorship." 3 3 3 3 3 3 +4106 2 "Read, @CAPS1, and @CAPS2 ? Books, music, and movies all have a meaning and a purpose to them. In our spare time, we all enjoy to read, @CAPS1, and @CAPS2 the things that let us do so. These things keeps us all occupied when theres alot of time to spare. The library is a place where you can go read in peace and @CAPS1 to music with no distractions or anything, but there are somethings that are not cut out for the library. People find books at the library that they find very interesting and decides to check them out, but little do they know what the book and/or magazine has in it. Books come in all different genres and so do music and movies. And we all have our own views in what type of genre we enjoy listening, reading or watching. Genre comes in all kind of different types. For example, theres only one certain type of book for a child and which at the library should be picked out for a child to read and a child only. Theres also books for grown adults and adults only and once checked out, it should be kept from a childs hand or vision. Because children could see the wrong things and things might get out of hand. All readings, music, or movies that have explicit or uncensored graphics or words should personally have their own section in the library. In this case, nothing bad could happen and everything is in place with everything else. Honestly all media actually should have their own section. For example, all kids media should be in one section and all adult media should be in another section. All books should be left on the shelves of every library, only because one knows what should be read and what shouldn't be read. A kids desired book is a childrens book with color and picture while on the other hand, an adult has their own type of selection. So books should stay where they belong and not tooken down from any self, that also goes for, movies, music, or any other media" 3 3 3 4 4 4 +4107 2 "The libraries have to worrie about enough as it is with people not retuning books and stuff in. They do not want to lose there books, music, movies, magazines just because some people find the offensive. Why would we have to talk something out that offens one person but no one else has complainded about it being offensive. I know that you are asking me to thank like you to be able to see why it is offensive but i dont see how a book is going to be offensive. When someone finds something that looks offensive then they do not have to take. There are people out there would would read something that is offensive to them so that they can lern from it. There is no reason why if you dont like the libary that you can not go to a differnt one. There is no reason for you to have to get so offensive of books because the authors is just trying to get their point accross and expressing their feeling on the subject. The way that i look at it is that you have two oppions. The frist being deal with it and go to the libary and get books. The second is dont go to the library if your going to be able to find something offensive. But know if you pick the second one then you must realize were ever you go you are going to find some thing the will make you feel offensive so your might as well just get over it and say yea i will go because its all around me. yes i know what you must be thinking why if its not a big deal then why dont you just take them out. Well you want an answer and i will give you one. Those books mayne you don't want to read them. But what if someone eles does its not fair to get reed of something just because afew people find it offensive know is it? There for i say that no we are not going to take books, music, movies, magazines and anything eles out of the libraries. You will just have to deal with what you dont want in here its not like were going to make you read something that you take offensive to. We will not going to get reed of the books, music, movies, magazines or anything else that we the library has. That is why everything that is in the library is staying in the library" 3 4 3 3 3 3 +4108 2 "Dear @ORGANIZATION1, @CAPS1 I was growing up in my small little neighborhood, life could not have been more simple. For children, life is eating, sleeping, playing, and laughing. Their innocent minds do not ponder the meanings of life or of love, but curiosity does grab every child now and then. With a stubborn persistance, a child would probably go to the ends of the earth to understand what confidential information they overheard their parents talking about. But @CAPS1 does harmless curiosity mean the destruction of a child's innocence? By viewing adult-oriented material, such as books at a library, children can gain premature knowledge that can be harmful to their development. However, libraries should not fear stocking their shelves with books that are appropriate for adults because an author spend countless hours writing that book, that book represents a portion of history for the human race, and not everyone @MONTH1 find the contents inappropriate. Authors have the freedom to write about whatever interests them, and taking away their right to display their thoughts and opinions is unjust. A censored author must feel like a basketball player that did not make the cut despite hours of practice. Thus, an author that has practiced and perfected his writing skill does so in hopes of publishing his work. Not agreeing with someone's interest in a subject is no reason to exclude his valuable thoughts from society. Books that are appropriate for adults deserve to be displayed for adults as the author intended. Every piece of literature that has ever been written documents a portion of history of the human race. Even fictional novels serve as monuments to the depths of man's imagination. Therefore, no book should be censored, no matter how inappropriate the material is. Just as remembering the @CAPS2 has influenced mankind not to repeat past mistakes, keeping books of the most horrible content @MONTH1 save authors from repeating such dishonorable content. In other words, if censorship removes the 'mistakes' of literature from library shelves, who is to say that an oblivious author will not repeat that 'mistake'. By remembering these mistakes, mankind will be able to move forward in literature. @CAPS1 books are not 'mistakes', they serve as reminders of the high-points in literature. All literature, appropriate and inappropriate, is a piece of mankind's history that should not be kept a secret. Finally, who is to judge what is a 'mistake' in literature? A book on @CAPS3 @MONTH1 be inappropriate in the eyes of a @CAPS4, but that book @MONTH1 be sacred to a @CAPS5. Beauty is in the eye of the beholder. Furthermore, for any given book there is at least one person who disagrees with its message. A library is built for the education of the public, not for the interests of one person. If one is offended by a literary work, perhaps he should just move on and find a book more suited to his interests. The decision on the appropriateness of a novel is up to the reader, not the government or library or activist group. Censorship of material in libraries would strip authors of their chance to let their works be seen by others, keep records of the human race secret, and take away the privelage of the reader to decide what is appropriate. Authors endure long hours of practice and writing in order to have their thoughts read, and such a motive should not be taken away from them. Every book represents some aspect of human life and records it for future generations to avoid previous mistakes. And these 'mistakes' are decided by the reader, a decision that censorship takes upon itself. Instead of choosing what books are seen by the public, perhaps libraries should just create an adult-only section to house the 'controversial' books; as a result, mankind would stay educated and free, and children would remain innocent. -@ORGANIZATION2" 6 6 6 4 4 4 +4109 2 "There are many different perspetives on censorship in our country. This is the human race, opinionative that is. Different perspectives come from different people: young, old, parents, and children. In libraries there are some reading materials, that some @MONTH1 find offensive. Offensive material in libraries is @CAPS1 directed to be read by young children. They are also @CAPS1 inteded to be able to get there hands on such material. Even though this is @CAPS1 the purpose of that material, it happens that this material ends up in the hands of someone who shouldn't have it. No the material is @CAPS1 held under lock and key, but it is also @CAPS1 left to lay at a child high shelf that would seem appealing to them. The problem with removing all of this material from libraries would result in empty shelfs, except for the children's books. The material that would have to be removed are books meant for people of the appropriate age group to inform and tell good stories. If we protected children from censhorship this would deny knowledge, and also a get away for some, from the general public that anually go to the library.\ @CAPS1 all movies, books, music, and other materials are labeled as they should be. Some material @MONTH1 @CAPS1 be appropriate for children, but they also are @CAPS1 all inappropriate. A rated '@NUM1' movie @MONTH1 be just like a rated '@CAPS2' movie only with one extra reference, that @MONTH1 be taken in the wrong way. Even protective parents @MONTH1 allow their children to view movies like this as long as they find it appropriate. Libraries should @CAPS1 remove this material from their shelves. If it is that much of an issue, then they could have the children books in a seperate room of the library. There are many possibilities of keeping this kind of reading material away from children. All of which do @CAPS1 have the need of removing these books and other materials from the libraries' shelves. Censorship in libraries is a contraversial subject. There is a very good arguement on either side of whether or @CAPS1 to take offensive material off of shelves in the libraries. I believe it should @CAPS1 be taken off and there are alternatives to this. This essay proposed solutions to this problem without taking the public reading right away from everyone" 4 4 4 4 4 4 +4110 2 "@STATE1 @NUM1, @PERSON1, IN @CAPS1 Katherine Paterson, I read your article in newspaper yesterday about offensive books in library. I agree with you on this article. Some of the books, music, movies, or magazines in public libraries are very offensive to me but they can be normal to other people.There can also be somw books that are normal to me and can be offensive to other people. Everyone have their own views and ideas on everything.The people of @LOCATION1 have freedom of speech so it is true that every mouth has got something differrent to say. There are some books or movies that children can not read or watch but children still do because once the child is in library he can read,watch, or listen to anything. You can not depend on librarian because there are other people in the library too.The librarian probably have other things to do like arranging the books or checking out the books or making library card or helping someone find a book. In my point of view, library should have diferent sections for different kinds of movies,books, or magazines and there should be person assigned for every section. This way children would not be able to go to older people's section. If there are books that are found offensive by everyone, then people should write a letter to president to help remove those books from library.Yours @NUM2." 3 3 3 3 3 3 +4111 2 "Have you ever been in that situation where you couldn't read a book because of someone else having bitter feelings towards it? Are you furious when you finally get a chance to read that book you've been waiting on for two months and all of a sudden it's not to your avalible because of its content? I know I always amd because at @ORGANIZATION1 this happens quite often. I believe that a book shouldn't be removed because only one person found it to be offense. Sure some novels @MONTH1 expose a few word of profanity or discrimination but everyone has to deal with it. So why take one book off the shelf for saying something vaulger because not everyone might dislike the book. If we took a book off the shelf everytime someone reported a bad word or a discrimitive remark then we would be left with no books including the ones that tell us a great deal about past history. Some authors, movie directors and artist rely on history to help them create a great piece of reading, comentary, or lyrics. If the libraries in the public and in schools censored everything there could be a @ORGANIZATION1 risk of loosing alot of historic and epic material or information from the past. As im sure you know alot of history books about the holucaust, slavery, and the civil rights movement include words that people of certain genders or races @MONTH1 find offensive. These words are a vital source in the attempt to explain what the people in those situations are going through; therefore those words shouldn't be reported for histories sake. I know im not alone in my fight to keep books on the shelf because an author named Katherine Paterson says, ' ... If i have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same righ and so does everyone else. And then we have no books left on the shelf for any of us' (Paterson). In this quote she is trying to say if people abuse this policy there will be no books left on the shelf for anyone to read becasue someone found something offensive to them. This is what will eventually happening if we don't censor the @CAPS1 in the libraries. Now don't mistake me for someone who believes that @CAPS1 should be dropped all together becasue I believe it is needed in some cases. If there is a song that use profanity multiple times without any logical reasoning then it shouldn't be availible to the public through a library. Also if there are inappropriate movies I don't think that they should be distributed by the library to the public becasue thats what movies rental stores are for. On the other hand I haven't found a single book that isn't suitable for the library; so why are there so many books being takin away every year due to what some people call '@CAPS1' also known as self opinions? In this writing my goal was accomplished; I wanted to let everyone know that the whole @CAPS1 thing is getting a little out of hand. We all know that there is some offensive things that @MONTH1 be happening but they are things that everyone who views that book, movie, or soundtrack has to deal with. With some offensive things comes a reasoning like in history books and movies that @MONTH1 contain a few bad words but are used to get a point or setting across. I know that @CAPS1 is just another way of looking out for the better of humans but alot of it has a reason. The only case where @CAPS1 should be used is in innapropriate movies and songs with no hisrtoric purpose. With all that has been said, do you still believe in all of the @CAPS1 going on in your nearby library? How can you help prevent the destruction of all of the historic words in libraries?" 4 4 4 4 3 4 +4112 2 I think that it is should be left alone the way it is because it put that way for a reason. They might not know the reason so thats why i think it should because the person might get mad if you mess it up just cause you dont like it the way it is because it is offensive to some people. Other reasons is because people are gonna home and watch it online or on tv so how is it gonna make a difference. It is not goiing to make one difference at all. 2 2 2 2 2 2 +4113 2 "No, I believe all materials should be on the shelfs at libraries. Because some people like stuff other people @MONTH1 find offensive. But you as parents should control what your kids are reading. If you find it offensive tell them to pick out a new book, new @CAPS1, a new movie, or a new magazine. If you don't its not their fault it's your fault. Some people like stuff that others don't. Such as, stuff from anther culture or maybe something from a different religion. But we can choose to read what ever you want to. If you don't like it find something else but, some people find it interesting. Not everyone has the same veiws on stuff. If there are books just for adults put it in anther room to were miniors can't get in. Make it to were you have to show an @CAPS2 that says you are @NUM1 or older to get in. Than you can look at inapporiate books without haveing to risk kids seeing them. Than in order to check them out if you're under the age of @NUM1 a parent or gaurdian has to be with you if you want to get it. If it's a @CAPS1 or musican that has cussing in it you need to be @NUM1 or older or have a parent check @NUM4 out for you. Because some parents don't let their kids listen to bad music. Like I said in pervious paragraphs I believe that they should't take stuff off the shelfs that a few or some people @MONTH1 find inapproite. Because a few of us might find it interesting to know that this world isn't all the same. People are different like different things" 3 3 3 3 3 3 +4114 2 "Everyone in the world has different opinions. Some people care about things that other people don't care about at all. One topic that seems to get everyone going is censorship. Everyone has an opinion on it; and not everyone agrees with eachother. All libraries have different sections based upon age. There are childrens sections, teens sections, and adult sections. I think censorship has a lot to do with maturity levels. Things in books and movies that aren't appropriate for children, shouldn't be put in the children section. I understand parents' don't want their children reading or watching abscene material; but as kids are growing up, they're going to learn about the innapropriate things sooner or later in school. I don't think anything should be taken off of a shelf just because a handful of parents find the material offensive. I don't take censorship very seriously. Some parents want their children reading books with innapropriate material so they can learn about what goes on in the world and what life is like. Most children and some teens don't know what the world is like because they don't get out much. They don't learn things that they should know already. Reading is a way of learning. When someone wants to know more information about any place or anything, they go to the library and check out a book. For a school project or just for fun. Most parents agree that nothing innappropriate should be in a childrens' section at a library. Just because they're young and parents don't want their kids going around at the age of @NUM1 cussing like a sailor. But I think that teens are mature enough to read or watch innappropriate material like a book with cussing or a movie with kissing scenes. Parents shouldn't have a say on what goes on or off the shelves in a library. They should just mind their own business. If their kid picks out a book that they think is too offensive for them to read, then they can just simply tell them that they cannot get the book. It's as simple as that. Parents who ask for books to get taken off the shelf are just asking for too much. Censorship in libraries is not a big deal to me. I think kids should be able to read a book that they want to read. At least they're wanting to read. Let them read for @PERSON1's sake. But like I said, everyone has their own opinions." 4 4 4 4 4 4 +4115 2 "I am writing this essay to you to tell you. That offensive books,music,movies,magazines,etc., Should not be on our library shelves. Because If are kids pick them up there will be @CAPS1, and crime. Some people mite ask how do I know this well say you see this cd cass that says black mans only cd. And a white boy picks it up well then a black kid sees it and that white boys hand the black guy will try to rip it out of his hand. Therefore starting a fight." 2 1 2 2 1 2 +4116 2 "What should and should'nt be censored in a library really is just a matter of opinion from the people using the library. If everyone were to removed what they didnt like from the shelves of a library then much information would be less acceceble to the general public. Although some people @MONTH1 be offended by some forms of literature, this doesnt mean that the literature should be removed from everyone. I beleive a solution must be made to satisfy everyone. Currently, some people arent happy with some of the books, music, movies, and magazines that are available at many libraries. They believe that the information @MONTH1 be unsuitable for some veiwers. Some people just do not want certain information getting in the minds of children. While that is a very solid reason to censor what goes into our libraries; there are others who dissagree with the thought of censoring our libraries. By allowing the censoring of libraries it would decrease the amount of information available to the public. If parents allow their children to take out certain materials without first checking whats behind the cover, then the parents have noone to blame but themselves. I believe that this could all be resovled by simply having parents fill out a form before allowing their children to get a library card. This form would include a list of things that they would want to prevent their kids from checking out such as: swearing in books and music, nudity in movies and magazines. This information would be put with the cerial number of the library card. If their child were to checkout something that is restricted on the list, the librarian would tell them to put the book back and pick another book. I can see how censorship is very useful and important. Although sometimes it can be takin a bit to the extreme. There is a solution out there, but we just need to find it." 4 4 4 3 3 3 +4117 2 "In the library I have noticed that there are a few literature materials that are not suitable for a younger age group. Such as rated @CAPS1 movies that contain things like drug use, sexual content, and extreme violence. Not all libraries have movies, and the ones that do don't let anyone under the age of @NUM1 rent out a rated @CAPS1 movie. Another example would be magazines that have articles/advertisments and pictures that are more towards the sexual side. This is a problem with children because then they think that that's how they should look and act, when they are older. Most libraries are divided up into different sections, there is a section for adults, teens, and children. The sections were created for a reason to show/tell people that some materials in this section @MONTH1 not be suitable for teens and children. Then if your in a childrens section you know that not many over the age of @NUM2 will be wanting to look around for books. In the childrens section a library normally makes it look bright and colorful which most children love. This helps the children stay there and not wonder off into one of the adult or teen sections. When I was younger I didn't really care to go into the adult or teen sections cause I enjoyed reading 'The @CAPS3 in the @CAPS4', '@CAPS5 @CAPS6 @CAPS7 @CAPS8', and many other children books there. Children have a lot of things to satisfy them at the library there's children movies/shows like '@CAPS9 @PERSON1'. They also have an unlimited amout of books that can keep them entertained. If movies and books don't work for them then there are also a few toys they can play with (at least the libraries I've been to have toys). The only real big problem with having things unapropriate in the library is that the younger teens might wander into the adult section, and sometimes there are adult things in the young adult section. Again with the movies, there are tv shows that I've seen at the library that are about teens doing drugs going to parties and getting drunk. Things like that I think put a bad influence on younger teens. Making them think it's okay to do drugs and drink, that it will make them more popular and cool. Over all I think that libraries just need to reorganize there books, movies, and magazines. Then all the right items will be put in the right sections and there will be no accidents where someone accidently picks up something that is inapropitate for their age group. The music in the library I don't think is much of a problem. To me music is something more to express your feelings. This is my view on censorship in libraries" 4 4 4 4 4 4 +4118 2 "@CAPS6 are many books out @CAPS6 that, if looked into, have something obsene or vulgar in it. Despite the fact that children of certain ages probably shouldn't be reading these types of things, the book itself should not be banned from the shelves of libraries. Authors write or type every word for a reason, whether happy or sad or vulgar. @CAPS6 is a reason the author wants the reader to read these 'offensive' things. Everything you read in a book is @CAPS6 because the author wanted you to read it, not to just put it @CAPS6 to fill in or to be nasty. I agree that children shouldn't read these books with that kind of material in them but that doesn't mean take the books down. The library where I live has sections for children, teens, and adults so that @CAPS6 is no confusion or concern of the content of the book. You have to be of age in order to take some of the readings home. I personally think that this is a great idea and will comprimise both sides that don't want their kids reading these books and those who want to read the book without getting rid of anything. If the latter was taken in to effect though, some of the classic and prize winning books would be taken off the shelves, such as To @CAPS1 a @CAPS2, The @PERSON1, @CAPS3 @CAPS4's @CAPS5, and much more. Such harsh actions aren't neccasary when a much simpler and more effective way to be accomplished. Although offesive material is a concern for children @CAPS6 are much better ways to have it so they can't read them until ready. No book should be taken off a shelf for its content." 3 3 3 4 4 4 +4119 2 "I feel that books, music, movies, and magazines should not be removed from shelves. Just because some one @MONTH1 finds them offensive. They only become offensive when people think they are. I feel this way because no one is forcing any ony to watch or read any thing they dont want to. No one is telling sudents what they can and can't watch or read. Every one has the choice. To choose what they want to read or watch. what one person @MONTH1 find offensive and wrang. Another person. @MONTH1 find interesting and exiting. I have felt the same way before, but that still gives me no resone to take it off the shelf. The next person after me. Has as much the same right as I did. The person has the right to watch or read what I have. To like or hate what ever is on the shelves. There are lots of things in a @CAPS5. Other than things that people @MONTH1 find offensive. There are scary books like '@CAPS1 @CAPS2.' @CAPS3 @ORGANIZATION2 best selling auther, @PERSON2. There are mistury books like 'The @ORGANIZATION1.' @CAPS3 another @ORGANIZATION2 best selling auther, @PERSON1. So to some up my esay. Nothing sould be taken off @CAPS5 shelves. Just because i or any one else finds them offensive" 3 3 3 3 3 3 +4120 2 "I believe that there are many books in a library that should not be avalible to everybody that goes into a public library. Yes there are some very offincive items in a library, such as a book about racism to african americans. No, that person who takes offince in those itmes does not have to be around them or even go into the library at all. The library is open to any and or everybody. Lets suppose you have a young child, and you take him/her to the public library with you. As your looking for a book the child reaches to the highest book that he/she can reach, pulls it off the shelf and it lands on the floor open. You look down to see what had happened and you see the book lying there with an inappropriate picture right infront of your child. Thats your own fault, not the librarys. Although many times its not the librarys fault where certain books are at, you should be more responsible and check out the area in which you are looking. I think there should be a select area for which the 'inappropriate material' should be kept. And for a person to get into the select area they must show a membership type of identification, and sign a waver saying the material they have checked out will cause no trouble nor take offince to anybody in which the customer is around. And that is my view on this subject." 2 3 2 3 3 3 +4121 2 "Books being taken off the shelves? No way! The @CAPS1 is the place to go if you want books, movies, music, etc., that fit what you like and want. Should some material be taken off the shelves all because of it offending someone else? No, because Libraries are ment for everyone for a reason. Everybody is diffrent. Which means everyone comes to the @CAPS1 for diffrent types of information. If the libraries took off all material that offended people there would be nothing left. What offends someone @MONTH1 not offend someone else. For example, the libraries have information on the @ORGANIZATION1 history. While some people like that kind of information and want to continue learing about it, the information is also offending @CAPS2 @CAPS3 who it talks about. But really if you think about it, its all selfish to take away material someone else wants to learn about. It would be keeping the next generations to come from learning everything they possibly could or wanted to. When people go to the @CAPS1 they know, no matter what information their looking for, they will find it. Isn't that whats so great about trips to the @CAPS1? Looking and finding things you never learned about, even if it offends others. All that matters is that your head is holding more knowlege about that certain subject. It will never be okay to take certain material off the shelves that offends other people because libraries are ment for everyone for a reason" 3 3 3 3 3 3 +4122 2 "Should certain materials, such as books, music, movies, magazines, etc., be removed from shelves if they are found offensive? I do not think that certain materials should be removed for many reasons. Many different people have many different thoughts on whats offensive and what isn't like some people will find something funny that some people @MONTH1 think is nasty or inapropiate. If you was to take things off the shelves that someone found offensive there probably wouldn't be much left on the shelves because everybody has they're own oppenion. I agree that certain things shouldn't be seen by young eyes but thats the parents decision, not everyone has the same view on the material. Certian materials should not be removed from shelves because of one persons oppenion on it. Everyone has they're own oppenion, some people like what other people don't everyone is different in they're own way" 3 3 3 3 3 3 +4123 2 "I firmly believe that the removing of books, music, movies, ect., from a shelf just because someone finds it offensive will not solve the problem. A person can find many things in life offensive to their personal views, but they can not just remove them. To remove books, music, movies, ect., from people who do not find them offensive could provoke chaos. As Katherine Paterson stated 'And then we have no books left.' If everyone were to choose books, music, movies, ect., they felt were offensive and should not be placed in the library the statement would probably be true. Besides the point the library is sectioned off into different genres, so if you have a different view of a certain genre of books, movies, music, etc., skip over that section and go to the genre in which you prefer. In other words, the things that @MONTH1 offend one person @MONTH1 not offend another person. So to remove one particular thing would be unreasonable for the person who likes or finds interest in a particular subject. So instead of there being a problem with one person there would a problem with two unsatisfied people. Not saying that it is right, but the library has done particular things such as, separating the books for reasons like this. According to Katherine Paterson, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' The library has a section for children only. Therefore worries of problem like this have already been solved. The books, music, movies, ect., in the childrens section is age apprioate for a child. Books, music, movies, ect., are also sectioned off for teenagers and adults. In conclusion, the removal of books, music, movies, ect., that are found offensive by others @MONTH1 not be found offensive by someone else. It is not like the library would purposely offend anyone by having the books, music, movies, ect., on the shelfs. If you are mature enough to understand that and over look something that @MONTH1 offend you, you would not be so offended. Also if the library is sectioned off into different genre, you can easly by pass a particular genre you wish to avoid. Problems can be easily solved if they are dealt with in the correct manner." 4 4 4 4 4 4 +4124 2 "I dont think so becuase what if that is all the person likes to read. They could put all the bookes in to diffrent sections so that littel kids wont be learning words they shouldnt know wright now. the librarian could also make it where you have to be a sertaint age to cheak out a book. There are a bunch of ways to orginze them in to sectoins like make a kids section, a teenager section, and even an adult section. But i dont think the should take the out of the libary for good, becuse there are a lot of good books with some bad words in them. just becuase ther are some bad words in abook does not mean the book is bad" 2 3 2 2 3 2 +4125 2 "Keep it on the Shelf! What types of things do you go to the library for? Some go for books and others go just to relax in a quiet environment. Yes, the library is mostly used for books and studying, but there are many other things that libraries contain. Movies, magazines, music, etc., are all found in a library. Now, say you had to listen to a specific song, read a certain book, or review an article in a certain magazine, and you can't find it at the library because they have been removed because they are found to be offensive. All people have different views on what is and isn't offensive. Everything like books, music, magazines, and movies should all have their place in a library, regaurdless of the material. Books can be used for many things. Some read just for the enjoyment and others read because it is assigned to them or they need to research some things. Books give information and knowledge that some people need desperately. What if you can't find that book because someone said that its material is inappropiate? What are you supposed to do about your research paper now? If a book is needed it should be able to be found on the shelf in a library and not be taken out because of the content of its pages. Music is a great way to clear your mind and relax. Some music found in libraries can be somewhat offensive to some people. What if the only place you can find your favorite music is at your public library? You walk in and they no longer have it because it is considered to be offensive. Now you can no longer listen to the sounds that calm you down or modivate you to get your day started. Music should remain in libraries because of the cultural and educational sounds that most cannot find at their local music store. Magazines are another great form of reading material found in a library. Magazines are a great way to stay up to date with the latest fashions and great dessert receipes. Without magazines our world wouldn't be able to keep up with the things that advance in our world everyday. Magazines show us the hottest trends, the gossip in the celebrity world, and some great facts from educational magazines. Without the magizines in the library we probably wouldn't know anything about our advancing world. You can find movies anywhere, but some believe that you can only find the really good and old movies at the library. The library has educational movies for children that @MONTH1 not be available anywhere else. They also have old classic movies that aren't even around anymore. The library has many movies that you wouldn't be able to find in our advanced world today. Libraries hold a lot of important books, movies, music, and magazines. Without out most of that, regaurdless of the material, we probably wouldn't know as much as we know today. The library has always been a place where you go to find exactly what you want and you know that they will have it. Removing these things from the shelves can be taking some history right out of our lives. All of theses resources should stay on the shelves regaurdless of their material." 4 4 4 4 4 4 +4126 2 "Can literature, which is the basis of civilization, be censored? Can you take these ideas away from those who wish to think them? I think not, for it would be a futile endeavor to even attempt. To keep something as important as written word away from the culture of the people, would be one of the highest crimes against humanity and could not rightly be condoned, in my mind. Not only would this attempt be a futile (for the people know ways to extract information) it would be downright idiotic of the 'administration' to do so. I will concede that there are explicit materials out there that are not suitable for children or even adolescents, but that is where the parent should step in by setting guidelines and positive examples which their children feel the need to follow. Not feel that they 'have' to, but feel that they 'need' to. If parents cannot take control and decide what is appropriate for their children, then in my mind, they are not doing their first and foremost job as a parent that is to protect the child. Some @MONTH1 say that the censorship of culture is protecting the children, but I say that this is not so. I believe censorship is a lousy excuse so that parents and upper government officials have to do less work. If every piece of written, filmed, or recorded work, that was offensve only one person, was thrown out on that basis, there would be none. There has never been a piece of literature, film, or music that has not offended someone in some way, whether it be spiritually, ethnically, or morally. The fact is that people cannot exist without strife and misery, and whatever people can do to cause that strife and misery, they will. People find all sorts of ways to do it, whether it be war, discrimination, media, or just downright obstinance, they will find a way to offend their selected party. I personally am appalled at the aspect of censorship, for if a person cannot speak his mind, then is he more than a mindless homunculi? Created and controlled by the government surrounding him. Made their slave through ignorance. If in a society I cannot say what I need to say then I do not wish to live in that society, for it is nothing but a horrible image of civilization. In short I do not believe that libraries should be censored, rather that parents should pay more attention to their children and dependents. If a person is offended by a certain thing, then it is their absolute right to not take part in whatever it @MONTH1 be, but these afflicted peoples have absolutely NO right to say what I @MONTH1 or @MONTH1 not read! If this offends anyone, then I apologize, but at least you knew enough (through your education by media) to be offended and not just another mindless sheep" 4 4 4 4 4 4 +4127 2 "Do you think that some materials, such as books, music, movies, magazines, etc., should be taken off of shelves if they are found offensive to people? This is a question that all of us have thought about at one point or another. For some, it just depends on your age, your beliefs, and if you actually know if it is offensive in the first place. In my opinion, I think that the offensive materials should be taken off the shelves. First of all, I think a lot of it depends on your age. For, example, most older people think that most of the material made today is just crazy and do not want anyhting to do with them. Although, for the younger people, thet is what is new and 'cool' to do. I do not believe that anything bad or offensive should be shown to any little kids. We want to keep it away from them so that in the future, they know not to use it. In my own experience, my parents kept me away from all of the bad stuff for the most part. I think it has affected me a lot today on who I am today. Next, I think for some people, it depends on their beleifs. A big thing with this is race and culture. I often find books, movies, or magazines offending another race. This the the thing that I find most disturbing about some materials. Anything offending another race or culture should be taken off the shelves immediately in my opinion. There are countless numbers of these materials just theat I have seen and I am sure that there are many more. It @MONTH1 be impossible to ever get every single one of these off the shelves. Lastly, I think that a lot of people do not know that what they are going to read, watch, or listen to, is going to end up being offensive. I have seen a countless number of movies and listen to a countless number of songs that were offensive. The sad thing is, I did not know it before I did it. A lot of people just go into their material as blind as a bat, as far as knowing if it is offensive goes. I think that if the material is not taken off of the shelves, then it should at least be marked as offensive. All in all, I think that the material should just simply be taken off of the shelves. We have gotten to the point where there is so much out there that it is nearly impossible to do. Even though there are factors like age, beliefs, and knowing what you are going into, I think these materials are just bad for everyone. In my opinion, offensive materials should be taken off of the shelves" 4 4 4 4 4 4 +4128 2 "Have you ever came across offensive material inside a library? Well some people have and they think there should be some type of censorship in libraires to protect the offended people . I do not agree with this idea because people should have the right to express their self through art, literature, and even music. After all the freedom of speech is written in our rights. Many authors , artist and musicans have the freedom to express themselves through their work. If they saw their own work in a library being censored it would be very offensive to them. I understand that the artist's material could be offensive to certain people but it is their work ,a form of self expression. They do not publish their work to offend people , they do it for themselves and for other people to enjoy it. An artist's work is a part of who they are. A censor would just put a negative aspect to the art and literature of the library. Over many years most libraries have devloped and arranged their media into a system called @CAPS1 @CAPS2. This system seperates all books, magazines, music, and movies into their own genres. For instince if you are looking for a mystery book , you would find it in the non fiction section. This system helps people find exactly what they are looking for. If people are offended by a certain genre they do not have to come in contact with it. This system is a better way to find exactly what you want instead of coming across a book or movie that you would find offensive. Almost every library uses this system so they do not have to use a censor. Everywhere we go someone somewhere is going to find something offensive. It is basically part of our human nature. It is truly impossible to make every single person happy with everything in the world. In a library there will always be a book that someone disagrees with or someone will find it offensive. The author of that book and other people who enjoyed it do not need to be punished by having the book taken off the shelves. Just because the book offends one person does not mean it has to be taken off the shelf or have a censor. If everytime that happend there would be no books left to read in our libraries. Most people would not even call that a library. In the end a book is a book , music is music and we are not going to create censors or take books of the shelves because it is offensive to people. Authors write what they want to write , musicans play what they want to play, and actors act how they want to act. After everything it does not matter what is offensive to people , they will just have to deal with it. There is no reason for a censor in a library" 4 4 4 4 4 4 +4129 2 "'Everyone has @CAPS1 @CAPS2' @CAPS3 is true that everyone has their own @CAPS2 and their likes and dislikes. For example, books. I do not like books that are about illegal substances, but I do believe removing certain materials that are offensive should not be removed from the shelves in the library. @CAPS3 is true that finding inappropriate book or an article @MONTH1 be disturbing to certain people, but @CAPS3 does not mean that everyone finds @CAPS3 offenive. Once, my @CAPS4 class was assigned to do a book project. The main pourpose was to find a non-fiction book and create a powerpoint presentation on the main ideas of that book. One of the classmate read and had a breif presentaion over a book that was about illegal drugs. I know in fact that not many people are offended by the words such as 'drugs' or 'alchol', but I find these words to be obnoxious. While I found @CAPS3 disturbing and uncomfortable, others found @CAPS3 interesting. @CAPS3 was a topic that drew their attention, but not very appealing to me. Another example would be the time I went to the library to write a research paper about the human body systems. My friend, @LOCATION1, found @CAPS3 disturbing to look at some pictures because @CAPS3 showed blood. Strangly, I never thought blood as anything disturbing. While @PERSON1 found @CAPS3 disgusting to look at, my head was in the book because @CAPS3 was fascinating. I always thought how the human body works is incredible. What @PERSON1 did was instead of trying to deal with the picture, she wondered off and tried to find another book that does not have any grotesque pictures. The book did not have any benefit to @LOCATION1, but because of that book, I received an 'A' on the research paper. I believe @CAPS3 is important that people accept the fact that everyone does not have the same opinion. Every individual is different in their own way. As I mentioned before, the book that was disturbing to me was interesting to others and vice versa. That is normal and there is nothing we can do to change about @CAPS3. If permission were given to remove any certain materials that is offensive to each and every person, I guarentee that there would not be any material left on the shelves. I think the best way to solve this problem is for he/she to ignore the book that seems to be offensive and look for different material because others might need the resource" 4 4 4 4 3 4 +4130 2 "I believe that if something or someone offends you, you have the right to take a stand. You shouldn't have to deal with it. If something is offensive in your library, it has no right to be there. A library is supposed to be a helpfull place. Who would want to sit back and watch a raciest movie? Who would want to have a little kid watching something sexual in a movie? Magazines can even develope a lot of problems. Muisc can be straight offensive. If a young adult or a child reads or watches a movie that is raciest, it teaches them bad things. Racism is a very hurtful thing. What you see or read can really have an affect on you. You @MONTH1 not realise that it is wrong. It could have you saying hurtful things to a differant race. If a person isn't raciest and they see something that is, it could offend them. They @MONTH1 feel like they 'cool'. They go out and say raciest things. It makes them feel good. Later on they feel guilty. All because of a movie or book. If a movie is making fun of your race, it hurts. Being made fun of hurts. It is technicly bullying. Bullying can lead to suicide. Who cares if someone is black or white? We are all the same deep down inside. Movies like this should be banned from public libraries. Movies today can have pretty much anything they want in them. Sex, drugs, cursing, etc. Kids can get by with watching them without anyone saying anything. The librarian just swipes your card, then you have the movie.They @MONTH1 not know right from wrong. If they see someone doing drugs or having sex, they might think that it is cool. They @MONTH1 go out and do it. We do not need movies like this in our public library. We should make it a lot harder for kids to try to get movies like this. These moives can also offend us. Make us feel uncool. Make us feel like we have to go out and try it. In magizines today, they make everyone look so perfect. These people can offend you. Young teenage girls or even boys are the ones mostly looking at magizines. If you see @PERSON1 in a magizine, you begin to want to look like her. You see how skinny she is. She is tan. She has perfect skin. Its normal for someone to be jeleous. We are only human. Sometimes these images get to us. We @MONTH1 starve ourselves to try to be skinny. That can be very dangerous to your health. These girls knock our confidence down. Into today's society, people stive for popularity. They want to look perfect. They want all the guys to stair. We use the girls in the magizine to helps us know what we want to look like. You should love who you are and what you look like. You are unique. No one has to be skinny to be pretty. Magizines can be offensive. In today's society music is horrible. Rap, country, or rock music. Some of the lyrics can really offend people. The words get in your head everytime you hear the song. If you really take the time to look up lyrics to a song, you will realise that they will let you say anything. I can't name how many songs I know, just beeing a teenager, that make fun of something. For example, there is a song by the band @ORGANIZATION1. It is called 'I must be emo'. It makes fun of people who are unique in their own way. Some lines from the song are, '@CAPS1 I get depressed, I cut my wrists in every direction'. How can you make fun of someone who does self harm. Depression and self harm are a big thing in today's society. Their is nothing funny about it. If someone who hurts themselves hears this, think of what could happen. It would really offend them! They could go and cut theirselves even more. They could try suicide. In the song it also makes fun of gay people. It makes fun of the way 'emo' people look. 'I look like I am dead and dress like a homo', is another line from the song. I don't know about you but to me that would be terribly offensive! We need to get these types of songs out of our libraries. We should have a say to what is in our public library. The library is ment to be a good place. Anyone can go their. We are all unique in our own ways. If something is offensive to you, you have the right to stand up for yourself. We need to make offensive books, movies, magazines, etc., harder to get a hold of." 4 4 4 3 3 3 +4131 2 "Would you censor the @CAPS1? i @CAPS2 i sure would not. The @CAPS1 is a very percious and religoius part of our nation and history, but this is just a mere example. There are thousand of books, newpapers, articles, and media that play and important role in the history and the future of human beings. Common sense or also referered as common knowledge is something that we dont pick up outa no where. We absoub it thought this that do, see, and read. An example is the 'The @CAPS4 @CAPS5' this is a book of a @CAPS5 that meets a young boy and the @CAPS5 is just thrilled to be of purpose for the boy. Throught out the story the @CAPS5 gives the boy its apple, its branches, and even its trunk. but the @CAPS5 is happy. at the very end of the story they former young boy is now a old man that just wants a place to rest so the @CAPS5 straightens up his stumb and is just happy with @CAPS4 the old man his happiness. Now would you censor that?! That story reflects that helping someone is a key to life. That @CAPS4 someone else happiness is the true gift of life. Now relegion is something that is censored alot these day... Why?! The @CAPS1 for example is just a book full of short stories that ties together. Indivigle tha stories are just little reminders of right and wrong, kindness and jelousy. Its doesnt say if you have to follow every word and every sentence by day and night. its just helpfull advise, And really who has not asked someone else for advice? @CAPS8 relgion on tv, in schools, and everywhere else is telling us we dont need relegion for us to be productive and honest. Me coming from a roman catholic and christian background have never really went to church or read the @CAPS1 am swelled up about relegion. Thanks to a close friend. @CAPS8 could also be good at its points though. For an example @CAPS8 adult type content from minors is helpfull sence little kids dont @CAPS2 much of anything. They just go with the flow. Another example is @CAPS8 mail sent to different countries. This helps keep our country safe from invasion and war. so i will say that @CAPS8 can be a good thing but too much of it can be bad. Such as @CAPS8 relegious content, or @CAPS8 classical book that teach you common knowledge that will help aid you in the future. This stuff is something that should be @CAPS10 by ages and ages to come!" 3 3 3 2 2 2 +4132 2 "Shut down libraries? Yes, I do, because music, movies, etc. could not only contain unnessisarry attire, they could also contain potty mouth language. The words could, and can, corupt the minds of youngsters. All librairies put them there because of the needs of customers. The things they do to make some cash around here, do you agree with me? They should create seperate libraries for each type of reader. Still, they put all of these things in the same building. They should put up sales for kids' movies not adults, but the librarians say 'books are books'. I think I'll write my own @CAPS1 sieries, thank you very much. However, because some have dull enviornments, or lack of customers, some libraries close down. Make use of that thought I just told you. I wonder if some books on endangered species of fish. But some kid's sieries are dieing of because of more popular ones, or being replaced by some family stories. If a little kid were to listen to some cursing, his/her mind will be warped for life. What chic-cursing out loud in front of the baby. How about saying '@CAPS2 @CAPS3 that?..' or '@CAPS4 that ball, you meanie!'? Maybe THAT will give some education. However, some older boys and girls are teaching this bad language to the young mind-maybe even before they learn good language. Those dilenguents don't care about their minds at all. Your honor, I have my proof right here. I suggest reeducating those teenage dilenguents to acting more @CAPS1." 3 3 3 3 3 3 +4133 2 "With the world having a wide variation of cultures, languages, beliefs, and races, there is no doubt that different subjects will be offensive to some and not to others. Books, songs, magazines, and movies all have purposes as to why they were created. This @MONTH1 be to entertain, inform, or persuade. People use libraries as a source to see these works. Many people use libraries every day to research or simply to gain knowledge for fun. My opinion is that any type of material, no matter what it contains, should be able to be found on a library shelf. A library is a place where one should be able to find a book, cd, video, or magazine or any subject that interests them. If our libraries took out every item that was offensive to someone, there would simply be no library. Any item you read or listen to will have a word, sentence, or meaning that will offend a person in some way. This is because many of the items you will find will be in some way biased. The way an author tries to entertain @MONTH1 offend you if they use a certain language with a certain tone. Persuasion is also biased towards one side and you @MONTH1 not agree with the side the author chooses. The same goes with informing. You @MONTH1 think the author needed to address a certain point more than he or she did. All of these purposes of writing will be offensive to someone. I once was in a library and read a magazine talking bad about teenage drivers. The article was obviously biased and did not have any teen sources to prove that not all teen drivers are bad. This article deeply offended me, but I am glad I read it and saw a different point of view. Not everyone wants to see the different points to a story, but if you happen to run across one of these items that offend you, you can simply put it back down on the shelf. You are not required to read or listen to any item that you do not want to see or hear. However, there is going to be someone who needs to use that item for personal knowledge or for research. This is why all items need to be available to the public. If someone does find an item offensive though, they should be able to request that a label be put on the item to further warn other readers. Likewise, if there is an item rated '@CAPS1' there needs to be an age limit set to protect our young readers and listeners. With these changes set, our libraries could make everyone happy. With libraries being found in most communities, there is going to be discussion on the contents of the items they carry. While you @MONTH1 like a book, I @MONTH1 find it offensive. Even though I @MONTH1 have a problem with an item, it still needs to be able to be accessed by all people. The point of a library is to carry items which will benefit the public. It is the right of any human to be able to go to a library and be able to read about any subject he or she wants. Any item, whether biased or not, should be able to be found on the shelves of a library. Those who do not agree with or want to read an item should simply stay away from that section and choose a different item which interests him. We need to be able to go to a library and find what we need or want to see or hear. This is how a library serves a community" 4 4 4 4 4 4 +4134 2 "As a place used to gain knowledge and wisdom, a library is a wonderful resource. Multiple variaties of books @MONTH1 be found at a local library from documantaries to science-fictoin or just fiction. The most amazing part of a library is the fact that one @MONTH1 choose what he or she reads. Yet if one man opposses the view in one book and believes a certain book should be removed from the library, then the freedom of choice is lost. The selection of reading should be open to every reader, and although some @MONTH1 disagree, heavy censorship of libraries is an unnecessary meassure that constricts the ability to gain knowlegde. In today's society, many people differ in taste or genre. So much so, that at times it is hard to find a common ground in a large group setting. The library is a place where people @MONTH1 be able to enjoy their diferences, reading different types of books spread across many shelves. Yet if one person dilikes a book, their opinion should not influence the removal of the book due to their preference. Author Katherine Paterson made a wise remark on the idea of censorship saying, 'If I have the right to remove that book from the shelf-- that work I abhor-- then you also have exactly the same right and so does everyone else. And then we have no books'(no pag.). If one person finds a work to be vulgar and believes it shuld be removed from the library, then what stops another person from removing a book that they dislike? If heavy censorship is allowed in libraries, then libraries will become diminished resources, only containing a few documents. Still, censoring age specific materials is necessary in libraries. Allowing a child to read or watch a movie or book that is inapropriate, is an inexscusable action. Censoring books for children does not mean removal of said book though. Removing a book from the shelf of a library is just as wrong as allowing a child to read a book that is too mature for his or her age. Katherine Paterson stated, 'All of us can think of a book that we hope none osf our children or any other children have taken off the shelf. But... then we have no books left on the shelf for any of us.'(no pag.). The censoring of books in a library cannot lead to the removal of books that have shaped our society and ideas, even if it is to protect a child. A medium must be found between true censorship and opinionated removal of books, due to one's belifes. Doing so will not only help libraries but also society. There are many different opinions in modern society and due to the differences in beliefs and ideas, at times people will disagree. Yet it is important that poeple agree on allowing each other to have a choice. A very important choice that each individual makes on a daily basis is what to read. Libraries allow for people to make their choices and help to expand one's knowledge in the process. Literature, whether it is found in a library or at one's home should never be cast out due to someone else's opinion. Censoring of libraris should be considered, but not at the exspence of knowledge. Libraries should not be censored." 4 3 4 3 3 3 +4135 2 I believe that this idea is not a good idea because some of the the students would need that information to look up ideas that they would need to write about in a report or to right in a final. The reason the libary is here for the students to have and take there advantge to put time in to looking up what they need for their classes.knowing me I put the time that I need to do my work in class so i know what is need in the report so I know im doing it right and not just making up something that I could just stick in the report. I see that it is imporant to keep the materials in the libary to have the convence to have thing that is needed to have to look up a celebrity that is inporant to keep in touch with . If your writing in the news paper you are needed to the infomation that you can get your hands on to keep all the students informed in how there celebrity is living there live. If students are ready to graduate and there needing to go on line to look up type of colleges that they could attend before leaveing @ORGANIZATION1 so they could be prepard to be ready in the world they were set out to be living in to start a live and acomplish thing that our parents didnt get to do. The intrest of the libary to inspire some of the readers in the class to go out and read book that can show the situation on how your health benifits are by looking in the cancer book for information from how the sun and going to the tanning bed can cause skin cancer and can hurt your skin just by makeing your self look older by gettingas tanner. I think the situation of the libary is to be use to for our education and our benifits to learn more from book and reading it a lots interesting than just watching a show or a rerun of a tv show or even movies that show all the action in a movie that you can get from a book with more details 2 3 2 2 2 2 +4136 2 "It really don't matter to me because I only go to the library to get a book when my teacher at school makes me. But a library should be able to put whatever they want out on a shelf because the library is devided up in sections for kids, young adults, and adults. If a person don't like what he or she sees on a shelf at a library then they don't have to look at it, or check it out. Just because one person don't like it dont mean someone else dosn't. Librarys don't make people look at or check out something they don't like. so why are people complaining about it. They are getting to checkout books, movies, and music for free unless it becomes over due. So people stop complainging about what the library has on there shelves." 2 2 2 2 2 2 +4137 2 "In the @LOCATION1 @DATE1, there consists of many libraries that are available to the public with an interminable amount of information. All of this information gives us many opportunities in life to discover new courses and paths to take. Byt what if some of this information has a bad influence in our world? What if some of this information changed the persective of peoples' lives, and who people are? Libraries do contain offensive and provokative books, movies, and other things that can possibly be hurtful to the behavior standpoint of all human beings. Censorship in libraries should be established and set because the people in the @LOCATION1 come from many different places making the @LOCATION1 very diverse. One thing in a book @MONTH1 not be offensive to one individual although it could be for someone else. Magazines, movies, books, etc. should be examined and determined whether it is appropriate for people at certain @CAPS1 whether by building a child section for books and movies and such, or having knowledgable assistance to help what people are looking for. Sections in libraries organizes the library providing and easier access to where things are located. In libraries, there are search engines to help people find information in a particular location. The benefit of having sections divided depending on people's @CAPS1 is that it seperates the mature section from the immature section appose to having both in one. Children normally have a seperate section for children books while older and more mature adults or teenagers have a section to gather their important information from. An example of a bad situation would be if their was a book located in the childrens section that spoke about drugs and alcohol. The children that scrutinized that book would be confused because they do not understand what drugs and alcohol are. They could learn bad things about it and children tend to think they are invisible drawing them to try anything or everything that could possibly be life-taking. This is common sense. Sections in libraries do help establish a sense of organization, although personal assistance would be helpful as well. Personal assistance and help on finding information in libraries is very helpful although they must be mature, understand, and know that their are books in libraries that could be about offensive material. Asssistance can help us determine if the person that is looking for information about something and there is inappropriate stuff inside the book, the assistant can let the person know about it. Because there is an interminable amount of information, I believe that there will be books left on the shelf for many people to learn about. Everytime I visit a library, there are always books on the shelves, and when I ask for assistance, they help me find what I am looking for. They warn me about offensive or provokative imagery and such and help me with upmost respect. Assistance can help prevent any sort of confusion with books, movies, etc. Assistants are ready to help people find what they are looking for and warn the people and are knowledgable about the offensive things that are in each book, movie, etc. Personally, I believe that freedom of speech comes into play in libraries. Writers and authors write about information that is fact or also opinion, and typically people learn about subjects that people enjoy or want to discover. Censorship in libraries is necessary to let people know about it, although assistance do not have the right to not let anyone read a particular book because it is inappropriate or provokative. Everyone in the @LOCATION1 has the right to read whatevery they please. Some measures must take place for example towards minors because otherwise it could lead to issues or disasters, but there should not be a law that prohibits a child from reading something. There is no such thing as a book that should be thrown out because every word that comes out out of peoples' mouthes are useful no matter how rediculous it is. Even if it is the most rediculous thing you ever heard, that particular person that said something made you think about it and that thought process helped you make a decision in your life that was next to come. This would be more on opinion based writing. In factual righting, it is something that remains in peoples' heads and is saved into the brain like a word document. This document that is saved can be changed and saved again even if the knowledge is offensive. Offensive factual information is hurtful to some although it is fact meaning it happened or is true.This brings me to my persepective on the matter that I think there should be a sense of censorship within reason although everyone has the right to read whatever they please because there is a never ending amount of information in the world and that information, including opinion, would make the shelves be empty from books" 4 4 4 4 4 4 +4138 2 "What would you say if your library was censored? Would you believe it would be right to have a censorship at the library? Well I am here to explain my belief's on censorship in the library. My opinion is that there should be some items being censored, but we dont want to punish everybody just by taking the books off of the shelf completely. If i was an adult I would not want my child renting very graphic books, magazines, etc. but i wouldn't want to block his whole life. There can be different censorship on individual people too. An idea is to have a parent come in to decide what type of censorship you can put on a child by putting this on his or her library card. The censorship would be a great way to help parents watch what their children are reading and watching. A good suggestion for this is what i just brought up, a personal censorship. This would keep the child from reading too graphic of novels for their age and it would not offense the parents. Also for the rated x magazines, movies, etc. i believe they shouldn't be took off the shelf and just moved to a different area that is secluded. This can be offensive to parents when they bring their children in, so move it to a place where children cannot have access to this area. The censorship on books can also be completely outrageous too. Alot of books have graphic parts in them but yet are also a great read and can have great morals to learn. Graphic parts of the books are like the graphic parts of our lives, it's going to happen no matter what and we can't get away from it. Let the child, teenager, or whoever it is read the book if they are mature enough to read this and don't take it off the shelf. Just because it is offensive to some, others want to read the book too. You @MONTH1 please some with this idea but you will also anger others with this action. Another point to get across is the library is also censored a little bit too. The libraries are organized into section by categories of books. Some books are categorized by the age level they are intended for. Once you get into the actual novels it isnt much like this but for younger ages this is the case, which people can see it work as a censor in ways. When you become to the higher reading level, you are most likely going to be old and mature enough to pick what you think is right to read and what is not. With all this being said, there really doesnt need much censorship in libraries. Unless you have the personal censorship on the younger ones. There is no need to punish the ones that did absolutely nothing wrong to the community and to others when all they want to do is to simply check out items at the library" 4 4 4 4 4 4 +4139 2 "Everywhere a person goes, there is always a media source. Media can range from newspapers, to magazines, to the radio, and through the television. Media is used to inform citizens of occuring events and to provide entertainment. Many media materials contain photos, langauge, and etc. that can be considered offensive to citizens. Media materials should not be taken off the shelf if they are found offensive. In the @ORGANIZATION1, citizens have the freedom of speech. With censorship, authors, directors, singers and other producers are deprived of this right. If the government enforces the censorship law, people can not say what they want to or how they truly feel about a subject. Also with censorship, citizens are neglected of their right to watch and listen to what they choose to. Not everyone has the same opinion about what should and should not be blocked out of everyday media materials. Parents and certain groups have a huge effect on the production of censorship. Parents and these groups complain that books, television, and other media materials are offensive and otherwise 'harmful' to their child, and that they should be removed from the media sources. I believe that if a parent has a concern with what his/her child is viewing, then they should take matters into their own hands by not letting the child view this material instead of having it censored so the rest of the people can not watch it. Parents and certain groups should not have the rest of the world be neglected of their choice to view these certain programs and read certain things. Censorship can include anything from photos, to language, to news reports. People who believe that offensive material should be blocked out for young viewers and other people do not understand that at some point in a person's life they will encounter these materials. Sometimes, in order to understand a major world event, such as the death of @LOCATION2, have to understand the violence and forces that were used. If this material is taken offensively, no citizen will truly understand the real story and background of world-wide events. Censorship effects everyone, from a small child to a grown adult. It can deprive people of certain knowledge and understanding of certain concepts. Censorship should not be allowed in the @LOCATION1 and other areas of the world due to the lack of a citizen's freedom of speech and the rights that we as citizens hold" 4 4 4 3 4 3 +4140 2 "I believe that certain materials such as books, music, movies, magazines and other thing can be removed from the shelf. I believe that when we are cleaning off the shelf that @CAPS1 should be removed from the shelf. Other times I don't belive they should be removed form the shelf unless you're cleaning up. I'm a @CAPS2. I'm always trying to do the right thing. And everyday my parents have chores for me to do around the house and I believe that those should be done first insted of doing other things. And I think it's crazy to remove books and other things from a shelf unless a shelf a full of books and other things. And its something that would have to be done. Removing anything from the shelf is not bad. But it is not something that had to be done all the time. It is something that some people might do. It is not my thing. I'm always trying to be obedient and have good behavior around others" 2 2 2 4 3 4 +4141 2 "Should a library be able to remove a book or a movie from its shelves if someone happens to find it offensive? I believe that the answer to that question should be no, because everyone in the world could find something in a library that could be considered obscene or offensice. However, if a library decides to remove every piece of literature or art in its possession that someone finds offensive, the walls and shelves of its core would be bare. I'm sure you have seen and heard many people who have been offended by silly things such as children's novels, pictures in magazines, and song lyrics. I know I have seen people who have become livid because of how offeneded a piece of literature or art has made them. But with seeing such reactions, I've come to the conclusion that what someone @MONTH1 find offensive, another person could find beautiful. For example, paintings of nude men and women are looked at as wrong and disturbing by some and are also seen as masterpieces by others. Everyone has their own opinions about things but it's not the library's job to worry about which opinions are wrong or right. There is really no way to avoid offending someone without completely clearing the walls and shelves of a library. Simply anything could be seen as offensive to anyone. I know that I've personally found some books on the @CAPS1 @CAPS2 @CAPS3 to be disturbing because of how graffic they are. However, that doesn't mean other people shouldn't be able to read something a young woman found offensive. Offensive pieces of literature and art are often the best kinds because they evoke emotions in people, although maybe not the intened emotions, and make people think. You learn a lot when you're looking at something that has put strong emotions into you. With everthing going on in our society and culure today, in the @LOCATION1 and around the world, someone is bound to be offened everyday by something. Religious groups @MONTH1 be offened by the way a cover of a book is drawn or the pictures in a teen magazine and politcal leaders @MONTH1 be offended by what journalists are writing about them. You see, there is simply no way to avoid offending people. To me, it's truly surprising that libraries are still worrying about censorship when television shows are showing sex, drugs, and violence. People are obviously getting offened by what television shows are airing but, see, that's just it. The television shows are still being aired. Offensive or not, people are still watching, just as people are still reading books, looking at pictures, listening to music, that someone, at some point, has found offenseive. If a library decides to take out every offensive piece of literature and art what would be left? My friends, the answer is nothing. A beautiful creation to you @MONTH1 bring back horrific memories to someone else but that doesn't make it a bad creation. A novel that makes your stomach turn in knots @MONTH1 teach you more than you've ever learned before in your whole entire life. I hope people realize that just because something is offensive to someone doesn't make it wrong. Just because someone decided that they thought a piece of literature or art was not what they wanted to see or read doesn't give them the right to deprive someone else of the chance to read or see it. As you can clearly see, libraries shouldn't waste their time on censorship, because no matter how hard you try, someone will find something that bothers them." 5 5 5 4 4 4 +4142 2 Everyone has their favorite music they listen to or their favorite book to read even if it does offend a certain group or type of people. People do still read or listen to it. And the people who write the books or write the lyrics for a song are just expressing themselves. I believe that anything offfensive should'nt be censored because it's a way that people can express themselves. I listen to music all the time as long a I like the way it sounds. It doesn't really matter to me what the lyrics say and im pretty sure that goes for alot of people. But there are some songs out there that people feel they can relate to so they actually listen to what the song is saying. I don't really read alot because im picky about the books that I do read. That's not the case for everyone though. Alot of people like to read because it makes them feel like the book takes them to a different world. It's an escape for them from everyday life. Which I can understand why someone would want to escape. Movies are like books but you get a visual of whats going on. Which makes it more entertaining than a book. So more people would rather watch a movie. But the movies don't have all the details that the book has so the books are more fulfilling. And just because someone doesn't like a movie doesn't mean that there isn't someone out there who does because there is. So my conclusion is that everyone is different they like different things and dislike different things. But just because someone doesn't like something doesnt mean that someone else wont like it. Like i said everyone is different. So why can't the materials they read or watch be different as well? 4 4 4 3 4 3 +4143 2 "As a teenager I am trying to grow and find my way in life and find ways to express myself. I do not believe that certain materials, such as books, music, movies, magazines ect.. should be censored in libraries. Everyone has their own opinion on things such as the music we listen to or the books we read. I do believe that younger children like middle schoolers/preschoolers should be censored from violent songs and movies, but for highschoolers and older I think that it should be our choice. I think that if the libraries really believe that a book or magazine is truely offensice they shouldn't allow them to be published. Not everyone is going to like every book or every type of music that is out there. We should be able to get the books that we like from libraries. Like Katherine Paterson said ' And then we have no books left on the shelf for any of us.' If libraries are able to remove books music ect.. because they believe they are offensive there would be no books left for us to read or songs for us to listen to.I believe that highschoolers and older should be able do decide for themselves what kind of books they read or music they listen to. If you dont like a certain type of music dont listen to it, if you dont like the way a book is written, dont read it. No one is making you to read or listen to something that you dont want to. Books that @MONTH1 be offensive to some @MONTH1 be eye oppening to another. In books we learn about war and things that I fing gruesome and unnessisary, but sometimes it is a fact of life and the things we might find offensive in books are usually things that are happening in real life.I do believe that younger children should be censored form books and music that might be offensive, because they are not big enought to know what is right or wrong, and they dont know what to do with violent information in books about war and music with cussing. In conclusion, I believe that libraries should only censor books that are found offensice to parents with younger children and in younger sections of libraries." 3 3 3 3 3 3 +4144 2 "I believe that certain materials should not be removed from the shelves in a library. Libraries are meant to provide people with the varities of media that they need. This action will pose three things: business loss, inconvenience, and a narrowing of people's book selections. The first reason why libraries should not be censored is so they will not lose business. Just like any other industry, libraries need people to use their multimedia materials, such as: books, magazines, music, etc. so they stay in business. The purpose many people go to the library is to get certain magazines, or movies, and so forth, and to get rid of certain movies and/or magazines is getting rid of certain cuatomers. Another reason is the loss of business will lead to loss in customers, and if there are no customers to check out multimedia materials, the library will be closed down. No one wants their library to be closed, so libraries should not be censored. Also, parents, instead of having an entire library censored, censor what children get from libraries. One way is to get the local libraries to participate in putting restrictions on the cards of young children. For example, if a thirteen year-old child wants to check-out a movie that is rated @CAPS1 they would not be able to.The restriction on their card could be to rated @CAPS2, or @NUM1 movies. Another way is to have an adult monitor what the child gets from the library. For example, if a thirteen year-old child wants to get @NUM1 movies, only allow them to get like one at a time. This will lower the risk of offending a parent or guardian. Finally, there would be nothing left in the libraries. One reason is that out of all the books in the library, i'm sure at least one person is offened by each one. Does this mean that every library should close its doors? No, of course not, this just means that if something offends someone from their local library, stay away from it. Don't check out that book, movie, magazine, etc. A second reason is do not go to that library if the material in it is offensive to people's beliefs or religion. Libraries offer many things to help people in enriching their knowledge about a certain belief, so they should not be censored. Sometimes what is considered offensive to one person, is essential to another. In every book of every library their is something that people most likely think should be censored. But they must come to understand that those same books help people tremendously. Those same books transform lives, and are read to improve their understanding of something. So never will I think that the library should be censored." 4 4 4 4 4 4 +4145 2 "Freedom to chose is something every person can have, such as what type of clothes you wear. Censorship in libraries should not be allowed because everyone should have that right to chose. Plus, there are other ways to avoid children getting inappropriate books besides taking the books completely out of the library. Censorship in libraries should not happen because if someone is eighteen, they should have the right to chose what they want to watch anyways, the parents can censor what books and movies they want there kids to read and see, and there are offensive things and inappropriate things on television that everyone has access to as well. First of all, if a person is eighteen they should have a right to read whatever books they chose because they are grown adults. Eighteen year olds can go into rated @CAPS1 movies which would be about as bad as a book most likely. In our society, people that are eighteen can do almost whatever they chose because they have freedom. For example, adults can look up whatever they chose on the internet, and so can everyone else of all ages. So, if they wanted to read a book like that, they could probably get it off the internet, even if they can not in libraries. Therefore with today's technologies, censorship would not make a difference. Next, there are ways to avoid children reading inappropriate books besides taking the books off the shelves completely. For instance, if parents are so worried about their children reading inappropriate books, then they should take their kids to the library themselves and tell their kid what they can and can not read. If parents do not censor what their child reads, then those parents @MONTH1 want the child to read whatever he/she choses to. If their parents chose to let their kid read the book, then that is their choice, not anybody elses. The choice for what book the child reads should be between the parent and the child. Lastly, there are so many things in the world that could be offensive to other people besides a book. For example, people offend other people all the time by words they say. People hear about all of the fighting because the person probably was offended by something someone else said. Also there is the television. The television has inappropriate shows on it all the time, yet everyone can have access to it if they chose to. Plus there are shows on television that could have to do with racism, or someone being overweight. These things offend people every day. Therefore, we should not take books off the shelves just because there is a possiblity of offending someone, when a person could be offended by so many other things in the world rather than a book. In conclusion, the books, magazines, and movies of the library should not be taken off the shelves away from the public just because they are not appropriate for some children. Eighteen year olds are adults who should be able to chose whatever they want. Plus if parents are worried about their child reading inappropriate books, then they can monitor that themselves. Also, people are offended every day by other people, so books, magazines, and movies are not the only things in the world that could be offensive. If the person thinks a movie or book is offensive to them, then do not check it out! Not everything in our lives has to be controlled by someone, so people should lighten up and give some freedom of choice." 4 4 4 4 4 4 +4146 2 "These days there are many kinds of merdia in the liberaries beside books. There are musics, movies, magazines and many more. There are all kind of things and resources that you can find from liberaries. Do you think that certain materials should be removed from the shelves it they are found offensive? What do you think? I think it shouldn't remove. Even it is stuff that you don't want children to know, they will know someday. Once we remove it from the shelves then more things, the informations are going to removed. After all, nothings is going to be leaft. There are a lot of imfornation in this world. Growing children learn all kind of stuff from parents, book and from other medias. Parent want to let their children to learn much as possible. However there are sutten things that parent doesn't want the children to learn. You need to think this way. That children will grow up and become adult, then they will know any way. Why would you move from the shelves, if they are going to know about it some how? What is a point about it? Doesn't removing from the shelves helps children to not know about it? I don't think there is a point to do that. Katherine Paterson, the Author, said 'All of us can think of a books that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books on the shelf for any of us'. I agree with Katherine. Once, the books or other mediea get removed because of some reason, other things are going to removed because of other reasons. I don't think it should be remove, like Katherine said there are nothing gonna leaft for the children. If nothing gonna leaft for the children what is main point of having libaries? I believe the certain materials, such as books, music, magazines and many more, should be removed from the shelves it they are found offensive, because children will know and need to know to be adualt. Also there is nothing gonna leaft for the children in the libareries" 3 3 3 3 3 3 +4147 2 "Should certaine materials on shelves that are offensive be removed from shelves? I believe that certaine materials, such as books, music, movies, magazines, etc., that are offensive to people should not be removed from shelves. These materials are taken in perspective by all different kinds of people. Offensive materials should not be taken off of shelves because something that is offensive to one person @MONTH1 not be offensive to another person. People take things differently than other people might. For example, a lady might find a book to be disturbimg or offensive, while the man next to her can find that same book interesting and useful to him. Not one person is the same so not everybody will take offense to the same thing. I also believe that if someone does not like the object that they are offended by then they do not have to look, purchase, or give attention to that object that is there on the shelve. He or she is not forced to buy, read, or watch what is offending them. The material that is offending that person is not purposley put there to offend them, it is there for people who are interested in it so that they can enjoy theresleves in whatever it is that they might be doing. Therefore I do not think that materials that are offensive should be taken off of shelves. People have the right to things that they enjoy. A material should not be taken off of a shelve just because one person is offended by it. Different people have their own perspective of things and opinion of how things." 4 4 4 3 3 3 +4148 2 "The thought that Katherine Paterson had in her quote is quite understandable. If we were to censor books then there would be nothing to read in libraries. If you really tried, in every book you could find something offensive. I somewhat agree with her; however, I do believe there should be rules on where books are located. Books are ment to be read and taking them away would be horrible for every book loving person in this world. There are some things about where the books are to be found in the library that is up to dabate. Personally, I believe the childrens books should be on the opposite side of the building from the adult books and other reading material. In doing this you, for the most part, prevent the children from entering an area that is not age appropriate. Teenage reading material should be seperate from both childrens books and adult reading material. In this way they are not around the material that is 'above their heads', so to speak. If this were done parents' minds could be put at rest for the time being. They would not have to worry about their child or teenager finding reading material that is inappropriate or offensive. Books that some people find offensive should be catigorized, such as '@CAPS1 @CAPS2'. They should also be catigorized as '@CAPS3', '@CAPS4', or 'Other'. In doing this most times where someone would have been offended are prevented from happening. Although there will be times where people will still find those books, and @MONTH1 be offended, @CAPS5 is manditory that we do our best to limit those times. All necissary precautions should be taken. At the same time we should not remove any books from the shelves that are offensive to some. In removing a book from a shelf we would be eliminating a piece @CAPS2 or even life long lessons that are difficult to teach without experiencing them yourself. Books offer us as humans so much, from @CAPS2 to entertainment to even a form of comfort. Books are important to everyone whether they realize @CAPS5 or not. We have much to learn from books and we have much to offer our future members of the human race though books. I do support Katherine Paterson's belief in that removing books from libraries would destroy the purpose of having them around. At the same time I believe there are ways to limit the times where people would be offended by something. Removing books would destroy countless years of @CAPS2, past thoughts, and past expeiences. Books should never be removed from libraries just because they @MONTH1 be found inappropriate." 4 4 4 4 4 4 +4149 2 "I don't believe that certain material should be taken out of our libraries. If they take the books that people get a learning expresion off of then what does that leave us with. Everybody in life should have there own chocies, we shouldn't limit them.It's all about making chocies in life, people should get the right to read the books,magaizes, ect they want, With out people looking down on them or thinking the material they receve is unatural. What one person @MONTH1 think is not good read the next person might think the total oppoiste. Music is a creative aspest in our world, @CAPS1 person you meet are not the same so @CAPS3 should music be. You can't have the same ideas when it's comes to making your creative looks on the music in your community it's not going to turn out the same as everyones elses will. If that was the case then the world would be one boreding place to live in. I think that @CAPS1 one has there on taste in music. If your the right age and your not hurting anybody, Then whats the big problem listing to the music that incourge you to become creative. There are alot of movies that some parents might think that they are not good for there kids to watch. I think that we shouldn't be so worried about what our kids are watching and more what there doing. I think that @CAPS1 movie you watch has a sercet point in it, In other words the lesson learned in the story. Some solutions that happen in real life might be on a movie that's probably rated @CAPS2. I don't believe that we should be focus on the rating of the movie, We shold be focus on the lesson the movie is teaching you. The children in the world are going to have to make there own chocies and what they find intresing, @CAPS3 should we band everything we thinks thats not. We need you let the children grow on there own and aslo learn on there own. Can't make somebody listen, read or watch what he want them to. In conclusion we need to let not just kids but everyone have the chocie there want.The world is changing everyday so we need to change our ideas with it" 3 4 3 3 3 3 +4150 2 "When walking into the library and children are finding books, movies and magazines they should not look at. It can be offensive. I believe that it is not the authors fault for the offensive language in their work. I can understand that parents can get upset if their child is reading a book they should not be looking at. My opinion is that students should be able to choose what they want to read and if it is offensive to them they should stop reading the book. I feel that the student or adult should know if it is harmful to the student or not. Censorship in the library is to find books for everyone to read. I think that they should not ban anything in the library because it can be used for something useful to the person. I find it hard to believe that libraries will remove every offensive book, movie, or music from shelves because the rating of the item can be horrible. I just don't think it should be a good idea for them to ban things from libraries if they need to use the information from the book. If it offends them then they should not read the book, and choose another book. Authors work too hard for writing their book and go through the publishing process. My opinion is a no because I feel they should not remove items off shelves of the libraries because the content of the item is not appropriete to someone. My views can vary when I am older and have children of my own someday. But as of right now I do not think they should remove items off shelves at libraries" 3 3 3 4 4 4 +4151 2 "Do you believe that certain materials, such as books, music,movies,magazines, should be removed from from shelves if they are found offensive. No i dont believe that certain materials should be removed if found offensive. Many kids today are into gang realted activites because they see parents,older siblings, or even friends into so they decide to do the same because they feel its cool. Teens now days really dont care the movies, or the music. Not all music or movies are offensive. So we cant blame that. We can only blame ourselves for allowing our children to watch @CAPS1 @CAPS2 movies listen to uncut music. We choose that life style for our children so we cant really blame the music and the movies. The people who make their uncut music or @CAPS1 @CAPS2 movies dont care who watches it or what affects it would have on children and neither does the parents. They're just trying to make a living like everyone else. If parents can change they way they raise there children i think the world would be a better place. Just because some say that offensive movies, music or even magazines should be removed doesnt mean its there fault. Its the parents chose to say its okay if they child should listen to or watch offensive music and movies" 3 3 3 3 3 3 +4152 2 "I certainly don't believe books, magazines, etc.. should be taken off the shelves in libraries just because they're offensive to a certain amount of people. For one of the reasons are in the @CAPS1 @CAPS2 it states that you have the freedom of speech and when you write a book or an article in a magazine you are writing a story on whatever you want and if it is put on a shelf in the @CAPS1 place it should stay there. Also, just because it is offensive to one certain group or person doesn't give anybody the right to take something off the shelf in the library because the author is speaking what they want. Also in magazines today there are many offensive things to certain people such as celebrities, sports stars, etc... but they don't go to the libraries and take them off the shelf. If you were one of those people that did take a book or magazine off the shelf I think you should ask other people what they think about that material, because some people @MONTH1 like it. Also if you keep taking all the books off the shelf what will we have to read and educate ourselves about today, and read stories that were told for generations? If you do see one of those reading materials and they are offensive to you just put it back up on the shelf; and act like you never picked it up." 3 3 3 3 4 3 +4153 2 "I don't think that certain books or anything should be taken away because people like different stuff. Someone might have wanted to get that book. I don't think it would be right to take it away. When I was in sixth grade, I was in a foster home that I hated. They would not let me listen to the music I liked. They thought it was bad for kids to listen to. All they wanted me to listen to was christian music and I did not like that. My old foster parents used to try and take the stuff from me that they thought was the 'devil' in me. They would make me read the bible everynight. They tried to shove religion down my throat. I think maybe that is one reason I am not religious. They would not even let me listen to this one band because they had a song out about this girls husband having an affair on her. Everyone should have their own opinion and be able to choose what they like or what they listen to or watch. When parents are that strict, it usually makes the kids want to do whatever they tell them not to do. If you don't let someone watch, listen to, or read what they want, then it might not be very easy for them to express themselves. They would not be able to show off what they really like. They would be doing something that they don't even like and That is not right. Everyone should be able to express themselves and what they like." 3 3 3 3 3 3 +4154 2 "One of the amendements in the @CAPS1 of @CAPS2 is freedom of speech, this amendment gives the freedom of speech to anyone who has something to say, as long as what they have to say does not interfere with the @CAPS2 of others. It has been long since passed that the @CAPS1 of @CAPS2 was signed, but even today there are questions on the subject that still remain; should people be allowed to censor books? This is a matter that has been disputed throughout the history of humans, and has been the a topic of great contraversy for many years. Some say that one should have the right to censor a book that they find offensive. However, if one would take the time to think on the issue they @MONTH1 see that if everyone had the right to censor a book that they dispised, there would not be any books left in the world. In a population that contains so many different cultures and ethinicities, and reaches to almost every corner of the @LOCATION1, writing a book that everyone could enjoy and not find offensive could be an impossible task. We on @LOCATION1 live in a very diverse society, and liturature has, over the decades and centuries, adapted to the different types of customs, cultures, and religions so that anyone can find a book that they enjoy. The way of life that one lives @MONTH1 be different from that of others, but one should respect and accept the different ways of living, just as liturature has. It is like being in school, there has many times been that one student that the rest of the class see as really different. Our teachers taught us to be nice and accept that student for who they were and that not everyone is the same. Even after this and many other articles have been written about the topic, it will still remain a topic of much debate. This is becuase everyone is different, and has their own opinions. Some say it is a great idea, and others say everyone is entitled to their own ways of living. However the issue will go on, because after all we are all different and have our own opinions." 4 4 4 4 4 4 +4155 2 "I think that censorship in libraries is and is not a good idea because some people wouldnt get to read what they want to. I read world war @CAPS1 books, and a wide selectionof others and if they take those away just for being offensive id have nothing to read. If i find a book i think is offinsive I just put it back and dont get it. I think they should age books like this book is for ages @NUM1, and especialy movies and magizines because kids dont need to read or see certain things, because books and movies sometimes refer to drugs or alcohole and murder. I dont think music is a big deal because music isnt very influincial but music videos are soometimes bad. Movies sometimes go to far though and i wouldnt want my kids watching them, so i wouldnt mind if they take thos off the shelves if they are offinsive.I dont think books should be taken off the shelf because parents should know what there kids are reading anyway. I would at least check the book or magazine before geting it for my kids and so should other parents.theres always going to be offinsive books and movies so its the parents job to make sure there kids dont get thos kinds of books or magazines." 3 3 3 2 2 2 +4156 2 "I think other materials in libraries such as music and art should stay active in public libraries or school libraries. They show symbolic meaning to the ever changing world as we know it. People have different beliefs about anything, I don't care what you say everybody still has a different opinion about anything and everything. So just keep believing what you want to believe that's fine, but don't ruin it for others, you ever heard the saying, '' if you don't have anything nice to say then don't say anything at all'', well they should remember that saying and stick to it.In my years of being in school nobody has protested about certain reading materials in public libraries because everyone read what they liked because the library supplied people with the material they wanted to read. Let's say a person wanted to read a book about the fall of the wall of @LOCATION1, the library says they do not and will not carry such reading history, the person will be angry even though they can find the book somewhere else but they should still be able to find that book in that library. That is history in this world and they should know it. That compares with people wanting to destroy history made in this world, history people risk there lives for to be recognized in this world, this compares with the topic fully. I hope that this essay will give the protesters a second thought on the topic they are bickering about. That will be all" 3 3 3 3 3 3 +4157 2 "I believe that libraries should not censor their literature, all of our media is a fountain of knowledge waiting to be discovered. No one should be able to decide what is appropriate for the public to know. The right to decide what is and is not appropriate for us should not be decided by libraries. That right should remain with every single person, so they can decide whats right for them. Over the last thousands and thousands of years media has grown at an incredible rate through books, music, movies, and magazines. With all of this media we have learned many things that we use today from past trials and failures. Media is something that always is around and reminds us of our past mistakes, to ensure that they don't happen again. The great thing about all of the media we have today is that we haven't even learned everything that we can and will from it. Some of our media @MONTH1 not be the most appropriate things ever, but we can still learn so much from it. It @MONTH1 make some people upset and if it does then they should stay away from it. It is not right to get rid of certain parts of media because what one person @MONTH1 find immoral and wrong someone else @MONTH1 be able to learn from it some how. If you are offended by some of the material thing you should avoid it, not get rid of it for everyone. Our media is very powerful and should not be censored. Media has an unbelieveable impact on the world, so we should not try to hide some of it. We have not even seen half of what media can do" 4 3 4 4 4 4 +4158 2 "Do I believe that certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves if they are found offensive? No, it should not be removed. Katherine says, ' I have the right to remove that book from the shelf, that work I abhor.' @CAPS1 of all, she can have the right to do that but there is people who have a say in this. There are people who can read, listen, watch, and see what they like. Definately, I really think that it should not be removed even though it doesn't have positive things. Although, it might offend some people they have a choice whether they should see, watch, listen, and read it. Many people might agree with the author about what she thinks about this. Though, many people might go against it. One reason why I think that people should be allowed to see, watch, listen, and read whatever they would like to see, it's because it's their own choice. We make our own decisions whether people like it or not. Another reason would be because people would want to see the funny things that people invent that actually make the shows. Some people do not like to be bored of the same thing. Katherine Paterson the Author, is right in some ways. She wouldn't want her children to see things that are inappropriate. I have a daughter and I wouldn't want her to see things that are abhor. Last reason would be children should not allowed to see inappropriate things until they are eighteen or older. These things can influence children very intensely. Indeed, many people in this world are influenced with bad things. The author stated, 'then you also have exactly the same right and so does everyone else.' Right, she is meaning that we have a choice of what our children would like to see. For example, there is a magazines full of negative words and full of horrid stuff. Would you pull it out of the shelf for your child to not have a chance to see that? You should if you love your child even though it's your own choice. You would want the best for you child to not see, read, watch, and listen to things that are inappropriate. In conclusion, this would be your choice. There will always be things in the world that you don't like. You cannot stop the terrible things from happening. In the libraries there shouldn't be anything negative anyway because you never know what your child might be doing. Simply, teach your kid what is wrong and right. Finally, from what you experienced. Teach them the right things from the wrong things you learned so they wouldn't do the same mistake as you did." 4 4 4 4 4 4 +4159 2 "I believe that all types of books should be available to all types of people. A library should never be intended for a certain group of readers. As far as I'm concerned, books are creativity in text-form. Creativity is a large part of life, and without it, we would all be the same. There is at least one book for every person in the world, and whether reading is a hobby or not does not matter, there is a book that will interest you. It is not fair to everybody to take books off the shelves of a library due to 'offensive' content. With different personalities comes different writers. With different writers comes different books. With different books comes different readers. There are a lot of people out there who like to read. What are the people who @MONTH1 like 'offensive' content going to do when these books are taken off the shelves? Books are written for two reasons: allowing authors to express themselves and giving readers the chance to explore and relate to the imaginations of authors. I think that if a writer has the ability to put whatever he/she wants in a book, that book should be available to anyone and everyone." 3 3 3 4 4 4 +4160 2 "Have you ever been to a library and found a book offensive?In my opinion I believe that books, music, movies, magazines, etc., are at the library for a reason. The reason being say if we wanted to check out a movie and everywhere else was to expensive to get it, why wouldn't you just get it at the library if they had it. Most libraries that I've gone to have certain sections for adults and children. That means there would be appropiate things for little children to read in the section that they have been given. If children under age were to wander off into the adult section that would be their fault if they saw something unapproiate not the libraries. If the case was if every time a child or someone under age took a book offensive, I belive that the libraries wouldn't have as much of books in their buildinds that grown ups would like to read. Of course I'm not trying to say that there should be extermely unappropriate books wandering around in the library that the small children should see. I'm just saying that the adults do have the right to have books that they would be interested in.When I've gone to the libraries I have found books that I have enjoyed reading and I'm not the type of person that would just grab a book and be interested in right away. There are books, movies, magazines, and music that have strange titles that some people might take offensive to, but those are the ones that get read more or listend to more or watched more. I believe that no material should be taken off of the shelf just because one person found it offensive. If the person doesn't like the idea of the people in the library not taking the material off; it's the person personal problem I think. For example there is this book called '@CAPS1' and it's about a teenager who got into drugs real bad and got pregnate at a young age. That book was one of the best selling books in the world. If somebody took that offensive and asked for the book to be removed then it's their loss. I mean if there were a book about how to murder somebody then yeah I would ask for that material to be taken off the shelf immeditely. Except no library in this entire world would have that kind of stuff up so why worry about it.If there were ever to be that type of situation then that would be bizzare.But I highly doubt that it would come to a point like in time. So in conclusion that is my opinion on this" 3 3 3 3 4 3 +4161 2 "Offensive material shouldn't be taken off the shelves at all. Books are written on various of topics from love to sci-fi. Everyone is offended by something; if all of us could remove a book that we precieve as offensive then the human race wouldn't read anymore. @PERSON1 had to demonstrate this in a similar aspect to congress concerning his music lyrics. @PERSON1 is the reason why there is an '@CAPS1' sticker on @CAPS2's that contain offensive lyrics. Books SHOULD @CAPS3 be censored at all. It hides the authors thoughts, idea, and meanings behind their writing. I've read hundreds of books from @LOCATION2 to @LOCATION1. The aspect that a parent is worried about what their children might read implies parents need to step in. Having an one-on-one talk about the books context with their child could solve this uneasiness parents have about books. Pre-@CAPS4 to @CAPS5 to @CAPS6 requires many stages of growing physically and menatally. Through those phases kids learn from various sources including negative ones. It's up to the parents to ensure that tomorrow's generation can depict what is truthful and what is false. My grandmother shared a memory about when I was @LOCATION1 learning to read. I was reading out of a @CAPS7 magazine; yes the magazine is intended for adults but I obtained the skill to read from it. A skill that will propell me into job oppertunities and assist me in everyday life." 3 4 3 3 4 3 +4162 2 "Throughout the years, many events have taken place in our history. Throughout these times the events have been recorded, journaled, and filmed. These thoughts, opinions, and facts @MONTH1 be offensive to a select few in our @CAPS2. The question is, 'Should our libraries take these 'offensive' pieces off the shelves?' The simple answer to this highly disputed question is no. Censoring our libraries would be a harmful and wrong thing to do to the general public. Censoring our libraries creates an illusion of a perfect @CAPS2. If libraries were filled with tasteless articles and perfect fairyland books the library would become a place where reality is not present. Libraries hold information that is raw and true without leaving the facts behind. People need to get a taste of reality in order to survive in the 'real @CAPS2' and one of the greatest ways to abtain this knowledge is through books. Being exposed to offensive material and different viewpoints helps shape ourselves into who we are or will become. To take this away would be harming our development and growth, thus creating an 'imperfect' @CAPS2. Certain points in history are not something that everyone can be proud of. The @CAPS1, @LOCATION1's genocide, and @CAPS2 @CAPS3 @CAPS4 are all devastating points in time that can be a touchy subject to one and few people. However, history is an important factor in everyones lives; we know history in order to not repeat it. Losing this information is way for people to not be clearly informed, harming the future outcome of our society. Without public records of these happenings, it can cause confusion and misconcepted views of important topics. If we censor all the media from libraries across the nation, ordinary people, such as yourself, would be 'living in the dark.' As people develop their own opinions and views overtime they begin to distinguish the difference between right and wrong. Your rights @MONTH1 be someone else's wrongs. What @MONTH1 be offensive to you, @MONTH1 not be offensive to the person sitting next to you. Quoted by the author Katherine Paterson, '...if I have the right to remove that book from the shelf...you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' In truth, by removing offensive material from our bookshelves there would be no media left. Not everyone will have the same opinion on matters that hold importance, but that is why the @CAPS2 goes around. We as a society have the right to guard our ability to share opinions, censorship destroys our ability to do so. Everyone is different. The @CAPS2 is full of diversity and viewpoints that are bursting with interesting concepts. By censoring records of history, opinion, observations, our @CAPS2 becomes an illusion. We need to have these facts available to the general public. By ridding ourselves of 'offensive' media we cannot share our opinions with one another for a more successful @CAPS2. Censorship should not be allowed in libraries because it is harmul to our growth as a society and is overall the wrong thing to do" 5 5 5 4 4 4 +4163 2 "There a books, music, movies, magazines, and etc. that are not appropriate for children. Having them banned from shelves shouldnt even be a question, if children shouldnt read, watch, or listen to it then its the parents responsibility to make sure they dont. I dont think they should take those kind of books, movies, or music off the shelves because what about teens that like them or grown ups also. There just gonna take them down for the children but lose buisiness from grown ups and teens. That doesnt make any sence at all. I think either the child should know what he or she can read, watch, or listen too, and if they cant then its up to the parent or a grown up around them to let them know what they can choose. A way to solve the problem can be seperate those offensive books, music, or movies from ones that are appropriate for children. That would make everything alot easier so nothing comes off the shelves and knowone loses buissiness." 3 3 3 3 3 3 +4164 2 I go to the libbrary every @DATE1 of every week. Although I don't really read that much. I usualy get movies or music. If I do get a book to read its usualy a magazine or something for school. I don't think that books should be removed. If you don't read them it doesent mean that other people don't. If you don't like the book just ignore it and go on its simple as that. For instens if I found a book about @CAPS1 or about the @CAPS2 fathe I would not read it for my self but I would not take it down off of the shelf. Other people might want to read it. It's there choice to read it not mine. It's like the radio know. The radio plays songs and cuts out the curis words. I don't think that they should do that because it messies up the songs lyrics and it is going aginst the artists words. The artist sings the song but people chang his or her words. To me I don't think thats right. It's also like telivtion now. You see the movie in theaters or on @CAPS3 and they have bad language or bad seens in them. When you watch that same movie on telivtion they take out about @NUM1 minuts of the movie because of th bad seen or they cut out the languge. To me I think every thing should stay. I think if you don't want your kids to see it just block it but don't cut out parts from the movie it's not fair to the other people. If people don't like some music then just swich the radio station to another area on the radio. Theres no need to take the words out. Kids are going to pick the words up in school or off the streets any way. I also think seence we are having to pay so much taxes I think we should get the privilage to come home and watch movies on telivtion and relax 3 3 3 3 3 3 +4165 2 "It is important to know what is going on or what has gone on in the world. If @CAPS1 is unaware, problems can only be helped to a short extent. There is a point in which words can turn into harrassment, but the boundaries before reaching that point can be fairly defended by the freedom of speech. @CAPS1 must learn in order to teach. @CAPS1 must teach for others to learn. Censorship in libraries is more offensive than the material that is hidden.Censorship should be prohibited because knowledge and time is all we have and everyone must receive and give respect. If @CAPS1 were to look up information about the government on the internet, that person would not find a lot of useful information. It is a challenge to find why same-sex marriage is illegal in some areas or if the words on the news are true. In this generation, our species relies on cellphones, websites with recent dates, and the news. It seems that the time of research is diminishing. @CAPS1 can only learn so much from a world history textbook. It @MONTH1 not be completely accurate. The passing of the information from historian to historian over the centuries can potentially be described as the game telephone. With such a high risk of being mislead, the world needs as much information and thought as it can get. Knowledge, no matter the content, is valuable. It can help @CAPS1 to learn from mistakes and solve problems. The world cannot afford to censor. Censorship does not change the existence of that censored author's thoughts or the reality of what has occurred. The hidden information could be helpful. As this essay is being read, people are dying. It can easily be counted: @CAPS1, @CAPS2, @CAPS3. They are gone. At any moment, anyone and everyone could die. Time is mainly all we have. We need knowledge to make the most out of it. Everyone deserves to be heard. If @CAPS1 were to refrain from listening when being spoken to, it would be disrespectful and offensive to the speaker. A lot of the people in underdeveloped countries go with their starving cries unheard. Such cries make the more fortunate, well-fed, and housed people such as myself uncomfortable. Despite such discomfort, this information should not be hidden from anyone. No matter how uncomfortable or offensive a material @MONTH1 be, perhaps the author is simply thinking for himself/herself. Perhaps the author does not find it offensive, and is simply trying to make sense of the world because that is all @CAPS1 can do with all of the problems that exist. Every single person has the right to be heard. The people that believe something should be censored or hidden could have completely different opinions from others. There is no absolute, divine being that can accurately judge a material. The people that censor could be wrong about the content of the material. Because of the great variety of opinions and concept of respect, everyone must be heard. Censorship should not be allowed because time and knowledge are the valuable building blocks that determine the future of humanity and not a single thought should go unheard. Censorship is a great hindrance to knowing what is occurring and what has occurred in the world. Truth is knowledge and knowledge is truth. It is up to the world to unleash it and make something out of it." 5 5 5 4 4 4 +4166 2 "People will always take things offensive. It is a fact of life. No one will ever be completly satisified no matter what. We can not try to please everyone, but it will never happen. We have a freedom of speech even if those words are offensive to others. Things on the internet are offensive and no one can mandate how it is veiwed either. The same should go for a library. I understand a parent's concern with their child reading or listening to things that are not appropriate. Some of the things authors write can be either innapproraite or offensive. That is their freedom of speech. We can not take that away from them but there should be some censorship at least to the apprearance of books. For music and movies they usually have a warning lable if it is not intended for younger kids. It might be a good idea for some libraries to do the same with books and magazines. In order to see a rated, '@CAPS1', movie you have to be over @NUM1 and for a good reason because of the mature content. The books being writen now are more and more mature. But if we take on the custom of being of certain age for books we might invaid the privacy of others. No one has the right to remove books from a library's shelf on the count of being offensive. Who can judge whether something is offensive? The libraries are publicly owened and therefore have no one owner. The city owns them. If there is a problem with whether a book should be at the library it is the city's decision. Even if there is such an uproar about one book, unless the decision is unnanimous, no book should be taken off the shelves. The book should simply be put in a spot either behind the counter or where it is available only on request. Taking books off the shelves I beleive is taking away from the public's ability to read. If a parent is concerned about what their child might read, they should confront their local librarian. The librarian @MONTH1 be able to help them retrieve books that are appropriate and apealing to their child." 3 4 3 3 3 3 +4167 2 "There are alot of things that people think do do we really think that things that are found offensive in the libraries should be tooken down. I think that if there is somthimg foumd offincive in a library, it should be tooken down immediatley. Libraries should be a place of comfort, a place to relax, a place to read and enjoy our books not a place were if we find somthing disturbing or offensive we shouldnt come there any more. Some people might not care about the things they see and some do. Therefore if i see somthing that offends me and is disturbing to me i will ask nicely if it could be removed from the list and book files. Now to sum it all up if a book or whatever it @MONTH1 be offends you in the library, then i believe it should be removed from that library. If people find things less attracctive and offensive it will soon go around and less people will come to that library. This is how i put it, make the library suitable for others, make them feel at home when they are reading there book, magazine, etc., not for you. It is how others think about what is out there in these libraries not what you think" 3 3 3 3 3 3 +4168 2 "This is a very difficult topic to argue with. In my opinion I believe that there should be certian types of censorship in the libraries. Eventually everyone is going to be exposed to the type of material in some of these books and etc. This material should be allowed in public libraries and highschool libraries, but of course you wouldn' want to see a highschool level of maturity in an elementary library. Highschool students are more than likely to be exposed to inapropriate music and magazines than younger children. If they would like to listen to music that has inapropriate language then they should be allowed to. If there are young kids doing this it is obviously a bad thing because it is teaching them wrong things early in there life. It is even best if they arn't exposed to this at all. There are also certian books in this world that are inapropriate to even highschool students and they need to stay out of all libraries so that there is no exposure. Once they are old enough to make their own choices then that is their decision on wether or not they want to look at those books. There are some things that can and can't be put out into liraries. Even you should know what belongs or doesn't. So as I come to my conclusion, there should be things like music, books, and magazines but leave out the graphic material, children don't need to see that kind of stuff. It is all your own choice of things you want to read. Just make it the right choice, and understand what your reading, watchin, listening to, or being around." 4 4 4 4 4 4 +4169 2 "Teachers in schools do their best to make sure the material that children and young adults read and see in school is appropriate for their certain age group. Parents also make the effort to censor what their kids read, watch, and listen to as a way of keeping them innocent. At a point in a young adults life, this feeling of censorship wears off, and the teenager decides to read, watch, and listen to whatever they want to. This is how it goes in most cases, but is this strong feeling of public censorship too old fashioned for todays society? In my opinion, yes. Censorship, to a certain extent, should not be in present in libraries. There will always be something that one person finds in appropriate while another finds it to be perfectly fine. When I was younger we would sometimes watch movies in the after school program I attended. One movie, @CAPS1 @CAPS2 specifically, created conflict. While my mother was fine with me watching the movie, some of the other kids were not allowed to because their parents did not find the movie appropriate. Because of this one parent family all the kids in the program had to watch a differnt movie that everyone's parents were okay with. As @PERSON1 said eventually 'we have no books left on the shelf for any of us.' If libraries restricted material based on what people found offensive, there would be nothing left; people can find offensive material in almost any material in this century. It is the way our culture is. I am not saying it is right, but someone else might think so and that person has a right to go to a library and get a book that they find perfectly fine. In the @ORGANIZATION1 censorship has almost never been present. It is part of what is great about this country. People can speak, believe, and read what they want without the government interfering. This is not true in a lot of places and we should value that as @CAPS3, not complain about it. The government has no right constitutionally to censor material put in public, there can be age restrictions, but to completely cut the material out would go against this countrie's policy of freedom. I agree that age restrictions are okay, but I believe it is untimately up to the parents of a child what they want their child to watch or read. Overall, the censorship issue is a little bit of a grey area. In my opinion our country is about freedom and censorship is not exactly upholding the constitution. People can believe what they want, but the issue will be hard to conclude. Everyone has a different view on something, that is what started this issue in the first place. When everyone learns to get along, maybe then can this problem be solved" 4 4 4 4 4 4 +4170 2 "Today's books in are libraries are sometimes offensive. Yes, I know they are about thing that happen in history. Other books are not, some more than others. They are about killing, shooting, doing drugs,ect. First, I don't want my children growing up thinking @CAPS2 okay to steal, do drugs, or anything of that sort. I'v seen books that have no meaning at all that should be in are libraries. The kids might think they are good books to read, I think other wise. Books that fourth graders read that have bad words in them. Secondly, @CAPS1 are fun to read, i know they are. You have to look at it this way im of age to read those kind of books but, letting little kids read those books is not okay with me or other people. If it where up to me i would take some of the really bad books, music, movies, and magazines out. @CAPS2 not up to me, it takes more than one person to do that. It would'n be fair if it was all up to me because the person next to me might not think the way i am. Next, @CAPS2 okay to take a movie and watch it or even ask for some music to lesson to. As long as @CAPS2 okay to watch or lesson to. Im just saying what i think would be right. Not everone think's the same. People @CAPS3 @CAPS1 kids watch, and lesson to all kinds of music and movies. As long as @CAPS2 okay with the perant it should be okay. Lastly, @CAPS3 kids be kids. Have them grow up the way they want to grow up. Yes, that might sound dumb to the next person but it sounds okay with me. At the end of the day you still get to teach them not to lesson or do that kind of stuff in the books." 3 2 3 3 3 3 +4171 2 "Today in our society many things can be taken in many different way. Many sayings, quotes and even just simple words are twisted, turned, and made into something they are not. The author Katherine Paterson once said that a person has a right to remove harmful things that explicit for children from a shelf, and this is true. Even with that being true, the question truly is, will it do you any good to take those things away? In my opinion offensive materials should not be removed because a librarian could be taking away material someone without money wanted, children--espcially teens--will almost do anything for what they want, and things have a double meaning most of the time. If a librarian finds something offensive, he or she @MONTH1 not ever put that book on the shelf in fear of children finding the material. I think that action the librarian takes is completely unnecessary. He or she @MONTH1 be able to take that privelege away from his or her own library, but the material is still out there in the world. A child can simply go to another library, or even a store to find the same thing. I also believe that a library should leave the book on the shelf because what if an adult wants to read the book but does not have the opportunity to read it because it is found offensive. Being a teenager myself, I have seen what lengths some people will go to just so they can get this explicit material. If a teen goes to a library and can not find what they want at that location, they will simply move on to another location. In even the most extreme cases, a teen will take their parent's credit card and purchase the item they desire online. In this case it would seem as if the library not having one thing because of something offensive, could cause a big catastrophe. When a person listens to music, or reads a book, that person could take something differently from how the writer intended it to be. For example a person could take up a funny book that is finding funny things in everyone, but the reader could end up thinking the author was only making fun of one specific thing; something that reader could be involved in. Most songs nowadays have an excessive use of fowl language, but even then that language is not intended to be taken in the way some people take it. Everything in life can have a double meaning, which makes it easier to find offensive material. These select few reasons are why censorship in libraries is unesscesary. The responsibility should not be put on the librarians, but on the parents if a librarian is concerned about a child finding unacceptable material. If the librarian does not like the material then he or she should not listen to or read it; however, that librarian should not take the privelege to listen to or read the material from other people. Katherine Paterson once said you can hope for a child not to find the material, and you can take it away, but then there is nothing left for the rest of the people. With this it shows that a person can not let one small thing ruin something for everyone else" 4 4 4 3 3 3 +4172 2 "The idea of censoring books and music in our libraries has long been debated. Libraries are places that people can go to stray away from the norm and get lost in the works of other authors and musicians. I believe that reading and the ability to express oneself through the powers of music is a very essential part of our lives. Censoring these would only shelter our lives and keep younger generations from discovering the effect that words have on our emotions and actions from day to day. Books are one of the oldest forms of information we've had throughout the years. I think that if someone were to remove a piece of information that they found offensive it would only open the door to other people to find excuses to keep the hard work of authors behind closed doors. Personally i enjoy reading. I think that with every book i read it opens the door to other beliefs and culturs that i would otherwise never learn about. Children need to be able to explore the world, to get to know how other civilizations grow and function as to how we in the @LOCATION1 function in our own little world that is getting more and more judgemental every day. The only way to do this is to pick up a book from someone who has been lucky enough to experience it themselves. I have always had a deep passion for music. When i want to relax music helps me to center myself and open my mind. In my opinion, censoring music shouldn't be something that people even consider. Removing music from libraries is difficult for me to even begin to try and accept. Freedom of speech was once a huge part of our country. Now it seems as if everything we've been taught of our great @LOCATION2 has been nothing more than just a false cover to let the government control how we live, act, and now how we choose to express ourselves. Music is a freeing way to express oneself in a not so violent way. During the sixties and seventies, music was the way alot of people protested things like war and racism without being violent. Times have changed though and the people in charge of our country no longer see it as an 'appropriate' option. I belive that just because one society believes something to be inappropriate, doesn't mean that it actually is that way. We worry enough already about what other people think, why try to judge others' work if we can't accept the fact that we are all different. If we all accepted the differences in our world's cultures, there wouldn't have to be a debate on whether or not to censor an expressive and emotional piece of art that deserves to be shown in our libraries" 4 4 4 4 3 4 +4173 2 "Can you believe that some people think that books should be banned for having bad things in them? Well I can, Children today are learning nothing but violence and cursing these days. Banned books could be the way we set them stait and make them recognise that stuff is bad. Only a handfull of kids these days are choosing to read books, a majority of them are playing video games and watching tv. Chilren shouldn't be alloud to swear, or think that violence is alright. Chilren will read these bad books and think it is ok to shoot someone if they are doing something they don't like, but it's not alright. Banned books are exaclty what children need when they are in their younger years. Banned books might have foul language and violence, but I believe that it is ok to let your teen or young adault read them if they are mature enough to handle it. Teenagers should be mature enough to be able to read a book with a few swear words in it, or someone killing another person. Some banned books don't even have swear words in them; '@CAPS1 @CAPS2' doesn't have one swear word in any of the books but still it remains on the banned books list to this day. Some books, movies, magazines, etc. should be removed for profanity and drugs. I do believe that someone is trying to make a difference with the banned books list. Censorship should only be used if a person is too young to understand why or what is happening when they say a bad word or do something confusing. In conclusion I think censorship is a great thing that should be used moderatly. The children today dont need to be learning about sex, drugs, swearing, violence, etc. I do believe if they put an age limit on what you can watch/read that it will be a more controlled topic to talk about." 3 4 3 3 3 3 +4174 2 "I feel that censorship in libraries is not needed. There are ways around your child having to be subjected to certain things you don't want them to be subjected to. If you don't want your child to witness certain types of material that is on you, not the libraries. We have libraries for the sole purpose of variety what is the point in having a library if you can't find what you want because it has offended someone. There are ways around completely taking certain things off the shelf if they are that explicet then they can be put in a section just for adults. No I do not belive certain materials should be removed from the shelves if they are found offensive. One reason why it is not necessary to take certain things off the shelf is if you don't want your child to read or see certain things okay that's fine then watch them and see what they try to pick up and read or watch. Your child doesn't have to anything if you don't want them to. It's like saying I don't like this telivision show I never want my child to see it well what are the odds that telivision show is going to stop playing just becase your not happy with the violents,drug use,language, ect. The odds are extremely unlikely. When you don't want you child to see that certain show what do you do you watch them and keep them from watrching it so why should there be any differance when it comes to the books they are subjected to in a library. Another reason would be the sole purpose of a libray is to give variety to the people a place where there is something for everyone. Just because you think something is horrible and no one should read, hear, or see doesn't mean that some one else won't like it, it could be someone else's favorite book,magazine,cd, or movie. One oppinion shouldn't count for so much. If you don't like a book,movie,magazine, cd or agree with the content fine your entitled to your own oppinion then don't check it out no one is making you. If they took something off the self everytime they got a complaint about it there would be nothing left. If they were about to try and accomidate everyone they @MONTH1 as well just give up and close all libraries down all around the world because there will be nothing left on the selves. Also instead of taking them completly off the shelf if they are that explicet maybe make an eightteen and older section. It would solve a lot of problems. Yes I agree that there are a select few books,magazines,movies,ect. that younger people should not be subjected to, but as and adult you should be able to read,watch,and hear whatever you want. That right shouldn't be taken away just because there are children that come to libraries. Every library I have ever been to there are certain sections and if your child stays in the section where there type of books are then they should be fine. Aside from that though an eightteen and older section would solve a lot of conflict. No I do not belive certain material should be taken off the selves if they are found offensive. There are way to many ways around having to take the books completely off the selves. I don't want to go to a library one day and there be literally nothing left because they took a book off the self every time someone had a problem with it. There is absolutly no reason why we can't figure spomething out to make everyone happy and I think that having the eightteen and older section would be a good start. For the whole i don't want my child to be sujected to those kinds of things then keep your child away for those kinds of things nobody is forcing them to read anything you don't want them to" 4 4 4 3 4 3 +4175 2 "Libraries @CAPS1 are many libraries throughout the @LOCATION1 that stock their shelves with materials such as books, magazines, music and movies. Libraries do have a purpose I must say, having a library gives out the information that you can't find elsewhere. Just think @CAPS1's a huge variety of everything you might need all in one place. Certain materials such as magazines and movies that are rated @CAPS2 for instance, should be placed elsewhere on the shelves immediately. If you'd like to rent them you @MONTH1 ask for assistance, and go from @CAPS1. Children of all ages step foot in your library and are bound to come across unneccessary information. In my own perspective @CAPS1 should be an adult section, where only adults above a certain age should be aloud in or be able to check out. By keeping such materials shown or on display, @MONTH1 cause children to engage in dangerous or unsafe actions. As for music, it can go both ways. Music is more of a lifestyle, some people can't live without it. Adults in this day and age 'need music to survive' is what they commonly say. If your library decides to take these materials off the shelf, people @MONTH1 be turned away and your library @MONTH1 lose buisness.What is a library if you don't have music, books, magazines and movies? An empty room. Certain materials that are not appropriate for people of all ages should be placed high up, or in their own area where not everyone is aloud at. Taking away such materials @MONTH1 cause alot of grief. Just reorganize and make libraries enviornmentally safe so everyone is welcomed and @CAPS1 will be no complications" 3 3 3 3 3 3 +4176 2 "Good? Bad? Offensive or not? These are just a few of the questions asked when referring to content in any given book, magazine, or even a song. Who are we to judge what's good, what's offensive, or even what is appropriate for any being? From things such as books, music, movies, magazines, etc. the author(s) @MONTH1 express what they feel on a given topic. Though their opinion might not please others, there's nothing that can be done about it. In society people are going to talk, to write, to sing, to listen. Whether everyone agrees with that is a different story. In society, no matter what the topic is, there will always be at least one person that has a problem with it. The world will never be perfect! The only thing that can be done to assuage the chaos is for people to self censor what they @MONTH1 ingest from reading or listening to these different books and lyrics. If one shows so much emnity towards a given topic, then they are able to do as they please, and choose not to listen/read. At the bottom of numerous cd's, both explicit and non, there is a label, an advisory that warns a person. It will briefly tell you that there is some content they @MONTH1 not be appropriate, that @MONTH1 hurt feelings, and simply offend. It is then that one can choose to listen to the cd or not. Every human is entitled to freedom of speech. This doesn't necessarily mean that everything said by a being is okay; but everyone is entitled to his own opinion. There are words spoken that will offend many! From @PERSON1 using racial slurs in speeches, to @LOCATION1 calling females derrogatory words, all the way back to a white male calling his colored friend a nigger. People will always be offended. There are many different ways of looking at life, and many different opinions. Not everyone agrees with one another, because everyone is unique in his own way. From ethnicity to personalites, from talented athletes to intelligent students, and even from ancestors to religion. Everyone has something that defines them and makes them who they are. We are all special; and we all think differently. We find certain slurs and lyrics offensive, while others @MONTH1 not. @NUM1 years ago when i was in @NUM2 grade, my @CAPS1 class was reading a story about the '@CAPS2 @CAPS3 @CAPS4'. There were @CAPS4 young black children striving to get a respected education in a white school. Times were tough then, and there was still alot of racism in @LOCATION2. As my teacher read us this book everyday, we all sat and listened taciturnly. After the third day of reading this book, we all sat down like usual ready to finish the book. Five minutes into class as the teacher was reading the book, she read and enunciated every word in the book. In the middle of the sentence, it read 'nigger-lover', and the teacher didn't hesitate a bit as she said it. In less than @MONEY1, @NUM3 blacks children walked out of the room yelling curse words at the top of their lungs. This teacher didn't realize that she had offended these children by what she took as simply reading to her class. The book '@CAPS2 @CAPS3 @CAPS4' wasn't censored in any way. Though many children looked at it and felt some of the terms were harsh, no one ever thought there would ever be a riot caused at school. Because the teacher was white, and the children didn't want her to say that word, everyone attacked her vocally. I've began to realize that everyone cannot be pleased. There will always be at least @NUM4 person that stands up and retaliates against something they dislike. In '@CAPS2 @CAPS3 @CAPS4', the book wasn't censored, but I still believe that it should stay on library shelves. That book allowed children to better understand how hard life was in the past. By keeping the harsh language, I feel as if people realize how much harder times were. Books, music, movies, and magazines will always contain a statement that someone doesn't agree with, and by removing that I feel like one can not fully understand the message the author is trying to get across. For all of these reasons, I proudly say that I believe that these different books, movies, lyrics, and magazines should be kept on the shelves" 5 5 5 4 4 4 +4177 2 "When it comes to the decision of certain materials being allowed in the library, there are many different aspects that must be considered. There isn't a particular audience that visits a library. Many types of people go to libraries looking for different things. Blocking types of materials will lose an audiences interest and they will go eslewhere. Now that doesnt mean that offensive materials are acceptable and here is why. There should be a level of intensity in which the item is offensive. Profanity, and action are minor types of offense. However, intense violence and explicit materials such as blood and such needs to have conditions.Categorization is an acceptable method to blocking some @CAPS1 from viewing harmful materials. Putting violent books in an area that is blocked to @CAPS1 under the age of @NUM1 is an effective way to restrict children. Adults would not want to go into this section and therefore would'nt be an issue. It is understandable that some people are offended by the materials showcased in libraries because a library is a place for everyone. If offensive items were availible only to those who wanted it and hidden from the public, then this is something that could solve the problem. Many individuals should realize that a library isn't a place for one type of person and must be shared by all types. When it comes books they can be placed in areas availible to epople who enjoy it. The same applies for magazines and movies. Movies is a form of entertainment that is strongly advertsied over magazines and books. Any advertisement that show explicit material or offensive pictures or text should be removed from the view of the public. These advertisements should be only viewable by the audience it was inteded for. If @CAPS1 wish to use computers there are rules that need to be applied as well. @CAPS1 under the age of @NUM1 should have safety precautions that block them from using the computer to look up harmful material, @CAPS1 over the age of @NUM1 know how to avoid certain material and proceed at their own risk. These computers should be seperated to avoid peeking eyes from children or anyone who finds the material to be appualing. Listening to music on the the computer or by a device should require a couple of things as well. If there is a song that isnt preferable to a certain audience or it offends someone headphones should be a requirement. The library is a place for peace and quiet so headphones are necessary regardless. This can potentially eleminate the problem as long as the headphones themsleves are at an appropriate level. If @CAPS1 want to check out any materials that is or can be offensive or explicit in some way they must prove their age of maturity, due to some items with slight violence being availible to @CAPS1 under the age of @NUM1. In conclusion, if the categorization of harmful or explicit materials is placed properly and out of view of unwanted viewers or children this can eleminate the issue. Music is to be played through headphones only and must be at an appropriate volume. No items should not be removed from shelves if they offend people but conditions should be enforced. With rules and conditions the library can be a safe and enjoyable place for everyone." 4 4 4 4 4 4 +4178 2 "I think that the music and other things besides books should stay in the libary. Honestly thats where a lot of people go and find other music, yes it could be offinsive to some people, but to others its not. They have the right to say they dont want to listen to that stuff, so they dont have to. The libary holds over a @NUM1 different kinds of music, movies,magazines, ect. So if theres over that many, then why should other people be limited to what they read, hear , and look at? The libary is where people go to find new things and explore what other people find interesting. Why would they put it in there just to take it all away. I remember going to the libary as a young child and looking around me, i saw all these other people look at things i have never even heard of, granted i was only @NUM2, but my point is that, people grow into what they like, they arent just born liking something and thats it. I think the library is perfect just the way it is. I think that if anything we should put more differnet kinds of music. I know not everybody likes the same music, so why would you wantt o force them to? I think that the @CAPS1.S is populating more and more everyday, that all we can do is just extend it in every way posible. Keeping in mind that not everybody likes to read books, they just find reading magazines and watching movies interesting. I know im a person that would much rather watch a movie, or listen to music than read a book.Not everybody is the same, so why would you want to trea them that way. Being @NUM3, and if i had to listen to disney tracks all the time, i think i would drive myself crazy. I listen to the things i listen to because i have interest in them, if somebody took away my music away i wouldnt know what to do with myself. I guess i would just have to readthe books i dont like, and listen to the music i cant stand. The music should stay in the libraries because thats where it belongs, you cant make everybody happy" 4 3 4 3 2 3 +4179 2 "In my opinion, I do believe we should not have overly offensive materials on the shelves. These materials @MONTH1 not be offensive to some people, but it can be to others. They can be against some peoples religion and way of life. I have read some books outside of my school library that I think should not be found on a library shelf. Now they are putting those same books in libraries. These books have violence and inappropriate behavior in them. Are these books you want your children to be reading? There are even movies that are like those books. Many shows are based of a book series, and that series @MONTH1 not be a good one. The series can contain violence that can influence kids and teenagers. The kids could see something they think is really neat on the @CAPS1 and then go out and try that. They do not understand that what they do @MONTH1 not be a good thing. They could get into a lot more trouble then they want to get in. I know there are some materials on the shelves that many people say are offensive and really are not offensive at all. In my opinion, the worst ones should be put away and only adults should be able to get them. After that, the adults can choose whether or not their children should watch them. There are some that would agree with my opinion and some that would not. What do you think? Do you want your children watching or reading something bad that could influence the rest of their lives in a bad way? Would you want them to grow up believing that what they see in movies and read in books is all good? Or do you want them to know what they should and should not do?" 3 3 3 4 4 4 +4180 2 "I believe that many books in our local libraries @MONTH1 come off as crude or offensive to many readers, but I also believe it has a lot to do with the maturity level of some people. For instance, if you are an adult you will most likely be looking in the adult section. There @MONTH1 be children who look through that same section, although their parents should be monitoring what they are checking out at their local libraries. Although maturity has a lot to do with it, some young adult books probably aren't intended for the people reading them. Some young adult books @MONTH1 be venturing too far, and the children who are reading these books probably shouldn't be. I don't think that everyone should have access to check out whatever they want whenever they want. Many parents have different rules for their children then others, and they @MONTH1 not agree with what is displayed among these shelves for their child to checkout. I remember times when I was a little my parents didn't always let me check out what I wanted, because I was too young to be viewing it in the first place As for adults, they are free to make their own choices on what to checkout. I don't think the adult section at the libraries should be monitored all that much, because as an adult you are free to make your own decisions. You know whats right and whats wrong, and no one person should have to tell you what you should or shouldn't be reading. The area that I would be most concerned with would be the young adult section. At that point children are at an awkward growing stage were they themselves are still learning whats right and wrong. Some books or movies could effect the young viewers dramatically. Their parents @MONTH1 be letting them watch horrific movies, and it could make them feel as if what they're watching is really okay. I think parents should be very involved in their children's lives, and closely monitor what their children are reading or watching. I do feel that some books should be monitored, and taken off the shelves if they are found inappropriate for the intended age. Mostly in the children and young adult sections, because they could be taking in information they shouldn't be. I also feel that parents should take a part in their childs life, and set limits to what their child is aloud viewing. Above all, I think that everyone should check out books in their appropriate age section" 4 4 4 4 4 4 +4181 2 "Yes i believe that certain materials such as book's, music, movie's, magazines, etc should be removed off of the shelves at a library if they are offensive in any way. Librarian's shouldnt have bad stuff on the shelves at libraries if it is offensive to some people. Libraries should only have interesting books with good story's to read and kid books. There should be no sexual or racial book's, movies, magazines, etc. Those thing's that are found offensive should be taken off the shelf because there are little kids that go to the library and they should'nt be able to see those thing's or check them out. I do agree that library's should have a wide range of different kind of book's, and movies, etc because everybody has there own taste in what they like. But the thing's that are offensive should'nt be on the shelve's. If library's didnt have offensive thing's on the shelf then nobody would have to see them or have arguments about them. It would be so much easier because it would'nt cause any problems with people because they would'nt be on the shelf. So if they would just take those thing's off the shelf then nobody would see them and there would be no problem's at the libraries. Adults and kids could go to the library and pick out what they wanted without seeing the offensive thing's on the shelves which would make it a much better place to enjoy." 3 3 3 3 3 3 +4182 2 When you want to read that one special book you heard about but you find out it was considered offensive to some what would you do? The public libraries will take all offensive material off shelves for noone to read. Then that one special book you wanted to read is now off limits. A book someone worked hard on or a song or movie is now stored away because of a little contraversy. Do you find that to be fair to our rights? I find the fact of cencorship a very confusing topic in public libraries. If someone is to write and publish a book then someone will want to read it. If some find it offensive then no one can read it how is that fair to the people who do enjoy it? The way it should be done is if you dont like it dont read it dont just take it away from all who would want to read it. There are some material in libraries i think should be censored to a certain degree. Such as anything with nudity or adult content. That dose not mean though it should be taken away. The stuff with this content should not be taken away but in a seleted area for only adults to view. Many movie stores and book stores have the same idea so why dosent the library just adopt that idea. We as @CAPS1 have the right to freely state our opinions and what we believe. If someone wants to write a book on what they think is right then they are allowed to do that. If you censor something just because you dont like what they say that is violation of the constitution. You are allowed to express your opinion about it but taking it away cause you @MONTH1 not like it is wrong to do. Do you find it fair that people spend so much money and time in writting a book and a few people find it offensive so noone can view it anymore? I say if someone spends there time and effort then it should be allowed for those who do enjoy it. Is it really so hard for you not to pick up a book that you @MONTH1 find offensive. Censorship is good in some cases but inforcing it to much on what someone calls offensive is againts our right to freedom of expression. 4 3 4 3 3 3 +4183 2 "Should offensive material be censored? Removing things such as books, music, movies, magazines, ect., that are found offensive could be both good and bad. It could be good because younger children wouldn't be exposed to things that are considered offensive. Although, it could be bad because it takes away from freedom of choice. Most young children don't know good from bad, so censoring these things for them could be good. Though, you shouldn't want to shelter your children from the real world. Protecting your children from things that offend you, @MONTH1 stop them from growing up badly. Censoring such stuff now doesn't really change what is already out there. Censoring or removing things that you find offensive @MONTH1 be a good idea. There are plenty of reasons someone @MONTH1 want to do this. A parent @MONTH1 not want their child to read, hear, or see something simply because it offends them. Another reason parents @MONTH1 want to censor these things is just because they don't want their child exposed to it. Parents know that most young children don't know right from wrong, so they'd like to make that choice for them. By doing this, a parent knows what their child is reading, hearing, or seeing. Some parents @MONTH1 feel that they need to protect their children from these things because it could be harmful to them. They also @MONTH1 feel this should be done so their child doesn't grow up badly. Removing offensive material from shelves would take away from a person's freemdom of choice. Who wants to be told what they can and cannot read? If a parent does this to their child, it just sheltering them from the world around them. A child should be able to know the life around them before they grow up and are completely lost. Parents @MONTH1 think that this is good idea because it protects their children from things that @MONTH1 be considered bad. When really, protecting them could be harmful. Censoring books, movies, music, ect., won't stop what is already bought and out in our world. Offensive music, movies, books, ect., have already been bought and sold for years. I feel that censoring or removing books, music, movies, magazines, ect., should not be done. It doesn't give people a choice. Some people @MONTH1 like reading graphic novels or things like that. Music is made for the enjoyment of the people. Some people like their music to talk about drugs or curse, why take that away from them? It just wouldn't be fair to take a choice away from someone. A movie is just a movie, it's not real. Just because something is done in a movie doesn't mean that a person will go off and do it. I think people should be able to have a choice. Censoring such stuff now doesn't really change what is already out there. If people stopped to think about it, they would realize that offensive material has already been bought by others. Plenty of people have illegaly downloaded, or bought music that uses inapropriate language. This music is already in their iPods, @NUM1's, and burned onto @CAPS1, there's no removing it. Books that some @MONTH1 find offensive have already been printed and sold to others. One person @MONTH1 lend that book to another, therefore the offensive book is being spread around. Plenty of movies that involve adult content, violence, and drugs have been released into the media. Lots of people own these kinds of movies. So, why censor things now, when there's already unremovable offensive material out?" 4 4 4 4 4 4 +4184 2 "The many books, movies, music, and magazines in the world could be offensive. In all of these examples there could be bad language, pictures, and messages. No matter where people go they can find something that could offend someone. No matter what, people will try and get rid of eveything bad but the truth is they are gonna be around forever if not a very long time. In @CAPS1 @CAPS2 all the students in grade ten just got done reading '@CAPS3 of @CAPS4 @CAPS5.' The story is about a runaway @NUM1er named @CAPS6; and a runaway boy named @CAPS7. many librarys have banned this book because of the use of the n-word. '@CAPS3 of @CAPS4 @CAPS5' has profanity in it, and people don't want that book to be taught in @CAPS2. I personaly think it should be taught, because it shows students today what it was like back when there was slavery. Music is something that mostly everyone listens to. Songs always have a meaning or a subject the artist sings or raps about. many song artist write about love, money, and fame, yet others write about drugs, profanity, and suicide. Hip-hop, rap, country, rock, metal, jazz, r&b, punk, ect., are only a few of the hundreds of types of music out there; and at least @NUM2 songs of each type have a bad meaning behind it. Magazines and movies are the same way. Magazines and movies have everything between cars to bad pictures in them and historical places, facts, and documents to action. Even though there are age limits to buy or see stuff it still doesnt mean that it couldent get into a teens hands. Because there is bad language in music, movies, books, etc., doesnt mean it should be banned, just limmited. No, it is not wrong to put what you feel into a book or into a movie just make sure it is analized right so it can only be checked out or sold to the people of the right age. What the children and teens are into now will affect the world in a later time and keep on going untill there is a change made." 3 3 3 3 3 3 +4185 2 "We live in a world @DATE1 inundated and persuaded by media. Ever since we were little, our young minds have been filled with opinions of others from history and from the present. Whether we are reading a book, watching a motion picture, or even listening to a new music artist, our lives are being affected by such media. The art world is considered to be one of the most controversal businesses to work in. Each piece of literature or movie is shared by a vast community of critics. We all are given the right to our opinion on such pieces. Every piece of art is judged and then criticized. However, many find certain pieces to be offending in some way, shape, or form. It is quite impossible to produce such a piece that will fit everybody's satisfaction. For an example, religious pieces are often scorned for their nonfactual information or for the director's or author's opinion over the matter. Since we live in such a diverse community of religions, these pieces will never satisfy the audience. Movies have been criticized for decades because they represent some sort of life lesson or truth that is not appealing to the audience. Why not learn from them and reflect? No piece of media can possibly be directed to satisfy the opinions of all the world. As a personal example, I can see that novels and books over war are heavily criticized. The men and women who fought for our country @MONTH1 enjoy to see such pieces written about them, but war protesters and peace keepers @MONTH1 see this as an insult to their cause. @PERSON1 wrote a book by the name @CAPS1 @NUM1. This book was heavily criticized over the topic of censorship. The world in which they lived in had dramatically been affected by the impact of peoples opinions. If a book or movie was offensive to a group of people, then they burned the books. History books about slavery and war were burned because others found the topics offending. Non-religious groups thought that religion was offensive, so they burned the @CAPS2 and other works of religion. Their government wanted a world of peace and a community where every man was equal and diversity was no longer existent. @PERSON1 denies the book was written over censorship but his book gives our generation a great lesson. For generations, we have grown up in a world of diversity. Every mind is special and different and will never share identical thoughts as his neighbor. Therefore, we must recognize that we have to survive and live together. We can not escape the diversity in which we live in. The books we see on shelves, the movies we see on the big screen, and music we listen through our earphones all make up our generations history and the next. We need to accept our neighbor and his opinions because we are all born equal. If we throw away our history and our accomplishments, man is left nothing to improve on, nothing to leave his or her marking on history. We have to accept others ideas and build on them to improve our life and other's. As we stand @DATE1 in a world filled with diversity, we must move on and reflect. It is not a time to offend and be offended but a time to learn and move on" 4 4 4 4 4 4 +4186 2 "I am writing you today to propose an explanation on my views of censorship in libraries. I recently had visited a library and some of the things I read in my time being there was really overwhelming.I think it should be censored and taking off the shelf. If you are a place of business you should not want things like that on your shelf. You should not want costumers reading it and feeling disgusted. I hope something I write will propose my reasons. I have plenty of reasons to censor things and have them taking off the shelves that are offensive to me and others who visit the library, but only speaking on my behalf there were certain materials such as books, music, magazines, etc., that was offensive. I believe things in the nature should be handled in great authority. If anything I am trying to help me and my fellow citizens. Just think if a visitor come in and pick up a magazine and it has insulting visual details of something that the reader can relate to or have experienced, and it is getting talked down about instead of beeing looked at, then they would be very offened. For them to come there it had to be a reson that they came, I know it wasn't so they would feel insulted. It is very inappropiate to have things that are offensive in the library. It is plenty of different reason people come to libraries. Some come to get away, and to others its a daily routine. Whatever the case maybe they should feel comfortable in the place they are at. Why would you want people in the community or people period to not be comfortable where they are at. Just think if they are uncomfortable, then they are going to tell others and you will loose alot of fellow friends and alot of business. Think strongly on the things you do and the way you approach things to get peoples attention. To answer the question @CAPS1, I agree strongly on getting the offensive materials moved from the shelves. I believe in making people happy and one thing that is wrong with society today is too much judging and talking down and talking bad about people. If people would not judge or insult people then the world would be alot safer. It has to start somewhere, every little start causes for a great ending. I think this would be a good start on making the world happier and bringing all of us closer together. I hope something I wrote will help you on your descision" 3 2 3 3 2 3 +4187 2 "CENSORSHIP @CAPS1: @CAPS2 paper Do I believe the certain materials, such a book,music,movies,magazines,ect., should be removed from the shelves if the are found offensive.my opinion is the if some one wants to write a magazines or a book is okay because the are giveing there opinion know some people just have to say what they believe and some to fight for what they want not just censorship has there fight every one has one. Some materials like music,movies and magazines need to be censor because the kids how go to the libraries kids who are like @NUM1 @NUM2 grade or maybe smaller then that. We need to clean the libraries from thigs the kids are not old enough to see or to hear.Libraries are a place to study and to read a good book or maybe a magazine we have to censor the bad languge and the bad pictures. This can be very offensive for some parents beacuse the @MONTH1 talk about the color of another person or a bad language to offen the goverment. People don't have the actittud to stop with this bad songs how contain censorship see somepeople who write this they say the peolpe don't have the actittud to be or say what they want, i think the we need people like that to just point fingers and say thats the bad guy but enswer this what good have you done to clean the libraies. Censorship is just a small fight about removeding bad contains from the shelves this is just a call make your city a good place to live help the libraries help today change you future tomorrow make a differens" 3 3 3 2 2 2 +4188 2 "I do believe that certain materials should be taken of the shelves if they are found offensive. I think children should only be able to read certain books cause, some books say things should know until they get older.Some books, music, movies , magazines should be removed if offensive. I think they shouldnt make some kids movies , books, music like that for little kids. They put to many things they should not in kids movies. The movie the @CAPS1 they should not let kids watch that movie its not a movie i would let my kids see until they was older.The reason why is cause it has alot of bad language in it . It is about these guys who take ruphies. This guy cheats on his girlfriend, and it is just not a movie that i would let my kids watch.There are people getting drunk in the movie . they do stupied things.They try to make it look like its a good thing to do and that it is so fun to do all those things. I just think that is not a movie to let kids watch. Some music has to much bad language in it. I think they should make better songs for kids. Songs that really mean something or about someone. Most of these songs they sing now is about dumb things that do not mean anything.I think some magazines are okay to read but some just talk about actors. Like @PERSON1 I read one time about here doing something that was bad, and she should not be doing. I think it depends on what the magazine is and what it talks about in it. I believe that if they are offensive they should be taken of the shelves. I also think that if they are not offensive and do not talk about bad things kids should be able to see them or read them. If they did that kids would not talk and do things like they do today.That kids would not try to stell and things like they do in these movies they see it happen or there friends do it. So they think it is cool for them to go out and do things like that but, it is not." 3 3 3 4 4 4 +4189 2 "Offensive metaerial like that should most definately be removed from the shelf. What if a child finds it? They @MONTH1 think its the coolest thing they've every seen. Children shouldnt be able to access this kind of material at all, especially from a place like a library. Sombody could easily pick it off the shelf not knowing what it is. They @MONTH1 start reading it and not know what they're getting into, but it would be there fault for picking it off the shelves. This kind of material should only be places it is welcome, not in librarys or public places like that. If the material was at a type of book store that was not meant for people under @NUM1 to go to, then yeah it is meant to be on the shelf because children aern't aloud in that building, therefore they cannot see it unless it was brought out of the store to a household or somthing. Depending on where you go, if that meterial is on the shelf, say at a place that is not so public, and you pick it up and start reading or watching it, you have yourself to blame for not researching the book or case of the material. If people want to get it they can, but it would be at there own risk. There for if the consumer takes it off the shelf, its there risk of being offended. There for they cannot blame the place the material was at." 3 3 3 3 3 3 +4190 2 "@CAPS1 us? @CAPS1 now? Those questions just might be flashing through your head right now. The reason @CAPS1 I am writing to you today is to give you my point of view on the censorship in the worlds libraries today. In this context hopefully I will be able to enlighten you on the subject, also with the questions of '@CAPS1 us?', and '@CAPS1 now?'. Censorship, what does that mean to you? To me that means censoring many things in the world to protect it from children who are under the age, not people who are old enough to handle inapropiate things. In todays libraries there are many uncensored things, that happen to be in the adult section of the libraries. Things such as books, movies, and magazines should not be removed from the adult section, also labeled as the uncensored section, if that is where they rightfully belong. Now you are probably wondering, @CAPS1 us. In today's world many people want to protect their children from harmful things, such as uncensored materials. @CAPS1 us? In the world today there are so many laws, regulations, and even authorities protecting our rights. Now many people want to try to get around the government protecting our rights. Many want to protect their youth from some of the so called 'harmful' things in society. Today you can try to create a law or bill that @MONTH1 make it through the government, now some of them are trying to remove the uncensored material. @CAPS1 now? Throught the years the world has changed, everything has become easier to have access to. Now one thing they think they @MONTH1 be able to do is remove the adult section of the libraries if enough people stand to fight for it, it will not happen. There is an adult section for adults not children, people need to realize that. In the end, the adult section needs to stay in our libraries. Some of the material in the section is not always bad, sometimes it contains material over war, and recessions. When people are of age they are allowed to enter the areas, not any younger. Don't punish the rest of the world for one libraries mistake of letting children have access to adult material, make the children realize it wasn't their area to be in. Then many parents @MONTH1 see it's not just some of the world, that the whole world is exactly the same way. The books, music, magazines, and etc., need to stay where they are" 4 4 4 4 4 4 +4191 2 I think all books and other stuff should stay on the shelfs. Because other people should have the right to learn about something if you have already learned it. Censorship is kind of out of the way. I think it really doesnt matter if they see it now or later because they are still going to see it and learn about it later on in life. If someone wants to read it I think they have right to because it is their own choice. I have been observing students and adults in the libaries and every where they think they can run everything. But this is what I think is right 2 2 2 3 2 3 +4192 2 "I believe books, music, movies, magazines, and etc. should be removed from the lilbrary if they are offensive. Some peole take things wrong and lilbraries could have issuses. Also keeps customers happy and it will get ou more guests daily. Lastly, it might let someone feel better about themselves. First, some people will take things wrong and lilbraries will have issuses. If someone comes into the lilbray in feel its something in the lilbrary that is offensive you can get a lawsuite. Also it could set off anyones mind to feel disrepsected and feel they dnt have to respect the lilbrary because the library isnt respecting them. It can cause plan in someones eyes by making them feel like they arent equal around other people. Second, it keeps customers happy. If a customer feel that they see something offensive and the lilbrary discards of the object it will make them feel that you respect them. If you keep offensive things in a llbray less people will cum to the lilbrary if they feel they are offended and have no say in if it should be removed. The more people feel home bond the more they will come. Next, it might let someone feel better. If you walked into the lilbrary and seen something you didnt like in there you would want it removed too. If it didnt get removed you would feel that you are not respected and you will feel not wanted. Lets say someone see something offensive and the lilbrary doesnt remove it and the person took a book out the lilbrary, then never returned it you would lose money because you would have to get new books in stock. In @CAPS1, there are many ways to resolve problems and resolve issuses without conflict. You can disrespect someone and they might disrespect you back, but when it all come down to it you have to give repsect to get it. somethings help people feel better about themselves and keep there day goin. So before you make your decision thing would you want it done to you" 4 3 4 3 3 3 +4193 2 "Do I think certain materials like books, music, movies, and magazines that might be offensive should be taken off the shelves in libraries? Of course not, there supprisingly still is such a thing called freedom of speech in this country. Just because some people @MONTH1 find something offensive does not mean that the so called offensive material does not have the right to be published or shared with anybody. Think of some authors that wrote books like @PERSON1, although there were alot of racist remarks in literature of that time period. That does not mean that they still are not a part of american history. What would taking these types of books off the shelves accomplish? Absoulutely nothing is what, racist people arent going to go hey since all these racist books are gone im just going to except everyone now. Music and movies are forms of expression aswell, and if someone wants to get out of hand write something offensive so be it. You do not have to listen the songs or watch these movies. Nobody can force you to do anything of that nature. People just take everything so literally these days, they got to have their part in anything and everything. When they should reallize that most problems like these do not even pertain to them at all. That they should just focus on their lives and not worry about everything they hear in the news." 3 3 3 2 3 2 +4194 2 "Censorship in libraries is a topic that is argued back and forth in todays society. It is something that we all should think about and voice our opinions about. I believe that items in a library should not be censored based on constitutional @CAPS5, the creation of gray areas, and the depletion of classic literature. The @CAPS1 @CAPS2 to the @CAPS3 of the @ORGANIZATION1, clearly @LOCATION1 the idea of freedom of the press. Not only does this give publishers the right to print whatever they please, but it also gives people a right to choose for themselves what they can and want to read. Censoring books in a library would be denying this right that is clearly spelled out in the @CAPS4 of @CAPS5. I refuse to support any idea that directly opposes the @CAPS3 and the people of the @LOCATION1 should be appalled that this sort of thing is even in discussion. When it comes to censoring something based on how offensive something is, one always has to consider the gray areas that will be formed. For instance, what is offensive in one book @MONTH1 not be offensive to someone else who would benefit from reading it. The term 'offensive' is a reletive one, in that the definition varies from person to person. No one thing can be deemed offensive by one hundred percent of the population and therefore no one thing can be removed without opposition. This creates areas of gray where there is no right answer. This would be extremely problamatic for those trying to censor items within a library. Secondly, the decision on who would get to decide what is and is not offensive would cause as much contreversy as the books themselves. Knowing that every person carries a different opinion the people deciding would have to equally represent every persons' opinion when making a decision, talk about problamatic. Finally, censoring books would eliminate classic literature and would deplete an understanding of the world through the eyes of great writers. For example, in @PERSON1's '@CAPS7 @PERSON2' the 'n' word appears over one hundred times. Many @CAPS8 @CAPS9 take great offense at the use of this word. However, this book is seen as one of the centuries greatest works and cannot be removed from the education of young people because of an offensive term. If people want to censor books, then censor them from their own children and not the children of others and inevitably an entire population. In conclusion, the censorship of literature and other items in a library is not only impossible, but utterly unconstituional. The idea of censoring items from children based on offense is not something that should be pursued" 4 4 4 4 4 4 +4195 2 "There are many forms of entertainment in the world today. Almost anyone has access to movies, magazines, newspapers, music, books, television and radio. While these examples @MONTH1 seem relatively innocent, there are many cases where they can be found very offensive. When the book, magazine or movie was create, it @MONTH1 not have been made to be offensive. A group of people @MONTH1 find something very offensive that most other people wouldn't even think about. There are many types of consumers and it is hard not to offend anyone due to the wide variety of people. Certain materials, such as books, music, movies or magazines should not be removed from the shelves, even if they are found offensive. The act of censorship in libraries, or anywhere, should be looked down upon. No one is being forced to read a book or magazine, watch a movie or listen to music. If someone finds a book offensive, then the solution is simple: don't read it. Others @MONTH1 find the book to be inspirational and uplifting, and taking the option of reading it away from the person is wrong. There are many forms of entertainment that could be taken the wrong way and be offensive to people. To take away any book or magazine that could be offensive to any group of people would be a large task. Taking away all offensive books would do away with a large portion of books available in libraries. If a person doesn't want to read a book because of the offensive nature of the book, then he can leave it on the shelf and pick a different book. The book should not be taken away from other people just because someone @MONTH1 be offended by it. Everyone has a different view on things. Many people @MONTH1 think one way about something, while other people think of it completely different. This is why all different forms of books, magazines, radio and music could be offensive to people. For example, a person @MONTH1 be offended if a book talks about a certain topic while another person thinks nothing of it and reads on. This person @MONTH1 enjoy the book and pass it on for others to enjoy. If it was taken off the shelves because it offended the first person, no one would have the option of enjoying it. Just because something is offensive to one person, does not mean it is offensive to everyone. I believe that censorship in libraries is wrong. There are many personal reasons why someone @MONTH1 be offended by something, but that doesnt mean it should be taken away from the general public. People @MONTH1 miss out of a very good book or movie if it is removed from the shelves due to someone being offended by it. If a person finds a book, for example, to be offensive, they can easily stop reading the book and pick another one. No one is forcing them to read something they don't want to. Also, the book @MONTH1 be very enlightening to another person, and removing it completely would be unfair to them. Censoring the content in libraries is wrong." 4 4 4 4 4 4 +4196 2 "Living in todays society there are many diffrent people and many diffrent outlooks on things, the world is a diverse place that should have no restrictions. There are an uncountable number of diffrent ways people look at the world and ways that people percieve things. To tell someone what they should and should not know is simple minded in the aspect that anyone can percieve a book, music, movie, or magazine diffrently. @CAPS3 quote by Katherine Paterson,in short, metophorically uses a book and a shelf to let the reader comprehend the importance of information that is passed down from generation to generation. The book represents the information in the world and the shelf stands for the the place the imformation is stored for one to go seek information. To remove the book off the shelf indefinatly is to close the mind of a future generation. It was once said ' you can not know your present without knowing your future.' @CAPS1 the book @MONTH1 offend one reader it could also inspire another as well. Everyone has a diffrent opinion and life style. @CAPS1 @CAPS2 people are granted with better lifestyles than others, @CAPS2 are unfortunatly living everyday in struggle. One book that @MONTH1 offend a person who thinks the book is harsh and should be taken off the shelf, could also inspire a young child going through struggle's to overcome there surroundings and be a better person. I have read many books that did not interest me and passed them on to my sibligs and friends. Shockingly the book interested them. After interviewing my siblings and friend over the book it turns out that they got a diffrent message from the book than I. No one thinks the same thoughts a hundred percent of the time. '@CAPS2 @MONTH1 argue that the glass is half empty while others argue it is half full.' @CAPS3 quote is a perfect example of the minds of the world today. Ultimatly if everyone thought the same then everyone would be the same person. To 'leave no books left on the shelf for any of us' is like programing a robot to only do what you say. In such a diverse community it is impossible to remove any book off the shelf. Living in todays society there many diffrent people and many diffrent outlooks on things, the world is a diverse place that should have no restrictions" 3 4 3 3 3 3 +4197 2 "Opinion I don't think they should be removed because in books tell you what it is about in the back. Movies tell you what it is rated. It is mom's or dad's fault. They are the one how allow us to read it, watch it, listen to it, or even play it. if they don't want us learn it then they should't even get for us and the reason they get it for us is because kids are spollied. they want every little thing in the world and the parants are buying it for them to make them happy. The parants are not the only ones to blame. The kids are to blame to. They are the ones how want to go the rated @CAPS1 movies or get a rated @CAPS2 video games that have offensive language. kids also say offensive language to each other and suspect them to know what it means. The kids that heard the bad word will go to there parants and say 'what those that word mean'. It happen to me and I said those words to my parants. When I fist read, heard, and watched it and told my parants what it means I got hit for saying that word. I thought to my self that they want to hear that from me. I was mad that i ever said that word I wished I can go back in time and never say that to my parants that. I don't know why I kept on saying it over and over. i just couldn't get it out of my head. I got in trouble by saying it just because I heard that stupid word that i wished never heard. I heard it so many times I couldn't get out of my head it is like they knew what it ment but I knew they didn't know because they just said it randomly and I was preaty sure they didn't tell there parants because the one how told there parants got hit still woundering what it ment still having the red mark in there face thinking what they did wrong to deserve it. when I found out what it ment i never said it for a long time till someone got me so mad i started to say it again. Now the two opinions still stands how should we blame the parants or the kids, should we take down the stuff that is offensive to us so the kids will learn the bad words? The choose is yours not mine beacuse it was mine i would blame the kids and no we shouldn't take it down stuff that has offensive language because for a lot of us we don't find it offensive to us or others. Just consider this 'what you decide people will be against it no matter what'" 3 3 3 2 2 2 +4198 2 "Libraries across the world are facing the obstacle of censorship. Censorship has become a bigger deal in this day and age. @CAPS4 can effect books, music, movies, magazines, and many more. This posts the question is censorship a good thing or is @CAPS4 bad? Censorship allows certain books to be removed from the shelves of a library if a certain person finds the book to be offensive. Everyone has there own opinion about things so why should that effect what we are allowed to learn? What one person finds offensive could be perfectly fine with everyone else. Plus you are not being forced to @CAPS3 something you @CAPS1'@CAPS2 want to. If you find @CAPS4 ofensive then one solution is very easy, @CAPS1'@CAPS2 @CAPS3 @CAPS4! Censorship not only effects the learner, @CAPS4 effects the writer. Censorship takes away the one thing a writer has, there freedom of speech. Writers create books, music, and magazine articles to voice there thoughts on topics, to show others how they see the world, and to show what might happened to them in their life. Because writers do this, @CAPS4 makes a connection with the reader that they can understand and relate too. Writers have a choice what they want to convey to the world and they should be given the privalge to do so. Even if you are able to put a censorship on books and music at a library, you can'@CAPS2 censor the internet. The internet has become a place where anyone around the world can find websites that they like, where there are books, music, magazines, and even shopping stores. A library is a public library just like the internet is public too. Anyone should be able to acess @CAPS4 and enjoy what they like. Putting censorship on things is almost equivilent to not letting a teacher teach because of there nationality or not letting our president give a speech because he is @CAPS5. Censorship is based on a opinion someone has. @CAPS4 shouldn'@CAPS2 effect the learners or the writers. Censorship holds back the voice of society and the thoughts of everyday people. Censorship should not even exist" 4 4 4 4 4 4 +4199 2 "Libraries are often thought of as a room full of books inside a school building. On the contrary, they are all over the country, and are used by people of all ages. Because of that, I feel that there should not be a restriction on what books a library puts on their shelves. If the books and magazines are labeled, then a person can just stay away from what he or she finds offensive. However, in the case of a school library, all the books of course should be age appropriate. Just because you don't like it, doesn't mean you neighbor won't. If someone find a movie ridiculous and inappropriate, that doesn't mean someone else will too. Since all people are different, no one will like the same movies as the next person. Therefor, a personally offensive movie should not be removed from the shelves and prevent the enjoyment of another individual. That is the same with magazines, books, and anything available at a library. Parental concern for their children is also a factor. However, if a public library has a section of books or magazines that is found to be offensive by a parent of a young child, I do not think that should require the library to remove the book. This is where I believe organization and limitations come in. The adult books and magazines that might be offensive for children should be in a section in a separate room, or on a different level of the building. That would prevent the accidental discovery by children. Along with organization, I think there should be a limitation, so that if a child was to purposely walk into that section and grab a book that was not appropriate, or offensive to the parent, then they would not be able to check it out at the desk from the librarian. Outside of public libaries, the school libraries have a different requirement in my opinion. Elementary libraries of course, should contain no inappropriate material to any extent.All of the material in an elementary library should be strictly for education. At that age, children are far too young for any form of adult humor or magazine article. At the @CAPS1 and @CAPS2 @CAPS3 level, I think things should change a little, but should still be much more strict than a public library, and contain absolutely no offensive content. I feel that magazines and joke books are welcome in the libraries of teenagers. Nothing that would be inappropriate for the school rules though of course. Public libraries are a place for children and adults alike to find a book or movie to entertain themselves, and everyone has a different opinion. Because of that, there should be no restrictions in the public libraries, and you should be able to get the books or movies you want. Within a school corporation the environment changes, and the rules must be changed as well. Nothing offensive should be placed within a school library no matter how old the students are. Libraries should not be required to remove books from their shelves." 4 4 4 4 4 4 +4200 2 "I dont think that they should remove music, movies, magazinwa, etc., Should be tooken away because if you take all of that away then there really wouldnt be anything to do in your spaire time but be bored. I know alot of people couldn't handle being bored. I know I couldnt handle it if all I was bored all the time because someone took away music. Now it would be a different story if we never had music, movies, and all that other good stuff. None would really care becaused they new what it was or hurd about it. How would you feel if you had to drive for @NUM1 hours and didn't have any music or magazines to read? I'm thinking you would be really bored im guessing." 2 1 2 2 1 2 +4201 2 "Libraries hold more than just books, magazines, and movies... They hold history. With out any doubt, there is offensive material printed on numerous pages spread through out the thousands of books and magazines a library holds. Some find this terrible, but I on the other hand, completly disagree. Every book has a different story to tell, and everyone comprehends the content differently so I think libraries shouldn't take out offensive material from their shelves. What's really considered offensive? This question would be very hard to answer because everyone has a different veiw, different opinons, and a different background. Some would say violence, drugs, gangs, and sexual situations are offensive... While others consider religion, beliefs, traditions, and morals offensive. With all the different veiws on what someone finds offensive, a library would have to almost completly clean their shelves just to remove a small porportion of it. There's many sections in a library, from fiction to children stories. If there is an area for 'children books,' and 'adult books,' @CAPS1 can't there be one for materials some readers would find offensive? Libraries could even mark a book if it held something offensive.This would settle many conflicts! If a reader chooses to read a book that was marked with offensive content, they would have no right to get upset. Limiting our libraries shelves is unthinkable. If someone got offended by what they read, they could put the book down just as fast as they picked it up. A public library is a public place, where many people go... so if one person gets offended by something they read or saw, doesn't mean the next person will. Bottom line is, no book should be taking away because someone couldn't handle what was being sad. 'If I have the right to remove that book from the shelf - that work I abhor - then you have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS2 everyone's veiw on offensive material is different, eliminating it would be hard. One person found this book offensive, so it's gone... The library would be pointless. The shelves would empty, because the loss of many phenomenal books. People do get offended, that's just life... I don't think that they should be able to take a book away from everyone just because of one person's opinon on it" 4 4 4 4 4 4 +4202 2 "Censorship has been the topic of many debates involving politicians, @CAPS2 activists, and the everyday citizen. There are groups that believe the government has every right to censor anything that is considered offensive in today's society. Some individuals could argue with this belief by supporting the statement that it is not the government's position to decide what is considered offensive and what is not. I just so happen to agree. One opinion, mainly supported by people with children, is that books, music, and movies ect. should be censored to protect the younger generations. While it is true that parents should be concerned with what their children are exposed to, if the offensive material that is involved in the everyday life of an adult is completely restricted from an individual as a child how is he or she expected to be prepared and excel in the future? Why do we go to school for atleast twelve years of our lives? We go to prepare ourselves for the challenges of being an adult. We place ourselves in an environment that is specifically created to make us comfortable with the responsibilities of maturity. If not properly exposed to something, there is absolutely no way to be prepared to encounter it in the future. However, not all individuals support censorship because of their children. There are adults that would like to see no more of today's offensive material for their selves than they would want their children to see. My rebuddle to this is that if you do not want to see it then do not choose to see it. No individual is ever forced to be exposed to anything in todays media. Turn off the television if the program bothers you. Do not read the book or magazine. Change the radio station. Every person is capable of controlling what they hear and see, and it is unnessecary to attempt to remove from society what could simply be ignored. Lastly, one of the most consistent debates around censorship is that the government should control what is included in today's media. Think back in @LOCATION1's history; when has giving the government more power in our everyday lives ever been good for our society? The reason our forefathers founded our great country was to have the freedom they were isolated from in @LOCATION2. The @CAPS1 of @CAPS2 was created to insure that the government could not attempt to control what they had no right to control. The freedom of speech is not just referring to what comes from an individual's mouth, but what goes into their eyes and ears as well. The citizens of this great country are more than capable of deciding for theirselves what is offensive to them and what is not. It is the government's duty to protect our country from other countries and groups of people who attempt to break it apart, but not to control what we see and hear. Meeting and debates are held everyday to enhance the quality of our freedom and occasionally to gain more freedom. I ask why some individuals would want to give one freedom we do have away? The @ORGANIZATION1 is one of the greatest countries ever to exist, yet we are too lazy to decide what we are exposed to in our everyday lives? It is time for our society to stop being nurtured by the government and start doing our own dirty laundry" 5 4 5 4 4 4 +4203 2 "Have you ever felt that books are offensive? Maybe, but @CAPS2 all depends on who you are and @CAPS1 angers you. Somepeople think that books, music, movies, and etc. can be offensive in some way. I know they can, but @CAPS2 can only effect an amount of people if they together understand the problem. I think there are several ways why and why not to take books out of our libraries. From @CAPS1 I hear, people do go angry over things but the question is '@CAPS1 gets them so angry?' @CAPS2 is different for somepeople than others. For example, a @ORGANIZATION1 fan reads a book about them and the author makes fun of them or teases them. That is a way to make someone offended and angry at a book. others can get mad at a movie because @CAPS2 discriminates races of other kinds. Like how in the @NUM1's, some movies characterized @CAPS3 @CAPS4 as stubborn, ignorant, human beings. In my view, actually being @CAPS3 @CAPS6 myself, sort of aggrivates me too, but none the less, shouldnt argue because of one major amendment, freedom of speech. @CAPS2 depends on how @CAPS2 angers them also, like how back in world war @NUM2, the @CAPS7 people were characterized as short, fat people with big noses taking all the money away from the @CAPS8. That can be offensive, and is used usually to talk people over to their side. I think that if something offends you lightly, most of the time you shouldnt worry about @CAPS2, but if you get offended very heavily and none of the stuff they say about that topic is true, maybe you should get someone else to read @CAPS2 with the same dislikes and likes as you. That could help determine if @CAPS2 is truly offrnsive to people in general, not just you. Then after that the main question we would ask would be '@CAPS1 should we do next?' If I were someone and the book I'm reading offends me massively, I would contact the library @CAPS2 came from and ask them to read @CAPS2, and if they think @CAPS2 is offensive, then they would more than likely take @CAPS2 off the shelfs. Now just because of someone that likes a sports team reads a book about them and the book talks trash about the team, dont tell the library, thats just a waste of time. Just simply pick up another book and read @CAPS2. I can understand how people will get mad over racism and disrimination, but not over a sports team. So I hope that people can someday understand the limit to were something can actually be offending. Or maybe its just in our common nature for us to be offended when something we like gets made fun of. That is why I think that books should only be taken off shelfs for only very good reasons, not silly one" 4 4 4 4 4 4 +4204 2 "I believe that people are able to romove as books, music, movies, magazines, and other thigs that they need to use. There are many people who need that because of their knowledges. First, we sould be allow to use the things such as books from the shelves. Everyone is allowed to get such as books from the shelves which mean any other person's books or library's. They take that because they need to use and they thought that could be helpful to their work. Another important reason is that we don't have enough memories to use in the many situations. There are many serious problems and also suddenly accidents in real-life. We don't have enough memories to slove that real situations. That's why we are allowed to take off a book from the shelf. Most important reason is that the people are want to know many knowledges. I think that is the people's desire to know everything and be smarter than other people or competitions. So, they need many things for their knowledges and take that from the shelves. In conclusion, things such as books and magazines are allowed to take from the shelves. Then, the knowledges from the books and magazines spread to many people who need" 3 3 3 2 2 2 +4205 2 "Do you like what I like? Maybe and maybe not. What is or not offensive to you compared to other varies on both ends. Why? Everyone has their point of view. You @MONTH1 or @MONTH1 not agree and we have others who do not care. There are many which includes: religious beliefs, having independence, and experimenting. Religious beliefs are important would you not agree? Certain material in this world maybe offensive to their own kind. Such as gay rights. This @MONTH1 apply to everyone else that they are not accepting it. For the ones who do accept it, you can tell they are open minded. Unlike the rebels going against it that is their own state of mind. I believe it is important you go along with your religious beliefs. Independence is what we are or what we assume to have or already have. Whether the music, movies, magazines, etc are offensive to others this has no effects to you. Why? It is because you know what is right and wrong. So what if all the non sense things @MONTH1 have caught your attention. Should you take control and get rid of it? No. It does not bother you. You take it as it is, being independent. Experimenting is self contained. As simple as it is you do it or do not. It is more than likey that people are/were under the influence. I, myself, have been in that siutation before. I'm known to be the crazy child in the family. My dad would always lecture me about being careful with who I hang with when I'm out. As a teenager I let those words pass by me. I was always the youngest out of the people I hung out with. Was I ever under the influence? Yes. Did I ever get hurt? No. I can and will say I experimented with life. Does it hurt to observe or experiment with the bad? It usually varies. Religious beliefs, it @MONTH1 or @MONTH1 not be disrespectful. To have independence, you are the one in control. Experimenting, that is a choice on your own. What is offensive to me @MONTH1 not be to you. I have my own state of mind and so do you." 3 3 3 4 3 4 +4206 2 "Dear Newspaper @CAPS1, I believe that the country should take off all the books, movies, magazines, and music that has any kind of offensive cover, or any offensive mind grabbing, sexal contact in any of the story, music, etc. Children don't need to be seeing that stuff just sitten around, the radio for example, the music that they put on like rap, hip-hop with all the cusin and singing about mony, cars, girls, and sex. Kids don't need to be hearing that stuff on the radio, and adalt books that are sitten around in @ORGANIZATION1 ready to be read by adalts, not children.The children need to know about all the sexual conflict some day just not when there @NUM1 or @NUM2 years old looking at pornograghic magazines, and movies. So I hope you keep this in mind get that stuff off the streets and not into childrens hands." 3 2 3 2 2 2 +4207 2 "Banned books.'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf - that work that I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' Katherine Paterson Author I believe and will stand by katherine's statement above. Who @CAPS5 to say if a book @CAPS5 offinsive? People have a right to their oppinion, but i do not think any one has the right to take books away from a @CAPS1 library. @CAPS1 library, the facts are in the name. It @CAPS5 a @CAPS1 library, where people can go and find a book to pass time, a book to use on an @CAPS2 assignment, or a book to read to their child. Taking a book off the shelves just because it offendid someone does not makes sense to me. A person can pick up a book, be offended and complian about it, that @CAPS5 freedom of speech. I do not see fault in that. But when a person picks up a book, @CAPS5 offendid,and demand that the book per se @CAPS5 taken off the shelves of a @CAPS1 library. That @CAPS5 when i have issues seeing where they think they have the right. Katherine Paterson said in her text that 'If i have the right to remove that book from the shelf- that work i abhor- then you aslo have exactly the same right and so does everyone else. And then we have no books left on the shelve for any of us.' @CAPS3't that a scary thought? If a person was offended by a book they could take it off the shelve at his or her own will? I fear the out come of that. I am sure that a person could figure out something offensive about any book. Taking books off the shelve @CAPS5 taking knowledge away from the people. We as @CAPS4 have the right to read at our pleasure, any book that we have the slighest whim to read, and be able to read that book with out prosecution from a people that find the book in question 'offensive.' The day we let people take books off the shelves because they offend them, @CAPS5 the day our first admendment fails. As a nation we need to stand stron againts banning books from @CAPS1 libraries. For our generation and for the many generations to follow." 3 3 3 4 4 4 +4208 2 "One @MONTH1 subject the censorship of library content in certain places and times, whether fictional or not, to his or her own opinion. I personally disagree with the concept. The facts point out that society fears the dystopia predicted by publications exploring the outcome of similar campaigns and has instated systems designed to prevent such occurrences. Certain examples stand in play to explicate my opinion. Society, at least in my native @LOCATION1 and surely abroad in other democratic countries, dislikes enforced censorship for a few reasons. First, many countries have a @CAPS1 of @CAPS2 and priviledges upheld in the face of the law. Our founding fathers wrote out one of the documents establishing this trend on the prompting of the general public. The first ten ammendments to our fine constitution, bundled as the @CAPS1 of @CAPS2, resulted. Some of the included statements ensure the freedom to speak as it publicly pleases us as citizens and the freedom to write, individually and collectively without boundaries. The removal of these principles so ingrained in our nation's conscience would cause a general uproar. We as a people instituted our government to preserve our freedoms, and we could prepare ourselves to replace it as implied in the @CAPS3 of @CAPS4 if so required of us to continue doing just that. Secondly, publications such as the ones mentioned for banning rebuke the enforcement of opinion for its effects on society. I can mention three books portraying this dystopic outlook on censorship. '@CAPS5 @NUM1,' required by state standards for one possible choice of reading assigned to us by my teacher, describes book burning and utmost uniformity between citizens. '@DATE1,' by @PERSON2, I know describes a dystopia in which all citizens completely submit their will to and omnipotent '@CAPS6 @CAPS7,' who utilizes omnicient surveillanceeven though I have not read the composition myself. '@CAPS8 @CAPS7,' a recent novel by @PERSON1 whose title employs a pun on the name of @DATE1's prime antagonist, weaves the exciting tale of an older teenager who tries to beat the system of surveillance from under the radar. All, however, betray a sense of fear in their content, and that fear has transferred directly into local civilization. In reviewing the aspects of censorship portrayed in its effects, the system itself reveals that the even the intended creation of a utopia and compliance through censorship @MONTH1 result in decline and misery throughout the area within which government or civil officials practice the method. In any case, a more effective solution must exist today. To prove the point, let me introduce some content advisory systems currently in place. Libraries divide themselves into sections for the various age groups, and therefore create an inherent barrier between differing groups of content deemed appropriate only in the face of maturity. The film and television industries rely on ratings displayed at various times during video to provide the same sort of psychological fence dividing content into pieces. Even the video game industry, into which I plan to inject myself upon exiting college, has a system in place to separate existing media into tiered subcategories designed in a similar way to film ratings. Different regions utilize different systems, but that of the @ORGANIZATION3, or the @ORGANIZATION1 for the @ORGANIZATION2, compares relatively well in ranking video games to the rest of the globe. As explained, censorship already exists in a form accptable to all. Nobody forces anybody to comply to the recommendations, but hopefully everyone does so on their honor. Capable parents most definely follow the guidelines which have cropped up over the years. Only if these methods of moderation were enforced would everyone be upset. It's up to everyone to prevent a situation like unto the worst-case scenario and useresponsibly the systems available for this purpose" 5 5 5 4 4 4 +4209 2 "The ideas conveyed by literature, music, and movies are an art. They cannot be explained in any other way than themselves, and if we take away the right to produce or the right to sell these masterpieces, then the world loses something of itself. Censorship is the underlying problem to many things. It takes away the expression of human thought and emotion- emotions like greed, love, fear, and the ability to empathize that are conveyed in books and films. If people think it's offensive, they simply can't take the truth. Many people can only express themselves in their art- and art can be very real. So real that we don't think that it's possible. We don't want to believe something like 'The @CAPS1' could happen. 'The @CAPS1' is a short story in which kids get together and rob an old man's home. Because this man is very rich, he has lots of material wealth. Then they burn down the house with the man's belongings still in it. Needless to say, this story has been banned from many schools and libraries. But what many don't understand is why would the kids burn down the house. Many think that the kids just want to see it burn, to destroy what is so cherished, or that the love of material things is making us greedy. It is this that makes us think, and therein lies the problems with censorship. If we censor something that makes us think this hard about who we are and what we do here, then we begin to lose ourselves. The loss of books has been seen throughout history. Most prominantly, the nazi regime. In the beginning of their control of power, they banned certain books that went against the nazi ideals. The censorship escalated into the nazis burning books in large piles. This communal burning would make it easier to control the public mindset. The movement swelled and the @CAPS3 people soon developed a national pride and goal. By the @DATE1's, nearly every @CAPS3 who could read had read '@CAPS5 @CAPS6'. The censorship had turned into an all-out war on classical literature and the promotion of nazi ideas. That was how @CAPS7 was actually voted in. Many don't realize, but the @CAPS8 actually did vote @CAPS7 to be leader. Now that the nazis had destroyed the publics ideals, they were replaced with the nazi's own. The banning of media can only lead to a general lack of self knowledge. The human mindset can only be expressed through the art which the human creates. If we try to explain it, we soon get lost in our words. The use of verbal and visual examples is the only way we learn who we are. Censorship has never ended in something good- only the promotion of something bad. If we let our media get banned, we lose the right to have ideas of our own." 4 4 4 4 4 4 +4210 2 "What I think about that is that you have your own thoughts about a book, just because you don't like it doesn't mean that others won't. There @MONTH1 be something that you like in a book that you don't like in a movie, and there mmay be something that you like in a movie that others @MONTH1 not like in a book that doesn't mean that it should be taken off the shelf. About magazines if there are things in a magazine that you don't want to look at or have your children look at then yes they should be taken off the shelf I mean come on now it's a libary there should be certain things that are up there that's al I'm saying" 2 3 2 2 2 2 +4211 2 "There are many different things in the media that is shown everyday that is very offensive. Im sure everyone can honestly say that they've watched or heard atleast one thing in the media that they got offended by. Also people need to remember that this is a free country, and everyone has freedom of speech. None of the television company's, or radio stations should get in trouble, because it's freedom of speech. I don't get offended by anything I read, listen to, anything on t.v. I really don't see how people can get offended by any of it, because it's not like anything is being directly said to that person who's offended. I have heard of people trying to sue record company's for songs that they found offensive. I think that is rediculous to try to sue someone just because you got offended by it. It's not the record company's fault if you took offense to it, and there is no reason why a fan should have to suffer because of a reason like that." 2 2 2 3 2 3 +4212 2 "Certain materials such as books, movies, magazines, and comics can be offensive to certain people. When we look at a comic and see that the writer of the comic has said something offensive, what @MONTH1 seem offensive to you @MONTH1 not be offensive to anyone else. Certain pictures or writings that seem full of knowledge and vibrance to you @MONTH1 be completely something else in someone elses eyes. How many humans inhabit the world today? About @NUM1 billion, researchers say. If you think about it, each and every one of those @NUM1 billion minds thinks differently. If a librarian takes away the knowledge that you find so vibrant, it is like taking away a person's ability to learn. In the world today, many teenagers and young adults are becoming more involved. What that teenager reads in that magazine article could spark a whole new reason to help the world. For all you know, the magazine could have gotten the young adult or scientist one step closer to finding the cure for cancer. How could you just take that away? Again, the magazine could be offensive to a person who @MONTH1 have cancer or a doctor who treats cancer, but will they be offended when their cancer is cured? Or when the doctor can successfully say that all of the cancer in your body has gone away? If we take everything away that could possibly be offensive to other people, we might as well just take all the books, movies, magazines, and comics away that have ever been created. Once again, something that @MONTH1 be offensive to you would not be offensive to another person, because about @NUM1 billion minds do not all think alike. If reading materials were taken away that are found offensive, our ability to learn and grow as humans might as well be taken away as well." 4 4 4 4 4 4 +4213 2 "Culture and history are two very important aspects of the world. Liraries are placs that house these very things for the enjoyment of all who visit them. This is why i believe libraries should not censor any of their materials. Learning has always been and will be a key aspect of living and libraies offer this to people freely! How can one take that freedom away from another? Not all things in the world and history are perfect and have occured in the ideal way. However, subjects such as slavery, the @CAPS1, and other controversial topics must be known about. These horrible happenings @MONTH1 offend some but they cannot be erased from the past. Learning is natural to humans yet we always try to fight it. It is not right to hide the truth. Some people are easily offended and some are not. But the true question is,'who is to say what is offensive?'. There are people who believe that discussing @CAPS2 in the christian religion is offnsive and others who believe any type of homosexuality is also. Yet there are still others whose believes directly contradict these. Libraries must maintain all types of material becuase their purpose is to hold knowledge and not just what people want to know. How can we make better decisions in the future if we do not recognize what has occured in the past? Removing information from the library because it is offensive is essentially depriving people solutions to problems. All aspects of culture and history should be preserved so that we can know where we came from, the mistakes we made, and how we plan to fix our new ones! History has never been in the control of man. In conclusion, libraries should not censor any of their materials. What has happened in the past cannot be changed or altered to fit our ideal visions. And by doing this we deprive future generations of information that could potentially be useful. We must never forget who we are as a people, and where we came from. Our knowledge and ability to learn is our greatest asset and must be treasured." 4 4 4 4 4 4 +4214 2 "People of all ages have the right to read any material that they want @CAPS1 or other family members @MONTH1 tell their children not to read about a certain topic. Those children will either listen to their @CAPS1 or not. If these children do not listen, we need to do something about it. We need to have rules in libraries. Children do not need bad influences in thier lives.Adults have the right to keep children away from this information. Leaders of a library have many different sections in their library. Children and adults both have thier own sections as well as teens. These groups of people have a right to choose what material it is that they want to read, watch, or listen to. I believe that if we make the sections have an age limit we can prevent children from finding bad information. Right now, children can read this information at any time. Adults can eliminate it. Children in libraries should be supervized. Too many books are about drugs, sex, or pregnancy. Reading this material @MONTH1 give off bad information to a child. Children are not old enough to be learning about sex. @CAPS1 should be the first to tell thier child about sex. Young children know about drugs and know that those drugs are harmful. Children learn about drugs in movies, books, and can hear about them in music. Many books deal with pregnacy as well. Learning about pregnancy make them think how that women got pregnant with a child. Those children then start to ask other adults and children. Children can also read or listen about gun violence. Children read about gangs and think that it is cool. They then want to play with toy guns and pretend that they are in a gang. This information is very harmful and should not be allowed to children. After some children read about it they get thier friends involved. This information can spread across the school. Violence is very harmful for children. Librarians are not in control of the material people wish to read. If that library has offensive material it is their job not to let that material get into a young persons hands. They should be able to have strict limits on age apropriate material. If a child tries to check out a book and it seems to be over their age limit, they should not be allowed to have the book. The sections that they @MONTH1 find harmful information should be closed to young children. Children in libraries should be supervized. Books about drugs, sex, or pregnacy @MONTH1 not be allowed for children to read. Violence in books seem to spread across schools. Adults can help prevent harmful information from all children." 4 4 4 4 4 4 +4215 2 "I think that their should be rooms were certain adult books are at. I think that they should have to be of age to get the books in that section. I feel strongly that libraries should have every differnt kind of book for anyone. Everyone goes to a library so i think it should be an open library and have all different kinds of books. If a kid or a teenager is trying to get an adult book someone of age should have to come their and check the book out for them. I think that libraries are for everyone in a community and that not everyone reads and looks at good nice books some look at naughty books and they should have the right to go and check out books like that. When you go to a library you should be able to go their and get whatever genre that you want and their be no restrictions. I think that the only restriction that should be made is the age limit on naughty adult books or novels and if they are very bad then they should be behind the desk and you have to be of age to get it. My conclusion is, if you are going to look at all kinds of books they should have no restrictions on what you look at. You should be of age for romance novels and darougatory books but for the library they should have tons of books and magazines with no restrictions" 4 4 4 3 3 3 +4216 2 "What do we find offensive? In a library there are hundreds of materials that can be offensive to anyone. For example with movies there are horror, sci-fi, comidey, romance, advinture, etc. and all of them are offensive to someone. If we were to take down all of the movies that are offensive to a person all the movies would be taken off. Should we take all things that are offensive to us off the shelves, or leave them so people who do enjoy them do. I belive that we should leave these materials alone. It should not be right for us to choose what a public library should and shouldn't have on their shelves. If a person finds a item offensive, then they should ecnore it, not make a big deal of it. Many poeple learn to keep their oppeins to themselves but some do not. People who juge by what they don't like, tend to make themselves known" 3 3 3 2 2 2 +4217 2 "Censorship is the most foul and terrifying part of society. Our lives have been taken over by politcal correctness, so much so that our voices are no longer our own. Until recently we had the freedom to convey our thoughts, no matter what those thoughts were, in any form of media. But now if something is found to be offensive in any way it is essentially burned. Censorship limits our freedoms, takes away our @CAPS2 as citizens and people, shields us from the truths of the world, and limits the knowledge we can take from, as well as ensuring that one day there will be nothing left of media. The @CAPS1 of @CAPS2, the document that our country lives by, says that we as people have the right of free speech. Censorship actively and violently violates that right. Our country was built on free speech, and now it is being taken away. Our own words forced down our throats, never allowed to come out. Censorship ensures that no opinions will be heard, that no one's beliefs will be questioned, that no one can assume or think for themselves. Is this not what we are supposedly guaranteed by freedom of speech? We are supposed to be able to say anything we want to say. We know there are consequences for saying certain things, but we are supposed to be allowed to say them. Letting our own ideas into the world allows for new ideas to form. Arguements come, but these arguements allow people to see other ideas that they hadn't thought of and look at issues from new perspectives. We are able to see our world through different eyes when we hear or read someone else's opinions. And from there we can form our own opinions, allowing our world to be rich with iddeas and knowledge, and allowing our society to advance. But censorship wants to take this all away from us in order to please everyone. But there will always be someone who is unhappy. It's the inevitable truth. Censorship is trying to shield us from the ugliness of this world. In a way this makes sense. We don't want our children to understand the atrocities that happen in everyday life. We don't want them knowing what's happening behind closed doors. However, if we don't allow people to open these doors, they can never understand the world or be prepared for the experiences that are to come. Learning the harsh realities of our society educates people, allowing them to stop these realities as well as be prepared for when they happen to them. For example, let's look at the issue of rape. Rape is a horrible thing, but it happens. It is a nasty part of reality. Rape can be censored from books, televsion, and other forms of media. We can walk around pretending rape doesn't exist. But that doesn't accomplish anything. That doesn't get rid of rape. It still exists. And if the people are uneducated on the issue of rape, how will it ever stop? How will a rape ever be able to be prevented? How will someone know what to expect or what to do? By censoring rape from media, we are ensuring that the people in future generations never learn about rape. Knowledge of rape is important if it is ever going to be stopped. Pretending something doesn't exist doesn't get rid of it. Censorship is supposed to protect the people, but it doesn't. It hurts the people, cutting off their access to knowledge. We as people need knowledge. We live off of knowledge. And the way we obtain this knowledge is through media. Censorship takes away pieces of knowledge gradually. It @MONTH1 not seem like a lot is missing now, but as time goes on the gap will increase, and more knowledge will be taken from our grasp. Is this fair? Is this right? Is this helping us? How does cutting out knowledge ever help? It brings us backwards in time, makes us fear. It is human nature to fear the unknown. The more that becomes unknown, the more we have to fear. Censorship is taking away crucial pieces of knowledge that we must understand to get along in society. This is wrong and immoral. It is unfair, if nothing else. We should be allowed to take from any knowledge that exists. No good comes from hiding it. Lastly, this gradual burning of knowledge is affecting society in horrid ways. And as time goes on it can only get worse. Censorship is based off of offensiveness. If something could be offensive, it is disposed of. However, everything that exists in society could be offensive to someone. Therefore everything and everyone should be censored in order to fulfill the goal of censorship. This means all media of any kind should be destroyed. No one should say anything. The world would be forced to be silent. All knowledge would be taken away. Chaos would ensue. The people's freedom would be completely taken away. The freedom to know would vaporize right in front of their eyes. This is our future if we allow the censorship to continue. We cannot allow our lives to be taken over by censorship. Yes, people's feelings will be hurt, but we cannot rid our world of ideas and knowledge purely to spare feelings. These ideas and knowledge are too important to let censorship take away. Censorship is taking away our freedoms and @CAPS2, slowly stealing them away from us. It also tries to shield us from reality, but instead hurts us, ensuring that we will never understand our world and never be able to stop the very things that are being censored. Censorship is affecting society, ensuring that our freedoms are to be taken away. All knowledge will be trashed and no one will be able to voice their opinions. A very dark future waits for us if censorship continues. Only by helping people to understand censorship and the wrong it does to society can we gain back our freedom of speech; the freedom we are supposedly guaranteed, but censorship is desperately trying to take away." 6 6 6 4 4 4 +4218 2 "Materials that are found offensive should not be taken off the shelve. People might need those materials for research or if they just want to find out about something. If the material is offensive to someone they can report it but the people that work at the library might not do anything about it. The people that find something offensive could also ignore it and walk away. If I found something that was offensive to me I would just ignore it. I might look at it to see what it says but I would not say anything about it. There are some people that would have to look at that for research or something else. So why get it removed from the shelve? I have not seen anything that would be offensive to me yet but, if I did then I would not say anything. Now some people would say something but, what if you walked in a library looking for a book for your research paper, and it was not there because someone found it offensive? What would you do? Yes you could get on the internet but, it might not have what you are looking for exactly. I have had a lot of research papers. There was one time when I went to the library and could not find a book or a magazine to help me with my research. I had to wait for over an hour just to get on the computer to look information up. When I did get on the computer I only had an hour to look up everything. I did not get it done in time and had to turn it in late. Computers are good for looking up stuff, but when you have a book in mind that would give you a lot of information, you go for the book not the computer. I know there are materials that are offensive to people. I know people get mad at them but, it is not the librarys fault. They most likely have to have those materials on the shelve because that is whats required of them. So if people do get mad they can report it or just walk away and ignore it." 4 4 4 4 4 4 +4219 2 "To @CAPS1 it @DATE2 concern, @CAPS2 in life has to deal with something offensive towards them at least once. It @DATE2 be swear words in a popular song, or even people's behavior and actions on a regular basis. Be that as it @DATE2, nobody was made perfectly, and we all have to learn to cope with people's flaws. The library is for everyone; not just you specifically. Just like people's personalities we have to deal with different things that fit those specific personalities. @PERSON1's quote said, 'But if I have the right to remove that book from the shelf...then you also have exactly the same right...' @CAPS3 is a strong and truthful accusation, and I believe that things in a library should should have some censorship, but up to a specific point. We all realize that the biggest population of people in a library-- and perhaps the most innocent-- are children. Each parent has different values and standards for their child. What @DATE2 be offensive to one parent @DATE2 not be to another. If one mother thinks a book that talks about something she believes to be inappropriate to her children should be removed, another mother @DATE2 not. The first mother's opinion is different than everyone else; she could say she wanted @CAPS3 book removed from the library, but then so could the second mother about a different book. If everyone voiced their opinion on what books they didn't think were appropriate for their children, then we would 'have no books left on the shelf for any of us.' according to Katherine Paterson. I believe she is right. Besides, who is to say what is right for everyone? Not one person has the same morals or values as another. For one person to declare what is right could highly offend another individual. I have dealt with situations like @CAPS3 before; everyone has. People tell me what they believe to be right, and I do not agree with them. It is simply a matter of everyday life; people's opinions and morals are going to clash. Eveyone is different, and if one person doesn't like a certain magazine in the library, another person @DATE2 not like a different one. If we were to all voice our own opinion on what we want censored and what we don't, nothing would be left. The library shelves would be completely empty. Even though everyone has different opinions on what should stay and what should go, I do believe that there should be some censoring up to a certain point. Taking into account everyone's diversification in @CAPS3 world, I do believe that there should be censorship up to a certain point. If something is in a book that a good majority of the population are against, I believe that the book, or books should be removed. I am not saying that because a couple of people weren't for a certain artist from the @DATE1 that it should be taken away at once. If it is a major issue that highly offends many people, it should not be in a public library. Libraries are for obtaining information, and for reading; not for brewing up offensive opinions on certain topics. There should be a certain limit on what is in a library, because there are things out there people really shouldn't be seeing or hearing. But it shouldn't get to the point where people can just remove books from the shelf at their own free will. Without some limit on censorship in a library, absolutely anything could be found there. When we think of a library we don't think of things that are offensive. People view the library as a positive place, created for people's own personal enjoyment. That doesn't mean that we will never find something that @DATE2 offend us in some way there, but people should not be able to just remove books from the shelf because they don't agree with their morals. @CAPS2 is different, and nobody has the right to tell them what exactly is right or wrong, up to a certain point. I know from experience that it can be a tough thing to ignore sometimes, but we all seem to do it everday with the people around us; we can't just choose to get rid of them. @CAPS2 wants to be comfortable, but sometimes we just have to deal with things in life like a book we don't deem appropriate. So I believe that in a way, an excessive amount censorship on things in a library can be a bad thing. If we all could get rid of what we wanted in a library, there would be nothing left. Afterall, I wouldn't mind walking into a library with shelves full of magazines and books, instead of one completely empty. Thank you." 5 5 5 4 4 4 +4220 2 "Libraries are ment for all types of books, movies, music, magazines. It gives you a variety of things to look at or even check out. An offensive book or movie or even music shouldnt be taken off the shelf just because it has a few bad things in it. People @MONTH1 or @MONTH1 not agree with this, but everyone is entitled to their own opinion. Through my own experiences, observations, and the reading I will help and explain my own opinion in why i dont think offensive books, movies,music, and magazines should not be taken off the shelf. If a book is offensive it does not deserve to be taken off the shelf. Somebody most likley worked hard on that book so it could be put on to the shelf. If you find a book offensive it should be put off into a different section that tells you in head of time what books are in that section. I have not had any real experiences with this but I know people are awear of what are in the books before they're put onto the shelf and would therefore not put anything offensive next to a childrens book. Same thing with music and @CAPS1's. Music is music and it is there to be listened too. People like all types of music and have their favorite bands so if they dont like certain bands because they swear or whatever doesn't mean that album deserves to be taken off the shelf. @CAPS1's usually have the rating on the front so if it is not appropriate for your age than dont pick it up. If it has nudity or sexual content it will tell you or be put in a different section. For instance at my old library where I used to live in @LOCATION1, @LOCATION2 they would put all rated @CAPS2 movies into a different section and if you were going to check it out you would have to be @NUM1 or older or have a parent with you. It is really all up to the person, they could either make the right choice or the wrong choice. It's not the libraries fault if you pick up an offensive book because well, you should have some common sense. The libraries shouldnt have to take offensive things off the shelfs because some people lack common sense or just dont know what they are doing. They could make more of an effort too kind of seperate bad from good, wrong from right, and even appropriate to non appropriate. But it is usually all up to the person making that decesion. - @PERSON1" 4 4 4 3 3 3 +4221 2 I think censorship could be a good thing where there could be a room just for grown ups. In the dunkirk library there is a room that has just adult books and the kids cannot go in there with out a parent. So whenever you go in there your parent are with you. But i dont think you can check them out. But if i had a kid i would not want them to see that kind of stuff until they got older so i think there should be seperate rooms. So whenever they got older and maturd they could go in there and see the books and maybe one day check them out and read one of them. But on the other hand why not leave them on the shelf for kids to see because if not there gonna see iot other places or from other people then they go home asking there mom what this means and stuff why not let them learn on ther own from a book. There are some people that woulf agree with that but then there are people that would disagree with that. So maybe there should be rooms for different books and you can go in them whenever you want or maybe there should be rules that you cant go in there with out a parent. I don't no what to do maybe there should be a vote between people if they like it or not. But some people would be mad over that so if you chose one someone would not like it or aomething like that.My upion is to just keep the books there and let the kids find out on there own.Some people would think im a bad parent but would you want you child to find out somwhere else. 2 2 2 2 2 2 +4222 2 "Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I disagree with Katherine Paterson's statement because there is a @CAPS1 to @CAPS2 and the @CAPS1 to Write. The author obviously had a purpose to write the novel, compose the music, or to deliver the movie. There will always be items that will be offensive to some people, but to others there is a meaning behind it. The @CAPS1 of @CAPS5 gives everyone the right to speak what is on their mind. That @CAPS1 allows them to publish whatever they have to say in a novel, a piece of music, or in a movie. Sure there @MONTH1 be some parts that @MONTH1 be inappropriate somewhere in a novel, piece of music, or a movie, but that doesn't mean the whole item will be inappropriate. Some people might think some things can be offensive while others don't at all. There maybe somethings out there in this world that you @MONTH1 think are offensive, but have you stood up and told that company yourself? Being able to put down anything on paper that you want everyone to know about is the @CAPS1 to write. With that you can't be told not to do so. For example, the '@CAPS6' magazine maybe offensive to an abundent number of parents who don't want their kids to look at it, but that magazine isn't intended for children to look at. That magazine's purpose is to show adults what is all out there to buy to make their appearance sexy. It's not to be offensive to anyone and that company has the @CAPS1 of write to publish such a thing. The @CAPS1 to write serves its own purpose to all of the writers, composers, directors, and anyone who wants to write in a journal or to write a note. I bet there has been a novel, a piece of music, or a movie that you just love. Well within it there most likely was a piece of information that was inappropriate, but would you like to see that taken off of the shelf? For example, I once read a series when I was in middle school that had inappropriate content about sexual interaction, but that series is what every girl wanted to read. If they would have taken them off the shelf because they were not appropriate then I know plenty more novels that would be gone as well. What would you say if there was nothing left on the shelves to read, listen to, or to watch? Without items such as books we could have a hard time learning new stuff all the time. These are the items that teach us new things everyday. Would you be able to enjoy your life without being able to read, watching movies or @CAPS7 shows, or listening to music? It would be a very hard thing to get used to in today's society. We rely on such things @NUM1 to get us through the day and teach us things we were never taught. Disagreeing with the quote that Katherine Paterson stated is one way to use @CAPS1 of @CAPS5 by stating my view of removing inappropriate items off of shelves. Removing items of the shelves won't solve the proplem of having too much inappropriate usage in today's society. If everything that had some kind of inapporpriate content in it removed from shelves, we would have a hard time finding a novel to read, music to listen to, a magazine to enjoy, and a movie or @CAPS7 show to watch. Lots of schools rely of books to read and without a book childrens vocabulary could have a great downfall. Think about it...what would you be able to do in your free time if we had no more books, movies, magazines, or music" 4 4 4 4 4 4 +4223 2 "Books, magazines, movies, music, etc, are all good to read, watch or listen to. When I listen to music or watch movies or even read books sometimes. I wonder how do people come up with these ideas.The real reason is why people listen to music, read books watch movies are so offensive. In todays world you got music with all this negative stuff about people, talkin about people, with the curse words its not a good look for the people who make the music or the people who listen to the music. I feel that that stuff not be allowed in the shelves and it should be removed. Parents dont want there little children hearing that negative music. When they grow up they are going to be like them because everybody sings there songs and everything else. I feel movies should not be removed from the shelves. The reason i say is because movies are funny, scary, sad etc.Sometimes u need the offensive in a movie, with out that it would not be good most of the time. One of my favorite is @CAPS1 @CAPS2 and it was about character from the past @CAPS1 and @CAPS4 get back together and do one more mission. That movie was offensive but u still have a good time watchin it because its has the nice cars and good character. Movies should never get removed from the shelves cause out offensive of movies it would not be fun.People can not go to the movies with there friends and have a good time.If u are taking little kids out make sure u pick the right movies for them.To conclude argument Music is not bad thing to listen cause u have good music to but all im saying is make sure to watch what u listen to and get in trouble trying to do what they say in there music.To the movies keep comming out with good movies and keep making the movies good" 3 2 3 3 2 3 +4224 2 "People go to the library to find certain types of material. Some people get offended by some of the material and feel that it should be removed. Certain materials should not be removed if found offensive to others because it might not be offensive to someone else that might enjoy it. The offensive material can be history that the world need to know, such as racism. If they did not know the importance of slavery they wouldn't know of the past life and why we are treated the way we are being treated. History is a big part of life that everyone one should know. That's why we have history class to let us know of the history that we've been through. All material don't have to be history that is offensive. Some material have sex and violence that is offensive. The libraries should have labels on every section to let people know what type of material it is. If people know what type of material it is and still choose to view it then they get what they ask for. It shouldn't be removed because they didn't like it. I learned in history class about wars that had violence in them that some of my classmates didn't like but that's what happened and we needed to know. Materials are made for a reason. They should not be removed if found offensive to someone but not offensive to another. I read books in school with all kinds of violence and other things people @MONTH1 not like but it's history. History makes a difference in our lives and it's what we need. You can not removed that. If you find it offensive just don't view that material again." 3 3 3 3 3 3 +4225 2 "I believe that the books, music, movies, magazines should be removed if they are really offensive. Just because it's offensive to one person doesn't mean that it would be to another person. Any movie you watch could be offensive to one person or two but, not everyone. So I would say no to taking the offensive things off the shelfs because, who is really going to be offened by and are they really offened by this matter or aspect. Also, I believe that some people might lie about if they are offened by it just so that they will take it off the self. Maybe, there is a movie for example, that there is a lot of bad words, I could see them being able to take that off the self because, a lot of people don't like those words to be used and thats understandable. If they are just taking it off the self tho for one little thing I don't think that should be aloud. I think that if that person is getting offened by what a book said or a movie said then don't read it or don't watch it. No body is forcing you to watch or read a book that you don't want to. Reading and watching a certain movie is all up to you not what others say. I believe that this really has to go down to what the persons beliefs are. Maybe they go to church every day which means that they probably aren't going to be watching the movie ' @CAPS1 @CAPS2.' They are going to pick a movie more suitiable to their life style and what their use to. Maybe they had a friend that suggested that they should watch a movie and they did, they might have taking offensivness to that, but that was also there choice they didn't have to watch it. If this was the case to take a book, movie, music out because someone was offened then there would be nothing left. Are you saying that you would listen to everyone if they came in to get a book and then came back and said ' this book offened me, I want you to take it off the self.' I'm sorry but, I'm having a hard time believing that your going to listen to every single person that comes in a says that. Also, @CAPS3 do you know it was offensive to them are you going to have them show you what was the problem with this book? My guess is no because you don't want to deal with that many people about one or two maybe even five books. I'm not saying that people don't get offened by somethings that books and movies say but, your going to have a lot more then just one person come in and say that there are more then just one book or movie. so then there would be no books left. What if you have someone come in and they request that they have a certain movie and you say ' @CAPS4, I'm sorry we had to take that movie off the self because, it offened someone.' I have a feeling that person is not going to be happy and you will have some explaining to do. Also, what if a person comes in and asks for something and you tell them that you had to take it down and they say that it was a very nice movie are you going to listen to them also if you listen to one person don't you think that its fair if you listen to the other person also that likes the movie. I am a person that believes theres two parts to every story. So, therefore, I think that you should listen to both sides or keep what you have if that person wants to take it off the self then do it but, if someone asks for that specific one then I would let them have it because that isn't going to hurt the person that got offened by the book or movie is it. Therefore, I think that they should keep the books, movies and music all on the seleves unless more then one person complains then it would be a different story." 3 4 3 4 4 4 +4226 2 "Movies is to popcorn as music is to headphones. Right? It is all fun and games until someone's innocence is completely destroyed. The simplest forms of entertainment are being minipulated by today's world. Many of the children in our modern society are quickly becoming conditioned and used to seeing and reacting to media found in the everyday store, shop, or library. The innocence of the youth today is slowly being destroyed by the subliminal messages found in music, magazines, and movies. The messages are all the same in each type of media: sex, drugs, and violence. The world of music has evolved so much over the past decades of time. We go from jazz, disco, funk, rock, hard rock, to hip- hop/rap. All of these types belonging to a certain decade. But in our era, the music industry is exploding with rap and hip- hop music. This type of music is triggered towards the three ideas of sex, drugs, and violence. Almost every song that is heard today on the radio or on your iPod will most likely have something to do with one of those three. The sense of being so naive and so innocent is broken after listening to these songs everytime the radio is on. The youth does not need to be listening to this whatsoever and therefore, parents should be more aware about what their children are listening to and should think more about the effects that the media has on them. Recently, more and more people are turning to articles and segments of works to read instead of the 'good old fashioned' novels. The novels that were written before our era are clean and nonexplicit. But today, literature has gone down a new course. More and more, @ORGANIZATION1 companies are becoming less tradional and more upfront about topics that are sexual, violent, or drug related. For example, in @ORGANIZATION1, you will see articles strictly pretaining to sex-like actions. Possibly on the other side of the page, you will see an ad for @CAPS1 cigarettes. Soon enough, kids are going to think that everything they are seeing and looking at will be okay and soon act upon it. The libraries that are offering these magazines for rental should restrict children from reading them due to the lack of modesty and morals found in these magazines. There has always been a sense of subliminal messaging throughout the development and evolution in the cinematic world of movies. Movies are a timeless object of entertainment. But recently, the subtle or blunt 'hints' of sex, drugs, and violence is portayed in almost all movies offered in the box office today. There have been those action packed movies where there is all the fighting and the blood and the punching. Then there are the sappy movies where all it seems the main characters do is have emotional fights that are soon resolved by a session of steamy sexual actions. These types of movies are offered in libraries nationwide and are easily accessible to children. The youth of our country do not need to be seeing all of these actions and hearing these messages. In no way, shape, or form is this morally correct. All in all, library censorship is very weak. The people who organize and let this kind of media float around for kids to pick up have some moral issues that need to be checked. The more times a child reads, listens, or watches media with subliminal or blunt messages about sex, drugs, and violence, the more they are going to think it is okay to act and do these actions. All sense of innocence is destroyed and children are not children anymore" 4 4 4 4 4 4 +4227 2 "Why would you ever censor anything in a library? Apparently because things such as books, music, movies, magazines, ect. can be found offensive. If something is considered offensive, why put it in a library anyway if its going to be open to anyone in the public, including children? First off, censorship is important but we don't need it in libraries of all places. Libraries is a place where all sorts of literature comes together in one place where it can be seen and read by those who admire literature. Censorship is stopping this by pulling books off shelfs because they are considered offensive. If a book is offensive, first decide what kind of audience it would be offensive to. Then decide whether or not it is offensive to even an adult audience. If it is found to be offensive to an adult audience, then it should be pulled off the shelves of a library. Otherwise it should be placed in the adult section of the library. Libraries should have certain sections for certain books and other pieces of literature. As mentioned before, if a book is too offensive for anyone not of adult audience, it should be placed in an adult section. Books that are suitable for children should be put in the children's section. You can even have a such section for young adults for books that are suitable for teenagers. Sections in a library almost completely defeats the need of censorship. Sections help correctly place books and other pieces of literature in a library so that onlt readers of certain suitable ages @MONTH1 read them. In conclusion, sections in a library can be used instead of censorship. If we were to censor what books were on the shelves in a library the eventually there will hardly any books for anybody. Sections help keep books in a library, but keeps them in a place where the right audience can view them" 4 4 4 4 4 4 +4228 2 "As a student at a public school, the libraries that I and many other students have access to are censored to an extent. With our library being censored I do not feel that the public library should be. Why is censorship a conflict in need of discussion; every book found on a shelf is a part of history so every author that was good enough to get published should be able to have their book on a shelf. While school libraries are already censored for their age group; I feel that public libraries should not be censored for the plain reason that you, your gaurdian, but also the library has control over what they find age appropriate. If disliking the book is a problem; then put it back. Find something more common towards your own interest. Some things @MONTH1 be considered inappropriate as many things are, but at the same time each person has their own limits to this. While someone @MONTH1 dislike a teen magazine because of how it effects youth, another @MONTH1 find it inspiring. If every person found a way to rate things according to their own taste, there would be nothing left on the shelves; as Katherine Paterson expressed in her quote. When you enter a public library; it is divided into sections according to interest, age, author, ect.. When you enter a school library it is done according to fiction, non-fiction and author. Censorship amoung public libraries is not needed. Adults, students, and childeren all go to a public library. So, as the case @MONTH1 be why would you censor a library that goes for all ages. I feel that yes an @CAPS1, or @CAPS2 school library should not contain the same content as a @CAPS3 school library. But a public library, is for the public. Hints the name. In conclusion, if even more censorship was done to public libraries, libraries would be used less than they already are. Some of the content in public libraries can't be found in school libraries, but also adults wouldn't be able to find the content needed for their own interests, jobs, or even schooling. So as the fact @MONTH1 be that some things @MONTH1 seem innappropriate to certain age groups, it can help someone in a completely different age group." 4 4 4 4 4 4 +4229 2 "I personally believe that there shouldn't be a whole lot of censorship in libraries, except for things such as complete smut and pornography. However there are many different beliefs on this subject. Some parents @MONTH1 think it's necessary to control every bit of information a child takes in, while others are more forgiving. The main conflict with this issue is how different everyone's restrictions are. A lot of parents believe that if any politically incorrect information enters their child, he/she will be corrupted for life, but that is completely false. Nowadays, almost every single person goes through something traumatic, witnesses something illegal, gets involved in drama, experiments sexually, and/or experiments with drugs. The truth is, it's everywhere, and your kids have already experienced it and are used to it. Reading one book with a couple curse words here and there, or an intimate moment isn't going to ruin your child, because chances are, he/she is already doing it all in real life. It @MONTH1 even be happening in your own home and there is nothing that can be done to stop it. Trying to control our lives as if it was your own provokes kids to rebel even more when the chance arises. I say don't worry about censorship in libraries except for the obvious things like pornography, and sex novels, racist books, ect. Maybe if we quit hiding so much from the more mature teenagers, and quit treating them like toddlers, they wouldn't go looking as much for all of the 'bad' things out there. Parents need to quit thinking they can get their child to believe there is nothing bad in the world. If they aren't aware of the mistakes that can be made and the consequences from it, they won't know what to do if they find themselves in a similar situation as one of the characters in one of these 'offensive' books" 4 4 4 3 3 3 +4230 2 "Offensive @CAPS1 @CAPS1. Books, music, magazines, movies, commericals. Is it right to have all types of @CAPS1 shown to all ages? I disagree. A variety of people could take offense to the content this @CAPS1 contains. I think that there should be a designated area, or all the alarming @CAPS1 should be removed so everyone can be at peace when they are at the library, or just watching television in their own home. Even though some people @MONTH1 not take offense to any type of @CAPS1, you have to think about the parents. A majority of parents would not want their children to be surrounded by all the effects that this @CAPS1 brings. Some content @MONTH1 not be suitable to younger kids. Whether it be going to the movies or just going to the library, children can see all the violence and misbehaving going on in the world today. I believe that drugs, alcohol, and curse words have a big influence on kids these days. I think it is our responsibilty to protect them until they are at an age they can make their own judgements. Religion. Our religion plays a big part on what we think is right or wrong. I was taught to always treat people with respect and to try my hardest to get along with others. A lot of the @CAPS1 contradicts what I have been taught. If you see something on television with your favorite actor or actress on it, we tend to believe it is acceptable behavior. If you have ever been to a movie theater, you know they have certain ratings. The ratings are there to protect younger kids from getting into adult movies. They enforce this rule to an extent, but I don't think they enforce it enough. At the least, libraries and movie rental places could have a designated area for adult rated content to respect those who disagree. A few years ago when my little sister was about two or three, she was watching a movie with me and it had a few curse words in it. She had never heard them that often and wasn't sure what they meant. For the next couple of days, she went around saying the word and my parents weren't very happy. She had no idea she was doing anything wrong because she heard it on a movie and if they could say it, then she could too. Children sometimes don't know any better and if they would happen to say it to a stranger, they would be offended. @CAPS1 can be harmless, but it can also be offensive. The safest way to keep the new generation respectful, is to shield them when they are young so that they can learn what is right and what is wrong. When they come out into the real world, they won't be difficult to put up with and will have proper manners. No one will ever agree on the same things, but in the end, we need to do what is right for the betterment of our community." 4 4 4 4 4 4 +4231 2 "The book called @CAPS1. the book is about a young @CAPS2-@CAPS3 man that starts school at @ORGANIZATION1. While the first few weeks in school he is picked on and made fun of. So one day he has join a boxing class, and the wreslting team at his school. But at the end of the book he ends up fighting everybody the was bullin him. I personaly the book should be kept on the self because its a life changing expersance for a young man. For some people this book they will or have even read this book several times, I know I have. I only hope that othere people will like or even love this book as much as I have. So I guess what I am trying to say is you really never know what you are going to like in till us sit there and read it from beganing to the end" 2 2 2 2 2 2 +4232 2 "When you go into a library have you ever seen the many subjects people write about? Some from their own experience and some made up. I personally disagree that offensive books, music, movies, magazines, etc., should be removed. The authors or producer of these sort of entertainment were made to be read, hear or watched by people that are interested in them! Also if the libraries are having diffculties with the complainments towards the offensive materials they should just make a separate section. To begin with, why are books, music, movies, and magazines produced for? Easy one! To entertain us; to expand our knowledge on things; to let us have intrest. If none of these things were invented, life would be boring, now i'm not saying we need these offensive materials, i'm saying it's there so we can think bigger about topics instead of them same-o-same-o. Producer produced 'offensive' material to catch attention and to be read, not so they can sit on the far back of library where nobody goes just because it has some things others @MONTH1 not like. If you don't like those type of things, stay away from them, don't bother reading or listening to them! Why should libraries stop the people that made those things from making money? Does that seem right to you? It's bad enough they're sencond guessing if they're good enough to be shelve worthy. There's many books out there that are horible and a waste of time reading it, so should they be removed to? Think about that one. Secondly, I disagree with the removal of these type of materials because libraries could always make a separate section. It @MONTH1 cost money, but what's more better loosing tons of costermers or finding extra room? Libraries are very big already and i'm sure they could find a little bit more room, they separate everything into genres already. Although I see where others come from about removing these kinds of materials from shelves. There @MONTH1 be some cautious parents that don't want their children exposed to that sort of stuff. Teenagers especially, they @MONTH1 get ideas of the language and scenes from these sort of stuff. I once read a story about a man that read a book one of his old pals from college wrote about killing women and teering there inside out, this man got a idea to do it to his mother. He beat his mom and cut her body open, leaving the insides on the outside lawn. The man is in jail now and the book was removed from shelves. Still I don't think it should have been removed because an imature, ignorate person thought it would be cool to do it. The book was made up and the guy was most likely dellusional and sick in the head to do it. And because of his actions and author has to suffer from money lost and big waste of his time and effort he put into it. In conclusion no type of material should be removed because it has been found offensive. Some people just have ignorance to not understand the books, music or movies was made for entertainment for those who like that kind of stuff exposed. Like i've said recently it was made to be either read; heard; or watched. A separate section would be a great idea." 4 4 4 3 3 3 +4233 2 "All terms of offense are based on an opinion. If one person finds a particular word offensive, doesn't mean the next guy will feel the same way. Some parents aren't as strict on there kids as others, and some just dont care. Of course there's always that gangster rap that talks about drugs and women being objectified that kids really dont need to belistening to. The horror movies that are rater ''@CAPS1' for a reason, they could have nightmare for weeks. Children's mental states aren't fully developed at a young age like ten. They still cant tell whats real and whats not. They need a trusted adult to rely on to tell them how to feel, to act, to do, even to think. Children just are't mature enough to handle a mojority of material in this world. No books should be taken away or hiddne fvrom society, it should just be given to you at your own disgression. Another possiblility would be have a group of many people gather and vote on age restrictions for particualr material. All information is helpful, just not all is necessary. These days its hard to hide all harmful material from children, even some teenagers. This wolrd is becoming less and less sensitive everyday. Eventually everyone will be completly insensitive to all 'harmful' movies, books ,amgazines, @CAPS2 shows, and music. It wont even phase anyone anymore." 3 3 3 3 3 3 +4234 2 "Censorship in libraries is something good to have and something bad to have. I think that there could be some things adults can read and some things kids can read. You don't want the kids reading anything thats too mature for them right? Libraries are found all over the @LOCATION1. A lot of people say, '@CAPS1, well they shouldn't even have the book there in the first place.' @CAPS2 think about this, maybe you should just have your kid under control and watch what they read. Or option two, dont have your kid go to a @CAPS3 library. @CAPS3, which let me explain, is @CAPS3. Which means the whole community can go pick out something. A @CAPS3 library is suppose to have a variety so anybody can find a book they would like to read. Yes some things are very inappropriate for kids, doesn't mean we can't have it in a @CAPS3 library. Just make sure that you know what your kid reads. If you do that you should be fine, and your kid will be the same. That's how i feel about censorship in a library. Its @CAPS3, so it's meant to have everything. Which everything includes the good and the bad. I think some people just have to live with it. So I honestly feel that libraries for the way they are is to be left alone." 3 3 3 3 3 3 +4235 2 "Has anyone ever stopped and thought about the negative aspects of censoring a book? Many people of different beliefs take offense to books that show negativity to their ideas. When people are offended by a book the first idea that comes to mind is to try and get the book off the shelves by censoring it from libraries. I think that if a book offends a certain group of people they should just simply not read it. Why should other people not get a chance to read a good book just because it offends someone else? Banning books would go against what our country stands for. How different would it make us if we started censoring books in our libraries like other countries with governments who have the final say on what can and can not be read? Imagine what life would be like if all books found offensive were stripped from our shelves; there would be nothing left because anyone can find something offensive in any book. I understand that sometimes things written in books can really be disturbing ,and offensive but that doesnt give anyone the right to just take it off the shelves. Censoring books is a short term answer to a long term problem. I believe that if we always resort to censoring books then we will become a less creative society. There are many people who @MONTH1 actually want to read a book but never get chance just because it is censored from library. Books that are censored are usually the books that help ones imagination. Would you want to live in a world where people are void of creativity?" 3 3 3 4 4 4 +4236 2 To be honest if I was a librarian I would leave them up on the shelfs accoding to what @MONTH1 state law would have to say. If the state doesn't have any promblems with having them up on the shelfs then all student body will be able to check them out. having magazines shows whats new in the world and what is not. Also just like checking out a book how you have to take a test over it called reading counts. Then you would have to read an article from a page in the magazine and wright an essay over it and submit it to whom ever is in charge of that department. 2 2 2 2 2 2 +4237 2 "Many things such as books, music, magazines, ect., causes problem acts for children to act different, but i say that everything should stay in the library because there more things that causes acts than the things that are listed. Many children get their acts from books, movies, and magazines but most get their acts from something different. Children gets most of their acts from the television that their viewing at home wich causes them to think if their parents doesn't care about what their watching than it's okay to view what ever.So the most that is causing acts is what is being viewed at homes or in the movies. So I really say that it's okay for children to read or watch what evers legal on television. But to me in the the libraries it's up to whoms ever controling it should decide by ages. just like legal things only legal for adults. I say that it's only for adults because childern starts argument from what ever they see expecially when their around their friends. When children is around their friends they feel that it's cool to do what ever. And it's all coming from thing based on violence in the books that children reads more often. So to me I will say that it shouldnt be okay for what is being viewed." 3 3 3 2 2 2 +4238 2 "I have read a few books that I dont approve of. And I feel that yes i do have a right to remove these books from the shelves. But whose to say what i think should have an affect. Honestly i do not think that books should be taking off the shelves or music should be banned ect... I think that there should be a little more athority on the age limit of books in libraries, and a seperate place for music and other things of that nature. I would not want my kid to walk out of the library with a book about sex, gangs, or stuff that should not be known by a kid. Instead of banning or removing these kinds of books off shelves why not put a strict age limit on books, and actually stand by it. Yes there is an adult section a kids section ect.., but i've seen so many young kids walking out with books magazines and other adult items. I know how it feels to try and concentrate on a book newspaper or magazine you are interested in when people are blareing there head phones. And i still feel the same way about the music as i do with books. Dont bann it from the library just bann it from certain areas of the library. Its all out of respect to people who are wanting to be in a quiet area. Im not the type of person who wants to take things away from people because everyone has there own interests and beliefs in life, but i am one who believes in setting rules that should be followed. I see good comming out of everything a library has to offer if only they could exclude things in certain areas. And also set and stand by the age limits of the books being checked out." 3 3 3 3 3 3 +4239 2 They should be aloud to be removed because some books are offensive. Even if they are offensive they can teach young teenagers about their past. The books could be about the kkk or the @ORGANIZATION1. Some young teens like to read books like this so they can learn and see what people went threw. The books could be a school assignment. The way i see it is if your teenage child is interested in the history or the violence of the past you should allow them to read what they want. Some book such as @CAPS1 @CAPS2 @CAPS3 and @CAPS1 @CAPS2 @CAPS6 are great to read for school assignments. These @CAPS6 book's are very helpful to read because you can learn about your history and about the wars at the same time. I think if your child checks a book out from the library he or she should return it in a week. The library should give the child a certain amount of time to return the book. If the child dose not return the book in that amount of time they should charge them for every day it is late. If the book is damaged they shud charge who ever checked that book out. The book shud be in the condition it was in when it left so other people can check it out after its returned. the library should keep certain books at the library such as the bible and collage books. The libary should allow @CAPS6 books to each person. Instead of three or four this would keep books on the shelfs. It would also keep people from loosing books. I think people under twenty @CAPS3 should not be aloud to check out movies or music. I think they should have to show i.d. to prove there over twenty @CAPS3. there should be more rules then just being quit in the library they should make people start keeping books at the library and only allow them to take home @CAPS3 or @CAPS6 books. For instance i check out @CAPS3 book every week and return the @CAPS3 i checked out the same day i go to get a new @CAPS3. I only check out the book i really want to read and i read it and return it. The magazines should never be checked out. 3 3 3 2 2 2 +4240 2 "I think they souldnt be pulled off the shelves because everyone has different opions . one person @MONTH1 think a book is offensive but the next @MONTH1 not. Some people @MONTH1 think any books with god or jesus in the are offensive but that @MONTH1 just be because it is not there religion. If every person took off a book that they thought was offensive there would be no books left. Because people think differently. Or some @MONTH1 not like the @PERSON1 books because of the violence and goryness but to some people those are there favorite books, so that would be unfair to the ones who like the books that others dont. There are many books out there that not everybodys gonna like the difference is how you think and what you think is right and wrong" 2 2 2 3 3 3 +4241 2 "Censorship in libraries? Is it a problem? Should we fix this 'problem' or is it for the good? People of different culture, background, and life could be profound by these articles in readings. Can these books be offensive? They could be offensive to some but to others only educational. Statements have been made all over the world of people speaking on what they believe is right or wrong. How many people believe that censorship in libraries is really offensive and should be removed from libraries? Who really are the victims when books and magazines are being thrown off the shelves? The author of that specific article that's who. If it is said that every reading that comes off offensive should be taken off the shelves, then what would be left on them. Some people @MONTH1 take romances being offensive or comedy or horror. Romance could be hurtful to someone only because they maybe just got out of an relationship, or comedy because they are miserable and don't know how to laugh anymore or know what happiness is. Who knows? Opinions such as these would be only terrible for business but also terrible for the educational and history part of life itself. People of different races and cultures @MONTH1 have another opinion on the situation of censorship. From all over the world there are cultures spreading throughout. Born into a religion could be a huge affect on what their outcome is on a book, magazine, or a movie. Movies of past experiences or massacres that happened to a cultrue @MONTH1 be difficult for some people of that culture to take in. The normal response to a movie such as that would be to become angry or frustrated. Only for others it is an oppertunity to learn what those people went through and grieve for the loss of the people during that time. To support the people who made it through those heart breaking times and become a friend to them and learn more about them, their culture, and way of life. Have you seen protests arouse before you? Anywhere in the world? On television, hear it on the radio, or see it in the newspaper. Everyone has most likely seen this type of protest or attack on the opinion of another person. There have been protest in the past of the freedoms of a person or even race. If everyone begins to complain and argue of what is being put on shelves in libraries. What will come of our world? What will we know about the past? What will we begin to predict for the future? Anyone, and even I can make observations of the acts going on around us. In my experience, I have seen of attacks being struck upon people who only put a picture in the newspaper, or a small article spoke out on television. Who are we to say that everything needs to be removed off the shelves in libraries? These are just people who have been hurt and don't want to relive that experience. Overall, my opinion on if censorship in libraries should be extinguished. I believe the answer is no, every person in the world is going to be upset, hurt, or broken about something at least a million times in their life time from now on. Whether it be in books, music, movies, magazines, or anything else. They just need to understand that without any one person's culture that there would be no history of life before us" 4 4 4 4 4 4 +4242 2 "We as @CAPS1 have the right to say what we want, and do as long as it is within the laws. If they take away some books because they are racey or because some people find them wrong, then they are saying we shouldn't learn the history of our civilization. A great man once said '@CAPS2 who do not learn from the past are condemed to repeat it.' @CAPS3 is saying that if we take away the books that are even obscured we are taking that history away from our children and they will do the same mistakes that we have done in our lifes. Taking away the content that is obsene will make our children unknowledgable to the fact that it happened or how the past really was. '@CAPS4 @CAPS5's @CAPS6' is under critism because it uses the '@CAPS7-word' alot in the text. There is no reason to change the book because that is how the people talked, back in the day, and how things were done. If they change the book they change history and they take away knowledge from the children of tomorrow that slavery was a harsh, harsh thing. When I think of censorship in the library, I think of how the @ORGANIZATION1 is trying to change the past and how it is trying to nurf the childrens history of what really happened. Censorshiop should be on tv, movies, and music so the little kids dont see the wrong things to earl, but when it comes to lititure in the library they shouldn't do it at all because only the liturate people will know what it means and what the text is actually saying. There should not be a censhorship in the lititure of the past, the present, and the future." 3 4 3 3 3 3 +4243 2 "In my way of viewing things i say that what i think is that the book, movies, music, and magazines should be put in critical order because some of us want or like to read or see stuff about what we want to see like the news that are in one way good to us, but some others like to see what's behind from the reality and want to speak up but they can because they are afraid that they would get hurt for speaking up. So i think that those things(books, music, movies, magazines) should not be removed from the shelfs because those books or movies can bring you what's going on in the world and how is affecting us in the way of not paying attention to it. Some experiences that i have is music i had once heard a song in spanish called '@CAPS1 The @CAPS2' and it talks about the corruption in @LOCATION1 and that how the people from the bottom suffer because of the people from the top do not care about them, also if you treat them as kings they will treat you as a slaves, and that if you give them the @CAPS2 to control you, they will take out advantage of it, how the honest people work hard to bring food to their homes, but its not enough because of the leaders on top that want all for them... its a very good song that says the true about it and that nobody does something to finished.So i don't want that songs or books that show the reality disapper because some people doesn't like them at all" 3 3 3 2 2 2 +4244 2 "I believe that everyone's opinion deserves to be publicized fairly. Just because one person's view is considered to be right, doesn't mean another is wrong. What is offensive to one person @MONTH1 be informative to another. I've read a lot of books that parents @MONTH1 not pick out for their children. In reading these books I see that there is no glamour in doing drugs or getting in trouble with the law. For some teens, books like these can show them the side of life they haven't experienced and find that they never want to. If a book is too explicit for children, simply place the book in another section. I realize that there are books with graphic sexual details, and those should only be premitted to be checked out by adults. Parents should have concerns about their children's innocence. But I also believe that they should watch over what type of books they're reading too monitor the vulgarity of them. Some @CAPS1 contain profanity or sexual induendoes, some contain praise and worship, others even have screaming. Any of thses type of musics can be found offensive by someone. That doesn't mean to run off and hide all of them. There'd be no @CAPS1 left. Not everyone shares the same opnions in this world, therefore there should be equal opportunity for people to read,watch, or listen to whatever suits them. I'm not saying that there should be a stock of porn in the library, but if there are movies or books about shunned religions or beliefs then they should be just as welcomed as the ones about common religions and beliefs. Everyone finds different things offensive. If there was a bible in the library and someone found it offensive, should it be removed? It's one of the most popular books in the world, yet some people still find offense by it. Someone who is mormon, muslim, or athiest might find offensive if there is nothing in the library about them because some people find it offensive. The library is a place of knowledge, not judgement. I dont't believe that certain books should be removed from the library if they offend someone. If you don't like something that is at the library, don't rent it. If you don't want your children to, don't let them. Simple as that. Everyone is entiled to freedom of speech. Authors express themselves through books and articles, directors through movies, and musicians through their music." 4 4 4 4 4 4 +4245 2 "I believe that if it has offensive language then it shouldn't be left of the shelf. Also it really does matter if it has offensive language because you don't know who, where, when you child is going to learn offensive words. Another thing he's going to say any offensive words. Next one of the most important thing is that if you want your child to never have offensive language or any other bad thing you should watch what you say, what you do. One reason why is because once he growing up he might follw you foot steps. Another thing is that if the magazine, movie, book, etc.,might have some raisem thing like jugging the person from where he/she come from, how they look, how they talk etc., can end up in a bad situation. In conclusion what i'm trying to say that it's both parents and book because the book your child has choosen might bad thing and the parents should watch them self on how they act" 2 2 2 2 2 2 +4246 2 "Every parent wants to protect their child's innocence. They do not want their children to come in contact with things that might influence their decisions. The truth is though that they are going to run into these types of things eventually, whether it be from other kids at school, what they see on television, or what they see on the @CAPS1. It is their choice as of what decisions they are going to make, so I do not think libraries should be censored due to the content of the material. One reason libraries should not be censored is because nobody is forcing a person to pick up material that might have offensive content. It is all about choices. There are a lot of other options on the shelves that do not include such topics. Some people @MONTH1 want to read or watch something with such content. Taking these pieces out of libraries would not be fair to them. People should have the option to read or watch what they wish. Censoring libraries would take away these people's right to such topics. Another reason libraries should not be censored is that eventually nothing would be left. As Katherine Paterson said, 'And then we have no books left on the shelf for any of us.' @CAPS2 is a very true statement. After one censoring, people might still think topics are inappropiate, and the libraries would have to be censored again and again until there is nothing left. People eventually will not be able to use libraries. Losing libraries as an option will cause people to lose their right to that resource. A final reason that libraries should be left uncensored is the difference of opinions. What @MONTH1 be offensive to one person might not be to another. How would what should be gotten rid of and what should not be decided? It would be much easier to just leave the people to make their own decisions on what okay to read and watch and what is not. Nobody is forcing people to pick up a book or magazine that is going to offend them. If you do not like what is being discussed, do not read or watch it. It is as simple as that. There are many more reasons libraries' content should not be censored, but here are three reasons that are obvious. Censoring libraries are going to eliminate a person's choice. It will cause problems, as to what is appropiate and what is not. Eventually libraries will have nothing left. Of course every parent wants to protect their child, but eventually they are going to grow up and have to make their own choices. Censoring libraries is not going to stop children from learning about offensive things. All you can do as a parent is raise them well and hope that you have taught them right from wrong." 4 4 4 4 4 4 +4247 2 "I think censorship of certain materials, books, music, magazines, etc., that are offensive should be removed from people who have yet to mature, unless a parent or gardian approves of it. I think censorship can be a positive things for little children and younger folk because kids that are young of age should not view or listen to things such as bad things. These things can be a negitive influence on the child's character and personallity. No one should hear other kids cursing in public becuase this can influence other kid to do the same. I know my parents don't want to hear me say or do bad things around my younger siblings becuase this can influence them more to do it too than if some kid was saying or doing bad things. Some censorship shouldn't be aloud to those who are matuered, such as in high school where you have to get a signature from a parent to see some things that should not be shown to little kids becuase older people have matured and they understand why not to be a bad influence on people. Censorship of certain materials, books , musicm magazines, ect., that are offensive should be removed from people that have yet to mature, unless with parrent concent. People who have not matured should not view or listen to any thing that is a negitive influence on themselves." 2 3 2 2 3 2 +4248 2 "Everyone loves to take their little children to the library and pick out all kinds of book to to read, but what if your child picks up that one book that, lets say just isn't want you want them reading. Then what do you do? Take the book from them? Look for more and just let it let? Well you cannot blame the library for having the book. Or say you see books you do not like on the shelve at @ORGANIZATION1. Not only books but music or movies. Even if you find it offensive, someone else might not. It should not be a big issue at all because not everyone thinks alike, some of those books, music, or movies could have great information for others, and also every book, music, or movie has its purpose. Although you @MONTH1 not see it everytime it is something that you do not like. Wow, the world would be SO boring if everyone liked the same music, read the same books, or just watched the same movie over and over again. Eveyone has the right to chose what they like and enjoy watching, reading or listening to. The libraries and stores also should have the right to put whatever they want on their shelves. Yes, somethings are not approite for others, such as yonuger kids but it does not matter. You as a parent should do your best to keep them away from those things you do not want them to see or hear. Another thing is that just because you do not like something or think it is stupid does not mean that another person does not love it! Not your averge teenage girl is going to want to read about building a house or listen to music from the @NUM1's, but does that mean that stores should not sale them? Everyone has a different taste, just like in music. Most younger kids these days are starting to listen to the fast rap music. That their parents swear up and down you cannot understand. Although in relatity some of those songs have great meaning to us teenagers. Lastly every song, book, or movie has a meaning. Not everyone will see the meaning but it is there. Everyone has their own opinoin. Librarys or stores should not take things off their selves just because one person thinks that it is unapporite." 4 3 4 4 3 4 +4249 2 "I believe that people should not be able to remove books, movies, magazines, etc. from shelfs of the libraires. If someone takes a movie, book or magazine offensive they should contact the auother of the pieace and can complain or give their thoughts. Even if someone does find someones work in a wrong way, people have their own opionons and thoughts about everthing in life and are allowed to voice their bellifs and disbeilfs. Also, people can read on the front or back of other peoples work which summarize what the work is going to be about or what the work is talking about. People can decide then if the would like to read or watch further into it. Everyone in this country is allowed to say what they think and if someone takes the time to get their voice published then others might want to hear what others think. People can disagree, no one has to agree with anything anyone says. It is alright to not agree with another person says but everyone does have the right to stand up and say what they think about the situation. For example if my coaches were to tell me that they think im doing something wrong in gymnastics or they think something doesn't look good when I do, I let them speak. I let them tell me what they think would look better or would give more points. Then after they're done talking I give my thoughts and say '@CAPS1 I think this because this' I try to reason with them. For one its more respectful and for two everyone can have their own thought about something. And who knows they actually might be right if you give them a chance to speak. But, if you really don't like what another pieace of work might say you can always not read what they wrote, or watch what they produced. There is no need to be rude. If you strongly diagree you can always write your own book or publish an article voicing your own thoughts, that way someone can diagree or agree with how you feel about a certain subject. That is why I feel that they should keep all books, magaiznes, movies on shelfs. Everyone is allowed to express themselves and explain their actions toward a certain matter. Sincerly, @PERSON1" 3 3 3 3 3 3 +4250 2 "To whom it @MONTH1 concern: The idea of censoring books, music, movies, or anything else from libraries or from the public eye is very offensive. There are many things that could come off as 'offensive' to any individual. Taking books or anything off the shelf because someone felt that it did not go with their certain morals or beliefs is against the writer's freedom of speech. It also can start serious issues with feuding religious groups or persons of different ideas. This also shows that the library, or so far as the country, is under one certain idea and other ideas that conflict with that will be oppressed. One of the biggest concerns is that the freedom of speech is taken away. It @MONTH1 be something as trivial as '@CAPS1's @PERSON1?' now, but if people keep taking books off the shelf because they find something wrong with it, then our freedom is taken away. '@CAPS1's @PERSON1?' was brought up because a mother had actually gotten a certain book of the '@CAPS1's @PERSON1?' @CAPS4 taken off the shelf, because her child had gotten scared of the halloween edition. The fact that something could be banned for something so trivial is a frightening thought. There weren't many cases of this specific @PERSON1 scene scaring all the kids, so there was no need to get it banned. When someone finds something even a tad wrong they want it banned and thrown away, never again allowed to be shown to those that @MONTH1 even find an interest in it. A big thing that @MONTH1 conflict with censorship is the idea of religion. The @CAPS5 is a published work, whether it is religious or not. Who's to say that it can't be banned? What if someone of a different religion found it highly offensive? This could cause even more conflicts between religious parties, and in turn anything religious would be banned all together. That small, faint line between state and religion is going to get blurred solely from censorship. If the @CAPS5 or works for catholics get banned, then so could published works for wiccans, muslims, buddhists, and any other sources of religion. There would be nothing for a religious or spiritual person to find comfort in. Not to mention the fear some publishers or authors will have in publishing their works. It will then become a topic far less talked about, for they would be afraid of getting into legal or social trouble for expressing their thoughts and feelings with their spirituality or religion. This censorship will only cause future issues. This could lead to not only the religious books being banned, but anything that strays from the social norms. If someone was homophobic, they @MONTH1 start having a gay author's works banned, or just a book about the @CAPS7 community banned. That small sense of security those in that community have in those books will be taken away. Personally, I find comfort and my sense of being alone is dulled by these books. There @MONTH1 even be a possibility that some books, not necessarily just @CAPS7 books, hold someone up from that pit of depression they are so close to. It is a world someone loves to enter, to hide or confide in. To take someone's mental safety is worse than taking their physical safety. Most people do not realize what sort of trouble they will start with censorship. It @MONTH1 mean nothing, but those that decide whether or not to censor something have to think of the picture at large; Do they lose customers for keeping it on the shelf? Or do they lose customers, and stop giving the rights of freedom of speech? It is a heavy decision to make but the decision could make or break the publishing group or legal party" 5 5 5 4 4 4 +4251 2 "Devin @NUM1 @NUM2 @CAPS1 @CAPS2 Do you like the libary? There is always an argument about how books, music, movies, magazines, ete., should be removed from the shelves if people find them offensive. Which brings me to @CAPS1 @CAPS2; there is always the choice of a different libary to choose from. You also don't have to look at the book or watch the movie. Being an @CAPS3 author you have the freedom of speech, you can write whatever you feel like writing. First, is your choice of libary. There is sevral different libraries in one town. Some have childern sections, where all the books are appropriate for young childern to read. Also the parents of the childern need to keep an eye on what their child will be reading, or looking at. There has to be at least twenty to thirty libaries in @LOCATION1, so you always have a different option. Second, you don't have to read the book, or watch the movie. If you see something you don't like about the book, why complain about it? Just put the book down, someone else might be interested in the book. You have the freedom to pick out the book. Last, is the freedom of speech of the author of the book. Being an @CAPS3 citizen you have the right to write down whatever you want to write down. So people do not have the right to blame the author for what he or she writes down. Many people have been inspired by certain books that throughout history have been controversial. Where would we be without those books and authors? I have given you three reasons on @CAPS1 view of censorship in libraries. You have the choice of libraries, you don't have to read the book, and the author has the freedom to write what they choose" 4 4 4 3 4 3 +4252 2 "Hiding @CAPS1? By: @PERSON1 to the harsh world we all live in, I do not believe it is morally correct for a program, of any kind, to hide the hard reality of our world from any person. @CAPS1 will be @CAPS1 and one shouldn't ever hide what is true from the eyes of another person's mind. If one person makes the choice to close his eyes and go into a fantasy world then that is one person's right as a human being. However, one man has no right- whats so ever- to close the eyes of another person for them. Personally, I myself am not afraid to look into the history of man's choices and take upon myself the burden of the harsh knowledge that I have inherited. I look at the human race of this planet to be whole and to be one with another. This planet doesn't belong to one race, nation or culture of people; it belongs to every single person equally. I made the decision to take on the resonsibility to know the past and use it's lessons to better the future. This world belongs to me as equally as it belongs to you; so my decisions will affect you as much as they affect me. That being stated, every person's decisions impact everyone, not just one's self. People think that we should hide things that are 'offensive' to other people. Racism, world political issues, casualties of war and personal ethics- are some of these 'offensive' things. However, offensive or not, these subjects are very real and very much alive in our world; So why should anyone have the right to try to make these subjects dissappear for another person? In @LOCATION1, everyone has the right to freedom of speech and expression, but how can these freedoms be carried through if people remove these expressed ideas and beliefs from the shelves of the readers? We all have a right to make the decisions that affect our world and if this world is equally owned by everyone, then everyone's decisions are equally burdened by everyone. That being said, we all have the right to know the decisions, actions, and the concequencies of these decisions and actions that our people all create every single day. In conclusion, I believe that our world is harsh and also beautiful. Being that of which it is, I believe it is every man's right to live and decide the way he wants to. No man should ever make another person's decisions for them. Everyone is resonsible for their own life and how their life affects other people. However, no one has responsibility to hide or change the world around us from any person, for it is the knowledge of the people that make the world what it is and it is the knowledge of the world that influences a person's decisions" 4 5 4 4 4 4 +4253 2 "the author ketherine paterson is like letting you know like life is going to dont be behain go forword and grab the book from the shelf fot you and for your children because most of the book are gone because other people got them. i would go to the library and grab the book from the shelf for me and my kids. mom can grad some good books for the kids like a book that have the parts of the body grammer so they can start learning something rite no that they are lilttle and they will ganna star to make sentences.in @DATE1 in warsaw school the principal decide to remove everything from the library because people didnt go and check out books,music,movies,megazines, etc he decide to remove them because people didnt check out nathing and most of the people put everything in obserbation but my question is why people didnt check out something for their kids so they can start to read to learn something from their moms school. in my opinion if i would the principal of the school i wouldnt take of the books nathing about the library i would live everything so they can grab the books from the shelf and check them out so the kids start to lear how to read they ganna learn something special from their mom." 1 1 1 1 1 1 +4254 2 "Dear @CAPS1, @CAPS2 I have found that there has been a strong censorship in the libraries and I would like to express my strong disagreement for these actions. I have found that things have been removed from your shelves due to its content. Some of the content is vulgar and explicit and some is very offensive, but that still does not give you the right to remove these things. Books, movies, music, and magazines are very big parts of peoples lives and removing these things can be a big part of someones development. First off you should not be taking books off of shelves for any means. There is a reason these books have been written and published nad it is because they have some meaning and can teach people or give them information on things they would not know otherwise. Taking books off shelves is pretty much just sheltering people, mostly kids, from information that would benefit them no matter in what way. Yes some books talk about sex, and yes some books have offensive terms but unless children are exposed to things like this they will not know that it is wrong. If they do not read books about how slaves were treated, they will never know about the slaves. If they never read a book about a married woman having an affair, they won't understand the significance of cheating. When people read these things they learn about them, and with a little common sense they can understand these things are wrong. Books should not be taken off the shelves in a @CAPS1 at any rate and movies should be looked at in the same manner. Movies now a days have come along way. Flicks like @CAPS3 and @CAPS4 use such a high form of technology that people would have no idea how it was done just a few decades ago. Some movies due contain very vulgar language and offensive terms and sometimes even nudity, and I can relate to not wanting a little child to see that. This does not mean that these things should be removed from the @CAPS1 though. In all honesty I do not want my little brother or sister walking past a @CAPS5 container with a picture of a girl in lingerie on the front and I do not think anyone else is ok with that. Other movies should be put on display for kids to rent though. Movies that can teach them history although there is very graphic content. Movies that will help them learn how not to do somethings like kill or rape. Movies that can show these things but also teach how incredibly horrible these things are at the same time. I think that the movies that go past this should be put into an adult only section and I do not think any pornography should be put on display anywhere, but movies need to be available to a very high extent. Movies are very good teaching tools and magazines follow that same path. In the world today we have magazines like @ORGANIZATION1 that are jam packed with information that can better kids from a young age to even people who have been out of school for a while. I feel like some educational magazines @MONTH1 be graphic and show things that children should not see but on the other hand, seeing it will help them understand. Now I am not saying I want to put @CAPS6 magazines on display for people to see and learn about how little of clothes some girls can wear but magazines that @MONTH1 show the very little amount of clothes people are forced to wear in countries in @LOCATION1. They should be able to view magazines that could show, a little more on the nude side, of people who are starving because they only can eat twice a week. Things like this although can be very offensive maybe to some people should be viewed because it can teach. It will show kids that these people need help and they can be those people that help them. Once again pornography should not be available at anytime but other magazines that have an educational aproach but could contain some naughty things due to the teaching should be able to be heard. Magazines should be available but on the other hand you have to take a more careful approach to music. Music is probably the hardest to figure out, of these censored things I have spoken of today. People use music to express feelings. Whether those feelings are good or bad they get them out through song. Music is something that brings people together and allows them to be unique at the same time. Music should not be taken away from people going into a @CAPS1 because of its vulgar content or anything of that matter. There is a thing called the 'clean' version of pretty much any song that has curse words in it. Songs that cannot be cleaned up or are not available in that way I can undertstns why they are taken off the sheleves but other than that I think everything should be made available. Music can be so powerful to people and taking it away is not the right thing to do. In conclusion the censorship should not be done. Yes there are somethings that have to be removed due to the extremeness contained in it but if things can be learned from I feel like it should stay no matter what. People go to a @CAPS1 to learn and there are so many tools that can be used to teach them. Music, movies, magazines, and books can be such a big part of peoples lives and taking these things from them is not right" 4 4 4 4 4 4 +4255 2 "Have you ever been reading something that made you mad? Well, to be honest I can't remember the last time I walk into a librarie and found something there that could had offended somebody. But thats just me, I'm sure that there is stuff out there that could really get to a person. No, I don't that materials should be removed from shelves if they are found offensive. People go to libraries to find out information on stuff that they don't know. If you are checking something out then you already know that there is a possibility of something that you don't agree with. I think it should be anybody business than the person checking it out. Now, I'm not the type to get all frustrated or upset from something that I have seen on a shelve, but I could image that there are people out that are like that. If I had found something that I disagreed with I would not read it or just think nothing of it. I also think that you should be prepared before walking into a public place where they have all kinds of reading material. To you it @MONTH1 be offensive, but to others its hilarious. All I'm trying to say just do'n get all upset over something that you have read." 3 3 3 3 3 3 +4256 2 I believe books are writen for a reason and the words in the book goes with the whole point of the book is the words in the book are ment to be in the book. But I am also the kind of person who sees words that are to offensive for people to read. But no by far I think not letting people read the books that has offensive wording in it is kinda off silly because the author ment for it to be in there and if you change one word you kind of are changing the whole book and whats its trying to say. But if some books are to offensive yes i believe it is good to not let people read but to take it off the market and exit the book and and try to resale it. But some people would be upset about the changes we make because they will think that the book is saying something different but its not it is just worded differently. But i believe in both not to stop letting people reading them and for them to stay on market. Why I think its good to let books like this go on books that had offensive wording in it yes its worng but its also worng for the people who dont see it as being a offensive. Am sure the author of any book that has offensive wording in it didnt mean for it to hurt you. Am i know in my heart that they are sorry for hurting you in anyway. But why I think they should stop is because some people would really have a hard time reading offensive wroding it could be about something that happend to them when they are little or just a word maybe they just dislike. But if they come across any word they dont like they should stop reading. I believe it is very unfare if they take a book away just because there might be one word someone dont like. But to others its does nothing to them. I think books that have a offensive wording should say somewhere like on the back of the book it should have a warning if it has any offensive working in it I think this would help out alot of people would start doing that. This is really kind of silly because a book is a book and you should alway read about the story on the back of the book and if its a offensive and you dont like it that tells you not to buy the book. Dont always buy a book by the cover because the cover could be with flowers on the front of it and the book might not be about flowers at all. I really feel like am on both sides 3 3 3 3 3 3 +4257 2 "Libraries are a center of learning. They are there to provide all kinds of different information. So why should you take out offensive material? Even before internet, the all knowing source, people depended on the libarary for research. I do not think that things should be taken out of our library. Public libraries have always had a good censory about @CAPS1 they put on their shelves anyway. As Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have a right to remove that book from the shelf, that work I abhor, then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS1 she is saying there is, everybody has a certain opinion, they @MONTH1 take offense to different things. Therefore, if anyone could have the right to take a book off the shelf that they found offensive, then we wouldn't have any books on our shelves. If we would travel back to the time where internet was not invented, there would not be a problem on whether we should take certain books off the shelf. That's all they depended on. For example, research and entertainment. People today are spoiled. We can go right to a little screen and type in anything we want to know and we can find out just in mintues, sometimes even seconds. People don't even have to leave the house to go buy the latest movie that just came out, you can order it on the internet or even rent it from @ORGANIZATION1. If people are so worried about @CAPS1 is in the library, why don't they worry about all the explicit junk on the internet. Sometimes people can't see @CAPS1's right in front of them. Everytime I go to the library and look through the books to find something to read, I rarely find a book that's worth questioning. Libraries are typically wholesome corporations, they have a good censory on @CAPS1 they let on their shelves. They've always had certain age group sections, and usually people and kids always stick to their age groups. Every book I have choosen too, I've read it cover to cover. In conclusion, libraries have been around for ever. Their material provides research and appropriate entertainment for all ages. No matter if we ever had internet, we always had dependable libraries." 4 4 4 4 4 4 +4258 2 "I think that no @CAPS1, Book, @CAPS2, or any sort of music should ever be takin off the shelf, if u dont like what they say in these @NUM1 catagories dnt wach listen read or anything. Just because u dont like it doesnt meen somebody else doesnt. I mean think about it is there a @CAPS1 or a song or a sintance thats so terrible that you need to take it off the shelf i say no. Also beacuse somebody might have not got to read see or listen to that @CAPS1 song or book ya no what i mean. Plus all that money and time and hard work it took to make the song, book or @CAPS1 it takes up to like almost @NUM2 years for a @CAPS1 to come out and when a song comes out u hardly even no its new because they never tell you like listen to bullet for my valentin's new song on @NUM3 or anything and when a new book comes out it's usually like harry potter or somthing like that but no, no @CAPS1 should ever be takin off the shelf's nor book nor music nor magizine. @ORGANIZATION1" 2 2 2 2 2 2 +4259 2 "There are certain books , games , and music that you and I know that shouldn't be in the library or stores on the shelfs . One word that we should study , children . Children are the future , everything that happens in the future will be because of them . Now , with that done and said ; I would like to explain , and point out why we as people of @ORGANIZATION1 should overcome together and take books , music , movies off the shelfs . Drugs , crime , violance, movies , and etc . Rappers most of the time rap about female ,killing people , and etc. Its doesn't mean that they do it , but it reflects on majority of our children . Music is heard everyday @NUM1 hours throughout televison , radio , and i pods . Its take it to even an different level with to male gender . Calling female out of there name treating them how they were tought through music. If they not listening to it , they for sure watching it .Alot of the problems come from letting children watching the wrong rating movies . Rated @CAPS1 is want they our now letting children watch ,and buy . So now its giving then a greater chance of failling life . So now we at two stikes with this stuff that we allowing our children to pick up off a shelf . #@NUM2 thing we let them pick up and grab is video games . @PERCENT1 of our children play video games . While the same time as we cant stop them making them , I strongly belive we can prevent from letting children buy them at the age level .Most of the games based on sex , drugs , violances , and languages. At this point children our taking it very serious , and strongly believing they can do the same . Which leading to death or jail . Drug use , school dropouts , and crime rates our highly because of these same video games children our getting off the shelf. Strongly influncing them to grown up fast , skip over the childhood life . So why can't we do it ? I don't understand why we can't do it , when we have the power to . It will help us out so much for everybody future . Crime rate will go down , test scores will aprove , and our future will be brighter . For our sake , and our children ." 3 3 3 2 2 2 +4260 2 "Let's say you walk into a public library and you look upon a book that is racist or is offensive to you. You believe that the book shouldn't be on the shelf so you take it off. I believe that you have the right to take that book off the shelf. It isn't just books either; it can be music, movies, magazine, or many others. The authors have the right of freedom of speech but it can go the other way around too. There are many reasons why and I will explain this to you. The first reason why is that the person might not come back to that place. I mean if somebody walks into a library and trys to find a book to read, do you think they will ever come back if they are offended by one? A little while back, I was in the library and I noticed a book that was offending. It was talking jokes about black people. I believe that isn't right because all people are equal no matter how they look or what they believe. The next reason is that it could cause rate of the materials to go down. If somebody gets offensive about a censored material, they are going to report it and cause the rate to drop low. No library wants to hold books, music, movies, or magazines that have been reported by their community and nobody wants it. How would the author feel about their material getting reported because of somebody getting offensive by it? If the author wants to offend anybody, then they shouldn't even bother to publish it. The last reason is to get rid of the materials. Nobody wants to look at something that offends them. How would you feel that you took a movie home to watch the family and it had bad stuff in it and you didnt like it. You get offended and complain. Complaining is bad for business especially if its a government building. If we just get rid of the things that offend people, then we wouldn't have any problems. I do believe that certain materials should be removed from the shelf if sombody if offended by it. There are really three main reasons. One is the the person might never come back to that place. Next, is that it could cause rate success drop down low. The last is to just get rid of the materials so they are no complains. Now, what do you believe" 3 3 3 3 3 3 +4261 2 "I believe that censorship within libraries and any other public media source is wrong, immoral, and unfair. Authors, artists, phtographers, etc. have the right to freedom of speech. Why should the consumers not have the same right to choose what they expose themselves to? The censorship of any media should not be allowed in public consumer spots, not only because it goes against basic american rights, but it also takes the responsibility, originality, and expression out of @CAPS1' lives. If a parent or gaurdian did not wish for their child to be exposed to certain genres of certain media, isn't it their responsibility to intercept that from their childs environment? If a parent really abhors a certain genre, then it is up to that parent to create a surrounding in which they feel that their child is safe. It is understandable that some genres of music, magazines, books and movie contain material that @MONTH1 be too graphic or mature for reader of a certain age, but situations like this in today's world is unavoidable. In my experience, I know that when I was to young to understand the happenings of @NUM1, my parents intercepted the stories from me. My parents turned off graphic or violent television when I walked in the room. They felt that this sort of material was inappropriate for someone at age @NUM2, so they exerpted that material from my environment. When you become a parent, you take on responsibility for the life of another person. This responsibility includes the childs health, safety, and his/her surroundings. Why can't @LOCATION1 leave the parenting of children to the parents? When children turn into teenagers and teengers become adults, they earn many privelages. They earn the right to drive, then the right to vote, then the right to drink responsibly. There is a maturity level that goes into making descisions on your own; if you are mature anough to decide who you want to run your country, how could you not be mature enough to decide something as insignificant as music choice? Authors, artists, composers, and phtographers, all by living in @LOCATION1, all have the right to the freedom of speech and freedom of expression. By censoring what products are published and put in public takes away that right. Some @MONTH1 argue that the artists and authors still have the right to express themselves, but they are expressing material that is to risque or graphic to promote. This is an understandable point, but who is the government to promote only what they want to promote? Why should the government have total control over the @CAPS1 are exposed to? If this were to happen, could it easily be taken too far by power hungry poloticians? Wouldn't @LOCATION1 no longer be a democracy, but rather a communist country, like @LOCATION2? American prides itself in being a 'mixing pot', and being accepting. If @LOCATION1 were to be like @LOCATION2, that would mean the restriction of expression and originailty throughout the country. Would you really want to live in a country where originality isn't really original, and acceptance was only what the goernment decided was acceptable? Would you be proud to live in a place where people don't have the opportunity to express themselves to others freely? I wouldn't. Although the censorship of media through a library is only on a small scale, but censorship is censorship. It is discrimination agaisnt composers of a certain genre of works. It is the removal of choice from @CAPS1' lives. It is denying the composers their right to freedom of speech. Whichever way you look at it, censorship is censorship, and censorship is wrong" 4 5 4 4 4 4 +4262 2 "Lots of people come to the library to check out books, music , movies , and other things for entertainment. Mainly children use the library more than any other age. The library is a place where you can be humble and relaxed. No one wants to check out thinks that are offensive in any type of way. Not even books that will influence bad things. Therefore certain things shouldn't be allowed to be checked out in libraries. Certain movies shouldn't be in the library. For example if a child go to library they @MONTH1 see a movie that contains sexual activity and decided to check the movie out. The kid @MONTH1 be underage and the movie would be considered inappropriate. The child @MONTH1 get in trouble by there guardian. In reality it would be the librarian's fault for letting the child check the movie out. That is why the movies should be censored. On the cover of many magazines women as well as men bodies are exposed.That @MONTH1 cause children to be attracted to the magazine. They @MONTH1 even decided to check the magazine out. Children are influenced by the things they see. Seeing naked bodies would be considered setting a bad example. In today's world all children listen to music. The music you listen to has a huge impact on your life. The music in libraries should be censored. Libraries should have music that encourage you to go out and be something in life. In my opinion only influential music should be able to be rented out. Reading is the key to success. Libraries should have books that will help you increase your vocabulary as well as educate you. Not the books that will talk about sexual things or even make you wonder about sex. Libraries should only have history, math , and educational books. In conclusion everything in the library should be censored. A lot of children use the library. Therefore it should be age appropriate. No child needs to be put under a bad influence. Certain thinks should be removed from the shelves to keep down less confusion." 4 4 4 4 4 4 +4263 2 "I think that movies and magazines should be removed from the shelf because they might have some stuff in it that little kids could look at or watch. The movies and magazines will sometimes give some kids some ideas and the books should be removed because it had some words that people will be saying and the music should be removed because they have rap music. People shouldn't be listening to it. The music is sometimes not appropiate for all age and it can give people some ideas of what they say or do. The books and magazines can give people some ideas of what they say or do and they can believe anything of what they say. People should be reading good books and reading good magazines and listen to some good music. They are all offensive because they talk about bad stuff and doing bad stuff or talk about how they live their lives. Peolpe shouldn't be listening to some rap music or read the magazines or read some books that will give other people some ideas. The books sometimes talking about what happened a long time ago and stuff like that and it sometimes offense people like that. The magazines sometimes tell people what happened in the past and thenpeople don't want to read any magzines anymore. The people don't want to listen to any music anymore or read any books anymore. Most people will think that most books, magazines, and music are bad for the kids and for the adults. I think that it is offensive because music is not a good thing to listen to like rap or hip-hop. The people shouldn't be listening to rock music and they should just listen to some music that are appropiate. The books should be appropiate for all age and they should read something that they like. They should read some magazines that they like and that are good and appropiate. The music is offensive because they talk about inapproiate stuff and they shouldn't be listening to it and the magazines have some inappropiate stuff and the books have some inappropiate stuff. The people won't like it and they might not want to check it out again or they won't check nothing out. I think that they should put some books on the shelves that people will like and the music that people will like. They should put some magazines on the shelves that people will want to look at or read" 3 3 3 3 3 3 +4264 2 i fell that this test is stupid i hate reading and writing. i think that you all should only make sure that we can read on level and write on level bc alot of kids arn't even going to really try on this test till like their @NUM1 or @NUM2 grade year and also alot of teachers dont even teach this material till the end of the year so i think that some of the stuff that u all test on should be changed like the stuff you test on and how long the test is and should be more focest on reading and writing levels however i do agree that the test should still be here because it helps felter people who passed the class by cheating and who passed it by hard work i think there should be an alternative test that is taken on paper to because some kids test better on paper then on a computer this is the way i feel about the test. i know i was supose to write about offensive material but i couldnt think how i felt about it and this is the stuff that was on my mid so i thought i would enform u think you very much 2 2 2 2 2 2 +4265 2 "In libraries, there are of course books. There are mysteries, romances, comics, biographies and anything else that you @MONTH1 be able to think of. There are also magazines, movies, and even cd's that are at the libraries now. Then at libraries there are also those books and magazines. Those books being the ones I would never pick up off of the shelf myself let alone allow my future children to pick up. This is because those books contain material that is not at all conducive to the young person's brain. That is why I would like those books to be cencored so my child would never even know that the books are there. These books have in them people having sex and smoking drugs and their language in theses books are horrifying! These seem to be the kinds of books that young children have become interested in. They read them at school and get them somehow from their friends. They also find them in libraries and the more they read the more they want to do because they are influenced very easily. They are influenced by books characters that dont even exist some of the time. There are many reasons of why I feel that the books should be cencored but one of the biggest reasons are that because young people read these kind of books they go out and do what they read in the books. Thinking its okay because somebody that is not even real, most of the time, is doing it. I feel that these books are the reason that babies are raising babies children that are ten are going out having sex and getting pregnant and becoming eleven year old mothers. Where is that even heard of, but it happens and by the time those same children become freshmen in high school, if they even get there, they are carrying the responsibility of the baby they had when they were eleven. Those same children go through life wondering how different their stiuations could have been! So I feel like before these books go and mess up a whole other generation of children why don't we stop it here? Why does another child have to get pregnant at the age of ten for someone else to realize it's time to change things? Ten year old children are still just babies! The human brain isnt even fully developed until you are in around the age of twenty-five. So these children dont know if what they are reading is wrong beucase they haven't been taught that it is very wrong this is because at that age no parent expects that they will have to teach their not to have sex. Why you @MONTH1 ask, because at the age of ten what child should know about sex? At that age they still like to color and play with baby dolls or they like @CAPS1 @CAPS2 and @CAPS3 they should even be thinking about sex let alone know what it is. These materials should be taken off the shelves because children reading or looking at these kinds of books and magazines in libraries should not be happening. To stop yet another generation from messing up their lives taking the materials off is the best solution. After all shouldn't a parent get the chance to make sure their child isn't killing their chances to live a happy life in the future?" 4 4 4 4 4 4 +4266 2 "Dear @CAPS1 @CAPS2 @CAPS3, I have been through some different libraries lately to see what other kind of information they had. I am also afraid to tell you that i have seen a censorship problem with our public libraries. I can understand why they might censor some of the more mature/graphic novels because of the children going in and out of the library all day, but, i do not believe that everyone else shouldnt be able to get the books they want because of content issues.One reason why i think there shouldnt be censorship in libraries is because some people need to find information on certain topics and there might not be any reliable information on it on the internet.if students in highschool or college dont have the information they need to write a paper or do a project for their classes then their grade could drop and also they could fall behind in work becauase theyre trying to catch up to where everybody else in their class are working.Another reason I think censorship in our libraries is because some of the things they censor could be the only copy of the book or the only one thats close to where you live. If they censor the one book that you need then that could possibly ruin the whole book for them. I believe that if a person is over the age of @NUM1, they should be able to take out any book they want and have it be uncensored. some people @MONTH1 take offense to some things written in these books, but if they dont like something, they shouldnt check it out in the first place.There are plenty of people around this world that have interest in millions apon millions of different topics. Also, some people @MONTH1 not be able to reasearch or explore their topics as much as they would like to because of the censorship problem in public libraries.if people could learn more about their interests they could go on to bigger and better things or maybe even just get a little bit smarter.In conclusion, I believe that censorship in libraries should be banned because of the problems it can cause and the effect it has on people. Censorship is a problem that needs to be dealt with as quickly and effecintly as possible." 3 3 3 3 3 3 +4267 2 "Imagine a library without any materials that are considered offensive. In this library you wouldn't find many of the great pieces of literature that have impacted and influenced society @DATE1. You probably wouldn't find too many books, magazines, or movies that everyone in the @CAPS1 feels that are appropriate. Some of the great classic novels have contents that could be considered offensive to many people. Offensive materials should remain in libraries @DATE1 because something that is offensive to one person might not be to another person, who could be impacted by the piece of literature that is being banned. Music should also remain in libraries because the artist did not put the lyrics in the song to bring the listeners attention to the offensive material. Also offensive materials have made an impact in society for ages. First, materials that one individual finds offensive could be viewed another way by many others who enjoy the material. Some comedy and action movies are viewed as offensive or inappropriate to some people, but many others @MONTH1 enjoy the movie. If a movie, book, or magazine has the topic of @CAPS1 @CAPS2 @CAPS3, it could be considered offensive to people who were a part of it, but it could also inform the reader or the person who is watching about the events that happened. If children want to see or read this material they should get permission from their parents first. Next, all music should remain in libraries. The music was created by an artist who made it for enjoyment and entertainment. The purpose of the music is not to bring the attention of offensive material to the listeners. The lyrics in some songs are innapropriate for children, but parents should not let their child listen to them. Lyrics can deal with really mature things that should only be heard and understood by adults. Last, offensive materials have impacted society for ages. Many things the founding fathers of the @LOCATION1 did were considered offensive, but that did not make them wrong, and it made the @CAPS1 a better place @DATE1. Offensive materials impact everyday life for better and worse. If all offensive materials were banned, they wouldn't be able to have an impact on @CAPS1 for better. In conclusion, offensive materials should remain in libraries @DATE1. The materials @MONTH1 be controversial, but they still are pieces of literature that deserve to be read and studied by the people of the @CAPS1. Offensive materials contain many teaching tools in life that could help out the lives of many people. The @CAPS1 would turn into that of the @CAPS1 in @PERSON1's novel @CAPS4 @NUM1, where all books were burned and society was not intellegent at all, if offensive materials were taken out of libraries @DATE1." 4 4 4 4 4 4 +4268 2 "I think that some books should be banned from libraries that are offensive or use certain words against people, I think that should apply to highschool libraries because it really would matter in elementeries because they wouldn't know what some things mean. If a class were to read an offensive book and someyone in the class from the opposite race that reads the book others could get affended and it could start a fight. Some high schoolers could get affended quicker than others and which could cause a lot of problems so by avoiding that there should be votes on books that should be banned or not be aloud to be read in class or in school period. Im pretty sure people would think its dumb to ban books but trust it me it would solve a lot of problems, but it all comes down to whats acceptable and whats not without hurting other peoples feeling and putting them down. I bet all the time in classes theres been a story that has been read that has talked about races which makes others not feel comfortable, and theres always that person that always trys to make fun of something, but if I were in this situation I would try my best to not let others get to me and interfer with my grades and performance. I would just ignore them as much as possible and if it did start getting annoying I would talk to my counselor about trying to talk to that person individually or just removing me from class. I'm pretty sure most schools wouldnt tolerate this type of behavior but you will always have those kind of kids you just have to ignore. You should never not go to school thinking you don't fit in just because someyone is making fun of your race or how you look. They just try to make the day harder on you and all you have to do is ignore them or report it and hopefully it is taken care of" 3 3 3 3 3 3 +4269 2 "Censorship in libraries differ in certain areas. I personally love reading, and like all kinds of books. And I know that there are some books that I have read that my parents would not aprove of. But has that ever stopped me? Not exactly. I think that after a certain age, people should be aloud to read whatever they want. I mean, if I ever thought I could not be mature enough to read a certain book. Then I will not get or read the book, it is that simple. As far as music, movies, and magazines go that could be a different story. Music is for the most part like a book, just using a different one of your senses. And it is listened to, not read. Movies should be judged a little more carefully in my eyes, because movies are like show and tell. That could easily go wrong if children, teens, etc take it more than just a movie. I think all things should not be judged by assumption. Everyone has different opinions and likes. So, therefore material should not be removed from shelves, if there are people that like/support what the book, movie, or music has to offer." 3 3 3 4 4 4 +4270 2 "What's your first thought when you're thinking about a library? Is it quiet, peace, or calm? Many people would think that until they come opon a certain book, magazine, movie, etc. They would start reading, and soon read something that is completely offensive. Books, magazines, movies, etc. should be censored and removed from a library if found offensive. Although everyone is entitled to their own opinion, I believe that a library is a place of peace. Having offensive literature in a library makes it look as though it's a bit trashy. If people want to read a certain magazine or book that offends a large sum of people, then they should go somewhere besides a library to find it. When I was younger, I participated in events at our local library; such as seeing who could read the most books over a certain amount of time, or other events like that. I liked to explore the library and find new things. I remember back then, and still today, there were always a large amount of magazines sitting on selfs, categorized into their correct sections. Many of them showing half-dressed women and men. Now, I understand that people like to know what is going on in the real world and like to be up to date, but I believe that they can go elsewhere to find such magazines. Having these offensive magazines in libraries for children to see is not good, and could easliy upset the parents of the children. Another reason why books, magazines, and others should be censored is because they @MONTH1 influence teens to do wrong and/or bad things. For example, many books talk about drugs and smoking. If teens read this, they @MONTH1 start thinking that it isn't wrong to do these things. If these type of books were to be removed from libraries, then I believe that the number of bad things that teens are influenced by would be greatly decreased because they aren't going to read them. In my personal opinion, libraries would be better if books, magazines, movies, etc. would be censored. Not only would it make people happier, it would make the world better. Besides, if you are looking to read something bad, you shouldn't be looking in a library anyway!" 3 4 3 4 4 4 +4271 2 "My views on censorship are strong. I think that if a book, movie, ect. is descriminating towards one or more groups of people then I think that people should have the right to atleast have a say in wether it should be on the shelves of a library or not. Although books could be descriminating too, if the book it about something that has happened in the past and is the past of our country, then I think that people should also have a say in keeping it on the shelves. If these materials are using offensive language or actions to harm or discriminate against that race then they should be taken off of the shelves. If they are part of the history of the world or of our country, then I think that they should be left there for future generations to learn about it and to know that these things happened. Most materials dont try to discriminate any race, and if they did, then I don't think it would be in the library in the first place. For me, censorship could go both ways. It really just depends on the stuation and the material. Someone could have an opinion that it is offensive, but that doesnt mean that is a fact. If the book is popular in the library and a lot of people like to come in and read it, then I don't think I would remove the book. People view offensive writing and actions differently from one another. So, I think it depends on the situation. If I was a parent these days, I would let my child read one of these so called offensive books if it was part of the past for our country. My attentions for letting him read it are for all the right reasons. I dont attend to let him read it so that he can act upon the things told about in the book. I would let him read it to learn about the past. I think it is a positive thing for children to know about the past. So, in my perspective, censorship depends on the situation and the material. These are only my views on the topic, and also these statements are my opinion. So I can't really say if I am for censorship or not." 4 4 4 3 3 3 +4272 2 "Do I believe that certain materials, suck as books, movies, magazines, etc., should be removed from the shelves if they are found offensive? No I do not believe this statement for many reasons. If anybody cold take books off the shelves in the libraries, there would no longer be any use for libraries, students in school will have a harder time learning about certian topics in the world, it would defeat the purpus of having the ability of freedom of speech, we could easily avoid this problem if needed. One reason I believe that taking books off the shelves is because, if we all have the right to take books we find offensive there would no longer be any books no the shelves. This would limit us the ability for students to learn about many important topics in the world. Just the other day I heard a lady telling her daughter that she was not going to allow her to go to school the day they have 'the talk', (sex education for students in grade six), because she thought she was too young to learn about that area of education. Yes, that @MONTH1 be true, but it also means that her daughter is not going to know about the many diseases you can get from underage, and or unpretected sex. This @MONTH1 lead her daughter to having sex at a young age and getting pregnate, or some kind of disease, that could have easily been prevented with a little education from library books, or a class at school. Another reason I do not believe in the right of taking books from the shelves is because, when we are taking these books off the shelves, we are taking someones very hard work and just throwing it into the trash. In my opinion it is very disrespectful to the authors, and anybody else who was involved in writing those books. Just because you do not agree with what they are writing does not mean you can just throw it away. This would being defeating the purpose of haveing freedom of speech. Taking those books off the shelves is basically telling the authors that they are not aloud to write about what they want and publish it. It is also telling them that they are not allow to state thier oppinion. This problem could easily be avoided if needed. For example, those books, music pieces, movies, magizines, etc., could be put in a seprate section of the library, and only make it availble to adults of a certain age. Have the books, and other writing pieces rated in the same way that movies are. This would be a very simple and effective way to solve this problem. Like I mentioned earlier I strongly disagree with giving citizens the right to take certain materials, suck as books, movies, music, magazines, ect., off the shelves if you or anyone else find them offensive. It could effect the community in many ways, it is very rude and disrespectful to the autor of that piece of writing, and there are simple solutions to this problem" 4 4 4 3 3 3 +4273 2 "Yes, I believe that books, movies, music, and magazines should be removed off the shelf if they are offensive and inappropriate. People should have the freedom of speech but not in an offensive manner. If people want to have heir things shown such, as movies or heard, such as music, it should be appropriate. Just because other people are doing it doesn't make it right. Some people have little sense of knowledge not to do the things that the movies, or songs say to do. Most people like the songs because it says to do bad things, they just want to be heard, or want attention. When I listened to music or watched movies, I got the same ideas as other kids my age and younger. I did stupid stuff because I thought that it was right. People just want to get their voice out there, and to be heard. I learned to get my voice heard, I needed to do it in an appropriate manner. Some artists or actors don't want to convey these kinds of things to kids, but the only way to get there stuff out to the public is to make it offensive. I stopped reading and watching this stuff because I learned the hard way, and the only way that I will be heard is to say and do the appropriate stuff. The way I look at things is @CAPS1 ( @CAPS2 @CAPS3 @CAPS4 Do)" 3 3 3 4 4 4 +4274 2 "Censorship has been around for awhile and a lot of people agree that there should be censorship on a lot of things like telivision, books, magazines, almost about everything. Some people are going a little bit too far when it comes to older teens. There not little kids and they shouldn't have things censored. Like when you go to see a rated @CAPS1 movie and you have to be with an adult to watch that movie. For little kids I think that they should have things censored because there young. They just dont need to be hearing bad language and anything. Parents should also care about what there child hears or reads if there young. Some parents don't even care what they see or hear and they end up getting in trouble with there teachers if they say it. It seems like the younger kids are always learning bad language or bad habits and I think its sad because they shouldn't be around that. They pick up alot of stuff when there young so your like a role model for them. I believe that older teens like @NUM1 and @NUM2 are more mature about this, if they read a book in the library that might have a bad word. Im sure they hear it all the time on the bus or when your in town. They going to hear it anyways so why try to stop it when there going to end up hearing it. Books are suppose to help you and give you the real thing. You can't just throw out books or censor them. Everybody has there different opinion and this is my opinion. When you get at a certain age you start to mature and realize those are bad things to say or do so I believe high school books or magazines or anything else shouldn't be censored" 3 3 3 3 3 3 +4275 2 "Imagine, you go into your favorite library and you go to grab your favorite book or movie and its not there. The librarian says the book was removed from all public libraries because it was found offensive. Would this not get on your nerves? Especially if you had read the book yourself and found nothing wrong with it? Sure, there are some books that children should not be allowed to see due to offensive material; but why remove them completely? There are plenty of alternet solutions that could please everyone. Such as having a section only adults are allowed into, having a seperate public place for adults to get the books, movies, ect; and having signed permission from a parent or guardian saying their child could check out certain items. The first solution is to have certain offensive material under lock and key from the public. If only the librarian had access to this material a child could not simply walk in and borrow what he, or she deems fit. The librarian would be the only one allowed to judge if the person, child or adult, could see this section of the librairy. Next, there could be a totally separate building for the offensive material. Only people over @NUM1 would be let in and you would have to an i.d and a librairy card to get in. This would assure that no one uinderage could recieve or take anything that was deemed unfit. My last solution is to have signed permission for anyone underage. When the child comes to get a librairy card the parent must be present and fill out an application saying what the child can and cannot check out. I do not believe that books, movies, music, ect; should be removed from shelves. This directly goes against the first ammendment, free speech. If a person can say what someone else can or cannot read, see, or listen to whats to stop them from taking every @CAPS1 given right we have? Whats to stop them from censoring everything we write and say? Would you want to live in a world like that? I would most certainly not! However, I also believe that certain age groups should not be allowed to have access to certain material. I believe these are good altercations to prevent this from happening if only we take the steps to accomplish them" 4 4 4 4 4 4 +4276 2 "What other people take as offensive might be taken to others as something they value. I believe that all sorts of books, music, and magazines should stay on the shelves at the library. People value many different things and we need to give others an opportunity to explore what else there is. Different types of books explain different types of things. Some people connect with books in a way that others @MONTH1 not understand. Taking certain types of books away can risk other peoples feelings. Taking music, in my opinion, would be the worst because people get lost in some types of music. They use music to escape their probems and taking that away can leave them helpless. People love movies. It helps people understand what is going on in other peoples point of views. Taking away movies could leave people with no entertainment. People like different movies and some movies can be offensive. But, it's not up to anybody else. Magazines help people keep up with news. Most of the news can be very offensive. It is the people around you causing the offensive news. Taking away magazines can be keeping people from the latest gossip and news. Taking away things that people use to connect with, what they use to escape with, their entertainment, and the news would most likely cause peoepl to act out in a bad way. Everybody is defferent and everybody likes different things and taking away something that others think is offensive is unfair to the people that think it isn't. What if somebody thought what you liked was inappropriate? How would you feel?" 4 4 4 4 4 4 +4277 2 "'The @CAPS1 in the @CAPS2', 'The @CAPS3 @CAPS4', 'The @CAPS5 of @PERSON2'. Do these titles sound familiar? They should, beause these are only a tiny fraction of the @CAPS3 literary masterpeices that people have enjoyed since their publications. These wonderful books also share another characteristic, they have all been banned from certain libraries across the country and around the world. When a child goes off to school ecah day, his or her parents are left to think that he or she will be getting a quality education that meets the stadards of their own core values and morals. But certain parents @MONTH1 become outraged when they see the books shelved on schools library shelves that they see as wrong, and don't want their precious children exposed to such immoral concepts that go against their idea of what is right. In all reality though, how is this helping anyone? By keeping a student away from a book or subject, the person causing the censorship is limiting what that student can learn. By censoring things people are not only kept from ideas that might shock them, but also from ideas that might make them think. If a person cannot think for themselves, they cannot draw their own conclusions on things. When one cannot think for oneself or make decisios for oneself, how can this person be considered a free individual. Infamous dictators, such as @PERSON1, burned books to keep his citizens from thinking what he did not want them to think. By banning a book in a school library, a parent is also keeping their child from thinking what they do not want them to think. And when you want a book out of a shool library you are ot only keepig your child from reading this book, but everyone who goes to the school from reading the book. How is that fair? So instead of wanting certain books to be off the shelves of your childs school, I say this. Teach your children to be careful in what they read. If you don't wan them to read 'The @CAPS1 in the @CAPS2' tell them not to read that book. Tell your children to follow the moral guidelines you want them to follow, and if certain books keep them from having their own thoughs instead of yours, just tell them not to look, and don't bother everyoe else about it" 4 3 4 3 3 3 +4278 2 "Certain books should be removed from, the library because of the materials an the stuff they show to younger children. One reason they should thake those books of is because some of the are racist against some cultures. Another reason is that some of the books or movies etc., would have things in them that young children shouldnt be looking at or reading. A final reason is that some books just shouldnt be in the librayies at all. The first reason was that the books should be taken out of the library is because their racist. They should take them off because they can teach young children the wrong things. Also they can teach the children how to treat people different because their reading those books from hte library. They would also get he wrong idea about peopple and different cultures. Second reason why they should get rid of that bad stuff in the libraries is because they would have things in their that young children should not be wacthing or reading. Like they shouldnt have movies with killing and drug dealing or about drinking or anything a child shouldnt be looking at. It gives the children the wrong idea and they will think its okay becasue they seen it in the movies or read it in a book. Final reason is that they shouldnt just have those things in a library at all or should just have place for where the young kids cant use them. Or they would need a parent or sombody thats eightteen so they wouldnt be able to just get these bad books or movies. In conclusion libraries shouldnt have books or music or magazines or movies in them at all. They give kids wrong ideas an make them think that its cool or the right thing to do cause they saw it in a movie or read it in a book. That doesnt make it the right thing to do thats why they should get rid of that stuff." 4 3 4 3 3 3 +4279 2 "Keep it on the shelvesThe reason for libraries is so that people can read what they want to read. If I owned a library I would have everything on the shelves because there are alot of people and not everyone likes the same thing. Truthfully I wouldn't care because it isnt just about a handful of people it is about everyones feelings. If people started taking certain things out of there book stores libraries it would eventually get out of hand. The reason it would get out of hand is because a certain topic like slavery if someone wanted to learn about it or enjoyed reading topics like that it wouldnt be fair because @CAPS1 @CAPS2 people might find it offensive to put stuff out there for the public like that. Everyone has their own opinion but why express your own opinion if the subject you want to express it under isn't harming anyone physically or emotionally. If everyones opinion was heard and taken into consideration tghe world as we know it would be boring and outragous. People like action and adventures, others like laid back kind of stuff. Why take things from people that they have had for a very long time if its just going to start a conflict and change the way people live everyday life. Maybe it could turn out in a good way but really what are the chances of that @NUM1 billion to a thousand. Things that are offensive to some people are very interesting to others so keep everything on the shelves. If only certain people are going to complain about it its not really a big deal. Maybe someday when everyone in the world agrees on @NUM2 reasoning then we could change it but i really dont see that happening anytime soon. The main reason is there is always going to be conflict between @NUM3 or more groups of people. Everyone cant be happy at the same time i say who cares weather something offends someone or not thats their opionion and until alot more people are seeing it and can stay on the shelf for the people that actually enjoy that kind of stuff." 3 3 3 3 3 3 +4280 2 "Books? Movies? Music? Magazines? We all like to read them, watch them, and listen to them. @CAPS2's hard to stop all that. Plus, @CAPS2's impossible to stop. Everywhere you go you can find these items. Such as the movie store, the mall, a gas station, a yard sale, and even your public library. People of all ages can go anywhere and get a book, movie, a @CAPS1, or a magazine and @CAPS2's perfectly fine. But, there is one problem. Censorship. Yes that's what i said, 'censorship.' @CAPS2 means alot to some parents when @CAPS2 comes to their children. Espescially when @CAPS2 comes to the public library where they live. If a parent wants to take their kids to the library and get some books or movies or ect. that's okay but if a parent has to worry about a movie or magazine has 'bad things' in @CAPS2 that children shouldn't see is a problem. They want to be able to enjoy the movie or @CAPS1 or magazine with their children but bad things like nudity, violence, racial pictures, or profanity can be really offensive to parents AND people alone, just not parents. A lot of these examples can be offensive to anyone or everyone and censorship is a pretty good idea. There is no way if I was a parent that I would want my kids to look at or watch or read any 'bad things' because we all know that is not right. Kids are young and don't need to be learning about that stuff at a young age. I think censoring is a really great idea and I think Libraries and other places that have books, movies, music, magazines, ect. should censorize there things. But if they wont censorize anything they should at least put them in catagories such as 'adults' or 'young adults' or 'kids'. If they catagorize the ratings then the parents and you know where to look for and don't have to worry about censorship. Censorship should be practiced everywhere." 3 3 3 3 3 3 +4281 2 "Corrupt Censorship @CAPS1 @MONTH1 occur when censorship decides to remove or block; showing certain media or readable content all pertains to the creator. In some cases, the distributor and less the author, director, or publisher, has no opinion on whether to display the product they have made, but from their own habit of making what they enjoy; it is the will from the store, person or etc. to display these materials. Libraries have an exponential option to publicly put up on their shelves or stock, but restricting too graphic material is all depended on the eduacational rules the library is equipted with. Any type of content is art, art that should never be even considered to be changed or enhanced because it pertains to one artist. You can never remake, rewrite or recreate that visual material provided from the creator. And you are not aloud to, unless given permission to from the creator. Censoring or removing on the other hand, is permitted to the distributor. Their choice to publicly demonstrate something made by someone is all their choice. Libraries for example, show that any given media or readable content is publicly displayed for anyone to see, so long as the audience fits their rules or criterias. In some instances, partial side of the audience will run across unexpected media and will have the inexecptional pursuasion to accept what is demonstrated. Though it is not the creators fault to ensure where their content is diplayed, but the audience's fault in whether to see that material. It is choice to read or see whatever you'd like, you aren't forced upon to follow through to what the distributor-let alone the creator- is offering. Enjoying the topic or material is optional. When you have options in front of you, any given topics or subject to read or follow, it it your will to chose to read or see them. Enjoying is even more harder, but when a library's limit is basically the sky, you should not force it on them to throw out the book just because the censorship isnt up to your level. It is not the library to blame, but your own. Everyone has different views on certain content and it isnt your obligation to view it. When you take down materials @CAPS2 intended for those who chose to view and enjoy, you destroy not @CAPS2 art a creator has made, but the joy that filled a viewers taste. Libraries shouldnt exceptionalize for certain people's expectations because not everyone finds censorship a solution. Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if i have the right to remove that book from the shelf-that work i abhor-then you also have exactly the same right and so deos everyone else. And then we have no books left on the shelf for any of us.'" 4 3 4 4 3 4 +4282 2 "Now days people can get offended over anything. In todays trying time readers, listeners, even wirters, are trying to get what they want not what the consumer wants. Even though some stories, books, or articles, are completly bogus it shouldn't matter. Dont let others opinions ruin it for everyone else. Many people get offended now days over absolutly nothing; and they feel the need to do somthing about it. whitch nesessarly isn't a bad thing but isn't a good thing either.It is freedom of speach, or so thats what the constitution says, meaning folks have the right to read, write, or say, anything they please. Fake and bogus writings is a small problem to readers, and writers. People are reading articles, and book and believing every bit of what they read or write or even hear on their radio in recent times. It is hard to believe anything now days, because you never really know the facts unless you experence them your self. Opinions are the big thing folks have to look out for, but still that goes back to the freedom of speach. Reading, and writing is a wonderful thing to do and has been around longer than any human will ever know. Just don't let other readers opinions get in the way of a great thing" 3 3 3 3 3 3 +4283 2 "Controversey and @CAPS1 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf--that work I abhor--then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' (Katherine Paterson, Author.) Paterson makes a very valid point here. Right off the bat, I can think of many offensive or inappropriate books, movies, songs, and magazines. There are equal amounts of good and bad publications, and the decision of what is good or bad is very controvesial. The creator of each song, movie, song, magazine, or any other publication has made their product for a specific customer. Playboy magazine was not created for five year olds, but for desparate sex-crazed men, and @CAPS2 and @CAPS3 wasn't made for adults, but for young kids. Usually, the intended purpose of the product is not meant to be negative. It breaks my heart to hear of the rising amount of people of varrying ages getting into pornography. I think the whole idea of it is wrong, degrading, and uttterly disgusting, but others firmly disagree. Some religions think the @CAPS4 series is blasphemous evil, as others don't agree at all. Controversey fills everything in our culture. We all have our opinions and choices. Should I have the right to take away books from my child? My mother would not let me read the @ORGANIZATION1 books when I was younger. She felt that it was from the devil and pure evil. That make me desire to read it even more than before. When I entered middle school, I read the books anyway: I had the ability to make my own choices. I didn't see the devil in the books. I actually felt the opposite feelings toward the book. The books reflected upon good vs. evil, which I saw as @CAPS5 vs. Satan. My opinions and views were very different than my mother's. If I would have read the books when I was younger, I might've thought differently. I think that my mom protected me from what could have been bad. I think it is perfectly fine to protect your kids by setting up rules and boundaries. Parents just need to be aware that once the kids are older, they will make the choices on their own. All in all, certain books will be in the kids section for a reason, and others will be in the adult section for other reasons. We must use our judgement and trust our kids to make good choices on what they allow to enter their brain and consume their thoughts." 4 4 4 4 4 4 +4284 2 "No I @CAPS1 not believe there should be any censorship in libraries. We have freedom of speech for a reason. Sure some things might not be appropriate for certain people or age groups, but everyone is gonna eventually here, see, or be involved in something they are not supposed to like, enjoy, or agree with." 2 2 2 1 2 1 +4285 2 "Do people take offensive books serious. There are lots of stuff in book that people @MONTH1 think is offensive. Some other people @MONTH1 think differently. I pretty sure libraries have censored shelves, but if not people shouldn't get so worried about it and here are ways. I feel that certain materials that young people see in books, music, and movies are at the library. They see stuff that's around them. they also see what there mentor and parents are doing/watching too. The author of the quote (Katherine Paterson) can't just blame it all on the library. In the paragraph I wrote before this I said that children see things that there metor and parents are doing. Now today in the @NUM1 century parents really don't keep a good eye things and what they leave out for what they child can get. Kids like to play with stuff they first see. If parents don't want there child seeing offensive material and other stuff on the shelves in a library then they should watch what they kids are doing more carefully and watch over their backs. I really don't care that the shelves in libraries are offensive. I just don't pay any attention to it anyway. We are living in a better world that it was years ago. If people still are getting mad over petty stuff like that, then what are they still here for. When young children get older they are going to end up seeing things that they coudn't see that's still going to be on the shelves in a library. We shoudn't take books offensive. After all they are just words on a piece of paper. I believe that offensive materials and other stuff should stay on the shelves of library. Besides some people need to know the truth sometimes in order to understand stuff more clearly." 3 3 3 3 3 3 +4286 2 "I think that the books, music, movies, magazines, etc., should not be removed from the shelvs. If a book, magazine, movie, etc, is found offensive then you should just walk away and ignore it. Dont go back and keep looking at it because what you find offensive someone else might like. The world won't change around you so you shoud do the smart thing and ignore it. If somthing is found offensive on censorship in libraries then mabey its not a good idea for you to be where you are in that library. And if somthing does offend you, you should still act appropreatley and deal with the situation the right way. When i was younger i used to see book's with a cover titled @CAPS1, @CAPS2, @CAPS3, @CAPS4, etc., and would think it was funny, but the adults didnt think so. The books are put there for people to read not just to look at. The books, music, movies, magazines are not there to offend you in any type of way. If you find somthing offensive then you should just move away from that area, so that you wont worry about having to be offended. Diffrerent people like different things, so they will have many different verieties to choose from in a library. They might have some things that really offend you or they might have some things that you really like. You have to make a wise choice and know that if somthing is goin to offend you stay away from it. Censorship in libraries have every right to put up any and every peice of book, music, movie, magazine, etc., because it in their phacility. They should'nt have to worry about people being offended by anything they put up. They should'nt have to worry about people being offended because @PERCENT1 of the time the things they put up are not bad at all, 'it @MONTH1 even be helpful,' but to one person it @MONTH1 be harmful or offend them. In @CAPS5, censorship in libraries should be able to post or shelve anything they want. If your offended/not offended they have every right to shelve whatever it is. because in the real world you dont always get what you want, and you wont always like what you see" 3 3 3 3 3 3 +4287 2 "A library is safe haven. A place people can go to escape the world and stick their head into a book. It is a place filled with knowledge and information. You can find information on anything in a library, from any point of view. Information in libraries should not be censored, even if the information is considered offensive. A library should not be biased. Removing certain information from a library would be biased to whatever group believes in that knowledge. Whether or not something is offensive, the information should be out there for one to learn about if he chooses. Having information in a library that @MONTH1 be offensive does not mean a person is oblidged to read it. Katherine Paterson brings up a good point when she says, 'If I have the right to remove that book from the shelf...and you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us'. If everyone could remove a book that offended them, there would be no books left. There are many different views on many different subjects and everyone should have the opportunity to be educated on others' points of views. For example, there are many different religions in the world. Many of the religions have very conflicting points of views and some of their view points @MONTH1 offend each other. That does not mean that we should not provide information on different world religions simply because a person from another religion @MONTH1 be offended. Every person that goes to a library should have the right to educate themselves on others' religions. If we censored all the books that offended people, we would live in a very uneducated world. A library is a place of education and learning. It is a place one can go and learn about any subject he chooses. If libraries censored information, then it would no longer be a place that is unbiased. It would hold a sway to a certain group of people and therefore, no longer be a safe haven for all to go and escape the world. One could not go to a library and get different points of views on every subject. Censorship on books and other materials in libraries would be a very negative thing." 4 4 4 4 4 4 +4288 2 "Hi, my name is @CAPS1 and I am writing this article today to talk about things that shouldn't be in the library. There are many, many things that shouldn't be exposed to children such as, sexcism,racism,rarted @CAPS3, pornography. So i am here today to tell you all about them things. First off books that have racist comments in them should not be exposed to our young children.Why? Because that is setting a bad example for them so they might think they can say and do the things thats the book does. Another thing is sex in books. I know you have read stories that talks about sex and how to do it and all sorts of things. So to sum this up they shouldn't be allowed in public libraries. The second thing that shouldn't be allowed in public libraries is @CAPS2-@CAPS3 movies. Things such as horror movies, porn, and many more. So young children should not be exposed to these such things because it damages there mind at a young age. It teaches them things that they shouldn't know about until they get a little bit older. The last reason why I feel that many things shouldn't be in the libraries are for the @CAPS4 magazines. Those magazines just show everything they have all type of naked photos in them. These really do not need to be exposed to our young children because. Our little girls will think it is ok for them to take naked photos of themselves and post it in books and on the internet. So all in all, all of these things should be banded from the libraries for many different reasons. So the @LOCATION1 should think about what I am saying. Just think if it were your children being exposed to innappropiate things" 3 3 3 3 3 3 +4289 2 "As a small child I remember my mom reading me stories to put my to sleep. There was always one book that I remember the most named, 'A light in the @CAPS1' by @PERSON1. As i was walking into my public library the other day i was looking at the books that had been cenored because it encouraged, the following; mistreating parents, offensive language, bad habits, and other things. I was mad that this book had, essentally, been erased from all of children literature just because a few people @CAPS2 that it gives a bad message. Think about it though, when you are a child either having a book read to you, or reading one yourself do you honestly pay attention to such small details? I do not think that books and music should not be censored, because society does a good job of thinking and figuring out what is acceptable and what is not. I understand the idea of warning labels, but i feel that censorship is too far. In the example I used in the paragraph above, that actually happened to me. So, i do not think that things should be censored just because a small group of people think that it is inappropriate. Even when i read that book today i do not see any of the reasons that were listed in the book. Therefor beleive that it was unjustly censored, meaning that a really good book will never reach the eyes and ears of child that deserve to hear and read it. Over the years many things have been censored, some had an actual reason, others maybe were looked at and censored because somebody did not like how they read the book. the point is, is that people should have a choice of what they can get from their public or school library. Maybe, they should just give an idea saying that there is potentailly inapprapriate materail in that certain book and should not be read to or by a certain age group. when you look back to your childhood and think of all the books that were read to you that you enjoyed, how many of those books have been cesored for reasons that make no sense? That is the primary reason why I believe there should not be any censorship" 4 4 4 3 3 3 +4290 2 "Almost every city in the @LOCATION1 has a public library. A place where the citizens can check out books, music, movies, magazines and more. Inside a library, there are different sections. There are kids sections, adult, fiction, and many more. Just like any ordinary store, there are items in a library that are not subject for children. A common question has been coming up everday life, 'Should we remove these offensive items from our shelves?' Libraries have been around for years and so have uncensored things that are being put in front of children. As a child, you want to explore and know everything. Bad things will always be put in front of you as an obstacle to make the right choice. Just like these degrading items found in everyday stores, libraries, or in general everywhere you go. A library, however, is not just intended for adults, teenagers, or young children. A library is made for everyone's access and not everyone is alike. Therefore there is plenty of variety in these libraries. It should never be a libraries fault for containing things not appropriete for children in my belief. Almost every library is very organized into categories. If children are separated and exclusive to adult material, I see no problem in having these items on the shelves. When I visit a library, these items are very out of reach for children. Society knows what should and should not be brought upon a child, so they know not to put it in any reach of children. 'All of us can think of a book that we hope non of our children or any other children have taken off the shelf.' said Author, Katherine Paterson. Katherine makes a very valid statement. If I have a child one day, I could think of plenty of materials I would hope my child never came acrossed. However, as a parent it is their job to protect their children from these things. Coming from a teenage perspective, at a young age, I was very clueless about all the terrible things sitting around me. A majority of children would not be able to get their hands on such uncensored items, nor would they understand them if they did. There are things in this world that are much worse for children to see then taking a quick glance at something not for their age at a library. If anything, concerned parents should be paying more attention to what their children come in contact with at stores, the people they are around, or what they are listening/watching. The internet is probably the most uncensored place a child can come acrossed. Reaching out to libraries about what they put on their shelves should be of their least concern compared to what is really out there in life. I do believe that no children should be handed or put in front of uncensored adult conduct because one-hundred percent unacceptable. If these items were placed in spots where only adults can get ahold of, then I see no problem in the situation. The children of our generation and more to come will always encounter something they should not be put in fron of. However, that is life and there will always be something come up in your life that you should not witness or be apart of. If libraries continue to keep these items out of reach of children, then there should be no censorship in libraries." 4 4 4 4 4 4 +4291 2 "Censorship, @CAPS1 or @CAPS2? I can understand why libraries would decide to keep certain books off their shelves. Libraries are a place for learning and work. If you were sitting near someone at a public library who was reading smut you could feel awkward. Although some people @MONTH1 find certain items unoffensive, other @MONTH1 disagree. Imagine you are a mother with a young child who decided to wonder through the library. Your child finds a magazine. It's '@CAPS3'. Not something that you are going to want to explain to your child. If the library were to have not kept the magazine, it never would have happened. Libraries are a public place that should be taken seriously. If people really want to find something that is inappropriate they can find it somewhere else. The modern world today makes it easy for people to find just about anything without a large hassle. Therefore it should be fine to keep certain materials out of our libraries. How can people take libraries seriously if there are dirty books, or books with rude language, and scandalous themes. If you are trying to get work done or learn and there are distracting items on the shelves then it @MONTH1 make things more difficult. Libraries are serious places and should be treated as such." 3 3 3 4 3 4 +4292 2 "There should be a certain age bookshelf that only certain aged people are aloud to look at. It's like the adult section at the library. Theres no reason why they should be removed off of the shelves. I would understand if the little kids could come see the books and movies and be offended by it or scared but thats why you would make a certain section just for older more mature people. It would just depend on what offends people and what would make them offended. Some things could or would be bad to have little kids see them, but just make sure they couldnt get in the reach of young kids or not matured people. The only way i would say remove them if it was really offensive such as racism and things like that. Censorship in libraries in my opinion is a good thing. Just because the fact of some people might not like the things that would be in a library or things that they have in the library. So I would have to say yes on cersorship in the library." 3 3 3 3 3 3 +4293 2 "There are many books, movies, and magazines on shelves that can offence people in many ways. These can be books of war, slavery, and even religion that could aggrevate people and make them feel the need for them to remove those books from the libraries without hesitation. There are indeed many books out there that could offence people and could be discriminating, but should those books really be taken out? I believe that books were made for a purpose. Each book and even magazine has a fact of information regarding what is either happening in the world or what could happen. Even for the books that are unrealistic they are also made for a reason and should be allowed to have their place in the library. The library has over thousands of books and movies to choose from. If there even was one book that someone found discriminating or offensive they could always just pass by it and choose one that suits what they want. I feel that it is the person's choice of what they want to read or watch not the books or movies fault. The books and movies are also split into genres into which each movie and book belongs in. So if you don't specifically want to see something than you can just skip the section the movies or books are in that you find discriminating and go to the ones that you feel okay with. There are also many books and movies out there that might seem discriminating but they could actually teach you about life and what could happend and how to solve these problems. One example is when I was child growing up I was reading about this girl getting into a car accident and loosing everything just because she was drunk while she was driving. My mother didn't want me reading the book, but it actually helped me alot because it taught me the valuable lesson of never drinking and driving, because of reading that book at such a young age and implanting the story in my head I know that I will never in my life do what that girl did to herself. This shows that even if a book might seem discriminating and wrong it can still teach people life lessons and danger that they probably wouldn't know about unless they read that book or watched that movie. I feel that even if we removed the offensive magazines, books, and movies that don't have any potential what so ever, people would still find a way to get what they were looking for, even if it is from the library or not. There are many people that are wrong in this world and banning certain books from the library probably wouldn't stop them from doing what they want to do. Music is another thing that shouldn't be that troubled about. Some people listen to certain types of music to calm their nerves down. One example is the @CAPS1 rapper @ORGANIZATION1. His songs consist of severe sadness and frequent cussing, but in his songs are messages that can relate to other people and listening to that certain song might stop them from doing illegal things or even commiting suicide. The songs can symbolize their lives and make them know that they are not the only ones living that way and that they aren't always alone in what they do. I feel that each book, movie, and magazine has at least one thing that a person can find offensive. If we start removing each one that someone finds offencive than there probably wouldn't be a single book left on the library shelves. The books we read, the magazines we glance at, and the movies we watch will probably have something offensive in them but I do not think that they should be censored or removed becasue there is always a chance that those books, movies, or magazines could help you out later in life" 4 4 4 4 4 4 +4294 2 "Freedom of speech and the freedom of press is a privelige we as @CAPS1 are lucky to have. I don't believe in censorship in libraries. Authors, publishers, editors, and directors all have a right to express their opinions in their work. If they would like to express some adult subjects in their work that is their choice. They have a right as people to protray their books, magazeines, and movies anyway they want. We all have the choice to what books and movies we want to check out at libraries. Movies are required to have ratings so the audience knows the extent of the maturity you must have to watch the film. For example if you are a @NUM1 year old who wants to checkout a movie but, it's rated @CAPS2 that is not the best choice of movie. It @MONTH1 not be the best choice because movies rated @CAPS2 let the audience know its for a mature audience over the age of @NUM2. As for books, I often use a book review website that allows me to see the content the book has. If I see that the book contains material I don't wish to read about or think the material is too mature, I don't read it. I hold the power to choose the books I read and the responsibility to choose the books best suited for my age and maturity level. There are many ways we can track the content of the things we can checkout. Just because a movie or book is released doesn't mean we have to watch or read it. We all make choices in our everyday lives.Some are big and some are small. Picking a book or film to checkout from a library is a small choice, but it is our choice to choose what we can handle. Author's, directors, and editors should not have their work punished if some people don't agree with the content they are putting in their material. Everyone's opinion varies on what's right and wrong. Therefore if you believe something is inappropriate you have the chocie of not reading or watching it. I do believe we are lucky to have this freedom of opinion and speech. Although we shouldn't abuse it we must not forget we have no right to tell others how to use this freedom. As we have the choice to read what we want to, authors have a choice on what they want to write about. Libraries shouldn't take away this freedom that allows us to make our own decisions on what we view or read" 4 4 4 4 4 4 +4295 2 "Do you ever feel like books, music, movie, magazines and etc., are offensive sometimes? To my experience of lising to music and watching movies it can be offensive somtimes with out even knowing it. I have lisn to rap before and all the cuss words they use, and watching movies with only white people or black people. So I think some music, moives and etc., could be taking off. If I think somthing is a offensive I pretty much blow it off like its nothing. I do that beacuse I have watch @CAPS1 The @CAPS2 the white and black people didnt get a long, and they had to play football to geather. Then they finally got along and won the champion game. To me I think thats awesome beacause people were offensive, and got over it and now there friends. So dont take @CAPS3 offensive. I say that beacuse how do you know that the actor or the writer was or is talking about you. I look at this like its a little deal. I like @CAPS3 like that I find it entertanment. It can also help you learn, about whats happening to our world, and what we have acomplished. So I really dont take this @CAPS3 a offensive. But, other people can take it offensive and thats there problem. There is nothing that can be done its over with. If something is a offensive then dont lisn to it or dont watch or read it. So dont think its right to pull it of the shelf and abhor it. They can have a really good meaning behind it. There are many movies, songs and books in the world that are good. So dont abominate it and go on in life dont let @CAPS3 get to you. Thats why I dont think its right to pull it off the shelf and take it offenisive. Thats why I think it not bad to take @CAPS3 offensive." 3 2 3 3 2 3 +4296 2 "Dear Newspaper, I would like to start off by saying yes, books, magizines, music, movies, etc., are great for the kids in the library. I think thats the best thing for them to do when they dont have anything to do, go to the library and read or work on stuff in the library and I think that some things should be in the library because we are in high school and we need to learn some things here but some of the things we learn are not very appropriate. In high school just walking down the hall ways your going to learn alot of things you probably dont need to know yet but when you walk into a library they dont need to encourage it by putting books of drugs, alcohol, and sex on the shelves. Books about drugs are alright to an extent. If your reading about medicanes you can take and being in the doctors office and getting percriptions is alright but when you got books about pot, weed, crank, or meth thats a little much. We need to learn about those drugs and what they could do to us if we use them or abuse them but we dont need to know how to roll a blunt or make meth. Books about alcohol are the same way. We need to know the dangers of drinking but we dont need to know about teen parties and things to do when your drunk. Advertisements, magizines, etc., are the worst things for us kids because everyone of them have something to do with drugs, alcohol, or sex and trying to get us to do those thing in high school. The front cover of magizines always have people who have got caught with drugs who is dating or sleeping around with who and ik that we will and need to know these things but i dont think we need to read them out of books because then we read it and see how other people did it and we feel the need to do it or try it. I believe these books that are over the line about alcohol, drugs, and sex need to be taking out of the librarys so that the kids have something to learn about and ask there parents about. I have been in the librarys and I know for a fact that the first books I go for have one of those three invloved in it because those are interesting and we like reading about stories at parties or someone getting pregnant or an @ORGANIZATION1 but also when I read I think about it and I think I want to go to a party they made them sound fun. This is what I think about some of those books on the selves and what I think should happen. Sinceraly, @LOCATION1" 3 3 3 3 3 3 +4297 2 "Libraries Do you go to libraries? Many people all over go to libraries for many different reasons. Sometimes when you go there, you have to have a reason to be there. You also have to be very quite. Libraries are very interesting in many ways. Some @MONTH1 ask what a library is, well they are good places to go. People can go there for many different things. Most of the time, when people go to a library, they go to get books. Not only can you get books from there, but also go there for school tutouring, for a place to read, and just to go somewhere quite. See libraries have many things to do. Why do people go to libraries? Well I personally do not go to a library but many others do. People that like to read go there to get a kind of book they want. I would go there for totouring for school, I honestly need it. It helps you alot and gets your homework done. My mother goes there on some occasions, like, to get information from a book or a computer. They have alot of information they you can look for. Then there are online geeks, who like to get online for video games. I get on the internet but not for video games. There is another reason why people go to the library. My little sister loves going to the library. She is only eight years old. Why am I telling you this? Well when you go into a library, you can not get a book if you are under age. In that case, you have to have parents permission to be able to get one, but not only that, you have to have a library card in order to get a book. I no, stupid rules right? SO then again you have to have parents permission for that to! Well after the permission is all said and done, when you go to get a book, you have to make sure it's you own grade level. I have to watch that with my sister all the time because if not, then they will yell at you. I personally think that is good for most kids. So now you know that libraries are very strict. Now that I told you all about libraries, I hope you learned something from it. Remember that they are very good places to go to for information, to get books, or just to go somewhere quite. You can always find a library around, there are NO @CAPS1! Well if you don't like to read or be quite, then you shouldn't go. I'm going to leave that to yourself." 3 3 3 4 4 4 +4298 2 "In @LOCATION1, people like to do many dfferent things for fun. Some like to go to movies. Others perfer a nice walk through the park. Now a days everyone is all stuck up and think that we should not see and or read bad, nasty, offensive things. I believe that we should be able to see what ever we want. The first reason we should be able to read what ever we want is because we have the right to. There are lots of things that we cant do but reading should not be one of those things. We shouldnt have to ask some one if a book is ok to read or not. Its not fair to those who want to read it. I find it very dumb. The second reason we should be able to read what ever we want is because if you dont like it, dont read it. This is a very simple an straight forward concept. Everybody today is worried about what everyone else is doing. If yo dont like something then dont pick it up and read it. If i knew there was a boook that i didnt like because it was offensive to me, i wouldnt read it. Its just that easy. The third and final reason why we should be able to read what ever we want is because its none of your bussines what other people do or read. Everbody today is so worried about the next guy that its not even funny. If we all just worried about our selfs, then we would be better off. If i read a book that i found offensive or bad, i wouldnt go around telling others its a bad book and that is should be pulled off the shelfs. Its not right and its not fair. We should be able to read what ever we want. Its our right to read it. Also, if you dont like it, then dont read it. People today are too worried about other people. If other people want to read a book that you find offensive or bad, there is nothing that you can do about it. That is the way life works." 4 4 4 3 3 3 +4299 2 "If you take offense to certian things, you shouldn't read the peices of literature that make you feel like that. Ask some of your friends or research the book/magazine before you read it. Sometimes the front can be decieving so make sure you read the description first. Many people that read certain things @MONTH1 take them the wrong way and think they say something they dont really mean. Which is why they take offense to it, but the more you understand a peice of literature the less you are offended. You should try to at least accept some of what the book/magazine says just incase you need it in the future. You @MONTH1 get upset when you read something for the first time, and @MONTH1 not notice that it could help you when you think about it. Thinking about things is a great way to learn how to deal with being offended, just look from both points of view. They both could have good ideas and functions to them. Try avoiding them if you are still offended by them, don't read a lot of book/magazines that have offensive things in them. Ignore the adds on the television or computers that have more than what you need to know in them or if they make you feel uncomfortable watching them. If you read them it could make you feel worse or make you mad. Sometimes they can even make you stess a little. If you are really offended by something the best thing you could do is avoid it. Avoiding something helps you to not read them or think about them. This works for a lot of situations not just this one, so if you need to get away from the stress just ignore them." 3 3 3 4 4 4 +4300 2 "Books can always be amazing things in how they take us to whole new worlds and how they enlighten us to new ideas we @MONTH1 have never thought about before. However, are some books just too much to handle and should not be read? Well think what you @MONTH1, but I believe all reading and media materials should stay on their shelves in libraries because people should have a right to know what is in the real world, even some of the bad parts. Different assortments of media should definately not leave libraries or be banned from them because people need to be educated in all that exists, they need to know even the bad things in this world so they can hopefully be educated enough about it they can go away from evil acts and help fight against them, and first and foremost it is their right to choose what they want to read because each individual must have the option to be who they want to be. Though we can only hope that by giving people such knowledge they can rise up and do what is right. Even education @DATE1 is being influenced by people saying that students can not be taught certain realms of knowledge, but in the long run does this really help people? If people were educated enough to know about everything we know and what they themselves as an individual choose to learn, wouldn't that help them from becoming curious and learning lies from an invalid source, instead of the array of resources they would have open to them at a library? Each individual should have the right to learn what they want to learn and should not be closed off from any resources, otherwise they @MONTH1 never learn the real truth behind a topic, which would work against the whole point of learning. These seekers of knowledge should always be able to seek as they please, so that they @MONTH1 learn and hopefully make new advancements for everyones benefit, but they can only hope to this with proper education. Another point to look at is that people need this variety of education, so they can work for causes important to them. With knowledge people can make new innovations and create and spread new ideas to help make the world better. Although this can only happen when they know both sides of the story, so that if they oppose something they can know what they are talking about and what they are pushing against and what cause they are pushing for. The only way people can truly make their ideas heard will be when they can understand all about their topics. Without certain points of information that could be taken out, people @MONTH1 have no backbone to what they are saying and then they would even hamper other people's learning processes as well. Also another reason to not have censorship is that we all have rights in @LOCATION1,and hopefully globaly someday, to be who we want to be in the pursuit of happiness as long as we do not hinder anyone else's dreams in our own pursuit. People really just need to be who they really are in order to help the world and make differences, because if we were not allowed to be our own individuals then people would never advance. Without this advancement, people would have just remained the same in their cultures and beliefs, but instead people chose to seek knowledge, and in doing so gave us the technology people have @DATE1. Harry @CAPS1 even argues in his popular books series that we must know the enemy to fight them. Would he have become such a hit if others didn not believe this as well? To change this would go against the rights people have found for themselves, thus meaning if we gave these rights away, people would have regressed. People should always be allowed to access all types of media, especially in librairies. These media types help shape who each individual is and helps them to help make contributions to the world in their lives. Though there wil;l always be bad media, we must understand even the bad in this world, so that hopefully people will make the choice to combat it. We all certainly would not be the people we are @DATE1 without all the influences on us and by taking away even parts of knowledge we would end up only dehabilatating ourselves. These choices all help us to hopefully advance and continue forward into the depths of understanding, so that knowledge will continue on forever" 4 5 4 4 4 4 +4301 2 "I believe that if some people don't like a certain book or movie then they should be able to tell the library about that itme and it should be removed from the library. The library should allow people who use the library to take away things that are offensive to its customers. Some parents who come into a library with their children let their children go off and look at books by themselves which is what my @CAPS1 used to let me do when I was a kid. If children are by themselves with no adult supervision and wander into an adult reading section they could look at something bad. They could also buy a magazine that looks perfectly fine on the outside but have offensive images on the inside. When I was ten years old, my family and I went on vacation to @LOCATION1. We were watching a baseball game that was on commercial break one night. We were fliping through the channels wating for the game to come on. We were all watching the television when an offensive image came on the televison that children's eyes shoudn't see. That occurance happened when I nor my parents wanted me to see it. That image was an adult image and was meant for adults only, but childrens eyes can see it as well. Libraries should think of this when they are puting books and magazines on their shelves. They might be making a little bit of money but they are effecting a childs life in a negative way. Things like this could happen in a library also because children who are young won't always know what is a childs book and what is an adult magazine. Children also might ask their parents for music that the case of the music might look fine on the outside, but have cursing and bad things on the inside. This is the reason why all items in a library that are offensive to people should be removed from libraries. If people who go to the library don't like something on the shelves they should be able to ask the library to take the item off the shelve. The libray might not do it everytime, but taking items off the shelves would make libraries more enjoyable and safe for children. If the library doesn't take the items off the shelve it could effect their business in a negative way. The library should only take off the items that regular visitors to the library ask for. The library shoudn't listen to someone who has visited the library only a few times. The library should listen to its customers that visit the library often. I think that all offensive images to people that visit the library should be taken off the shelves and removed from the library. The library should listen to its customers not only because it could effect their business, but becasue it could effect the lives of children in a positive or negative way." 3 3 3 4 3 4 +4302 2 "The offensive things found in a library. In many libraries now a days there are all kinds of vilent and bad books talking about vilenst. Should libraries take these books, movies, or music off the shelfes find out. The library should not have to take these tipes of things out of the library. If they have bad related books they should just make a different section in the library for them. For rated @CAPS1 movies they can have them in the library. You have to be over @NUM1 years of age. For music if it has an @CAPS2 sticker you have to be over @NUM2 to rent it. If the parents dont like it then dont get it. They should make different sections in the library for the offensive books that they have. Kids under a surtain age should not be allowed to read the books. If they still want the book they have to get parents permissition to rent it. Rated @CAPS1 movies they should be allowed in the library. You just have to be over @NUM1 to go in that area and with an adult. If you want to rent a movie you need to have parents permissition. You also have to watch this movie with an adult. Music if it has an @CAPS2 sticker you have to be over @NUM2 to rent it. You can still rent it if your parents say its ok. They should make the @CAPS5 behind the counter. So that little kids can not see the front of the cases. If the parents dont like the libraries rules then dont rent anything from the library. So dont take off the offensive books, movie, or @CAPS5. If you were head of the library what would you do. Take out the offensive things, or just put them in different sections" 3 3 3 3 3 3 +4303 2 "Reading is very popular. It is something to do when you are sitting at home and also when you are in the classroom. School libraries are filled with defferent varieties of books and magazines and such. Some of these books could be arguably offensive to some people. These books should not be taken away from the library shelves. There are some books that some people find so offensive that they can not even continue to read the rest of the book. Whether it be sexual or even political, if the reader finds it offensive they will not read the rest of the book. There are books out there that describe in detail sexual scenes and many parents do not want their kids to read these kinds of books. This is no reason to remove the books from the library shelves. It @MONTH1 be offensive to certain people but if you took it off of the shelves it would not be available for others to read who can handle that kind of story. Parents' kids should simply not read these books. Libraries can not take the books away all together from readers who enjoy these kinds of books. There are also books about politics. Majority of people stand firm with politics and do not budge when it comes to discussing what they believe is right or true. When a reader comes across a book that is against the way they see politics, there can be a real problem. With politics being a serious matter, many people can overreact when someone tells them what they believe and think is true is really not. Politicians themselves especially. Still, many authors write about political matters and some books can educate the reader about points that they have not yet seen before. If a reader does not agree with what the author is writing or they find it offensive, they should not read the book. There are plenty of other readers out there that would like to read that book and to learn more about politics. If a reader knows that this kind of reading offends them, then they should know better than to pick up the book in the first place. Many libraries offer music, movies and magazines to check out and to take home. It is true that many of these movies or the lyrics in the songs could strike someone as offensive. For this reason, they should not check them out. Many people enjoy music or movies that have offensive language. It is something that adds to the song or movie. People know their limits and if they know the contents then they should stay away. As long as there are other readers and people who like those kinds of books and music then they should keep them on the shelf. Taking them away would only take away from the number of people who visit the library. You could go to your local library and find people looking through the music section, and the music section is the only reason they come to the library in the first place. The music and movie section should stay in libraries. The people that are checking them out should be mature and responsible enough to know if they find the contents offensive. Libraries should not take certain books, movies, and magazines away that some people find offensive. Some books and music do have contents that are offensive to some readers and viewers. However, if it is offensive to the first person, it does not mean it will be offensive to the next. The libraries need to keep these sections in their libraries for all different kinds of readers. Reading is an extremely popular activity. Readers want a variety of books, music and movies to choose from." 4 4 4 4 4 4 +4304 2 "In every school or library many people see books that are inappropriate for their taste. Everyone has their own opinion, and what might seem offensive to you, @MONTH1 be something that someone might want to know about. So should we take the books that only the majority of the people think are offensive off the shelves, or should we keep them anyways? Here is what I believe we should do. Books are meant for learning and for pleasure not to try to offend anyone. They each have their own purpose and there was a reason for why they were written. There are tons of books out there that many people dont like, but that doesn't mean someone else doesn't. We should keep the books in the schools and in libraries, because @MONTH1 be they might help someone in a way and if they weren't there, how would that person get help if nothing else was avalible? One thing we can do is categorize the books by the genre, so that way people know what they are looking for. Many people find these books that are 'offensive' because they come across them randomly. If each book was put into a certain category then that incedent wouldn't happen. It also helps keep everything organized that way. So when you go into the library you know what you are looking for, you can just go right to that section and not look at anything else that @MONTH1 be offensive to you. Keeping books on shelves is what all libraries and schools intend to do. That is the main reason for libraries. They help you learn and get information about things that maybe you can't get anywhere else. If every library took off the books each person complained about what the point in having the library? There would be nothing left. In all, everyone is entitled to their opinion and has a right to think that a book is offensive, but the reality is that it was written for a reason. If the library or the person who published it thought it was going to be a big deal, they probably wouldnt have put it out there for the world to see. So keeep the books on the shelves" 4 4 4 4 4 4 +4305 2 "Going to the library is always a struggle when someone is faced with so many different genres of books. That isnt the only choice they are faced with either. There is music and magazines too. Just within the books, there are so many different subjects and catagories between kids books, biographies, autobiographies, etc. On top of that there are alot of different types of music to fit everyones different styles. Some people might say that some of the books and/or music could be found offensive or not appropriate. But out of all the meterial in the library, I don't think there should be a problem with staying away from a the things that you might find offensive. Therefore I do not think that certain books or music should be kept away from the shelves due to a few self opinions. There are multiple different books in a library and just because one might find one book offensive doesnt mean that the book should be pulled off the shelves. The reason being is that someone else could find that book as a good resource and @MONTH1 need it for something they are doing. People should know what they are looking for at the library and if they think that a book @MONTH1 be offensive then they could keep their self from checking out that book. This problem is similar to others around the world. For example, when you go to the mall there are shops that you know you like and go to, and you stay away from the ones that you dont like or @MONTH1 find offensive due to the items they sell. That doesnt mean that store should be banned from the mall. Thats because some people might find that store interesting and want to purchase some of thier items. I think the same reasoning goes for different books and meterial at the library. A way that a library could adress this problem with out pulling theses books from the shelves is maybe taking a survey from thier local visitors in thier town by asking them what they think on some of the different genres of books and different styles of music. After taking this survey the library then could seperate these items into different catagories or sections within the library. This could help this problem tremendously due to the fact people could stay away from those sections that they might find offensive and find what they are looking for alot easier. I know when I sit down and read im not always caught reading the most popular subjects. I like to read subjects such as murder files, drug bust, biographies, and autobiographies. And then when it comes to music I listen to a wide variety of music such as hip-hop, country, alternative, rock, etc. Some people @MONTH1 find that wierd and unusual but it just goes to show that not everyone wants to read and listen to the same thing. Therefore the library should keep the wide selection of different meterial and keep everyone happy" 4 4 4 4 3 4 +4306 2 "I think that they libraries should not remove any of the books they have now. If parents or people dont want to read those type of books they dont have to. But they should'nt be removed. I agree that some books are inappropriate and have bad language in them but thats part of the book and how the story was made. When a book is made they way it is and is already published there should'nt be any changes made to it. If a story contains a certain scene that a person believes should'nt be in the book, that person needs to put that book back and choose another book they think is appropriate. Some people like to read stories with details so they can picture it in there mind. I know I do. In libraries they have books with inappropriate language and scenes discribed but to a certain age. I think you have to be thirteen or older to read them, and thats a good thing because by that age you know things better and your parents should'nt be too worried. So in my opinon I dont think they should be removed from libraries. On the other hand movies that have scenerios that are disturbing should be removed. Movies are a whole different thing then books. They show the material that is being described and I dont think teens should be watching that. They can be very unappropriate and disturbing to some people like me. I would'nt want to watch that in front of my mom or dad and especially a younger sibbling. Then again its just my opinion. If parents are okay with there child or children watching that then it should'nt be a problem. Music is'nt that bad. There are a lot of parents who dont want there child or children listening to a sertain type of music because of their religion and what they believe in. I totally agree. My parents at the beggining would'nt let me listen to music where all they would do is sing about sex and curse over and over. As I got older they did'nt care much because I would'nt listen to it as much. Im a teen and I also believe that some of the music now in days in not very appropriate for anyone at any age. Some of what they sing does'nt even make much sense. In libraries I think they should only have music that realates in some how to the books. Magazines are not really a problem. Most of the magazines talk about beauty and fashion tips. They have horoscopes and give advise. A lot of the magazines keep people updated on celeberties and there life style. It has some what gossip. There mostly for older teens and grown ups. For younger teens and kids there's more appropriate magazines where they talk about younger celeberties. This is my point of view on things. I know that a lot of people dont entirely agree with me but this is what I think. I also know that there @MONTH1 be a lot of people who agree with me and they'll most likely give the same reasons as I did to support their choice" 3 4 3 3 4 3 +4307 2 "Do you believe that certain materials; books, music, movies, and magazines should be removes from the shelf if it is offensive to some people? Accordingly, I do not believe this way. If we were to take books off a shelf for everyone who thought it was offensive, we wouldn't have any books left on the shelf. According to my prior knowledge, I know certain materials will affect different people in different ways. I have had my own experience when in svhool. Some people do not want to say the pledge due to saying 'one nation, under @CAPS1.' We all have various opinions on subjects; so we all will react differntly. However, that doesn't mean we should take away something he or she finds offensive; others find it appropriate. Observing others when in offensive situations @MONTH1 help find a solution to these problems. The solution is certainly not to remove what some find offensive for many people will disagree until eternity. Censorship in libraries should be based on seperation. Materials that fit under one catagory should be put in one section. Often times, this seperation helps people find what they need and not be offended. In our own constitution it states that all @CAPS2 are free; freedom of speech in particular. All materials are written by someone with an opinion so by taking their books off the shelf, we are taking their freedom of speech away. It is how they express themselves. If someone finds it offensive then they should quite simply not read it. Removing the material might frustrate and offend the author or other readers. It is plain and simple: We shouldn't remove certain materials due to someone finding it offensive. Censorship in libraries should be based on seperation, not people getting offended easily. It's based on choices. People should get to choice what they want to read or watch without others taking it away from them. So now what do you believe; Should certain materials be removed" 4 4 4 4 4 4 +4308 2 "Have you ever sondered through the libray just to specifically find that one good book, magazine, or even cd that didn't involve inapropiate material for once? You feel like a little kid in the shopping mall just inpatiently waiting to find that one toy, but it never shows up. You spend seconds, minutes, even hours still slowly pacing back and forth shelf to shelf, and finally you find it and you open it and see the most innapropriate picture ever, or maybe listen to the most vulgure language, or even take a skim through the most offensive reading yet. Do you wish it'd change? I visit the library every time after i finish my book, I have loved reading from the time I was little. Lately i feel like my reading iterest has gone down though, not due to my act of being involved in other things, but possibly because lately I feel like every book I pick up comes off offensive. For example I went to the check out a new book, I was mind boggled at this time because unlike usual I had no clue on which book I was even interested on to read next. The librarian directed me to there new best seller and said addressed it and said it was as hard to put down as a lollipop. I checked it out and after the first paragraph I wanted to throw up. This book and too gory and i felt like it downgraded women, I was anything but satisfied. This wasn't the first book me or my friends had checked out like this, and I have a feeling it won't be the last. I just hope i could check out a book not so offensive and actually worth my time, but it seems like lately they are all changing and becoming too much for me, and it really upsets me. Our library seems to be over packed with magazines, which isn't a bad thing because I love them. I label magazines as a light read and very good at passing free time. I never get tired of all the pictures, all the gossip, and all the jokes at the end. Lately my opinion has changed though, these magazines are starting to alter and I don't like it. It seems as if I can't open my page without seeing a half dressed girl, some innapropriate advertisement, or even tons of personal display of affection. Seeing these vulgare images are enough to make me not only flip the page, but also never second guess about opening a magazine again. Music is like a drug to me, and I am addicted. There is never a day that goes by that I do not listen to music, but lately music just isn't the same. I go to the library to check out some new cd's and it seems everything I bother listening to uses every curse word out there. I was furious after my purchase, but also disappointed that people actaully sell this garbage. I am somebody who listens to music to relax, not develop a new innapropriate vocabulary. I know there are plenty of good books, magazines, and music out there. We just need to find it again. I hope that we can banish these offensive, vulgar, and unnesesary items at the library. I know i'd greatly appreciate it, and from what I heard many others would too. We want reading utensils worth reading, we want magazines our eyes won't mind to take a glance at, and we won't music that won't pollute our brains" 4 4 4 4 4 4 +4309 2 I don't think certin matrials should be removed from library shelvs. People have the option to get what they choose from the shelvs the lirarians don't force them to choose the item. It is a free country and i think people should choose what they wan't. If the people don't like it then read the back of the movie or book before you choose it. 2 2 2 2 2 2 +4310 2 I belive that there should be no censorship in the country of the free. In the country of the united states there should be no such thing as censorship. This country has the freedom of speech where we can say anything we want. This one band got banned in the united states of @LOCATION1 for there music. How can your music get banned in the land of the free. I think that there should be no way that any thing can banned in a liberary there should be no such thing. And how can we know good from bad if we never have seen bad. I know that there are some movies and magazines that parents dont want there children seeing. So dont censor it still have it just make it where you got to be a certain age to see that movie from a liberary. There should be no sensorship in the land of free speech. How would we be call the land of the free if we are censoring everything. That is why i dont think we should censor anything in @LOCATION1. 2 2 2 2 2 2 +4311 2 "I believe that certain materials such as books, music, movies, and magazines should not be removed from shelfs if someone thinks they are offensive. Just because one person finds them offensive doesnt mean that they should be taken away from others who @MONTH1 like them. People are different, therefore we like different types of things. Different music, books, movies, and magazines. If you find it offensive, dont listen look or read it. Listen to the music you like, watch the movies you like, and read the books and magazines you enjoy. But just because you dont like something dont try and take it away from those that do. People are very different in many ways. But let someone express who they are through their likes and dislikes. Censorship has always been an issue but i believe that if people would just stick to what they know and like and leave everything and everyone else alone all would be ok. I understand that some people might find some things that are on the shelfs today offensive. But if you dont like it dont look at it or listen to it. Let it go and stick to what you know and like. After all the world is a very diverse place and we were not all made the same." 3 3 3 3 3 3 +4312 2 "Do you believe that if you just take a book off a shelf you or your kids won't be exposed to offensive material? If you do, then you are wrong. You can't isolate your family or other families from the world because you are scared that they might pick up something bad. Everyday, whether they read a book or not they are still exposed to vulger behavior. 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right ot remove that book from the shelf- that work I abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any us.' @CAPS1 quote by Katherine Paterson also helps understand the concept. If someone were to take a book off of a shelf at their home, a public library, or maybe even a store that they found offensive at any point in the book, then there would be no books left for children and even adults to read. In every book there is some form of material that people @MONTH1 not be a fan of. There would soon be nothing left. There isn't a day that goes by that a kid doesn't hear something offensive. Even at school, where it's supervised, children bring words that they have heard their parents say or things that they have seen their parents do, and they share them with other kids. You can't protect them from every small encounter they are faced with. Some books are by far more offensive than others, but are you going to give a kid a book that has vulgar language or, will you give a child a book that's about @CAPS2 the @CAPS3 running out of honey in his jar? Most children don't go to a library or a store without super vision if their parent is @CAPS1 careful about just books. Therefore, their parents probably aren't going to allow them to pick up a obscene book or magazine, and in fact they would probably try to hide it from them. If a book is put on a shelf then it is there for those who enjoy that material. If you can't make the world kid safe, then why would you try to make a library the same exact way. There are other people out there that might find the very material that you that is offensive fascinating, and a library is there to suit everyone's needs. It isn't there for just children." 4 4 4 4 4 4 +4313 2 "I think that we should remove certain things like movies, music and books should definitely be a debate because in these days people are doing things that they never done before. For an example music, music is a great cause of things that people motivate to do things and get really into the songs. They try to do the same things as what there favorite artist or actor does. I hear some songs and they talk about illegal things and I look around the world I hear children talking about those things and they tell there parents what is that ? But they just dont want to tell them the truth but once these kids get older they will know what it is and it will be there choice if they want to follow that path or think about something else. But about the people who are singing this, they're putting it in a way that is not bad you could do this all the time and enjoy it with out getting introuble and in reality these kids are blind and dont know what there getting them selves into. Also, many books have offensive language that kids read all the time but people dont even notice. That's how kids could get introuble in school because they learn a new word in some book they never read or cant even read cause there to young to understand but they do it anyways beacause of curiosity, they dont know what there doing. Thats a way how a child becomes bad cause person when he or she becomes older cause they learned things that they shouldnt have learned. I think that we as a good country should make sections into what people can read and cant read, and it should depend how old is the person. Some school librarys, have movies that kids could watch and it could be if your a elementry school, middle school etc. But some of these movies have offensive language and some appropriate scenes, that kids would want and learn how to do those type of things. Or how they see the actors in the movie and they curse and they think is cool cause there doing it as well. I think that elementry students should watch only pg movies, middle school pg @NUM1 and down, and for the high school, we should be able to see basically any movie, but in the same time I think most of the high school students have to be more mature, thats probably why we still dont have the priblige to see any movie cause peolpe dont know how to handle them selves. Finally, I really think they should minimum some movies, music and books cause kids are learning things they shouldnt be learning until they get older, and that those three things change the world in so many diffrent ways, some are good but most of them are bad, these are my opinions." 3 4 3 3 3 3 +4314 2 "There are a lot of issues concerning offensive material that are used for entertainment purposes. Sometimes these things should not be on the shelves. Such as movies, books, magazines, etc., they can be seriously offenseive to other people that are different races or different religions. Censorship can be used to solve this problem, like in the book @CAPS1 @NUM1, it was used to keep books out of the picture completely. To keep the society from becoming offended, or for that matter, thinking. However in this matter it is the complete opposite, having all kinds of negative material and not caring what it can do to other people, or @MONTH1 damage other people. However this can also be argued. The people that are offended by the material, wether religious or race, really don't have to be around the material in the first place. For example if the material is in a library, then the people don't need to go to the library. In conclusion people don't have to be near the offensive stuff if they are offended, but people should not be so cruel also." 3 3 3 3 3 3 +4315 2 "Personally in my opinion I have no problem with anything found in libraries today. Yes, there will always be something you disagree with, but it's not hurting you so just ignore it. Kids don't walk around in the adult section of the library they go to the kid section so there is no need to worry about them. Kids are maturing at a much younger age these days. I believe there is no harm in libraries, it is a place where you go to get all the information you can. So why would you remove valuable information. The library is a place for all people no matter who you are, how old or ugly. Everyone can use the library for any reason, many times invloving school. Personally I do not much use public libraries, but I often come to the school library to get stuff done or find a specific book. For example you might find @CAPS1 to be a horrible person that you don't want your kid knowing about. For me I am @CAPS2 I want to learn more about my own culture no matter of how bad it is. So why take that information away from me. Taking away a learning experience just becuase a group of people don't like the book does not mean everyone dosn't like it. I want to learn knowledge about myself and where I come from. Everyone is going to have their own views and beliefs. Overall think the library is not a place to take things away when any one is welcome. It is a place to get away from it all, I think they should leave them just how they are." 3 3 3 3 3 3 +4316 2 "I do not think people should take books off the shelves because the town libraries have those types of books. People should enjoy reading all types of books. Some people only read different books. Little kids like fantasy and picture books, teenagers like romance, and others like nonfiction. It should not matter what other people think. If people brought books off the shelves then what will the other people read. Before you bring books off the shelves, you should ask and write down what other people like instead of doing what you think is right. Think about what would happen if u brought down books off the shelves. What would happen? I will tell you, you would lose customers. If you don't want children to read inappropriate books, then you should make a card saying that your parents give them permition to read those books. If that won't work, then make an age limit. Have the parents show you their berth certificate. Have a resticted section in the library. In order to get a book from the resticted section, then have a parent sign a note saying that their allowed. Children the age of thirteen and under should not be given magazines. If their the age of fourteen and up, then they can get a magazine. Music should not matter to parents, so there should be no problem there. If the movies are bought by the parents, then there should be no problem there either. The other things you can figure it out on your own. This is what I think should happen to books in a library. I told you how a library should work. I told you what I thought should go on in the library. I will give you some advise. Think before you do. That is all I am going to tell you." 3 3 3 3 3 3 +4317 2 "I beleive that all materials should be allowed in libraries, because we all have the right to choose what we want to read, listen to and watch. Even if people banned some books from the libray, other people would find a way to get them. we as the people of aAmerica have the right to live freely, which also includes the right to read freely. As for music and movies i think we have let ourselves go a little too far. We have made pornography an easily obtainable thing, and music that promotes sex, drugs, violence, and alcohol. The only thing keeping us from pure evil is the @ORGANIZATION1 and their ratings on movies, music, and television. With magazines its a little more complicated than the others, maga zines have their own set of standards. We all know about @CAPS1, @PERSON1, and @CAPS2, but think about all of the magazines that we dont see. The ones that stay behind closed doors and rarely ever come out." 3 3 3 3 3 3 +4318 2 "Books, magazines, movies, and music are created with a huge diversity. Fiction, @ORGANIZATION1, horror, fashion, sciencefiction, and many more categories of literature are made. There is something out there everyone will enjoy. What would you do if you did not have the choice to read, listen to, or watch the materials you like because someone else had an ill opinion of it? Everyone has an opinion. It @MONTH1 be in favor of something or it @MONTH1 not be. I believe every book, movie, magazine, and other piece of literature should have a rightful place on the shelf. To some people it @MONTH1 be offensive, but that does not mean they have to read it. Someone @MONTH1 enjoy a piece of work another finds offensive. It is all a matter of opinion. The opinion of one person should not effect materials being able to be on a shelf or not. If you walked into a libraray and the shelves were filled with books, but only books everyone had a good opinion about the shelves wouldn't seem very full. It is hard to get two people to agree on the same thing. Imagine trying to get everyone to agree on the literature in a public libraray. Censorship is understandble to an extent, but I believe the libraries should organize all their literature into categories and sections. In these categoires and section people @MONTH1 look for the materials they wish to see and avoid the offensive materials they do not. Libraries have rated @CAPS1 movies. Many people could consider rated @CAPS1 movies to be offensive, but many people could enjoy watching rated @CAPS1 movies. Who wins, the people who find then offensive or the people who enjoy them? It is a hard choice to make. I believe the libraries should carry the movies and if someone finds them offensive they should simply not watch them. The same goes for books, magazines, and music. If you find it offensive simply do not read it or listen to it. There are hundreds of different sytles of writing, plots of movies, lyrics of songs, and covers of magazines. They have such a diversity because everyone has a different opinion of the lyrics, covers, styles, and plots. They can not censor things just because some people find them offensive. Others @MONTH1 enjoy them. What would you do if your favorite book was not allowed in your public lirbaray" 4 4 4 4 4 4 +4319 2 "I do not think that books, movies, music, magazines, etc., should be removed just because some people do not like them. Maybe some others do like them and like to read them. There should be no reason that one person or persons should try taking something off of a shelf at a library just because they find it offensive. Many people like many different things and somethings that you read @MONTH1 affect others, but you dont care about that, you just care about what you want and like and what is offensive to you. What if something you were watching or reading or listening to was offending someone else, would you care? Would it bother you if someone told you it was affending them? Everyone likes different things, and some others @MONTH1 not always agree with what they are going to be interested in" 2 2 2 2 3 2 +4320 2 "Do I belive that ceratin materials should be removed from shelves if they are found offensive? Wath I am going to discuss about is do I belive certain materials should be removed from shelves if they are found offensive? I will also talk about my introduction, abody and conclution. Do I belive that books, music, movies, magazines, and anything else in any book shelves or any other shelves that is offensive to anyone should be removed. I think this because nobody should be offended by anything. Everyone should not live offended by anything or anyone. I just explaned and talked about if the offensive things in shelves should be removed, and I answerd yes. I also talked about the introduction, a boby, and introduction" 2 2 2 2 3 2 +4321 2 "It is known that anybody is able to rent books, movies, music, and magazines in libraries. It is also known that some of the material in libraries @MONTH1 be offensive or inapropriet. While some people beleive that such items should be removed from the shelves, I beleive that books, magazines, movies, and music should not be removed from the shelves. People should be able to read, listen, or watch watever they want to, if someone doesn't want something that they find offensive in their house then he or she doesn't have to get it, and it doesn't mean that something that seems offensive still isn't enjoyable. The most important reason why I beleive that items that appear to be offensive should not be removed from library shelves is because people should be able to read, listen, or watch watever they want to. Anybody is entitled to his or her own preference. Some people prefer @CAPS1 rated movies or music with explicit content. If that's what people are interensted in then so be it. Anybody should not have to stop renting something that they want just because someone else doesn't want them to. Furthermore, if someone doesn't want something that they find offensive in his or her house then just don't get it. Noone is forcing anyone to listen to or watch something that they don't want. It is actually a very simple matter. It's a choice whether someone wants to watch or listen to what they want, and they don't really have the right to be able to tell someone else that they can't watch or listen to what they want. If someone doesn't perfer something then they don't have to get it. Finally, just because something seems offesnsive doesn't mean that it still isn't enjoyable. The @CAPS5 example that I can think of is a movie that is @CAPS1 rated. Just because a movie is rated @CAPS1 doesn't mean that it still doesn't have a good story or moral to it. Their are plenty of rated @CAPS1 movies that have won @CAPS5 @CAPS6 and plenty of other rewards. Another example is the singer @ORGANIZATION1. While his music @MONTH1 be offensive, their are still many people that enjoy it. Certain things that offend people can be enjoyed by other people. In conclusion, noone has the right to be able to stop anyone from renting what they want from a library. People just really need to mind their own business and not worry about what other people find enjoyable. Certain books, movies, music, and magazines are only offensive if certain people beleive that they are. People can only choose what they want, and nothing more" 4 4 4 4 4 4 +4322 2 "Do you believe that books or any different materials should be removed from the libraies shelf. No, because them books or materials is not for everybody to look at. Like if you have kid's you should keep them and a kid's area. We cannot just start takeing down every book off the shelf because it was not a good book.The reason why kid's should stay and the kid's area is so they want pick up that book thats not for them. We will need the read to be reading childrens book.If a kid's pick up a bad book you should explaine to them that this book is not for them. Some books are @CAPS1 for kid's to read. so thats why they have there on area to be in. Kid's should not leave there area for a @CAPS1 book. I think that kids should list to appropiate music and a libriary. The @CAPS1 book or materials are not for the kid's to read so they should not be and that area to pick up a bad book. i feel like there are no bad book out there if you dont like the book maybe someones elese will. but like movies, music, and magazines should not be off the shelf because if it was @CAPS1 it would not be and the libriary and the first place. Everybody is not going to like everything but thats just life" 3 3 3 2 2 2 +4323 2 "Should there be cenorship in the Libraries or not? Many people have there own personal view on this subject. Everyone should know their own boundaries of what they know is appropriate to look at and what isn't. Libraries shouldn't have to remove books and etc. that they themselves have purchased to get. Now they want them cenored? i don't think that is very right. Libraries should take all the cenored material and make a part of the library where the customers can't see from the main section and it would be open to the customers who would like to go in that specific section to check out a book or anything else that @MONTH1 apply to that section. The library was build for anyone who just wanted to go to a place to escape the troubles of their own world and just go sit in a library and read. Not everyone goes to the library for a book, some go to listen to music, some go to read a magazine, well whatever it is for the libraries can't take out the material that people go there just go get. How do they expect customers to come back if they're taking material out of the library? The internet and @CAPS1 is way more offensive than material in a library so what gives them the right to say get all your offensive inappropriate material out of the library. If libraries have to do that then so should all the other entertainment industries. Finally every library should have their own control over what they think is best for their own facility. My opinion says we should just move the material else where in the building, in it's own little wing or something. Where people could if they would like to go in and check something out but if people didn't want to go in they sure don't have to. Everyone has thier own personal opinion on this subject, and well i gave you mine" 3 3 3 3 3 3 +4324 2 "I think that any book or movie should have some warning sighns apon it, to insure that all peaople know what they are going to experience before reading or seeing anything. sSome movies or books read or watched, should have an age limit too. Some of the things people find offensive, other people @MONTH1 not and if taken all of the stuff out of movies or books @MONTH1 cause people not to go see or read as much movies or books. In alot of music some things might be offensive, but if you don't apriciate what they say in the song then dont listen to that group. There are some rap artist that say some things people might not like but, you dont have to listen to them there are alot more bands and diffrent kinds of music to choose from. It would b hard taken stuff out of movies and music like that because it might take alot of what the people want to see. In magazines alot of people including i like hearing the trooth about celebrities and interesting facts about people and movies, that alot of people @MONTH1 not know. If parents dont like there children reading those kinds of books have them go buy a set that they will enjoy haveing there kids read." 3 3 3 3 3 3 +4325 2 "My name is @CAPS1 and my views on censorship in libraries are that if any material that are found offensive should be take off the shelves. I have never came across a material that was offensive to me, but maybe someone else has and it really offended them. I'm not the type of person who would start an argument but i am a type of person who will speak whats on my mind and tell you what i believe in. People are concerned about if libraries take off certain kinds of books that their will not be books left on the shelves for anyone else. I have to say there are other places you can buy books at beside the libraries such as stores as in @ORGANIZATION1, @ORGANIZATION2, and etc. Like i said i have never came across a book that i think should be pulled off the shelf, but of course i don't read a whole lot either but the books i have read i have never came a crossed any that were terrible. Books that have like how people can kill themselves, or how people get pregnant, and so on, them can be pulled off the shelves, but if you have a child in the library they shouldnt even be in the adult book section anyways, they should be in the kids book section. I have never heard of a kid book that is terrible and that should be pulled off the shelf. Most authors are smarter then that, or at least i would hope so. Music is a whole story its self. In my opinon if you don't want your kids to listen to adult music then don't let them. I know a lot of music that is bad and that i would never let my children listen to it but i know well enough if i don't want them to listen to it them i'm not going to play it while their around. I grew up around rap music so thats all i listen to, but when i have kids i know what they will be able to listen to and what they wont be able to listen to. Movies is the one that i have a problem with the most because in libraries, and other places such as, @ORGANIZATION1, and book stores they just put out movies for EVERYONE to see and it doesn't matter what's on the cover or what it's called. Now movies with bad covers and bad titles could be pulled off the shelves such as all the '@CAPS2 @CAPS3' movies. The name of the movies aren't bad but the movie its self is not for a child to see so why even have it out on shelves for kids to see and want to watch it? Magazines and etc i don't have a big problem with because libraries don't have bad ones, but book stores do such as 'playboy and play girl' but they are usually put back in the very back behind all other magazines so children can't see them only adults can. The only way a child would see them is only if you point them out. I think i've said all i can say about my opinions and my experiences about books, music, movies, and magazines in libraries that should or shouldn't be pulled off the shelves. I havn't had a lot of experience but maybe that's because i don't have kids yet, i guess i will find out when i do have kids. I happy to explain my experiences and opinions to people who really care and want to know" 3 4 3 3 3 3 +4326 2 "Library Censorship Libraries shouldn't have 'offensive' books removed from shelves. Parent supervision, librarian supervision, and your own common sense are three of the reasons why books shouldn't be removed from shelves if they are considered to be offensive. Parent supervision is one of the top priorities for knowing what your children read. If they don't want their children to grow up being 'stupid' then they should teach them to focus on educational books more. When they see their child in a row of books that they think is inappropriate, then they should remove their child from that area and take them to another area. The librarian's supervision is also an important priority. Maybe they don't know the children's actual age, but if the librarian sees them in a place that they think is inappropriate for someone around their age, show them another book shelf. Just like parents, librarians will try to find an educational book that the child @MONTH1 enjoy. But, librarians obviously like to read since they are around books all day, so the child @MONTH1 be lucky and the librarian finds an adventure book for the child, or something else that the child finds interesting. The person's common sense is also a reason why 'offensive' books shouldn't be removed from libraries. Most people know how old they are and what kind of books they should read. If they are in an area of the library that other people @MONTH1 think is inappropriate for them to read, go to a different area. Once again, I don't think there should be a censorship in libraries. If parents want their children to read books that won't 'rot your brain' then they should observe what books their child reads, trust the librarian to show them the correct books to read, and expect their child to have good common sense" 4 4 4 4 4 4 +4327 2 "I think that @CAPS4 is fine if you take them out. Your should be @NUM1 or older to take them out of the libraries or stores if they are really that bad. If they are that bad they should have something on them like movies that are rated @CAPS1. I have read some books that are really good,but kids shouldn't read them. I read this book @CAPS3 'A @CAPS2 @CAPS3 @CAPS4' and @CAPS4 is really sad.@CAPS4's about this @CAPS2 and he tells us what his mom makes him do when he was little. I liked the book but @CAPS4 was sad,but I read @CAPS4 because people were talking about @CAPS4. Some parents won't let their children watch certain things on the t.v. because they think that they are bad. I was watching this t.v. show at my grandma's house and she said that I shouldn't watch @CAPS4 but I do. I'm @NUM1 years old so I think I should be able to pick what I watch. I don't think she likes @CAPS4 because they yell a lot on the show and she says that is why I yell. Some movies are better if they have bad things in them, @CAPS4 makes them funny sometimes and that is what everyone likes. I would rather watch a funny movie then a kid movie. I watched them before though" 2 2 2 3 2 3 +4328 2 "No, the books and etc. should not be moved ,because anybody can be interested in them. Someone could come in the library looking for any of them items and can't find it because the library removed them. First, there will be no reason for removing the books from the library unless more new books and etc. are coming in. Everyone is into different materials, books and stuff. That's why I say do not remove the items. People might come in the library looking for a book that they want. If that person can find it they might complain, or take there bussiness else where. Then the library could start losing bussiness. Second, if they library start losing bussines it might be forced to close down.Then if the library close down the people who come there often won't have no place to study or work or nothing. What if those people don't have transportation they will not be able to get to another library. The owner of the library can lose money if it close down, because everyone don't have computer's and books at home. They can come do there research and rent books. Third, some people go to the library for peace and quiet, and the library is there only place. Little children go to the library looking for books and etc. to and if they can't find the book they want they might start crying. If they start crying people who are working can be disturbed. Then that person or people who are disturbed might leave and never come back and thats money lost. Students school's might not have the book they are looking for, and they come to the library and the library don't have it that student won't have a book. In conclusion, these are some reason and examples why I don't believe the books and etc. should be taken out of the library. Someone can be really interested in them items and they come to the library search for them and can't find them." 3 3 3 3 3 3 +4329 2 "You are the mother or father of a young child, and you take them to the library. While there, you see some advertising for a new book. The sign is all bright and flashy, so you stop to read it. It turns out to be advertising a book and some movies that you believe should not even be available here, for they are far to inappropriate and offensive. What would you do? Personally, I believe that if you see something like that, that you believe is offensive, you should say something. Talk to the librarian and state your case about what is going on. Having offensive articles in a public library where kids of all ages go to do their homework, is just plain wrong. What if that certain library had no restrictions on who checked out what? So many kids could check things like that out, and not even know what it actually is! Could you imagine your child coming home from the library, and handing you a book, magazine, or movie that was way beyond anything they should ever see at that age? It would be disasterous! I @MONTH1 not have children, but I do have younger cousins. I know for a fact that if they brought home something inapproproate or offensive, their parents would be having a major talk with the librarian. Libraries should have major restrictions on what gets checked out by who. For example, my library has three different kinds of library cards. One card is just to check out regular books. Another is so you can check out movies, music, and books. Then the third and final card is so you can check out books, music, and movies from the adult section in a small room at the back of the library. However, to even be eligible for the third card, you have to be eighteen or older. I strongly believe that if a library does carry materials some @MONTH1 find offensive, they need to be kept in a small room at the back of the library, or behind the librarians desk. This way, noone who does not want to see the materials doesn't have to. If someone did want to see or check out these materials, they should need proof that they are eighteen or older. This would make it easier for the librarian to keep track of who looks at or checks out the materials. Another thing, what if someone finds something offensive that someone else doesn't? Well, I honestly think that at least two or three people should comment on it being inappropriate or offensive, before it is actually taken off the shelf. If more than one person does say something, the librarian should place the book, magazine, movie, music, ect., in with the other offensive materials, where there is an age restriction. This is how it is at my neighboorhood library, and I strongly believe that this library is a model for all libraries wanting to have more restrictions. If all libraries had more restrictions, it would be better off for everyone. Parents would not have to worry about their young children wandering around and finding something that is totally wrong for them. Older teenagers and young adults would be able to get their homework or projects accomplished without having all the distractions of the offensive materials. In conclusion, I hope you take all that I have said to heart. I hope you write an article talking about the restrictions in libraries, and how they would make everything better off. Thank you for taking the time to read this" 4 4 4 4 4 4 +4330 2 I believe that some materials in the libary should be taken off. Some people @MONTH1 find them offensive because they might have bad things in them. Some types of music have bad language in them and people dont want little kids finding them. If a little kid saw that stuff then they would learn bad things. And they would say it in front of everybody and then everybody would being saying it. Alot of books are ok to read because they dont have bad things in them. some people like reading books that have drama and some people dont. Most books re ok to read. But some can have langauge in them and ahouldnt be aloud in the libary. But they can still be in there because some people might want to read them. If people dont want to read them then they shouldnt get them. Some movies have bad stuff in there. That kind of stuff should not be in there because alot of people dont want to watch movies like that. And if a kid would walk in there and get one and if it had that stuff and the parent fount out then the libary could get sewed for having that stuff. So they should be taken out of the libary so people wont get them. The libary can keep children movies in there to watch because they are not bad. If i worked at a libary then i would take magazines out. Sports magazines would be ok to keep in there. But alot of the others ones should not be there because they have alot of bad things in there and i wouldnt let people take them so i wouldnt have them in there. But sports and stuff would be ok because sports are not bad for people to read. People like reading about sports because it is interesting to read. That is just what i thank. Other people might see it the other way and they can. People are different and they will thank different things. Some people might want to read that and some people dont. So it just shows you that people are different because they thank things different then other people do. And some libaries have that stuff and some dont. sp if you are one of those people that like that stuff then go to one of them that have that stuff. And if you are one of those people that dont then go to one that dont have that stuff so you can get what you want and they can get what they want 3 3 3 2 2 2 +4331 2 "I have seen some turely a offensive books on the sheilf of libraries. Book that make you worry about what would happen if a child @NUM1, @NUM2, or @NUM3 looked at thes books since that is where their mind absorbs the most knowledge but what if this knowledge was offensive to a race of people or a persons religion. This childern are the furter of are species. This should be censored in libraries. Tried to a imagine if they had looked at books writen @CAPS1 and other nazi members during nazi @CAPS2 rule. Mabey they looked at a book by @PERSON1 or other famours killers. If they saw photo book about the massive jew death camps in europe. Movies that show war torn battle such as @LOCATION1, @LOCATION2, world war @NUM4, or world war @NUM5. The famours movie 'The @CAPS3 @CAPS4' a movie based on the crulty of the @ORGANIZATION1 and the @CAPS5. This is my view on censorship to protect childern from the a offensive things in or on books, music, movies, magasines. Their should be censored in all things childern can get in to. Imagine the world where the was no corntal media what they could put on" 3 2 3 3 3 3 +4332 2 "The library is a public place. Everyone is allowed acces to the library. It supplies everyday people with information that they are seeking to learn about. There are so many different forms of information and entertainment offered inside libraries. Books, music, movies, etc, they all can be found there. Since they all can be found, censorship in libraries should not be allowed. Genres were created for a reason. Certain items have different forms to them. There are many forms of music. Classical, rock, and blues are some examples. Since music is categorized in such a way, there should be no need for them not to be on the shelves at a library. If a certain type of music or book is known to be offensive, then that certain genre can be avoided. There is no need to even visit a section of the library if one knows that he or she finds it offensive. In the @CAPS1 the @CAPS2 people are given many rights that are often taken for granted. The freedom of speech is one. It is a privilege that if taken away would tear @CAPS3 a part. The freedom to say what you please also includes singing. Certain music that is on the shelves at a library does have the right to be there. Just because a certain group of individuals finds the type of music offensive, does not mean everyone also thinks that way. For this reason any genre of music can sit on the shelves at a library. Another freedom given to the @CAPS2 people is the freedom of press. Anything put onto paper is legal. Criticizing the government or fantasising about school, it is all legal. Books can be offensive to many people. They can persuade one in ways that is unbelievable. Like music, books have many categories. Whatever is put inside those books is allowed to be there no matter what. Movies are located at libraries as well. They are categorized just as much as books and music. The term ' @CAPS5 judge a book by it's cover' is true sometimes. This can also be used with movies. The title of a moive or book will tell what it is about. Certain movies that are not meant to be seen by children are rated @CAPS6 or @NUM1. These ratings help censor things to a certain extent. It is not illegal for a library to have a rated @CAPS6 movie. It is illegal however to check one out to a child of a young age. Censorship should not be allowed in libraries. All types of genres of all types of entertainment can be found in libraries. From books to videogames there are ratings and generes. If someone is offended by these types of entertainment they should not visit that section of the library. It is not illegal to have certain types of music, books, movies, etc inside a library. As long as no laws are being broken, there should be no problem." 4 4 4 4 4 4 +4333 2 "Do I believe that certain materials should be removed from the shelves if they are found offensive? I do not think it should matter weather we have music, movies or magazines in the library. Some people like to come in the library to relax and look at a magazine or listen to some music. I do not think it bothers anybody by what other people are doing there, if it is not bothering them it should not bother anybody else. I see people sometimes reading a book and listening to music. it does not bother me when they do this. It is a way for them to drown out the world and enjoy a good book. There is only one reason why we should keep certain materials out of the library. It is that some people get very loud when there looking at magazines, or when there music is turned up way to loud. Other than that I do not think we should keep those types of materials in the librarys. I am a reader my self and I like to read in peace. So I like to listen to my music while I am reading. I also like to read magazines every once and awhile. It is real relaxing to me. Those are my reasons on why it should not matter weather we have those types of materials in the library" 3 3 3 3 4 3 +4334 2 "Do I think that books, movies, music or magazines should be removed from the library? No I don't I think that should be removed only because if you remove them your probably going to lose more costumer's. I'm going to be honest here, most people like to read. I know I sometimes read to study and if they got rid of the books that I read to study. How would I study? Even teachers go to the library to study or to even get books, or maybe get books for there grand kids or there kids. Parents do the samething. People don't understand that music helps everybody some point in time. I know people who listen to music to help them consentriate on different things like homework, regular work, or even being stressed out. There are alot of different ways that music helps alot of people. If people decided to feel offensive over stuff like that then something is wrong with them because after all these years there have been no complaints. Honestly i have never got movies or magazine's from the lilbrary before. People do it for there kids or grand kids, I don't really see the big deal. Its not like they are watching anything bad. They mostly have kid movies not bad ones. Why would people want to take little thing like that from little kids? In a way that makes me mad because I like little kids they don't hurt anybody." 3 3 3 4 4 4 +4335 2 "Did you know that libraries contain books, movies, music, magazines, etc.? Yes ! They have it all, if you ever need something for research or a project just go there. But if there is something that you do not like, just keep going. I do not think that the books, music, movies, magazines, etc., should be removed from the shelves if they are found offensive. I think that if it is something that offends you then you should just keep going. That 'something' that might offend you, could be helpful to others. So, now you know if you ever see something that you don't like in the library just walk away. It could be helpful to you and others. If things offend you, how would the next person learn? They won't. Don't only think about your self, think about others in the situation also." 2 3 2 3 4 3 +4336 2 "I dont believe that we should sencor or take away any thing off of out library shelves that seems either offensive or inappropriet for veiwers, but I wouldent recomend it for the kids who are not ready for that sort of material untill they are at the age of where they are ready for that sort of viewing. The reason why I say this is because that I believe and know that people sooner or later are going tho see, hear, and go through that sort of that viewing and/or experience sometime in their lives, it has happend to many people and it will continue to happen to everyone in their lives. The events that happen to many people are awful but yet are true, @CAPS1 that go around in the world should be known to other people and why, so people can know how to deal with the situation or at least know what to do, we should know how to go-by when some cerntian events go through like an example; if a cerntian person of race and is minding his own bisnuess passes a group of race appressers and they began offending him by words then he shouldent worry. Because if a person is only going to constantly use words then you should know that he/she is just a weak person just trying to get on your nervs and wont do any physical harm to you. There are many @CAPS1 that people dont like and try their best to hide it from others, but that would only make @CAPS1 worse for everybody and would lead them clueless if some people got exposed to what some people attend to hide; We shouldent hide @CAPS1 from others and keep them from not knowing what has happend or what is going on and leaving them clueless. I believe that nothing should be held back for the people who are ready to see or know what is going on, no matter how crule or painful it is, they should know what it is and how to take care of them selves when thell experience it at first hand." 3 3 3 2 2 2 +4337 2 "Censoring @CAPS1 We all know that language is the foundation of human legacy. Language is spoken to mean anything the speaker is trying to communicate. To take books from the shelves is to steal the words from the mouths of many great speakers. We have the obligation to keep the @CAPS1 that we have created alive. If something is forgotten, it is as if nothing happened. If nothing happened, it will reoccur- good or bad. To hide away words from our children is wrong. If not by word of print, word of mouth will lead them to the same discoveries as they would have come to if reading it from a book. But even more importantly, what good is hiding the truth? When many speak of tragic incidences, they speak, '@CAPS2 forget.' If we should not forget, why should the youth @CAPS2 learn? There is nothing in print that can not be conveyed in a different communication form. Our @CAPS1 is written on the pages of literature. The books we read are the property of all humanity and should be read by all to educate us of our mistakes as well as our triumphs. A commonly debated topic in the world of censorship is 'The @CAPS3 of @CAPS4 @CAPS5.' @CAPS6 is a novel that displays what life was truly like in one of @LOCATION1's most racially barbaric times. One might argue the fact that it uses an offensive 'n' word more than a few times. To @CAPS6 one might argue that @PERSON3, the @CAPS7 @CAPS8 that stood by @PERSON2 was loved by @PERSON2. A book in @CAPS6 time displaying a friendship between a black and a white man is truly a ground breaking feat. The 'n' word was common place in @CAPS6 time period- a friendship between a black man and a white man was not. Is it really important that a child knows of just another offensive word that they are bound to discover eventually anyway, or is it more important that they learn that color of skin does not change a person? Do not take the opportunity for a child to learn what really matters away. To take one book away is to take all of them away. Censoring one piece of literature opens the doors of debate for every other piece ever created. The world has seen what can happen when things get censored. During @PERSON1's dictatorship, nearly everything from the internet, to books, to newspwpers, to television programming, to movies, to music, to magazines were censored so only what the dictatorship wanted got through. The people were brainwashed, and those who were not rose up, and when they did they were shot down. Do not let the world come to that. We are better than that and our literature shows it. In other words, to censor media and the literature that surrounds us, we deprive ourselves of education and freedoms that are critical to the well being of future generations. Do not hide the free speech of authors, do not hide our @CAPS1 from our children, do not let us make the same mistake that has been made before. Let us educate our children for the future of humanity. Let our @CAPS1 not repeat itself. Let us innovate and create a new, better world. Let us allow our words to flow freely. Let us allow our legacy to live on." 5 4 5 4 4 4 +4338 2 "The Author Katherine Paterson said, 'All of us think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf that work I abhor then you also have exactly the same right and so does anyone else. And then we have no books left on the shelf for any of us.' I do believe certain materials, such as music, books, and movies shouldn't be on a childrens shelf to read, but rather on an adult shelf . I believe every author has his or her right to express ones self and to be accepted for that. We all have our own beliefs and standards that we would like others to respect even if we dont agree on there beliefs. If every book that was found offensive was taken of a shelf we would soon have no books left. The reason for that is because everyone finds certain thing offensive. Many children are intersted in certain thing and we cant hold them back from that unless it is inappropriate or goes againts family morals or valus such a religous beliefs. It would be a good thing to monater what your children are reading, wacthing and listening to. On the other hand adult shelfs will have many diffrent things that would be offensive to many diffrent people unlike childrens books. Writing is a way to show a persons expressions and what they stand for although it @MONTH1 not be pleasing to me or any other person. But what if we write a book and sombody does not like it then we wouldnt like it if they took it off the shelf. that would show direpect to a person who has thought long and hard on there work. Learn to stand proud on what you believe. Learn also to respect others as well and to let children be around safe family type of books, music and magazines" 3 3 3 3 3 3 +4339 2 Im against cencorship for good reasons. Everyone is for censor ship well im on a different perspective. if ur not old enough to get a movie or a book thats for a reason. On another note if you are then it shouldnt matter. People should have their own choice. If they want to go out and get a rated @CAPS1 movie and watch it with their kids thats their own choice. Its defantly not the person who makes the movies choice to censor cusswords and stuff out. Thats why they make edited cds so people can by them instead. People have different beliefs. and its whatever they believe in is how it should go. and if somebody else with differant beliefs dont like that then i geuss they neede ta write @NUM1 paragrapgh like im doing now. Also people want everthing cencored out. eventually theyre isn't going to be nothing to read watch or listen to. So all u people that want everything to be cencored I hope ur happy when the world has nothing to do because of you. 2 2 2 2 2 2 +4340 2 "Censorship for the future kids of america. Personally i have read some disturbing books also watched some grotesque and twisted, disturbing rated @CAPS1 movies. Not even talking about all the messed up music ive heard so far in my lifetime. What it comes down to is alot of the music today is about sex, drugs, money, and violent crimes and gangs. The movies have a rating system which helps out for little kids. Books any one can get from a public library and some are about murder, rape, gang, violence, and all the horrable reality of the devilsh deeds in the world. I personally dont have a kid but if i had a kid and he read a book that was bad or heard a dirty song with some of those lyrics and if he watched a rated @CAPS1 movie i would wanna file a complaint because thats not how i want my kid growing up. With a twisted mind and a vocabulary of a little punk with curse words every ten seconds coming out his mouth. Also i would'nt want my kid kissing his mom with that kind of stuff coming out his mouth. But the @ORGANIZATION1 needs to keep all that stuff away from kids until there old enough to go get it on there own like they need to be @NUM1 to go see a rated @CAPS1 movie. That is how it should have always been." 3 3 3 3 3 3 +4341 2 "'' I feel that materials, such as book,music, movies, magazines, etc., should not be removed from the shelves if they are found offensive. Some @CAPS1 like offensive things that they have in the library. Some @CAPS1 would sometimes want to know about certain things that is offensive.Most @CAPS1 could be offensive to alot of different things.Different @CAPS1 have different things that are offensive.What might be offensive to you probably not offensive to me.'' @CAPS1 that dont like offensive things just shouldnt check it out and @CAPS1 that like offensive things jus could check it out.I feel that they just shouldnt be removed just because @CAPS1 dont like offensive things they just shouldnt check it out.You just cant removed things that are offensive just because some @CAPS1 dont like offensive things. Everyone do have their own right but some @CAPS1 like offended things. I read a book that was offended to me, but it told me how to react to the situation and how to overcome my situation. So some things @MONTH1 offend you, but some things you just have to read about it more because some things tell you how to overcome that situation or it will tell you what to do about the situation you had been offended by.Thats why I feel that you shouldnt remove offensive books." 3 3 3 3 3 3 +4342 2 "Moving @CAPS1 The @CAPS2 @CAPS3 In @CAPS4! When you enter a library or a book store of course you will find @CAPS3 that you like and dislike. You're opinion @MONTH1 not be the same as someone else. Sometime you can feel a little bit uncomfortable with the situation and the way thing are going. People have diffrernt looks about different @CAPS3 in this way of @CAPS4. You are going to come across good @CAPS3, bad thing, happy @CAPS3, sad @CAPS3, @CAPS3 you agree about, and @CAPS3 you disagree about. I believe that books, music, movies, magazines, or anything else should not be removed if they are found offensive to anybody. The reason I state that is because if any of those items offened one person they might not be offensive to another. Different people have different intrest in many different @CAPS3. So therefore it should not be any reason that the materials should be removed from the shelves. Especially if they are not hurting anything or anyone physically. Speaking from personal experience there were many times i felt offened about certain @CAPS3. I feel that abortions can come off a bit harmful to a @CAPS4 that has not been born yet. Killing a child that has not experince the thing you have is not right. But some sometime the way i can feel can be alot different to other people. So who am I to tell another person what they can and can not do. That comes with voicing your own opinion. You can not change the way another person is thinking or feeling. If you find a book or anything like that hard to deal with it is crazy. Think about the @CAPS2 situation that you might come across and can be offensive to you. It will be alot of times you will disagree or have an opinion but can not change or do anything about it. @CAPS3 will be much easier and less @CAPS2 if we sometimes deal with the difficullt @CAPS3 in @CAPS4" 4 4 4 3 3 3 +4343 2 No they should not have the cd's books and etc off the store shleves. they should leave them on the shelve si think. they should olny remove the old video games. and books and music. every other 1 1 1 1 1 1 +4344 2 "In many @CAPS1 libraries across the nation, a numerous amount of: books, magazines, movies and music aren't provided because they are found offensive. I do not believe this should happen because everybody is unique and @MONTH1 find different types of work offensive. Who is it that chooses these items to be taken out of libraries and why should they be the only ones to say what goes and what stays? Everybody is different in their own way and everyone has their own interests and opinions. Some people are athletic, gothic, preppy and nerdy. The library is open to anybody that wishes to enter. What happens if the people that choose what content is provided in the library, doesn't like scary books, so they take all of the scary books out? What if their is a person that only reads scary books? What then will they have to read? I bet if that person had the ability to choose what stays and what goes in the library, they would only have horror in the library. I do not believe that anybody should have the right to censor what content is provided in @CAPS1 libraries. Everyone has their own opinion and interests so they should have everything open in libraries. There is a reason that @CAPS1 libraries are called @CAPS1. That means that it is open to anyone and everyone. There should be all kinds of different genres to read and all sorts of movies to choose from. Just because one person doesn't like a certain kind of genre, or doesn't find it appropriate for a certain viewing audience, does not mean that they can take it out of a @CAPS1 library. That would be why there is such thing as sections in libraries. If you don't find a certain type of book appropriate, place it in the '@CAPS2 @CAPS3' section of your library. For example: @PERSON1, he is a very popular author to many different viewing audiences. His ideas are very different than most. He writes horror but displays gore and a lot of sexual content in his writing. It is his own writing style. If the people that choose what is in the libraries, don't find that appropriate or if they find it offensive, they should put it in the '@CAPS2 @CAPS3' sections or even the '@CAPS3' section. It should be up to the childrens' parents what their kid is reading; not the library itself. I do not believe that anyone should choose what is and isn't provided in libraries. Everybody is unique, different and have their own opinions on different things and ideas. If you remove a specific type of book, movie, magazine or music from a library, and it's the only kind a certain person reads, what then will they have to read? What if somebody took out the kind that only you like to read? What then will you do? If everybody had the choice and right to do this, I don't think that anything will be left in libraries. All genres of everything should be available to the @CAPS1. If you don't find a book appropriate, place it in the @CAPS2 @CAPS3 section of your library to still have it open to anybody. That would just be a big @CAPS9 to anybody who decides to pick it up and read it. You need to think of everybody, not just yourself." 4 4 4 3 3 3 +4345 2 "Should books, magazines ect... really be censored, taken off a shelf in a library, just because you might find them offensive? Some of you who are reading this would say yes, but why? What would be the reason behind it? So to answer the first question I asked, my answer would have to be no, because a library is a public place for all ages, and each area is labeled or should be labeled the genre of book, magazine, ect.. it is. I myself read almost just about everything I can get my hands on, and for some people its the same way. Yes, I understand that if it is offensive to you that you probably would feel they should censor it, but what about those that it isn't offensive to? What would you say to them? How would you explain why it was offensive? Most of all how would you react if they held it against you? If it was because of one person or a small group of people that one of my favorite books or series was censored, in all honesty I would be pretty ticked. Books are for everyone to read, they shouldn't not be able to read the books they love because they have been taken off the shelf. I think that if a person really doesn't like the book and finds it offensive should then just ignore it, and move on to find another book, they shouldn't have looked at it in the first place. Books will be offensive to some one some how, usually a book is written to target a certain group of people, for instance what if someone found the romance novels a lot of people love, offensive? What if that was all the person read? Well, the people who only read romance novels wouldn't have a book to read because, someone had them censored and taken off the shelves. Books have been written, to help teach, get away from the real world, create a place to go for a person with an imagination, give someone hope, mystery, excitement. Books aren't something that should be taken off a library shelf, they are a bit of something for some one who just loves to read. Yes, there would be books you don't want your kids, grandkids, nieces and nephews to read, but that can't be helped, you can't censor every book that you don't want them to read or find offensive for them. If you did there wouldn't be a single book on a library shelf. So for those of you who have read this, think about it, when you pick up a book and find it offensive do you want to make someone else upset because you had it taken off the shelf? You never know when that might happen to you, think about it before you go and tried to do that to a book." 4 4 4 4 4 4 +4346 2 "I don't believe that any certain materials, such as books, music, movies, magazines, etc; Should be removed from the libraries shelves, because any thing can be offensive. What if someone needed to resourch about the @NUM1? Well they really won't be able to, if all the books about @NUM1 were taken off the shelves, only bacause someone found it offensive. Now days, everything is offensive to somebody. For this, people need to understand that it is what it is, and if you were not appart of that problem, then what do you need to worry about. This day and age is evil all around the world. There are going to be things happening that are going to make people feel a little offensive. Just like all the earthquakes around the world, I know that there is some people offensive about that, but what if somebody was in college, and they wanted to learn more about what happened, so maybe they can get a group of people, and make there lives better. People are hurting and I understand that, but us people are not here to judge, we are here to help the poor, and the sick, get by with what they have, and just help them see that there is a way out. With all this said I don't believe that we should remove the books, music, movies, and magazines off the shelves in libraries." 3 3 3 3 3 3 +4347 2 "When i go to the library, most of the time, I'm doing research on a specific topic. The information I want, is the facts that really happened, or took place. This would not be possible if they censored all the material the offended somebody. Leaving libraries uncensored gives us the full effect of what we're reading, or researching. It is important for readers and researches, to connect and take in all the information they read. That is what keeps us interested in what we are doing. Authors write the things they write, for a reason. Taking there hard work off the shelves, because some little thing offends someone, is not fair to them. Besides, either way, someone is getting offended, because the auther is goin to get offended, for taking his hard work off the shelves. As you @MONTH1 tell, i am against censoring our libraries. The way i see it, is that if something offends you, then dont look at it" 3 3 3 3 3 3 +4348 2 "I disagree with library censorship. Every person should be allowed to produce their reflection of their believes or ideas. If certian books found offensive were to be removed from libraries then there would be nothing left for anyone to read. If parents are concerned with what their children are checking out from the library to read then they should read it before their child to see if they think it is appropriate. In my opinion children should be able to read what ever they like and by doing that they can teach themselves many things. Books can also help children to escape from every day life.Admitedly, children should not always escape, or use reading to hide from real life, but occasionaly they need too. I know as a young child when things were not going so well I could always turn to reading to get my mind off of the bad things. If children are allowed these escapes they can do better on their school work and with their peers. Reading can help a child to expand their imaginations. If a child reads a couple times a day it is proven that said child will do better in life. No one likes boring people, and how can you be boring with such a wide imagination? It is impossible! In recent online polls, parents who's children can access books say that their children to better in school and in every day life. By reading, these children can easily expand their vocabularies. With this knowlege they can learn with less difficulty and can excell in acedemics with ease. In conclusion, If certian books are censored from the libraries they will be inavailable for children to read. Children need books to provide an escape, to expand their imaginations, and to help them in school and life. Do not let libraries censor books!" 3 4 3 4 4 4 +4349 2 "Some materials in libraries @MONTH1 have information that is offensive towards others. But should they be removed if they are found offensive? Some people believe that they should be removed depending on how bad the offense is. But materials @MONTH1 be removed if it is sexual, racist, or life threatening offense. Some material @MONTH1 have offensive comments that is sexual. If its an offense that is sensored and the author or artist of the material went too far, then that @MONTH1 be a good reason for the material to be removed. It @MONTH1 make the person feel emotions that bring them down. It @MONTH1 also make the person feel violated and offended. There @MONTH1 be material that has racist comments. Racism is one of the biggest conflicts in the world today. It is something that starts fights and arguements. It also causes individuals to feel bad about themselves. Racism can cause people to feel very hurt also. So if there is too much racism in a material, then that should be removed. There are some material that @MONTH1 have offense that seems life threatening. Say that it is a book about the whole nation and the author slips in something that @MONTH1 seem like the nation would be in danger, someone @MONTH1 feel offended and want that material removed. Material with too much threat in it @MONTH1 make one feel like their life is in danger or like something bad is going to happen. They would feel a life threatening offense and want it to be removed from the shelves. So should offensive materials be removed from the shelves? Yes they should. If they were to be found sexually, life threatening offense or had racist comments, they should be removed so individuals won't feel these offenses are life threatening, hurtful, or cause negative emotions" 3 3 3 4 4 4 +4350 2 "Taking 'offensive' books from the shelves of libraries is like taking away the right of speech. There is not a point to it. People in this country have the right of speech. Along with that comes the right to have your voice be heard. An author's opinions @MONTH1 be offensive to some but does that mean he or she should not have a voice? Writers get their ideas from somewhere society plays a huge role in what ideas these authors conjer up, taking these books away will not change the way people think and feel, and most importantly citizens of the @LOCATION1 have the right to make their own choices; that being if you don't like a book don't check it out. Writers @MONTH1 state things that to some degree @MONTH1 offend one in a million people. Others see it as freedom of speech and writing. An author who writes a story that involves sex is not trying to extend their writing and thoughts to second graders. But if a person has a problem with the way the author sees the world walking out their front door will show that same thing. Some books @MONTH1 be fictional but that does not mean they don't get ideas from somewhere else. Society plays a big part in the ideas and thoughts of most writers. So when they write a book that has 'inappropriate' actions in it they got it from the way people truly are in the world. Banning a book from the library that has a sex scene or provacitive language does not --by any means-- make the world stop having sex and saying curse words. Kids are learning this through hearing their parents swear or their peers in class talking about sex. Reading a book about it will not change the fact that they are still learning about it in many other ways. If the books that swear were no longer on library shelves society still will not change. There is no perfect society. Setting a book on a shelf with offensive language does not cause harm to anyone. If an idividual doesn't like the way an author expresses themselves through their writing that person should not check that author's books out from the library. No single person is forced to read a book they are offended by. Getting rid of a book because of an unhappy parent does nothing but waste paper and intelligence. The library is not liable for the feelings of the readers. If the reader does not like the book they are able to close it. No one has glued their fingers to it. Many people in today's world would agree that banning books from our public libraries will not have as much of an effect as some would like it to. Banning books is an unknowledgeable thing to do to keep your kids from learning bad things. Society shows that the writers are getting their ideas from somewhere, taking these books away will not take away the way people think and behave, and if some one does not like a book they should not read it" 4 4 4 4 4 4 +4351 2 "One could understand why some would wish to censor libraries and remove all rude, unwanted, or offensive forms of media from thier shelves. However, one must take into account that, as Katherine Paterson said, if one person has 'the right to remove that [a] book from the shelf...then you have exactly the same right and so does everyone else.' With that thought in mind, do we honestly think that censorship of libraries is a smart idea? If everyone was able to pick and choose which books to be taken off the shelf or which music to ban, then we would have nothing left. You simply cannot please everyone. Are there benefits? Of course there are benefits. One certainly wouldn't want one's child exposed to certain material at a young age. But one must not censor libraries! If one wishes, as a responsible parent, that their child keep away from a particular book or movie, they should take that matter into their own hands and not condemn the book off the shelf. By condemning the book, one condemns the author. As an @CAPS1, one has the freedom of speech, and this applies to media as well. The author has the right to author a book that some @MONTH1 view as offensive, and no one has the right to remove his or her right from the standing. Paper burns at @NUM1 degrees @CAPS2. In the classic novel by @PERSON2, @CAPS2 @NUM1, the protagonist struggles through life in a world antagonized by the banning and burning of books. The story takes place in the future, however, it contains an interesting undertone that hints at the possiblity that this 'future' @MONTH1 be nearer than first imagined. To be blunt, the protagonist's life is horrible, he lives in a world that bans books, yet he is quite the bibliophile. He is employed as a fireman, not to clear fires, but to create them. @PERSON2's firemen are responsible for the delicate task of book burning, which is a rather frequent occurance. However, with the main character's love for literature, how can he burn books? Throughout the novel, the character tries to come to terms with himself and attempts to put an end to the madness, only to be forced out of civilized society. The book is freightening, but an amazing read: it emphasizes the dire reality of censorship. It's everywhere. Now, one certainly doesn't need to worry about @PERSON2's futuristic hell, coming to life any time soon. But one should know the dangers of censorship. No one person has the right to remove a book from the shelves that they feel is offensive, let alone ban it entirely. The banning of books, is a banning of freedom. Freedom of speech, freedom of ideas, freedom of thought. Another disutopian world that comes to mind is the world of @ORGANIZATION1's @DATE1. Though, granted, our society is certainly not headed for that any time soon, if ever: it is still a valid point. Once some freedoms are removed, others will follow. Libraries should remain entirely intact, forever. Every person, every man, woman and child should have ample access to knowlede. Whether this knowledge be gained through books, magazines, movies or music, it needs to be readily avaliable. Instead of banning certain media, one should label said media with a warning. Parents should have enough sense to pay attention and thus, the problem is solved. Censorship is wrong, censorship is unnessesary, and there are a plethora of alternative means for protection against pottentially 'offensive' media. Thus, the case can rest with the knowledge that all forms of media need to availiable, no matter what the content" 5 5 5 4 4 4 +4352 2 "There are many books out there that parents would not want there children reading. Some books have violence and crimes, others have love and romance. But it is not the best idea to use censorship in libraries. There are many books out there that might not be good for children to read, but it might help them make better choices in real life. Also, we can not forget about freedom of the press. With freedom of the press anyone can write about anything they want. They can write about the good, the bad, violence, crimes, love, and romance. Everyone has there own way of writing and there own imagination. Without imagination what fiction would there be for children to read. There would be nothing to write about without imagination. With censorship, there would not be any books on the library shelves for children to read. If the libraries were to censor the books on the shelves there would not be any books to read because every book has something to censor. Wethear it is swearing, guns, killing, romance, or love. There is something in every book that in innapproperate for children to read. If the libraries were to censor the books on the shelves there would nothing left to read, and the intelligence of children would drop dramatically. Children read for many reasons, like to expand there minds and to enter a world where the book takes place. But what children might not know is that reading also strengthens there vocabulary. When children read they learn many new words that are in that book. While they are reading the book opens there mind to much more then what they are used to and normally around everyday. When they are reading the children expand the minds and also helps them with everyday situations. This is why I do not believe that censorship in libraries is not a great idea. If libraries censorship books and everything else on the shelves there would be nothing left for children at the libraries. They would be stuck reading books where they do not learn anything. They would read the same books over and over, they wouldnt learn anything new. There wouldnt be anything the could expand there minds with. That is something we certinly do not want for our community or anywhere for that matter" 4 4 4 3 3 3 +4353 2 the scary book that you dont want your children to pick up off the shelf i think if your kids read it they would be scared having night mares and you probaly dont want that and if u have the right to move it your kids will have the right to move it because they see what you do they gonna wunt to do so u can do it when they are not around and yea i believe that cetrtain materials. 2 2 2 1 1 1 +4354 2 "Have you ever picked up a piece of material while in a library and it offended you? Would you want your children reading, watching, or hearing stuff that was offensive towards them? I don't think no parent wants that. Think about it, how do children have access to things like that? Is it all around or do children go and find it? Not every single child in @LOCATION1 is going to be protected from bad materials. Most of the time after school, children stay in the house and do stuff instead of going outside. Inside of their house they have access to televison, computers, and music. They think why go outside when I have all this stuff inside? Truth be told children hear so much harmful things from everywhere and anywhere. Nothing is censored like it was back in the day. Now a days nobody cares if materials are offensive, just as long as they sell. That's not the way it suppose to be at all, everybody should want best for the children and young teens. People wonder why their is violence, bad attitudes, crimes, etc., because all the stuff we have access to. Schools could help prevent this probelm by removing offensive materials off the shelves in the libraries. It's sad that type of material is available in a school, but thats how the generation is today. In a library only certain things should be done. Reading, using computers, working at a table. Children shouldn't be able to get on a computer and play games, or listen to music with bad words in it, or prehaps pick up a dirty magazine. Library should be a place for learning, doing work, and reading. If their is less offensive materials in a school enviorment that's one step into fixing this problem. Censorship is much needed everywhere, it would help out a lot" 3 3 3 3 4 3 +4355 2 "The common phrase 'knowledge is power' accurately paints the situation at hand. Through censorship in libraries, which are meant to allow free access to all media-related materials, we take away the opportunity for people to empower themselves through knowledge. The reasons for not censoring media in libraries are numerous and include, but are not limited to, unconstitutionality of censorship, the lack of proper definition for 'offensive', and the contradiction censorship poses to the core of what a library is. The first, and most blatant, reason for not allowing the censorship of materials in libraries is the unconstitutionality of the matter. Freedom of speech and freedom of press are both protected by the constitution upon which our country was founded. Censorship of said materials will effectively undermine both of these rights. Authors, illustrators, journalists and the slew of other individuals who compose the materials available in libraries are exercising their right to free speech through their works. They are constitutionally protected in the things they say. Notice that @CAPS1 have a right to free speech and not a right to free speech so long as no one is offended. The freedom of press is the means by which they share their ideas and concepts with the world. They are utilizing their free speech by means of press. Censoring library materials would be limiting the means by which artists can share their ideas with citizens of the @LOCATION1. This would be a clear failure to uphold the rights of the citizens. For this reason, we cannot censor libraries. The constitutional concept of equality of man plays into the situation as well. There is no adequate legal definition of 'offend'. People could be offended by something as serious as a personal attack on their beliefs and personal entity or something as light as a personal distaste for certain mindsets and ideas. So, because all men are equal, we would have to respect the 'offense' taken by all people and to all degrees. This leaves every single work of art, whether it be a book, movie, magazine or any other form provided by libraries, open to the fickle definition of offensive and vulnerable to the personal feelings of every individual. If said offense taken by individuals to works is able to mark a work as 'offensive' and thus make it open to removal from libraries, we are effectively allowing citizens to undermine the rights of other citizens. This is something that cannot be allowed in our libraries. The final core issue is the essence of censorship versus the essence of a library. Censorship is meant to create a politically correct and non-offensive environment through the limitation of exposure to materials. Libraries, however, are meant to allow public access to works that stretch and challenge knowledge, beliefs, notions and all ideas held by people through the works of others. Censorship cannot be implemented without a clash with the essence of a library's purpose. If censorship were to be enacted, a library could not provide new information if someone else did not like what was being taught. A library could not provide works that challenge and stretch individual beliefs if someone was offended by the means by which the stretching occurred. Pre-conceived notions could not be defeated with the presence of factual knowledge if someone did not like the truth. In all of these ways, and many more, a library's core ideals and purpose could not be upheld with the induction of a system of censorship. All in all, we can see that censorship could only hope to destroy the system libraries abide by. The constitutional rights of citizens would be infringed upon, the fickle nature of humans and the lack of definition for 'offensive' would allow people to undermine the rights of others, and the essence of what a library really is would be ravaged. We cannot, as @CAPS1 with rights, employ a system of censorship" 6 5 6 4 4 4 +4356 2 I thimk kids should be abole to read what they wont. Kids should never get told no when it omes to lurning. Plus there is not a bad book that your kids will find at school any way. Why should kids not babull to watch and read what they wont. This is how we lurn and grow. Un less it was of adult kontent. Witch would be agest the law for them to get. haha Our kids minds are not something we should wast on things that they dont wont to read any way. When a kids starts to hate his or her work. It starts a loug chain of hateing school and the books inside it 2 2 2 1 1 1 +4357 2 "I don't think that certain materials in books, music, movies, and magazines should be removed from shelves because I think that everyone has the right to say what they want to say, but I do think some things in books, movies, and music that might be appropriate for a high school student aren't appropriate for an elementary school student. Some things can be really offensive to elementary school students but not so much to high school students, it would just depend on what they are reading, watching, and hearing. I've never experienced anything offensive in what i've read in any book before but I have experienced some in music i've heard. I didn't say really anything about it I just thought someone shouldn't have written this certain song that I was listening to and I didn't think it would really be that bad. It's mostly in rap music that i've heard that's really offensive and I think shouldn't have been even written. But I still think everyone has a right to say what it is that they are wanting to say" 3 2 3 3 3 3 +4358 2 "We all have our favorite books and some we like others @MONTH1 not. Have you ever walked into the library in hope of finding your all time favorite book that you nearly forgot about, or maby a book a friend recomended to you? What happens when you get there and the book has been censored? Most books we see in our public or school libraries are are bookes that are well liked or are favorites of many. Books open a new world to everyone and should not be taken away. To begin, I will explain some problems in our libraries. Some people believe the books and magazines in our libraries should be censored and removed from the shelves because it could be offensive to some people because of racial shurs or comments. This is a big problem because most books written years ago took place long ago like @PERSON1 for example, @MONTH1 be considered offensive but, this book gives a glimpse of what was going on in this time period and without it some people would never know what happened and we couldn't learn from those mistakes and make better choices in the future. Some books that are censored have great educational value. Everyone has there prefrence on books and what some say should be taken away because of what they think others @MONTH1 not. If all books that are bad or offencive were taken off the shelves then eventually we would have no books left. We have the right to read any book out there no matter how horrendus it @MONTH1 be, besides you can go to church and read worse things that are being censored out of our libraries. If we couldn't read some books like many classics it would take educational value away from us all. Think about all the books we have read and learned from that have the possibility of being censored. Before someone gets into a book they should read the informational part on the back to see what it is about before they start to read something not suited for them. I believe that no book should be censored and should have the freedom to sit on a shelf and be read by anyone who wants to read it. Being censored is not protecting anyone it only makes things worse. If someone feels offended then they shouldn't read it, it's their choice to pick it up or not. Hopefully I have persuaded you that no book should be censored and everyone has the right to read what they want" 4 4 4 3 3 3 +4359 2 "Killings, murders, and homosexual books can all be offensive to one person or another, but that doesn't mean they should be taken away. That is like saying I get offened by homework, take it out of @ORGANIZATION2. Some of the most interesting books to read are about murders, I think. I belive they shouldn't be taken out or else no teenage kids would read in @ORGANIZATION1. Teenages like to have mystery and romance. I know that one of my favorite books, The @CAPS1 @CAPS2, would offend some people because it has murder in it. That certainly doesn't mean it was not a good and interesting book for me. They can just over look these books and pick another. If you want to keep your @ORGANIZATION2 @ORGANIZATION2 students interested you shouldn't take out book that might offend someone. By taking out some books not everyone would be happy. Some kids might not even read any more because you took the best books out of the library. Every book in one way or another would offend someone. They just need to overlook those books and read a diffrent one. I have seen some books at my @ORGANIZATION2 that offended me, but i did not tell the libraian to take it out of the @ORGANIZATION2. Another student might have loved to read that book. Everyone has diffrent oppions so there would not be any books left if they took out all the offensive ones. The only books that would be left would be @PERSON1 the @CAPS3 and children books. I do not know of any @ORGANIZATION2 @ORGANIZATION2 student that would want to read @PERSON1 the @CAPS3 and give a speech about it in class. I'm not sure how the teachers could do book reports any more; all the books we read in class could offend someone. If everything that offened someone was taken out of the schoolt there would be nothing left of the @ORGANIZATION2. See everyone has a diffrent oppion on everything. That just isn't right. In conclusion, books that offend someone shouldn't be taken out of schools and librarys. They keep the @ORGANIZATION2 students reading and growing. With out some of these books I myself wouln't like reading. So lets be mature aldults and keep all the books on the shelves and ignore the books that offend us" 3 4 3 3 3 3 +4360 2 "Censoring any type of media such as books, magazines, movies, or music from a library is not right. A library is huge amount information put common places for people to seek out knowledge.When something is found offensive, you should not hide it a away as though it was never there. If any media is offensive, it should be the person who is looking up the information to choose if he/she wants to use it.When someone for example a child has something offensive, the first thought is to take it away from the library or television.Instead, just explain what it is there looking at and they will eventually understand the reason it is offensive, but how does someone know what is offensive or not?Just because something is found offensive by one or two people does not make it right to just take it away. It should be talked about or discused by groups of people on the subject then decided whether or not it should be taken off the shelves for being offensive.If there is a book or magazine on the shelve and it might be offensive it should a decision made by the people surrounding that type information to take it off the shelve and not to be hidden away." 3 3 3 3 3 3 +4361 2 "Are offensive materials offensive to everybody? Does everyone think the same material is offensive? Who is to say what is or is not offensive? Offensive material can be anything someone wants to think of. Children are going to see this material anyways, weither we take it away of not. Offensive material, such as cursing or rage, is a form of expression and of releaving stress. Such things can also show anger, hate, and depression. Children will see and hear offensive things anyways. Even as it is now, parents try to hid such things from their children. this makes them curious. They will do anything to understand it. Offensive things are part of everyday life. The more you hid it, the more children will seek it out. In movies, books, and music, this is a form of expression. it releaves stress, rage, and shows this so that @CAPS1 is a true picture of what is going on. People cannot imagion someone truly angery in a book when it says, '... and she says with grief and anger, 'You are wrong! You don't know what you have done!'...' You cannot show foreshadowing, or show the anger. You cannot see how a character truly feels. For example, '... and she says with grief and anger, 'You are wrong! You will parish! You don't know what you have done! Death will come!'...' @CAPS1, you have an idea of how the author will play out the story and how the character really feels. You can see the foreshadowing. The author could be saying that a good man has died, who was going to stop evil, or an evil man died, and people will revenge him. In such ways, this can show anger. Some people would find the example offensive or out of line. Cursing to me is not offensive. But, they show how the character, writer, or singer feels when it was written without it having to state it. Offensive material can also grief. This shows that someone is hurt by what has happened, amplifying the story. allowing the reader, watcher, or listener to expect more and want more. So the reader, watcher or listener would wait for more, and by the music, book, or movie. It puts intrest into the material. Only certain people can agree on something offensive. Such as family, friends, or a group of close people. But, it applies foreshadowing, intrest, anger, grief, and sometimes, passion. Your children will see it if they truly want to. So, why get rid of something that they will see anyways? Something that intersts them and makes them want to read more, watch or make movies, or listen to or make music. Why would something that, yes, is offensive to some, but would grab promote and keep some within it" 4 4 4 3 3 3 +4362 2 "Do you think that something should be taken off the book shelf just it affended someone or you disliked it? I dont just cause you dont like something or you dont approve of the reading material dosent mean it should be taken away. If it was like that @DATE1 than there wouldnt be any reading material or books or magazines. In my opinion if affends you in some way or another than dont read it. Plane and simple. Because im sure that theres thosands of books, magazines, news papers. ect, thats affends alot of people everyday. I dont mean to be harsh in any way, thats just the way I feel. This is only my opinion.that how I feel about this situation." 2 2 2 2 2 2 +4363 2 "have you ever think about why teenagers are changing each day? sometimes parents don't pay attention why is that happening, because they think their kids are wroging up or because they need more freedom or even because they need more time. when the time pass they stop and think what happend to my kids why are they changing to much? but they don't know why we bahave like that. you have ti stop that, because we are changing because of what we see on magazines, movies, and books, and also music; sometimes music have offensive words that we learn. but also music, books,magazines, and movies are good, but when they don't have offensive words or bad things in it. sometimes they affect us in a good way but the majory of the time they affect us in a bad way because we learn bad things. sometimes little kids read books whit bad and offensive words. i remember when my friend and I were @NUM1 years old she started reading books with offensive words, and her mom got mad at her. after that she started insulting her mom and calling her names and her mom was feeling bad, but she didn't know why her doughter was acting bad. the next day i went to their house and i told her mom that she was reading bad books and watching movies with offensive words, and i told her mom where she was hiding all thoes books and movies. when she got home i was there and her mom had all the books and movies on her hand and she give me a bad look and she told me that i was a bad friend because i told her mom, i started crying becuase she make me feel bad but she didn't know that i was doing it for her on good. before i move to the @LOCATION1 she went to my home and she said 'I am sorry because i treated you like that', and i told her that i did it because i loved her and because she was like my sister since we were little. we started crying; now we still best friends. this days, little kids now everything and it is because of what they watch and see. you can help us by taking all of the bad words and offensive words of the books, movies, and magazines. help us to became someone important in life." 3 3 3 2 2 2 +4364 2 Ok some books can be really offensive and some magazines can be bad like this one sports magazine i read talked about some atheletes and their accidents. like one article was talking about @PERSON1 playing basket ball and he had the stomach flu and he was having a hard time playing cause he had to use the bathroom alot.'I mean who would want to let the world know that they used the bathroom on themselves'. thats bad! And another thing why do libraries have books that have sexual things in them. Theres quiet a few books that are like that for an example theirs this book called 'wake' and its about a girl who gets pulled into other peoples dreams like there was this girl who had a dream and it was sexual i thought wow why is this book in here. It also had alot of cursing in it i enjoyed it but i think it should be removed from the librarie. Cause theres kids that arent of age so they should'nt read them. i dont know thats all i have to say right now other then look at what your kids read theses days you might get upset 2 2 2 2 2 2 +4365 2 "Katherine stated that if everyone had the right to take a book off the shelf then there wouldn't be any books left. I think what she is saying is that many people think of a book that is innappropriate, but in another persons eye the book could also be appropriate. Censorship is a big deal no-a-days. Nobody wants there young children to read about drugs and/or violence. I have many opinions upon this issue. First I will state why I think the books, or movies, or whatever should be taken off the shelf. The books, movies, magazines, ect. should be taken off the shelf for being to innappropriate. The books and movies are innappropriate by having drugs, sex, violence, and many other things in them that young children shouldn't be subject to watching or reading. I know if I was a parent I would not want my young child reading of a violent murder, or gangs. The other thing about censorship that it is the peoples choice to read an innappropriate book, or watch an innappropriate movie. As a kid myself that is growing up, I didn't really care for reading anyways, but the books that were the best sometimes were the ones with violence in them. Also even thought the book @MONTH1 be innappropriate, the child still should have a say in what they are reading. This is where my next thought comes in. You have to think about the kids that are mature too. The kids that are mature, and it is just a hobby to read, @MONTH1 not have any books of their style left to read if they were all 'taken of the shelf'. This goes for parents too. If they have a book at their house, the child could easily pick it up and read it there. What the book stores, libraries, and movie stores should do, is put an age limit on the books and movies. I know that for @CAPS1 rated movies there is an age limit, but for explicit books i do not think there is an age limit. They could also maybe even get a letter or a note with parent concent on it, so the children could get the book or magazine. Maybe the parent should even just come in and get the book or movie for the child. The libraries, or book stores, or movie stores could also easily put a warning on the side of the cover to show that the book @MONTH1 be innappropriate to some. What the children read is only up to two people: the child and the parent. If the parent doesn't care that the child is reading or watching an innappropriate movie then it should be no problem. Therefore, I think in order to withhold the buying and selling of books, there has to be the option to obtain the innappropriate ones. I feel that even though the material @MONTH1 be explicit, the kids, with their parent's concent, should have the option to check out or buy mostly anything. Afterall, the book @MONTH1 be about violence, drugs, or sex, but the children are still reading which is always good" 4 4 4 4 4 4 +4366 2 "I do agree with this topic at hand, some of the material that is being displayed on the shelves at our local library is inappropite or sometimes valgar. Way too @MONTH1 people get away with way too many things in this day and age. Our society we live in is just a total wreck and complete, utter disaster. Something has to be done to put an end to this madness. Someone would think that if a librarian put an inappropite book up on the self, that @CAPS1 is inevitable that a child or someone irresponsible would find the book. Yet we still witness children reading or looking at a book, type of media, or entainment that is not suitable for their age group. Sometimes adults find books that are not pleasing, why would we put them on a self to be publicly displayed? That is a question that I have yet to find the solution to. I got home from school a couple of days ago and I heard this hip-hop music comming from my nine year old sister's room. I started to listen to the lyrics and they were absolutley awful, @CAPS1 was singing about drugs, sex, and alcohol. I went in her room and turned @CAPS1 off and questioned her where she got the @ORGANIZATION1 from. She replied 'the library.' That's just another example of what I'm speaking about. If someone at the age of nine can check out a @CAPS2.D. like that, then imagine what is avalible to me at the age of sixteen. Adolessence do not need those kinds of thoughts and words in their vocabulary. I'm just afraid for the next generation; what are they going to be listening to? What are they going to be reading? And @CAPS1's not just the library, @CAPS1's everywhere! We can't even live a day of our lives in this society with out hearing something bad on the radio, on tv, or even in public. Everywhere we turn is something bad or valgar. So we need to think about ourselves and our children and try to clean up our acts a little bit. We need to stand up for what's appropite and what's right" 4 4 4 3 4 3 +4367 2 "I don't believe that we should romove any books, music, movies, magazines, etc. from our libraries due to many reasons. This is the real world and the things you read about or watch in a movie @MONTH1 be something you don't want your kids to read about or even see. Life is about learnig new things. To learn about these ideas, you usually read about or see them somewhere. The only way I would ever remove any of these items from a store is if they were going to seriously harm the people or have a negative effect on them. If I were to walk into a public library and I saw a book about a girl cutting herself or someone killing another person, I would be the type of person to turn away from it; even thought it is what many kids are reading about today. Of coarse, every library has books that cover all kinds of topics. If you were a parent that was worried about your child reading about these kinds of things, well welcome to life. Most books have a true story behind them and I believe that everyone needs to learn about this kind of stuff sometime in their life. Most of what we learn today comes from the books we read. Also, everyone today listens to music. We find music as a way to relax and have a good time wheather your riding in a car or at a party. Many of the songs today contain foul language and have sexual meanings, but that doesn't mean that you have to listen to them. Many older people don't want to listen to these kinds of songs but it is what many kids are listening to today. What many people don't see though, is that these songs have true meaning behind them and it is really a way of life. Finally, I believe that magazines, movies, and any other types of media, shouldn't be removed from libraries. Many people turn to magazines as a way to relax and read about the latest fashions or their favorite athlete. We watch movie to also relax and have a good laugh every once in a while. No one should remove these sources of entertainment from our people even if some @MONTH1 think they are inappropriate. I strongly believe that romoving any books, magazines, movies, music, or any other typed of media would have a negative effect on alot of people. You would be removing sources of entertainment and ways of learning from people. How would you feel if you went to your local library one day and most, if not all, materials had been removed? What would you do if you didn't have any of these materials available to you anymore" 4 4 4 4 4 4 +4368 2 I believe that the book that none of us read. It should not be on the shelf of any book store i think if the grow up does read it no child should have the right to. Also some of the music that is on shelf should be remove from all store. Children under the age of @NUM1 shouldnt have any way to get some of this rated r music centrain music shouldnt be on shelfs for little kids to get a hold to. So now lets get to the movies that are playing in some of these shows. No child under @NUM1 should be able to see half of the things that are showing and movies because no child should be expose to such things that grow up are most likely expose to. That is another way that young children are doing half of the things that they doing the peoples that make certain movies need to think about the children how they would act toward the ones they make. Most magazines that are being sold today is giving children the wrong idea. When magazine are fill with alot of he say she say things the kids in the world do nothing but think its foreal or ok to do that is spent off the wrong message to the young children. And i know you are thinking to yourself like how is that true well kids these days listen to what ever they think is right and half of these magazines make things sound so real. 3 3 3 3 3 3 +4369 2 I tenik people us book from the mexcio that work you have book right when you hope our people right good is to inporto. I like book reading time when in my finallys happens. many people like riading to bookes much peopel go to bootseto and my finallyes so your right call me oo mas informsos rightes is book will be scorred faeni and school to book if s conventions is to have us structure help bfente from contesI racmios becaese is to helpo many people look to a special likes a show or party when it finally and pepole happens sometimresit is I reall book .....when I came school I not riadin nati so I go to my room my is riadin one book is to good for you so I riadin I like one book i go my have I riadin book so I when I go vacation I peck tow book so riadin in baocho....when back to school I like book riadin my finallys you like book yes why is good riadin I see my finally he to riadin one book to like to mach riadin .... 1 1 1 1 1 1 +4370 2 "No I as an @CAPS1 cetazine do not feel that any materials should be removed. There are many reason I feel this way and I hope that after people have read this they will agree with me. THere are three main points supporting my opinion and i plan to list them below. First and for most is the fact that this is @LOCATION1. @LOCATION1 is suposed to be the land of the free and the home of the brave, or at least thats what the national anthem tells me. So to me if some one removes a book or movie from a library becasue they find it offencive they are trying to take away one of my right as an @CAPS1 cetacine. The right they are messing with to me is the right of freedom. I should be free to be able to walk into a library and grab any book i wish. I should be free to go to the movie store and find and rent any movie a choose from the shelf. If they put a movie or book away if they make it to were i can't get to it then they are messing with my freedom, and this is somthing i can't stand as an @CAPS1. I should be free to read or watch what ever i choose to. Which brings me to my next point. This point is a simple and logical one. My second point is that people have the choice to read or watch the movie. Just because it is there it does not meen that they have to read or watch it. If someone doesn't like a book good for them don't read it. If someone doesn't like a movie good for them don't watch it. It is rather quit simple in my opinion if someone doesn't like said book or movie then just leave it alone and don't mess with it. They shouldn't have the right to ruin it for everone else. Just because one or two or even twenty people find a book offencive doesn't mean they have the right to remove it. There @MONTH1 five million other people out their who love said book so why ruin for everyone just to make a few people happy. They do have the right to say no and not read or watch the movie, but they don't have the right to say i can't. Finaly people say that said book or movie should be removed because a child might get it and it is not apropreat for children. Well to that I have to say it is the parents job to make sure a child is not readind or watching something they shouldn't. If i child gets a hold of a book that is said to be bad it is the parents job to tell them to put it back. People don't have the right to completly remove said book or movie just because a kid might get it. So there is my opinion on this little matter. I don't feel that libraries should be censored. I feel we all have the right o make own decisions and that we have the right to read or watch what ever we choose. It is not fair to get ride of a book just because a few people don't like it. Hundreds of othes might love it, and like I said before if someone doesn't like a certain movie or book then don't read it or watch it. Don't ruin it for everyone else though." 4 4 4 4 4 4 +4371 2 "Many people have different views on different types of things. There is not much that can be helped with that. No one can never make everybody happy. That is a major part of life. I do not think they should remove materials from libraries just because some people find them offensive. You cannot make everyone happy, some people enjoy those materials, and everyone is entitiled to their own opinion. The first reason they should not remove offensive materials from the library is because you will not make everybody happy by doing that. Just because some people take offense to certain things, does not mean that everyone does. If they do not like it, they do not have to read it or listen to it. They have libraries so you can pick out books (and other materials) that you like. You have a choice there. There are lots of books that are at libraries around the world. People are going to be mad whether they are there or not. Have you ever heard the saying '@CAPS1't judge a book by its cover?' @CAPS2, well that could also be a reason people want materials removed. They might see a 'suggestive' cover or something, and they might take total offense to that. Just because a cover of a book might make people take offense to it doesn't mean they should remove it. The second reason offensive materials should not be removed is because it is enjoyable for some people. There is a reason it is in the library, and that reason is because some people enjoy it. If there was a book or magazine that never got checked out, do you think they would keep it? Nope. I am pretty sure if it never got checked out, they would get rid of it. Obviously someone has to read, listen, or watch it. People get offended by things everyday. Removing 'offensive' materials from libraries will not be much help to the problem. It @MONTH1 help a little, but there are still going to be people who get offended so easily. The third reason they should keep materials is because everyone is entitled to their own opinion. Just because some people think that there are offensive materials in the library does not mean other people do. For some people, taking away things like that would be like making kids at school wear uniforms. It takes away freedom. We are living in @LOCATION1. @LOCATION1 is supposed to be a free country. It is really not a free country when you have people taking away books and movies because they are offensive to people. I got news for you. If you @CAPS1't like it, @CAPS1't read it. There is no harm at all by keeping materials on shelves. No matter what, someone is always going to take offense to something. The world is not perfect, and it is never going to be perfect. Taking materials off the shelves because it is offensive to some people isn't going to make the world a better place. People are going to be mad or angry no matter what happens" 4 4 4 4 4 4 +4372 2 Some books are offensive but not all of them. Some libraries have begun to censor their book collection by removing ones they thought could be offensive. I believe there should not be any censorship in libraries. One reason I do not believe that there should be censorship in libraries is that tons of good books are lost because of it. Some libraries do not carry @PERSON1 books because he uses curse words. They should not remove the books completely they should just warn people of the language. A second reason why I do not believe in censorship is that some books on different religions get removed. I once saw a librarian throw a book away simply because it was about the @CAPS1 religion. This was a horrible action because the @CAPS1 religion is an extremely interesting one and now many people will never know anything about it. A third reason is that they @MONTH1 end up offending some people by removing a book. I once heard of an @CAPS3 family complaining about a library because they removed a book about the @CAPS3 religion. I found this upsetting because everyone deserves to have access to the books that they want. I propose that instead of censorship the libraries seperate the books by different subjects and genres then put up signs warning anyone that goes into that section. This way everyone can get the books that they want to get. The libraries also would not have to worry about people being offended. I believe there should not be any censorship in libraries. Some libraries have begun to censor their book selection by removing ones they thought could be offensive.Some books are offensive but not all of them. 4 3 4 4 4 4 +4373 2 "Throughout time, fellow people have struggled to censor or ban material that they consider offensive. It @MONTH1 be the way they were brought up, or simply what they beleive. I do not beleive that it should be up to anyone to say what should and should not be censored for anyone but themselves. Everyone has one life, and in this one life we create our personal oppinions and beliefs on what is wrong and what is right. We are completely unaware of many people throughout our life cycles, and saying what should be banned from everybody is almost claiming you know the morals, beliefs, and customs of everyone in the world. If I came to school one day and brought a book that contained material that I think is relevant and not just pure exploitation, then I should be able to read that as long as I don't influence others by their own will. Let's say another student sees me reading that same book and he has grown up in a household that taught him that the situations and material in my book are overly offensive, I do not think he should be able to create a ban of this book just because of his own upbringing. There is such a thing as mass agreement, but there is also a thing called mass ignorance, and to say that I know what should and should not be shown to other people is completely ignorant on my part. I think the only allowance of censorship should be from parent to child. That is the only situation that someone should be allowed authority over someone else, because they have undeniable duties as parents, and they be able to say what is right knowing they are creating a child to think what is wrong and what is right in their mind" 4 3 4 4 3 4 +4374 2 At jefferson'vill high school we do't have the right to remove a book form the shelf if there a book that not for you do not get it like a bad movie . It like get a bad lunch your not go to get it so why get a bad book or a movi 1 1 1 1 2 1 +4375 2 "Censorship is when a group of people agree that a certain book, song, movie, or magazine is found offensive in any way. Mainly parents and educators find these materials such as books offensive and do what they can to get this book taken out of libraries at schools. Censorship was originally started during the '@CAPS1 @CAPS2' in @LOCATION3 with the @CAPS3 @CAPS4. It was used to hide information from the public by taking all records of it away from the public's use. In @LOCATION2, we are a democracy, but we still choose censorship to hide certain information from certain people. In some parents' opinions books are great and educational for children, but in other parents' opinions books do things like promote homosexuality, use false language, or even show drug use. Most of these books are not trying too promote these things but they are just part of the story. So pretend like we hide all the bad events or situations in the world from occuring infront of our children. They have no knowledge of this part of life, so what happens when they get in the real world and grow up? We can't just hide drugs from them, we can read these and teach them the harm drugs can do to someone and how to avoid them. If we send our children out into this world without any knowledge of drugs things will get out of control. Majority of these books that contain 'harmful' things to children, but they teach lessons that parents don't think of, they just think of what written down on the paper instead of the moral overall lesson that the story is bringing to a child. If a story has false language, our child will ask us what these words mean and we will tell them not to use them and what they mean so the child knows not to repeat them. If not, they can go into school and another child will tell your child to say these words and your child (not knowing the meaning of the word) will go out and say it and be awarded with a detention or even a suspension. Personally, I don't want my child receiving a detention or suspension. Censorship is a growing issue in the @LOCATION1. It can do good things like hide actual sexual interactions from children, which should be hid from children anyways. Censorship can also do the bad things like I discussed earlier, which do more harm on a child then good. When your asked on your opinion on sensorship, just always remember what's best for your child, and knowledge is always better then clueless" 4 4 4 4 4 4 +4376 2 "Going to the library is one of the best ways to explore new things. Some items are not appropriate for everyone though. Certain books, movies, magazines, and music should not be accessed by everyone. Having an adult only section would be a way to solve this problem. Removing certain materials from the library would not be in good interest. Any popular material should be available at the library. Many best selling books would be wrong for children to read, but they would be perfectly fine for adults. That doesn't mean these books need to be taken out of the library. Children should be restricted from viewing the explicit materials though. Having a section in the library from which only adults can rent the items, would remove this problem. People under @NUM1 should also be restrained from looking through these materials. Having a childrens' section in the libray would also keep them away from adult materials. The library needs to make itself user friendly. People who frequent the library often pick up a book, not knowing what it holds. When inappropriate material is inside a child might innocently read into or see something they are not supposed to. Parents should not have to worry about their kids seeing inappropriate pictures or text. They should feel safe letting their children look through all the books at the library. Library workers should also make sure the adult materials stay in the hands of adults. Allowing children and their parents to feel safe and welcome is an important part of the library. Taking adult materials out of the libray is not a good idea. It would lower its popularity. Everyone has different interests, and they want to research them at the library. The safety of children is also important. Making sure children cannot reach these materials is a concern. Having separate adult and children sections could solve this problem. Not allowing anyone under @NUM1 to check out explicit materials would also help. Keeping the libray full of information but still safe for children is the ideal situation" 3 4 3 4 4 4 +4377 2 "I believe that not all books should be banned, but some books should. For example their are many good books that are banned because it @MONTH1 have a little bit of cussing in them but I believe that is ok, I mean it isn't like the child wouldn't hear the same words maybe even worse if he turned on his @CAPS1. But if a book talks about certain things it should be banned, such as hate against other races, or it talks negatively about someones religion. For example I read a very famous book called The @CAPS2 of @PERSON3 by @PERSON4. This was a very good book but for some reason it was banned in my @ORGANIZATION1 @CAPS4 so I couldn't check it out. I had to go to the @CAPS3 @CAPS4 to get it. I don't understand what is so wrong with The @CAPS2 of @PERSON3 that it is banned by @ORGANIZATION2. This book @MONTH1 talk of a mischevious youngster who runs away, does alot of differnt crazy activites, and even smokes but this is no worst then what we are exposed too on @CAPS1. If I was a administrator in a @ORGANIZATION1 I would look at what is the meaning behind the book and what it is trying to express. For example if a book is offensive to some one for instance a book written by the @PERSON1, this piece shouldn't be aloud on the shelve. But if it is a book about the @CAPS7 @CAPS8 and the @ORGANIZATION3's view on slavery this would be ok. Because the @PERSON2 book is more hate than anything it is for instance promoting the @PERSON2 and that isnt right. But the book on the @CAPS7 @CAPS8 and the @ORGANIZATION3's view on slavery is a part of our history it shows differnt ways of thinking of the time that we don't really know if they were right or wrong it is just what they believed. So my point I am trying to express in this piece is that don't hate a book because maybe the language in it or the events in it @MONTH1 not be what you agree with but judge the book because of the message that it is trying to express.Hopefully you will agree with me in this. But if a book talks about certain things it should be banned, such as hate against other races, or it talks negatively about someones religion. I have expressed my opinion on this matter I hope you agree with me and can maybe convince the @ORGANIZATION1 that they need to take a second look at what kind of books we keep on our shelves and what kind of books we take off our shelves." 4 4 4 4 4 4 +4378 2 "Whever you go these days you see viloence in evry store around the world. Children growing up in the world is our future and they see that negative output. Alot of the kids and young adults thrive off of the offensive materials the world puts out there. I think that the offensive thing's should be taken off the shelves. And sold in stores for adults that are twenty one and older. If people sell offensive things in stores were it allows young teenagers to buy those products , then we are just puting ourselfs at harm. I was just in a book store the other day and i seen magazines that were not apporiate. I thought to myself how could they sell these types of magazines. Music , movies, and magazines shouldn't even be sold in a book store , that's why its called a book store. It's not called a movie, music , or magazine store they call it a book store for a reason. If students read books or listen to music that is offensive they are going to grow up thinking it's ok. Too be that way or treat somebody different because of who they are or what they represent. I'm not saying take all the books out of the store just take the offensive one's and have a twenty one or older sign. So the kids dont end up getting a hold of the book and learning something they shouldn't. When i was young i went to the book store all the time with my mom. I would just pick up any book there was and start trying to read. Alot of the time my mom would take the book from me. Because it was offensive, i didn't know that at the time i was just a little kid. In today's society kids are growing up quicker than they really have to and thats not a good thing. Kids should be able to be kids and read kid's books. I guess it does'nt really matter for middle school and high school kids. Because those kids really dont like to read at all. The kids that we have to look out for is the one's in elementary. Because those kid's actually want to learn how to read. And if we put a book about drugs on the shelve those kids will read it. And those kids will learn about it and be curious to what that drug has a effect on you. In the end it does'nt really matter what i say because people are going to keep making books. Anytime type of book it is all based on how much money they can make. It does'nt matter if it is negative or a possitive book. the company wants to make money and so does the author." 3 3 3 3 3 3 +4379 2 "There is many different topics that could be offensive, @CAPS5 just depends on the person's own personal judgement. In my opinion I do not believe that materials should be removed because not everyone has the same view or opinons. If someone comes from a different country or evern a different religion, topics like abortion and racism are going to be viewed very differently. I think having a variety of topics will help expand different thoughts and make the readers of the material see things in a different way. When I am older and if one of my elementary children was to bring home a book over abortion, I would be concerned. Honestly though, I do not believe schools would let inapropriate topics for younger childeren read books like that. @CAPS5 is a little bit different with a @CAPS1 @CAPS2 student though. Their maturity level is going to be mature enough to handle the material and I do not think @CAPS5 is right for schools to remove something that could actually help someone. In the book, 'A @CAPS3 @CAPS4 @CAPS5', there is a lot of detailed events that happen. Some might say @CAPS5 is too graphic for children but the reality of @CAPS5 is, events like those happen in today's society. @CAPS5 really opened up my eyes and I am extremely happy I read @CAPS5. The realization actually made me want to help those children who grow up in homes like the one described in the book. I believe @CAPS5 had the same effect on other people too and some children might even grow up to help others in that horrible situation. Libraries should be able to have a variety of different books. I am not saying however that they should have books on murder and saying @CAPS5 is alright but books that will help expand the children's minds. @CAPS5 could even change their lives. Some books are a sensitvie topic but who has the right to tell someone something they should believe? @CAPS5 would mean more to someone if they found their own way and beliefs then having people tell them what they should and should not do or believe in. I have also read a book recently titled, '@CAPS6', @CAPS5 is about the government granting the ability to @CAPS6 your children and then the body parts will go to those in need. @CAPS5 is sort of cruel in one way but the topic the author is trying to get across is not. A quote from the book is, 'On one side you have people killing abortion doctors for the right of life and on the other you have people getting pregnant just to sell their fetal tissue'. @CAPS5 states that everywhere you go people are going to disagree and agree on things but not everyone will believe in the same thing. @CAPS5 shows that just because one person thinks one way is right does not mean another will. The book changed my perspective on many different topics and helped me open my eyes on different views. Racism, abortion, @CAPS3 abuse, unwinding your children, what ever the case @MONTH1 be, some people will support @CAPS5 and some will not. I think @CAPS5 is time for children around the world to discover for themselves what they truely believe in and taking 'offensive' material from @CAPS2 libraries is not going to help any. My opinion on this topic is strongly advising to leave the material alone because for there to be a book about @CAPS5, the author had to have had a reason to write @CAPS5 and honestly, what is better for the future then a generation of children grounded to their own true beliefs" 4 4 4 4 4 4 +4380 2 "Since the beginning there has always been someone who is offended by certain media. Books, movies, and music have been the main focus of the subject of this controversy. There have been arguments over it so severe that it has went to court! The people that have been upset over media have caused there to be certain censorships over these materials. I believe that there should not be censorship in media. I think that there are are books, movies, and other media materials that can be found offensive to someone or a group of people. This is why they should have labels or at least a description on the back of these products that explain what could cause someone to become upset by it. If something is considered too vulgar for the public eye then they should have it somewhere more discret, but not be taken off the shelves. I disagree that media materials should be taken of shelves for being offensive. Media is all about someones free expression and trying to share it with the world. There are around @NUM1 billion people in the world and at least one of them is bound to enjoy the same type of media you do. A great example of a media material that is challenged every day in every part of the world is a book called the bible. The bible is considered to be one of the oldest books in the world and is still in print. People of different religions can sometimes find the print of bibles over there religious books offensive and there is always great controversy about it. All these movies and books though are great because they are different and free! The world needs people who challenge ideas and religions. Every single person in the world is unique and I think it is great for everyone to put their opinions out for others to find so they can have a new view on the subject or at least contemplate it. Society has already put parental advisory warnings on cds, put ratings on movies, and labeled books as challenged. All this does is restrict the public from finding new ideas to compare to and form opinions. I believe in freedom of thinking because it is the most valuable resource that we have, it is what sets us apart from each other. Let media be free so men, women, and children from all over the globe can be unique and wonderful! Censorship will be challenged in years to come and I will help challenge it for all to be free and happy" 3 4 3 3 4 3 +4381 2 "Books,music,movies, and magazines that are in libraries should be approprete material. But in some cases it's fine to have some offensive litature because people can learn from it. But there needs to be an age limit to checking out these itims out. So I do beleave we should keep offensive litature on the shelve. There needs to be a certian exstent to what we leave on the shelves. Books,books, and more books, there are so many books and many other kinds of litature in libraries today. Libraries are a place of silance, and to some people thats boreing. So like me when I go into a librarie I go to the books, or maginzes that seem very intresting to me. Altho they @MONTH1 seem intreseting to me, others @MONTH1 find them offensive. Like it might be a comic book that my say something that someone my take offense to. Libraries can't please everyone that walks throught the doors. Just because someone dose not like the offensive stuff thats in there dosen't mean they have to take it out. Because there might be someone like me that likes thoes kind of books, or magazines. There are offensive stuff all over the world so you can't avoid it every where you go. I beleave there is a good out come for keeping offensive litature material on the shelves. I think that keeping offensive material in libraries @MONTH1 have a good cause to it for one very good reason, learning. Like I said before it @MONTH1 be offensive to some people but to some it's not. So some people might like to learn about offensive things. @MONTH1 be they never knew thoes things that are in thoes books. They @MONTH1 also never know whats in thoes books unless they keep them on the shelves. They need to have a section where offensive books,magazines,music and movies go. If some things it's offensive put it on the shelve, and they must be @NUM1 years old to check it out if it's on that shelve. Yeah there @MONTH1 be a down fall to keeping offensive things in libraries. But you can't hide from it all your life .So insted of going out into the world and learning about it the hard way go to the librarie. You could pick a book up learn about it and how to deal with it. It's just part of live there is offensive material every where. You can't be shelterd your whole live. So in my greatest opinon I do beleave that we should keep these offensive material in libraries, it could be a learing exsperiance" 3 3 3 3 3 3 +4382 2 "I am not in agreement because young children should not be exposed to certain offensive books. However, I believe that books should not be removed or censored in the libraries. because they will separate be washig some bad things and they will be a bad idea" 2 2 2 1 1 1 +4383 2 I think that the cencorship in libraries should defenetly be relevant. Such as i think that if someone wants to check out an adult book they should be required to show id at desk. Many children take advantage of this they rent books and games they know parents would never allow. A cencory system should be a quit simple arrangment fot the public library systems. Private libraries can do as they choose they are not under any state law. On the other hand public libraries are under state and city law they should not be able to show adult things to children. For example in many libraries around the @CAPS1.S there all books called manga or anime books alot of them show partial nudity and other graphic things not suitable for younger children but are only rated @NUM1+. I think there could be many changes in the library systems it is your choice if you want to change them or not 3 2 3 3 2 3 +4384 2 "I do not believe that materiales in libraries should be censored. If parents don't want their children reading or listening to inappropriate things, they should pay more attention to what they are doing. If parents monitor their children closer they will be able to control what they are doing. There are alot of bad things for children to read, look at, and listen too out there. Parents need to do a better job teaching their children about what they can and should look at, read, or listen too. It isn't often when you go to the library that you find something inappropriate unless you are looking for something inappropriate. It is very easy to tell what is good and what is bad. Most of the time in a library the more profound books and magazines are seperated from the childrens books. This, to me, is the way it should be in all libraries. In all of the times i have been to a library i have never accedentally come across something inappropriate. A library is a place for people of all ages it should not be limited to just one age group. If libraries were censored more people would be upset. It would be the same way if a store stopped selling your favorite product because one person did not like it. Alot of adults probably would not go if the library were censored. The library would then become a place for mostly children. Most small children do not even go to the library so they would become virtually useless. In all of my years I have never once heard of someone being deeply offended by something at a library. Weather it be in a magazine, on the news, or by word of mouf, I have never seen a complaint. Most parents do a good job of monitering what the children look at or read. Those parents should not be deprived of their privelages to look at more adult rated things if they choose. Just because one parent was to irresponsible to moniter their child does not mean that all of the parents should be punished. The library is a place for people of all ages. Therefor the library should keep material for people of all ages and not just for children. The bottomline is that if people do not want their kids looking at inappropriate things they should keep a better watch over them. They should also teach them the difference in what is acceptable and what is not acceptable." 4 4 4 3 3 3 +4385 2 "Censoring books in libraries because a certain group of people doesn't like them, and finds them offensive is simply not fair. A good library is diverse and has something that everyone of different backgrounds can enjoy. A compromise wouldn't be as difficult as some people might actually think. Simply regulating books, and other products, by creating age limits based on the books content and maturity level would be an excellent alternative to actually censoring the books themselves. Take an author like @PERSON1 for example. His books contain subject matter and offensive crude language that would obviously not be deemed acceptable for most younger people. That being said censoring the books language wouldn't help in the slightest. If a younger person has the mental capability to read a book like @PERSON1 then they would have no problem making inferences on what matierial was said, and the ideas in the writing are going to be realized. The other fact is that taking out mature level books completley from the libraries is not a possible solution either. If you take out the diversity in your product your going to lose the diversity in your customer's as well. For instance think about a movie store. If the only movies sold were @CAPS1 and @CAPS2 there would be a lot less people wanting to go to that store, because then it just turns into a child's store. Even censoring the movies would not be effective because your taking away the art of having an unfiltered movie. So my simple solution is obvious. Movies have ratings based on maturity content, so why shouldn't books. Books that deal with more controversal content shouldn't be placed in the shelves next to young readers' books, and they should have a label indicating that the specific book @MONTH1 contain material not suitable for a person under a specific age. People trying to censor entertainment and look into the best interest of their loved ones is perfectly fine, but you cant blindfold them forever. Were all on the same planet and we all reach the age of realization of reality." 4 4 4 4 4 4 +4386 2 "I believe that if you let people take stuff off of the shelves that they didn't like then there would be nothing left. I thank this because there are a lot of parents that don't want their little kids to be seeing it or hearing it. That is because they could get infulenced to do the wrong thang and get themselves in truble for it. Then you have some parents that don't care what their kids are doing as long as they are leving them alone. Then you have some other that are very over procted. Yes, I think that there are something that should be taken off shelves because they are very interpreit. They are because they are talking a drugs and alchole and trying to get young kids to try it and get addicated to it. That why they can get more money from it and those kids end up geting heard or died from it. All some of thies bussinesses are trying to do is get money from the young because they make to bottles or cantaners look cool. Most of the time you will have kids go for it but there are some kids that don't because they don't want to get in truble or heart themsleves. There are some songs that should not be alowed to be played because of some of the stuff that they say. There are some people and some parents that listen to it and with there kids in the car then their kid will go to school and be sing it and get in truble for it. I think that their are a lot of thang that should be different but they are not because the bussinesses are just happy that they are geting money. They don't care how is buying it as long as they get there money for it and that is not the wright way to look at it you should care about the lives of people and their familys. Then you have some magazines that have some uniperate pitchers in them. They do because they are trying to get guys to buy them just for that one pitcher that is in it. They want it because its a very pritty girl with just a bathing suite on or maybe nothing on. That is why they put it in there so they can get their money off of it. Most of the girls that are in them are modles and they are very pritty, but sometime there will be a little boy that takes his dad and then he takes it to school and get in truble for it. Then his partens are enbeist because they didn't know that he had. That is why I thank that some stuff should be not on the shelves in stores. You will have partens that get it tten leave it laying out and their kids will get in then might take it to school. You should never leave anything that you don't want your kids to have laying out for them to get. That is why I believe that and what I thank about it" 3 3 3 2 2 2 +4387 2 "Do you think books, music, movies, magazines, etc. that could be offenesive should or should not be pulled off the shelves? I beleave they shouldn't. All kinds of people buy books or movies and they all have diffrent types they like. Companies that manufactor books, movies, music, and magazines would be looseing out on money if people cant find something they like. and if they dont have the money to make whatever it is they make then they will go out of buiesness. They you might be out of luck for what you are looking for. All kinds of people buy things that they like. How would you like it if your favorite candy was taken off the shevles because it offened people? Well thats how they feel when that happens to them. What would be put in there places? Stores have to have something to fill the shevles. Would they put more candy to make the world fat? If you come across something you think is offensive just dont pay attenion to it. Others @MONTH1 like it like you like your favorite candy. We have a great number of other things you can pick from" 3 3 3 4 4 4 +4388 2 "A curious child goes into the library for the first time to find a story to read. Yet, when she goes to the children's section, the book she wants is not allowed in this library becuase it is said to promote certain ideals to children. The child goes to her older sister for help to find a different book. The older sister is to busy looking for her own book. She had walked into the library looking to find answers to her questions over a liberal topic. She can't find the book she wants, the library has censored it. Why would we censor librairies if we have the freedom of the press and the freedom of speech? It is not right to censor libraries becuase that is restricitng what is allowed to be read, which is taking away part of our freedom. The press is allowed to print anything, and we the people read it. Will that be the next thing that is censored? A book is just like the newspaper, it is relaying a story to entertain the auidence that is reading it. By censoring libraires that is taking away the freedom of speech. Writing is a way to express yourself. Authors share there expressions through writing, hoping they can touch someone else's life and be of some assistance. Whether the book helps its reader to escape a horrendus day or to answer the questions of a curious teenager. I use books daily to escape the stresses of life, the '@CAPS1 @CAPS2' series gave me something to do and allowed me to use my imagination and mind, I could escape into another world and leave my chores behind me. Some @MONTH1 say that offensive things should be censored. In our culture the slightest thing can called 'offensive' now. If we never learn about these 'offensive' things how would we understand history? There will always be rude things that have been said, but we should be exposed to them so we can learn from it. By censoring these items we will never learn and neither will our children about other cultures, history, or liberal ideas. Instead of censoring items, there is another solution. Make certain items restricted and red flagged. If certain items become restricted; it would mean that people over a certain age are allowed to read them. By doing this a child's mind would not be polluted, but we could still be exposed to different ideas and learn from them. If there was a system to red flag an item, this would allow the reader to know that this item contains what could be considered offensive material so they do not have to expose their selves to it if they did not want to, but others could. This would work becuase the books could stay in the library and still be used but there would be a warning system for those who do not want to be around it or allow their children to be around it. In conclusion censoring libraries is a bad idea. It takes away our freedom of the press and speech.We are also making ourselves ignorant this way. If we put out a warning system it is fair to everyone. The 'offensive' matterial can stay in the libaries but people will know ahead of time what they are being exposed to and what their children are to" 4 4 4 4 4 4 +4389 2 "I think that no source of knowledge should taken off any shelf in any librairy because a few people think it's offensive. In my own personal opinion someone could find a book offensive and another person could think it is reasonable. People can't make the judgment to say this is offensive to me so therefore it's offensive to everyone who reads it. Some of the best books on our shevles are the ones that @MONTH1 be offensive. Some books are racist; Of @CAPS1 and @CAPS2 for example has some racist and sexist comments and remarks. If everyone got mad about that then a very good book wouldn't be read by the people who are going to run the country when i'm older. I know that all the older books would be gone to and then no one would know about what happened in the @NUM1's. Also some of the @ORGANIZATION1 shows people watch are ten times worse then the books people read,if you find a book offensive don't read it! When i hear about a book being offensive it makes me want to read it. It gives the book charactor and makes it humorouse. We can't just have the same old books talking about the same old things because that gets boring after a while. Sometimes from thoughs books you even learn something about your self that makes you wonder if i didn't read this book would i still have found this out. Sometimes it brings out the best in people and thats the best part about reading a book like that. Libraries are a place to go and look at all the books you could ever think of reading and no one should be able to take that away from people. I want my kids to be able to have the same options that i had growing up plus all the new books coming out. If you ask me it's just not right to take away someone elses choice of knowledge. Thats my personal opinion on taking books off the shelves of public libraries." 4 4 4 4 4 4 +4390 2 I believe that things shouldn't be taken off the shelfs because a few people are offended. There @MONTH1 be a few that don't like something but for every few that don't like it there are some who do. For example there might be a book that makes females look dumb but personally it doesn't affect me but there are some girls who get offended because thier superior knowledge. I have a friend who gets offended by movies that the black guy always gets in trouble or dies first. So if we removed every movie that offended him what would be left. I feel offensive when a magazine shows girls are pretty because it makes people feel insecure about themselves. Even though I feel offended I'm not going to request them to remove it because there are some magazines that give tips and actually helps people feel better about themselves and if I took that away from them it could cause issues. If there is something that is removed from shelves it should have a good reason. Like if there was a magazine that showed nudity I would understand them removing it so a kid doesn't see it.Some libraries remove things that could potentially cause a great issue. Maybe a newspaper talks about a great disaster and every one swarms the stand attacking each other. Something like that can cause people to be hospitalized and then the library will be sued. Yes I agree that there are some people who would request the stuff to be removed but you can't always get your way. I know people would say thats not fair but there is a saying that says 'life isn't fair' and thats true. So next time you hear some one wanting something removed tall them this or next time you want some thing removed you refer back to this. So in conclusion things shouldn't be removed unless nessecary. So when someone is offended thats their problem. You can always walk away you dont have to look or listen. 4 4 4 3 3 3 +4391 2 "I believe that the certain materials such as books,music,movies, magazines, ect. they are here for a reason. People like them. Maybe there are some books and things that people @MONTH1 or @MONTH1 not find offensive. Thats ok I'm not try to say it isn't, but you don't have to look at that book. There are so many others to pick from it doesn't have to be the first one you pick up. The objects we are talking about are our entertainment it brings us joy and many smiles. People need to understand that children are going to have to get their education not only from their teachers,but through these tools. Tools is a better word for these things. It makes them have a meaning. Children now day love books, music,movies, magazines,ect. As a teenager I can say that most of us who like music we love it. It builds our charater. People don't make books and magazines just for them to sit on a shelf and gather dust. They were ment to be picked up and look at. I also have to say that some people make a big deal about a subject like this. Don't get me wrong I can understand were their opinon stands,but that doesn't mean I have to agree. Children,@CAPS1,and @CAPS2 all have to learn in one way or another. Some of these ways are what some people are trying to get removed from our libraries and other places as well. If people want this is going to be a big war. Only because they are not the only people on the planet. People want these tools of ours to be removed this will only be the begin. Next couple of years from now people will want to get rid of something else then, something else. Its just one right after another it won't stop. This just shows how our communities agree and disagree with each other. Everyone is intitled to their own opinion some are good and some are bad. In this case, my opinion I totally and completely disagree with getting rid of the tools that can inprove our world as we know it to be." 3 3 3 3 3 3 +4392 2 "Do I believe that certain materials, such as books, music, movies, and magazines should be removed from shelves if they are found offensive? No. I strongly disagree. D @CAPS1 you know that there is more than @CAPS5 radio station? Well, @CAPS3 you do. Not just @CAPS5 person should be able to talk for everyone. I enjoy every genre of music and books. @CAPS4's pretty much my life. All I know is that when I get offended by a song, I change @CAPS4. When I'm reading a book I don't like, I put @CAPS4 down. @CAPS4's not your job to make my decisions. I live my own life and personally think you should live yours as well. Books, movies, plays, games, magazines, all things of that sort are for our entertainment. If they began taking them off shelves because of vulgar things and things that offend people, then why do we have freedom of speech? Those people that are offended need to put whatever @CAPS4 is down and move on. Just because a handful of people are offended by the everyday things that people use to stay amused, doesn't mean they need to be taken away. Authors and directors spend months, even years making movies and writing books just to entertain us and feel accomplished. If they started taking them off our shelves and off the big screens, people would lose jobs. For example look at the @PERSON2 @ORGANIZATION1. That can easily offend a person, but those are brilliant pieces of work. I am personally the kind of person that reads books that are suspenseful, books that keep me on the edge of my seat. People enjoy books that they can relate to, and some people can relate to those books that are 'offensive.' I, myself, have read a book that cinsisted of drugs and viloence that I related to and @CAPS4 helped me out, @CAPS4 made me realize its not always the right thing to do. I think people need to realize that all those books, movies, magazines, and all the aboe that 'offend' them, are reality. No matter where you go, what you do, what you throw out, or what you keep in the house, your kids, parenst, friends, everyone will see @CAPS4 sometime in theirlives. Viloence and drugs are seen everyday. Many more things that offend people are always going to be there. If all of those things are offensive to some people, then they need a reality check. Books like that can influence kids to wanna go the rightdirection. They read a book or see a movie with a drug addict in prison and theyll think, '@CAPS2, I'm never going there.' @CAPS3, I can't say that goes for all kids in this world, but you get the jist of what I'm trying to say. If @CAPS4's the parents that are worried about their kids getting into that kind of stuff, be my guest to remove @CAPS4 from your household, but not from everyone, not from the people who enjoy @CAPS4. I'm a strong believer that people know right from wrong, so why not just grow up a little bit and do what's right? Those books, movies, and magazines that are offensive, are enjoyable to me. This makes me think of drama. People say they hate @CAPS4, but no matter what, @CAPS4's everywhere, and @CAPS4 will always be everywhere. If you can't get through life being offended every @CAPS3 and then, then how do you think you'll survuve. What do you think is in store for the next years to come? You must learn to deal with @CAPS4. Taking away all of these things, I think, is a mistake. If people are against @CAPS4, they need to worry about themselves and just leave @CAPS4 alone. They can make their own decisions, they don't have to pick up and @PERSON1 book when there is a @ORGANIZATION1 in their reach. That is what literature is about, writing. Do you honeslty think the author was worried about offending anyone? No, because the author or director whom wrote the book or made the movie, they knew what is was about and they know that not all of the world will see @CAPS4. Not all of the world will care to see @CAPS4. They know that people are smart enough to read the summary before they get'offended.' @CAPS4 irritates me when people think they need to live for everyone. @CAPS4's like the saying, '@CAPS5 man's trash is another man's treasure.' You might not like @CAPS4, you might even hate @CAPS4. But once @CAPS4's out of your hands, the next person might come back and drastically fall in love with @CAPS4. I think that just because someone picks up a book and @CAPS4 offends them, @CAPS4 doesn't mean they needed to whiped off the shelves. Grow up, put whatever @CAPS4 is that offends you down, and walk away." 5 4 5 4 4 4 +4393 2 "In this world you never know what someone might writing. There're many materials in this world that I think aren't appropiate for someone to be reading, watching or listenning, ect. You @MONTH1 be thinking that anyone makes his/her own decision of what they read, watch, listen. Well, I do agree with that, but I do believe that some materials aren't rate it properly to age. I do think that some materials should be banned from people under age, some from kids, and some from everyone. You @MONTH1 be thinking that all of this is wrong and that there is nothing wrong with books, music, movies, ect., but in my opinion some materials are just offensive and not proper. I seen so many materials that I think are not proper for people under age to been looking at. In some movies, for example, the rating is just not right because some movies have so much violence or language. You might not think it's that big of a deal, of course, but I do. In my opinion, some materials are not too low in rating, and should not be for people under age. It's not surprising to me that kids are now yelling, hitting, and or acting like a rebels to their parents. Many of this things kids get it from books, music, movies, ect. This is many of the reasons some materials should be banned from kids. You ask yourself why? Well, first of all, kids are just learnning and they do everything they watch, see, or listen. I mean now kids don't even think about what their about to do. They just do, they don't care, they think it's okay. I think that parents should be alert to offensive materials in the shelves, and should say something about it so they banned them. Why banned some materials from everyone? Well, first of all, why do we even want to watch, see, or listen to things that are not right? You @MONTH1 be thinking that we just do it for fun and that it's enjoyable and nothing wrong with it. Well, you @MONTH1 be right but also wrong. I certainly do agree with you, we all watched things for fun and to enjoy them, but some things are just too out of this world for us. Why do people do crazy things now in these day? In my opinion, I think is because they mostly get it from books, music, movies, ect. I think that if a book shows very offensive things they should be banned from everyone no matter what. It's the right thing to do. If you don't want to see this world get more out of control than it already is. Well, we need to do something about all these materials that are offensive and banned them for good. We certainly don't want to see our kids yelling, hitting, or and actting like rebels to us. We don't want some crazy person coming to our hosue and do crazy things to us just because that's what they learn from those materials they had on the shelves. It's come to me that some materials should be banned from people under age, from kids, and some from everyone" 3 4 3 3 3 3 +4394 2 "A place fill of knowleged should be a place where you can find all the news that is making the world what it is today, a person should be able to find out things from the past also. A library has many different things found in it: books, magazines, movies, and some have music. The books range from encyclopedia's to @PERSON1, the varity of books and information is to the extreme. But then again with all the good things there always comes a bad side of the information. With all the profanity found in today's society you would not want a child seeing or hearing any of it while at a public library. Books are put into a library so that people have the chance to read them and become more knowledgable. The thought of a younger person going into the older, adult area is very upsetting but then again who's to say that that individual is not allowed to read an article or magazine that has more mature type's of information or language found in them. I feel that a person will see what they want to see and what they want to read, fact of the matter is they have the right to. Both, young and older people need to be educated in the worlds past history and the present news. One reason being to prevent things that happend in the past, happening again. Another reason is just so that they know what is going on around them and so that the individual is informed. Libraries should have banners or flaps up saying what is in a certain section of that specific area and people can make the decision to go over to those area's or not. Things that are found 'not right' in one's eyes @MONTH1 not seem so bad to anothers, it's all in personal preference. Things should still be out for the public to read or see. Making the choice to go into a library is an individuals decision. Fact is that the library is a place where a person should be able to get knowledge, no matter what type of information. A person should be able to get their information without the censorship of others." 4 4 4 4 4 4 +4395 2 I think that your parents should have to sign a peice of paper saying that it is ok or its not ok for the person to go to that side of the library. It is up to the parents and the way there kids will handle it. On one side of the library it would be more geared to a more mature audience no pornagraphic material of course but stuff that wouldnt be considered @NUM1. Kids fifteen and and older would understand. They might also have to have an adult with them. On the other side of the library it would be more of a childrens area with child storys. It would be targeted for more kids that are fourteen years and younger would like. There would have to be some one in the dividing line being shown the pass that says its ok or not. It would be a little difficult but it would satisfy both parties. It is up to the parent to decide if it is ok for there children to read a certain content of language and description. The child must be at least @NUM2 in order to get a pass from the parent though. I deffinately agree with Katherine Paterson eventually your kids will find out what all those things are. I would rather have my kids learn from a book and ask me then find it out on the streets where they could end up getting hurt or in trouble with the law. Or even going to a party and end up doing something that might kill them. 3 3 3 3 3 3 +4396 2 "Do your rights end where mine begin? In such a diverse society, clashing opinions are unavoidable. Does that mean another human's rights should be abused because we don't agree with their practices, beliefs, or lifestyle? Everyone in this world is entitaled to their own opinion. What is wrong to some people @MONTH1 be right to others. For example, one family @MONTH1 view their children using curse words as offensive while another @MONTH1 see no problem. Diversity in beliefs does not mean that it is acceptable to censor society from cursing, religion, or violence disscused in published works. These concepts exist in the world and censoring them will not make them disappear. It is understood that there is both bad and good in the world, and pulling materials from the shelves of libraries will not change that. Censoring books, magazines, music, and other media is denying someone the ability so see ideas from all points of view. Whether or not you prevent a young child from seeing all perspecitves does not mean the bad and good do not exist. The saying 'one year older, one year wiser' can refer to the aknowledgement of different ideas and opinions. As a child grows, he will learn more about the materials that were censored. In some cases, such as in the classroom, your rights do end where mine begin. When it comes to learning about the beauty of diversity, everyone is able to choose what they pick from the shelf. The definition of 'offensive material' is simply a matter of opinion." 4 3 4 4 4 4 +4397 2 "Do i think that certain materials such as books, movies, magazines, ect., should be removed from the shelves.? No i do not think that some of these materials should be removed. Why? because nowadays kids read things such as gang violevce and things that dont involve school material but some kids find the books that they read interesting. Now, do i thing that the books should be not given to students who are very young of age? Yes, due to the fact that some books are a little above others age of reading. Sometimes you @MONTH1 have kids who are intrested in what others dont read. Books such as gang violence and drug abuse are some of those books in categories of which some cant read. I think that in this case kids under certain age shouldnt read these books because of some of the content that is involved in it. Kids find these books, movies and magazines interesting because many things that happen in the world today happen inside those books. Im not saying that its a good thing, but im saying that the things they read and see in those books and movies are things that some of us have seen in a everyday life. When I was younger, I went to a library in @LOCATION1, @CAPS1 and whenever a kid would choose a big that wasn't for hiim/her they would always say 'you need your parents permission to check this book or magazine ect. out'. Once I actually noticed and got the point of why they would do this I thought that it was a good idea. I figure that all libraries should be like this considering that kids shouldnt read books that arent for them. This is also a good way to get kids from reading things that not age appropriate to finding something that is. So the main answer to this suggestion is, no, I dont think that these materials should be moved from shelves out of libraries. Why? because once they are gone then some kids might not even attend the library anymore because of the books that they find interesting are gone. So my suggestion is to not move them and let them stay on shelves just as any other book would" 3 3 3 3 3 3 +4398 2 "Do you believe that certain books, movies, or magazines should be taken off the shelf in a library due to censorship? There are many times when you hear a parent tell their child not to look at that magazine because they don't want them to see the vulgar things on the inside. I've heard parents tell their children not to ever watch that movie because it'll show things that they don't need to be seeing. Almost every day we're put in situations like these, not knowing whether we should pick up the magazine or just leave it on the shelf. In my opinion, I believe that libraries should remove anything vulgar from the shelves. Kids are encouraged to go to the library as much as possible, but not if there is vulgar things on the shelves. Kids are told many times a week by their parents, teachers, and other adults to go the library. They can work on their homework, read a book, or do some studying for school. When they get distracted from finding the book they want with a book that has vulgar things in it, they're going to be curious. The main reason I disagree with having vulgar things on the shelves is because of young children. The last thing they need to be looking at is something that isn't appropriate for their age. It's hard for a child to turn down a movie or magazine they've never seen or looked at before. In most libraries the adult section is seperated from the childrens section. This doesn't mean that a child can't over hear something that the adults are listening to or watching. The childrens section is made for fairytale stories and kid movies, but when the adult section has things going on over there that aren't the most appropriate then kids can over hear. If children and adults are going to be in the same library then I think they should make it completely impossible for children to veer over there and see what's new on that side of the library. Another reason I think libraries should censor themselves more is because of teenages in the community. After school hours, a lot of teenagers in our community enjoy going to the library. If this is such a good environment for teenagers to be then why are they able to download bad music off of the internet? Some teenagers listen to bad music with cursing, vulgar language, and much more. Libraries should make it impossible for teenagers to do this. If they want to download bad music then they need to do it somewhere else where youngers can't get ahold of any of it. My last argument for this is a heads up for the parents. Parents should check out what stuff their kids are looking at when they go to the library. You might not think your child would look at something with vulgar things, but sometimes, they're curious. All children are and it's human nature to be curious. I, myself, would go with my child a few times just to see what's in the library and tell them not to take things off the shelves that look bad. Some libraries can't completely fix everything. They can't take every bad or vulgar thing off of the shelves. In the quote it says, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.', I can think of books and magazines that I would never want any child to look at, especially at a young age. Libraries need to be more interested in taking vulgar things off the shelves so that younger children cannot get ahold of. It's one thing for a child to see a book or magazine that isn't necessarily appropriate, but in a library it's a completely different story" 4 4 4 4 4 4 +4399 2 "There are certain books that no child should ever read but in some libraries they don't care whats on there shelf. They don't care if a little kid starts reading a book full of cusswords and other profanity. As long as hes reading thats all that matters to them. Even though in libraries there are kid sections that doesn't mean he can't walk over and grab an @CAPS1 book or what ever he can get his hands on. When I was little I was always in the library and it was never hard to get a book with bad language. We even thought it was funny when ever the book had cursewords in it cause we would just repeat. I remember in school even books the teacher would read to us had cursewords and we would all laugh at it, even the teacher thought it was funny. But if we ever repeated that word while not reading it we would get sent down to the office. Even though we thought it was ok to say just because we read it out of a book. I do agree that books with bad language should never be on the shelf to where a kid can grab it. I think its fine to have cursewords in books when there in junior high but elementary school is to early. Those books are meant for adults only cause some books sound better with cursewords in them. My parents thought it was wrong when I would bring home a book from the library and it would be full of cursewords or slang. But they would never say anything to the library cause they know that I will be hearing these words all the time when I get older. Those are all the reasons why I think books with curse words should not be handed out to little kids." 3 3 3 3 3 3 +4400 2 "Billions of books float from shelf to shelf each day: fictional and nonfictional, horror and comedy. Writers reside in every part of the world composing works from complex life experiences to simple dreams. Being an author, who has the right to freedom of speech, story plots become to have endless combinations. Every reader seeks out a different style. Libraries contain books that tower to the ceilings, any kind, every kind. Books are divided into their individual sections according to truth, kind and cover, each category holding about four options. The necessity for censorship should never be an option. Writers compose for all sorts of people. For some to say what's 'right' or 'wrong' is not a legitamate reason for a piece of work to be removed from a shelf. If, perhaps, more books had ratings such as movies do, an @CAPS1 @NUM1 cubicle could be created instead of allowing young people to have access to such vulgarity. Taking away the enjoyment for some readers, however, is unethical. Whether pertaining to books, music, magazines, etc., censorship is unnecessary. Those who compose the entertainment should not have to worry about the content of their expression and/or interpretation. If the worry is concerning youth, parental guidance should be in affect. Resulting in cancellation can affect those who relate to the source so it's important to consider all options. To each, its own." 4 3 4 4 4 4 +4401 2 "Censorship, or the ability to control what is seen or heard, is a term that is taken very differently from one person to the next. Music, if it is found offensive or inappropriate, can be consored or even banned from listening. Some magazines that are found at grocery stores, libraries, and sometimes even airports, have @ORGANIZATION1 covers on the front to visually censor the front page of the magazine. Movies are given ratings based on their level of explicit material, and when shown on basic cable, they sometimes can have either silenced words, or more appropriate words brought in to fit the dialougue in the movie. Books, although very rarely, have been banned from libraries and censored from the entire world. Some books have been previously censored, but became uncensored and brought back to libraries. In my opinion, censorship should not be based on a single person's view of the material, but rather on the viewpoint of the public. Growing up, my parents would watch carefully about what shows I watched, what music I listened to, or the types of magazines that i looked at. When I was growing up, I loved to watch professional wrestling. I loved to watch big scary guys as tall as seven feet hitting each other with steel chairs, crashing each other into tables, or throwing each other off of twenty-foot steel cages. My brother and I used to have a favorite wrestler that we would for every week, @PERSON1 @CAPS1 could freighten any other wrestler who stood in his way. My brother and I loved to watch @PERSON1 @CAPS1 compete every week for a chance at a world chamionship belt. As time passed, professional wrestling began to welcome in beautiful women into their business. These women would come out onto the ring with tight, shiny, lingerie on as they became eye-candy for the men who watched professional wrestling. One day, I'm watching two girls fighting in a match when my mom walks in. She takes one look at the half-naked girls fighting each other and turns off the @CAPS3 and declares that professional wrestling is too adult for me. Even though I was twelve at the time, I didn't want to get in an argument with my mom about how much I should be allowed to see. Censorship can be based on the ideas and viewpoints of the parents and guardians. I was in grade school when I fell in love with the show, '@CAPS4 @CAPS5 @CAPS6.' @CAPS7 is a show about four boys who go on unintentional adventures to save their @CAPS4 @CAPS5. These four boys, who are all around eleven years old, use curse words that some adults would be afraid to use in every day life. Their behavior is very controversial and the show itself has been forced to ban a few of their episodes for safety reasons. One problem with @CAPS7 show was that my dad loved @CAPS7 show as well, and tried to get my mom to like the show. When my mom saw the show, she immediately banned me from watching it because of its explicit content. Now that I am older, I am able to make my own decisions about what I watch, but as a kid, my parents decided what was appropriate for me. I grew up listening to several different types of music. My brother listened to rap, alternative, and even songs that were in musicals because he was in show choir. My dad introduced me to classic rock, and my mom loved soft rock. Although I didn't necessarily like the music that my mom liked, I learned to love my dad's music and my brother's music. I loved to listen to music from artists like @ORGANIZATION4, @ORGANIZATION1, @LOCATION1, @ORGANIZATION3, @CAPS8, @CAPS9, and so on. My musical tastes branched out into a variety of different genres. One day, I'm walking in the hallway when I hear some music coming from the living room. I go to see what is playing because it sounds unfamiliar. My dad and my brother told me to go into another room and not listen to the music. The song was by a band named @ORGANIZATION2. Even though it might seem unfair, censorship, given by the parents and guardians, is very necessary. Although some people might find a certain piece of material offensive, it doesn't mean that the entire world should be banned from the material itself. If that person wants to keep away from the material and keep their kids from seeing or listening to that material, they are able to do that. Censorship, given by the parents or guardians, is the best way to view censorship. Nothing should be banned from a library, music store, or any other place that sells these materials. Censorship is important, but the entire banning of a certain piece of material is unjust." 5 5 5 4 4 4 +4402 2 "Yes there are many things today that have censorship,but should keep them out of our libraries.I think not.They should not be taken items out of the libraries do to censorships.Maybe if they are such a big concern they could do something else with them besides taking them out. I don't believe that they shouldn't take out censorship items out of the libraries just becase some people have a problem with it.Becase now a days you can go out in public and hear the same stuff they put in those censored movies,games,@CAPS1's,etc.I think that if they are even thinking about taking cencored product out of the library it should be up to the library and not the goverment. If censorship is such a big problem with people they dont have to check it out or look at it. So maybe if they are having problem's with parents becase there kids are checking he censored items out they should have a band.Like if you want to out a item with a censorship you either have to be @NUM1 or have a parent or guardin with you.But if it is still have a problem with it make it like tabacco products were you have to be @NUM1. Then if the libraries don't want to do that they could make a whole room just for censored items.They sould also put the room in a corner or in a less populated area of the library.There should also have to have a sign saying there are sencorhip items in that room and, maybe a sign saying @NUM1 and older. So there are many other was to dealing with censored items.Sence there are so many was to deal with them why take them out.We should not have to take censorship item out just becase some people do not like it.why punish every one becase of a few people" 3 3 3 3 3 3 +4403 2 "What would you do if a woman walked into a library and started throwing a tantraum about how inappropriate a book was, and she wanted it removed from the shelves? Would you just stare and wonder if she was crazy? Would you think that this is a public place, and everyone has their own opinions? I believe that even if someone thinks a material in a library is inappropriate, the material should not be taken off shelves. Many people actually believe materials in a library are too offensive or inappropriate. Unsurprisingly, libraries can't exactly do much about that except remove them from the shelves if absolutely nessessary. However, when you think about it, if everyone complained about a certain book being offensive, there would eventually be no more books! For example, I would not want my little brother reading @PERSON1 books because some chapters @MONTH1 contain a sex scene. However, my brother will eventually be older, and he'll be able to understand. If I would have gotten rid of that book, I wouldn't be letting other people enjoy it. If you were to get books removed that were about @CAPS1 because you were @CAPS2, many @CAPS3 wouldn't be happy to say the least. This could be about any subject matter, however. The more books that are removed from the library, the less people will know about the subject. Eventually, as I've said before, there will be no more books left! Everyone has their own opinion of what is appropriate or not, and everyone's views are different. The solution to this problem is simply to not remove the books. Sure, you might get complaints. But odds are, more people are unoffended rather than offended. Americans do have the right to fight for this, but with the majority being unoffended, it's a tough case to win. I believe all books would be fine left on shelves. If you take off one book, you might as well take off the rest. Next time you are picking out a book, and you find it offensive, think about how other people might want to read it. They might even need the information for a paper they're writing for a class. You never know who might need the information. Don't be selfish; keep the books on the library shelf." 4 4 4 4 4 4 +4404 2 "Tuff @CAPS1 for a little @CAPS2 Censorship is a problem we are faced with today. I believe there are certain instances where censorship is necessary, but I also feel it must be kept in check. Thats why i have a great deal of reespect for organizations and industries that try and stop or put of censorship media untill your more mature and responsible enough to handle it. The most common categories where censorship is not all right in my world are, books and music. A lot of book are very well writen and fabulous to read, but in history or racial, and more cultural books they use words/terms that are offensive to me and a lot of other people to. Also, the main cause in thius is music. In today's society, nearly every person has an ipod and downloaded onto that ipod is music. Im not saying all music is terribly bad, but in most cases i hear about every word in the book and race topics. Rappers are setting bad examples for young adolecents like myself, who pose with guns and have marijuna and crack. Why do they do this? Just to mkae themselves more popular. That is hurting our education and making us think we shyould be criminals. I in my opinion enjoy magazines and tru informative facts from professional reporters. Tghe reporters are on the citizens side and trying to get the true facts out there for us the people. Maqgazines also, tell about annual celbrations and good things happening in the world. Whyere you can find out the scores of sports game and what the weather is going to be like. Last year, i remeber reading 'To @CAPS3 a @CAPS4'. It was so contraversial and talked about blackl slaves and whites treatinbg them like dirt. Also, about black never win a trial and there treated unfairly. I felt embaressed and i was the only african american in the class. It was akward. I felt like if we had a discussion people would talk badly about iot then remember i was in the room then theyd stop. What is the world going to do? Censorship covers an entire multi media spectrum of what is bad and good censorship. It is up to the right people to stand up for what is right and wrong for your children and young adolecents in the world. To help fight this cause! Bring down all that is bad! We can do it, we will fight! Like @PERSON1 says, 'dont hope for a better change or wish for a new world.' If you want change you need to make it happen and stand up for whats right and make a differnce in the world" 4 4 4 4 3 4 +4405 2 "Certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves if they are found offensive. The material should be removed if they offend their gender. Also, the material should be removed if it offend's their religion. Finally, it should be removed if it offend's their race. The material should be removed if it is offensive to anyone's gender. First, the material can make a person feel unworthy. Second, the material can cause an large altercation between the author and the person who is being offended and maybe others. Third, the material can also harm someone by them picking up the book and reading the text. Also, the material should be removed if it is offensive to anyone's religion. This can cause someone to hate every other person with the same religion as the writer, song writer, actor, and/or director. Second, the library should be about education, fun, and interesting contents not by offending someones religion. Finally, this can cause a person or people to act as terrostist from this offensive content. The material also should be removed if it is offending someones race. First, the material @MONTH1 call the race of the person that is reading, listening or watching a name that's very offensive name( not directly but in general). Second the material can speak of the race as if was bad. Last, the material can influence other kids to disrespect that race and not like people of that race. The material that is offensive to anyones gender,religion, and/or race should be removed from the shelves of a library. the library is a place where everyone can read, listen, or watch about something that is interesting not to offend other people in all ways." 4 4 4 3 4 3 +4406 2 "Often we go to the library searching for a good book or magazine to read without actually knowing what books are available. In order to find a book that interests you, you have to explore by picking up the book and looking at the cover and reading its background. Sometimes we come across a book or magazine that is innapropriete for children, and wonder why that book is still on the shelf for anyone to pick up. I believe materials that are offensive to some people should be permitted from the public library. To begin, the books selected to advertise on the shelves of a library are not restricted for a certain age level. Libraries are broken up into different sections on where to find a genre, but a young child @MONTH1 not be aware. I believe they're certain materials found in a library that should not be put out for the public. Perhaps you have a five year old child pick up a book about sex and drugs, this could lead the child to learn things they shouldn't know until they are older. To continue, offensive books should not be put into libraries because they give that library a bad reputation. If someone were to come from out of town and the first thing they seen on the shelves of a library was a book with a naked body or drugs, they would immediately be taken back. Offensive types of books can include books you wouldn't want a first grader to see and also books about racial or religion. Certain people would take offense to a book that was against what they believed in. This could result in a huge confrontation. Lastly, offensive books can include books about someone's opinion on a certain topic. If someone against the writer's opinion started to read the book, they would automatically be offended by what the writer was saying. There is never an agreement when two people have a different look on something. To conclude, although some books are offensive to some people and not to others, we have to be aware of what @MONTH1 cause problems to certain people. I believe any book open about opinion, and books that would be 'x-rated' should not be kept in a public library. We could easily solve this problem by making a seperate place to hold these books so people will not take offense to it." 4 4 4 3 3 3 +4407 2 "What do you think about them taking books, music, movies, and magazines that are offensive? Everyone has a different look on it. It is an important thing to think about. Just stop and think do you want your child looking at that when you are not around? Many would say no, because they are to young to know about stuff that shows to much and other reasons also.Taking all the ones found offensive off the shelves would be the best idea for the case of young teens, and childern. I believe that they should be taking off the shelves, and you have to be @NUM1 or older to buy them in many reason. The biggest reason I think they should is, kids under the age of @NUM1 want to look cool like the older teenagers, but really don't need to see that. With the young teenager think they need to do things like the stuff in music, movies, to be cool and think if they do that they @MONTH1 look cool. Young teenager don't think about what they are doing, and just think it ok because the older ones are doing it and they see it. With magazines, and movies, and music they need to be of age to buy. One big reason to believe that they should be taking off the shelves is because, a lot of kids and young teens thinks they can go in anywhere and look at things that are found offensive. There are a lot of different types, and you have to be of age to go into some places.With believing that they should take them off the shelves, it gives the @CAPS1 a fill free about your child to look at things without think about the offensive ones. I hope with reading my persuasive essay, I hope i relate to someone about the books, music, movies, and magazines that are offensive can relize what i'm talking about with young teens around the ages of @NUM3 and if you take your child with you and they see something like that. With the a stuff I gave you it helps you see the out look on stuff that is offensive on the shelves" 3 3 3 3 4 3 +4408 2 "Should books, music, movies, magazines, etc. be removed from libraries if they are found offensive? My opinion on this is no. In this essay I will explain my opinion and hopefully change other peoples opinions. I will also explain how the past has an effect on present day. In some cases books, music, movies, magazines, etc. @MONTH1 offend any race or a sertain sex, but that is what happened in the history of the @LOCATION1. Some @MONTH1 be very offensive but it only shows a past, others @MONTH1 just be plain out racist or sexist. Those that show the @LOCATION1 @LOCATION1 history are an education sorce so we can learn from mistakes. Here is exactly why I state this opinion, taking this material off shelves is like taking someones freedom of speach away. I hate when I here music that disrespects women but im not going to try and get it taken away because it might just be expressing how the artist of the song loved someone or how history for their family @MONTH1 have been. In conclusion, I believe this material should not be taken off the shelves. After explaining my opinion think about what is offensive or just someone expressing a past memory. If a past was offensive something tody might be offensive, as I was told earlier in my life treat others as you want to be treated. I hope i caught attention and changed some opinions because alot of offence today has resulted from the past" 3 3 3 3 3 3 +4409 2 "Censorship in libraries? A yes or a No? I believe that there should not be censorship in libraries. There are not many things 'offensive' or 'harmful' in most libraries in @LOCATION1. I dont see who would come up with such an abserd idea. To me there are just way to many ways for people to get offended. @MONTH1 I remind you that we almost changed our plege to the flag of our country by getting rid of the word 'god' all because some people dont believe in god. Now we are suppose to get rid of good books just because they are child friendly?! Think about all the amazing books, movies and magazines that would have to be removed from our libraries just because one person says, 'I find this book offensive' or says, 'I dont think this book is apporaite for my child.' @CAPS1 about the people that do like that book and now wont be able to read it anymore all beacuse of that one person? There are sections in libraries for a reason! Just put the naughty books in the eight-teen year or older section so younger kids dont see them. The people who want to get rid of so called dangerous books to childern make libraries sound like there porngrapic shops. Most libraries are not filled with horrible bad books that will cause there child to be mentaly scared forever. Hell there are really that mant books out there anyways. Now sometimes a bad book @MONTH1 end up in the kids section but that dose not mean we have to remove that book forever form all the other people who want to read that book. All librarie workers just have to make sure to put all books in there rightfull spots and nothing bad will happen. The bad books will be in the adult section and the child frendily books will be in another. Have some libabrie workers watching the area and make aure little kids dont go in the libabrie. This will prevent childern from seeing the bad books because they will be in the adult section. In conclusion I answer this question by saying no. There are just way to many good books that would have to be gone forever" 3 3 3 3 3 3 +4410 2 "I belive that all literature of any kind is useful even though it could be offensive. If society plans on taking something off the shelf because it offends a race or gender, than many life-lesson books, movies, magazines, music, etc., would be removed from the shelves. Things such as books or movies are there to take people to different worlds, to help them learn knowledge, to teach them lessons that the real world @MONTH1 not teach them. If materials are taken off the shelf in fear of offending someone, then not very many things will be left just like Katherine Paterson says in her quote. If certian literature were not around anymore then it definitly would not be the same as it is now. Literature are there for us, they teach us, and if if one @CAPS1 was taken away, it would start a riot. Books are always there for us, when we are bored, lonely, or just want to escape reality. Imagine if you we not able to read your favorite book because it was no longer considered appropriate for society. If all books had to be appropriate for every age, it would take all the interesting out of everything. Whether it is a novel or a regular encyclopedia, all books would be dulled down to exceed the needs of our 'non offending' society. Lots of music would lose it's luster and magazines would not be able to gossip about the 'hottest new things.' Movies would get too boring to watch and many things in society would fall apart. Books, documentaries, magazines, are there to help people learn, either if its a lesson about what not to do while your young, such as smoking, if books about smoking were taken away because it offended the part of society that chose to smoke then how would any of the teens today know not to start smoking? Novels are usually fiction, but the characters come to life to readers. They have problems just life people of the real world even though they @MONTH1 not be real themsleves, so if one reads that book, the way that character handles the situation could help a real life person decide on what they should do about there problem. Important history books of movies could be taken away becaus it 'offends' @CAPS2 @CAPS3 to have students learn about slaves. If one @CAPS1 was taken from the shelf because of offending someone then more and more materials would be taken away form society. What good does that do anyone? It leaves many students uneducated about many things that they need to be educated about. It would disrupt the order in libraries if books were being removed because of aproppriateness. If books were being judged on appropriateness then many authors would not be able to write the novels and literature that they do now. No good would come of removing anything from the shelves of libraries. Books, movies, magazines, music, it is all too important to society, it keep us company, it teaches us, is makes life easier at times when the world wants to kick you while you are down. If one person decided that a book was not appropriate then they can chose not to read it, but they should not decide to help remove that book from the shelves of libraries. They would start a landslide of trouble that would effect everyone in the @LOCATION1 and maybe even across the globe. Information of any kind is a good @CAPS1 no matter the content of it. So removing any sort of material from our libraries is a horrible idea." 4 4 4 4 3 4 +4411 2 "The content in todays materials are not always subtible for young children. Information now distributed in the media and other networks can be harmful for some young children to read or be surrounded by, including video games. By growing up in a violent enviornment, children observe and have the greater chance at becoming violent. The continuence of censorship in todays materials are a necessity to the well being of the children in todays society. In video games there are ratings that help explain wat is subtible for each age throughout childhood and adolesence. Movies are also the same, making it harder for younger children to see certain movies. Books and magazines are not as well protected although they should be. Age and maturity plays a huge role in whether or not a child should be aloud to read and be introduced to specific material. Violence is a major trend in video games in todays world, and some of the influence it brings on children is unecessary and eventually detrimental to their well being. The reason ratings should be changed is because children obsorb their enviornment and become what they see, so if they are introduced to violent behavior they have a greater chance in becoming violent children. In libraries there are sections for every age group, specific genre of books, fiction, and non fiction. But some of the explicit material in books and magazines should also be censored before they are distributed on shelves and allowed available for young teenagers and children. As a part of the community libraries should take apart in the well being of the children and not expose them to information earlier than necessary. Throughout my own experience, I have seen children grow up too fast when exposed to certain knowledge. Especially in todays music, radios do a good job in editing content in songs, by puting parental advisory on certain cd's, but this still does not stop them from buying the material. In games including, @CAPS1 of @CAPS2, @NUM1, etc. teens are now becoming accostumed to this type of behavior, that is not safe nor condusive for children. By censoring certain material it disallows the continuence of bad behavior amongst our youth today" 4 4 4 4 4 4 +4412 2 "READ WITH @CAPS1 I do not believe that libraries carry the responsibilty to censor reading materials. When a person enters a library, they immediately must infer that, because libraries are place in which knowledge is accumulated, that some of that information they find @MONTH1 not cooincide with what they believe. If a person believes a book is offensive, they can just as easily put it down as they had picked it up. Obviously, however, there are certain exceptions. Childrens' sections, of course, should be limited to those intended for younger readers. Putting '@CAPS2 and @CAPS3' into a childrens' section hardly seems logical. just as much as putting '@CAPS4 @CAPS5' into the adults section. In addition, author @PERSON1 once stated that if she was able to ban a book from a library, the same right would have to be given to all other patrons as well. Thus leading to all the books in a library being unable to be read. the knowledge contained within them unknown. There are, as with any ordinance, exceptions. For example, if a library is intended solely for the use of younger audiences, censorship should hardly be considered a crime. The exclusion of inappropriate items, such as permisquous reading material, keeps childeren from formulating ideas about concepts they @MONTH1 not be able to fully understand. With all these things considered, banning books from a library hardly seems to be the best course of action. A library should be a place of enlightenment. Opposing ideas should be presented. Leaving the readers to formulate their own decisions about what they believe. Because books are like atoms. When two opposing types collide, a burst of energy is released." 5 4 5 4 4 4 +4413 2 "A @CAPS1 is a place for people of all ages to come and get a book, magazine, music, movies and much more. Libraries are a key essential to learning and helping those with reading skills. Studies show that reading will make you much smarter and able to understand and comprehend well. However, in my opinion, offensive reading, viewing or listening material does not belong in libraries, to some extent. As I stated earlier, libraries are a place of learning and for developing skills. Books that are for 'adults' can be found in adult type stores or even at a regular local book store. Parents bring their children to the @CAPS1 to support their reading ability and to advance it. They don't want to have to worry about making sure their kids are not looking at anything bad. A few years back, I herd about a teenage boy that would go into the @CAPS1 about once a week to look for movies that this parnents would not approve of. Later on that boy was caught and punished. If those kinds of movies were not there in the first place, his parents would not of had to worry about it. Almost everywhere you go and everything to see and hear has some type of wrong background to it. Parents should feel okay and worry-free when it comes to letting their kids do something as simple as going to the @CAPS1. This problem can be easily fixed with removing that issue. I strongly believe that @CAPS1 material should be censored in the way that those who should not see it, can not see it. On the other hand, material such as religious or cultural learning items that people find offensive should not be taken off the shelves. Religious and cultural books, music, movies, and/or magazines are for those to learn. Form what I have seen, someone @MONTH1 want, for example, a book about @CAPS2 taken off the shelf because they are @CAPS3 and might not support their religious ways. I find this wrong because it is a free country that includes freedom of religion and they can't be denied informing others about that religion. Libraries are a place to feel safe and relaxed. Everyone likes to sit in the @CAPS1 for hours and soak in a good novel. Material that is found offensive does not belong their, unless it is for real educational learning." 4 4 4 4 4 4 +4414 2 "The subject of censorship in libraries has been brought upon many times. Censorship is a rule prohibiting the view of a book, music, movies, magazines, etc. This censorship is because of it's rating or the content in it is inapropriate for some viewers/readers. Of course, many people have their own opinions about this censorship in libraries, as do I. I believe that censorship is a good idea in some cases. These cases being music, or movies. However, I don't believe censorship is a good idea in books. Children all over the world read books and as time goes on, our children are becoming more and more advanced and read on higher levels. This is where censorship comes into play. Libraries want to censor higher reading level books because these books include profanity, violence, sex, drugs, and any other aspect of adultry. I disagree with the censorship of these books because this is basically telling our children that they can't challenge themselves or they can't learn about certain things because of their age. These books, in my opinion, can only help them. These books will help them learn about society, what's wrong and what's right, and will help them, grow as they get older. The higher reading level books help them understand words better, and also help them learn about literature and past times. When I was in middle school, I was not an advanced reader by any means, but I did like to read occasionally. One day, I went to the library in search of a challenging book. The book I found was a book called '@CAPS1 @CAPS2' by @PERSON1. This book was a fictional story taking place during the @LOCATION1 @CAPS3. As I put in my pin number to check out the book at the front desk, the librarian informed me that I couldn't check out the book because it was a young adult book, meaning 'too advanced' for me. She said I needed parent consent before I was able to check it out. That night, I asked my parents about it and asked if I could read it. They said yes, mostly because they were so thrilled that I even wanted to read a book so challenging. The next day I got a note from home informing the librarian that I could read the book. I was so thrilled when I was finally able to check out the book and read it. From my experience with the library censorship, I think that the best route to take is that if there is a parent/guardian who is over @NUM1, and they approve of the checking out of the book/magazine or whatever it @MONTH1 be, then the child or student is allowed to check out said book/magazine etc. In conclusion, the censorship of books, magazines, etc. is an overall mediocre idea, with some exceptions. The rule of parent/guardian consent is the best route to take in my opinion.Of course, this subject will be argued for many years to come and many people will have their own opinions. Each side of the argument has valid points, but I think that it is imparative that we keep censorship out of books and keep our children learning and reading at their highest ability, no matter what the reading level is." 4 4 4 4 4 4 +4415 2 "Should certain materials in libraries be removed from shelves if they are found offensive? I do not think books or any other materials should be taken off the shelves for some people? There are many reasons that the books should stay on the shelves. I am going to tell you all of the reasons I think the books should stay on the shelves. One reason I think the books should stay on the shelves is because some people might need the books for a school project. For example, a student could have a project over @CAPS1. A book on @CAPS1 could offend many people. Just because it offends some people does not mean it should be taken off the shelf because other people might need that book. Someone might need a certain book for a project. If the one book they need is taken off a shelf because it offended someone they could fail a class. That is one reason I think the books should stay on the shelves. Another reason I think they should stay on the shelves it's their opinion if the book offends them. Just because they don't like the book and it offends them doesn't mean other people do not want to read it. Why would you take a book off of a shelf because it offends one or a couple people? There could be many more people who want to check out that book and read it. If a book offends you just dont look at it. Why would you look at something that offends you? I don't understand why libraries would have to removed a book from the shelf just because it offends someone. Especially, when that person could just ignore the book and pay no attention to it. That is my last reason my opinion is what it is. So after reading this I hope you understand why my opinion is what it is. There is no point in taking books off the shelves. People need them for research and projects. It is someones opinion if they do not like what the book is about and if it offends them. For example, if i didn't like something on a menu at a resteraunt they are not going to take it off the menu for me. My last reason the books should stay on the shelves is the people can just ignore the books and not look at them that would be easier than taking books off the shelves. THE @CAPS3" 4 4 4 4 4 4 +4416 2 "Is @CAPS1 Right? Is @CAPS1 right to have censorship in libraries? This question could be answered in two very different opinions. Some people @MONTH1 want all censorship items out of public areas. On the other hand, there are people that @MONTH1 like to read this type of material. This is a very opinionated topic. In my opinion, libraries are places I go to find a book to read, research, listen to music, rent movies, or relax while looking at a magazine. Libraries are puble areas and not everyone is going to agree. Everyone has their own favorite book or genre. I believe @CAPS1 is unjustiful to take away censorship in libraries because this @MONTH1 be ones favorite genre. Why do libraries need to limit their choice while noone else does? For example, many parents would love if all clothes stores would ban holes in jeans because they are to revealing. The stores don't. They do not ban holes in jeans because many teenage girls like holes in their jeans. American @CAPS2 is not going to band capris just because I do not like them. There are different favorites, likes, dislikes, and opinions. A great resolution for this dissagreement is catorigizing. By putting all of the censorshiped books, movies, magazines, and music in one area, @CAPS1 will decrease arguments on this topic because all of the people that like censorship in libraries will be together in their area. Where as the people that do not want the censorship in libraries do not have to be around @CAPS1. This is a quick and easy fix. There is no reason to take away ones favorite genre because someone doesn't like @CAPS1. If this is true then our world will have nothing because not everyone likes one certain thing. For instance, I do not like blue aeropostale shirts. Pink are my favorite. My friend @CAPS3 likes the blue shirts and hates the pink shirts. We both write to the manager to get rid of the shirt color we do not like. This is nonbenifical for either of us because now the one we do not like is got but so is the one we do like. This is nonsense. There will be nothing left in the store. Pople in charge can easily sort material at a store or a library to make @CAPS1 fit the communities likings. Getting rid of material is not the answer. Catorigizing is the fix that needs to be put into action immediatly" 3 3 3 3 3 3 +4417 2 "In our society today there is an enormous amount of exposure to materials that many adults didn't have when they were a child. Young children today see drugs, alcohol, sex, and teen pregnancy portrayed as things a normal child's everyday life consists of. Certain television shows, books, and even some popular songs condone these behaviors that many @CAPS1 are opposed to. While libraries @MONTH1 seem to be the most unusual place to have access to these materials, many young children can checkout books that are simply not appropriate for their age. Censorship of materials, such as books, movies, and music, that are found offensive or inappropriate are a way to teach young children that life isn't all about what the media portrayes it to be. One very important reason to allow censorship of materials in libraries is that you might not know what type of book you're looking at. Many children, and adults too, walk into the library and look among the books until they see a cover or a title that grabs their attention. While most of the books in a library are age appropriate a child can still grab a book that isn't something they should be reading. There are mass amounts of influential materials from the media and also from peers that a child is subject to. Censorship in a library will make it a safer place for children to go and pick up any book in the proper section for them and will also allow the @CAPS1 to not have to worry about what their child has selected. As author Katherine Paterson so rightly said, 'All of us can think of a book that we hope none of our children have taken off the shelf.' @CAPS1 should never have to worry about what their child can get ahold of in a public library. A second reason to allow censorship in libraries is that video stores already have censorship in their shops, along with ratings on all their movies and video games. Most video stores have a seperate section of movies that are deemed to have 'adult content' in them. A minor cannot walk into a movie store and go to the section of movies deemed for adults, or someone over the age of eighteen. A minor can't rent an @CAPS2-rated movie without proving that they are seventeen, or they have an adult to rent it for them. The same thing occurs with video games, for example a video game with a rating of @CAPS3, or mature, cannot be rented or bought by anyone under the age of eighteen. @CAPS5 censorship should be applied to libraries. Having seperate sections based on adult content allow movies and books to be set in a seperate location so that no child can possibly rent something that they have no intention of watching or reading. @CAPS5 type of censorship also allows for a parent to choose if their child can see it. An example of @CAPS5 would be for a sixteen year old boy. While he cannot go and rent the @CAPS2-rated movie, if his @CAPS1 deem it acceptable for him to see, then they can rent it for him. @CAPS5 gives the parent control of what their child sees, instead of the child having full control. @CAPS5 same type of censorship that video stores have is a perfect way to place censorship in a library. Perhaps the most important reason for censorship in libraries is the early exposure the materials give to the children. Many young children have been watching television shows or hearing things on the news that make it seem acceptable in our society to drink at parties when you're not of age, do illegal drugs for the feeling, and have sex at an extremely young age because it's what 'everyone's doing.' @CAPS5 is a very risky path to let the young children in our society take. Allowing our culture to become @CAPS5 way can lead to various sorts of problems, as we have seen all to well. Many young kids, some as young as fourteen or fifteen years old, go to parties and drink. When it comes to getting a ride home they go with their seventeen-year-old friend who has a license, and who has also been drinking at the party. Now hopefully the story ends that all of the children make it home safely, but that is not how it works in many cases. There have been so many drunk driving crashes recently in our nation with children who should not have even been drinking. @CAPS5 ties back to censorship because of the way these kids were pressured into drinking. Many adults in the society blame it on peer pressure; but where do the peers get the idea that @CAPS5 is acceptable? These ideas come from the influences that the society's children are susceptable to. Censorship in libraries is one way of restricting the ideas children are exposed to, and hopefully allowing them lead safer and healtheir lives. While there are so many other factors in the exposure to children of these materials, stopping the exposure in libraries is one way of eradicating early exposure. Young children in today's society and culture are exposed to excessive amounts of inappropriate materials. These three factors, the inability to know what you might be checking out at the library, the fact that video stores already have censorship, and the unecessary exposure to young children, all lead to the need for censorship in libraries. Today's society is all about the freedom to allow anything to happen than is acceptable. While some @MONTH1 see these books or movies as their own freedom to speech the truth is that it is harming the society, hence the need for censorship in libraries and other places where children have access to movies, books, magazines, music, and video games. Removing the offensive books, magazines, and movies from shelves in libraries around the country will lead to a safer culture for children to grow up in, and a society where things such as drugs, alcohol, and sex aren't condoned near as often" 5 5 5 4 4 4 +4418 2 "Library books offensive? The right to remove a book or not isn't up to us ,people, per our opinions. If someone has an issue with the book; next time don't get it. I know that we shouldn't have the right to remove books from the librarys. It's not up to us to make that choice. I know people sometimes find somethings wrong or inappropriate in a book at the librarys', but if it wasn't to your liking don't read the rest of it or refer it to a friend. I have had problems with this before. I went to check out a book and my mom said that she didn't like the topic that it was about: honestly its her opinion. A person should have a right to his/her opinions but it shouldn't affect someone elses. One person @MONTH1 really like the book and someone else @MONTH1 hate it, obviously their are people out there who enjoy that type of book so there isn't a really good reason to get rid of it. The only person who should have a say in getting rid of a book would have to be the librarian. That person knows what is acceptable and what isn't for the library. If it includes something graphic or racist, you can talk to them about it in a clam conversation, because they maybe a librarian but they dont read every single book that is in the library. Some items can be offensive to some but not others. The library is there for knowledge and entertainment. We can have opinions on matters and discuss them appropriately without causing a big ordeal because their could be reasons why things are where they are. You need to leave the choice up to the person who is educated on the matter/ who is in charge of the library" 3 3 3 3 4 3 +4419 2 "To whom it @MONTH1 concern, Censorship is an issue that has plagued our society for centuries. It is not only unnecessary, but unconstitutional. As @CAPS1, we have certain @ORGANIZATION1 that we are guarenteed by the documents that keep our society out of anarchy. If the right to pick what liturature to read, watch, or listen to is taken away, where will that put our country? Censorship should by no means be allowed in our country today. In the @CAPS2, the @CAPS3, and the @ORGANIZATION1, we are given certain @ORGANIZATION1. Some of these @ORGANIZATION1, including freedom of speech and freedom of the press, have already been contricted, which is 'wrong' in the eyes of the government, but nevertheless, it is taking place. We @MONTH1 not have 'lost' these @ORGANIZATION1, but they have definitely been constricted. Why should the government be able to tell us what to read? If censorship is allowed, what is to come is frightening. If our government, which is supposed to be 'for the people' tells us what we can read and not read, what is going to stop them from telling us what to wear, drink, or even eat? Censorship in libraries is one of our biggest issues. There are countless examples on why censorship of written liturature should not be allowed. For instance, if a college student is writting a research paper about the effects of rape on a child, but the government sees rape as 'too graphic', what is this student to do? He or she should be given the right to use what materials are necessary to write a fully-informed paper. But by censoring our libraries, and taking books out, the government is hindering the education of it's countries youth. Some @CAPS4 classics are also being speculated against. The @CAPS5 of @PERSON2 has been known as a classic since it was written. It is used in classrooms everywhere around the country for education. But recently, the availability of the book has been questioned. Throughout the novel, the 'n-word' is used, but never as an insult. During the time-period of its writing, this word was more common, and had a much less severe meaning than it does in modern day societies. But because time has changed it's meaning, it is being removed from libraries and curriculums across the country. This is unlawful censorship. One of the greatest books of our time, an @CAPS4 classic, is being removed from the lives of our youth because of 'racy language'. Censorship is not only taking place in written liturature. Movies and music are also under the magnifying glass of censorship. Movies are rated for a reason, to give the viewers an age group for which the movie is appropriate. This is helpful to parents to be able to self-censor their children. But it is not up the the government to be able to choose what a specific child is able to view. It is a parents right to be able to expose or not expose their child to whatever they see fit, not that of our country's lawmakers. Music is one of the biggest part of our society today. With the invention of iPods and @NUM1 devices, music has become much more common, and portable. Censorship is becoming more severe with the change of music style. The music styles of modern teenagers greatly differs from that of their grandparents. Almost nothing is seen as unacceptable by many of today's rappers, as displayed in their choice of lyrics. The music business is taking quite a beating for what has become the most popular. With the most common themes of sex, drugs, and money, it @MONTH1 seem offensive to some citizens, but others @MONTH1 just shrug it off as a normalcy. So how can someone say 'No, you @MONTH1 not listen to that,'? This should not be allowed, yet it is. How can one person, or a group of people decide what is acceptable and what is not? They cannot. Censorship is morally wrong, as well as lawfully wrong. Taking the media from its citizens, such as books, movies, and music, is unconstitutional. What would our forefathers think of what censorship has become? Before you pull that 'unacceptable' book off the shelf, remember the @ORGANIZATION1 of our great countries citizens, and the @ORGANIZATION1 of individuals like yourself. Sincerely, @PERSON1" 5 5 5 4 4 4 +4420 2 "It is a prominent question of debate whether or not certain materials in libraries such as books, music, movies and magazines should be removed from the shelves if they are found offensive. Although there are materials that @MONTH1 me harmful to children, freedom of information is far more importiant than protection because censorship is unconstitutional, prevents readers from an impartial perspective, and in some cases hides pressing societal issues that are deemed improper by the censors. The @CAPS1 @CAPS2 states that freedom of speech, religion and the press shall not be denied or abridged. In more general terms, the @CAPS1 @CAPS2 grants freedom of expression. Censorship is effectively unconstitutional. It prevents freedom of expression. Students and scholars alike cannot access all information that should be avaliable to them if not for censorship. Although private business and libraries can be permitted to censor because they have their own contracts that permit this, public libraries and schools are effectively breaching the constitution when they censor. Censorship prevents a whole and complete perspective on an issue. Censors often ban particular books because of personal views of alleged 'immorality.' @CAPS5 a clear and complete access to all information, how can one make any valid conclusion about anything? If, for example, one wants to learn the difference between an agnostic philosophy and a deist one, but has no access to any agnostic books, which were banned by intolerant religious zealots, you cannot effectively learn anything. Every special interest group wants to ban a certain type of material. Author Katherine Paterson said that 'if I have the right to remove that book from the shelf--that work I abhor--then you have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @CAPS6 this is true. If every special interest group deems it proper to censor material that is against their interests, there will be no material left. There will be no knoledge left. Withought knowledge, we as a human race are left in the dark. Many books are banned that address great problems of society. @PERSON3's @CAPS7 @NUM1 addressed the growing problems of censorship and the dangers of technology. As the fireman @CAPS8 @PERSON4 burnt books, so ironically the novel was censored. Perhaps this is a ploy by the censors to defend theire special interest, that is censorship. They feel powerfull when they restrict other people's freedoms. A novel by @PERSON2, @CAPS9 @CAPS10, was banned. Apart from vulgar language in the book, @CAPS9 @CAPS10 also denounced free will and portrayed the US's brutal bombing of @LOCATION1 in @CAPS13 @CAPS14 @CAPS15. This book reveals much about human truth, yet it was banned. How will society ever change if any time a revolutionary book is written it is banned? Censorship is a great problem. Although there are many works that are meaninglessly violent, brutal and cruel, no book or any other material should be censored. In public libraries and schools, censorship is blatently unconstitutional. Censorship prevents people from seeing the whole perspective, and censorship hinders societal change. Censorship must be denounced as a restriction on our inteligence and liberty." 5 5 5 4 4 4 +4421 2 "Children are our future because when I am old they will be the ones who are caring for me, so for me censorship is big deal for me. It's a big deal not only because of how it will affect my children, but because it will affect me and what everybody else will be able to read. I agree that censorship is an importaint issue but to what extent should it be taken. People should have the right to read what they want to. They should also be allowed to find it in their local public libraries. My veiw on censorship in public libraries is that most things should be allowed to stay on the book shelf. I can understand censorship to an extent, but taking books out of a public libraries makes it hard to chose where to draw the line. You don't want a book taken out just because it has a bad word in it. Just because some books are classics that everyone knows, does that mean that we shouldn't take that book out of a public library? I do beleive that some books should stay because adults don't want to be reading kids books they most likely want to be reading a more complex book. I think their are some books that should stay out of the library though. A example is books that are extremly racist. These books should be kept far away from are children. This is needed because younger children might try to act out things they might hear or read because there are audio books and those would just make them say those things. This could cause them to get in trouble for things they don't understand yet. There is things that you can do as an alterative to keep these things out of the hands of children. There is already one that is used in public libraries and it is seperateing the adutl books from the children books. You could also move these two sections to oppisite sides of the library. the books that are more explicit cold be put higher up such as on a top shelf. Most kids would not be able to reach as high as a adult. These are my veiws and ideas on censorship in libraries. The ideas and veiws that I have are most likely different than most people. I thought that they were good ideas though. Ones such as seperate section for kids and adults. I thought my best one was puting the more explicit books up higher and moving the sections farther a part." 4 4 4 4 4 4 +4422 2 "Books, music, movies, and magazines are all a form of expression. We have the freedom to @ORGANIZATION1 the way we feel or think, but can it be to graphic for some to read? I believe censorship in libraries are needed to protect the minds of children and people who are easily influenced by the thoughts of others. Books are a major factor in expressing the way one feels about a topic from romance to horror. Many children like to read books or comic books that invovle a great deal of violence. Childrens mind's are like sponges, which means they soke up anything they read about and it has a great chance at influencing their functioning to everyday activities. If you go into a music store you will find many different types of music from rap to blue grass. I've noticed in my school that a particular type of music that stands out is rap and the favorite artist is @ORGANIZATION2 @PERSON1. @ORGANIZATION2 @PERSON1 has been known for rapping about drugs, sex, money, and violence. Many teens think that if their favorite artist can do all this why can't they? I've only listened to a few songs by @ORGANIZATION2 and in every song one of those four key topics comes up. Like @ORGANIZATION2 @PERSON1 the movie industry is starting to come out with more and more movies about drugs, sex, money, and violence. Many students in my school talk about the latest comedy movies like '@ORGANIZATION1', 'The @CAPS1', '@CAPS2' ect. and how they turned their life into something like those movies when they go on @DATE1 or @DATE2 break. Movies like those are funny to watch but for someone who is easily influenced shouldn't be watching them. Books, music, movies, and magazines, they surround us with their stories and thoughts of another human being. We do have the freedom and the right to @ORGANIZATION1 ourselves but we also have the right to take it away if we feel it is endangering the minds of others. I think censorship in a library from certain things is a good option in cleaning up a mind poisoning mess" 4 4 4 4 4 4 +4423 2 "I think what ever is offensive should be taken off of the shelf because it is inoproperate. Books do not need to be like that because they are supposed to be fun for you and help you learn, yes you can have a little violence in an action/adventure book to get the mood of the character, setting of the story, and to understand it perhaps. Offensive books can be okay at times, so if you have a comedy magazine, or book that is making fun of something or someone, it can be taken in a offensive way, or just a joke, and a none offensive way. To most people they are going to want to take those kinds of books off of the shelf. Offensive books to them, such as parents or maybe even friends, they can teach a child wrong, and that child @MONTH1 not learn the right way. Kids when they are little, their brains are like sponges, so they learn, and remember stuff well at that age. A child getting a hold of a book or being tought something from a book like that will most likley remember it. I think those kinds of books should be taken off of the shelf because, kids dont need to be reading that kind of stuff when its allready on television, and talked about. They need the edicational books that can teach them, and prepare them for their uppcoming higher grade levels, so then they would have a fresh start on new words or grammer." 2 3 2 2 3 2 +4424 2 I think they should be taken off the shelves if they are to vaulger to young children. like if it has to deal with sex or violence they should be taken off shelves. they should only be aloud to put @NUM1 stuff on the shelves. i think that they shouldnt even makes books or magazines like that unless they can keep them hid from people under the age of @NUM2. but people are gonna do what they want to do. thats all i have to say. have a nice day. 2 2 2 2 2 2 +4425 2 "Katherine Paterson made a valid point in stating that some books are to offensive for some people to read, but that does not mean they they should not be read. Time and time throughout someone's life we hear things that we do not like nor want to be bothered with, but it is good that we do. Libraries should have to right to open all types of books to their shelves and not have them be censored by the public, this is why. We, as people of the @CAPS1 have battled through hard times. @CAPS2, racistism, and extreme poverty or depression are just a few to recall. Having delt with those issues we alwaying tend to repeat them out of lack of knowledge. Slavery and @CAPS1 @CAPS2 @CAPS3 were some of the @CAPS1's lowest moments and they were also very gruesome. Recalling those memeries is difficult but something that needs to be done; if books were to be cencored then many young adults would not be educated and could repeat such horrible actions. Pertaning to movies, music and magzines the same laws applies. Though not in the same way, many times these publications are written about current news or social aspects of life. Music is a form a expression and everyone has their own taste. Not having to opition to chose froma variety of styles is wrong and unfair. Music can not only be an expression feeling about love or angry but it can also teach life lesson's. Some artist like to sing or rap on their life journey. This can educate others in to knowing that if you do this then this is the result, good or bad. In a magzine they tend to lean towards more current topics such a politics, jobs, or young adults lifestyles. Movies apply to the same rights and topics. Each on is egualily as important and if a group of citizens feel that it is not then who are they to make that call. What gives a group of people the right to say this is inapporicate and that you should not read it? They do not have it. In the constitution is states that you have freedom of speech and that means you can express it anyway you choose. By censoring what people read that is in a way taking away that author right to speak. Now, that is unfair. Though Katherine Paterson made a vaild point in saying that some books are to offensive to read, she just simiply is not right. A library is supposed to be a place where people can find a book, music, movie, magazine of any genre and read it. If matericals were cencored then that is unfair to someone else who does want to read it. Bottom line is that you have free will and you have to power to choose weather or not you want to read something" 4 4 4 4 4 4 +4426 2 "There are things in the world that are not ment for certain people to see. Things like rated @CAPS1 movies, @CAPS2 books, alcohol, and @CAPS2 music are not ment for children. Yes people have rights, they can view whatever they want. If a @CAPS4 wants to see a rated @CAPS1 movie or drink a beer that is the parents choice to let that @CAPS4 see that movie not the person running the store. If you are under the age limit a store keeper should have the right to tell you, you can't go in the store or buy his product. Is it okay for a storkeeper to to tell your @CAPS4 no? Some would say yes to this and others would say no. If your @CAPS4 is trying to buy a movie with guns, blood, and killing, and you don't want your @CAPS4 to have this movie you might be mad if a store keeper let your @CAPS4 buy it. On the other hand you might be mad if this store keeper told your @CAPS4 he wasnt allowed to buy this movie. If the rated @CAPS1 is based on maturaty how does this store keeper know how mature your @CAPS4 really is? Your @CAPS4 could be a one that likes to copy the things they see on movies, the store keeper doesn't know if this is true or not. He doesn't know this @CAPS4, he can't say if he is mature enough to watch this movie with guns, blood, and killing. How would this store keeper feel if this @CAPS4 watched this movie he let the @CAPS4 buy and the @CAPS4 went out and killed someone, how would you feel if this happened? This wouldn't happen if there was an age limit. If a group of @NUM1 year olds who just got their license go into a liquor store and try to buy beer, who is going to stop them from drinking and driving if there is no age limit on drinking? Lives get wasted when teenagers make choices like drinking and driving. When your @NUM2 years old you don't think about whats going to happen after you make a choice, you just think about how fun it's going to be while your doing it. Most 12-@NUM2 year olds aren't mature enough to make decisions in the spure of the moment. There for there should be an age limit for some things, maybe not all things in the world, like weather or not your @CAPS4 can buy a candy bar or a soda. But an age limit on buying an @CAPS1 rated movie, alcohol, guns, knives exc. What would the world be like if children went around with these things? With an age limit on ceritain this there wouldn't be a probelm with these things" 3 3 3 3 3 3 +4427 2 "What do you go to the library for? In earlier times libraries used to be the place where you went to study. They were no computers, and so you had to go look up your work in a educational book at the library. Is that truly what people are doing at the libraries now, or are people there to look at vulgar books, magazines, and movies? A library is meant to be the place where you can go to work in peace and have a helpful resource of educational books. But, now you can go to the library and be tempted to look at books you shouldn't be looking at. Instead you could be on the computer the whole time playing games of some sort. The possibilites are endless. People now could go to the library and check out a magazine, movie, or book on: pornagrophy, drugs, achlocol, or worse. Is that really what you want your kid to accidently pick up at the library? Presonally I myself witnessed a little kid pick up a porn magazine at the library, and his mom had to grab it very fast before he had the chance to look at the magazine. The library should not be used for this, and the treat of young kids accidently looking at these materials should not be happening in the library. The music some one could listen is also very bad, and your child could listen to that. Then what if they want to keep listening to it? Yes, the world does have a huge impact on what is put into the library; because, drugs, sex, scandals, and achlocol seem to be what most teenagers are intereseted in at some point in their young life. But a library is a community building and there is no stopping some one from coming in and easily getting these vuglar things. The thoughts of the youth is completely swayed after they watch, read, or listen to this. And, this needs to be controled. Women and children can find all of these materials offensive. These materials need to be censored more then what the are right now. Libraries should be a safe place where people can go to study or get a book, and not to be tempted to look at something they should not be looking at. Many people find this offensive. Yes, in the end libraries are a great place, but the people who do not use libraries for the right reasons are why these materials need to be censored at the libraries" 3 3 3 3 4 3 +4428 2 "A library card is one thing a kid always looked forward to. It's the first piece of identification that many kids have that they are allowed to carry around themselves.The card opens up a whole new world of entertainment and storys that can take you anywhere you want to go. Once a kid owned a library card, they were allowed to check out any book they wanted out of the huge selection of items in a library. But how do you keep a young child from checking out a book, movie, or magazine about inappropriate adult material? A solution to this problem should be formed so that people can be protected from material they don't want to see in a book, movie, or any other source of entertainment. Libraries today normally have a specified children's section, where picture books and short stories litter the shelves. The rest of the building is a scattering of books and other materials sorted only by author name and genre. The only way to understand what the item is about is to flip through the pages or read the back cover and try to find a hint of how the plot goes. This could be dangerous at times because not all materials give a specific summary of what happens. I once rented a movie expecting it to be a scary thriller about a killer in a trailer park. It ended up being scary for another reason, as multiple uncensored sex scenes were displayed throughout the first couple minutes of the feature. I had no idea the movie was going to involve scenes like that and I was disgusted that there was no warning. I believe items like that should be placed in a seperate area or at least be required to give a summary of the kind of offensive material in them. Libraries could collect viewer comments, allowing people who had checked out an item to write what they thought about it. People could then read these comments before checking out that item. Viewer comments would be a good way to get someones else's opinion on what the item contained before another decided to rent it. Another effective way to help this problem would be to give materials a certain rating, like the ratings of movies when they come out in theaters. A specific rating would warn viewers or readers from checking out an item that is offensive or inappropriate. Libraries could also give specific age ranges according to the ratings on an item, not allowing anyone under a certain age limit to check out a book from the building. Ratings would help keep offensive books out of a child's hands, or that of anyone else who didn't want to be exposed. Libraries hold all different kinds of materials about any subject you could think of. They can open a whole new world to learn and be entertained but also a world of inappropriate items. I believe items with offensive material should be either put in a seperate area, or given a certain rating in order to warn people before checking it out. Allowing viewers to make comments about the material could also be very helpful. Libraries are a wonderful place full of great stories and adventures, so they should not be polluted with offensive and inappropriate material" 4 4 4 4 4 4 +4429 2 "Do you find books you read offensive? How about music, or magazines? I sure don't. I can't think of why someone would be offended about a book they chose to read. If you sit back and think about it, there should be a low amout of reasons that someone should be offended by a book that is written for the general public. I believe that it is possible for there to be books that have offensive words or actions in them, but unless they are directed towards the reader, or intentionally being used to offend someone then it is just a book. A lot of books, especially ones on history, use language and actions that were used during that time. They use them to show you and inform you on how things used to be and what it was like during the time. Not very often, or that I have ever seen, do the authors make a book to just to put someone down. I tend to see books just explaining things and using offensive words just to show how things were and to set a tone of the book. Music on the other hand could be thought of as different. Many people could take music in the wrong way. A majority of offensive problems spawning from music come from the genre of rap. Rappers tend to express themselves throughly, and in doing that often times use very offensive language. I personally don't get botherd by the music, because they are usually refering to their own life and how things went with them. Music can also be on the good side too. When you get the calm and collective music, it tends to help people and can be used to help people relax. Therefore music can be either way, but it mostly goes about who the person is and how they react to what they listen to. Then you have magazines. Personally I think they are the worst of all. Magazines tend to go one way or the other. They either put a person down and be completely negative towards them, or they are positive and say nothing but good about them. One big problem with magazines is that they write down what they hear and what they want to hear, not always knowing the full story. In that case they have a very high chance of being very offensive towards the person or group they are talking about. Magazines always have a positive, but where there is a positive they have a harsh negative thing to put in with it. In these regaurds, I believe that there is nothing wrong with a library. There are always going to be negatives and positives, but libraries tend to stick with the positive side. Plus if a book looks like it might end up being offensive towards you, then there is no one that can tell you that you can't just put it down and stop reading it. With music, only get stuff that you like and if you are easily offended don't listen to that music. Libraries just give you the opportunity to possibly get something you could enjoy. There is no reason someone would not be able to refrain from going in and getting an offensive book. In saying this, it can go either way. I don't believe there is anything worng with libraries censorship as long as you can use your own good judgement." 4 4 4 4 4 4 +4430 2 "Imagine your favorite book, song, and movie. The ones that you love to watch, listen to, or read a million times over. The ones that you keep on checking out from the library again and again because you love it so much. Now imagine it gone from the libraries. What happened to it? You think that it has been checked out, but later you find that it has been removed from the shelves because someone found it offensive. What can you do? When you go to the library, you usually expect a huge selections of books and other materials to choose from. A library helps many people of all ages be able to choose whatever they are interested in. This is one reason why libraries are so popular among all people. If the libraries were to begin to remove items off of the shelves that they found offensive, many people would not be able to find all the items that they enjoyed anymore. I believe that everyone is entitled to their own opinions. Libraries should accomodate as many people as they are able. Removing material from the shelves @MONTH1 make some people happy, but it would also take away items that many people find enjoyable. Libraries should not remove items from the shelves if they are found offensive. Doing this could result in less material for people of all ages. If you find something to be offensive, all that you have to do is not check the book or other material out. In Katherine Paterson's words, 'If I have the right to remove a book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on teh shelf for any of us.' I believe that if items were to be removed from the shelves, there would be less for others to enjoy. Taking materials off of the shelves would be unfair to all readers. Everyone has a favorite book or movie that they love to read or watch. If someone were to disagree with this, this would not only disable you from reading or watching what you love, but it also takes away from other readers who didn't have a chance to make their own opinions on the material. Many people have different ideas on what they feel is offensive. While some @MONTH1 think that some books have subjects too racy for readers, others @MONTH1 not feel that this is not the case. Take a popular childrens book like @LOCATION1's @CAPS1. To some, this @MONTH1 be one of the best books ever written. If someone disagreed with this and felt that it was too serious or offensive to young readers, many new readers would never know this book. They would have never had the chance to make their own opinions. I feel that censorship in libraries is an extreme show of personal opinion. It is only natural to disagree with someone. You can always run into people that don't share the same feelings about certain types of music or movies. Eliminating material from the shelves would be unfair to people. If everyone were to take their least favorite book off of the shelves and replace it with one they like better, soon the libraries would be filled with items that would only reach out to a certain audience. Libraries are meant to fulfill everyone's desires and taste. To conclude, taking items off the shelves because they are offensive to someone would not be fair. In fact, I believe that doing so would create more problems for people. If an item that someone was looking forward to checking out was no longer available due to censorship, many people @MONTH1 even decide that they don't want to go to the library anymore. What is great about the library is that you have a huge selection of items to choose from. If censorship were to take place, the library would no longer be a place to enjoy. Censoring material would be like telling a reader that their opinions were not as important as those of the people who found it offensive. I believe that if you find something so terribly offensive that you don't want it available to check out at the library, first think to yourself what you would do if the library didn't have your favorite things. Because after all, what you think is offensive @MONTH1 be the best thing in the world to someone else." 4 4 4 4 3 4 +4431 2 Everyone has books that they do not like or do not approve of. What if one of your children came home from a library with one of those books? My view on censorship in a library is that if you don't like it then don't read it. I think they should have a childrens section and an adult section in the library so you won't have to worry about the problem. If a child wants a book from the adult section then he or she would need to have a parent with them. That way the kid wouldn't bring home any books that there parent wouldn't approve of or allow them read. If you are an adult and you don't like a book then simply just don't read it. Maybe other readers like the book and don't want it taken off of the shelf. They wouldn't be able to say that the reason they want it off of the shelf is because they don't want there children to see it because there children would need there permission to check out the book anyways. I think this way would be much easier for all readers to enjoy the library and they would not have to worry about picking out a book they don't like or there parents would not approve of 3 3 3 4 3 4 +4432 2 "Do I think that certain books, music, movies, magazines should be removed from our librarys. No i dont think they should be removed, they could be placed in another part of the library away from all the other books that aren't offensive. If they did decide to remove these books are kids would have a hard time learning about the truth. Book publishers put only what they want are kids to learn. Most of the time they leave out bits and pecies about what really happened. So if they took the offensive books, music, movies, and magazines out, a lot of kids would just go home everyday and sit around or cause trouble. From my own experience, I enjoyed reading, listening, and watching the offensive materials they want to take out of our librarys. So if you don't like the offensive materials then don't even look at them, that will solve your problem, and teach your children that to. Overall I think they should keep the offensive materials. If people still complain, move it to another part of the library, in seperate room or somethin of that kind. This should solve the problem of kids reading, listening, and watching these kinds of things." 3 3 3 3 3 3 +4433 2 "Be a parent or responsible child if you are against censorship. Censorship is really unavoidable, and it should not be an issue. If you dont want to read the magazine, book or watch the movie then just dont watch it. Myriads amount of people avoid it every day if they dont want to see it, and many people do read and watch those bad types of movies. It is a personal choice and you dont have to be exposed to it if you dont want to. Those who are against censorship try some ways of keeping your children away from the bad or yourself, but dont try to remove it completly. One reason for censorship is because it provides hordes of information and expands your mind in different ways. The material or bad material you get out of it is your choice to read. but i think some of it is good for kids not so that they can be corrupted. It is so the kids can expand there imagination as well. However i do think children should wait until they are of certain age to read or watch this material until they are mature enough to seperate reality from fiction. Also it teaches good @CAPS1 that you might not have learned anywhere else. Numerous of these articles are about real life and what is going on today. I think it is great for kids and adults to know what is going on in the world. If you leave kids in darkness then you leave them with no right of an oponion. Any parent can tell there child that something is bad for them, but you can never really know unless you experience it for themselves. The can make up there own minds, and usually they do what is best. Another reason for censorship is that it can be an escape for some people. There are people who enjoy reading about fiction or tacky things in life. It keeps them going on a regular day basis. You never know what somebody enjoys doing. If somebody is having a bad day and they want to read or watch what they like and find out they are unable now there is a good chance poeple will be furious. If i was unable to do what I like to do i would probably be angry or depressed. It is not alway a ferocious topic. If you want to keep your children sheltered from it then fine, but the people who can handle it dont want it to be out of public access. Also keep it in libraries because if you dont want it dont give your kids library passes. However if you do, supervise them while they are there. It costs money to go out and buy books when you can just borrow them from the library. People who dont have money or dont want to own the books shouldnt have to go pay for them when it can be kept from whoever it needs to be kept from. The last reason for Censorship is it keeps people interested. It also teaches oodles of information. Not only does it entertain, but also there is so much vocab you pick up on from these books. I have personally learned most of my @CAPS1 from books, and i hardly had to pay for any of them. When you dont have the money to guy buy all the books you want the library has the same information for you, but its just more availiable rather than going to the store. Whoever finds it offensive thats fine. There is nobody forcing you to take these items off of the shelves, and its not there business what other people see either. If people really want to read these items they are going to one way or another banning them from one place is not going to remove censorship from our world. Children are already exposed to this in school and on telivision. They need to learn more than just appropriate material if they want to understand the real world.Censorship is viewed as good, bad, and neutral. Nobody is forcing you to view it, but on the other hand nobody can force you to stay away from it. Let people make there own decisions. If you keep complaining there will be numerous amounts of complaints right back at you. Censhorship should be taken as 'sticks and stones will break my bones , but words will never hurt me'. With that being said dont avoid the inevitable." 4 4 4 4 4 4 +4434 2 "I do not believe that these types of books should be taken off of the shelves. Everybody has their likes and dislikes with music, books, movies, magazines, etc. If the reader does not like the book, then the reader will not continue reading the book. If the listener does not enjoy rap music, then they will stop listening and try to find a different kind of music. This topic is about personal opinion and choice. If it was me, then I would say yes to allowing censored materials. I like getting the full effect out of things. I wanna hear the rawness of a song or the anger of a character in a book. I don't want to read and see a bunch of little stars on a censored word. I want to see that word and feel its full effect. I am actually reading the very controversial book '@CAPS1 of @ORGANIZATION1'. As you @MONTH1 know the author of this book is named @PERSON1. Another thing you @MONTH1 know is the use of the '@CAPS2-word'. This is a very controversial book because he doesn't call colored people black or colored, he calls them the '@CAPS2-word' throughout most of the book. Most people now think this is very racist. But back in @LOCATION1's time it was very commonly said and used in his society. It wasn't racist back in that time, I mean it still was but it wasn't as controversial as it is today. Now critics and some readers don't agree with this term and think the book should not be held in libraries or read at all for that fact. I have to disagree though. I understand why he used the word, it was a common word in his time. If you take that word away from the book, you lose some history of the old south. People have the freedom of speech to say whatever they want to say, whether that be in written form or verbally said. I honestly say some of these censored words. Most of the time these words are said when I am angry at myself or another person. People can't control what we say, so why should they be able to control what we write or sing? Just a thought. Saying that, on the other hand I can see why people don't want these censored words. Maybe they just don't want their little kid to say a censored word in class to the teacher or to another classmate. That's understandable, but you can't protect your kids from censored words. They are everywhere. From video games, to movies, and even most books now. You cannot control what other people do or say. It is their freedom to do whatever they want." 3 3 3 4 4 4 +4435 2 "I don't think that censorship in labraries is right, for many reasons. First reason is that all books and contents that a public library offers to the community should be open to everyone. Second reason is that what you might think is not appropiate, to someone it might not be. Last reason is that an author has the right to express himself on is book how he feels, without having to worry that his book might be taken off the shelves of public labraries. My first reason why I think that censorship is not right is that all contents of a library should be open to the community. For example if a student needed to do research on how black slaves were treated back in history,he might not be able to find a book, to find information on it because someone thought books like that are offensive to black people, so in this case this student wouldn't be able to find any information on his topic, because of the censorship in his library, so instead of going to a library he will have to go somewhere else, where he might find the wrong type of information. Second reason is that what you might think is offensive, might not be to another person. So why should your point of view affect another person. It wouldn't be fair that a point of view of one person would limit the choices that a person has when he goes to the library. Censorship could take away your favorite series of books of the public library because of group of people thought it was offensive. My last reason is that an author has the right to express himself on his book how he wants, without having to worry that his book might get taken off the shelves of public libraries for its contents. Sometimes the content that books have is needed to make the book for discriptive, and interisting to the reader. Content that you might think is offensive, is the content that really helps the reader understand the book better. This are the reasons why i think that censorship is not right. Because if we had censorship on public libraries, then we wouldn't have any books left on the shelves for us to read. So this are my reasons to support my opinion." 4 4 4 3 4 3 +4436 2 "No book should be taken off the shelves for any reason. Books are a very important part of most peoples daily lives. Whether they are used for school or just entertainment they are used for a good purpose and are always helpful. People have different likes and interests and everyone wants to be able to read what they want without having to worry whether the books will still be on shelves tomorrow. For some people books are a great past time. They help you learn and even help with hard life situations. Books are the world to most people and without them those people would not know what to do with their lives. No one should be aloud to take something away that is important to other people even if it is offensive. All books have a purpose and a message that they want to get out or else the authors would not have taken time out of their lives to write them down and have them published. The author writes to tell people a story whether good or bad, he or she wanted to get that story out there to inform people. The stories are obviously important to the author and important to the readers that enjoy their books. The authors should not be punished just because someone is offended by what he or she wrote. If people are so offended then they should just stay away from the books that the certain author writes. There are plenty of books out there and many different authors that the person can choose from. They do not have to take it out on certain authors just because they did not enjoy what other people might. There are so many books out there and odds are there is always going to be a book that offends someone. If we get rid of every single book that offends people then we are not going to have many books left, and without books we have nothing. Books are the key point to education and most peoples daily lives. We will not learn the new ideas that authors put out there for us if people just keep getting offended and taking them off the shelves. Books need to stay on the shelves. They are important to everyone, whether they want to admit it or not. Without books people would not be where they are today" 4 4 4 4 4 4 +4437 2 "Libraries should censor some of the materials that they have available to the public. This is important because a child could easily gain access to the offensive material. Censorship is very important for libraries because we do not want our children getting influenced by offensive materials found in their libraries. The libraries would not even have to get rid of the offensive materials that they took from the shelves. A good idea for them to do is to move all of them to an section for adults so the children will not be able to see them. The libraries would not be losing any money and they would be keeping the youth away from things that are not appropriate for them. Their is no reason to give people access to material that could be offensive to other people. There are only a few reasons why I think that people should have access to offensive materials. Someone could need to use a book that has something offensive in it, but they would all be taken away to somewhere else. I think that it depends how offensive the materials are, as to whether or not they should be removed from the shelves. Although I am sort of split on this issue, there are some very good reasons why to move the offensive materials away from the shelves. Those materials are not appropriate for the youth of our country, and they should not have access to them. We should censor the libraries so that nobody gets hurt" 3 3 3 4 4 4 +4438 2 "Book @CAPS1 @CAPS2 my name is @CAPS3 and I dont think @CAPS4 book's,magizines and etc. should be taken off the shelf because. Book's help people read and concentrate. In my case the more book's the better and these book's have been here to keep us occiupied. Without them we would have no bref discripson or what happened in the past. Book's have alway's been here to support us and every story must have some fun detail. Without book's I don't know what we would be doing without them. Book's have been the greatest thing in my life and @CAPS5 hurts for us to know that you wan't to get rid of them after, you made us read them when we where kid's so what is the point of getting rid of them when we got this far. In magizine's there's lot's to know about our people and how we live. We have gotten this far to go to the top. At least when we do read we know how to do some certain things For instance, do you remember when you were a kid and you alway's hated reading but now, a whole new change went into your life and you now know what to do. My fravorite book I have ever read was the @CAPS6 and @CAPS5 was inapporite but @CAPS5 also had meanning. We have to keep these stories alive and im not going to let you take the thing we love to do away. I love book,s and I hate to see them go away. these book,s were here when we were kid's and we have to keep the lagacy up. Reading is the best thing in life and @CAPS5 helps clear our mind's. Thanks to reading I was able to explain to you this much and how supportive I am with these book's. @CAPS5 would devestate our country,states,cities,school's and reading clubs so please don't remove our book's thats all we ask and not only will you make me happy but you'll make our reader's very happy. Thank you for reading this and have a nice day" 3 3 3 2 2 2 +4439 2 "Although possibly offending some people, materials that are in libraries that could possibly be considered 'offensive' are actually good to keep around. If people who find the materials in libraries offensive are getting upset over the lack of censorship within the library itsself, they should re-think the situation and consider that the 'offensive' materials that are left within libraries could be considered appropriate IF the viewer is ready to experience them. If a person does not want to be exposed to things in libraries that could be considered offensive, then they can altogether avoid these materials. If parents find the materials that are within libraries offensive, they should monitor their children while they are visiting their library. The mateirals that could be considered offensive @MONTH1 actually be good, educational media that a person could learn from. If @CAPS1 within libraries increases, 'then we have no books left on the shelf for any of us.' @CAPS1 in libraries should remain the same as it is now. Some books, movies, and any other number of things that can be found within libraries are bieng labeled as innapropriate. These materials can be educational, however, and should not be removed from libraries altogether just because some of the materials are found to be too crude, vulgar, or adult-like for younger ages. Parents should monitor their children while in a library as to not let them stumble upon something that they would not want them to see yet. If something is labeled as innappropriate for children to view by parents, then it is the parents responsibility to make sure thier child does not stumble upon it. Much of what @MONTH1 be considered as innapropriate and needing cencoroship in libraries to this day @MONTH1 actually hold some educational value or meaning to it. There are books and movies that are based off of true stories that have taken place that could be announced by parents as 'not appropriate to be viewed by children'. However, this does not mean that libraries should have to remove the material from their shelves just because parents @MONTH1 not think or necessarily agree that it would be appropriate for their child to read or see. It is the parents resposibility to see that their child does not check out what they would consider innappropriate. Much of the things within libraries that might be considered innappropriate for children hold good eduactional value and should not have to be removed from the shelves of the library simply because parents find it not age appropriate for their children. @CAPS1 in libraries should remain the same as it is now so that those who want to see or read the stories or movies can do so without having to buy them. If parents want to make a big deal out of how libraries hold materials that are not appropriate for their children, they can either altogether not go to a library or they can monitor their children closely if they bring them along on a library visit. I have found that when I visit my library, I look at it as a source of knowledge that has been pooled in one place, written and created by thousands of authors, all of which took time out of their own lives to create it. If we are going to remove these books or movies from libraries, I think it would be taking away the rights that people have to the materials that SHOULD be provided by a library. @CAPS1 in libraries should remain the same as it is today so that people can enjoy all that should be within it, even if some of it is labeled as innappropriate by parents" 4 4 4 4 4 4 +4440 2 "Imagine a world where nearly every other book is banned for some reason or another. That world is not a world I want to live in. I believe that censorship in libraries is wrong. For three reasons, really, the first being that people have the right to any information that they desire to have. The second, people do not have the power to take opportunities away from other people. The last point I will make is that no information is bad information. Because we are in @LOCATION1, I asume that we are talking about censorship in @CAPS1 libraries. If that is the case, then I think that it is unconstituitional to ban any book, or censor any material. Censoring books is like putting a blind fold on whoever is reading the material; they don't see it for what it really is, or for what the intended purpose is. If the prompt does happen to be including foreign countries, then I think humans do not have the right to influence what other people read. This is idealistic, yes, and in a perfect world, all countires would have equal rights for everyone, regardless of race or gender. I think that people should see everything the way it is. If something is offensive, it's offensive. It's the person's choice whether or not they read or listen. That leads me to my last point, that no information can be bad information. Whether it is profane, or offensive in any way, there is always some kind of meaning behind it. From rappers like @PERSON2 and @CAPS2 @CAPS3, who I've found all of their songs have meaning, whether it's personal, or they are trying to send a message out to the people. There are books like @CAPS4 for @LOCATION2, by @ORGANIZATION1, which has recently been banned by some school libraries because of graphic scenes. The people who banned the book fail to realize that the book is not about those scenes. There is a much deeper message about guilt and grief, and redemption beneath it. Another, more famous book that was banned from school libraries is The @CAPS5 in the @CAPS6, by @PERSON1, which is a coming of age story about a boy. In conclusion, I don not think it is right to ban books or music from libraries. No one has the right to.There is always meaning within. The way an author writes a story or a piece of music always has meaning; they made the conscious decision to write it that way for a reason. By banning books, they are taking people's chances to grow and expand." 4 4 4 4 4 4 +4441 2 "Censorship is very important, especially when you are reffering to libraries. I believe that each individual person is entitled to an opinion. If a certain book, magazine, movie, etc., is offensive to one specific person or a wide variety of people, those individuals should consult an official who has authority and decides what goes on and off the shelfs about what they think or feel about their choice of selection. In the world, there are many different types of minorites, racial groups, and also differences in political groups, (@CAPS1 and @CAPS2). Even though these seperate groups are extremly different from one another, they all share one thing in common. No matter who believes what or who supports who, everyone will always have a difference in voice. Some people @MONTH1 feel that having particular material displayed on shelves of libraries is rather offensive to specific individuals. Where as others like myself say, as said earlier, if you are to have a problem with something displayed, then you should contact someone who will listen to what you have to say. For example, I cannot express that I desire to have something removed from a library shelf just because I am the one who finds the material a concern. Not everything is decided by me. It would be incredibly rude to state that something is offensive to me might not be to someone else. Just because I don't approve of something gives me no right to purposely remove something from the shelf. That is all related to freedom of speech. However, yes, you do in fact have the right to say what bothers you, but you do not own the privledge of doing what you want at any time because you have opposesed views. It is true to say that we all argee we do not want to see inapropriate material displayed on library shelfs, especially for childrens sake, ergo, libraries should take major consideration of restricting specific areas of a library for adult views only. I know suggestive material might be a concern for one, so not allowing children of a certain age to see certain material would be a highly good idea for any worried officals, adults, and parents." 3 4 3 4 4 4 +4442 2 "A few months ago I was at the local library searching for the perfect book. After an hour of searching I decided on one. I was happy with my choice as I checked it out. As I anxiously started reading my book, I found language, drug abuse, and sexual content. As a teenager, I do not want or need to be exposed to any innapropriate material. No one should be exposed to that, and because of that experiance, I believe that censorship in libraries is a must. Due to sexual content, drug abuse, and vulgar language, one must be seventeen to purchase a ticket for a rated-@CAPS1 movie. I believe that since that is true for movies, it should also be true for books, magazines, and music. @CAPS2 literature is not necessary and innapropriate for any age. The world exposes certain literature to children, and then is shocked when they see children in jails, gangs, and other horrible situations. The world has set their standards too low, and the children of todays society are following after our footsteps. Author, Katherine Paterson once said, '...if I have a right to remove that book from the shelf-that work I abhor-then you also have exactly the same right so does everyone else.' @CAPS2 quote shows the impact that people have on generations to come. Everyone has their own opinion and @CAPS2 is mine. As a daily newspaper reader, I could not quiet my voice any longer. I had to step-up and say something. I am apart of a generation that is being affected greatly by the world in a negative way. The first step to changing that is to set the standards high. Protect the future generations and censor what children are allowed to be exposed to. Situations will become better when libraries choose to censor and remove offensive materials from shelves. If libraries censor materials, then next time I wnat to find the perfect book, I will." 4 3 4 4 4 4 +4443 2 "Every individual has their own opinion on censorship. Some people believe that, in some instances, it is perfectly fine, but others disagree. I'm one person that thinks that, in some instances, things should be censored. Schools have the right to censor what is put in their libraries for their students to read, especially magazines. Some of the magazines out there have articles in them that arent appropriate for school hours or even in the school building. Schools @MONTH1 not want something inapropriate on their shelves where students can see it. Censorship is even more understandable in elementary schools. Younger students' libraries should be monitored even more carefully. Younger kids, such as elementary age, don't really know what they should and shouldn't read. In public libraries, things are a little different. Parents can usually monitor what their kids check out. Most adults know to read the summary on the back of the book to know what is being checked out. If the summary is too vague, then they know to read a few pages inside the book. A couple of times, I've gone to the public library and I checked out a book that I thought was a suspense. When I got home and began reading it, it turned out I was wrong. The book was a romance book that I didn't care to read. So, I returned the book to the library. Most of the time you can read the synopsis on the back of the book, but that doesn't always reveal too much about the book. So, the best thing you can do is read a couple of pages out of the book before you check it out. Everyone has a right to their own opinion on censorship. I believe that in some instances things available to be checked out should be censored. In other instances, things should be left up to the adults and the parents to decided what they want to be allowed to checked out." 4 4 4 4 4 4 +4444 2 well if one person has a right to something then it would only be fair for the other people to have a right for the same thing. That would be like having six kids in one room and for no reason at all just give three kids a cookiee and not the other three that wouldnt be right now would it. so if one person ones that book then another person wants that same book then they would have every right to grab that book and theres really nothing could say to them. i know how it feels not haveing the same right as every one else like one time my teacher gave my friend a piece of gum for no reason at all and i was mad because i didnt get a pieace i thought if he got a pieace of gum for no reason then the rest of us should get one for no reason. like said you give a right to one person then you should give that right to another person now i could under stand if three people were in volved in a fight and the third person was just standing there wactching the dont have the right to go to jail but the two that was phiscally fighting then they have every right to sit in jail and think about the fight now the third guy that was wacthing he dont have the right to keep in any videos of the fight and he sould get a tickect 3 3 3 2 2 2 +4445 2 "WHAT DO I THINK? When I heard about the problems some librares were having; I thought to myself. What is the big issue over censoring movies, disks, books, and magazines. I know that children should not be around volgure language heard or read. Book that have pics @MONTH1 not be eseptible for the eyes of our young chidren either. The librares should come up with a solution. I was thinking that if they want to, they could make rooms of books that are only for certin ages. When people take these books of the shelf to report it or put that book somewhere else away from their children, they make the people that works their jobs much harder. Their should also be an adult with you if entering into the room. The adult must be @NUM1 or older. If a child is found in their aloun, the workers of the library will contact the childs parents as a @NUM2 offinse. The same thing goes for the second time your caght. The @NUM3 time you are caught, you will get a phone call to your parents and baned from the librery for @NUM4 mounths. If you live in a big city, you @MONTH1 have bigger better libraries. Some libraries have so many books, that you might have to get a cherrie picker to reach them. I know im a little off topic now but it is part of what im going to talk about. Their are massive libraries and small liebrareis. Its almost like the difference between pre- school and college. Now that is a big difference. What i think the cities that have a bigger population should consist of two libraries side buy side. The one on the left would be for todlers ranging from @NUM5 -@NUM6.this library will be buissy alot. The library will consist of a day care so parents can look for a book in complet silence. The cidren at the ages of @NUM7- @DATE1 will also be in the librarie on the left,but upstars.They will have books made just for their age ranges. The will also be capabull of watch t.v. or playing minor games that dont posses violents on the computer. The librarie on the right will look like a duplicate of the one on the left but is completly different on the inside. The reason the would do that is so kides would not try to get in because it looks cooler than the other. Our children look up to us in lots of differnt ways. Some @MONTH1 inlude coping our every move. So when they see what you watch, listin to, and even read; they might want to do that too. Know what i think most of you have learned from this is how to keep your children same. I dont mean like they are getting hurt or anything, but helps keep them grouing up and not knowing about things they shoiuldent at age @NUM8. So, once again, I would like to let you know that we can fix this. We want to keep your children away from the bad things" 3 4 3 3 3 3 +4446 2 "No I do not believe that certain materials should not be remove from the shelves because I dont see how they are offensive to other people. Even if its war movies its telling what these men have gone through and they fought and lost there friends. You just dont see people just killing and shooting you see the emoutions of the men and its emoution to you to see that. Every book in there should stay there because some people need it for a project or to study about that person and a lot of books has lots of history that you can learn from. The only thing that I think that should be remove is the music because if its rap or anything like that should not be allow in libraries, it brings hatered and often killing to the country and that should not be allowed. Some Magazines should be allowed like raceing, sports, or military but all of the other bad stuff should stay out because if they do see, the kind of stuff that shouldnt be seen it will get into there mind. Thats what I think about this whole idea" 3 2 3 3 3 3 +4447 2 "There are all kinds of books, movies, and even magazines out there. Most libraries have a huge selection for all types of readers or people who would like to watch a movie. They could even have stuff that the young minds should not read. Have you ever thought about what would happen if a little kid grabbed onto something that he/she was not supposed to read? When it comes to things like this, there is a huge range of topics. Some of them are not supposed to be looked at until an older age. Thats why I think there should be a certain section where only a certain amount of ages are allowed to go. When it comes to books, there will always be some books that are not apporbiate for the young mind. They could include multiple things that could scar a kid for life. Some of the things that they might read are probably things that their parents would like to talk to them about later on in the future. Books are great for learning, dont get me wrong, but there are some that are more adult related. Now there are a ton of books that kids can read and parents won't need to worry about them reading. Another way libraries can help is put the movies in a certain section. The library could make a section called 'family and kids'. This section would hold a perfect spot where parents wouldn't have to worry about their kids getting the wrong ideas from movies. In our library, we have this section. My grandma and I would always go there and find an incredible family movie to watch together. Finding a great family movie to watch is the best feeling ever. Finally the last way a library could help is by making sure the child is old enough to check out a book or a movie. Clearly a child of @NUM1 shouldn't check out a movie that is rated @CAPS1, thats just wrong. Libraries should make sure the child is at the correct age to check out the movie. Thats why the movie companys rate movies, so they can give people heads up about whats good and bad about the movie. Also the libraries should make sure a kid is checking out the apporbiate type of magazine or book. The people that work there could look through it before and make sure its the right type of book they should read. There are an infinte amount of ways we can protect the minds of young ones. I dont think libraries should banned books, magazines, movies, or even music. I think they should just make sure the kids are checking out what their allowed to read. Books are a great way to learn things, but they should be learning about the stuff that is sustable for their age. Libraries are there for us to learn and enjoy ourselves. I believe people would get upset if they would banned the stuff they love. They should just keep an eye out of what kids are looking at. Thank you for your time." 3 3 3 3 3 3 +4448 2 "The last thing I would want my children seeing in a @CAPS1 is offensive material. a @CAPS1 is thought of as a learning zone. Somewhere for people to learn about new things and expand their knowldge. If there are dirty magazines, movies on sexuality, offensive music or inappropriate websites available to children it completely defeats the purpose of having a safe learning enviornment. My opinion is that libraries should be used primarily for educational purposes. That means that there should be appropriate books and magazines that are also age appropriate. Computers are also a great resource but can contain many offensive material. My standpoint on this issue is that the computers in the @CAPS1 should be monitored. If someone wants to look up inappropraite images and websites, then they should do it on their own time, in the privacy of their own home. It should not be allowed in public where innocent children will be exposed to it. That isn't fair to the kids, and it isn't fair to the parents who have tried to protect them from that kind of suggestive material. I'm sure that there are many people out there that would disagree with my proposal. However those @MONTH1 be the type of people who aren't morally structured as I, or those who don't have kids to look out for. Or perhaps they just aren't as concerned about the issue. They will argue that there is really no severe need for the computers to be monitored, or that they have blocked websites. Yes, they @MONTH1 think that there is no real harm. But that @MONTH1 just be because that is the way they were raised, causing them to think in that same respect. With the magazines, some @MONTH1 argue that children will be exposed to suggestive material sometime, so why not now? But if everyone were to start thinking like this all morals would be forgotten. In some cases morality might not be the issue at all. In fact, religion might be the most important issue. A lot of people are religious and their particular religion @MONTH1 be against looking at suggestive and 'unholy' material. Parents will not want to walk into a @CAPS1 with their children and find them starting at images that go against what they believe in. They will think of it as losing their child's innocense. Having these things out in the open and accessable to kids and teenagers could unintentionally send a message to them that indulging in sexual activities is acceptable when according to their religion it is not. When I was a little girl I remember going to the @CAPS1 often with my mother to pick out books for school. I distinctly remember seeing naughty magazines laying across a table as I was walking toward the children's section. My mother was appauled that they had those laying out in the open like that, and especially right next to where the children's books were. She complained to one of the librarians and asked that they please remove them. The librarian apologized and agreed that the placement of the magazines was a little out of line. Ever since then my mom has been a little sceptical and dreads going to that @CAPS1. I suppose that is why I am so involved in this issue and the reason for this informative article. I did not write this to place blame on anyone or to judge people for their beliefs. On the contrary, the purpose for my writing this was to inform general public of these issues and to explain my side of the arguement. I don't see the reason of having these materials on hand at a @CAPS1 where almost anyone has access to them. I do not understand the need for them to be obtainable at a @CAPS1, or if there is a need at all. I'm hoping that by reading this I have opened the eyes of some concerned parents out there, or have at least made them aware of the matter. Thank you for your time. Sincerely, @PERSON1" 4 4 4 4 4 4 +4449 2 "How would you like it if someone took a book away from you, just because it had @CAPS1 language or nasty meaning? I mean of course there are certain books that should be censored, but in doing so you exclude @CAPS1 great novels from the past. These novels were acceptable back then. If you want to censor boks do so in your own library. Personaly, I don't believe in the censorship of books. It the author meant to write the book that way then the writing should stay that exact way. Censoring destroys books and the learning curriculum of multiple students. You would censor a school book if it had @CAPS1 graphic text between its covers. There are tons of books that have bad language and perverse ideas. These books were penned to educate our civilization. If you take away those books, then you will be harming our societies ability to learn. Books, I believe should not be offensive unless your a self-conscious person. Reading a book is a delightful experience, it shouldn't be marred by censorships. In my personal experience, I have had no problem reading a exquisit novel that has @CAPS1 minor graphic details. I do not care if there is a explicit word in my reading. Albeit, @CAPS1 neive persons have it in there will to remove offensive articles, not for public good, but for personal gain. These offensive tactics are a disgrace to literature and culture. @CAPS1 of the books writen in today's world are far less explicit then before. Thus, we would be creating that unwanted barrier. When the @CAPS2 @CAPS3 burned the @CAPS4 books, we almost lost a whole civilizations culture and literature. This should never happen to today's literature. If we censor the books in our libraries, then we will be loosing a certain aspect of our culture. The censorship of the articles of reading in our libraries should be kept to personal libraries and only to personal libraries. The libraries are public for a reason. In conclusion, Censorship should not be placed in libraries because it disrupts the public literature. If the books were meant to be read that way, then so be it. We are not the destroyer of classic literature, and it should never come to that." 4 4 4 4 3 4 +4450 2 "I do not belive that they should be takein off the shelfs beacuse @CAPS1 people still come to get that sort of stuff. @CAPS1 people say is not plite for little kids 'well keek your kids away from it then.' @CAPS1 people dont like it and @CAPS1 people do. I am one of the people that like that kind of stuff, beacuse no one can tell us what we can and cant watch or say. It is our life if we wanna watch that kind of stuff or read about it we can. Noone is telling people that they half to read it or even look at it. If you dont like it dont look at it. @CAPS2 kind of stuff should be off to the side where you know what your goin to look at and away from kids @CAPS2 shouldnt even be a problem. @CAPS2 is just people that think they are high class and think if you look at that or watch that or read that you are a dirt bag. That is there opinon. In conclusion I think if you dont read @CAPS2 stuff or watch @CAPS2 stuff you are trying to be something you are not. Trying to act better than every cause your to high class to read something like that. We all get a laugh out of @CAPS2 kind of stuff." 3 3 3 3 3 3 +4451 2 "In my opinion, books that @MONTH1 seem offensive to someone should be kept on the shelf. Meaning that people should be allowed to check them out in the library and read them even if some people think those books in particular are offensive, or @MONTH1 come off as offensive. A person should be able to read an article without feeling like somone wrote that book, article, or magazine to be offensive. Yes, but at the same time it is up to you, the reader, to pick a book that does and will not make you feel uncomfortable. Do not pick a book to read that discriminates against football players if you are a football player, because most likely it is going to upset you, or make you uncomfortable. Well say you want to read a book that discriminates against football players, and it does make you feel uncomfortable, do not take the book, and go complain to someone about how the book, or article makes you feel if you picked it out to begin with. If it makes you uncomfortable, put the book, or article down. No one is forcing you to read it or look at it. People should be allowed to read whatever type of books they would like, and about anything that interests them. Just because an article, or book is offensive to you, does not mean it is offensive to other people. If we were to take all the books, articles, magazines off the shelfs of library's there would not be any books left for us to read because every book written offends at least one person. Movies are a whole other issue in itself. There are many types of movies, and within those types of movies are types of things people do in the movies to make it funny, scary, shocking, stupid, etc. If you do not cuss and say you go watch '@CAPS1 @CAPS2' you are going to find it offensive because every other word they say is a cuss word. If you do not like @CAPS4 people jump out of strange places and scare the crap out of you, then you are not going to watch '@CAPS3.' @CAPS4 people find movies offensive or not to their liking the usually go and try to make a big deal out of it, and sue the people who made the movie. You doing that is causing more trouble than it is actually worth. The same thing with movies as books, if we were to take all the movies out of movie stores, and just stores in general that were offensive to at least one person in any way, we would not have any movies left to watch because at the end of the day; there are tons of movies that would offend some people, and make them uncomfortable. In conclusion, if you find a movie, song, book, article, or magazine that is offensive to you, get over it. Keep that book or whatever it is out of your reach and in other peoples, because at the end of the day no one is going to help you sue an author, producer, or music production company because something they wrote, directed, or sung offends you. In my opinion you should just read what interests you, watch what you like, and listen to the songs you usually listen to" 4 4 4 4 4 4 +4452 2 "Should books,music,magazines, etc., be removed form shelves that are found offensive? Everyone has their own oppion on that question. In my years of reading I have read a few books that were questionable. I wouldn't say someone else couldn't relate to it. Personaly i don't think anything should be removed from the shelves. While growning up our parents try to keep us from things, at that point in life don't need to see. I can agree with age limit but you can't hide everything. Isn't it best to let the children know whats out there before you just letting them go to find out on there own? You would probably get multiple answers to that question. My personal views @MONTH1 be different from the person sitting bestide me, but I think you should be able to have the right to read, see, and litsen to what you want. The world is not a safe place, its scary and mean to the people. When I raise my children, when they're younger there will be certin things that they wont know and wont see. But thats just part of raising your kids, when they get older and start asking quesions i'm going to answer with the truth. Is keeping these things from our children lying to them? I would have to say yes to that question. By taking these things away from the youth we are telling them that its not out there, that the world is perfect and there is no wrong. Some people would actually say that, but I have to say to them that they haven't lived. Still to this day there is segregation to all people not just against races but in our own race itself. To conclude my oppion I would have to say that we should be free to read and see what we want. We shouldn't, not let anyone see it and them and then let them out in the world, and have a complete culture shock. Teach your children whats out there, let them know the truth about the world. Should certain materials be removed from shelves? No, @CAPS1 is to judge what we see and hear?" 3 4 3 3 4 3 +4453 2 "Children all around the world find themselves wandering through the library every day. These children are exploring the literature world to learn and grow. The library @CAPS2 a wonderful place with many genres of literature such as children books, nonfiction books, fiction books, adult books, movies, etc. There are certain genres for certain age groups, and there are a lot of materials in libraries that parents do @CAPS1 want their children to even hear the name. I think that it @CAPS2 normal for parents to feel this way but it @CAPS2 @CAPS1 neccesary. Children should have the right to explore the literature world however they want. Reading different types of literature @CAPS2 a terrific way of learning and library shelves should @CAPS1 be stripped of the books occupying the space. There are many different types of books, movies, magazines, and music on the shelves in a library. These are all great forms of literature and a way of learning different things. Although, there are a lot of parents who do @CAPS1 want there children 'exposed' so such materials. If a child want's to read a book, let he or she read it for crying out loud! Parents might say that it @CAPS2 'corrupting' their child but, books and music don't corrupt children, it's the environment and people around them that have said ability to cause such corruption. It @CAPS2 a very normal thing for a parent to be protective of his or her child, but to a certain extent. A parent @CAPS2 supposed to help their child grow and learn right from wrong. They have every right to protect their child from dangers in the world, but @CAPS1 to keep them from learning the art of literature. They're @CAPS1 supposed to sheild their child from all the faults the world has, even if it @CAPS2 a book. Literature in every form @CAPS2 a great way of learning. Libraries shouldn't have to strip the shelves of wonderful books crated in the literature world for one's entertainment or learning. If a child want's to read a book they should have every right to read that book. They should be able to explore however they desire." 4 3 4 4 4 4 +4454 2 Well people should be able to get whatever they want if there an adult kids should not but what can you do. It wouldnt be right to take away things that people like. 1 1 1 1 1 1 +4455 2 "Libraries, they are everywhere and all together they contain millions of books that influence everyone who reads them. Whether a book is being read about @PERSON1 or the @CAPS1 there is always something influential to be read. Some books have more adult themes or references to certain subjects which most adults find inappropriate for readers of certain ages. The question is, is it a good idea for those books that are now being censored to be taken off the shelves? In personal opinion; yes those types of books are influential, yes it is possible that it could negatively effect the youth of @DATE1, but everyone has the right to read what interests them. Being influential is one of the main priorities of most reading materials. There is a point to be proven or a side story to be shared within most books. Is this a bad thing? Is it 'bad' to explain a point of view or to explain a life experience? No, having experiences is only half the point of living; sharing it is the rest. The @ORGANIZATION1 explains one of the more major downfalls in @LOCATION1 and how it brutally effected the people struggling for life and money. Twilight shows the softer side of love and that anyone can be happy if they set their hearts on someone. These are not only experiences but things to ponder upon, and losing these factors in life would be a horrible mistake. The youth of @DATE1 is portrayed in mostly a negative light. Whether they are considered monsters or maybe even the devils offspring; our youth need influences. Reading is one of the major sources of inspiration for students to grow and prosper. Most students find reading to be boring. In school you are not offered what you want to read. Lists are made, and guidelines are created so that only certain things are read and taught. Young adults need creativity and books are there to shine a light on their eager minds. Taking away the books students and young adults are interested in is one of the many growing problems contributing to people not wanting to read. Teachers, principals, business men, and even children deserve the right to reading what they like. If you were a sports major and suddenly the population decided sports journals and sports themselves were too harmful and badly influential to people; what would you do when suddenly everything sports related was taken away? You would lose your career. Romance novelists use sensual or even sexual experiences to convey something everyone has trembling inside their minds. Taking away something that is related to something so natural in every day life would have severe reprocussions; especially for those who greatly enjoy those books. Revoking the rights to the literary works of thousands of authors would also take away an intellectual culture that is conveyed. Influencing people to think about things that are viewed by everyone is not a bad thing when it can be used to inspire people in their lives. Just because someone is a student or a child doesn't mean that a literary work could rot their mind. Taking away something that can contribute to the every day art of life would slowly create a less creative, inventive, and inspired world. Not everyone believes that certain books are bad, and i, am one of those thousands of people." 4 4 4 4 3 4 +4456 2 "Should materials such as books, music, movies, magazines and etc., be removed from sheleves if they are found offensive? Should them magazines and etc., but put up in a place for that age group? Should them type of things but in the @CAPS1 with children? Should they be in @CAPS1's period? I thing that the @CAPS1 should have all type of books in there because that's what a @CAPS1 is for. But I do think that if people are finding it offensive to have them type of books open to children they should ask the @CAPS1 to change how they have the books. But I also think the @CAPS1 should put them book up in a part were they have adult things and book at. Because them type of book isn't made for children eyes. The @CAPS1 should put people ages on the @CAPS1 cards so that this want be a problem to the poeple or the @CAPS1. Because then you would no how old they are . And only @NUM1 years of age can she the books and magnizines, etc., that isn't right for young children eyes. But I Do think that it is offensive to people that have young children and there children are reading it . And it is offensive to the people that just dont like what the book, music and magazines stand for. One thing I don't agree on is that books should be taking off the shelves because there are so people that comes to the @CAPS1 just to read them books. And the people who read them books are going to be upset that you took the books off the shelves. Because me personal I like the magnizes, books , music and the movies and I don't find nothing offensive about them. And I like the movies to because it gives me somthing to do and watch when I am at home. I also think that the movies and music is something we all love that's in the @CAPS1. Because it give me and my friends something to do after school. So if you take away the thing we like what will we have to do after school when we go to the @CAPS1. And the thing's that was named make the @CAPS1 so fun an peaceful. The @CAPS1 is a place were you can come and whine your day down. With out them thing there trying to take of the shelves it's going to be boring. People who don't have nothing to do doing the day come to the @CAPS1 and look for that offensive stuff." 3 3 3 4 4 4 +4457 2 "Censorship in libraries should not be allowed. People should have the choice to read or watch whatever they want to. Just becuase one person finds a book offensive doesn't mean that another person will also find it offensive. The libray's need to let the community deem what they find offensive or not. Some parents say that they do not want bad or certain materials in the library becuase their children might read it. If parents are that concerned about what their children see, then they should sit down with their child and discuss why they should not be able to read or watch that type of material. Parents should be able to make their children understand why they shouldn't read or watch the certain material instead of accusing the library's themselves just for having the material. If some books or movies are deemed very offensive by public, then they should be placed in a special area. This special area should be clearly marked with a sign that says '@CAPS1 content' and should only be able to be viewed by adults. This would solve many problems such as children being able to check out certain materials. Doing this would grant the people who wish to see this type of material access to the material. This would also solve a problem becuase it would be in a back corner or area that not many people go to so children will not very easily see it. The best solution to this problem would still allow the library's to put certain material that are found offensive in their library's. But instead put age restrictions to being able to check out the material and also putting it in a differnet section of the library than the normal material" 3 4 3 4 4 4 +4458 2 "Do I believe that certain materials, such as books, movies, magazines, etc., should be removed from the shelves if they are found offensive? I understand that some parents wouldn't want their kids reading a book about drugs or watching a movie about gangs, but libraries shouldn't have to remove them from their shelves. There is not one movie, book, or magazine where everyone will approve of it. Just because a couple of people find it offensive doesn't mean they should have the power to determine what materials libraries have or don't have on their shelves. One reason why I believe certain items shouldn't be removed from a library just because a couple of people find it offensive is because what Katherine Paterson said in her quote. She is saying if there was a book a couple of parents didn't want their kids to see and they were to complain and have the right to remove it from the libraries shelf. Then sooner or later, more and more parents will be coming in complaining about a different book, movie, or magazine every other day. Soon, there wouldn't be any books, movies, magazines in the library. Another reason why I believe we should have no say in what items libraries hold is this. As you know, there is many different cultural familes living in the @LOCATION1. Some people say bibles should be allowed in libraries. Half the population agrees on that statement, the other half thinks that is ridiculous and they're thinking how they would even suggest doing such a thing. How would a library handle this situation. If we gave people the right to decide what was held in libraries. There would be a group of people walking in there and saying they don't believe in @CAPS1 so they must take those bibles off the shelf before their children read it. Then, as soon as the believers in @CAPS1 hear about it. They would come to that library and complain about them actually taking that off the shelves. There would be no way in pleasing everyone, so the libraries should be able to put whatever they want on their shelves. My third and final reason why I think the public should have no say in this matter is if libraries were forced to take items off their shelves just because a couple people complain about certain books or movies. Then why couldn't people do that at restaurants, or movie rental business, or outlet stores with clothes they don't approve. If it was to happen to one business, then it should happen to every business and in my perspective. The only person who should have the say in what they have in their store/library is the person who is paying for it and that is the owner. It's their responsibility to know what's too far concerning movies or books, etc. The public has to accept those choices. You have to look at it from their view. Would you want them to come into your business and start complaining and then you are forced to get rid of that item because of them. It's just not the right way to handle things. After reading all those opinions of mine, I would hope that you see where I'm coming from and you see that it just wouldn't be humane to do that. It's never been that way and it should never be that way. Obviously parents don't want their kids to see things inappropiate. But it's not our say and we just have to face the fact that's the way it should be" 4 4 4 4 4 4 +4459 2 "Today, we live in a world where there are many different political, religious and personal views; and with time, these views are only going to become more varied and more wide spread. Unfortunately, it is not always easy to cater to every single persons individual takes on the world. When it comes to libraries, it is even harder to have different books for all the different opinions that will not offend people with other opinions. Let's take @LOCATION1 for example. There are many different races and people with different religions living here. This is a place that has already been through a @CAPS1 @CAPS2 and has fought against racism and slavery. Although these are things that our country has overcome, there are still going to be arguments and disagreements over these problems. When there are different opinions, there are always going to be different books out there about the same topic from multiple points of view. As the readers of these books we need to know what point of view this is coming from and not choose a book that goes against our personal beliefs. This is where the offensiveness comes from. We live with many different people and we need to understand that not everyone is going to have the same views on life that we do. When I was in eighth grade, I was @CAPS6 @ORGANIZATION1 with some friends. One of them was pulling her eyes back (like someone would do if they were imitating an @CAPS3 person) because they were itchy. A very pregnant @CAPS3 @CAPS5 woman walked in and took offense to my friends eye movements. She yelled @CAPS6 us and said, 'I would have thought your parents raised you better than that.' @CAPS6 first, we did not understand what this woman was talking about until we realized that our friend had been pulling her eyes back. This showed us that different people can take offense to different things because of their heritage. There is nothing we can do about the expanding cultures in our country. We cannot change the views of certain people in order to match those of our own beliefs nor can we change the fact that all the different people are going to voice their opinions and view them as 'right'. However, we can change the way that we view these people. We need to understand that there is no 'right' when you are dealing with multiple opinions. @CAPS6 this point we need to embrace everyone else for who they are and what they believe because there is nothing we can do to change those beliefs. So next time you pick up a book @CAPS6 the library, read the summary and check to see that the author agrees with you before you take the book home or there are going to be disagreements in your views. If you get a book and you don't agree with it or if you are offended by it, there is no one to be mad @CAPS6 but yourself for not checking to see the author's stance on the topic before you started reading it" 5 4 5 4 4 4 +4460 2 "I strongly feel that every book was created for people to read and gain knowledge, on what every aspect of what the book is. If your children are looking at things they should not be looking at, you should keep you child away from that section. Every person has a different style of book's that they like to read, they should not have to lose those book's because children are looking at things their not supose to. What would be the point in a library if you can not have certain materials in side it. My view on censorship in libraries would have to be that those bad sections should be off limits to childeren. All libraries are divided up in to different sections like; fiction, non- fiction, fantasy, children's books. Those sections were created for a reason. If people choose to let their children read books then that is fine with me. Although those parents that do not approve of this can go to a different library. I feel that if that one parent complains and no one else has that they should not be allowed in that library anymore. I do not beleive that certain materials, such as books, music, movies, magazines, etc should be excluded from a library. Just because, a person does not appreciate their child picking up a book they should not have. I feel that parents should be responsiable for what their kid's are looking at, and not make libraries take books off their shelves. Everything from books to movies were put in the libraries for educational reasons. Their should be laws that say those things are put into a library for a certain reason, and if customers do not like that they can go some where's else. My own experience being a volunteer at a local library is that there are many things that were put into a libray for a reason. Every movie, book, and magazine have information about something that you @MONTH1 want to know. Books are put in libraries for people's pleasure and love for reading. All those types of books are made from people that find excitement in reading. Movies at a library are put their for educational reason like: to teach kids to count, and to learn something about a certain topic. Magazines could just be in a library for people to read and relax, and learn something new in the world. I really feel that parent's should watch what their children are reading, you should think the same. Library's should not have to remove books from their shelves that have been there for a really long time. Materials like movies, books, magazines, and music should never be taken away from a library. What would be the point in having a library around if you could not go check a book , movie or cd out that interest's you. After reading this should feel the same, that certain thing should not be removed from a library because parent's do not know how to watch their children" 4 4 4 4 3 4 +4461 2 "Have you ever seen a book or magazine on a shelf that looked offensive? Say, maybe some sort of book that highly deals with drugs, alcohol or even sex? Well, some parents don't want their kids to 'accidently' pick up this book and read it. It could scar them mentally for life. Offensive books are not meant for kids or even some kids in the early teens. They are too young to learn about drugs, alcohol and/or sex. If a kid picks up a book about sex, which I highly doubt would be on a library shelf, what would they say to their parents? '@CAPS1, look what I found.' is exactly what the kid would say and show the book to their parent. The parent, in shock, could sue the library for having such an offensive book. However, some @CAPS2 do not find books like that on library shelves offensive. It might 'provide' good information for their lives or even someone else's life. @CAPS2 are the ones who should be reading those kinds of books, not their children. It can and will mentally scar them for life. The library could do simple things, like for example: they could make a room just for @CAPS2 and have the offensive movies/books/magazines, ect in there. Kids can't enter unless they are @NUM1 or older. That could be a good idea because their children wouldn't be picking up those kinds of offensive books and it will keep their mind safer. Us children are always curious to know things, especially when we are growing up. We'll ask about drugs, alcohol and even sex when the time is right. But for the library to have things like that on their shelves is just very offensive to parents and other @CAPS2. The library staff should take action and make a separate room for @CAPS2 @CAPS3" 4 4 4 4 4 4 +4462 2 "I believe censorship is necessary. If all of the kids in the world grew up listening to hardcore gangster rap and watching porn @DATE1 we would have shiftless and violent leaders tomorrow. It's inmportant that we are held back some what by these offensive outlets in order that we grow into mentally healthy adults. However, censorship can go to far. When it comes to the removing an author's work from a public library altogether, we have crossed the line. With the @CAPS2 given us by our founding fathers, our @CAPS2 given to us at birth, and the duty we have to express our opinion, I submit that it is a crime to remove the hardwork of authors and artists from the shelves. Of course the first point of argument that comes to mind to defend my postion is the fact that we are all given a legal right to express oursleves through the @NUM1 amendment of our @CAPS1 of @CAPS2. The writers of this @CAPS1 were aware that freedom of creativity should not be held back from the people. That law still exists @DATE1 and has been used many times to defend people arguing to keep their work, their words, and their ideas out in the world. As far as I know, taking any form of media, book, or entertainment away from the general public would be illegal. Still, even with this point made, some @MONTH1 not be convinced that we are allowed to say what we want. A man by the name of @PERSON4 comes to my mind when asked about censorship in the media. @PERSON4 was a musician, composer, writer, public speaker, and human @CAPS2 activist. I think many people believe him to be a bit too wild and deranged to be a convincing argument. @PERSON4 was known to be a firm athiest and secular humanist (one who believes that there is nothing more important than the physical human body), but he gave the same argument I'm giving @DATE1, and I'm a catholic. @PERSON4 spoke out against censorship, saying that it was a way to judge artists on their work when it wasn't even listened to fully. If someone as convincing and passionate as @PERSON4 could feel that way when he didn't even believe in a @CAPS4, then everyone should see that the human race, whether they believe in a @CAPS4 or not, is given the right for their creation to be revealed. In some cases, it's necessary and needed for people to show their ideas to the public. @PERSON1, @PERSON2, @PERSON3 even, and the list goes on. These people, although from different worlds and different times and different people, were all avid believers in the @CAPS2 of humans. Imagine if @CAPS3 had just said, 'I don't think people want to hear me so I'll just stop and let someone else take over for a little bit.' Do you think the world would by as amazing and of intergrated as a place? The point is, we never know how great and life-changing someone's point of view could be. Whether it's leading a civil @CAPS2 movement, or attempting to bring peace to a world that needs it the most, censorship might be the one thing from stopping the people from seeing the most influential person that they need. In fact, we are all called to share our ideas. It's our duty to make sure people see the world not only from their view, but from the view of a poor homeless man, and from a single mother of five, and from a kid in elementary school, and from a rebellious teenager. The world might not be ready for change, but it needs it. Who's right is it to judge an artist's work? Some call him @CAPS4, some call him the man, and others call him the government. It's hard getting your work acknowledged by someone, let alone a whole nation. However, that doesn't mean we are to just give up. Censorship in public places is a crime against the law, nature, and our inaliable @CAPS2, and it's our job to go out into the world to create a new one." 4 4 4 4 4 4 +4463 2 "Censorship is just another way to take knowledge from another person or a society. Wanting to take and hide even the smallest of discreet history, politic corruption, and inappropriate sights to a generation can turn them all ignorant and unaware of their past, present, and possibly future. Censorship is extremely dangerous to a soceity because it leaves them vulnerable to the future. For example, if people tried to censor @CAPS1 @CAPS2 and many other environmentalist around the globe of the @CAPS3 @CAPS4 possibility, then the world would not be able to have the chance to stop or at least slow the upcoming disaster by going green. Instead, we would most likely die a few hundred years before that deadline. Also, maybe if more people knew about @PERSON2's censorship of his oil distribution among the @LOCATION2 (during his presidency) people might have at least discussed of impeachment. Try to think how the future would have been if racism, terrorism, wars, or even an event like the holocaust were censored. That could be taken as brainwashing! Even though that @MONTH1 cause peace and happiness around the world, we still would know nothing of our history leaving us historically, unintellilectual. Then think of all the sudden problem it would cause if that information was suddenly found. In the book series of 'The @CAPS5' by @PERSON1, a city has been isolated from their past, who they call 'the @CAPS6', and they are basically brainwashed to think that they almost destroyed the world by war and destruction by the new government and their new technology. Luckily, in our own era I do not believe we are censored from most things except of course politics going on between other countries. For example, the @LOCATION1 bin @CAPS7 killing was nothing of anyones awareness except the @CAPS8 of @ORGANIZATION1, military, and @CAPS9. That was a thoughtful choice from @CAPS10 as well instead of announcing it on @NUM1 news. I'd rather of coursebe notified about my history, because it's interesting and it shows why things are now. Books like 'To @CAPS11 a @CAPS12' or '@PERSON3' should never be taken off shelves for young pupils or old matures. Although it would seem a bit more offensive to hearing a historical racist cocasian singing about negroes than a racist book, I would always be interested in hearing about it. Censorship should definitely be illegal itself in libraries, @CAPS13 stores, and any other selling stores of books, music, movies, and/or magazines. Although, I have not heard of any recent censorships, but then again should I not be able to? It is censorship.." 4 4 4 4 4 4 +4464 2 "Dear, Katherine Paterson I was was thinking about if they items you listed to be taken offenisve, well I believe that its a free country and that all people should be treated equal,what im trying to get to is that the newpaper organization should keep doing what they do! in fact should add more. Yes their should be restictions on some things but to solve the under age buying just make people use their @CAPS1! By doing this I think this would solve alot of issues, taken it all away would be alittle to serious for just some magazines or moives.So keep doing what your doing just set a higher restiction on sells and things should be just fine ! from your dearly, zack" 2 2 2 2 3 2 +4465 2 "This writing is socially unacceptable! There are many books and media sources, that include: lauguage, sexual tones, and other immoral things and ideas. However culture does need to be obtained, although immorally on this earth is at an all-time high,we need to stop focusing on books that will always be on the sheves and turn our attention to people's hearts, and turn to morally right things. When a person walks into a library, @CAPS8 or she can expect certain things, for example: the smell of the older books, the noise of a group of kids, and the yelling of the librarian to keep them quiet.What @CAPS8 or she would not expect is: kids doing drugs, and watching porn on the computers. This is not a book's fault or 'the evil computers' fault. This is the fault of an immoral world. I myself have witnessed some evil things kids do in the school system and it gets worst everyday, there is good, but it certainly is not because they themselves are caring and loving about what they do on this planet. I can quote from many, in my @NUM1 grade class that have told me 'The only thing that is wrong, is telling someone they are'. This thought process is immoral. But who is going to tell them that, and what is the answer. @CAPS2 is the answer, in the @CAPS1 it says, @CAPS2 is the way, the truth, and the life.This is truth. In the book of @CAPS3 it says, @CAPS4 gave many people over to their sinful passions. @CAPS4 is the only good, and the only light comes from @CAPS5. The only man to live a perfect life was @CAPS2 @CAPS7 and @CAPS8 was @CAPS4 in a human body. we as a planet need to turn to @CAPS5, the only good thing. And try to be like @CAPS5, because this world needs @CAPS5. Only @CAPS4 can change a heart. We need the focus on @CAPS5, once we do that, the way we think, and the way we write, and the way we act, will change and we will not need to disgust this problem any longer" 4 3 4 4 3 4 +4466 2 "I think that only if there is real offensive stuff then it should be censored. It is wrong to make fun of or joke about people. Mocking a dissability like there have been movies made doing. Well actually, there is a movie I've seen before called The @CAPS1 and its a guy that made fun of a special olympic team, then lied about having a dissability to get money for racing and beating the team in races when he was totally fine.That would be something that I myself would want to take off shelves because there is no reason to mock a dissability. I wouldn't know who decides what goes on shelves and what does not so maybe depending on what the offensive information is tells them something shouldnt be brought out" 2 2 2 3 3 3 +4467 2 "I @CAPS1'@CAPS2 belive that any kind of material such as books, movies, magazines, ect., should be censored ecept for mature content such as pornography, violent and horrid movies and video games. But thats why we have @ORGANIZATION1's made. So when asked, we can show our age. Some age groups react diffrently to mature contents. Usually @NUM1 and up is a tollerable level for maturity to set in. Maturity is maintained at diffrent paces in all age groups. For example, perhaps a @NUM2 year old is more mature than an @NUM3 year old. It is when you as a individual can act like a human being. Instead of like a pack of rabid wolves. Just because you do not act mature dosen'@CAPS2 mean you dont know how to be civilized. The best way to prevent a child from discover something inapropriate or vulgure is to, seperate the books by an age grouping system. Keep adult videos out of site and reach of children. Also put saftey locks on your @CAPS2.V. to prevent kids from sneaking behind your back" 3 3 3 2 2 2 +4468 2 "Everyone has an opinion. Don't you agree? That's what makes us different, this is why some of us would rather watch @CAPS1 compared to @CAPS2, or why some want to listen to pop instead of country. A library is a place that brings all sorts of people together. It's a place of interest and information, a place for research and enjoyment. So here is my question: 'Do we really want to remove certain materials from library shelves just because some people find them offensive.'?I don't believe so, as the quote says by the author, Katherine Paterson, 'And then we have no books left on the shelf for any of us.' I agree with that statement! Think about this, if we allowed people to get rid of the library books they just don't like, if everyone had that right. We would have no more books, no materials left to study or pleasure read.I have to admit I've seen things that I don't necessarily agree with, but other people might. You can't just have a library all to yourself. Something for just your interests and nobody elses. That's not what a library is for, millions of people use libraries for different purposes. So no I really don't think we should remove items from the shelves. Only pick up what you find interresting and leave it at that. We all have rights just like we all have likes, dislikes, and minds of our own.Opinions define us, choices shape us, but libraries do so much more, they advance our knowledge, make our dreams a reality, and sometimes even broaden our horizons. We need books, music, movies, and even magazines, but we need them all together. That's my position on this topic, I hope this helped form yours." 3 4 3 4 4 4 +4469 2 "Books in libraries are available to everyone, so who's job is it to decide which ones are appropriate and which are not? This is a very controversial topic. On one side, parents are worried about what their children have access to at local libraries. They believe libraries shouldn't contain any books that might be found offensive. On the other hand, whose job is it to decide what is offensive and what is not? If people are given the right to remove books that they think are not appropriate, eventually libraries will have so few books that it would be worthless to even get a library card. I believe that it is the job of parents and other adults to teach a child morals and what is right and wrong. If kids have developed morals and values, parents wouldn't have to worry so much about what they're checking out of the local library. Kids are faced with issues of right and wrong everyday, and parents should learn to trust that their child is making the right decision. As a teenager, I know that people have access to far worse things on the internet than in libraries. If people begin to censor libraries, surely they will begin to censor the internet, and the idea of freedom of speech will be thrown out the window. People have a right to be heard and share their opinions, and who has the right to say that a person's opinion doesn't matter? In my opinion, the act of removing books from a library says just that. Just a few months ago I had to write a research paper about the @PERSON1, and in order to find information about the topic, I had to check out books from the library. Some of the information I read about the topic was horrible and very offensive, but I couldn't have written my paper without it. Books in libraries have information that is vital, whether the books are offensive or not. Books can be used to teach people lessons on what is right or wrong. By being educated about even the most offensive things, people can learn from them and form their beliefs. Removing offensive books from libraries will not lessen the chance that someone's child will run across the information that they contain. There are many sources for information, offensive or not, and a library is just one of them. People are responsible for their decisions, and it is each individual's choice on what they choose to read, watch, or listen to. We are faced with choices everyday. Should we watch a movie even though we know it's inappropriate? Should we listen to a song even though it gives off a bad message? Checking out a book from the library requires the same decision. Each person must choose what is right, and it is not our job to tell others what they can and can't do." 4 4 4 4 4 4 +4470 2 "Yes I do believe that any book found offensive to any person should be removed from the book shelf. You have to think about it from the other person's perspective, or put yourself in their shoes. Say you went to the library and that certain thing was constantly there or it felt like it was constantly hanging over your head, that would be a tough problem to deal with in your every day visit to the library. Also in your everyday life. One reason for this is because if you find a book on a shelf and it offends you and another person knows it affends you then most likely they will use it against you to say mean and harsh things. Another reason i believe an offensive book should be removed from the shelf is because what if you are in that place very often. I mean if you have to see that book every day dont you think that would start to get on your nerves a little bit. So what I am trying to say is I do beleive if there is an offensive book on a shelf remove it. Music should not be as much of an issue as books. Music is something you listen to or you hear. Books are things you read. I say music should not be as big of an issue because music you do not see like you do books. Books is usally says it right there in black and white. Also the posibality of it being right there in front of you in words and a picture. So what I am saying here is that if you find something offensive then fix it instead of letting it bother you every day of you life. So get it fixed now or just get over what ever you find offensive" 3 3 3 3 3 3 +4471 2 "Books are pieces of art. Authors are artists. Writing is a form of expression. In the @CAPS1 it grants freedom of expression. I do not think we should deny anyone that freedom. I do not believe books or any other form of art should be removed from the shelves of libraries. I understand that parents do not want their children seing or hearing certain things. People want to keep children neive, they want them to stay innocent. The thing they have to understand is that children need to grow up. They will be curious. They will want to know. They will want to see the world. You can not hide things from them. I believe in what @PERSON2, my favorite musician, once said '@CAPS2 covering your childrens eyes...' The world can be a bad place and you want to protect them from that, but it can also be beautiful. There is so much that children, and just normal people would miss out on if we took down every thing that someone said was 'offensive'. Also there is the question of, what is offensive? Who decides? Where do we draw the line? Like Katherine Paterson said, soon we would have no books left on our shelves. Because everyone has a different oppinon. People can find the most innocent things offensive. If you do not want your children reading or hearing certain things, then tell them so. Do not ruin it for other people. To each his own. Different people like different things. Something that would be offensive to you could very well be beautiful to someone else. '@CAPS3 mans trash is another man's treasure.' Books, music, movies, they are all art. People have the right to express themselves. We already censor so much. I think when you cencor things it takes away from the original. If you do not perticularly like something, then it is your choice to not read it. It is your choice to not listen to it. You can choose for your children, but you can not choose for others. People have a right to do what they want. People have a right to do what makes them happy. They have a right to read, watch, or listen to what makes them happy. They have a right to create what makes them happy. You have no right to take that away from someone. Books do not kill people. Music does not kill people. They can make you uncomfortable. They can even make you sick or angry, but they do not harm anyone. People make decisions. People control their own actions. Books, videos, art, does not harm people. All in all, I do not believe any books, music, movies, or any other forms of art should be romoved from the shelves. There could be age limits for certain things, or specific sections for more adult things, but I do not believe any @CAPS3 should have the choice to decide what is right for someone else. You can shelter your children if you would like. You can avoid things you find offensive. But please do not take away an oportunity for another. A wonderful book, or a life-changing peice of music could be taken away from someone, because you found it 'offensive'." 4 4 4 4 4 4 +4472 2 "Books are part of history no book should be censored. They show and teach us about history. If the book is based on true events nothing should be censored. Many books from the @DATE1's and earlier have words that younger children should not see yet. With how the human race is everyone is going to hear something bad or even see something. Its just like saying all websites should be cenerosed. A book that needs to be censored should not be in an @CAPS1 school. I would have to say any book that teaches a lesson or helps a teacher should be used no matter the content in it. This is why a teacher needs to read the book before assigning it the students. If he/she thinks the students will not act apporiate, then the book should not be used in the class room. A lot of books would be removed or cenersored from shelves. If you do not want to hear those words or see certain images you should not have gotten that book. Many people would be made mad if this did happen. I would be two because sometimes a whole chapter could be bad or in music a whole lyric could be bad. Many people are mad now, but everyone else would be mad if censerorship happened" 3 3 3 3 3 3 +4473 2 "Removing books off of shelves in our public library? To me, that sounds crazy. I can see how some people might be offended by some books, music, movies, magazines, etc., but some people appreciate it. It's diversity, some people love the down-to-earth literature, but some people can't handle it. Why take away something that only a few people disagree with? I believe some of the best entertainment in libraries are the most offensive, but it is all fact. I mean, if this is such a problem there should be a certain section to find those things in. If people want to complain then they can get out of that section, because people like me will be in that section ready to learn about all these different varieties of entertainment. Whether if it's offensive or not.People @MONTH1 find some of it offensive, but I believe it makes that person stronger. It helps them realize how lucky they are that they're not being treated a certain way in the offensive book they're reading. It's just a piece of entertainment! If it offends you and you're not entertained, go find something that does! Even though I hear of people reading offensive books I've never really seen one myself. I think some people just get offended too easily. That's where we should reason with them instead of giving into their demands. So what if they aren't taken off the shelves? Like I said, we can make a certain section for them type of things. If they aren't happy with the outcome, they will get over it. Now that you read what I had to say, what do yu think? Do you think we should remove certain entertainment off of library book shelves? Or should we just reason with the people who are offended? I hope what you read today helps keep books on the shelves and readers happy!" 4 4 4 3 4 3 +4474 2 "Should we have censorship in our libraries? This is a question that both sides can argue with creditable facts. However, censhorship is mostly defined as not allowing certain items or things to be seen or heard of until a mature age. How can you tell when someone is of a mature age? Maturity lies behind one's self to cope with various thoughts, ideas, actions, etc. Censorship should be allowed to an extent. Censhorship plays a big role in society today. It has changed the content on our television from @NUM1 years ago to modern day. The government is more leniant today then they were @NUM1 years ago. On television @NUM1 years ago, you would never hear a sware word, or see a couple sleep in the same bed. Now, some sware words are considered okay, because people can handle them. It is like they are part of our daily vocabulary now. Censorship has changed a lot. Books of all sorts should be allowed to children and adults of all ages. Certain literature provides a cornucopia of topics and subjects to be helpful to a processing brain. We learn and understand at different rates. Some books with 'adult content' @MONTH1 be suitable for more intelligent minds. Authors sometimes put in so-called 'adult content' to add suspense and drama towards the bigger picture or message behind their work. Books help the mind to expand and gain a higher standard of learning. Movies are differnent. Some movies have sexual content that our youth should not see. Most magazines have the same principles as movies do. They are both rated differently on levels of age. Therefore, we can protect their innocence and fellow youth. Music is healthy to the mood of a person. Music should not be censored. People just have different tastes in music. Some @MONTH1 be fond of other genres and some @MONTH1 dislike the other genres. There is a wide array of music that people can enjoy. There is no way to censor the universal language that music provides. Censorship should come down to what the adult allows for the kid to see and hear. Censorship of books is not fine, but censorship of movies and magazines are acceptable. Music, however, can not be censored. The lyrics and sounds speak to many people in strange ways. It is all helpful in the end. Everyone should have the right to watch, read, or listen to whatever they want. It all comes down to learning, and there is no censorship on learning. So, please do not censor our libraries. Allow the adults to censor what should be censored in their families" 4 4 4 4 3 4 +4475 2 I dont think people should remove the books and movies and music cause its the peoples choice to read and listen and watch the things that that get. Why should people change cause other people can't handle what the stuff has on it. If the people want to read or watch or listen to bad stuff they can its not other peoples choice. The people will choose what they want or what they think they want to read or watch or listen too. People will find out by themselves what they want to hear or listen too. Like I said its the people who choose what they want to watch or listen or read and it is nobodies elses choice to say so. The people will find out what they want there kids to read and listen and watch and so will they. This is what i think of this essay it will be up to the people to choose what they want the listen and hear too. 2 3 2 3 3 3 +4476 2 "I feel that a person has the right to go to a liberay and get a book, magazine, moive, and whatever else they might because someone could use the material for infomatin they @MONTH1 need. I however do feel that is should be handled maturly, @CAPS1 kept in a special area or somewhere a child or person that should not have material about anything unuseful to them. I think if it is something for an adult only them there sould be no way of a child getting ahold of it. A person does have a right i feel to go to the libery and get whatever book they @MONTH1 need for personal infomation to help themself to for resherch paper they need infomation on. Anyting inapporatie should have it's own spot away from anyting else. As i have mentioned I do feel that there should be some protection for childern number one, who do not to be reading about something over there head, and two for someone who doesn't really need that infomation to help them get infomation about someting. I think there is many things that can help prevent someone form feeling like the libery need censorship number one would be have a special room just for things that are deemed inapportiate to someone which leads me to my next point there should be a worker just for determing in something should be kept in a specail room. I think there defanilty should be a certian age to enter a room for uncensored materials. If they do not meet the requirments dont let them in. I do think in some cases then they should have to say why they want that certain material just to determine it is for all the right reasons. As i have menioned I do feel that everyting should be allowed because is could be needed by someone for person infomation, or a classroom prompt that needs infomation. But I also do feel that there should be some rules and requirments as to what is apportiate and what is not. If that person has a legitament reason for needed something i don't see the harm of them getting what they need" 3 3 3 2 2 2 +4477 2 "How would you feel if someone told you that you couldn't have certain food in your fridge that sence its bad for your health or they might think it taste bad. You would not be too happy about it. Well its the same thing when people want to censor the libraries. When people try to censor the libraries they try to take out books that are 'offensive'. If someone that likes those kind of books and they are being taken off. Its unfair for that person because they are being limited on what they can get from the libaries. Libaries are soppose to be a place where you can get books or magazines that you like to enjoy but they cant do that because people are trying to cencor the books. The people that want to cencor certain books say that they might offensive not only to them but they could also for the kids. Well I say to that, you don't have to bring your kids to that section. You don't have to read those books you can just leave them alone for the people that like reading them. To the people that want to cencor certain books what makes a book offencsive? Whos to say if that is offensive or not? The two views are differnt just because one person thinks its offensive doesnt mean another person thinks the same. My opinion is leave the books there and let people enjoy the books they like to read. No book is bad every book does good for you because it builds your education, it could also be a stress reliever, and something you like to do on your free time. The people that are getting cheated out on the books they like because they are being cencored. What if the @CAPS1 @CAPS2 series got cencored because of the magic.To some people that might be an offensive book and if that book was taken off the shelve we would lose one of the greatest books and @CAPS3 of people would be upset. So the way I see it everyone should be entitled on what books they can choose. To the people that don't like certain books just leave them there you don't like to read them thats fine. Everyone is entitled to there rights like Katherine Paterson said 'You have exactly the same right and so does everyone else. And then we have no books left on the shelf for an of us' So we should all get to read what we enjoy to read, cause reading is endless" 3 3 3 3 3 3 +4478 2 "Books should be removed only if they are found a certain degree of offensive. Some other books, though, are meant for educational use and not meant to offend anyone. People sometimes take it too seriously. Many books have posed a great educational source for many years. Books have been around for a very long time. People many years ago used to read books on scrolls, or even in pictures to tell stories. Stories have been around for a very long time and are meant to be stories, not criticised pieces of work to put down other people. There are a lot of books, however, that have been meant to put other people down. These books I agree should be taken off the shelves since they might promote people to turn on certain races. A good book that demonstrates it is not putting others down but sounds like it might is 'To @CAPS1 a @CAPS2'. This book has been intended for people to read it and learn of the life back when there was slavery or, a time just after slavery but where people did not respect the newly freed men. Another book that tells of times during slavery is 'The @CAPS3 of @ORGANIZATION1'. This book tells of a young boy that runs away to live his old life and meets up with a runaway slave named @PERSON1.This book has been meant to tell of what slaves would be punished by if they were caught. Many other books exist as these. But I guarentee that over ninety percentile of books are meant to be used for educational purposes due to the context they have been used in. Most people will take books the wrong way, but that is only because they are afraid that they will be judged, just as the book was judged by its cover. I have read many books over the past couple years, and I find that many of the books that I read have proved to be educational to me. There are some books though, that I agree should be taken off the shelves due to them being over the top on offensive. Censorship has a job to protect us from many unnerving topics and I agree that certain books should be taken off the shelves. But, I think that sometimes, places go over the top with censorship and should let certain people decide which books are right for a place, as well as movies. The world is maturing, even as everyone speaks, and people are learning all the time. There should be some censorship in public places, but only on over-the-top topics where authors have written about an issue that will offend many people" 4 4 4 4 4 4 +4479 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf-that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' wrote by Katherine Paterson. If you think about it when you go into a library there is a ton of books to choose from. But how many do you think is appropiate for every age and including children, not very many. That is why they have sections for the books, but there are times people are rude and mix them up on purpose. How many times have you been in a library and find a misplaced book? Many of times right, that can be accidental or on purpose. I know if I took my child or children to a libraby and they got a book that was inappropiate for them, I would take it to the front desk and complain about that book. Now if it was a book that has been misplaced I would take it from them. But, yes there are some books, magazines, movies, and music that should be removed from the libray. I remember from when I was a little girl going into the library to check out books with my mom or my dad, it did not matter they both enjoyed taking me to the library. They were pleased that I loved to read but, one day my mom took me to get books from the library, she did not think about looking at the books I got until we got home and she realized on of my books had a cursing word in it. She was not happy at all, I had no clue what she was doing. But I figured it out, she grabbed me by my hand and took me to the car. She fastened me in and off we went, back to the library. She had no problem going off and complaining, I can remember her every word she said it sounded like this. '@CAPS1, my name is @LOCATION2 and this is my daughter @PERSON2 she is six years old. We were just her about an hour ago, but you want to know the funny reason we are back. Well if you can give me a funny reason for why my six year old daughter has a childs book from here with cursing in it. Please speak up and explain I would love to hear it.' The lady at the front desk was stunned she has never had someone go off on her for the seven years she had worked there. But the book is no longer in the @LOCATION1 library, I can not remember the title of this book, I just know that with a mom like mine she can get something done. Just like Katherine Paterson said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I can tell you from experience and observation, you can do and get what ever you want with a little power and persausion. It @MONTH1 cause trouble but just set your mind to it and you can help and solve problems when you do set your mind to it" 4 4 4 4 4 4 +4480 2 "When you have children would you want to shield them from something you think is wrong, even though it goes on in the world around you every single day? Today in society even though we have freedom of speech the government has come up with something to even conflict that, censorship. One thing about censorship is that it is just a way the government can control what everyday people say, hear, listen to, read, or even see in today's society. We shouldn't be controlled on what we can or can't read, watch, or listen to. I have experienced these things almost on a daily basis if it isn't on the radio it's on television. When someones words get beeped out for saying something vulgar or innapropriate. The second thing about censorship is that no matter what it is, where it is, or even who it is someone will always have a problem with it. Just recently in one of my own classes we read an article about a very popular chldren's and young adult's film and a school tried to ban its books from its library because it dealt with sorcery. Most of every person I know that has read those books knows that sorcery isn't real. Why do people find it necessary to do things like that? I think most people just view something that could be entertaining to one person as completely disgusting and disturbing, just because it is a little bit different, I find that as unique not bad. The third thing is no matter what public libraries shouldn't be censored. Everyone views things differently and they all have different tastes in music, literature, and films. Just because someone likes something someone else @MONTH1 find vulgar doesn't mean they should just be able to remove that from the library's public shelves. After all the library is public and I put a great deal of stress on it being public because every person in the world today are all different. Today in society even though we have freedom of speech the government has come up with something to even conflict that, censorship. Leaving off on a lighter foot, whether it is purple or green, or old or new, someone will always be able to find something wrong with it. I'm sorry to today's society for not being able to realize that most of its problem is trying to control everything that everyone does" 4 4 4 4 4 4 +4481 2 "Libraries have no right in my mind to decide what is offensive and what isn't. Libraries shouldn't have the view on censorship the people who rent or buy the items should. The @CAPS1 has an idea of what is offensive but they shouldn't be able to make that decision. If the @CAPS1 wants buisness they should try to make sure the customers are happy. Libraries should take surveys of what everyone wants. Not all the people in the world have the same idea of what is a offensive book, magazine, movies, music, etc. The different views of people can vary from a lot to none at all. If the people feel that they are that offensive then they should bring it up with the @CAPS1 and find a solution instead of getting rid of these items. A safe but easy solution would be to create a section just for offensive items the @CAPS1 or people claim them to be. Another possible solution would be to jus rearrange the area's of the books into to main category's such as offensive and none offensive, and then break it down into their specific categorys. So the libraries need to have a survey showing what items the people think are bad and the librarys opinions and then go on from there. The surveys could be made up of a paper one you fill out in the @CAPS1 to it's online website. The survey would have a list of books, movies, magazines, and music that people could check off. Now the @CAPS1 needs money to keep books and other items in stock and so they can repair them if necessary. So if the @CAPS1 feels that a book is offensive they shouldn't have the right to censorship. All these books have been in libraries for this amount of time why change it now. Think about it if it was offensive why did they put it into the @CAPS1 in the first place. So in conclusion the @CAPS1 should have know right to censorship books, movies, magazines, music, or any other item they have. This would cost time and money which they don't have. Customers could possibly stop comming in because of the change which would be a loss of money. Now everyone knows a big loss of money could hurt any buisness and possibley bankrupt them, or could take weeks, months, or even years to recover and no buisness wants that. So the easy way to make sure that doesn't happen jus leave everything the way it is" 3 4 3 3 3 3 +4482 2 "Books, music, movies, magazines, ect. should be remove if they are offensive to a race or any other kinds of belifs unless they are biogical or historical time line. If the reading material is so offensive towards you or your belifs, you @MONTH1 want to see a libarian and tell what you think about so that the reading material will be remove off the sevles and gone. I think that if it goes against something in a bad way is should be removed and gone. I've read a magazine before and it had some offensive stuff. I went to the libarian, told her that i wanted this magazine off the shelves. We argued for about five minutes and finally the magazine was off the shelves. Nobody wants something to go against them in anyway. Thats way we should have offensive material off our libaries shelves." 3 3 3 3 3 3 +4483 2 "PARENTS @CAPS1 @CAPS2 @CAPS3 I believe that certain materials should not be shown. But then some books are not offensive too everybody, so it would be unfair if all books were removed from libraries. I can relate too @CAPS2 discovering books that's not educational for them. It's up too the parents too show their @CAPS2 what too read and what not too read. This can also happen with movies, certain movies that @CAPS2 can and can't watch. The reason I say this is because if it was up too @CAPS2 on their own too decide what they would want too do, it would usually be negative results. Thats what parents are for. I was young myself and I had experienced this too at one point. The type of movies I watched, I thought they were pretty cool, but I was too young too realize what I was watching and what I was trying too do from a movie. I had too learn from my parents that the things I were doing was not rational. Then I realize that I was making mistakes. It was nothing cool about it. friends had told me that as well. So i figured out the hard way. I don't want any @CAPS2 to experience that. Not all parents can stop all @CAPS2 from discovering some disburbing things from books, music, magazines and all. What I'm trying too say that it can be reduced. Some parents can prevent it from happening. somethings can get in sink too a @CAPS2 brain and it could never be helped or solved. These things are serious and some people don't take it likely. And thats where it takes effect. Its up tookids parents or role models to show that some things are'nt meant for them too see until the right time. I'm not telling parents to trap their @CAPS2 from the world. What I'm saying is that parents should let them know that their going to witness some things. They just have to be prepared too see them and hopefully it does'nt take a negative impact on them. Hopefully they would be smart enough too tell what's right from wrong. Its up too the parents to assist their @CAPS2. Its up too the @CAPS2 too know whats good for them. I do believe that some @CAPS2 are capable of growing out of some events they learned from movies, too know that they were young, because I grew out of that myself. And if I can do it, so can they. Its not impossible. One good thing is that some @CAPS2 grow up in a positive community to know not read disturbing books/magazines, or watch disturbing movies." 3 3 3 3 3 3 +4484 2 "Do I think that certain materials that are offensive to other people be removed from the libraries? In my opinion I say no to this question. I say this because another person in the library might like the certain material that you feel offesive by. I don't think certain things that are offensive to one person should be removed. It can be an enjoyment to read to the next person. In the follow paragraphs I will continue to support more of my answer. A library is built for other people enjoyment. If a person finds somthing offensive to them I don't think they should get mad because it wasn't put there to hurt you maybe the person that wrote the book went threw the same excat thing you did. Most write books, create music, and produce movies to express themselves. They put things out there like that because they could encourage someone else. Personally I have never found a book, song, or movie to be offensive to me. I know that that the person writing the book wasn't tlking to me so I don't see why I have the right to get upset and that goes for everybody else. Most people who find things offensive in a library are always looking at the bad side of the situation. There is always a good side to every situation. Having a good and positive attitude you should see the brighter side of things. Most magazines that you read @PERCENT1 of it is talking about celebraties, so that really should'nt have nothing to do with you unless you so in love with that celebraty and just have to say sumthing about it. Other than that it's none of your concern. Music is a way of expressing ones self in ther own way. A person shouldn't feel offended because a song writer wants to express him or herself. What if that's the only way they know how to express themselves. It's like your saying I don't want them to express themselves because it offends me. What if somebody didn't like the way you express yourself and wanted you to stop. I'm pretty you wouldn't like that. In my conclusion I feel nothin should be removed from the library because it is offensive to someone. Certain things are put there for certain people. Nobody likes the same thing. How I put it, if it offensive somebody oh well I wasnt put ther to offend you on purpose." 4 3 4 3 3 3 +4485 2 "Have you ever picked up a book, video, or music from the self and wondered why is this here, it's not a well thing for our younger kids to read, watch or listen to. I think that we should pluck out these types of books on our shelf at our libaray to better our community for our kids and their kids. We have all the right to voice our opion on things that we think should and shouldn't be in our libaray. Books that promote sexual activity, killing people, using or taking drugs, and other harmful things, which isn't the best for our kids to read, listen to, or watch should be removed from our libaray shelf. Have you ever noticed how are crime rate and drug rate has went up in the past few years? These types promotes are in some of our books, videos, and other media. If we remove the videos, books, and other media that promote this kindof behavior we would have less of this type of crimes going on. I don't believe we would have all this crimes going on if we would remove this type of media because we all have a person we want to be like in a song or tv show or even in a book so we follow what they do, if they promote crime you try to act like them. We as humans follow the actions of others weither we think about it or not. Music also plays a big roll in this to, music containing bad laguage or promoting someone to take drugs or kill people, has been proven to play with our minds. Would you as a parent want to see your kid raised up in a community that promotes sex, drugs, kill people, and other things that we shouldn't do? There's music we all like out there, we listen to what we like so that being, if we like rap for explain, if it promotes killing we are more likely to follow that action in the song because your mind thinks it's self out of it being a crime to kill cause you like rap music so it must be okay. We @CAPS1's in our community believe that we should abstian our selfs from this kindof behavior and we don't see to many drugs, killings, or sexual activity. The bilbe teaches us to stay away from things that promote drugs, killing, or sexual activiy, thus we don't see much of these behavoirs in a @CAPS2 home or community. @CAPS4 are more better off then lot's of us weither we want to aceppt that or not. They live a life after @CAPS3, which don't promote all these behavoirs. and I know that @CAPS4 would be more willing to take out these type of media in our libaray. You can sit for one whole day and watch the actions of @CAPS4 and how they act they don't act like normal people as far as into drugs and stuff like that, only because they abstain their selfs from media that promotes sex, killing, and drugs. Now, if you want to help us make our community a better place for your kids and their kids, let's remove the harmful media in our libaray that promotes sex, drugs, and killing. I don't think you would want to see your kid doing drugs or killing people and messing up their lifes because you didn't help in removing this media. Please help us better our community for our kids and their kids and the genrations to come after us." 3 4 3 3 3 3 +4486 2 "Should materials that some people find offensive be removed from libraries? No I do not think that any materials should be removed from libraries. A librarie should have lots of different kinds of books, magazines, music, and movies. One reason I think that a librarie should have all sorts of different books is because everybody doesn't like to read the same thing. Like for example some kids could love to read scary and gory books and others could like to read books about sports or love stories. So maybe the kids that read sport books could be offended by all the gory books, but that wouldn't be fair to take them out of the librarie because some kids like to read gory books. Another reason they shouldn't remove any magazines, books, etc, is because it is nice to get to read or look at different things. People would get bored if their librarie only had books about war. Kids need to learn how to read different kinds of stories. Also if your librarie has all different kinds of magazines kids could learn a lot of interesting facts. You can find a lot of amazing things in a magazine. So if you only had four magazines about the same thing kids wouldn't discover anymore cool facts. A librarie is a place where kids like to go and enjoy some peace and quiet and look and read different things. So I think if you started taking specific things out of the librarie then I think kids would stop coming to the librarie. A librarie contains awsome infromation that kids could learn, but if you start taking things out then not that many kids will come to the librarie because they will not be learning @CAPS1 new. So if I had any say in this I would keep all things in the librarie. I would not remove @CAPS1! You want people to come to your librarie so you dont want to do @CAPS1 that can jeperdize people coming to your librarie. I think if you start removing things then your going to have less and less people come in and eventually maybe your librarie will get shut down because you have no buisness. So leave everything on the shelves." 4 4 4 4 4 4 +4487 2 "There a lot of things to life and sometimes we do need as much help as we can get. Sometimes people will do anything to get help or go anywhere to find it. Because when people feel lost it's the most scraest thing to a person. So they turn to reading books, listening to music, watching movies, also looking and reading magazins. But although thats not the best way you can go there times when you need to listen to your soul the most. Now there was a time when know one knew how to read or even was a loud to read. But now adays reading as taking over. If you can read you can do anything , you could be the one to run to whole world one day if you read things right. Books and magazins there are is not a big different between the two. Books can take you mind off some where that you have never seen before and places like the wild, @LOCATION2, @LOCATION1, @CAPS1's, and high up and trees. It teaches you @LOCATION1 thing but not every thing it teaches is good. Books can lie about whats about to happen to the world. Now magazing show you what all the starts are doing and how there living and what there house looks like and there money their begin home. There one thing you have to understand you can't always get scraed and thing what you reading is right you have to read your mind it see what it says about what you just read. When you hear your favtor song what do you or when you see your favtor movie? Do start dancing or do you cry when they break up, do you say I can sing like her or do you rein act the part in the movie. These things can help you or make you think about things you shouldn't do to people or even to yourself. Music can make you think about what your life has been throw or miss the person that has died because they listen to that one song so much. Music can talk you in to killing yourself drive you crazy, hurt your soul when hear what someone else has been throw. Its all about how you take the song when you first hear it and take the messages out of it. Movies show history and show you want happens to people when they do the wrong things what will happen to them. There could be a ican in the movie your watching and could want to be like him/her. But not everyone you see you shouldn't want to be like them. You have to be yourself at the end of the day. Because you wake up looking at you everyday and love you everyday and take care of you everyday. When it's all said and done you have to belive in yourself and not listen to what everyone is trying you. Go with you soul. Yes listening to it or read or even watching ir but just remember flow your deams and do what you love. So thants what I thing about music,books,movie and magazing listen but don't listen at the same tim" 3 3 3 3 2 3 +4488 2 "I think that movies, and magazines should be censured to kids at the library. There are many reasons these things should be censured and in this paper I am going to explain why they should be censured. I am also going to give a few examples of some stuff that shouldn't be possible for kids to get. The main reason movies should be censured is because movies that are rated @CAPS1 are not only supposed to be rented by children but it wrong to rent these movies to them. I mean if there is a sex scene or something and your only like eight years old this would be awkward for the parents to explain what the actors are doing. I mean if you were a parent would you want to explain to your eight year what sex is. The next thing that I think should be censured at the library is magazines. I know three in perticular off the top of my head, and they are @CAPS2, @CAPS3, and @ORGANIZATION1. These three magazines talk about how to be better in bed. I really don't any kid, teenagers included should need to know how to be better in bed. They also have several unhealthy diets that teenagers might try. This could cause them to get very sick and if they're already skinny, they could possibly die. Well this pretty much sums up what I think about library contents being censured. I don't really think there are many books that are that bad for kids ears and eyes. I mean there are romances but I don't think any kid is going to last thru a whole romance, because they are pretty boring. Well I hope this will prevent libraries from letting kids get ahold of this kind of content" 3 3 3 4 4 4 +4489 2 "In libraries there are some books,music,magaizines that are not very apporiate to put on shelves. There are little kids that will want to look at anything they can get their hands on. They are very mysterious when it comes to that. There are bad books but there are also good books in the library. If people found a book or any type of material in the library and found it offensive, then they should take it off the shelf. There are children that look at anything they want or what they think looks interesting. The library also should at least check what the book is about when it arrives at the library. That way no one would have to worry about a material being offensive. Movies should not matter really because there are a lot of bad movies but i dont think that people would find them offensive. They dont have to watch it and neither do their children. There is a lot of bad music. I think there should be censorship on music because some music today is about drugs,alchoal, and violance. People would not want to see that in their local library for their children to see. I have seen on the news people get upset when they see something that they think is inappropiate for underage children. I would get mad too because i dont want an underage child to be listening to that type of music. Children now look up to these song writers and want to become them. That is not a good thing at all. All magazines can be offensive to people just by looking at the cover and who the cover person is. Libraries would not put a inappropiate magazine on the shelves. There are some magazines that they have but they are good magazines even for children to read. I think that the libraries dont put offensive magazines out because they dont want any controversy. People today have came out even more good magazines for anyone to read that is not inappropaite for anyone. I think some people today dont realize that the library would want to offend anyone by putting those offensive magaizines,movies,books and music. Putting censorship on those things would be a good thing because there are materials that are not good for small children to read or hear or watch. The parents dont want their children looking up to a person who is involved in violence or drugs or alchoal. Censorship would be they way to go on all those materials just to keep away contoversy and the children safe." 4 4 4 4 4 4 +4490 2 "Censorship can be considered as a major problem. I believe it is our right to read and publish what we want. It should not be another person's opinion effecting what we can and cannot read, listen to, or even watch. Lastly, censorship is a popular communist trend. Therefore, I believe censorship is wrong. First of all, we have a right to say, read, write, and watch what we want, as long as it is not slandering someone. I don't believe that issue of slander is what is causing the censorship of many books today. So, in any other case censorship would be wrong and immoral. Second, it shouldn't be someone elses opinion that effects whether anything is censored. My opinion @MONTH1 differ from another person's and their opinion @MONTH1 be way different from someone elses. If they think it should be censored, they shouldn't read it themselves. Others @MONTH1 find the book, movie, or magazine to be great and very informative or interesting. Lastly, censorship is a communist trend. Last I checked, the @LOCATION1 is a democracy. So, it would be going back on our fundamentals of government to censor anything that isn't detrimental or slander to a person or race. So, censorship shouldn't be allowed anywhere. It is a very communist thing to do. It infringes our rights. Lastly, opinions are varied among people what should and should not be censored making it impossible to know what really should and shouldn't be censored" 3 3 3 3 4 3 +4491 2 "Throughout history their have always been those who have refuted the beliefs and ideals of others. Whether that be in @LOCATION1 when statues were censored by removing anything deemed offensive by the @CAPS1 church or the mass burning of books to preserve ideals that could invalidated through the clear spoken text. However this in not the @DATE1, women are not looked down upon anymore, science is not dillouted, and ideas are free throughout the world with the internet. So is it the libraries fault for providing uncensored content or is the parents fault, for not educating their children on the morality of such items? The modern library has very specific demographics for all items to which it posses. Movies over @CAPS2 attract both parents and teenagers alike, the music entices the teenagers, and the books and prior two media sources attract younger children. So how would it be fair to force a library to censor two of the things that earn the library the most money just so that kids don't read,watch or hear them. Plus libraries generally don't let young kids check out @CAPS3 rated movies or parental advisory @CAPS4. Some people however argue that books are the most dangerous thing to children and young adults. As books can raise ideas and strengthen them in a teens mind over the course of @NUM1 pages till parents end up with an anti-sematic teen with bad view on racism. So then why would that be the fault of the library as it merely provided one book that should not have affected that teen so much, had that teen had solid moral beliefs instilled in him or her from their parents. So if you find materials at a library offensive, or worry about your child going there, there's always an easy solution. Don't go their and don't let your child go their. However if you see the beauty in impurity that a library brings to a community and to a person as I do then don't allow the injustice to authors, songwriters, musicians, directors, and yourself occur." 4 4 4 4 4 4 +4492 2 "Every we go there is censorship. Childrean hear their parents saying them and are more than likely to repeat them. Children should know what cursing is and know it is not right to do. It should be up to the children what they read. Books should be censored if they are made for children. Adults should have the option of reading any type of book they would like. Children who have been secluded should learn that curse words are a part of reality also. We can learn something from any thing we read. There are a lot of facts teachers do not teach that books can. When uncensensored things are said aloud children are estatic. If they read themselves they would learn alot more. If your parents do not inform you either, you can miss out on some of the most important facts of life. It is very unnecessary to have rated @CAPS1 movies.Parents should be able to watch a mature movie with their children without being on the watch for something they do not want their child to see. The choice of children watching censory movies should definitely be on the parent. I always think it is a bad idea to have derrogatory pictures on magazines. These photos @MONTH1 give children negative thought, such as insecurity of wishing they looked better than the model. Children remember almost everthing they hear/see. It should be up to the children what they read." 3 3 3 4 3 4 +4493 2 "'@CAPS1 day @CAPS4 @CAPS3, my dad was pulled over three times for @CAPS2: @CAPS3 @CAPS4 @CAPS5.' @CAPS6 is just @CAPS1 of several quotes from a book that I am reading that some people could take offense to. The book in general is a rather appeasing book, it's just some things, people might take offense to. That doesn't mean the book shouldn't belong on shelves. I don't think that libraries should be forced to take books off shelves just because they offended someone. That's like saying you should shoot everyone who has made an offensive comment to somebody in their life, you would be left with nothing in the end. If someone finds the things that other people have to say, offensive, they generally stop hanging out with that person. Therefore, it would only make sense for someone to stop reading a book if they find it offensive. Some magazines have really offensive things in them, that people in the real world say. It's not like your generic non-fiction books that come up with insulting things to say, at a high school level. You don't have to subscirbe to that particular magazine, or even pick it up to read. These days, so many things offend so many people, in so many different ways. What might offend @PERSON1 down the street, @PERSON2 across town might find funny.You cannot make everyone happy, and if you took books off the shlef because someone complained about the offensive things that they read, you would be trying to appease to everyones' wants and needs. I think it would be fair to put a restriction on books, about age limits. Some of the more offensive ones could have the higher age limits. At the junior high I attended, they have books categorized as 'young adult' books, which means you either have to be in eighth grade or have a note from your guardian saying that it's alright for you to read those types of books. It'd be just like movies; movies have the ratings so that only certain people can watch them, why can't they do the same with books? I guess what I am trying to say is that it would be very disappointing to me and numerous other people if you just started taking books, @CAPS7, movies, magazines, and so on, off the shelves, and out of market just because someone cried foul against it. If they don't like the material that they are looking at, reading, watching, listening to, or all the above, no @CAPS1 is forcing them to pay attention to it. They can go read the nursery rhymes, because those are not offenesive. Once again I say, taking a book off the shelf everytime someone complains about the material would be like shooting every person who has ever made an offensive comment to someone in their lifetime, you'd be left with nothing." 4 4 4 4 4 4 +4494 2 "Taking books off the shelves? I don't think so. When you go to the library, what kind of books do you look for? I like mysteries and scary books, they keep me on the edge of my seat, however; some that I have read @MONTH1 not be appropriate for children younger than me. People are saying they want to remove books, music, and movies from the library when they are found offensive, but I think that is a bad idea. People don't always read books or watch movies because it is their choice. You can find a lot of younger kids at the library theses days for school purposes. From my own experience, I had to get a movie at the library once for a project. It was about the civil war. The movie had some disturbing scenes in it, but I had to watch it for school. If it had not been at the library, what would I have done? That is one reason why I do not think taking books and movies off the shelves would be a good idea. As I said at the beginning, I like mystery books. Some mystery books have parts in them that @MONTH1 be offensive. The book I am reading now is about a murder of a young girl. I think this would be an offensive book for someone young, or for someone who's loved one was murdered, but that does not mean I think they should remove it from the library. If they took books like that away, what would the people that like them do? It does not seem fair to me. For people who find books, movies, music, or magazines at the library offensive, simply do not use them. The library is a place where you can find almost anything you are interrested in. So lets keep everyone in mind, and their different interrests. It is also a place where you can find a lot of information even though it could be offensive. It would not be fair or right to remove books from the library" 4 3 4 4 4 4 +4495 2 "In my opinion, censorship of any kind shouldn't exist, especially in libraries. Libraries are where anyone can go and check out a book, @CAPS1, magazine, or movie. It's where the poor can have access to the same materials the better off have. If you take away opinions in books, music, film or magazine/newspaper articles, then you're taking away the author's right to freedom of speech just because someone deemed it offensive. The right to free speech is an important one in the @LOCATION1, we can have opinions here, we can choose our beliefs, and if someone wants to share their beliefs and opinions by form of writing, then they should be allowed. Writing is a form of expression, writers can express their thoughts, use their imagination to come up with fantasy worlds and unique characters. Who does one think they are to say it's offensive? Who gets to decide that this book of movie is offensive? If we take away books that one person finds 'offensive', we wouldn't have anything to read. Some people @MONTH1 find the @CAPS2 offensive, but we still put that in libraries, some people @MONTH1 find books on wizardry and vampires offensive, yet those are all rage now, we wouldn't take those away. Things that people find offensive are just opinions--just like the ones of those of the writers. It just simply wouldn't work out--if you want young people to read, you have to give them something to read that will stimulate their interests, and sometimes that @MONTH1 be 'offensive." 4 4 4 4 4 4 +4496 2 "There are many different kinds of books in the library. Not all of them are for the eyes of every person out there. I think that libraries should censor the books, movies, and magazines so that either they are in a certain room where only adults can see or get them, or they are not in the library at all. The books in the libraries can have some very obseen items in them that young children should not be able to see. I have been to the library many times, whether it be by myself or with others. I know what is out there and some of the books or movies are not always kid rated. I would like to someday beable to take my own child into the library knowing that what they are going to see is okay for their eyes. Magazines are always talking about new relationships or this person is having a baby or anything along those lines, and I don't want my child seeing that. The library I usually go to has the magazines out where everyone can view them and I don't want this for my son or daughter who is of a young age. I think a parent should be able to take their children into a library knowing that when their child runs up to them with a book, it will be something that they are aloud to read or get and not something that an adult would read. Libraries could always make a seperate room for books and movies that are not always for children. Such as the rated @CAPS1 movies or books that are inappropriate for young children. That way when a little kid is running around looking for a new book to read, they can't see or pick up these books or movies. I don't know about the other adults or parents out there, but I sure don't want my little kid walking around talking about an inappropriate book or movie they saw at the library. Since libraries have many different kinds of magazines, books, and movies, it is not always a safe place to just let your child roam around. Libraries could always make a seperate room for items like this. For the books that are for older @ORGANIZATION1, movies that are rated @CAPS1, or magazines such as @ORGANIZATION1. I think that if libraries did this, parents would be much more at ease to taking their children and letting them run around and look for new and interesting books to read or movies to watch" 4 4 4 4 4 4 +4497 2 "There are many reasons why censorship can be thought of as a good thing, or a bad thing. I am against censorship. My reasons are that just because someting is there that you don't like, doesn't mean that you have to look at it or use it. There are plenty of people that would like to have access to that information or entertainment. Another reason is, that if there's something that someone doesn't want their child looking at, then they should either trust that their child won't look at it, or prevent them from seeing it. Finally, what would be left if everyone were to remove somthing that they took offense to? Nothing would be left to read, listen to or watch. First, why I think censorship is wrong, is that the people that take offense to what they want removed, don't have to look at whats offensive. No one is forcing them to look at it or use it. They're better off just ignoring it. Because other people, that don't take offense to it, have the right to look at or use it. The library might be the only place that someone could have access to that sort of material. So if someone were to remove that material, the person that needs or wants it, would not have the access to use it. And they are given the right to use it. Their child might even have the right to it. Second is that some people wouldn't want their child seeing those things. But removing it shouldn't be that persons first instinct. I believe that the parent should be able to trust their own child not to look at it. And if they can't, then they need to somehow prevent their child from viewing it; not by removing it. The parent should be able to come up with a reasonable way of preventing their child from viewing things that they don't want the child viewing, rather than taking that thing away from the child, and the whole community. Lastly, let's say that in a library, theres at least one book to each person in a community that offends that person. If they were each given the right to remove the book that offended them, what would be left to read? Absolutely nothing. And each of those people that removed a book, most likely would enjoy another book that someone thought was offensive. So now there isn't a single book for that person to read, just because everyone else disliked the books they didn't think were offensive. Once someone starts removing, other people will join in, and you'd be left with an empty library. Thats what I think about cencorship. It's really just wrong. Personally, I would like to be able to go to my library and pick out a good book. And I know other people like to do that too. So why should anyone else be able to take that away from them" 4 4 4 4 4 4 +4498 2 "Have you ever read or listened to somthing that is so disturbing that you wonder how it even got the right to be published? Well, music, books, and magazines these days are full of garbage and innapropriete thoughts that children listen to and base there life off of. All of these resources that kids can find that has this kinda of material in it can be found in libraries. We have to put an end to it or find some source of censorship for these library resources. A library has the tendency to be known as boring or a very plain place. If a kid in school comes through the hallway saying he found a really good book, other kids become interested in it; they find out it has drugs in it and they assume that this is not a boring book like all the others that you would find in a library. Then, more and more people get that book and other books that have this style of materials are being discovered and checked out. Now, all these children with these popular books consider themselves 'cool'. So, these children start making actions and start behaving the same way the characters are in the book. This leads to disaster. Music can be the same way. Music that has been recorded in the past ten years pick up sexual references, drug usage, and innopropriete behavior in its lyrics. Why would anyone want to put this kind of material in there masterpiece? Well singers and writers have found out that pieces containing these topics have sold the most copies. So, every artist of any kind of work is puting these references in there books or songs. Now, singers are starting to make music videos which not along sings these lyrics but shows them as well. Children see these artist in these videos with attactive mates, lots of money, and living the 'perfect life'. So, this person try doing the same thing this artist did to make there life more like theres. Movies come along then, movies have seen the ratings go up on these kind of styles, so they start puting them in there film. Now, all these pieces have this garbage in it and has had it in it for quite some time. How do we get it out? How do we get our children to stop getting these resources? No parents want to walk around and hear there children saying these things or doing these actions. So libraries have to have some censorship on there work; there work should be removed so minors wont get the wrong message. What ever happened to the good old days when music, movies, and art was a special talent and was not looked up to as somthing that would get our children into some trouble? We need to get these censorships in libraries and get back to the good old days before things get more out of hand than they already are" 4 4 4 3 4 3 +4499 2 "I was asked the question 'Do you believe that a certain materials, such as books, music, movies, or magazine, etc.? should be removed from the shelves if they are found offensice?' I would have to say no. I dont think you should be in the library to be critisizing what other people believe in. But what if you just come past a book, movie, music, or magizine that is offensive? Just ignore it. I dont think people have enough time to be caring what other people think, even though people do it all the time. Next time you see a book that is offensive to you just walk away from it and dont bother looking at it. Everything can be offensive to anyone, @PERSON2 was completly right when she had said '...If I have the right to remove that book from the shelf...The you have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I think this day and age everykid knows more than they're supposed to anyways, so why cencor what they already know? What if you might like this specific series and it is about the haulacaust and it is like many different story made into one to tell about how the @CAPS1 stayed in the camps, but your not @CAPS2 or @CAPS3, and a @CAPS2 happens to read it and get it taken off the shelfs cause it's offensive. Maybe he thought it was a disgrace and lies about his home country and it's making people think they're all like the @CAPS5.If theat had happened to you what would you do? Would you go looking for a new book? Or would you be upset cause you weren't able to finish the whole series? Many people things offensive every single day, when they shouldn't. People try to act like they're better than everyone else, and it's not right. If your one to take things in books, movies, music, or magazines offensive then you need to get over yourself and realize that you need to spend more time on living life rather than get upset cause of stupid pitty stuff. In music they're are certain words used that one might like to be called, but if a differnt race decided to sing about it too then he might get upset and think that he's being rasict. It's not being rasict, offenending, or directed towards you! So, just do everyone a favor and stop complaining. Now Katherine Paterson, @CAPS6 if you have a problem with your child or any other children taking a book off a shelf even though it might offend some I think you need to realize that it is a good thing that, that child is still trying to read, and trying to get better at reading by reading. There are selected magazines and movies out there on shelfs of publi libraries and stores that might be offending others, but if it is offending you why are you looking or even gonna buy/check it out? I personally dont think any books should be taken off the shelf of any library anywhere. taking books off shelves are like telling people to stop reading" 4 4 4 3 3 3 +4500 2 They have a book in the libary called '@CAPS1 @CAPS2 @CAPS3' if you ever read @CAPS3 you might cry. When the have @CAPS3 in the basment they have him eat off the floor eat his brothers thow up and even eat warms. they beet him and thell he haves booes all over his body his dad broke his arm in two form his dad and mom fighting so much that his brothers cant tock @CAPS3 no more so his brother called the cops and the cops came and we all were gone. two years latter him and his brother got adopined there new mom and dad were good too them even thow they had six brother and five sisters but the all got a long and the had a good live afther there relly mam and dad died 2 2 2 1 2 1 +4501 2 "When someone goes to the library, there is multiple items to choose from. There are books, music, movies, magazines, etc. But not all of this is nessessarilly a good thing. There are several books, movies, and music albums that can be either offensive or not right for a library's audience. The material that is offensive should not be on the shelves for children sake. Although there is much good items in a library, there is also bad or offensive items in a library as well. For example, an explicit music album. If an explicit music album is just sitting on the shelf of a library, then any person could listen to it or take it out for awhile. By taking out the bad music, that keeps younger kids away from the explicit music that most parents don't want there children listening to anyway. Movies are also a problem in library's. For example, library's having @CAPS1 rated movies on the shelves for anyone to take out to go watch. Most @CAPS1 rated movies have something in them that doesn't make them child appropriate. Movies that are @CAPS1 rated are rated that because of all the material in the movie. This is why when these movies are played on television, they are edited so all audiences can watch. So by taking these types of movies off the shelves in library's, it keeps young children away from inappropriate behavior. Books are the same way as movies and music. There are books on the shelves that some people concider 'funny', but in all reality, it's a harmful book. There are books made that include racial material in them, even deragator statements. By taking these types of books off the shelves of library's, a lot more people wouldn't be introduced to all the racial comments that occur. For the sake of the children and young kids, any material that is found offensive in library's should be removed. If library's would just remove all the bad materials, it'll make all library's a more healthy and stable enviornment for studying like it used to be used for. Take out all the offensvie material, then they could put more educational books, movies, etc." 4 4 4 4 4 4 +4502 2 "What is offensive in libraries? The offenses in libraries are inappropriate and non-censored books, music, magazines, movies, and other materials in libraries. These books and other things in these libraries should not be removed from the shelves. They should not be removed because the authors of the books are just writting. From my own experience, I have seen innapropriate movies. To me, I feel that they teach me some lessons, but, it also depends on what type of movie it is. If it is rated @CAPS1 then I know that I @MONTH1 see some blood, gory scenes, and nudity. If this type of movie is not @CAPS2 @CAPS3, then I know that some of this stuff on the screen @MONTH1 happen in real life. Most @MONTH1 not happen, but there is a good chance that some of it will happen to someone in the world. All of this teaches me to be more careful about what I am doing and where I am doing it at. In libraries, there should not be nudity websites, books, or magazines or anything like that because that is just stupid and innapropriate for any child to see, especially in a public library. Now if a gory or a book with lots of blood in it, then it should stay on the shelves. I say it honestly shows and maybe teaches others not to do the same thing. So, as I ask again, what @MONTH1 be offensive in libraries? Some @MONTH1 say that books, magazines, movies etc. with racial slurs are offensive; but to others, it just shows how cruel and horrible the world can be. In my perspective, I just feel that the authors of these books are just writing and lets the creativeness take over. That @MONTH1 be it, it @MONTH1 not. In so many words, I say that the 'offensive' books, magazines, music, movies and other materials should stay on the shelf. For so many reasons I have said, and the ones I have not said, they help people learn." 3 3 3 4 3 4 +4503 2 "Should libraries be more careful about what they put out in their place of establishment? Of course they should. Libraries have all kinds of people walking in and out everyday. Certain rated material should be put in certain spots for certain people. The library should be more strict on the material that the people in the library look at on a day to day basis. Libraries need to become a little more organized. Libraries have people that come in and out of the library everyday. People of all different ages and anyone is welcome to come in the library. With that being said, children of all ages come into the library all the time and pick all kinds of material. Children of course can't read everything in the library. They have to stay within their appropriate rated material selection. So if the library is more censored and strict about the material children can't get their hands on the material that they shouldn't be seeing at that time in their lives. You would want your seven year old child seeing inappropriate or offensive material, right. Libraries should put the material that for adults eyes only in one completely different section of the library than what they would want the children that come to the library to see. With doing that it decreases the chances of the children getting a hold of material that they should see. Also, some books that the library think that some children should be able to see just might be offinsive to another set of people and wouldn't want their children to see. So books @MONTH1 show racism, or maybe another kind of discrimination and it @MONTH1 not be the goal of the book to make that suggestion but it still is in the book and in the wrong hands it can be a very bad thing especially in some childrens minds. The libraries really need to just stop and think for a second is this book really appropriate for this age group or even for this establishment. Libraries have become where children are just checking out books by themselves and to me thats a problem. I think that children need a parents concent to check out a book from a library but do the libraries care, no. Library @MONTH1 check their inventory and notice a book @MONTH1 be missing but guess what, by that time its already to late. Children are able to just walk right out with books these days and know one will even think that they just took a book without checking it out. When children find a piece of material in a library and they know they aren't suppose to have it and they know they cant get out of the library with it they might decide to just take the book. The sercurity wont think twice to check the child and what is the result the childs mind is corrupted. Guess what you can blame it on the though the library. Isen't that something the child got the material from your friendly neighborhood library. Oranization is the key. Libraries need to orginize their material better, plane and simple. It's really not that hard. They need to review the content that thier putting on the shelves in their establishment. I feel that the people at the library are lazy personally. If they just gave a little more effort maybe the children wouldn't get their hand on material that they have no buisness getting a hold of. Just pay attention to whats going on in the library. Their are books everywhere, right. Their are children, correct. The children @MONTH1 be in their appropriate rated section of the library but maybe a book from the adult section of the library stumbled over there by accident. Though it was an accident it still happened and it can be prevented and it should be prevented for the sake of the children. All we need is a little more organization. As you can see from the following libraries just don't about our children as much as we do. It's okay that everyone is welcome in the library no questions asked but, they people need to stay in the designated place in the library. Children shouldn't be allowed in the adult section for saftey. Also a book from the adult side shouldn't be in the childrens section because anything can happen and corruption will rise. We need stricter libraries. Better sercurity to what they children are looking at and where the material is. Also the library really needs to look at the material and decide if it is appropriate for all the readers that @MONTH1 look at the material. Organization is the key to all our worries, if we use a bit more effort this won't be a problem anymore." 4 4 4 4 4 4 +4504 2 "Pornography, vulgar language, grotesque scenes and many other things make books and movies inappropriate for some. In a culture like the one we have @DATE1, censorship usually takes the back seat. The media constantly portrays sensual elements and the language is also bad. People have always had a right to view what they want and read what they want due to the freedom that this very country provides. Every person is titled with their own opinion but there should not be censorship in libraries. There are many things in libraries @DATE1 that portray bad images and contain questionable content. Books and movies have things in them that indeed children shouldn't view, but the library is not able to take them down. People enjoy seeing and hearing these things, that's why @CAPS1 comes out with more rated @CAPS2 movies than all the other ratings combined. They make the most money off of them. In @DATE1's economy, the library needs to keep these things on their shelf so that they can stay in business. If people are offended by it, then stay away from that area and don't pick up the book or movie. If someone were to decide to take down a book or movie that they view as offensive then they are breaking the freedom that this has. Censorship is an opinion based topic that one cannot make on their own. As one can see, the censorship of books and movies is not entitled to a personal opinion. It is the duty of the library to keep the freedoms of the people and provide them with the entertainment that they want. Books and movies with adult content in them can also provide insight on what a society should not be like. Parents should modify what their children watch, but as an adult they are able to watch or read anything that they want to" 3 3 3 3 3 3 +4505 2 "Hey my name is @PERSON1 and I have some things to talk about that people need to hear. I think that libraries are a good thing for people of all ages but, there are some books in the library that are not made for children to read or evan see. They should at least put them in a seprate part of the library. I had an experince like this once. I was about to leave to go to the library when my little brother asked if he could come with me. I didnt want to take him but I couldnt say no to him. He got his shoes on and he ran to the door, he was so excited. We pulled up to the library and he took off running to the doors. I chased after him, when I caught him I told him that he couldnt run away from me like that. We went inside, it was a giant library. He went to find a book to look at and I went to find a good book to read. I found one that looked very interesting I got it and started to read it. Then @CAPS1 ran to me and said I should go take a look at the book he was looking at, so I went with him to go see the book. He handed it to me and I just lost it, the book was not a children book at all. I was one of the worst book that I have ever seen, we left the library and never came back. I think that books that are bad for children should be in there own section in the library. This section should be for grown ups only and that no children are aloud in there. This is what I think sould be done to all libraries" 3 3 3 4 3 4 +4506 2 "Censorship in libraries has been a major concern in school systems for many years. In many school libraries certain books, music, movies, and magazines have been removed because of the content in them. These items can be removed for these common types of content wich include, use of violence, sexual acts, drug use, and inapropriate language. Many parents of young kids are always wondering what their kids are doing at school. Most parents would not want to find out that their kids are being introduced to such things at a young age, because it could influence them to participate in these activities. In my opinion I do believe that certain material in school libraries should be removed but not in public libraries because a public library can be divided into sections depending on age groups. Inn elementry and middle school libraries, items should be censored because young students do not need to be introduced to things that are inapropriate or violent in anyway. In a school environment kids should only be introduced to drug use, and sexual activity through some sort of health class because there is where they will learn the true facts and it would be more educational for them, rather than hearing about drugs, sex, and violence in a song or seeing some form of it in a movie. Many kids watch movies that have very violent, and inapropriate scenes, and some of the songs in the world today are exstreamly inapropriate for young kids. Their are also many books and magazines that should not be read by young students at school because of the content in them, this is why I do believe that censorship in libraries is a great thing." 3 3 3 4 4 4 +4507 2 "WE ALL DON'T THINK OF ANYTHING WHEN YOUR CHILDREN CHECK OUT BOOKS FROM THE LIBRARIES. BUT ON THE OTHER HAND, WE DO NOT WANT YOUR CHILDREN GETTING HOLD TO THE CENSORSHIP OF BAD BOOK, MOVIE, MUSIC OR MAGAZINES. PARENT DON'T WANT TO COME HOME AN THERE CHILD LEARN A NEW WORD FROM THE NEW BOOK OR MOVIE HE/SHE JUST CHECKED OUT FROM THE LIBARY, OR READING A MAGAZINE FROM THE LIBARY. IT MIGHT MAKES YOUR CHILDREN ATTITUDE CHANGE PUTTING BAD INFLEUNCE ON YOUR KID BECAUSE OF A TRIP TO THE LIBARY. SO THERE FOR THE CHILDREN SHOULD HAVE A SECTION WHERE THEY PICK OUT THERE BOOK AND THEY SHOULDN'T BE ABLE TO CHECK OUT THE CENSORSHIP BOOK. WE NEED TO MAKE SURE OUR CHILDREN BE MORE CONVINCED ABOUT THIS TOPIC." 2 2 2 2 2 2 +4508 2 "I believe that censoring books in a library could be both good and bad. I think that there is different levels of censorship that should be enforced depending on the library at which censorship is required. In elementary school libraries, I think it would be appropriate to censor the books that are bought, and used in the library. Seeing that elementary kids are not as mature as say an adult, or a high school student, their level of reading is not as advanced as ours. Parents would definitely not want their children to be reading books that contain sex, drug usage, and any violence. This is because reading these books might put ideas into their heads. It @MONTH1 teach them things that they aren't supposed to do, and they @MONTH1 think that it is alright to act out on what they learn from a book. On the other hand, high schoolers, such as myself, are interested in those kinds of books. I am mature enough to know not to act out on what I read, and I am already aware of most of the things that books present. While most guys are into violent books about shooting, or football books, a lot of girls are interested in the romance type of books, that possibly express more then what most kids should know. In high schools, there should be less censory due to the fact that we are more mature and should be able to read what we are interested in. In public libraries, I think there should be sections of books based on age level, which most libraries do have already. This way parents taking their children to the library will know in which way they should direct them. Everyone is obligated to their own choices, whether that choice is to read books that are more likely to be offensive, is their choice. All in all, I don't think that books should be removed from the shelves if found offensive, because books are a type of out let to people. They can be educational, read for entertainment, or just read to keep you preoccupied. Books are everywhere, and people have every right to read whatever they please. On the other hand, I think it is a great idea to censor books, and categorize them to reduce the chances of young children running into books they aren't supposed to, and to keep all of their parents happy!" 4 4 4 4 4 4 +4509 2 "I think that everyone has there own opinon in what they listen to,what they watch, and what they read. I belive that the some stuff can change out of the world. not from people's offense or not because there will be none left too sell if people had there points of being offensive because everything is offensive to at less one person would be offensive. I think they need to get rid of things that causes the weak minded people will do if they see it and have it in there mind and go do it in real life getting rid of the things that can get the weak mind in trouble. I think that every that we can change what we see or hear and change the world, and thats what the world needs to change on what we could not think of before." 3 2 3 2 2 2 +4510 2 "I think that censorship should be allowed in high school. For one, students who read books or watch the movies that are censorship can learn a lot from it.Also, I believe that if books are bad and not appropiate at school then why are they here? Movies that are not allowed becasue of its rating I think is lame because it might have pictures of naked people and bad language but we are high school students and we should be able to watch them because they are educational and we are mature enough to watch.Nevertheless, I believe that censorship is a good and bad thing but overally I think it should be allowed. Therefore, books or movies that are censored, shouldn't be because I personally think that students learn better from recent rated r movies then some @DATE1 movied thats in black and white. Kids pay more attention to good interesting movies and the old movies most student fall asleep or just doesn't pay attention at all. So after that, I think that censorship should be allowed at high schools. If books and movies are so bad then why would they even have some here already. I think its foolish for teachers or administraters to think that we are to immature to watch rated r movies like every kid at school watches them at home,I believe. Yeah I know some movies show some scenes that arn't school related but who cares we will get over it. Overall I think that censorship should be allowed at high schools. Well then last point is that all these helps us in a way if you really think about it. Get a classroom with computers and for a week let them listen to music while they work and for another week dont let them listen to anything than see which comes out better. Personally listening to music makes me concentrate better and keeps me on coarse to get my work done.SO therefore, I think that censorship should be allowed at high schools. So you got my opinion on censorship and I hope it helped you out to look at this situation better or clearer. I think rated r movies should be allowed at high schools and any music should to i mean its not like we are in prison,right? So there you got my opinion that censorship should be allowed at high schools" 4 4 4 3 3 3 +4511 2 "Should there be censorship in libraries? Some say there should be, some do not. Cultural books and magazines could be offensive to some readers. History in books can sometimes even be offensive depending on someones lifestyle or background. Are you wrong if you say you want censorship in the library? No, you are not wrong because there are many people who think that some books should be taken off of the shelves of there local libraries. Some of there reasons are because parents could have young children and they do not want to expose them to such things while they are young and vulnerable. Others though say that censorship is unnecessary because people are going into the library and looking for a book at their own risk. Meaning that if someone goes to the library looking for a certain book and they pick up one they find as offensive, it could be a good book for someone else. Do all books that are considered 'offensive' have to be fiction? No, not all books have to be fiction if they are offensive. This does not mean that there aren't books out there like that. Cultural books or magazines from other countries or of a certain topic can sometimes be very graphic and have language that is only appropriate for certain ages. Everywhere in the @CAPS1 no matter where you are there are going to be things that could either interest you or be offensive to you. Everybody has there own opinion on the matter. The cultural @CAPS3 in the library are just showing how the people of othere countries live and act. It is not opinions or false claims in these @CAPS3, only fact. So cultural @CAPS3 should not be censored, although it could have a section just for that type of material. History books can be one of those @CAPS3 that really depends on your opinion or what you were raised in. Religion is one thing that history books can really raise offense to people because it could have some of the facts wrong about that type of religion. Some people would get very upset about how it was wrong because they are teaching the kids wrong about religion. Race and origin are another problem with some people. History books and elder's stories can always somehow be mixed and could cause trouble. For example if a @CAPS1 @CAPS2 @NUM1 veteran told a story about what happened in a certain area; the history book could tell a completely different story. History books should not be censored because it is facts and teaching kids on what has happened in the past and how people survived. My views on the censorship of libraries is that there should not be any of it. Maybe the library could make a section for what people might think is 'offensive.' @CAPS3 or books should definately not be taken off of the shelves though, because one man's offense is another man's great read" 5 4 5 4 4 4 +4512 2 "Today, millions of teens are bombarded with all kinds of media garbage. This can range from exposure to certain movies, music, magazines, books, or to even commercials. Parents, teachers, and even governments censor materials such as these to protect the students or the general population on topics that can be offensive or difficult to explain. However is that really the right choice? In life, we cannot shut our eyes and pretend that there are not harsh concepts out there in the world that we have to face. In fact, our parents and teachers should prepare us to be fully equiped when we go off on our own to find our place in the world. This then begs the question is it okay to censor certain books from the shelves of a library which can potentially enlighten us as growing students? When one conceals information, that person is stealing the right of knowledge. Not only that, but what one person finds offensive another can @MONTH1 not. This topic is just too abstract to be regulated. For example, take what Katherine Paterson said about how if everyone decided to work in this manner, all the books in the world wouldn't be available to any of us. Therefore censorship in libraries should be condemned because we are only hurting ourselves in the long run when we limit the knowledge we decide to take in" 4 3 4 4 4 4 +4513 2 "In our great country we have many freedoms, one of these is the freedom to read, hear, and see what we want. We all have different views that go with this freedom such as what we watch on televison, what we read in our spare time, and what music we like to listen to. However, if we had the right to remove things we do not like we will ruin the enjoyment for others. This would eventually remove our freedom. Many authors, musicians, and directors have stated that this freedom is important for having an enjoyable and creative life. We as individuals have different views on many things. Luckily our freedoms allow us to have these views without intefering with the views or ideas of others. If we removed the books, movies, magazines, etc., there would not be anything for anyone. Our libraries would be emptied, the classrooms would not have books, and the stores would not have anything. We should not have the right to remove what we think is innapropriate or does not follow our values or interests. Even though the right of removing things sounds like a good idea, we should consider the thoughts and ideas of others. Consider a public library, it has books for children, teens and adults with individual preferences, and a school library with books for children and teens with their own preferences on what they like to read. If we allow this right then these libraries which allow individuality would not be able to exist. People would be unable to live up to their freedoms of individualty. Everyone should be allowed to be themselves. Imagine what it would be like if we expanded this right to the foods that we buy. We all have different tastes of food that appal and satisfy us. The foods that we choose are a lot like the books we read, there are kinds we favor and others that we would just try to avoid. No one would have any food to eat at a restaurant, at school, or any where else not even at home. It would turn out to be a disaster. We should not have this right because it would not be fair to any one. Our views @MONTH1 be different but we have similar needs. The freedom we have is a freedom of choice. If we do not find a certain book, movie, or magazine to be appropriate we should choose to allow others to have the chance to pick it up and see if it fits their values and interests. Other people will allow this chance too. After all, aren't individuality and choice what made the freedoms we have @DATE1" 4 4 4 4 4 4 +4514 2 "Should books be removed from shelves if they are offensive? Who would determine if something is offensive or not and to whom it offends? These are just two questions that can create a high level of conflict and issues among many people. Would removing books from shelves limit our possibility to learn or see something from a different point of view? First of all, who decides what is offensive and who it offends? It is possible for anything to offend anyone. Also removing a book from the shelves could be offensive to the writter and the followers of the writter. Bringing up removing a book from shelves could cause more problems then just letting the book remain on the shelves. If offending others is the issue then would it not be better to leave it alone over all, rather than making it an issue to please one group but inturn upsetting another? Secondly, could removing a book from the shelves limit your ability to learn something or hear something from another point of view? If books that offended people would have always been removed for reasons of offending other we could not have much of the knowledge we have today. For example a biology book might be offensive to people whos religion explains things differently and would make things untrue, and a religous document such as 'The @CAPS1 @CAPS2' or 'The @CAPS3' could be offensive to the people who believe the biology books to be true. If we removed both types of books from the shelves for being offensive, we would not have religion or modern science. This example could be used for any topic or genre of book because people can take many different things as offensive. As a solution, I believe it true that it is not possible to please everyone. If one person is pleased another is offended. If that person is pleased then the first person is offended. If books could possibly labeled as'some might take offensive' or 'material @MONTH1 be offensive' then people have a warning and they can choose if they want to read it or not. If they are offended they can not put blame on the author or where ever they got the book because there was a warning. It would be just like the parental warnings on cd's. This @MONTH1 not fix the problem of people being offended, but it could very much reduce the amount of complaints about a book being offensive. In conclusion, books should just be left on the shelves regardless of people complaining about them being offensive. Books being taken off shelves could turn into all books being taken off shelves which means no education or learning. That is just not an opition. Leaving books that offend certain people on the shelves @MONTH1 cause contraversy with others but if some sort of warning could be put in place and the proper procedures are preformed, the issues should decrease greatly. Think about all this the next time you want a book to be removed from the shelves" 4 4 4 4 4 4 +4515 2 "I agree with Katherine's statement, but to a certain extent. If a book or magazine has cursing or anything offensive in it, then a student should take it to the librarian and let him/her know they are offended by it. Especially if it's in a middle school or elementary school. Of course there's going to be a book or movie or magazine that has something inappropriate in it. One day my friend and I were in the library looking for a book to read, and that's when I first discovered the @CAPS1 series. But as I got into the books, the more mature they got. In the last book, @ORGANIZATION1, it has a lot of profanity in it. But that doesn't mean I'm not mature enough to not know what it means. Same with any other high school student. But you can't protect your children from everything. Not even curse words. So if you see a book at a local library that is absolutely filled with offensive things, and you decide you want it removed, just take it to your librarian and comfront him/her. I'm sure they'll understand. Or maybe they won't, and they'll wait to see if anyone else will want it removed. My point is, you can't always protect your children from violent words or movies, or magazines. But you can always stand your ground and try" 3 3 3 4 4 4 +4516 2 What impact does books that are for mature people have on kids? Recently people are trying to censorship libraries for what they seen what their kids are reading or have been acting lately. I disagree in censorshiping in libraries. Instead of censorshiping libraries maybe have a section for explict books or things for preventing little kids from reading them. First of all instead of removing all the books maybe you should consider making a section for only for people of certain age. Make a section in at the back of the library and ask for @CAPS1 to confirm that there old enough.This would let the libarary keep all their books and would keep all their construmers happy and the most important keep the parents happy. Another reason for not censorship libraries would be that the number of construmers would slowing drop. This would make the construmers unhappy and the library drop on its popularity for not having the books that people want to read. I can also see why they are trying to censorship libraries because of the kids behaviors. With censorship in libraries this would keep the little kids from acting the way they do in a book. But @CAPS2 would be better just to not censorship libraries and keep the people who does read them happy. At the end I disagree in censorshiping libraries because @CAPS2 would upset the people who read them and probably the library poplurity would drop which means people would stop visiting the library. So people that disagree should act now so libraries can stay how they are now 3 4 3 3 4 3 +4517 2 "The @CAPS1 on Books In the world today, everything is showed every place you look. Libraries are used by many people, people go there to research, study, and even just to find an interesting book to read. One of the problems that some poeple are having is the exposing of personal things. I believe that libraries should have a censorship. Why should libraries have one? Here are my reasons why. One reason why censorships in libraries are a smart idea is younger children search for books there. Any parent would tell you that they would strongly dislike the idea of their child reading something very detailed and adult like. A library should be a place where children, young adults and senior citizens can go to escape from reality not somewhere were they are worried about what book they might pull out from the shelf. If libraries still want to keep certain books in stock, they should start an age limit on those books. Limiting the age on books will stop younger audiences from viewing them. Another thing they could do with the age limiting is parents could set the age limit with the library on when their child should be allowed to view certain books. Also, another way that would help stop offensive viewing is parents looking at what their children are reading, watching and listening to. Parents could help by keeping an eye on what their child is doing. Cenorships are a wonderful way of stopping the viewing of adult like issues. More public places should start a system of them. The world needs to understand that some audiences aren't ready for reality just yet" 3 4 3 3 4 3 +4518 2 "libraries arcross the world contain all kinds of books, so good and some bad. theres always gonna be something in a book that @MONTH1 offend the reader or someone close to the reader. it just depends how sensitive people are. the main reason people want to ban books or have them removed from libraries is because of racial slurs, relgion, and sexual content. i think it should be the libraries choice to either put the book on the shelf or to take it down. magazines are an issue along with movies and different kinds of music. according to some libraries are just trashed with vulgar, racial, or bad movies, books, ect. if the parents are scared of there children being able to rent these things, they need to put some sort of block on them. if you want to rent bad things you should have to have parental permition. taking all of these things out of the library is not a soulution. all it does is create anger and leads to lawsuits and more. the library needs to make sections of different rated books so that kids wont be able to get the 'bad' books in there hands.alot of the nooks in libraries have meaning even if the book uses foul language or hate etc. it shows the mood of the story or how the charachter really feels inside. if stories like '@CAPS1 in The @CAPS2' didnt have anger, emotion, or the passion it has it would be a boring book. authors put language, sexual content, and violence in books, movies, and magazines to entertain certain crowds. if you take these things away certain people will not have the entertainment they have enjoyed with the things they have read or things could possibly read" 3 3 3 3 3 3 +4519 2 "@CAPS1 @CAPS1 a day where there are no books in the school library. A librarian walks through the now empty corridors, reminising of the days before censoring, before everyone told her of what they found offensive. Everyones ideas are different, but that absolutely does not mean they should have everyone else comply. Saying such, if someone finds a book offensive, they just should not pick it up. Just don't read it! By pushing to have the book taken out, they would be implying that they know best, and usually, they don't know best. A @CAPS2 could be offended by a fashion magizine in the library @LOCATION1 simply has an advertiziment for a body wash. She @MONTH1 say something like '@CAPS3 child shouldn't see things like this,' then demand it be taken out of the library. Does that make sense? I didn't think so either. In addition, if one woman was able to take a magazine out of the library, then another man or woman would believe they had the same power. Censoring could become a casual thing, and books could be thrown out daily! Now, that's only on a small scale. @CAPS1 if they actually took this up with higher authorities. That book would be taken away from all schools in the @LOCATION1 brings us to this problem. Should we, as people,as normal citizens, really decide what others are able to read? The answer to that is a definate no. Let's look on the other end of this now, too. What will happen to the authors who wrote the books that are now banned? As an example, I'll use @PERSON1. What would happen to her if the series '@CAPS4 @CAPS5' were banned from schools? Also, what about the kids that like to read? This is just taking good books away from the students...Because someone didn't believe in magic and threw a fit about it. That librarian from the beginning is leaving now, theres no more books to check out, bring back, or read anymore. The kids have to go to a public library to get all the books they want to read, and are then still discouraged from reading because the material wasn't proper. This shouldn't happen. Books do not need to be censored, and people who have a problem with a book just shouldn't ruin it for everybody" 3 4 3 4 4 4 +4520 2 "Censorship Should certain materials (books, music, movies, magazines, etc.,) be removed from the shelves if they are found offensive? I think it depends on how offensive the material actually is. If it is something very provacative or racist or advanced beyond the years of the people who have access to it, then it shouldn't be allowed. Or, the materials should be restricted or placed in a special section that only certain people have access to. It depends on the level of intelligence, maturity, and age of the people who have access to these materials. I don't think these materials should be removed, but restricted. Some of it should be left up to the school or library, but it is also a responsibility of the parents. If a child has permission to access a certain material, then they should be allowed to if their guardian thinks it is appropriate. Sometimes the guardians views @MONTH1 not be the same as a the library or schools, but it's mostly up to the guardian. Schools and libraries can't really argue with people's morals or intelligence. Over all, I don't think materials such as books, music, movies, magazines, etc., should be removed unless it has been deemed necessary by a group of people that includes parents, teachers and/or school board memebers, and/or library staff. Just because one mom thinks a book is innapropriate for her child, doesn't mean it should be banned from another. Everyone has a different opinion and idea of what's acceptable, therefore it isn't fair for everyone to have to go by the idea of only one person. If you don't want your child to have access to a certain material, then simply don't let them access it. If you think it's not an appropriate material for any child to access, you can express that, but others @MONTH1 not agree. Materials considered innapropriate by a respectable group should be restricted or have a warning on them, but not a ban." 4 3 4 4 4 4 +4521 2 "If you found a movie that you really enjoyed at the library, would you get mad if the library just tok it away and there was no other place to get it? If one person doesnt like something they see at the library doesnt mean its not educational, and just get rid of it. Just because somebody doesnt like the one thing doesnt mean another person will. I dont think they should get rid of movies, music, books, or magazines just because of one person. Here is somethings that will make you think about geting rid of all these catagories. One thing about movies that I like are they are good for visual aids. some people are better learners if they visualize something, they can get a better understanding of the purpose or the cause of the situation and they might learn faster. Another thing about movies in the library are becasue they show you things in the movie that you wouldnt be able to see if you were just reading a book. One thing that i like personally is that when people are in movies its like you are actually talking to me like me and the actor are really having a confersation. When you look at movie it gives you a visual picture of whats going on, even if the content isnt apropreate. Thats al the reasons why i think that movies shouldnt be taken away because someone thinks that the movies are volgure and not censored. Music is another rule that they shouldn't get rid of. Music is almost the only thing you can calm you down so that you can focus again. Another thing that music does to you, is it soothe's the mind so that you can relax and you wont bother anybody else. When you listen to music , it blocks out other sounds that you might get distracted from. so those are the reasons why music shouldnt be rid of. Magazine and books are the basics of a library. If you get rid of those, then it wouldnt be a library anymore. books are the basic learning methods of education. People learn the most information out of a book or magazine. If you take those away its like your trying to hold people back from education and knowledge that they have in books. So if you get rid of magazines and books then it wouldnt even be a library any more. if you get rid of movies from the library then people want be able to have a visual aid as there alternative way of learning. If you get rid of music from the library, you wont be able to consintrate as well on one thing if your constantly getting disturbed by other noise around you. Last but not least if you get rid of books from the library then it would be a library anymore it will just be a place to go like any other place. The library wouldnt be anything any more. Now would you want that? thank you" 4 4 4 3 3 3 +4522 2 "Im alot of things but i am surley not a reader.But i do believe that you should be able to publish anything that you want over any topic. weather that be a grafic novle or a didry maggazine. nothing should be taken off the shelf for being offencive if it offends you dont pick it up or much less read it. Say i wanted to write a book but people say it was too disgusting, i would still be able to write it and sell it. anything that anyone has a problem with they try to band or get rid of it. instead why dont they just get over it? we have rights every individual person from me to you we all have them, and should be able to use them to the full exstent of what they can be used for. Call me old fashoned but, I beleive in freedom of speach and the freedoms that we have lost solders over and the freedoms we have every single day we live. I think drinking every @DATE1 of the week is wrong but, you dont see me on the news yelling about it no i deal with it just like people should deal with the things they dont like. so i hope in this essay ive made good points in making sacrifices and dealing with things and not act on something you shouldent be able to change, thank you for taking the time to read this." 3 3 3 2 3 2 +4523 2 "Libraries are filled with books, magazines, music, movies, and many more materials. All of the materials cover a really wide range of topics. For example, movies can be a comedy, mystery, or adventure. However, some of this material is not suitable for some viewers and can be very offensive to them. For this reason, these offensive materials should be removed from libraries. One reason offensive material should be removed from libraries is because it can lead to violence in teenagers. If a teenager is continually reading books or watching movies that have violence in them, then they might think violent behavior is all right. They might not know that violence is not the answer to many problems, and they will not realize that there are other solutions to a problem. One case that proves seeing offensive material can lead to violence occurred in a high school. A straight-A student got a grade she thought she did not deserve from a teacher. This student then painted her face white, put on red lipstick, and took a knife to the teacher's classroom during school. She then proceded to threaten to kill the teacher. She got the idea from the movie '@CAPS1', and her costume resembled the @CAPS2. Some students in the classroom at the time called @NUM1, and the police officers convinced the girl to put down the knife. Maybe if she had not seen the movie she would not have threatened to kill her teacher. Another reason offensive material should be removed from libraries is because the material is sometimes inappropriate for younger children. The children might just be looking at books and magazines in the library and not even check it out. This way no one will know that they read it. Some of the books in libraries have subjects like sex and drugs in them. When the child reads this, he might want to do everything that is in the book. I have read a book that contains sex and drugs. The book might put awful ideas into the child's head if he read it. After all is said and done, offensive material should be removed from libraries. The material can lead to violent acts in people, even if it does not seem like that kind of behavior could possibly come out of that person. The material can also be inappropriate for younger children. All in all, material in libraries can be offensive to some people." 4 4 4 4 4 4 +4524 2 "Libraries have all kinds of books. Books for everyone. I think libraries shouldn't have to take books out because some people dont like it, or find it offensive, when others might like the author. If there is a book in the library that you find displeasin simpley don't cheak it out just put it back on the shelf and go on with your day. Like author Katherine Paterson said if we start taking book off the shelvies then there willn't be any books left to read. Yes, there are books out there that are not ment for little kids and some adults, but that's why you dont let them cheak them out till you think they are old enough. Just because you dont like the book doesn't mean noone else likes it. Everyone has there own tast in reading, as everything else. Libraries have sections for all ages. With books for there age. Like the childern's section is for little kid, and the adult section is for adults. Little kids shouldn't be cheaking out books from the adult section. Parents should take responsibility over there kids and watch what they'r doing. Then we wouldn't have to worrie about what they are reading, watching, or listening to. The libraries are doing just fine the way they are, and have been for years, and will for years to come. So no libraries shuold have to take sertain books off the shelves just because someone doesn't like it, or want there kid reading it. Just ignore that the book is even there and find another one that fits you'r liking. People learn alot from books, so if we get rid of most of them what will we lear from then? Books are a great part of history. Why get rid of you'r history? It's just wrong. Books shouold stay right where they are and belong." 3 4 3 3 3 3 +4525 2 "Libraries have books that are short, long, and everything in between. Their are good and bad books, but that all depends on the opinion of the reader. There is no reason that if someone is offended by a book in a library that it should be removed from the shelf. The books on a shelf in the library are there for everyone to read so if one is removed then someone else is missing the chance to have the experience of reading that very book. Would you have some food destroyed if it didn't taste any good to you? No, you wouldn't get it again. So why'd someone have the right to remove a book because they were offended it isn't right your views on something are only an opinion nothing more. Your views are not the same as @PERSON1's who lives down the street so by removing a book it is pushing your views on somone else. In conclusion, the books in question could be good or bad in the eyes of the next person to read it. Pushy people aren't normally liked by others. Books are meant to be read and interpreted by the reader. That is why no one person has the right to take it off the shelf." 3 3 3 3 3 3 +4526 2 "' Everyone in the world has an opinion, some people @MONTH1 find them offensive but there are also people who find it interesting and enjoy reading, listening, and watching the material. I personally have never had this kind of problem, i have only been to the library around @NUM1 times i generally rent movies. there are people who can noot deal with certain things like blood and guts or racism in books movis and music, but at the same time there are people who absolutely love it it's their thing. I believe that it would be wrong to strip those of what they find interesting what they enjoy to read or watch and listen to. some people will say well its vulgar well the people will say that its a master peice or that what they are into is dull and has no interesting moral. Libraries generally do not have things that are to gory or things that have too much sexual content they might in books but not movies or magazines. Now music nowadays can be down right vulgar and disrespectfull, it can also be very sexual and contain lots of gang related violence which has become a large problem with our children. Libraries generally have old school music like michael jackson, The @CAPS1, and slow jams like @CAPS2-kelly, and old smooth positive rap, good old country music, and nice soothing jazz. The music our children to nowadays has all of these depressing & violent morals that do not need to be shared with some of these young and imitatfull minds. I believe that they should not pull it off the shelfs but i do believe that you should have to be a certain age to acess these things.'" 3 4 3 3 3 3 +4527 2 "Today it seems as if anything you could imagine is out in the world somewhere, somehow. Whether it is found in a magazine, a book, music, or movies is irrelevant. The fact of the matter is, if good stuff is out there, then you can generally make the assumption that bad stuff is out there too. This bad stuff is sitting around on the shelves of our libraries nationwide waiting for someone to open it up and induldge in their naughty, intense, or graphic ways. As an @CAPS1, every man has the right to do or read what he wants. But what happens if it is not a man at all but in fact it is a child? This child is not choosing to read such bad things but just so happens to stumble upon it. Should they be punished for accidentally coming across this material and reading it? Which raises the question; who is to blame, and, what is the solution? It is a good and respectable idea to censor certain things in libraries but if someone wants to read something, they should be able to right? It is a very sticky situation and determining the answer should be a long and thought out process examining the issue from all angles, and different perspectives. The people that have brought this issue to the surface more than likely have personal experiences that make them feel so strongly on thier views of censorship in libraries, as have I. On a dry, blistering @DATE1 day I wanted to find something to do indoors. So instead of staying home all day I walked down to the library. I had been there a lot that @DATE1 and I was pretty familiar with their selection so I was looking for something new. So I strayed out of the kid section and browsed other areas of the library. There were so many choices and options right at the tip of my fingers. I got tired of reading all the titles so I did what generally any other kid would do, and something parents have been telling their kids for centuries not to do; I judged the books by their covers. I found one that looked interesting, and long story short I just so happened to stumble upon a love story. But not the kind I was used to. It was an adult book and want into vivid detail about the relationship of a sexually active older couple. Needless to say I was speechless. Reading that stuff as a child, scared mevery much so. Nevertheless it leads me to believe that it would be smart for censorship to be put into place in libraries. Of course, not every kid is going to have the same experience I did. In fact hardly any will. But I know that I was traumatized. So I can easily imagine how other people felt when the same thing or a realitively similar thing happened to them. But for all the other people that have not had things happen to them or that have not stumbled upon such material would probably think that it is unfair that things should be taken away from them just because other people could not handle it. But if you were like me, or any other innocent child that happened to find and experience certain things they just were not ready for would you not agree that censoring libraries is a beneficial thing to everyone? If you want things that are more intense or out there, then you can go to a bookstore, instead of a public library. I am a teenager and I do not have children but I can only imagine how you mothers and fathers out there would feel if it was their kids who were emotionally scarred from experiences they could have been shielded from in the first place. Kids should be kids and not have to be worried about the bad things in this world, and the most effiecient way to keep that the way it is, is to censor books, music, magazines and movies from the shelves of public libraries." 4 3 4 4 4 4 +4528 2 "Everday hundreds of people visit your local library. The library offers and array of things such as books, music, movies, magazines and newspapers, but what 'limits' does the library have about the content of those things? All sorts of people go to the library. I go to the library, you go to the library, moms, dads, aunts, uncles, siblings, we all go to the library at one time in our life. Different crowds of people have different interests that @MONTH1 offend others. The question is, should we limit or rule out certain subjects in libraries? Limiting or censoring the mass media we have in our libraries would nearly empty them. Truth is, someone, somewhere is going to take offense to the items in most libraries; you can never please everyone. Also, some of these topics could be used for educational purposes. Take anatomy books for example. While high school and college srtudents use these books and diagrams to study, some mothers many find them inappropriate for their young children to see. This is why libraries have seperate sections for different audiences. There could be a childrens section, a 'tween' section, and an adult section to help with this issue. Also, everyone has different interests. I, personally, can not stand rap music but my sister loves it. Eventhough I find some of the things they say in those songs offensive it is my choice to listen to it or not. The song writers, singers, publishers, and authors who write this material have the freedom to do so. Who are we to tell them they can't write about sex, drugs or murduer because, face it, those things are part of our day to day lives. If children aren't seeing these things in libraries, they will eventually come across them else where. Should we remove 'offensive' material from libraries? No. If we do that there will be no books to read, no movies to watch or music to listen to because everyone will take offense to sometyhing." 4 3 4 4 4 4 +4529 2 "Dear @CAPS1 @CAPS2 @CAPS3 Newspaper @CAPS4, the artedclie that you writte last week really get to me. The one about do you believe that certain materials, such as books, music, movies, magazines, etc., should be removed from the shelves if they are found offensive to some people. i went back and fore on this, first i was thinking that if it was offensive to some people then we sould take it down bucese if it offensiveds people then why are we selling it to the people, but then i get to thinking agian and i was like people have the right to freedom of space and if this how they what to talk then let them space there mind. this great courtry of ares was made on the right that every one is made the same and every one inteialed to the freedom of space. if people what to talk like thet do in there music or act they way they what to in there movies its there life if yuo dont like it dont buy it are even pay an attient to it.say if i was a raper like lil wayne or some one like that i would care about the people who are talking the way they are bucese it is my way of tilling the world how i feel about thing that are on my mind.if some one writtes some thing in a book that you dont like dont go all out and go on tv shows to make fun or till how you feel writte i letter to the author and till them how yuo feel about the topic. every person black, white, yellow, brown, or even green has the right to freedom of space. was give to us for a ressen and i think it was for that even if you have idia but you think it is supted just say it bcuese some people think that is amazing or not. but every one is created the same so treat people the way you wont to be treated. i would like to thank you for reading this. your artedcile really open my eyes to the world and how i sould see it. thank you for writting it. sincely, @PERSON1" 3 3 3 2 2 2 +4530 2 "I think that this kaind of books they maybe sometimes offend to some people that depending of what kaind or type of book, magazine, movie, music don't want to see there and agree and not agree on this because they are some some type of thinks that are not bad for kids like games for they age or music that are appropiate for there age and others like animals, cultures and all that thinks but that only think that I am not agree is that they can not be books, music, magazines, or even movies that have sexual arrasment that type of stuff not go into a library I think that that type of stuff can be dangueres or affencive for some parents and people that have or don't have kids and I think if they are in some libraries that I agree that they need to take that off because I don't want or people want that kids be disrespecfull and learn that type of thinks that they don't go with there educasion and with there age. I desagree too that this type of music that some artist are meading that they are tooking about drugs, gongs and narcotrafic and even sex and I know this because sometimes I heer this on the @CAPS1 and radio that they are sining and this influence to kids to have another directions on their life and us like parents we don't want that for our kids, don't want that fro their future, we want that they have a good future and be succefull and give them the same example to their kids to went they wrog up and be a parent to and they are going to see what we are tooking about.I been seen it and parts of the world people been kill or people killing at other inocent persons for this type of things more for drugs that they are saling drugs and they are doing money that they are hurting to other people or kids that consume this drugs that maybe can be our kids or some friends kid and sometimes if they don't pay that money that they need to pay they kill them or that police are traying to faind them because are doing bad thinks and I hope that artist, or people that put this on the libraries think firts that maybe they are doing something wrong of steff that are thinking that are doing something good" 3 3 3 1 2 1 +4531 2 "Book Censorship Censorship in libraries are a major problem in the @LOCATION1. The question is, 'Should we have a age limit on what people can check out?' Or another question is, '@CAPS1 did they let my child check that out?' @CAPS2 are very commonly asked questions, and should have attention put toward them. In my oponion, books should have a age limit on them. My reasoning is becuase, kids under @NUM1 years of age should have a place where they can find good books for thier age group. There are plently of books out there for all age groups. A kid under @NUM1, should not be able to check out a book, magazine, movie, or music that has offensive language, racial slurs, or dirty behivor from the character, or artist. Another reason @CAPS1 libraries should have a age limit on things you can check out, is becuase kids can get the wrong idea. Lets say, a book has a statment in it that says '@CAPS3, I went to my bestfreind's house and drank alcohol.' @CAPS4 would be somthing that a child should not able able to read. It would give the child the wrong idea in what they 'could' be doing. The age limits for book shelves should be as followed:@CAPS5 @NUM3 @NUM4 @NUM5 @NUM6 @NUM1-@CAPS6 @CAPS7 the books in @CAPS2 age groups would probably help stop the refrain on parents worrying about what their kid is reading. Plus, it would help the kid in deciding on what to read. I really think that @CAPS7 books in @CAPS2 age groups, will stop the commotion. Censorship is a major problem in the @LOCATION1. With everything I have listed, I am pretty sure that the questions, 'Should we have a age limit on what people can check out?' and '@CAPS1 did they let my child check that out?' with be answered. Age groups on books, is a great idea." 4 4 4 3 3 3 +4532 2 "There are books up and down the shelves in the library that @MONTH1 make people wonder @CAPS1 they are up there. People @MONTH1 stand there and stare at a book and ask themselves, '@CAPS1 in the world is this book here?' @CAPS2 many people @MONTH1 not know is that every book is in the world for a reason. Books published are in the world to teach about history, manners, literature, or they could be made to take you on an advantage. Of course you @MONTH1 come across a book that @MONTH1 be offensive to someone, maybe even yourself, but it is there for a reason. I once read a book that I found in our school library that was about slavery. It was a first person novel about a boy who was taken away from his family after being sold to a different plantation owner. Now some people would have been very offended by this book, because the @CAPS3 were calling the @CAPS4 all those names that the @CAPS4 do not like to be called. But that book helps people realize how much pain that slavery put on people. People can go to any library, from one in an elementary school to a public library, and you will always find at least one book about the @CAPS6. Just about everyone would get offended by one of these books, because nobody liked or does like @CAPS7, but they have to be there because of history. People can not just take the books out because it offends so many people. That would be like taking the @CAPS6 out of history, and that just can not happen. If it happened, it happened, and people have to know. Whether people admit it or not, they have ran into at least one book that has offended them. That will happen, it is almost natural for it to happen. But it would also offend people if you took books off the shelf. Those people know that books teach us, and we need books to know @CAPS2 is possible, @CAPS2 happened, and @CAPS2 might happen. Books are here for a reason, and they need to stay" 4 4 4 4 4 4 +4533 2 "I believe that certain materials,such as books,movies,magazines,etc, should not be removed if they are offensive to others because censorship and libraries has their own rights to have what they want on their shilves.Yes you @MONTH1 say that some things are unapropriate for children to see but there is an children side of every libraryso that children would not have to see unapropriate things.I feel as thought that no one has the right to tell another store where to locate their things. Also i can understand where the author is coming from but you would have to understand there is people oput there in the @LOCATION1 that would like to read or listen to unapropiate things that parent would not allow there children to see or listen to.I would also consider that @CAPS2, @CAPS1 dont let your child or children attend that library or that certain place where you know there is despictable materials there.Everyone has their own personal right to place there things where they want them to be. There are many other options,@CAPS2 can order their books online or go to the library with their child.When I was a young girl my mom never let mee go anywhere along so i never had to worry about seeing anything unapropriate or affensive.Now a days in @DATE1 children know right from wrong.Children know what they suppose to read and does not. I do also agree if a librarian or an adult see or hear children looking or listening to something i they know they should not be,They should stop the child or converscate them from the premises. So No i do not agree with you.I still think that people should have the right to place there things where they want because it is their stuff and their property." 3 3 3 3 3 3 +4534 2 "Have you ever just read a book or a magazine that you just despised and thought that if that book was taken off of the shelf then it would save many people from a waste of time? Or have you ever read a book or heard a song that was not offensive to you, but to other people it might be offensive to their race or gender? A lot of people run into this problem and personally, I have ran into that problem, but that doesn't mean it needs to be taken off of the shelf. If everybody in the world goes to a library and grabs one book off of their own local library shelf to go and throw away, just one, that they absolutely despise because of their own personal reason or just because they didn't like it, there would barely be any books left! If somebody has a problem with the material in a book, magazine, or song, then don't read it or listen to it. Other people @MONTH1 like reading about that topic, or like that kind of music. I understand that some books @MONTH1 be offensive to some people, but do not read it if you take it to offense. Books about slavery @MONTH1 be offensive to some people, but that is history and some people might like learning about that subject, or @MONTH1 even need that information for a research project. There are also many books on the @CAPS1, some people @MONTH1 find that offensive, or @MONTH1 not want their kids reading about that, but that is history. It's a time period in the past and it @MONTH1 be something a high school student is doing a research paper over. I have done a research paper over the @CAPS1 and I have read some very mature material that younger kids @MONTH1 not need to learn about right now, but I would not suggest to take every book over the @CAPS1 off of the shelves at our local library. There are many different reasons for reading a book and if you want to read a book for enjoyment and you end up reading one that you find offensive, then choose a different topic to read about because some people @MONTH1 like reading about that topic. Just because a person doesn't like a book or the topic the book covers does not give anyone the right to take the book off of the shelf because they feel that it is sending a bad message to younger kids or might be offending to some people. If people do not want their kids reading about that topic then tell them when they go to check a book out at the library not to get a book over that topic. If it becomes too big of a deal to where people begin to find a lot of books that offend them or other people, then suggest for the library to have a list of the books and their topics. Each library could be required to have a list of books, and have the suggested age of the readers beside it, or there could be different sections of the library. One section for kids, one section for teenagers, one section for adults, and one section for middle aged people. Also, if it absolutely needs to happen, each library can have computers to where you can look up the book and see what that book is about. This will give you an idea of what the book is about before you read it so if there is a certain topic that offends you then you can go ahead and find another book and find out what that one is about. This would help many people not read books that offend them and it would help them find a book that is more suitable for what they want to read about. Songs are a whole other subject. An artist or songwriter will write, rap, and sing songs about what they want. If people find the profanity in the song offensive, then do not listen to it. There is no way that you can tell a song writer not to sing or rap about what they want, and stores are going to sell albums that give them business. If people do not want their kids around that kind of language or message that the song is giving off then they can just tell their kids not to listen to it, because artists are going to write songs, rap songs, and sing songs about what is going to make them money, and that is just a fact." 4 4 4 4 4 4 +4535 2 "The books, magazines, music, and movies shouldn't be removed from the shelves. They still have good information that someone other than you @MONTH1 want to know. If you take them off of the shelves the people that want to use them don't have the opportunity. If you remove books then if someone needs one for a reseach paper that they have to do they will not have the nessisary resouces to do the paper, and at the same time the person with the paper @MONTH1 feel that the non-educational books need to come off the shelves and then that person wont have the books that they want. If they want the book taken off of the shelf, because of inopropriate language or nudity then the libraries can make a spot that you have to be a certain age to access them. I wasw at the library and there was a woman getting upset, because her son had a movie and book that she didn't think was good for him to have. The, book and the movie, that he had were in a different area so that minors weren't suposed to get them. So the woman would be the one that would probibly want to take them off of the shelves, but it wasn't the libraries fualt that he wasn't where he was supposed to be. The products should stay on the shelves, because someone needs it for something or it wouldn't have been there in the first place. If they take the products down that certain people don't like then the people that do like it will not have it. If there are resons that people must have the product off of a shelf then the product should go somewhere else that can be accessed by the people that do want to you the products. The products should stay on the shelves so that the people who need, or just want to use the products can use the products." 2 3 2 2 3 2 +4536 2 "To @CAPS1 @CAPS2 @MONTH1 @CAPS3: Censorship, does @CAPS2 deserve a place in our society? There has been much contreversy over this topic. Some claim that certain kinds of literature and music contain offensive lyrics or writings, while others, over the same topic, believe the complete opposite. They believe that the words of the artists and authors shows feelings and have messages hidden within words of vulgarity, which is where i stand on the situation. @CAPS2 seems as though everytime we cross over this bridge, @CAPS2 comes right back in front of us. Many of those opposed to the freedom of writing and music are usually the ones that feel as if they must preform proper edicate and have everyone act nothing less of the same, unfortunately for many, the people that are like this, usually, have much power in the say of what comes and what goes, not allowing many of us lower graded people in society to get a chance to veto their poor outlook on things. My opinions bring me to believe that there are two sides to this story too. However, I still believe that much of what is considered 'censored' material should not be censored at all. There is one, count that, one situation where I feel censorship is necessary. One is songs that go on for @NUM1 and a half minutes saying nothing but '*bleep* this, and *bleep that'. All other material, whether @CAPS2 be @CAPS4 rapping or @PERSON1 writing, is acceptable. There's just many people in the world who need to grow up and listen to the lyrics/words, to get the full message before automatically assuming that there is a problem with @CAPS2. Great @CAPS5, @ORGANIZATION1, he always has a message in his music, whether @CAPS2 be about family or just life in general, however many words he uses are considered unfit for our time, so you just hear '*bleep*' when @CAPS2 is on the radio. By just that '*bleep*', you can lose the message thats coming across. Also, ever hear the phrase, 'equal rights'? Well, shouldn't music and literature be a right? @CAPS2's just like talking but with either pages or instruments. And that's how I will leave you on this debateable topic. I hope I might have changed some opinions of you today, if not then your loss. Thank you for your time. A @CAPS6 to the @CAPS7, @LOCATION1" 3 3 3 3 3 3 +4537 2 "Everybody had their favorite movie, song, or book when they were younger. Sometimes these types of media aren't exactly child friendly. Songs today hint at sexual activities. Books about scary vampires and werewolves are being published. There are even movies that depict violent and inappropriate behaviors in which children should not witness. Does that mean they should be limited by a public place, such as a library? Several people would agree, but I disagree. Growing up, @PERSON1 was the wonder of my world. Her music was fun and unbeat, making a sunny day even more enjoyable. Her lyrics seemed like they meant nothing, until you thought about it a little more deeply. Even looking at the music videos, they show actions and images little children shouldn't be copying. Some @MONTH1 restrict their child from such material, but I would call that depriving a child of there freedom. You can go to any public library and look through numerous selections of books, dvd's, cd's, and even magazines. Some library's even have computers available to the public. Not all places will carry your favorite aritist, movies, or reading material tho because they believe it isn't something little children should be indulging in. Who is to say a little kid can't enjoy the material that they'd like? That's like taking away part of a person's originality. A child would not have the opportunity to become an individual with their own opinions and feelings if they were restricted to a one mind track. Limiting a child's media could benefit them in some way. Restricting time on computers, limiting the amount of hours playing video games or watching television could help teach a child time managment skills. Most children will see something interesting and repeat what they learned or share it with an adult and it could get them into trouble. Library's shouldn't have to take the offensive media off the shelves though. Age restrictions on renting those offensive types of materials should be set. Just because a book or movie has language and images that shouldn't be seen by children is made, does not mean a library should limit that access to the public. Restrictions on renting that material could be set. It would solve all issues, in my opinion. In conclusion, censorship in public library's could be beneficial, but they should just set an age renting limit instead of removing all material alltogether. Therefore, making parent's happier and not restricting a person's freedom to develop there own opinion's and liking's of the different types of media" 4 4 4 4 4 4 +4538 2 "Do you believe in hiding books and movies that are over @CAPS1? Do you think that children can control themselves with offensive behavor? Have you ever seen a child watch a scary movie that was @CAPS2 @CAPS3? Why do you think that most parents block that kind of viewings from their young children? I believe that materials such as books, music, movies, and magazines should be removed from the shelves from children, if they are found offensive. I fully agree with adults not letting children watch that new scary movie or that action book their brother is reading. I think they should consider the effects that come with watching or reading certain things. Children at young ages still have their innocence. You don't want your child having nightmares because you let them watch a over @CAPS1 rating movie. You would feel guilty if the child has problems for the rest of their life. You have to make a choice on whether the it's comfortable for them to view what their watching or reading! It's important to hid them so the child can not get ahold to them. Be wise of the kind of movies and books you leave around the library. You should have a section for children in libraries. You should have all the materials that a child should be interested in. It should be colorful and playful as possible. I used to watch this girl named @CAPS5. I was babysitting her one night, while her parents were at the movies. I brung a movie to watch, when @CAPS5 fell asleep. So once the clock turned to @NUM1, I put her to sleep. But little did I know she woke up and @ORGANIZATION1 me watching this horror film called @ORGANIZATION1. It gushed blood everywhere and she started to sceam! I thought I had secured her in her bedroom, to go to sleep but to my surprise she was still woke! I rushed over to her and put her back to sleep. hoping she didn't have any nightmares. Please be curtious to the things youlet children read or see. You have to think of the effects of what's going to happen to the child later in life. I know you think that it's not that harmful to children, but it can really mess up their minds and actions forever. So I hope I have persuaded you to follow my advice and pull them over @CAPS1 movies and books off the shelves for the safety of the children" 4 4 4 3 3 3 +4539 2 "Everyone is @CAPS1 @CAPS2 person is @CAPS1, this much we can agree on. So why then would people try to put a censorship on books, movies, magazines, and etc., as i pointed out before, we all are @CAPS1 so we all have @CAPS1 standards on what is bad and offensive to what is good. When we remove a book from a library shelve for whatever reason we have to do so then others should have the same right to do so as they see fit. If picked up a book on why @CAPS3 is the right religion and i am a @CAPS4 then more then likely i will find it offensive. Yet if i gave that same book to a @CAPS3, that person would mostly likely read that exact same book that the @CAPS4 read and find it not offensive at all. It all comes down to the veiws we all have about everything so why would you let one person or even a small comittee set standards on library censorship for they @MONTH1 feel one way while another comittee or person feels completly @CAPS1. Everyone is @CAPS1 and feels diferently about issuses. There is no way to make sure that @CAPS2 book in the library won't offend a single person. The same issue can be applied to music, movies, magnazines and ect. No matter what we do, some one will be offended. For example, the plege of allegiance is something my school says everyday, yet some people, like a @ORGANIZATION1, find it offensive. All acrosss the nation people say it before school, a sportinh game, or ect., yet you don't see very many people objecting to that. I have obsereved that most people who find it offensive just ignore it so why can't we do the same for books, movies, magazines, and etc. that we @MONTH1 find offensive. In conclusion, there really is no way to put a cencorship in libraries since no matter to tell what a person might or will find offensive. So why then can't we just not read what offends us, this really is the only way to keep from offending people. For these reasons, I feel that there should not be a cencorship in libraries" 4 4 4 3 3 3 +4540 2 "Throughout the history of literature, many books have been banned from public libraries and shelves. They are all somehow offensive to certain people, but not to all. Even some books that include magic and fiction have been expelled from some societies, simply because of certain religions and cultural backgrounds. I believe that there should never be a piece of literature completely banned from public eye. When a book is banned, a piece of history is removed from others' sight. A book that @MONTH1 have been banned in the @DATE1 could not have been read by my mother or father. My future children and I could also never be able to read it. Materials that are removed from the public are generally removed because of one specific group which complains about its content. When I was about eight years old, I remember seeing on the news that people in @LOCATION1 and other @CAPS1 @CAPS2 countries were burning books from the @CAPS3 @CAPS4 series, only because it contained magic and ridiculous fiction. Maybe they were being burned because the @CAPS5 looked down upon its story and its fictional stories, but that does not mean it should be banned from the libraries. The @CAPS3 @CAPS4 series is one of the most popular pieces of literature of my generation, and generations after mine should be able to enjoy it as much as we did. Before the beginning of @CAPS8 @CAPS9 @CAPS10, the @CAPS11 were starting to be discriminated against. They were treated as sub-humans, like in this example. There was a night in @DATE2 called @CAPS12, when radical @CAPS13 and @CAPS14 supporters burned @CAPS11' houses, stores, and even books. Some of those books could have been the only copies, yet the @ORGANIZATION1 let their hate overcome them and destroyed the pieces of @CAPS16 literature. Because the @ORGANIZATION1 found the @CAPS16 work offensive, the generations after @CAPS8 @CAPS9 @CAPS10 can never read the books burned during @CAPS12. In Katherine Paterson's quote, she says, 'But if I have the right to remove that book from the shelf -- that work I abhor -- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' I believe she is correct in this quote. If literature keeps being censored, there will be none left for future generations to enjoy. No literature should be censored, not even the most radical, magical, or fictional. If censorship continues, the future of literature is doomed." 5 6 5 4 4 4 +4541 2 "There are many works out in modern times which can be considered provacative or offensive. Some are even unfit for young eyes. There are many reasons that some will come up with for removing these books from their shelves, but I believe that no one, politician or artist alike, should have the right to put down someone else's work. There are definitely books in libraries that wouldn't be dreamt of being checked out by the ordinary person, but these books should not be put down. I don't believe that a person's work, which is instilled with hope, money, beliefs, and elbow grease should be removed from public. No matter how offensive or wrong some @MONTH1 be, it is their work and their time, and their heart and soul which they put into a book. It is the truth that this has been done in the past to keep down rebellions and shifts in power, but nevertheless, I still disagree. For example, even today @PERSON1's @CAPS1 @CAPS2 is illegal to even have in @LOCATION1. This is for a specific reason, of course, and not a bad one at that, but I believe that this book should still be available so people can read and learn from the past. As it has been for many centuries, the ability to publish a book means the ability to be remembered forever, and many people put their soul into the book they write. These books represent the ability to think freely, and if one is to remove books from society, then one is to remove free will and free thinking from society as well. This is accentuated especially in the dark psychological science fiction novel by @PERSON2, @CAPS3 @NUM1. This book is almost prophetic in the descriptions of future society from the perspective of a person from the @DATE1's, and almost totally accurate as to what would happen if one was to take books out of society, and was even censored itself for a long time. Of course, it conveys the extremist view of censorship, and probably won't happen in the near future, at least. It is, however, a dark omen of what is to come is censorship is freely given power. There are many views that one can have on a single topic, book, or idea. That doesn't mean, however, that if it is viewed as wrong it should be put down. This applies to music, movies, magazines, websites, and books alike. If one removes these from society in any form, then at a raw standpoint, they are removing a piece of flavor and individuality from society. If censorship is given free reign, even if it is simply over the 'extremist' or 'radical' ideals, then people will never have the full ability to learn from their mistakes and know what to do about the future, which will simply be history that will be repeating itself. Of course, it is not my viewpoint that governments should simply let terrorists and radicals spread their ideals as they please. Once one is proven to be a threat or menace to the public, then they should most definitely be taken into custody and convicted of their wrongs.There is no doubt in my mind that the law should be upheld, but it should not overextend its boundaries. Censorship, as a whole, is a helpful process for the benefit of the public, but all in all it removes the ability to see the raw, cold truths of life. This keeps some from ever learning how to be safe truly, and how to think and believe in their ideals. When politicians step into the boundary of art, music, literature, and even education to an extent, and try to keep it from flourishing as it naturally would, then something must be done. I'm not inciting a rebellion, but I truly do not believe that politics should rule over the artistic soul of the average man. That in itself is how society becomes self-destructive and loses its concern and connection with the world" 5 5 5 4 4 4 +4542 2 "Many different people have views on what they want their children to be exposed to, whether it be in books, movies, music, or any other type of media. So should libraries be more strict and remove certain items that might come across as offensive or vulgar to parents or even students? I believe that it completely depends on how a library advertises or who they allow to check out what. I know that a certain case, specific to me, is that my mother did not like me reading a specific series becasue she thought that it was not an appropriate reading material for me. Because of that, that does not mean she marched down to the library and demand that they get rid of all the books written by that author. She respected the fact that others enjoyed reading the books and just asked me to steer clear of them and to find something more appropriate for me to read. In many libraries, I know that they have certain areas for specific age groups of people like children, teenagers, and adults. Within those specific designated areas, they have kind of 'sub-area' where they seperate educational from entertainment and so on. Let's say one parent gets offended by a specific section, such as a sex education section, should they ask the library to remove it completely? I do not think that will help anything because there are students who use that topic for areas they are studying and parents who use it as educational tools with their own children. I do believe that libraries should put stamps or notices on their different types of media saying that only a certain age group is aloud to look at them and be able to check them out. An eight year old should not be able to go in and get a @NUM1 movie whenever they want to. There should be restrictions on areas like that, but for someone to come in and say to take out all the @NUM1 movies is a ridiculous thing to do because there are others who enjoy that type of entertainment. Libraries to respect the fact that there are different types of people with different interests and they try to make their environment as comfortable for everyone as possible. They will have children's videos seperate from the adult videos and they even have a whole seperate section of books for them to discover and journey into. The only thing that I believe should not be in libraries is vulgar magazines or videos. A library is still a public, family area, after all, and no child should accidentily stumble upon any raunchy article. So, should libraries completely remove areas of media? I do not think so. I think that they should distinguish from adult's and children's materials. Katherine Paterson says, 'But if I have the right to remove books from the shelf . . . then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' If we continue to take books off of the shelves then eventually there will be nothing to read." 4 4 4 4 4 4 +4543 2 "People @MONTH1 have a certain reason to take something off the shelves like books, magazines, @CAPS1, etc. Whether those reasons be personal or professional it rather important. Some @MONTH1 find the material offensive to themself. Others might find it inappropriate to have something like that available to the younger generation. And writing or music could be thought of as unneccessary and irrelevant. The world holds many things that can be found offensive to someone. That someone could be an educated person or a high school dropout. Out of all of the stuff in the world someone is going to find something offensive to them or other people. It can be a phrase that an author uses or the name of a song. But to take something away from the people is not right and shouldn't be allowed unless it is highly offensive. They could choose to stay away from that sort of thing. Unless the offender is very public and offends pratically everyone, should it then be removed. Other material could just be blatantly inappropriate for some to have access to. If there was a book on how to rob a bank or how to make cocaine then it should be removed because that would cause problems that could have never happened. People might learn how to do those things anyway but by allowing that to be public information would be like starting a fire that will get widely out of hand. Of course, anyone can get the notion to do something from anything they read but that is how they interpret it. Some things out there are just inappropriate for the world and all the people on it. If you listen to a @CAPS2 and they singer or rapper starts using profanity and disrespecting a race or gender when they haven't done anything to anyone it would be unneccessary. Something like that should not be allowed in the first place and it is bad enough to be done to another singer but to talk about a race or culture in inexcusable. Or if a writer writes a story about someone, for example who just recently saved peoples lives, saying they were a horrible person and did terrible things to people when they only a little about the person and heard barely any of the story. In conclusion, in certain instances the people should have the right to take away something that is extremely offensive not just to them but to a large amount of people.Or if the material can cause problems that should not have started. And if the writing or music is inappropriate to a race or culture should it be removed. Everyone has their rights and if writing, music, and videos are putting them down they should have the right for it to be taken from access." 4 4 4 4 4 4 +4544 2 "My opinion on this would be that , they are going to learn about @CAPS3 anyways so why take @CAPS3 off the shelfs ? No I don't think any adult material should be cencered . You know when your little girl or boy as about what they have in there hand , simple just take @CAPS3 from them and say '@CAPS1 your eyes can't handle .' @CAPS2 , they are going to ask questions and @CAPS2 , they will start to wonder , but they learn that stuff in school anyways so what's the big deal ? If I had a child , who had got into my personal stuff and started asking questions , I would simply tell them '@CAPS3's a mommy and daddy thing ' , and then hide @CAPS3 in a diffrent place to where I know they can't find @CAPS3 . I mean , when you was a child , of course your parents would have yelled at you for going into there room and looking threw there stuff , but then again , you would yell at them for having @CAPS3 when they got older . So don't disaplin your children for @CAPS1 they 'stummbled' on to , you should learn how to hide your stuff better . I'm not saying I would have any of that stuff (why would I need @CAPS3 ?) but , as a student looking into the future , I have a opinion . Now lets say that you have a couple of maginzines under your bed and your child happens to see them . @CAPS2 they will start looking at them , and some words might come out , but that does not mean they did @CAPS1 wrong , @CAPS3's the parents fault . Like I said before I would hide my stuff better but , then again , I don't need that kind of stuff to live a happy life , I have my children and my husband and that is all I'll ever need . So before you parents decide to protest about the library having stuff that children are not suppose to see , check your room , hide your stuff so you wont be the embarassed one . No , a library can have whatever they want , @CAPS3's not your place to say what they should get ride of and what should stay.As a student , I stand up and say , No , adult material should not be banned from library's , then you would here the adults complaining and that is @CAPS1 we don't need ." 3 2 3 3 3 3 +4545 2 "The question was asked 'Do you believe certian matierals, such as books, music, movies, moagazines, etc., should be removed from the shelves if they are found offensive,' No! By taking away these things, such as books, music, magazines, or movies off the self, that @MONTH1 seem 'offensive' your taking away things that people enjoy. Not many people including me would agree with the passage of censorship on items like these. So should we do this, I dont believe that we should. There are many reasons that this should not be passed. First by using this censorship, you might lose more customers in that store selling these such items. Once the store has lost customers, they lose money, then they might even lose their store. A lot of people like things that dont have any limits to them. They often find their joy in these things. I know that i, myself like reading books, listening to music that has no limits. So if your taking them away or puting limits to it, are people really gonna want to have these things? Secondly, if there is really an issue with books and etc, that are not suitable for kids, then put the books and etc, in catogories. These catorgories would put the things not suitable for children, apart from the ones that children should be reading. Since there are no real solutions besides banning these items, this would be the best plan. Finally, as katherine paterson stated 'All of us can think of a book that we hope none of our children or any other children have taken off the self.' If this is really a problem then the the parents need to watch what their child is reading, because it isn't right to have everything taken away from the society just because the parents are concerned with what their child is reading. So what do you think, should this be such a law. The choice is yours. Just remember though, if you agree with this then. Just think of everything you are taking away from other people, do you really want to be that heartless?" 4 4 4 3 3 3 +4546 2 "Censorship is a matter of great contention today. Many authority figures have seemingly become obsessed with the notion that literature, video games, movies, and music are responsible for the perceived corruption of today's generation. Many believe in the idea of censorship because it will protect their children and allow them to remain innocent and morally upright. However, I believe censorship is a grand mistake on our part. Denying children access to certain literary works only keeps them ignorant, not innocent; so many books today are censored, and yet the information contained in them could have been vital to children who are seeking an understanding of the world they live in. One of the most difficult questions about censorship is the matter of what should be censored and what should not. Books that are viewed as offensive or controversial are the usual targets, but viewing something as being offensive is just thata view. It changes from person to person because of varying cultures, religions, and moral codes. No one can agree on what will have a negative impact on children, making it impossible to establish a standard of what is best left off the shelf. The problem this creates is that many valuable books that should be permitted reading material are instead unavailable. Censorship can protect a child from information they are better off not knowing, but it also robs them of a chance to gain vital knowledge. Children should be encouraged to read and to learn, not blocked from doing so. Yet if this is truly the case, why does the censorship debate still rage? The argument continues because, in truth, there really are things that ought to be censored. Movies, music, and even books today can be very violent or sexual in nature, and these inappropriate subjects can have a negative impact on youths. Bloody video games and hateful song lyrics can encourage animosity towards others in children. But that cannot be the sole cause of such behavior; children will act right if they are taught how, not if they are hidden away from every instance of wrong. Censorship is greatly inferior to proper life lessons about morality, equality, peace, and respect. Inevitably, censorship will remain a common practice. But try this: think of a book that changed your life for the better, and then imagine if you had been denied access to reading it. Do you want to let your children miss out on an experience that could very well mean the world to them?" 5 5 5 4 4 4 +4547 2 I do believe that we can have Materials because there are some good materianls thats have some good stuff in that.Book yes if we don't have no book we can't leave. If we don't have book how we people know how to read.Music i will said yes and no because some time music is not good but some time people need music to do they work. I will say know to magazines because it be to much in that.It be stuff thin them that @CAPS1 sould not see. 2 1 2 1 1 1 +4548 2 "No,I dont think that certain books,music,movies,maganzines should be taken off the shefls.If stuff like that gets taken off then there will be nothing good to read the book now day a starting to get good so if they take the good book then no one will read.Most people think that rap music is bad but that is the music that most people listen to now day and mosy people dont like country.There are some bad movies out there but they are fun to watch becaues there ether funn,gross,or they are sad but there bad movies are groess or funn. If people made better magazines then they wouldnt have that much money then that buissness will go out of buissness and that not a good thing because the person that runns the buissness will have no money to feed his kids.Sence i have been alive nost of the good thing like books,music,magazines have changed because people dont like the stuff from a long time ago. If they do it again then people will stop going to the movies and buying books so that wht i think. Now there are alot of good movies and music coming out so if they brought back all the stuff they use to have then people would have more money.Why people would have more money is because more people would go se the movies from back in the old days.So like movie like from @NUM1 and even @NUM2 would make a lot mof monoey. So that why i think they should not take stuff off because that is how we are loseing all hour money.The people are useing the that they would for movies or books and stuff they are useing for drugs and other stuff that can get them sent to jail and stuff" 2 2 2 2 2 2 +4549 2 "What I belive is that certain material should be allowed on a shelf. The time it takes an author to write a book, is very long. It could be their passion to write, so why would you want to take that away. Every person has an opinion, which is allowed to have by freedom. Material in libraries are sorted by age group, and as long as the material is fitted for that age group, there should'nt be a problem. There are many books that some people do not want their children to read, but the books actually help children learn. For example, a book that you think is boring could actually be interesting to another person. There are many opinions in the world, that is why there are so many differnt kinds of books. If you took away a book or certain material off the shelf, how could that help a child. Yes it could have bad words or beliefs, but it could help someone. If a person is a loner or just likes to be by them selves, they could learn from the character's mistake in the book. Many children these days are getting bullied or pick on, and don't want to tell an adult. If there was a book that they read about a person being bullied, maybe it would encourage them to tell a teacher. Yes I agree, every material has something in it that another person does not like. There are a couple books that I did not approve of, myself, but I know that it has connected with a child some where in the world. Every person does not grow up in the same conditions, but material could teach them. You should stop and think if you was a writer, would you want someone to throw your hard work in the trash? Every time there is a big rally about an author writing about a certain belief, there is negative thoughts. No one stops and thinks about someone else or their family. All they care about is their own family. Even the author's family is embarassed of the rally, but no one stops and thinks of their family and how they feel. Think about you opinion, does anyone care about what you think? That is why as a person, we should not bring down someone's opinion, and let them say what they believe on paper. How would you like it, if someone threw your belief or opinion in the trush? If there is a rally about a material in the library, next time think before you judge. Would you want someone judging your belief or opinion?" 3 4 3 3 4 3 +4550 2 "Alot of things can be found offensive now days, but that does not mean you take it away from others who enjoy it. Everyone has their own view, and opinon on things. For the things people find offensive I believe they should just simply stay away from it. No, I do not believe certain materials should be removed from the library shelves. Somethings people @MONTH1 find offensive others might enjoy. Its simple, if it comes to the point were people are causing problems then maybe that will be up to the people that work in the libraries. Yes, there @MONTH1 be alot of things that people take offensive, but that dose not mean take away the things others @MONTH1 enjoy. I have been to many libraries in my life. I have not really seen anything offensive, but I have seen some books and movies for adults only. Honestly in my eyes its simple, if there is something you find offensive just stay away from it, because others @MONTH1 enjoy it. Its not up to me weather the materials should be removed from the library shelves. Although I do believe that people who find things offensive should just stay away from it. You have to take things into consideration before jumping straight into conclusions." 3 3 3 4 3 4 +4551 2 "This essay is about cenorship for the libarys well their shouldn't because alot of this stuff is on tv like comedy centreal, @ORGANIZATION2. @CAPS3,mtv and alot of channels. should music be cenorship no because the blanks can ruin the beats, rythem, and the lyrics. The cenorship ruins how the song goes and it makes people mad because they like a certain song but if they want to listen to it they have to get on a computer. Websites they can get on to listen to it is @CAPS1, @ORGANIZATION1, @CAPS2, and alot more. Movies shouldn't ethier its the parents pick if they didnt want the kids to watch or hear the things they do dont pick it or tell the kids to go to their rooms. Books!!! should not i repeat should not be cenorship because what if the adults want to read them. That aint fair for them cause all of this is a about kids. Kids are smart about this they know what to read and what they shouldn't read. T.V. shows! is best thing ever their alot of shows thats funny,awesome,thriller,and alot more. But its gets to you. Here a example @ORGANIZATION2, @CAPS3, and more plays alot of good movies but since they have block out the words and parts of movie it really dont make sense to watch it because their not parts they really haved seen and they have to go rent it or buy it. To see the movie. Am i right? All i am saying the cenorship ruins alot of tv shows movies and music and nobody wants that. It's ruins the enteriment for people and that sad to see cause actors, music writers, writers, and alot more speanded alot of their time for the fans and work. When they can be with their familys!!! Well this is the end of my essay" 3 3 3 3 3 3 +4552 2 "There is material out there that some people consider offensive and or have material in them that we don't want our youth to indulge in. Such items can include music, books, and movies, but I am just going to give you some of my thoughts on the issue. On materials, like music and movies, there are ratings on the item saying what age is apropriate for the content that the music or movie have in them. Like movies there are ratings such as @CAPS1 which means that you should be @NUM1 or older to view it. @NUM2 which is parental guidance or @NUM3 and up. PG means you should have your parents with for the younger kids. And @CAPS2 which is for all age groups. If there is something offensive and or the language is bad in music the cover will have a lable that says explicit content. I agree with this. I don't think that they should take anything off of the shelf unless completely nescessary. If someone doesn't like the content in that item they have the option to not listen, watch, or read it. There are people out there that might disagree with me and I can see where they are coming from too. Say if there is a book discriminating a race than I agree that it should be taken off the shelves. There are also people out there who are more leanent and others that are more strict. Just like parents for example. A lot of parents want to raise there kids in an envirenment where there is no swearing and violence, while other parents let there kids watch and listen to items out of there age group. Like with me my parents let me watch, read, and listen to what I want and in my opinion I turned out just fine, while others might not thing so. I have seen kids that had parents that weren't strict and let them indulge in these items and they turned out to be well behaved adults. Then there are also people you had strict parents and they turned out to be not so good of a person, and vise versa. That is about all I have to say on the topic. You have seen my views and what I believe. In a summary I guess I could say that everyone has there own opinions and views" 3 3 3 4 3 4 +4553 2 "Have you ever had a book, movie, or magazine offend you? Have you ever wished that no one else will ever have to read it? Should those offensive materials be removed from libraries? I don't think they should. The books, movies, and other materials should be marked saying that they @MONTH1 be found offensive. From my own experience I know how easily one can be offended by a book or movie. Many times I have read a book that has completely contradicted my religion. Most times I will ignore it and move on to a better book or movie. Sometimes it is harder to ignore. I always try to forget and move forward with my life, as others should do. Have you ever read the book The @CAPS1? If you have you are aware that there are some ideas in this book that bring up many controversies. One example from the book would be when they kill some of the children. Most people, like myself, do not agree with this idea. They think that it is wrong. Again some people @MONTH1 try to get this book banned, but it is still a wonderful literature. As you @MONTH1 have seen in the media lately, many people are trying to get the book @CAPS2 @CAPS3 removed from schools. Some people have found the book as offensive because it repeatedly refers to native americans by a more profound word. The law has not passed yet and has remained in schools. The law hasnt passed because it does not affect everyone. Some people @MONTH1 not find this offensive. Therefore it was not removed. Removing offensive books from libraries is the exact same thing. Some people @MONTH1 find the books offensive while others @MONTH1 not. Removing the books from everyone's reach would be appauling. The book @MONTH1 only be offensive to one race or religion. Why not simply put a warning label for that race or religion? That would take care of the problem by putting the decision of reading it and being offended in their hands. Possibly it isnt that the books are offensive to a race or religion, maybe it is to an age group. If that is the problem then the librarians can put those books in the appropriate age section. I have given reasons from my own experiences, other readings, and my obersavations in the media. I only hope that you consider my ideas. Do not remove the books from the shelf only because it is offensive to one person. Simply put a warning label on the book after a few complaints. This would put the responsibility of being offended in thier hands. Once again I do not think that offensive materials should be removed from our libraries only censored to the people of whom it is offensive" 4 4 4 4 4 4 +4554 2 "In @LOCATION1, everyone wants censorship. Mainly because they dont want be the outcast. Thats understandable in the case that we have numerous amount of different races in @LOCATION1. In some ways, censorship is necessary and in other ways, some people just want attention. If all different races want censorship, then why would we censor to the liking of just one group of people? Essentially, the censorship problem won't go away because it is a chain reaction. For example, if a group of people asked a library to get rid of books because of the references they make, that might be insulting to another group of people. then that group of people wouoldn't like a reference to another book, which another group of people dislike, and it goes on and on. So for the censorship towards different groups of people, there will have to be some tolerance. On the other hand, young children are in need of censorship. They grow and mature everyday, developing physically and mentally. So if we were to put an inapropriate book in front of them, they would read it and accept is as standard. And when they read bad things like that, they develop the wrong goals and values for their future lives. We are all different, and interpret things in different ways. So when you watch a movie to listen to music and think it wrong, someone right around the corner @MONTH1 think that its just normal. If you question someones movie or song, in the scheme of things, your questioning their judgement, and thats unfair to them" 4 4 4 4 4 4 +4555 2 "Books, music, movies, and magazines are all things people use for entertainment and study, something that everyone should have access too. If someone is offended by one of these things i do not think that they should be removed off shelves or advertisements. Many people will still find these books or other recources interesting. If the source is something more adult then it should be placed in a section that is labeled or supported by information that says so. Radio stations play songs that talk about sex, drugs and violence but i believe that kids need to be associated with these things. Parents can't keep their children from it all of there life, and most of the bad things said are cut out. Everyone has a different interest in the things that he or she likes. So why should you pull something off the shelf in stores or libraries just because its offensive to one person" 3 3 3 3 3 3 +4556 2 "I do not think libraries should have to censor the kinds of books, magazines, etc..., because people should have the right to read anything that want. People do not necessairly like reading some things, but if it is important that they research something, or read a book for school then they need to have the resources availablet to them. Take the book, @CAPS1 in the @CAPS2, for example. In that book it describes kidnapping, and the rape of young girls. Certain classes would require you to read this book, even though noone would really want to read about that. Some people have different tastes in movies. Personally, I prefer horror movies (but not gory) because they get me thinking about whats going to happen next. Some people like the really graphic and gory movies, and maybe if the libraries started taking movies like this off the shelf, it would be harder for those people to find them. Certain people would find some things more offensive than other people. Who can say where it should stop? Movies that make fun or talk about religion would be offensive to the people in that religion, but people from other religions would be un-effected by it. Just imagine watching @CAPS3 and seeing someone talk about everything you believe in and joking around about it. It would really offend people, while othre people couldn't care less. Basically, I think we have the right to read or watch whatever makes us happy, and if there is something out there that you do not want to see, you just have to ignore it and leave it alone. It should not be ruined for other people who would like to see it" 4 4 4 3 4 3 +4557 2 "Censorship in media has been around since the beginning of @ORGANIZATION1. Some of the first movies were seen as too offensive and never made it to the theatres, but books, music, movies, and magazines in libraries how do they even need to be censored? Censorship of books should be if a book is not for children keep them away from it. Books that are extremely offensive should be taken off the shelf or not put in a library. A library is a place of learning or reading for entertainment and those very offensive books do not teach learning or are entertaining. Music is another thing. Most songs out are highly offensive and should be in a different section. They should not be in the kid's area for music because do parents really want their children to learn cuss words at the age of five? Most parents do not want their children to learn cuss words and probably like if the libraries got rid of the music altogether that had to with sex, drugs, and cussing, all things that are censored in the media today. Maybe libraries can carry music that is censored instead of carrying music that is not censored. Movies are almost the same as music because it potrays mostly what music has in it, but it is visual. Again parents do not want to see drug use or inappropriate gestures that make the child copy what they see and hear. Libraries should put the movies in the adult section of the library. They should be censored by putting a censor bar over the mouth of someone who is cussing or put the bar over the person's hand or wherever when they are making an inappropriate gesture. Over the years it has become harder to censor magazines. Magazines are impossible to censor, unless you are the person receiving the magazine. If you are the libraries receiving the magazines grab a black marker and cross out words or pictures that seem to be offensive. The libraries should not carry the inappropriate magazines. If you are at a library and you see something inappropriate tell the librarian and see if they will censor the material in question." 4 4 4 4 4 4 +4558 2 "Yes, I believe that certian materials should be removed from the shelves if they are found offensive. Some people do not want to read about those things that they have less intrest in. Materials like that can offend many people, so they should be removed from public shelves. For example, someone, by accident, @MONTH1 stumble upon a book containing inappropriate materials. They could take it home and begin reading it, and realize that the material that they are reading contains information that offends them. That really concerns some people and can hurt the library that held the book, and they could begin losing customers. Another reason why inappropriate materials should not be publicly displayed is, children. What if a young child was wondering around a store or a library, and randomly picked up a book or magazine with offensive pictures in it? That young child would see things that were not meant for that child to see. But, it does happen. Imagine how angry the parents of the child would be. They would most likely do everthing they could to get those materials removed from being displayed in public and from being within a child's reach. Children deffinately do not need to be seeing those things and also, even some adults do not even prefer it. Religion is also an example of why places should watch what they put on their shelves. It @MONTH1 be against some religions to read inappropriate materials. And with out them knowing their book contained it and they read it, they would be greatly offended and very upset. That could turn many people away from reading certain books, or even going to the store where they even purchased those materials. In conclusion, all of these are perfect examples of why inappropriate materials should be removed to prevent people from being offended. This is why materials such as books, magazines, etc. should be removed from public shelves, because they can offend many people" 4 3 4 4 3 4 +4559 2 "As Katherine Paterson once said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' As an author, she feels if she, and anyone else, has the right to take those uncensored books off the shelf, then there will be no books left. Depending on the person, some books @MONTH1 be offensive to some, but not all. I dont think that books should be able to be taken off the shelf by anyone because everyones preference on books can be different. I believe that libraries should keep unsensored books in a certain section, so children can easily be kept from seeing or reading unappropriote material at their age. And lastly, my own experience has led me to believe there should be a warning on certain books, saying not all the material could be appropriote. People having the right to take any book off the shelf would be unfair for the people. The library is a quiet place, meant for people to come and read any type of book, do homework, study groups, and undergo research for practiaclly any topic, @CAPS1 the number of books based on one persons opinion is unfair to everyone else who might enjoy that genre. Libraries and books were one of the main resources for researching before there was internet and many eople still prefer books to this day. I think the freedom of taking any book off the shelf would be endangering the process of learning and discovering To reduce the number of uncensored books being found by children or people who find them offensive, there should be a certain section in the library for just those books. That way, people who have an interest in those books can read them, but also they are kept away for those who dont want to read them. I think taking away any type of book is unfair to the people because everyone like different genres of books, so having uncensored books in one section is fair to all. It would also be easier on parents knowing their children wont find books with material in them that they shouldnt be reading. By disagreeing with the right to take any book off the shelf, I think each book with any uncensored material should be marked with some type of sticker on the binding, just as a warning. If one sees that sticker and knows they dont want books with that type of material, then they can easily return the book with no argument. I have had experience with trying to find a book for a school project, but later finding there was material in it that really wasnt appropriote for school. This made me have to find a new book for the project. I didnt want to completely take the book off the shelf and away from any one else who wanted to read it, but a warning right then would of been easier in the situation. In conclusion, I dont believe that certain materials should be taken off by just anyone. Taking away books would spark many disagreements because even though one person might find something offensive, doesnt mean every other person will. As mentioned before, putting the uncensored books in a different section and putting a sticker on the binding would give a clear warning to anyone not wanting to read unsencored books. I think every library needs to take into consideration of the topics above to help people reduce the issue of people or children finding uncensored books in just any section" 4 4 4 4 4 4 +4560 2 I do not really read books. I think that offensive things sould be tooken off shelves because there could be a sene if they are'nt. There are many people who will fight if they are truely offended and it is not a pretty sight. 2 2 2 2 2 2 +4561 2 "I believe if i worked at a library , if I found multiple idems that has profanity, rasicm, slang.I agree with taking Magazines, @CAPS1, Music books, @CAPS2 books ,etc., I wouldnt want my own children going to the library and finding books with racism, etc.I would like to inspire more people to check out library books but you could'nt if there were inappropriate books . If i worked at a library and I had to scan all the books to make sure the books were okay for young adults, young children to check out. How would it make you feel if I didnt do a book scan to check the books and one of your children brought home a inappropriate book how would you respond to it? I would do a observation on all the books that we had in our library. I also think that all libraries should have more inspireing books and cartooon , and baby books for little children. I think if majority of us all went to the library and we found a bad book I think we should have the right to remove it from the shelf, not only I would'nt want my children to see i woul'nt want someone elses children to see. This is how i feel if my child picked up a bad vulnerable book.I would'nt let he/or she go back to the library until they organized there library. Lastly I think librarys should have a big room full of little kids books. Also i think they should have different age groups like one room for baby books another room for @NUM1 to @NUM2 year olds and on up. I hope this inspires you .Always read the back of a book before checking it out of the library because you never know what the books going to be about" 3 2 3 3 3 3 +4562 2 "Censorship in libraries has been an issue among communities for as long as literature has been around. As expressed by Katherine Paterson, if one has the right to remove a book from the shelf that he or she deems unexceptable, then everyone has the right to remove books that he or she deem unexceptable. Everyone has an individual view of what is unexceptable, so that @MONTH1 leave no book to be left on the shelf. In saying this, if the government censors materials such as books, music, movies, and magazines, there is nothing to keep them from banning all that is there. There is bound to be someone that wants a certain thing to be censored, but the government @MONTH1 not see it a something to be censored. This brings up another question, what deems something unexceptable to be viewed? In my mind, this is a matter of opinion, so should we leave something like this in the government's hands to decide upon? I do not believe that books, music, movies, or magazines should ever be censored. It is the choice of the individual to read, listen, or watch a certain material. The government's opinion of whether something should be censored or not has changed over time. The novel, 'The @CAPS1 of @ORGANIZATION1' was onced censored and banned by the government for it contained language and scenes that were viewed as inappropriate for readers. If this work were to remain banned, this canon of american culture, the effect that it had on american literature to this day would have been lost. I see literature as another form of art. Art should never be censored, for the lack of it will halt all developments in our society. Artists are ones to take risks and so are writers. If people were not allowed to take risks, what would become of our society? Developments that have been made by researchers, inventors, artists, and writers were once possibly deemed as risk. Should we have censored them? Another instance under which censorship had had a negative affect on society and culture was during the @CAPS2 regime. Music, books, art, movies, everything was censored or banned under @CAPS3's rule. A whole generation was lost under his power, for they were deemed enexceptable just because he did not like them. Now, should we put the power of picking what is unexceptable into the hands of one group of people? Whole generations of books, music, etc. could be at stake under such principles. There should be no reason that we are not allowed to see, read, or listen to whatever we would like to as a nation. The government, with the ability to censor libraries, can hinder our exposure to ideas unknown to us. Lack of exposure is the cause of a society's ignorance of the world around it. Who will stop the government from censoring what could be the next major masterpiece in literature? Nothing stopped them from banning 'The @CAPS1 of @ORGANIZATION1,' so is there limit? This is the question one has to ask themselves, to keep the government from potentially cutting the nation off from future masterpieces." 5 5 5 4 4 4 +4563 2 "There has been a problem with censorship in libraries recently. Many books, movies, and music are being removed from libraries because they are found offensive. There are, however, libraries that do not remove items due to being offensive. There are many reasons as to why items are censored or not censored, but libraries should not have to censor certain items. One reason why offensive material should not be removed is because material that is considered offensive could be given a label that warns people of the material in the book or movie. If a child tries to check out a book or movie that has a warning label, they would have to have a parent with them to approve the item the child is getting. Whether or not children read or see the offensive material is the decision of the parents. Another reason offensive material should not be removed is because parents would have to approve the item that their child is getting. If they believe the material is too mature for their child, they could restrict them. If the item doesn't seem too harmful, they could allow it. That decision, however, is up to the parents. Books or movies that are considered offensive could also be given their own section of a library. Children would not be allowed in that section without parental supervision. And that, again, is the decision of the child's parents. There are many reasons why offensive material should not be banned. That sort of material, however, should have restrictions on who should and should not check them out." 3 3 3 4 4 4 +4564 2 "Everyone has there own opinions and arguements about something. There are a lot of books that can be offensive to people in some ways. There can be over thousands of books in a library, and I find it difficult sometimes to find that right book that interests me. My personal opinion is that i do not think that books should be removed from a shelf even though it @MONTH1 offend someone. As I stated in the first paragraph, everyone has there own opinions. There are so many types of books out there from murderes, romance, mysteries, drugs, and many more. These books should be placed in seperate areas just as many books are. If books are taken off a shelf what does that mean to us people? Everyone has there own freedom. So if books are going to be moved from someone that's taking away from are individual freedom. There are more to books in a libray also. From books, movies, music, magazine, etc., can all of the have different types to them. I do think they should just be placed in different areas. I can see where people think that this can cause an influence to young children if they pick up something that is disturbing, but they should be with an adult. Adults know what is right from wrong than what children do. For example, whenever i walk into public places i hardly every see children just running around especially in libraries. Libraries are expected to be kept quiet and not out jumping around and screaming. The kids should be kept with there parent or an adult that way they can't grab something they shouldn't. I understand that some teenagers can be offended to drugs or killings, in magazines or books, but some people like reading about that kind of stuff. Does that mean we have the right to take it off the shelf because one is offended? To many think they have the right to do anything without negociating with others. People that do not like that kind of stuff should just put it back down and go on with what they were doing.I can understand if you think that restrictions should be put on some things because i will agree. There should be sections for teens, adults, and children. To me that does not mean we have to remove anything though from otheres for offending someone. Libraries can have an affect on your everyday life because of how calming and soothing it can be. You should be able to have freedom without removing anything from anyone. Taking away things does not mean your just taking away from one, it means your taking away from everyone. You can have your own censorship in libraries from your individual freedom. These are my personal views on why things should not be removed from shelves or anything else" 3 3 3 3 4 3 +4565 2 "There are lots and lots of arguments over the censorship of books and how they could affect children. Some people think that offensive books should be removed from library shelves. Others think that they should be left up there for the people who want to read them to do so. Some parents of children say that their child has became more offensive towards others, when others people think it is just bad parenting. So, you see that there are many different statements about offensive stuff being told to their children. I think that there are some offensive things that need to be kept on shelves and that there are some that shouldn't. Some articles that are offensive should be left up on shelves because they might teach children of what is bad and what isn't. Other articles that have no reason for being offensive should be taken off shelves. For an example there is music that talks about being extremely harsh and disobedient to others when that erson has done nothing harmful. One example of being offensive in a good way is the book '@PERSON1.' @CAPS1 book showed how bad slavery was and how it should never happen again. If there is a book or any other piece of material that is offensive in a good way; I want to read it and understand what it is trying to portray to me. If it is portraying a bad image, then it should be removed from shelves. If it isn't portraying a bad image then I believe that it should be taught to children so they can understand the affects and know the difference between what is right and wrong. Books that suggest harmful behavior towards anything without a purpose should be thrown away. @CAPS1 is because children that read it could join in on what the book is suggesting. Then that could lead to bad consequeces for that person or someone else for that matter. I have witnessed accounts where someone has listened to bad music or read about something bad and then have been changed by it, nut not in a good way. There has been incidents where that person did something illegal and then had to face the harsh consequences for that action. Then I have also seen accounts where people have been changed in a good way because of a book. I personally have been chaged by the book '@ORGANIZATION1' in a good way. Now I realize how bad that was towards colored people, so I behave nicely to them. since the are just as equal to everyone else." 3 4 3 4 3 4 +4566 2 "REMOVING BOOKS FROM THE LIBRARY BECAUSE THEY ARE OFFENSIVE IS A GOOD IDEA. I DO NOT AGREE BECAUSE, THE BOOKS SHOULD NOT BE GONE FOR GOOD. THERE SHOULD BE AGE LIMITS ON BOOKS. BOOKS THAT ARE OFFENSIVE SHOULD BE ONLY ALLOWED TO ADULTS OR A CERTAIN AGE GROUP, THIS WILL HELP WITH CHILDREN NOT BEING SCARED, TO HELP KEEP HISTORY AROUND AND, FREEDOM OF SPEECH. BY MAKING AS AGE LIMIT ON CERTAIN BOOKS, WE CAN KEEP CHILDREN INACENT AND PURE. WITH BOOKS SUCH AS '@DATE1', KIDS @NUM1 OR UNDER SHOULD NOT READ THAT BOOK. @NUM1 AND UNDER ARE STILL NIEVE. LITTLE KIDS DO NOT KNOW ABOUT SEX OR EVEN PRE-MARRITAL SEX. WITH @PERSON1 AND IS GIRLFRIEND HAVING SEX EVERY OTHER CHAPTER, ITS VERY INAPPORITE FOR A CHILD TO READ. ALSO, WITH ALL THE TORTURE PARTS, IT WOULD SCARE A LITTLE BOY/GIRL OUT OF HIS/HER MIND. WHEN GETTING RID OF OFFENSIVE BOOKS, WE REMOVE HISTORY. THINK ABOUT WHERE WE WOULD BE IF ANNE FRANK DID NOT WRITE HER DIARY. WE WOULD NOT KNOW HOW BAD HILTER REALLY WAS. WE COULD ONLY ASSUME. WITH GETTING RID OF BOOKS CAUSE THEY ARE 'OFFENSIVE' IS A RIDICULOUS REASON. BOOKS ARE ONLY OFFENSIVE TO SENATIVE PEOPLE. BOOKS KEEP HISTORY ALIVE! THINK: 'WHAT ARE WE WITHOUT HISTORY?' FINALLY, FREEDOM OF SPEECH IS WHY THEY SHOULD SAY. AUTHORS HAVE THE RIGHT TO WRITE WHAT THEY WANT. IF THE READER DOES NOT LIKE IT AND FINDS IT OFFENSIVE, THEN THEY SHOULD NOT READ IT. IF SHAKE SPEARE, WAS TOLD HE COULD NOT WRITE HIS STORIES, WE WOULD NOT HAVE THE TRAGETY OF ROMEO AND JULIET. SO MANY BOOKS WOULD BE LOST IF SOMEONE COULD WRITE BECAUSE IT WAS OFFENSIVE. BOOK THAT ARE TOO OFFENSIVE OR INAPORITE FOR A CHILD TO READ THERE SHOULD BE A AGE LIMIT ON IT. IF WE GET RID OF CERTAIN BOOKS WE GET RID OF CERTAIN HISTORY AS WELL. GETTING RID OF THOSE BOOKS TELLS A NEXT COMING AUTHOR THAT FREEDOM OF SPEECH DOES NOT MATTER TO OFFENCIVENESS. SO KEEP THE BOOKS AROUND, ITS ONLY WORDS" 3 3 3 3 2 3 +4567 2 "Many people claim that certain books should be allowed on @CAPS1 shelves. They claim that these books can be offensive to some and, therefore, should not be read. These books are known as '@CAPS2 Books.' @CAPS3, librarians, and public officials have gone too far in thinking they should have the right to choose who reads certain books and who does not. In the novel To @CAPS4 a @CAPS5, the author uses many words and descriptions that people find are very offensive. These words, however, are essential to the setting of the novel. The author is not claiming that she personally feels that @CAPS6 @CAPS7 should be described in the way that they are, but a racist individual, such as @PERSON3 or many people during the time period, would not hesitate to describe them in such a way. The novel, To @CAPS4 a @CAPS9, is a great way for people to understand the history of the @CAPS10. Without the descriptions in the novels, a piece of history would unknown to many. The novel, @PERSON4 in the @CAPS11, attempts to delve into the life of a pubescent, whiney, teenager. The author, @PERSON2, uses many curses in the dialogue between characters. The charachters, however, are high school boys that live at a boarding school. To water down the language or to make the novel 'kid friendly' would make it impossible to describe the true nature of the characters. The novel also contains multiple references to sexual situations. These situations, although offensive to some, are necessary to show the progression of plot as well as the changing charachter traits of the protagonist, @PERSON1. Literature is not the only medium being targetted by those trying to completely censor libraries. Music, movies, magazines, and videogames are being targeted as well. In many cases, certain materials should not be viewed by young children or those who lack the maturity to handle them. It should be remembered that it is the @CAPS3 responsibility to censor materials for their children. Instances of violence, prejudice, and death are a diurnal occurence. @CAPS1 patrons should not be shielded from these occurrences. In conclusion, many times it is necessary for an author to use words or descriptions that are offensive to many. Librarians should not be given control over which materials reach the shelves in libraries. Libraries should present a wide variety of books, movies, etc. to the public. If libraries do this, it becomes the responsiblity of either the @CAPS3 or the individual to pick out books that are within personal boundaries" 5 5 5 4 4 4 +4568 2 "Works of literature are works of literature no matter what they contain.All liteature should be placed on the shelves of a library. If for some reason the material is offensive or deemed as crude then it should go into a restricted section where permission is required to enter. Literature is a strong item when it comes to persuasion. So we must take care of what we allow to be released or seen and to which eyes. Literature is written by the author for many reasons. Perhaps the reason is to make money or to share a point of view but either way the author generally wants his or her literature to be read. How would the author ever achieve his or her goal if we decided to remove their hard work from the library shelves. It simply could not be read if it is not available. This is one reason why certain books should not be altogether removed from the library. No matter how crude a topic @MONTH1 be it @MONTH1 still be needed by certain individuals. If there were images of a nude person in a scientific book that librarians did not want children to get their hands on then how would students study a topic such as sexual education or anatomy for a class? Of course there are people who simply want to see nudity for foolish pleasure and that is why permission should berequired to obtain these books. A small closed off room in a library should be sufficient to contain all the books deemed crude. This way the only access to the books would be to get a key from a librarian. A book not read @MONTH1 as well never have been written. There is absolutely no point in destroying certain types of literature because some @MONTH1 feel offended. The simplest solution would be to simply make it so the only people to view these books would want or need to go view them. We simply can not lose certain pieces of writing because some parents do not trust their childs eye or because a person @MONTH1 be offended at the material. After all, when everybody has a chance to say what is offensive there will be no books left." 4 4 4 4 4 4 +4569 2 "Everyone has their own opinion about certain things in life. Maybe its politics; it could be a sports team. Everyone has a right to their own opinion. As for reading materials, the opinions could be endless and even painful to hear. Opinions of some books and media type materials are biased. People could often be offended by the materials that can be accessed through a public library. For instance, let's say a grandmother and her grandchild are at the public library. The grandchild picks up a self-help book and starts to read. Later the grandmother reads it and finds out it says everything opposite of what the grandchild was taught about life by herself and her parents. To the grandmother, @CAPS1 is offensive. Through observation, I have noticed when a person picks up 'an offensive book' and reads a little of it, they tend to put it right back where they found it. It obviously isn't hard to do. So why should a book be taken out of a library when all you have to do is set it down and leave it? The same goes for music, movies, and magazines. If you don't like the music, don't listen to it. If you don't think it would be a 'nice' movie, don't go out and see it. If the magazine seems raunchy, don't buy it. @PERSON1 said it well, that if we took all the offensive books off the shelf '...then we have no books left on the shelf for any of us.' @CAPS1 statement is as true as any statement could be. What would be left? Everyone has an opinion and likely someone will always find it offensive. Therefore offensive books and media should be allowed to stay on the shelves. Whether or not you find a book, movie, music, or magazine that is offensive, why fret over it? It's just easier to move on and forget it. Ignorance isn't all bad" 3 4 3 4 4 4 +4570 2 "Taking books off the shelves will not change anything children are just goin to @CAPS1 to a different place to find the book, @CAPS1 to a book store or Other librabies if they like it. If I seen a book and I knew I wasnt suppose to read but then I knew it was good music, book, or magazie. I would get it cause thats what children do explore. books are here to read and to look at i feel if you know im not suppose to read it make me show prof of age or not give it to me. Really dont understand why sum books be in stores and people dont want u reading them. Sum children dont read at all and to see them to pick up a book, @CAPS2 down to read should be good eoungh. But there is always a age group thats not suppose to read some books. But at the smae time you cant keep the child away from the world, and what it brings you. The book are put there for a reason and not just to be walked past. I feel like the reason why children listen to music is that some time the track relate to them in a way that a other person would not understand. So they feel the song other thren what another person would hear just the @CAPS3, @CAPS4, @CAPS5, and @CAPS6. Thats not what sum parents want you to hear. Magazines tells alot of things and show to much for the younger minds. Im a father my self and would want my son at the age of @NUM1 looking at any naked girl or adds about pron in @ORGANIZATION1 books or any of that kind. parents can sometimes be over hard on a child and not let them do a lot of things. But they feel that they knows whats best for u. What ever they tell you is not wrong cause the @MONTH1 have been through it already. That would only lead to them doing things behide there backs. But if they want learn the easy way its aways the hard way." 2 2 2 2 2 2 +4571 2 "When you go to library, you @MONTH1 have a lot choice about reading books, watching movies or listening music, and sometimes you might have offensive words or abusive langauge that is not appropriate for you children. Students must the right to remove the book from the library if he or she gets offended, or sometimes if there is a student who has came from a different @CAPS2 and they might get offeneded by the movies or music that are in the library. Books are most commonly used in the library. In those books, there are some book that are offensive to some student, and if one student find something offensive, he should have the right to remove the book from the library shelve. Many students like fiction books, which are true story but it might have some kind of offensive language or something that the student is feeling racist to him. School or any public library should remove books that contains inappropriate words that are not good for the kids to learn in their life. Music is also one of the important thing that is carried in any school library or any public library. Most common type of music that you can find in the library is @CAPS1, @CAPS2, or @CAPS3 music. Most of the times those kinds of music might not carry and bad words, racistism or any offensive language, but some of the songs might carry something that is not apporpriate for school use. Those kinds of music must be remove from any school library or any public library. Movies are also carried in some library, but not every library carries a movie. Some of the movies might have blood scenes, abusive language, which might not be apporpriate for some childrens who are at school. You should check the rating of the movie that you are checking out of the library or if you are watching it at home or any other places. Movies might carry some kind of rasictism in them. Library is a good source for reading books, listening to music, or watching a movie. While you are reading a book or watching a movie, you might find words which might not be apporpriate for yourself or for students who read those books. These movies, books or music can carry abusive language or something that is rasict to some people who came from a different @CAPS2. Student should have the right to remove something that is not apporpriate in school use, such as, books, music and movies, if they contain something that is not suppose to be in it, you should remove it" 3 3 3 3 3 3 +4572 2 Alot of people are offeneded by things that are uncenored. Some peopole think they should be censored and others think it should not. Its all a matter of opinion. I dont think anything should be censored because it takes away from the freedom of speech. With censorship one can not fully express there self or opinion. that is way nothing should be censored 1 1 1 2 2 2 +4573 2 "I strongly disagree with the idea of removing any materials from public shelfs. Books,magazines, and the rest of the materials are based on the author's and musician's experiences and their observations. With the population of readers in the @CAPS1 @CAPS2 I no that the removal of books for what they might contain would have a bad impact on the people as a hole. The world needs its materials. The writer of the book writes on his Observations and his own personal experiences in life. The @CAPS3 put so much into it why take it away cause someone doesn't like how part of it's worded. Movies that are considered bad probably just have a bad word or a scene where theres a little blood. Lots of people like to make a big deal out of nothing. I seriously think some parents think if their kid here a bad work or sees a little podle of blood that the kid is going to end up in jail. Then there is music. The public thinks that kids should not be exposed to music like rap and hip-hop. I agree with that, but I also don't see if its christain rap or its a clean song whats wrong with it. A musician is not just payed for his or her amazing skills with an instrument, but also with his or her way to connect with the listener. I truely don't see any reason for take any form of materials off the shelfs. The artist who produces it has a right to their own oppion. The public I feel makes a big deal out of nothing. The smallest problems don't name the material the way the reader hears the work of the artist" 3 3 3 3 3 3 +4574 2 "Where it @CAPS1 @CAPS2 @CAPS3 @CAPS4 up noone wanted to read, it's to hard or I don't want to. The best way to get out of reading was reading a magazine. Sure, it's educational but it also can demoralize some people's thoughts and feelings. One way to get rid of this problem is censorship, or taking a specific book out of the hands of the public. We all have poked fun at people, whether it is to hurt them or just give them a hard time, it can hurt people. Same way with the media. Books, magazines, @LOCATION1, and the internet all are competing for the success and money of its viewers, and the best wat to do that is to appeal to the audience. Give them what they want. For some reason everyone wants to demoralize people, and that is where I think it @CAPS1 the @CAPS3. Stand up for your rights and censor out those things that will lead to worse lives of those to come. Censorship @MONTH1 just be a big word to most people, but it carries a big problem. For me, it @CAPS1 the @CAPS3 whenever racism is a problem or else vulgarity is an obscene message. The music we listen to can get really intense. I'm a victim of the harsh music that we play more and more of today. Atleast the radio is trying to do better at this whenever they 'bleep' out the curse words or else persuade the artist to make clean lyrics that they play on air. That is where places are trying to clean things up. Make tomorrow be a better place than today. With all of these new @CAPS5 (Music @CAPS6) shows and other reality sitcoms making air on @CAPS6, it has opened the door to crudeness all over. They try to do a better job of cleaning it up in the sense of picture, censoring out body parts and on the worldwide coverage stations their mouths. Other stations like @CAPS5 don't do anything about the voices and the vulgarity people are showing and feeling towards each other. Books are another thing that could use some censorship. @CAPS2 teacher used to tell me, '@CAPS8, if you can't read it out loud to me, then you shouldn't probably be reading it.' and I agree. With the technology and all the other things, children are more vulnerable to these harsh words and actions. Thus, leading towards a society who can't trust anyone and easily turns to vulgarity when need be. With the world today, it is quiet easy to listen to the uncensored version that is shed from the radio. One person tries to make tomorrow a better place but the next tries to demoralize it. It's one thing if your angry and upset and are standing up for your rights but it's not whenever you do it for the fun of it. That is where it @CAPS1 @CAPS2 @CAPS3" 4 4 4 4 4 4 +4575 2 "Censorship is a two sided question. There are people who believe that everything should be left the way that it is written. While other people believe that subjects that are offinisve should be removed. Is a subject too graphic for students? People have the freedom of speech. Knowledge is power. These are some reasons that can be thought about be for deciding if censoship is right or not. What is too offinsive for a student to read? In history many things are considered offensive. If all the books that talk about history are gone then how will students be able to learn about the past. If students can't learn about the past than the past is bound it repeat itself. Other books like horror books are for entertainment purposes, so what is wrong with someone reading a book on a murder if its just for entertainment? There are books that must be kept so that students can learn to their full abilities. If books are censored than that takes away a persons right to freedom of speech. That restricts somes creativity and since of wonder. If certain books are taken off the shelves of a library than books that are famous now @MONTH1 have never have been read. Books even if they are offensive can show someones thoughts and ideas that could have changed the world. People everywhere learn from books. Books about the past help people understand what to do different for the future. Many things are learned from books everyday and if certain books are taken down there will be things that will never be learned, bacuse someone thought that the book was not appropriate for a student to read. Students read books about the past so that they learn. The past is the best teacher and when the past is gone there is no way for those students to learn about the past. Having books that are said to be offinsive can help in @MONTH1 ways. All books should remain on the shelves. No matter what the book talks about a student can learn from that book. If the book is something that a student doesn't want to learn about than they don't have to read the book. A lot can be learned from books and without books there can not and will not be knowledge that is spread for future generations to come." 4 4 4 3 3 3 +4576 2 "Libraries contain thousands and thousands of books and other materials. Within those books, magazines, and movies holds much knowlege, information in the non-fiction selection, and many entertaining and good morals in the fiction selection of books. If libraries began censoring their books, much information will be disclosed for no one in the public to read. The goverment could have multiple reasons as to why they feel certain books should be taken off the shelf. Some possible reasons could be they are racist, send the wrong message to children, or spread knowlege the @ORGANIZATION1 wants to keep away from the common man. Cencoring books would be a horrible idea and affect everyone. Some books that could easily be considered to be taken off the shelf would be books that are racist, or sugest radical ideas. Everyone in the world is deemed equal and books witch suggest one race, is better than another could offend the readers and for which the @ORGANIZATION1 decides to have it taken off the shelf. Books that suggest radical ideas could also belong in the group of books being taken off the shelf. The @ORGANIZATION1 could be worried that the reader @MONTH1 carry out this radical/terrorist idea and would in return censor them. But censoring these ideas would be denying the public their chance to learn, there are racists everywhere and just because you simply toss the book away, won't suddenly rid the world of racists. Another cause why books or magazines @MONTH1 be removed from the shelves could be that the send the wrong message to children or contain vulgar content. Parents try the best they can to repel the content away from their children, and books they begin to read wether it be on their own or in school could introduce kids of all ages to new content, their parents @MONTH1 not prefer them learning at their age. Parents @MONTH1 have a point, but children can not be protected from everything, they must learn and accept certain ideas as they grow and develop. Parents @MONTH1 be able to censor what their children read in their own home, but to take the books or movies entirely off the shelf would prevent the people, who enjoy or see comedy in these articles, movies, music, or books, to learn aquire knowledge, even if their only purpose of reading is just for laughs. Censoring @MONTH1 also be introduced into libraries because the @ORGANIZATION1 does not want the public learning and developing ideas on what they think the right idea of doing something is that the @ORGANIZATION1 disagrees with. They @MONTH1 think if people start learning and developing opinions from books they've read, they @MONTH1 start to oppose the @ORGANIZATION1, although people are always going to oppose the @ORGANIZATION1, not everyone will like what is going on, and to have a growing society and economy, knowledgable people are needed to invent develop concepts. In terms of race and religion, everyone is considered equal, but in terms of level of @CAPS1, everybody varies from one another. Which could be another reason to censor, so the public stays at the same level as their neighbors, so everyone is truely equal. Doing this would once again stop the modernization of the world, smart people would go unrecognized and the inventions that could have been stirring in their heads could turn to a blank thought, which is the same as everyone else's. In the book @CAPS2 @NUM1, Censorship is the main idea in this book. They censor the books so that everyone is truely equal, and even censor so that peoples looks and qualities all are equal to the others. This is not the way to go in @CAPS3 society. The @ORGANIZATION1 would have full control, and knowledge would not be blossoming in the schools. Even just a little bit of censoring in libraries, whether it be books, magazines, music, or movies, would put a damper in the knowledge and brain power of the society around. Censoing books is an awful idea that should never be put into place. The @ORGANIZATION1 should never be allowed to decide what the public views. It is in everyones own opinion and interest whether they themselves read or listen to the material provided." 4 4 4 4 4 4 +4577 2 "There are many things out in the 'material' world that people take offense to. No matter what, there are always those people who have to be against whatever it is, whether it be a book or a song or a movie. But they do not have any idea what they are doing when they bring up their 'rights'. If they get to say that they are offended by the certain media product, not only do they announce that they have the right to try to have it banned, but they are giving the people who do not find offense in the material to dish out the same. If they can pull something off the shelves that they 'find offense to', then everyone @CAPS4 a right to. Another thing is that they claim to find offense to the song or book or movie, but if it bothers them that bad, they should just not listen/read/watch what @CAPS5 it is that they are feeling offends them. It would be that simple, just switch radio stations, or pick up another book, or watch a different movie. Another thing that the 'offended' people can try is having an open mind. It would make everything far less dramatic. People that say that they have offense to whatever the material @MONTH1 be usually use the phrase '@CAPS1 it's offensive and i don't want my kid to stumble across it.' They say that they have a right to take whatever the 'offensive material' is off the shelf and keep it from the public. They couldn't be more right and stupid at the same time! If they have a right to take a certain thing off the shelf, then @ORGANIZATION1 (the writer of the song/book/movie) can claim that he @CAPS4 been offended by some song/book/movie that the first person likes. Then it's just a free-for-all for everyone one to start taking everything off the shelves, one by one. Everyone @CAPS4 the same rights, and if the first offended person uses them to bring @ORGANIZATION1 down, then @ORGANIZATION1 @CAPS4 the right to do the exact same thing. So the government shouldn't let things be taken off of shelves, because if they take one down, they might as @CAPS1 take everything else down with it. So, if some one finds offense to a song they hear on the radio, and they feel that strongly as to they want it removed from radios and anywhere that plays music, then they need help. When they find that song THAT offensive, then there is only one simple solution: turn the freaking radio to something else! Seriously, if someone finds the song offensive, then why are they going to sit there and listen to the entire song? Or if they find a book offensive. Would I sit and read an entire book if I don't like the content? Umm, no. If some one is that offended by whatever the material is, then they need to just do something else, because it's pretty rediculous to waste more time attempting to ban the song or the book that to just change the radio or find a different book. So if you're going to complain about the song or book being out there, just take your attention to something else, because every song, book, or movie out there @CAPS4 a right to be sold. On a light note, they could just have an open mind so that the song, or the book, or the movie can still be sold. They can try and read through the book to see if there is a reason that the author @CAPS4 written it this way. If they are conflicted by a movie, they should just watch it and test it to see if they really need to have it pulled off the shelf. Or if they are listening to the song, listen to it all the way through, or maybe even twice. The artist who sang the song might have been expressing themselves in a very deep way, and if someone pulls their song off the radio or where @CAPS5 it is played, then someone could be offending them in return. Having an open mind will let the so called 'offended person' see a whole other light being shown on why the 'offensive material' was even created. Then everything can stay ON the shelves! People have opinions, and that is one hundred percent okay. But sometimes people think that their opinions are the only opinions that matter. If some people get offended (or think they get offended) by something, they would try to removed whatever it was from the nations stores. But if they just sit back and think about it, then it would be okay. If they have a right to remove anything from the shelves, so does everyone. If that @CAPS2 @CAPS3 song really, really offends they, they should just change the radio station and forget about it. And if they have open minds as to why the things are still 'out there', then all the songs, and all the books, and all the movies will still be on the shelves for people to buy. I do not approve of removing anything from stores just because one person feels like if they don't like it, then it absolutly @CAPS4 to go. No, they world doesn't just revolve around one person, and it never, @CAPS5 will." 5 5 5 4 4 4 +4578 2 "Controversy in the @CAPS1 @CAPS2 someone walks in to there public @CAPS1 they are overwelmed with books. Even though one person could never read that many books, the @CAPS1 has to have a wide selection, for the people that read different thing. The @CAPS1 should not get rid of books that offened some people. the @CAPS1 is a public place that allows people to read what they want. If someone dose not agree to what another person is reading they don have to be there. Since the @CAPS1 is a public place, and people can not just throw away a book because that is offensive. Just like Katherine Paterson said, 'And then we have no books left on the shelf for any of us.' If everyone would throw away books that were offensive, there would be no books left. This would cause a lot of people to stop reading and learning. The public @CAPS1 is open for anybody to read a book. Keeping this in mind the @CAPS1 has to have books that appeal to everyone. If they would only have one type of book, not many people would want go the the @CAPS1. the @CAPS1 has to offened some people to please others. People who go the @CAPS1 go because it is there choise to go and get a book. If people find the books in the @CAPS1 offensive, they do not have to go. Books that people find offensive are on the shelf for others who want to read them. If someone finds a book offensive they dont have to read it. Librarys should have as many books as they can, so they can appeal to every taste. They should not get rid of books that offened a small group of people. Those people do not have to read books that they find offensive. Librarys are a public place for anybody to read what they want." 4 4 4 3 3 3 +4579 2 "Personally I believe that items that are found offensive should be left on the book shelves. People that find them offensive don't have to read them they can just ignore them and move on with their life. Students @MONTH1 need to use that certain information in a classroom. If libraries take the information out of the library the students will not be able to find the info needed for their project or paper. Students will eventually learn all about these offensive magazines, movies, music, and books someday in their lifetime. If offensive books are taken down where else will they go, they are still going to be offensive somewhere else. Libraries who have offensive books are not trying to offend anyone in anyway, they are on the shelves for the education of the reader or viewer. If movies are that offensive, don't rent them and save yourself and the libraries time. People get offended by all of these readings from a certain library, if the library chooses not to take the books off the shelves then go to a different library. Also the internet will more than likely have all of the information that is just as offensive. Internet is a virtual library, you can search videos, books, magazines, and music. If people think they are getting rid of the offensive books, magazines, etc. They are wrong because the internet will hold that information for as long as it needs to. Library censorship is a pointless act due to the information provided on the internet. Libraries should be able to choose the books and information that they have in their building. As long as those books, music, magazines, movies, etc, are put in the right section. The movies that parents don't want their children to see @MONTH1 be placed in the wrong section of the library. In that point of view you could see why parents are getting upset about inappropriate items on the shelves. The books should be divided so that children have their own section of the library and adults have their own section as well. Most of these offensive items are not placed in libraries because of this problem with people being offended. Movies that are that offensive should probably be in a movie store that states that the movies are offensive and could be inappropriate. Maybe people over react to the situation and don't realize that the movie, book, etc, are not offensive enough to make an argument over it. I personally have never been to a library and saw a book, magazine, movie, song that was offensive to me or my family. What does an offensive book look like? More than likely it has something to do with someone's religion, ethnicity, etc. Items are only offensive to certain people. If you or someone you know that is offended greatly by a book, song, magazine, or movie in a specific library don't go back or tell the person you know as well. In conclusion if a book, movie, etc, is that offensive in a library near by, avoid that library and don't worry about going back. Offensive material could also be learning material" 4 4 4 4 4 4 +4580 2 "Yes, I do think so because everyone has an opinon to say and its something people like to look at or leason to. Now it would be diffeint if it was a childerins book store like if they have music like christin bible songs or desine movies in the store but not to have grown-up stuff. I really do not see the big deal if they are out because everyone likes reading somthing differint. I think as long as your reading whats it matter what it is or as long as your learning something. I do not think u can get stuff out like movies and magazines because people like to read them to much or leason to music. So it shoukld not really matter what or where they go if you ask me" 2 2 2 2 2 2 +4581 2 "@CAPS2, I do believe that book, music, mvies, magazines, etc., should be removed from shelves if they are taken offensive. Poeple should not be putting stuff out there if they are making others feel not happy about what they do. Althought, we might think that putting stuff in papers and on movies, don't hurt people. Well guess what they do @CAPS1 of all, movies that have stuff to deal with sexual relationships. For example, gender marrage, they say that people should not marry the same sex. They make fun of them because they are not like others and they can take that very offensive. Very little people like being with the same sex. By us putting them in book, on movies, or making song to make them feel offensive is not the best way to go. Another one is about special needs, movie or book that have to deal with people putting down others that have special problems. Although, they don't show that thier sad it don't mean that we didn't offened them in a way. Families that have a special needs child, sister, brother, mom or dad don't like it very much when someone outs something out there about their problem that they @MONTH1 have. Also, they will feel really upset and sometimes can get mad for that. Most importantly, books or movies making fun of people that don't have a lot of stuff. It's not their fault that they don't have the money to buy stuff like others. For example, a nice house or nice clothes, most families have problems trying to pay rent and do other bills if only one parent is working. A lot of parents that work are gettin laid off are not even gettin paid for it. Worst of all, a famliy member (like someone who lives in the house) @MONTH1 have to go to the hospital and whe you go to the hopstial you have to pay for the bills. Some families are in and out of the hospital year after year and they don't have the money to pay for new stuff for the house or the people who live in it. In conclusion, @CAPS2. i do believe that they shoukd take certain books, movies, mafazines, ect., off the shelves because they can be taken offensive. We don't know how rude it is to have something out there that makes fun of someone in a way until it's to late. Many people really don't like it when they see something out there thats offensive to them. They don't know how to react about it and they get frustrated" 4 3 4 3 3 3 +4582 2 Books are to be read not taken off beacuse of what they say. That to me is stupid are childern live in world of war and fear everyday what is a damn book gonna change? Nothing there gonna hear the f word and see blood and gore. Would you rarther them see it for the first time in real life and not know what to do. Music is one thing that can bring everybody together. So by are childern not being able to hear some of them lyrics then we are pushing them into being pussys. Maybe there just some real people teelling the truth that you dont want your kid to hear. Movies are something that people love to watch come on we pay @MONEY1 to get onto see them sometimes. Are kids are gonna be better because there parnets didnt want them to see the new horror movie there gonna see in real life one day why not now? Parnets your not doing us a favor by not letting us see the real world YOUR @CAPS1 US @CAPS2 because when we get into that sitituation in real life we arent gonna know what to do then were scewed. 3 3 3 3 2 3 +4583 2 "Nobody should believe that we have the choice to take books off the shelves of a library. America is a free country and we can write whatever we want. Everyone has freedom of speach, your just taking that admendment and putting it into music, books, or a movie. When you are looking for a book and you find one that seems offensive just put it back on the shelf and move on. Everyone have seen a lot of things that are offensive to races and beliefs. You hear jokes that are offensive but that is all that it is a joke and it is not to be taken seriously. I have read a book recently called '@CAPS1's your @CAPS2' it was not what I thought it would be, so I just put it down and picked up a different book and kept on reading. If everybody were able to take books out of a library just because it was offensive would we have any books at all? Movies have a protection against this called ratings. The ratings are from '@CAPS3 to @CAPS4.' If the movie you watch is more towards the @CAPS4 section then it will have more offensive language and violent scenes. That is why there is always a blocked off section at a dvd rental store. That section is only for mature people of the ages @NUM1 or older. If by any chance your kid strays in there and finds somthing not suited for him and you really get fired up just think @CAPS1 let him wonder into that section. @CAPS1 should be watching him at all times, @CAPS1 is responsible for him? I do not agree that reading material or anything in that matter should be taken off of a shelf. Thats like saying if someone did not like how the @CAPS5 of @CAPS6 was worded they could just take it down and throw it away. We would have nothing to read. So the next time you see something that is offensive just put it back and move on" 3 3 3 3 3 3 +4584 2 "Censorship in libraries has gotten to strict making the next generation miss key lessons learned about life. How would you feel if you went to the library and as an adult would only be able to check out childrens books, magazines, and music? Now i know thats a little extreme but in all seriousness what are we without knowledge? Where would we be if there was no books, magazines, or music left? No libraries means no knowledge, no books, no life lessons, no imagination, and above all no excitement. we would de-evolve back into our animal-like state, because in all actuality we humans have only one thing that has given us the power to become so advanced and smart, our brains. There was once a quote by which i live my life by, it went like this 'if knowledge is power then books must be the means of getting that power'. From my own knowledge and views of the world i will give you my argument on censorships and how they effect libraries. Censorship, what do we all think of when we as americans say censorship? I think of bad thing like cuss words,nudity, and battle scenes. The thing about these is they are displayed in different ways such as music. an example of music not being censored would be rap. go ahead get the explicit version of that rap song or sometimes it might already be bad enough. I personnely don't like rap so this opinion is biased, I more like a rock and metal music. people like music and it takes away from our freedom, if you don't like what they are saying just don't listen to it. Another subject of intrest when we talk about censorship issues is magazines. We all at some point have seen or learned of naughty magazines like playboy. Now im all for making sure those type of magazines stay out of school libraries, but public libraries should have their own adult sections were we might not put playboys but stuff like hunting magazines,or hot rod magazines line the adult sections shelves. The last thing that is subjected to rather extreme censorship is books. Lets be honest we all had a favorite book when we were little or as we grew up. One such book that is an absolute classic is 'The @CAPS1 of @ORGANIZATION1' its currently being removed because it has like one or two cuss words in it. I mean really people its a great book but at the first sign of a cuss word everbody starts shouting burn it. Now many of the following generations will never get to read that classic because people took it out of libraries. i feel that people should learn to relax andnot fret over one or two cuss words because that is apparenly all it takes to ruin a great book. So whats my final conclusion? when does our first amendment right to free speech with censorship and too much censorship meet? Apparently in libraries where one can't read @ORGANIZATION1, wood craftmanship, or listen to music that involves cuss words. In my personnel opinion i think that adults should have their own section uncensored, teens should have only censorship on things like nudity, and children well they are just right on this subject no more censorship is needed. So i ask you, the one who grades my essay to just stop and think with an open mind how long do you hide your children or your grandchildren form the real world. In the real world these things are deamed acceptable if they weren't exceptable they wouldn't be out there to begin with. Truly if you decide to take out classics like @PERSON1 we lose not only knowledge and the story we lose our freedom" 4 4 4 4 3 4 +4585 2 "Yes, some materials,such as books, music, movies, magazines, etc., are offensive.Yet they shouldn't be removed from shelves.Reason number one is: @CAPS1 some people find offensive, others don't. Reason number two is:'offensive' material will @CAPS6 be out in the world.And finally, if parents don't want their children reading offensive material, they should only ban their children from reading them and not the rest of the world. In @CAPS2 following essay, I will explain thoroughly my reasons for an opinion as such. '@CAPS1 is one man's trash is another man's treasure.' @CAPS2 quote goes very well with the first reason: @CAPS1 some people find offensive, others don't. People's views about everything could be significantly different. For example, a book about @PERSON1 killing the @CAPS3 could be offensive to someone with @CAPS4 descent, meanwhile,a book filled with cursing could be offensive to a religous person. As you can see,'offensive' is defined differently by different people. Offensive material will @CAPS6 be out in the world. Parents can't shelter their child from these things forever. At one point in their lives, children will learn offensive things and parents won't be able to do anything about that. Children have actives mind that pick up on everything around them. If they learn from these offensive materials, then parents should teach them @CAPS1 is wrong and @CAPS1 is right. Finally, if parents don't want their children reading offensive material, they should only ban their children from reading them and not the rest of the world. @CAPS2 reason ties in perfectly with the first. Parents can't decide @CAPS1 the parents of other children should do. They can only do something about @CAPS1 their children are doing. Therefore, my belief on censorship in libraries is nonexistant for the following reasons. @NUM1.)@CAPS1 some people find offensive, others don't. @NUM2.)Offensive material will @CAPS6 be out in the world. And @NUM3.)If parents don't want their children reading offensive material,they should only ban their own children from reading them and not the rest of the world. Thus, there should be no censorship in libraries" 3 4 3 3 4 3 +4586 2 "Should we censor the materials in libraries? Some people believe that some of the books, magazines, and music in libraries are too vulgar and obscene. This could be a major problem if people are allowed to say what is too obscene to be put in a library. Katherine Paterson makes a great point by saying that if everyone was allowed to take books, magazines, and music that they find inappropriate off the shelves, there would be nothing left for us. Books have been around for centuries. They are passed on, shared, and enjoyed by people all over the world. Books contain important information, stories, and tales of people's past times. Therefore, I do not believe that certain books should be banned from libraries. By taking away books in libraries, you are taking away the author's freedom of speech. Also, technology is rapidly advancing, and sometime in the future, I think libraries will become extinct. With all of the new devices we have @DATE1, people can just get their books online. Magazines are a great tool to advertise and talk about some major topics happening around the world. Magazines are a great thing to read when you want to catch up on news, sports, or just other miscellanious topics. With that said, magazines can also be bad for public libraries due to some of the explicit content. This is a reason on why some people would want to get rid of magazines from libraries, but I don't think they should be banned. By getting rid of magazines, you take away company's freedom of press, which is a major issue. Refering to the previous paragraph, technology is growing, and it is very easy to just go and look at news, sports, and other topics on the @CAPS1. That is why I do not think magazines should be taken out of libraries. My final discussion is music. Music has also been around for many centuries and it has done many things. Music is something everyone can relate to. No matter who you are, you probably have some favorite band, music artist, or genre of music that you prefer. By saying this, I do not think music should be taken out of libraries either. Taking away music is like taking away humans natural culture. We all enjoy it, but have different versions that we enjoy. Therefore, I do not think it would be wise to take away music from libraries. In conclusion, libraries are nothing without all the history, stories, news, and music that is inside of it. Censoring the libraries would not be a good idea and it would most likely upset many people. It is true that with technology that libraries @MONTH1 eventually become extinct. Until that happens, I hope they do not censor their materials." 4 4 4 4 4 4 +4587 2 "Most people have been debating on whether or not to stop giving out books, movies, music, magazines, and so on, if they are disturbing other peoples lives, and offending them to the point where they are getting infuriated, and disturbing the peace. I also think that many people have been complaining about the violence in the community due to several disturbing books, music, and so on. But I would have to say that most people live off of or get entirely influenced by what they read or hear. I think that this accomnomy should get over itself and learn to live their lives. I personally do not think that anybody should be punished for what is being put on the library shelves, stores, like music for instance. I do not think other people who actually enjoy reading and listening to that stuff, if they are happy then so be it then they are happy. I do not think that people who actually enjoy reading, and hearing what is disturbing that Other people should be punished just because somebody else does not like what they are hearing or reading. Why should things that bother other people be removed when they are not hurting anything or anybody. I personally, in my own opinion think that would not be fair. because, in my experience I do not think people should complain. What is in these stores only makes us stronger." 2 3 2 3 3 3 +4588 2 "Most movies, magazines, music, and books are considered offensive to at least one person in this world. These materials often fall victim to censorship and are challenged daily to be banned, especially books. Mothers and fathers do have the right to prohibit such materials, but they do not have the right to ban them from all the world's children. Whatever the reasoning should be censorship is wrong. It restricts the @ORGANIZATION1 of the writer, the @ORGANIZATION1 of the reader, and, as Katherine Paterson well put it, would result in 'no books left on the shelf for any of us.' @CAPS1 to the @ORGANIZATION1 everyone has the freedom of speech and the freedom of press. This does not exempt writers or artist who occasionally, or more than occasionally, include explicit content in their works. In every book there a message the writer is tyring to tell his or her audience. How they go about getting that message across is their own business, and they have all @ORGANIZATION1 to do so in anyway they @MONTH1 wish. People who wish not to see the writer's message have the right not to. But when they fear the message and try to stop anyone else from seeing or hearing it, then they are violating the @ORGANIZATION1 of the writer by telling them they cannot include the offensive material. Most writer's include this material for a reason. For example, swear words, such as the ones argued in @PERSON2, often times show the characters' traits and also improve the setting. During those times, people did call @CAPS2 @CAPS3 by explicit names, even those who were in no way prejudice. That was the way of life for them and the author was simply trying to show that to the reader. By censoring the word from text, people were, in a way, covering up the history of the @CAPS4 @CAPS5. Every person over the age of eighteen has the right to read anything they wish. They are no longer under the commands of their legal gaurdians and in no way are under the command of other children's parents. Parents who prefer their own children not to see or listen to certain materials have the right to censor the materials away from their children. On the other hand, they have no right to tell their neighbors what and what not their children can see. Every parent has different rules and guidelines for their children, and this is their right. They @MONTH1 believe that it is important for their children to be exposed to these certain materials early on in life so that they can learn right from wrong from the very start. It is possible that they even might not care. Whatever the cause @MONTH1 be they have the right to expose their children to anything they see appropriate. For example, @PERSON3 is an author who has been challenged throughout her entire career. Many of her books include the topic of menstration, which many parents found inappropriate for their grade school children to read. Therefore, those parents brought the books to the attention of the school board, who quickly removed the books from its library shelves. Many parents, librarians, and teachers were upset by this and argued that the topic was not at all harmful. In fourth grade girls are required to watch a video on the topic of puberty and in fifth grade many girls begin to go through these changes themselves. So how is it inappropriate for them to read fictional books that include the topic? Many parents believe it is not and even encouraged their children to read the books, but the other parents who found it offensive reuined these parents' children's right to read. Therefore, in the long-run, censorship is wrong. It restrict the @ORGANIZATION1 of the audience and of the writer, which prevents growing experiences for both. If everyone was to ban one book they found offensive, the world would be without any books and become quite dull. No one would be able to read and no one would be able to express themselves freely." 4 4 4 4 3 4 +4589 2 "The library is a very sourceful place but there are just some things that should not be displayed or made veiwable to the public. Some topics or other things found in the library are not suitable for every one and should not be allowed in a public place. First, there should be a censorship on what you can and can not get or look up at a library. What if some one looks up or check out something that should not be seen by others and it ends up in the wrong hands of someone. That person then could end up using the information for the worst. Everything that's in the library is not appropriate for all ages. Next, there is a lot of offensive things you can find in the library. So things should be censored so one one ends up gettin hurt. The librarian or any one whos in there @MONTH1 never know what someone looked up or is planning until after it @MONTH1 happen or a problem is started. Therefore blocks should be put up for things that maybe be harmfull to others. Finally, although people @MONTH1 feel it's no one eleses business what they research or check out, they should think, it is open to the public and anyone could easily see or go back to what they were looking at. Its not fair to be in a public place and get hurt by the offensiveness of some one. People have to think the library is open to children and elderly. In conclusion, there should be a censorship on what you can find in the library. There is hurtful and inappropriate things that should absolutly not be allowed. Most important a library is a place that you should not get offended in by what some one looks up, checks out or even says." 4 4 4 4 3 4 +4590 2 "I say tht they shouldn't take off books that are found affensive and im going to say why I think that.I think that they shouldn't take off those books because thats the way it was written, and if the person that finds that book offensive then just don't read it.Another reason they shouldn't take it off its because a author wrote it but im sure that he didn't think that a person was goin to find it offensive.My third reason they shouldn't take it off the shelf its because the book might be really good and interesting, except for tht one person that thinks its offensive.I just told y'all why I think they shouldn't take the book off the shelf just because one person says so." 2 3 2 3 3 3 +4591 2 "All of the materials in a library shold have to be check out of the library before anyone can take them out of the library. Which the librarian should make sure that anything that goes out of the library should have to be checked out before a student can take the materials out of the library. the topics that are going to be talked about are: why materials have to be checked out of the library, what happens if you do not check out the materials, and what happens if you lose the materials that you check out of the library. Materials that the library has is for everyone to check out if they want to check anything out of the library. So, then the librarian will be able to tell a student if they want a book, music, movie, magazine, ect., the librarian can tell the student if the material is in or is checked out of the library. Then, the student will be able to check out the material or can ask the librarian to hold the material when it comes back in for the student. Then, the whole school can be running smoothly senice the librarian can keep track of the materials that is in the library. If you do not check out the materials that lis in the library nobody will be able to see where the materials are at. Which, if you checked out materials out of the library the librarian can track it down for you. So, if you do not check it out the librarian will not be able to track down any of the material that is in the library. So, then the librarian can not tell a student where the materials are at and then the materials is out of the library and noone can check it out. Then, the librarian has to wait til the person that took the materials out of the library brings the materials back to the library so that it will be able to be check out by the person that wanted it when it was out of the library. If you check something out of the library and you lose it you will have to pay for it. When you lose something from the library, that means that noone will be able to check it out until it eithers gets returned or you have to pay the librarian the money for a new one. Then the next person that wanted it will have to wait even longer to get the lmaterials because you lost the libraries copy of the materials that you check out. Then the librarian will have to make sure that the next person that wanted the materials will be able to get it when ever it came back in the library. Then, the person that lost the material should not be able to check anything out of the library anymore thay can only sit in the library to reas the materials that they either want to read or have to read for a project for a grade for one of their classes. Also, if you do not check the materials out of the library, and you lose it the the librarian will not be able to track down the materials for anyon that wants it so the check it out. These are just some of the many reasons why you have to check out materials from the library. There is alot more reasons you hve to check out materials from the library. So, then the librarian will be able to keep up with all of the materials that is in the library, and any person can check out any material that they either want or need for a class and it does not have to stay in the library when ever you want it" 3 3 3 3 3 3 +4592 2 "If there was a book on a shelf that I found offensive, I would want it removed, but then again I wouldn't. Every one has there own opinions and there own view on things. Mine are different from every one elses'. I mean I @MONTH1 find it offensive, but how is everyone else going to see if it is or not, if you take it off the shelf? Everyone is entitled to their own opinion. What we do, believe in, or think is what makes us ourselves. Just because one person finds a book, music, or some movies offensive, doesn't mean everyone else will. Others might happen to like it even if you don't. Taking something away just because you think it is offensive, is like taking a little part of some one away. It's like the school making kids wear uniforms, it takes our individuality away. We all have to have some way to express ourselves and maybe the thing you find offensive, expresses some one else in some way. There is going to be a lot of things in life that people don't like, but can you really just get rid of it all? It does not work like that. You are not always going to have your way in life, but it's life and there is nothing you can do about it. Just because you don't like something or you find something offensive, doesn't mean you can just remove it or replace it. Life just goes as planned and there will be things that you don't like, but you can't change that. It is life and replacing or removing things won't make things easier. So if I found something offensive, I'd just ignore it and leave it there because is taking it off the shelve really going to help?" 4 4 4 4 4 4 +4593 2 "Yes I believe certain material should be removed from the shleves at a library if they are offensive! because people dont want or like to go to any public library that is open to anyone, let them come in and @CAPS1 some book or etc offensive to that person. Like a child grabbed some bad unapropriate book and his mommy found him reading it so she wasnt to happy and left. t @CAPS1 that could be offensive to anyone particular. Their are certain books, magaizines, etc that dont need to be in the library. Becasue the public doesnt need to @CAPS1 stuff like that in a public library. By the way someone that could think that certain book in offensive could report that certain book or etc if it is offensive to someone that is irregular at that certain public library. So watch what you bring or put in a public library it has to apropriate to where all the publics that walk in to any nice library. Being offensive, is not a good thing because you want to be able to walk in a nice public library and be relaxed not startled by any none reasonable book or magazines or etc that should be there. Music is a big problem with people being offensive about it because theres so many unaproperiate, bad language music around here that they have to watch what they put in the library ecspecially for the little kids, seniors too. Books are material that should be fun or interesting to read for people, not for people to look at or find on he shelves a offensive book or magazine because thats not what the library is for, its for going there relaxing and finding a book or etc to have and be good with, or checked out to use somewhere else" 3 3 3 3 3 3 +4594 2 "Books, Music, Movies, and Magazines have been taken off the shelvs.we are forever more blocking or cesoring these items. reasons why iot is a good idea is because their are children parents and religeous people who are so agains some of the thngs that are brodcasted if you want something uncensored then you can buy or rent an unrated version. children are our future, why would you carrupt a mind so young and innocent? If your child is one second watching @CAPS1 and happy as can be and the next watching people being killd and the @CAPS2 bombs being droped that will forever be threre in his or hers mind. i dont think you would be to happy if your child was piucking up valgure language from the @CAPS3 or @CAPS4. Picture it your @NUM1 year old talking to you and then says an innappropreate word not knowing where it came from you just ignor it then that vacabulary grows into words and sentances much worse turning thins child into a bit of a potty mouth maybe even violent. we dont want our future presidents and authorities to be so violent that they put the woukd in danger just because they got if off the @CAPS3 do we? Parents have the right to watch what they want but also have the authority to put a stop to what they dont want them and their @CAPS11 to view or even hear.More families these days enjoy taking car rrides together and vacations watching @CAPS3 and listening tgo the @CAPS4 as they go one minute they are all singing happy as can be unti a song with a bunch of innopproppreate words come on its not only dissrespectful but embarrasing to listen to your kids sing along to it. parents dont want to listen to that so they turn it off everything is fine until they hear them again singing to their music divices @CAPS2,@CAPS8,@CAPS9, bombs all around the car their is no escape thats when parents should have a say to what their children are not only watching but listening and reading also. Books about @CAPS14 @CAPS13 and @CAPS15 are not something an @NUM2 year old should be reading we dont need them to be a bunch of stoners parents eaither. One minute you think you are reading a book about love and rommance next you read that the character is smoking a joint. People with strong religeouns dont want to be watching @CAPS3 late at night and then be watching on @CAPS11 gut that @CAPS12 is doing @CAPS13 and sleeping with all these girls yes it @MONTH1 be funny to those non believers but to those who have a relligion it is just dissrespectful . Then listening to music hearing about people with no religion them lighting fires to crosses and using valgure language and the lords name in vein.not something they want to hear. When it comes to reading a book the religious have a strong oppinion on what should be read so they usually stick to the @ORGANIZATION1 but whjat happens when their kids go to school to fiind a fake @ORGANIZATION1 with nothing but lies and dirty pictures in it? @CAPS3 shows, Music, Books, and magazines should always be censored it not only gives a good example for everyone but it helps us as a community to stay strong. Not being violent or cursing after everything you say is not going to hurt anyone. Why would you want a future president to be a violent killing machine? the environment we grow up in is how we turn out @CAPS13, @CAPS14, and @CAPS15 being read about or heard is not the way to be" 3 3 3 2 2 2 +4595 2 "I believe that they should leave leave them on the shelves. I think people take stuff like that to serious, if they dont like it I think they should just leave it alone.What some people might find offensive others will find interesting. There is alot of stuff out there that might be a little offensive to some people, but if they dont like it all they have to do is put it up and go on with there life like its no big deal. In the past there has been some movies that make fun of people for the way they act or just something they did in the past. Stuff like that I can understand because that can be personal reasons. There has also been times when I have seen people make a big deal over nothing.Sometimes people say stuff and the person reading it can take it a whole different way.There is still alot of people taking books off the shelf because of someone complains about the language in it or maybe making fun of another race. I think the worst thing today is magazines because they are always judging people about who they are with, what they did @TIME1, or even who has the best body and who has the worse body.I think people should just stop worrying about everybody else so much and just worry about theirself and we wouldnt have so many problems." 3 3 3 3 3 3 +4596 2 "Diffrent books are mean't for diffrent people. Yes, somtimes it matters when certain materials are not supose to be showing in public. But, we need to know whats happening all over the world. Even as we speak there might be a battle going on somewhere or somthing very importent is about to happen in other contrey. We will need this informaion all the time. There's this old saying that I read in a book once, 'You can not juge a man until you claim under his skin and walk around in it'. It took me awhile to understand what they mean't by that. Then, I finely understood what they really mean't. You can't juge someone by their outer looks, you must juge their inner personaltiy.When you look at a book, movie, magazines, etc., you can not juge it until you see it for yourself. Compony people create these things for certain people that enjoy the things they love. Tv shows, newspapers, books, etc. All the things to make them happy.We must enjoy what we have in this life. People always say that the world is going to end. But it wont, for this we will live on in the after life." 3 3 3 3 3 3 +4597 2 "BAD @CAPS1 Do you really want your kids to see bad immages or read bad prompts? I dident think so! you can help by teaching them what is right or wrong good or bad. You need to help them have a clere cnochience so when they come across these obsticalls in life they will know what to do. You could do what my aunt @PERSON1 does. Whenever she goes through the check out ile at a local @CAPS2 @CAPS3 or other stores she turns the magazines that she thinks is innaproperate around. My mom and dad say this is a silent protest, because she is hurting no one else she just simply dosent like it. It makes my dad upset when ever he watches tella vision with us and thier is some thing that they never saw on @CAPS4 like half naked girls on the comershals so he will turn the channel or shut it off. because he dosent want us exposed the bad thngs of the world. My mom is the same way but she wont let us watch @NUM1 movies if i wanted to watch thies i was usually at my friends house. My mom would probably be a little upset. I think books are ok because you dont see alot of picture books you have to read them and imagine the image i their head. In conclusion i hope you would feel the same way i do so next time you go through that check out stop and say to your self do i want little eyes to see this. Then you should turn that maggizne around turn off the @CAPS4 and the music,you should also ead the book so you know what it is about" 3 3 3 3 3 3 +4598 2 "To whom it @MONTH1 concern: As time goes on in this ever-expanding world of ours, it seems that one thing that is constantly being fought and argued is censorship. Censorship allows things in our world that are viewed as 'offensive' to be comprimised. People these days though. must be getting offended much more easily these days, because it seems that media is censored more than it ever has been. I for one, am sick of having the 'veil over the eyes' as it were. Most censorship in this country is run through programs our government has established, censorship shouldn't be up to a organization, but instead to the person viewing it. In other words, why should other people decide what is most pleasant for us to watch? Nobody knows you better than yourself, so why shouldn't you decide? Why should censorship exsist in our media if it doesn't exsist in our everyday lives? There are plenty of things people see that they regret seeing, it's all in how you take it. No matter who it is, people are going to see things they don't want to see, that's just life. Censorship denies our rights as @CAPS1 citizens to have the right for free speech. If you don't like something you're seeing, then look away yourself" 4 3 4 4 3 4 +4599 2 "Should materials, such as books, music, movies, or magazines be removed from the shelves if they are offensive? I don't think so, because it might not be offensive to every body, it would be brakeing the law, and it's not fair to the artist that created them. Just because it's offensive to one person donsn't mean it is offensive to everyone. For example, some people might think the @CAPS1 is offensive, while to others, it's there religion. It would just go to show that one mans garbage, is another mans tresher. It would also be braking the law, because it would not be giving the artist their freedom of speech. It would silense all the great artist out there, trying to be herd. They should be able to write, sing, or film what ever they want. It is their right to do so. That is the resion why they souldn't be removed from the shelves. It wouldn't be fair to the artist that created them, it would be braking the law, and what one person thinks isn't what every one thinks" 3 3 3 3 3 3 +4600 2 "Censorship is method of limiting certain contant that has been deemed inapropriate. This method is widely used today in the modern world. Censorship is used most commonly with our movies, video games, and television. If other forms of entertainent like television and internet utilize such methods shouldn't our libraries.Also if these methods are not made manditory should there be a block on certain tittles that our children could get there hands on. This limiting agent called censorship can be very usefull in our everyday lives. Censorship could allow us to keep track of what our children and teens view. This agent can currently be installed on such products as our televisions, computers, and phones. So if the procautionary measuers are being taken on the following products wouldn't it be appropriate for the actions to also be in our libraries. Shouldn't our libraries be a place for children to waunder through the shelves picking up and reading books at random without the thought of picking up an inaproiate book for their age group. Personally that is what a library should be like to me. Discussing the topic that was touched on before .A block should be manditory for libraries. This block would not abolish the books completly but rather would limit their viewing audience. The books should be cateragized by age group. And with the block certain children, based on age ,would not be able to enter the section and would prevent certain materals from reaching children that are not mature enough. Certain materials should not be view by younger children. That is not only a statement based on opinion but also of fact. The factual experiance comes into play when young children are reading and looking at pictures that were intended for maturer audiences. These tittles heavily influence a childs thoughts and actions. Just the other day a cousin of mine no older than @NUM1 years old was watching two individuals of the opposite sex and began asking questions such as: when are they going to kiss? or why is he not touching her? These questions do not come naturally but only through her viewing of material that she was not ready to view. The origin of these question will probably never be known but there are ways to prevent such topics from being brought up and that is censoring what children read, view or listen to in our libraries" 4 4 4 3 4 3 +4601 2 "Your @CAPS1 @CAPS2 are many things done and said in this world today that people take offense to. It could be something someone said about one's relgion, or taking away @CAPS1 of others. Do you believe that books, music, movies, magazines, and articles should be taken off the shelves at stores just because people find it offensive? I don'@CAPS3 believe it should work that way. @CAPS2 are a variety of different relgions, races, and beliefs in this world, so if we took something off the shelf everytime found it offensive we would have nothing left to sell. When it comes to younger children they are not going to know what to think and believe. When seeing and hearing things, children start to believe it. The media that adults find offensive should not be published and out in the open for children to see and listen to. Even though the kids @MONTH1 not take offense to any of the media, you still have to think about the parents and what they believe is right for their children. Many effects on life are put into the media everyday for everyone to see, and some parents @MONTH1 not find it suitable for their children to be hearing about it. Drugs, alcohol, and curse words have a big effect on children and their lives today. I believe it is our responsibiltyto protect from all harm until they are old enough to fight for themselves, and make their own judgements. Our religion is a big part of your life because it determines what we believe in, and in we think is right or wrong. Your parents teach you the way they want you to act and teach you the difference between what they think is right and wrong. I was taught to always be respectful to others and try my hardest in whatever it is I @MONTH1 do. Some people @MONTH1 have an actor or actress as their role model, so whenever they see that certain person on @CAPS3.V., you tend to think that whatever they do is okay for you to do. Some parents @MONTH1 take offense to a show on the television because they don'@CAPS3 believe that is right for their kid to be watching. While others don'@CAPS3 see a problem with it. So if we cancel that show on @CAPS3.V., you are making one family happy and many others upset. When it comes to the movies, people have their own different ratings for movies, but the state rates them whenever they come out. Now at movie theaters you must be eighteen to see a @CAPS5 rated movie, or you must have a parent with you because you going by yourself and your parents not knowing get upset those of manys. With libraries and movie theaters they have what the state thinks is for adults only in their own little section. My parents believe that if @CAPS2 is a law for something it is @CAPS2 for a reason and we are going to obide them. As with some parents they have their own rules. Such as some parents think it's okay for their children to drink under age as long as they stay home with them and they know what is going on. A few years ago my little cousin was watching a movie with me that was rated @CAPS6. I didn'@CAPS3 think anything of it and just turned they movie on and we watched it. It had a few words in it that his parents didn'@CAPS3 agree to him watching, and he really liked the movie. His favorite quote from the movie was something his parents did not want him hearing at his age. He didn'@CAPS3 know any better and since he thought it was so great, he was walking up to people saying that quote. His mother was not happy and asked where he had heard it from and he told her the movie, and she didn'@CAPS3 think that he needed to be saying that and he got in trouble. I told her it was my fault, I let him watch the movie and didn'@CAPS3 think anything of it because my parents let me watch it when I was his age. It just comes to show that, @CAPS2 are many different things in this world today that not everyone is going to agree on. So if we took something off the shelf because someone took offense to it, we would have nothing left in this world today. We learn about the things we do in life because the state has requirements that have to be passed. What we learn outside of school is up to your parents based on what they believe. So if @CAPS2 is something out @CAPS2 you don'@CAPS3 believe in stay away from it, and let those who do believe in it enjoy learning about it" 3 3 3 3 3 3 +4602 2 "How many of you out there absolutely love to read? Well, im going to be the first to confess that I do not prefer reading. Meanwhile, whether or not I prefer or differ readings of all types, I despise of any negative books. Censoring books is very important in today's lifestyle. One can make an inference by looking at the cover of a book. The cover oftens creates a vivid image and will usually promote a general idea. Let's look at some reasons why I feel that graphic or offensive books should be removed from book shelves. What about the younger children who like to read? Although kids have a wild imaginaion, authors should't fill their heads with too many crazy ideas. First of all, kids now days either grab a book from the shelf and show interest very quickly, or automatically assume it's not for them. Furthermore, when a kid comes across a very offensive book it could hurt there feelings. Books are supposed to provide eductional information or be entertaining. They should not be dirty, nor discouraging towards certain people. More importantly, how many different races are there here in @LOCATION1, or even all around the world? Many different races take interest in new books to learn new ways. When they come across books that are not teaching for all races or are actknowledging bad examples on thier kind, they feel discouraged. Whether it's a movie, magazine, books, or even a song, never should it be offensive towards anyone. When authors, publishers, song writers, or movie producers release these items, they do not think of the surroundings. Thier main concept is to entertain, but sometimes entertainment can be quite bashful. Most importantly, if it contains sexual gestures it should be removed without debate. It's offensive to parents with young children who visit libraries. A public library which is open to all, should have sections for books, movies, cd's or magazines that are too vivid. There's a wide range of books laying around and one @MONTH1 come across one that is strongly offensive. I believe they should have a word in whether or not the book belongs on the shelf or not. I've not experienced it yet, but believe me it could happen anytime in our world today. If i was a parent I wouldn't encourage sexual magazines or books being shown at a public library. Finally, during this debate older or more dirty minded people will counterargue this topic. Who says children should be allowed in the adult sections? Why are the discouraged people reading books that are setting bad examples? Those are some of the questions you will here for those who counter what I've written today. Adults should be allowed there own personal section for adultlike books, movies, or magazines. Kids under age should stick to searching for books in areas or fields that will provide interest for them. In conclusion, those who counterargue could be on the winning side, however I still believe offensive books should be removed from shelves. Book lovers all around the world want enteratinment, but in good ways. The younger children of our time right now need to be influenced the proper way. Furthermore, there is no better way to help improve society than by removing offensive and noninfluential books from libraries. Lets make an inference and say, if we work to remove these offensive books, younger children will become more educated." 4 4 4 4 4 4 +4603 2 "READING OUR BOOKS Our book and movies can be very scary and unessasary, to much violence and disterbence,for young kids scary books and movies will give them @ORGANIZATION1 mares.Books like @ORGANIZATION1 and @CAPS1 are good books for teenage kids, @ORGANIZATION1 teaches them the past and what it used to be like being a parent you need to make shore your kids watch the right shows and movies and they also need to watch the important movies to. Hitler treated people so bad he killed so many people I think its a good lesson for kids to watch movies about him and read the books.Also I think @CAPS1 is a good book because girl and guys should both no forceing something on someone is wrong, its not right at all. Young kids should never have to go through that she called for help but noone could here her. she was physically and mentally abused,noone would listin to her it was wrong .She never spoke up but you could see she was in pain just by the way she looked and her quietness.Movies like these should teach kids to never mistreat another person. Parents stay on your kids watch what they read and you should always be cautious about what your kids are doing give them book that are going to teach them something" 3 3 3 2 2 2 +4604 2 "What happened to everyone having the right to have freedom of knoledge? I do not believe that certain materials should be removed only for the reason that someone finds it 'offensive' or 'inappropriate'. Our youth have the right to access these materials. Kids should have that right because it allows more access to knoledge, it provides more realistic details about life, and keeps them from being shut out from the world around them. We cannot deprive children of that. First of all, all children and students at schools all over should have access to more knoledge. If certain materials are censored and taken away, they cannot access that type of learning. What if a student wants to learn more about how goverment and politics work by reading an an article. But then, the article is taken away because of one small comment in it. We cannot take away our aspiration to learn more about the world. Secondly, it can give a more realistic image of a person, place, thing, or event. Explicit content can give children more details about how things really are in life. If that is taken away, they might have a different understanding of how things really are and have different expectations of things. This might have an emotional or psycalogical impact on them once they see the real world. They should be well informed of what life is like in further detail to avoid confusion once they get to that point. Finally, they could be shut out from the world if everything is kept from them because of censorship. Being kept from that kind of knoledge can be an emotional strain. A friend of mine had parents that kept her from many things in the world around her, blinding her from what she should have known. As she got older, things became harder and harder for her. And now, she is affraid of many things out in the real world. This is all because her parents had used cencorship to keep her from knowing what was important. Our students should always have access to knoledge, details about life, and not kept from knowing enough to have an undertanding of things in our modern world. We cannot allow censorship to make such irrational descisions about what we do and do not have access to. And if it has such a negative impact on society and our youth, why isn't it censored" 4 4 4 4 4 4 +4605 2 "Hello I am kristin, I am here to tell you why we should take some magazines out of our public libraries. Now I dont know if you have heard about @CAPS1 the magazine or @CAPS2 magazine. But I have and I also use to read them. In some of thouse issues are sex tips. Now if I was a mother and my child ran up to me beging me to let them cheek that thing out I would look at them and say no. They dont need to undestand sex untill they are in there teens or atleast thirteen or fourteen. A child shouldnt be able to even go near that area they should only be able to go near the children's section. Some parents think like me and agree with the fact that a child shouldn't learn about sex. But others are like why not they are going to know about it in @CAPS3 @CAPS4 and when they are married also. There are also some other things that need out of a librarie. Some music might not be the best choice for a young child. Like for example rap music. It has allot of cussing in it and talking about sex. Some of the things said in a rap song are shorty let me rind you like a huricain. Thats just like saying hey chick lets do it for the heck of it. Thats not what I want my kid to listen to. I want my child to listen to stuff that says hey lets go outside and camp or duck duck gusse. Some movies are okay to watch with your kids as long as its not over @NUM1. But if it is they can't watch it. I'll give you another example my little neice is probubly around the age of ten or so. She watche's @CAPS5 @CAPS6 but only with her parents inthe same room as her. She can not watch it by herself or she will get grounded. This is why some of the stuff should be taken out of our public Libraries" 3 3 3 3 3 3 +4606 2 "I believe that some materials we have in our shelf belongs to basically anybody in the world. I also think that the materials on that shelf is allowed to be removed as long as those materials get put back in that spot no matter what. My experiance with books are not really that great but i do like to read at times when i have the spare time to read. When i get a book i look at the book and i observe it so that way when i take it out of the library i know i wanted to read that book and observe the great thing about the book.when i read the book im not a very fast reader but when im reading i like to know how this book is gunna end and how it begans. If i was to pick a magazine from the library i wouldn't take it out of the library cause magazines are expensive to get at times and also hard to replace if it was ever needed to be replaced. But if i was to get one i would look at the important stuff on what it is and how to get it and all that kind of stuff. their are times when i think movies shouldn't able the library cause people could take ideas off of movies and/or steal them. movies in libraries would be expensive to pay if it was tooken from the library. if i was to watch a movie i would enjoy it as much as possible cause once that day comes to turn it in their is no chance of watching it after i turn it in. Music is passion to most people. most people would just go out and buy some cd's or something to listen to and their are music i would listen to so that i get an idea on what to play if i ever wanted to become an musician or something like that. their are times when i would write down the lyrics to a song so that way i can understand what the singer is singing about, either that or listen to the song over and over again. My point is if something comes off the shelf is should return to its rightful spot or otherwise their will be consequences and people will not be trusted much longer" 3 3 3 3 3 3 +4607 2 "Do yo think censorship is a good thing? Do you think libraries should take more responsability on what they offer to people? Many people think they should. But I disagree, if they dont want to learn about that topic than don't read the book. Public libraries are a great help for the community. They are reallly helpful for children who dont have certain materials at home. Libraries do think about what information children view. That is why there are restricted areas for children of certain age. Also its not always about what the library displays, but also about the parents who let their kids read things they are not supposed to read. If to some people some information is offensive, to others it might not. People will always have different points of view. This materials cannot be removed, they might be important in some points of our lifes. All information is helpful in some way. The inmense ammount of knowledge our libraries have should not be taken away just because someone want to" 3 3 3 3 4 3 +4608 2 "Librarys are filled with hundreds of materials that many @CAPS4 like and dislike. Books on @PERSON1 and @CAPS1, @CAPS2. Those books are @CAPS3 there to offend you they're there to educate you on the subject. Censorship should be only for the youth as an adult you are open to everything. You make your own desicons and live by them. If you feel like a book, a song, a movie, is offensive, then stop reading, listening, or watching. @CAPS3 everyone gets offended. I believe that no citizen has the right to remove anything from a library because of the @NUM1- @CAPS3 every one is @NUM2- @CAPS4 have diffrent @CAPS2 and outlooks on @NUM3- @CAPS5 the @CAPS6. I conclude this by saying that censorship is enforced, but shouldnt be to a great extent, @CAPS7 us do what we do, and learn what we learn. In school were forsed to learn what we learn, i believe @CAPS5 right to have out side knowledge, but only way that is that we get it from data bases such as computers, books, music, art, etc" 3 3 3 3 3 3 +4609 2 "Libraries are places of learning. Books, magazines, movies, and all types of media are placed there for the same specific purpose: to learn and explore. When we visit libraries, we expect to find the information that we came there looking for. Whether the topic is something as simple as wanting to learn about a type of flower or researching the infamous 'In @CAPS1 @CAPS2', we want the truth and information in its rawest form. Materials should never be denied from the library. It always has some kind of value. Whether it be for cultural,spiritual, entertainment, or whatever kind of purpose, books can serve as a purpose for information and exploration into a new world. Books that are viewed as 'censored', are only being viewed from one standpoint. Another person might find this book exactly what they are looking for. If someone sees a book as 'offensive' they must step into another person's shoes and see where they are coming from; where this type of information @MONTH1 be helpful to someone else. Touchy issues such as the @CAPS3 or books to do with religion @MONTH1 be considered censored, but that's only concerning one group of people. What about the other percentage? Now, don't get me wrong. I don't think that racy or graphic movies or magazines should be allowed into the library, but any type of material containing legitiment cultural, educational, entertaining, and others of the sort, purposes should ever be denied from the library. From working at a local library, I know that when people sign up to be a member of the library they sign an agreement that they know what kind of materials they can check out. So forth for agreeing with what they're allowing to let their children check out. If parents and guardians think that libraries are pushing censored content on their children, they should read the fine print! They are allowing their children to be exposed to this. And all 'this' is, is information and entertainment in the raw. Libraries are created to allow an open access to information for anyone. These materials should include information on any topic the library can get in their possession. None should be denied. People rely on libraries as a source of knowledge, and we need to work to keep that source ever growing" 4 4 4 4 4 4 +4610 2 "The problem in this situation is that, some people feel like some things shouldn't be in the library. I don't believe that some things that are on the library shelfs should be taken off. I think that because everyone has a different kinda of 'offensive' for their families. One family might be okay with their child watching certain movie, listening to different kinds of usic, and reading differnt genre's of books. If you took them off then people wouldn't be able to express things the way they want to. PLus the library would lose service because people would being to realize that some particular library(s) have restrictions on stuff that they have on their shelfs, so they wouldn't want to go there if they're going to be let down on something that their looking for" 2 2 2 3 3 3 +4611 2 "What if one day you took a trip to the library, and you came across a book that was offensive? Would you ask for it to be taken off the shelf or just ignore it? Every year tons of @CAPS1 visit libraries in search of a good book, threw act of observations and personal appeal. Everyone has a different choose in the types of books they'd like to read, with that comes offensive and non-offensive material. Being a teen i've had some experience visiting the library where things come across as offensive to me more easily than others but like many i choose to ignore it. Reasons for ignoring it are rather simple, everyone has different takes on things in which they've gathered since birth as we'll as personal life experiences. Because, everyone has different life experiences comes different views on what offends them or not. Personal experiences i've had in the library are from race seeing books that relate to the days of slavery @MONTH1 be offensive to me. But, a book on the black panther organization maybe offensive to someone else. So, does that mean it should be taken down off the shelf because it is offensive to both people? Books have diffent tones weither its on life, politics, or worldly issues that make different people feel different ways. I've observed plenty of times where someone feels uplifted from reading a book. Where someone else reads the same thing and feels terrible. Take a magazine for instance, one reader could look like that beautiful women in that magazine and feel great about themselves. While maybe an overweight reader could read the same magazine and feel like there not beautiful or self worthy as the women in the magazine. That overweight women could feel offended, while the other women feels amazing, because of that simple reason it shouldn't be taken off the shelves due to different views of what offends them and what doesn't. Everyone reads books due to there liking and what relates to them. If a book, magazine, or movie comes across as offensive then that reader probably won't pick it up to find out more about it. When i come across material in a library that is offensive to me i won't read it. Although i have picked up books that didn't come across as offensive, but after reading the material come to find out it was offensive. In response i simply returned the book and chose another one. If i walked into a library and saw a book that was offensive to me i wouldn't ask for it to be taken off the shelf i would simply ignore it. Everyone has different views on what offense them so there's not much you can do except just ignore it. If the case was that if a book were to offend someone and it was taken out of a library due to just that there would be no real need for a library" 3 4 3 3 4 3 +4612 2 "In the book '@CAPS1 @NUM1', books are outlawed. In such a society, owning a book would result in recieving a punishment. Without books, @CAPS2 people turned to electronics for entertainment. The society as a whole had lost @CAPS2 human emotions and became submissive to the government. @CAPS4 led to injustices that the government inflicted upon its people because it didn't have any opposition. Katherine Paterson suggests that if books begin to be thrown out, there will be 'no books left on the shelf for any of us.' @CAPS2 people argue that certain media should be removed from libraries because they find it offensive. However, if every piece of media that was requested to be removed was taken out, @CAPS2 important works would be thrown away. A recent debate has arisen over @PERSON1's 'The @CAPS3 of @ORGANIZATION1.' @CAPS4 book is set in the @LOCATION3 during the time of slavery. @ORGANIZATION1 @PERSON4 befriends a black man, @PERSON6, and shares @CAPS2 experiences with him along the @LOCATION1. @PERSON1 decided to write his book using the true diction of the people who lived in the @LOCATION3 during @CAPS4 time period. He was the first author to do @CAPS4. Because he wrote it in @CAPS4 way, the book contains the n-word multiple times. @CAPS4 word is not acceptable today, and therefore @CAPS2 people take offense to his work. However, @CAPS4 book plays a major role in the @CAPS5 cannon. @PERSON1's work was written in a new and breakthrough method. If someone were to remove @CAPS4 work off of the shelves of libraries, he would remove one of the most important pieces of @CAPS5 literature. '@ORGANIZATION2' by @PERSON3 is a book that explores the life of a convict in prison. During his time at @LOCATION2, he discovers that he is a homosexual. He falls in love with a man named @PERSON5 and begins to have sexual relationships with @CAPS2 of the men in his cell. These relationships are described in detail. If one were to read the surface of the book, he would find a crude description of a convict's experience in prison. However, @CAPS4 is not the case. @PERSON3 struggled with the concept of being bisexual throughout his life. He also had problems with his parents and brother. In '@PERSON2', he wrote about his own feelings through his characters. @CAPS4 story is not about sex, but about feelings of entrapment and the relationships one has with other people. If @CAPS4 book were to be removed from libraries, @CAPS2 people would miss a story that they might connect with. Katherine Paterson brings up an interesting question. What would happen if everyone could remove the books they dislike? The answer would be a society that is unable to share ideas, concerns, and experiences. Media helps to enlighten, persuade, and educate people about important issues. While some works @MONTH1 have offensive language, they also have a deeper meaning." 5 4 5 4 4 4 +4613 2 "To the newspaper edits,Should books, music, movies, magzines, and other reading materials, be removed if the materials are view to be offensive? I do not think that is a good idea. Reasons why is that just like what @PERSON1 an Author (in the last sentence) said if we remove books from shelfs there will be 'no more books for any of us to read'. That is true because I am sure there are lotts of books that @MONTH1 be offensive to people but maybe the readers who get offensive do not understand the materials that they read. For example the topic of liking the same gender has become a problem, maybe the reader who gets offensived about those types of topics just do not understand it or @MONTH1 not get it. An other reason why could be because we are in america, and the last time I checked we have the free will to write and talk about what we want to talk or write about. Its fair to say that because well, it is true we has people of the @CAPS1 @CAPS2 just have the 'right' to say what they want to say or what is on their mind. And just because the topic of the reading material offensives them does not mean you can take away the writers material. Doing that is like putting duck tape on the writers mouth. If the reader has the right to say what in on your mind then what is the maining of being free to write what you wish to write. If you can see where I am coming from it takes a lott not to talk to a teacher or someone in a highter postition from the reader, about something you do not understand and they tell you 'you can not ask me that' or 'do not say a thing to me' it is the same if you remove the book from the writer. Other reasons why to say no to removing the reading material could be because has humans we always are willing to learn something new, by @CAPS3. When a person reads they always learn something new. It could be a new event, a place unknown, grammer, the diffrent styles of writing, or know more about the topic. @CAPS3 in books, music, movies, and magazines is a good way to learn new things it is fun and what is better then @CAPS3 something fun? can not think of anything? well it is because @CAPS3 has a big role in our lives. Another reason why not to remove the reading materials is because it @MONTH1 make other reads feel like they are not alone. Like a true story about a break up, of a family or a relationship. Or it could be a story base on something that happening to the writer like about a death of a loved @CAPS5 and how to deal with it. Just picture it two @CAPS4 girls, @CAPS5 is mad at herself and at the world and hates a tape about angles. While the other @CAPS4 girl just lost her grandmother and listening to the tape about angles makes her feel together or whole, knowing that her loved @CAPS5 is in a good place. Now think about it the second girl would start to be like the first girl sad, alone, or leaved out. When you take away a material like a small tape from the librarie's shelf you take away a feeling with it not only from the writer but from the reader's too. Finally the last reason why not to remove the materials from the shelfs is because if you remove the material from the shelf it is likly that the topic is still there. It could be on the radio, on the internet, on the @ORGANIZATION1 and what can you do delete all of that? it is not reality. And if that could even happening which is unlikly that it would people can still talk. And there is nothing that can stop people from talking. 'you can lock a bird in a cage but it still wants to fly away' or 'you can tell a cat or a dog not to run away but when you turn away it is gone' this are explambles of what I am trying to say, you can try to remove books, music, magazines, but the topic you dont like is still out there. I understand that reading some materials @MONTH1 offend you but its better to just turn your head around and move on.The reader @MONTH1 not like the topic but others would and thats always good to think about. And maybe the problem is that the reader does not get the topic then maybe you should read it to learn from it, and to give it a chance you @MONTH1 end up likeing it or understanding it better. Books, music, movies, magazines there is a reason why they are out there and it could teach you something new so why not learn it." 3 4 3 3 3 3 +4614 2 "Offensive articles and or movies and magazines etc should not be pulled from shelves. If individuals choose to read and/or watch the material that is their personal choice @CAPS1 I think there should be an age limit for the material. If individuals find the material offensive they should turn their back and not read or watch the programs. If the items are in a public library they should be kept in a separate area for those who wish to view them. They should not be kept in the open for small children or for people who do not wish to see them. Historic material such as diaries and accounts of events should be held at federal libraries. Having these documents in a public library could interest small children in reading things that are inappropriate for them. Certain items such as magazines, and newspapers and books, some of these items are held at a public level. Governement affiliated documents should be held at a federal library such as parts of history and important documents. High profile documents such as the constitution should be held in high security areas. In conclusion people who wish to view certain material should be able to do so as I had previously stated. They should not be out in the open for small children. It should be held in a separate area If people do not wish to view this material they simply do not go in that area. Having an age limit in place for this material is key so that small children do not view it and get the wrong message. Having certain doements in public and certain documents in federal libraries is a factor. Certain historical doeuments and other items that are affiliated with the government should be held at a federal level as well as important documents related to the country. These documents should be high profile secure areas" 3 3 3 4 3 4 +4615 2 "Communities have many different types of people that live in them. Certain groups of people find some things offensive while others find them totally nomal. Some of these things cause conflict. A library, for example, is one place you @MONTH1 find some of these conflicts. Most libraries are open to the public. Therefore, many different groups of people will be sharing the material in the library such as books, movies, magazines, and music. Having many different kinds of people sharing this material, the libraries must try to have material to please everyone. This is where the conflict begins. While trying to please everyone, some people @MONTH1 find some of the material offensive. Now for the big question: Should material some find offensive be removed from the shelves all together? The answer to this big question is no. Libraries must have many different kinds of materials in them to please everyone in the community. People are different and believe in different things. Just because one person finds some type of material offensive doesn't mean it is offensive to everyone. For example, things such as religion. Someone @MONTH1 find a book on a type of religion and find it very offensive, but others @MONTH1 strongly believe in that reigion. Just because one person takes it offensively, doesn't mean those who don't should have it taken away from them. Libraries are for all kinds of people. Just because one person finds the material offensive, doesn't mean it should be taken away from everyone else. If libraries took any material that anyone found offensive in any way off the shelves, there would be no material left. People believe in different things. That is the way it always has been and more than likely, the way it will always be" 3 4 3 4 4 4 +4616 2 "I thnk the censorship in libraries @CAPS1 quite abominomal. I think there should be no censorship, it @CAPS1 for the parents to decide what children can an cannot watch. I think if something @CAPS1 found offensive, then don't watch it, it's as simple as that. If you don't want your children to watch anything offensive or rude, then don't let them. What I think offensive, @CAPS1 when something @CAPS1 removed off shelves. I think kids, though not yung kids, perhaps @NUM1 and up, should be able to watch and listen to what they want. I think certain things that people find offensive, are only offensive to those kind of people. It @MONTH1 not be offensive to someone else, so don't take that particular movie, or song out of libraries.A good example of this would be the book, To @CAPS2 A @CAPS4. It has been banned and then unbanned from many school libraries, because of its vulgar words and references to rape. i think that @CAPS1 unfair because , wether we like it or not, children @NUM1 and over will most definatly hear rude and offensive things anyways. I think books, or movies, or music, that have curse words, @CAPS1 a part of life, because most adults curse. And taking those things away from a library @CAPS1 taking it away from adults as well as kids. It @CAPS1 for the parents to decide when their kids hear these things, if at any time. I also believe that using ' offensive' remarks, @CAPS1 just another part of our history. Take To @CAPS2 A @CAPS4 for instance, back in that time, it was common for black people to talk slang, and common for men to curse when mad. That @CAPS1 just how people are and were. Taking those things off the shelves, will not protect adolescents from hearing them. I think they have rights to hear it if they want, and there parents have rights enough to let them. I think songs that have words bleeped out over the radio @CAPS1 pointless because you teenager will know what they say anyway. I think having books banned @CAPS1 a not wise thing to do, because it just makes kids want to hear the word more than usual. Basically we have rights to hear and read those things. Taking away the things we have rights to, @CAPS1 taking away our freedom and free will. If parents don't want to have their children read or hear those things, then they need to supervise what they read or listen to. It doesnt't make snese to single out a particular book, or song, that @CAPS1 just like singling out all songs and books" 4 4 4 4 3 4 +4617 2 "Everyone has found something offensive throughout their life. However, many people find different things offensive than others. There are many different topics that people are offended of whether it is race, religion,gender,etc. If there is a book that you find offensive in a public library I do not think it should be removed. It is like removing something just because one person does not like it. That would not be fair to everyone else that goes to that library. It @MONTH1 be offensive to you but to another person it @MONTH1 not be. There are many reasons that book could be in the library. It could help someone write a paper, to learn about a subject, or do some research on a topic. If all the books, music, magazines,movies or any other item in a library was to be removed if one person found it offensive then there would hardly be any books at all left in the library. I think all books should be kept in the library even if one person finds its offensive. It could be offensive to them but not to someone else. If one person finds a book offensive and another person doesn't then it is not fair to the one that isn't offened to not be able to check it out. If the concern is if children check it out what they might be learning from it then that would be the parents fault for not supervising what their children are checking out. The child @MONTH1 learn something new from the book. Even if it is offensive you could still learn something from the book, movie,magazine, music, etc. If you still read the book it could help you change your mind on the topic. It @MONTH1 help other people change their mind by bringing new opinions about the topic to their mind that they have never thought of. One condition on why a book,movie,magazine,music,etc would be removed would be if everyone agreed on it. If everyone that came to that library was offended by it then it @MONTH1 be in the library's best interest to get rid of that book. The main idea here is that all books that are in the library should stay in the library. The author wrote it for a reason and it should be open to those who want to read it. If one person does not like it then they should simply not check the item out. If that was what happened everytime someone found something offensive in a library there would be hardly anything to check out. Even if it is offensive to you it could come in handy for another person" 4 4 4 4 4 4 +4618 2 "To @CAPS1 @ORGANIZATION1, my name is @CAPS2 I am from @ORGANIZATION2. I do agree that books, music, movies, and magazines should be removed from the shelves. If they are not something that the kids should learn about then why put them on the shelves. Many of the books that children, teens, and adults read is a cause of a lot of violance and threating.That's a major cause these days and we want a clam a peaceful world. Many of times we see teens to childern get into fights or have bad mouth to others. It's not a good thing to see and its mostly because they are either watching a @CAPS3 show about negtive things or reading a book or just trying to act cool. If we could put more important learning books, movies, and ect.. there would be less aggression in the world. Having a more positive day and going out and saying I read @ORGANIZATION1 wonderful book that taught me something new in life would be the best thing to hear. Teaching something that a kid could remember or is helpful in the long run is the greatest thing. Knowing that they are doing anything educational is just a great feeling. Now when do you see kids actually doing what they are supposed to. You really dont cause they are too busy wanting to find trouble to get into. That's really not good for them they should always learn about the good things to help them in life. It's a tough world out there for these kids and they should be taught the best way that they can" 3 3 3 3 3 3 +4619 2 "Materials, such as books, music, magazines, etc., should be removed from the shelves if they are found offensive! It's a public library. Not many people would like to find something that seems to hurt or harm them in any way. Libraries are for people to come in and should be expected to enjoy something, whether it be a book, movie or magazine. When people come in looking for some good information about something, they look forward to finding good tips, and not being let down. Example, with something possibly about someone being racist. That's dissapointment to some. Noone should have to walk in and find something that offenses them. It's not fair. Now, to parents with children. Would you like for your child going into a library that is allowed to look wherever their little heart desires, and they come upon porn or just anything that would be a bad influence on them? I highly doubt it. Unless, you just don't care about what your kid reads these days, but to the ones who want their child having a good education, well, you understand my statement. It's just not fair to the ones who go to a library expected to be satisfied, but instead are let down. It does them no good, and it could make your community look bad. Libraries are to help people with information, fun facts, and all around good resources. So, please put the bad books, music, magazines, etc. away!" 3 3 3 4 4 4 +4620 2 "I beleive censorship is a good thing; to an extent. I think that censorship deals with an age group and the permission of the parent(s) or guardian(s). If a consumer is the age of twelve and under; then the consumer should buy the censored books and etc., but, if you are thirteen and above you should be able to buy product uncensored. Some people do not like censored products because they feel it takes away from that particular thing. Music, for example, alot of people get angry when the song lyrics on a @CAPS1 are censored. It does not allow the people to get the full effect of the music and the 'message' that the artist or band is sending. With books; people get upset because they cannot get the full aspect of the book. Censoring a book is like taking away part of a masterpiece. Some books should be censored like alot of romance novels; those get pretty graphic and go into alot of detail with sexual themes and content. I do not think those books should be on the shelves. In magazines; it depends on the type of magazine the consumer is reading. If a person is reading a politcal magazine; those magazines do not put all of the true facts and details into them for certain reasons. If a person is reading a hunting or fishing magazine; then they can put in all the facts on the guns, calls, lures, and stories they want and do not have to censor them. Movies, on the other hand, are censored on certain channels. If you are watching a movie on a @CAPS2 network like @ORGANIZATION2 or @CAPS3; those channels censor movies. If you watch movies on @ORGANIZATION1 or @CAPS4 they do not censor the movies because those are movie channels only. That is also why movies have ratings. R is for restricted to people under seventeen (without an adult present) , @NUM1 is for people of the ages sixteen and under without an adult. and @CAPS5 and @CAPS6 are fine for any age group. All in all; censorship depends on what age group the consumer is in really. If you are still in elementary school you probably should not be able to buy uncensored products; if you are thirteen to about fifteen, you should be able to buy the product with permission from an adult, and if you are sixteen and older you should be able to buy the products uncensored with out an adult present because you know you can handle the 'offensive' matierial" 4 4 4 4 4 4 +4621 2 "Books, music and movies are all important, specially to kids. If we decide to take one book off of the shelf, then so will everyone else and the book shelf will be almost empty. The same idea for movies, magazines, music, ect. Even though, some parents do not accept it for their young children to read or watch uncensored materials from the library, it is the parents' role to supervise their children and choose for them and teach them what is right and what is wrong to read or watch. Libraries usually require @CAPS1 cards. These @CAPS1 cards allow the person to have access to adults' materials depending on the kind of card the person has. Since it is the parents' decision to decide the materials their children have access to, they shouldn't blame anyone if their chilren have taken something they don't like off of the shelf. Libraries have done everything that needed to be done to have complete safety for the society. If we try to remove every single book, movie, song, or magazine that contain an offensive thing, we would have to remove almost everything. People have different cultures and beliefs. They might think some things are offensive while other take it as a normal thing. In the current society, a lot of people are more attratced to movies or music that contain some unappropriate materials because these materials have recently taken over in the media. We can't stop publishing them but we can censor them. There are different kinds of channels that view these materials. Internet, @ORGANIZATION1, and libraries can all be under parents' supervision. Thus, parents can not blame anyone other than themselves, if their children read or saw unacceptable materials. Libraries should stay the way the are currently and keep their way of censorship without any change. Parents need to have full supervision to their children. Libraries enough restrictions and rules on their books and movies based on the persons age" 4 4 4 3 4 3 +4622 2 "I think there should be censorship in libraries for those who dont like, or are not comfortable with what is on the shelf. Someone shouldn't have a problem with goin or taking their children to the library. A public library is visited by children of all age's, size's, and races. If i took my child or children to a public library i dont want to worry about wether or not my child reads or views something they shouldn't or dont like" 2 2 2 2 2 2 +4623 2 "In my life time I have been to many libraries. I also seen many diffrent catagories of books suck as comedy, fiction, non-fiction, drama, and etc. As we all know there are many topics out thier that is not suitable for minors or suitable for many other ages. Movies in this time and age reveal to much for you eyes. For example in cartoons their are sexual content such as kissing .Some parents don't want their child expose to the kind of activity yet. Movies somtimes put false beliefs in peoples mind about the way things are, going to be,or the why you sould see it.Their are also some good movies place in libraries such ass docomentries, history , biography, and etc. Thats gives you good insite on how things was and hoe things are now. Another topic is magazines. Its strange things going on in the world that @CAPS1 sould be aware of the why we put them in magazines but children have easy access to them in libraries. Picture that magzines have are images that sould be places in some magazines. As there are bad things there are also good that come from magazine. Magazines are in some ways just as useful as books. They carry very helpful information. Music is aslo a big topic thats placed in libraries. Some of the lauguage thats is place on cd tracks are good BUT theirs alot of bad material that on them also. So many people out the known as @CAPS2 say some very harsh and profaine words that many and children sould just not want to hear. Like I said before as their is bad thier is much good. We have gospel , jazz, @CAPS3&@CAPS4, and etc that many people enjoy listing to. In conclusion thier are many things good that belongs in libraries but also many bad. Libraries in my opinion sould take more caution on what people have access to. Very easy a young child (that can read) can pick up a adult book go sit in a corner read and be expose to most things parents are expose to. So in my opinion yes certin things should be removed from the shelves if the are found offensive." 4 4 4 3 4 3 +4624 2 "Censorship in libraries is a very controversial topic that has conflicting views. One side, in favor of censorship, believes that some literary material contained within a library could be offensive to some, and that it should be removed or censored. The other side, in favor of free speech, believes that all literary material in a library should be kept, whether it is seen as offensive or not. Of these two sides of such a controversial issue, it is evident that censorship should not be instilled within libraries, because of the right to free speech, the true meanings and expressions must be upheld, and it would take the oppurtunity to read such a work truly from an interested reader. The first reason why the censorship of literary materials within a library is an unjust endeavor is because of the right to free speech. This right belongs to all citizens of @LOCATION1, and shouldn't be taken away because one person @MONTH1 think something is offensive. I have observed that many people will often attempt to steal this right from people, and this instillation of censorship will do just that to the authors. This is the first reason why the censorship of literary materials within a library is an unjust endeavor. The next reason why the censorship of literary materials within a library is an unjust endeavor is because this censorship @MONTH1 dull down the true meanings and expressive themes that literary works are meant to express. An example of a story that would suffer from censorship is the famous 'The @CAPS1 of @ORGANIZATION1.' Such a novel, though containing offensive language at times, would not read the same if such language was omitted and removed. Instead, @PERSON1's expressions within the story would be dulled down immensely and be nearly silenced. This is the next reason why the censorship of literary materials within a library is an unjust endeavor. The last reason why the censorship of literary materials within a library is an unjust endeavor is because it removes the availability of the book from an interested reader. Many times I have seen people blatantly have a tantrum over an offensive literary work. I have been offended by things that I have read before, and instead of demanding its removal and crying for a less offensive substitute, I simply either stopped reading the work or read through it anyways. A person must know that the use of offensive language within literary works rarely is intended to attack the reader, but rather to strongly get a point across. If a person finds the material too offensive to read, then they should simply stop and find a more suitable work. By remaining calm and passive about these things, it keeps the literary work on the shelves in its true form for other people who wish to read it.This is the last reason why the censorship of literary materials within a library is an unjust endeavor. It is clearly evident that the removal or censorship of literary works in a library is a bad idea as a whole. The decision to censor literary works would be bad because it would strip the author's right to free speech, it would dull down the author's true meanings and expressions, and it would remove the oppurtunity to read such a work from an interested person. The removal or censorship of literary works would be a terrible decision that all would regret in the years to come. This is why the removal or censorship of literary works in a library is an unjust endeavor." 4 5 4 4 4 4 +4625 2 "Dear @PERSON1 news paper editor. Pulling a book, cd, dvd/vcr tape, magazine, etc.,because of whether or not they are offensive or obscene is a panzy move from the people who think the world must be perfect when in reality it is so far from perfect that it is disgusting,and yet the sad truth is the fact that only a small percentage of people on the face of the earth have come to accept this truth. If I have not conviced you other wise please keep reading. I believe that if the world can not handle what is on the shelf at the public library they should just leave it alone, and stay in there comfort zone of reading seletions. If they are offended they can go to read some where else. I understand that people might have been there first. If that is the case well then nicely ask the person/persons offending you to move some where else. The world is not a perfect place by no means. The world does have it's positives for instance the @CAPS1 nations, and north atlantic treaty organization (@CAPS2.A.T.O.), but for some reason the world acts as if they are going to die if there is not perfection all around them. That means that they decided to strip the libraries all over the world of the offensive and obscenties in all the books so that way boredom and perfection could slowly but surely set into the worlds minds to be okay. Well I refuse to let it set into my mind, and I hope you choose the same for yourself. Your's @CAPS3 @CAPS4" 3 3 3 3 3 3 +4626 2 "Reading is something people choose to do for their own entertainment, for their enjoyment, to gain personal knowledge and many other reasons. Reading should not be restricted by any means. If a person has an interest in a book, they should be able to read it if they so choose. I believe that censorship within a library is not something that should be done. For a person to be able to take away another persons right to read a book of his or her choice, is mind boggling. I know that some books can be pretty desciptive and graphic but these boundaries sould be set within a home. If a parent doesn't want their child reading a book don't take in out on the entire community. It's not fair to everyone else. If you personally don't find entertainment or enjoyment out of a book that you consider offensive, there are many other alternative books to read. Nobody is forcing you to be miserable and read a book you don't like, that is why there are many sections in a library. The sections in a library range from mystery to romance, so find a different book and leave the offensive ones to people who like to read them. That way you are happy and so is everyone else. Libraries are places people visit to check out and read books. Usually a person chooses a book because of the cover or a friend has requested you to read it. If libraries start to remove books from the shelves then there won't be any left for the rest of us to read. Not only will there be no more books but there also won't be anymore libraries for people to go to. Just because a few people think that there are some offensive words, scenes and or other ideas in a book doesn't mean that it is right to take away the privilidge of another person to read it. If you have a problem with it, don't read it. It's that simple. Don't make other book readers suffer because of one persons opinion." 4 4 4 4 4 4 +4627 2 "I do believe that certain books, music, movies, and other media should be removed from the shelves of libraries, if they are found to be offensive. We do not need anymore reasons for people to judge someone based on something that they read. If the media is offensive, than someone's feelings will get hurt. I remember a time when I read a book, and it had some really offensive things about homeless people. I felt bad just for reading this, because it just made them sound like horrible people. Which in a lot of cases isn't true, but I remember people that read it and they believed of every word of it. Those people now rudely look down on them. So why would we allow this book to be in the library? This book changes the way many people think, and so do many more books. There is a lot of offensive music too. Today most of the songs people listen to are, but we just don't realize it. These should not be available in a library, cause anybody could rent them. Which isn't good, cause they could really hurt someone's feelings by just singing a song they think is okay. Another thing libraries need to watch are magazines. Most magazines are okay, but some like to throw in little inapproiate stories. So to really protect everyone and anyone they need to really go through the magizine and make sure its not offensive at all. The media I think libraries really need to sit down and think over if they are okay, or not are definately movies. They need to realize that kids could rent these, and think are they apporiate. I think libraries should only have family oriented movies. This way nobody is harmed by anything they will veiw. In conclusion, libraries should be extra careful in their media choices. They need to try and limit everything that is offensive, to try stop anybody from getting harmed" 3 3 3 4 3 4 +4628 2 "Should there be censorship in libraries? Many people will answer this question differently. I feel there should be absolutely no censorship in libraries. Allowing censorship in libaries is an intrusion of our rights. It contradicts freedom of the press. If someone wants there opinion to be read they should have that right. I also feel censorship in libraries goes against freedom of speach. What is writing, but written speach? If someone wants to say something, they should be able to say it. If a mute person wants to get a point out, they should be able to do so by writing. What some people @MONTH1 consider offensive, others @MONTH1 not. If someone finds it offensive, they should simply not read it" 3 3 3 3 4 3 +4629 2 "'And then we have no books left on the shelf for any of us'. This quote says it all, if everybody had their say in what is offensive or not then everything would be offensive. Books are often written for the enjoyment of the reader, and if not that books are for informational purposes. Not everybody will have the same views of one book as someone else does, so it would be unfair to not be able to read it because someone else doesn't want you too. Personally I like to read books that interest me, as i can assume most do everyone else. Generally to keep my attention, I like to read books with a lot of action and an intense plot. I realize that some people would find this offensive and not acceptable for children, but I consider myself a good kid now and I am not negatively affected by those books I read. When I was a kid in @NUM1 grade, I read a book far beyond what most @NUM1 graders read. This book contained many vulgar words and even a racial slur, but I was mature enough to handle them. Just the other year, the librarian, whom I stay in constant contact with, asked me if she should take the book off the shelf. I told her no, with my reason being that I found it to be a very interesting book! I would have been upset to see a great book no longer be accessable because of some vulgar language, because what it comes down to are just words that express heavy emotion. Many books such as, the dictionary or encyclopedia's are used for informational purposes. These books can also be accessed by children. I myself as a kid have looked through the dictionary looking for 'bad words'. Does that make it jusitifiable to remove? Even the books we read in school today have 'bad words' in them. When I was a freshman in high school, my @CAPS1 teacher talked about how the school board tried to get rid of 'To @CAPS2 A @CAPS3', because it had racial slurs and much racism involved. She was very against getting rid of the book because she found the novel to be a very interesting read for her and her students. Books just can't be taken out of the hands of high schoolers because some uptight adults think it is offensive, when in all reality they teach great morals and lessons for the youth. If you take a look at politics you can see that not everybody has the same opinion and some can be very vocal about their's. The same idea can go with any topic in the world today. Somebody thinks one way and someone else thinks the complete opposite. This is the issue with taking books off the shelves. One person thinks it is a very offensive book and the other thinks it is a very beneficial book. My personal opinion is that a book is a book and people are going to interperte them differently. So if one book can get taken off the shelves then this will just start a chain reaction until every book is gone. There is no point! If someone shouldn't read that book then they shouldn't be allowed. The answer is as simple as that. When it comes down to it people are just going to have to get over not having their way, because they want a book removed from the shelf. Most people are offended by something and usually not everybody is offended by the same thing, which makes this issue impossible to deal with. There is only one answer to this question of: Should the library be censored? The answer is no, just let it be. The book was published so there must have been a good reason behind it. In the end of it all a book is just a book" 4 5 4 4 4 4 +4630 2 "Have you ever walked into a library and saw a book that you wouldn't what your child or any young one to pick up and read? There is several book in the library that young children should read. I don't believe that you a certian book should be removed from the library because it is offensive to some or not suitable for children, but there is a few things that can be done to keep those books away from your kids or any child. The possable things that could be done is; move those book to a higher shelf, designate a certian area for those books, or put an age limit on those books. The first way that you could keep an offensive book out of your childs, or any other childs hands is to move those book to a higher shelf. Doing this will keep those books out of your childs sight and reach. That will keep them out of childens hand, and prevent them from reading them. The next possability to keep offensive books out of your childs or any childs hand is to, designate a certain area for those books in the library. Doing this will provied a 'barrior', so that you could tell your child to stay out of that area, and keep a watch on them to make sure they don't go in that area. You would also know where those books are so the you could make sure they don't go to that area. The final possability to keep offensive books out of your childs or any other childs hands is to put an age limit on those book to keep the children from being able to check-out those books, to read them. This would make the childen have be a certain age before the can check them out, preventing them from reading them. These are a few possabilities that could be used to keep offisive books out of childrens hands, and preventing them from reading those offensive books that you wouldn't want them getting a hold of and reading" 3 3 3 3 3 3 +4631 2 "Many people have different views on censorship. Some people believe there are movies, books, newspapers, etc that contain subject matter that is not appropriate for some viewers and that they should keep their writing on certain things to a certain extent or not at all. Other people believe people have the right to say what they want when they want, on a topic they believe the be true or not true, or very improtant to them, also called freedom of speech. Also people believe that yes, there are some things written out there that should not have been written but they have no control over and to some people it @MONTH1 be appropriate. I do believe there are stories written that are not appropriate. But I know that even though I find the subject to not be appropriate or of any use to me, another person will. I know that every person out there is different and has their own beliefs on different things. If people had the power to control what books, magazines, newspapers and movies were in libraries then @PERSON1 was right, 'We would have no books left on the shelf for any of us'. Certain books, newspapers, movies, and magazines could help certain people and be of interest to certain people no matter what the subject is or how inappropraite it @MONTH1 be as long as they are along the right age. If the story is plainly about drugs, sex, alcohol, and voilence with really no use to it, then yes I do believe it should be taken off the shelf. You do not know who could get their hands on that movie, book, or article. It could be a little kid and we do not want to open the door for that. People have many different beliefs and I do believe we should not take anything off the shelf that could be of use to anyone, but I also do believe there is a certain extent." 3 3 3 4 4 4 +4632 2 "@CAPS1 happened to using books and films as simple entertainment? Why are we now cautious of @CAPS1 our children pick off the shelf? Society today has changed the way we once viewed our sources of entertainment. Books are now viewed with skepticism and once harmless movies and magazines are full of material no one should be reading or watching. Music used to be a beautiful form of art, but now when you turn on your radio, @CAPS1 do you hear? Mindless spewing of words linked together with curses and other garbage. Should libraries use caution when renting something to someone who shouldn't be using that material for harmless entertainment. There once was a young girl, fourteen or fifteen, who loved to read and listen to music. She was bright but shy, and used books as her friends. Each day she walked to the library for a new story to dive in. One day she came across a book on the top shelf of the fiction section. The book looked used, for its spine was badly split and several of the pages were nearly detached. She reached for the book, intrigued, and flipped through the pages. Her innocent and naive mind caught a hold of a world she didn't know. After reading the book, she was filled with guilt. It wasn't a good book, but a book that was laced with a harmful message. This young girl, once pure and simple, now knew things no one at that age should know. So, why wasn't there a warning of some sort? The difference between writing something offensive and being offensive is that the writer usually doesn't intend to be hurtful or rude. The author most likely intended for the peice of literature to be enjoyed with a clear and playful attitude. However the comparison between writing something offensive and being offensive is far different. When you read something in a book or magazine that disturbs you, put it down, or throw it away. No one is forcing you to read the material. Yet, the real question is; @CAPS1 about our children? How do we keep them safe from offensive literature? And @CAPS1 about music? Or movies? Remember the old black and white films? How, no matter @CAPS1 the plot or storyline is, the two leading roles somehow fall in love in the end? The ending title fills the screen just before the two actors share a kiss and then the screen goes black. Mind, there are still movies with happy endings and a positive message. @CAPS1 about the other films? Some of the biggest blockbusters are those which have either violence, some form or racism, and/or sexual content. Personally going to the movies to see a new action movie that looks thrilling and entertaining should be fun, but where does the fun stop? After the guy in the first scene has just been brutally murdered? Or after the two lovers share a special bond that should be kept private? And @CAPS1 happens when this movie is released and checked out from the library by a young boy who just wants a fun sleepover with his friends? How do we keep these sorts of material away from them? Libraries should use major caution when priting labels to place on their books, movies, magazines, etc. Librarians should make sure that the book a child hands to them is safe to read for that age level. Also, they should check the ratings on movies or make them not available to certain age group. Parents should also use caution when letting your child go to the movies with friends. Make sure they see something fun, but with a positive message. Should libraries take certain material off their shelves? I don't think so. However, be careful @CAPS1 you read or watch, for it might not please you. Use the internet as a source to find reviews on books and magazines, so see how well it was rated and then decide whether it is an intriguing read or an amazing film. Have fun, but be careful" 6 6 6 4 4 4 +4633 2 "Books, magazines and misic should be removed if it has something offensive to the person or the child. Books, magazines, music can cause children or adults to have a big imagination and as they grow or are thinking that its a right way to do things. All this things that are not for a proper use shoud be displade of were no children or adult have it in use. I believe that this can hust people as they grow up or adults thinking its the right way to do things. Books and music should be removed if not used for something that is in good use. Books magazines that have no material use and its used for pornagrafi or something else should be taken off shelfs. Kids and as adults have a big imagination that could sometimes hurt others as well as family members. Book magazines and music provide imspiration not to come to the fact that it comes to peoples distraction.thesse are way that by sometimes not knowing u hurt ur love one because of what u see, read or hear.this can the be the biggest effects on people. The supplies you get like books, magazine, and music arent helping you and are caousing more problems in your life they should be take of markets. Also people sometimes decied to buy them beacause of what the pictures have instored for you in a good day. another thing that causes them to be taken of shelfs is the thought that u can get by looking and hearin and reading.This are all bad things for anybody to be ready or lisening to. I belive that books, magazines and music should be taken off because its nothing good for the brain and it dosnt help you in any way. Also things that arent used for good are not use full.In my opinion, I think that trashy books and music sometimes it can take you to suiside or into making something cazy that later on you will regret.This is why nun od thoese things are use full for a person or a child In conclusion, I think that books, magazines and music that are not use full shoul be taken of shelfs and should be putting things that do help the mind.Things that are not resorsful for a person mind should be put away.All this things came into not having estability in life and cometing rong steps that take you into failure.Finaly I think that all unresorsful books, magazines and music should be put away" 3 3 3 2 2 2 +4634 2 "I do not believe that books, music, movies, or magazines should be removed from library shelves if they are found offensive. First, you have to consider what is offensive to most people, and who should be the people to determine if it should be sensored or not. People should be able to decide for themselves if they can or cannot get an item off of a shelf, because they might not even consider it offensive. If you are a parent, you have the right to not let your children watch or read certain materials, but you can't get it taken off the shelf because then it prohibits other people from being able to get that same material that they think is acceptable. Things that are offensive range from cussing all the way to extreme violence. Some people @MONTH1 not mind that there are a couple of bad words or a little violence, but others will find it very offensive. In my personal experience, I tend not to think that a little cussing is offensive, but I do know some people who balk even hearing one minor cuss word. Many movies nowadays are made up of content that is mildly offensive, but only if you take it seriously. The movies make fun of things that people might find offensive, which probably offends those people even more, but they do not have to watch it if they don't want that movie! It just depends on the person and what they have grown up around, or what they think is right or wrong. It is either your own responsiblity or a parents responsibility to determine whether the content of a book or movie is appropriate. Many times parents use the argument that children are too young to make the judgement on a book or movie, and that is very true. So most children movies and books are appropriate, and do not include content that children are not quite ready to handle. If you are older, then you can probably make the decision to read or watch something because it is more appropriate for your age. Many times you have already been exposed to the ideas prevalent in books in movies because those things are already in your life. It comes down to who the movie is for and what content you think is appropriate for their age. The idea about taking these books off the shelves would be disastarous. The reading lists in schools would have to be cut down because parents didn't approve, and the children would lose valuable knowledge that is in most literature. One person could want to rent out their favorite horror movie and suddenly it would not be there because a couple of people thought it was offensive. There would be nothing left in libraries if one person did not approve of something because then every item would have at least one person disapprove.I once read To @CAPS1 a @CAPS2, and our teacher told us that in another state this book had been banned because a couple of parents didn't like one or two things from the book. This book has many valuable ideas and lessons, and is considered a great piece of literature. These parents wanted the book to be banned from all schools, and all libraries all over the country, and that would be infringing on other people's rights of freedom of speech. The parents can say what they want about the book and not let their own child read it, but they cannot stop that opportunity for everyone else who wants to read the book. Taking it off the shelves would be taking off those ideas as well. Literature and every other movie and type of literature is what shapes a culture. There have been so many movements over time, many started with literature and it affected the culture and the people. Censorship would just take away a part of our culture, which would be devestating. You should look at your own life, and think about what you find offensive. Then step into someone else's shoes that does not think it is offensive, and see if it is worth it to take it all away from everyone. Almost everything could be considered offensive to at least one person, but it is your own resposiblity to decide whether it is appropriate for you or your child. The shelves should stay full of books, movies, music and magazines. It is our way of expressing freedom of speech, and that is an integral part of our country and our culture" 4 4 4 4 4 4 +4635 2 "Censorship in libraries is good in some ways. People who like to read books should have a wide variety of books. Things that offend people: for instance, a book about @CAPS1 @CAPS2 or natives and how they were treated so poorly. But almost anything now days offends peoaple and its rediculous. either way there is always going to be something that someone finds offensive. My expirience with this situation it really didn't bother me. But I was in a library glancing through a book and I read a paragragh and it had the word, 'nigger,' in it and I found it a little offinsive. That word just really isn't nice. People like different books movies magazines ect., and some of the greatest movies of all time, well im pretty sure some people find them offinsive in some way. What some might find offinsive, others might think different. Like in magazines my aunt finds them offinsive because of the bathing suit modles in it for addvertising a new swim suit. or for addvertising liquir. All together, just about everything is offinsive to somone out there. If all the things that people found offinsive was to be removed, then there would hardly be any books movies ect., and not only that it would suck all together" 3 3 3 3 3 3 +4636 2 "People should have a right to listen, read, and watch whatever they want. It is people's own choice to what they read, watch, or listen to. They will not be able to change that person by taking out offensive movies or books. They will only go somewhere else and do it. People have a right to read, listen to, and watch what they feel is good for them. If others find that offensive then that is their problem. People make their own decisions and that is their right. I feel that if you tell someone that they can not do a certain thing that will only make them want to do it more. Taking offensive books, music, movies, and magazines will not solve a problem that our society has with being offensive to others, it will only mask it. Taking them out will not all of a sudden make people stop being offensive to others, they just won't do it in libraries. Every book, music or movie will be offensive to some other person and if we take all the offensive stuff out there will be nothing left to read. It is just something that we will have to deal with. So I do not agree with censorship in libraries. It will only take away our right to read and view what we want but also it will take away all the offensive movies and books we have; which is almost every book. Everyone feels that one book or another if offensive to them and if we take away those books we will have nothing left in our libraries" 3 3 3 4 4 4 +4637 2 "censorship No,i dont think they should take certin book off the shelves, there are alot of thing out there that can be found offensive; gangs, politics, race, even school that small children go to. I can understand wanting to shelter your children, but you cant keep them from every thing. Inner cities have gangs that right awfal words on trains, building, and about anything they possible can. an you cant just take that off the shelf. Politics can be the worst, during presidentual elections they are always bring up there color of skin, and about everything they can find out about the other person. All of your kids watch this on tv. Race wars can get bad, people all around the world are fighting just because the color of there skin. You cant him them from it either, its an on going battle that will never be one and it will keep getting worse. I cant speak for other schools but mine has a lot of little problems; little kids cussing, the older kids fighting, then there are the people that try to do good in school and get picked on for it. You cant hide you kids for ever, sooner or later they will find out about these problems. If you want to help your kids keep them off the streets because reading it in a book is alot better than them seeing it in the real world. You have to prepare them for the problems ahead, and if you dont then they might get hurt alot worse than the little words in a book or a magazines or movies." 3 3 3 3 4 3 +4638 2 "In the book fahernheit @NUM1 all books get burned no matter what they contain and the people are always sad and depressed about everything. Books are an improtnat part of our lives. Some materials do need to be cencored because it might offend some people that are all ready have a hard time with being who they are without these things to add to the flame. Their are some books that are being censored for little to no reason. There might be a rude or a miss understood word that caused books to be unnessisary cencored. Cencorship is important to libraries when used correctly. We need books for many things from learning to simply use up time. Music has been with mankind since the beginning. Movies show us the ups and downs of life. Magazines inform us on what new and interesting. These things have become imprtant to us as clothes and food. Simply taking these out will make the world will make it a darker palce to live. Some of these things will cause people to be offended without trying to be. Katherine Paterson says that if I had the right to get rid of a book that offended me then everyone can too and soon all of the bookes will be gone .. We can try to be nice to every one, but somepoint something will insult someone no matter what we do or say. Do we need to get rid of everything for that reason?" 2 2 2 3 3 3 +4639 2 "What is censorship? Many would say it's a book without cuss words or it's a movie without racism. For me, I think censorship is covering up the truth. I don't think movies or books should be taken off the self because some people find it offensive. When a book uses a cuss word to show anger or simply use the word, I think that it's okay because isn't that what we hear in the world already? Now I know some people @MONTH1 not have grown up hearing foul words but many of us have. With movies I think that if people have a problem with their children watching something bad or offensive then they shouldn't let their kid watch it. Thats whats wrong with people now a days, they don't want to take blame for things that go wrong in their lives. People use censorship as a way to make themselves feel like their a good parent or that the world owes them something. When it comes to someone thinking that a movie or book has gone to far with their race then censorship gets thrown around. Many people have issues with their race or nationality being messed with. Though it's funny to see that race use those foul words among themselves but when it's in a book it's racism. Or when a certain race is being made fun of or shown in a movie in a way that that race doesn't feel comfortable with, that movie is called racist. I feel that if people have an issue with something they don't agree with, then they should take it out of their own lives. Too many people try to control something, like cencorship. For years now people have wanted books that are read in school to be censored for bad language. Why put all that time toward the book being censored and not the school. I know kids in school use foul language all the time. Even worse then the books we read. If adults would realize it's their kids they need to censore and not the books then censorship wouldn't have become such a huge issue. People need to just realize that by cencoring the books or movies doesn't make the offencive words or bad images go away, it just covers them up" 4 4 4 3 3 3 +4640 2 "Taking books off a shelf at libraries because someone thinks they are offensive? I dont think that is right. Thats just what one person thinks and other people I'm sure won't think the same way. Just because one person think something is offensive and should be taken off that shelf doesn't mean that some kid couldn't learn from that book. Also with music, movies, and magazines, well that you can get that everywhere else so why is it such a bad thing to have it a library? A lot of kids go to libraries to find books they need for school and if people are taking books off the shelf that they need, then how are they supposed to get their work done? Im sure there are people out there that would say the books they need are something they shouldn't be leaning yet, but we are going to have to learn about it sometime, so why not now? Taking away music? kids can just get on the internet and get that just as easy and most kids are doing it in ways that could get them in trouble. So having music at libraries is just giving them a free way to get it. Magazines you could just go to a store and get but a lot of kids probably don't have the money to buy them so having them at a libraries would give them a way to be able to see them. As long as it is stuff that kids can see then i don't see what is wrong with libraries having them there. So i think taking books, music, magazies, and movies away form libraries isn't a very good thing to do. Maybe they could make an adult area and if someone tells them they think a book should go in there then they can look over it and see if it should. I can see some stuff getting taken away but not very much and if you take all that away from a library then you dont really have much of a library anymore." 4 4 4 3 3 3 +4641 2 "I think if its offensive it should not be avavible for kids intill they are old enough to read it, listen to it. I think they need to be removed from shelves or put away. Because it can be hurtful, dirty for younger kids and it could be prevented if they are removed from shelves. I belive the magazines can be put away or put into its own sections. Music or movies could be put in there own sections also. Internet could be blocked for certain websites. Luckly the time we live in has people to prevent these things to happen like adults. And people to watch you and can tell you you are too young for that stuff. This is what I think it could be easily prevent just put them up or removed and taken off shelves. If they are offensive remove them so we dont have to worry if are children are reading them or not." 3 3 3 3 2 3 +4642 2 "Dear Newspaper, I would like to start off by sayin that books, music, movies, magazines, etc. are great for kids in libraries. It's great that kids have a place to go in there free time when they have nothing else to do or need a place to read. But some things are not suitable for young kids and young adults. In high school just walking down the hall you will find out more things than you would probably like to know. Many of them @MONTH1 not be appropriate but whenever you walk into the library its almost as if they are promoting drugs, alcohol, and sex. Books about drugs are okay to a certain extent, like if they are medicinal drugs. But whenever they are talking about how drugs take the pain away and make everything better, thats when its taken to far. Our kids and future kids do not need to be learning about these sort of things. Alcohol is the same way. You see alcohol everywhere and kids are doing it at a young age because movies, music, books, etc. are promoting it basically. Our kids do not need to be learning about these sorts of things. We need them to learn about the dangers of alcohol, not how to get drunk and what you do when your drunk. Advertsements are the worst things that kids could be seeing especially when they are on billbords, fronts of magazines, etc. Kids do not need to be learning these things at such a young age. Kids should be persuaded to play outside and be in sports and have fun with the family or ride there bike. I feel that these things should be taken out of libraries if they are offensive to some people. Because maybe its for the best that these things are taken off shelves beacuse maybe our kids will be healthier and live longer without being influenced or under pressure about doing drugs and alcohol, etc. Sincerely, @PERSON1" 3 3 3 4 4 4 +4643 2 "I am sending this letter to you about my views on censorship in libraries. Some people think books, music, movies, magazines,etc., are offensive. Those things might be offensive to them, but not to other people. So you have to look at it in not only your point of view but other people point of view. I think they should not remove these things from the shelves. Everyone has a different point of view like my mom for instence she likes vampire books and movies, but i like tragedy. See everyone likes something different. They also have to think to the books we have from @CAPS1 @CAPS2 @NUM1, @CAPS1 @CAPS2 @NUM2, etc., are offensive to some people. Are we going to take those books out to. I mean if we took books, music, movies, magazines, etc., out for being offensive then we would not have any books, music, movies, magazines, etc. Everyone thinks something offensive, some might think the same thing is offensive some might thing something different is offenseive. We should not take books, music, movies, magazines, etc., off the shevles. I understand that people do not want there kids to see them or hear them. It part of life though. You can not take everything out to please one person, because it could make another person mad" 3 3 3 3 3 3 +4644 2 "Libraries are normally a safe quiet place for people to go set down drink a cup of coffee and read a book/magazine, search the internet, or listen to some of there favorite music. But, some people don't use it as that. They think it is a time to goof around and disrespect other people that are trying to have some time just to them selves while there children are away or had a bad day and to regroup and get ready for the next day. But then we ask our selves why do people want to set at a library and read. Why can't they just check out a book, cd, or magazine and take it home? Why do people think it is such a big deal to be able to check out books, magazines, music, and movies from the library? I don't see what the big deal is to this! Most counties have a public libarary. That is meaning they will accept anyone that is interested in looking at there stuff. Yes, I can see libraries making the person checking out a book sign a letter or document, giving personal information as in a telephone number, address, or credit card number. The letter would be saying that they have this much time with this book and they needed it back on a certain date or else they need to bring it back in a get it renewed so they can't accuse of anyone stealing a book if they just want it for a little bit longer. Most places have what they call late fees. Normally, if someone has a late fee then you aren't going to get that book back because they don't want to pay it so I feel as if giving them a credit card number they can just keep charging there account and get the money that way for the late fees. Because they can just not answer your phone call or they can just throw away a letter that they recieve in the mail from the libabry in the trash. I know our school library here at @ORGANIZATION1 has always had problems with getting books back and not paying late fees. This problem is sometimes a never ending process with certain people because some of them just don't care. Yes, the internet would be a little diffrent because not everyone has money to get the internet at there house. I am not writing this letter to gripe or be annoying I am trying to tell you some of my ideas that I have to keep a library up and running and not all junkey. My ideas to me are good ideas and I feel like we can put Libraries into good use around this county and @LOCATION1" 2 3 2 3 3 3 +4645 2 "People find things offensive everyday. It is just a matter of life. Some people have a right to feel offended for some reasons, but they really can't control it from happening. It is just something that has occured for thousands of years. And people have slowly began to deal with it. So therefore, i believe that books and other materials that are found offensive should not have to be taken down because it offends someone, because taking it down could offend someone else. What i'm really trying to get across is that no matter what, not everyone will be happy. Life is filled with mixed society and emotions, so not everyone will agree on the same thing. Also it should be up to the library whether or not they want to remove some of their material. Because they did pay for it and have a right to let people in society watch, read, or listen to it. Thus being said, i believe that they should try to keep certain offensive material to a minimum. Such as racism, it seems as though rasicm impacts alot of the country still today. And will forever be an on growing matter in problems around the @CAPS1. In conclusion, i believe that the library has a right to own books or movies that are somewhat offensive. Because like i said everyone deals with it at one point, and not everyone can be happy. And some of the material is most likely educational and teaches us about the history of the @LOCATION1,@CAPS1, ect, rather than being racist or offensive as everyone jumps to conclusions about. And everyone needs to get past the offensive side and get to a level where everyone sees eye to eye. For we are all the same, but yet, still broken up among looks and culture" 4 4 4 4 4 4 +4646 2 "The librarys are made for everyone, from childern to adults. There @MONTH1 be somethings that should not be in certian areas or even in the place at all. With the librarys having all age groups of books there, their @MONTH1 or should not be some material in thoes areas for them to see. let alone @MONTH1 not even be there to begin with. Any age of childern can pick up a material that @MONTH1 contain eaither offensive/or just some things that they should not see. I think that librarys should only contain materials that are approiate for all age groups. This is my oppion why i think librarys should only have materials with approiate images and words for all age groups. You dont know what your or someone eals child @MONTH1 pick up and read or hear. The beat thing to do is have all approiater materials and nothing eals" 2 2 2 2 2 2 +4647 2 "Should certain books, movies, and magazines be removed from library bookshelves if found offensive? I believe that libraries should remove materials that are offensive. Libraries are huge public places that share knowledge and entertainment to enormous groups of people who want to expand their knowledge. Throughout the @LOCATION1 and other countries there are libraries that hold offensive material. Now I strongly believe in throwing out these offensive items because little children could grab one in their hands, there could be people that can be influenced to do stupid activities that they have learned, and some people might steal these items for themselves. Libraries are important resources that tons of different groups of people come to enjoy, relax, and think. Now all over the countries libraries have offensive material that should be romoved from their shelves. Little children and their parents come to the library because a library is a great way to relieve stress and to let children learn. Say there are materials that are not suitable for children so they grab it and started reading. Next thing you know your children will have that type of knowlegde and you can't do a thing about it. Offensive material are around little kids and parent don't even know. They could gain offensive language or talk about it at school and that material could spread. Material like that at the library can harm children brains by brainwashing them. Teenagers are becoming of age to where they might do something regretable. Teen often go to the library to meet up with friends, or start on homework. Then a person who is inmature spots a book and begins to read. After that he or she thought that it was extremely funny and wants to try it at home, but then gets badly hurt. Teens can be influenced by anything and what's worse is that it can start at the library. Then there are people who just come into a library and steal the offensive material for themselves. People like that are inmature and could serve a real problem for the library. Once having that item in their grasp; they could post it on the internet and show the whole world what he or she found. Offensive material could be easily stoten from a library; if these certain items were not at the library then rebels wouldn't be stealing anything from the library. Libraries are for different people who want to learn and teach others about their newly obtained knowledge. Libraries have the absolute best resources a place could have or ever wanted. I don't want such a wonderful resource be tainted by these obsence materials. That is why I strongly believe that certain material such as books, magazines, movies, and music that are offensive should be removed from libraries." 4 5 4 4 4 4 +4648 2 "Some people believe that certain materials, such as books, movies, magazines, etc., should be removed from the shelves if they are found offensive. However, I do not believe they should be removed. People are mature enough to be able to handle offensive material. Most people check out books or movies that they have heard about, so for the most part they know what they are reading @MONTH1 be offensive. Instead of removing the ofensive material, there should just be a warning to let readers know that what they are checking out is considered offensive. These days, people are mature enough to read offensive material. We see many types of offensive material every day. Examples of this inlcude when we watch the news, we @MONTH1 see numerous offensive pictures or videos. There are also many news stories that many people consider offensive. When a person checks out an offensive book, they are doing so because they want to. Libraries should not revoke a reader's right to read what he/she wants. Before a person checks out a book or movie, they should look into it to make sure they are okay with what they are getting. This can prevent many problems. For example, say a young reader sees a book that they think looks interesting. If they don't read into it a little bit and just take it home, they @MONTH1 later find that it contains offensive material. However, if they read a little bit about it before they check it out, they will find out it contains offensive material, and can then make the decision on whether or not they still want to read it. There are many ways libraries can prevent children or other people not mature enough to view the offensive material from seeing it. They can put a warning label on the book or movie to inform people that that particular item is considered offensive. Libraries could even put an age limit on checking out offensive material. Either of these ideas could be an efffective way to ensure that only mature people are checking out anything that is considered to be ofensive. Libraries should not have to remove books, music, movies, magazines, etc. that contain offensive material from the shelves. If a person wants to check out a book that is offensive, they should be allowed to check it out and read it. Also, people should be intelligent enough to look into whatever item they are checking out before hand so they can be aware of the offensive material. However, to make things even easier, libraries could just put a warning label on offensive material to prevent some people from reading it." 4 4 4 4 4 4 +4649 2 "Censorship in libraries today, I believe, are not a big problem. But many would disagree with that. Books and movies can be a very important resource for anyone of any age. They can gives us facts about a certain topic that we @MONTH1 not find any where else. Everyone has thier own definition of offensive. I belive that it is not only up to the library to rate the books, movies, and magazines offensive but it is also up to the participants using these resources. For many kids, no matter what age, they only rent books from a library for two main reasons: pleasure and projects. To sensor a book from a teenager or child is just like more of an invitation to see whats inside of it. For the people who do pleasure reading they most of the time stick to only one type of genre. If someone wanted to rent a book, and it was not appropriate for them to read, then the librarian or teacher would restrict that book from them. For projects, such as for school, it would depend upon the librarian to censor the book to a child. But books are not rated such as movies are. So it really all depends upon the use of the book and the maturity of the person who is renting it. If they feel that it will not be appropriate for some, then they could give a suggestion to censor it. Movies and books are different in many ways. Books allow you to create a mental description and picture in your mind for what you are reading. Movies, on the other hand, create a visual image right in front of your eyes. No matter how gruesome or vile of a description a book can give, it still does not compare with the visual picture of a video. Movies are rated today as to the age of a person, and they say why they are rated as such. Movies rated above the @NUM1 level are most of the time not held in libraries. They @MONTH1 still be censored if they create too vile of an image, but that is up to the one who watches it. Music is a major part of each one of our lives, and without it the world would be a much different place. Everyone finds themselves quite fond of a certain genre of music, and most of the time sticks to it. Music, like movies, is also rated by the content of the song. If it has a word or two that should be sensored, then it is most likely already labeled 'explicit'. I think that music, just like movies, should not be able to be censored, because they are already rated accordingly. Some books, magazines, and movies contain cold hard facts about the past years of our world and are too vile for anyone. And even though those events are in our past they are still very important to our present. Books can be a magical place for children, as well as adults, to go and create their own world. To censor a book, movie, or magazine would be taking away that chance for someone to enjoy life just a little bit more for that small moment in time." 4 4 4 4 4 4 +4650 2 My opinion on this subject is its not right. This is a very interesting question. And im going to tell you why i think the way i do. Im for it and against it. Okay some people like different things and the other people dont agree on it. Thats how things work. If a parent is walking his kid through the mall and goes into a music store and hears the music cussing in it i would not want my kid to be around that and thats what it means by removing something like that because somebody is offened. I totally agree on that. Like ciggerettes. Kids walk in to go buy candy then they go to pay for it and the back wall is full of tobacco products that the kids can see. Once again i would want to remove that from the shelfs. There would be so many conflicts if this happened. Everyone likes different things. So i think everyone is going to get offened by taking things away that looks offensive towards them. This goes from kids to adults. Every age would be bothered by this. Now this is my against veiw on this subject. This would make me very mad if i admired something a lot and then come to find out that someone is offened by it so they take it away from the people and that like that object. All this would do is cause problems for everybody and just make everything go bad. Thats how its suppost to be. We all have are opinions. We all like different things. We all have to get over it if we dont like it or dont get along with it. Thats something we have to take in and suck it up. So on this subject im for both. I see it both ways because its good and bad. People are just going to have to get over the fact that they have to deal with what they see or hear. Its part of life. 3 3 3 3 3 3 +4651 2 "I believe that certain materials should not be removed if they are found innapropriate. There are several things that explain why I think this. For one thing, some libraries don't have certain genres of books. For example, say one library @MONTH1 have action but not thriller while another library has thriller but not action. If some materials were removed from public libraries due to censorship, people would only be able to find it online or in certain stores. Second reason being that kids would not get into these kind of books if it was innapropriate, unless they're given approval by parents. If these materials were to still be on shelves, you should at least be a certain age to read it, unless the parents make it to where their kids don't have to get approval from them first. Sure it would make the library more kid-friendly, but a book shouldn't be kept away from a kid only because of a few bad words. Lastly, some adults would be upset of the removal of some books. Some books that are intended would be better off staying in the library. If they were to remove these books, adults would then have to find a book online. So censorship, to me, is not going to make any difference. If this continues, it @MONTH1 lead so far, that the libraries would have to be closed. Take my word for it. In conclusion, don't let censorship take over our libraries." 3 3 3 3 3 3 +4652 2 "Censorship to most people means much more than the average @NUM1 syllable word. It means giving up the right to say and think however you want. To most, this idea is not a good one. When one is censored, they are essentially giving up the right of freedom of @CAPS3. In this essay I will discuss three cons of censorship in libraries. One reason censorship should not be aloud in libraries is the lack of freedom of @CAPS3. Decades ago when it was set into place that anyone was aloud to practice their right to speak freely, the idea of censorship was not in the plan. As @CAPS1's, it is our right to speak and write however we want without reprocussions, however offensive or non-offensive the material @MONTH1 be. As @CAPS1's all should realize that everyone is different and not everyone will agree with one another. Does that mean that just because one person finds something offensive, then an item should be taken off shelves? Absolutley not. Freedom of @CAPS3 is our birth right and we should be aloud to say or write anything without being censored. '...But if I have the right to remove that book from the shelf-- that work I abhor--then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' Katherine Paterson. Author Katherine Paterson simply states that if she has the right to take any book of the shelf that she doesn't like, then everyone else also has that same right. As previously stated in the paragraph above, it makes no sense to rid a book just because one person finds it offensive. If that was the case, I could find @NUM2 books in our library that I find offensive, and the next person could find @NUM3 books that are offensive and so on. Just as Katherine states, 'And then we have no books left on the shelves for any of us.' And the last con of censorship in libraries is the lack of perspective and learning a book brings. As an avid book reader, I couldn't even begin to describe all of the vocabulary words and new things I learn from reading one book. Just recently I read the book @CAPS4 @CAPS5. As I was reading, I began to have a deep hatred of the main character. Later I found that the book was incredibly offensive. However, from reading it, the book provided much insight into @DATE1's life that I new nothing about. It gave me a great deal of information that to this day, I use. The book made me reflect on myself and how @NUM4 plus years changes people, @CAPS1's more specifically. In conclusion, censorship in libraries is not a good idea. When one is censored they give up their right of freedom of @CAPS3, other books in general, and loss of oppotunity to learn new things. Hopefully with this essay, I have persuaded you or at least informed you on the cons of censorship in libraries" 4 4 4 4 4 4 +4653 2 "Is there enough censorship in our libraries? Have you ever came across a vulgar or offensive book in your library and hoped that no children had ever read it? Well that should never happen, if a book or any other material is offensive then it should be put in a seperate area of the library where only adults can access it. Other than that section their should not be any offensive or vulgar materials that children or even early teenagers should be able to see. Almost everyday children and teenagers have access to offensive and vulgar materials that could have terrible effects on them. Maybe if they do not see these offensive materials when they are young they will be less likely to use or engage in some of the things that they see or read. For example when teenagers read about people doing drugs that could influence them to engage in those type of activities as well. The materials might not have an effect right away but later on down the road it could have a giant effect on them. The youth is what is going to be running this country when we are old. So we need to do our part and take offensive and vulgar materials out of the reach of our children and teenagers. I do not want my children to read some of the things that I read when I was young. That is why I believe their should be censorship in every library." 3 3 3 4 3 4 +4654 2 BooksI think that every book in the world should be on the shelf. because if it is afencive then dont read it. it is alot beter if u can go read eny book u wat to. and if thy dont have that book then i gess u gota go get it somwere else and some people wouldnt go thrue all that trouble for a book. Wich means they wont know as much as they wanted to or could known. we need smat people to know as much as there potential and as they wat and can posibly know. But books are books not every body reads alot of books. lets say u wanted to know somthin about a truck wat do u do u go find a book about it or get online or ask sombody that knows. How would enybody know enything about it if the person that bilt the truck didnt write a book telling u about the truck. You would haft to take it apart and find out your self wich isn't verry easy at all. and if u mest up thats not good. but if u had a book to go bye it makes thing alot simpler most of the time. This is one of the reasons every book should be on the shelf. so that if u need to know somthing and u want to learn u can read about it. And find out wat u want to know. Reading is one of the best ways to find out wat u are looking for so that way nobody is telling u wrong. Plus books are just good to read Movies all movies should be there to because every bodie has the right to wach eny movie they want. Inles they arnt of age. and if no parent haft to say its ok for them to wach it. If it afends u dont wach it. Magizines @CAPS1 are good to i read alot of magizins u can find alot about enything in a magizine. so ya the are good 3 3 3 3 2 3 +4655 2 "Do I believe that certain materials, suchs as books, music, movies, magazines, etc., should be removed for being offensive? No I do not. My opinion on the varieties of things found in our library are good. Most of it is very helpful information. Some people might not like some things because of what they have in it or on them, but most of it is history. You can't change that. If someone doesn't like a book, movie, or magaine, they shouldn't read it. I have found the things in our libraries to really help on a lot of projects. If we need to know about slaves or slavery, we can go to our library. Some peoples views on that is totally different, but hey. We can't help what people did in the past. We can only learn from their mistakes. I say if you don't like what you see on the front of the cover, don't read it. Look for something else more interesting to you. I have not found one thing in our library offensive to me. Or even bad. They have books over everything. Some of it can be bad, but mostly it all is good information. They talk about history, and guns and drugs, and wars and all sorts of other history information. There are books over stuff that isn't even true. I think people @MONTH1 over react on some things. If you don't like a book or movie, don't get it. Look at the cover and if it seems appealing, get it. But if not, don't waste time on complaining about it. Because then things can get out of control. That is my opinion on books, movies, magazines, etc in our libraries. Mainly they seem very helpful, but others can have different opinions" 4 3 4 3 3 3 +4656 2 "I think there should be no books taken off the shelfs. Somethings might be offisive to some people but other people might need those books for a research, projects,etc. People need to read to understand why some people think that somethings are offensive toward other people. Every book should be on a book shelf in a public library. Everybody has the freedom to choose for thier self, let them decide if it is offensive to them and others. Maybe an author wrote a book about gansters, and their kids. Maybe the author wrote the book to give you an inside look on somebody's life. We live in a very diverse world they are going to be different outlooks on the world. The author could be writing the book to show you what that child went throught during that point of life with killings, and violence. That should not be offensive to somebody because they are talking about killings and violence. Reading that book should let you see how that child grew up. The book could even change some of the childs parents who are in gangs their minds. It could let them realize how it will have an effect on their childs life later on in life. I believe the same thing goes for movies and magazines. Through reading the magazines and watching movies it could help you. Say if you are in a gang and you watch movies and read you would find out what happens to the gang, it could change your thoughts. These books, movies, magazines could show what is going to happen to you. Maybe directiors/ writers do these types ot thngs to show you what will happen to you if you continue down the path in gangs and harmful clubs. Why should certain people get to choose if a book, moive, magazine,etc is offensive to some people but not others? I think the only way to fix it is to leave every book on public library shelfs. Let the peple who come to the library to read books decide what is right or offensive for them to read. Even if library's make a decision somebody is going to get mad and upset. I do not think there is any way to solve an issue like this except letting people read and decided for themself. If they like the book great, if not then do not read it again or return the book.Nobody can decide right from wrong for somebody, only you can do it for your self." 4 4 4 3 4 3 +4657 2 "Some children take books off the shelf that some old people can't read now a days. Some people taken books off and taken them and broken, take pages off of them" 1 1 1 1 1 1 +4658 2 "Hello @ORGANIZATION1, I am writing to talk about censorship in libraries. In libraries they have tons of materials that have language and images that are offensive. i have a broad view on this subject. My view is just that if the censor stuff in a library, the should censor tv. I have deaf parents, so we always have the captions on in our house. Everyday I see bad language thats inot censored. I also have seen images that are not censored. The youth of this time mostly watch tv than use the library. So why not censor tv. I see things on tv that i wont see in a library. In my conclusion i would like to say i dont believe that libraries should censor their materials because the studdent will still find out. There are plenty of other places that are worse. Like crimes scenes, cime scens have blood and gore and a library would just have language. These are my views ancd yours could be differnt." 3 3 3 3 3 3 +4659 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' Katherine Paterson, an author, once said. I think that she was trying to tell us that some books should not be out on the shelves for children to read. I agree with her on that statement. I have once read a book with very mature content. It was very vulgar and not sutable for my age or maturity. There are a lot of books like that out there and we need to hide them from the children of our society. They are too young to hear or read about adult actions such as: war, violence, sex, drugs, and all sorts of other things. If we take these mature books and other types of media off the shelves our children will have better lives. There would be less teen pregancies, drug ussage, and multiple other factors that are effecting our society. Children would behave better because they would not be so greatly influenced by the media. I think that we shouldn't get rid of these book though. We should just keep them out of the libraries. If people want to read these kinds of books they should search elsewhere. An easy way to solve this problem is to put an age limit on books and media of this content and to put them in a separate store or section in the libraries. A very great author said that children should not be exposed to adult content in the media. But she also said that the people who read or watch this type of media have every right to. This is why there needs to be an age limit on this type of media. But for now if the content is to adult for you or does not agree with you, don't read or watch it." 3 4 3 4 4 4 +4660 2 "We have all been to a library at some point in our life. Have you ever been looking around and seen something that @MONTH1 have been offensive, or something you didnt agree with? What if you had the chance to have if takin off the shelves for good? Or, what if someone else had the choice to? Would you allow them to do so? In my opinion, I would say no. Someone does not have the right to take reading material off the shelves, just because it @MONTH1 be offensive to them, or there way of life. I say, if you do not like it, do not look at it, it is simple as that. For example, what if you were into rap, or the hip hop culture, and someone finds that offensive? Would you give them the right to keep it from you? Or, would you really want to do that to someone else? Lets say you are a christian, and an atheist finds the @CAPS1 offence, or untruthfull, so he has it takin off the shelves. Does that sound fair to you? If someone was to not like a certain topic or culture, or finds it offensive, all they would have to do, is simply stay away from it. The point is, if we all were to take something off the shelves, there would adventually be nothing left. Respect what other cultures and ways of life do, and stay away from what offends you. Would you like someone to have what you like takin off the shelves? I would not, so you should not do that to other people." 3 3 3 4 4 4 +4661 2 "It seems today we attempt to censor everything, but are we going too far? Could it be that we have crossed the line and are no longer protecting the children, but are instead holding back our society as a whole? In my opinion, censorship of literature has crossed the line. A library is, essentially, an incredably valuable resource to each generation. In some cases it still is, but when books are being with held do to the fact that it @MONTH1 offend someone we are holding people back from the knowledge they could gain from the work of literature itself. We attempt to placate everyone in today's society, therefore we censor several things that are not politically correct. If future generations are unable to learn what we have through these writings, then they will lack the insight we had gained. Another reason is, to be perfectly honest, history and society have not- and very well @MONTH1 never truly be- politically correct. People take umbrage to certain words and consequently some libraries will remove the book featuring said words from their shelves. After this is done, what have we really accomplished? Have we made the world a better place by attempting to hide a part of history? That is debatable, but by the same token, in school we must learn about the @CAPS1 despite the fact that it upsets many people. We must learn about this because it was an important part in history that needs to be remembered in hopes that nothing so terrible as that will ever happen again. So, if we learn about an entire subject which happened in another country but effected the entire world should we not learn about our own faults in history? The times we have oppressed people, the terms we used so commonly we attempt to hide now. Has it really helped us? No, for until people recognize a problem and furthermore are reminded of how wrong it was they will not understand it. Napoleon once said that history is a story written by the victor, but is victory so sweet after our history has been rewritten? If everything that offends people is censored or taken away we will have nothing left. For if one person is aloud to say what is and isn't acceptable then others will partake in this as well. It would become a new fad and people would find a problem with just about anything. So, essentially, by censoring works in libraries we are holding back the future generations from all that they could be. We are forcing them to be ignorant of society's problems. In the end we must ask ourselves, was it really worth it? I remind you, a library is an invaluable resource." 4 4 4 4 4 4 +4662 2 "When people think of a library they think of a quiet place to study and read. Teachers use the libraries for many different things. One thing they use it for is movies on certain topics. Another is for books on certain people or events. They even use it to get magazines for projects and to catch up on the world outside of school. So what is my opinion on offensive materials getting removed? I'll tell you what it is. Kids watch movies in class all the time. Some are not appropriate at times, but some are very insiteful and helpful. I think if the teacher watches the movie first and thinks that it is too bad for children in say elementary it should be banned from that schools library, but for high schoolers chances are they have heard or seen worse. So with saying that movies should stay in the libraries of high schools but not all should stay in the elementary's. Books are another good resource if used correctly. They help kids in history learn about old war hero's and past events. Some books should be kept behind the counter and only used for certain classes though. Like for instance books that tell specifics about drugs. They should be taken off the shelves , put behind the counter; and if someone really needs a book about them like for medicine purposes to become a doctor then all they have to do is ask. Magazines are good for a couple of different nice things. One thing is projects. If you have to do a project over something like food and cant use a computer, magazines are a great way to get good pictures. Another thing its commonly used for is just flat out entertainment. Like when you get bored of reading a book that you just picked out because of looks or if a book is too hard to read you could get a magazine. So in reality some things should be kept and others taken away. People spend lots of time in the library for many different things and that will never change. Movies are a good source of entertainment and that won't change either. So I guess i'm half and half on keeping or getting rid of offensive materials." 3 4 3 3 4 3 +4663 2 "My view opposes the open distribution of certain newspaper articles. There are certain articles, radio shows, and other sources of media that vividly describe certain things that happen in the news that I find not to be appropriate for some people to hear such as younger children, or people that don't agree with having to listen to things such as: bias reactions, opinions, and interpretations of these things. Open distribution of newspaper articles and things containing disturbing images ought to be censored. I recently seen photos of people who have been killed in the process of finding @LOCATION1. I find that these images @MONTH1 serve some importance to people interested, but for children who can look on their doorstep and look at the newspaper, can see horrifying images that some people @MONTH1 think they shouldn't be exposed to. Even as adults people don't necessarily agree with it. Adults @MONTH1 see what's in the news and @MONTH1 find it to be intriguing as it pertains to them or fairly disturbing, but as far as the protection and limited exposure their children @MONTH1 have, it @MONTH1 not be such a good thing for their kids to be hearing. I was in the car heading back from school one day, and my dad had just picked me up from school, and I casually switch the raido from am to fm as I always do when I get in the car, but I didn't hear the sudden outbreak of a top one hundred song as I had expected, I heard a woman asserting her opinion about the death of @LOCATION1 to a talk radio show host. The show had previously been recorded, and so after the woman had lashed out for being so angry about the whole thing, there was a review of other calls that other people had made in mad frustration about the womans' comments. She had said earlier that it was wrong to have killed somebody, in which the talk radio show host responded with the argument that it was okay for @LOCATION1 to kill thousands, but we can't kill him argument. The reviews that the other callers had made sort of disturbed me. The things that the callers were saying were very offensive towards the woman who had expressed her feelings. The other callers were saying that she needed to get out of our country, and were cursing at her. News like the death of @LOCATION1 isn't just violent in itself, but creates reactions that are very violent as well. Another instance when I was exposed to some information that @MONTH1 not have been well accepted by others was when we were having an assembly meeting at my school, and we watched a video about a protest that was against people of @CAPS1 belief. The whole problem with the protest was that the people of the @CAPS1 faith were born in @LOCATION3, and were meeting with representatives in order to help a poor community in @LOCATION2. Although they were making an effort to help the poor communities, and homeless people in @LOCATION2 there were people shouting at the im protest to leave, and to go back to where they came from. When people hear things about this in the news it can be very offensive, because although it @MONTH1 be happening on a complete opposite coast, it would be able to effect someone, it can easily effect someone who doesn't understand previous conflicts that would shape these peoples' opinions and @MONTH1 take that very offensively, because it is a very complex matter even though it is still very wrong. I believe that the material that is being exposed to people of all ages should be censored, because the material that is being openly distributed now isn't necessarily suitable for everyone, and some people @MONTH1 not want to hear about it, and want to avoid the news that is going around about certain topics that they @MONTH1 not be comfortable with" 4 4 4 4 4 4 +4664 2 "I think that if a book can be published then it should be able to be in a library. If a book is published then it means it's open to the public so I don't see why it can't be in the libraries. If a book has to be removed from a library then why did they buy it? I really don't see the need to take a book off the shelf in a library. If someone dosen't like it then they don't have to get it. I beleive that only the owner of the library should be the only one to take a book off a shelf because it is their own store, but why would they waste the money in buying the book. The public shouldn't be able to remove books from libraries because not everyone likes the same kind of books. Everyone has different views also. If anyone could remove books from libraries then there wouldnt be any books in the library. A book is a book. Not a criminal so why remove books from libraries? If a book can be published then it can be put in libraries. There is no reason for a book to be taken off the shelf because its been published so it's already open to the public." 3 3 3 4 3 4 +4665 2 "I don't think a magazine should be taken off the shelves just because someone is offended. People get offended all the time but do you see them trying to get what ever it is that made them fell like that. I have been offended by cartoons before but you don't see me crying about it you just have to suck it up and go on with life. Cartman from the tv show @LOCATION1 is the most offensive characters on that show. He uses every offensive language known to mankind. He makes fun of all the racees, he says he hates everyone equally. But still you can't stop it that is like trying to get a dog to be a cat it just wont happen. It is also like trying to get rid of racecism. That is what I think about finding something offencive." 2 2 2 3 3 3 +4666 2 "When you walk into your local library there are thousands of books, magazines, movies, etc. You have different types and styles of books. There are fiction and nonfiction, comedy, horror, children books, and many more. Also what you might not know is some libraries have books that are either sexual, violent, disruptive, and aren't appropriate for young children. They could also have movies and magazines like that and that is not a good influence. When a young child walks into a library, they would expect to find a book with color, action, pictures, etc. But while they're browsing around they could run into a certain book thats not meant for them and they could end up becoming influenced. A book that is inappropriate for a child could possibly affect a childs life because they could go out into reality and try to immitate a book they have read and it could end up being the wrong decision. Inappropriate movie and magazines, such as pornagraphic magazines or pictures, rated @CAPS1 or @CAPS2 movies, shouldn't be allowed in a library. Items like that should be sold in a separate store. Items like these are meant for adults only. We should try to inspire our young children to do whats right and not try to convince them to do anything in a negative way. If you are going to have any of these items kept in your home, then keep them in a place where children can not find them. The generation that we live in now, most young people only focus on gang violonce, sex, rap music, and drugs and you can find all of this material in movies, books, and songs. If we keep all of these negative minded items out of public places such as libraries and even homes, then there could possibly be some change. Most rap songs you hear these days are either talking about violence, sex, or drugs. Most music should have a positive message to it. I feel if I see a book, movie, magazine, etc., sitting on a shelf where a young person can see it, I feel I should have the right to remove it because society is not like what it use to be and if we make a change like this, then I feel a few things can change. Eventhough I'm still young I feel my teenage generation should stop all the violence and stop becoming influenced by everything they see or hear, and if we focus on the more important things in life, then this world can be a whole different place." 3 3 3 4 4 4 +4667 2 "Censorship in librarys can be a positive and negative thing. I think this because there can be somethings that you @MONTH1 not want your children to read. But there also can be things that you do want them to read. Age groups can play a big role in censorship because there are things that you dont want to see a kid reading when he or she is young. But if it is censored then they will not even be able to read it when they get older. It all depends on what kind of things are in the books, music, movies, and magazines. If you find something offensive that you read in a book or saw in a magazine to some people that @MONTH1 not be offensive at all. This is why I think that the censorship can be good and bad. I am sure that there @MONTH1 be somethings that you have read that wasn't offensive to you but it @MONTH1 still be offensive to others. Censorship in my opinion can be a good thing when the things that are in the book, movie, magazine, and music are not true and that @MONTH1 be offensive to more than a small group. Lets say that there are two books written about the same true topic. The first books material is very well written and @MONTH1 have offensive material in it here and there. The second book is also well written but @MONTH1 not all be there the whole story @MONTH1 not be the same as what happened because they censored it because it can't be in the library. Which would you rather read? Personally I would rather read the book that @MONTH1 have some offensive material but has the complete story of what happend. Say you were the writer of a book and it took you a long time of hard work and dedication to finish the book and get it published. Would you want your book to be on the shelf at the library? I know I would but if your writing about something that happend in your life that could have been offensive to others they @MONTH1 not allow that book on the shelf of a library. If the things that are in the book are true or are in real life. Than why show your children a book that isn't true? Im not saying go get your child a war book and have them read it when they are very young. When reading a book that someone spent a long time and lots of hard work on you are looking into their perspective. Maybe there perspective of what happend is alot different than yours, but that can be a good thing. Even with the offensive material books, movies, magazines, and music can still be good to some people and bad to others. I have went to librarys and found books that I was interested in and I think that some of them could be found offensive to others. If the contents of the book, movie, magazine, and the music are not true and can be found offensive then sure that should be censored. But if it is censored it should only be for a certain age group. I have also went and got books at the library that have true stories that can be found offensive by some people, but that doesn't mean it should be censored. A book that @MONTH1 have material in them that could be 'bad' for some people. That does not mean that after they read it they are going to go start using the same offensive language that could be in the book. It all depends on the persons perspective if they find a book offensive or that has some 'bad' material in it then don't read it, and find something that you wouldnt find offensive. Overall the things that we read, watch, and listen to @MONTH1 not all be bad even if it has some offensive material in it. To some it can be bad to others it can be part of their life. If I had a story to tell and I spent a long time working on it. I would want it to be read, seen, and heard. Censorship @MONTH1 be good for some and bad for others. If you are a person that allways likes a happy ending then maybe censorship is good. But if you want the whole story that can be non-fiction or fiction then censorship is not for you." 4 4 4 4 4 4 +4668 2 "If they are offensive they sholud be taken off the shelves becuase the little kids would'nt get they. And i think that they should not be and there and the frist place because almost every body goes to the lidraries. If i found the offensive they would promble get shut down or who ever put they would be fired. the kids should not see them or know about them at all. the offensive books, music,movies, magazines are not most to be found in a lidraries that kids go to. I think that most people would be mad at the schools or the libraries because they got them. And most pairnts would go talk to the people that did that. But if that happen to me if my kid came home with one of the offensive magazineas or any thing i would ask them where you get it and then go to talk to the poelpe that runs it. And most of the people that founds those things would be mad at the kids and its not their promble that someone did that. And the frist thing they should do is have a @NUM1 or older on the books, movies, magazines, and music if they are in the libraries. They should not be where the kids go and read books or nothing like that. They should be where the people that are @NUM1 or older get them but i still thing that they should not be and there. But if the offensive are in libraries people should take them to court offensive books, movies, magazines, and music" 3 3 3 3 3 3 +4669 2 "Do you believe that certain materials, such as books, movies, or music should be removed from the shelves if they are found offensive? I do believe so. The reason why is because there can be a lot of books, movies, or magazines in certain places like the library or stores that can involve offensive stuff, such as violence or other bad things. A lot of things can influence to the reader if they read a book that is offensive or if a kid see's a movie that involves violence. One reason I think that books should be removed from the shelves is if they are found offensive because what if the reader is reading the book and they find a word that offends them? Or what if they read a book and it talks about bad stuff? Or maybe a kid can read a book and can learn bad stuff. A lot of things can just occurr while reading a book. And many people sometimes take it real offensive if the book talks about there religion, race, or anything that involves to there personal life. That's why I think books should be removed off the shelf, so people will not get offended. Another reason will have to be that if a kid or someone under age rents a movie or there parents rent the movie. Then the kid would probably want to see the movie and they would not know what the movie is about. The kid might see something that is bad or might see a lot of violence. Sometimes parents don't really realize what there kid's are watching. So it's important for them to learn and watch for there kids. In movie's anyone can see a lot of bad thing that can effect anyone or can offend anyone. So I think that they should not have certain movies on the shelves that can harm or offend certain family or parents, espicially there kids. Magazines can also be found offensive to a lot of people. Whenever you go to the store you always see magazines on the shelves or somewhere else. It's either talking about singers, people divorcing, violence that ocurr around the world, arrests, or it could even have bad images that anyone could see. Which would be something bad, especially if a little kid picks up a magazine that has soemthing bad inside. That's why they shouldnt have magazines that have bad stuff in public. Or adults shouldn't buy certain type of magazines because they never know what there child can expect to see. So there is a lot of reasons why I think that people should remove certain book, movies, magazines, or anything that involves offensive stuff. All around the world you will see stuff that can offend you or anyone else just by seeing something on a movie, by listening to a song, or even my reading a book. It's just not a good idea of having stuff out there like that in certain places, like the library, stores, or anywhere else. Especially if there is people that take it really offensive when they see a title of a book that is bad or when they hear a song that has a lot of bad words. It's just wrong having stuff like that that can offend a lot of people. What if I read a book and it talks about my race or religion, would I take it offensive? People should ask themself that, before they read a book or see a movie. So they will decide whether or not they should have books, magazines, or music removed from the shelves." 4 4 4 4 4 4 +4670 2 "Yes I do believe that certain books, movies, music, etc., should be removed. They should be put in a different position for children unable to find in the area. Because certain materials in the objects listed can start off bad behavior. In order to keep the objects from being found from childern is to set them in a different area. Some where childern are unable to reach. like in high areas like the top of the shelf, or the closet, maybe the attic. For better safe keepings place the certain objects you feel that can give childern bad ideas in a personal safe. where no one is able to get things out. It is important for some items to be seen, listened to, or watched for older people.For example, books can provide pictures for childern to do things that arn't right in there cerent age. Music can talk about stuff that that person done, and make that child want to do it because they might think its cool cause the artist does it. For the magazines they show articals of rapper, actors, and other famous people doing somthing wrong. showing a bad example for the child.Now for the materials they should be hidden in a place where no child would think to look at. Because the materials some times harm the child or maybe even put the child in the hospital. From experience I have thouched or took some material I shouldn't have messed with and the outcome wasn't good. From that experience I've learned not to thouch with items I know not to mess with. Thats why it is important to keep certain items from childern. Because the outcome maynot be what you wanted. serious actions might come from the objects, and later on come from the same child that either listed to, saw it, or looked at it. So make sure the items are safe from childern hands" 3 3 3 3 2 3 +4671 2 "I think that certain things in libraries should be taken off shelves if found offensive but not all. One of these things is anything that undermines or degrades one's religious beliefs. Another thing could be anything involving racial stereotypes or obvious racial comments. Having anything containing this could spark conflict within or outside of the library. Another thing that could be, but not entirely, removed from library material could be books that express violent or criminal acts. This type of material should only be given to an older audience. I think that anything that contains slander or judgement on another person's religious beliefs should be removed from library shelves. As time goes on people are taking religion more and more serious. With that being said I don't think anyone would want to read a book or watch a movie in which the things they believe in being made fun of or rejected. It @MONTH1 not seem like harmful material at first glance, but your opinion @MONTH1 change when your customers come back angry and frustrated about what they read and saw. It would be a better choice to avoid this conflict with your customers and keep this material out of your library, unless you want to deal with complaints and costant arguments. Another thing that needs to be removed is racial material. Racism has been one the worlds largest problems, it affects us all no matter who it's against. Picture a book in your library that calls all black teens a problem or a book that says all arabians dangerous, racist isn't it? Now imagine if your customers were of one of those two ethnicities, it's not a good picture at all. Keeping these stereotypes and harmful sayings off library shelves is a great business choice and will keep all customers happy. The last thing we want is for a customer to say 'those people are racist!'. Lastly I think books that express violent and criminal acts should be censored from minors. Kids always follow what they hear or what they see. Since they're still in that stage where they rarely do things in their own way they @MONTH1 mimic or copy things they see. Another problem that surrounds this is peer pressure which will get more and more children commiting these acts. If this is to happen many parents will become outraged and blame the libraries for relaeasing this material to children. So the best choice would be to keep this material away from minors, if it is contained within your library" 4 4 4 4 4 4 +4672 2 "Many people i know would be very upset if there was'nt anymore books on the shelves of the library. I think there should be books that are offensive, who wants to read a book that is boring and not exciting.The libraries should have lables on the books so when people go to check them out the books there would have a lable that says this book @MONTH1 not be right for sertin people and my contain bad language. Thats just a example. There should be adult and children sections in the library maybe sections for every type of books like murder and mystery.That also goes for the movies, music and, magazines. I love going though the books in the library you never know what to expect out a book" 3 3 3 2 3 2 +4673 2 "Do you think we should have censorship in our libraries? I say no because if we had censorship then there would be very few good books, magazines, and movies because in this world today everyone gets ofended by something. For example in action, horror, and comedy films there could be blood, violains,and cursing. which some times make a moive good.Even in some book there is cureing and violains. Some @MONTH1 even seem provocative. For example in @ORGANIZATION1 the book repedaly use the n word.Even same magazines like fasion, sports,and same car magazine are seen aas provocative. An if I walked in to my local libray and seen all my favorite movies,books,and magazine not on the self i would never go back again. Im not trying to say put adult books in the elementry school libray. but in the public libray its ok ot have book like that. Could you amagine a libray with cenrsorship? It would empty." 2 2 2 2 2 2 +4674 2 "Today, we all have a very large variety of books to choose from when we enter a library. Some are childrens books, while others are intended for a more mature reader. Many parents are scared that their child will read a book that @MONTH1 be inappropiate for their child. The thing is, if everyone removes the books that they don't find acceptable, there won't be any books left in the library for us to enjoy. What makes a book unacceptable to read? Could it be language, graphic scenes, or parts that are just extremely scary? Many people think that books like these should not be available for anyone to read. Removing a book from a library would be done through one's opinion. This is not fair because we all have the right to free press, which means that anyone can publish anything they wish to and everyone has the right to read it. By removing books from a library, you are violating not only the author's right, but the reader's as well. Unfourtunately, there are some books that @MONTH1 cause a child to become scared. When a child reads a book, it's harder for them to realize that they are just reading a book. Many children take in every word of a story and turn it into a reality. Not only can this scare a child, but it makes it extremely difficult to explain that what they read in the story is not true. As more and more of these books are released, the more likely it becomes that children will be reading these offensive stories. I believe that removing books from a library based on opinion is wrong. I understand that leaving these types of books out for children to read could cause a problem, but libraries are usually set up in sections. For instance, there is a childrens section, a teen section, and an adult section. This helps kids remain in an area appropiate for their age. I think that if a parent is worried enough that their child will read an offensive book, then they should go with their child to the library when checking out books to read. A public library is designed to accompany a vast variety of readers. There will always be certain books that some of us find offensive. Removing books from a library only decreases the number of books to choose from; and if that were to happen, there would eventually be no books left for anyone to enjoy." 4 4 4 4 4 4 +4675 2 "No i do not figure that. I say that there is some material for adults, teens and children. The children aren't going to want to read the adult books and the adults aren't going to wanna read the childrerns books the teens aren't going to want to read the childrens books but they @MONTH1 want to read the adult books and thats ok. They will be adults soon they @MONTH1 be interested. there is nothing wrong with that. If the parents do not want there teens or children reading that kindf of material then they should go with them to the libary and make them get you approvial befor checking out the books, magazines or wwhatever it is they wanna read at the time. Movies are the samje there are different materials for each age group some age groups @MONTH1 be interested in other age groups material and thats ok doesn't maen it's wrong just means thetre maturing more and are interested or couriouse let them explore they will figurt for them serlfs if the material is righrt for them or not" 2 2 2 2 2 2 +4676 2 "OFFENSIVE BOOKS !!! Did you ever think about why students read what they are ready now? They read books about sex , guns , and many more because they think its exciting well guess what its not! The author's who make them type of books want you to buy them because they want their money , but they never think about the kids. Kids would read anything now because of those kind of things. I think that books like that should be removed because you dont want your child to grow up reading those type of books then when they have kid they wouldnt want the same. Many parents dont care what they chidren read as long as they reading its fine with them , its not fine its very wrong and I wouldnt expect a great writer to use bad language also they think its okay to do that! Thats why kids act the way they do now is because of books , movies etc. I think they should really stop making those books or have their own stores to where like adults can go buy those books or whatever books they want. I dont think kids would want to read those type of books anyway because they dont want to learn that stuff but some of them do and i dont think thats right at all. Thats why kids should read a very good book and dont judge a book by its cover !@NUM1" 3 3 3 3 3 3 +4677 2 "Censorship in libraries could have negative effects on the library. Parents have different views on books, music, ect. One parent @MONTH1 not have a problem with one book that has a few curse words in it but another parent might think it is not something they want their children to pick up and read then later on start using that kind of language. But if the libraries censor that book and is taken out of the library it would make a big impact on people because, what if somebody really likes that book but since someone complained about it, it is now not allowed in the library. The library would lose people because of books being censored. Everybody might not agree on different subject and they would want a certain book, music, movie or magazine censored. But if one person complained and the book is no longer there does that mean the libraries are going to be empty for now on. A person who @MONTH1 not have children might say, '@CAPS1 one little joke can hurt.' A joke not suitable for a child under @NUM1 to read, hear, or watch. But a parent might get upset that their child is hearing, reading, or even seeing these things and might band it from the library. When a student @MONTH1 need to go to the library to go look up their topic they must research for school and can not find any or even good books on that topic because someone who thought the book was offensive has been removed from the library. The student might get frustrated and would not know what to do and would have to get most to all of their research off the @CAPS2. What if their teacher/proffesor said that they needed more then one source and all their information can not just be off the computer they need a book, magazine, or newspaper source also. But since that topic they are researching about has upset someone they are not able to find the imformation they are looking for. Yes, there are some books, music, movies, magazines, and sometimes newspapers that are not for children under @NUM1 or even pre-teens to teens. That is why the libraries are divided into sections for the age groups. Still how do these section keep our children from reading something unaporite. Parents should know when they come into a library they should look for signs on the walls, if a library does not have signs that tell them what kind of section they are coming into all they have to do is grab a few books of the shelfs and read the inside cover or outside to suggest what kind of books are in the rest of that section. It should not be hard to find these sections because usually the children section has toys and puzzles in them and children theme walls. Censorship would not only get rid of the books, music, movies, magazines, etc., but it would also make our libraries empty. A lot of people have different point of views, his view might be diffrent from her view. From teens to young adults, teachers to children, parents to non-parents. Everyone is different no one person can speak for the whole world. This is why censorship would not work in our libraries." 4 4 4 3 3 3 +4678 2 "A lot of people have huge debates over what they think is appropriate for children and teens to be reading, watching, and listening to; in this topic there will be opinions discussed and logical explanations to what some people think is the proper things kids should be exposed to. First, kids should not be watching rated @CAPS1 movies or even @NUM1 if it has vulgar content, sexual content, violence, and etc. Even though some parents allow this, these movies and magazines can still have a huge impact on the child and possibly on how they act in his or her future. Secondly, children still have a good number of movies for them to watch and learn from that can better themselves for their education, career, etc. Finally, teens and young adults exposed to this genre of movies, books, music, or any other media based entertainment are more likely to make destructive decisions than a teenager who doesn't. Although this is not always the case, it does increase the chances of wrong decisions and it does have and influence on the younger minds. In conclusion, young adults, teens, and children should not be able to watch media that contains vulgar content, sexual content, voilence, etc, without parent supervision and permission." 3 3 3 3 4 3 +4679 2 "In libraries there should be a control over what certain kind of books, magazines, or movies that children should be able to read. For instance movies, are we going to go let a @NUM1 year watch a rated @CAPS1 movie much less let him/her watch a porn movie. No thats just plain wrong. That goes with magazines and books. Magazines have some images that aren't appropriate for the right age bracket that can easily pick it up and look at it. Books as well kids have very imaginative minds, they @MONTH1 not have pictures in them but still kids know a little more than what we give them credit for. Me, I would know this because as a little kid my brothers got a rated @CAPS1 film called '@CAPS3's @CAPS4'. After watching all @NUM2 of the films that were available at the time, I just could not look at a doll the same way again. Whenever my mom would get rid of a doll she used to own some of them had eyes that would move. I always sat at one side of the car while the doll would be as far away from me aas possible. To prevent other kids from experiencing what I did local libraries ought to create sections in the library where you've got your children section, the teen section, and the adult section. So then you can easily tell the kids to only go to either the teen section or the kids section. This should be the way to organize the films and magazines as well. I know some people wouldnt agree with my ideas but I have to ask them in return. Do you have any better ideas? Now for getting rid of stuff in our library that can be offensive. I would say we keep it, our kids need to know our culture that way they can survive in it. They need to know that there are still racists out there even though society tries to cover it up. There's no way there going to be able to keep other people's opinions from coming ears length of the @CAPS3. If our children are to grow up maturley they need to experience or at least know what bullying is. Maybe learn what an athiest is or find out on their own what a sexist is. Some of it is inappropriat'e so i will agree that kids need to find this out at a certain age but you can't keep it out of their lives forever. Thats why its best not to throw the books out that mention those sort of things." 4 4 4 4 4 4 +4680 2 "Censorship in Libraries Have you ever came across something in the library that makes you say, ' @CAPS1! That's inappropriate!' If so, I am sure your not alone. Just the other day I was in the library. There were posters up all around featuring a new movie now avalible for rental. I remembered seeing ads for this particular movie on television that looked rather repulsive. How could they allow this kind of thing on display like this? How does this affect the minds of our country's youth? My thought on this topic is clear, although I am sure I'd recieve some opposition from others, considering everyone has their own opinions on this matter. I do realize the library has age limits on rentals, but what about all these posters everywhere? You don't necessarily have to rent the material to be corrupted by it. I believe there should be a separate section for this kind of material. Another example of library rentals that can be harmful to developing minds are @CAPS2. New music sometimes contains lewd or inappropriate lyrics that have no place in the library. Even the covers of some @CAPS2 should be removed for the good of the public. It's interesting how these things just slide by the library. I once saw a young by renting a @CAPS4 that had the words 'parental advisory' right on the cover! No one stopped him. Books are the same way. Disturbing covers and titles are littered throughout the library. No one even cares to screen these books before they hit the shelves. So, when do you think someone's going to do something about censorship in libraries? It is hard to say, but I strongly believe it's up to protesters like us to stop this. I hope you'll join me in this epic battle for censorship, to keep our youth safe" 4 4 4 4 4 4 +4681 2 "I personally do not think that books or magazines and such with offensive things about them shouldn't be removed because they give people something to read. Most people don't want to read @CAPS1 or a novel. Some people want to read about crimes, mysterys, and action. There are alot of good movies out there but some of them I can agree with are too offensive to others. I gurantee that movies with comedy in them will be put down about what is being said. For example: @CAPS2 @CAPS3 to some people is very offensive. The only reason the person would think that the movie is offensive is because they are stubborn people that don't have a life. I can believe that there are literature materials that are offensive to others, but the person that criticizes others doesn't think that they are offensive to the people that read the books that offened the person that is being offended. Books about war to some people are too graffic. But those books about war are probably books about history. I have only started noticing the people that are trying to get rid of those books that they don't like. But back in the @DATE1's people didn't care about what was in a library. They just want something to read. I say leave the librarys alone!" 3 3 3 3 3 3 +4682 2 "Censorship in libraries is a great issue in the world today. Many authors now use offensive methods and terms to persuade their audiences. However, many do not. All authors have the right to say what they wish but there is a limit to where the books should be placed and who should view them. If libraries accept offensive types of magazines, books, music, movies, etc., they should most certainly be placed out of the reach of children. Like many libraries in the city, there is a section for children and a sperate section for adults. Any materials that are found offensive should be placed in a special section of the adult area and customers should be warned in some way. Since everyone has their own view of what is right and what is wrong, a special team should be placed in charge of keeping the offensive materials seperate. Those who borrow anything at the library @MONTH1 have the right to bring that special book or movie to the attention of those in charge. By sticking to this method, offensive materials can stay out of the hands of those who do not wish to see them. Items containing vulgar language is unjust to most. There are still the majority, however, who engage in the oppertunity to view these materials. Everyone does have the right to do what they wish but, from personal experience and growing up in a home where I was taught right from wrong, people should be treated with dignity as well as respect. No matter our color, size, looks, or personalities, we are all created equally as our constitution says. Therefore, we should only view what would be considered just to all. After all, everyone wishes to be treated kindly, right" 3 3 3 4 4 4 +4683 2 "Public libraries should be able to keep all sorts of content for all sorts of people. I feel very strongly about my statement, because everyone in this world is different. Many people have different interests, religons, and customs. If we took out certain books, and music from the library, it would defeat the purpose of calling it the public library. But if we had different sections of books, music, etc., people would be able to find what they want/need more easily, and no one would have to worry about getting offended. It would not be fair to anyone in this world if we took out certain books and materials because one person had got offended." 2 2 2 4 3 4 +4684 2 "People in this common era have different appproaches to the idea of libraries. Some view the library as a place to go and learn and to express yourself and be free. Others believe it to be a place where there is danger for minors and can be very innapropriate. These two opinions can cause an intriguing argument. People go to the library because they want to either get away, or just to be free and grab a nice book. There are many books to choose from, but you need to be careful while browsing. some books, although good, can be innapropriate to some ages, and that's when controversy spills. Parents think the library is encouraging the check-out of innapropriate books, but this isn't all that true. It's all about the placement of books, and that's what most librarians will tell you. They didn't encourage the kid to check it out, but they have every right to. It is also unknown that what is offensive to one person, might bring joy to another person maybe of a different race or ethnic background. I think that these so-called offensive books or magazines that parents complain about, should not be removed from libraries. There is a reason those books are there and they are not put up there to be offensive; so why take them down? I think a way we can monitor these kids to stay away from books their parents believe can be harmful to them is by making a rule stating that a child must be present with an adult in certain sections. This will not only stop the fact that kids checkout books much innapropriate for them, but it might also make the parents stop complaining and the controversy will end. People need to stop looking at the library as a place that brings negativity, but as a place for giving children joy. Remember, it was built for those who enjoy reading and so people can have a place to do so. Why complain? Find the positives in what it brings instead of looking down on it. Bring back the feelings of what the library brought to you when you were a child." 4 4 4 4 4 4 +4685 2 "Most modern day book, movies, music, etc. do a fairly good job of placing warning in the form of '@CAPS1 @CAPS2' sticks on their covers. But books from before this practice began to happen @MONTH1 be found more offensive then books today. Why? Well, that's because many books of the past use words that today are found offensive. But those books, movies, and music are not at fault like parents try to make it seem. There are examples of how each catagory is in today's society. Take the book 'The @CAPS3 of @ORGANIZATION1', written by @PERSON1, for example. In that story, there are words that are used to describe people of that time.. Back when @PERSON1 wrote the book, it was perfectly fine to use those words on those people, but in today's modern world, that is a book that has been on the list for being banned. It is offensive to use that word on people today, so parent groups and others are trying to get that book pulled off of shelves in hopes of erasing what was done in the past. I don't believe that a book should be banned for it's content, but rather how well it teaches its reader through its words. If it can teach a student in a high school or college class about the history and the culture of that time, then it shouldn't be banned at all. It should be read. Movies have a rating system for a reason. There are some movies that are just not meant for a younger audience. People must be of a certain age to rent, buy, or view these kind of movies 'leagally'. Not too many people listen to that system, even though it has exsisted for years. A horror film is not suitable for a @CAPS15 of a young age who believes everything he or she sees on @CAPS4. Movies shouldn't be banned just because it gives a @CAPS15 nightmares or makes them not as emotionally aware of what is right or wrong. That is the fault of the parents. They were the ones who let their @CAPS15 watch that movie in the first place. So the movie shouldn't be held responsible for the @CAPS15. If the movie was intended for a more mature audience, that's the way it should stay. And that brings us to music. There is a lot of music in today's age that can be considered very offensive. There are only a few 'pure' genres, free of the cursing that is used in many of the others today. But children, teen, and adults all find their favorite kind, and you can't change their minds then. The governement has issued that all music containing harsh words, horrid images to the mind, gruesome scenes, and other elements that are offensive to people, must carry a sticker on it. The black and white '@CAPS1 @CAPS2' sticker. When parents see this sticker on the @CAPS7, @NUM1 download, or whatever their @CAPS15 is using, then they know that it is more than likely not right for their @CAPS15 to listen to. Doesn't mean that the parent is actually going to listen all the time, but it means that there is a slight chance that their minds will not be tainted by 'garbage'. So, in conclusion, I believe that movies, books, and music that contain 'offensive' material should not be removed from shelves. Just because it is offensive to one person doesn't neccessarily mean that it is the same to another person. There are ratings on things for a reason, to keep children from seeing them and to help with the level of harshness that is given to today's society. People will still argue that books such as 'The @CAPS3 of @ORGANIZATION1', 'The @CAPS3 of @PERSON2', '@CAPS10 in the @CAPS11', and many, many more books like them should be banned. They will always fight that movies such as 'A @CAPS12 on @CAPS13 @CAPS14,' '@DATE1 the @NUM2', or '@CAPS15's @CAPS16' should be removed from store shelves because it gave them nightmares as a @CAPS19 or it gives their @CAPS15 nightmares because they saw it. And they will always try to fight and say that artist like @CAPS17' @CAPS18, @LOCATION1, and @CAPS19 @CAPS20 are not suited for their @CAPS15. Well, this pattern has been going on for years. Those books were made many years before, those movies are intended for a adult audience, not for a @CAPS15 of a young age, and those artists are just trying to make money like everyone else. So when parents try to argue about what should be on shelves and what should not, remember that it might be that parent's fault for letting their @CAPS15 view it in the first place." 4 4 4 4 4 4 +4686 2 "What do you want your children to be able to see in their public library? As we all know, there are things like books, picture, and movies that we do not want our younger generation to see. This is @CAPS1 parents are so carful with computers, and what their children have access to. Every situation has it's pros and cons, but in @CAPS2 cases if you analize the pros and cons you can come to an accurate conclusion. When you go to a library with your children, the children run off to do what they want, usually to the children's section. Let's face it, children do not want to look at adult book. Once children learn to read you might come across a bigger problem. As children get older they want to be able to do more things, like watching older movies, reading harder books, and look at want they want on the computer. I'm sure that the first thing that might come to mind is to censor the library, take away the horror films, the banned books excetra. This might be fine at first, but what about the adults that have every right to read and watch whatever they want. The library is free, does this mean that if our society does not like a book, movie, or magazine taht the adults must go somewhere else to pay for a particular book or movie as apposed to borrowing if for free at the public library. It could work, but if a child is going to look at bad things at a library what will stop him/her from looking at them at a bookstore? Another issue is banned books. @CAPS2 of them are classics that past generations have read in school. @CAPS1 would we decide to take these books away now? It makes it seem like the younger generations can not handle it, or that past generations have something to hide. The definition of a classic is a piece of writing that has stood the test of time. Does it just end here and now? @CAPS1 would we take the classics away? Let's face it, if the classics are not read in school today, and they are not read in the next generations what is stopping them from being forgetten? Some banned books parents will look at and say, '@CAPS1 would this be banned? I do not remember anything bad in it.' @CAPS2 of the time the classic banned books were written some time in the @DATE1, @CAPS3 @CAPS4 @CAPS5 or the @CAPS6 @CAPS7. Society was different then. When you read a classic it acts as a history book to show us how it was to live during the time it was written. Usually the book will be banned because of bad language which people thing should be taken out of our schools, but they are missing the point. That was how things were back then so, who are we to hide it? Does this mean that I think anything and everything should be put in our public libraries? Not at all. Some magazines can be avoided, or be put in a section away from younger children's eyes. Horror movies do not have to be taken out completly, just put in a different section. If parents are worried about monetering their children on the internet there is nothing stopping them from watching their children while they are using a computer. I think that there can be come cesorship in libraries, but sometimes our society goes overboard. As long as we keep an open mind and make the right decisions for our future generations we can make our country a safe yet edjucational place to learn" 4 4 4 4 4 4 +4687 2 "Have you ever read something that you have found offensive, upsetting, or has made you mad? Do you think that there are certian books that shouldn't be allowed in a library because of its content? A lot of books, music, movies, and magazines these days contain things that are hurtful to society or protray bad images of certian social groups. In @DATE1's society there are many different groups of people and a lot of them have thier own opinions on how they view different things. To me, when I think about a library, I think about how all different ages of people go to them, how there are many different groups of people there, and about the types of books that are in there. Taking this all into concideration, I believe that everything should be allowed in public libraries but I do think that there should be seperate places for books, magazines, and movies that should be only for adults. I think this because if you take away all the things that are 'bad' or 'offensive' to you, you could be displeasing those who find these things interesting or enjoy reading them. In this case, people would not come to the library anymore because they cannot read what they enjoy reading or find interesting. By saying these things, seperating the books into age groups is a good thing because then the younger children who are running around the library will not pick up something that they should not be looking at. I also believe that is would benefit them because then if someone comes into the library looking for a book but does not really know what to do and they go to where their age group would be; then they can see everything that is recommended for them. From my own experience, I know that I have read some books and looked at some magazines that I probably should not have looked at because I was too young. This does not mean that they need to take them off the shelves but maybe that they should be placed in an area where someone my age will not be able to find them. So the next time you go to the library and see something that is offensive to you, just remember that there are a lot of different people in this world who might find what you think is offensive, interesting" 4 4 4 4 4 4 +4688 2 "Yes, there are a lot of books out there that have graphic and sexual phrases, and there are alot of concernd parents out there that are worried about what the libraries are possibly letting their kids read. One good idea would be to put age limit signs in certain areas on the libraries, that dosent neccisarrly mean that the kid is goin to listen to that sign. We all know for a fact that pornagraphy will stay away from libraries and stay were they are at right now so thats not an issue the parents should worry about. I think the libraries should be broken onto sections. Theres a kid section, a teen section, and a adult section, but i don't think that the adult section should be to far off the teen section because when we say adult books or magazines everybody expects it to be one thing, porn. It should still be some type of book with some kind of censorship to it. There should be doors blocking each entrance to each section of books, and to get to them you to show the librarian some proof of age to be able to get into those sections, except the kid section. The kid section is a section that all kids can use, because we know that that section of books would be harmless to kids. I think that with that kind of security it would let parents to be able to be less stressed and worried for their childs safety and insecurity of the mind. There are tons of other ideas to explore to be able to try and keep books with some kind of censorship but most of them are off the wall and rediculus. I think that musoc and movies shouldn't even be in libraries just leave those to other stores it's better to let stores deal with that than libraries. The librarian probably dosen't even know half the cds that probably get checked out anyways. So it's best if you don't have those in there at all. Give some thought to these ideas that I just sprong at you. I personally think that having doors blocking to get to certain books would be a great plan to use, because it would block access to these areas from certain kids. Some other parents or people might have ideas of there own and it would be great to hear them or have some kind of bullitun about them around the city ofr town" 4 3 4 3 3 3 +4689 2 "Look it's a plane, it's a bird, it's a...harmful word. There has been many times when i have read a passage wether it be a magazine article, a book or a newspaper and I have come across harmful words. They @MONTH1 not all mean harm towards me but towards other readers they could. People have their own opinnions on different views, so a word or passage could effect me differently then say smeone else. I don't think it's the materials I think it's the readers maturity level that makes a difference. That is how harmful words get changed into names and then the next thing peers are calling other peers that word. For instnce the word 'wetback' in biography book about the @CAPS1 it is okay to be there, it is when the reader inturperates it the wrong way, and they think it is funny, and cool to go around and call someone that word, especially a person of that race. That is when I dont think materials like this should be on shelves, but then again it goes back to the maturity level. These words or passages can become harmful to someone that hasn't even read it, but because someone that has took the iniciative to start calling someone that word, or relating that passage to them. Books can, and are a great reliable source for schoolers that are researching for class projects, i think it's the certain topics of books that's get these words turned into harm. Books about certain races can cause name calling among a school just because they read it in a book and think it is okay, because the book described a person that way doesn't mean it's okay for the reader to start calling people by that word. Other topics like 'sex' in a book can be inturperated in the wrong way as well. Some teens think it's okay just because the characters in the book are doing it then it's okay for them and their significant other to try it. Either way with the book left on the shelf or taken off it is still going to be a problem with name calling. So it's going to take something else then a materials being removed from a shelf to find a solution to this problem" 4 4 4 4 3 4 +4690 2 "Cencorship is a very large thing to talk about. Some people think that a book has too much talking about sex in it, while others think that it is sutable for the public. Sometimes people want other people to make the decitions on what they read. People need to decide what they do and don't want to read and see. Firstly, people think that other people are incable of deciding for them selves what they want to read. They blocked books because they thought that it would show a side of things to children that they did not want them to see. The @CAPS1 @CAPS2 books were block because they had witchcraft and they were scared that people were going to start trying to do it. Grapes of @CAPS3 was banded because their was slavery in it. Even though slavery was a big thing they still did not want any of the younger people to have it. Secondly, some music and movies should be banned. Music has become a way for people to express them selves. Latily they have gotten to the point that drugs and 'hos' are alright to talk about. One song that I just saw was called @CAPS4 @CAPS5 @CAPS6 @CAPS7. Now if that is not sending a bad message than I don't know was is a good message. Movies are in the same boat as music. They are showing the violence that people only have in their head. @PERSON1 was a movie that off the top of my head was showing a minner that had gone completly blood thursty and was killing any one that went in his cave, just because he could. Although, somethings we need to see the things that people have in @CAPS8 heads. I know that I am going to be more carful when I am out. In conclution, @CAPS8 is no real yes or no anser. @CAPS8 is always exceptions to whatever people say. This is why people need to decide what they do and don't watch and read" 3 3 3 3 3 3 +4691 2 "What race are you? What religion are you? What have you been taught? Almost anything like these could be considered offensive. So should these types of things be taken out of libraries? No, these types of things are everywhere. You just can't get away from them. Today you can find so many offensive television shows and commercials. For example the commercials for @CAPS1 gum with that @CAPS2 woman, some people might consider that offensive. You might ask, '@CAPS3', well there might be a person who has a diesease who can't get that 'clean feeling' and always has bad breath. That person might take offense to these commercials. Another example might be television shows, like @ORGANIZATION1. Some @CAPS4 and just other races get offended by these types of things. Does that really mean we should get rid of them though? People everywhere are somehow offended by something, the world isn't perfect. Even if we did take out these types of offensive material in libraries, it could still be seen. So whats the point? If you tried to take it all out, like everywhere in the world everything would be crazy. There is no such thing as a perfect world, I believe if there was people would go crazy. For example in the movie '@CAPS5 @CAPS6,' the main character finds a town that is suppose to resemble 'The @CAPS7 @CAPS8' or a perfect society. In the town at first everything is nice, but then everyone is so perfect that he can't stand it and leaves. The best thing to do is let these materials stick around because there is nothing you can do to get them gone from everywhere else. Also they help kids learn, if you keep them locked up and not knowing anything, then how far are they going to get in life? So should these things go away or not? What do you think?" 3 3 3 3 3 3 +4692 2 "Is there a song that your parents wouldn't let you listen to when you were a child? When you sang this song did they yell at you and ground you because they had told you many times before that you weren't allowed to listen to it? How about a movie that you wanted to go watch because it was what everyone was talking about but it was rated @CAPS1 so you weren't allowed to watch it. That book on that shelf that you accidentally ran into while doing a research project. Containing inappropriate language and terms. There is much media and books that are out there that parents wouldn't want their children to read. But over all there is the government who censors things going on around the world. Censoring can have good and bad qualities. In my experience I've noticed that people that know less tend to be more happy than people who know more. But if you are able to read and or watch these censored materials you would see the idea from a certain point of view, and maybe agree with the person. Most news is about things that are bad, rarely any good news comes around. For example if something were to happen in @LOCATION1, where thousands of people were being used to test if lions liked to eat humans, the government would censor the news to the people in their country due to any reason. If there was movie that was made that was racist against @CAPS2 people the government would probably censor it. Things that look bad tend to be censored. I've noticed that people who read censored material feel special because they read or saw something that wasn't supposed to be known by the rest of the population. A lot more freedom of speech would occur if censored material wasn't censored. People also tend to become mad when they find out that material is being censored because they feel like something is being hidden for them, could be valuable information. In reading I have noticed that societies that practice censorship tend to have angry citizens. But in the other hand if they believe that it's for the good of the society then they accept the fact that it's not good for them. People also want to be given the right to make their own decisons. In a censored civilizaton they have no idea what is going on outside their borders and are usually clueless or being lied to by their government. Censorship can have good and bad qualities. People tend to be offended when material is censored, but it's probably for the best for them. Hidden information could be good and bad but mostly bad, most people want to know the truth rather than a lie. Censorship is just bad in general, people should have the right to make their own decisions on what they want to read or watch." 4 4 4 4 4 4 +4693 2 "I somewhat agree with taking out books,music,movie,magazines, or any other material that could be offensive to someone, because it could be racial or it could be about something that isn't appropriote for children to read. I think it just depends on the topic, maybe one thing could be offensive to one person and not the other, so people should choose wisely what they read. It wouldn't be fair to take certain books from the shelves of libaries because people take different interset in different topics, so say one book has something in it that someone doesn't think is appropriote but another person think that book is fine, it wouldn't be fair to the other person to take that book from the shelves. But something that I do disagree with in books or magizines that is inappropriote is pictures and comics, because children shouldn't be allowed to have access to a book,movie, or a magazine that has that type of content in it. But also I think that parents or an adult should look at the criteria first before they allow a child to read or see it. So it depends on what type of things are in the book,movie, or magazine. Basically it's up to the person, if they don't like the criteria in any of those things then they shouldnt look into it" 3 3 3 4 4 4 +4694 2 "Do you think that certain materials should be removed off library's bookselfs if someone dislikes or does not agree with the topic or the plot? Do you believe that a book should be banned from any public library just because someone has a negative opinion about what the book is convincing readers? I believe that every person has the choice to not read a book or magazine, or even watch a movie, if they find it offensive. 'All of us can think of a book that we hope none of our children or any other children have taken off the self. But if I have the right to remove that book from the self- that work I abhor- then you also have exactly the same right and so does everyone else. And then we have no book left on the self for any of us.' @CAPS1 quote from the arthur, Katherine Paterson, from my opinion, I believe that what she is saying is very true. Considering that everyone has a different opinion on many things, if everyone had a right to remove one book that they did not like or felt it was offensive from the self, there would not be a varity of books for people to choose from. I have sometimes gotten corious about what a friend was reading and asked them if they thought it was a good book. They either tell me it is a good novel or tell me it was horrible. Then I would read a few pages and I would think it was pretty good. So if they had the right to remove that book I would have never got the chance to read that book. I do not believe that people should be able to remove books from shelfs just on their specific personality. Everyone has a different opinion or perspective about books. Everyone should get a large variety" 4 3 4 3 4 3 +4695 2 "Have you ever went to the library and while looking for a book you come across a book about slavery with strong language or teenage years which included alcohol, drugs, and sexual content? In the library, you can find books for leisure, study, training, and books found offensive to a variety of people. People from children whose parents would be appalled by what their kids are reading about to adults find books offensive. Although there is things in the library that are found offensive, I believe that books, movies, magazines, and music with offensive things in them should stay on the shelves because the internet is no different then the offensive things in a library, most people don't mind the vulgar and violence within the pages, and there are some fantastic books that some might find offensive. People for centuries have been writing and coming up with songs, movies, and magazines. What was accepted 'back then' is now considered inappropriate for viewers and readers. There are many things in a library that, if not careful, could corrupt your children. Children reading about violence, drugs, and other no no's are what teaches them wrong. Parents and other people have been concerned about the censorship of libraries. Hard enough as it is, parenting doesn't need the help of books, movies, and music to influence the bad onto children. Children are the future and they need to be taught the right way. An old librarian once told me that books need to be cherished throughout the years because they will eventually be replaced with technology and all the books, good or bad, will be gone. It's hard to even imagine how technology is replacing various things in our lives and how it has changed from when it first started to be popular. How does this pertain to offensive books? Like almost everything out there, the internet could be used for good, or for harm. Parents are concerned about their children reading books that are bad but let their child surf the internet which is hard telling how many inappropriate sites he/she might go to accidentally, or on purpose. Books, music, and other offensive stuff in libraries are minor compared to the internet. Protecting children from adult content filled libraries should be the least of a parents concerns. Even if they are concerned about the minds of their children when they go inside a library, they can filter what a child looks at and reads about. The internet is the real bad guy if anything is going to be blamed for corruption of minds. Many people throughout the world have different tastes of what they like in a book. A good plotline, good dialogue, interesting theme, drama, language, violence, drugs, alcohol, and sex are all ways people find reading books enjoyable. Their own opinion on what is interesting is what helps them decide on books to read. Reading books is a passion to some and enjoyable books is a must for them. Without offensive books, people would find reading boring, and wouldn't be as popular as it has been. I don't know about you, but I enjoy books that aren't boring. Most offensive books are not boring and the action is what gets my attention and keeps me reading. There are great books that for years people have enjoyed reading and continue to read today. Even thought they are offensive, they provide good details that are required for a good book. Tom @PERSON2 and @PERSON1 are famous for writing ghory, violent, grusome books that would be qualified as offensive to others. You have the choice not to read them or to read them. Books that deal with slavery @MONTH1 also be found offensive like the book @CAPS1. It does a supurb job at describing how things were during slave times. Books, music, magazines and music should not be removed from the book shelves because they are essensial to everyday people and reading. They are required by some to enjoy a good book." 4 4 4 4 4 4 +4696 2 "Hi, my name is mason and i'm writing about wether we should take books off the self and etc. People have differnt views on differnt things. Books, books give a differnt form of lerning to differnt people.I personal don't learn from books as well as I do from the internet or tv but books are nice to have every once in a great while. Eeryone like to sit down and read a good book every once in a while. Music doesn't really teach you anything, it relaxs you in differnt ways. Some people might learn from listening to music but i'm not one of those peole. It influnce you to get movited, say your getting ready for a football game and you want to get hyped up for it, well some music can get you hyped up for that game. When i sit down and watch a movie I can learn from it cause i have the patien to sit down and watch it, to learn from it but that is just me other people have differnt ways of learning but the best way for me is to watch movies. They get stright to the point and don't waste time telling you stuff you alredy know. Magazines are helpful to they have short artcicles that get stright to the point too, and that is what I like about magazines and movies. Even though there are very few magazines that give out helpful information, the ones that do help out alot. So I think that music should be taken off shelves because they don't really teach you alot but books, movies, and magazine do help you to a certian point. It is up the other people to decide wether music should be taken off the shelves not just one person cause music might help other people in differnt ways not just one way but many ways too" 3 3 3 3 2 3 +4697 2 "I am a student from @CAPS1. I wanted to let you know that there have been some great and interesting books that I have read from the schools library and the public library as well. The only problem is that there have been some complaints from my friends and families about the books. Not only that but I've also seen books that are not appropriate for children to be reading. I just wanted to let you know this because I was kind of thinking that taking books out wouldn't be a good idea for them to do. I think so because without books less people would want to read and not learn. To begin with, I wanted to talk about the complaints that friends have told me. One of them was that at the school there had not been good books to read and that they want to take most of them out and replace them with the ones they like. I was thinking that if they did that they would be the only ones to go to the library because it is only there choice and not everyones. So what I'm trying to say is that if we don't have good books students won't be going to the library. If they don't get books then they won't do well in school which is something that will affect the school. Furthermore about the complaints was that one of my own family member had seen a young girl looking at a book that was not appropriate for her at the public library. So instead of taking those types of books out they should be put into a room that is strictly not for children to go in. They should do that because if it were to be taken out then that book wouldn't ever be used again. Also another reason is that If they were to be taken out, then another peson might need information over the topic of the book and wouldn't be able to find it because it isn't there. That is why I thing those types of books should be in a special room intead of them being taken out. Finally, as I had somewhat mentioned earlier is that books are truly important. That is why I go against taking books out that are not favored by others. If a person doesn't like a certain book/ magazine then they should just request the book/ magazie that they want to read. By doing that then the book that arn't being used could actually be used by someone else that is intersted in it. So if we keep all our book, then more students and people would go and read. In conclusion, people might say that taking out book is better than keeping them. Well in the way I see it, they are wrong because keeping them is better. It is better because someday those books can be useful nomatter how old they are. If they were inappropriate books like metioned earlier, they should be put away in a good place. If there arn't enough interesing ones then requesting one is another way to do it. That is why I think that taking out books from the shelves is wrong and they should do watever in order to not let books go to waist" 4 4 4 3 3 3 +4698 2 "There are things in this world that are relative. Censorship is one of them. Relative means that one person has a different view than that of another. Censorship is when a person or organization in authority does not allow people to see things that they believe are inappropriate. One phrase that is very important to censorship is 'things that they believe.' @CAPS1 is inappropriate to one person could be deemed viewable to another. This should not be decided by one person or even one group that believes they know @CAPS1 is socially acceptable or politically correct. Censorship in libraries are not a good thing. @PERSON3 and @CAPS2 walk into a library, and there is a magazine on the rack that depicts a person standing over a two hundred pound, twenty four point, state record, whitetail deer with with a gun in their hand. @PERSON3 is a firm believer in providing for his family and the rights given to an individual in the second ammendment of the @LOCATION1 constitution. Even if that means killing an animal for its resources. For some there is pride in harvesting an animal and knowing that they provided that meat. @PERSON3 will see the magazine as an opportunity. He might learn tips from the magazine, or find some new gear that he thinks could be useful. @CAPS2 on the other hand is a conservative. She believes killing is wrong and inhumane. She goes to the store and buys her meat from the freezer section. @CAPS2 prefers not to know where her meat came from. She will view this magazine as inappropriate. Again, censorship is relative to the person looking over the material. Does that mean that just because @CAPS2 thinks the magazine is inappropriate, it should be taken off of the shelf so that someone like @PERSON3 can not read it, appreciate it, and gain knowledge from it? That choice is up to @CAPS2 not to read the magazine, not to the librarian. @CAPS2 is responsible for her own views and choices. She is entitled to them. @PERSON3 is entitled as well. Leave the choice to the reader. Over in the book section there are @PERSON1 and @PERSON2. @PERSON1 is a fanatic for science and history. @PERSON2 has a preference for religious books that explain the theology behind some of the things the world says and things of his religion. At the end of the row, on top of the shelf sits a book on the topic of evolution. @PERSON1 belives this theory and sees the book as interesting. @PERSON2 looks at the book and thinks to himself, 'That stuff is not true. Why would anyone waste their time reading it.' Does that mean that the book should be taken off the shelf because @PERSON2 will not read it. @PERSON2 should just walk away from it. If he chooses not to, that is up to @PERSON2. Leave that choice to @PERSON2. Up at the desk there are the librarians.They have their views and opinions and are entitled to them as well. But the books, music, movies, and magazines that are displayed for checking out should not be chosen because he or she likes them or opposes them, but because someone might be looking for the information in that material. If the choice is left to them that material might not be available to the reader that needs it. Censorship is a terrible thing for libraries. It takes material away from people that can be useful. Censorship, along with many other things is relative. @CAPS1 one person @MONTH1 deem inappropriate could be viewed as totally fine with another person. Based on moral values, character, and opinions developed with progression of life, people have made judgements on @CAPS1 is appropriate or unacceptable. That choice to look at that magazine, read that book, or listen to that song should be left up to them, not made for them." 5 4 5 4 4 4 +4699 2 "Have it ever occured to you that some of the things we read about and take home from libraries are not for young children? Certain materials that are found in libraries are sometimes not age appropriate or even offensive to other people. Not all books, music, movies, and magazines offend people or condone in things but they also give children the right to learn about things or know things that are to rated and shouldnt be learned at a library. Most music in todays society is not appropiate because of the content that is used such as sex,drugs, and violence. last fall when I visited my shools library I came across a movie that I thought was not school appropiate and should'nt be seen without a parents verification. Anything about sex and drugs give young teens and children the right away to do it even if they read it, heard it, or saw it in school. when im walking through the town and I see teens doing things that should'nt be done the first thing the first thing he/or she says is 'I heard it on a movie'. Most public lbraries have movies, book, music, and etc on shelves that aren't appropiate but it should'nt be welcomed to young children. most librians are busy and cant watch the entire library, but can make sure it is secured and put away from juveniles. Most of the time a child will read what looks interesting and fun. Todays books that condone violence have guns drugs and sexual content on the front cover making it hard for a child not to want to read it. In a school library @PERCENT1 of the time all books are age appropiate, but in a public library it's not because the public library is not just for children but for adults too. some books shouldnt be of shelves but the rated things should be. In conclusion libraries need to watch what's being checked out no matter who its from and I.d should be asked for." 3 3 3 3 3 3 +4700 2 "All things in the world are not strictly black and white. Every person is different, with varying ideas. So when some people are certain that a specific word or topic should be restricted, there will always be another person to say the exact opposite. Sometimes, what's found as 'vulgar' can only be introduced with the intent of education. Also, this ties in with something our country was founded on, which is freedom of the speech, and the press. Magazines, music, books and movies are mainly for entertainment. Everyone who reads or watches something will take it in differently, and it will have a varying effect. Let's say there is a @NUM1-year-old girl who just had her first day of high school. While at lunch, she slipped and dropped her tray of food. Later that day while she's alone reading her favorite magazine, she's reading an article about embarrassing stories, where one girl accidentally walked into a boys' restroom. Some parents @MONTH1 deem this inappropriate, but it has made the young girl feel better about her situation. It's human to mess up and act crazy; we aren't perfect by nature. So when we see errors made into comedies and dramas by any form of media, it's human to realize that we aren't the only ones who undergo these events. To censor books and televisions would be like claiming nothing bad happens. Not to say that a novel written about brutal murder that contains sexual references should be given to a little kid, but it should not be pulled from the shelf all together. The topic of censorship in schools is also a very sensitive one, especially with younger kids. As Katherine Paterson pointed out, if every parent had the right to remove a book that they thought was not suitable, then eventually there would be nothing left. Many parents are uneasy with the thought of their child being taught things like sexual education, but on the other hand, there are also the parents who appreciate it. They do so not because it saves them time, but because certain explicit topics - to an extent - can help someone mature if it's done in a controlled environment. Years ago, it was not uncommon to see censorship in the media. It could range from saying 'intercourse' to replace 'sex' or it could be something like extreme propoganda. There's a reason that our consitution protects freedom of speech. No matter how appauling someone @MONTH1 find a topic, it usually has some type of informative purpose. Otherwise, it probably wouldn't have gotten issued. Choosing what is and isn't offensive is a matter of opinion. As previously stated, no two humans are exactly the same, and their opinions won't be either. So this means that if one person out of a group is allowed to dispose of or censor whatever they find necessary, it must be recognized that some portion of the remaining people will be unsatisfied. This is usually where people will claim that the law protects their freedom of speech. In the end, the media is largely for entertainment. It provides numerous shows and articles, with a huge array of topics. This goes to show that if one should find something offensive, it doesn't mean they have to rip it off the shelves and complain; it simply means they have the opportunity look elsewhere" 4 4 4 4 4 4 +4701 2 "@CAPS1 are many prespectives on censorship in our country. Thats just how our country is we have different oppinions on everything we do. But we have to live with it, @CAPS1 are many different prespectives that come from old, young, parents, and children. In libraries @CAPS1 are some books,music, etc that @MONTH1 be offensive to people. But we all have different oppinions therefore we can never listen to one pupil. Or it would start a fight between people that disagree with him/her. I think people that go into the library should be mature about what goes on in @CAPS1 otherwise they shouldn't be in @CAPS1 looking at whatever they are wanting to read about. The library is opened for the public and has lots of knowledge it shares with us. But if we get rid of all the censorship then it denies people knowledge. The books that they would get rid of would be because of the children. Because parents don't want children to look @NUM1+ material that is not appropriate for them so they try to keep it hidden. I think we should keep censorship around because it would deny knowledge to people if we did not keep it. And we should remind parents that some things in the library is not suitable for childrens eyes and let them be responsable for what thier children look at." 3 3 3 3 3 3 +4702 2 "I do not think that a random stranger should have the right to decide what books to allow in a public library. If they have a problem with certain material in certiain books they should bring it to the attention of the library. The auther who wrote that book has the freedom of speech, and they are allowed to write anything that they would like to write. If somebody did not want their children looking at a book, or reading that book, then they should just tell their child to stay away from it, and if they raised their child properly, he or she should respect those boundries that the parents have set. However, I think there should be a line drawn about what is too graphic to be displayed at a public library. Some magazines that contain graphic material are very educational, such as @ORGANIZATION1. On the other hand, I am not saying that we should be lining shelves with @CAPS1 magazines either. There is a difference between having books that educate children about other cultures, and those that educate them about sex and explicit material. It is the adults job to protect their children from material such as that. But they can do it in another way, other than taking the book off the shelf. Even if the book is filled with drugs or nudity, the concerned parent cannot just take actions into their own hands. The owner of the library is the adult that gets to decide what types of books or magazines he or she allows in the library, not the customers. I think that if you are offended by a certain book at a library, you should bring it to the attention of the owner, or simply go to a different library. If the owner refuses to remove the item from the shelf and the material offends you that much, you could go to court and plead your case to the judge. But you have no right to remove a book from a shelf that does not belong to you." 3 3 3 4 4 4 +4703 2 "When picking a book, music, movie, and magazines from the library it's always a hard decision because you @MONTH1 be like me and want to read more than one book at a time. Books that are found offensive are more interesting than just plain boring books. So why would anybody take books off the shelf for being offensive? When children pick books from the library you want to make sure their kids books and you @MONTH1 also want to check to see if their educational. You definitely wouldn't want a little kid getting ahold of an adult book or a book that is found offensive in some way. So have an adult section and a kids section. When we walk into a library full of books, theirs a huge variety of any kind of books. We would lower the use of going to the library if books were takin off the shelves because their wouldn't be any use of going. If your not going to find a book there, why go to the library anymore? The last reason to not take books off the shelfs is people that can not afford to buy a book from anywhere obviously come to the library to borrow a book. So taking books away would just limit their learning and would not be very benificial to them. The only reason that I would find it okay to take offensive books and anything else off shelves is for childrens sake and safety. If the library's are thinking about taking offensive books off shelves, they should have a public vote to see what everyone else thinks about it. If they decide to take books off the shelves, why not just have an adult section in the library? Anybody that is @NUM1 years of age or older could be in there. So make finding a book easier and don't take our offensive books completely away from us" 4 3 4 4 4 4 +4704 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf.' Katherine Paterson. Katherine Paterson is an auther who, like the quote from her, believes that some books should never reach the hands of children. Does everyone believe the same way,no. I am one of those few people who believe that no one should have the right to remove a book simply because they find the book offensive. Your an old fashion woman who believes in old fashion ideals such as no cursing or violence. You, as this woman, pick up a book and read the first page, on this page you see cursing and deside to remove all books with violence or cursing from the library. The library soon becomes half empty because of one woman and her belifs. Belifs are a wonderful thing ouside of reading and can make you who you want to be. Books do not, in my opinion, have belifs. This is true for some books but a book where someone runs from danger or flys into the sky, those are not belifs those are dreams and no one can crush dreams offensive or not. I compair books to dreams simply for the fact that they are dreams, the dreams of the authers who wrote them and wanted to share that dream with the world. Telling a person they can not publish there book simply because another person finds it affensive is telling the auther your dream is offensive. If you do not want your child to share this book of dreams then do not let your child pick up the book. You are the parent of the child who picks up this book then you can protect it from the offensive danger it holds like you protect it from the dangers of strangers in the real world. Authers do not always write for the sake of everyone. Authers do not write for one woman, one man, one child, authers write for those who share a similer dream. If you do not share the same dream as the auther that is fine, no one is forcing you to share in there sometimes dark and sometimes amazing dreams. Authers write because they wish to write, to express themselfs in ways only words and storys can. Do not shun a book because one thing in it offends you, @CAPS1 a book is @CAPS1 someones dream. In short you would never crush your childs dreams. If your child wants to grow up and be a fireman you do not tell them that it is offensive to people so they cant. Why would you do something to someone elses dream who you have never met. Be a bigger person and allow that person to live there dream through a story. No matter the level of offiense you do not have to pick up the book and read it. the number one way to not be affended by a book that @MONTH1 affend you is to never read the book to start with." 4 4 4 3 4 3 +4705 2 "Certain material that are made to offend people should be removed from shelves everywhere. I am against any material that are offensive to someone or something else. The three main reasons I am against this is because it is wrong to offend others, offending others can lead to personal issues, and offending others or something else will eventually tire out. To simply write a book or a magazine, or make a movie just to offend someone or something is wrong. People should always treat others the way that they would like to be treated. For someone to make negative lyrics about a person or something says something about the person who made that song. Maybe that person has personal issues. In order for that person to ignore their personal issues, they make fun of someone else. Offending other people can lead to personal problems. How? If someone steadily talks about you or, on a daily basis, offends you, people can get depressed. They can start believing that they are nothing. I remember a girl in the eighth grade told everyone that I was a 'garden tool' and that I would do anything for a piece of change. She also made a song, taunting me everyday about how I looked. She actually recorded it and passed it out at school. People heard it, and like followers, they started taunting me, too. I soon became depressed. I got so bad to the point that I was suicidal. I thought the world would be a better place without me. I had to go see a shrink to get over those thoughts. What other people do to you or say about you can have a bad effect on them. Last but not least, people will eventually get tired of hearing bad things about someone. The victim will get tired of being teased or talked about. People would stop listening to that negative garbage. If people stop supporting that degrading stuff, then the author wouldn't have anything to write about. The singer wouldn't have anything to sing about. Their career will have gone down the drain because there is no future in offending others. There are many reasons why offensive materials should be removed from the shelves in libraries, stores, and everywhere else. These negative comments will get nowhere in life. As I brought out in my body, it's simply wrong to offend others, it can lead to personal issues, and it will eventually tire out or get old. Nothing good comes from making people feel bad. So once again, these negative materials should be abolished everywhere." 4 4 4 3 3 3 +4706 2 "In my personal opinon I think that those books that have things that you don't want to read or you think are offensive should stay. It's not like that person that is offended by it has to read it. Say you are in the library and you see a book that you think offends you. You think to your self that book should be removed from the library just because you think it is offensive, but you have to think in other peoples shoes. Just becaus you think a book is offensive doesn't mean that everyone else will think it is. That is why they have age groups and grade levels that are set up so a kid who likes picture books will not get stuck with a book that has curse words or other things that are meant for adults. Same concept with movies, magazines, music, and etc. Take this for example. I was walking through the library when I saw a book called @CAPS1 the @ORGANIZATION1, and I thought to myself that looks like a stupid book and I wouldn't want to read it. I think that they should throw this book away. Now lets think does that sound fair. Maybe that is some kids favorite book and when he comes in there the next day it is gone. What about this, lets say you go in to look for your favorite book and you find out that someone found it offensive or someone just didn't like it as much as you did so they threw it away. Doesn't seem to fair does it. In conclusion that is what i think about removing books that are offensive or some people just don't like. I think they should leave it on there because we shouldn't remove it based on our personal opinon." 3 3 3 3 3 3 +4707 2 "There's bad, and good books out there. Some people find different books affensive, to what they do. Other's like the books that other people dislike. In a way books are both bad and good. Good, because people start to read better after reading a lot, and bad because a lot of people dislike to read. I think that when you go in a library there should be impropet books for people to read. Children go in library's, what if they pick up a bad book and form horriable habits? Children, and adults have very different views on what to read. Kids want to read fairytale stories, etc. Adult's on otherhand enjoy mystery storys about murder, and such. Yes, library's can let people check out any book they find interesting; But, what if that book is bad for there children to see lying around. It's simple if you make sure you don't leave your books just lying anywhere, kid's wouldn't form bad habits, or discover anything there not suppose to know. Kid's are noises, and they will try to read your books, or see something bad on a magizine. In library's, there is the children's section, and the adult section. That helps in some way's, but your child can still find that bad book, etc at home. Parents can keep from this for the safety of there childrens thought's, or qeustions about that certain book, etc that they found. It's good to just put thing's away when your done, and keep every bad book, etc out of your childs react. Books are bad, and good. You can find the information you need, or something you really don't want to read about, or see. Books have stuff that we sometime's need to know, and want to know more about. If your kid finds a misleading book, make sure they didn't read it, or look at it; and just hide it away from them. In the end, the problem will be solved." 3 3 3 3 3 3 +4708 2 "Censorship @CAPS1 you are trying to find the right book, music, movie, magizine, you @MONTH1 come across some interesting ones. Should libraries ban certain books just because of some contend on one page? The person has that ability to read that book or not. Banning books has been a huge problem in today's society and needs to be stopped. People should be old enough to choose a book that they enjoy and not have to worry about, does this libary have the book that I want. They should not have to think that way @CAPS1 going to a library. @CAPS1 you think of some of the worst books out there, who would want to read those anyway. Many books that people think are bad just have a terrible word on one page. They do not think that they are banning a perfectly good book for others. @PERSON2's '@CAPS2 @CAPS3' was a big upror wheather or not to put the book on the shelfs. The book intailed the @CAPS4 word, and some people were not pleased in this sequence. The book was very well written and just had a few bad words. Should a few bad words keep a book from being a prize winner. The book was such a great story and should be read by many people and should not be kept in a storage room in boxes. There are many ways to keep a certain age from gettting a certain book. The library could put those certain books in @CAPS5 own part of the library. Keeping the books in a different part of the library might be a better suited way instead of banning the books altogether. The book still will be censored to be in that section or not, but we still will have those wonderful books that we all love so much. What if there was a great informative book about how to do a certain task and no one knew how to do it. That book contained bad language, should the health and knowledge of the world go down because of some bad material in a book, that could help us in the near future. Authors have just the same right as we do. They should get a say in wheather @CAPS5 own book is liable to be on the shelfs. The government should not get all the say in this series matter in hand. The community and the author that writes it should get more of the say then anyone else. @CAPS1 an author writes a novel they think of the great content they are putting into this great piece of art not thinking of, is this suitable for children to read. The author just loves to write and should not have to think of all the concerns that they should just not worry about. There is this book we read this year called '@CAPS5 @CAPS6 Are @CAPS7 @CAPS8'. This book had language that I do not think would be suitable for others in some content that was in the novel. Now do I think the the novel should be banned from a library? No, because it used the words in a very nonviolent way. @CAPS1 reading it I felt that I was not harmed by the content and neither were any of my fellow classmates. @PERSON1 was the author of this book and I thought she did an excellent job of writing this piece of literature. So the next time you think of banning a book think of all the warm hearts you could be crushing" 5 4 5 4 4 4 +4709 2 "In my opinion everyone should have a right to go to the library and get whatever book, magazine, movie, and music they what. People go to the library for a lot of reason computers, books, etc. Also having a public library comes handy for people that don't have a computer at home. It's a public library you should be able to go there an find about anything you need book or movie wise. Everyone has differnt likes an interests about their books or movies, and i'm sure people go to the library an expect them to have what they are looking for. Some people do go to the library an not find what there looking for. Then people get mad an upset cause they figured the library would have it an they don't. But yes I think that there should be any kind of magazine, movie, or book at the library that you need. I mean it's a library they should have it all. Also people have the right to go get whatever book, or movie they want. It's called freedom everyone is diffrent and everyone likes diffrent things. There has been a few times I have went to our library to find books or movies an they didn't have them. You would think that a library would have a book or movie over trying to potty train a toddler, but they didn't. I think that they should have any an every kind of book, magazine, an movie you want at the library. Yeah some people @MONTH1 take offense to it but who cares obviously they don't want it so leave it an go get what you want. Just cause you don't like it don't mean other people don't. So no I don't think just cause some people don't like them they should be removed from the shelves. So no i absolutely do not think that any books, movies, magazines should be removed from the shevles. You are who you are an you like what you like it shoudn't matter what other people think about it as long as it's what you like. So in my opinion the library should be a good use to everyone, and leave the books, magazines, etc. on the shevles for the people who do like to read or watch them" 3 3 3 3 3 3 +4710 2 "I think that certain materials, such as books, music, movies, magazines, etc., should not be removed from shelves if they are found offensive. People enjoy books with offensive language or content, people love to feel the engery or tone of the writer. I personal love offensive langauge if everything was censored it would feel like everything is dull and fake. 'Your @CAPS1****** cheating on me @CAPS2****', @CAPS3 you feel the wow in body. Now look if i censor it 'Your cheating on me @PERSON1' it felt dull and if you got cheated on before you probably thought of ten different thing you would have said differently and uncensored. If your a parent who don't want their child reading or seeing this you should try to teach or keep your child away from this. Instead of removing why not just move them to an @NUM1+ section of the library. The @NUM1+ section will warn kids and parent what their getting into if their parent don't want them to be exposed to reality them then that means they should not be in that area. libraries are usually divided into section but if not if you ask local libraries if they divide adult and children books into section of the libraries then they should tell you." 3 2 3 3 2 3 +4711 2 "Censorship in the @CAPS1 @CAPS2, what is offensive to some @MONTH1 not be to others. So how do we know when expressing ourselves in an artistic manner that we've gone to far? We don't and thats why censorship is such a controversial topic. In the music industry recently there has been messages in songs and music videos that aren't the best suited for teenagers. Being a teenager is a time of constant turmoil in one's life, you are required to make decisions that will define you as a person. When songs out there are about drug use and other crimes teens see them as cool things and follow along cause they see them as everyday activities that can do no harm but little do they know that they are wrecking their life by doing this, so I somewhat agree with censorship in that kind of thing. In literature and art things take a more serious tone than in music and other media. With literature it's about conveying ones thoughts and feelings about a story or other subject. In art you express yourself vissually on a canvas or abstractly through other materials and forms, but in both ways you express your feelings and emotins. So censoring these would in turn censor one voice and emotions. When you take away a man's voice and emotions you are left with an empty shell of a person who will never know life to the fullest. As time has changed I have found that people have also changed. When @PERSON1 uses the '@CAPS3-word' in some of his literary works it didn't offend people at the time, but now times have changed. Now it's not ok that @PERSON1 used this word but on the other hand it's ok for rappers and others to say it every other word in their music. so how do we know what's offensive and what's not? well it's all from the reader, listener, or viewer's point of view. These days parents try to sheild their children from the outside world and make it seem that it's all rainbows and butterflies by censoring things the children might be subject to read, hear, or see in their day to day lives. This does not solve the problems in the world there will always be war, crime, and death no matter how hard we try to stop it as long as there's 'good' there will always be 'bad'. All loyalties aside in my honest opinion I believe censorship in the @CAPS1 is a bad idea and will never work to solve actual problems with the world. It will just cover them up just like the dialouge or image they so badly want to go away." 4 5 4 4 4 4 +4712 2 "Although it is a new day and age where damand is high for elctronic books, hard back and paper back books are not obsolete quite yet. Many people still like the old tradition of traveling to libraries, and starting the quest for the perfect book. Also, with the economy at a downfall, it is the cheaper way to go. But the big question is, can people find everything they desire at their local library? For some people that maynot be the case because of library censoring. Yes it is true that many libraries now censore many things that they would think would be inapproite for childrens eyes. I agree that some things should not be displayed on shelves at libraries. Although some adults or teens desire more mature actricles, these things should not be avaible for children to view. One of the most loyal customers to the library are children and their parents. Parents do not want their children to be exposed to explicet materials at that young of an age. Also if libraries lose young families as customers, that would be almost half their clientel gone down the drain. So next time when you want to buy something that maybe to mature for children, you might want to reconsider going to the library. Instead go to a book store and buy whatever you need there. Keep children in a safe, innocent environment" 3 3 3 3 3 3 +4713 2 "Do I believe certain material, such as books, music, movies, magazines, etc., should be removed from shelves if they are found offensive? No, just because a book or song or magazine article or movie is offensive does not mean that we should have the right to take it off the shelves. Sure we have a right to remove that book but there are a lot things that are going to offend people. Just because someone comes across an offensive book at the library doesn't mean that they should have to go through so much work to get it removed off the shelf. Its not worth the trouble for just a book that you could just simply look past and look at other books. If it was possible for anyone to just take a book off a shelf because they thought it was offensive we would have a lot of empy book stores. Because face it people can and will be offended easily if something they believe, like religion, is being made fun of in a book that they had read about. We all get offended but just move on from it and find something different. We are not forced to read that book or listen to that song or look at the magazine. We have a choice and the choice can be to move on and read or look at something different, more positive, or go through the process to get it removed and taken off the shelf. You never know someone else might think that maybe that article in that magazine was benefitial or relating. So it should not be up to one person, but if a whole community has a problem with a book then I can see removing it can be an option" 3 3 3 3 3 3 +4714 2 "I think that some books in the library some people might take offensive. But some of those books have a meaning behind it. I think theres one book out there that alot of people love to read, and that is @CAPS1 @CAPS2. The book uses the '@CAPS3' word alot and many people take that offensive, but why? There was a big arguement about alot of book companies changing the word in the book to @CAPS4 @CAPS5. From my perspective I think it should stay the same. Why change that now? Many english teachers use that book because it talks about a white boy named @CAPS6 saving @PERSON1. Its not being used in a bad why at all just using the terms of how they did back in the olden days. The book is strong and shows readers a strong aspect in life. Yes you shouldn't go around saying that word, but also not change it now, after its been out for along time to the public. The book would not bring the same meaning as it would if it is being changed" 3 3 3 4 3 4 +4715 2 "Katherine Paterson wrote about the true impact of censoring what is put in a library. In the quote she mentions how if what every single person finds offensive is removed, eventually nothing is left. The question of, 'Should library content be censored?' is a largely debated question. There is a simple answer to this question. It should not be censored. Views on what should be censored and why, vary based on type of person and their background. As Katherine Paterson said, 'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf-that work I abhor-then you also have exactly the same right and so does everyone else. And then we have no books left on the shelf for any of us.' @PERSON2 made the observation that most people would not think far enough to realize. The most logical thing is to not censor what works are put into libraries. As was previously stated, once every person pulls what they deem should not be on shelves, the library will be but a building without books. To keep children from getting into certain types of literature, movies, and music, libraries could have a section set off within the adult section for these works. Many public libraries do not even have these types of items that would be so highly disputed for the simple fact that if the library does not even carry it, they do not have to worry about issues. These public institutions are working for the best of the visitors, and if there are works needing to be kept from the childrens' section, there is no doubt that this would be taken care of appropriately. The topic of censorship is a very touchy subject to start with. This goes back to the debate of what exactly should be censored. The problem with what is 'explicit,' is that there is no black and white line. Does a book become inappropriate because a teen girl becomes pregnant within the pages? In some eyes, the fact that a teenager got inpregnated within a book makes it inappropriate, but critics will argue that this is life and to shield the world from reality makes us all blind. Proper instillation of morals and values on the homefront will help young citizens make intelligent choices, but expecting the world to censor itself for each individual is something that would never be possible. Censorship in libraries is a touchy subject, but like Katherine Paterson said, if every person in the world removed what they thought inappropriate, there would be no books left. This truth being stated, censorship in libraries should be stopped before every book is gone. As the world turns, life cannot be stopped because bad or inappropriate things exist. It can only be learned that yes, these things @MONTH1 exist, but by using better judgement the whole world can get along just fine without trying to remove everything 'bad.'" 4 4 4 4 4 4 +4716 2 "Do you agree with me that we should be aloud to read, listen to or view what we want? I think it is unfair that the schools have the right to tell us what we can look at the right is ours this is america and we have the right to do what ever we want. I think we should have the choice to read it and if it is offensive then dont read it becuase it might be offensive to you but not everyone thinks it is volgare or rude and obsene. I am asking you the paper to stick up with me and fight the school and tell them what they should be aloud to read because it is not right to censor good material just because some nut job does not like it. That is all i am asking for is for you to stand up and back me up in this war on censorship." 2 2 2 3 2 3 +4717 2 I think that no books should be taken away. I think that if a aduld or a child wants to look at something or read about something they should have the right to. If someone were to go to a public library that allowed people to listen to music and they cant because the song has curse words in it they should be allowed to. And if it bothers someone the bothered person can leave. If someone wants to look at a magazine and they can't because it is inapropiate who cares. And if people wanted to check out a movie at a library and they cant because it's to violent so the library doesn't have it. I think librarys should be able to have whatever inventory they want. And if it's to violent or if the music is to dirty just don't let children get a hold of it. 2 2 2 2 2 2 +4718 2 "If I found a book that I thought was innapropiate for others to read, I would ask the librarian to check into to see what she thinks about the book(s). If she believed they were offensive, then she could remove the book(s) without any questions being asked. If she was in the middle on a book and didn't know whether she should remove, she could take a vote or tally on that book and then go from there to see if it did needed removed. The only way I would find a book to be offensive is if it had pictures that were not appropiate for people to look at and it also depends on how old you are. Another offensive object would be too many words that involved foul language and or racism. If i found a movie that was offensive, I would just ask that it would be moved to a place that only mature adults should watch or some teenagers. My opinion can't remove an object from its place unless there were multiple complaints about the book or movie and ect. Some movies and books should be removed from shelves because younger kids get a hold of these movies ans watch them and then go out into the real world and do these bad actions that was on the film. For example, if the movie/book was about drugs, then some kids would think it was alright for them to do because they saw it on tv. Some kids even get killed because they go out and try these dumb ideas they got from the book and or movie. But the parents also play a role by letting their kid watch these, I think if they would watch what their children do, then some of this won't happen. Music is another big thing that is becoming more and more out of control with offensive subjects. There is more foul language in music as it progresses. @NUM1 years ago, it wasn't that bad, but it's getting worse. I think some music should be banned because of the violence and sexual content it describes on the music. Some of the music I listen to, I just want to run it over with my vehicle because the whole song was about drugs, sexual content and or violence. I don't even know why an artist would want to write a song about bad content because they know younger people will hear it. I think offensive music has an effect on the violence that actually occurs in today's society because there might be some racism. I'm not trying to blame the artists or say it their fault, but I think they should think twice about their songs before they release it so everyone can listen to it. Everyone is entitled to their own opinion, but some things should not be on the shelves for our kids and children to listen to and or watch. I think there will be something done, but it will take time" 4 3 4 4 3 4 +4719 2 "'All of us can think of a book that we hope none of our children or any other children have taken off the shelf. But if I have the right to remove that book from the shelf-- that work I abhor--then you also have exactly yhe same right and so does everyone else. And then we have no books left on the shelf for any of us,' states Katherine Paterson. Books and movies all over the world are being censored and removed from libraries, day after day, due to their explicit content. I believe that books, movies, and magazines should not be removed from the shelf, and that they are there for a genuine purpose. Explicit objects should not be censored because a human being should have a judgement of their own, children's parents have a right to exclude the material from the child's life, and some material can be useful in life and someone @MONTH1 learn from @CAPS3. Children everywhere are being influenced by books, magazines, movies, and even songs. Some people argue that these harmful materials are affecting how kids behave and act. I, however, believe that a child should have superb morals and values to know right from wrong. For example, if a child happens to see a pornography magazine lingering on a shelf of their local grocerey store, they should know that no matter how temping @CAPS3 @MONTH1 be, that buying that pornography magazine would be wrong. From birth, parents are constantly teaching their children what is right and what is wrong. They attempt to teach their children the basics: that drugs, alcohol, and smoking will corrupt their health. @CAPS3 doesn't matter if a child sees someone doing drugs in a movie or hears a song about a teenager getting drunk. They should not be influenced by this because by using their logic, they should infer that what is being read or listened to isn't always the right thing to do. Everyday, children's parents have the right to exclude harmful material from a child's life. After all, they are a superior figure in the child's life, and the child will always look up to them to lead the way. At most local theaters now, you have to be seventeen to see a rated '@CAPS1' movie. A lot of theaters allow a child to view a rated '@CAPS1' movie, no matter what age, as long as they have a parent or a gardian present. Movie theaters feel that by having a child's parent there would help immensly because the parent is choosing for their child to watch that particular movie, instead of the child viewing the movie without their permission. If a parent doesn't want their child to view a raunchy movie, they can simple say, 'NO!' @CAPS3's as simple as that. If a parent feels that a movie is decent for a child to watch, then go ahead and let them watch that material. Parental agreement should always be a main factor in determined whether or not a child could view a particular movie or read a certain provacative book. If all offensive books and movies were removed from the shelf, we would be living in a structured world where no one would learn any more than what they already knew. Life @MONTH1 possibly become rather boring. Although, some people @MONTH1 find books and songs to be offensive, others @MONTH1 contribute from these materials. A child @MONTH1 pick up a book, start reading, and discover some disturbing thoughts that they never would have encountered beyond picking up that book. They would never of learned such things. Reading information like this, creates a move advanced society. Adults and children are becoming smarter each day. Any parent would agree that they would love any opprotunity to arise for their children to become smarter and more wiser than they already were. Songs, movies, books, and magazines could provide that for their child. Reading is an escape from a jungle of wild monkies for some children. They @MONTH1 use a book to get away from the struggles of everyday life and get lost within its lively pages. If more and more books are being censored and thrown out, that equates to less books a child could have an opprotunity to discover. I once read that even @CAPS4 classes all over the world are not allowing their students to read The @CAPS5 of @CAPS6 @CAPS7. The teachers find this book to be too inappropriate for their students. This is unfair for any student, because this novel is inspiring and life changing, so they are definitely missing out. Also, movies and songs are provided for one's pure entertainment, so @CAPS3 shouldn't always matter if its crude. A child or young adult @MONTH1 learn things that they never thought imaginable through provided public materials. In conclusion, books, magaizines, movies, and music are one's individual way of expressing themself. They should not be censored because a human being should have a judgement of their own, parents have the right to exclude offensive material from a child's life, and material, not matter how crude @CAPS3 @MONTH1 be, can be used as a learning tool. If more and more material is being removed from our local libraries, @CAPS3's almost like authors are being punished for being unique. Our children won't be exposed to as much, therefore, they won't learn and grow from @CAPS3. Do you really want our society to prohibit intelectual thinking just because they think certain material @MONTH1 be offensive? Think about @CAPS3" 5 5 5 4 4 4 +4720 2 "I believe that profanity has a good side and a bad side. The good side is profanity is it give books, music, and movies taste and texteure it shows how a person feels most times it's anger. Profanity also can change a person behavior, by the way people talk and act. I personally think that profanity is a good and bad i like it in music and movies but i hate it when people talk trash. I think they should take it off the shelves depending on the person age for example age three and thirteen books should not contain profanity but ages fourteen and up can. The reason why people should take it off the shelves is beacuse kids should have a healthy and profanity free life. They should have a a good development turds learning. Books and other intertaiment should have no profanity because kids at a young age learn easly and if they take in the bad actions of others they will be bad themselfs. The reason why people should be aware of this problem is if you don't like profanity dont buy it. Also keep out of kids reach. The main reason why people swears is because of movies and songs it changes a person dramaticly. Talking with profanity in your mouth can change your life but not having a good job getting in jail raising up bad kids that learn from the parents mistakes. In a @CAPS1 profanity is good for movies it gives it action and drama. profanity is words that are most times negative expressing anger and rudeness. We have a @CAPS2 full of profanity this is like a wide spred deases. Passing on from people to kids to their kids. I have expeariance this the hard way beacuse im chinese and i came to the united states back in @DATE1, i did not know any english. People would cuss at me all the time the could all be avoided if we didnt have any profanity in our daily usage of books, music, and movies. I have learned alot about people by the way they talk letting me know who to stay away from. We should keep profanity but limit it from kids. Profanity is like ice cream people wants it and other dont. People could make there choice of putting themselfs in a profanity free life. people can do what they think is the right thing to do. Taking it off the shelves for kids is what i think is the right thing to do but not adults. Due to profanity people tend to put themselfs in truble. For example some people in the use gets pulled over by a officer for a low cost speeding ticket but then they would swear at the officer putting them selfs in more truble this could all be avoided if he didnt have ever said anything. Profanity could also make a good motivational speech i know this beacuse im on the @LOCATION1 football team. Before every game our coach would motivate us by giving us a speech to get us pumped up with profanity in it. So in the end what im saying is porfanity should say but keep it out of reach of kids for books parents dont buy them if you dont want your kids to see them. Movies read the lable on the back of the @CAPS3 and see the agae limit and for profanity. Lock up the @ORGANIZATION1 shows that have profanity in it so your kids have no acess to them. If you dont want any part of profanity you can make yourself to stayway from it. We all know the there is nothing you can do about others useing profanity just dont use it yourself and stay clean do what you think is right" 4 3 4 4 3 4 +4721 2 "All materials in a library are for the public. This is why we have public libraries. Children are most likely with an adult when they go to a library and are normaly looking for books or activities that they would enjoy at their age. If a costomer in a library finds a book or item that they find offensive then it most likely was not an accident. Materials in libraries are for the public and should not be taken away just because a few find it offensive. Children are very suspicious in libraries because they know that adult material is also in the library. This is where an adult comes in and supervises the child. Some parents don't mind that children see these images or read innapropriate information, but on the other hand some parents do. If someone comes across information that would be offensive they were most likely looking for it and are aware of where it is. Everyone in a library has the right to take or read what they want. There is no sign outside the door that says only certain ages of people can visit certain areas of the store. It is the parent or gardians decision to allow or not alow their child to visit the more innapropriate areas of the store. Everyone has different rules and those rules are to be followed, but it is not the libraries job to keep track and watch those children to make sure they stay in their designated area. There is a place for everything in a library and most of the locations are pretty obvious as to what kind of information is held there. For instance, more adult and innapropriate material is located in the back of the store. Adult matter is held back there to make it more private and harder for little children to discover and to be alittle more private to people who are reading it. Childrens' books and movies are usually loctaed in the front of the store so it draws their attention more. Children @MONTH1 never know what else is in the store if they dont go looking for it. Children should be acompanied by an adult if the adult believes their child would wander off looking for innapropriate materal. Other material that could be offensive could not only be to children, it could be offensive to different races or cultures as well. Also if a person finds that information, they were most likely looking for it. Everything is labeled in a library and something doesn't just pop up out of nowhere if you where not looking for it. Overall material in a store is public and for anyone who comes into the store. Children should be watched if they are suspicous and wander in the library. If someone does not want to find this informatin or think it would be offensive, then they should not go near the area which it is located" 4 4 4 4 4 4 +4722 2 "In our socioty, a lot of people and places take offense to certain things. In my opinion, librarys and book stores should not remove things from their shelves becuase they could be offensive. People have the right to pick something up, over look it, and decide wheither it's offensive or not. If a book or movie that someone wrote or directed could get to them bad enough for them to freak out and complain to places that are selling it, then that book or movie probably shouldnt have been made. I agree, somethings are offensive, but if someone you dont know wrote it or directed it, then dont let it bother you. I believe that music is a way that people express themselves. I honestly don't think that music should be censored when it's sold in any store. If the material is to graphic for children or some people, then don't listen to it. If you need things to be censored because of words or topics just so you can read, listen, or watch them, then maybe you just should do it." 2 2 2 3 3 3 +4723 2 "When it comes to my idea of having censorship in the libraries around the world I believe that there are cases when there are books, music, movies, magazines, etc., that should not be on the shelves. Not only are there things in the books, etc. that children might not understand and take the wrong way, but there are also things that adults of any age might take offensivley as well. In my years of being in school I have encountered many books, music, movies, magazines, etc., that I have thought should never even end up on the shelves of libraries. For one example, I was looking through the library one day for a book that I would be able to do my book report on, and just from reading the back of the book I learned that this book involved drugs, sex, and many other things that I thought would be inappropriate for someone even my age to read. For the librarians and other school workers involved in the buying of books, I am sure that they never even think twice about a book being offered to young children and teenagers that it would be inapropriate or offensive, but in almost all cases every single book has something that would prove them wrong. Also I have encountered offensive behavior while reading a book that was said to be a wonderful book even for someone under the age of twelve. In my own experience from reading the book I would have to say that these people are crazy and should reevaluate the the specific age they market to. Not only are there books that I have found in the library to be inappropriate and offensive but also many magazines, movies, and music. There is usually not alot of music that would involve offensive behavior in libraries but in some cases there are. For example, I new someone that was doing a report on pop culture and while researching the music and listening to the music that the library provided, they found it to be very offensive and inappropriate for himself to hear. Other than that I have found that movies and magazines are just as bad as books when it comes to being offensive. I myself would think that teenagers above the age of @NUM1 would understand the meaning of being mature. I have observed that most teenagers and even children that read offensive books end up having a behavior that most parents and teachers do not approve of. When it comes time for my children to reach this age I would hope that they would never act like some of the kids I have seen or spoken with. After understanding how much inappropriate/offensive behavior there is in books, music, movies, magazines, etc., I not only recommend that they evaluate the type of books, and other resources that are offered in libraries, but also I have realized that I sure hope they get this matter taken care of right away. I not only feel that parents around the world would feel the same as I do, but I know for a fact that I would never want my children to read books that I have read or been offered through my high school library. This is a very serious matter that all teachers and parents should realize when they recommend books to children and even teenagers. The world is becomming more and more violent every single day, and it is up to the future children to solve this problem. In a sitaution like this, we do not want the minds of the youth to be infested with offensive and inappropriate behavior. Let this be a step in the right direction" 4 4 4 4 4 4 +4724 2 "I belive that every one has thier right to thier own opinion. If a parrent does not think that thier kid should do some thing dont let them. It kind of reminds me of how people are aginst hunting if you dont like it dont do it. If every one would express thier own opinion the world would be alot better place. If I dont like @PERSON1 and I tell @PERSON1 i dont like him @PERSON1 knows I dont like him so he wont talk to me any more. So in a bigger picture if @LOCATION1 tells @LOCATION2 that we dont like thim they will not try to make friends with us any more. so if everyone would speak thier mind the world would be alot better. If a parent does not like some thing like a type of music, movie, or even book and they express that to thier kid they will learn that that thing is bad. My dad tought me that it was fine to kill animals only if I am willing to eat them so that seams fine with me but other people might not think its right. So I belive that if your not a hipocrite and live as you teach your kids to that your kids will listen to you. As I have said before my dad tought me that its fine to kill animals if I am willing or going to eat them. I find one exception to this rule cyotes (we have alot of cyotes where i live at and they can be a pest). I belive that that is about the only exception to the rule because cyotes are problem animals in this area. So if you dont want your kids watching rated @CAPS1 movies then block them on tv. Its the same thing with the other things like the magazines, books and music." 3 3 3 3 2 3 +4725 2 "Censorship in libraries is a big argument today. Many people wonder what is considered 'appropriate' for our children. With several @CAPS3 and @CAPS2 factors these days it is hard to find something that is not offensive to ones culture. Three main reasons we are not able to find a book reasonable, yet non-offensive for our children in libraries includes @CAPS1, @CAPS2 beliefs, and @CAPS3 beliefs. @CAPS1 was a big deal in the late @NUM1's to early @DATE1's. Thanks to @LOCATION2, slavery became illegal in the @LOCATION1. Although, there are still many racist comments, articles, and films published today. If someone does not stop the harsh comments, then it @MONTH1 never stop. Even though it is not such a big deal today, that doesn't mean it won't continue to happen. Children do not need to see or hear racist comments made toward their race like many of their ancestors did. Harsh put-downs and comments toward @CAPS2 beliefs are also inappropriate for the society, let alone for children to read. Books containing this are not considered appropriate for children and need to be placed in a different section of the library. As a teenage reader, my biggest belief and interest is learning about other cultures to see what it would be like to live in another country. There are countless religions in the world today, many of which are accustomed by their own god(s). I belief it is of a great cause for children of the modern day world to celebrate their own religion how they would like. However, I believe it is not right to make hateful opinions toward other religions. This is also a thing that yet children have the ability to read about. Children should not be reading about fictious facts of religions and making the thought process in their head when they assume something is true about that religion when it is not. It is definitely a great idea to stick those materials in the @NUM2 section. For now, children should be receiving material that they can easily comprehend and find interesting. It would be a great idea to make a fiction section appropriate for kids and then a @NUM2 section for kids and/or adults. An idea to take into consideration is that every local public library could have a meeting to decide whether to keep the library in easy-access form or not. That is for you to decide!" 4 4 4 4 4 4 +4726 2 "Every single person has there own beliefs and disbeliefs when it comes to books, music or anything in life for that matter. What @MONTH1 be a bad and vulgar book in our opinion @MONTH1 not be bad in others opinionated views. Everyone will have there own views about a book, music, movies, or magazines. That's why censorship is good in a public place like a library. Does that mean we're saying that you can't like what you want to like, listen to what you want to lisetn to, or watch what you want to watch in your own home? No, by censoring all that in public places like librarys or say video stores your helping fight a lot of trouble and concerns that could happen in the future. Then again censoring movies, music, books, and magazines in a library could also be a bad thing. Not everyone is going to like the same things or be interested in all the same movies or books. At the same time though we can't censor every single thing someone doesn't like. By removing something because one parent has a complaint over their child watching, or reading a book they thought was too 'vulgar' then your giving that right to any parent that complains about their child doing that. It's not the librarys responsibility to watch over everyones child, to make sure they watch and read what their parents want them to. Kids will be kids and they'll do what they want to do. By censoring and taking things off shelfs of librarys your not preventing them from watching a movie they shouldn't be seeing, or reading about book they're not supposed to be reading. Censoring librarys is just like censoring words in movies, by doing that it's not stopping your child from hearing or learing vulgar language. Children now in this day and age hear more vulgar words in school then they do in movies and television. What does the word offensive really mean to a person? Everyone has their own opinion on whats offensive and whats not. Like i said, everyone has there own opinions and views on life and everything in it. You can't remove everything off the shelfs because one parent doesn't think it's right for their child or other children to be seeing, looking at, or listening to. We all have freedom to look at what we want and listen to the kind of music we feel like listening to. By taking things off the shelfs that maybe other people like oppose to others then your taking that right away as a @CAPS1 citizen. Censoring on some things like, sex scenes in movies, or maybe vulgar language in music is alright in my opinion. Taking books off the shelf because you don't like the way its written or you don't like the person who wrote it, or you don't like the kind of language the author decided to use in it isn't alright to me, you're pushing the limit on that one. Books teach kids things everyday, books give children imagination. By taking books off shelfs i think you're hurting a childs ability to grow. Censoring is a good and bad thing. It could hurt children or it could help their ability to grow. Censoring some things are a good thing, but like i said not everything with vulgar language should be censored, or vulgar scences. Sometimes in order to grow and live in this world children need to read and see the things we as people but in books and movies" 4 4 4 3 3 3 +4727 2 "This is along the lines of personal thought. Some people can be happy with things ,while others disagree. Unless its racist or sexist no one has any right at all to say something can't belong. If someone doesn't like a book than walk away from it don't ponder at why its there, someone else @MONTH1 want it. So I dont like this topic personally but i am ok with writing about it. Its not a choice just like it really shouldn't even be a choice for people to say what belongs where, unless it is rightfully owned by the individual. I know there are many things I dont like but I dont try and get things moved and banned. Its there people want to read it. Plus the person who wrote or made the object would be shot down (@CAPS1 of sadness or rejection). Along the lines of insulting a race and/or being sexist, If that is being done in the book it should be stopped and disposed of. People have the right to say they are not happy with that but if they just dont like the topic but others do than they need to move on and not make a big deal out of it. Now if the title @CAPS2 says what the book is about than walk away don't pay attention to it. People @MONTH1 use it for research or something in the future. Now people @MONTH1 be self-centered and just want what they need so they cause a huge, @CAPS3 or fight over stupid little things. Thats the people that always got things handed to them which I imagine is why this topic came up. So that is my thoughts and believes about the topic of Censorship. It doesn't matter where, in school or at a library it is there because someone is/was interested in the item. I know this is my thoughts and believes, people @MONTH1 completely think what i wrote it stupid, some @MONTH1 think its smart. Its just the culture you grew up in and @CAPS1 of mind you are in that current time and place." 3 3 3 3 3 3 +4728 2 "I do not think that there is a need to remove offensive materials from libraries. Some people @MONTH1 find these things offensive, but I think that others will be greatly offended if they remove these things. Take rap music for example. There are many people that think that the lyrics of those songs are just terrible and offensive. Other people think that rap music is amazing. I do not think rap is very good at all, but I would not go the extent of saying that rap songs should not be played on the radio, and that the @CAPS1 should not be sold in stores. The same thing could be said for these materials in the library. Some @MONTH1 find them offensive but others greatly apreciate it. Some people @MONTH1 be interested in these topics. Just like some people @MONTH1 be interested in fantasy or comedy. It would not be fair for libraries to remove these materails from the library, and deny the people that do like them the rite to rent these materials. Another factors is the maturity of the reader. If the person who is reading book or viewing movies that @MONTH1 be offensive is viewing them for clear interest then is no problem with it. But if the reader is not reading for interest, then there is a problem there. It all depends on the maturity that people have when they enter a library. The materials in libraries are there to give everyone a chance to find something that interests them. Just because someone else @MONTH1 find those materials offensive is no reasons to take them off the shelf. I can see why some parents @MONTH1 be upset that their kids @MONTH1 see some of the things in the library that @MONTH1 not be apropriate, but all the libraries that I have been to have a had a special area for kids materials. If the parents where woried about their kids seing some the questionable materials they could bring the kid to that area. I dont think that these materials that @MONTH1 seem offensive to some people should be removed from libraries. Everyone is going to be affended by something and it is not fare to deprive others of those materials even it is offensive to some." 4 4 4 4 4 4 +4729 2 "Censorship in libraries should not be allowed. Libraries are given to people for new learning opportuites and for entertainment purposes. Everyone has their own likes and dislikes, not two peoples are the same. First of all when a person goes to the library they should know that the books that are in there were selected by the owner of the library. Therefore it is their responsibility to put books into the library and take books out. What the owner of a library will try to do is to put a little bit of everything in it. What is ment by this statement is that there are so many differnt types of writting that people are bound to not like something. So that is why the owner will add a bit of everything into their library. If someone has gotten a book that seems to be to their type of book, but after they start to read it they find it offensive to them they should not just throw the book out all together, but they should take it back to the library and talk to the owner about it. People have their rights to do what they want with a book, but if it is a book from the library then it technically is proporty of the library. So if someone gets offended with a book they should go talk to the owner let them know their concern, and try to have something done about it. In truth they will not be the only ones who have that oppionin. It takes one person to make the difference. Books are not made for just one person they are made for many people to read and possibly enjoy. People have their oppininons and will stick by them. Thats expected to happen with books, they are all different as are people. The society that everyone lives in is filled with people of diverse oppions and who are not afraid of expressing them. There is nothing wrong with expressisng them eigther, actually its better that way only because then others can hear about a book and eigther agree with that oppionoin or disagree, therefore finding out what type of writing do they really like. Books yes can be thrown out by rights, but the moment everyone starts doing that is the moment when everyone can no longer spread their oppionion. To spread an oppion is to let the world know wehre someone stands on a spacific topic. Without that the world would be just plain old boring having nothing to talk about because people would all share the same opinoin. Censorship in libraries should not be allowed for more reasons than one. ~~@PERSON1" 4 4 4 4 4 4 +4730 2 "Need help with Censorship in @ORGANIZATION1 (I chaged the @ORGANIZATION2 of this story that I heard from my grandparents because I could not remember the real one. This is not really happening at the @ORGANIZATION1 I think.) To the people at the @ORGANIZATION3 I would like to tell you and your readers that there is something wrong with the @ORGANIZATION2. Nothing really all to serious I guess. . It seems the libaraiains there are censoring tons of books and other materials. One of which I really need for a homework assignment on the movie @CAPS1. They say that they are censoring what I need for the assignment because it is to bloody and scary for some of the other readers. There have also been some complates from parents as well, saying that their kids had nightmares for weeks from the movie . To that I said well can I still use the computers there to get information. They said that they have already blocked all the inaproperate sites as well. I do not have internet at home so you can see how well that is going to go at school. So then I tryed to get the @CAPS2 to uncensor all of the stuff they have all ready have censored. So that way I could just make them censor all the werid adult rated things at the @ORGANIZATION2. That way no kid will have nightmares any more.I also threw in the idea of seperarting all the @CAPS3 and @CAPS4 by age group like child,teen, older teen. To this they said all right but they were going to keep the classic @CAPS4 and @CAPS3 The @CAPS2 said they @MONTH1 try my idea and see if it works But I would have to volunteer at the @ORGANIZATION2 and go through all the stuff that has been censored over the years. To this I said ok, but after I saw home big the censor list was it was like a nightmare over a hundered pages of book at least. I was to scared to see how long the other lists were. So seeing that it was to big for me to handle alone I got most of the other volunteers to help me. Then put up posters at the school I go to,to see if anyone else would be willing to help me. So far there has not been much progress in the lists so I would like to ask that if there are any readers out there reading this article. I could sure use your help because these are some really long lists. I @CAPS8 you all for reading this article, if you are not able to help then see if there is anyone else you know that would be willing too,@CAPS8 You." 3 4 3 3 3 3 +4731 2 "i think that if there are offensive books, music, magazines, etc then they should be put in a section of their own, or the librarians should have them kept up and if someone needs/wants them then they would have to go to the front dest in order to get them. i think also, if a young child or teenager cant see, read or hear those types of things than they should not be in there period" 2 2 2 2 2 2 +4732 2 "Have you ever read or seen a book that you thought was not appropriate? Did you want to ban the book from the library you got it from? Well many people have experienced this and many of them have wanted to have more sensorship in libraries but we can not always do this. Maybe that book that you just put down, deeming it inappropriate for all to read it, is someone else's favorite book. You @MONTH1 never know but maybe someone might think your favorite book is not appropriate. There are many different people in the world and they all have different opinions. So instead of banning them how about libraries and schools just sensor them. Censoring seems like a no brainer but a lot of people do not think about it. We can not just close our eyes to all the inappropriate books out there but we can at least censor them. Censoring them could be as simple as just putting a tag on them or making a different section for just those kinds of books. The tags should be clearly marked so that people can see it and know what to expect from the book. People do not have to get rid of some books completely but they need to recognize that young children could pick it up and start reading it without knowing that it is not very appropriate for them. Parents do have the right to check and monitor what their child is reading. Although if you just get rid of the book completely, people are also getting rid of other people's freedom of speech. No one has the right to determine what books are not appropriate and what books are, so no one should have the right to just have certain books just removed from the shelves. Instead of banning the books or complaining about it them, people could try a rating system for books. When you buy movies a lot of times people check the rating on the movie to see if it would be appropriate for their child or even for themselves. This is what we could do with books too and maybe there will not be as many problems with books. It sounds simple enough but people need to take action and start to do something about it. You @MONTH1 not be able to make everyone happy but at least people can be more informed about the books they are reading. If everyone can help out in the effort to make our libraries and school more censored than all the libraries would be a lot happier places full of adventure" 4 4 4 4 4 4 +4733 2 "Offensive materials @CAPS4 be anything but I'm talking about libraries and whats inside. Books, music, movies, and magazines @CAPS4 be offensive to someone but not everyone. Removing these materials from library shelves because a few people veiw them as offensive material is not a good idea because if they find it offensive then somewhere someone is enjoying it. Not everyone will find a book, song, movie, or a magazine to be offensive and for that reason no books, cds, movies, or magazines should be withheld from the public in any library. My friends liked reading @PERSON1 books but i did not like them, but i did not make them stop reading because of it, just like 'To @CAPS1 A @CAPS2 @CAPS3,' @CAPS4 be offensive but if you find it offensive don't read it, plain and simple. There wil always be one person who doesn't want their kid to watch a certain movie, or read a @PERSON1 book, but that is not a good reason to remove any materials from the libray shelves, let people read what they want to read, watch what they want, and listen to what they want, there is no good reason to remove a book form the libray shelves. We all have a right to read, watch, and listen to anything we please. Having somebody you have never seen get a book, movie, or a magazine removed from the library because they find it a little offensive, is like having someone kick you because you don't have a lot of money. Many books from all over the world @CAPS4 be considered offensive to at least one person and that one maybe two people do not have any right to tell anyone what they can not read. Censorship in libraries is a horrible idea because not everyone will read that book or listen to that cd. Having a chance is all we need to read a book or listen to a song that might change our lives, for better or worse it should be our choice to read what we want. Any material @CAPS4 be considered 'offensive' but most of it is not offensive just what people don't want their kids to read. Offensive or non-offensive materials can not be declared by a few people but by an entire country. What one man considers offensive another man considers to be life changing. Anything can make someone change and in order to have that chance we should have the freedom to read what ever we would like. If you find a book offensive remeber this you had a chance to read it, now give that chance to someone else." 4 4 4 4 4 4 +4734 2 "Todays world is filled with rasicm and critisim. Anything we do is either right or wrong, no inbetween. Whenever your out to eat, or shopping you can hear offensive comments or images all around you. The newspaper, news, and internet make events appear worse than what it is, if it refers to certain people they take it offensive. If you go out looking for a good book to read, or a movie to watch, or music to listen to laying in bed, you pick what interests you. When your looking through the selection you're going to see and reconize titles, or pictures that offend you. I know when I do I pick the object up and look and see what it says on the back. In someway, someone, is going to find a movie, music, books, or magazine offensive. Say we take everything off the shelves off every store that is offensive in any way to people. What would be on the shelves? Nothing, @CAPS1 have to right to write about anything they want, singers have the right to sing about what they want. In the @ORGANIZATION1 every single person has the freedom of speech. So libraries can't take something off the shelves just because someone @NUM1 it offensive. That's the point of the different genres of music and reading, so you can read and listen to what you want. Every @CAPS2 has the choice of what they pick up and listen to or read. If someone finds something offensive, then they shouldn't pick the object up. Then, when that person complains about it, the bottom line is that it's their fault for reading it. There's going to be offensive things said about race, culture, looks, and weight. That's just apart of life and how people act anymore. There;'s just a point when you have to be the bigger person and ignore it and move on. So, no I do not believe that offensive books, music, or magazines shoulkd be removed from libraries or stores. We have the choice to pick what we read and listen to." 3 3 3 3 3 3 +4735 2 "I think that if the books,music,magazines,or movies you have in a library is not offensive, then they have the right to put them on the shelfs.Theres nothing wrong wit havin music and magazines at a library because what if someone doesnt like to read but loves listening to music or doesnt like to read books but likes to read magazines.I think its all right to have movies too.They could have alot of educational movies of just some plain regular movies of all kinds.Now if a book or movie or magazine or music was found and it was offensive then they should be takin off the shelf.If the books,music,movies, or magazines are not offensive in any way, they have the right to be on does shelfs so everyone can use them." 2 2 2 2 2 2 +4736 2 "books, music, movies, magazine, ect. shouldnt be taken off the shelves simply because they are offensive or because children can get their hands on them and repeat what they have read, seen, or herd. they should stay only because these so called 'offensive' objects that we have obtained can teach us very useful things such as what to do and what not to do and teaches us about our history or another countrys history. it is true there are some things in a library that children shouldnt see yet but whats to stop them from taking a look anyway? there are people who crave this offensive knowldge but are told time and time again they are not old or mature enough to handle such things but in more ways than one and it has been proven that some people thrive better with the true that holds violence than it being hidden from them. without these things children will never know what is really going on in the world around them and will be too shocked to do anything if they end up in the middle of something dangeroius and without the correct knowledg on how to handle it or where to go. that is exactly why the offensive things should stay in the library." 3 3 3 2 2 2 +4737 2 "I think that everyone has the right to hate or abhor cetian works but only the author of the work has the right to take it off of the shelf. The reason that just anyone can not take a work off the shelf is if the one person hates the work but everyone else likes it then imanenge how the people who like the work must feel when they hear it was distroyed. Can you think of how the author of any work would feel if thousands of their works were being distroyed without any thought to others? I can and I feel horible just thinking about it so I belive that is the reason that only the creator of anything should make the disicion if their work should be saved or distroyed. With these reasons that I have shaired with you please consider how everyone feels before you destroy anything if it is a book, movie, song, or even a childs dreams think about how thet would feel if anything of theirs was distroyed." 3 3 3 3 3 3 +4738 2 "Dear reader, Do you believe that certain book, magazines, movie, and music should be removed from the shelves of libaries if they are found offensive? A lot of people in the world today are having this same question. Some parents think they should be removed, but others argue they should stay. I'm going to tell you what i think. As a citzen, I know some parents are arguing that certain magazines and books should be removed from the libary if they are found offensive. Well if they do that then there wouldn't be anything on the shelves in the libary would be shut down. I mean i see where some of the parents are coming from some of these things are offensive and not apporaite for children, but if you dont want your children to see it them keep them away from that section of the libary or don't bring them, you go get the book or magazine they want and then bring it back home for them. In the world today everything is offensive to someone in the world i mean everyone has there own thoughts on what they think is offensive and what they don't think is offensive. So eventually if you were to take everything offensive out of the libary it would be emptied out. I want you all to read this quote and really think about what the author is saying ' All of us can think of a book that we hope none of our children have taken off the shelf. But if i have the right to remove that book from the shelf -that work i abhor- then you have the exact same right and so does everyone else. And then we have no books left on the shelf for any of us.' (@PERSON1). I don't know about you, but this really sums it all up for me. The truth is you cant always do what you want, you just have to live with the way it is and try to make it better for yourself and your family. If you read this article and really listen and take into considertion what im saying i think you 'll find that it would be a lot easier for you to just act like the offensive books and magzines aren't there because if you try to get them taken out you wont even be able to go to the libary anymore. sincerly the one and only, @PERSON2" 3 3 3 3 3 3 +4739 2 "I believe that censorship in libraries can be a good thing, but can go too far. Removing movies and magazines that contain pointless offensive material from the shelves could be a good thing. If those are removed I do not think that people would care that much. Removing those small things, however, could grow into a bigger problem. It has to be decided how far is too far when removing objects from the shelves. It all starts with a bad magazine that has a bad picture of a movie star doing something offensive with text surrounding it being pointlessly judgemental. A parent sees his or her kid reading this at the library and they do not believe it is appropriate so they complain and the magazine is taken off the shelf. Then a movie arises that is offensive and it is taken off the shelf. Pretty soon everyone is comming in with minor complaints about many different things and almost everything has someone who wants it banned. Even if there was a set limit on what qualifies as able to be banned people would still complain until what they want happens. If the government has all these complaints they might just shut down the libraries to avoid looking over every 'offensive' piece of literature, film, or artwork. The original purpose being to block out offensive meterial ends with the realization that everything is offensive to somebody. Even what might be considered a great piece of work by most could be considered an abomination by some. In the end a library should not be given the right to censor anything. The things that should be censored are a very small percentage and it is not worth the risk. Books that are offensive to some serve as inspiration to others. Libraries were made to give people the chance to be inspired. The library should not have the right to take inspiration away from the reader's hand." 3 4 3 3 4 3 +4740 2 "What @CAPS1 You Do? A very big battle for a lot of people is if libraries should allow offensive matterial to be on their shelves. Some people don't care, but some people think it's a very big issue. For the people who care, their view on the issue is that the offensive matterial should be taken off of the library shelf. I personally believe that it should be ok for 'offensive' matterial to be on the shelves of the libraties across the @ORGANIZATION1. What is conciterd offensive? Each and every person has their own view on what they think is offensive. An example is a young child @MONTH1 think that the word 'stupid' is a curse word while some older people think that it is not a curse word. If we did take off all the offensive matterial from the libraries, there @CAPS1 be nothing left. You @MONTH1 think that the @ORGANIZATION2 is a very good book, but if you talk to someone who believes the @ORGANIZATION2 is false, they @MONTH1 think that by having the @ORGANIZATION2 of the shelf is offensive to their own beliefs. Because so many people have a difforent view on what is offensive, no one @CAPS1 ever be able to actually have a non-offensive library. A group of people @CAPS1 not be able to agree on what is or what isn't offensive. There are a lot of websites and organizations that say what they personally think is offensive and what is not. People can go to those websites and organizations to know what they personally should check out from the library. It should not be the libraries own job to say what you can and can not check out. Each person is responsible for their own actions. If a person wants to check out a book or movie that some people think is offensive, so be it. It is a free world. Some people @MONTH1 not aprove of their choice, but again, they have the right to read that book or listen to that music. In conclusion I state: no one should be able to say what you can and can not have on the shelves of the library. If someone personally thinks that a movie or book is offensive, then they should not watch that movie or read that book. Really the question should not be, 'Should we remove books, music, movies, magazines, etc. from the library that are offensive?', the question should be, 'Should I be reading this book, watching this movie, or listening to this music?'. It is everyone's own choice to read a book or listen to a @LOCATION1. We are not accountable for what other people do. It is not the libraries own resonsiblility to be a mother to all of it's cusomers. Let the libraries be!" 4 4 4 4 4 4 +4741 2 "I belive that offensive books should be taken off the shelf. Some books are offensive and some are inaproprate. The libarian could get rid of the books, so the little kids can'@CAPS2 get the inaproprate book. Movies that are rate '@CAPS1' and above should be removed. Anything that has an 'A' rating should be removed, the libaries are a public place to rent and return, buy or sell, or to trade movies, books, and etc. Keeping the books that are safe for kids is important for their mental health. Anything inaproprate could be censored by a black marker. The old libuary I used to go to, had all the slang, cus-words, and etc, all marked out with a black sharpie. Some of the movies were thrown out of the rating '@CAPS2' to all the above, the magazines, had marks on the pages also, censored the slag in the magazine. The music at the libuary was blocked, some music was not blocked, and the rest were the censored part of the songs. The librares should do the same like the old one did." 3 2 3 3 3 3 +4742 2 "Dear Newspaper @CAPS1 @CAPS2 my name is @PERSON1 and I am a student that attends @ORGANIZATION1. I go to libraries quit often, and things that I see in there I feel souldnt be in there. Like the movies. Theyre okay, but theyre all sitting together. So that means me bein a young lady. I see things that I know my mother wouldnt approve of me even looking at. They have censored movies just sitting there. I even go through the shelfves sometimes and see the type of books that my mother wouldnt even look at. They have censored books in the libraries just sitting there like its a book about @CAPS3 or something. I have conversations with some of the workers sometimes, and they dont see anything wrong with little kids or teenagers looking at censored things. Not all of them think that way though. I dont think or feel that it should be censored books in the library and children aare able to look at them. Thats not right at all. Far as the music i agree with music at libraries, because many people listen to different type of music. As long as the music is something positive, but there are all kinds. You just have to be careful what music you listen to at a library because there are young people everywhere. There are children around the age of @NUM1 in there, and younger too. They wouldnt know how to respond to a song thats talking about killing people or shooting them somewhere. Then you never know what there parents wanted them to know at a young age like that. I dont feel that real nasty and bad music should be played at @CAPS4 Libraries. I dont believe censored magazines should be in there either. I really believe that magazines are one the main censored things in the library. There are many of them books also. They shouldnt be there at all just for the sake of the children and parents.They dont need to grow up fast they need to enjoy there life while they are young. And by looking at the censored things thats not helping at all. Inconclusion, I really think something needs to be done about all of these censored things. Many people complain to the @CAPS1 when they come in the @CAPS4 Libraries. What im just askin you for is that you please help our @CAPS4 Libraries get those nasty things out of there. They can even make there own side of the Libraries with just censored things for adults only. I know that this is the right thing and i kno many people agree with me. People only want the best for their children and a library with alot of censored things in there doesnt sound like the best. That just mean they are startin off wrong. Sincerly: A student who believes in changes" 4 4 4 3 3 3 +4743 2 "Everyone has a preference in works of literature, such as books, magazines, movies or music. Different types of these works of literature are significant to each person. If everyone had the right to completely remove one piece of work that displeases them, then no works would remain. Therefore, I believe no materials such as books, music, movies and magazines should be removed from public libraries or other public places. Everyone has unique ideas, necesities and preferences. A few years ago, I had a classmate who had different ideas from a myriad of people on religious persecution. He hated the idea of mixing people of different religions into one place. He wrote a paper containing all of his ideas on how the world should function in terms of religion. He tried to publish it, but did not succeed because his work was considered offensive. Even though I disagree with his ideas, I do not think his work should have been rejected. There could have been people in the world who did agree with his thoughts and would have been interested to read them. There could even have been ideas in his paper that could've helped countries solve various problems. I believe it is unfair that his paper was rejected. People have different necesities based on what they have to accomplish. For example, I was reading a book last @DATE1 about a girl who was doing a project on racism. She went to the library to search for a book about apartheid in @LOCATION1 but couldn't find anything. She asked a librarian if there were any, but the librarian told her that books such as those were considered offensive in that local library and she would have to search elsewhere. I believe that it is unjust because the girl @MONTH1 not have had anywhere else to go to get the information about her project. She should've had the right to access the information that she needed for the project to prevent her from failing. Another reason that no books should be removed is simply because everyone has unique preferences. In the world, there are books that certain people would enjoy more than others. Literature should be abled to be used for the purpose of entertainment and convenience. If I were to go to a library now, I would find many selections that correspond to my ideal novel or magazine. Every person should have that right. If people start removing materials that are offensive to them, then nothing on the shelves would remain and not one person would have the right to have access to the materials they desire. In this world, diversity exists everywhere. People have and always will want, need and desire different things. Works of literature are just one of them. If people begin to eliminate offensive materials based on everyone's frustration or displeasures, then no books will remain on the public shelves. Therefore, materials such as books, music, movies and magazines should never be removed from public places. These things are necessities to the world." 4 4 4 4 4 4 +4744 2 "I THINK THAT IF A BOOK IS FOUND OFFINSIVE THEN YOU SHOULDN'T READ IT. CAUSE WHAT IF SOMEONE ELSE LIKES THE BOOK, THEY HAVE THE RIGHT TO READ THAT BOOK . MAYBE IT'S AN INSPIRATION TO THEM,MAYBE IT WILL DRIVE THEM TO ACCOMPLISH SOMETHING THEY WANT IN THIER LIFE. WHEN SOMEONE WALKS INTO A LIBRARY NO ONE CAN TELL THEM WHAT TO GET THEY MAKE THAT DECISION THEMSELVES, SO WHEN A BOOK OFFENDS YOU MAYBE YOU SHOULD WRIGHT TO THE AUTHER AND TALK TO HIM\HER. ABOUT THEIR BOOK. THINGS YOU COULD ACCOMPLISH BY WRIGHTING THE AUTHOR IS A LETTER IN THE MAIL STATEING THAT HE OR SHE IS SORRY FOR HURTING YOU WITH THEIR BOOK ,ANOTHER IS MAYBE A VISIT FROM THE AUTHOR IN PERSONSON TO TELL YOU THAT HE OR SHE IS SORRY FOR THE PAIN THAT HE OR SHE BOOK BROUGHT YOU. THAT'S WHAT I THINK. ALSO NO I DON'T THINK THAT THE BOOK/ BOOKS SHOULD BE TAKEN OFF THE SHELVESCAUSE MAYBE JUST MAYBE IT WILL MOTIVATE SOMEONE ELSE INSTEAD OF PUTTING THEM DOWN. THE END." 2 2 2 2 2 2 +4745 2 "'Do you believe that certain materials, such as books, music, movies, magazines, etc. should be removed from the shelves if they are found offensive?' @CAPS1 these items should be taken off the shelves if found offensive. First off, they should be removed because some people @MONTH1 be offended by them. Some @MONTH1 talk about race, religion or gender. Nobody wants to be criticized in a book or such. For example: rap music, all that is, is just people taking about what color they are or how big or small they are. Some people @MONTH1 be offended, and im sure no parent wants their child to be listening to that nonsense. So take them off the radio. Second off, if a child gets ahold of a criticizing book or movie or such that item can have a bad affect in the later future. They could start criticizing people for being different. Some books talk about religion, some people just cannot help their religion, they were born that way so they are familiar with it and do not want to change. No one should be judged for their religion, so take them off the shelves. Thirdly, my friend was watching a movie and it was about a female that liked the same sex, and in that movie they were making fun of her. No one should be judged by which sex they like. She was very offended. So take them off the shelves. Second to last, magazine authors take pictures of celebrities and down size them about three sizes smaller than what they really are and put them on the cover of fashion magazines or such. Why not just put that celebrity on there as the size they really are? Some @MONTH1 take offense to that. So just take pictures of celebrity and put them on the magazine as their real size or take them off the shelves. In conclusion, in some of my observations and reading some people get offended quite often for being a different race, gender, or religion. So I believe that certain materials such as books, music, movies, magazines, etc should be taken off the shelves if they are found offensive" 3 3 3 4 4 4 +4746 2 "Do you think libraries should have the right to take books and movies off the shelves if they find it offensive? In my opinon I do not agree and I think they should not be able to take them off the shelves. Many people have different thoughts and opinons and I am going to state mine in the next few paragraphs. To begin with, not everybody likes to read or watch the same types of books or movies.Some like romantic,scary,myserious and there are many more selections.For instincts if one person reads something that they do not agree with, that does not mean the next person to read it is not going to like it either. Sometimes I enjoy reading books where people get hurt and sometimes killed but @CAPS1 someone else reads it,they might think that it is horrible and very offensive. Another reason is, @CAPS1 I go to the library I expect to get the book that I want to read not what others like. One time I went to the library and I was looking for a romantic book to read and I could not find it. So I went up and asked the lady at the counter and she said they do not have it anymore,and I asked why and she told me a lady found it wrong for children to be reading. In my opinon, maybe that lady did not even like romantic books.They should not just off of what one person believes. The next reason is, the library put the movie or book on the shelf in the first place because they thought people would enjoy it. The writer or producer would not be very happy if he found out that his/her movie or book got taken out of the library because they found it offensive. Just give the book a chance and see how everybody likes it. I understand if everybody thought it was really offensive to take it off but not just one person. To end with, my belief is that if they had the book in their library at one time it should just stay in there till it gets old and falls apart. The library is open to any and every type of books,not just boring ones.So I believe the books should not get taken off the sheleves they should just stay right were their suppose to be.If they do not like the book or movie then suggest to other peoples family not to read it or have them read it and see their reaction" 4 4 4 4 3 4 +4747 2 "When you walk into the heavenly sanctuary that is our library, you have opened yourself up to a vast wealth of knowledge that is available to you at the click of a mouse, the push of a button, or the turn of a page. There are those of a select few, however, who are under the paradigm that not all of this information is for all eyes. They feel it should be locked away, as if it were some eyesore. Allow me to address this view with retaliation and distaste on a number of levels in the following document. I am a musician. Music is my passion. My creative gears are forever turning. Often I look to other artists' works for inspiration, and the one place to get that music is, you guessed it, the library. How disappointed am I when I find that the music I want has been removed for being explicit. It was not the lyrics or foul message I sought, but the beautiful melodies and harmonies therein! It does not do well to isolate media without first seeing the good that lies in it and the strong feelings it has to convey. We @MONTH1 discard the world's greatest novel because of racial discrepancies or wizardry. We @MONTH1 throw away a moving song because of its lyrics. We @MONTH1 trash a movie after only reading the title, never even giving it a chance. How fair is this? Even now there @MONTH1 be those who refuse to read your newspaper because of their disagreements with one, individual editor. That is no fair crop in my right mind. I implore you, as a public, as people of sound mind and stout hearts to reconsider the censorship of those works which have a clear and true message and were forged for the benefit of our humankind. All things have a story to tell. A friend of mine once said to me, that there were three ways we could absorb things that we find undesirable. We can reject, we can ignore, or we can absorb and interpret. To reject leaves you no smarter. To ignore leaves you in fear. However, to absorb, you gain new knowledge, be it of a new culture or new person. Everything must be taken with a grain of salt. Let us watch something we find immoral and then take the time to understand why it is immoral, for it is these things that define us. If you do not see what is or is not right, who is to say what is truly ethical? We need material of substance in our libraries, for our exposure and for our fathoming of new knowledge in our modern world" 5 6 5 4 4 4 +4748 2 "No, materials should not be removed from the libraries.First most of books,movies and,music are the best way to support difffernt things.They all have there type of way of convinicing you.There are many different ways to understand but those are certainly the best ways. Like a movie some people like to see things to understand them.Because it take times for some people to see instead of reading or listening.It take people to just seat and watch is a great way.Some people that look at a movie an a wrong way get the wrong type of thought about something which make it offensive to them. Like music is a great way to understand what someone is trying to say or get across.You have to take time out to really listen and here what they are taking about.If you here a song once and then you just take it a wrong way u never let your mind here what they said.Some people let one word or two make u think differnt about the song.So before u judge listen to the whole song. A book one of the worlds best way to understand were someone is comeing from.A book is like a short life.If judge a book bye its first couple paragraphs you would never get a meaning out of it.With a book you have to give it a chance to seek in your mind so that you do get an understanding.A book can tell u alot of things.So some people take it offensive. These types of materials should never be removed from labraries.This things are great ways to understand things.So if you take one thing offensive try another way maybe its a better way for people to understand it.Without this materials we would never understond,discovery anythong in are worl" 2 3 2 2 2 2 +4749 2 "When you think of a book do you think happy kids books, or mysterious dark books? What if I was to say offensive books? Most magazines, music, books, and movies you take off the shelf today are not so happy or mysterious that you @MONTH1 think. When I think of a movie I want to watch I think of something that im going to injoy; not something im going to shut off in the middle of it. What if you pick a movie that @MONTH1 look good from the front cover and you read the back and it sounds good but when you get home to watch it with your little sister or brother its the exact opposite. Do you turn it in? Do you turn it off and waist your money not doing anything about it? Offensive books, movie, music, and magazines should be cleared from the store. If your not going to finish it, then why is it there? Im not going to watch or read a book if its not going to make me feel good as a person or make myself feel good. If people can sit there and write it, act it or play it then we should be able to speak our oppinion on it if its good or not. People have feelings, if there going be hurt by something we should enjoy then take them off the shelves. Do something about it. We all should have the success for doing something for other people, and if not that then for ourselves." 3 3 3 3 3 3 +4750 2 There should not be sensorship on the books in the library just think of how many great pieces of literature out there that no one would be able to get there hands because they didn't reach your standards. People wouldn't be able to reads some of their favor right books. Would you really want to take that from the people? If my arguement did' change your mind you copuld atleast put the sensored books behind the counter. 2 2 2 2 2 2 +4751 2 "I do not believe that certain materials, such as books, music, movies, magazines, etc., should be removed from shelves at a library if they could be found offensive. It is good to be unique, and no matter how innapropriate a subject might be, it is still factual and helpful in learning. If anything they should just put a label on the cover of the book that says somthing along the lines of 'adult content.' @CAPS1 repeats it's self, and this quote reminds me of periods in @CAPS1 where we need to learn from our mistakes, no matter how bad the subjects are, such as the @CAPS2, and the @CAPS3 @CAPS4 @CAPS5 in the deep south. What about the @CAPS2, when @NUM1 million @CAPS7 were killed because they were @CAPS7. @CAPS7 @MONTH1 find these books offensive but that doesn't mean the @CAPS2 never happened. There are many offensive and contraversial pictures and stories about events that happened during the @CAPS2. Even though this is a very depressing and horrific subject, it is still good for our @CAPS20 to learn about what happened. And other catagories need to be read because it can help @CAPS20 to understand right from wrong, and help prevent them from making big mistakes in the future. The @CAPS3 @CAPS4 started from the @DATE1's all the way until @CAPS13 @CAPS14 @NUM2. The @CAPS3 @CAPS4 took a toll on everyone in the @LOCATION1A, but some people couldn't handle it as well as others. In the south, most @CAPS19 treated @CAPS17 @CAPS18 as dirt. They didn't let them in their schools, in their clubs or churches, they were rude towards them, and most horrific of all, they lynched them. There were a set of @PERSON1 called the '@PERSON1,' which pretty much was a list of @PERSON1 to treat @CAPS25 as unfairly as possible. If a kid were to pick up a book or magazine with pictures of lynchings in them, they would remember it their whole life, and if that one picture truly bothered them, they their whole life growing up, they would realize that what @CAPS19 did to @CAPS25 was unethical. Some books and magazines in libraries are really explicit, but we can't shelter our @CAPS20 their whole lives. Parents need to sit down with their @CAPS20 when they have questions and discuss the truth with them. What are parents going to do when their @CAPS20 go to school and hear other @CAPS20 talk about subjects such as sex? @CAPS20 could get the wrong idea about sex or not know exactly what it is because their parents never actually sat down and explained to them what sex is. I am not saying to go let your @NUM3 year old look at pictures of people having sex by any means, but when @CAPS20 get to a certain age, their parents need to step up and talk to them about uncomfortable subjects such as puberty, sex, and babies. It is time parents stop hiding the truth from their @CAPS20, or hovering over their shoulders like helecoptors. If @CAPS20 don't learn the truth about the real @CAPS13 and about how many evil and manipulative people there are in the @CAPS13, when they go to college they won't be able to stand for themselves. If @CAPS20 don't learn about @CAPS1 and what all has been done, it is kind of like we are treating the books like the @CAPS7 and the @CAPS17 @CAPS18 were treated. Just because these books are different than others we will just get rid of them, just like how we tried to kill off all the @CAPS7 and @CAPS25 because they were different. And it is wrong and inhuman" 4 4 4 4 4 4 +4752 2 "Censorship in libraries is when a librarian has the right to remove certain materials, such as books, movies, music, magazines, etc., from the shelves of a library, if the item is inapropiate. I believe that libraries should not have censorship. I personally, think that it should be up to the library if they could have that power. If it is a library were there's always smaller children their, then I think they could have the power of censorship. In conclusion, it should be the parents of the smaller children's responsibility to make sure their child's book is appropiate for there son or daughter. Now, say if it was just a normal library with both a mixture of both grown-ups and children, then I would say there still is no need at all for a censorship. First in for most, because its your choice of the item, if you think it is offensive then simply do not read it, watch it or listen to it. Second of all, it wouldn't be fair to the people in the library who liked a certain item, but could no longer use that item just because one person thought it was offensive. Also people would just start saying they thought that item was not suited for the library just because they did not like it period. Last of all, members of the library would have the same right as the librarians. So many of all the members have such different feelings on items, that so many different items would be taken off the shelf, that by the end there would be no books left. In conclusion, personally I do not think censorship is necessary in libraries. It would not be needed because smaller children's parents should be responsible enough check the child's items, and also because there would be so much conflict with what items were taken of the shelf and how many items were taken off the shelf. There for, I believe cencorship is not need in libraries." 4 4 4 3 3 3 +4753 2 "I know that some people find some books offensive mean cruel or racist but most of the time people write @CAPS4 beacuase its what they feel or what people want to read. Books are a privlige and we should be able to use that privledge. People need to learn that its ok that books are sometimes are a little harsh. The @CAPS1 is not the most friendly place ever and books can help convay that with less hurt then experencing @CAPS4 first hand. I know that all books should be left on the shelfs becuase just because its offensive to someone doesnt mean that you should take @CAPS4 off. For every book someone will find @CAPS4 offensive because of somthing. If the cause is if its offensive then all books should be gone. If someone took the time to go out and write and book and make sure that everything about @CAPS4 is correct then why should we stop them from letting people read @CAPS4. They have a right to write @CAPS4 and we have a right to read @CAPS4 and no one should take that right away. If someone wrote a book on the hollocost people are very offended by that but they dont try to get ride of @CAPS4. so why should any book be different because its not a big event like @CAPS1 @CAPS2 @CAPS3. Its just seem so upserd that people who go to such lengths to get rid of a book just because they are offended by @CAPS4. I think they just need to suck @CAPS4 up and move on. if they dont like @CAPS4 then dont read @CAPS4. Someone who wants to can so do not take that away from the people that want to read @CAPS4. I remember a time when someone wanted to read a book in are library and they said,'oh you cant read that because @CAPS4 was found to offencive.' @CAPS4 made me uphald that they would deciede how someone els feels about a book. @CAPS4 makes me so angry that they get to dicied how someone els feels about a book. they must be magic becuase I did not know that they know how someone els feels about a book or anything for that matter. we do have books here that are kept behind the librarians desk that if you really wanted to read that book its behind her desk. and im ok with that beacuse at least they have @CAPS4 for people to read if they really wanted to. This is what i think should happen if they have books that they think is too offensive to people. At least try to give an effert to perserve are right as citizens of the @ORGANIZATION1. Lets throw an other aspect here about money. the book that you want so badly gone from a library was most likely payed by you, the tax payer. So you and a lot of others payed for this book and now you want to wast that money. That is just insane that you would want to wast that money after @CAPS4 being payed for. This just make me want to say wow do you really want to be that upset about a book. Does @CAPS4 make you feel better that you got all worked up over a book and now its gone. Well good for you mission accomplished. All you did was get worked up and you wasted money. People just need to relize the bigger picture not just themselfs but others. In them taking down a book because you were offended, offends me. This offends me a large amount because now you ruined somthing that was not nessisary to be taken down. This is how I feel about this subject. I am very upset that people would do this and go to such lengths to ban a book away from a library. If you wrote a book and people did this to you how would you feel. I know that you would feel like dirt that someone would do this to your hard work. People need to just calm down and smell the roses and forget about things that do not matter. Stand back and think for a second and say,'will this really effect me if i get this book taken off the shelf.' @CAPS4 also make me mad that the libary bought the book and now its gone so did the money just go to waist becuase the book is just gone. This is how I feel on the matter of getting ride of books." 4 4 4 3 3 3 +4754 2 "Do citizens have the right to remove books, magazines, and other materials from shelves because they personally do not agree with the content? Censorship in libraries is a subject with an unclear answer. Some believe it is in their right to get rid of books, music, and movies with what they believe is 'offensive' material. Others think library censorship is wrong, that people should have access to whatever material they please. Censorship is simply a way of preventing knowledge from those who wish to learn more about worlds outside their own. In @DATE1's society, there are no limits. The human imagination can create beautiful works of literary art and music, but it can also create material not suitable for every age group. Library censorship is a way to keep this 'unsuitable' material away from young and curious eyes. However, what @MONTH1 be unacceptable for children to view @MONTH1 be perfectly fine for a mature adult. Censorship is purely opinion. If a person is a strict believer that @CAPS1 created the world in seven days, they might find it offensive to see a book or a movie that supports the theory of evolution. If a parent does not want their child to watch @CAPS2, they would rather their children not see a @CAPS2 disk in the children's section for their child to see. If one person harbors a profound grudge against @CAPS4, it is unfair to others if all @CAPS5 content is removed from a library's shelves. If a person does not wish to have access to certain 'offensive' subjects, then they do not have to expose themselves to it. But it is not in their rights to remove it from the view of others who @MONTH1 wish to educate themselves on the said matters. Writing is a form of self- expression, a method by which to convey feelings and thoughts and share them with others. It is also a way to teach and to inform others about the past. But if what is written is not shared, how can one form their own opinions and thoughts when they are not exposed to the opinions of those outside their community? It is unfair to prevent someone from learning about a certain subject simply because one or two other people oppose the content. If books and movies containing information unacceptable to one person were removed, then everyone else has the right to have material of their choice removed as well. Eventually, there would be nothing left because everyone is offended by one thing or another. That is one of the beauties of being an @CAPS6 citizen: freedom of speech. By living in @LOCATION1, one has the right to read or learn about whatever they please. Censorship prevents learning from those who want it. Parents are possibly some of the biggest advocates of library censorship. Not wanting their children to be exposed to explicit or graphic material is understandable. But just because they do not want their child to see a movie about devil worship or the @CAPS7 era does not mean the parent has the right to prevent all others from seeing it. Children need to be exposed to these kinds of things at some point to encourage open- mindedness and acceptance of others. Libraries provide a source by which young people can educate themselves on the religions, beliefs, and customs of the outside world. It should not be up to the parents to decide what is put on the library shelves; if they do not want their children to have access to certain subjects, do not allow them to go to the library. In conclusion, one can say library censorship is a matter of opinion. Citizens have a right to read, listen to, or watch whatever material they please. Granted, it is acceptable for parents to shield their children from certain subjects, but it is unaccepable for those same parents to prevent others in the community from learning. Freedom to express one's opinions in the form of literature means nothing if that literature cannot be shared with others. As Katherine Paterson once said, '... And then we have no bookes left of the shelf for any of us." 5 5 5 4 4 4 +4755 2 "Why do we have books out there that are viewed as offensive? If they are inapropriate, why do we keep putting those books, magazines, movies, and the big one, music out there in the world? Let me tell you why, because people in @LOCATION1 unfortunatly, have grown out of @CAPS1-duty time, @PERSON1, @CAPS2 @CAPS3, and many other nonoffensive shows. But with the shows, books, and movies played today are very inapropriate to the younger viewers. @DATE1 @TIME1 cartoons are over, at least the good cartoon like @CAPS4 and @PERSON3, @ORGANIZATION1, @CAPS5, ect, these cartoons, that I used to watch, that taught me how to be @CAPS6, @CAPS7, and @CAPS8 have faded away. With the cartoons out now that are supposed to be good for children, all show @CAPS22 the same thing and that @CAPS22 @CAPS9, @CAPS10, @CAPS11, and all the other @NUM1 deadly sins. They show these without explaning anything that can help the child in life, and that @CAPS22 @CAPS12. We can @CAPS23 take books off the shelves, make directors' quit directing, rappers' quit rapping, or make the pornoghraphy stop but we can restrict it to a point. It will always be out there weather it @CAPS22 by the blackmarket or the adult stores.Thankfully there are ways around letting your children watch these shows. Restrictions on the television, make the offencive books, magazines in a library to a(n) restricted area to where no one can enter without being @NUM2 years old. There @CAPS22 a lot to say about the music out there. It can be and @CAPS22 very offensive. I was born and raised on the old fasion country music and unfortunatly country music has gone to the dogs. Sorry to say but the change in music started at the begining of the @LOCATION2 @CAPS13, with the hippies. While they where all hopped up on @CAPS14, @CAPS15, and @CAPS16, they brought to life the new @CAPS17 and @CAPS18. So it has been here over @NUM3 years it @CAPS22 @CAPS23 going away. All we can do @CAPS22 hope our children does @CAPS23 turn on the radio that @CAPS22 tuned into that crap and say '@CAPS19 that sound like good music.' With the pornoghraphic magazines, they have been around since @PERSON2 was in her prime. It @CAPS22 @CAPS23 going to stop whatever we do. All we can do @CAPS22 block it out of our lives. We can try and keep it out of our childrens eyes but it will @CAPS23 help they will always be known to this world. I think we should move these things to another part of the library, that only adults can get to if that can be done in the library. Then we will move onto the music, and then the shows. Remember it will always be out there, all we can do as @CAPS20 @CAPS22 try to keep it out of reach of our children. We can't stop it but we can try and keep it out of there eyes. With the will power of @CAPS20 it CAN be done.FAILURE @CAPS22 @CAPS23 @CAPS24 @CAPS25!!!" 4 4 4 4 4 4 +4756 2 "Libraries @CAPS1 Or @CAPS2? This world is like no other world but to have some of our ideas blocked because there to offensive thats obsurd. There is a lot of things that are offensive in a library such as books, music, movies, magazines, ect... But if they are so offensive to some people then why keep complaining do somthing about tell it someone. Now librarys are a place where people can relax and grab a @CAPS1 book to read it. When they stumble upon this book that is highly offensve why put it back. Say somehthing and tell the manager this book is too offensive to be in a library. There are kids in the library maybe looking for something to read they @MONTH1 stumble upon a movie that is very inpropriate. Things like that should not be in a public library. As a @CAPS3.S citizen i belive that things like that should be removed for the shevles. Why would they be up there in the first place what is this world coming to. Some of these books now and days need to be censored. Beacuse of all the @CAPS2 words in there kids might pick up all that foul language. How about some of this music don't you think some of the lyrics maybe be offensive to some people. When rock stars, rapers, ect... write there lyrics they don't think of what other people think of them. They just might put the most badest languege in there songs they don't care they just want the money.Thats why you should put you're foot down and say this is going a little to far why not censor some of your lyrics? Why not write a letter sstating your concerns. Things in the librarys like books, movies, magazines, ect.. all should be checked and blacked out. Some of this shoudn't even be displayed in the librarys. There are children in the library now why would you go as far to put things like that in a public library. Lets take a magazine for example, a magazine has things that talk a lot about sex, drugs, and other things related to that. Some people might like it but for a twelve year old boy to pick up somthing like that and start reading it. To me thats wrong i dont know about anyone else but that shouldn't be displayed in a library. Now ive been to a library before they have some inapropriate things in there. But i really didn't think anything of it but when i seen a eleven year old boy reading about drugs, sex, and violence that's something he might pick up on. He is seeing it in a book so why not try something in a book. Now and days this world has some shocking things in it but to put things like this in a library is horrible. This is all where censership comes into play by editing a lot of the things in the library. People now and days dont care but they shoud start caring more. Thats just my opinion why i think its wrong to put all this @CAPS2 stuff in a public liberary. I think this is something kids don't need to see what do you think" 4 4 4 3 3 3 +4757 2 "I believe that if that book, music, or magazines that is offensive and people don't like it then maybe they should remove themself from the librarie. tThere are alot of things out there that people like to read and listen too. mmaybe for those people who do not like it they can go to an other librarie. There are alot of them around us. If a person did not like what they seen at that librarie then why go back? It could be offensive to some people but not all. So if people try to fight about removing them then the people that like them are going to be mad because they like to read it and they have a good time. Like i said before if they do not like it they then there are plenty more librarie's that probably will not have it there. Libraries should be able to put what they want on their shelfs. They could put in it in the back and whoever wants it and go ask for it. Or they could go put something up and make it where you know whats over there and if you do not like then do go in. There is more then just one shelf in a librarie, i you don't like it then don't go over there. If there is a sign up then there will be one reason for you to go over there and get all offended and complan about it. You got to think about other people in this too. Peolpe that do like it and go to the libraries to read books, listen ti music, rent a move, read magazines, they be able to do it anymore. Then they will be mad and then that just an other fight. Would anyone what that much drama, I wouldn't. That would be to much for me and hanle. People are now these days. No one will know what i person would do if they don't get there book, music, movies, or magazines. How would you feel if you lost that? Probably not to happy. I believe that that books, music, movies, and magazines should stay on the shelfs of the librarie. Just becuse a few people don't like it and want to fight for it, should really sitt back and look at what they are doing. There are more then just one librarie in this world. If you don't like the stuff that librarie is putting on it's shelfs then go find a new one. It's not worth fighting over and spenting all that money on that not alot of people have these days just to fight about what is on a librarie shelf. Not even worth it. Like i said before you don't like it. don't look at it, read it. listen to it, nothing. Just stay away from it and you will not get offended." 4 4 4 4 4 4 +4758 2 "Do you believe that certain materials, such as books, music, movies, magazines, etc.,should be removed from the shelves if they are found offensive? No, I don't think so, these items should stay on the shelves for the appropriate ages. If you are over the age of eighteen you should be able to pick and chose to what ever topic they want. If you are under the age of eighteen there should be an age requirement and also require parent consent. For those under eighteen when they get a library membership they should have to verify thier date of birth, and what thier parent srequest their child to be able to read, play, or watch. Librarys and book stores should put a rating on the magazines or books, just like movies. This will promote less parents of anger for thier children listening to music or reading inappropriate books, magazines, or video games. Now if books stores sell these books to underage children without parent consent, there can be charges pressed. It would be pretty much the same thing as selling liquor, or cigarettes to a minor. From my observations with my little brother, my mother chose to let him play inappropriate video games. For instance these games consisted of violence, sex, drugs, and foul language. In result of this I notice that my brother does not obey, or treat my mother with the respect as he should. He also misbehaves in school constantly. That is just one example of the many I know of. Even if the parent gives permission for thier child to watch offensive movies, play inappropriate video games, or read certain books that are not suitable for his/her age, they should still have to be a certain age. Some parents make poor decisions on thier parenting, and it will reflect them later in life. So my overall opinion would be no. Keep the books on the shelf for the people that are mature enough to watch, read, or play. If they limit the selling of these items to minors, these children @DATE1 will not have as many crimes all together. There would be less violence, and drug offenses or abuse. Keep this all in mind. @ORGANIZATION1" 4 4 4 3 4 3 +4759 2 "Today in the media there are many things that can be found offensive. Movies, books, songs and magizines are a few examples of where someone might find something offensive. I believe that whatever is put into the media has a purpose. If someone thinks that something is offensive I think that they should just take what they find offensive away from themselves and not take it away from everyone else also. When a song artist comes up with a song there is a reason for why they put what they do in their songs. Sometimes they do it to get a point across to the audience. When someone finds a movie offensive there is a reason for why it is the way it is; it's to get a point across. If people find the movie offensive they just simply shouldn't subject themselves to it. If they don't watch the movie they won't have anything to be offended about. Certain books in libraries are found offensive to some people just because they don't agree with what is in them. If there is something in a book that you don't agree with you don't just take the book off the shelf and throw it away. Other people might injoy reading that book. If the book is thrown away no one will have the chance to read it besides the person who threw it away. I do not believe that media that is found offensive to some of the public shouyld be removed. Not everyone finds certain things offinsive in the media. Again, everything that is put onto the market and into the media has a purpose; it's purpose is to get a point across to others." 3 4 3 3 3 3 +4760 2 "Certain books, magazines, music and movies should not be put on the shelves of a library. Children can learn rude or nasty things that their parents might not find alright for their child. There are some things that can be offensive in a library like prejudice books or music. Often music uses swearing language or states certain views on politics. Libraries need to take control of this issue the right way. Getting rid of the material is not what should be done. Libraries need to keep better watch over certain sections of the library. They could do this by not letting children leave their parents side. That way parents can know and control what their children are seeing. Then there is the issue of offending people. These problems could be resolved simply by putting up signs in different spots of the library. These sign could be in big bold letters stating 'Certain things in this section can be offending', '@CAPS1 control needed past this point'. Libraries should be more aware of how people feel about the way they are set up and presented to the public. Libraries should put them selves in the publics shoes, to see how they would like it if some of these things were showed to their children. Also, looking at things in a point of view of how some things could be offending, to fix the problems. Once when I was in a library I was offended by a book title that was against my religion. After seeing that I thought if their were a sign or something around to warn me I would not of had to see that. Other things like this have occured in a library like one time my brother rented a movie my parents did not approve of. But with the way the libraries are set up and controled my brother was able to rent the movie and sneak it past my parents. Other children like my brother could do the same things only worse like look at an inappropiate magazine or read certain books that parents would not approve. These types of occurances need to stop before something really bad happens. Libraries need to take control and show they know how to present things to the public in a proper manner. Actions that are happening in todays libraries are not alright. Putting up signs and requiring @CAPS1 control can reduce if not elliminate these unapproved occurances" 3 3 3 3 3 3 +4761 2 Offensive things should be taken off for many reason that will be explained later on. Things in magazines shoud be appropriate for people to see. The first reason why they should be removed from the shelves is it might be offending to someone important like the president of the @ORGANIZATION1 or the @CAPS1 of your state. If the subjects in the reading material are offensive to someone they should say something to defend themselves. If they don't speak up no one will think to change anything. What I don't understand is why people would let that ridiculous stuff be put in the magazines and music and movies anyway.Even though movies are kind of different. Movies are mostly just made up ideas that people come up with. So if people are offended it is just pretend to begin with. Offending things in books well the author probably has a reason for it. It might be something that is offending yet people need to know this in case it has to do with someone you know.For example in the Newspaper I read an article about our current president. @PERSON1 was being question about his birth certificate. People did not believe that he was born in @LOCATION1. I personally think he was in fact born in the @CAPS2.S . But of course they did see his certificate that proved he was a member so that mess should be dropped and forgotton. It was uncalled for to begin with. I wonder what was going through his head when someone asked him that question. I'm sure someone would have seen it before he even became president. 3 3 3 3 3 3 +4762 2 "What if some one found your favorite book offensive? Inapporate materials do need to be kept from young minds of children.On the other hand, you can not sheild people from things they should know or already know. Everyone has different things that they think are offensive, so one person might think a book is so bad it should be recalled from the shelves but an another person @MONTH1 see no problem with it. Children need to be protected from materials that @MONTH1 hurt them in some way. Children do what they see and hear, so they are liable to try and cop harmful things they read . Bad influences can be even magazines with famous celeberties being caught breaking the law or doing bad things and young minds see that as 'cool' and @MONTH1 try to follow tha example. Children and young people see and hear a lot worse things at home, television and even at school than in some books. Children need to be protect but, you can't baby proof life. They willl be introduced to plenty of bad influnces in there life time but, it should be the parent's job to teach their kids to say no and stay away from bad things. Kids can learn so much worse things from something at the library by just setting at home. Libraries are places for use public and the public covers a wide amount of different kinds of people and someone will always find something bothersome with somting or another. People have different views, believes and religions, and, books on these might be offensive to some but, the life style of another. Like The quote by Katherine Paterson, said if we take off the shelves every book or material that somone finds offensive there will be no books in the libraries at all. Yes, there are books that are not always very presentable to a certain group of people but, they should have a right to be read if their is someone who wants to read them. It is not the librarys job to be prejudice against certain books for because someone does't agree with it. Books should be a wide varitey like the people who are reading them. Also children are protect from books if they have learned morals that allow them to make mature choices" 4 4 4 3 3 3 +4763 2 "I blieve that any book or movie that is in the the library is in the library for a good reason. The world is full with things that will hurt and make a perosn feel bad about their self, and there is things in the world that will make you feel like you on top of the world. Yes, there is things that children can see and what they are not suppost to see, and those things are mostly likely not expost to the student until they are at a muture and a responiable age. Life is full of things and as children grown up they are going to be teach, show things that parent thinks that is uncomfortable. Such as: Books that show people with disoders, a books about romance, movies with cussing and sex scenes in the movies, violence, some parnet don'@CAPS1 even want their children to see a simple kiss on the cheek. Which I find really weird because things like that are going to happen in life. On the other hand, if your child is doing things that they shouldn'@CAPS1 be doing then okay. Take acting. I also agree that a children @NUM1 shouldn'@CAPS1 be thought sex and show either what female have and what boys have on their body. Their mind shouldn'@CAPS1 even be set on that. Books, movies, @CAPS1.v shows shouldn'@CAPS1 be remove because they show what life is about and what is going to happen when you get older." 3 3 3 3 3 3 +4764 2 "Debates are a main part of our society today. Everyone has an opinion on how things should be in the world, and no one is necessarily right. Books that show how other cultures behave, that to the people being described in the book @MONTH1 seem offensive, are important because we as people need to absorb as much as we can about other cultures. Our businesses are in other countries, many people living in @LOCATION1 speak multiple languages, and people have the right to read things that @MONTH1 in fact be offensive to a race of people. Businesses thrive in other countries. A lot of our countries income is from our factories and companies in other countries. @LOCATION2 is a place where much business happens for the @ORGANIZATION2. If we, as @CAPS1, can't learn about the @CAPS2, how can we learn their business methods and way of life? To the @CAPS2, these books @MONTH1 be offensive, but to us they are learning tools descirbing @CAPS2 culture. Being bilingual is a trend that millions of people adhere to. High schools require that we learn some foreign language, even if it is only the basics. The schools do this so that we can go to other countries in the work force. Learning about their language and habits comes from books. The mexican population might not like the way we depict them in our stories, but this is necessary to learn about them. In the @ORGANIZATION1, there are all kinds of freedoms that we as @CAPS1 use freely. Freedom of speech says that we can say whatever we want when we live in @LOCATION1. Books are not excluded from this rule. I'm sure that other countries have offensive books about us. It's a common theme around the globe. Businesses thrive in foreign countries, so we must be able to read some books about them, even if they seem offensive. Learning new things is something that every school teaches and there should be no limit to what we can learn. If a book has vulgar language and sexual scenes, it should be taken out of the children's section of the library, not banned completely. This is the same case with other populations of people. They cannot take offense to what we have to say, because worse has been said about them than what we can possibly put in a book. Learning is a necessary tool in our society and nothing should be restricted." 4 4 4 4 4 4 +4765 2 "Books are very important to our society. They hold a special place in our hearts, and contain much of our world's knowledge. Everyone has their own opinion about what should or should not be placed in books. I definetly agree that little children should not purchase a book that has explicit content in it that they should not read. However, some people, myself included, have checked out or bought books and then realized what exactly was portrayed in those books. I do not believe that anything that contains certain contents should be removed from the shelves. I can think of many books that could be taken offensively that are still on many school library and public library shelves. Any books about the @CAPS1 and even the @CAPS2 @CAPS3, such as '@CAPS4 @CAPS5's @CAPS6' can be taken in the wrong context. These books do contain language that is not appropriate for children. But we do still see them on our shelves. Why? Because those books, and many others, are very important to us. Books should stay on their shelves because, as Katherine Paterson cleverly put it, '... And then we have no books left on the shelf for any of us.' @CAPS7 means that if everyone took out books that they felt were personally offensive then there would be no books. Books are vital to learning things. We put all of our knowledge into them, even hundreds, if not thousands, of years ago. When the libraries in @LOCATION2 were burned and/or destroyed, we thought our knowledge was gone forever. Thank goodness for the back-up system that no one had known about out in the @LOCATION1. I myself have read the @ORGANIZATION1. I believe it whole-heartedly, but I do know of people who do not believe in the @CAPS8 and have taken some things that are said in the @ORGANIZATION1 to be taken personally. I believe that the @ORGANIZATION1 is the most important book in the world. Without the @ORGANIZATION1 no one would know of the wonderful things that our @CAPS8 above has done for us, and what he is doing for us now. However, some people can take what the @ORGANIZATION1 says to be offensive in regards to homosexuals and divorces. But would we allow the gays or divorced men and women to take the @ORGANIZATION1 off of the shelves? Of course not!If we would not allow them to take off that ever so important book, then why should we allow to have other books to be removed? Books are so very important to us and our world. They hold our world's knowledge, and they also hold our hearts. Just think about what our world, our knowledge, our society would be like if we did not have these precious things. Can you imagine it? I cannot. Books are one of the most important things that we have in @CAPS7 world. Just because someone finds something offensive in a written work does not mean that everyone else will, too. Books, if they are offensive to anyone, should be kept on our shelves for our future generations to come so they @MONTH1 learn and grow on our knowledge of our past" 4 4 4 4 4 4 +4766 2 "In todays world, children are exposed to a lot of inappropriate things than in recent times. They hear things from older siblings, see uncensored programs on television, hear words in music, and even learn things from books. An issue at hand is whether or not libraries should or should not dispose of inappropriate books, movies, music, and magazines. Children can read whatever they like if their parents give permission, but in today's society some parents do not take the time to care, consumed in their work. One way society can take care of this problem is setting age limits on books. There have been times when my mother will not allow me to read a book because it dealt with issues that I was not ready to learn about. Although I am lucky that my mother cares about what I read, some parents are not. This is why an age limit would be helpful in keeping our youth modest. The librarians, or a national book association, could decide if the content of a book is appropriate for a certain age. This would take care of children reading about bawdy issues that they should not know about. Also, @CAPS1 books should be more readily available. These types of books teach good morals and how to live a good and full life. In schools across the country, many @CAPS1 authors are not in the public school libraries. By putting these types of books into the libraries, students would be more aware of them and would most likely have an interest in them, learning from them. Another issue libraries have is music and movies. It is nice to be able to go to the library and check out a cd or even a movie. But, some of these have terrible language and scenes not appropriate for children. What can the general public do about this? Well, demand that all music and videos with content not generalized for children be removed from the libraries. This would keep children from seeing and hearing actions they should not copy. There are ratings on movies for a reason, so why not use them. Anything above @NUM1 should be a definent no in libraries. If the movie has content that any child under thirteen should not see, then the movie should be out. Magazines also offer a source of learning. Some are very educational, and give the students ideas to go and come up with a new invention or a way to help others. But, some have content that are not suited for children. Thus, like the books, the magazines should also have ratings. The magazine @CAPS3, for example, has articles that are to bawdy for students to read. Magazines like this should be put in an adult section where students cannot look at them. Magazines also offer pictures that, in recent times, would have been illegal to put out. But, in today's standards, they are fine to put in magazines. These magazines should not even be allowed in the libraries across our nation. America's standards on what is okay to read, look at, watch, and listen to have changed drastically. Children are learning things they should not know about, until an older age, at a very young age. Society need to put strict restrictions on what is right and what is not for children. I personally believe that there should be very strict restrictions on what children are allowed to watch, read, and listen to. My parents were very strict about this and, in the end, I feel this has benefitted my learning process. Also, I feel the libraries should rid of books that, in olden times, would have been a shame to read. Parents today are not as in sync with what their children do as they were in recent years. So, society needs to put a strict rule on what libraries carry and what they do not." 5 4 5 4 4 4 +4767 2 "This is going to be an essay about if people finding somthing offensive in a library or in music that it should be censored. It is also about if you think it should be taken off the shelves because some people find it offinsive. The way I look or my own oppinion is that they should censore most things from libraries and music,but not get rid of it because one person finds it offensive. If you think about it thoses uncensered material like books that some people fnd offinsive might be a fit book for someone else to what they can relate to as they were growing up. On the other hand they should be more carful about it so when younger kids listen to the radio or are reading a book they dont get the wrong ideas. We should censor things but only with an extent and not go over board with it. In the long run it might help with a more clean and safe population because were are censoring things to wear people dont hear bad and only hear the good in life. You never know you could make a big differance by doing that. The reason i wouldnt go out and censor everthing is because you cant stop everone from doing it. You can always give it a try but thats one of the main reasons why i wouldnt try and get rid of it cause a sertan person might find it offensive. I ncan understand if you took it off there self that someone found offinse but only move it to wear no one will find it offensive. Im not saying its wrong to do that but i think it could and probably would make alot of people angry. But hey what can i say what has the government done that we dont like or cant do anything about it. And thats all i have to say about that." 3 3 3 3 3 3 +4768 2 "Books, movies, magazines, music, etc., make up a huge part of our entertainment system in our lives today. Whether it be informational or just purely for entertainment, many forms of entertainment are found in your local library today, whereas in the past most libraries only contained books. Although, our entertainment today is much different then it was back then and will be much different than it will be in the future. In today's society books, magazines, music, movies, and so on can be found in your local library, and contain many different types of material. Some material could be informational about our solar system or about the human body. Other material could be a fiction story filled with action, horror, or love. Some material could also be filled with true, life changing, and inspritaional storries. Which ever it @MONTH1 be, these types of things @MONTH1 come off as offensive to some people more than others and @MONTH1 not be apporpriate for younger ages. Certain books, movies, magaizines, music, ect., containing offensive, inappropriate, or rude material shouldn't be banned from libraries, just because those younger than adults should not read them, or becuase those who dislike the material believe that that material does not belong in the library. Generally most libraries are quite large and organized into various sections throughout the building. One area might be for fiction books and another for non-fiction books, another area could be for childrens books, and another for magazines, movies, music, ect., all based on different types and genres. Simply do this for those materials that should only be read by adults and not for children or teens. Take the books that @MONTH1 contain offensive material, or @MONTH1 be inappropriate for those younger than adults and place them in their own divided section in the library. When a book from that section is being checked out merely ask for an @CAPS1 from the person checking that book out to make sure that they are of age. This can also apply to movies, magazines, music, and so on that are placed in that section. Some materials found in libraries that @MONTH1 be offensive to one person @MONTH1 not be offensive to others. Taking those offensive materials out of the library won't benefit everyone and @MONTH1 disappoint some of the people who don't find that material offensive. Placing these certain materials in their own section is the best way to go to benefit everyone. As you can see just because one person @MONTH1 find certain material in magazines, books, music, movies, ect., offensive, rude, or inappropriate, doesn't mean that everyone else does. It also doesn't mean you should completely take out and get rid of all the materials that are found to contain offensive or innapropraite material. Dividing those specific materials into their own section, and regulating who @MONTH1 check them out is really the best way to go. It benefits everyone at best so that those who want to read that material can still go to their library and check out that book, magazine, and so on, and those who wish to not have anything to do with that certain material don't have to worry about finding material that is offensive or inappropriate, because they will be in their own divided section" 3 4 3 4 4 4 +4769 2 "I believe that certain materials should not be removed from the shelves due to censorship.Different sections in the libary should be offerd.Everyone has differnt oppions on what they like to read or watch.You should do what you want at your own risk.I think the censorship should not affect the libary. The libary should offer differnt sections, therefore a kids side, a teenage side, and an adult side. The kids side should offer books that only kids should see by age group.The kids should not have to worry about censorship becuase they should not be offered any thing that an libarian would not want them to see and they should only be able to checkout things from their side of the libary. A teen side should not have censorship because alot of kids know many things that they should not so it would not effect them as much.Books that teengers read are most likely to have foul language and inapropiate things. Teenagers when they read or see things does not really influenece them as much. Music that teenagers listen to they already know what most of the songs are talking about so why offer only censored music at libraries? Why would you want to try to remove something when it is already known? An adult side should not have censorship, adults should be able to read, watch, and look at mostly anything.Adults are the ones who see it and heard it all. It would be pointless to get rid of things on the sheleves.. They already know of allot of things. Why get rid of books that others @MONTH1 read. It is a libary so it should just offer things that would increase intellegence not decrease it. The censorship is pointless, you should do what you want at your own risk.Things in movies,books,magazines are that are of the world. Why try to block out negative things when there all around you. If someone finds something affensive then let it be there are many things affensive in today's society.You pick up what you want to read and make the choice on your own. If your capable of reading it or if it is the right decision check it out.You enter the libary at your own risk and choose what criteria or selection your going to choose. The libary is full of differnt oppions and allot of differnt likes and dislikes.If you should not be looking at something then it is your oppion to take what you want out of it. Everyone enjoys differnt things like, movies,books, magazines, and music. If the libary had a censorship they would loose allot of matrials all due to oppions of people that did not care about others oppions.Everyone enjoys differnt things and wants a wide varitey of the things they like. The libary is where you go when you need books, movies, and etc. Why close someones oppion of book selections, what if that is the only type of selection, or book they like to read. I believe that the censorship should not affect the libary.The libary should offer differnt sections for certain age groups.The books and magazinges and music at the libary should all be at your own risk to checkout them. Everyone has differnt oppions at the libary. The censorship would be a bad decison if they did go through with this decison.. The libary would not offer as many things and most liekly less things would be getting checkedout. Therefore I do think that the cenosorship should not remove books on the shelves at libraries" 3 3 3 3 3 3 +4770 2 "I personally think certain materials, such as books, music, movies, magazines, etc.; should not have to be removed from the shelves if they are found offensive. First of all how do we define offensive? Is it something that discrimnates a certain group of people? Is it something that creates negative attention? Is it something we don't like? Anybody can walk in a library and find something they did not like, but that does not automatically mean it is offensive. The national geographic magazine often has pictures of naked people and so does the @CAPS1 magazine. So which one would we have to put censorship on? The answer is we don't put one because this would start a big arguement of which is offensive and which is not.It would cause a conflict of two different sides. It is only offensive when we make it offensive. We do not have to look at something we don't like.We all have a choice and we can choose not to pick up something we might think is offensive. The @ORGANIZATION1 @MONTH1 not get along with the @CAPS2 but if both were in a library together with both of their holy books on the shelves, they cannot say one's book is offensive to another because it does not agree with theirs. We sometimes forget we have the ammendment that allows us to the freedom of speech and press. We @MONTH1 not like what one person publishes but it doesn't make their work offensive because it might be for a certain of group that likes it, which is not offensive to them.Everything in the library has a purpose and if it does not fit our purpose then there is no way it woud be offensive to us. The library is a place for books, music, movies, magazines, etc..We come to the library to check out books for a research in order to learn. We also go to the library to read the newest book of a series. Putting a censorship on these things would not enable us to do these. We can't finish our research project because someone thought one book was offensive or we can't listen to new album @CAPS3.Dre released because some people think the lyrics are too offensive. Putting a censorship would upset the general public more than not having a censorship because if everyone can check out what they want from the library then everyone is content" 5 3 5 4 3 4 +4771 2 "We all hope that one day our children will not pick up a book or a magazine their not suppose to read. Children don't know any better. But why should we have to have movies, books and etc censored, cause their little children every where. If i had the right to keep the books and etc on the shelf i would. I think that we should be able to have books that are uncensored on the shelfs. If everything was censored we would really have nothing to read or to watch. Having everything censored thats just not fair to the world. Everyone should be able to watch what ever they want with out it having to be censored. If people favorite movies or music was censored it probably wouldnt be that funny to them anymore, they'll most likely just stop watching it. I don't believe that they should have a censorship in libraries. Certain materials in like cd's songs do come off little offensive sometimes, but that's just life. If you think it's offensive then just don't listen to it. That doesnt mean that they have to take it off the shelf. Maybe other people like that kind of music or etc. That doesnt mean they have a right just to take it off cause of that. If they did that's just really unfair. Children now days see more and know more what they are not suppose to know, for an example cursing. If a child happen to see cursing in a magazine at the library and their parents got mad that was in the magazine. The parent shouldnt really be mad and take that offensive, and think that not suppose to be in their. The library shouldn't have to censor thing's cause of that incident. The children will hear it or see it again soon or later. I would keep the right for the libraires to have things uncensored, if i had the decision. Those are some ideas why i think they shouldnt have to censor movies, music etc in the library." 4 4 4 4 3 4 +4772 2 "Libraries have a variety of material from books to movies. Most of this is intended for a general audience and many people can read or watch whatever they want. Some of the literature and other material you @MONTH1 find in libraries however, are not intended for certain people, such as young children. Censorship takes material that these certian people should not read away from everyone. Many people want censorship not just in libraries but in many aspects of life. Censorship is not bad per say but it does restrict people, who would normally have access to a certain topic, to a general catigory. Not everyone likes to read the same thing as someone else. Other then likes and dislikes is the problem of offensiveness. Everyone finds something offensive. Just because you find something that speaks a bold statement does not mean that you should persicute someone who is intersested in the subject matter. For the matter of protecting children against something they should not read yet is simple. Libraries often have dedicated children's sections where children @MONTH1 choose material approprate for their age range. More often then not I enjoy reading what I enjoy far more than something that is forced. Censorship takes away from the enjoyment of reading. By not having censorship, everyone will be happy in the fact that they get to read what they like. This also allows a variety of books to a variety of people" 3 3 3 3 3 3 +4773 2 The author is writting about taking books off that the adult's don't want the book's the end they won't have book's to. They take out the books that have bad words or pictures in them. Well I don't really belive that they should take them out becuase they het intresting well some of them do. Well I'm not a fan of reading I dont really like reading but I have to anyway and I dont think it should be taking out. I don't really think it should be taken out for some reasons it's better to have them so kids can read and learn bout the pictures. Some book's aren't that bad to kid's like to elementary kid's the only book's they like are the one's with picture's in them. The @CAPS1 school and middle school kid's like the chapter kind of book's and intresting book's. The parent's would like them to have educational book's that will help the kid's learn new word's and school related stuff. The book's the adult's want are the kind that have meaning to like have alot of knowledge and school realated stuff. They want there kid's to learn about what they are reading. But yea i din't think they should take out the bbok's that they have they shoul'd just leave them for the kid's becuase there atleast are educational to them. So the adult's would have more educational student's to relly on 3 2 3 3 2 3 +4774 2 "I do not think that materials, such as books, music, movies, and magazines should be removes from shelves if they are found offensive. I think this because people have different views and belifts on certains types of things, with reglion, culture, and sexaually. Some people can be defend by it but other might can be inform and learn new facts that they didn't already know. People are not going to look at things the same. Eveyone has their own way of life and think differently. If one person feel the book was offensive to them then they would take it off the shelves. One by one people would find other materials offenive and what does it leave us. No more books, music, movies, and magazines. Let face it everyone have different belifts, values, and purpose but taking a materials off the shelves because they found it offensive is ridulous to me. I say if they find it offensive don't read the book again or the magazine again. Feel offensive over a movie don't watch it again and the same as music don't listen to it again. Easy as that. Materials give us resources and we learn new things. If we didn't have materials like books, music, movies, and magazines we wouldn't be as smart as we is @CAPS1 are. American is about being free and have rhe right to speak our mind. So putting materials off of shelves is not the answer" 3 3 3 3 3 3 +4775 2 "Yes we should keep the books,music,movies,an magazines. The magazines an music might not be a good thing for some us for must people use music to consutrate on doing work an magazines help us on getting topics for class work. why would some one take books or any thing that help us in life, so the person who wants to take book away should live the books or anything eles alone. So to this yes we should keep the books,music,movies, an magazines on the shelfs. We need to start fighting for what we want an how we want it should not be know ones eles chioc to deside what is good for us." 2 2 2 2 2 2 +4776 2 "I do believe that book, magazines, music, movies and etc., should be taken off a shelf if a person wants to read the book or magazine. If another person wants to read the book or magazine they would just have to wait until the book or magazine is returned to the shelf. If another person wants to listen to music or watch a movie they should also do the same. Sometimes you just have to sit and think what is books, magazines, movies, music and etc., for and why are they on the shelves for if you can't read, listen or watch them. Book and magazine should be read and not just sit and be displayed. Music should be listen to and movies should be watched. The reason why I agree with the fact magazines and book should be taking off the shelf is because they were made to enterain you. A book or magazine is also made to catch the reader attention. Another reason why I think books or magazines should be removed from a shelf is to learn new thing. An example of learning new things is when you go to school you pick up the classrooom book you learn different thing like math, you learn about the history, or you learn about different thing in english class. Magazines and books were made so that different people can take it off a shelf and look though it even if they only want to look a pictures if it has picture. The reason why I think music should be taking off the shelf is to listen to different music such as rap, @CAPS1&@CAPS2, gospel,or @CAPS1&@CAPS2 and soul. Also, I think music should be removed from the shelf is because it was meant to heard. Some music can teach you what goes on in a person life or what goes on in their heads.Music can inspire people in different ways.Music is apart of life and most people in the world like to listen it different people that inspir them. The reason why I think movies should be taking off the shelf is because it is meant to be watched not just sit and let in movie cover entertain the people. Movies can also inspire different people to do different thing, such as become an actor also. Movies tell different stories such as life stories. Movies also give people something to do when they are bored. To conclude this all up, take movies, magazines, books and music off the but put them back so that other people can enjoy they thing you read, watched, or listened to. Watching movies and listening to music nad reading magazines and books can help people in life and @MONTH1 also inspire people. They were made for very good reasons so don't put them up just to be displayed. Take them and use them for good you want regret it in the long run. Ya'll be suprised what different things you can learn by reading, listening and watching." 3 4 3 4 3 4 +4777 2 "Different Then Everyone Else @CAPS1 do people find small things offensive?My opinion is the everyone as their own idea of what can be offensive to them.There are so many small things the can be offensive like books, movies, and music.Its not horrible or bad to have a book on the shelf the you might think its offensive. I find it a little rude to discriminate someone for thier one belonging. Books can be a way to learned new things about someone. I think sometimes books can tell you more then what can a person with there own words can.There are so many books the can be a little offensive to people and even kids.I know the a parent wouldn't like to have a book on the shelf about '@CAPS2', when they are getting @CAPS2.Sure is not a nice thing to read about but, really parents think about it.Don't you think us like kids need to know what really means @CAPS2?A book can tell us the and a good way or and a bad way but we can learned from it,and you dont even have to talk about it. Movies are similar like books,in one way the you can see it in action what there trying to teach everyone.I know the some movies are horrible just like @CAPS3 @CAPS4.Its a horrible movie to watch but really we need to know what really happened to does people. And even it a teacher is tell you have to see it with your own eyes to belive it. A good way it to watch the movie and learned from it. Music has a lot of ways of being offensive to people but singer's thats their way of express their own feeling about stuff.We can't really discriminate anyone for their own belives. There are so many singer like @CAPS5 @CAPS6, the use a lot of bad words in his song but thats how he get's his own feeling out to others. Even if the song is offensive to you its more of their own opinion just like we all have different opinon then others. My opinion about feeling offensive is we all are different and have a opinion about it and we need to respect the. Especially if i wanted to learned new things and someone doesn't want to tell me or show me I would want a book or a movie to learned. And parents just becuase I'm reading a book, or watching a movie or listening to music about bad stuff don't assume I'm going to do those things I would just want to learned about it. I wouldn't like for someone to take a book off the shelf especially if i want to read it. Remember its your own opinion about the book not everyone is different then you" 3 3 3 2 3 2 +5978 3 The features of the setting affect the cyclist in many ways. The features of the setting that affect the cyclist is the lact of information on were to go and the lack of water. This was a problem because he needed water for his trip and directions on were to go. 1 1 1 +5979 3 "The features of the setting affected the cyclist in a negative way. He was in the desert, which is dry and hot. I was traveling through the high deserts of California in June.""(Kurmaskie @NUM1). Also, the temperature was hot and made every thing around him hot, brackish water faling somewhere in the neighborhood of two hundred degrees"" (Kurmaskie @NUM1). Since he was in the desert, there was no escape from the sun. The text states, The sun was beginning to beat down(Kurmaskie @NUM3). The cyclist was all alone in the road with none around him either so into he passed out, no one could help him. and the growing realization that I could drop from heatstroke on a gorgous day in June(Kurmaskie @NUM1). ""About forty miles into the pedal, I arrived at the first town but on that morning it fit the traditional definition of a ghost town."" (Kurmaskie @NUM3). Thesettings that the cyclist was riding in wasn't good ones and so they negativly affected him; causing him to be dehydrated and tiredin the end." 2 2 2 +5980 3 "Everyone travels to unfamiliar places. Sometimes we get lost and ask locals for directions which @MONTH1 not be a good idea. The setting affected the cyclist. He had a perfectly good map but asked older men who look like they havent been out in ages. The old men apparently havent been out because they gave the cyclist the wrong directions. My advice would be to not listen to anyone no matter their age if you have a perfectly good map with you. Also try to know where you are going at all times. Yes, sir!" 1 1 1 +5981 3 "I believe the features of the cyclist affected him because he was impatient and trustworthy he tock the old mens advice to take an hr of his time bay taking a short cat, if he would of stayed true to the mep he wouldnt of almost ared of heat but his impatientress got the best of him so he took the shortcut. After his experence he new haes to stat ?? to the mep and not trust people who havent seen changes in the last few years. " 1 1 1 +5982 3 "The setting effects the cyclist because of the setting were diffrent the story would not of made sense. The setting of the story is not and dry with scaterd ghost towns. When he reaches the first town he sees One ramshackle sheds several rusty pumps and a coral that couldnt hold the lamesh mule. If the setting had the problem of no water so there would be no conflict in the story, In the story the speeker says I was travling through the high deserts of California that are very hot and dry, and he says This causes the problem of it being hot and dry if the seting was a forest in @DATE1 he wouldnt have as much of a problem needing water which would of made the story much less exciting." 2 2 2 +5983 3 "There were many features of the setting that affected the cyclist. For instance, it was extremely hot and dry. Also it was nearly deserted, almost all of the places he crossed were deserted .A lost her features of the setting were a ram shackle shed, several rusty pumps, and a corral that caldnt hald in the lamest move.an is the feature give you an idea if haw the cyclist feels. " 1 1 1 +5984 3 The cyclist was riding through a tower when he stopped for directions. These old men told him to take a short cut and he did and got lost. He was in a ghost town in the desert. In conclusion the desert is hot. 1 1 1 +5985 3 "The affects of the cyclist is if it does not change. it cut hurt a lot of people feeling because they @CAPS1 dont care about the cyclist. Im one of them people who does not care about it cause it does not affect me or anyone I know. It is a big deal to write people, some of them @CAPS1 blow stuff up. They talking on tiv and on the radio making all this stuff they say is made up. I dont believe to I see it. That @CAPS1 not for black people because it has not did anything to us. We really dont care about the affects of the cyclist." 0 0 0 +5986 3 "The essay Rough Road Ahead: Do Not Exceed Posted Speed Limit describes a mans bicycle ride through California. Now, California is very hot during the summer, which is when the cyclist is riding. This setting greatly affects the mans journey. It made it very difficult for him to finish his ride. He drank most of his water in the beginning of his ride so he gets very dehydrated. The text states, The water bottles contained only a few tantalizing sips. As you can see the setting makes this mans bikeride very hard." 2 2 2 +5987 3 "In the story, Rough Road Ahead: Do Not Exceed Posted Speed Limit written by Joe Kurmaskie, represents how certain conditions can affect a cyclist. The cyclist was biking through the desert to reach Yosemite National Park, but on his journey he accoutered many tough conditions to make it difficult to get there. First of all, the desert was very hot which makes travel very difficult. For example the text states, the sun was beginning to beat down. @CAPS1 makes any task difficult because the sun drains a persons energy. Secondly, the trip was very long so the cyclist had a hard time conserving water. For instance, the man drank so much water, he almost ran out; The water bottle contained only dehydration which can cause death. Joe Kurmaskies story, Rough Road Ahead. Do Not Exceed Posted Speed Limit, represents how certain conditions of an environment can affect a cyclist. " 2 3 3 +5988 3 "The setting of the authors shortcut effected his performance and strength tremendously . whether it was the hills, heat or barren landscape all three took their toll on Joe Kurmaskie. Not only that, but his lack of water depleted his energy as well. Flat road was repalced by short rolling hills. The hills were a tough thing to pass since Joe was being drained of energy. He overcame this exhaustion when a building came into views. I wiped the sweat from my eyes to make sure it wasnt a mirage, and tried not to get too excited with what I believed was my last burst of energy. I manouvered down the hill. The authour overcame all the problems ne faced even though it was difficult. He seems to have written this piece to exaggrate how important it is to keep going when you want to give up. Winston churchill once said, success is not final, failure is not fatal: it is the courage it takes to continues that counts. I believe that @PERSON2 agrees." 3 2 3 +5989 3 "The features of the setting affect the cyclist very much so! The cyclist is riding through the hot desert. Meaning he needs lots of cold water to keep him hydrated. The longer he rides in the hot sun, the more he sweats, the more likely he will get dehydrated. If he was riding in the rain or snow it could possibly slow him down also, because he would be cold and his muscles might get stiff and not be able to move as fast. This is why the setting affects the cyclist very much so. " 1 1 1 +5990 3 "There was many features that affected the cyclist such as heat and lack of water. The cyclist was drinking a lot of water throughout the story and ends up only having little water left. I eased past, trying to keep my balance in my dehydrated state. That shows he wasnt prepared with enough water for his trip to Yosemite. Without water he/she would die from the heat. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from heat stroke"" This states that he @CAPS1 the danger of not having enough water in his system. Features such as water and heat affected him/her throughout the story. Not having enough water could make him/her lose more sweat and the heat is making him lose even more sweat which can cause extreme heatstroke." 3 2 3 +5991 3 "The features in the setting affected the cyclist in many ways. Initially, when the cyclist went through the road with the big snake in the middle of it made him keep cations and very unease. Furthermore, the desert and nothing around gave the cyclist of abandoness and no help for when he is I trouble. Finally, the cyclist is greatly relieved when he sees the bait store and that people are there. The features in the setting greatly affected the cyclist on his ride." 1 2 2 +5992 3 "The features of the setting in Rough Road Ahead:Do Not Exceed Posted Speed Limit, by Joe kurmaksie,greatly affect the cyclist and put him through many hardships that he probably could have avoided.The old cotagers told him about a path they thought was right,but was hard and did not get him to the right place.The features of the setting are described as flat road was replaced by short rolling hills." 1 1 1 +5993 3 "In the essay Do Not Exceed Posted Speed Limit the author Joe Kurmaskie uses the features of the setting to affect the cyclist. The cyclist is affected by these features because of he sees the same setting (the dessert) for several miles, he has no water and, the road has a lot of hills. The cyclist could been affected by seeing the dessert and no scenary changes for a wahile. When you look at one same scene for hours you could start to get tired and bored with everything. So this cause him to be very drossy and bored. Also the cyclist had no water as none of the fountains were cold water. Having no water out in the dessert could make you dehydrate and faint." 1 2 2 +5994 3 "Many different characteristics in a setting and determine the outcome of an event there. Im the story, Rough Road Ahead Do Not Exceed Posted Speed Limit, the cyclists journey was affected my a few weather relouded things. The heat was an extreme thing that showed him down and in most cases detened him from reading his maximum level of ability. Also the time of your in which this labes place, greatly affects the cyclist. Lastly, the type of road and amount of ground that he has to cover after affects his performance. Overall, setting can be a determining factor in a journey as they life" 2 2 2 +5995 3 "The setting of the story affects the cyclist in many ways. Since he is riding in the California desert, he always feels very hot and is always in constant thirst. In addition to this the area he is riding in appears to be quite desolate. He finds nothing but old abondored buildings. He doesn't find anyone. No people or cars, or any sign of modern civilization. This causes him to feel a little unnerved as if something happened to him nobody would know about it. This is especially prevelent when he become dehydrated. In those ways, the cyclist is very much affected by the setting." 2 2 2 +5996 3 "In the story Rough Road Ahead by @PERSON1, the features of the setting affect the cyclist in many ways. One way the setting affects the cyclist is, in the desert, the cyclist drank more water than before. For example, the text states I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June. You will drink more water in a desert than in a forest. If you go cycling, be aware of the settings around you because they will affect you." 1 1 1 +5997 3 "Some features of the setting affect the cyclist. First the cyclist followed the old codgers advice of how to get to Yosemite National Park. Their advice was no use and didnt help her in the end. Next, a tarlike substance oozed out of what she thoot was going to be water. Then the terrain changed to short, rolling hills, which wasnt helping, her bike better. Lastly, ""tumble weeds crossed my path and a ridiculously large snake, slowed her down. All of these road blocks in the setting affected the cyclist." 2 2 2 +5998 3 "The features of the setting that affect the cyclist are the lack of water, out of date information, and rolling hills. If he had up to date information then he would probably have got water from a town thats not empty or almost empty like a ghost town as the cyclist said." 2 1 2 +5999 3 The cyclist has a couple things if he racing and the wind is blowing then theres a problem and he has to follow traffic law and ride on the right side or the road. 0 1 1 +6000 3 "Do Not Exceed Posted Speed Limit had a rough setting between harzardous things and the death defying heat. The cyclist had to endure the pain of dehydration and determination. He had been given bad directions that almost caused him his life. He was travelling through a desert and claimed the temperature was @NUM1.Also, the cyclist had to ration his water because it was ghost towns in which our character passed through. He used nature skills hed once learned and began to suck on pebbles which take the mind off thirst and uses saliva to help refresh your throat. Throughout his adventure everything kept this young man from getting water and to whenever there was water any faster. He had survived and wouldnt ever take shortcuts again" 2 2 2 +6001 3 An example of the setting affecting the cyclist is when he has the lock of water in a ghost town in just eliterat. He frind the water but e tar like substance come out and it tasted like battery. When he left he had to go through rough road which he couldnt travel that fast leanes of the condition of the road. 1 1 1 +6002 3 "The cyclist had a very hard time geting to Yosemite National Park. This is because the sun was out, and it was in the middle of June. I was so hot out the cyclist became dehydrated faster than he would have on a cooler day. When the pumped the handle of the old rusted water pump, he said the water felt, somewhere in the neighborhood of two hundred degrees. The cyclist also had to deal with a lot of ""short rolling hills"", which was much more difficult to bike on than flat roads. On top of everything else the roads were in very bad condition, so you had to watch for rocks in the road." 2 2 2 +6003 3 "The cyclist in the story is at first confident in accepting the old mens help, and doesnt seem to suspect anything is wrong when he first starts out. The way the men directed him seem all going for his water supply is all in store, and the first land mark, a ghost town now, is exactly where it is supposed to be. The next town he hits doesnt have anything that could replenish his diminishing water supply and he starts to feel troubled. However he was told the next town wasnt further, so he pressed on. Then the scenery makes a drastic change, the flat roads becoming hills, the sun beating hotter- it really look like a desert after tumbleweeds even go past! The cyclist continues on, despite being very dehydrated. The next thing to come along is an old juice building that almost seems to mark him on how he has no water. He keeps on, however, and at last sees a shop where he can get water. The canging scenery sends the cyclist from confidence to worry, to hopelessness and lastly, relief." 3 3 3 +6004 3 Well I would put it like this is that the weather had everything to do with it because the not weather make you tired and upset and easy to angre so now it make you upset and and then stress. 1 1 1 +6005 3 "The features of the setting affect the cyclist in two way. This ways are pysical and mental. The pysical ways that features affect cyclist is the terrain. If the roads are long and wiredy, this could wear the cyclist out. They could also become physically tired if the incline of the hill is to steep. When its you against gravity, it can be egausting. The temperature can also be a crusal factor in a cyclist pysical ability. Nobody want to feel like their in a sauna when they are bike riding. The cyclist and also be attracted mentally. If the terrain looks deserted or anything like a desert the byciclist instintaniously thinks dehydration and death. If some people see dead animals or bones they would think they could die. If they see vulture circling them they would get afraid and think death, but the worse thing of all is that knowing all of these things are in the same place at the same time. This is how setting affects cyclists" 3 2 3 +6006 3 "The settings of the story were grveling. While the cyclist was riding along, the sun was beginning to beat down on him. The cyclist began to sweat due to the heat and thus he drank just about all of his water. Now the cyclist was experiencing major heat, sweat, and dehydration. The California desert is a grveling place to be, especially in June. Luckily, the cyclist did come up to a camp and found fresh food and water, before he would eventually continue his way to Yosemite National Park" 2 2 2 +6007 3 "As the cyclist is travelling to Yosemite National Park, he comes across many features in the area that affects him. First, he takes directions from some old guys who dont know anything about the changes in maps because they never leave their porch. At first, it affects him in a positive way, because he thought he had a good shortcut to Yosemite. However, the affect later came negative because it turned out to be a shortcut that never existed. Another feature that affected him wasted the setting which was a desert-like area. The heat made it harder for him to ride his bike, and he also drank a lot of his water. This later resulted in him becoming dehydrated. A positive affect was when he found the bait shop, where he rehydrated himself and got some new directions." 2 3 3 +6008 3 "The features of this setting affect the cyclist in many ways. The setting is a dessert so by common knowledge you know that it is going to be hot and dry. Because it is hot the cyclist needs more water because he is getting dehydrated. And when he is on his low of water because it is dry into mouth gets drys. @CAPS2 because he is in the dessert he sees wild sometime dangerous animals, in the story he sees a ridiculously @CAPS1 diamondbrock snake, which I believe are venomous, @CAPS2 because of the extreme heat of the dessert he realizes that he had ??? chance of dropping from heatstroke. @CAPS2 the writer said that the dessert had short rolling hills and rough road ahead ??? would leave worn the cyclist out. Because of this terrain the cyclist way affects." 1 1 1 +6010 3 The features of the setting affect the cyclist in many different ways. One example is the hot sun that was beating down on him made him very thirsty. Another feature is the rough road that wore the cyclist out and made him tired. My last example is the old juice factory with the picture of a refreshing cup of juice on it made the cyclist feel like giving up because he thought he would die of dehydration. These are my reasons as to why the features of the setting affect the cyclist in many different ways. 1 1 1 +6011 3 In the essay the mshan writes of rough rodes timit the cyclists had to overcome to reach @CAPS1 gole. 1 1 1 +6012 3 "Understanding, realitic, mode-all are reasons how setting affects the setting. If a book has a good setting then the book might be pretty good. When you have a setting its more understable of what they are trying today. And if you have a good setting it makes it more realitic So when you read it you wont be thrown off, the mode of the story sets it all off, because usually books have there ups and downs. Thats why they chase the mode. " 0 0 0 +6013 3 The setting of the story affected the cyclist by making him dehydrated which could lead to a heatstroke. I could drop from a heatstroke this shows that it was hot out and he was feeling bad if he could have dropped from a heatstroke. 1 1 1 +6014 3 "The terrain during the cyclists journey greatly affects him. For example, the first terrain that he experienced was not very hilly, but rather flat and soothing. The author stated, I rode into the morning with strong legs and a smile on my face. This shows that he was energized and happy. However, the reader can predict that the journey will not remain this joyful, because the cyclist is basically in the desert during the summer, in which it is extremely hot. Then, the cyclist experiences hilly terrain that sucked the life from his body, especially because he had no water left. The cyclist said, sometimes life can feel so cruel"", emphasizing that the cyclist mood had changed from enthusiastic to tired and forlorn. This change of mood from the terrain can be connected to real life, as obstacles are include, in which the person must persevere and be strong to overcome, in which the cyclist finally did. " 3 2 3 +6015 3 "The features in the story great effect the cyclist. One feature of the setting that effects the cyclist is the heat. At first, the story says that the pine trees cooled the cyclist, but eventually the forest turned into a desert, and the heat poured down on him, make it hard to cycle. Another feature that effected the cyclist was the lack of water. As he moved away from his beginning point, the cyclist was drinking lots of water. But when he needed to refill, the water was brown and hot, so the cyclist didnt take any. The lack of water plus the heat formed one giant obstacle that potentialy could have killed him, but through great determination the cyclist got through this troubling time." 2 2 2 +6016 3 "The narrator in this story goes through a tough journey insisting of hope, challenge physical pain, despair, and relief. All of these are further developed by the settings where they take place, For example after taking advice from old men at a campsite, he is on his way through the deserts of California. If he had been almost anywhere else, his journey could have been much better. He could have gotten more reliable advice, or had been in a place where the towns were not miles and miles apart. Also, at one point he reaches a snake on the road. This could symbolize a decision, which was to go and how it will affect the outcome of his trip, or perhaps the decisions he had already made. To take advice from strangers and better yet he should use it. The irony continues as he becomes dehydrated and the flat land turns hilly. If that werent to happen he could have been more successful and healthy on his trip. The setting in this mens story are necessary for if to have plot line and have the humour it possesses. If he were in the city, for example, he would not get lost and stranded, and therefore would have no story." 3 2 3 +6017 3 The setting in the story changes many times. It starts in an area with rivers and pine trees. Then the cyclist arrives ant a town. After that he is pounded by the hot sun and along hilly road. With not much water left the cyclist uses all the energy he had to get to a town where he could get something to drink. The setting was what made the cyclists journey a hard one. 1 1 1 +6018 3 The features of the settings affect in the story Do Not Exceed posted speed Limit it is the morning and everyone is still sleep and he wakes in the morning for something to do when he pull up to the first plase he thinks that they are all old and crazy and he thinking that the places needs fixing because the houses are falling apart. Then..leaves and see these wide bunch of hills. inconclusion I would never do all the riding he did. 1 2 2 +6019 3 The setting effects the cyclist because he is in the desert with no water and doesnt know where he is going. The old men on the porch gave him wrong directions now he is lost in the desert. The cyclist find the will power to keep on moving and he finds help along the way. He finds another old man there that offer him directions but he says he has a map 1 1 1 +6020 3 "The setting in the story discouraged the biker very much. As he follows the advice of the elderly men and starts off his journey he notices that there is, no one in sight, not a building, car, or structure of any kind. He uses tone words to describe how had things are when he says, The water bottle contained only a few tantalizing sips. He describes in exhaust how hard his journey is getting. He describes the intense heat inthe desert of California, pedaling up, one long, crippling hill. The terrain did not make his rideeasy at all. The factor of weather, rolling hills, and the shortage of water take a tall on him. If he were on flat terrain on a cool day then he would have been first fine." 2 2 2 +6021 3 The features of the setting affect the cyclist alot. The hot sun beating down on him makes him sweat and makes him thirsty. The bumpy roods and hills make him work harder. The abandoned places make him lose hope. If faced with these obstacles I would have been affected in the same way. As I believe any human would be. 1 2 2 +6022 3 "The features of the setting affect the cyclist.The features of the setting, or nature, affect the cyclist because they are wearing her out. The cyclist is going to the city of of yosemite but some guys gave her a short cut. Through this shortcut are hills and heat and lack of water. @CAPS1 describes this by saying, I wiped the sweat from my eyes to make sure it wasnt a mirage, and tried not to get too excited. @CAPS1 is excited that there is a building that @CAPS1 might get some water from. Also, @CAPS1 wiped the sweat from her eyes meaning it is hot outside and @CAPS1 is sweating and losing water. Therefore, the features of the setting affect the cyclist." 2 2 2 +6023 3 "The three most important features of the setting that effect the cyclist are the ground he is traveling, the towns he passes, and the availability of water. The ground the cyclist is riding over is important because the rougher the terrain, and the more hills there are, the more energy he must use, and the less distance he can travel. @PERSON1 is riding fine until he must travel the rolling hills which consume his energy, ehausts his water, and causes dividing hope. As he approaches towns, his hope increases but soon fades due to the realization that the town will be unable of giving him relief. When he pumps out water that tastes like battery acid, his hope once again diminishes. As he sees the bait and tackle shop, he knows he can make it there and that when he gets there he can recover. These three features are what effects the cyclist the most." 2 2 2 +6024 3 "In the story of rough road ahead :do not exceed posted limit the setting affected the cyclist. In the middle of the desert during the summer the cyclist was low on water. The old men gave him the wrong directions, so mainly it is the old guys thought he dies. The cyclist survives but the heat and the season he was riding hell probably bring another water botlle nextime" 1 1 1 +6025 3 Some of the features of the setting affect the cyclist like the road was bad it had bumps all over that made it much harder and it also took up a lot of strength. Also the neighborhood of two hundre degrees after that become to a road with arore bunch of hills 1 1 1 +6026 3 "In the story many different settings affected the author in many different ways. In the very beginning of his journey he came across a ghost town. He reacted to the features of this setting with humor and hope. I chuckled, checked my water supply, and moved on."" He still has hope that he would end up safe and in the right place. The next setting was an abandoned shed with a water pump and a fork in the rode. He grew worried when he saw that no near town was still in sight. This sight was troubling when the features of the next setting caught his eye he was desperate and devastated. At some point, tumble weed crossed my path and a ridiculously large snake He was on rough terrain in the middle of the desert with little water, when he reached the abandoned @CAPS1s factory all his hope was lost and when he was planning his death. I was going to die and the birds would pick me clean."" @CAPS2, when he reached the fish camp, he was relieved ""I had overwhelming urge to seek out Gary and Wilber, Kiss them and buy some bait. He was overjoyed and overwhelmed because he had survived. " 3 3 3 +6027 3 "Ghost towns are not exactly the most inviting place for a cyclis trunning low on water supply. In Rough road ahead: do not exceed speed limit the cyclist is affected in many ways by his surrounding settings. Starting off on a warm day with the sun bright start off as a good thing, while his mood is still fresh and happy expressions play on his face. But as he moves on he speaks of how The sun was beginning to beat down expressing his remorse of listening to the old men that led him on their shortcut. Along the road he comes to his first let-down, a ghost town with one ramshackle shop, several rusty pumps and a corral that couldnt hold the lamest male. @CAPS1 he tries to pump the water from the corral but gets a battery-acid flavor and is forced to continue onward with little left to drink. This affects his mood to pity for himself and anger at the men who put him into the predicament. By the end he is relieved though when he comes to GARY & @CAPS2 FISH CAMP, a place with a working sink full of cold water. He says he had an overwhelming urge to seek out @ORGANIZATION1, kiss them and buy some bait. His thankfulness is expressed to men he doesnt even know but because they were the light at the end of his long, dark and very exhausting tunnel." 3 3 3 +6028 3 "The features of setting affect the cyclist. It was hard arrived at the first town for author. For example Rough Road Ahead: Do not Exceed Posted Speed Limit. The road that author was ridding, it was rough. @CAPS1 example is Flat road was replaced by short, rolling hills. All the road was hills and rough. Than The water bottle contained only a few tontalizing sips. @CAPS1 doesnt have that much water. That was really hard." 2 1 2 +6029 3 "The features of the selling effect the cyclist a lot. One factor that would effect the cyclist would be the heat. Also, because of this factor, hes pobably suffering from lack of water. Hes probably really hot seeing hes the only one cut in the middle of nowhere for what looks like miles. Another feature of the setting that would probably effect the cyclist is the thought of there @MONTH1 be a car around this next turn. If he cant see around the next turn he doesnt know is coming. The cyclist could also be thinking about when the next town will show up." 1 1 1 +6030 3 "The setting puts a great deal of stress on the cyclist. The biggest issue he faces is the weather. He is a cyclist traveling through the high deserts of @LOCATION1 in June. He had been riding his bike all day and he was soon going to run out of water. Just when he thought he could drink more water, he drank water feeling somewhere in the neighborhood of two hundred degrees. The weather being so hot and humid, did not help the cyclist throughout his journey. Another factor of the setting that affected the cyclist was the terrain. Flat road was replaced by short, rolling hills, is a main problem the cyclist faced. These changes in terrain played into the fact that the weather did not cooperate. The hills made the cyclist work harder therefore use more energy. Luckily the terrain had a positive affect on the cyclist as well. The stones he found on the ground, helped keep his mind off the thirst. There were many factors of the setting that negatively and positively affected the cyclist throughout his adventure." 3 2 3 +6031 3 "The narration of Rough Road ahead a solo cyclist encounters several challenges throughout the story. The changes in his environment directly affect the completion of his journey and his health. As the narrator makes his way to Yosemite national park from the none of the old men his first encounter with his environment acknowledges his deserve and need for water. The text states I had been huting my water pretty regularly... the high deserts of California in June. To disappointed the truck stops water supply from the pumps was not adequate for his concumption, only forcing him to link elsewhere to quench his thirst next, he explenced rolling hills by exsercising more energy he made his way now everyone still in need of water. His spend lost his quickness as thoughts of his crippling dyhydration distracted him. He wer came his challenges making his was to a bate shop as the heat beat him unmercifully. The change in his environment challenged his heath and created a obstraction that nearly deterred him from his goal." 3 2 3 +6032 3 "The setting affected the cyclist a lot. One way was the heat. It got so hot that he was becoming dehydrated. He kept drinking his water, until he didnt have any left. Another reason is because the road turned into hills which made him use more energy. Finally, it didn't help that he hadnt seen any sign of living creatures except for a snake @CAPS1 how the setting affected the cyclist." 2 2 2 +6033 3 "The features of the setting in Do Not Exceed Posted Speed Limit affect the main character the cyclist. The cyclist is biking through the high desert of california in June. So naturally it can be infereal that it is not and dry, making water a delicacy. As the cyclist is passing through a ghost town and a pump that releases a tarlike substance followed by brackish water he is runningout of his precious water. The surrounding landscape of lonely hills tumbleweeds and snakes does not inspire confidence. In fact, the cyclist feels that l cald drop from heat stroke on a gorgeous day in June. He finds an old Grape Juice Factory no longer in service causing more anxiousness and dispare l have had an experience similar to this where l wat out walking in a state park in the @DATE1. I was freezing, and a desolate landscape of snow covered trees made me feel at if Id never be warm again similar to He cyclist whos environment made him feel hes wald die of dehydration. So, as can be seen. He setting of this short story affects the cyclist. " 3 3 3 +6034 3 "The settings that affected the cyclist were in fact ones you dont want to be near when you are out of water and tired from pedaling. The time and place affected him greatly because there wasnt a cool breeze in the air in June at California. He was in the middle of flat deserts and had no sense of where the part as and where civilization too so he can get some water. The quote old timers who havent left the confines of their porches since Carter was in office helped you realize taking advice of direction from old people who dont go anywhere is a bad idea. Flat road was replaced by short rolling hills. This quote shows you some terrail features that affected the cyclist. Furthermore, the cyclist realivingly found civilization with running water." 2 2 2 +6035 3 "In the story Do not exceed posted speed limit"" the author Joe Kurmaskie tells you that there many things you have to go through before you get there. The example is when ""he stops and asks for directions to Yosemite state park"". Because he did what to get lost. When he had to and other towns. The next example is when he came to a rock in the road: And had to get water form a old rusted pump because he had really no water left in his water bottle" 1 1 1 +6036 3 "I think the features of the setting that affected the cyclist were the terrain Flat road was replaced by short rolling hills this shows that he is a warm and trobled by the change of the terrain. He also fells alone I toiled on at some point tumbleweed crossed my path he also. Though he was in a ghost town. Summer time rattled around in the dry honeycombs of my detorating brain"" he felt that he was slowly dying. He also though he was losing it, the sun had a great impact on him because he wiped his face to make sure he was no seeing a mirage. But through it all he had hopes the author also wants us to have hope and keep on going even though things dont look good keep moving foward never look back and alway's be positive and take advanage of your surrounding. This is the message the author tries to give" 2 2 2 +6037 3 "Heat, dry, flat - all are features of the setting that effected the cyclist. As the cyclist was driving through the desert, he noticed how hot it was, and how he would become dehydrated quickley. I was also very dry and and he started to get nervous about how thirsty he was. The flat ground models how there is nothing around that can help the cyclist, which made him scared. The story also metions that he is a ghost town" 2 2 2 +6038 3 "The features of the setting effects the cyclist by the way that the auther started talking and how he sound at the beginning of the story. When they both at the picture he looks like hes cecilla ssing and then ceoos. To the story and goo continue ties reads. It doesnt sound like he is enjoying his ride, because of the niuse he was down on the bumpy roads, sparkes, and the bor of counter tirst he doesnt have. hes sacting time and sec from add perso doesnt mic at all because there could hou old timers and dont know once thou are tailoring around her, to save, to goo shouldnt take advice from them because goo could end its line this nidsnes transitin califend doesnt and how feres how could now do it, to let some or therefore so be dehydrated." 2 2 2 +6039 3 "In the story Do not exceed posted speed limit by Joe Kurmaskie there were many things that effected the cyclist. Such as the water. He had no really good water to drink because of where he was''. When I tryed a drop or two, it had the flavor of battery acid''. He wasnt able to drink the water because the battery acid'' that was in it could have made him very sick. Also the unstable roads that he had to bike through made things hard. ''Rough roads ahead'' To ride on unstable ground can be very hard to do. So just these two examples, the water and Rough roads made the features of the setting deffinitly effect the cyclist." 1 1 1 +6040 3 In the essay Rough Road Ahead Do Not exede posted speed him if many of the featutres of the setting affect the cyclist. At first the cyclist goes by river wich he wount find later in the journey.As he goes along in the journey the heat and lack of water starts to affect him. Also he finds a water fountain that pours hot water with the flavor that has long since been shut down. The cyclist is affected by many features of the setting. 1 1 1 +6041 3 The feature of setting affects the cyclist because the roads are too rough. If he gos too pot he could spin out of commission and the water was trouble. He sad when I tried a deep or two it had the flavor of a battery acid. 2 1 2 +6042 3 "The cyclist is mostly affected by his lack of water. In the beginning of his ride the cyclist is confident and is striving to reach the joys of @LOCATION1. He longs for, the cool pines and rushing rivers (@NUM1). Later on when the cyclist reaches the rough terrain, he starts feeling exhaustion as he depletes his water supply. A bit of relief later comes upon him after a long climb over a hill until he sees a shut down juice factory almost seeming like it was put there to tease him. His destination fills him with relief and pride, knowing that he would survive the strenuous journey." 2 2 2 +6043 3 "The setting effected the cyclist in a great way. The snakes blocked his pathways, and hi short water supply made it hard to continue. He felt as if he could drop of a heatstroke. His environment, and the information from the old man made his ride very hard to continue. All in all, his settings had a big effect on him." 1 1 1 +6044 3 The setting affected the cyclist because of the rode conditions. The rode was all messed up. 1 2 2 +6045 3 "The cyclist was well prepaired for his adventure however hot enuff for a change in senary. When the old men told him to take a difficult path and did his in tire setting changed for the worst. After this he was nearly over powered by devastating hills and dehydration was slowly creeping up on him as well. He had not nearly packed enuff water or supplies for a change such as that and he would regret it later. The Hills were steep and endless, and the sun was hot and mercilous mankind it even worse on him. This is how the change of setting affected the cyclist. " 2 2 2 +6046 3 "Setting can affect anyone and everyone, in this case it happened to be a cyclist. Since it was June, it happened to be pretty not outside causing the cyclist to lose more body fluid due to his constant movement producing sweat. This makes water a must have. Also, as he passes through, he comes across a sign that read: ROUGH ROAD AHEAD: DO NOT EXCEED POSTED @CAPS1. Since the road was harder to drive on, riding a bike across it isnt much easier. Anothe way the setting affected the cyclist was the snake that blocked the road, which he thought of to be a diamondback." 1 1 1 +6047 3 "The features of setting really effects the cyclist because of the condition. For example, the weather, it is hot, it will slow the person down. And if its perfect that will let the person go at regular speed. And the roads, if the road is bumpy that will slow them down. And if its smooth that will speed them up. See, it really does depend on the condition." 1 1 1 +6048 3 "The setting affects the author alot. First he is in a California desert in the middle of June. It is very hot out. This makes the cyclist very tired. There are some cool pines, but they do help much. There is also no where to get water for a very long time. The narration states, I eased past, trying to keep my balance in my dehydrated state"" (Kurmaskie @NUM1). With no water the cyclist was dehydrated. This hurt his biking skills like balance and led stregth. Finally there was no one around for most of the story. The cyclist did not know how far he had to go until he reached @CAPS1 or water. There was also no one to help him if he were to have a heat stroke." 1 1 1 +6049 3 "In the story Do Not Exceed Posted Speed Limit the features of the setting affected the cyclist. For example, the cyclist traveled miles on a bike dealing with the weather in the deserts, little bit of water, and being tired. The cyclist faced many hard times trying to travel on a bicycle from one point to another." 1 1 1 +6050 3 "The setting of this story greatly affects the cyclists attitude and adversities. The path of the cyclist is through California deserts, which are dry and hot. This first presents the major conflict of the story, the danger of the cyclist getting heatstake. In the reading, the author says, I had been hitting my water bottles pretty regularly If the setting was in a cooler climate, the author would most likely not drank as often, and would not face dehydration. The trip would not have been as dangerous for the cyclist if the climate was different. Another element of the setting that affected the cyclist was the terrain. In the reading it says, Flat road was replaced by short, rolling hills. The rough road not only would take a toil on the authors body, but also his mind. While riding, the author thinks, I was doing a water-depleting 12 mph This shows how his attitude is getting less and less optimistic as well as keeping his mind on his thirst. Thinking of his thirst would only get him more thirsty. The small change in terrain had a large impact on the authors journey. Perhaps the most influential element of the setting is the isolation. Only until the end of the story does the cyclist run into another human. Up until that point, He was all alone, having to deal with his thirst and fatigue on his own. If the setting had been in a more urbanized area, the cyclist could have gotten help from other people, which would have made his ordeal very easy. Also known, that nobody was going to help him played a large role in the mental state of the author. In conclusion, the conflict of this story was set up by the setting. If the setting were not hot, rough, and isolated, the cyclist would have had an easy journey, and the story would not have been as exciting or interesting. A different setting in my opinion would have ruined the story." 3 3 3 +6051 3 "The features in the setting affect the cyclist in many ways. When the cyclist was going through the desert, it had be dry old, dirty . I came to a fork of sorts, One ramshackle shed, several rusty pumps, and a corral that couldnt hold in the largest mule greeted me. This side was troubling. when she wanted to us the rusty water pump farlike substance oozed out and the water seem like to be @NUM1 degrees. Not two miles into this next section of ride, I notice the terrain changing. Flat road was replaced by short, rolling hills. This made it more difficult for the cyclist to ride the bike. This would make the cyclist more tired. As the cyclist moved on it was getting more tire and his water supply was going down. It was try me to keep his balance while he kept riding" 1 1 1 +6052 3 "How the setting of the place effects the cyclist is for one its to dry a cyclist would be ridy for haurst shouldnt be in a place thats dry.Like in the story it says I was travelling through the high parts of California in June meaning it was really hot and dry.Second would be the animals there dangerous.A cyclist should be riding in a place with diamond back snakes it says in the text I toiled on.At some point,tumbleweeds crossed my path t a ridiculously larger skilt it really did look like adiamond back which if it really has one would be really dangerous & cyclist should not be riding in that type of dangerous places no matter what type there are.That is how the settings of the surrandings effect the cyclist & how can its a bad place for them to ride." 2 2 2 +6053 3 "The features of the setting affect the cylceist by the ground would change terrian a lot makeing it difficult to ride at the same speed the entire way. Also, the lack of water made it hard to focus. I think the features of the setting affect the cycleist by people think they are worse than the actually are." 1 1 1 +6054 3 The setting affects the cyclist in many ways. The setting affects the cyclist because the weather is very hot and humid which makes him sweat which is using up energy because his body is trying to stay cool. Also the setting affects the cyclist because there is no water so on top of sweating being out of energy he has no water to refuel his body which makes it very hard for him to keep going. 1 1 1 +6055 3 In this story the cyclist is going through a desert of California. This is a reason why he is very limited on water supply. It is really hot which would cause him to drink a lot more water. He had started his journey in the morning so that the sun wasnt as hot as it would be in the middle of the day. Then it started to get a lot more sonny. So with the sun comes more heat. The rider says The sun was beginning to beat down. This would help the readers realize what time a day it was and how hot it was. This was in the morning so he didnt realize it but as it got into the afternoon he realized it and started to get dehydrated. 2 2 2 +6056 3 "The wonderful features and settings had a dramatic affect on the author. The affect was bad rather that good. First, there was the almost unbearable heat. The author had limited amount of water and used a lot of it because of the smoltering temperatures. Another feature that had a great impeidence on the authors well being would be the lack of water in the pumps he stumbed across at the snack. Lastly would be the tar-like substance that came out of the pump when author tried to get water. There was also Brackish water in the that tasted suspiciously like Battery acid." 1 1 1 +6057 3 "The cyclist is traveling through a rough part of California during the hot month of June. The author describes part of part of his journey; ""I was traveling through the high deserts of california in june."" The heat of the sun and not much water around is causing the cyclist to worry about his health. A little further into his journey realizes how bad he could get if he doesn't find water soon. The author write, ""the growing realization that I could drop from heatstroke. ""As the cyclist has run out of water & there is no sign of life around, he begins to feel that he @MONTH1 never make it through the desert to yosemite National Park.The author describes this ""I was going to die and the birds would pick me clean. ""The setting of the cyclist""s journey greatly affected how he percieved his journey." 3 3 3 +6058 3 "The features of the setting affect to cyclist because of where he is. The biker is in a campground in California. By saying that one could sense it is a dusty place. Also, when the story says that the town had been abandoned. This also tells us that the place the cyclist is in is a diserted place without many people or places to stop. The story also talks about a snake in the road. A snake in the road tells one that the town is desireted I could tell that this town is deserted because around here, people do not goin towns that don`t have buildings. It a snake was in the road, then the town must be empty because around here streets are busy and no snakes in the road." 2 1 2 +6059 3 "The setting greatly affects the cyclist because he is the one riding over, short rolling hills, and arround a,ridiculously large snake, and because its hot he could suffer from heatstroke at any minut. So yes the author is affected by the setting" 1 1 1 +6060 3 The affects of the features around them affect them by the hot bikes so the bikers need water and also it affects them by the roads are so hill so they cant just road. Stight so they need to go over the hilles and that affects them because cycles are very hard to land form a jump. 1 1 1 +6061 3 "The features of the setting in Yosemite give the cyclist something in look forward to, but the feature of the sorting that he is in enduse in get there causes him despaire. As soon as the cyclist passes a ghost town and notices swettering hed of the sun during early endeavers of the trip he checks himself up as he says,""I brely noticed it [the sun], the cool pines and rushing hills of Yosemite had my name written all over them. Although the cyclist began to feel the toll that the trip and the sun was going to take on him, he erased the morning with the hope and bealy of arriving at Yosemite. The more the cyclist noticedthe sun the more he drank untill his water supply seemed low, striping as an old rusty water pump he had hope of being replenished but the taste of bitter battery acid caused the cyclist to stop drinking. The rolling hills, Sun and tumbleweds did nothing to quech the cyclist thirst or at least divert his assertion. If the cyclists was to see a sign that said Yosemite @NUM1 miles away his spirits would have risen, instead he saw a sign that said, Rough Road Ahead which did nothing to help him. If the terrain was more poporsed, easier to travel on and in plenty supply of water, the tune of this passive would be more hoped instead in such despair, the features of the setting caused the cyclist grief instead of hope." 3 3 3 +6062 3 " The bike rider in the short story Do not exceed posted speed limit by @PERSON1, is greatly affected by the condition of land around him. He is riding through the extremely dry desert and is running, low on water. However since it is such a dry place he cant find any. Also since it is out in the middle of no where, there is no one he can ask for some. If this story was set somewhere else he wouldnt have has either problems." 1 1 1 +6063 3 "In ""rough road ahead: Do not exceed posted speed limit the features of the setting affect the cyclist. Many visual features create a very deserted area thats hott in your head. For example in paragraph five they use alot of adjectives to describe how abandon the place was. Words like ramshackle and rusty. Also how often the lack of water was brung up made us think of how hott this California desert must have been. Also the heat made the cyclist belive he was seeing a miracle when he saw the Welchs fruit juice factory. The choice of visual words in this story are words to describe what affected the cyclist." 1 2 2 +6064 3 "In the passage,the cyclist had about @NUM1 different settings. One of these settings were the rough terrains he had to pass through where he lacked on the amount of water.Another setting the cyclist had to go through was the hill like terrains.Where he was laughing at himself for taking the old men advice in the first place.Both of these features had a great a tall on the cyclist body strength and his spirit. But with confidence, determination, and the relief of the success he was able to overcome the obstacles." 2 2 2 +6065 3 "The features of the setting affect the cyclist in many ways. For example, the weather in California in June was hot and the water the cyclist found in the pipes was hot, as well. The text says, Somewhere in the neighborhood of two hundred degrees. This affected him because he had no water to drink from. Another example is when he had to overcome tumbleweeds and snakes. The text states, tumbleweeds crossed my path and a ridiculously large snake. This was an obstacle that he had to overcome. Another example is he was deserted. The text says, no one in sight, not a building, car, or structure of any kind." 2 2 2 +6066 3 "The setting in the features of the cyclist is that if it is too hot or too cold, it could affect how the cyclist is riding . If its to hot the cyclist would get exhausted a lot faster . And if its to cold then the cyclist would @MONTH1 be get sick . Also if its too windy then he would go a lot slower if he is going in the winds direction." 1 1 1 +6067 3 The features that affected the cyclist was plenty of things. One thing would be lack of water. In the text he said the pump gave water that taste like battery acid. Another one would be all the surroundings changed from what the old men sald and he got lost. When he was lost he had to have determination to find someone say that he could survive. 1 1 1 +6068 3 "The setting and it`s features affect the cyclist greatly. He is in the desert and all the town's are abandoned. Also he now hits a sign that says Rough Road Ahead(kurmaskie, pg @NUM1). This makes his trip even worse because now he has to make it over not only big hills but torn up, old, beaten roads. And he has the sun beating down and is almost out of water." 2 1 2 +6069 3 "The features of the setting affect the the cyclist by giving him obstacles to overcome when he had to go down the winding hills, he would have to slow down so he could manuver the hills and not lose control of the bike. The heat he was facing would cause tiredness and dehydration. If exposed to the sun and heat long enough you can get a sunburn or suffer a heat stroke. A heat stroke can be fatal to anyone, especially those with heart problems. Dehydration also can be fatal. If the cyclist does not see any buildings, he would not be able to tell where he is and he might get lost because of it. Getting lost will also lead to dehydration, tiredness, and heat stroke." 1 2 2 +6070 3 "The setting and features affect the cyclist because with each building he hopes for water, but since he is traveling through a desert water is in limited supply and many empty buildings are left out in the wastland. These buildings create a feeling of releve in the cyclist anty to be followed by despair to find them abandoned. The land with no features also creates a feeling of lost hope in the rider making his entire ordeal that much harder. Over all it was an excureiatly experience physicly and mentaly for the cyclists." 2 2 2 +6071 3 "In 'Rough @CAPS1 Ahead' the features of the setting and the cyclists surroundings greatly influence him. Because he is in the high deserts of California in June, the climate is hot, dry, and miserable. Another feature of the setting that affects the cyclist, is that he is out in the middle of nowhere. There are no other human beings, cars or buildings for miles. Also, the terrain affects the biker. When the road starts to get bumpy and uneven, it causes him to exhaust his water supply even faster. Overall, the cyclist in this story is greatly affected by his surroundings." 2 2 2 +6072 3 "In the short story the cyclist was affected by the setting in many ways. The author was running out of water throughout the whole story. The water bottles contained only a few tantalizing sips. There was a limited amount of water in the bottles. He had to travel a long distance. Not two miles into the next section. He was getting tired quick. Also the terrain was not good. I noticed the terrain changing, flat road was replaced by short, rolling hills. It get harder and harder to continue his ride." 2 2 2 +6073 3 "The cyclist was so set on seeing cool, piney trees and lakes, that when he saw dirt, snake, and no source of civilization worried him. More affectively, what he didnt see scared him most. He did see windy rivers or trails hidden beneath all kinds of trees. He didnt see any people or friendly little forest critters. Instead he just saw the same rusty color of dirt and the occasional snake. His mood was affected and he started to lose confidence and hope. He wasn't used to the new surroundings and for a while doubted if he could even make it out alive. When he came across the run-down building of Welchs factory, he was even more distraught. Fortunately, he did find civilization when he came to a fishing supply shop. This definetly boosted his spirits. Once he had saved his thirst problem and assured himself he has alive and would luckily stay that way, he sat down before wading out again in search of his destination." 2 1 2 +6074 3 "The features in the setting are not very good for the cyclist. Hes in California in June, and its very hot. Its pretty much a desert. When he stops for water, the pump he finds does not have any more water in it except for a few drops. Also, the few drops that he does get taste like battery acid. So this is not very good for the cyclist." 2 2 2 +6075 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, the author changes the mood by not only telling us how the cyclist feels, but also by describing his environment. As he's leaving the resevoir compground hes feeling pretty good because hes just leaving the serenity of an early-summer evening and hes headed toward The cool pines and rushing rivers of Yosemite. Hes in a beautiful setting and this affects the cyclist because hes anticipating another one. However, when he moves to the ghost town and the sun was beginning to beat down hes less confident and becoming more doubtful about the mens advice. However, hes still optimistic, finally it funny that it was once a thriving little spot. Next, when the cyclist comes to one ramshackle shed, several rusty pumps and a coral he knows that things are in bad shape and he @CAPS1 water. However, all the have is a tarlike substance so he moves on, having no choice. When he comes to the rough road tumbleweeds and a ridiculously large snake it effects the cyclist by letting him know that things are at their worst and he can either give up, or keep pushing through. I doubt it could get any worse, and so does the cyclist. Finally, at the end the cyclists enters a rather modern bathroom and things are back to civilization for him, so he feels relaxed, relieved and much better. " 3 3 3 +6076 3 "There are @NUM1 features of the setting that affects the cyclist on his journey. There is a lack of water, in the middle of nowhere, and nobodys there. Due to lack of water, this feature really affects the cyclist. He will need water in all to move and get through his journey. Water is the main thing he should have. He could end up getting dehydrated and might cause him to die right in the middle of the street. Therefore water is one feature that affects the cyclist. Furthermore hes in the middle of nowhere. There is no buildings or nothing around, not even gas stations so where it is can stop and if he had money he would be able to buy about @NUM2 or @NUM3 bottles of water and maybe even a few snacks. That is another feature that will affect him. Lastly nobodys around town in able to help him out or anything. Lets say that he gets lost and hell need direction to get wherever hes going well theres nobody around in able to help him get around or anything. In conclusion those are the @NUM1 main features that will defentily affect the cyclist. " 1 2 2 +6077 3 "The settings affect the cyclists for many reasons. One, if the setting is nice, the rider can concentrate on the scenery not on only pain they are having. also, if the setting isnt very nice, the rider would probably concentrate more on the pain than they would the scenery. another thing is if the setting is very hilly & the rider has to drive over it, it @MONTH1 not feel the greatest. The cyclist would get even more pain than before plus the cyclist could could get dehydrated faster, the setting really does affect the cyclist." 1 1 1 +6078 3 The setting in the story affected the cyclist by him going through obstacles to get to town. The setting was in a desert in California in June. The cyclist also had a lack of water and when he found a pump he said it was black and tasted like battery acid. And then he stopped for directions and the men gave him the oldest set of directions. So the cyclist said he would stick to his trusty map. 2 2 2 +6079 3 "In the text, the features of the setting greatly affect the cyclist. For example, the text states, There was no one in sight, not a building, or structure of any kind. This made the cyclist very lonely and they started to lose hope of finding water. Secondly, the text stated, ""In an ironic twist the building abandoned years easlier, by the looks of it-had been a Welchs Grape Juice factory This made the cyclist lose more hope, after he thought the building would have people in it and he got excited. Lastly, the text states, GRAPE AND @CAPS1S FISH CAMP The sight of this building gave the cyclist hope and happiness for finding a place to get a drink. The settings features greatly affect the cyclist's feelings." 2 3 3 +6080 3 "The features of the setting made the cyclists ride longer and harder than he expected. When the cyclist first headed out the road was flat and smooth. Halfway through his trip the Flat road was replaced by short, rolling hills. The cyclist continues to pedel even though he was slowed down to 12 mph. The hills made the ride slower and harder because of the hills. Tuoards the end of the hills he had to make it Over on long, crippling hill. The word crippling is used to show the phisical affect that the hill had on him. The hills were a feature of the setting which made the cyclists ride longer, harder, and more phisically demanding." 1 2 2 +6081 3 There are numerous features in the setting that effect the cycleist. For example the rough road. A nother example is the tumble weed and the snake also affected the cyclist. In conclusion those are the reasons the setting affects the cyclist. 2 2 2 +6082 3 "Sun, amount of miles, people all are reasons why the setting affects the cyclist. For example, the sun was beating down on him every time and the cyclist seemed to complain that it was so hot. Also, he said that he really didnt seem to notice it through in his mind it affected the cyclist. Next, the amount of miles that the cyclist was biking affected him mentally because people kept," 1 1 1 +6083 3 The setting is like a desert with no water or people civilizations anywhere around him. This make him more worried because if he dies know one will know for days or weeks probably. 1 1 1 +6084 3 "There are several features that the cyclist encountered, and all of them affected the cyclist. For example, several rusty bumps, is a quote of the text explaining that he wasnt riding on smooth ground he was riding on rough, hard, bumpy ground. Also he had a huge lack of water he was water depleted he couldnt even go the speed limit, he was going 12 mph, he could have been going 55 mph. Rough roads ahead Do not exceed posted speed limit,'' this is another quote expressing the dangers in the ride that he was risking. All these things made the cyclist uncomfortable, dehidrated, and very tired." 3 2 3 +6085 3 "The setting in Rough Road Ahead: Do Not Exceed Posted Speed Limit was a very large factor of the story that was actually the cause of the protagonists problem throughout. First it started off with the large hills he had to ride up, making him work harder and tire himself out quickly. Next the big problem was the heat of June, and the growing realization that I could drop from a heatstroke on a gorgeous day in June simply because The heat was so really bad because it made him hot, thus depleting his water supply [which he needed to survive] and it gave the large, almost inevitable risk of falling from a heatstroke and dying. The heat also made the abandoned Juice Factory all the more ironic and bitter for the protagonist. A sand blasted picture of a young boy pouring a refreshing glass of juice into his mouth could still be seen. @CAPS1, in the unbearable heat with no water left and @CAPS2 knows how many miles left to cycle, this really made him feel like the sorriest, unluckiest man in the world. The setting overall, seemed almost crafted to make the protagonist not only suffer from the natural elements, but from things that seemed meant purely taunt him for it. " 3 3 3 +6086 3 "The features of the setting affect the cyclist because it is hard to go far on a bike when the place, you are ridding is dry, abandoned, a quiet, hot cold and straight forward. It tells you that the setting is abandoned when if says there was none in sight, not a building, car or structure of any kind"". This would make it hard for a cycler because you need a good water supply and thats hard to keep when there is nothing around." 1 1 1 +6087 3 The cyclist choose to take an old abandoned route to @LOCATION1. The route had in some places no buildings at all to see making the cyclist loss hope of his need for water. Until the end there was no one on the route making him all alone. So if something happen who would know. During his adventure he ran out of water making him dehydrated that didnt help. The setting of the story seems tragic to the cyclist. 2 2 2 +6088 3 "The features of the setting effected the cyclist very much. The text says, The sun was beginning to beat down(Kurmaskie @NUM1). The hot sun was making the cyclist sweat. He was losing water. This was making him dehadrayted faster. The text says. Flat road was replaced by short, rolling hills"" (Kurmaskie @NUM2). The hills the cyclist had to ride up were wearing him out. He was getting tierd faster. The text says. I stubled into a rather modern in bathroom and drank deeply from the sink"" (Kurmaskie @NUM3). The modern bathroom had good, cold water. This allowed the cylist to drink from it. The water replenished the cyclist allowing him to regain some of his strength. Then the cyclist could carry on." 2 2 2 +6089 3 "In the eassy DO NOT Exceed posted speed limit, It is a clear cut for survival as it seems that this man is fighting to stay alive. As l know cyclists pedal for hours at a time and sometimes for hundreds of miles of he was biking where green grass and cool mountains collide the tone and mood of the essay would of beam completely different.He uses sentences such as of two hundred degrees, deteriorating brain, birds would pick me up clean and drop from heatstroke. @CAPS1 all make me want to read further in the essay to see lf he will be ok by thes end of his journey? I know what the feeling is when you are low of fluids because l have chronic dehydrated. I couldnt imagine biking and only seeing desert hiss and passing tumble weed. It sounds like an awful experience. If he were somewhere cooler and colorful his experience wouldnt of been so horrific." 3 3 3 +6090 3 "There are many ways that the setting affected the cyclist. One way is in the story when it says that it was very hot, he could become dehydrated and could possibly have a heat stroke, also the rodes were windy. This could be a problem because hes tired so he might not be able to go around the turns, he might just keep going straight and then get lost even more. That is all about how the features of the setting affect the cyclist in the story." 1 1 1 +6091 3 "The features in the setting of ""Rough Road ahead"" affect the cyclist. First of all, the weather causes most of his problems. Since the cyclist was biking in a california desert in June the temperature had to be in the @NUM1's. This causes him to become dehydrated, which is evident when he states, ""I had been hitting my water bottles quite regularly"" The heat therefore causes the cyclist to drive excessively and run out of water, also, the objects the cyclsit comes across on his journey affect him. For example, while riding on a rough path, ""a ridiculously large snake blocked the majority of the pavement in front of me."" This saves the biker progress and most likely scared him. The cyclsit is greatly affected by the features in the story setting." 2 3 3 +6092 3 "The cyclist was affected by the heat. The fact was June , hes in the desert and has low on water were what almost lead to his own down fall. This hot desert setting sounds hostile and am Im surprised he lived and that he was that lucky." 1 1 1 +6093 3 The features of the setting had misled the cyclist. When he had first left the town where the old men adviced him cyclist had high hopes as a looked and senery enjoyed seeing very ? of the struggle. 1 1 1 +6094 3 "The setting affects the cyclist in a large way. He has a hard time going on his journey. He began to lose hope, get tired, and began to think he was going to die. The settings played the biggest role. It was very hot with no people or buildings around him. He had very little water and no place to get anymore. He then encountered a large snake which made it worse because he was in fear with no one around to help him. If he would have followed his own directions instead of the old men he would not have had this problem. The setting around him really made his trip a hard one with no water, people, towns, or buildings around him." 1 1 1 +6095 3 "The features of the setting in the essay, Rough Road Ahead: Do Not Exceed Posted Speed Limit, greatly affected the cyclist. In the beginning of this mans journey he was confident in his abilities. I rode in the morning with strong legs and a smile on my face. The cyclist was prepared for an exciting day and the setting supported this feeling. ""The cool pines and rushing rivers of Yosemite had my name written all over them."" @CAPS1, as the setting began to change and his water ran out, the cyclist's attitude changed. He was traveling through the high deserts of California in June without much water and begun to feel desperate. As more and more abandoned buildings and deserted towns appeared he went into despair. At some point, tumbleweeds crossed my path and a ridiculously larg snake - it really did look like a diamondback-blocked the majority of the pavement in front of me. He was in the middle of nowhere with no one around and because of this setting he lost hope of surviving. He thought he was going to die of heat stroke, not having any water left, on these short rolling hills and under the extremelyly hot sun. The cyclist was affected by the features of the setting, going from confidence, to desperation and despair, and then to relief, the changes in setting caused his change in attitude throughout this journey. " 3 3 3 +6096 3 "The features of the setting in Rough Road Ahead, Do Not Exceed Posted Speed Limit, affect the cyclist in major ways. First, when the cyclist sees the grape juice factory, he is reminded that he is out of water and is doubtful about even living. The text states, A young pouring a refreshing glass of juice into his mouth could still be seen. I hung my head (Kurmaskie @NUM1 ). The text later states, "" At some point, tumbleweeds crossed my path..."" (kurmaskie). This tells that the cyclist feels de pressed and is majorly affected by these sights. This could and would later ruin his self esteem and think about diying." 2 2 2 +6097 3 The cyclist went on a rough journey and he was explaning how tiering it was and difficult it was for him going from town to town having to diel with lack of water poisonous snakes and the condition of the road. 1 1 1 +6098 3 "The setting of the essay didnt really help the author at all on his journey. There were not many structures on the way. Either that, of the towns said to be, a ghost town. @CAPS1 this couldnt have reassured the author that things were going his way. It also was very hot during his journey. The author says he is traveling through the deserts of California in June. Deserts are very hot places and June is during summer which is the hottest month so it had to have been extremely hot and humid. @CAPS1 all this must have taken a toll because he never really saw anything reassuring until the last town he reached with the bait store. So the setting definitely had to have affected his confidence and his energy levels." 3 2 3 +6099 3 The features that set the affect of the cyclist is very clear in case of this essay which resene when it @CAPS1 the signs that said Rough @CAPS2 ahead: Do not Exceed posted Speed Limit. That had to slow down his bike. Then he said that their were no building or cars nowhere 1 1 1 +6100 3 "The features of the setting affect the cyclist in many ways. In the essay, it states, This place might have been a thriving little spot at one time-say, before the last world war-but on that morning it fit the tradition of a ghost town. This statement might affect the cyclist in the way that, they fear if they get into any trouble there is no one around to help out. This statement can also mean that they fear that they are going the wrong way. In the essay, it states, One ramshackle shed, several rusty pumps, and a coral they couldnt had in the larger mule greeted me. This statement simply gives the cyclist the impression that this particular town is juice, and that nobody has even been known to live here in years, @MONTH1 be decades. The different features of the journey of the cyclist in the essay, many would fear the outcome,if they over fear the journey and turned old timers who had never left their porches, in order to experience such things. " 1 2 2 +6101 3 "The features of the setting affected the cyclist because, forty miles into the desert, I arrived at the fisrt toun. The setting of the desert affected the cyclilst because the cyclist, because cyclist was arising doun the road when the men with the settings came and affected the cyclist. The man was very crazy. Her water bottles contained only a few tantalizing sips. Wide rings of driead sweat circled my shirt, and ?? he ?? that should drop from heatsroke on a gorqeas day in june simply because I listened to some gentleman who were it been off their ??? ???, ??? to tough. This my responese to the features of the setting affected the cyclist." 2 2 2 +6102 3 "The cyclist trusted a man that didn`t know much about the world, he thought that the guy would know how to get to the place he was looking for. The cyclist took his advice, he thought that he would be there really soon so he start to drink his water really fast. He realized that he was out of water and the park he was going to wasent anywhere near. The cyclist got frustrated and angry he was now crossing the desert which was making him tiered and dehydrated. He pased this road that was a rough road with tumbleweeds and snakes he kept on going until he sow the @CAPS1 Juice company. He hurried there, went into the bathroom drank same water. When he got out an old men asked if he needed directions, the cyclist said no." 2 2 2 +6103 3 "During the passage Do not exceed speed limit, the cyclist endures many hardships. One of those countless hardships was the setting that he was in. while he was lost, thirsty, and exhausted, he remained all the while in The high deserts of California in June. This shows that the temperature most of been unbearable. This would cause the cyclist to tire out and dehydrate faster than usual. Also, the surface he was riding on had many steep hills, as it is said when he says over one long, crippling hill, This shows that the hills took a lot of energy to get up. And finally, the author says that There was no one in sight, not a building, car, or structure of any kind."" This shows that if he needed help, there was no one around to lend him a hand. That is how the setting affected the cyclist in a negative way." 2 2 2 +6104 3 It affects the cyclist because in the begging talks ablut the old man. Italso talks about basically saying there information is out of aase also in other words should have just followed his map in the first place. 1 1 1 +6105 3 "In the stories, dont exceed posted speed limit, there are some very descriptive settings. In the stories these settings have a great effect on the cyclist. Through these our settings the effects change. Some good effects some harsh effects. The first setting that is described do you is, ""the cool pines and rushing rivers of Yosemite had my name written all over them."" This setting gives you a vivid picture of were the cyclist is heading. This setting also establishes a happy sort of mood. Let the pretty picture is about to change. Not so much further in to the cyclist ride he noticed a change of terrain,"" flat road was replaced by short, rolling hills."" @CAPS1 the cyclist is short on water, and is becoming very tyered. Seeing this just crushes his spirit. @CAPS1 riding hills hard, but ridding hills with our knowing of something good waiting for you on the other side of the hills. Both of these, very different settings gives off very different feeling. The first one makes you think he is going to have as easy enjoy able bike ride. But this all changes when he hit those horrible hills. Just the thought of having so ride over miles of hills, makes your legs hurt. Over all the features of the setting saposed an intense bike ride for the cyclist, followed by a reward by beautiful place. " 3 3 3 +6106 3 "The author had to bike through extremely hot weather. This made him feel sweat a lot. The narration states, Wide rings of dried sweat circled my shirt (@NUM1). This caused him to drink water until he ran out. The narration states, The water bottles contained only a few tantalizing sips (@NUM1). He then had to suck on pebbles which he could have choked on. The narration states, With any luck Id hit a bump and lodge one in my throat(@NUM1)." 1 1 1 +6107 3 "In the story Do Not @CAPS1 Posted Speed Limit there were many features of the setting that affected the cyclist. The most challenging problem faced by the author was the lack of water. I pumped that handle for several minutes but the water wouldnt calm down nor I tried a drip or two,it had the flaver of beatterly acid.When @CAPS2 set out for the next train @CAPS2 came to a road that read Rough road ahead, Do Not Exceed Posted Speed Limit. The tarrain got more bumpy & hard to cross. The effected the determination the cyclist had left @CAPS2 the regreted not listening to the old men of didnt think they knew what they were talking about. Due to the fact they never left their porches. As you can see the setting most deffinated effected the cyclist in physical or mental ways." 2 2 2 +6108 3 "The features of the setting affects he cyclist. One way it affect the cyclist is it by being hotlike a says in the text""I could drop from heat stroke on a gorgerous day in June ""@CAPS1 way it affects the cyclist by being bumby like it says in the text ""ROUGH ROAD AHEAD:DO NOT EXCEED POSTED SPEED LIMIT."" that is how the setting affects the cyclist." 1 1 1 +6109 3 "The features of the setting affect the cyclist by the mood the cyclist and what happens as he journeys in the desert to a town. For example his mood changes when the old man asks him for a map and his attitude changes by cautiousness of the new, of the new road he went on then terror when he thought he was gonna die I was gonna die and the birds would pick me clean then to pride when the old man asks for a map and the author says I own a very good map But as he journeys to Yosemite the setting changes when he goes to a desert type of place then goes a bait shop to rest. Then probably on his merry way to his destination." 2 2 2 +6110 3 "'Do Not Exceed the Posted Speed Limit by Joe Kurmaskie demonstrated that the features of the setting affected the cyclist a great deal. First off, the cyclist was in the desert on a bicycle. This affected her because if they had been in a car, or on a bus alot less energy would have been used up. Secondly, the cyclist started running out of water. This setting didnt help because they were on a bike so that kept them hydrated. Another setting that affected the plot was the deserted towns. If they hadnt been deserted everything would have been better. These features affected the cyclist a great deal." 1 2 2 +6111 3 "The features of the setting affects the cycles such that it was affecting his altermmation to continue. For example, after @NUM1 miles he looked upon the ramshackeled sched, several rusty bumps and the corral This sight troubled me. In the desert his water tasted like the flavor of battery acid. It also goes on to say that it was a test for my inner spirit. It also states that he went along with a few drops of water through the tumbleweeds. This passage shows obstacles he had to go through in which he did and made it with a little confidence. Although his situation was somewhat unbearable he still kept striving on." 2 2 2 +6112 3 The setting of the story affects the cyclist in most of the story. The heat made him hot & thirsty while the travel gave him a lack of energy and even of a need for water. In paragraph @NUM1 the writer says one of the hills was long and a The hill was wearing him out & draining what was left of his energy. The setting of the story was the biggest party if the road was flat and bumpy while the tempeture was 1 1 1 +6113 3 "The setting easily can affect the cyclist in many ways. The area in which the cyclist was in the seemed to be abandoned which doesnt give a well thinking to this person . If a town was abandoned or a road was, automatically then wont be any noticable building structures for a while. Also, the and and shape of the road seemed to be very dangerous for the cyclist not only because of the narrow and rocky path but because of the wildlife. In the text, it says how a diamond back snake, poisoness was directly infront of the cyclist. That example explains on how the wildlife might exceed to more dangerous creature. Finally, the temperature, whether it was hot or cold he cyclist was limited to water & being completely dehydrated was a huge caution for the cyclist. The conditions of the setting of the setting the cyclist was in became a disadvantage for him." 3 3 3 +6114 3 The different settings that the cyclist had to ??? were mountains or hills winding roads and California desert in June. As well as he was running out of water. 1 1 1 +6115 3 How the features of the setting affect the cyclist by taking and not had the right setting. The features are just not right and and they could be changed around a little bit and still have about the same meaning of the essay. So I think they should change it around. 1 2 2 +6116 3 "The features of the setting have an affect on the cyclist. He is going on this bike ride through the deserts of california in June. This obviously is going to have an affect on him because it will be very fast. At one point he says, The sun was beginning to beat down, but I barely noticed. @CAPS1, the setting of having all these ghost towns was troubling to him because no one else was around and he was beggining to rum out of water. The weather outside was starting to get to him, and he said, I wiped the sweat from my eyes to make sure it wasnt a mirage When your petalling through the desert on a hot day it is going to have effects on you. If he was in a different setting this felling of despair would not be in the story. That is how the setting affects the cyclist." 2 2 2 +6117 3 "There are many ways the features of the setting affect the cyclist. One feature is the weather. When a cyclist is on a trip the weather could affect the setting greatly. An example, if it started to rain the roads could become very slippery and dangerous to ride your bike on. The cyclist and his bike could crash and die. Just cause of the weather. Another feature is the animals. An animal is important cause any were you do the are different animals that do different things. If the cyclist knows the animals around the area that he is traveling he could keep safe and not be harmed. Tis better to know the area and feel safe. Then not knowing whats going to happen next." 1 1 1 +6118 3 "As the features changed in the setting it becomes harder for the cyclist .At first the cyclist stoned off pretty easy .He had plat smooth roads to go through .He started out before the sun could to him. The cool pines and rushing rivers of Yosemite my name written all it He kept his mind off the sun and this helped him .Then, he got to a highway that made it kind of harder .I noticed the terrain changing. Flat road was replaced by short, rolling hills So he had to pedal harder and would tire him faster. At some point, tumble weeds crossed my path. Trying to keep my balance in my dehydrated state .By the tumble weeds that means he was in the desert during a hot period of time .So he had little water left and he was becoming dehydrated .This was a hard task for him to overcome .By the terrain changing it become harder for him." 3 2 3 +6119 3 "The setting in this short story Rough Road Ahead: Do Not Exceed Posted Speed Limit is a hot, sunny desert, in which all towns have been abandoned, The sun was beginning to beat down (@NUM1) i arrived at the first town it fit the defination of a ghost town (@NUM1) trational. The cyclist at this point is not, tired and worried about the lack of water. The setting and cyclists state run side by side." 1 1 1 +6120 3 "In the story there are many affects the cyclist deals with. He has to go through a lot of bad things just to finish. The cyclist has to watch out for a rough road he was going over. Also the whole time he was racing he had to watch out for diamond back snackes. Also the whole race, the cyclist biggest problem was water. He ran out quickly. And when he saw the factory and stopped. He put rocks in his mouth to make him forget about water, and lets yours split circulate. The cyclist had to go through all these problems which made it show that he had determination." 2 2 2 +6121 3 "The features of the setting greatly effected the cyclist. He was riding along on a route he had little confidence would end up anywhere. That being the first time ever being on that rode and having only not of date knowledge about it made the cyclist rework. The temperature was very hot, where was little shade, the sun was beating down on him. The route was very discouraging .all the cyclist wanted wanted was water and the route kept touenting him with false hope. At the first town he noticed a water pump, but all he could get of it was sludge and water that tasted like battery acid. Next he came to a deserted old building that approved to be an old bottling factory for Welchs grape juice. The cyclist would appear to be closing in on something to drink, but be left with nothing." 3 2 3 +6122 3 "During the cyclist bike ride the unbearable conditions changed his attitude when he firsts starts the reader can sense frustration because of the old timers and there directions. Then as he realizes that he might have enough water his attitude changes. The cyclist goes from frustrated to loving the secenery, The cool pines and rushing rivers of Yosemite had my name written all over them, as the conditions changed to even more unbearable heat. He decided to just give up. Until he got courage and slowly gaining elevation while losing hope. When he saw Gary and Wilbers fish camp, he realized he was safe." 2 2 2 +6123 3 "The byciclist from Rough Road Ahead: Do Not Exceed speed Limit was effected in many ways from the environment. The most talked about feature in the environment was the lack of water. The byciclist was going to die because there was no water and he was really dehydrated. Another feature was the heat. It was really hotwhere the narrator was bycicling. When @CAPS1 hot, the heat dehydrates you. So the narrator was being pushed to the limit because of the heat. Also, everyone was gone from the towns so every town he came to was hauntinghim until he got mad at the lodgers hetalked to and was really frustrated. The smooth flat road gave way to rolling hills, which made it harder for him to ride. Lastly, the snake inthe road affected him because he had to avoid it. All of these things affected him. " 2 0 3 +6124 3 "Do not exceed posted speed limit by Joe Kurmaskie is truly a story of man against nature. Here is a man who is completely alone except for his bike, the baron landscape and relentless sun. First he notices the sun, over head him, expected from California June, but not none the less. Then next come the rolling hills and incline in elevation, going up hill means his body working, harder, and burning calories and his much needed water supply. Then there is the man much torture. A speed limit of @NUM1,were he is going a tough 12. And worse a billboard of a young boy pouring a refreshing glass of juice into his mouth, this truly hit his emotions, showing him exactly what it was out of reach. In this story every element of his surrounding contributed to his hoplessness." 2 3 3 +6125 3 "The feature of the setting affect the cyclist by one, the conditions of the road were awful. Two, the cyclist said there was a huge snake blocking his path as well as the occasional tumble weed. The biggest affect on the cyclist was the lack of water with unbearable heat and he was tired. Those are the affects the features of the setting had on the cyclist." 2 2 2 +6126 3 "If I had a choice to ride a bike in California or vermont, it would be a no-brairer to bike in vermont. The temperature in vermont would be much cooler than in California. In the story the cyclist comlains about the ""wide rings of dried sweat"" and the possibility of heatstroke. It is proven that when temperatures rise, you tend to lose more water from your body. Had the cyclist gone to a cooler site at a different time of year he wouldn't have struggled with dehydration on his bike ride. " 1 1 1 +6127 3 "The features of the setting in the story affected the cyclist a lot. In the morning when he began his trip, he was eager and determined to get to his destination. Although it took him forty miles to get the first town, he didnt seem to mind. The cool pires and rushing rivers of Yosemite had my name written all over them, is what crossed his mind once the sun began to beat down. Meaning that he didnt mind or wasnt troubled by it at the time. But the farther his trip went, the hotter, and less water supply he had left. Once he passed a couple of troubling sights, because they were abandoned and no one was around, he began to worry. The cyclist got to the point that he stated to suck on pebbtes, in order to circulate the last spit he had in his mouth. In his desperation he finally saw a sign for hope that gave him strength in order to continue on. When he arrived at GARY AND @CAPS1S FISH CAMP, his emotions, and mind changed from begin lugubvious, to becoming thankful." 3 3 3 +6128 3 "During his cycling trip, the author had to endure extreme heat, face snakes, deal with little or no shade and survive a dire lack of water, all problems related to the setting of Yosemite National Park. The author, cyclist Joe Kurmaskie, writes of becoming dehydrated, and describes, the sun was beginning to beat down and l was traveling through the high deserts of California in June. @CAPS1 struggle for him was crossing the path of a ridiculously large snake and trying to keep his balance in his dehydrates state. Kurmaskie ran out of water, due to the extreme heat, and upon reaching a water pump, finds the water to be unfit for drinking and in the neighborhood of zoo degrees. @CAPS1 setting-related issue for kurmaskie was the fact the area seemed deserted and he had to continue for mile until he was able to find a spot with clean water where he could rest and rehydrate." 3 2 3 +6129 3 "The features of the setting were very affective in the story @CAPS1t exceed @CAPS2 Speed Limit. It affected the cyclist because in one part of the setting it went to roling hills. Thats going to be hard to pedal a bike on. Another was the setting affected the cyclist is at one point tumbleweeds were in his way. If the gets caught on the bike it could have caused him to fall and it could harm him. Lastly, the road started getting rough up ahead which could be hard to ride over potholes and thugs like that. Therefore, the setting was affecting to the cyclist." 2 2 2 +6130 3 "The features of the setting keep affecting the cyclist because first its hopeful then he relizes its hopeless. He was laughting when people told him the right directions and now It was sad, hopeless laught, mind you, but at least I still had energy to feel bad for self. said the cyclist when he was refering back to the first town. The reason this affect the cyclist is at first he was going good then he got thirsty and bad things happened. thats how it affect th cyclist." 1 1 1 +6131 3 "In the story Do Not Exceed Posted Speed Limit, written by Joe Kurmaskie, the features of the setting affected the author in many ways. One feature was the hills. The speed limit affected the author because he felt that he was moving to slow. In the story when it says I was doing a water-depleting @NUM1, is evidence of this" 1 1 1 +6132 3 This is how the setting effects the cyclist. One is the hot dry California desert heat. It was making him hot and thirsty which was making him low on water. The hot desert heat had made water a for like a substance which he could not drink from the well. The water bottle only containe a few tentalizing sips which was not enough to quench his thirst. The hot heat that would make birds pick him drys all of those examples make it hard for the reader to take the old timers advice. It made him realice that in time comes wisely and youth can make silly mistakes. The heat had made it only a trip for his inner soul to survive. That is ho the setting effects the cyclest. 3 3 3 +6133 3 "The features of the setting affected the cyclist mainly because he was in a desert. There were no stores, no rivers or lakes, it was very hot, the roads were long and there were even snakes on the road. It made it harder for him because he didnt have much water to drink." 1 1 1 +6134 3 "Many features in the setting affect the cyclist. Several main features include the cars lading town. that aint really towns anymore, and the water pump. Both of these examples gave him hope but none gave him relief. The town he first saw could give him water, but it was all run down and weakened. I arrived at the first town. This place might have been a thriving little spot at one time... refer the @NUM1 word war. He is saying that the town couldve given him more water and enery, but it appeared that it was over for this town. Additionally, he biked across a water pump that was well needed He tried to pump water but got no success. I pumped the handle for several minutes but the water wouldnt cool down. A working water pump wouldve been huge for him giving him more strength to bike. However, once again it was very misleading" 2 2 2 +6135 3 "This is how the features of the setting affect the cyclist. One example is flat road was replaced by short, rolling hills. That changes the effect because by saying that it will show how tired he is going to be or the work trying to make it over the hills. Another example would be high deserts of California in June. Thats saying its hot outside and very tiring. I think it means that because in California its really hot and in June the summer time its very tiring. That is how the features of the setting affect the cyclist. " 1 2 2 +6136 3 The features affect the cyclist because of how the road is made. If the road is a downhill ride the cyclist might ride faster. The road might be up the hill so he @MONTH1 go slow. There could be a possibility that the road might have bump rocks or grass on it that could be something tough to ride through. So the affect of the cyclist is depending on how the roads are made. 1 1 1 +6137 3 "The features of the setting affects the cyclist because the worst the features get the more he wants water. For example, in the essay it said at some point, tumbleweeds crossed my path and a ridiculous large snake blocked the majority of the pavement in front of me when I think of tumbleweeds I think of dryness because it is like dry grass and when I think of snakes I think of heat because that is the time for snakes to come out when ot gets hot. So the cyclist was thinking about dryness of his throat and the dryness of his sorrounding making him want water. Another feature is when he seen a sandblasted picture of a young boy pouring a refreshing glass of juice into his mouth probably making the cyclist wishing he could have that cold refreshing drink." 2 2 2 +6138 3 In Rough Road ahead: Do Not Exceed Posted Speed Limit the cyclists was effected by the features of the setting. She was first effected by the old men which told her a shortcut to her ride to Yosemite National Park. Then she was effected by a ghost towns which had no water to give her. Then she was almost dehydrated when she came to a rickety road which had a few tumbleweed and a huge snake which was quite difficult to get by. Then at the end she came upon Gary and Wilbers fish camp where she decided to make decisions herself. All of these things in the setting affected the cyclist in a negative way except Gary and Wilbers fish camp which saved her from dehydration. 2 2 2 +6139 3 "In the short story, Rough Road Ahead, the cyclist faced with many problems. One of these is the feature of setting. I believe it has a big affect. The setting is in a dessert, which is very hot, there is no water around and usually nobody lives in a dessert. @CAPS1 thing is that he was running out of water. In the text it says, The water bottles contained only a few tantalizing sips. @CAPS1 setting of the book that affects the cyclist is that it is in June. June is a very hot month, especially when the cyclist is in a dessert traveling many miles." 2 2 2 +6140 3 "The settings of cyclist affects the way cyclist perform. If the weatheris too hot then the cyclist might slow down because of the sun beating down on them. If its too cold, the cyclist puts on more clothes which might weigh them down from achieving the speed they need to obtain. The bike has to be stable. Riding on rough roads, braking, speeding, chains in good conditions. The area were the cyclists rides sets the mood. If its a nice scenary the cyclist might be in a wonderful mood as to the scenary being dark and gloomy with nasty weather behind it the cyclist might not be as happy as they could be. These typess of things @MONTH1 help determine how settings can affect the cyclist." 1 1 1 +6141 3 "In the essay Rough Road Ahead the setting greatly affects the cyclists. The @LOCATION1 desert climate burrows down upon the cyclist. For example the was further route, he takes is not only @LOCATION1, but also has no place to get water. The heat and lack of water combine for deadly dehydration upon the cyclists. The setting now forces the cyclist to become more determined if he wants to live. He must continue and pray for a town to come up, so he @MONTH1 restock on water and become hydrated once again." 2 2 2 +6142 3 "Many different things affected on his way to Yosemite National Park, but the environment he was in played the biggest role in his journey. The cyclist was in a dry, desert area where tumble weeds were more common than people. When the cyclist came across the old men and asked them for directions, they led him to a ghost town there was no water for the dehydrated cyclist who had been baking in the extremely dry, hot weather. This caused a problem where the cyclist thought that he would die in the desert because of the weather, directions he was given, and lack of water. When the cyclist come across the bait shop he know he was saved. He became rehydrated and declined directions from an old man because these features of the setting are what caused his problems in the first place: old men, dry weather, and water." 2 2 2 +6143 3 "There are a couple things that affect the cyclist in the story. One of the ways he is affected is de hydration. In the story about dehydration it says The water bottle contained only a few tantalizing sips. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from heat stroke on a gorgeous day in June. A good affect on the cyclist was no one in sight to slow him down on his bike ride. A bad affect on him was dont ask direction from a guy from heat strokes on a gorgeous day in June simply because listened to some gentlemen who hadnt been left their porch in decade, caused me to laugh. One more thing that got in his way was the poisonous snake."" At some point, tumble weeds crossed my path and a ridiculously larg snake--It really did look like a diamond back.. Blocked the major of the parement in front of me""." 3 2 3 +6144 3 The cyclist knowing not where he was going got a wrong enformation and he followed it. He was excited to know that he knows where hes heading too. Along his journey he was aciccted with a lot of things like the sun. The weather condition of their exaction and the big snake he saw. He was affected by sun because he was dehydrating and he almost had no water left for him as it was also becoming so hot alike makes the journey very difficult for and made his mood strange while also following the direction he was disfernded by a big snake he encounter at the case slic desn't while succeed their add was scared that he was going to be attacked unlike anyone to make his way through. The features affects him because he doesnt know where he was going and he wait a as her cut. Then he was going to wrong direction and he wasnt prepared for the journey because the weather condition was summer time it was hot and he was riding a bicycle not a car. 3 2 3 +6145 3 "The features of the setting affect the cyclist with his train of thought. On page @NUM1 it says, I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June. This gives a sence of heat and foreshadows maybe the lack of water hell have later on. As he passes a snake, trying to keep my balance in my dehydrated state. So the cyclist is most likely begin to feel dizzy and begins to loose hope. On page @NUM2 he says, I could drop from heatstroke meaning hes starting to think of the worse possible things that could happen. Which effects him because hes beginning to loose hope and thinks hes not going to make it. On page @NUM3, he says, I was going to die and the birds would pick me clean By this point the conditions he was having were rough and making him worry. This is how the features of the setting affected the cyclist throughout the story." 2 3 3 +6146 3 "With little water the setting was not helpful to the cyclist. Joe @PERSON1 said, There was no one in sight, not a building, car, or structure of any kind (@PERSON1). After receiving bad directions from a few old men having people passing by in cars or near by stores would probably help the cyclist for asking directions. @PERSON1 said, ""working the handle of the rusted water pump with all my strength"" (@PERSON1). Having no water to replenish your body will make you weak and unstable. In the middle of no where that is a problem. @PERSON1 also said, ""Flat road was replaced by short, rolling hills (@PERSON1). With little water left and a weak body it must have been hard going up and down those @NUM1 also said, I was traveling through the high deserts of California in June (@PERSON1). I dust in your lungs and heat from the sun as it becomes harder for your body to work." 2 2 2 +6147 3 "The setting in the story affected the cyclist. The setting takes place in June. It is very hot and the cyclist is getting very dehydrated. You can imagine how hot it got when it said, wiped the sweat from my eyes to make sure it wasnt a mirage. It also sounded in the story that it felt like two hundred degrees when the sun was beating down" 2 1 2 +6148 3 The features of the setting affect the cycleist in many diferent ways. For example it was June and he was in the @CAPS1 of California. It was very hot and the dehydrated him. Also he did no know where he was going so he had to rely on other people directions. Also he had to keep dehydrate. That what affected the cycleist. 1 2 2 +6149 3 "The features of the settings in Do not exceed the posted speed limit by Joe Kurmaskie were rough and challenging. A biker rides through todi, California which is a rough area to ride. The ride was hot and long that he was so dehidrated that sweat was dried around his neck. The solo cyclist says There was no one in sight, not a building, car, or structure of any kind. He had no where to get water or food. It was deserted. He thought if he died no one would find him faster the birds would pick him clean. The essay rough road ahead: do not exceed posted speed limit by @PERSON1 shows a solo cycilist are very independent." 2 2 2 +6150 3 "In the story, Do Not Exceed Posted Speed Limit, by Joe Kurmaskie, the cyclist faced many obstacles. For example, he had to get directions to Yosemite National Park, but the directions were from elder men, whose information was out of date. In addition, the cyclist had to decide which way to take when there was a fork in the road. He chose a path the old men said would have a town nearly eighteen miles down the road. Furthermore, the cyclist ran into flat roads that went to rolling hills, snakes blocking his path, and a dehydration state that couldve killed him. In conclusion, this man overcame obstacles to get to Yosemite National Park." 2 2 2 +6151 3 "In the essay Rough Road Ahead Do Not Exceed Posted Speed Limit by Joe Kurmaskie the setting affects the cyclist in various different ways. First of all he listened to the old man so he was on the wrong path. So he travels and its a hot June day in California deserts. The odds are against him from the start The water bottles contained only a few tantalizing sips, wide rings of dried sweat circled my shirt, and the growing realization that I needed a drop from heatstroke on a gorgeous day in June(Kurmaskie @NUM1) From the ganle you can tell that hes tired and almost out of water. It puts a lot of strain on the cyclist but he manages." 2 2 2 +6152 3 "The setting clearly has a huge effect on the cyclist. The flat roads are easy and smooth to ride on, but as the road changes to short, rolling hills, the biking becomes more difficult. This is supported by the sentence that reads, ""Over are long, crippling hill... This shows that the hill is a very challenging obstacle. He is also effected by the things that come with the change in terrain. For example, one sentence reads ""...tumbleweeds crossed my path and a ridiculously large snake it really did look like a diamondbuck-blooked the majority of the pavement in front of me."" This stresses how remote the area in which he is biking really is, and shows how it mentally and physically effects his trip. " 2 2 2 +6153 3 The affect of the setting are two old timers sitting on their front porch out in the desert since carter was in office. It was starting to become daylight and he had to walk @NUM1 miles to get to the next town. So he gets on a bike and rides to the next town. The speed limit is 55 miles per hour and he was going 12 miles per hour just like the waterflow. He was riding up and down rolling hills. He finally got to the next town to live. 1 2 2 +6154 3 The setting of the essay efects the cyclist because he got lost when he ask for directions from old people! 1 1 1 +6155 3 "The features of the setting affected the cyclist in a lot of ways. in the essay, the author describe how the setting is hot, it is bumpy, it makes him sweat, it makes him tired, he is also, running out of water from his thirst. The road gets, very rocky at one point. The narrator states Flat road was replaced by short, rolling hills (Kurmaskie @NUM1). There is also a photograph that shows how rough the terrain is. It is barrain with nothing around it." 1 1 1 +6156 3 "The features of the setting affect the cyclist because, the cyclist is dehydrated and has to nde on a horrible conditions of a road, snakes and hills. All of these features act like obstacle courses, which makes it hard to do what hes trying to do which is recieve water. Also, with the cyclist being hot and in need of water he at this point is delinous and most likely doesnt know whats going on. In the story the authors main feature of the setting is the road. Rough road ahead. This explains the cyclist having to go on a rough road, and doing that dehydrated is very dangerous these are some of the features of the setting that affect the cyclist. " 2 2 2 +6157 3 "The settings have a huge affect on the cyclist. When he first comes to the @CAPS1 town he isnt really warried he is kind of laughing and thinks his funny by saying. This place might have been a thriving little spot at one time - say, before the last world war. Then after he says that it ways he chuckled. When he gets the dark in the road with the risky pipe of water he begins to switch into conservation made and begins to get is scared. He says. I would comer water- a test at my inner spirit This showing that he was scared. After he sees the abanoned Grape juice factory he says something like birds are going to pick him clean and leave behind same expensive biking gear. This definatly shows that he is giving up. Another thing that would back this up is when he talks about writing in his diary about the old men who gives him these direction. When he finally reaches the balt shop he is releved and goes to the bathrom and drinks water. He also says that he will buy bait even though he doesnt have a rod. These examples show the many ways the setting affected the cyclist." 3 2 3 +6158 3 "In the story, ""Do not exceed posted speed limit, the faetures of the setting effect the cyclist. To keep cool on a hot summer day, is might be neccessary for one to find shade. Just to add to the misfortune of the story. There was no one in eight, not a building, car or structure of any kind."" This factor does not help the cyclist at all, infact, all it does is make the cyclist more exhausted. Another element in the story that effects the cyclist is the lack of water. Early on in the story the author explains, ""The water bottle contained only a few tatalizing sips."" With more miles to go,the cyclist starts to loose hope of making it to his destination alive. The feature of rolling hills also affects the cyclist. The cyclist is already tired enough, and just to add to his misfortune, ""flat roads was replaced by short, rolling hills."" @CAPS1 the hills are short, they still could have put impact on him because of the ropolalive hills. Many features of the story effected the mood of the story." 2 3 3 +6159 3 "The features of the setting affected the cyclist. It affected him because it was saying @NUM1 miles and then were in the first town, thinking that the cyclist was getting excited and he was kind of all most done he thought he was going at a fast past. When the cyclist got to the first town he said that it looked dead. And then after he kept moving he kind of knew that he wasnt getting anywhere. Then after thinking he noticed that he had listened to some old folks that had never even been off their porch. So after the cyclist had hit the first town he had known right then and there that ho should never listen to old folkes ever again. Because that first town had looked like nobody has been in it for years." 2 2 2 +6160 3 "The features of the setting on the way to Yosemite National Park, greatly affected the cyclist. On the way to the park, the cyclist had encountered the heat of the desert in California. Besides the heat the cyclist had to overcome the rough terrain of the of the short, rolling hills. This made the cyclist tired and weary. Adding to his weakness, and the extreme heat, he also ran out of water, causing him to become dehydrated. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from a heat stroke...laugh. This trip through the California desert greatly affected the cyclist by causing great exhaustion and dehydration." 2 1 2 +6161 3 "The features of the setting affect the cyclist because the climate could be hot, the road could be bumpy, and the town could be deserted. For example, ""Rough Road Ahead. Do not exceed posted speed limit. This would be hard for a cyclist who is thirsty. And if he is not and with no water he probably could barely make it up the hills. And with no town for water he would be thirsty.""First ""town"" This place might have been a thriving little spot at one point but anthor warning it fit the outsides of ghost town"" No waters" 2 2 2 +6162 3 "Hot, lack of water, lost-all are how the features of the setting affected the cyclist. First, it was hot. In one sentence he say the sun was beginning to beat down. Also that the water felt around two-hundred degrees. That sweat was all over him. So he had to be really hot. Next, the lack of water affected him and his performence. How was because he was dieing in need of water. He tried everything to get water but made it through with almost no water. Lastly, he was lost. The map that he had was wrong and the trip wasnt what he expected. But in the end he was relifed. So even toward all these negative affects he still managed to come to positive. Basically this story is explaining how if you try your hardest, never give up, and try new things you are most likely to succeed in life and other things you @MONTH1 take part of. So try your best and make way of your life and plans in your life." 2 2 2 +6163 3 The conditions the cyclist has to face are always problems or helpers. Say there is a rocky up-hill part. That will most definuntly slow him down. But if there is a nice smooth downhill part that will speed him up. and take alot of work of pedling off his hands. 1 1 1 +6164 3 "The cyclist lost hope because he was in the California desserts in June. The cyclist started to lose hope because there was a rusty water pump that pumped out battery-acid tasting water. When he said the sign Rough Road Ahead: Do Not Exceed Posted Speed Limit, was very cautious. The cyclist thought for sure that he was going to die out there. The cyclist also felt lonely because in the text it says, There was no one in sight, not a building, car, or structure of any kind. The cyclist was in the California desert and that made him think he was going to die out there." 2 2 2 +6165 3 "In Rough Road Ahead: Do Not Exceed Posted Speed Limit"" by Joe Kurmaskie, he describes his trying biking trip through California. In the essay, he describes the weather with I was traveling through the high deserts of California in June. While this @MONTH1 not directly characterice the weather, the reader can confin a clear image of the sweltering heat of a desert in the summer. When the author comes across the ghost town followed by the dilapidated shack, and finally the sign that read Rough Road Ahead, his hope of finding Yosemite Park was gone. The hopelessness of the situation made the author want to give up, thinking that he was going to die out in the desert from dehydration and exhaustion. This can be related to anyone that has been lost in unfavorable conditions, and the feeling of helplessness and fear that goes along with it. It feels like everything is against you, with nothing working in your favor, and this is what the author experiences in his description of his trip in Rough Road Ahead: Do Not Exceed Posted Speed Limit." 3 3 3 +6166 3 The setting affects of the cyclist was that the exhaustion was getting to him. What made it worse he was out in the heat sweating which also cause dihidration. 1 1 1 +6167 3 "To begin with a feature that affect the cyclist was a lack of water this is shown when the speaker says when I tried a drop or two, it had the flavor of battery acid-thats was one of the biggest factors he had risked. " 3 2 3 +6168 3 As the reader listened and followed the directions of the old-timers he faced many issues and also learned a leason. As he began to ride into the day break of morning he had strong legs and even a smile on his face. As time went on he soon became close out of water and a loss of energy. The @CAPS1 summer day made him sweat and began to think that he birds would pluk at his body as if he would die on his ride to Yosemite. When he finally got to a town he soon refreashed and learned that he would and start to began to follow his own way: of getting to places 2 2 2 +6169 3 "The features of the setting in the essay Do not exceed the posted speed limit affected the cyclist in a negative way. The more and more he rode, he thought more negatively and had alot of doubt. The cyclist was not very confident, he thought he wouldnt make it. For example, when the cyclist notices nothing in sight, his tone changes. There was no one in sight, not a building, car, or structure of any kind. I began breaking the ride down into distances I could see on the horizon telling myself that if I could make it that far , Id be fine. He seemed unsure and a little nervous. As the journey continued, the cyclist loses hope it seems. It didnt really matter. I was going to die and the birds would pick me clean leaving only some expensive outdoor gear and a diary He does not see himself finishing this journey the more and more he rides in the middle of nowhere with nothing to be seen except Rough Road Ahead signs. " 2 2 2 +6170 3 "The features in the setting are very effective to the cyclist. He is in a desert area of California and he has limited water supply. It is very hot and very dry. He barely had an water to drink and he had to go a long way in the hot and humid weather. The deficiency of water could have made him became dehydrated. Another obstacle that he had during this biking trip to Yosemite National Park was the hills that he faced. At the beginning, he was on flat terrain, now he has hills that he has to pedal up that makes it a lot harder for him. One other obstacle that he faced was the snake he ran into. That setting had many obstacles for this guy. If it wasn't for the heat and lack of water, he might have been able to make it a little easier." 1 1 1 +6171 3 "The features of the setting strongly affected the cyclist. The rolling hills were the cyclists most challenging problem because they were long and cripppling. Maneuvering down the hill would take a lot of energy and determination from the cyclist. Considering the cyclist was already tired and sweating from riding on rough roads and passing a large snake, riding on rolling hills would be extremely difficult. The features of the setting were not helping the cyclist stay healthy because their difficulty was causing the cyclist to become dehydrated and possibly drop from heatsroke. However, the cyclist kept a possitive attitude and did not give up. His determination saved him as he felt relief when he finally came across the ""Gary and wilbells fish camp. In conclusion, the features of the setting affected the cyclist because they forced him to work extra hard and put forth more effort. But with determination,you can accomplish anything! " 3 3 3 +6172 3 "The features of the setting affect the cyclist in the short story Do not exceed posted speed limit. The cyclist mood seems to change as the road and setting does. The narration states, a large high way sign jumped out at me. I read : Rough road ahead : Do not exceed posted speed limit sometimes life can feel so cruel (Kurmaskie). Slowly as the terrain gets harder and harder the cyclist feels worse and worse. Every time he believes there is a town he gets happy but his dreams are soon crushed. One can see in the picture the hard cycling terrain that can affect the cyclist making him tired due to lack of water and sense of hopelessness he feels as he loses energy and believes he will die." 2 1 2 +6173 3 Some features of the setting setting that affected the cyclist were signs that had speed limits. The sign affected the speed of the cyclist. Another feature was a hill on the route. This affected the cyclist by making him tired because he said I wipe the sweat from my eyes. 1 1 1 +6174 3 "The setting had a huge affect on the cyclist. One affect was the lack of water in the area he was in, which was a dessert. Also, the lack of people in the area didnt help the cyclist out at all. The hills on the road made it more tougher on the cyclist because it drashed what little energy he had left. Also, the sun beating down on him made his body more warm and making it harder for him to focus on what he was trying to do." 1 2 2 +6175 3 "In the setting of Rough road ahead: do non excee posted speed limit. The cyclist is greatly affected. In the beginning the authour is enjoying a nice campground outside lodi California when old-timers told the cyclist directions and from his piont of view ""they'd sounded so sure of themselves when pointing off out land marks and spouting off towns I would come to along this breezy aunt. So the cyclist used that information and it wasnt for The Better." 1 1 1 +6176 3 "How the features of the setting affect the cyclist because when the old guy had told him do you know where to go? An the other guy was like yes sir! I own a very good map so how did it change for the man that was riding this bike he saw all of those towns an a sign that said Rough Road ahead. That the man would always stick to the future. What had change was he saw all of those buildings, town, an he was going an going. I think he might stick with the future." 1 1 1 +6177 3 "In the story the cyclist faced many problems, one of the biggest problems was the terrian that he had to maneuver them. The terrain was hilly, having to go up a hill on a bike is tireing and wears you out faster than flat land would, and making him use more energy. The heat was also unbearable making it harder for him to focus, the cyclist did everything he could to keep consiese while manuvering threu the terrain and deserted landscape being a huge desert of rolling mountains he pushed forwad, finding no civilization anywhere to get a refill of water. For example, if the terrain wasnt as hilled then it would of made it easier for him using less energy and less strain on his legs, the heat of the desert beating down on him probably slowed his progress also. Heat will make you move slower and a cyclist moving down a barnest road with no shade will make the journey seem longer, and imposible. In the end his will and determination got with threw the landscape, so he could get the water he needed to finish his trip" 2 2 2 +6178 3 "In this essay, the features of the setting cause the cyclist to become irritaed toward the old men. Ten this essay, old men give the cyclist direction, and instead of using a map, he takes their advice. However their information is out of date, and takes the cyclist through rolling hills and bumpy roads. The cyclist uses all of his energy to get to unknown towns of no importance, and with no water. The cyclist blame the old men for giving him directions that wasted his energy. However he showed realy become himself for taking their advice, and motuising a credited map on real directions." 2 3 3 +6179 3 The setting of where you are riding has alot to do with the cyclist. In my own opinion I think the setting is the most important part. 2 2 2 +6180 3 "In the short story Do Not Exceed Posted Speed Limit by Joe Kurmaskie. the setting greatly affects the cyclist and his mindset. When the scenery is pretty and cheery, he is happy as well. This is shown when the author writes, denyoved the serenity of an early- summer- evening. This quote describes the scenery as a serre or peaceful place. His happiness is found in the first part of the quote when he said, denyoyed One does not enjoy something unless they are happy or in a cherry mindset. Therefore, the peaceful scery affected the cyclist by making him happy. the same can be said for merry scenery too. This is found when the author says, At some point, tumble weeds crossed my path and the growing realization that I could drop from heatstroke. This quote, describes the scenery as a place that they tumbleweeds. Steryotypically, tumbleweeds are found in dreary and lonely place. This lonely scenery takes it if full on the cyclist. He becomes pessimist and is making of all that could go wrong, not all that could get better. This is found around us every day. The poor and homeless who live with a low standard of living are often said. They have to exist with the affected the cyclist. In conclusion, the seeing does affects the cyclist and his mindset drastically." 3 2 3 +6181 3 "The features of the setting affect of the cyclist because the setting changed so drastically. The flat wide open road turned into to short, rolling hills. Because he was already running out of water it was making harder for him to have the will power and determination to go up and down these hills. His determination started to fade because he started to see wide open lands with nothing but tumbleweeds and ridiculously large snakes. He felt like he was going to dehydrate because the sun was beating down and had no water left. He used pebbles that he had found to put in his mouth to help circulate the saliva he had in his mouth. He wishes that he would choke on one because he feels so useless. " 2 3 3 +6182 3 "In the story, Do not exceed posted speed limit, by Joe Kurmaskie, the cyclist faces many hardships on his way to Yosemite due to the features of the setting. The fact that it was a hot summers day contributed to his hardships. With little water, it was easier for him to get dehydrated. In the text, the author writes, .I could drop from heat stroke, on a gorgeous day in June. (Kurmaskie, @NUM1). This lets the reader know that the heat of June was very dangerous to the cyclist. There was also nobody around except Old timers who havent left the confines of their perches since water was in offing (Kurmaskie, @NUM2). The narrator stresses his viewpoint on taking directions from these people since their directions are as poor. It can be inferred that he meant they was obviously out of date when across directions since the ones they gave him were not correct. The cyclist in this story had a rough time getting to his destination due to the setting." 2 3 3 +6183 3 "The terrain in Do not exeed posted speed limit by Joe Kurmaskie the cyclist had to cope with many difficulties. He was already lacking water from the anduous journey and then the enviroment turned against him. The narration states, I noticed the terrain changing flat road was replaced by short, rolling hills.(Kurmaskie @NUM1). This means the cyclist is going to put forth more energy to make it up these hills. Energy he barely has. This will drain almost all the energy the cyclist has. Another example is, At some point, tumbleweeds crossed my path(Kurmaskie @NUM1). This means that the cyclist is in the middle of nowhere with barely any water and energy, causing even more problems. In conclusion, the setting in, Do not exceed posted speed limit by Joe Kurmaskie caused many problems for the cyclist. " 2 3 3 +6184 3 "In the story Rough road ahead the setting affects the cyclist. The cyclist is affected by lack of water, the distance he has to travel, and the hilly terrain. The water bottles contain only a few tantalizing sips. wide rings of dried sweat circled my shirt, this statement shows how he was out of water and was tired and hot. The setting affected the cyclist a lot in the story." 1 1 1 +6185 3 "The cyclist has it hard in the conditions lack of water, heat and rough terrain are all things that made his ride harder. First, the lack of water took a tole on the amount of energy he had to keep going. Secont the heat also affected his trip It mad it hard for him to Keep going he thought he would die. And the birds would bick at his dead body. Last the Terrain didnt help. The trip had many hills and that used alot of energy so I made it harder. In conclusion those are things that worked against th cyclist." 2 2 2 +6186 3 In this I will tell you how the cyclist was being effected. One way is the heat caused him to drink more then her ran out of water. The next was is the misleading old guys that gave him ba directions. Another way was being the long distance and bad terrain slowing him down. The last reason is the snake that slowed him down. 1 2 2 +6187 3 "The features of the setting affected the cyclist in many ways. He was riding his bike across a place with no cars, no people, no water, or no food. It was a dangerous journey for him but he made it." 1 1 1 +6188 3 "The features of the setting do affect the cyclist. one example is, the condition of his jar" 0 0 0 +6189 3 "The features of the setting can affect the cyclist because, say that there was nothing. It might make you want to go faster and left out your inner speed demon. Thats all I can really tell you. Because personally I dont think the setting of where you ride your bike doesnt even matter. Possibly for a bicyclist it can, but to me I dont even think so." 1 1 1 +6190 3 "The features of the setting affect the cyclist, because there are no cars, building, water, or people in sight. It goes from flat road to rolling hills. Even though he had no water he was determined to keep pedeling. Rough road Ahead, do not exceed posted speed limit At this point he had no water left and he was pretty much in the middle of nowhere. If I was in his situation I would feel hopeless. There was no sign of hope. He just saw endless rolling hills and that was all. Then when he saw the building over the hills he thought he was home free. So he pedeled up to the building, and that with all the others was abandoned. The cyclist thought he was going to die. In conclusion the features of the setting greatly affected the cyclist because seeing nothing gives him no hope. If he had cars and buildings on both sides of him that probably would have give him some confidence but that was not the case. He is in the middle of nowhere. He finally came to bend and say Then, as easily as randing a bend my troubles, thirst, and fear were all behind me." 2 2 2 +6191 3 "Theres many features of the setting that affect the cyclest. His dehidration started with the sun beeting down on him and the thirst for water. He was mainly affected when he was out of water and road by an abbanond welchs grape juice factory. A sand blasted picture of a young boy pouring a refreshing glass of juice into his mouth could still be seen. I hung my head. Then when he had almost nothing left he spoted a bait shop. Somehow I climed away from the abandoned factory of juices and dreams, slowly gaining elevation while losing hope. Then, as easily as rounding a bend my troubles, thirst, and fear were all behind me. @CAPS1 is when he saw Gary and @CAPS2 Fish camp If you want bait far the big ones were your best bet thus realcaving his troubles." 2 2 2 +6192 3 "The features of the setting that the author cyclist through definitely effect not only his mood, but his the physical condition. To start, it is mentioned that he is in the high deserts California in June, @CAPS1 it is implied that the weather is hot causing the author to sweat as he bikes along. Next there is a change in terrain an he soon approaches rolling hills which are more difficult to bike on. Finally the author sees a sign that reads ROUGH ROAD AHEAD: DO NOT EXCEED POSTED SPEED LIMIT and becomes discouraged because his bike is not even capable of reaching the speed limit but he still has to manage getting past the rough road. After passing this road he approaches a picture of a boy drinking juice that is posted on a juice factory. Seeing this sign most likely perpetuates his thirst and leaves him more exhausted and frustrated before. Such features of his surroundings played a large part in the authors change in mood. " 3 3 3 +6193 3 "The features of the setting affect the cyclist greatly. First, is the beating sun. The heat dyhydrates and almost kills him. The rocky road is also a factor. It takes up the time and energy he has to preform. Another key ingreedient of the setting was the desert. There was no one to help him and there wasn't a place to get water. In conclusion the setting was a big factor in the story." 1 1 1 +6194 3 "The setting affects the biker in many ways. For one, he is riding through the high deserts of California during the month of June. It is naturally hot in the summer, but in the desert, it is twice as hot. This means he will dehydrate quicker, and will need more water. The only water the biker can find is from an old pump, but he couldnt drink it since it was so hot; nasty tasting. When I tried a drop it had the flavor of battery acid (Kurmaskie @NUM1). His route was deserted, so nobody could help him. Also, the terrain was bad. The hills caused him to use more of his energy, which he needed to stay alive. the growing realization that I could drop from heatstroke caused me to laugh, (@NUM1). He also encountered dangerous animals like the diamond black rattles back. The setting also affected him mentally because he was silently yelling at himself since he took directions from the old men. He knew he should have taken the right way, instead of trying a short cut that he now realizes is abandoned and dangerous. The biker is being affected in many ways, both mentally and physically." 3 3 3 +6195 3 " The setting causes major problems for the cyclist in the essay, Do Not Exceed Posted Speed Limit. The cyclist was faced with a desert, traveling in extreme humid temperatures and no water. He encounters poisonous snakes and areas of no buildings or civilization all together. The effect on him was the main conflict of the essay. He had no water during some of the trip and lost all hope. He told himself that it was no use. In the story it says, It didnt really matter. I was going to die. The extreme measures of the setting caused the cyclist to lose control, putting stones in the mouth to stop thinking of his thirst. Over all, the setting caused the cyclist major problems, physically, and mentally." 3 3 3 +6196 3 The ways that can effects the cyclist by the setting of the place are how the road is shaped or the riding up the hills and the roughness of the rode. There were an sign where it said rough road ahead: do not exceed posted speed limit. That sign if he didnt see it he would have over the speed or didnt know what the speed he was to go as a cyclist and gotten hurt. The road was made for the cars so the speed limit is hard to 1 1 1 +6197 3 "In the story, Rough Road Ahead: Do Not Exceed Posted Speed Limit by Joe Kurmaskie the setting affects the cyclist. One setting that affected him was the first setting. I this setting he used up his water and it was hot. this affected the cyclist because he was starting to feel dehydrated and thought he was going to die. The text shoud this when it said I could drop from heat stroke, later when the cyclist came to an abandoned juice factory he thought about how thirsty he was. This affected him because usually when you think about thirst you get thirsty er. This also made him dis apointed. The finale setting affected him because he had finally got water and wasnt thirsty. That is how the setting affected the cyclist." 2 2 2 +6198 3 "On that long bike ride the cyclist was affected by the setting. He was affected of the lack water, the heat and the bad directions, throughout the story the cyclist ran out of water due to bad directions from some men.""Trying to keep my balance in my dehydrated state. The water bottles contained only a few tantalizing sips. He ran out of water and became dehydrated through his trip. The heat has a major part of his dehydration during the bike ride. I was traveling through the high deserts of California in June. I have been to California and it is hot. The trip was made even longer due to some bad directions from some old men. Because I listened to some gentlemen who hadnt been off their porch in decades, caused me to laugh. The gentlemen gave him wrong directions because in their time that was right information. But not the land has changed and the directions were wrong. When going on bike rides the setting of the rides is a great help or a bad help. The cyclist experienced how the setting of a bike ride can affect him a great deal." 2 3 3 +6199 3 "The features of the setting effected the cyclist very much. For example, the sun was beginning to beat down. Another example, I was hitting my water bottles pretty regularly. The setting were hot and dry. It effected the cyclist very much. It was to the point of dying." 2 1 2 +6200 3 "The cyclist in this essay was a very brave man. He had many obsticles in his journey but he still made it. Nature was most definatly not on his side that day. He had to ride his bike up and down hills several times which wears you out very quickly. Flat road was replaced by short rolling hills, After he got threw the hills, he came to a sigh ROUGH ROAD AHEAD: DO NOT EXCEED POSTED SPEED LIMIT. Now he has to go through bumply roads. At some point, tumbleweeds crossed my path and a ridiculously large snake- it really did look like a diamond back-blocked the majority of the pavement in front of me. Now the poor guy had to deal with snakes bigger than him! Thankfully he got by the snake, alive. Over one long cripping hill, a building came into view. The man thinks he found someplace to get water, but its an abonded building . ...,by the looks of it and been a welchs grape Juice Factory and botting plant.." 0 0 0 +6201 3 "The setting affects the cyclist because it is hot, therefore he gets thirsty. When he says the sun was beating on me this shows it was hot. Thats one of the reasons why he was tired and dehydrated." 1 2 2 +6202 3 The feature of the setting affect the cyclist about old timers giving him wrong information about taking this short cut he was going to take. Running out of water and energy and he was doubt himself and giving up on race It say he. 1 1 1 +6203 3 "In the piece, ""Rough Road Ahead: Do Not Exceed Posted Speed Limit,"" the features of the setting affected the cyclist in many ways. The cyclist felt black humor, despair and then relief due to the features of the setting. The cyclist felt black humor, due to the features. This was because it was very ironic were he was. It was a hot desert and he needed something to drink. He passes a closed juice factory. This spasked his black humor The cyclist felt despair due to the features. This was because as far as he could see, ""There was no one in sight, not a building, car, structure of any kind. ""This gave him the feeling there was no chance he could survive. This made him despair. The cyclist felt relief later on due to the features. He eventually got to a bait shop. When he was this live and so he felt relief Of this is, ""Then as easily as ? ? ? hobbles, thirst and fear were all behind me. In this piece the features were determined how the cyclist felt." 3 2 3 +6204 3 "In the essay Do not exceed posted spedd limit by @PERSON1 many features of the setting effect the cyclist. First, when he arrived at the first town and said, this place might have been a thriving little spot at one time say, before the last world war. This deserted ghost town setting was like a joke and had a small effect on the cyclist because it was the beginning of the day and he still had a good water supply. Though when he arrived at the ramshackle shed surrounded by several rusty pumps the effect it had wasnt so mild. He says, The sight was troubling. Then when he got on his hands and knees and started working the pump the situation didnt get much better. All that came out was a drop or two that tasted like battery acid. Lastly, when he arrived at an abandoned welchs Grape juice factory after several miles. This had a very wearing effect on him since the water supply was low and he had cycled into disappointment after disappointment. This setting in this essay seemed very abandoned and hopeless. It was only determination that got this cyclist through it." 1 1 1 +6205 3 The story Do not exceed posted speed limit is about a cyclist who got bad direction to Yosemite National Park and has a depleeding water supply is extreme heat. He is doubtful that he will make is journey because he is dehydrated and dizzy. 2 2 2 +6206 3 "The setting in this story is important because if you dont have a setting then this will not make sence, setting is something everyone can do. It can be anywhere or anything. The setting helps puts the whole story back together. The setting in this story is @LOCATION1 spending time with his family. Setting is a very important part in a morvie/video." 0 0 0 +6207 3 the way I would set my affected cyclist is by him riding throught. Something u would never thing he can set thought then over coming his intention. 0 0 0 +6208 3 "The features of the setting in, Rough Road Ahead affect the cyclist. The cyclist started at a camp ground and conversing with some old dogers, and he asks them how to get to Yosemite, and the tell him a shortcut that turns out to be out of date. On the road to Yosemite he sees nothing except abandoned towns. He is really thirsty and theres no water anywhere. He thought he was going to die. He said, I was going to die and the birds would pick me clean. It was a hot summer day and there was tumbleweeds and snakes by the road and him feel hotter and more thirsty than he would be if it was cooler and if there was a big river flowing by the road. But it was hot and dry in California and desert-like and it made him feel like he was dying because he was in the middle of nowhere therefore the setting affected the cyclist" 3 2 3 +6209 3 "This cyclist had the conditions of the land to deal with, He didnt have too much water with him and there wasnt a good source anywhere near him that he could see. He just had to keep going. He also talked about how the road was rough. This was conflicting on how long it took him to get to the next place with water. More over he was in a desert area. The air was dry and hot, the heat was making him sweat and that was leading him to become dehydrated." 2 2 2 +6210 3 "In the story Do Not Exceed Posted Speed Limit the features of the setting effect the cyclist. They effect the cyclists confidence, and hope. I say this because through out the story he sees things that would consern other people like the towns that are suppose to be the best end up Ghost towns and the road from flat to hills. Yet he continues on and then says what I believed was my last burst of energy, I was going to die. The cyclist dosent think he can continue but manages to keep going hoping that the next horizon to see a building or something. Hope saved his life because if he knew he could not continue that he could die." 2 2 2 +6211 3 "The features of the setting affect the cyclist. One reason the features of the setting affect him is because it is hot outside which makes him need more water. An example of this is I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June. @CAPS1 example of being hot outside is A tarlike substance oozed out, followed by brackish water feeling somewhere in the neighborhood of two hundred degrees. " 1 1 1 +6212 3 "It the short story Rough Rode Ahead a cyclist is pushed through an extremely harsh setting trying to get to Yosemite National Park. In the story the narrator takes a trip to Yosemite National park after getting directions from two older men what the narrator doesn't know is that the road ahead is indeed rough. One narrator states I eased past trying to keep my balance in my dehydrated @NUM1). The narrator is really really taking a beating from the travel and this rocks, dry climate is really takens a tale. From reading this story the setting does not do any good for him other than the general store he finds in the end. Like the title states the setting of this story was a Rough Road Ahead." 2 2 2 +6213 3 The setting affect the cyclist features because if the cyclist was riding in @LOCATION1 around june the affect @MONTH1 not had been that harsh. But overall the setting out begin in a hot place with limited water was not a good thing. Thats how the cyclist is affected by the setting. 1 1 1 +6214 3 "Being a cyclist and in the condition he was in would be even worse in the setting he was in, such as the heat of California, and difficult condition of the path he was on. Him being so hot and tired from the difficult hilly trail would be worse with having the lack of supply of water. The author was very dehydrated and was on the verge of fainting. If it were not so hot, the cyclist would have been in a much better condition." 1 1 1 +6215 3 "The cyclist in the article almost died from dehydration and heat stroke and wrote his misadventure in a light hearted, humourous way. I commend him for almost dying and laughing about it and then turning around and blaming it on old people. He is an inspiration for reckless young folk. Oh yeah, and the setting was a desert." 1 1 1 +6216 3 "In the essay Rough Road Ahead Do Not Exceed Posted Speed Limit time setting very much affects the cyclist during the story. One of the things that affect him during the story is that it was a very hot, sun scorching day. Also he ran out of water and there was nothing but desert and poisonous snakes around. Another thing is that when he ran out of water there was no snakes warmers just desert so he started to become very thirsty. In the essay it also said he reached a part where she saw a sign that said Rough Road Ahead, Do not exceed posted speed limited, so the road conditions starting to get rough him that was another affect. In the end of the essay he reaches a camp where it is all peace and relaxed, and they have cold water there, this affects him because he feels replenished. All these different features of the setting affected the cyclist greatly." 2 2 2 +6217 3 "The setting was affecting the character, because as the day got hotter he got thirtier. Also because when he got to the sign about rough roads ahead. He started to get worried and kinda paranoid, so thats how the setting affected him." 1 1 1 +6218 3 "There was a number of things that affected the cyclists during his travel. First off, at the old town there wasnt any real water he could drink. So he was out of water and was going to be thirsty. Also, its the middle of June in California, its very hot and size and the is going to wear him out pretty quickly. Another thing that affected the cyclist is the steep hills he has to go up and down. For example, he says Over one long, crippling hill, hes saying the hills are very hard for him. Those are the features that affected the cyclist in the story." 2 1 2 +6219 3 "The setting of this essay was the California desert in June. If any of the settings features affected the cyclist(which they all did) This had the biggest impact. In the fifth paragraph, the reader leaves that the author was travelling through the high deserts of California in June. My prior knowledge tells me that California is generally always a very hot place especially in the desert in June, the hottest month of the year This would have greatly affected the cyclist. He was riding for over fifty miles through the California desert with a limited supply of water. This put him at a great risk for dehydration, which he tells the reader he reaches in the last time of paragraph ten. This terrain and the extremely hot conditions would make the cyclist very tired and dehydrated, making his journey to @CAPS1 @ORGANIZATION1 all the more difficult." 2 2 2 +6220 3 "The features of the setting affected the cyclist in many ways. Like he was in a desert, no one to give him good information, no towns close by that are still running, it was a hot summer day, no water near by. These affected the cyclist because they made him not sweaty, dry mouth, no energy, and he was having alot of doubt that he was not going to make his journey alive. In the story they cyclist said, ''I picked up some pebble and put them in my mouth. With my luer. I'd hit a bump and lodge one in my throat. It didnt really matter. I was going to die. ''When he said that he showed alot of doubt. Everytime he got to a town or bulding it was abandoned. He saw an abandoned building witch was ironically a Welch's Grape Juice factory and bottling plant. That made him even more thirstier. Thats how the features affected the cyclist." 2 2 2 +6221 3 "The setting in the story greatly affected the cyclist. The main setting was that he was riding his bike in the desert. The desert is really hot so he needed more water than he would have if he were riding in the woods or if there was snow. Also there was hills on his travel that he had to ride his bike up which takes more energy so again he would have needed more water than if the road was flat, finally, because of the terrain he was riding on the animals he ran into, a snake, could have hurt him. Because the setting of the story was in the desert the cyclist was affected more then he had thought he would be." 2 2 2 +6222 3 "In this paragraph I will be explaining some features of the setting that affected the cyclist. One affect was the uneven, bumpy roads he was trying to cycle on. If it was flat he wouldnt have to really be more aware, cause with bumpy roads he has to look out for rocks, holes in the road. Another affect are the hills. He had to put out more energy than if the hills were just flat. Those are some reasons that explain the features of the setting that affect the cyclist." 2 2 2 +6223 3 "Some features of the setting affect the cyclist on his journey to Yosemite. Starting off, ad men who havent seen the changes this world made for about a decade, gave the cyclist a bad start. If the cyclist wouldnt have gotten the shortcut information, he wouldnt have been without water in abandoned towns. When the cyclist arrives at some rusty pumps, he decided to check it out and see if there is any water. The water was really not and it tasted like battery acid. The cyclist decided to keep going, even though he was running out of water. When he came to a snake in the rode, he had to get by his dehydrated state. I would imagine this would be dangerous if you couldnt focus well in the road. He then came upon @ORGANIZATION1 that has do and abandoned. He obviously couldnt get any water there seeing as how bad of condition the building was. When the cyclist had no water, he became dehydrated and unfortunately there were no stops for water on his journey that day to Yosemite." 3 2 3 +6224 3 "The features of the setting affect cyclist in many was it was like a crazy maze, the road he was own, and him not really knowing were he was going didnt help him, or not having enough water. This is how the features of the setting affect the cyclist." 2 2 2 +6225 3 "The cyclist's adventure was very much affected by his setting. It seemed as though the worse his setting became, the worst he personally felt. For example, when he hit the ghost town, he just laughed. Once he got to the fork in the road, he saw less of once exisiting civilization, and he says, This sight is troubling,. Once he moves on, he gets more discouraged by the ""Rough Road Ahead"" sign. It seems as though the more dehydrated he gets, the worse things became for him. The climate in the story also becomes @CAPS1 difficult. The land at first was flat and easy to ride, as it got harder to bike on, the cyclist grew @CAPS1 wary and delievious, but knew he had to keep going. The area in which the cyclist was in, had an enormous effect on him emotionally." 2 3 3 +6226 3 "The features of the setting affect the cyclist by making him in a near death situation. He said sometimes life can be so cruel. because he was running out of water, running out of strength, and running out of patience. Also a snake ""it really did look like a diamond back, could have killed him. He was in the desert and anything could happen. The setting of old men who didnt know anything and the heat could have killed the cyclist. The situation would have been different if it were anywhere else." 3 2 3 +6227 3 "The cyclists problem in Do Not Exceed Posted Speed Limit by ""@PERSON1"" is dehydration and the California terrain is the cause. California is full of long deserts that can exceed @NUM1 degrees in sammer, and the cyclist was exerting himself so dehydration was inevitable. In the story the cyclist says I could drop from a heatstroke on a gorgeous day in June so the setting is obviously a hazard." 1 1 1 +6228 3 "The features of the setting affect the cyclist in a very serious way. The features cause him to consider he @MONTH1 die soon, as well as present a variety of challenges to him. The setting takes place in the deserts of California, in early summer. There are no other people in there, no establishments, towns, etc. ; @CAPS1 dangerous feature of the setting in addition to it being in a desert in summer, for example the author is the town learntedat might have been a thriving little spot at one time-sat, before the last world war. The cyclist is given almost a hopelessness as well as determination to survive as he runs out of water. For example he says I was going to lieslowly gaining elevation while losing hope. The author makes the trip to a fishing camp and survives. He lerns, because the setting the setting is now lifeles and deserted, to not listen to old people who remember the current setting on if as it was many decades earlier. Because the features of the setting nearly kill the cyclist, the cyclist learns a lesson. " 3 2 3 +6229 3 The features of the setting affect the cyclist because the authour was not and augsosted and as she was ridding her bike there was no place for her to stop and fill up her water bottle. 1 1 1 +6230 3 "The rode was deserted there wasnt a builing, car, or house in sight. He was stuck andhes in the middle of nowhere without any water or food, poisonous snakes and the heat could made him collapse." 1 1 1 +6231 3 "The cyclist on her trips sees a lot of features that would discourage her. She is riding in high desserts of california in June"" (kurmaskie). We all know desserts are steaming hot and dry especially in june. She also encounters hills (kurmaskie) to make matters wose she was travelling on hills in the extreme heat.Though the cyclist goes through many perilous obstacles she makes it to a camp a lives I could seethe horizon, telling myself that I could make it that par, I'd be fine.""(kurmaskie) This shows the author's dedication and that if you don tgive up you will be fine." 2 2 2 +6232 3 "In the story, Do not exceed posted speed limit, the setting is an all- important factor. The author feels the need to describe the path that the cyclist is following and the details each place he stops, such as in one ramshackle shedand a corral that couldnt hold the lamest mule and The cool pines and rushing rivers of Yosemite In a story such as this setting is of great importance especially since it is so rapidly changing. The story itself would be of much different quality likely for a lower quality, if the author never put emphasis on the areas that the cyclist rode past, this story would not be worth reading if the author were not as skilled a writer as he is." 1 1 1 +6233 3 "The setting of the cyclist was harsh, the weather was too intense to be cycling your heart out all day ." 2 2 2 +6234 3 "The feature of setting affect the cyclists because if you are a guy and you ride a bike then you might have to where about falling of your bike, or out of water. I you keep at a fast past and dont have any water then you can get dehydrated. In the essay it tells how he had ran out of water and he thout he was going to die he had gotten dehydrated but lukly he had find some were to get something to drink" 1 1 1 +6235 3 "In the story ""Do Not Exceed Posted Speed Limit"" the mans ride gets pretty rough. Because he took the old mens advice on a shortcut, the once enjoyable ride became a " 1 1 1 +6236 3 The cyclist in the essay goes through phases that effect him differently according to the setting. At first the cyclist knows where he is and is very familiar with his location. He is excited for his ride and ready to accomplish it. He then shows up at a ghost town. He begins to have doubt in his mind about what the old men told him. This place was completely deserted and there was no water for him. He began to feel discouraged when he passed the Grape juice factory and he seriously believed this was the end for him. His hope and enjoyment finally returned to him after he saw the sign for the bait. The bikers feelings and attitude changed as often as the setting did. 2 2 2 +6237 3 The features of setting affect the cyclist in many ways. At first when he sees the tall pines and the river he is calm: and chilled out. But when he sees the abandoned @PERSON1s Grape Juice factory he becomes desperate and thinks he is going to die out in the desert. A guy travels to @ORGANIZATION1 where he meets old timers and the give him a shortcut to the park. He then goes on his bike to the park taking their shortcut. While traveling starts to run out of water and then he thinks he is going to die out in the desert. It dint really matter. I was going to die and the birds would pick me clean. This quote means now that he is out in the desert he thinks he is going to die since he has no more water. This relates because he becomes desperate for water because he is out in the desert in the midde of June. 2 2 2 +6238 3 "The features can affect the cyclist very well or not. I depends on what condition happening. For example, he could fall. Does he have a traveling first aid kit." 0 0 0 +6239 3 "Setting is a very important element to the story Rough Road Ahead, Do Not Exceed Posted Speed Limit: by Joe Kurmaskie. Kurmaskie experienced a harsh scenery with high temperatures, low water supply and wild animals. High temperatures without an efficient supply of water can lead to heatstroke, hyperthermia, dehydration and even death. It is very important to always be prepared with enough food and water to sustain yourself through an event such as being last. Dealing with wild life can also be an obstacle. You never know how any animal is going to react to your presence so you must be as cautionary as possible around non-domesticated animals. In conclusion, scenery and setting of a story can make all the difference of how interesting a story can be and how informative, for instance, if Kurmaskie had experienced no weather with plenty of food and water riding through a flat small town in @LOCATION1 the story would not be as interesting." 3 0 2 +6240 3 "The features of the setting greatly affect the cyclist in Do Not Exceed Posted Speed Limit, by Joe Kurmaskie. The setting effects how fast, hard and long the cyclist needs to pedal. For example, Rough Road Ahead: Do Not Exceed Posted Speed Limit. The cyclist was going 12 mph, where the speed limit was 55 mph. The cyclist was beginning to lose hope after reading the sign, but he kept going. Furthermore, not only was the land add pressure to the cyclist. So does the heat from the sun. For instance, the cyclist says, and the growing realization that I could drop from heatstroke. The heat begins to affect the authors health and his perseverance. The setting affect the mental and physical strain the cyclist has to endure." 2 3 3 +6241 3 This story was a great motivation for older man that can still be healthy and feel like an teenager again. It showed how much effort he put to his goal and how he survive. Forty miles he peddled for forty miles to drink same water the cyclist was and interesting story not ginaupup 1 1 1 +6242 3 It affect cyclest because the condition determines the pace and even how fast they could travel. 1 1 1 +6243 3 "The features of the setting greatly affected the cyclist. For example, the cyclist was in California, which is an extremely hot place in the desert in June. These features made dehydration a more keen possibility. Another example, is paragraph ten. It explains how the rough road, tumbleweeds, and large snake made it hard for the cyclist to keep his balance without water. Also, the essay describes a building with a poster of a small child drinking a refreshing glass of juice,this made the cyclist think more about water and become very thirsty. Although thier was some possitive effects of the setting on the cyclist. The pebbles aloud him to keep his mouth moist and not think so much of his thirst. Also, the bait shopped allowed him to opt something to drink, and not die from dehydration." 2 2 2 +6244 3 The features of the setting affects the cyclist in many ways. One way it affects the cyclist is because of the weather condition. Being that it is very hot outside the cyclist does not have enough water. Another way it affects the cyclist is because of the condition alongside the road. For example the tumbleweeds and the snakes. Being that its not out most likely the desert is in process of a drought and he gets very dehydrated. I believe these are the reasons because it all makes a lot of sense and affects the cyclist. 1 1 1 +6245 3 "The features of the setting affect the cy clist in many ways. For example the lack of water was the biggest thing. Without cool water he had nothing to reboost his energy. He would get tired out faster. Even he does find water its hot, like when he says, brakish water feeling some where in the neighborhood of two hundred degrees. This shows how in the high desert of June,"" the water is all very hot. Even after he pumped the well for several minutes the water still wouldnt cool down the hot desert had baked everything above and below ground. So when you go to get something liquid which heats and cools faster than solids it will be hot. Also the rough road made it difficult for the cyclist to travel it. We know the roads rough when he says, large highway signs dumped out at me. It read ROUGH ROAD AHEAD DO NOT EXCEED POSTED SPEED LIMIT. ""This also shows you couldnt go fast." 3 2 3 +6246 3 "The cyclist is dehydrated. He has lack of water for a significant distance before he realizes that the old men would have been right,had he been riding, before the last word war. But any town he rode into, was just a run down, deserted, and abandoned piece of desert. He says,It was a sad, hopeless, laugh, mind you, but at leas I still had the energy to feel sorry for myself. @CAPS1 that he was getting more and more dehydrated, but was not quite ready to die. He still had enough energy to keep going, But hope was fading. Then all at once after climbing a large hill he gains all hope back. He sees Gary and Wilbers fish camp The rider is safe now, he stumbles into the modern looking bathroom and drinks from the sink. He is now safe, ready to ride, and avoid all men who havent moved from their front porches in years." 1 1 1 +6247 3 The harsh setting in DO Not Exceed Posted Speed limit by Joe Kurmaskie made the @CAPS1 for the cyclist more difficult due to the hot weather and the inconsistancy of the pavement. The very hot June day was a cause of the cyclist slowing down. wide rings of dried sweat circled my shirt and the growing realization that I could drop from heat stroke on a gorgeous day in June. This proves that the cyclist is very hot due to the summer heat. Another factor of the cyclist slowing down is the inconsistant of the pavement on the road Flat road was replaced by short rolling hills. The @CAPS2 proves that the road could be slowing the cyclist also. It seems the cyclist has a lot against him. But if he keeps his head up he can make it to Yosemite. 3 2 3 +6248 3 "The features of the setting affect the cyclist by the hottnes of the deserts of California because the cyclist was sweating, and drinking his water bottles. Also when the cyclist saw the building, he thought he could rest and maybe get a ride to where he was going but, the building was abandoned years earlier so the cyclist couldnt stop. These are some features of the setting that affect the cyclist." 1 1 1 +6249 3 "Several features of the setting that affected the cyclist were time of year, the desert land, the lack of civilization, the lack of resources especially water, and the rugged characteristics of the land. The cyclist was traveling during the summer time, which was the hottest time of the year. He was also traveling through the deserts which create an even hotter climate. I was traveling through the high deserts of California in June, was a quote from the selection that tells us this. If he had been traveling in the @DATE2, for example, he @MONTH1 have been more comfortable. Throughout his trip, the author does not after come desert civilization. He runs into a deserted factory and miles of land without people. The fact that he is traveling through desert terrain also helps us realize that water is scarce. He has trouble finding a place to get water. This made the trip extra hard and discouraging. I was going to die he says. As he travels farther, the land also becomes harder to travel on. Flat road was replaced by short, rolling hills this characteristic is a setting, like the others, negatively affects the cyclist by making his journey harder." 3 3 3 +6250 3 "The cyclist surrounds did have an affect. In paragraph two the cyclist describes how I enjoyed the serenity of an early-summer evening the."" To have a wonderful day to begin with was parably assurance even thing would be fine. Confidence was a factory for the beautiful weather as well as he knew a short cut. In paragraph @NUM1 the cyclist mentions how old men looked at his map and pointed out this breezy jaunt. The cyclist just thought his life got a little easier. Then in paragraph @NUM2 the cyclist comes upon the ""traditional definition of a ghost town."" This setting was nothing like the old men were talking about. ""Twenty miles up the road, i came to a fork of sorts."" In paragraph @NUM3, this caused confusion and worry. ""This sight was troubling."" ""I was traveling through the high deserts of California in June."" The cyclist was ""hitting my water bottles pretty regularly."" This setting made the cyclist uncomfortable as well as the ""two hundred degrees."" The cyclist then began puzzled and distraught. ""I notices the terrain changing"" in this quote the cyclist's settings @MONTH1 have caused confusion. But in the end the cyclist suceeded. " 2 3 3 +6251 3 "The features of the setting in Do Not Exceed Posted Speed limit by Joe Kurmaskie, affect the cyclist because the cyclist is in a desert with no water and trying to find a town there is further than he thinks. I was going to die and the birds would pick me clean. This shows the cyclist did not have much confidens in this desolates area of the jerny. " 1 1 1 +6252 3 The features of the setting affect the cyclist because the road could be damaged or there could be a lot of hills. One example is on pg @NUM1 with any luck Id hit a bump and lodge one in my throat. This explains the conditions of the road could be dangerous. That is how the condition of the road can be affective. 1 1 1 +6253 3 "When the cyclist takes off on the road again he has plenty of water, strongs legs and enjoys the sunny and warm day. But as the day gets more hot and the terrain more desert like and cough, the cyclist begins to lose his confidence, as he keeps riding, his water supply is depleting and he begins to believe that he will die. At one point, talking about the terain he says,"" i toiled on at some point, tumbleweeds crossed any path."" It sounds as if he is struggling very hard to keep going without water and a clue about where he is. When he is almost sure that he is going to die from the queruring that he says,"" i was going to die and the birds would pick me clean. This shows that by this time his confidecnce was lost because of the insane heat and unberable terrain. He begins to lose his sanily along with his strength because the setting around him was so terrible." 2 3 3 +6254 3 "The features of the settings affect the cyclist in many ways when he starts of, he is bright and happy just as the slenecy is nice and calming. There is a pace that makes him feel like nothing wrong. I rode into the morning with strong legs and a smile on my face. After about @NUM1 miles on the cold, his life was getting low, and he came to his second abundant place. He then felt a little disturbed and worried. He needed to find a place with water. This site was trebling. There he fins water plant not his hopes rise a bit, until he finds the water isnt good. A tarlike substance oozed out, followed by brickish water feeling some which is in the neighborhood of two hundred trees. So he moves on and finally he re aches life! He is so relieved he cant believe his luck. Then as easily as rounding a body my troubles, thirst and fear were all behind me The setting affects the mood in a very big way, the cyclist feels as the setting looks." 3 2 3 +6255 3 The features of the setting greatly effect he cyclist one way it effects him is because it is so hot and he doesnt here any water left. Also because their are so many almost buildingc and ghost towns this gives him cables haze that he will be able get the water. 1 1 1 +6256 3 Almost all of the cyclists surroundings are old and barren. Hot @CAPS1 like weather. The road is hard to ride on. Flat Road was replaced by short rolling hills. So his ride was a very rough and tiresome one. 1 1 1 +6257 3 The features of the setting affect the cyclist by how much confidence in where hes going and how hes gona get there. Having no water 1 1 1 +6258 3 If the sun had not been so blaring all the road so trecharous. Also the devation often bothers the author because he had to get over the dry and dehydrtion. 1 1 1 +6259 3 "When cycling or doing any outdoor sport, the setting matters greatly. If its cold you need a jacket. Hot you need water. Depending on how secure it could be life or death. It could be realy hilly and you might get tired, and if you have no water you could die. Also it depends if its in a city burbed, small town, desert, highway all these factors play a huge roll in cycling" 3 2 3 +6260 3 "The features of the setting affect the cyclist in @CAPS1 ways. The cyclist was in California in June weather. If it wasnt so hot, he wouldnt have needed water as badly. He wouldnt have been sweating as much. Also, there werent any buildings or cars around, so there wasnt anyone to help him. There was no one in sight, not a building, car, or structures of any kind. @CAPS1 features of the setting could affect the cyclist." 2 1 2 +6261 3 " In the essay, Do Not Exceed Posted Speed Limit, written by Joe Kurmaskie, the features of the setting affect the cyclist. One feature that affects him is that he is cycling through the high deserts of California in June(Kurmaskie). This affect would mean that the author would be dehydrated faster. The cyclist, author, is dehydrated before he can make it to the next town because he gathered up a few pebbles and stuck them in [his] mouth(Kurmaskie)." 1 1 1 +6262 3 "In the essay Do not exceed posted speed limit by Joe Kurmaskie, the surrounding setting affected the cyclist. The setting was somewhere outside Lodi, California in early summer. The cyclist took advice from some old men that led him to difficult places to get out of. As the sun made things better and his water started to deplete getting to Yosemite was much harder. The cyclist was traveling through high deserts of California in June. When the terrain started to change from flat road to rolling hills the cyclist pushed himself even harder to get to his destination. The sun and hot air dehydrated him faster. After traveling over, ""along, crippling hill, the cyclist had to stop and even tried sucking on apebble in an effort to take his mind off thirst. When he found a habited store he was exhausted and relieved. Then features of the setting had a big effect on the cyclist. The weather dehydrated him while the terrain exhausted him. " 3 2 3 +6263 3 "The settings in the essay affected the cyclist mentally and physically The fact that he was riding through the desert in June affected how long his water supply lasted. If he had been riding in the @DATE1 then his water supply wouldve lasted longer and he wouldve had more energy. Since the town the old men had told the cyclist about was abandoned that also affected the cyclist because he had to keep on going even though he was getting weaker. What affected the cyclist most, I think was when he arrived at the bait store. If that had been abandoned like everything else, the cyclist wouldve died. Luckily though it wasnt and he was able to drink water.The factory affected him mentally because the picture of the boy was haunting him in a way due to the fact he was drinking juice something the cyclist couldnt do. All in all, I think the conditions that the cyclist was in affected him. Since Ive fainted from dehydration before I know how it feels to be without water. First you get a head ache; then your mouth dries up and desperation gets in and finally you get dizzy. " 3 3 3 +6264 3 "The setting in Rough Road Ahead: Do Not Exceed Posted Speed Limit @CAPS1 the cyclist's physical and mental state. There are negative and positive effects for each state. The physical effects of the cyclist because of the settings all apparent throughout the story. For example, the cyclist reaches @PERSON2 and @PERSON1s Fish Camp, he is able to hydrate once again. The positive effect makes the cyclist healthy and safe once again. The setting mentally, @CAPS1 the cyclist very substantitially. This can be seen when the cyclist in the comfortable camp around in @LOCATION1. He feels happy in this area. This positive effect prepares the cyclist to go on the trip to Yosemite. Also, when the cyclist reaches the Ramshackle @CAPS2, several rusty pumps, and a corral, he feels troubled. He is negatively affected mentally by the little amount of available water. In addition, the cyclist felt ""sad"" and ""hopeless when cycling in the Dry, arid terrain. The cyclist is in the worst mental state in this place. Finally, the cyclist felt relieved upon seeing the fish camp. He describes the feeling by saying that his trouble are now behind him. Settings positive effect in this instance changes mental state from negative to positive. Setting was the main factor in deciding upon the cyclists physical and mental state. Setting @CAPS1 the cyclists physical and mental state in positive and mental states almost equally in the story." 3 3 3 +6265 3 "He setting made the cyclist feel lonely. The cyclist lost hope quickly because she was never saw any people or water on the way. The cyclist said they saw a ghost town. Before he got to the fish camp the cyclist saw no one and was becoming dehydrated. This caused him to lose hope and at some points he thought he was going to die. For example, he says, ""I was going to die and the birds would pick me clean. It is clear that the setting affected the cyclist in a very negative way." 2 2 2 +6266 3 The features of the setting affect the cyclist because he was in a forest. This was a bumpy trip with a lot of troubles along the way. This was along trip. But he made it tough with a story to tell in the end. 1 1 1 +6267 3 "The setting of the essay, Rough Road Ahead: Do Not Exceed Posted Speed Limit effects the cyclists physical and emotional attitude. In the beginning of the essay the cyclist, rode into the morning with strong legs and a smile on [his] face. It was not too hot yet in the morning. So, the cyclist was happy and strong. He was confident he could conquer anything. As the day grew on the sun was beginning to beat down He was beginning to drink lots of water but he was still confident and strong. I came to a ramshackle shed [and] several rusty pumps the sight was troubling. The cyclist was travelling in the hot deserts of California. He was becoming tired and thirsty. He had to save as much water as possible. What started as a confident ride into the desert became a survival ride. Once the cyclist findswater he is relieved. He feels more confident and can ride to his destination. The weather and setting can affect us emotionally and physically just like in the essay, the cyclist became tired both physically and emotionally as the hot, sunny day went on." 2 3 3 +6268 3 "As the cyclist begins his journey, he is confident & exited to have been offered new directions from some old wise men which promise a shortcut. This water supply is mediocre & attitude willed against the flat and hilly terrain, untill he realizes the directions are way off target. The cyclist was making his way to Yosemite when he came to the first town but it wasn't a town but more of a ghost dwelling. As he continued hoping the shortcut offered by the old codgens would actually materialize, he realized he was utterly alone in the hot desert wt a depleting water supply & dwindling spirit. He was disturbed that he had chosen to follow the advice from the older men and through his his pain & dispair, encouraged himself by deciding he would never listen to their type again. The cyclist felt skrewed over, yet through his will & determination, by rationing water & mentally choosing to cycle for each hill one at a time, he endured his physicall, emotional & mental trials and lived to learn the valuable lesson of never consulting old codgers on mapping issues, because their information would most likely be out datted." 3 3 3 +6269 3 The whys the setting affected the cyclist is that the hotter it was the more water that he drank. Also the further he travled the more tired he got which caused him to get hotter and which caused him to drink more of his water. 1 1 1 +6270 3 The features of the setting affected the cyclist greatly in his determined ride. At first he seemed at case talking about the cool pines and rushing rivers he was going to encounter once getting to Yosemite. After a strenuous ride he started to get nervous and wonder if he was even going to survive. He was running out of water and he thought be a diamondback. Once he reached the rolling hills he saw a posted speed limit sign saying not to exceed the speed limit of 55 m.p.h. He was doing a ''water depleting 12 m.p.h. wonder how he was going to survive. At the end of the rolling hills he came to an old Welchs grape factory wondering his life was so cruel. After that he was determined to survive and make it to his destination. He picked out spoke on horizon and rode to them makes his way across the desert. The finally made it to Only and wilbers fish camp where he know he was safe and would survive. 2 3 3 +6271 3 "The hot, dry, and baron setting affect the cyclist greatly. Baron is a hot, dry and abanded place. The cyclist is trying to ride his bike to Yosemite national park. He decides to follow the directions of coaple old men, which was a mistake.Simply because I listened to some gentlemen who hadnt been off their porch in decades,(Kurmaskie). The hot and dry conditions made the cyclists hardest obstacle to be staying hydrated." 2 2 2 +6272 3 "The features of the setting effected the cyclist in many ways. One way was because of the @CAPS1 @CAPS2. With the cyclist having limited amount of water effected him to. The cyclist listened to the old men so therefour he traveled a good distance. So that made matters bad. With having lack of water with such distance to go the cyclist stuck pebbles in his mouth hoping to forget about his thirst. The cyclist thought of him dying and the birds picking him clean, because he thought he would die because dehydration. The conditions of the road made it harder, First he started with nothing but straight roads then ended up going up and down hill. In conclusion, the cyclist hit many obstacles that made his trip harder then what he thought." 2 2 2 +6273 3 "The features of setting affects the cyclist because the setting then you wont had, lots on hills. Also there was no water. For example, in the story He says in was were hilly area. Also he says that there are no buliding he is all by him self which @MONTH1 make him scared. So the setting affects the cyclist by being a very hot dry cimate with no water and no builiding; and no peole to ask for direcions would make him scared and lost and fearful of what is going to happen to him." 1 1 1 +6274 3 "During the cyclist journey he was faced with many ?? ??. Mostly the driver ?? and out of water. In the essay it says how he arrived at the first town and was in search for water. It said ""This place might have been a thriving little spot at one time-say, before the last world war."" This affected the cyclist because he was running out water. Another feature of the setting that affected the cyclist was the heatstrokes, and not a single car or building the whole way. " 1 1 1 +6275 3 The feature of the setting affected the cyclist because of the bad conditions of the road and the not sun and the desserts and the low amount of energy supply he had left the reasons why 1 1 1 +6276 3 "As if along bike ride through the city isnt grueling enough, the author of this story had it much worse. First the climate was a recipe for a disaster. High deserts of California in June. @CAPS1 is clearly a debilitating factor as is direct sunlight and humidity. If the cyclist did not have the proper gean he could be hurt by all three of these factors. Secondly, Flat road was replaced by short, rolling hills. @CAPS2 his endurance is being tested because it is going for tolerance energy and will power to climb each individual hill. Most importantly, with his lack of water in his bottles, all of these characteristics were harmful. Within a desert, water is to be found nowhere. In hot weather, the water bottles will turn warm and in sunlight, water could even evaporate. To me, it seems like the setting and the weather were the perfect combination for doing much more harm than good." 3 2 3 +6277 3 The features that affect the cyclist is the lack of water he slows. Another is the directions from the old men that probably arent up to date nowadays. 1 1 1 +6278 3 "The setting explains an early summer evening with some eccentric men. The mood that he would be in would probably be lively. Like a foolish youth, the next morning I followed their advice (Kurmaskie) says that if you were very lively, I would take that as a way of being drunk without being drunk, and doing whatever someone thinks you should do without knowing you are being persuaded to do it." 1 1 1 +6279 3 "The setting causes difficult problems for the cyclist and tough hazards. The weather is hot and just going through hot weather is tough enough, but giving through a desert with limited water had to be miserable. The warmth of the desert had an affect on the cyclist and caused him to be fatigue. This delayed him from getting to his destination quicker as well. Not only did he have to through tough weather but hazardous condition too. There were times when tumbleweeds crossed my path and a ridiculously large snake. This delayed him and took time to cycle around. As you can see this was a difficult journey for the reader and the affected the cyclist." 2 2 2 +6280 3 "The features surrounding the cyclist effect him greatly. All he has around him are hills, rough terraine, sand + tumble weeds. These features leave him thinking he will die because there is no life around him. Everything is dry + vivid + thats how it makes him feel. The old, rusty water pump shows that it hasnt been used in ages + the black tar pumped out is no help to his negative thought of life." 3 3 3 +6281 3 "The features of the setting affect the cyclist in many ways. Ranging from temperature, surroundings, and the availability of water. First of all, the cyclist felt tired and exhausted because of the temperature and terrain, For example, I was traveling through the high deserts of California in June. I can imagine the cruelty of the heat beating down on him while riding down the roads. It would make me tired and exhausted also. Second of all, the surroundings as he rode affected him and made him have less confidence as he rode further. For example, This place might have been a thriving little spetatore time say, before the last world war-last on that morning it fit the traditional definition of a ghost town. It shows how the information he had been giving caused him to feel unsure of where he was going. Id feel uncapable and would do the same in his situation. Lastly, the lack of water made him scared. For example, conserve my water and go instead for an hour or so a lest of my inner spirit. It made him think the situation wasnt good. So as one can see, it affected the cyclist in many ways." 1 1 1 +6282 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit the author uses features of the setting to show the effects of the cyclist. In the essay the rider gets directions from two old men on a perch. In the essay it said, Never accept braid advice from a collection of old- timers who havent let be able centres of their porch since carter was in office. This shows the old man could be wrong and places can change. Also, on this short cut he almost runs out of water. The essay ststed I would conserve my water and go inward for an hour or se a test of my inner spirit. He is running out of water but has the determination to get to @CAPS1 last the terrain affects him. The Hills prove to be a challenge with a limited supply of water. The essay states. Flat roads were upleed by sheed, rolling hills. This shows he is extremely determined. Even though the hills added to the struggle he made it through. That is how the author used features of the setting to add to the struggle of the cyclist." 3 3 3 +6283 3 The features of the setting affected the cyclist because they figured that they were old enough and seen what was going on and been through that situation that they were well experienced and knew more about what was going on so the people should listen to them. 1 1 1 +6284 3 "After the cyclist spoke to the old timers who hadnt left the confines of their porches since Carter was in office, his confidence in them began to ware. He entered the desert happy, hopeful and determined. As his water reservoir began to disappear, and he approached the sight of the old shed, canal and a couple water pump, he began to feel touched. He made an attempt to get the water from the pumps and it was hot and tested like battery acid. As he rode on, his confidence only faded more. He travelled through the desert and ridiculously large snake and was running low on water. Finally he saw a building in the distance, which ironically enlights was an abandoned juice factory a sign featuring a left sipping on some succulent icy liquid teased ruin, and he began to lose hope. He didnt think he would make it to his destination or anywhere else for that matter. Although after approaching the old factory, he came across a bait shop where his hope and energy was founded." 3 3 3 +6285 3 "The features of the setting affets the cyclist in afew ways. For example, the features of the Rough Road didnt allow him to arive as fast so was drive @NUM1 on a @NUM2 speed limit. Second the fact that he was drivuing through a desert a large snake made its way on the Road, causing the man to have to ""ease past, trying to keep my balance in my dehidrated state. @CAPS1 again because he was driving through the desert,hegot so hot & started to get dehydrated of lack of water. Lastly the features that there werent any buildings far miles so he was left lost and didnt have anywhere to stop & ask for directions. These few features defenitly affected the cyclist." 2 2 2 +6286 3 "There were many features of the setting that affect he cyclist to make his difficut journey to Yosemite. First, it was the old timers at the reservoir campground. They might have been old, but not very wise. For example, I followed their advice and launched out at first line, nd along a short cut that was toslice away hours from my ride to Yosemite National Park. This is describing how the cyclist takes the short cut from the old timers which almost gets him killed @CAPS1, the sun had a warming affect on the cyclist causing him to dehydrate. For example, I had been hitting my water bottles pretty regularlyand I was traveling through the high deserts of California in June. This is showing you an image of just how hot the climate he is in. Finally, a lack of water can cause major problems, such as heatstroke or dehydration, yoth which can lead to death. For example I could drop from heatstroke on a gorgeous day in June This is stating without enough water to keep him cool he felt as if he were going to die. " 2 3 3 +6287 3 "In the story Do Not Exceed Posted Speed Limit, the setting often affects the character. One example of this is when the character got to a place where there was nothing. One ramshackle shed, several rusty pumps, and a corral that couldnt hold in the lamest mule greeted me. This quote explains that the character (cyclist) was confused. Another example of this harsh setting is when the water in his bottle feels @NUM1 degrees. I was traveling through the high deserts of California in June. That quote suggests that it is hot outside, which would make the water hot. Another example of the setting is when the terrain changed. ""@CAPS1 road was replaced by short, rolling hills."" This made the biker have to work harder, and use more energy. These conditions all made the cyclist have to work harder to find his destination." 3 2 3 +6288 3 "The setting in Rough Road Ahead: Do not exceed posted speed limit, affected the cyclist greatly. For starters it says he was traveling through the high desserts which is never a safe thing. He had been drinking he water regularly but the temperature was rising. He was, trying to keep balance in my dehydrated state. From lack of water because the terrain had altered his water into A far like substance The setting of the story was cruel to the cyclist." 2 2 2 +6289 3 "The conditions and features affect everything about the cyclist. The conditions were that, he had to save as much water as possible and keep himself hydrated at the same time so that he wouldnt dehydrate himself.The features of the desert like land were fierce. It was dry and bumpy, not to mention that there were creatures such as snakes on the prowl out there. You can never predict what theyll do." 2 1 2 +6290 3 The features of the setting in the story affect the cyclist in many ways. For example when he arrived to the first town the water had tasted like battery acid which made the rider concerve water another is with the harsh conditions such as the temperature. The ride would listen to the old people to try to get to the place he was going faster. 1 1 1 +6291 3 "The features of the setting affect the cyclist greatly. One feature would be the dryness of the land. He was pedaling for such a long time that he became dehydrated, yet there was not a drop of water for he did not know how long and he didnt think he could make it that far. Another feature of the setting was the heat. He felt like he could not go on because the heat from the sun made him want to have a heat stroke. Clearly, the features of the setting did greatly impact the cyclist." 2 2 2 +6292 3 "During the cyclists trip, he experienced physical and mental strain. The intense heat, rough terrain, the animals and his isolation all contributed to his strain while completing his challenging task. His isolation while cycling down the shortcut was a definite factor in his strain. @PERSON1 stated that, there was no one in sight, not a building, car, or structure of any kind. All @PERSON1 had to focus on was accomplishing his task. There wasnt anybody nearby to help him and there wasnt any shelter for him to take to escape the heat. The heat itself played a very predominant factor in Kurmaskies physical strain. The heat caused him to become dangerously thirsty and required him to find an abundance of water fast. Kurmaskie stated, the growing realization that I could drop from heatstroke This statement proves that the intense temperature was a life threatening factor. The rough terrain and snake and two factors in his trip that just helped make his journey even more cruel. The physical strain of avoiding a snake in the middle of the road and the dangerous terrain just put him in a more grading position. " 3 2 3 +6293 3 "In Joe Kurmaskies, Do Not Exceed Posted Speed Limit, the features of the setting affect the cyclist in a bad way. First of all, the cyclist is dehydrated from the heat and lack of water. I eased past, trying to keep my balance in my dehydrated state. ""This sentence from the text stores he is dehydrated, because of this it creates an obstacle he must face. Also, another bad affect from the features of the setting the cyclist is facing is, the rough road ahead he had to face. ROUGH ROAD AHEAD: DO NOT EXcEED POSTED SPEED LIMIT. If I were the cyclist gazing at the sign I would die just knowing there was trouble up ahead. Luckily the cyclist made his way through and managed his obstacles well." 2 1 2 +6294 3 "There are many features in the setting that will affect the cyclists. One feature is the climate. When you are cycling and it is really hot you can dehydrate very fast. If it is really cold it is harder to breath and catch your breath. Another feature in the setting that can affect a cyclist is the terrain. If there are too many hills that are really steep than you will get very tired quickly and when it is rocky you have a posablity to fall off the bike and hurt yourself. Last feature in the setting that will affect a cyclist is how isolated the road is. If a cyclist runs out of water and there are no places to stop on the road, this could be almost deadly to a cyclist. Also if the road is so isolated and you get hurt who would find you. This is another deadly situation. These are the main features in the setting that can affect the cyclist." 1 1 1 +6295 3 "The features at the setting affected the cyclist by dehydrating him. The setting had a hot sun, no trees, and no water. The cyclist was also feeling lesy. In the story he said I and the growing ??? :??? That I could drop from heat stroke." 1 2 2 +6296 3 "The setting was hot and dry, which affected the cyclist greatly. She didnt have enough space to carry a lot of water and rod to make portrons to drink. Also listening to old guys who didnt know much didnt help either and sent her on a much harder path to travel" 0 0 0 +6297 3 "The features of the setting affected the cyclist in a few ways. The first was the cool forested road that he set out on. Since the rote not easy, he felt confident and started end in the wrong direction. Another factor was when he rode into the desert. The cyclist was becoming dehydrated and whats little water he could find tasted like battery acid. These factors affected the cyclist by giving him false hope and nearly lead him to his death." 1 1 1 +6298 3 The way the setting of the story help the guy out alot. He was riding and it was hot but with cool pines and risum river it was worth the ride. It keep him cool so he could get his weter in the nex town. That is why I think that the pin and river were a big help. 1 1 1 +6299 3 "Whether the lack of water, the hills, the tumble weeds all are things that affect the cyclist. The lack of water affects the cyclist because it is hot outside and he needs water. The hills also affect him because it is hard to peddle up hills. Finally is the tumbleweeds. The tumble weeds show a distinct desert look. When he sees tumble weeds he trys to keep balance because he is partially dehydrated and doesnt want to crash. The dehydration / lack of water affect the author because he is very thirsty and everyone needs water to survive. When you are lack of water and energy it makes your goal more hard to complete. " 2 2 2 +6300 3 "In Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the features of the setting affect the cyclist by gradually wearing him out and pushing his limits of hope and survival skills. At first, the cyclist enters a deserted town but he remains calm and amused by this in the sentence, I chuckled, check my water supply, and moved @NUM1). Soon after, the cyclist is troubled by a ramshackle shed, several rusty pumps, through the high deserts of California in June (@NUM2). He is agitated by this, makes a significant dent in his water supply, and unfortunately continues. At the point where he is still isolated and lost beyond repair, the cyclist tries to stay hopeful but soon breaksdown. He reflects, Telling myself that of I could make it that far, Id be @NUM3). The features of the setting become more and more disappointed at each leg of the journey for the cyclist." 3 3 3 +6301 3 "In the beginning of the cyclists journey, he is very happy and carefree. The cyclist comes to the first deserted town the setting isnt described because the cyclist is not worried yet. After leaving the first town the cyclist barely noticed the heat because, the cool pines and rushing rivers of Yosemite had my name written all over them. The cyclist still has high spirits. The cyclist begins to get thirsty when he comes upon a water pump. He attempts to get water but the pump isnt in working condition. Until this point in the story to road has been mostly flat and straight. Then the cyclist notices that the road has some hills in it. At this point the cyclist has no water and is very dehydrated. After one hill the cyclist sees a building. The building is an abandoned grape juice factory, which is ironic considering the state the cyclist is in. The cyclist sucks on rocks as a last resort and gives up hope of living , when he comes upon a fish camp. He gets water from the bathroom and all is well. The setting in this story affects the cyclist because as the setting changes, so do the cyclist moods and feelings about survival and the danger he is in." 3 3 3 +6302 3 "The feature of the setting affect the cyclist in many ways. When in the essay it states, The sun was beginning to beat down This shows that this affects how he feels when he is cycling through the road and this can affect his ability to keep cycling while the sun ??? him hard. Also when he states I was doing a water-depleting 12 mph, this shows he was also dehydrated once goin, very slow because of the ammount of heat and lack of water that affected his ability to keep cycling in the area." 2 2 2 +6303 3 "I believe the cyclist is a alone, and I think the old man should have shot him. I believe a bike ride that long is a little retarded. I feel that no matter how great or horrible the shape your in you should even go on a realling long rider on a bicycle." 1 1 1 +6304 3 The setting affected the cyclist in a big way during his journey. The temperature being so hot tired the cyclist and made him thirsty. Also the hills being so high to ride up made it hard to continue. Since he was in the desert there were not many towns to go to. All these factors affected the cyclist on his journey. 1 1 1 +6305 3 "The setting it the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit in three ways. One way is that it is very baren so there is no shade to stop the sun that is beating down the the cyclist body which adds to his dehydration and lack of to focus. Another way the setting affects the cyclist is the terrain the rolling hills, and desert he bikes through the hills make him work harder using up more energy and exsusaing his ater supply the desert also with it enemies heat make his not trust himself thinks there mirages he sees. The last way it affects him is the ghost towns when he sees them he get a hope of relief that he might get water and out the heat but when he passes in he finds nothing and leaves him chrested and think of death." 3 2 3 +6306 3 "The features of the setting affect the cyclist because, it is hot, and dry in the California desert when you are on a bicycle, hot and dry with bad directions, and in a desert is bad. It was a long distance ride, in the burning hot sun, with little water, and he thought he was going to die because there was nothing insight. " 1 1 1 +6307 3 "The features of the setting affect the cyclist in more ways than one. For example in the short story ""Do Not Exceed Posted Speed Limit,"" the cyclist had to endure going over big dirk hills while being dehydrated and tired from biking miles and miles to get to a destination. The setting can sometimes even cause you to lose hope and give up. The cyclist in the short story; started to lose hope until he found a store that sold fishing bait. The setting controls how long it takes you to getts your destination and how you get there. For example, if you come across a dirt road and theres a big boulder in the way, you have to find another way to get there. In conclusion, the features of the setting affect the cyclist in many ways." 2 2 2 +6308 3 "The setting effects the cyclist because he is in the California desert in June without water. He is also cycling up and down curry, hilly back roads. The cyclist eventually starts to lose water and his determination is tested as he struggles to get to the next town. He says wide rings of dried sweet circled my shirt, and the growing realization that I could drop from heatstroke on a gorgeous day in June simply because I listened to some old gentlemen who hadnt been off their porch in decades. Caused me to lough. The author is showing how the circumstances he is in are taking a toll on him. He also states a road sign Rough Road ahead: Do not exceed posted speed limit. This is ironic because he is already exhausted and now he is about to encounter a treachorous stretch of road. I have never cycled for long periods of time and can hardly imagine being pushed to such a state of exhaustion. I can relate it to a time I was played @NUM1 soccer games during the summer heat. It was painful and everytime I received the ball it took all I had to tack it." 3 3 3 +6309 3 In the story the features of the setting effect him because he was running out of water. He also had to manuver around a snake. It made him tired and dehydratied. His muscles got sore from the rough terrain. He got dehydratied from the sun. 1 1 1 +6310 3 "The features of the setting affect the cyclist in many ways because its almost like the background and theme of the cyclist The features used in this story are mostly about the background in which he is going and the sites of where he is. Hes showing the reader of how much he needs somewhere to go and also now much hes indespair at the time. When he says It was sad, hopeless laugh, mind you, but atleast I still had the energy to feel sorry for myself. In this quote he is saying that he @MONTH1 be tired and physically not be in his best shape but atleast he knows hes not in a good shape and he knows hes in trouble, but he can still laugh it off and aware but he keeps trying anyways. This text in my opinion is showing many different ideas such as hope, awareness, and ability and courage to realize you need help but go on anyways to prove to yourself you can finish what you wanted and planned to do." 2 3 3 +6311 3 "The features of the setting effect the cyclist because it is a dessert. The dessert is very hot. I know this because in the story, he states that it feels around @NUM1 degrees. He struggled for water but couldnt find any that was cool. He found a water pump that had ""a tar like substance oozed out, followed by blackish water feeling somewhere in the neighborhood of two hundred degrees. This means it was hot and couldnt find water." 2 2 2 +6312 3 Many hazards and rigorous features affect the cyclist. He starts off his journey with the advice of a short cut from old men. The cyclist is very excited about the thought of a short cut and is drinking his water effectliy. Soon he begins to run lost and the sun begins to beat down on him. He take pressure in thinking about the cool stress of @CAPS1 and is then not bothered by the sun even the imaginary setting of fictious stream had an effect on the cyclist. Soon the sun starts to beat on him even more. The cyclist starts to run out of water and he makes sure the vivid he comes across is not a mirage. When he come over the bend he cave to his troubles road and thirst 1 2 2 +6313 3 "The features of the setting affect the cyclist in many ways. The cyclist persevered through the rough terrain which caused him to become weak. For example, the author states looked the majority of the pavement in front of me and ceased past tilling to keep my balance in my dehydrated state. This shows the author is dehydrated because it is so hot and he kept going even with a physical obstacle. Another thing that affected the author was that he felt like giving up because the terrain was too harsh. For instance in the text, it didnt really matter I was going to die and the birds will pick me cleary waveng only some experience outdoor gears. This shows that the author still had to go even when time get tough. The text shows how exhausted he is by the winds eating at him when he dies. He would dehydrate to the humidity of the desert and heat. In other words, the features of the setting affected the cyclist in many ways." 3 2 3 +6314 3 The features of the setting affect cyclist because if you are going down hil and then hit a rough road you not going to do so good. Like for example he had been going on flat land then it changed to hills lastly into rough road. These conditions could seriously hurt someone. 1 1 1 +6315 3 The features of the setting affect the cyclist in a couple different ways. When the cyclist found the gohst town since no one was there he could not ask someone for better directions or get some food or water. The short rolling hills make it harder to pedal because it is hard to pedal uphill. At the end of the story he found a bait shop where he got water and better direction's. 1 2 2 +6316 3 "The features of the setting affects the setting by all the big hills, and all the roughness of the roads. As the essay says ''flatroad was replaced by short, rolling hills. After I crested the first few of these a large highway sigh jumped out at me, prety much what it is saying is the flat road soon turned into rolling hills. If I was the cyclist riding up the hills my legs would get very tired and sore after a while one example, is when my friend ,@PERSON1, and I went bike riding, we went to @CAPS1 @CAPS2, in fechmisburg, and we had to ride up a big hill, so after a few pedals our legs started hurting, so we decided to just walk go the hill." 1 1 1 +6317 3 "There are many ways in which the setting of Rough Road ahead affects the cyclist. First of all, he is bicycling through the desert. This poses a problem because it is very dry and hot. At one point in the story, the author writes that he was trying to keep my balance in my dehydrated state. It is obvious here that lack of water is affecting his in a big way. He almost collapsed because he is so thirsty. Another part of the setting that affects the cyclist is that he is in a very remote area. He says that there was no one in sight, not a building, car, or structure of any kind. Since there was rolling now, the cyclist had to keep cycling and drinking his water until he could find a place to stop. Lastly, the rough road affected the cyclist. The road made traveling even harder to do and caused the cyclist to have a very rough time. If I had to bicycle for a long period of time, I would much rather have a smooth road so I could renew my energy. The heat, remotness of the area, and the rough road all affected the cyclist on his journey. " 2 1 2 +6318 3 The features of the setting affect the cyclist greatly in the story. The list desert climate tales damage onto the cyclist by quickly depleting his water supply. He also began to get worried when every town the old men told about turned out to be a ghost town. This crawled doubt in the cyclist mind that he might not survive the shortcut told off by the old men. 1 1 1 +6319 3 The features in the setting effects the cyclist because there it different kinds of hills. He has watch out for rocks in the middle of the road. He has to make sure he has a lot of water because it looks like he is in the desert. There is no cars around but he still has to look for any cars in case they came out of nowhere. There is a lot of turns. It is very hot so he has to make sure he does not have a neat scaoke. There is no places where he can stop because there is no shade. There is no stores where he can stop & get water and food at either. That is the setting of the cyclist. 1 1 1 +6320 3 "@CAPS1 the story the condition of problem often effected the mood of the cyclist . For example when the sign said ,” Rough road ahead: Do not exceed posted speed limit.” @CAPS1 this time he saw a snake he was scared so he eased past trying to keep balance while he was dehydrated . The dry and hot climate began to become problem for the cyclist." 1 1 1 +6321 3 "The features of the setting affect the cyclist in many ways. For example he could have tried if he drunk the battery taste water. or if he didnt get enough clean water on time. Driving a bike on in a long distance, with no water or any other supples is very energy consuming. So you have to plan trips like that very wisly. " 1 1 1 +6322 3 "In the story, the setting greatly affects the cyclist. The cyclist, pedaling through California, is obviously very hot in the beautiful @DATE1. He also runs out of water, which nearly dooms him. But thats not the worst of it. The hills make him run out of water and energy even quicker. There are also no places to stop for water. The cyclist is lucky he survived the rugged terrain of California." 2 2 2 +6323 3 The features of the setting afect the cyclist in many ways. If he wasnt in High deserts of California in June he probaly wouldnt be dehydrated if he was in @DATE1 it wouldnt be so hot out. Also if there werent short rolling hills he would have had more energy. As you can see setting affects the cyclist a lot. 1 1 1 +6324 3 There were many features that affect the cyclist. Lack of water slowed him down. Also the hills and sun were a big problem. 1 1 1 +6325 3 "In the story Do Not Exceed Posted Speed limit, the featurs of the setting had a great deal to do with the cyclist. The rodes were bumpy, windy, and many hills. As the effect of that the cyclist had to drink a lot of water. As the cyclist rode into the so called town he found nothing, as he says I began to pump the old rusted water pump, but nothing came out except nasty blackish water.""" 2 2 2 +6326 3 "The way the features of the setting effect the cyclist in what was, going through hot neighborhoods and very road that made her dehydrated and effected her journey including the long cycling which he had to go up." 1 1 1 +6327 3 "In the story, the cyclist starts out with a lot of confidence that he can complete the whole ride. But after he left first town he had been riding and needed water, so he stoped at a fork in the road he had just to;to get water from a pump which tastes like battery acid. Then as he progressed further in his trip he came to a sign that said Rough Road Ahead: Do not exceed speed limit(Joe Kurmaskie pg @NUM1) This part of his trip made it very challenging by making him face rough roads and mountains that he had to cross which sucked the water out of him. Then as he came over the last mountain, he saw a sign for a gart store. So when he arrived he got some water and got directions for a man who had the best map. So you can see that going over an the mountains, sucks all the water out of the cyclist, so he was so relieved when he got the water at the end." 2 2 2 +6328 3 "The features of the setting in the essay entitled Do Not Exceed Posted Speed Limit affect the cyclist in an tagonizing manner. He is dehydrated and exhausted due to the conditions of the environment he was in. the cyclist became dehydrated because of not only a lack of water, but also the scorching heat of the desert. He sweat to much to the point that he lost an enormous amount of bodily fluids. The cyclist also was traveling on unpaved road which required more energy than traveling on one that is paved. Therefore the cyclist became so exausted that he almost died. These are the ways the environment the cyclist was in affected him." 2 2 2 +6329 3 "The features of the setting affect the cyclist in ways of feeling doubtful, confidence, determination and relief. For example he feels doubtful when he has hardly any water and has no clue where he is or where he is going to end up. He first felt confident when the old people on the porch told him how to go and then at the end when he says he will listen to his map next time. He was also was determined because he wanted to get to the next town which he does, that also makes him relived, and wants to get to Yosemite National Park. That is how the setting affects the cyclist." 2 2 2 +6330 3 "The features of the setting in which the cyclist is in change his outlook on the trip. When he first begins his trip, the road is fine, so he becomes confident. When the terrain began to change, he writes, sometimes life can feel so cruel, he grows despairing as he faces new terrain with so little water. When he begins to see a building, he becomes hopeful and determined. However, when he realizes its old juice factory, he grows bitter. When he leaves the factory, he feels ??? all hope. The comparison can be shown when he writes, somehow i climbed away from the abandoned factory of of juice and dreams, slowly gaining elevation while losing hope."" @CAPS1 the end, when he is revived with water he almost looks back on the journey comically. The rider knows that his out look drastically changed depending on setting through his journey" 3 3 3 +6331 3 "The features of california and the fact that the cyclist was neave Yosemite made the terrain rugged and dangerous to the cyclist california has a very hot climate, and is neove a desert, so the need for water for the cyclist was much greater man if the had been cyclist in @LOCATION1. In the story, the cyclist had to travel through desert-like conditions with a limited water supply. The cyclist even mentioned in the story how many hours into the ride the land changed to short, rolling hills, which would have made it harder to pedal, and making him work harder, in the story, he also mention how the sun was beating down on him, and that would alos serve as a factor thout helped deplete his hydration. Through all of the problem the cyclist faced nowever, he managed to stay determined, when other people faced with his problems might not have been able to make it through. Also, in the story you @MONTH1 notices that in the different stages of his struggle, the authours tone ananger from confidient , to unsure, to desser" 3 3 3 +6332 3 The features of the setting affect the cyclist in many ways. It made him tired thirsty and he was near exaustion. 3 2 3 +6333 3 "The cyclist in the essay Do Not Exceed Posted Speed Limit took the advice of older gentlemen who offered him a shortcut they knew to get to @CAPS1 national park. However, the land had changed long ago after these men were last here. The fist town he came upon was a realistic version of a ghost town. He laughed at how long ago those men must have been here. Long hours on the hot road and with dipleted water, @CAPS2 sank in. He lost almost all hope when he reached an old and destroyed grape juice factory. He had made it to a bait store for water at last. He would never take the advice of anyone but his map again." 2 3 3 +6334 3 "The features of the setting affects the cyclist by letting the author have hope . When he came across a sign which read ""Rough Road Ahead: Do Not Exceed Posted Speed Limit, his hope was faint because he was doing a water-depleting @NUM1 per hour. Because of the rate of the water, he felt life was cruel sometimes and he thought that he was at the point of losing water. Also when he came across the tumbleweeds and the large snake he tried to avoid them. If he would have been bitten he would have died. Finally because of the heat he might have also did from the heatsroke ""wide signs of dried"" " 2 2 2 +6335 3 "In the story Do Not Exceed Posted Speed Limitmany features of the setting challenge the cyclists.The cyclist accepts information from foreign old people which made his first mistake.After realizing this he,I had been hitting my water bottles pretty regularly,and i was traveling through the high deserts of California,in Junethe lack of water plus the heat in California,in june would have turned to heatstroke for most people.Even further into the journey,even with all those things against him it states,flat rode was replaced by short,rolling hills,""@CAPS1 not only did he have excessive heat,and no water,but @CAPS1 he was handed troublesome rodes too.Although the cyclist must have been near to complete exhaustion,he continued through.Fighting all adds,and elements,many features in the setting of this story affected the cyclist,but he overcame them honorably." 3 2 3 +6336 3 "The dry desert like setting would affect the cyclist because he could easily become dehydrated from the sun, and loss of water through sweat. The cyclist states, I eased past, trying to keep my balance in my dehydrated state (Rough Road Ahead). The man is badly dehydrated, but in his determination he moves on. The terrain went from being flat, to short rolling hills. The road had been abandoned along with the town he had passed through, hoping to get water. The man goes can to say, I toiled on, at some point, tumbleweeds crossed my path and a ridiculously large snake- it really did look like a diamond back- blocked the majority of the pavement in front of me ""(Rough Road Ahead). The setting is obviosly desert like, so it is dry, hot, and dusty. This would definately have an affect on his body which is sweating, which causes dehydration due to water loss. In conclusion the cyclist was greately affected by the setting." 3 2 3 +6337 3 "The features of the setting effected the cyclist quite durastrely. First of all, he was traveling through the high deserts of California in June. He was running out of water and the pump he found only produced. brakish water feeling somewhere in the neighborhood of two hundred degrees. and had the flavor of battery acid. Then he came upon rolling hills and Rough @CAPS1. By the end, he was exausted, dehidrated, and in desperate need of water. The turain made the story more meaning full in proving that you souldnt get directions from old guys. " 2 2 2 +6338 3 "In the essay, ""Rough Road Ahead: Do Not Exceed Posted Speed Limit,"" the cyclist encountered several problems. The main conflict of the cyclist in this text is the lack of water. Cycling is a vigorous exercise and can take much strength out of a rider. Water is neccesary to make sure the cyclist stays hydrated. In the text, the old men had the cyclist take a detour through desert areas and hilly terains. Because of the hot weather and rough roads the cyclist became dehydrated faster than normal. For example, the text says, ""The water bottles contained only a few tentalizing sips, wide rings of dried sweat circled my shirt, and the growing realization that i could drop from heatsroke on a gorgeouse day in June."" @CAPS1, by usings vocubulary such as ""tentalizing"" expresses the cyclist need for water. Furthermore, later in the sentence the narrator make a reference to the old men, giving the blame entirely to them for them suggesting the path. Readers can also can conclude that the harsh setting of the essay greatly affected the cyclist" 2 2 2 +6339 3 "The features of the setting affect the cyclist by making his travel a lot harder. The weather was very hot making him very thirsty and due to the towns being abandoned, he could not stock up on water. The terrain that he had to cross had many hills and the road was not in good condition. With the heat, lack of water, ghost towns, and tough terrains, made his journey a very hard achievement to overcome. With all these obstacles in his way, he was able to achieve his goal of getting water." 2 2 2 +6340 3 "The story Rough Road ahead: Do not exceed Posted Speed limit"" by Joe Kurmaskie was about a man traveling through some pretty difficult settings. The cyclists mood was detirmined by the setting as well as his needs and his detirmination to make it. The setting of the story early summer in California. The weather is described as hot as, ""The sun [began] to beat down."" He, ""was traveling through the high deserts of @CAPS1 can June."" Because of the excessive heat, he needed more water, which shortly became the conflict of this story. As things got more difficult his attitude towards the old mens advice changed from gracious for their help to wishing he had never listened to them. Also as the difficulty increased his detirmination to move on also increased by, ""telling [himself] if [he] could make it that far, [hed] be fine."" @CAPS2 for the cyclist, the settings affect was negitive. " 3 2 3 +6341 3 "In the story Do Not Exceed Posted Speed Limit. Their are many features that affected the cyclist. For example, The sun was beginning to beat down. they were starting to get hot, than tired. Than when he came to all the bumps in the road, It was harder to pedal. He was also drinking his bottle of water hard. So that means he's hot getting tired and lost I got down on my hands and knees working the handle of the rusted water pump with all my strength That is telling us hes working too hard, than hell be worn out to ride. Those are reason's why features affected the cyclist. " 2 2 2 +6342 3 "First, the old men affect the cyclist by throwing him off track. They do this by telling him of a shortcut that will take him right to his destination. Then the cyclist was faced with rough rolling hills of a highway. Over his long journey the cyclist still remained determined to reach his destination." 1 1 1 +6343 3 "The features of the setting affects the cyclist in many ways. If the cyclist was riding his bike in @LOCATION1 in he middle of June he wouldnt of gotten so dehydrated. This biker is riding in the high deserts of California that reach to @NUM1 degrees. In the middle of @DATE2 in @CAPS1.A it bearly reaches @NUM2 degrees. Also the desert is know to have nothing. If he was riding somewhere else every mile there could be a gas station. Although this cyclist is riding in No @CAPS2s @CAPS3. Lastly the roads in the desert are a lot more dangerous, since people never really drive through, no one really comblains regularly about pot holes and stuff. They are more worried about the cities were many people travel, there is no point to change or fill pot holes where no one really travels." 1 1 1 +6344 3 "The setting really takes determination away from the cyclist. The were hills that made his ride difficult. It says, over one long cripping hill, a bulding came into view. This shows the hills were hard on him because he says they were long and crippling. Another thing in the setting was the building. He was extremely thirsty and becomes he to an abandoned grape juice factory it said, ''by the looks of a had beth a @CAPS1 Grape Juice Factory and bottling plant. These were two of several examples of the setting affecting the cyclist." 2 2 2 +6345 3 "The features of the setting have a major affect on the cyclist. It is a very hot day and he is in a desert in California with a limited water supply. It starts becoming very hot, and his water supply begins to decrease quickly. The old men who he says have not left their porch since @PERSON1 was in office gave him very wrong directions to Yosemite and he ended up getting lost out in a hot California desert. He eventually came to a fishing store where he refreshed with alot o f water from the sink, and then was off again on his way to Yosemite." 2 2 2 +6346 3 "The features of the setting affect the cyclists in a big way because roads had bottles in then that could have caused him to get really hurt. Also, the water he was drinking was streaming and tasted like battery acid. Then came some rolling hills which would be another big challenge for him. The setting was pretty baron for the cyclist because he also come across a snake. Last, he thought he saw some mirages that tells me that the climate is extreme for the cyclists. Thats how the setting affects the cyclists." 1 2 2 +6347 3 "The features of the setting affect the cyclist for a few reasons. One reason is that it makes it easier to picture how the cyclist feels. Also it makes the cyclist seem a bit insane for doing what hes doing in weather that he could, drop from heatstroke. @CAPS1 reason is that the weather is affecting the cyclist so bad that hes seeing a mirage of a building-abandoned years ealier. The features of the setting affect the cyclist because the conditions seem impossible to make it in." 2 3 3 +6348 3 "Throughout the story, the cyclist describes the hot weather and harsh tarrens of the midwest in his quest to find a source of water. He notes several times about the nice @DATE1, which ear him, quickly warms into sweltering heat as he pedals along. He also goes into detail about the change from flat ground to rolling hills on his journey. Behind these aspects make the use frol final much inorder for the cyclist and gives the reader image as what he is going through." 1 1 1 +6349 3 "In the article Do not exceed the posted speed limit, the features of the setting took toll on the cyclist in many ways. First off the whole Setting was a dry, dusty not desert that would chair anybody. The sun was beginning to beat down, but i borely noticed it. The own affected the cyclist by dehydrating him so much, which bring me to the next point. I had been hitting my water bottles pretty regularly and i was traveling through the high deserts of california in June. This caused him to become even more dehydrated, resulting in him thinking he was going to die. Along the way he found an old abandoned juice factory. This affected him by filling him with despair and hopelessness, causing him to push more and more to reach water. In the end the feature of the setting only made him more determined to reach water." 3 3 3 +6350 3 "The setting affected the cyclist in many ways, One way was the weather. In the story it said I was traveling through the high deserts of California in June (kermaskie @NUM1). Thats quote said he is in a desert and desert are usally warm. It also said in June and June is usally a hot temp month. The weath affected the cyclist because it was hot and he started to become dehydrated and had little water. Another way the setting affected the cyclist was the souroundings. In the story it said. There was no one in sight not a building, car or structure of any kind (kurmaskie). That saying there know one around to help him so if he gets hurt or something. Also theres no where to get some water." 2 1 2 +6351 3 "Many of the features of the setting effect the cyclist. The most obvious and direct feature would be that this adventure took place in the high deserts of California in June. @CAPS1 about that passage says blistering heat; high meaning its going to be closer to sun, deserts, where the world is hot, California, which is known to be smoggy, and June, which is the middle of summer. Also, the closet water supply was somewhere in the neighborhood of two hundred degrees, there was a long crippling hill all while the sun was heating down. All of that would most obviously effect the cyclists by making him tired, which he vividly explains by expressing his fears of losing conscionous." 2 3 3 +6352 3 "In the story, Do not exceed posted speed limit by Joe Kurmaskie, The features of the setting affect the cyclist. One example is when the cyclist says I noticed the terrain changing, Flat road was replaced by short, rolling hills This effects the cyclist because it makes him work harded when he is dying of thirst. Especially on a hot summer day. It makes his muscles work harder and use his strength more. In the summer time it is extremely hot. When the cyclist is biking it is very hot, he says in the neighborhood of two hundred degrees. After this quote he is explaining the difficulty of getting flustrated an theres No cold water. This affects the cyclist to think about water and not bothering to think about where he is at he could be lost. He didnt have a good map." 2 2 2 +6353 3 "As the cyclist goes on his trip, he is met with many dreary places and people. For starters, the old men he knew he shouldnt have trusted but did any way. This led him through the desert. Even in a car the desert can be a very despairing place. On a bicycle it must be even worse knowing that if you run out of water op one will be there to save you from dehydration. Just the endlessly bleak landscapes also played a roll in the cyclist feelings. Another bad feature is the endless amount of abandonment towns and spoiled water. Every time he thought he was saved he was put down again by that fact. For example he had to pump for minutes only to get bad tasting water. Finally just when his strength was to give out he found the bait place & water and that dramatically and a place to rest too bad there was another old man there, isnt it?! " 2 3 3 +6354 3 IIn the essay the features of the cycleist affect the setting because the readers wouldnt have thought that he was in that bad of danger if he hadnt of been going through the desert. When the cyclist got to the grape factory he stated that he was almost dehydrated. And then when he got to the bait shop he drank from the faucet. 1 1 1 +6355 3 "The features of the setting affect the cyclist by their were rolling hills that went up and down and it to alot of streanth and also he barely had water because, it was so hot he kept drinking and ran out of water early. In the story it say when he was riding that He barely noticed that the sun was starting to beat down. This quote shows it was starting to get hot. Also, in the story he says I checked my water supply. @CAPS1 means hes starting to realize his waters running short. So in all the setting is hot abandoned and theirs no water source, so the cyclist is being affected by all of this" 2 2 2 +6356 3 "SETTING WAS A IMPORTANT FACTOR IN THE STORY. I WAS A DESSERT IN A DESSERT THERE IS A LACK OF WATER. AND ME WAS IN A BIKE THAT IS DANGEROUS. BECAUSE YOU ARE USING YOUR FEET TO MOVE WHICH TAKES OUT ENERGY, AND USES WATER FROM YOUR BODY." 1 1 1 +6357 3 The features of the setting affected the cyclist because he was biking up hills in extreme heat. He also had a short water supplyl while head in the wrong direction. 2 2 2 +6358 3 The features of the setting affect the cyclist. The directions given to the cyclist by the elderly was incorrect and he got lost. The lack of water led to the possibility to sucking pebbles to forget about his thirst. The rolling hills caused the cyclist to use more energy.These were the affects the setting had to the cyclist. 2 1 2 +6359 3 "The feachers of the setting affected the cyclist greatly. When she biked around a bend, my troubles, thirsts, and fear were all behind me." 1 1 1 +6360 3 "In the story Rough Road Ahead by Joe Kurmaskie, A cyclist set out on a bike ride in the heat of summer in California where he will staying he met some old people who gave him a short cut. As he forms out most of the places he was told about were abandoned ghost towns without a single drop of drinkable water. If he were in a different setting like by a river or spring he would just stop and drink from that. Or even if he was in a more populated, industriated area he could stop in any building and ask for a drink; But he was in the dry, hot, abadond hills of California without any water. Under these conditions he grew tired, thirsty; dehydrated; and desperate for a drink finally he came apon a bait shop that had water there" 2 2 2 +6361 3 "Durring the cyclist @CAPS1 he was affected by the setting frequently. When he was cycling it be came very hott to him but at first it wasnt so bad. The sun was begining to beat dow, but I barely Noticed it. This proves that the cyclist knows it was getting hot but it did not affect him. Another thing that affected him was the time that he was travling in. I had been hitting my water bottles pritty regularly and I was travling through the high dezerts in califonia in June. This proves that the reader was constantly drinking because of the time of day and year he was out. All of this shows that the setting affected the cyclist on his @CAPS2. " 2 2 2 +6362 3 "I think that the features of the setting really do affect the way someone rides a bike because certain places have certain terrain. Some types are not always good for a bike rider because if its bumpy then someone could fall off the bike. Also, if it is dark you @MONTH1 not even be able to see where you are going then you could hurt your-self very seriously. Thats why riding a bike is dangerous. Also, if your in the type of enviroment where every thing is smooth then you @MONTH1 be able to have a nice bike ride. " 1 1 1 +6363 3 "The features of the setting effect the cyclist in, Do not Exceed posted speed Limit. By changing him physically. He was in the California desert in the middle of June without any water left. This was taking a physical toll on him. His physical effect was making him feel hopeless as well. He says, It was a sad hopeless laugh mind you, but at least l still had the energy to feel sorry for myself."" So the way he was suffering from dehydration physically effected his emotional state because he felt as though there was nothing he could do. Had he been in another place, for example @LOCATION2, where it does not get newly a shot as soo thon California, he would not have been suffering from dehydration, as have been in such an isolated place. His cycling could be compared to the climbers who were lost in the snow storm in @LOCATION3. Instead of dehydration and heat strone, however they suffered from hypothermia. Had they been on a different mountain, there would have been no snow storm and they would be fine. The outcome of this story and the climbers was determined by their setting." 3 2 3 +6364 3 The conditions gave the cyclist no hope at some points because the heat of the land the of the features of the setting were so harsh he had no hope like when the cyclist says I hope I make It to the horizon because theres nothing else to compare. He cant say lets ride to the next building or mail box because there are none. The desert features make the cyclist fell that its just him no one can help him hell die of dyhydration. Then the features get worse he sees the welchs grape fruit building giving him little hope of survival then he finds out that its deserted and thats like the final thing he gives up. The cyclist almost unconscious then runs into the fishing store where he has a sip of water. So the features were the main reason the cyclist lost hope. 2 3 3 +6365 3 "The features of setting affect the author because it moves him dehydrated. The dessert sun look sweat out of him and he had no water to bring that would replace his electrolites . Also, once the author had got into the hills he had lost a lot of his energy so peddling up his was a lot of work. If I were the author I would also have gotten tired because you need water in your body to survive." 1 2 2 +6366 3 "The features of the setting in Rough Road Ahead: Do Not Exceed Posted Speed Limit affect the cyclist greatly. In the cyclists opinion things began pretty well. He had a positive attitude as it states with strong legs and a smile on my face. As the man moves on he comes to a fort of sorts. To him, the sight was troubling. Though troubling, he still had the confidence that he could continue. Next he noticed the changes in the terrain. He explained Flat road was replaced by short, rolling hills. This means that he would have to peddle harder and with greater force in order to get over the hills. The weather was not and the cyclist was running out of water. The possibility of heatstroke came to mind. There was no one in sight, not a building, car or structure of any kind, as told by the man. His mind entered a state of sad, and hopeless thoughts, but he persevered and cycled on. At this point he was very thirsty and felt his death was near. He said I was going to die and the birds would pick me clean As he kept going he spotted an old guy in sight. He regained hope and moved ahead. The features of this story affected the cyclist physically and mentally. Physically he was tired and worn out. A like this horrible state, mentally he was becoming negative and pessamistic about his travel. The setting's features interfered with the cyclist's physical and mental state." 3 3 3 +6367 3 "In this story, No Not Exceed Posted Speed Limit, by be Joe Kurmaskie I believe the setting greatly affect the cyclist. I believe this because when its long downhill cool roads is fine but if it is straight uphill roads and extremely hot he feels like he cant keep pedaling. The cyclist gets very weary when the setting is out in the hot desert with no one around so the setting has a huge affect on the mood in this story. Another example" 2 2 2 +6368 3 "A cyclist is a bike rider. They can be in groups of diffrent people or they can be a solo cyclist. Some cyclist go for a few miles riding there bikes some can go for more like @NUM1 miles, some go over hills, go trow water they do alot with what they do. They have alot of time on there hards to ride a bike that far." 1 1 1 +6369 3 "The setting is hot like desert, no one around, and very dry. Being hot outside affects the cyclist because he is sweaty and needs water. The heat wears him down. Having no one around causes him to not get water which he needs for his journey. These things make him week and makes it harder for him to find a place to get water." 1 1 1 +6370 3 The setting affect the cyclist because it could be a good or bad thing. If a cyclist adjust his own settings thats good but if somebody messe with them that could be bad. 0 0 0 +6371 3 "In this narritive of a cyclist, riding in california, and handed for Yosemite national park, he encounters a lack of water and bad directions from a group of old men on a pourch. The setting plays a big part in his ""challenge"", from the pine trees to the barren hills. In the begining of his trie he passes a ""gbost town"" that has clearly seen better days. This presents him with his first doubt and he continues with caution. Then the pines that, ""had my name written all over them."" This gives him hope and reassurance. Then the rusty pump and ""ramshackle shed."" They took the hope and reasurance away, making him cautrous. The hills that made him work hard to get over, the snake that slowed him down and the whelches juice company that was abundanded all didn't help and made matters worse. Then he got some water at a bathroom and it was all better. It the setting has less the same the whole way he wouldn't have had any hope or he would have hope but it wouldn't fall and rise, making the story interenting. " 3 3 3 +6372 3 "Winding hills limited water and poor directions are the troubles of this cyclist. First he gets very bad directions from a group of old men that have not been outside of their porch in awile, then he gos through the first town and does not fill is water bottles then he gets lost and runs out of water but finds a fishing store where there is water and people that give him a better map." 2 1 2 +6373 3 "No water, and no direction effects the cyclist. Water effect cyclist because he said in the essay I could drop from heatstroke"" (Kurmaskie). also no direction is another big one. It is important because without direction he is going to rideing for a long time. In conclusion water and no direction was the cyclist problem in the story" 2 1 2 +6374 3 "The features of the setting affect the cyclist because he thought he packed enough water so he began on his way he drank most of his water less than half way to his destination. He didnt realize how hot it was until he got down to his last couple of sips of water. He started to become dehydrated he rembered the old men said that the next town was abait eighteen miles away so he kept on going when he reached the town there was nothing to drink just an old run down factory. He took same rocks and sucked on them, he went over a bump had swallowed it. He said to him self next time he would just go by what the map said everything he had gone past on the way had been run down and abandoned. Finaly he reached a bait shop and when inside the bathroom and got some water." 2 2 2 +6375 3 "The features of the setting affected the cyclist grate deal. For example, it was not and hill goet dehydrated. He went down this rusty-bumpy road, which didnt help his dehygration And another example would be he found a plane was he could set a change and find the best way to get where he was going. That the features on the setting affection the cyclist." 1 1 1 +6376 3 "The cyclist goes through many natural settings that affect him. First of all he rides into barren land. The cyclist portrayed this barrenness by saying it fit the traditional definition of a ghost town. This was in response to the first town he came across. Next he speaks of a large snake that came close to him which is dangerous, but luckily he manuvers out of its way. But the worse setting the cyclist had to deal with was the lack of water. This is a threat to any living creature. But in the end he found some water and the story ended fine." 2 2 2 +6377 3 "In the essay Rough Road ahead: Do Not Exceed Posted Speed Limit the setting relates to how the author is feeling. At first, when the author sees the abandoned first town he is not too worried about it and moves on. I chuckled, checked my water supply, and moved on. The sun was beginning to beat down, but I barely noticed it. The author is okay right @CAPS1, and still has enough water. Next he starts to get low on water, and he becomes more panicked; which in return makes the day seem even hotter. I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of california in June. @CAPS1 that the author is low on water the day seems worse afterward he continues on and runs into a rattlesnake, which makes him even mere panicked and a ridiculously large snake. It really did look like a diamond back-blocked the majority of the pavement in front of me. I eased past, trying to keep my balanc in my dehydrated state. @CAPS2, when he got to the bait store and drank from the sink; things didnt seem so bad anymore and there was no more talk about water nor the heat. As a result the setting was related to the authors moods." 3 3 3 +6378 3 "The features of the setting did affect the cyclist in this small story. In this story the setting is a hot dry terrain which can be better explained by the name California. This heat of the desert climate seems to start have an effect on him about after he reaches the first town. I know this by his statement.This place might have been a thriving little spot at time say, before the last war-but on that morning it fit the traditional definition of a ghost town. I chucked, checked my water supply and moved on. The the sun was beginning to beat down. The summer heat is thriving how during this @DATE1 and he is drinking lots of water.So this setting does affect him greatly it causes him to use his water supply and it causes him to begin the process of dehydration. I know how the summer heat can affect you during @DATE1 activity s. At times it feelslike you are going to die but that building is always around the bend just for the cyclist. " 3 2 3 +6379 3 "In Rough Road Ahead: Do Not Exceed Posted Speed Limit, the features of the setting are devastating to the cyclists condition. ""@CAPS1 through the high desert of California"" is surely never an easy task to begin with. Without proper hydration, people often suffer heatstrokes or pass out, sometimes even perishing, it is entirely worse for this cyclist because of the effort he is exerting, pedaling over short, rolling hills. Even worse, the trail a few very old, eccentric men set run on doesnt do much in the way of nuping with a depleted water supply. The first town the cyclist comes across easily splits the traditional definition of a ghost town and the only other water pump he comes to emits only sewage and incredibly hot brackish water. Therefore, the heat is only made worse by the look of water on the cyclist path. This combination of features in then setting causes a great deal of distress to the cycling, and almost pushing him to death." 3 2 3 +6380 3 "There are many ways the setting affected the cyclist in this story like the weather, supply of food and water, wrong estimation for old people and the road. First off the weather was was very dry and it was two hundred degrees, so it made you sweat and hard to breath. The supply of water was harsh not much around at all and when he tryed to get water the pumps would pump out not water. The weather and water supply were two maijor affects on the cyclist." 1 1 1 +6381 3 "In the beginning of the story the author is happy, but towards the end grows upset. ""I rode into the morning with strong legs and a smile on my face (@NUM1). This shows how the author is in a good mood and happy to be there. She is on a journey, and no one can touch her. Then the story takes an unexpected turn. With what I believed was my last burst of energy, I maneuvered down the hill, (@NUM2). After getting lost in a town that seems distant from any living things the author hears people! She is extremely reliefed to have found anyone of help to her. She gets water and is forever greatful. The setting is horrifying to her because you will feel like you cant even if you live there! She felt alone and that she would die. If the setting was in a city surrounded by buildings the author would still feel some security even without water" 3 3 3 +6382 3 The features of the setting affect the cyclist. The reasons were the water and the hills. One reason was water because his water were cooled down offer he refilled it all the way up. My last reason is because of the rolling hills. 1 1 1 +6383 3 "There are features such as blazing heat coming off the sun, short, rolling hills, and no water. There was also the fact that the rider thought he was in the middle of nowhere. This has a great effect on the cyclist, both physical and emotional. The heat, lack of water and constant up hill riding can take a lot of energy out of someone and make it extremely hard to ride. Not to mention there isnt much hope left so that eliminates the whole mind over matter thing. All the features of the setting put together can lead to major trouble." 2 2 2 +6384 3 "Features of the setting affected the cyclist in many ways. After about @NUM1 miles, when in need of water supply the cyclist found a rusty pipe which a tarlike substance came out, then a brackish water substance. While cycling, you are in need of clean water. Next, the terrain changed from being flat to very hilly. In need of water,the last thing you need is be to be challeged more. Later on down the food, there were no cars or any buildings in sile. When you are feeling the the worst, you would want someone to he near in case you fall out, but no one was in site on that road. Lostly, seeing the old welch's Grape Juice Factory would affect the cyclist. Seeing that image of a drink factory right infront of you but not business has to make them fell like he/she will never make it. These features of the setting had to affect the cyclist." 2 3 3 +6385 3 "The features in the setting dramaticaly affect the cyclist. Everything was fine until he ran out of water and reached the hills. Now if he was in callada he woudnt of dehydrated. But the hills were sure to play with his mind. The most import setting is the welchs grape juice factory. He would have had all of the grape juice he wanted, but it was abandoned. An ironic twist as he calls it. And the last one is hte bait shop that sawes his life, where an old man offers him directions." 1 2 2 +6386 3 "The features of the setting effect the cyclist because he was in the middle of no-where with no water or direction. The man was also very thirsty and had no water left in his water bottle, he began to get very thirsty. I found an example to show that he was thirsty. The speed limit was @NUM1. I was doing a water-depleting @NUM2. Sometimes life can feel so cruel. By saying he was doing @NUM2 when it should have been @NUM1. was saying he was getting very exhausted and he needed water to get him feeling refreshed once again. Also, the fact that there was no one in sight to give him direction effected him too because he didnt know where the next refudge was. There was no one in sight, not a building, car, or structure of any kind. From the mans point of view, he probably thought civilization was many more miles away and he probably could not make it that for. The setting effected him by making him probably begin to stress or panic a lot for the most part." 2 2 2 +6387 3 "The features of the setting affect the cyclist in many ways. For example he feels dehydrated and tired because he is riding through the desert and has a lack of water. I often feel this way when jogging for extended periods of time. The men in the story who havent left the confines of their porches since Carter was in office also add to the story. Due to their role, the cyclist takes an unmarked shortcut that turns out to be horrible. The Welchs factory affects the cyclist because it increases his thirst and causes him to once more think about it. The sign showing grape juice looks irrisistable to him and drives him to keep forward in search of anything to drink. The terrain charge also affects the cyclist because it causes him to have to work ever harder to get up hills now rather than just ride flat terrain." 3 3 3 +6388 3 "The features of the setting affect the cyclist in many ways. For example, in paragraph @NUM1 it says, I was traveling through the high deserts of California in June. @CAPS1 the heat the cyclist experienced, since he was in a desert in June, made him dehydrate faster. The heat made him drink more so he ran out of water more quickly. Then he would try and conserve water by not drinking and this would cause him to dehydrate more because he was losing body fluid in sweat secondly, in paragraph @NUM2 it says, Flat road was replaced by short, rolling hills, These hills affect the cyclist because he would need to use more energy to cycle up the hills. This would cause him to become exhausted more quickly than he would on flat land. If the setting had been different, such as not being in a hilly desert, the cyclist would not have become as dehydrated and tired as he did. In conclusion, the features of the setting affect the cyclist in many ways." 3 2 3 +6389 3 "The features of the setting directly affects the cyclist. I was traveling through the high deserts of California in June. This affects the cyclist because in June it is very hot and going through a desert makes it worse, so he would continue to drink water until he has no more. He is also using energy which is making him sweat and drink more water. One ramshackle shed. Several rusty pipes and a corral that couldnt hold the lamest mule greeted me. This could also cause a problem because he cant renew his water source, which means he has to conserve it, and cant use as much energy. Both of these things factor into the setting, in a desert with no water, affecting the cyclist more than cycling in a cold day." 2 2 2 +6390 3 "The cyclist in, Do not exceed posted speed limit, was affected greatly by the features of the setting. First of all the weather was extremely hot and hot weather just makes you feel exhausted and like you cant do anything. Also no one is in sight. She is all alone making her feel small and helpless. I know that when there is no one around I get scared. Finally there is no water around. The author is obviously dieing of thirst and with nothing around her she acts even thirstier." 1 2 2 +6391 3 "The setting effected the cyclist by the rough roads, the cylist having a hard time pedaling over the roads. The snake, the cyclist got scared of the snake on his ride through the town. The fact he was running out of water and the water he found tasted like battery acid. The setting was very rough on the cyclist." 1 1 1 +6392 3 "The features of the setting affect the cyclist by making him tiered, scared, thirsty and cause him to worry. The setting was a hot California day in June and the cyclist was riding through the heat and over the hills and difficult terrain. The cyclist describes the land when he says, Flat road was replaced by short, rolling hills. He also says, Over one long, crippling hill. As the cyclist gets further and further, he has more doubt. Fear and thirst start to get to him. He says, It didnt really matter. I was going to die and the birds would pick me clean. When the cyclist finds the bait shop he has almost lost all hope. On his way to the shop he says, Slowly gaining elevation while losing hope. At the end, the setting makes the cyclist regain his strength as he sees the bait shop, when he sees it, he says, Then, as easily as rounding a bend, my troubles, thirst and fear were all behind me. The features of the setting put the cyclist in an unsteady ride of fear, hope and confidence" 3 3 3 +6393 3 "The features of the setting affect the cyclist by helping him get water for his thirst. And getting back on the road to go where ever he is trying to go at. But the only thing is that he didnt never say anything about getting his bait for the fish. Also, cyclist was all so affected because he almost died from thirst and no road." 1 1 1 +6394 3 He race trying to get yosemitre for some rushing river 1 1 1 +6395 3 "The features of the setting affect the cyclist in many way. Having desert rahas makes you want to just lay their and not try to go any further, because you dont know where and end will be. As for grassy, flowery land its more of a sense rout, and makes you want to keep going and see many things. Hills and terrain make it harder to keep going but more of a chalange, and a good workout at the same time, the setting does affect the cyclist." 2 2 2 +6396 3 "When the cyclist first recieves directions to Yosemite Park from the old timers he met, he was pretty confident that they knew what they were talking about. To his dismay, these elderly men sent him through life threatening conditions in a deserted area. As the cyclist begins his journey through the hot, June weather, he rode into the morning with strong legs and a smile on my face.'' As he continues forward, he notices that there are no buildings, cars, or people of any kind. He passes abandoned towns and creeps into the desert flat land. The flatland however, morphs into crippling hills with tumbleweeds and snakes awaiting. Not only is the terrain suddenly different, but the cyclist is rapidly deteriorating. Tiredness and lack of water make the cyclist think I was going to die and the birds would pick me clean.'' It was amazing that through all this, the cyclist was able to reach a small fishing camp where he is quickly replenished. Gary and Wilbers Fish Camp'' saved the cyclist from almost certain death and him to always just use his map. " 3 3 3 +6397 3 "In the essay Rough Road Ahead Do Not Exceed posted Speed Limit. The feautures of the of the area the cyclists rides through affect him greatly. For example when the narration says, At some point, humble weeds crossed my path (Kurmaskie @NUM1). The tone of the cyclists from the quote above shows despare creeping into his mind. Also, another good example is when the narration says, @CAPS1 hill, a building came into view (Kurmaskie @NUM1). The cyclist sounds more hopfull than before. That is how the area the cyclist enters affects him." 2 2 2 +6398 3 "In the story the cyclist is affect by many features of the desert. The main feature is the heat. I was traveling through the high deserts of California in June."" Hes also running low on water,The water bottles only contained & few tantalizing sips. Hes faced by extrem heat and lack of water. Hes tired and has a long way to go. So far, all of the towns have been deserted. Finally he reaches a bait shop and his water and refills his water and promised to stick to the map in the future." 2 2 2 +6399 3 "In the essay the setting affects the cyclist is different ways. For example, the couse must have been tough because he was dehydrated and it says that there are rolling hills and rough roads. Another example is there were dangerous animals like snakes that he came across. In conclusion, these are some reasons how the setting affects the cyclist." 2 1 2 +6400 3 The terrain described in this essay add affect to the strugles of the cyclist. For example when the author says their were no cars nor buildings in sight that adds to the affect that he is really out in the middle of nowhere. Also it adds a lot of affect when he comes upon an abandond juice factory and he is so thirsty he puts stones in his mouth to gather saliva. Also when he finally finds water an oldtimer asks if he knows the best way to go. 2 2 2 +6401 3 "In the essay the cyclist is riding in the desert. It is extremely hot out because its June and that causes alot of problems for him. He said that since it was so hot he was afaid of getting dihydrated. Also he explains that the roads were getting hilly, which would have caused him to work harder, meaning he was lossing my water." 2 2 2 +6402 3 "The features of the setting negatively affect the cyclist. When the cyclist arrived at the first town, he could tell thered be some issue. It was a deserted, run down area. The water was hot. Down the road the setting started to change from flat land to hills. There was a big snake in the road. He was becoming very dehydrated going through hilly areas with little to no water." 2 2 2 +6403 3 I think it explains because they did good job but it was not good either because they did the right thing but they did same thing worng to. 0 0 0 +6404 3 "In the essay Rough Road Ahead : Do Not @CAPS1 Posted Speed Limit, by Joe Kurmaskie the features of the setting affects the cyclist. Dehydration caused by heat could not enough water caused the cyclist to sweat and to feel nautious. wide rings of dried sweat circled my shirt, and the growing realization that I could drop from a heatstroke, caused me to laugh. In this quote he is thinking about all the bad and horrible things that could happen to him because he is already in an bad state. In conclusion, this is how the features of the setting affects the cyclist." 2 0 1 +6405 3 "The features affect the cyclist in a big way. For one the ""heat beating down on him made him sweaty, hot and tired. The heat had also made him thirst which led him to drink a lot of water in a little amount of time so he ran out of water before the next town. Also the fact he was in the desert there were no trees to give time off shade that he could rest in. There were also no people around to help him or give him water. So in the ride he struggled more than he thought he could." 2 3 3 +6406 3 "Some of the things that affect the cyclist was the lack of water. The water, bottles contained only a few tantalizing sips, water is a big importance. To stort men. Your body need water to work right. The @CAPS1 humid, dry weather of California was a affect To. The high deserts of California in June. l could drop from a heatstroke. The sun is unbearable, expessary without shade and water, @CAPS2 affect on the cyclist up. The have of animals There was No- one in sight. It would have been a lot easier for the cyclist if store or people would have been around, @CAPS2 exact is the animals. A @CAPS3 large snake crossed my path. diamondback- blocked the majoritly of the pavement. It would have been to worry about those things these are all things that affect the cyclist." 2 2 2 +6407 3 "Rolling hills, open terran, hgh deserts-all are features of the setting that affect the cyclist. First, Rolling Hills could take energy out of the cyclist when having to travel for miles on end. The open terrain leads to the beating sun which also puts pressure on the cyclist. Lastly, high deserts would have an affect on the cyclist because he has to pedal for mles on end in rough dry terrain putting strain on him overall." 2 2 2 +6408 3 "In the case of thr cyclist in the story, Do Not Exceed Posted speed limit, the setting has an enormous affecton the biker. Preclaminatly, the weather causes him to feel dehydrated. He says that he had been nitting my water bottles pretty regularly. @CAPS1, he tries to get water from the old well, for the demonsrtrating just how much he needed water. The wate in this pump, the owner said, was, somewhere in the neighbar had of two hundred degrees. If the water has reached such a high temperature, the reader infe that it must be not outside the author implied nthis when he says he is California in June, it is agarsears day, and the sun was beating down. Another aspect of the setting, the lane, dirty, ghost town infested land, had a larse affect on the cycle. As he begins to see how hope. He cannot see any signs of madon life; there was no one is sight, not a building car or structure of any kind. This empty land make the cyclist himself feel empty. Most literally, the fact that the setting was unknown to the cyclist affected his confusion. He didnt know the best path to his destination and therefore relied on others for aid. Because of this, he ends up lose and acne." 3 3 3 +6409 3 "There were many different conditions that effected the cyclist. He did not have the proper ammount of water for the journey witch made it difficult. He states in the story, The water bottles contained only a few tantalizing sips. @CAPS1 the terrain and hills made it difficult. He ran into snakes and very deserted country. But his determination led to success and arrived into a town" 2 2 2 +6410 3 "In the short story Do Not Exceed Posted Speed Limit, the features of the setting affect the cyclist in many ways. When he arrives in the first town that the old men told him to go to, the cyclist chuckled and moved on, and acted just sort of indifferrenth, to seeing this old town. As he reached the fork of sorts twenty miles up the road, ""the sight was troubling to him his water supply was somewhat deterriorating, so he became a bit uncered. Finally when the cyclist read the sign that said Rough Road Ahead: Do Not Exceed Posted Speed Limit, the author continued to move on, but with a large chunk of his confidence gone. He was dehydrated, toned, and had lost a lot of hope after coming across all these places. When he saw the sign for Gary and Wilbers fish camp, he was as happy as could be, knowing he would drink some water continue his journey the next day, and not listen to old mens directions again. Many people in stories or in real life are affected by the setting they are in. In the novel @CAPS1 of champions by @PERSON1, one of the characters named @ORGANIZATION1 went on a journey to find an art exhibition, running into many problem's on the way, which in many cases, gave him a lack of hope in reaching his destination safely." 3 3 3 +6411 3 Some features can affect the cyclist. The weather can slow them down like if it was cold or hot outside it can slow the person down. If the person does not 1 1 1 +6412 3 The features of the setting affect the cyclist by the road that he was on. He was on a road that had snakes and that the trees where all on the road. The road was like a snake cause it was waved and it had a hug hill that made you go fast and it was hard to star dark because the hill was stipped and know one would ride that hill by if it was a rash than it would have been easier to ride the hill cause than there will be more people these would be some people that are these that can help you if you get hurt. There is also no lights there or if you ride at night then you cant see where you are going un less you put a light on you bike or himilet then you can ride easier the hill at night. That light there is the features of the setting that affects the cyclist that is going down a hill that know one is there that can help you if you need the help you can get it. 1 1 1 +6413 3 The features of the setting affect the cyclist because there was a lot of detours and distractions where the cyclist rode. The cyclist had to pay full attention to the road or else the cyclist could have been seriously injured. The features of the setting also affect the cyclist because he has to go down steep hills and windy turns. In conclusion the features of the setting has a huge affect on the cyclist. 2 2 2 +6414 3 "Setting can affect a cyclsit in many ways. Just as I read in the story, being in a desert dehidrated him. It was hot, the road was bumpy and the dangers of poisnous snakes. The cycclist could have died in many ways such as: heatstroke, falling of his bike, dehidration, and a bite form snake. Say ??? in the mountains of ???.There are many problems that face you there." 1 1 1 +6415 3 "The features of the setting affected the cyclist by causing him to be hit with his water bottle regularly, the high deserts of California affected him. Also, Not the miles into the next section of the ride, he noticed a terrain change. For example flat roads was replaced by short, rolling hills. Then after over coming that, A large highway sign jumped out at him saying or reading, Rough Road Ahead: Do Not exceed Posted Speed Limit. And that was 55. Last the author says, Sometimes life can feelso cruel. In conclusion there were many things that affected the cyclist." 2 1 2 +6416 3 The features of the setting affected the cyclist in many ways. One way is that they would drink up all of there water because it was hot and they would get ?? thirsty from all of that ??? 1 1 1 +6417 3 "In the essay intitled Rough Road Ahead: Do Not exceed the speed limit the setting changes as so does the mood of @NUM1 essay as well as the mood of the cyclist. For example towards the begining of the essay, at the reserve the essay states, At a resevoir campground outside of Lodi, California, I enjoyed the serenity of an early summer evening. This shows how towards the begining of the essay the cyclist is happy, just woke up and getting reading to go on a nice bike ride; however this all changes when he gets directions from a cople of old-timers. From that point on his trip goes down hill and the essay states, About forty miles in to the pedal, I arrived at the first town, a ghost town, The sun was beginning to heat down, This also shows the the setting of a ghost town and a setting with the sun beating down is effecting the mood of the essay and the mood of the cyclist as well as when he goes another @NUM2 miles to a different ghost town with only a few rusty water pumps containing acid flavored water. At this point cyclist is very worried because its hot and he has no water, while knowing he has another @NUM3 miles to go. @NUM3 miles of rolling hills and hot sun shile seeing a A Rough Road Ahead sign and a diamondback snake he is sure he is going to die. However it all changes when a different sign, one for a baitshop. This is how the author, Joe Kurmaskie uses the setting to effect the mood." 3 3 3 +6418 3 "The dusty, dry setting has a serious effect on the cycling author. It got so long and hot that, @CAPS1 blues tune summer time rattled around inmy deteriorating brain. The author has spent so long cycling through heat, his brains starting to shut down. Its also because there is very little water left for him. Another problem is that every building/town except the last building is deserted. So without any chance of being refueled and restocked, its the author v.s nature. Plus, as the author states, the directions came from old people who, havent left their porches since Carter was in office. The word has greatly changed. Towns have become deserted, buildings rundown but the roads are kept in shape. The towns the old people mentions are now ghost towns, and are no help to the author. " 2 2 2 +6419 3 "As the cyclist continues on his ride, changes begin to occur in the surroundings, which ultimately affects the cyclists attitude. When first starting out on his journey to Yosemite, the cyclist started out that morning, with strong legs and a smile on my face. He had received information from a few of the older locals that would help to cut the amount of time it took to arrive at Yosemite National Park. However, as he was riding, the cyclist realized that perhaps the older mens travel advice was a little out dated. with barely any water left to hydrate himself, and being surrounded by nothing but more road and desert, the cyclist couldnt help but laugh. It was a sad, hopeless laugh, mind you, but at least I still had the energy to feel sorry for myself. At this point, the cyclist was mad at himself for not just using the map that he had brought with him instead of listening to the locals. Although the cyclist remained determined to find water, he had begun to lose hope when he suddenly came across a bait store. Here he was able to rehydrate himself, and with his renewed spirit, continued on his journey, this time using his map." 3 3 3 +6420 3 The cyclist was riding on a rough bumby dangerous road. He had to be on the look out for animals that might try and nort or even kill him. Since he had no water he was de hydrating. Also the road was hot very well taken care of it took more energy to get through it. 1 1 1 +6421 3 The features of the setting affect the cyclist because it just looks like he is on the highway as in the desert riding his motorcycle or bike and it does look like hes coming or going on a vacation and because of the way hes riding it it seems hes going real fast as about to fall. 1 1 1 +6422 3 The cyclist is out in the desert there for was tired & also running out of water so hes getting dehydrated. 1 1 1 +6423 3 The setting of the story affected the cyclist by changing his mood. At the strat he had can eidance which died once he got into the barren dessert but picked up when he round a rest stop. A prime example to how he started leds and a smile on my face to and the growing realization that I could dropping heartstroke on a gorgeous day in June becaused listen to some gentelmen who hadnt been off their perch in decades to I had an over welming urse to seek out Gary and wilber kiss them and buy some bait. The over all mood ox the story is based off how the authour feels. 2 3 3 +6424 3 "The features of the setting in this story, Do not exceed Posted Speed limit, affect the cyclist in a huge way. The cyclist was biking through California in a desert-like area. It can get very hot there,like the writer describes, wide rings of sweat circled my shirt. The fact that the area he was biking through, and that he out of water put himself into serious danger. Also, since the cyclist had no water he was becoming dehydrated. The area he was biking through had barely any people. This means there was no water available for him. Therefore, if the setting had taken place in a cooler setting with lots of people, the cyclist would have found water. Without this type of setting, the story would have completely changed. " 2 2 2 +6425 3 "The setting very much affects the cyclist. I maneuvered down the hill. This statement shows him going down the hill. If the hill wasnt there then it would hawe been a whole lot easier for him to get to where he was going, also he would have had more energy. If there werent anyhills to get in his way." 2 1 2 +6426 3 "The setting in this story was hot and filled with rolling hills. These factors greatly effected the cyclist. The hot weather was bad for the cyclist because he had a limited water supply.The text says, The sun was beginning to beat down (@NUM1). Showing the temperature was rising. The text says, ""Flat road was replaced by short, rolling hills"" (@NUM2). The authors battery was leaking acid so it was harder to make it over the hills. Seems like everything went wrong for this man but he still made it." 1 2 2 +6427 3 "In the start story Do not exceed speed limit, time of year and place setting were the main things that affected the cyclist. This story takes place in the deserts of california in June. The fact that the story took place in June (and especially in a California desert) really is what caused the cyclists dehydration. Anywhere in this country, June is summer, and summer means that it gets hotter and more humid than usual. This heat cause the dehydration and the ""growing realization that I (the author)" 1 1 1 +6428 3 "The settings in the story affected the cyclist throughout the story with winding roads and hills peddling can already be tough, tiring, and challenging, with the rider having little to know way or the roads were ten times harder to deal with. And with no landmarks or places insight its hard to have confidence because theire is nothing to keep going for." 1 2 2 +6429 3 "Dont let anything stop you with your goals. Going to Yosemite National Park. Takes a status that would out home off side. Forty miles into the trys comes to a town. Got to a water station and get nothing because old men say the water taste like buttery acid. Lead going to hills and azyl towns, @CAPS1 can be rod without anything to drink. People die from heatatacks because they dont sits and take herats for water and food." 1 1 1 +6430 3 "Features in the setting of the cyclist does in fact affect him in many ways. The setting in the passage include features like, no one to be seen, no buildings, dirty, bumpsy terrain, hot weather and plenty of vegetation. All these features affect the cyclist in negative ways. For instance, the dry weather affects the human body with dehydration which the cyclist is affected by." 1 1 1 +6431 3 The setting in the story affect the cyclist alot. It is June in the California desert. The sun is heating down on him. Another problem that he faces is that there is a very rough terrain. All of this together makes him drink up his water even faster. The setting is making him feel very disprate when is even worse. 1 1 1 +6432 3 "Each person has a really good ability that stands out. Someone can be good looking, smart or confident. Someone @MONTH1 never give up and do what he wishes to do. The cyclist in the story is or man with a strong will. He wants to be alive. He saw too many difficult in his way to get the place he wanted to be. He listened to some old guys and he lost his way. The sun was beginning to beat down. He was out of water but he continued riding to reach his goal. He was losing his strength. The weather was @NUM1@CAPS1.The water tasted like acid battery. He believed himself that he can be alive. He got stronger by believing in himself eventhough he was losing strength. Every place that he passed by was a new experienced for life. They were like a game that he came successful. He never give up. He did everything he could do to not losing his mind. He didnt want lose the battle in his mind. " 2 3 3 +6433 3 "The features of the setting made the cyclist more tired and thirsty. The rolling hills where he had to pedal up and down and the desert with no water in sight just dry land. Everything in the setting was increasing the conflict in his story. The old Welchs Grape Juice Factory,is like drinks are right there but are now gone. If it would have been Yosemite with cool pines and rivers he wouldve felt completely different. No people in sight lacked security and water, also no buildings. The tumble weeds gave you no hope of getting any where and the snakes and vultures just eating you after you died. Everything in the story was the opposite of what he wanted until he got to his last hope the bait shop." 2 1 2 +6434 3 "In the story Rough Road Ahead; Do Not Exceed Posted Speed Limit the setting of the story majorly affected the cyclist. The story tells us I was travelling through the high deserts of California in June. The extreme heat of the summer definitely put a strain on the cyclist causing him to have to drink lots of water . Unfortonatly the towns were very far apart and many not having good water making dehydration problem. There was no one in sight, not a building, car, or a structure of any kind. @CAPS1 of this would have happened had he been cycling at a marathon with people handing him water when requested, or if he had been smart enough to follow a good map." 2 2 2 +6435 3 "The features of the setting affected the cyclist. For example, on page @NUM1, Kurmaskie said I got down on my hands working the hande of the rusted water pump with all my strength that shows desperation due to the lack of water." 1 1 1 +6436 3 "The features of the setting been amajor affect of this cyclist in the story. On the normal road, the ground is smooth but think is a lot like and winding. The cyclist also comes across bumps, non-paved roads that make it hard to meneuver through. Then you add the fact that there is not really any towns and he is a blazing heat with little water. The setting of this passage played a key role in the story. " 2 1 2 +6437 3 "The features of the setting affect the cyclist because he is in the high deserts of California where it is very hot so, you need alot of water. Then he needs more water and finds a water pump but cant use the water because it was some where in the neighborhood of two hundred degrees."" Then the terrain in changes when he says Flat road was replaced " 1 2 2 +6438 3 "The features of the setting affect the cyclist because I was talking about the exceed posted speed limit. How the speed limit or were it says Never accept travel advice from a collection of old-timers who havent left the confines of their porches since Carter was in office. They are trying to say is that, you do what they say you are going to be mesem peoples travel will not work, so make the right choice and do the right thing." 1 1 1 +6439 3 "The features of the setting affect the cyclist by that he or she should behave act or talk according to the settings. It means that where ever they are existing and whatever it looks like, they need to fit them self in. They also need to fit the mood according to where they are located. The cyclist is feeling comfortable according to the story and he dosent need any change in setting or location. For conclusion the features of the setting affects the cyclist by that he needs to make improvment and changes according to where he or she is located. " 1 1 1 +6440 3 "In the beginning the cyclist was ready to go and happy. By the time he got half way there he was losing hope. It was very hot and he was simple alone. By the end, he was relieved because not only did he find water, he found an easier way to get to Yosemite. The first old group of men didnt help, but the second man did." 1 1 1 +6441 3 "In the story Do not Exceed Posted Speed Limit,"" the features of the setting affect the cyclist, it say this because the cyclist enables us of what is going around him and he feels about it. It says, one ramshack shed, several rusty pumps and a coral that couldnt hold the lamest mule greated me. The author goes on to say that it troubled him. Actually that made the author scared that maybe he was all alone in the desert with ghost town. The unplanned that the roads were rusty where the speed limit was 55 mph since he barely had any water he was going 12 mph. This tells me, hes troubled and confused about the surrounding ways, because it all desert seem light it became the author is slowly loosing hope on the travels further and further. I think its the same week people that as soon as trouble comes; or looks like its among they start losing hope and their better judgment, and life seems a lot harder." 3 2 3 +6442 3 "In this story it seems as if everything is dry. The rider would be getting real thirsty. He is all by himself that would make any man feel strong, because if you have an ascedent that nobody would be there to help. Hes going up and down steep hills so he would have to be careful." 1 1 1 +6443 3 "The features of the setting affect the cyclist in many ways. For instance, If you were cycling in a very cold climate you wouldnt sweat as much and wouldnt need to drink as much water, but in the story the cyclist is in a very hot climate and he runs out of water, The water bottles contained only a few tantalizing sps,wide cings of sweat circled my shirt and the growing realizating that I could drop from heat stroke on a gorgeous day in June This quote explains that the setting of the cycling plays a huge role in the cyclist. Also, the terrain can affect biker. If one was to ride on a flat terrain is gonna put much wearand tear on the cyclists body therefore the flat terrain would be easier. All of those reasons explains that the settings affect the cyclist in many ways." 2 2 2 +6444 3 "The setting plays an important part in the authors mood. When the author finds the dilapidated ghost town, he is still high spirited and amused. He thinks that it is a little funny that the old mens town was now abandoned. (the town) fit the traditional definition of a ghost town. I chuckled This shows that the author is still in good spirits because he can still laugh. When a tar like substance oozed out of the water pump at the next stop the author became a little unsettled, as the author was running low on water. But he was still optomistic. Once the rolling expansive hills came into view, the author let out a sad, hopeless laugh. The author was depressed , dehydrated and had all but given up , however he kept going and eventually made it to some water." 3 3 3 +6445 3 "In the passage Rough Road Ahead Do Not Exceed Speed Limit the setting must definetly affects the cyclist. When the cyclist comes for the first abandured town he searches for water but finds only that which tastes like battery acid when I tried a drop or two, it had the flavor of battery acid. The makes his dehydration seem much worse because of the fact that he has water it is just undrinkable. The rough road ahead there gives the feeling of determination because when the cyclist in on his last legs he must work even harder to get water a flat road was replaced by short rolling hills, this quote shows that despite his condition the cyclist most perservere. Also quote tumbleweeds crossed my path and a ridicuosly large snake tumble weeds and snakes give the feeling of desolation and of being alone, which is what the cyclist is this point. The setting of this story directly correalates with how the cyclist is feeling." 3 3 3 +6446 3 The hot day in June riding a bike in the desert. The cyclist rode off into the sun on his way to Yosemite National Park. The old men told him where to go on the map even though they had not been through that way in years. When the cyclist started his day off ready to go. He thought he would be able to stop and get water regulary but as he found out he was in the middle of the desert with no water around. The man pushed himself and stopped thinking about water. He even put pebbles in his mouth to suck on so he would be able to keep his mind off water. The man was very smart in this situation and knew what to do. This experence has made him stronger. 2 3 3 +6447 3 "FLAT ROADS, HILLS, BUILDING - ALL ARE SETTINGS THAT AFFECTED THE CYCLIST. WHILE THE HILLS WERE FLAT THE CYCLIST WAS DETERMINED HE COULD MAKE IT AND WASNT GOING TO GIVE UP ON HIMSELF. WHEN THE HILLS GOT BIGGER AND HARDER TO PEDAI, HE BEGAN TO GET EXHAUSTED AND TIRED. LASTLY, THE BUILDINGS WERE WHAT MADE HIM WANT TO GIVE UP. WHEN HE SEES THE BUILDING OF THE WELCHS GRAPE JUICE FACTORY AND THE YOUNG BOY DRINKING HE HUNG HIS HEAD. HE WAS GETTING MORE TIRED AS HE WENT ALONG. THE LAND WAS MAKING HIM FEEL AS IF HE DIDNT WANT TO KEEP MOVING ALONG." 2 2 2 +6448 3 "The setting affected the cyclist greatly. He had no water and he was traveling through the high deserts of California in June. The deserts and no water could have been life-or-death to him, making him stressed and thirsty. Couple that with him biking, and you have yourself a dehydrated man in the desert! When he was between the ghost town and bait shop he says, There was no one in sight, not a building, car, or structure of any kind, This would make the cyclist think that there is no hope for his survival if he passed out. The deserts of California affects any cyclist greatly especially one without water like the cyclist in the story. " 2 2 2 +6449 3 It think it means to be all you can be. 0 0 0 +6450 3 "The features of the setting affect the cyclist because of how hot it is, how big the hill is and the shortage of cold water. For example it is so hot that the cyclist does not think he is going to make it. Also all he could do was a water depleting @NUM1. Also the hills became so big he crested the first couple until the sign jumped out saying rough road ahead: do not exceed posted speed limit. Lastly he had some rough terrain to ride over and no water he was at a dehydrated state and he could only do a water depleting @NUM1 when the speed limit was @NUM3. " 2 2 2 +6451 3 The features of the setting affect the cyclist by causing him to become dehidrated and start to lose conciousness. For ex. the town he was suposed to comue to was just an abandoned factory and he had to travlle another @NUM1 miles or so with no water. 1 1 1 +6452 3 The humid climate and hot weather will want to make you keep over if you dont have water in your possesion. Like near the end of the essay the person sucked on stones to try retain water better which never heard about it its time. This weather is the cause of the character ??? dihydration which is a symptom of lack of water in the body. 1 1 1 +6453 3 The features of the setting affect the cyclist because in paragraph @NUM1 it say that the temperture was was getting high and that when he drank the water that it test like battery acid. This would affect him because it it was so hot and the water was starting to get hot how would he be able to get through the day with out pasing out also in paragraph @NUM2 it say the roads changed to hill when you ride up and down the hills you become tired from pumping you legs then you would feel hot and tiredd and would not want to ride the bike. That how the features of the setting affect the cyclist. 1 1 1 +6454 3 The cyclist in the story is @CAPS1 affected by the fatause of setting in the story. The Hill afected him becaus they have harder to get over. 2 2 2 +6455 3 "The features of the setting, or environment, in which the cyclist is in greatly affects him. First of all, after leaving the campground with directions from the older gentlemen, he enters an area that is greatly isolated. In paragraph @NUM1, he wrote, ""This place might have been a thriving little spot at one time but on @TIME1, it fit the traditonal definition of a ghost town. ""This state of being alone later affected the cyclist because his increasing dehydration was becoming dangerous; if he were to collapse, he would most likely die. This drove the cyclist to continue on in order to survive. Another aspect that affected him was the extremely hot temperature. In paragraph, he implies the weather is hot by telling the reader he is traveling through to California desert in June. The heat gives the cyclist another obstacle to overcome in his struggling to get to the next town for water. Lastly in paragraph @NUM2, he mention the terrain changes to gently rolling hills. This shows the physical and metaphorical obstacles must get over the heat and isolation, but must also find the mental drive and determination to carry on. " 2 3 3 +6456 3 The setting affect the cyclist in alot of ways one way is that if you dont know where your going you could get hurt. Also is if the road condition are very bad. That is how the setting affected the cyclist. 1 1 1 +6457 3 "In this essay features of the setting affect the cyclist in his journey to get to Yosemite makes it worse. Firts for example the cyclist was in the high deserts of California in the heat of June. Which makes it bad because of the heat makes it harder on the cyclist. Also being in the deserts there wasnt any watwer supply so after the cyclist ran out of water it got worse because he got dyhigerated, and caused him to become weaker and not pedal as fast. Also the author says that the tarren changes from flat roads, to short rolling hills, which also made it more difficult because the short hills made it more work, and since it was so hot and he didnt have water he couldnt funcation as well as if he was hydrated." 2 2 2 +6458 3 "The features in the setting of this story affect the cyclist very much so. Throughout this story this poor person has to get lost and end up in the middle of nowhere. By her being out her cycle was being affected. She was just trying to get somewhere and get things done, but of course she didnt. She kept moving on down. This story was very good and showed that she cared and wanted it bad." 1 1 1 +6459 3 "In this story, the cyclist had to ride threw the desert, during june and with little water. I would say that this has a big effect on the cyclist since he dehydrates alot and is threatened with heatstroke. Also he had to ride careful past a huge snake which could have hurt him. Personally I dont know what he was doing ride threw the dessert by himself, and thats his problem." 2 2 2 +6460 3 "In the @CAPS1 ""Do not Exceed Posted Speed limit"" many ways affect the cyclist. Three of those things are heat, lack of water, mud its anything town. The heat affects him because he gets extremely hot and tired. For example the text states."" I could die form a heatstroke on a gergeous day in June."" this shows that it was extremly hot. The cyclist had a lack of water and was very thirsty. For example it states in the text."" I eased past, trying to keep my balance in my dehydrated state."" This shows that he was very thirsty from lack of water. The last way the setting affects the cyclist is when he goes into a town and tieds it empty. The text states,"" on that morning it fit the traditional detinition at a ghost town."" This show that he expected it to be there so he could rest but it wasn't like it was appare to be things all show how the setting affected th cyclist." 2 2 2 +6461 3 The features of the setting effect the cyclist in a couple of ways. The first and main way was that he was riding through the dessert. This caused him to sweat badly and get very dehydrated. The seconded way was that there were rough roads and hilly snotts this made him more tired faster. In conclusion the setting did not help him not one little bit. 2 2 2 +6462 3 The features of the setting affect the cyclist in many ways. The cyclist should had looked at his map instead of taking the old man advise because all the information was on the map. He almost died because he listened to the old men and didnt look at his map. If the cyclist was in a car mabey he would have better luck because he would be going faster than the @NUM1 bike. 3 3 3 +6463 3 "Many things on the cyclist journey affected him. It was in the middle of summer in California. The heat is unbeleivable and rediculously hot. I could drop from heatstroke he was so bad overheated and dyhdrated that he could of died any minute. He could have also been killed by a giant snake. look like a diamondback- blocked the majority of the pavement It could have easily killed him, if he wasnt careful. But with his determination and spite he pulled threw and made it to a fresh supply of water. If he would have gaven up his life would have been over." 3 3 3 +6464 3 When the cyclist went to ask about the road the old men told him all its good way that he should go. But the old man hasnt seen the land in a really long time. The man dont long that the land has changed. So when the cyclist went back to ride the roads and everything ends ?? the cyclist didnt know what to do. 1 1 1 +6465 3 There are many reasons how the features of the setting affect the cyclist. There are ways mentally and physically. The ways mentally is that the cyclists can loose determination and pride if they cannot fight the journey of cycling. The ways physically is the setting is hot and rough and the cyclist would have lack of water and food supplies. Those were the ways how cyclist would be affected by the features of the setting both mentally and physically. 2 2 2 +6466 3 "The cyclist in Rough road Ahead was riding his bike in the middle of June, and in California. Both are very bad if you are lost and on a bike. This is because in June it usually hot, and I know in @CAPS1 its usually always hot, The cyclist is on a bike this means he has to pedde everywhere he goes. This is not along going to use up all his energy but also make him hot, And when your this hot you need to keep hydrated. But your lost so if you use all your water before you find safty then your in major trouble. Also In California theres like Hills, and mountains and stoff and peddling up a mountain isnt an easy trick." 1 2 2 +6467 3 The features of the cyclist affect him in many ways. One way that the features affected him was that when he ran out of water all the buildings were like a ghost town. He said that there was no one in sight. In the story it says the bulding abandoned years earlier. If I was him I would of turned around and went back so I would take the chance of not dieing out in the middle of an abandoned area. 1 1 1 +6468 3 "The setting is the main factor on effects on the cycleist. The cycleists main problem is that he is low on water & dehydrated, trying to keep my balance in my dehydrated state. The author wouldnt have been so dehydrated if it werent so hot. Also, all the problems he faces are setting related like the snake & the rough road. If it would have taken place in a more mild area, there wouldnt have been any conflicts." 2 2 2 +6469 3 In the story the cyclist is afected by setting because in the @NUM1 paragraph it talks about him seeing the old water pump and how he was trying to get water out. At the end of the story he gets angry when he sees the old welches juice factory because he relizes that the old men didnt know what they were talking about. Also at the end he is realived when he finds Gary and @ORGANIZATION1 because there is water there. 1 1 1 +6470 3 "The features of the setting affect the cyclist in Rough Road Ahead by Joe Kurmaskie in a very profound way. While he is riding, he sees surrounding him no one in sight, not a building, car, or structure of any kind. When he realizes his solitude when he is in a state of almost dehydration, he despairs. As a result of the seclution of the setting, having only seen One ramshackle shed in many miles, the cyclist almost looses hope. However, hope is renewed when he thinks of the cool pines and rushing rivers of @CAPS1. That is how the cyclist is affected by his setting, and despair is turned to hope." 2 2 2 +6471 3 The setting affects the cyclist because its very hot outside and he is starting to loose energy. The setting affects how fast he rides when he stops or when he drinks or eats. all of these depend on the type of weather he is riding in. like in the story it was so hot out when he saw a building he wiped the sweat from his face to make sure it wasnt a mirage. 1 1 1 +6472 3 "In the essay Do not Exceed Posted Speed Limit The features of the setting had a great affect on the hard-working cyclist. The weather land and surrounding objects really determined the cyclists mood and ability. One example would be the statement, cool pines, rushing rivers of upsemite had my name written all over them.The refreshing nature and cool air made the cyclist feel confident energized and ready. Another example would be the quote, One ramshackleshed, several rusty pumps, and a corral that couldnt hold in the lamest Mule greet me.there, the cyclist feels troubled and alittle curious as to what lay ahead this water wasn't not the best and he was worried. The last example was, flat road was replaced by short rolling hills...tumbleweeds crossed my path and a ridiculously large snake. there, the cyclist tries to stay focused through distractions. It is deserted and he feels dehydrated as well. As his route ends he comes across in manymore aspects of the setting which create a different feeling or ability. Therefore the nature of where his bike passed, and the things he saw affected his choices and ability." 3 3 3 +6473 3 "There are many features in the setting that affect the cycleist, one of which is that he is in the middle of California riding his bike in the sun with a limited ammount of water. It affects the cyclist because he almost collapses from heatstroke and lack of water. That is how the features of the setting affect the cyclist." 2 2 2 +6474 3 "The features of the setting in this essay affected the cyclist in many ways. One ramshackle shed, several rusty pumps, and a corral that couldnt hold in the lamest mule greeted me. (Kurmaskie @NUM1). The cyclist was expecting a small town with people in it and some type of good water supply. However he instead found a deserted ghost town with only a rusty pump that didnt even supply water. It made the cyclist feel depressed because he was running low on water and could easily dehydrate without it. The speed limit was @NUM2. I was doing a water-depleting @NUM3. sometimes life can feel so cruel. (Kurmaskie @NUM4). The cyclist is possibly being passed by cars on the highway going @NUM2 while he is only going @NUM3.This probably makes him feel as if he is getting no where at all. It would be all the more reason for him to give up. But he keeps trying to reach his destination. The feeling of being passed by the cars makes him determined to continue and finish his journey." 2 2 2 +6475 3 The cyclist had very little water. It was very hot. He had a long way to go. The road was very bumpy so he couldnt go to fast or hes tires might bust. There were know cars in site so if he did break down it would have taken even longer. 1 1 1 +6476 3 "The setting effects the cyclist in many ways. And following old timers advice wasn't too smart of him. In that essay he was headed to the Yosemite National Park, he had a map to follow and he trusted himself, he a cyclist he knows his way around. But came around a couple of men who told him a shortcut. He trusted them which he shouldn't have and he was on his way. The setting was rough. He was riding through a California desert; which was probably way too not, and he was looking water. The only thing that he found tasted live battery and so that no good for him. It was a flat land, than rolling hills. The next town would have been in the @NUM1 miles. This cyclist was hilling himself. While riding along these lands there was more in sight, and no building or cars it was line a dead road. Those old men had him through neck and been, once he made it to the next town he knew with those conditions" 3 2 3 +6477 3 "On the cyclist way to Yosemite National Park, he is given directions from a group of old men, but their direction arent so good. The desserted place affected him because there was no where for him to stop and eat or refill his water bottle There was no one in sight, not a building, car, or structure of any kind. There were rusted water pumps, with hot water, but nothing to cool him down. His surroundings led him to the state of dehydration." 2 2 2 +6478 3 "The features of the setting including vast emptiness, hills, heat, and no water all create obstacles for the cyclist in Do Not Exceed Posted Speed Limit. @CAPS1 to the vast emptiness of the area in which he was traveling he could not stop somewhere to ask for help or to take a rest. Also there were no other travelers so he could not ask for assistance from them. Another obstacle during his trip are the hills. It takes more energy to pedal up hill so he ends up tiring easily and taking longer than expected. There is also extreme heat which causes him to sweat and even become even more thirsty. So he ends up running out of water. In the story he writes, The water bottles contained only a few tantalizing sips. He is now becoming thirsty and if he doesnt find water he @MONTH1 dehydrate. He searches for a place to rest where there @MONTH1 be water but he is not able to. All of these obstacles cause the cyclist to become devastated and give up hope but he continues his travel and eventually finds a place to rest. All of these obstacles tying into another." 3 3 3 +6479 3 I really thought the story didnt make sense the setting was crazy I really wasnt feeling it at all I dont think it was even a good story 0 0 0 +6480 3 "The features of the setting affect a cyclist in many ways. If you have a bumpy ride, then the cyclist will have a harder time. also, if it is really hilly, then it is harder and will take longer too. Flat road was replaced by short, rolling hills, It will take him longer to reach his destination. animals in the setting can also be effective. and a ridiculously, large snake-it really did look like a diamondback-blocked the majority of the pavement in front of me. animals can get in the way like this snake did for the cyclist. If a squirrel or some kind of animal was to run across the rode right infront of you, it could scare you and you could clash. Sometimes trees make it cooler because you dont have to sun beating directly down on your back. If there is a fresh water stream you can stop and wash all the sweat off of you and get a drink. The setting in which is cyclist is riding, can help or hurt the cyclist." 2 2 2 +6481 3 It affected him by dehydrating him and wearing him down to the point where he was about to give up. But he never gave up. As the end sartisfaction came out of it all. 1 1 1 +6482 3 The trees were in the landscape and it was making the colors red and the volcanoes and the tall pine trees covered were in the landscape and milker years ago it make the swampland became the desert 1 1 1 +6483 3 "There were a few features in the setting that affected the cyclist. One very important feature is that the cyclist was in the desert. This is demonstrated by the statement I was travelling through the high deserts of California. not only was the cyclist in the desert, he was there in June, one of the hottest months of the year. It is demonstrated that he was there in June reading to the statement I was travelling in June. @CAPS1 there at that time made dehydration a bigger risk. It was also very hot there. We know this because when he was at the water pump, he stated, blackish water feeling somewhere in the neighborhood of two hundred degrees. From this, we can affirm that not only was at hot, the water was dirty. The water also had the flavor of battery acid. This was bad for the cyclist who was running low on water because he had been hitting (his) water bottles pretty regularly. The fact that he had little water left is demonstrated in the statement, The water bottle contained only a few tantalizing sips. The cyclist was in a bad situation. These had ganged-up against him in his trip. These features are the desert, the high temperatures, and the blackish water which tasted like battery acid. The fact that he was low on water made it harder to fight these features with water, he would battle the desert, high temperatures, and have no need to pump bad water. Again, the features of the setting that affected the cyclist are the desert, the high temperatures, and the bad water which he could not drink." 3 3 3 +6484 3 "In the story Rough Road Ahead the cyclist was excited and determined to get to Yosemite National Park. The cyclist had to be thinking of the beautiful waters with His name written over them. The rough terrain and harsh weather took its affection on the unaware cyclist. The sun, beat down on the cyclist back, he tried to ignore it, but soon the heat made him frequently drink his water away to sips to drink. The cyclist was told by the old man a town was only @NUM1 miles aways. The town was the traditional definition of a ghost town. That probably gave the cyclist no hope for surviving of finding anyone to help him reach his destination. The conditions of the roads, the lack of water which made him see a mirage, made the cyclist not trust the words of an old man who had led him to the abandon locations he had seen. The cyclist was affected by the settings in a bad way but in the end was given a little help from a traditional map." 3 3 3 +6485 3 "In the essay, Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the features of the setting affected the cyclist because it made it more difficult for the cyclist to survive and make it through his journey. In the essay, it says, I arrived at the first Townthis place might have been a thriving little spot at one timebut on that morning it fit the traditional definition of a ghost @NUM1). In the essay, the cyclist takes directions from a few old men to get to Yosemite National Park. The cyclist has a limited amount of water, and it was a very humid day for traveling. Because of the humidity, the cyclist nearly ran out of water when he had to cycle up, short, rolling hills (@NUM2) in the hot weather. Had the town been thriving, he could have bought more water to make his trip easier to accomplish. Also, if the road in the story would have been flat, he cyclist wouldnt have gotten as tired as he did and needed more water. It would have been less strainful on the cyclist to pedal on a flat road rather than a hilly road. The challenges facing the cyclist remined me of that of the main character of the movie @PERSON2. In this movie, the main character must make his way through the extreme conditions of the desert, just like the cyclist had to in order to reach his destination. In conclusion, the setting clearly affects the cyclists journey in a negative way." 3 3 3 +6486 3 "In the story, Rough Road Ahead, by Joe Kurmaskie, the cyclist was affected by the setting. The cyclist has said that he had to ride over terrain that was smooth at first but then turned into rolling hills. He also had to find his way around a big snake while being dehydrated. The cyclist was mainly affected because he was out of water when he was riding on his bike through a desert like area, but because he was determined to reach water he made it through." 2 2 2 +6487 3 "In the selection Do not exceed posted speed limit there are a lot of great details of the area around the cyclist. In the text, it makes it clear that the route the cyclist is traveling is very deserted when the drinking water was explained as oozing out and tasting like battery acid, you can tell that people hadnt been there in awhile. Also, being informed that he was traveling through a desert, in June. I am able to understand how thirsty he is. Also, he is traveling for miles over a rough terrain and crippling hills, according to the text, so he has to be ovely exhausted. I could understand why he was so upset with getting wrong directions based on the troubles he encounters when he finally reaches the camp and drinks water, you too are glad he has reached somewhere that wasnt empty and deserted." 2 3 3 +6488 3 The features of the setting affect the cyclist because the he was traveling through a hot place at a hot time of year and didnt have much water. In the text it says I was traveling the high desserts of California in June. The deserts are always hot and June is a very hot month. The cyclist was getting thirsty quicker from the heat and wasnt able to drink much because he had limited water. 1 1 1 +6489 3 "The setting affected the cyclist because since it was the California desert, and it was in June, it was very hot and dry. Which caused him to get very thirsty and drink all his water. After almost all his water was gone, he began to get very tired, and since it is the desert, there isnt any one around to help him if he dehydrates and blacks out, so he has to persevere and really push through the situation if he wants to survive. But he eventually finds a bait shop and he has a drink there so he is okay." 2 2 2 +6490 3 "In the story Do Not Exceed Posted Speed Limit the setting greatly affects the cyclist. With long rides, hilly roads, and very little water the cyclist was pretty good. I mean he could have been very angry but he kept his cool and stayed calm." 1 1 1 +6491 3 "The towns, the terrain, the Welchs Grape Juice factory- all are parts of the setting that affect the cyclist. This place might have been a thriving little spot at one time- say, before the last world war, describes the cyclist, but on that morning it fit the traditional definition of a ghost town. The town intensifies the cyclist feeling of doubt, in that it is increasing. At this part, he is really regretting taking the old guy's advice in taking the shortcut. Not two miles into the next section of the ride, I noticed the terrain changing, reveals the cyclist. The cyclist is already very worried and very doubtful, and the terrain is making it worse it mirrors the town in which the cyclist had stopped at earlier to, again make his feeling of doubt increase. The cyclist exclaims, By the looks of it- had been a Welchs Grape Juice Factory. The cyclist gets very excited when he sees this, and gets a great feeling of hope. So throughout the whole story, the setting of where the cyclist is at affects his mood by giving him doubt, but by also giving him hope. " 3 3 3 +6492 3 "The cyclist was biking through the California deserts olwing the warm summer months. The heat and uninhabited canal was the biggest struggle for the cyclist. For example, he thought there would be many stops for water decive his trip, but he was mistaken. Also he runs out of water very quickly because of being dehydrated in the heat. The cyclist became irritated with himself for trusting someone else to give him directions for a shortcut. The setting affected the cyclists mood in a negative way. " 2 2 2 +6493 3 "There were many features in the setting of this bike race that affected the cyclist. It stated, flat road was replaced by short, rolling hills (Kurmaskie @NUM1). The cyclist was pedaling fine until these big hills came into affect and his energy was running lower as he went along. Also it stated, At some point tumbleweeds crossed my path and a ridiculously large snake (Kurmaskie @NUM2). This debris and snake made him stop because he got scared and slowed him down. There was a lot of features in the setting that made the cyclist affected to slow him down and lose energy." 2 2 2 +6494 3 "Many things caneffect a cyclist and how they ride, in this essay many things effected him such as the setting of the story. One of the problems of the setting was there were no stores or even people, another and most important thing was the lack of water around him, so many things can effect a cyclist while They are riding inculding there suriondings." 2 3 3 +6495 3 "The second photograph better communicates ideas similar to the ideas expressed in the essay A sea worry , because the story is about a boy who surfs as a job & in the second picture a boy is surfing. The author says my son body-surfs. He says its his job. That quote was explaining that hes a body-surfer & its his occupation. This is the reason I chose the secod photograph." 1 2 2 +6496 3 "Condition the cyclist is in affect a lot of how they ride. One example of this is, I was travelling through the high desert of California in June. @CAPS1 to this fact the cyclist had went into a dehydrated state because of not having much water. When your travelling in hot weather areas without much water your body will become dehydrated from sweating. Cycling in different conditions will affect cyclists diffently." 1 1 1 +6497 3 "Many features of the setting affected the cyclist in Rough Road Ahead. First, the scorching heat of the desert in June was a major problem that had him to the brink of dehydration. In the text it states, I could drop from heatstroke in a gorgeous day in June (@CAPS1). This shows the effect the exposure to heat had on @NUM1 cyclist. Also, the terrain posed a threat to his well being during the story. In the text it says I toiled on( @CAPS2). This shows the increase in effort in strain the terrain caused on the cyclist during his adventure." 2 2 2 +6498 3 "In the story Do not Exceed Posted Speed limit by Joe Kurmaskie the features of the setting affect the cyclist in many ways. It being hott affected him because it mad him more thirsty. Than him being out in the middle of the desert made it so he couldnt get any water. The hills made him tired and weak. All of the features in the setting had an affect on him, which made him powerless and thirsty." 1 2 2 +6499 3 The features that effect the cyclist are that he is riding his bike in the desert and doesnt have any water. That effects his journey because he is dehydrated so he needs to find water fast so it is making him get to Yosemite slower because he needs to find water. That is a feature that affects the cyclist 1 1 1 +6500 3 "In the story the setting has a large affect on the cyclist. After taking advice from old people he ended up in the desert with no cars, buildings, or peopl. He was running low on water and had no way of getting anymore, and he was really dehydrated, he got really tired and almost gave up because of the heat and lack of water. All this was caused by the setting he was in." 2 1 2 +6501 3 The setting of the place was ghost town as the author said. It was a hot summer day in June so of course the cyclist would be dehydrating. There was no one around so he couldnt ask for help. It was like an old town because he ran into old men who knew nothing of new world because they told him the wrong directions. 1 1 1 +6502 3 "The setting affected the cyclist in a few different ways. At first it helped him. The sun was beginning to beat down, but I barely noticed. The cool pines and rushing rivers This is saying the pines and rivers helped him forget the sun. Later on the setting was against him. There was no place to get water and he was becoming dehydrated the terrain was getting rougher. There were no people around to help him, but there was a snake. All these features were working against him until he finally made it to a bait store. This bait store gave him water and a good map. " 2 2 2 +6503 3 "In the story Rough Road Ahead by Joe @PERSON1 it tells of a cyclist heading for Yosemite National Park, and the problems he faced. For example the heat was a major issue the cyclist had to face. In the story it said Drop from heatstroke. this shows the setting affected him in a negative way, in the story heat was a major part of the setting that affected the character." 2 1 2 +6504 3 "The features of the setting affected the authors story a lot. It affected it by making the trip seem more difficult to the reader. This was made possible by telling how hot it was and explaining how the road was full of bumps or hills. The story says over one long, crippling hill. This makes the reader think the trip is very hard since he has to ride up so many hills. But if the road wasnt as hilly then the trip would seem less difficult. This would also make it as if that the old guys gave good directions. But the whole point." 1 1 1 +6505 3 "As soon as the cyclist gained information about which way to go, he set off through tall, cool pines. They gave him a feeling of confidence, and physically cooled his body down. As he headed down the road, he encountered various small towns-none of which looked promising- which gave him a feeling of despair, in accordance to his lack of water. Even further into. the journey, he found one last town, and arundown welches @CAPS1 factory. This increased his thirst and gave him a feeling of spite towards the old men who had given him advice. However, he soon found a bait house where he could get water and escape the heat. For this he was satisfied and grateful to the owner. It made him realize to never again trust the old men." 3 3 3 +6506 3 The setting affects alot in a cyclist. For example if you are in a city you seel rush tired and everweled. But in a forest you are happy and a bit less stress. A setting sets the mode also the attude in the story. 1 1 1 +6507 3 "The features of the setting affect the authors dispotion as well as his ability to complete the journey, thus creating an obstacle the author must overcome. At the end of the paragraph five the author writes that I was traveling through the high deserts of California. This setting is important because it adds a sense of urgency to his trip when he starts to run low on water. This is similair to when I was backpacking and a bear got most of our food. Our normal backpacking trip had become more of a game of survival. So, the water issue was clearly the main point of of conflict that the author presented in the setting. He also writes that Not two miles into this next section of the ride, I noticed the terrain changing. Flat road was replaced by short, rolling hills. This aspect of the setting also affects the cyclist because it makes it much harder for him to progress than if it was a downhill road. In short, the setting of the story presents the main points of conflict to the author and thus was essential to the essay." 3 3 3 +6508 3 "In the essay, Rough Road Ahead: Do Not Exceed Posted Speed Limit, the unbearable setting effects the cyclist with its harsh conditions. At first, in the cyclists own words, things began well enough. @CAPS1, this soon changes. The road is long and filled with obstacles and the cyclist has hardly any water to sip. He does not give up, @CAPS1, in the text it says, got back on the bike, but not bothered gathered up a few peldder and stuck them in my mouth. He does this in order to reduce his need for water and continues, ignoring the tall the setting brings upon him." 2 2 2 +6509 3 "The cyclist is effected by the setting in Rough Road Ahead"" because the road is a place and if it is rough or unknown, its a direct effect on the traveler, who is the cyclist. If it is a hill then the cyclist would have to climb it. In the text it said , over a long crippling hill, the crippiling hill part stresses that the setting is a hill." 1 1 1 +6510 3 "The features of the setting affect the cyclist because there is mo water, hills, and deserts. When the cyclists saw water a wanting to jump in all he thought about was water that they lack like battery acid.Then the hills slowed him down from the water. The desert just made him want water even more. That are some features of the settings that affected the cyclist." 2 1 2 +6511 3 "There were many features in the setting that affected the cyclist. One was the extreme heat during the June heat in California. The speaker said that he could have died from heatstroke. The rough road was also a problem for the cyclist. The bumps, hills and wildlife affected the cyclists journey. The thing that most affected him was the lack of water. It was such a problem that he had to suck on stones to take his mind off thirst. As you can see, these problems in the story affected the speakers journey to Yosemite National Park." 2 2 2 +6512 3 "The features of the setting affect the cyclist. He is riding in the desert where there is low to rain. This means that he cant collect any water to drink if he runs out. Also, deserts are hot. The heat will speed up the dehydration process so he will need more water to survive. If he runs out of water, he will die. The cyclist finds a building, but it is abandoned and empty. All these features of the setting affect him. Since he cant find water, he has to conserve what he has. Also, the heat is killing him. It doesnt help to have an abandoned building be the only one he finds. During the whole time that there is death in the air, the desert with nothing growing, no water, the cyclist is thinking about his death. As long as he thinks about his death, there is only more death. As soon as he puts the pebbles in his mouth to stop thinking about death and being thirsty, he sees a bait shop which saves his life. He thought about his surviving, and immediately found a shop to and he could drink." 2 3 3 +6513 3 "The setting affected the cyclist greatly throughout his ride. The water bottles contained only a few tantalizing sips and the growing realization that I could drop from heatstroke (pG @NUM1 kurmaskie). This quote is saying that because of the heat, the rough terrain and the length of his shortcut his running out of water. Thats when he realizes he could die from heatstroke because he listened to a bunch of old men." 2 2 2 +6514 3 The features of the setting affect the cyclist in many ways. He is in the desert and has a low supply of water. Without water he tired very easily .On top of that he had to pedal a bicicle. So he was thirsty and tired prambeing in the desert. This is how the setting affected the cyclist. 1 1 1 +6515 3 "Setting affects the cyclist. The cyclist has to worry about the road condition. If the road condition is bad then the cyclist must reduce his/her speed. The cyclist also has to worry about if it is day or night. If it is night, they must be careful due to cars not being able to see them. In the text, the cyclist was in extremely hot weather. This is dangerous to cyclist if they are not prepared with things such as water." 1 1 1 +6516 3 "The setting affects the cyclist because the cyclist believes that he has a nice, short, flat distance to travel to get to Yosemite but instead it is a long, hilly(rough), hot journey. He only prepared himself for a quick ride, bringing only enough water for that ride, and wasnt prepared for the reality of his ride. First of all he is riding in the middle of the day (the hottest part) in the high deserts of colifornia in June I know when I go to camp here in @LOCATION1 during the summer I drink I drink six to seven liters, but the author only mentions a ""few bottles of water"" which aren't going to help him in that heat. Secondly, the cyclist believed that the old men had given him a safe path to follow but instead he came across a ridiculously large snake. It really looked like a diamond back That is a poisonous snake and the cyclist has barely able to ease post it because, of his lack of water. Lastly, the cyclist expected the old men to give him an easy path on a flat terrain when in fact it was replaced by short, rolling hills which means you have to put more effort (using more water) to climb the hills. The setting definetely affects the cyclist because it makes it more difficult for him to reach his destination but without a few bumps in the road, how is he to learn a life lesson?" 3 3 3 +6517 3 The cyclist is affected by the features of the setting a lot. For example the dry hot place makes him thirsty. Then the ghost towns make it hard to get supplies. Also the bad road slowed him down. The bad roads even would probably hurt him and his bike the roads also would make him work harder. 1 1 1 +6518 3 The features of the setting affected the cycalist in many bad ways. For example in the text it says how I eased past trying to keep my balance in my dehydrated state. Meaning that he had trouble being in a place he didnt know well of and he was dehydrated. In conclusion the setting did affect the cyclist. 1 1 1 +6519 3 "First the bike encounters flat roads in the desert which are very easy to navigate through; when he gets to his first town he still goes on trying to get to Yosemite, then after is going low so he looks for some more water to help him go. Then he kept going and he experienced a fork in the road. After the fork he kept going and he then faced another problem. That problem was an old person told him to go @NUM1 miles to the town and he didnt trust the guy. Then the biker listened and he went on down the road. He then faced his next problem. The flat road started to get very wary with short high and low hills. These hills reduced his stamina greatly. Then he had to deal with a rocky and bumpy desteart road. He then had to face a snake and he had to avoid it so it didnt attack him. Finally the biker faced his las long hill and he finally found a bait and tackle shop with lots of water." 2 2 2 +6520 3 "In Do Not Exceed Posted Speed Limit the cyclist is affected by the features of the setting by making him feel worse than he does. The cyclist is lost, has only found dirty water, and is moving on rough ground. The features of the setting are cool pines and rushing rivers, however, the cyclist comes to find that the rushing river is not so refreshing. He also encounters a terrain change, from flat road to short, rolling hills. There is a sign, Do not exceed posted speed limit, also the name of the passage with a limit of 55 mph, while the cyclist is only going 12 mph. Ironically, he finds a picture of a boy drinking grape juice at the factory, which cause him to hang his head in misery due to his intense thirst. Finally, he comes to a fish camp, where he encounters the owner who, ironically, tells him hed be better off using his map." 2 1 2 +6521 3 "The features of the setting affect the cyclist because he is going to be on the road a long time. The features of no buildings, no people and no cars, affect on the rider is that he feels helpless when he is low on water. The ghost town doesnt help he because the old man told him about it and he thought he would be able to get more water. The grape juice factory affected him because he thought he would get a drink but it was abanded. This is how the features affect the cyclist." 2 2 2 +6522 3 "Features of the setting would affect me if I was the cyclist because, I would be thinking I was going to die just like he did because, there is nothing to look at, no breeze, wind, he seen a snake, he had no water. He went through three towns that had nothing. The sun was setting down on him, it was hot, he had no hope. Who knows, maybe if he would have just went with what the map had said, he would have been fine." 2 2 2 +6523 3 "The features of the setting affect the cyclist. The cyclist is running out of water and is in the intense heat in the high deserts of California in June. The tumbleweeds that cross his path add to the desperation. Not only do the features of the setting affect the cyclist physically by dehydrating him in the heat, but also mentally. The cyclist encounters rolling hills, tumbleweeds rattle snakes and ghost towns. All of these make the cyclist start to give up hope. In conclusion, the features of the setting affect the cyclist physically and mentally." 2 2 2 +6524 3 "The features of the setting greatly impacted the cyclist. First the setting at the middle of the story was empty and no place to get water. This filled the cyclist with doubt and despair, he/she thought they would die. The setting also made the cyclist thirsty because of the extreme heat. Finally the cyclist was filled with regret because they regretted listening to the old men because the cyclist didnt make it where he/she wanted to go." 2 2 2 +6525 3 "The author think that the setting means he is not getting any closer to his destination. However, he found out that there was still people around. He paniced and thought he was going to die. The places were desserted and he thought the lead nowhere. He was a little scared at the fact he might die because of everything around him was in a sense dead." 2 2 2 +6526 3 The setting really affected the cyclist. Since he was in the desert on a bike he was going to be hot and tired. Which would come from the sun coming down on him. You know he was hot where it said wide rings of dried sweat circled my shirt. 1 1 1 +6527 3 "The features of the setting affect the cyclist because they are extreme and do not change. The cyclist was riding on a small road in the desert. In the desert it was very hot and because of this the cyclist was sweating a lot and getting dehydrated. Also because he was in the desert he had no sense of direction. Also the towns are all run down with nothing in them, so the cyclist couldnt get any water to drink to rehydrate himself. Only when he comes to a small bait shop close he finally get water." 2 2 2 +6528 3 "The setting really afeted the cyclist alot.The sun and hot weather dehidrated him. He also had pretty much ran out of water. In the story he says ""The bottles contained only a few drops this shows that he had drank almost all of his water. Then it says ""the growing relization that I could drop from a leaf stroke"" shows the heat was affecting him." 2 2 2 +6529 3 "The setting was calm and peaceful as he started out riding his bike. He was smiling and his legs were strong. As he hit the @NUM1 town and saw a ramshackled shed, rusty pumps, and a corral, he begun to be troubled b/c he was running out of water. As the flat rodes were replaced wI short, rolling hills he became even more troubled. When he saw a building he became happy but when he found out it was run down he was sad, thirsty, and tired. When he finally saw an old man and told him he had a map he became a little happier b/c he was going to get to Yosemite. As the setting became worse his mood became worse b/c he had less and less water and felt very hopeless. But when he saw the man he became happy b/c the map was going to help him." 2 2 2 +6530 3 "The setting of this story is very rigurous. At the begining of the story the boy was fine. He had a bottle of water with him so that he didnt get dehydrated. When he was riding he started to feel the sun get higher into the sky, though he could barely feel. It because of the pines that caused the road, and the cool feel of the river. The cyclist got to the second town on his journey and he had been drinking his water all day and was about out. He had found a water pump. He got down on his knees and palled with his night hot all that came but was blackish water. He just feared the water and stated that it tasted like battery acid. He began to ride again. Not two miles up the road the terrain changed. Not only was it rolling hills, it was also getting hotter. He was majorly dehydrated because he was out of water except nor a few tantalizing sips. Dry sweat circled his shirt and he was afraid he could froz up heatstrokes. Where he was at was in the middle of no where, with no buildings, cars or structures in sight. Over were of the hills he saw a building came in no view. He wiped the sweat off his eyes so makee sure it was not a malinge, By the lols of it had been a Welchs @CAPS1 @CAPS2 Factory. He is a dehydrated and tired that he could see a Young boy pouring a refreshing glass of juice in his mouth. There is only the problems it is abandoned. This person was imagining things. He got back on his bike and stuck pebbles into mouth. This was to help tabe his mind off being thirst." 3 2 3 +6531 3 I read Do Not Exceed Posted Speed Limit written by Joe Kurmaskie in the story the features of the setting affect the cyclist by accepting advice from old timers who havent left the confines of their porches @CAPS1 was in office 1 1 1 +6532 3 "In the essay Do not exceed posted speed limit by Joe Kurmaskie, the features of the setting affect the cyclist in many ways. First, the sun is making the cyclist hot and dehydrated. He states The sun was beginning to beat down, @CAPS1, the sun was a big factor on the affect on the cyclist. Also, the hills of the country roads. Going up and down hills take alot of work you have to use alot of energy. The cyclist says @CAPS2 were replaced by short, rolling hills. @CAPS3, there were snakes in the road, which make the cyclist timid looking out for snakes so he would not get bit. Againg the cyclist states dimond back-blocked the majority of the pavement in front of me. @CAPS4, there was an old factory that gave the cyclist hope and then crushed his hopes. The factory even made him more thirsty. @CAPS1, there were many affects on the cyclist due to the setting." 2 3 3 +6533 3 "The features of the setting take their toll on the unfortunate cyclist. For example. I was travelling through the high deserts of California in June. The deserts of California especially in June are hot and dry and caused the cyclist to use much of his water supply, very quickly. As he toiled on, the terrain features became even more trying, over one long, crippling hillBy this time the cyclist barely had enough energy to make it over a hill from all the wear and tear his body was put through by the features of his setting." 2 2 2 +6534 3 "The settings to this story has an encouraging impact on this story, because he is an alike ride. The terrain in the story sounds rough where he seen a sign marked, Rough road ahead do note exceed posted speed limit. He already has to go up and down hills with rocks and no water. Such a setting an a really athletic ride can be devastating. " 1 1 1 +6535 3 "The feature of the cyclist and the settings arnt that good. Therere insidents that are a problem. One is the bad weather. There is a tempature that makes it feels pretty close to @NUM1 degrees. He stops at a water pump, water comes out but it is really not cool. He takes two little sips and its like battarey acid. If he would to drink alot of that water it would probably kill him or make him very ill. He needs something because there was another town @NUM2 miles down the road so he has to find something to keep him going. As he is going down the road he sees a sign: Rough Road Ahead: Even though he is going 12 mph he could still hit a hole and go flying over his handle bars. If he does go over his handle bars he could run into the snake he saw then get eaten by the birds because he wouldnt have any energic to get up. Therere some interesting sence in the story." 2 2 2 +6536 3 "Heat, water supply, energy-all are features of setting that can affect a cyclist. First, is heat. When it is too warm out it makes it more difficult, and more inconvenient to ride. Second, is your water supply. If you are riding, and begin to run low on water, your in trouble. The author describes, The water bottles contained only a few tantalizing sips. If you arnt prepared enough for your cycling journey, it will be extremely inconvenient when you run out of supplies. Lastly, is energy. If you run out of energy while cycling, you have nothing. Your energy is what keeps you moving and motivated. With what I believe, was my last burst of energy, I maneuvered down the hill, the author describes. When you are out of energy, your ride is over. all of these aspects are important to have before deciding to go on a cycling journey." 2 2 2 +6537 3 The features of the setting affect the setting affect the cyclist by. Dehydrating him due to the heat and lack of water and to see mirages. And he loses strength going over the many hills. And there is a very large snake he has to ride by that could have bitten him. 1 1 1 +6538 3 "The features of the setting affect the cyclist because when you have hills to climb and little water, you will get dehydrated. Also the heat from the desert is so hot that it also can make you dehydrated. If you dont pace yourself and dont drink too much water you will be able to reach your goal. Your rest is a big thing for if you dont have energy, you will not get far." 0 0 0 +6539 3 The features of the setting affect the cyclist because the hills made it hard for him to ride his bike up and he was afraid of the grass becase it was tall and scary looking. 1 1 1 +6540 3 In the story Do not exceed Posted Speed limit a cyclist takes a journey through terrain to get to Yosemite. In that part of California there are not a lot of towns or people. The rode he is rideing on is very dangerous and long. It is very dry and hot out there but 2 2 2 +6541 3 "The setting can affect a cyclist in a lot of ways. One way setting affects cyclist is when it is hot, it is harder to cycle long distances. I say this because in the story the narrator says and the growing realization that I could drop from heatstroke @CAPS1 part of setting that affects cyclist is the terrain they cycle on. For example it is much easy to cycle on flat smooth ground than it is on the rolling hills with rough, rocky ground. This is shown with the quote ride down into distances I could see over the horizon, telling myself that if I could make it that far, Id be fine. Setting can have a great deal of affect on a cyclist, depending on if its smooth or rocky, or hot or cool. " 2 2 2 +6542 3 "In Joe Kurmaskies Rough Road Ahead: Do Not Exceed the Speed Limit the features of the setting affects the cyclist a great deal. Each feature causing the cyclist to act. For example, in reaching the ramshackle shed the cyclist finds the water inusuable; which causes to conserve water and try to head for the next town. That action leads him deeper into the high deserts of California during June. Also as the terrain changes from flat road to short, rolling hills the cyclist must change his speed to better survive and continue in his dehydrated state. The scarcity of buildings in this dry desert terrain causes the cyclist to try every shack or building he comes across for water. In this story the features of the setting dictates the actions of the cyclist in his quest to survive in the desert a lot." 2 2 2 +6543 3 "The cyclist in the essay, Do Not Exceed Posted Speed Limit is about a great adventure gone bad. He has every thing he needs but some how it turns out bad. He get low on water & the setting is horrible. He is on his way from a camp ground in @LOCATION2, @LOCATION1 to the Yosemite river. He gets bad directions from old guys at the camps ground. On his way he ran into two abandon towns & was running out of water then he came to a sign that said, Rough Road Ahead: Do not Exceed Posted Speed Limit. He was pedeling over hills & becoming dehydrated when he tought he was going to die he came to a bait shop & got waiter & met an old guy who was going to give him direction & he decided he better stick to the map. Even though the setting got worse through the story & stuck it out & made it to the end." 3 2 3 +6544 3 "Heat, hills and ghost towns all are features of setting that affect the cyclist. First, the heat dehydrates and exhausts him, almost causing him a heat stroke. He starts dinking more often, and nearly runs out of water. Next is the hills. They can take massive amounts of energy to climb. Which adds to his dehydration. Finally the ghost towns. They make his journey seem hopeless. Which could cause him to lose the will to carry on." 2 2 2 +6545 3 The cyclist is in the desert which @NUM1 degrees with water that tastes like the battery acid. The desert makes him see the mirages having sweat get into his eyes. In the story Do Not exceed Posted Speed Limit by Joe Kurmaskie 1 1 1 +6546 3 "In the story, Do Not Exceed Posted Speed Limit, the author tells a story about when he took advice from old folks and became lost. The setting greatly affected him and his journey, for example tumbleweeds crossed my path, and a ridiculously large snake and a crippling hill these quotes explain that the setting was quite scary." 1 1 1 +6547 3 "Hes on a very hot climate, in a desert, so he needs lots of water, but he has a limited supply. Hes riding on hills, which makes it even harder. He cant find any towns that arent abandoned." 2 2 2 +6548 3 In the story the features of the setting affect the cyclist in many ways. One way it affected him was time because of the road he had to go slower so took him longer to get to the town. Also because the road was harder to peddle on he got thristy and the water was really hot. 1 1 1 +6549 3 "There were several features of the setting that held an affect on the cyclist in this story. For one, the cyclist was riding in a hot desert. This condition normally prevents one from obtaining water. Seeing as how water was a necessity for the cyclist, the lack there at due to the desert created the conflict of dehydration. Additionally, the town that was abandoned triggered a spark of doubt in the cyclists mind. The cyclist now had to ride with his brain in doubt and his body in desperate hope. By the time he/she reaches the old factory, the cyclist is extremely dehydrated. Now his head is screaming with annoyance and his body is screaming with lack of water. This abandoned juice factory almost completely wiped out the cyclist hope. A man is little to nothing without hope. Therefore, this abandoned factory had a negative affect on him. Now, the only reason he continues is out of his/her desperation of survival, an instinct in all of us. In conclusion, the desert removed water and the abandoned homes and factory removed hope and all three created a negative affect. The cyclist is lucky to have survived. " 1 1 1 +6550 3 "The setting affected the cyclist, because he didnt know if he was going to die or live. He had used up all his water because it was so hot and his mouth was dry." 1 1 1 +6551 3 "In the short story Do Not Exceed Posted Speed Limit by Joe Kurmaskie, he shows features of the setting played that affects the cyclist in many different ways. A setting the cyclist faces is that its so hot he keeps taking (drinking) water, and worrying that he is going to run out. Kurmaskie writes, I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in @NUM1). This is what the cyclist gets affected by throuout the whole story as he releizes he could die of heatstroke if he dosent watch how much water hes drinking. Also, this is what a lot of people normally face which is a challenge cause of dehydration." 2 2 2 +6552 3 "With age comes wisdom and all that, but the world is a fluid place things change No a better piece of advice for the solo cyclist. Never travel advice home old-timers who haventh confines of use porches.Flat road was replaced by short rolling hills. Rough Road ahead Do not exceed posted speed limit." 1 1 1 +6553 3 "Many things about the setting in Rough Road Ahead: Do Not Exceed Posted Speed Limit affect the cyclist. The terrain in this story is hilly and filled with deserts. This contributes to the cyclist nagging sensation for a drink of water. The ride on the hills and through the desert, also tire him out dramatically. Not to mention while he is severely dehydrated, and when he finds the water it is tarlike and ""in the neighborhood of two hundred degrees. The cyclist in this story really must want to get Yosemite National park if he is willing to go all through all this trouble. The old men he asked in Lodi, California hadnt left the town in decades and gave the cyclist faulty directions that could of killed him. So he asked for directions and was given inadequet information, which made life very difficult for the cyclist." 2 2 2 +6554 3 "The setting of Rough Road Ahead: Do Not Exceed Posted Speed Limit, affect the cyclist so many ways. First of all, the cyclist is riding in a desert, in mid- June, with the heat beginning to beat down on him. This feature of the setting causes the cyclist to drink more water, but when his supply of water was running low, he was unable to drink much water to hydrate himself. The cyclist began to realize that he could trap from heatstroke on a gorgeous day in June. @CAPS1, the long distance and changes in the terrain that the cyclist was travelling, affected him. The distance on which to cyclist was travelling to Yosemite National Park, consisted of hours and miles of riding. Over vast changes of terrain. The flat road was replaced by short, rolling hills, which affected the cyclist speed and energy to finish his trip." 3 2 3 +6555 3 A response that explains how the features of setting affect the cyclist by getting wrong dirachion The old man. One features when tough an ghost town. The old people in the didnt know they were tell him. It made it haede for nam because that more harder roads and lesort water. He almost died. 1 1 1 +6556 3 "The features of the setting will affect the cyclist because the roads are hilly and he is old so it will be hard for him to ride up them. It was very hot and he had a scares supply of water. He was seeing things that wasnt there. When he did try to get some water, the weather was so hot that the water from the pump came out hot." 1 1 1 +6557 3 "Well some features of the setting like the hotness is effecting the cyclist, for example he was riding through the high deserts of California and was drinking to much of his water. So when he stoped at a place the pipes and things to get water were rusty and old. Another was when he thought he could make it to the other town to get water their. He started his ride the the roads were hilly and short. Then the road turned into bumpy to. So know matter what we was having bad trouble any way. " 1 1 1 +6558 3 "The character in this short story has a most that changes with his surroundings. Towards the beginning when he was enjoying his ride no said The cool pines and rushing rivers of Yosemite had my name all over them, As time goes on and he begins to realize nobody inhabits the path he is on he becomes continues and the terrain become rougher." 1 1 1 +6559 3 There are many ways the features of the setting affect the cyclist. For instance the desert is not a hummid making is lack of water a bigger deal than normal. Also these are many hill making him have to use full force to get up them also making water a big deal. In conclusion I temperatures where level and it was flat land he could go further with less water supply. 2 2 2 +6560 3 The features of the setting affect the cyclist by never accept travel advice from colletion of old timer who havent left there porches since carter was in office. After that because you dont know if they are real collection or what. After because some people have not left there porches since carter was in office. I dont know why people have not left there porches since carter was in office. 1 1 1 +6561 3 "In the essay Rough Road Ahead by Joe Kurmaskie he accepts directions from old men for a shortcut to Yosemite National Park. He ends up cycling in a desert with no water just barley able to push the pedals of his bike. The setting affects the cyclist by it being so hot, him not having anything to drink, nowhere to get water or food and him maybe seeing mirages. In the essay it states, Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from a heatstroke. This shows that the lack of water and the surrounding enviroment with nowhere to go is making him give up hope to survive. It also says in the essay, I wiped the sweat from my eyes to make sure it wasent a mirage, and tried not to get too excited. The cyclist is coming out himself and stating that the dessert has him thinking hes seeing something and letting him down by it not being real. The desert setting of this essay effects the cyclist in many ways other then one." 2 2 2 +6562 3 "In Do not exceed posted speed limit by Joe Kurmaskie: c, I think that e the setting affected the cyclist because he was thirsty and he thought he was going to die In this case he had no water left and he was in the desert. He was regreating not taking the advice of the stranger and was dieing of thirst. Also he dident have the mind set that he wanted to live. Thats how I think the setting affectd him. " 1 1 1 +6563 3 "The features of the setting have a big impact on the cyclist. One feature is the hot weather and area he is in. He says he is in the high desserts of California in June. @CAPS1 being hot in @CAPS2, it has cyclist is around deserts, causing more heat. I could drop from a heatstroke, he says. Being hot from the sun beating down on him took away the cyclists energy he needs for riding his bike. Another feature that affected the cyclist was his lack of water. Trying to keep my balance in my dehydrated state. This affected the cyclist by making him tired. Being tired from no water, the cyclist had trouble going up hills on his bike. The last feature that affected the cyclist was all of the hills in his road. Flat road was replaced by short, rolling hills. These hills made it hard to go up on a bike, considering his lack of water, and the heat. All of these features affect the cyclist by making him lose energy and get tired and frustarated because of their negative impact." 3 3 3 +6564 3 "Nature has an affect on everyone, even when they dont think it does. Expecially for cyclist traveling anywhere or everywhere. In Do not exceed Posted Speed Limit by Joe Kurmaskie is a perfect example about settings laffect people like cyclist. When youre riding your bike as actually cross country transportation, you have to know what your doing and where youre going. The cyclist in this story decided to take advice from older fellows and ends up going the wrong route for a cyclist because at these town they had no water, because they werent towns to begin with, not anymore atleast. If you dont have any water like this guy did hills could kill you. And in any case, you have to know what to do for example. l gathered a few pebbles and struck them in my mouth. Id read once that sucking on stones help take your mind off thrist This guy knew a little bit of survival tips. If hed gone all that way without standing up yo his thrist and those hills, he probably would have had some kind of stroke. That is just a few way that setting could harm you. " 3 3 3 +6565 3 "Some of the feature setting that effect the cyclist was the seal was begging to lent down, but he truly noticed it and about twenty miles up the road he came to park of sorts. The cyclist was riding through the high deserts of California in June. He get on his hands and hence working on the heated handle of the rusty pump. The pump began it shoot out a tarlike substance and the water was feeling somewhere of two hundred degrees. Two more miles I noticed the terrain changing from a flat road to a short, rolling hills. He said tumble weeds crossed her path and a large snake crossed her pavement. He gather some pebbles and stuck them in his mouth, after reading that if sucking of stones helps to be your mind off thirst. Well after reading of I believed these settings did effect the cyclist." 1 1 1 +6566 3 "The features of the setting affected the cyclist in many was. First, the town The cyclist first comes upon is described as a ghost town. Although the cyclist chuckles about it, this setting sets up the long journey the cyclist has a head of him. There were other features that would negatively affect the cyclist. For example, I noticed the terrain changing. Flat road was replaced by short, rolling hills. (pg @NUM1). Flat land is much easier for a cyclist to pedal on. The change from flat land to hills affected his stamena and will to keep going. He really had to push himself to trudge up and down each hill. His determination finally led him to, Gary and Wilbers Fish camp (pg @NUM2). He finally found hope. " 3 2 3 +6567 3 In the story Rough road ahead do not exceed posted speed limit by Joe Kurmaskie the features had a more negative affect on the cyclist. The cyclist got tired because of the big hills and he liked the scene which was they only good that if had on hon. The water bottle only contained a few tantallizg sips. he didnt have enough water and he was thirsty. At some point a rediculously large snak it really did look like dimond backbloked the majority of the pavement. It is dangerous where he was riding and even though he was on a bike he could have been bit. All of these points I made showed the negative affect. 1 1 1 +6568 3 "The desert like land affected the cyclist by making him tired and loss of body water, then that therefor making him need water to go on. I think the thought of being so thirsty made him become more weak. If he wasnt thinking about it the ride wouldnt have bin so ruff" 1 1 1 +6569 3 "In the cyclists outlook on his journey through Yosemites park, readers can get a good feel of how it might be to be riding right along side. It seems that it is very beautiful along the bike ride. He sees such a vast variety of scenery including rivers, sandy dry deserts also, as well as cool pines and trees in the park part. He said it was also breezy which probably made for an enjoyable temperature." 1 1 1 +6570 3 "The features oF the bike ride to Yosemite through California in June affect the cyclist. Some of the features were it was hot high deserts, and no water. This affected the author by making him dehydrated and tired, which made it hard for him to find water or to get to Yosemite. In this cass the outhor says The sun was beating down on me. The author is hot From the sun. He says The water bottles contained only a few tantalizing sips. He is showing how he hasno water and is probably dehydrated. All of those features are affecting the way he is traveling and getting to water. " 2 2 2 +6571 3 "In the essay, Do Not Exceed Posted Speed Limit there are many features of the setting that greatly affect the cyclist. Many of these features affect him in a negative way. One such feature is the hills that are present in the essay. These probably exasperated the cyclist even more than he already was with the sun beating down on him. Another feature was the road sign that said Do Not Exceed Posted Speed Limit The speed limit was @NUM1. I was doing a water-depleting @NUM2. Sometimes life can feel so cruel. The author/cyclist probably felt like he would never make it. Also, the sign advertising grape juice probably made him feel life was even crueler with its sadistic irony. Finally, the bait shop offered much relief to the cyclist. I had an overwhelming urge to seek out Gary and Wilber, kiss them, and buy some bait. All in all, the setting affected the cyclist in some pretty bad ways until the end." 2 2 2 +6572 3 "Many features of the setting affected the cyclist. First, the heat was the main part of nature that threw him off. It caused him to go dehiderated because lack of water and he went kind of dilerious. He thought he was seeing things and his vision was distorted. Next, the water he had to come across in the pump was un drinkable because of the tarlike substance coming out of it and the degree of water he said it was, which was @NUM1 degree. Lastly, the Welchs factory that he came across was teasing him in in the way that he couldnt have the liquids he needed and the little boy advertised on the building was drinking his refreshed Welchs juice. Not only did the cyclist get off track because the directions, the setting made his bike adventure to Yosemite even more unbearable." 3 2 3 +6573 3 "The setting effects the cyclist in many ways, first is that it is very hot in the desert. Second is that there arent many towns out there. Finally is that water is hard to find out there, so if he get thirsty it would be hard to get more water if you didnt find a town." 1 1 1 +6575 3 "The setting affects the cyclist in almost everything he does and everything he faces. The setting is a hot day in June in the dessert. There are many hills and the terrain changes a few times. Because the day is hot the cyclist drinks lots of water. And because he drinks lots of water he very soon runs out. In the story it states, I had been hitting my water bottles pretty regularly, and I was traveling through the high desserts of California in June. This quote shows that because it was so hot, the cyclist drank lots of water and because he drank lots of water he very quickly run out of water. Also in the story it states, Flat road was replaced by short rolling hills. This quote suggests that becaused the terrain changed to hills, the cyclist became very tired and hot from having to pedal up and down those hills. And because this caused him become hot and tired he also drank his water more quickly than if he was pedaling on a flat paved road in a cool day in @DATE1. In conclusion the setting causes the cyclist to become tired, hot, and thirsty, which affects his entire journey." 3 2 3 +6576 3 "The features of the setting in the story affect the cyclist by describing that he is in a desert-like area in Lodi, California. They say it is very hot and there is sand everywhere. There also arent many places to cool off at. They also described the water and Lodi to be about @NUM1 degree in temperature. The cyclist was trying to get to Yosemite to get away from the heat and to have a cool, shady pine trees to sit under, and cool fresh water. This affects the cyclist because he gets dehydrated because of the horrid heat." 2 2 2 +6577 3 "The features of the setting have a large affect on the cyclist. If a cyclist would happen to be cycling in the snow, he or she could eat snow do keep from dehydration. If the cyclist in,Do Not Exceed Posted Speed Limit"", was cycling in winter time, he would of been so thirsty all of the time. Also if the whole ride was down hill, he would be so tired," 1 1 1 +6578 3 "The conditions for the cyclist in the story Do Not Exceed Posted Speed Limit are pretty dangerous. a ridiculously large snake blocked the majority of the pavement balance my dehydrated state bottles contained only a few tantalizing sips (kurmaskie, @NUM1). There was a rather large snake in his path. You can tell he isnt an expert on snakes because he couldnt identify it. Because he is in the desert on a long bike ride, he is dehydrated. His water supply is almost gone. The cyclist feared many dangerous challenges in his journey." 3 2 3 +6579 3 "The features of the setting that affect the cyclist are the terrain, the lack of provisions and the power of self- determination. The terrain affected the cyclist by having he/she ride through rough paths inorder to reach their destination.For example, if you walk on sharp rocks, you are based to reach some rough spots where it seems you cant walk. But that is where selfdetermination kicks in. The power to keep yourself moving even though there @MONTH1 be obstacles in your way; you know there will be a better path or a reward at the end another example of a feature is a lack of provision on your trip, when you dont have the right provision to keep you self energised you can t get over your obstacles or even push yourself to do anything.This is why the features of the setting affect the cyclist." 2 2 2 +6580 3 "In Rough Road Ahead: Do Not Exceed Posted Limit by Joe Kurmaskie, the terrain has a negative effect on the author. He claims that I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June (Kurmaskie). This shows that he has been drinking his water too fast due to the heat from being in the desert at summertime. After travelling from a long time with no water he lets out a chuckles thinking of how he shouldnt have taken the old mens advise. He explains that It was a sad, hopeless laugh, mind you, but atleast I still had the energy to feel sorry for myself. This is an example of how badly the terrain had effected him. Its gotten to him so much that he applauds himself for having the energy to feel sorry for himself." 2 2 2 +6581 3 "The features of the setting affect the cyclist because the cyclist is tired and thirsty already. The features include a desert like setting of California, it is extremely hot, there are no signs of civilization in sight, and the roads are like hills that always were throughout the desert. On top of those facts the cyclist is dehydrating because his water suposely has diminished. " 1 1 1 +6582 3 "The setting of the short cut affected the cyclist in many ways. For example, he said there was rusty water, and ""it tasted like battery acid"" because of this he was not able to drink it which made him become dehydrated. Also in the story is says, ""flat roads were replaced by short rolling hills."" This could of made the journey even harder for the cyclist because now he had a little more effort to get up the hills one more example is towards the end he says ""i began breaking my ride down into distances, i could see the horizon telling myself i could make it there."" By the cyclist saying this it seems like he has given up and he realizes that this journey is going to never end untill he dies. That is how the setting on the story affected the cyclist." 2 2 2 +6583 3 "Some features of the setting affected the cyclist. The rolling hills, poisonous snake, and the conditions of the road worried her. For example, @CAPS1 said, I was going to die and the birds would pick me clean, leaving only some expensive outdoor gear and the diary. @CAPS1 had high doubt when saying that quote. @CAPS1 didn't think @CAPS1 would ever make it. Finally, @CAPS1 reached another destination and again finding herself asking another older man for directions!" 2 2 2 +6584 3 "In Do Not Exceed Posted Speed Limit by @PERSON1, the features of the setting greatly affect the cyclist. The first major example is when the cyclist finds that the flat road is turning into short, rolling hills, These hills are increasing the difficulty and are causing him doubt that he will make it. An additional part of the setting which caused major doubt was that he was in a deserted desert. There was no one in sight, not a building, car, or structure of any kind. The horizon was what kept cyclist going. I began breaking the ride down into distarres: I could see on the horizon, telling myself that if I could make it that far, Id be fine. The horizon kept him hopeful and determined. Without the setting he would not have been in such a serious but luckily in the end the setting helped him be determined enough to make it." 3 2 3 +6585 3 "I guess really sofcty comes first, and you have to be cautious when yay out in the streets on a bicycle. I really dont understand much, so I cant write much." 0 0 0 +6586 3 "When the biker listened to the old folks he had confidence. He biked to the first town but it was like a ghost town. A town is a town. soon after that, he did not see anything. No cars, buildings, or anything. He was getting sad and dehydrated. The old men swore there was a town coming up so he put his trust and confidence in him once again. He saw a building coming up, but it was just an old wore down factory. He thought he was let down. He was sure he was going to die, right there right now. He than saw a siga for a fish comp! He was overjoyed! The place was real to! He thought of them as his savior! The settings effect the cyclist tremendously." 1 2 2 +6587 3 "In the story Rough Road Ahead Do Not Exceed Posted Limit by Joe Kurmaskie there were many settings that affect the cyclist. One example would be when he came up to a water pump and he tried to get water out but water didnt come out. working the handle of the rusted water pump with all my strength. A tar like substance oozed out. (Kurmaskie). Another example is when he came across rolling hills, and the scaring heat, he also came across a snake that took up most of the pavement." 1 1 1 +6588 3 The feautures of the settings affect the cyclist if it is just between buildings and cars the cyclist won't be able to break free and bicycle freely. So it can affect him. 0 0 0 +6589 3 "The setting in the story was hot. The biker was sweating a lot. The whole town was empty. He pasted empty buildings. Their were rivers and big hills that he had to ride through. As it says about the buildings, somehow, I climbed away from the abandoned factory of juices and dreams, slowly gaining elevation while losing hope. The setting would affect the cyclist because their was no one in the town. Also, their was high hills." 1 1 1 +6590 3 "The feature of the setting greatly affected the cyclist. He was a California desert in the month of June. There was no water in the desert so he had to use the water he had. He says the sun began taking harder ran and the terrain turned into short rolling hills. The hills made him work harder which dehydrate him guccher.and since there was no water in the desert, he could have died of dehydration" 2 2 2 +6591 3 "When your with your family in ocean city biking down the board walk your only obstacle is people. When your in a race on whinedy roads you could have lots of obstacles. The wheather could be your greatest obstacle. You could pass out by lack of water and scorcing heat. You could fall over by slippery roads from the rain. Along with that nature could lay its toll apon you. a ridiculously large snakeblocked the majority of the pavement in front of @NUM1, Kurmaskie) @CAPS1 like a snake you dont know what you could come across." 1 1 1 +6592 3 "Many of the features of the setting affect the cyclist. The cyclist is biking through deserts. A rediculously large snake this quote shows that only is weather and climate agasint him but also nature. I could drop from heat stroke another great quote showing how hot it really is where the cyclist is. There was no one in sight, not a building, car, or structure of any kind. A great detailed desciption of where the cyclist is and how deserted the area is. The bottle only contained a few tantilising sips. This cyclist is low on water in the desert and in the desert with no water that could be a very bad thing. The above quotes really draw you in and you get to see the many features of the setting and what its like for the cyclist." 3 2 3 +6593 3 "The features of the setting in Rough Road Ahead: Do Not Exceed Posted Speed Limit. Affect the cyclist in many ways. First in the essay when the @CAPS1 says he is in the deserts of California, that can affect because it gives them an idea of how hot it most likely was out there and how lack of water can really harm someone. Also when the @CAPS1 describes the water pumps and what comes out o them, it can give the cyclist a feeling of disgust and remind them to always keep a good water supply." 2 2 2 +6594 3 "Many things in the setting of the essay ""Do Not Exceed Posted Speed Limit affected the cyclist throughout his journey. One very important part that affected the cyclist greatly is the fact that he was in a deserts without a good supply of water. Another part of the setting that challenged the cyclist was the length of his journey. Those two factors of his journey to Yosemite combined are probably the worst and most challenging things that affected the cyclist." 1 1 1 +6595 3 "The features of the setting affected the cyclist because. It was a lack of the water and he was in the high deserts or California .For example in the text stated when I tried a drop or two, it had the flovor of battery acid. That showed clearly when he tried to get water from a pump what it clearly came out as the settling was extremely hot and made the cyclist misreable in such ways." 1 1 1 +6596 3 "In the story the features of setting affect the cyclist because there is not much he can depend on. For example, it is the desert and usually there is nothing there. The cyclist only has a limited supply of what he needs and riding through there does not help him. For example, the old men who gave him directions made him think he could make it longer before he could elgo. This affected him because throughout his journey his lack of water slowed him down and made him think he wasn`t going to make it. When he finally got to Gary & Wilbers fish camp, he learned a lesson because when an old man asked if he know the quickest route to Yosemite he said yes, I have a very good map.''" 2 2 2 +6597 3 "In many real-life situations, nature or a setting can be the biggest hindrance in succeeding, or even surviving. For example, the cyclist with stood the blozing heat of the sun as he pedaled through what seemed to be the @CAPS1s living room: Dry, desolate, and extremely scornful. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from a heat stroke on a gorgeous day in June. @CAPS2 and depicts the intense heats of the desert. Another feature in the setting was the every hanging hills and steps though pedaling down the hills was an easier task, traveling up the hill, as well as maneuvering the thirsts and bends served as a direct conflict. An example, with what I believed was my last burst of energy I maneuvered a setting affect a situation is ultimately, the cyclist reached his destination is great relief. But the biggest hindrance was along his setting. " 3 3 3 +6598 3 The features of the setting affected the cyclist because they made the simplist challenges for him. The back of water and the snake in his path are examples. 1 1 1 +6599 3 "First, by accepting the old mens advice, the cyclist was setting himself up for some hardships that he would, easily have avoided by using his map. He first encounters a ghost town, lifeless and most importantly, waterless. Then, he encounters a pump that gives out water tasting like battery acid. Next he rides past a Rough Road Ahead sign; not the most encouraging thing on his journey. To add to the despair, he has to manever his way past a tempting yet empty juice factory. Finally, the parched cyclist arrives at Gary and Wilbers Fish Camp. To him, this simple bait shop was like beacon of hope from food himself." 2 3 3 +6600 3 "In this story, the cyclist was trying to make it to Yosemite, California. In the begining, the cyclist was sure of himself he decided to ask some old men that looked like they haven't been off their porch since Carter was in office for directions. The old men ended up leading him into the middle of the desert. In the desert, the sun was beating down on him and he had a limited supply of water. There was no sign of civilization what so ever. These hot conditions made the cyclist very hot, tired, and very thirsty. But that didn't stop him, he kept going and eventually he came apon a little town where he could drink cool water and take a well needed rest. " 2 3 3 +6601 3 "Through most the story, the features of the setting affect the cyclist in a more negative way. For instance, he makes it to this town a guy swore was there, but it turned out to be abandoned. So he let out a sad, hopeless laugh and still had energy to feel sorry for himself. Another feature was the Grape Juice Factory, also abandoned, so he hung his head and that blues tune summer time rattled in his brain. A third feature was his thirst. So he stuck some pepples in his mouth to take his mind off it. Then he thought about how lucky hed be if he checked, @CAPS1 negative to me." 2 2 2 +6602 3 "The features from the essay affect the cyclist in many was because he is getting field, and is drinking more and more water. The raods are getting rough so he needs to slow down. If he slows down he will get tierd and need more water although he is all out on top of that the old men really didnt know what they were talking about the features affect the cyclist." 1 1 1 +6603 3 "The setting affected the cyclist in many ways, for example, the heat was unberable beating down on him during this long ride. The fact that he had no where around him to fill up his water bottle. So he was deing of thirst and he didnt know where he was going or how far he had to go. The setting was crushal in this story." 1 1 1 +6604 3 The setting in the begining of the story is flat an easy but as the path becomes unfamiliar it turns into many hills & turns. This effects the cyclist a lot because he was low on water & was begining to become dehydrated. 2 2 2 +6605 3 The setting affects the cyclist. He starts to see things that will affect his mind. Passing there is rolling around him he starts to feel abandoned and misled because there are no signs is going to right way. 1 1 1 +6606 3 "The cyclist has to over come a lot of obstacles. For example, there is a snake in his path, so he cationly rides around it. Also, there are alot of hills and he wasnt sure if he could make it up those hills. Furthermore, he is almost out of water so he could die of heatstroke or dehidration. In conclusion he over comes these obsticles and achieves his goal. " 2 1 2 +6607 3 In the essay Rough Road Ahead the author goes through many seneries. All of the places that the author goes to make him even more determined because he wants to find water and he just wants to get to Yosemite. The determination pushes him to keep going further and further. And then the determination finally pays off after he goes around a turn because he then sees a place where he can get something to drink and a place to cool down. 2 1 2 +6608 3 "The features of this setting effect the author while he is cycling. They changed his hope to doubt. There were no buildings or cars, which led him to believe he would never get to Yosemite. Also, it had a rough terrain that made him doubt that he would ever get water. Im sure if the setting had buildings, people, even just civilization, then the cyclist would of been fine." 1 2 2 +6609 3 "Blazing tempitures, lack of water, dwinding hope-all are the parts of the setting that affect the cyclist. Blazing tempitures, because the hotter the water was the more perspiration and lack of hydration was appointment you cant put anything back in your skin and your body cant function without water finally dwinding . Hope, the cyclist didnt think he was going to live through this. He tried hard and pushed himself and success was made. He lived." 2 2 2 +6610 3 "The features of the setting affect the cyclist because he get tiring. The character, in the story is ridding his bike for a long period of time and he gets tired. He rides alone with nothing or none around his accept the tries and wild animals." 1 1 1 +6611 3 "The features of the cyclist is rough because of the hills, snakes, heat, amount of water. The hills give you a breeze going down but going up give you a hard time. The snakes can hurt you by bitting. The heat could make you sick. The amount of water can really hurt you by being dehydrated." 1 1 1 +6612 3 The features of the setting affect the cyclist in several ways. The features of the setting affect the cyclist through the posted speed. Due to how the setting is the cyclist have a rough hill with wish. 1 1 1 +6613 3 "The hills and bumpy road slow him down, and he is dehydrated. That is also slowing him down because he needs water. There are obsticles in the road too, such as, the big snake laying across the middle of the road. He is lost without water and could possibly die of an heatstroke." 1 1 1 +6614 3 "Knew what he was getting himself into so if he needed water or nething like that, it was probly his own falt he should have brought some with him." 1 1 1 +6615 3 "The cyclist and his journey in Rough Road Ahead: Do Not Exceed Posted Speed limit were impacted by the setting. The deserts of California in June caused him to be weary very easily. The terrain change from the flat road to hills made him feel less confident because he felt the road sign was taunting him by saying DO NOT Exceed 55 mph. He could only go @NUM1. Finally, the large snake created an obstacle for him by blocking the majority of pavement in front of the cyclist. All of these features affected the cyclist in some way." 3 2 3 +6616 3 The story is basically talking about more people with cars should ride bicycles to work or to schools so it want be alot of polution in the air. 0 0 0 +6617 3 The features of the setting affect the cyclist in many ways. The temperature in the area affect the way he drinks his water which leads him to thinking he is going to die because he is running out of water. The towns he comes to are so deserted he thinks he is going in the wrong direction. All the settings in the story also help him not to give up but keep on going. In conclusion even though he had to go through all that doubt he was going to be alive in the end he still went on and tried. In the end he did make it and all it was worth it. 2 2 2 +6618 3 "There are many setting that affect the cyclist. One feature would be the terrain around him. Also, the obstacles faced by the cyclist. Another feature would be the types of wild animals & scarceness of water around . Also, the old man who gave him unimportant & non-updated information. All of these would affect the cyclist because it would wear & fear on his physical & mental strengths." 2 1 2 +6619 3 "I think that there were many things contributing to the cyclists state at the end of the story. First, there was the fact of time. He was cycling in June which is very hot due to it is summer. Second, he was cycling through California which is warm even in early @DATE1. And third he was traveling through the deserts. So if you put all of that together. He was cycling on a hot June day in the deserts of California. These @NUM1 things all contributed to the characters state. He went through dead towns in his search for water and found an old well pump with extremely hot water, that tasted like battery acid. He drank to much water at the begining which left him with just spit toward the end. He was lucky to find a fish camp in the middle of nowhere and to have found water. The three things made him drink too much water at first and barely left him with enough." 3 2 3 +6620 3 The features affects the setting of the cyclist because in some ways they through you off a little with others lines and then will get confused of what their acually talking about. The littlest thing that could through you off is the line when it says before the last world war. That kind off through me off alittle. 1 1 1 +6621 3 "The setting that were affecting the cyclist was the lack of water he had because it says the water bottles contained only a few tantalizing sips,"" and the text also says "" Ild read once that sucking on stones helps take your mind off thirst by allowing the spit to circulate he wouldnt be trying to get his mind off of thirst if he wasnt thirsty." 1 1 1 +6622 3 "The features of the setting affect the cyclist because it was June and the cyclist had little water. The cyclist was dehydrated and couldnt find any building or water for many miles. The cyclist took advice from oldtimers which didnt know what they were talking about. In conclusion, the weather and the location affected the cyclist." 1 1 1 +6623 3 "The cyclist pedaled through all types of different terrain. Through hills, high desert, flat roads and the woods. This cyclist took the advice of bunch old men who thought they knew a short cut to the Yosemite national park. This short cut turned out to be a nightmare. The cyclist had only brought so many water bottles and was quickly drinking them all. The setting of this story changed a lot making the cyclist at times have to pedal faster and slowes. The cyclist was quickly worn out and started to loose hope in himself. The terrain kept changing making it hard for him not to be thirsty. Eventually he drank all of his water and knew he would die of dehydration or a heat stroke. As he came up over a long hill he saw a bait store and stopped inside to have a drink vowed not to listen to a bunch of old guys again." 2 2 2 +6624 3 "The features of the setting make him happy because he meets some people that tell him of a route that will take a lot of time off his trip. This is what the text says, what I shouldnt have done was let them have a peck at my map. Like a foolish youth, the next morning I followed their advice and launched out at first light along a shortcut that was to slice away hours from my ride."" He also talks about not talking directions from old timers. This is when the text says," 1 1 1 +6625 3 "During the cyclist journey to Yosemite many things got in his way and slowed him down. For example, he listened to the old men who gave him wrong directions to where he wanted to go. Also, his water supply was getting low which drained his energy alot quicker than usual. The heat also played a part of his energy loss. The heat made him sweat perfusely which made the water that was in his body be of no use. " 2 1 2 +6626 3 "The features of the setting affect the cyclist in many ways.For example, he was in the california desert in June.The heat and lack of water can cause people to become dehydrated,passout or even die.There are not many sources of water in the deserts.The terrain didnt help him much either, hills use a lot of energy and made him perspore,causing him to lose flood from his body. The cyclist was greatly affected by the features of the setting." 2 2 2 +6627 3 "The rider in the story Rough Road Ahead by Joe Kurmaskie has a very analyzing mind, which is affected by things around him. At first, the rider rode into the morning...with a smile because of the bright sun, and the cool pines and rushing rivers...he is very confident with the old mens directions, this first sign of disapointment is when he comes to the ramshackle shed... And the ...sight of this was troubling... to him, but he rode on. He thinks as he rides over the crippling hills that maybe this wasnt such a great idea. Finally he comes to a old bait shop, and the modern bathroom that he enters to drink from, gives him relief from the desert he had just been riding through." 2 2 2 +6628 3 "The features of the setting affected the cyclist a great deal. The landscape was hard to ride on, there was intense heat & little water. As a result, it was a long trip and he had a difficult time reaching his destination." 1 1 1 +6629 3 "At first the trip was easy going and flat. It was a nice day out and the water sapply was draining. Soon, the path became hills and soon got rough. Even though the pines gave shade it wasnt enough to help the cyclist. Eventually he reached some what civilization after enduring a grueling climb and by cycle trip through the woods." 1 1 1 +6630 3 "The essay on ""Rough Road Ahead"" is about the dangers of speed and assault. Its just letting you know to follow instructions and read signs. You should always keep close @NUM1/= out for signs and things. " 1 1 1 +6631 3 "Setting that affected the cyclist was water tempeter, rolling hills and condition of the roads. Water was a factor because he need cool water to keep him hydrated he came to a shed with pumps after running out of water. He started pumping the water it was hot but he took it he tried to let it cool down but it didnt. Rolling hills was another a tender to the cyclist hardships because the road started off flat then ended up in hills going up his can strain the leg and makes it harder to keep riding. Another hardship was road condition, it was smooth at frist then it became rough and rocky. Those was some affects the cyclist had to over come" 2 2 2 +6632 3 Setting depends on how you can go or move. The town hills helped the cyclist. The up hills didnt. The cyclist got a bad idea or aditude when he saw the towns he was upset and mad he didnt want to die and yet he though. He was going two. He said he wouldnt trust old men anymore. They didnt know where were talking about .How and why did he trust even in the first place. 2 2 2 +6633 3 "The features of the setting affect the cyclist in many ways.For example, ""I noticed the terrain changing. Flat road was replaced by short, rolling hills."" This quote shows that his surroundings were giving him diffuculty and a challenge for his travel. By describing the hills as ""rolling"" it helps the reader imagine the obstacles he was going through. Also, the sign that read, ""Rough Road Ahead; Do Not Exceed Posted Speed Limit."" gives the reader a feeling that the character is in danger. Lastly an example of the setting that helps shows the charcters hardships is, ""no one in sight, not a building, car or structure of any hand."" If anything were to the happen to the character, as the author was foreshadowing, he'd be stranded and all alone to die. He'd be in trouble and there would be no one to help him. If the author did not use these examples, the reader would not easily get a picture of the troubles he had to overcome. In conclusion these examples added emphasise and meaning to the text. " 3 3 3 +6634 3 "Well the features of the setting affects the cyclist is a lot of ways. Well when his water was is hot to drink He got some pebbles and stuck them, in his mouth. He had heard somewhere that if you do that it will dilute your spit. The terrain of the story was very rocky and hilly. Those are the features of the terrain." 1 1 1 +6635 3 The features of the setting affect the cyclist. The hills afected the cyclist because they would be harder for him to ride The abandoned town also affected him. When he got to the town he was hoping he could get more water and take a break but when he got there the town was abandoned. Also the highway was hard for him because it would be hard for him to ride on. Also there was nowhere that he could get water around him. Many features of the setting affected him. 2 2 2 +6636 3 "The features of the setting gradually contribute to the cyclists anger. For example, at the beginning of the story, the cyclist comes across poisonous snakes, one ramshacke shed, several rusty pumps, and a corral that couldnt hold in the lamest mule. All of sights trouble the narrator, and he starts to becom frightened and neurotic. As he cycles on, the narrator begins to deplete his water supply, and when he stops to restock, the water wouldnt cool down and it had the flavor of battery acid. The cyclists lack of water frustrates him, and the increasing steepness of the hills adds to his annoyance. The final straw came when the cyclist passed by what he thought had been a Welchs Grape Juice Factory. The narrator goes on in an outrage to explain that hopes to die out on the road, in order to spare himself from the dreaded features of the setting. " 3 2 3 +6637 3 "The features in the setting most definetly affect the cyclist while he travels. The cyclist is incredibly thirsty and tired and the setting hes placed in just gives him no hope of survival really. He first comes to a ghost town where he finds no one is living. This first encounter with isolation in a desolute place doesnt really affect him because it is the first place he finds but the rest of the storys setting comes to mimic this. As he travels he is met with barren land, no water and no people in sight. Its June in California and the cyclist fears he @MONTH1 soon suffer from heat stroke if he doesnt find water yet. It doesnt help when he comes to an abandoned juice factory that taunts him with the one thing he needs to survive. All in all the features in the setting make the cyclist lose hope, make him feel like he will die if he dosent find water." 2 3 3 +6638 3 "The setting in the story Do Not Exceed Posted Speed Limit was based in the hot, and dry terrain of California. This setting affected the character mood. It did this because some of its included feature can seem as actual metaphorically based moods. An example from the story is, The cool pines and rushing rivers of Yosemite... this quote from the story could suggest the tone and the mood of the scenery which would be calm, and relaxed. So from the scene that is being seen and the mood it has would also give the character its mood." 2 2 2 +6639 3 The features of the setting that affect cyclist depends where they are located. In this story the feeling on nothing and the desert around him and the heat gave him no hope. It all depends on where you are cycling. It didnt really matter I was going to die. This quote states his feelings on what was going on through his head while he was dieing of thirst. He felt nothing he was sure he was going to die until he found a sign of civilization that was near and he became better and his hope was raised. 2 2 2 +6640 3 "I think the features of the setting affect the cyclist in many ways. It being a long, hot, lonely ride there, had an effect on him. It scared him which made him go longer. He had nothing to drink and thought he was going to die it made him weak. The snake in the way caused him longer and every stop that had once there effected him to." 1 1 1 +6641 3 "I would think even riding a bike for so long can be bad for the behind. But also good exercising especially for the legs all the strength you get from the muscle. To know where you going could take forever. But I do know what they would have to face all types of weather, but as long as you have gear on no harm could come to you." 1 1 1 +6642 3 At first he was mad because he took advise from old men who never left their porch. He got scared he was going to die because had he drunk all his water and he didnt know how long it would be till he got some more. He shouldnt have drank his water so quickly knowing he had a while to go. Then he became happy when he saw the bait sign. He biked quickly down the hill. 1 1 1 +6643 3 "The features of the setting affect the cyclist, in the story Do Not Exceed Posted Speed Limit, in many ways. The cyclist is affected because the setting is depressing and frightening. When the cyclist first sees the speed limit sign of 55 mph, he says, Sometimes life can be so cruel. Because he can only go 12 mph considering he's on a bike. After seeing the sign, a snake crosses his path. Hes frightened by it because it looked like a diamond back and he was trying to keep his balance and ease past it. Since the main problem the cyclist is faced with is the lack of water, the dry, long hills seem to make him more weak and tired. Tumble weeds crossed past him and there was no water in sight That is how the features of the setting affect the cyclist." 2 2 2 +6644 3 "The features of the setting affected the cyclist greatly. It made him become dehydrated. For example, in paragraph @NUM1 sentence @NUM2 he stated I eased past, trying to keep my balance in my dehydrated state. This shows how the heat and climate of the setting affected him by how he was getting thrown off balance and wears to him getting dehydrated. The setting of the story Do not exceed posted speed limit, by Joe Kurmaskie, effects the cyclist in the story." 1 1 1 +6645 3 "The setting in this story greatly affects the cyclist. It is an extremely hot now in California while the narrator in aiding his ride. This causes him to become delighted much faster while he is on a Short hit leading to no where. Wide signs of dried outcast winded my limb, and the growing realization that I could drop from ?? a gorgeous day in June This gust shows how that calm day really was and the fact the cyclist is sweating so much shows how much the weather is affecting him. The rolling hills in the story also affect the cyclist. By cycling towards up and down no often, it secured his journey. It cowed him to the side even longer in getting to a town with water.The deserted knowns in the setting are negatively also affected the narrator. It gave him a hopeless narration because there was no place to stop and depleting his water supply." 2 3 3 +6646 3 "Joe Kurmaskie had a rough time trying to get to Yosemite National park. First, he received directions from an old man, Joe followed these instructions; little did he know that he would be headed for many hardships. After he reached the first town he checked his supply. About @NUM1 more miles he reliced his bottle was getting low because he was travelling through the high deserts of California. It is hot cool out there,then the terrain changed. He no longer had that much water. He ran into a snake, which he swore was a alamond back. Finally, he came to another town, got some water and then left after going through ghost towns. Riding in conditions that are hot and unfamiliar are hard to do. Adding hills to heat is not a good combination, with nothing around val it can be very dangerais, even fatal. Before you bike thinkof what conditions are ahead of you" 3 2 3 +6647 3 because he was telling to make it wirte he nite to go and he much it because he was drieing to soil and because he was drieing 55 mph pert hour and 12 mph and sometime life can feel so cruel in life ya dig and that ia all I can said right now. 1 1 1 +6648 3 "Each time the author comes to a point where the setting isnt very appealing or helpful, he loses hope for reaching his destination or finding a nice place to rest and get some fresh water. For example, the text states, one ramshackle shed, several rusty pumps, and a corral that couldnt hold in the lamest mule greeted me. This sight was troubling (Kurmaskie @NUM1). The author has a sort of negative, sarcastic tone at this point. This shows that hes getting frustrated and losing some hope. He also mentions that the sight was troubling which shows how big of an affect the features around him or scenery can have." 2 2 2 +6649 3 "Lots of features in the setting play an affect on cyclist. Some that @MONTH1 play an affect are the heat, flat road thats had to ride on, or how there" 1 1 1 +6650 3 This essay is an american tale that express how hard it is to do someing. But do it thought determination. The cycle are faced with many change not onnly physically but also menataly. There was no one in sight not a building or anything. As this rider come to think that the sabstatal beating he took from the ride he is tirde and no sight of baidi say he might not be able to do it. 1 1 1 +6651 3 "The features of the setting greatly affect the cyclist. First of all he is travelling through a desert in California in June so the weather is extremely hot and the cyclist needs water, however as he is running out of the water he brought along with himself, he cannot find any other water himself so he is thirsty and almost dehydrated. Also, if frustrates him that when he finds water, not only is it hot it tastes like battery acid @CAPS1, when the cyclist decides to conserve some of his water and go to the next town to get more water, but there is another setback. The condition of the road is so poor, that the cyclist cannot go more that 12 mph. Thus, if he ever reaches the next town. he still will have to wait longer for the much needed water, travelling at 12 mph. The snake is also another setback that the cyclist was fortunately able to escape. Thus his major concern is the lack of water." 3 3 3 +6652 3 "The features of the setting affected the cyclist in many different ways. At first it was a bright shiny day and the cyclist was happy. He reaches the first town which is a ghost town and it makes him sad. Riding on he begins to lose water. The once bright shiny day began to beat the heat down on the cyclist. He reached a ramshackle shed and began to lose hope. He loses water quickly and becomes more dehydrated. The terrain become slopes and hills and the ride become harder, when he reached the grape drink factory his hopes were almost gone. But just over the hill was a fishing shop. He used his reining energy to speed down the hill to get water and get his energy back. " 1 1 1 +6653 3 "The features of the setting, affect the cyclist in many ways. For example, when it says, The cool pines and rushing rivers of Yosemite had my name written all over them. The features of this setting are making the cyclist determined. Another example, is when it says, ""At some point, tumbleweeds crossed my path and a ridiculously large snake it really did look like a diamondback blocked the majority of the pavement in front of me."" The features of the setting are making him brave and couragious. The last example is when it says, I hung my head. The features of this setting are making the cyclist have despair. That is how the features of the setting affect the cyclist." 1 1 1 +6654 3 "In the essay Rough road ahead do not exceed posted speed limit, the cyclist is affect both positivly and negativly by the setting. Setting is the sounding in which the story tacks place. In the story a cyclist loses his way and band is put in to dangous because of it. The setting of the story can be dicrided as mountainous with many rolling hills. The author discride the setting by say @CAPS1 two miles in to the next section of the ride, I noticed the terrain changing. The change in terrain made it more difical for the cyclist. However he also used the land to give him hope that he was almost their. He told him self that hed make it if he make it over the next hill. The setting of the story gave the cyclist hope and problems in his journy to sarive." 1 1 1 +6655 3 "The cyclist was affected by the fact that he took advice from some old men whos information was not accurate. Then he cycled along the desert which was very hot. He had a limited supply of water and that also affected him in a very bad way. He almost had a heat stroke a few times. He was probably angry that he took these mens advice and got himself into this. Then when he found the fish camp, he was overjoyed with relief. But at the same time, if he had asked someone else for directions, he would not have been in this situation in the first place. So its really confusing because he probably felt relived and mad at the same time. And then the other old man asked him did he know the best way there. He was right to say yes because if he didnt, the old man would have gave him some more messed up direction and he would have been out there again, about to have another heat stroke." 3 2 3 +6656 3 "The features of the setting affects the cyclist by rush he /she got when speeding down the hill. The fresh morning air, no limits just you and your feet. Speeding, going as fast as you can with your heart pounding in your chest. No boundarys, when you can go where you like, when you like. No people to get in the way of you and your need for speed." 0 0 0 +6657 3 "In the short story Do Not Exceed Posted Speed Limit it is shown that the features of the setting do affect the cyclist through the story. In the story the cyclist is faced with the mental and physical journey he takes while riding his bike. Being unware of where he is on his journey the setting begins to really affect him. For example as he keeps making his journey he is affected by the old towns and desert places he even says that ""The sight was troubling."" As he continues to California in June the heat and the long journey really began to affect him both mentally and physically. For example he says, ""I got down my hands and knew working the hands of the rusted water pump with all my strength."" The quote shows because he is biking so long is looking water and there is not a town is sight he becomes weak and although he is at terminated to make it through this journey he is becoming more hopeless and sorry for himself because of the setting he is placed in. " 3 3 3 +6658 3 "@CAPS1 directions, June, lack of water all are elements that effect the rider on his ride. He took directions from older people who promised the rider a short cut. I turned out that their short cut was wrong. When the rider went on this trip, it was June in California. It would have been burning hot. Lastly he had drank most of his water during the trip. He could have died if he didnt find the other water source. These were some elements that effected the rider on his trip." 2 2 2 +6659 3 "The feature of the setting greatly affect the cyclist in Do Not Exceed Posted Speed Limit. The features in the story changed the speakers mood throughout his journey. For example, in the beginning he came across a deserted town so he was cautious. Next, he came across a fork in the road which was troubling to him. Then he passed a snake and had the obstacles of the hills which made him become determined. Finally, his determination changed to relief where he reached Gary and Wilbers fish camp. In conclusion, the setting in the story greatly affects the cyclist by changing his moods and attitude towards his journey." 2 2 2 +6660 3 "In the essay, Rough Road Ahead: Do not exceed posted speed Limit, is about a man that follows some bad directions and in the middle of a desert is stuck without water. He starts to lack confidence in the directions when the setting changes. He said, After fourty miles into the pedal, I arrived at the first town it fit the traditional definition of ghost town. He had been told this was a thriving town but was left with nothing. This was a big let down and the cyclist wasnt so positive this had been the right choice. He keeps on riding and finds another dissetling sight. One ramshacle shed, several rusty pumps, and a corral that wouldnt hold in the lamest of mule greeted me. @CAPS1 was another place said to be good but all he got was battery flavored water. On the last strech of his bike met with rough rolling hills, a diamondback looking snake, and an abandoned juice factory. All of this brang his spirits lower and lower until he thought he would die. The cyclist ended up finding a store but he was discauraged by the environment he was in a hot and could have died." 1 1 1 +6661 3 "In the essay, the cyclist is greatly affected by the features of the setting. Under the conditions he could barely survive and make it to his destination. It is clear that the features of the setting are affecting him when he states,The speed limit was 55 mph. I was doing a water-depleting 12 mph. Sometimes life can be so cruel. In his efforts he is slowly getting weaker and the sign he sees only makes him feel worse because it seems to him that it mocking him. He also states, Id read once that sucking on stones helps take your mind off thirst by allowing what spit you had left to circulate. With any luck Id hit a bump and ledge one in my throat. This shows he is ready to give up completely and wouldnt care if he died. From the authors tone, it is clear that the features of the setting do affect the cyclist." 3 2 3 +6662 3 "Features of the setting such as the hot sun, no water, and Gary and Wilbers Fish Camp, greatly affected the cyclist. Since the cyclist was traveling through the high desserts of California in June, the temperature was really high and the hot sun left wide rings of dried sweat on his shirt and made the cyclist realize that he could drop from a heatstroke. Also, the fact that the only water around felt somewhere in the neighborhood of two-hundred degrees and had the flavor of battery acid prevented the cyclist from drinking it and put him in a dehydrated state. @CAPS1, Gary and Wilbers Fish Camp affected the cyclist by solving his problem of dehydration, since there was cold water availible for him upon arrival." 2 2 2 +6663 3 "The features of the setting affects the cyclist in many ways. First of all, if the cyclist didnt listen to the old man, he would have never gone through this trouble. Also being that he didnt have enough water when he went on riding, caused him to be real dehydrated. He should of turned back as soon as he ran out of water. Plus the heat made him real hot and thirsty. He should know how to never trust any strangers and try things on his own." 1 2 2 +6664 3 "The features of the setting effect the cyclist .The setting makes him feel thirsty, dry, hot, and lost. In the story the setting plays a big party in the cyclist's will to ride to the next town. First the cyclist asks directions from a guy that never left his house in decades this creates, doubt. Also in the story it says Tumbleweeds cross my path this makes the cyclists feel lost. Finally it say the water bottles contained only a few tantalizing sips. This makes the cyclist thirsty and tired. The features definatly have an effect on the cyclists." 2 2 2 +6665 3 "In the story Rough Road Ahead: Do Not Exceed Posted Speed Limit, the cyclist is affected by the setting in many different ways. He was biking in the middle of the summer in a very hot state of California. This affects him because he is sweating and he is running out of water and he could possibly become dehydrated. The roads are very hilly so, he has to use alot more energy to get up the hills. Thats why I think the cyclist is extremely affected by the setting in the story Rough Road Ahead: Do Not Exceed Posted Speed. " 2 1 2 +6666 3 "The cyclist had to deal with some tough terrain throughout his ride. First, he was in the high deserts of California in June. @CAPS1 usually brings a picture to my mind of a very dry, hot place. The cyclist had trouble finding water he needed, and thought he might die of heatstroke in the conditions. Also, there were hills. The cyclist said he had to ride over one long, crippling hill. From my experiences as a cyclist, hills are the worst part, especially if youre thirsty. The climate in this story was very hot and dry, and the terrain was full of hills, so altogether, that would make one bad bike ride." 2 2 2 +6667 3 "Snake, heat, hills-all are what the biker had to deal with because of certain settings. He had to deal with a diamond back. He was going through the desert so it was like @NUM1 degrees. While he was biking he had to go up crippling hills. He had a redicuious setting to have to bike with. I would never be able to do what he did." 1 1 1 +6668 3 "The cyclist had alot of problems with his setting. It was very hot and he started getting low on water. This caused him to become dehydrated. There was hardly any civilization so no one could come to his aid. Also, the path he decided to take was long and vigorous." 1 1 1 +6669 3 "In the story Rough Road Ahead: Do Not Exceed Posted Speed Limit, written by Joe Kurmaskie, the author describes the setting as hot, tiresome, and aqusting. You get this picture from the author when the bikerider is describing his surroundings. The bikerider describes his as the high desserts of California in June, being hot and musky, ruff terrain, etc. This gives you an image of what the bike rider feels physically and emotionally. This image shows how tired, thirsty, and determined the bikerider really is. Using words, metaphors, and imagery the author puts you in the shoes of the bikerider emotionally and physically." 3 0 3 +6670 3 The features of the setting affect the cyclist by the people around the area of @LOCATION1. Taking advice from older people in open landed place can affect the cyclist. 1 1 1 +6671 3 In the story Do Not Exceed Posted Speed Limit By Joe Kurmaskie the settings affected the cyclist by how hard his ride is. When the road was smooth He ride was fast when it was the hills it took him longer to get to the next town. 1 1 1 +6672 3 "Varias faetures of the setting affect the journey and mooble if the cyclist in the text. The first feature of the setting that affect the cyclist is the desert. He is traveling through the high deserts of California in June , and this is making him really thirsty. [He] had been hitting [his] water bottles pretty regularly because of this. He later runs out of water, and becomes hopeless. He becomes hopelee because there is no building or establishments anywere in sight. Therefore no water and there isnt a place to get any water. Another feature of the setting that affects him is the people that gave him directions. They told him abait a shoutcut, and he listened. This through everything off, and he was left with despair. Another feature is the Gary and Wilbers fish camp.This lead him to sicocss of finding water. This affected his mood because he had hope again. In conlusio, many of the features of the setting affected his mood in many ways." 2 3 3 +6673 3 "The features of the setting affect the cyclist for many reasons. If the setting is dark trainy, there arent going to be ??? running outside. If it is snowing, the ??? are not going to be swimming in the water." 0 0 0 +6674 3 "That explains how the features of the setting affect the cyclsit. Is because some people dont care about there features. Every body are working for a good feature but, others they @CAPS1 still from people who work. Everyday to have a new features." 0 0 0 +6675 3 "In Do not Exceed Posted Speed Limit by Joe Kurmaskie, the setting affects the cyclist by making him doubtfull. The cyclist is doubtfull that he wont make it to Yosemite National Park. ""It didn't really matter. I was going to die and the bivas would pick me clean, leaving only some expenses outdoor gear and a diary with the last entry in praise of old men, their wisdom and their keen senses of direction. This shows how he is doubtful. Finally in the story the cyclist doesnt think that they will make it." 2 2 2 +6676 3 "In the passage, the features of the setting affect the cyclist because every time he comes along something different a new idea about his survival comes into his head. First, when the cyclist sees the mule he says, This sight was troubling, he is now troubled by the fact that he had not seen a town yet and starting to doubt the old mens advise. Also, when he sees the juice factory he puts some pebbles in his mouth and says, It didnt really matter, I was going to die and the birds would pick me clean. This shows that seeing the broken down juice factory gave him no hope and he tells his self that he will die." 2 2 2 +6677 3 "In the essay, Rough Road Ahead: Do Not Exceed Posted Speed Limit, the setting had a major impact on the character. The cyclist was trying to get to Yosemite National Park, but on the way, he had some troubles, the fact that there was not much civilization affected the cyclist because he was not able to refill his water bottles, so he grew very thirsty. Also, the many hills and the fact that it is summer impacted him greatly because he became tired out more easily and could not pedal as fast. When it says, A tar like substance oozed out Wouldnt cool down, it showed how he wasnt able to drink. Also, when he passed the grape juice factory, it must have been torture to him since he was so thirsty. If he hadnt taken the advice of the men in the first place he would have had a much shorter ride and would not have been so exhausted. The setting affected the cyclist a lot in this essay." 3 3 3 +6678 3 "The cyclist is beginning at what seems a fine idea and place. Then the conditions become hot, dreadful, and maybe sticky. The constant heat without any breeze was getting to the character. Mirages appeared, or so he thought. He actually thought he might die. Not quite an optimistic one is he? It didnt really matter. I was going to die and the birds would pick me clean The heat must have been bad, he wasnt thinking straight and was slowly checking himself into a mental center! Although painful heat was a brilliant way to learn a lesson in cycling, and the old men helping with directions." 2 2 2 +6679 3 "As he began his journey, he had full confidence in the directions given given to him by the old men. After he came to the first town and there was no water, he rode on. After he found an ramshackle shed he became troubled , as he had been hitting his water bottles regularly and was traveling through the desert of California in June and was running low on water. Coming to a place where he saw a building over hills, he manuevered his way down, only to find it long deserted and himself close to despair. He was desparate for water he needed it soon. Finally, he came upon @CAPS1 and Wilbers Fish Camp and quenched his thirst, and was relieved. Then on he wised up, and took no more directions from old men who knew little to nothing about cycling." 2 2 2 +6680 3 "The features of the setting in the story DO Not Exceed Posted Speed Limit, affect the cyclist in the story, in many ways. The first of which would definetly be the lack of water the cyclist had, and the fact that there wasnt anywhere around for miles. From the text it read There was no one in sight, not a building, car, or structure of any kind. This evidence from the text proves to the reader that the cyclist was getting worried. Another part of the setting would be the obvious element of temperature. The cyclist is our in the hot, relentless desert. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from heatstroke on a gorgeous day in June. The author here, by using the elements of nature, is trying to make the reader concerned/scared for the main character. The final key had to travel and the road conditions. Although the desert is flat, he began to notice some hills in the road, and such a long distance, including the heat, could be deadly. The settings elements, greatly effect the cyclist in this story." 2 3 3 +6681 3 "The cyclit of Do not exceed posted speed limit, was greatly affected by the setting of his bike ride, which caused him pain and displeasure. He travels in the high deserts of California in June, which he exaggerates that water there was @NUM1 degers. The great heat caused him to drink lots of water, depleting it much quicker than he wouldve wished. It also sopped the energy out of him, further complicating his ride. Along the way there is literally nothing there and he has nowhea to replenish his water supply. The hilly, rough terrain also calls for hard, tough peddling, sopping even more energy. The heat, terrain, and lack of places to stop combined for an awful ride for the cyclist of this story." 2 2 2 +6682 3 "The lone biker in Rough Road Ahead: Do not exceed posted speed limit by @PERSON1 is strongly affected by the features of the landscape. The sun is the most important factor; it drives him to first consume his water quickly, and then drives him search for a water source.The sun was beginning to beat down, but I barely noticed it...I had been hitting my water bottles pretty regularly, in this quote, it reveals that even though the biker had not acknowledged the sun, his body had required water, depleting his supply in his water bottles. A lack of water feeling two hundred degrees...it had the flavor of battery acid."" The only water that the bike is able to find is not consumable. The most important of the factors, in the matter of survival, is the fish camp that the biker finally reaches. I stumbled into a rather modern bathroom and drank deeply from the sink. The biker had been on the brink of dehydration and the fish camp is where he finally reganed the strength to continue on his journey." 3 3 3 +6683 3 "Dry, thirsty, tedious-all are features of setting that affect the cyclist. First, everything is dry. The cyclist isnt any where near a town that could help him. He has been pedaling in the heat, outside for a long time. Secondly, He is very thirsty. The way he is travelling is a good sign he is in need of water. He went fourty miles before he reached the first town to stop at. He also is on a bike, So that doesnt leave him much room to carry water along. Lastly, the trip is tedious. He has been going for forty miles, and the speed limit is 55. He hasnt acceded 12 mph. All to gether, the cyclists trip seems to be adventure that takes a lot of heart." 1 1 1 +6684 3 "the setting affects the cyclist very strongly in the story because mentally and physically he wasnt ready for where he was going. For example the text states No a better, piece of advice for the solo cyclist would be never. Accept traver advice from a collection of old timers who wasnt left the cosines of theer poiches since calter was in office. So a youg guy took maid advice from older guys about how to get to a pack backin thier day it probably was a shortcut. " 1 1 1 +6685 3 "The setting affected the cyclist because it was very hot and he didnt have any more water also, there arent any towns that had good water in them, until he eventually arrived at this fishing comp. Due to his lack of water, he became dehydrated and really weak. With what I believed was my last burst of energy, I maneuvered down the hill, this quote shows that he was beginning to become dehydrated and losing his energy." 1 2 2 +6686 3 Different settings can effect how well your bycycle ride goes. If it is hot and you have lots of hills it makes it hard. If you have no hills and it is a sunny breezy day it makes it nice to ride. In the essay the biker had no water left but was going down a hill. The going down the hill part was probably easy but the fact that he had no water left was not a good thing. 2 3 3 +6687 3 "The setting from the story left the cyclist in a mental way because most of the time the sun was on his mind due to the fact that he was pedaling hard in a hot summer day in June. The cyclist had very little water and with him biking under a beating sun wasnt exactly helping him. He had to like disasterous events like, peddling slopes than the normal speed, a snake blocking the path, old men telling to take a different route then be infected, and the fact that his water supply was low made him think he was going to pass out under the burning sun. However his determination was strong as he continued on pedaling through and he eventually found himself in another town but this time with people, fish and water." 2 2 2 +6688 3 "From the setting that affected the cyclist are possible conditions such as the weather and surrounding enviorment like hills and streams or even tyes of animals and if they are poisenous or not. The setting has and can change the desision a cyclist makes." 1 1 1 +6689 3 The features of the setting affect the cyclist in many ways. One way is that the hot sun makes the cyclist dehydrated and since there is no water sources around the cyclist is not getting any water. The rough terrain makes the cyclist tired. 1 1 1 +6690 3 "Many features of the carlifonian desert influenced the cyclist during his ride.Ghost towns, rolling hills, and dangerous snakes influenced the cyclists experience during the''shortcut'' to yosenite.The Ghost towns along the journey syndized the world desrting him during his ride by offering no help with water supply as a place to cool dowdn.The road sign warning of rough terrain was another barrier on his bike ride that he had to get through in dehydration to reach his goal,yosenite.The diamondback rattlesnate caused additional horror to the cyclist's'' ride from hell''.He had to manuever around the serpent while unstable from dehydration.All features of the cyclist's riding setting affected his ride to yosenite." 3 2 3 +6691 3 The features of the setting affect the cyclist because if its raining or snowing it affects the cyclist because pavement can be wet and icy. Which causes the cyclist to slip and @DATE1 and the cyclist can really get injured. Also the cyclist has to wear a helmet if its very hot outside you wouldnt see the cyclist in winter clothes. This would make the cyclist unfocus and the cyclist wouldnt be able to finish any race. 1 1 1 +6692 3 "The features of the setting affect the cyclist because he cant go any farther because of the hills, and the snake. When he finds the bait shop hes relieved. He relieved because he can get something to drink. He can also buy the worms to eat. The cyclist didnt really know where he was going because there wasnt a car, building, or structure in sight. So the cyclist just keeps on riding until he comes across the bait shop or the first town as he calls it in the essay. When he comes across the road that has 55 mph per limit, and hes only 12 he knows that hes not going anywhere near Yosemite National Park." 2 2 2 +6693 3 "The features of the setting in Rough Road Ahead: Do Not Exceed Posted Speed Limit affects the cyclist in many ways. First the setting does not look like what the cyclist has been told it lacks like. The cyclist had stopped to get directions from a group of older men whos directions were out of date. Second the conditions of the road affects the cyclist. In the essay the cyclist explains that, Flat road was replaced by short, rolling hills. A final feature of the setting that affected the cyclist was the temperature. The hot sun beamed down on the cyclist. As you can see, the features of the setting in ""Rough Road Ahead: Do Not Exceed Posted Speed Limit"" affects the cyclist in many ways. " 2 2 2 +6694 3 "The different settings in the essay/ writing affect the cyclist because of how old and hopeless they look. I think this because when the cyclist stops at the first town, hes looking around expecting to find a quaint, bustling little place, but instead he finds these abandoned, decimated old houses. And if you yourself can picture being in his situation, then you can imagine how discouraging and almost frightening that must be. As the cyclist continues for a few more miles, hes becoming slowly dehydrated, and finally sees a building. At first, he thinks this building is a mirage; he was wrong, but for him in this situation it was worse- an old juice factory, right when point you kind of get the feeling that every things turning against you and that theres no hope left. But when he finds the fishing camp, his entire perspective of things changes, and he just feels so thankful to have been saved." 3 3 3 +6695 3 The setting affected the cyclist by the people from Lodi get him into the wrong way and he had to survive from there so he that was very dry and No water or nothing to the next stop was at the bait store so he was determined to get to next stop destination by he did want to give up own but the guy ask him did he want direction he said he was not going to be fooled twice. 1 1 1 +6696 3 "It cant be known as, ""easy"" to ride through a desert on a bike. Adding rough pavement, rusty water pumps, and not so friendly animals adds to the discomfort as well. The cyclist in this story encountered all these things, making his supposedly pleasurable ride turn to a semi brutal experience it got down on my hands and knee, working the handle of the rusted water pump with all my strength. Alike substance ooed out, followed by brackish water feeling somewhere in the neighborhood of two hundred degrees, This quote shows how the conditions of his water supply where, which eventually lead him to dehydration. It lead: ROUGH ROAD AHEAD: DO NOT @CAPS1 SPEED LIMIT.This quote also shows how the riding conditions were making the cyclist have a harder time keeping speed. at some point tumberweeds crossed my path and a ridiculously large snake-it really did look like a diamond back-beaked the majority of the pavement in front of me. @CAPS2, this quote show of some of the dangers the cyclist encountered. If these features did not appear, then maybe the story would be describing a nice bike ride, but once you read about them, it becomes more of a disaster." 3 3 3 +6697 3 "The features of the setting affected the cyclist greatly. It was so hot where he was that he kept drinking his water without realizing it until he only had a couple of sips left. The terrain also made him thirsty because the more he had to go up and down hills, the more he would drink. The fact that he did not see any town except on ghost town for miles affected him because he did not think he was going to make it to the next town. The setting played a major role on the cyclist because it affected him that much." 2 2 2 +6698 3 Setting plays a big role in this story. Without being in the desert in the hot @DATE1 there would not be a confict. There would be no importance in saving the water so he would not dehiderate. And the long flat roads are a symbol that the journey has still got a far way to go but as straight roads turn into hills it shows that there is a change in the journey and something better is about to happen. 2 2 2 +6699 3 "The setting affect is used to a great extent in the short story Do Not @CAPS1 Posted Speed Limit The cycleist had beed going for a very long time when he came to the first town and there was no water At this point you can tell that he has lost confidence the old timers"" directions. From this quote; a ton-like substance oozed out. This quote shows how after @NUM1 miles of pedaling when he was supposed to have come to two towns by that point his one chance of water had been depleated. The next time the setting affect is used is when he comes for a building that was rusted out. He said, I hung my head this shows how he almost completely lost all hope and that he was sure that he is going to die." 3 3 3 +6700 3 "The cyclist is affected by @NUM1 couple different things. First, he is given directions that are out of date and then he has to deal with the heat of the weather in the early summer of California. If that wasnt enough, he then runs out of water, which he needs very badly. He runs into a couple more problems, like seeing a big snake and coming to a factory that used to make juice and it was now run down and empty. After all of these obsticles, the cyclist pulls through and makes it to @NUM1 fishing store, where he gets water." 2 2 2 +6701 3 "During the cyclists biking adventure he encounters several interesting situations. Each experience is in response to the setting in which it takes place. For example, this young man starts out confident with a bright hope of eventually reaching Yosemite National Park. The first spot he comes to is a ghost town This sight doesnt immediately affect him, however it greatly adds on to the long term effects. He decides to continue on his treck reaching the next ghost from at this time he is becoming dehedrated due to his lack of water supply He decides to keep persueing his good and figures there must be water up ahead in the next town. In order to get the next town he must encounter some precarious situations including some changes in terrain. Eventually after reaching a source of running water he is overjoyed with happiness and relief. As evident in the provided text this man was effected by each feature of the setting. The different settings greatly affected his nature of confidence." 3 2 3 +6702 3 The setting effects the rider because if its hot you get thirsty and you have no water.This kind of question is hard to answer 1 1 1 +6703 3 "The features of the setting affected the cyclist by making the journey more dangerous and difficult. For example, in the reading it states that rediculously large, poisonous diamond back snakes. Blocked majority of the pavement. So, the cyclist had to keep his/her balance to ease past them. The terrian also changed into short, rolling hills, making it even more difficult. " 1 1 1 +6704 3 "The features in the setting of the essay affect the author in one major way, dehydration. There are several features that causes the author to dehydrate. First off, he is riding throught a desert located in california. This means that there is bent from the sun constintly beating down on him. Also the change from Flat read, (Kurmaskie) to short, rolling hills (@CAPS1) also affected him, getting dehydrated. This change cased him to use more energy to climb up the hills which means he used more water because he got thrister faster. This is how the features in the setting affected the author of the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit." 2 2 2 +6705 3 "The features of the setting in Do Not Exceed Posted Speed Limit affect the cyclist. For example, the tough terrain made it very difficult for the cyclist to reach his destination, Yosemite. He was already very fatigued but had to overcome hills. In the essay, he states, I noticed the terrain changing. Flat road was replaced by short, rolling hills. The setting features also affected the cyclist when he encountered the snake. He was dehydrated and could barely navigate around the dangerous snake. The cyclist explains, At some point, tumbleweeds crossed my path and a riduculously large snake, it really did look like a diamondback-blocked the majority of the pavement in front of me. I eased fast, trying to keep my balance in my dehydrated state. The setting also affected the cyclist because there was no one around him to help. The cyclist describes, There was no one in sight, not a building, car, or structure of any kind. The cyclist was all alone and had to rely on himself to make it to Yosemite. In conclusion, the features of the setting in Do Not Exceed Posted Speed Limit affect the cyclist. He had to overcome ruggid terrain without energy, avoid a diamondback snake, and make it all the way to Yosemite because there was no one around. As you can see, the features of the setting affect the cyclist." 3 3 3 +6706 3 "The features of the land around the cyclist caused him to confront nature. when he began his trip with advice from old coggers he rode out with strong legs and a smile. As he came to the first town, he describes it as a ghost town having no water and no human contact for some time. This should have been his cue to stop and turn around in hopes of another route to Yosemite. But with strong determination, he rods on. Through the miles he incountered a ramshackie shed, rusty pumps, snakes,and the wicked terrain. The short rolling hills tested his inner spirit and caused his dehydration to further. The land around the cyclist not only victimized his heath but also caused a poor way to spend a vacation." 2 2 2 +6707 3 "The harsh features at the setting affect the cyclist by hindering his journey to Yosemite National Park. As the cyclist is traveling along The high deserts of California in June, some problems arise. The heat from the pounding sun in the desert takes a toll on the cyclist causing him to drink more water and rapidly deplet his supply. The cyclist is also traveling through small gost towns rather than stoping at appropriate rest stops in order to refill with water and relax etc. Also while refilling he encounters hazards such as Short rolling hills through ghost the terrain and ever a snake. All of these features in the setting impare the cyclists ability to maintain confidence in wether he will make it to his destination and his positive attitude toward the journey etc." 2 3 3 +6708 3 Cycling is a very good sport people who do cycling are in shape. Also they have strong calve muscles. I think its also dangerous as well. 1 1 1 +6709 3 "In the story the author says, The sun was beginning to beat down trying to keep my balance in my dehydrated state, This gives you the idea that the heat is getting to him and is steadily depleting his water supply. At ore point he almost gives him self up to despair and dies of dehydration. It seems that he will never reach his good and he will continue to suffer in the grueling heat. I could almost feel the sweat and heat that the cyclist was feeling. Also, I could almost feel the lump in my throat when he says, with any luck Id hit a bump and lodge a pebble in my throat. The heat definitely effects this mans cycling in a bad way. He was exhausted and could not go on without water." 2 2 2 +6710 3 The cyclist thought it was hard. Also he was upset that the old timers gave bad directions. 2 2 2 +6711 3 "The setting affects the cyclist in many ways. First, he couldnt get water from anywhere because he was in a dessert with nothing but ramshackle sheds and rusty camps. Second, there were short rolling hills, and rough roads which made it hard to ride on. There were tumbleweeds in his way and large poisons snakes. The heat made it hard to keep riding. And there were no buildings structures of people around to give him a lift or water. That is how the setting affects the cyclist." 2 2 2 +6712 3 "In this essay by Joe Kurmaskie, a young man is baited into accepting outdated information by a group of old men. He pays for it later when on his bicycle, he is almost killed by heatstroke or dehydration. The setting is an excellent way to portray his feelings of hopelessness, despair, and fatigue. While he is just starting out, the road is flat and easy. It is cool and breezy. When he begins to run out of water, the terrain becomes bumpier and harder. He sees empty plains, cracked, dry ground, and the hot sun. He begins to despair even more. After a while when he thinks he can go no more he sees a store that once held gallons of grape juice. He laughs at the irony. The setting does do a wonderful job of describing his sense of helplessness." 3 3 3 +6713 3 "In this pasage the cyclist was affected by the setting because if it had been any were else he would not have suffered or learned at all. Because the seting had botha lack of civillesation and water that he needed that caused him to almost faint of thirst. This is an example of the setting affecting the cyclist, With what I believed was my last burst of energy, I maneuvered down the hill. This showes that had all the setting been paridice he would never learned anything." 2 1 2 +6714 3 "The features of the setting in the essay caused the cyclist to suffer and continue being determined. The author of the essay used phrases such as the sun was beating down and high deserts of California in June to emphasize the extreme heat that caused the cyclist extreme thirst and heat exhaustion. The essay also says short rolling hills, tumbleweeds and long, crippling hill to describe the difficult terrain the cyclist faced that caused him to be tired and slower. Finally, the cyclist is faced with a rediculously large snake and plants and weeds which get in his way and force him to slow down." 2 2 2 +6715 3 The setting effects the cyclist very much. By the very dry climates 2 2 2 +6716 3 "The setting in the story ""Rough road ahead plays a great role on the characters journey. Some features that are mentioned in the story are heat, rough road, long crippling hills and a abandoned Grape Juice Factory. The heat in the story drives the cyclist into a dying thirst. @CAPS1 does her best to conserve her water through out the trip but the dry dessert heat doesnt allow it. Then comes the rough road ahead. The cyclist trys to keep a steady and secure pass as @CAPS1 peddels along the bumps and breaks in the road. The long crippling hills are next in line the cyclist has to use all her energy to work up the hill. @CAPS1 wipes the sweat from her eyes to make sure its not a mirage and then @CAPS1 sees it the abandoned factory. This is where the cyclist loses all hope for if @CAPS1 doesnt receive water soon @CAPS1 is sure to be eaten by the birds. Then, and easily as rounding a band, my troubles, thirst, and fear were all behind me. Gary and Wilber Fish Camp. @CAPS1 rushed to the bathroom to drink the refreshing water to the sink pride and accomplishment overwhelm her." 3 3 3 +6717 3 "The features of the setting affect the cyclist because it gives him the feeling of hopelessness. When the cyclist got directions to Yosemite from these two ??? old people, he thought he was getting a good shortcut. In reality, he was just led on a road that seemed to head nowhere where he saw many things that added to his feeling of hopelessness, for example, the author writes, I toiled on. At some points, tumbleweeds crossed my path and an adversely large snake. It really did move like a diamondback blocked the majority of the pavement in front of me."" This shows that the cyclist is getting tired and seeing tumbleweeds, which usually represents a phase being completely deserted and deadly snakes that get in his way. This answers the question because it shows how the setting leads to his feeling of hopelessness." 2 2 2 +6718 3 "The story Do Not Exceed Posted Speed Limit was a rough undergoing story about a cyclist going though rough climate and terrain. In this story the description was like a scorching path of nothingness for about as far for human eyes could see. In paragraph @NUM1 the text says Wide rings of dried sweat circled my shirt, and the growing realization that I could die from heatstroke. is empressed how the climate felt. This explains the heat and how he felt during this experience. This whole trip sounds suffering." 1 1 1 +6719 3 "The features of a setting can affect the cyclist in many ways. For example, while he was riding in the hot sun he became very thirsty because whe only had a few drops of water left. That is how the setting can affect the cyclist." 1 1 1 +6720 3 "The features of the setting affect the cyclist greatly. They make it hard to concentrate, because its heat, they make it unbearable. The setting has the affect of drowsiness and thirst, Dry bitter lnad, longing, longing." 1 1 1 +6721 3 "In many ways, the setting affected his journey to Yosemite. If the setting wouldn't have been so bad, the long ride wouldnt have been as hard on his body. Since the setting was a very hot day in June, in a California desert, when he did find a well he said, followed by brackish water feeling somewhere in the neighborhood of two hundred degrees. @CAPS1 thing about the setting is, if it wouldnt have been so hot, he wouldnt have needed as much water. And, if he would have gotten the water he needed because it was so hot, it wouldn't have been so physically draining on his body. I know it was physically draining because he said I could drop from a heatstroke on a gorgeous day in June. In conclusion, the setting played a major role in the story." 2 1 2 +6722 3 "In the story Rough Road Ahead: Do Not Exceed Posted Speed Limit The man was riding a bike through rough lands. His adventure wouldnt of been an adventure if he was just riding his bike an flat smooth element. The fact that the hills were steep, rocky and many hills is what made his bike ride what it was." 1 1 1 +6723 3 The features of the setting affect the cyclist is the old timers advice of how to get some were. Than the town they told go to was a ghost town. After he keep going the place that they told him to get water was very old and rusty and he pumped it he gaid tar came out. Than as he made his way in the dessert there way a snake came in the road he go around it. So never take advice from old timers. 1 1 1 +6724 3 "In the story, Do not exceed posted speed limit, the features of the setting affect the cyclist by showing the rough conditions he went through, and somehow perservered through. The author states numerous times the lack of water, and the rolling hills. Followed by brackish water feeling somewhere in the neighborhood of two hundred degrees. This shows the struggle he went through and supports the setting story and how it affected his trip. This also shows how he perserverd through his struggles and made an effort to finish." 1 1 1 +6725 3 "The riders condition was rough, from flat land to rolling hills. This would be hard for some one who is dehydrating. There was a snake in his path so he went around it. This would be dangerous he could blackout from lack of water and then get bit by the snake." 1 1 1 +6726 3 "The cyclist depicted in the essay is greatly effected by his surroundings. First, he described a beating sun and pines and rushing rivers. All these items are very animated things. The river is even described as rushing instead of, maybe violent. The setting is active just like the cyclist. Next, a ramshackle shed is acknowledged, as well as rusty pumps and a bad souding corral. When these old, forsaken things one mentioned, it can be noticed that the cyclist starts being a little in despair. And to tap that off, he drinks water that tastes like battery acid. Battery eats at skin just like the setting is eating at the cyclist." 3 2 3 +6727 3 "In the essay Rough Road Ahead the setting is able to affect the cyclists emotions and moods in both positive and negative ways. As the author travels through the desert he is already upset because it is so hot and water is scarce showing how the terrain is a negative influence. Another example would be when the author first sees the old water pump and he is relieved showing positive influence but the pump oozes a shine like substance he referrs to as tasting like battery acid changing his mood for the worst. Finally, the pebbles he puts in his math show is desperation and willingness to try anything to survive show a new posotive outlook on the desert until a pump lodges are in his thro at making yet another negative influence. All of these feature lead him on his way to Gary and will fish camp and grounded an extra boost on his journey through the desert." 3 3 3 +6728 3 "The features of the setting affect him because it is hot and their is no where to go. An example from the test is when they said ""There was no one in sight, not a building, car, or structure of any kind."" There was also a part where he got to a sign that said ROUGH ROAD AHEAD: DO NOT EXCEED POSTED SPEED LIMIT.The speed limit was 55 mph. He was doing a water a water - depleting 12 mph. Sometimes life can feel so cruel. Thats what affected the cyclist the heart the hilly roads, no water, snakes, rough roads, and most all no directions." 2 1 2 +6729 3 The features of the setting affected the cyclist because where they were.It was like in te middle of nowhere and every person they asked are having all times.They go the wrong directions to the nearest town.The old guy told him it was @NUM1 miles down the road when he went @NUM2 miles to the next town and said to him self he will never take directions from a gut that has all timers and hasnt left the confines of their porches since carter was in office. 1 1 1 +6730 3 "When the cyclist is in the serenity of an early sunset evening, the man enjoyed his cycling just hoping he could cut his time in half. Then, once he got the advice and headed down the road he saw a ghost town which is never good. Next he came to the fork and the town he came to had no water. On the way to the new town he came to the bumpy road and going @NUM1 he was out of water but finally after his determination he made it to a place that was very nice. So as you can tell the features of the scenery road affected him greatly." 2 2 2 +6731 3 I think that the setting made him find more courage inside him self to save his water and go to the next town with out any water. 1 1 1 +6732 3 "The environment affected the cyclist violently in the story do not exceed posted speed limit It seems that all of the harsh conditions of cycling in California all worn down this kid who took some faulty directions from older people at one stop. The heat and lack of water supply made the boy dehydrated. It says in the essay The water bottles contained only a few tantalizing sips. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from heat stroke on a georgus day in June simply because I listend to some gentlemen. this explains on how simply exhausted he had become due to the miles of cycling, and the beating down sun and total lack of water due to absence of all towns. He came to the point of almost dying from heat exhausgen because of the faulty directions of the old people. Next time, he better make sure to keep extra water and stick to the map for directions." 2 2 2 +6733 3 "As the cyclist makes his journey towards Yosemite, the setting causes him much worry and concern. In the beginning, the narrator is content and excited. He is doing something that be lovers, is heading for a beautiful destination, and has found a short cut to save him hours of time. He is confidentin the directions given to him by the old men. However, as he continues down the winding road, his environment makes him doubt theirjudgement. The first town he comes to is entirely deserted.Though at first he laughs it off, he laster realizes just how much trouble he in if he didn't come to a civilization soon. The cyclist runs across ""ramshackle shed[s]"" and shut down factories, and as his water supply sinks lower, the road seems to tantalize him. He passes a water pump (just what he needs), yet the water is something close to toxic. A road sign reminds him not go too fast, though he @MONTH1 die if he doesn't pick up the pace. He is forced to look at a picture ofa happy boy guzzling grape juice as he dehydrates. All there features of the setting, in addition to the overpowering heat and sun, drive the narrator to the breaking point. " 3 3 3 +6734 3 The feature of setting affects the cyclist because every thing that was happing years ago are happen now in todays world meaning wars. Rights & etc todays feature is the same. Every thing is repeating its self. 0 0 0 +6735 3 "When riding a bike it @MONTH1 not seem to hard. For a cyclist every thing becomes more serious. The determination to win and be the best even if it kills you. In this essay he under estimates the dder cyclist. When really they are the people with more knowledge. Some of the things that @MONTH1 be hard for cyclist are the rough roads. Not only having a chance to be killed of dehydration or being ran over. Riding bike is really hard work when having to ride in hundred degree weather. Drinking drink after drink never having any water. No water and it being so hot could cause a heat stroke. As road get worse chances get higher tumble weeds and snakes in the way, he was determined to win. After all was said and he faced the horror that nature brought him he knew he was wrong wrong for them and the intelligants." 2 3 3 +6736 3 The features of the setting affect the cyclist in many different ways. The fact that he was in the California desert and the heat affected him because he had limited water and was using his energy riding the bike. The towns he came across also made an impact on him because of the fact that he couldnt get more water or a place to rest. I was doing a water depleating @NUM1 sometimes life can feel so cruel. This shows how the hilly terrain and dehydration and heat are affecting the cyclist. 2 2 2 +6737 3 Two of the biggest setting in this story is the desert and rolling hills. This would effect the rider becaus of the dehydration that he would experience. Being in the desert would make it obviously hot so you sweat alot and the hills would make it tough on your body because you put extrat strain to get up them. So all together this would be a hard bike ride. 1 1 1 +6738 3 "In the story, Do Not Exceed Posted Speed Limit, by Joe Kurmaskie, the cyclist experiences dehydration on his journey. The cyclist takes directions from older guys who look like they havent left their porches in ages. He takes their advice and he then sukkers in the long run because he cannot find water and it is a hot @DATE1. He hikes uphills in the heating sun and fears a heat stroke. There was no sight, not a building, car." 1 1 1 +6739 3 "The setting will either effect the cyclist in a good way or a bad way. In the story Rough Road Ahead by Joe Kurmaskie it affects the cyclist in a bad way and a good way. In the story, it continues to talk about lack of water. When I tried a drop or two it had the flavor of battery @NUM1). This shows that the heat made the water warm, so it did not cool him down. But a good way it affect them is pebbles. ""I read once that sucking on stones helps take your mind off thirst by allowing what spit you have left to @NUM2). This shows that even though he has no water the pebbles can make him less thirsty. This is how the setting affects the cyclist. In good way and a bad way." 1 1 1 +6740 3 "In this story it is clear how difficult the cyclists journey is. He has to conquer wrong directions, lack of water, rattle snakes and fear of dieng. However he shows great determination and control. An example of his determination is The old guys had sworn the next town was only eighteen miles down the road. I could make that. This shows his determination that he feels he can go on such a long journey. An example of his self-control is shown in paragraphs @NUM1 and @NUM2. When finding this building to be abandoned, and all things, juice, anyone use would have become frustrated and wanted to give up. But not this cyclist he controlled his anger and again showed determination. And it paid off in the end he found his water and survived. This story is a great story that shows determination and self control." 2 3 3 +6741 3 "Early in the morning, the cyclist is eager and ready to face the adventurous path that had been mapped out by the older travelers. He hardly noticed the sun was beginning to beat down. He was calm and was looking forward to the cool pines and rushing rivers of Yosemite. Never once did he imagine what he had gotten himself into. As he began to approach the desert, he noticed he was running low on water. The strenuous activity of biking combine d with the scorching heat of the desert began to take effect. The cyclist was so desperate for water that he had to put pebbles into his mouth. He had once read, that sucking on stones helps take your mind off thirst by allowing what spit you have left to circulate. The cyclist was hoping for a way out of the misery he had come across. Dehydration took its toll, and he felt hallucinations. He was beginning to lose hope. The heat and the hills and the lack of water had the greatest affect on the cyclist. Had he not been riding through a hilly desert one afternoon in June, he would have been fine." 3 2 3 +6742 3 "In the cyclist story the setting took a huge roll on how the story thined out.The water had a lot of effects on the cyclist.The setting of the story took place in the high deserts of california in june.As soon as you read that you now something is wrong.In the story he say ,the sun was beginning to beat down .This is going to affect him because hes riding through the desert on a bike,which causes him to become dehydrated .I eased past,trying to keep my balance in my dehydrated state.Thes begining to lose his mind because he has no water because of the setting.Everything about the setting causes the cyclist some problems.The heat ,the setting ,the lack of water almost causes him his life. " 2 1 2 +6743 3 "The setting affects the cyclist in alot of ways. The first way is that he was riding in the middle of a desert in June. If he was riding in @LOCATION1, it woudn't be painfully hot. Also, the rolling hills probablly didnt help If it was mostly down hill, he would have been fine. Riding a bike up a hill when your tired is near impossible." 1 1 1 +6744 3 "In the story Do not exceed posted speed limit by Joe Kurmaskie the features of the path to @ORGANIZATION2 greatlly affected the cyclist. One the way to the park the cyclist came across a big snake that covered the road which greatly frightened the biker. Also the roads were long and very bumpy and windy. The road werent the most comfortable to be riding on. In the story Do not exceed posted speed limit by Joe Kurmaskie the features of the path to Yosemite National Park greatlly affected the cyclist. One the way to the park the cyclist came across a big snake that covered the road which greatly frightened the biker. Also the roads were long and very bumpy and windy. The road werent the most comfortable to be riding on. There was nothing insight for the cyclist to see. The cyclist did not have much energy because he had no hope for him. The author states, gaining elevation while loosing hope. Last the weather was hot and dry which tired the cyclist out. He had no water with him and with the weather he had no energy or hope to help him through the journey to Yosemite National Park." 2 2 2 +6745 3 In the story Do Not Exceed Posted Speed limit the cyclist expirenced a few life threating times during his adventure. The first feature was when was in a deseret with temptures of @NUM1 degrees and his lit bit of water tasted like battery acid. As he tried to keep going he lost hope and thought he was going to die. This affected him because as he lost hope he thought more negative about things and didnt think he would make it but the he got the agility to move on. In this story the setting affects the characters dramatically. 2 2 2 +6746 3 "The feature of the setting is making the cyclist frustrated, thirsty, and confused. The features are making him frustrated by he thought he was going the right way where he really was going out." 1 1 1 +6747 3 "The features of the setting affect the cyclist because the features are what cause the climax of the story. An example of this would be the line, I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California. This line shows that the author was in a very hot place, being in a desert, but also that he has a low water supply. These two conditions are what cause the climax, which is the possibility that he could collapse at minute from heat exaustion. This is why the features of the setting affect the cyclist. " 2 2 2 +6748 3 "Certin features of the setting affected the cyclist. In the essay by Joe Kurmaskie, he desribes hes experiences when he cycled through the desert. ''...arrived at the first town''...it fit the traditional difinition of a ghost town. ''at first the cyclist was amused at this town and maybe a little scketle at it because the old codgers told it to be thriving. Halfway through his journey the stated ''sometimes life can be so cruel. Water was running low and he still had a ways to go untill he made it to the park and he felt as If it would never end. All that he sees aroun him as hills of nothingness under the sorching son with his limited amount of water. No buildings are around the cyclist. The ghost town and the lack of shade or soluation are very features of the setting that make that cyclist feel like a fool for taking advice from older men. " 3 2 3 +6749 3 "I am going to explain how the setting of the cyclist affected him. The setting of the cyclist affected him by making him very hot & drinking his water & he would soon run out of water & dehydrate. For example in the story the cyclist would always bring up the little bit of water he had left & around the essay he talked about the dehydration he was seeing & even death. Another example is the relif he had when he drink the water from the sink. In conclusion, this is how the setting affected the cyclist." 2 2 2 +6750 3 This paragraph tells about how careful you should be on the roads.This also talks about what you have to be aware of.There so many things that could happen.You have to take control when your on the road. 1 1 1 +6751 3 "The features of the setting in Do Not Exceed Posted Speed Limit by Joe Kurmaskie affects the cyclist in many ways. For example it states This place might have been a thriving little spot before the last world war it fit the tradition definition of a ghost town. This statement is talking about town he arrived at when he was trying to get to Yosemite. This would affect the cyclist because he was riding in confidence in the beginning but then the first town he arrives in looks like a ghost town, which would bring his confidence a little bit lower than before. Just like when people travel when they know where they are going they feel good, but once they come to a place they know then they wont feel so confident. Another example is when he has to ride on rolling hills, and then comes across a Rough Road Ahead: Do Not Exceed Posted Speed Limit sign. This would affect the cyclist because then he would be frustrated and stressed out because he rode all that way and not he cant go any further, and that is not the place he wanted to be at. Therefore the features of the setting in Do not Exceed Posted Speed Limit by Joe Kurmaskie affects the cyclist." 2 3 3 +6752 3 "The conditions that the bicyclist faced that affected his trip were various amount of things that could really screw your ride up. Some of the conditions were hot It was very hot and that makes it hard to think fast, move fast and make good decisions another would be there was lose gravel and that makes it tough to maneuver and you have to watch your speed. So hes not going anywhere in a hurry. also there were lets of hills and that makes for an uncomfortable ride and a tiring one atthat. Adding to that he was fresh out of water and that can mean dehydration again bud judjment and even heat stroke or exoustion another bad thing is he was in the middle of nowhere so its not like he could stop. Some where we asks for a drink to, there was nothing around for miles. These things show how rough the rode was made because these conditions exsisted." 2 2 2 +6753 3 The setting was very hot dry and was a desert. This setting effected him be it was making him very dehidarted and hot. It was very hard for him to go any fourther but he knew he had to keep going. Also the land was very barin and ething around. Clearlier the setting effected the biker. 1 1 1 +6754 3 "The setting affected the cyclist because they were in California in June traveling back rodes, with no place to stop for water, if the cyclist would have followed the path they intended on following the ride probably have been more enjoyable and he/she wouldnt of had to worry about a heatstroke or running out of water, they would have been fine." 1 1 1 +6755 3 "The features of the setting affect the cyclist greatly. There were hills and rocks, snakes and no buildings or people. The hills and rocks would make it much harder to to stay strong and be able to keep riding. The abandoned building and there being no people, could affect him emotionally. It would make him loose hope and the determination to keep going to find destination. He did not think he would get that after seeing a deserted town. After all, he did say, It didnt really matter. I was going to die (Kurmaskie)." 3 2 3 +6756 3 The main features of the setting that affected the cyclist are the fact that it was June and the dessert heat. I could drop from heat stroke on a gorgeous day in June. (kurmaskie @NUM1). This helps us realize how bad the heat is in June in the middle of California dessert. This affected the cyclist by his dehydration and the fact that he was inthe middle of no where with no one to help him. This is how the month of June and the dessert heat affected the cyclist. 1 1 1 +6757 3 "The features of the setting greatly affected the cyclist in this story. First, when he got to the road sign that said Rough Road Ahead he was already low on water, but that made things much worse. The rough road made it harder for him to pedal; therefore, he was working harder and getting thirsty. Also, when he stopped at the old Welchs Grape Juice Factory, he noticed some pebbles on the ground and shoved them in his mouth. Id read once that sucking on stones helps take your mind off thirst by allowing spit you have left to circulate. Lastly, GARY AND WILBERS FISH CAMP, could possibly have saved the cyclists life. He stopped there and finally got a well deserved drink of water to settle his dehydration and fear. The setting and features severly affected the cyclist throughout his journey. " 2 2 2 +6758 3 "In Rough Road Ahead: Do Not Exceed Posted Speed Limit, the features of he setting affect how the author feels. In the beginning of the essay, the author is confident and happy, and the setting is, a reservoir camp ground outside at Lodi, California (Kurmaskie @NUM1). This sounds like a good place to be refreshed and to feel confident. Later into the bike ride, the author is affected negatively by the barren area he comes to when he says, This sight was troubling"" (Kurmaskie @NUM1). Finally when he reaches a modern store, he is relieved due to the modern facility when he states, Then, as easily as rounding a bend, my troubles, thirst, and fear were all behind me (Kurmaskie @NUM3). The area the author goes through has an effect" 2 3 3 +6759 3 "The features of the setting affect the cyclist because they dont ride as much anymore and dont know the best routes to take. So they just take their old routes, thinking they are still the better way, but when they use them they realize how tiring and bad they are." 1 1 1 +6760 3 "At some point, tumbleweeds crossed my path.. being out in the desert with limited or no water can make one feel like life is very cruel. The sun was beating down and no water or shade is seen when he reaches a point. The sign that said Rough @CAPS1 ahead; Do Not Exceed Posted Speed Limit. had to be intimidating. Considering he was on a bike he could only move so fast. Those old men probably were never off their front porch since carter was in office. yes like the writer said the world is a fluid place. Things change. The old men probably had close to no due what they were talking about considering things have changed since @NUM1 (when carter was in office). The snake that he came upon, must have been rather intimidating. Knowing there is a creature like that, there is bound to be more. In eseance I think the setting was a major part why the cyclist felt that way" 3 2 3 +6761 3 "From what there is in this picture the cyclist is riding a dry and area which could mean that it is very hab and the cyclsit looks to be going down hill there looks to be a lot of turns. From the body position of the cyclist he seems to be trying at his best and hardest to make it to his destination. All of this could be a bag stress on the cyclist, he maybe sweating really hard and maybe tired the wind @MONTH1 not be helping him at all." 1 1 1 +6762 3 "In the short story Rough Road Ahead: Do Not Exceed Speed Limit by @PERSON1, a cyclist travels through an extreme climate and tough terrain that nearly end his life to get to his destination. After getting outdated directions from some elderly locals, the protagonist sets off on his journey to Yosemite National Park. Soon thereafter, the cyclist notices something is amiss. The first town the locals said hed find is deserted. And now, twenty miles into his journey, the cyclist needs to refill some of his water supply. The water pump there has the flavor of battery acid. With the next town @NUM1 miles away, the cyclist struggles to conserve his water to make it there. Even then, things get worse. As he is, traveling through the high deserts of California in June, flat road was replaced by short rolling hills. @CAPS1 tell him not to exceed the speed limit of @NUM2 as he does a water-depleting @NUM3. eventually, even on his few sips of water, the cyclist finds a spot to fill up on water, knowing now to strike out on better days and better directions." 2 3 3 +6763 3 The features of the setting affected the cyclist. When she was riding it was very hot this caused the cyclist to lose energy and dehydrate. Also when the cyclist went through a terrain change. The road changed into rolling hills. This caused the cyclist to become tired because after riding up and down your body gets tired. Also being as the weather was so hot this caused the cyclist to drink a lot of water. Eventually she ran out and then got dehydrated. This whole situation implied to stick to your original plan. If the cyclist would have done that she wouldnt have had to go through the hardships. 2 2 2 +6764 3 "Each new feature of the setting in the essay entilled, Do Not Exceed Posted Speed Limit, by Joe Kurmaskie, affects the cyclist in some way. For example, in the text , when the narrator stated that he had to avoid a ridiculously large snake crossing the road, he became more aware of his surroundings and almost seemed to forget how thirsty he was until he finally abided the large reptile. Also in the text, when, over one long, crippling hill, a building came into view, hope was replenished into the cyclist. This hope allowed the narrator to because more tenacious about his journey in order to arrive at the old building. Eighther for better or worse, a few feature of the setting arrives and affects the cyclist every step of his journey. " 3 2 3 +6765 3 "Many features of the setting of the cyclists excruciating trip affect him mentally and physically. When he first sets out, the pine trees and rivers kept him cheerfully riding through the landscape. When he sees the corral and the rusty pumps, he becomes discouraged and begins to notice his tiredness and thirst. When the cyclist encounters a rough terrain with tumble weeds and snakes, he is both mentally and physically exhausted. He begins to doubt his consciousness and worries that he @MONTH1 not complete the journey. The abandoned grape juice factory is also a let down for the cyclists mental state. When all hope is seemingly lost, he finally comes across water, and his unique (but very important) lesson is learned." 2 3 3 +6766 3 "The features of the setting had an affect on the cyclist. I know this because in the story the cyclist said that he was going to drop from heat exsostion, he is riding through the desert in @DATE1, and he took directions from three old gentlemen sitting on a porch." 1 1 1 +6767 3 "The features of the setting affected the cyclist. First since he was in a desert, the heat of the desert greatly dehydrated him on his journey to the parts. Also, the bumpy roads and rolling hills slowed the bike down to 12 mph since it was to extreme for him to handle at high speeds. When he sees the fist building because he fist is relived but soon after he loses all his hope because it is desserted. Even the old men that living in the area have an affect on the cyclist because they give him out-dated directions that almost @CAPS1 him. Because of this, he will probably rest first an old mans short tentS again. This is how the features of the setting affected the cyclist." 2 2 2 +6768 3 Well first off its very hot and dry witch can dry a person out easily. And the hills are hard to get up so it would be a challange to get to the top. All I know is the lack of water can kill you if you get heatstroaks easily. 1 1 1 +6769 3 "In the essay Rough Road Ahead: Do not Exceed Posted Speed Limit by Joe Kurmaskie, the features of the setting affect the cyclist. At first the cyclist thought that the journey he was about to go on was going to be a good one, but that soon changes. For example, Never accept travel advice from a collection of old-timers who havent left the confines of their porched since Carter was in office. This quote tells how at first the cyclist thought his journey was going to be a good one, but getting information from two old men soon changed that. The features of the setting affect the cyclist in the essay Rough Road ahead: Do not Exceed Posted Speed Limit. " 1 1 1 +6770 3 The features of setting affect the cyclist in that a desert-like temperature and the terrain on which he must bike make him more prone to thirst and exhausting. The heat @MONTH1 cause the cyclist to dehydrate faster than normal. This is especially true in this case because of his lack of water. The cyclist might pass out or suffer a heat stroke. The terrain of rolling hills will tire out the cyclist quicker than if he were still on the flat road. His muscle will start to ocha and his body will need water and rest. The story would totaly change if the setting were different. If the cyclist were biking in the @DATE1 on a cold day in the mid @NUM1 he would not have a chance of suffering a heatstroke. There would be a significantly less chance of him becoming dehydrated. The setting is very important in every story and can change everything. 2 2 2 +6771 3 "In Joe Kurmaskies essay Rough Road Ahead, the speaker is biking through some rough terrain in blistering heat, not to mention long distances. He has to ride up and down small and large hills through what he believes is a shortcut to his destination. He has a limited water supply, and he keeps coming cross ghost towns, where the only water is boiling brackish water that is unfit for human consumption. Probably the worst setting feature for this guy as the Welchs Grape Juice Factory (abandoned of course). Adding salt to the wound was A sandblasted picture of a young boy pouring a refreshing glass of juice into his mouth could still be seen (kurmaskie @NUM1). To the narrator with his dwindling water supply, this billboard was especially daunting to him on his journey." 2 2 2 +6772 3 "Desert, Hills and road condition and lack of water all are how the setting affected the cyclist. First, the cyclist reveals he is in the desert when he exclaims, I was trave ling throug the high deserts of california in June. This means it was hot. Second the hills and road conditions were horrible. The cyclist reveals this when he describes, flat road was replaced by short rolling hills, aid againg It read: Rough road ahead: Do not exceed posted speed limit. Lastly, He had thought that he would have stops on the way to get water from. So he drank all the rate he wanted. He then figured out the needed to conserve it but by then it was too late. The examples shows that the cyclists condition was harder than he expected them to be." 1 1 1 +6773 3 The features of the setting affect the cyclist. The winding road could affect his turns because he could turn to far one way and fall off his bike and get hurt real bad. Another feature that could affect the cyclist is grass on both sides of the road. If he tireds to take a short-cut and goes into the grass he could he could hit a rock and flip off his bike and get hurt. That is what the feature of the setting could affect the cyclist. 1 1 1 +6774 3 "The setting of where the cyclist was, was a californa desert in the middle of June. He thinks hes going to die towards the end because of the directions he got. Never accept travel advice from a collection of old timers who havent left the confines of their porches sinse carter was in office. This means to never take directions from people who havent been to the place for a while." 1 1 1 +6775 3 "The setting was a hot desert in California that a biker got stuck in going to Yosemite National Park. These settings were hard on the cyclist. For example, he listened to some old people who led him the wrong way and could have had him killed. He was running out of water and his legs felt like they were going to break off. All of these troubles did affect his trust in old locals though. He learn that just because they are old and looks wise they have information probably older than the artifacts at a museum. Besides he has a trust map: He got a lot from this trip." 2 2 2 +6776 3 "The features of the setting affect the cyclist in many ways. For example, in ghost towns, there is no-one to ask directions from or to just talk to. Also, some pumped water from water pumps tastes like battery acid and could most likely make some one sick. Also, there are poisonous snakes and other dangerous animals." 1 1 1 +6777 3 "There are many features in the story, ""that affect the roles, like out of waters, bad directions. The narrator is ??? and says, ""the water bottles container a few tantalizing sips.. it is say that there is hardly any water left , and he still have to keep going on, until he can find some In the story water is something he has to over come because he is out of it by the time he gets to the fish store." 1 1 1 +6778 3 "In this @ORGANIZATION1 I will explain how the features of the setting affected the cyclist. In the short story Rough Road A Head Do Not Exceed Posted Speed Limit, The whole ordeal occurs in the high deserts of california. @CAPS1 to the text the cyclist had taken out of date direction from elderly people who thought they new the way. The cyclist encountered a snake, ghost town ad shutdown factory. Most of the time the cyclist was going over." 1 1 1 +6779 3 The setting in Do Not Exceed Posted Speed Limit adds drama into the story by how it affects the cyclist. He was tacking through the high desert of California in June. June is a hot part of the year and since he was in the hottest desert part the hot was multiplied. The terrain changing into short rolling hills didnt help the cyclist. The hills would make any riding more difficult. Anyone who ride a bicycle knows it takes more effort to go up a hill than on a flat pavement. With the person lack of water anyone would be struggling to keep riding on. Most people didnt have that hints to keep moving. He didnt set a very goal he just went to the next Horizon. Shouldnt he just wanted to keep going. Another problem with the physical environment was the road conditions. When the Rough Road Affect sign appeared the travel then become more difficult. A bike tire take more effort to go over uneven pavement is why the cyclist had so much trouble. 3 3 3 +6780 3 "In the story Do not exceed posted speed limit by Joe Kurmaskie the setting affected the cyclist in a hard way. With only a few sips of water left he said'' abandoned years earlieR, by the looks of it it had been a @CAPS1 Grape Juice factory and bottling plant. A sand blasted picture of a young boy pouring a refreshing glass of Juice into his mouth could still be seen. I hung my head.'' When only having a few drops of water and seeing that would have increased my thirst more. Another way the setting affected the cyclist in a hard way was "" The speed limit was 55 mph. I was doing a water-depleting 12 mph. sometime ife can feel so cruel.'' This remind him that hes not in a car, and that hes not even going half the speed limit. The setting affects the cyclist by reminding him how long his journey is, and now at this point he is suffering." 3 2 3 +6781 3 "In the essay, Rough Road Ahead:Do Not Exceed Posted Speed Limit, the setting the cyclsit is in effects him greatly. One evening when he was resting he got into a deep conversation with a couple of elders. Eventually they got to talking about his journey, and the two men gave him direction for a shortcut. But on that morning it fit the traditional definition of a ghost town. When he arrives at the first town, he finds it deserted, this effects the cyclist because has eventually going to need more water. As he continues, he comes to a slep in the road. After I had arrested the first few of these a large highway sign jumped out at most read:ROUGH ROAD AHEAD:DO NOT EXCEED POSTED SPEED LIMIT This sign was indicating that the road was going to be bumpy, which makes it even more challamging for the cyclsit. So, the setting is very important in this essay because it has a lot to do with how the cyclist feels. When the abandoned towns come into pray, no enging to feel hopeless. When the road get bumpy, he gets tired. When he gets to an actual running store, hes relieved." 2 2 2 +6782 3 The feature of the setting affects the cyclist because the features is just a brief preview of what the text is going to be about or who is involved in it. The cyclist gives you what you want and need to know so the affect would be about time the feature is finish play in noone would want to see the cyclist. 0 0 0 +6783 3 "In the story, ""Rough Road Ahead: Do not Exceed Posted Speed Limit,"" by Joe kurmaskie, the features of the setting affect the cyclist. The setting of a story is the background, place, and time the story took place. In the story, a cyclist needs to get to @CAPS1 Park. He stops and gets direction from a group of old men, who arent up with the times, and the cyclist gets lost. He faces drought, a snake, and being lost in the desert, the cyclist says, ""At some point, tumbleweeds crossed my path and a ridiculously large snake it really did look like a diamond back blocked the majority of the pavement in front of me. I eased past, to" 1 2 2 +6784 3 "The cyclist choose the worst time to ride his it was an early summer evening in California. At this time the sun is hot and with little water and also lost, it was hot the best choice that he made. A cyclist before do a trip he or she should be prepared for whether conditions and also check a map of the place before going anywhere. " 1 1 1 +6785 3 "The cyclist run into a diamond headed snake, is out of water and is in the middle of nowhere the thing I would do is find some rope or cord time old building or tree and hang myself for taking directions from old people that havent left their porches since carter was in office." 1 1 1 +6786 3 "The features of this particular setting affected the cyclist in many different ways. Upon arriving at the ghost town early in his journey, he felt slight amusement at the situation. But he soon became very troubled when he became aware of the several rusty pumps and a weak corral, next to a ramshackle shed. The cyclist additionally experienced a bit of irony as he approached the 55 mph speed limit sign complete with a warning to strictly obey it. On his bicycle, at a pace of 12 mph, he could not even reach the 55 mph speed if he had wanted to. Before he reached what appeared to be an abandoned welchs Grape Juice factory, the cyclist felt this twisted amusement yet again, as he laughed. The text states, It was a sad hopeless laugh, mind you, but at least I still had the energy to feel sorry for myself. @CAPS1, his suffering was through when he discovered a fish camp, with a modern bathroom and working sinks. The cyclists relief was so immense that he, had an overwhelming urge to seek out Gary and Wilber (the owners), (and) kiss them." 1 1 1 +6787 3 "The setting of this story takes place with a man biking and then taking advice from old timers to a faster route. The biker knew from the start that he should have not given his map. But thinking the old folks knew the route he took theyre advice. What the biker should have done was look for someone to ask and make sure the route would work. But jumping to where he wanted to go led him to dehydration and much more struggle than needed. You should always think things out before you take action, just to be safe." 2 1 2 +6788 3 The features of the setting affect the cyclist because he first didnt know where he was going and took directions from people that he wasnt really sure about. It was hot he was running out of water he had no idea where he was there were snakes. His water was running out. there were no sings he kept thinking that he would never take directions from an old guys and that he would stick to the future. 1 1 1 +6789 3 "At first when he gets the directions from the old men, he thinks he will be fine. When he gets to the first town hes tired and almost out of water, but still thinks he will be in Yosemite soon. When he gets to the water pump in the middle of the desert, hes tired and thirsty and he realizes that the directions the old men gave him were out of date. Hes really not happy about listening to them and not following his map. When he gets to the fishing place he is greatful for the water in the sink and for the rest and when the old man offers to give directions to Yosemite he thinks he will just use his map. Throughout the story the cyclists needs change from feeling confident to feeling depressed to feeling relived." 2 3 3 +6790 3 "In the story Do Not Exceed Posted Speed Limit, the setting seemed to affect the main character (the cyclist) very much during his pedal, for example, whole the dry desert setting made him think that he could survive with out water, he became dehydrated. The first town, with @NUM1 degree watter could not satisfy his standards. The old velches June factory, was all run down, and is no longer in business, much like the desert, just old barren unuseland. While yes the cycalist survived the pedal, the desert setting opposed a great challenge for him. " 2 2 2 +6791 3 "There are many features of the setting that effect the cyclist. One feature is that it is getting hotter and it will eventually effect him. The line I wiped the sweat from my eyes to make sure it wasnt a mirge. shows that the heat might be starting to effect him. Another feature is that he is in the desert and running low on water. The line I had been hitting my water bottles pretty regularly shows that he is drinking a lot of water and is running low. Another feature is that he is riding in the high deserts of California in June. The story says and I was traveling through the high deserts of California in June. Not only is it in June, but it adds heat because he is also in a desert. There is no doubt he will get dehydrated. Those are some of the many features that effect the cyclist." 2 2 2 +6792 3 "The setting affect the cyclist because it creates that deserted atmosphere and helps set the mood of the essay. The mood of the essay I think is a sort of dry summer day, the sort of oh my gosh, its really hot, type thing. The setting is a dry summer day in June, with a deserted town, tumble weeds and more to contribut to the hopeless feeling. Although he was secured, and didnt die, it seemed like he would surely not make it judging by the lack of water, scorching hot sun, and distance, with enduring these conditions. So the setting affects the cyclist in a way that could have killed him." 2 2 2 +6793 3 The features of the setting affects the cyclist because the old guys had worn the next town was only eighteen miles down the road. So the features affect reading the story Do not exceed Posted Speed Limit was very dangerous and unsafe for people to ride on. 1 1 1 +6794 3 The setting effected the cyclist because it was bumpy and had a lot of hills which means he has to work harder. Also because of the heat he was getting dehydrated in the story after the cyclist had Been rideing a long time it says I eased past trying to keep my balance in my dehydrated state (kurmaskie @NUM1). The cyclist had very little water for his long trip 2 3 3 +6795 3 "The way the features of the setting affect the cyclist I think is disgardment. First of all, a reason would be because at the beginning of the story when the warning sign is passed, the cyclist disgards it by going down the hill anyways. Also, it states that it rode into the morning with strong legs and a smile on my face." 1 1 1 +6796 3 The features of the setting affect the cyclist because he went through many ups and downs. At one point flowed by blackish watter feeling somewhere in the neighbor of two hundred degrees.. weather wouldnt cool down. 1 1 1 +6797 3 "The features of the setting affect the cyclist because they caused him to need water. He was worn out because the setting was so intense. Not two miles into this next section of the ride, I noticed the terrain changing. Flat road was replaced by short, rolling hills This quote from the text shows that the cyclists terrain was changing and they affected him." 2 2 2 +6798 3 "The features of the surrounding landscape affect the cyclist both physically and mentally. First, the sun constantly beating down on the cyclist causes his or her body to sweat more, which makes ones body use more energy. The sun rays also add to the heat the cyclist feels. Also, the rough road forces the cyclist to pedal very hard, which drains him or her of even more energy. For example, when the cyclist in Do Not Exceed Posted Speed Limit reached the rough roads, he had to pedal harder, which made him sweat more, and caused his amount of energy to decrease. Finally, the lack of civilization can make a cyclist feel hopeless, which is how the cyclist in the essay felt when he had no water or could see no nearby town. This can affect the cyclists will to keep pedaling, and if they have no determination, the cyclist will not go anywhere. The features of the setting can physically exhaust and mentally strain the cyclist, which makes it harder for him or her to keep going" 3 2 3 +6799 3 "Snake, heat, hills-all are what the biker had to deal with because of certain settings. He had to deal with a diamond back. He was going through the desert so it was like @NUM1 degrees. While he was biking he had to go up crippling hills. He had a redicuiou" 3 2 3 +6800 3 "The setting acts as a catylist in this story. It is the aspect of the story that is always challenging the character untill the very end. In the story it says Flat road was replaced by short, rolling hills."" This is showing that the terrain is opposing him. Also in the story it says The speed limit was 55. I was doing a water depleted 12 mph. Sometimes life can be so cool. This is not only showing how much the elements are owning him it also shows how is risle he is, and how satiricle life can be. The ultimate @CAPS1 in this story is when he stumbels across the welches grape juice factory and there was a piture of a boy ""pouring a refreshing glass of juice in his mouth. No matter where the cycalist goes he is alway trying to overcome the elements." 2 3 3 +6801 3 The features of the setting affect the cyclist in many ways. For example the lack of water begins to take a toll of how fast he can get to the next town. Another example would be the terrain only slows him down more. 1 1 1 +6802 3 "The features of the setting affect the cyclist by making him use up the last of his water because its hot, and than theres no one around because he's out in the deserts of California. I wiped the sweat from my eyes to make sure it wasnt a mirage (@NUM1.). This exert from the test supports my previous statement about how its hot because the speaker tells us how hes sweating and that he might be seeing a mirage. There was no one insight not a building, car, or any structure of any kind (@NUM2.). This shows that there is no one around to help him if he falls down from a heat stroke or anything like that. So the setting is affecting the cyclists endurance." 2 2 2 +6803 3 "The features of the setting affect the cyclist by making it more difficult to ride. Flat road was replaced by short, rolling hills. I could drop from heatstroke on a gorgeous day in June. a large highway sign jumped out atm. Rough Road Ahead: Do Not Exceed Posted Speed limit. sometimes life can feel so cruel. The fact the it was such a hot day made the ride seem longer. When out of water you feel exostied. You will do just about anything to try to with stand the heat." 2 1 2 +6804 3 "Author Joe Kurmaskie learns the dangers of a lifeless wilderness during his experience described in do not exceed posted speed limit. As a cyclist riding in one of the most undeveloped areas in California, the lack of water found in this setting proves crippling to his survival. The trails he was directed to had no towns or sources of fresh, drinkable water for days. The combination of constant exercise riding through the terrain, lack of water and recources, California summer weather and lack of civilization trained the authors energy and caused him to suffer from dehydration. Too much exposer to these conditions could have killed him. The modern time period and year also caused the directions the author were given to be in accurate, and, thus, causing the cyclist to find him self in such a dangerous area of the country. The setting of do not exceed posted speed limit places the cyclist in a life threatening situation." 3 3 3 +6805 3 "The features of a setting could be a number of different things. It could be snowing and cold, raining and of course wet, hot and dry, breezy and humid. The features could be a busy tough or a solitere country road, there could be rough terrain or straight aways. The setting of a place puts pressure of the reality of what will happen on a cyclist. In the essay a young cyclist takes advice from some elderly man and ends up riding through hot sun and ghost towns not knowing if he would survive. The heat had him feeling as though death were coming on him and the thirst had him becoming more determined to get to the next town so he could survive. If the features of the setting had been different, say he was riding on a flat road in a busy town with a breeze and places to stop for water everywhere he would not have feared for his life. The features of the setting affect how the cyclist feels and thinks. He can feel angry, happy, sad or scared and he can start to think about his own death. These have been what I believe some of the effects settings have on cyclist." 2 3 3 +6806 3 "The features of the setting affect the cyclist in many ways. For example when the author says flat roads were replace by short rolling hills, that made the author have to ride safer. Also, when he says, the ridiculously large snake blocked the majority of the pavement. The author had to slow down on his bike and find a safe way around it so he could get past. Finally when the author says no one in sight, no building, car, or structure, he is affected because he cant ask questions since hes lost and hes thirsty. The setting makes it hard for the author to maneuver and get to where he wants to go." 1 2 2 +6807 3 The features of the setting affect the cyclist because the person who rode the bike was very tired his legs and body needed a rest after riding on his bike for @NUM1 miles into the pedal. Also it effected the cyclist because of all the riding he had to do struggleing to get where he was trying to get but he was a strong man and he was willing to finish his forty miles of pedaling. He was also restless but he did it. 1 1 1 +6808 3 "The features of the setting affect the cyclist in, Rough Road Ahead: Do Not Exceed Posted Speed Limit, because it goes to many different terrains. The cyclist starts at a town and his working his way to Yosemite when he decides to listen to a group of old men. He started out strong until he got to the first town, which was totally abandoned. He kept going to another abandoned town. He decided to keep going until he saw a sign. The terrain was a lot diffrent with rolling hills and tumbleweed rolling by and a snake. Through listening to the old men the cyclist almost died from the threatening heat and lack of water. The setting affected the cyclist even more seriously than he could have imagined." 1 1 1 +6809 3 "In the story, the setting greatly effects the attitude of the cyclist. When he starts out, it is an early summer evening, he is serene while he is talking to the old men. He starts cycling the next morning and he is thinking of Yosemite, he is relaxed and confident however, his attitude about the day changes greatly when he comes across the rumshackle old shed, rusty pumps, and a corral at the park in the road. He becomes a little worried but he is not discouraged. When the terrain changes, he is a little discouraged. Then, when he comes across the abandoned factory, he is most definately a lot discouraged. A little later he comes across @PERSON1s Fish camp, he is very relieved and thankful to the owners. The cyclists attitude changed depending upon whether the setting was very beneficial to him or not." 3 3 3 +6810 3 "The features of the setting have a great affect on the desperate travels of the weary cyclist. The sometimes disappoint, sometimes uplifting, scenery he passes affect him physically and emotionally when he passes a portrin the road with nothing but a ramshackle shed, several rusty pumps, and a corral he becomes disturbed. The cyclist is running low on water when he becomes even more distraught at a road with a speed limit posted as 55 mph, when he was, doing a water-deleting @NUM1. The setting of the hot, June sun affects the cyclist and puts him in a state of dehydration. In an, ironic twist the cyclist is affected emotionally when he passes a @ORGANIZATION1 factory that has been abandoned. The factory features a picture of a boy pouring a glass of juice into his mouth which upsets the thirsty cyclist." 3 2 3 +6811 3 "The features of the setting affect the cyclist more than anything in the reading of Rough Road Ahead: Do Not Exceed Posted speeding Limit. In the beginining when the cyclists had just begun his cycling cause he uses a positive tone to describe the setting. For example, in paragraph four he says the cool pines and running rivers of Yosemite had my name written all over them. When he says this the reader imagines someone in an ??? more excited as ??? ??? ??? ??? his destination on a dry day. As the cyclists attitude becomes lower the reader makes the connection what ?? ?? then because of the setting. In paragraph thirteen when the cyclist says, I wiped the swear from my eyes to make sure it wasnt a mirage and that not to get too excited the reader can make the connection that it is getting pretty serious for the cyclist to continue as is. Overall as the setting changes to burning sun and extremely hot, with a shortage of water the cyclist becomes more sarcastic and less upheat. For example when taking about the rocks in his mouth he states with only luck Id hit a bump and lodge one in my throat. This shows a bad mood affected by the features of the setting." 3 3 3 +6812 3 "The raugher the road gets for him the more determination he has at the beginning towards the end he had the mind set that, it didnt matter it was going to die, this took a toll on him and it was hard to go on. He realyed he didnt want to die that way and so he kept on, eventually leading to civilisation. " 1 1 1 +6813 3 "The feature of the setting affect the biker a lot because the rough terrain is described which implies that the biker probably had a hard time half way through the story he said, Flat road was replaced by shor, rolling hills. He said this to describe the difficulty in this race. It also makes it seem exciting because it changes things around. It wouldnt be exciting if they said that flat roads turned into even flatter roads, or if they didnt show the terrain change at all." 1 1 1 +6814 3 "Rough Road Ahead: Do Not Exceed Posted Speed Limit. an essay written by Joe Kurmaskie, is about a solo cyclist going on a journey to Yosemite National Park. So he listens to a group of old guys and ends up lost on rough road with no water, or relylittic supply of flat road was replaced by short rolling hills large highways lon jumped out at me. It read: ROUGH ROAD AHEAD: DO NOT EXCEED POSTED SPEED LIMIT. The rough road made have to work harder want more water and just made things tougher more than what they already were." 2 2 2 +6815 3 "The settings of your environment always seem to affect your mood. Take for instance the cycler. In the beginning he had a positive attitude but once he arrived at the first town his attitude started to go down from there. He explains describes the town as maybe at one point being a thriving spot, but on that morning it fit the traditional definition of a ghost town. Ghost towns come across very old, run down and dull. That affected the cyclist because by it not being like the old men said he was becoming doubtful, which in turn doesnt give you the same motivation as when he started. Then when he get to what is suppose to be water and a, tar like substance oozed out. That makes him nevers and mad because he isnt sure he will make it. But his attitude changes as soon as he sees the store. The setting becomes positive and so does he. So, the setting does effect the cyclists mood and attitude." 2 2 2 +6816 3 "Many of the settings features affect the cyclist. One of the features of the dessert like, which is the setting, is the dry air and hot temperatures. This heat made it had for the cyclist to keep going, with despair the author says, I was going to die and the birds world pick me clean. @CAPS1 feature of the setting was the desolet towns that didnt contain any water. This lack of the water made it horrible for him to continue on. The thirst was so bad that he had to put pebbles in his mouth to sucking on stones helps take your and off thirst by allowing what spit you have left to circulates. @CAPS1 features of the setting that affected the cyclist was the abandoned Welchs Grape factory. This factory gave the cyclist false hope because it would have been so great to have some grape juice during his thirst stricken state. The narrator called the factory.Ironic twist." 3 3 3 +6817 3 "The effects from the setting that has an effected on me is that while riding on the bike in hot weather with only a little bit of water to drink because I would have giving up have nothing to drink. The water had to be hot.In the text it sayed I eased past, trying to keep my balance in my dehydrated state, I dont think I could have lasted long, if I was dehydrated. From the look of it I would have drop dead of heatstroke." 1 1 1 +6818 3 "Many features of the setting affect the cyclist. For instance, in the story, Do Not Exceed Posted Speed Limit the lack of water in the dry desert gave a long lasting affect on the cyclist. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from heatstroke on a gorgeous day in June simply because I listened to some gentlemen who hadnt been off their porch in decades, caused me to laugh. This shows the reader how all the heat and shortage of water has made the cyclist feel very hot dehydraded and that she could pass out any second. She is also thinking beyond that by just laughing at herself and trying to conserve every bit of energy she possibly can. As a result, the affect from the setting on the cyclist is that lack of water has given her humor and courage to keep going, to get to her final destination point." 3 2 3 +6819 3 "The features of the setting affects the cyclist in many ways. The bumpy roads. Sand in the eyes, thirst hit him too hot and humid tempures. Maybe he got tired of pedaling had to walk. A wild dog chased him went he got in town. Had no money to buy a drink" 1 1 1 +6820 3 "The cyclist of this story is greatly affected by the heat of his souroundings. While he riding to @CAPS1, the heat of the day began to increase. The text reads I had been hitting my water bootle regulary. @CAPS2 to the heat of the day, the cyclist was down to his water consuming large patterns of it at a time. He " 1 1 1 +6821 3 "When the cycleist mentions how hot and dry and open the terrain is, it makes me feel like he is in the desert. I also know that its hot because he is swreating and dehydrated." 1 1 1 +6822 3 "At first the cyclist feels fine, he gets a little bit discouraged, but basically hes fine. The cool pines and rushing rivers of Yosemite had my name written all over them (@CAPS1). He feels relaxed, because he is at home with the water and the pine trees. They give him a sense of comfort. He thinks that after the first ""tree"" not being that much of anything, the others will be better. He knows that he has it in him to make it, but he doesnt know yet that he will have to travel a long way to get water. When he sees the sign, It read: ROUGH ROAD AHEAD: DO NOT EXCEED POSTED SPEED LIMIT. he knows that things are going to get rough, because the speed limit was 55 mph. I was doing a water-depleting 12 mph. At that point he starts to get worried, because he is out there more alone, and he realizes that he doesnt have water. As he runs out of water, the landscape, and his surroundings, start to get drier and drier. He states, tumble weeds crossed my path. The landscape seems to get more threatening too, a ridiculously large shake. The landscape changes with the state of water." 3 3 3 +6823 3 The setting affects the cyclist because the heat and no humanity makes him so crazy. If he was in a place like @LOCATION2. It would be just the heat because there are people every were in @LOCATION2 @LOCATION2. If he was in @LOCATION1 it would be the severe temperature drop and no humanity and he would probably die. 1 1 1 +6824 3 the features of setting that the cyclist run into does affect him. For example when the setting changes from abandoned town to an empty deserted rond that no been on in thirty years; gives a cyclist less motivation him self to go on and even less strength. 1 1 1 +6825 3 "Joe Kurmaskies Rough Road ahead: Do Not Exceed Posted Speed Limit tells how a cyclist takes directions from older men who dont tell him correctly the way to get to Yosemite, so the cyclist ends up lost with hardly any water. Features of the setting such as the terrain and the sun affect the cyclist in the story. The sun was very hot on a summers day and without water makes it even difficult to keep moving because he was so hot and thirsty. @PERSON2, The sun was beginning to beat down I was traveling through the high deserts of California in June (Kurmaskie @NUM1). The terrain was also bumpy and rough to travel on. The sun and the terrain can affect the cyclist very much when out on a hot day in the summer." 3 1 3 +6826 3 "The features of the setting taunt the cyclist with cruel irony. As the cyclist continues down his path he pasts through a ghost town, then twenty mile up the road he sees a ramshackle shed & some rusty water pumps. He attempts to get water out because he was runing out but all he could get was muck, then what he described as water feeling two-hundred degrees, it had the flavor of battery acid. Further down the road was a sign that said rough road ahead, adhere to the posted speed limit of 55, he was going 12 mph. Even worse he found an abandoned juice factory on the way, at that point he was out of water." 2 2 2 +6827 3 "Do not Exceed posted speed limit, never accept travel advice from a collection of old timers who havent left the confinses of their porches sin Carter was in the office twenty miles up the road, I came to a fork as sorrs. I got down on my hands and kness, working the handle of the rasted water pump with all my strength. The water bottles contained only a few totalt and sips. He could or been sad person. And he could just be a bum." 2 1 2 +6828 3 The features of the setting could affect this cyclist. In this case it do effect the cyclist. According to the text Sometimes life can feel so cruel. This is a good example because he knew that this road was going to be rough and he was only going 12 mph. So the features of the setting did effect the cyclist. 1 1 1 +6829 3 "The features of the setting affected the cyclist very much in this. The hot weather made him have a dry mouth leading to the lack of water. He used stones in his mouth and he said, Id read once that sucking of stones helps take your mind off thirst by allowing what spit you have left to circulate."" He used that to help him survive the ordeal." 1 1 1 +6830 3 "The features affected the cyclist in many ways, one being the highway sign, ""ROUGH ROAD AHEAD: DO NOT EXCEED POSTED SPEED LIMIT."" The terrain was now short, rolling hills, which would make it harder on the cyclist to pedal up the hills, for it would take a lot more effort and energy. Also, there were roadblocks, at some point, tumbleweeds blocked my path and a ridiculously large snake These roadblock would danger the biker, for hed have to manever around them, losing time and energy, resulting in drinking more water. No water is a great danger for it was June, a hot day and he is risking getting dehydrated. There was also nobody around, so if he desperatly needed water he couldnt" 2 2 2 +6831 3 "After reading Do not Exceed Posted Limit I have seen how the scene of an area can effect your mood and attitude around things. In this story, the main character is a cyclist who takes the advice of a few old men sitting in a poseh who tell him a bad shortcut. As he is riding, he comes across some hills. Those hills really affected him physically he gets tired from peddling up and down continually. that mood was replaced by short, moving hills. The cyclist could not er nuertecy tried everything, not showing how long he have to continue going up and down. There at one point he says, @CAPS1 can feel so cruel. There, he is upset because a road sign come up through acid tough roads, and told him not to exceed 55 miles per hour when he was fully going 12 miles per hour. This can be viewed as metaphorical also. When you take a short cut in life, there are always consciences as you decide to drop out of high school is go on how with your journal, where is always the posibility of is not working, and where you cry with no diploma ?? and he gets a job" 3 3 3 +6832 3 "In the short story, Do Not exceed Posted Speed Limit the setting effects the cyclist in the story. For example, the dry hot air begins to slowly dehidrate him, causing the cyclist to lose all sense of reason, the heat also played tricks on his mind. Also, the rolling hills exhausted him from working to cycle up them. This, also with the heat factor, caused him to use up his much needed water supply. The setting in this story deeply effects the cyclist. " 2 2 2 +6833 3 Features from the setting affect the cyclist in many ways. The area in he was in had a major affect. He was in cali. which is a big dessert. In the middle of some it is very hot. Bike riding on roads in the dessert with no trees or shade of any sort is quet harsh. And to be riding around where there is not much civilazation as to where you cant get water is a major issue. 1 1 1 +6834 3 "The features of the setting affect the cyclist, because there is poisonous snake out thre. Your the only person ridin dow those hills all by your self. The guy had said that the next town was @NUM1 miles from where he was at. The lack of water that there were not any streams or rivers around there just in a desert with nothing." 1 1 1 +6835 3 "The setting is mid summer in California in the desert. It is hot, humid and very dry. There is a lack of water in his bag. He is on a trip, going down the lost, rough and rigorous roads." 1 1 1 +6836 3 "The features of the setting affected the cyclist because it was a hot June day in a desert in California. For example, your in the desert cycling for many hours very hot and only have limited water. This affects the author because you have to conserve the water that you have to be able to make it to the park. Anothe example, is that you are going up and down rolling hills and you legs get very tired so they dont want to move any more. And the best example is the sun is beating down on you and your sweating so much and @MONTH1 be seeing thing but all you want to do is see something that has water. These are all things that affected the cyclist very much." 2 2 2 +6837 3 "The cyclist in the story is running into a lot of problems in this story. For example, the cyclist is out in the summer heat in California riding a bike. After several minutes of this, you will become thirsty. The cyclist brought water but after constant sweating the water supply has nearly ran out. Not having enough water can cause a person to become deyhdrated which then can cause them to pass-out and possibly die. So as you can see, the cyclist is affected by the setting in the story. He has been affected negatively by the heat and by the lack of water." 1 1 1 +6838 3 "There are many ways that the features of the setting affect the cyclist. For example the cyclist was in a very hot and dry place. Meaning there was no water any where to be seen in miles. Also towns were nowhere to be seen for it would be hard to substain life out there. This quote supports there werent many towns, ''About forty miles into the pedal I arrived at the first town.''This shows there aren't many towns in these parts, @CAPS1 so hot and thirsty as the text claims, ''I read once that sucking on stones helps take your mind off thirst ''this clearly shows the man wa very thirsty. Also shows the man was very thirsty. Also @CAPS1 so hot out there the man could see visions as the text states, ''As the looks ofter had been a grape juice factory and bottling plant.'' why would there be a grape juice factory in the middle of no where. Therefore these statements above show how settings can affect ones mind and physical conditions to the cyclist." 2 2 2 +6839 3 "The setting that affect the cyclist is the condition of the road because the road turns all different ways and the road goes up hill so it makes it harder to go up the road the cyclist has @NUM1 miles befor he gets to a town he could run out of water. If he run out of water befor he gets there, he might have to make stops so he doesnt make hisself sick. When he gets to the town he can get more water." 1 1 1 +6840 3 "The features of the setting affected the cyclist by making him hot and thristy most of his way. As he rode he started to get tired slowly and he got work and more thirsty. He drank his water at first with out thinking to much or it, but as he went on he slowly found himselfs trying to conseve it. By the time he got to the second wild town the will he was so thirsty and tired thathe thought it might of been a ""death"" So he wiped the sweat from his eyes."" to make sure it wasn't a mirage. The only time people see mirages is when the are hot,tired, and about to kill for some water. This is what the cyclist was like after his long jouney to Yosemite National Park with the directions given by old men." 2 1 2 +6841 3 "The features of the setting include There are no one in sights, not a building, car, or structure of any kind which describes the trail the cyclist was taking. These features of the setting describe how the cyclist is affected because it elaborates on his doubting whetther he will survive or not." 1 1 1 +6842 3 "Many features of the setting affect the cyclist. The speed limit sign makes him feel like life is cruel. His first glimpse of the welch's Juice factory makes him feel excited. Meeting the deserted fork in the road makes him feel troubled. When he finally gets there, he feels relieved. These are all examples showing that features of the setting affected the cyclist." 1 1 1 +6843 3 "The many features of the setting greatly affect the cyclist & his performance. For example, the cyclist is riding through a very hot area of California. This is said at the end of paragraph @NUM1: ,and I was traveling through the high deserts of California in June. The high deserts of California are windy, sandy, dry, and hot. Not something that someone should be cycling on, had the setting, told of the mountianous regions of California, the wither would hot be hot, or tired because the mountians are a cool, although dry place. Had I had been cycling, I would rather have cycled in a different setting, such as mountians, than an arid desert. that way I would not have to endure the discomfort a cyclist expearenced." 1 1 1 +6844 3 "The features setting in the story Do Not Exceed Posted Speed Limit are very important to the cyclist. In this story, the setting really affected the cyclist because it was in California which is a really hot place during the summer. The cyclist had problems because of the weather and on the shortness of water. Since there was a shortness of water he had to conserve it which slowed him down because he couldnt ride as much. Although there was a cool wind and a river from Yosemite he had to pass quickly down the hill so he had even more problems. This is why the settings of the story really affected the cyclist and how much he could ride." 1 1 1 +6845 3 "In the story Do Not Exceed Posted Speed Limit by Joe Kurmaskie the feature of the setting, affect the cyclist in many ways. In the story, it taliks about how the man is pedling twenty miles here and fourty miles there and it's very hot outside and he only has so much water abd he doesn't think he'll make it to where he was to go because its do not that he need more water. As the narrator sas"" I was travelling throuhg the high deserts of california in June"" which is extremely not in california in June. The deserts hot weather made him eimited on water supply, and the fact that he was in the middle of nowhere, no buildings around makes him lose all hope for making it through. There were snakes in the desert which endagered him, and the bumpy road made it harder for him to hold on and get to somewhere. "" I began breaking the ride into distance i could see on te horizon, telling mself if i could make it treat i'd be fine."" This quote shows his struggle because of the area he was in but also his persitance. The features of the setting affect the cyclist in this essay." 3 2 3 +6846 3 "Many features of the cyclists surroundings effect his speed and confidence. He was the only one on the road. There were no other cars, bikes, motor cycles, or even buildings. Its like hes on the countryside. So that makes him want to go faster, because he wont hit any thing. The fact that hes alone in the wide, open spaces boosts up his energy level and makes him feel more confident." 1 1 1 +6847 3 "To be able to have a good bike ride, you must have a good setting. To me, a good setting would about @NUM1 outside and sunny. You cant go bike riding in snow because there is no way that the tires will move in the snow. You cant go in rain or hail because the roads get slippery and you could getin a accident that could injure or kill you. If it is sunny outside you be able to ride freely on dry roads with a little breeze to go through your hair and you could be refreshed. That is why I believe it is important for the setting to be just right for a bike ride." 1 1 1 +6848 3 "this story is set in the hot in the hot desert in June and the character is a cyclist trying to get to a National Park. the setting affects the cyclist because the hotter it is the more water you need to keep you hydrated, but the man is alone in the desert. This quote about forty miles in the pedal I arrived as my first town. The place might have been a thriving little syos as one time. This quote shows how deserted the desert is and how as he rides there is nobody around no where to re-hydrate no where to get drecionsn he was alone." 2 2 2 +6849 3 "In the essay, Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the setting greatly affected the cyclist. In this story, the cyclist is heading for Yosemite National Park, thinking it wise, he accepts directions from a group of eccentric old men. He begins his journey confidently on flat terrain and with a large supply of water. The first of three promised towns had been resigned to that of a ghost town. The second offered only water that slightly resembled battery acid. The cyclist soon becomes exhausted from lack of water and having to cross the now hilly terrain. He barely makes it to the third town to realize that the juice factory was out of business. The cyclist becomes sure that he is going to die of lack of water when he stumbles across a bait store. If it hadnt been so hot, if the towns along the way had offered better resources and if the terrain hadnt been so hilly, the cyclist would have had a very enjoyable ride. All of the affore mentioned factors of the setting greatly affected the cyclist." 3 3 3 +6850 3 "Hot, terrain, middle of nowhere- all are features of the setting that affected the cyclist. First, the hot weather in California made the cyclist thirsty and almost dehydrated. There was no place to stop for water and if there was, the water was bad and warm. Second, the different types of terrain made the cyclist really thirsty also and tired. Lastly, the cyclist was in the middle of nowhere. He couldnt get water to hydrate himself or to sit down and rest." 2 1 2 +6851 3 "The setting for the cyclist is a hard and dangerous one. He had little water, and his area had tough terrains. I was travelling through the high deserts of California in June (@NUM1). He is dehydrated and he still has a long way to go. I went on a bike ride that was many miles long in @LOCATION2, and we did not have water because we could not take a break. The terrain was tough, just like the authors terrain. The camel he was in was affecting his brain, and he just wanted to get it over with. I am just glad I dont have to bike in that terrain. " 2 1 2 +6852 3 "The cyclist in Do Not Exceed Posted Speed @CAPS1 was riding through the California dessert in June. This dry, bare setting made it impossible to find any source of water. The only time that this cyclist found water was when it @NUM1 and tasting of battery acid. There was nowhere for him to find water for miles. This lack of water and scorching heat made him travel slow and wearily. He even says that he could only go 12 mph in a 55 mph zone. By taking the advise of the old men and taking a short cut, the cyclist past through ghost towns with no water. This short cut prolonged his trip, most likely by hours If he had gone through populated area despite the fact that it is a longer path, there would have been more water to drink, which would allow him to go faster. The dry, hot setting of the old mens short cut made this cyclists trip last much longer than nessiarry." 3 2 3 +6853 3 "When the man began cycling he thought that this was going to be an easy for ride. For example in paragraph @NUM1 he says Things began well enough. I rode into the morning with strong legs and a smile on my face. As he got further he realized that he was in the middle of nowhere. The scenery was getting more and more empty. There was eventually nothing. The scenery was putting down his hope of ever getting out of the desert. For example: In paragraph @NUM2 it states, a large highway sign jumped out of me. It read: Rough Road Ahead: Do Not Exceed Posted Speed Limit. He realized this was going to be hard. He had to travel in bumpy roads and pass snakes without getting bit. The scenery created a sense of hopeless because it was abandoned. When he saw the bait shop, his spirits lifted and he was now hopeful and relieved." 3 2 3 +6854 3 "When the cyclist began his journey he was confident in succeeding. Throughout the story however, the cyclist endures many conflicts to his successs in his journey. The cyclist faced his first difificulty once he reached a small, abandoned town. I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June (kurmaskie @NUM1). The cyclist realized he had not conserved his water and his water bottles contained only a few tantalizing sips (kurmaskie @NUM1). On top of his water problem the heat was unbelievable. He was losing hydration from all the sweat, and he was losing it quickly. The cyclist was also dealing with the difficult roads. There were many things this cyclist endured through-out his journey, but he was determined to finish his trip and was filled with satisfaction once he overcame these hardships." 2 2 2 +6855 3 "The features of the setting put an affect on the cyclist. The first thing would be listening to old men who seemed like they had no idea how far, long, or the condition of the roads where they were sending him. Another thing that affected him would be the road condition, where there were tumbleweeds, and a ridiculously large snake. The second thing that came into play would be the hot weather which made dehydration come into play." 2 2 2 +6856 3 "One main feature of the setting that affects the cyclist is the heat of the day. If you ride a bike in the heat of the day, you are going to use up a lot of water. Another factor is the limited supply of water. The final factor is the wrong directions from the aged men. Aged people arent always wrong but their info. Can be out of date." 1 1 1 +6857 3 "The features of the setting in the essay affect the cyclist because as he was riding his bike throughout California, he entered hot deserts and was almost out of water. The cyclist was in a very bad dehydrated state as he was riding his bike, looking for water or anything drinkable that would successfully get rid of his dehydration. After a little while, the cyclist found himself alone in the desert with no one in sight. An example of this would be There was no one in sight,not a building, car, or structure of any kind. Another example to show how the cyclist was struggling and fighting against dehydration is wise rings of dried sweat circled my shirt, and the growing realization that i could drop from heatstroke on a gorgeous day in june simply because i listened to some gentlemen who hadent been off their porch in decades shown how the settings of this essay affected the cyclist greatly." 2 2 2 +6858 3 "During the authors ride to Yosemite, he doesnt have the proper tools to go along the long stretch of desert he was to face, and by tools I mean water. The California desert is extremely hot and can be potentially dangerous depending on your situation the author was describing how the lack of water was affecting him. He described this with sentences like Rattled around the dry honey combs of my deteriorating brain. The author clearly cannot face the rugged heat with his immense lack of water. The author was getting neat stroke being passed by @LOCATION2 desert snakes and tumbleweeds. The author was clearly in a struggle against the @LOCATION2 desert heat." 2 3 3 +6859 3 The settings and features are very important to cyclists one because water and food try might carry a waterbottle and a snack but they need to know where they are going and if they will need to bring extra or not. In the story I just read he didnt bring enough to last him so he got some directions but they were bad so he was in trouble. Its important that a cyclist knows where their going and whats around them so they don't get lost and have no acsess to food or water. 2 1 2 +6860 3 "The features of setting effected the cyclist because he was in a desert in the month of June which was really hot and dry, there were also no trees around so there was no shade for him to relax in so the sun was also beating on his back. There was also lots of hills that took his strength to jump for example it says ""over one long, crippling hill."" There was also a big crazy twist in his way. He even saw a snake. All of these things made him really tired for example he didn't have much water and the sun was making him hot and dehydrated. There was no shade so he had to just take the sun beating down on his back. He had to jump over hills so that took alot of energy. He had to ride up one long hill so that also made him tired. All of these things happened back to back without giving him a break, so it really tired him out." 2 2 2 +6861 3 "In the story it explained the beauty of the night, also about the outdoors and how it is effecting his trip. The features of the setting effects the cyclist, because the setting was mild, sounded warm and calm. Also it showed how it contains to us. The setting was similar to the cyclist. Thats how the features of the setting effects the cyclist." 1 1 1 +6862 3 "The cyclist was in California in June, the sun was beating down on him this made the ride difficult with short water supply The man came upon several towns that were abandond which made his water supply less. The terrain was long and straight then turned into tall hills which had to be difficult to ride." 1 2 2 +6863 3 "How the features of the setting affects the cyclist is the condition of the roads, rolling hill, and the?? heat. The conditions of the road in the settings affect the cyclist because the roads are rough. An example firm the texted is I noticed that terrain changing. Flat road was replaced by short ralling hills. These condition make is hard for the cycled it gives him a challenge. The rolling hills challange him a regret to stay on the road it is easly tricky and challenges so was The heat & sun was also played an affection on the cyclist. An Examples from the @CAPS1 is. I chuckled, checked my water supply and moved on. The sun was beginning to heat doing but I barely not ???. the sun was not starting to get him ?? sharply ?? It will start to get ????? when is ?? is high deserts. I conclude that these features in the setting affected the cyclist in many ways but he keep pushing himself to more on. " 3 2 3 +6864 3 "In the setting of Do Not Exceed Posted Speed Limit, is riding a bike really fast on a rough road." 0 0 0 +6865 3 "The cyclist had a couple of affects in his journy. One of them was he hills the it was a problem because it used most of his energy and slowed him down. The other one was water, the lack of water. If the had enerf water he would have gotten a boost that would have kept him going." 2 1 2 +6866 3 "In the essay, Rough Road Ahead: Do not exceed Posted Speed Limit, the features of the setting affect the cyclist. Firstly, the cyclist had been pedaling through the high deserts of California, making a hint that the temperature was hot and dry, and therefore he mustve been getting thirsty regularly and exhausted from the sun beating down on him. Second, he began to ride through hills, and as common sense would be used, hills are much harder to ride on a bicycle especially up hill, and it wears you down. These hills, along with a lack of water mustve tired him out and given him extreme difficulty to make it without much water. As you can tell, the difference in setting plays its crucial part on the cyclist and his precious water supply." 2 2 2 +6867 3 The setting affects the cyclists because he can not take the heat. His water supply is running how and he is dehydrated. It says this when the characters says. The water bottles contained only a few tantalizing sips. Wide wings of sweat circled my shirt and the growing realization that I could drop from head strok This is saying he is afraid he might pass out and die before he finds more water. 2 1 2 +6868 3 "The setting affected the cyclist in several ways. The first place he arrived at was a ghost town Then he reach a water pump about twenty miles up the road. The water was very hot and tasted very nasty. The text states, water feeting somewhere in the neighborhood of two hundred degreeswhen I tried a drop or two, it had the flavor of battery acid. Then he had to travel without water and became dehydrated. Travelling up and down hills he thought he began to imaginate a building that could possibly provide he with water. The building was there but it was abandoned. He decide he was going to such on a couple of pebbles. The text says, Id read once that sucking on stones helps take your mind off thrist" 2 2 2 +6869 3 "It is my hot so the cyclist is very dehydrated, tired and lack of water. I checked my water supply and heated on is a good example oF this. There is also a lot of sad and deserted places with no cars around this bars the cyclists hope of finding civilization. Also not seeing any building and when he sees are it being deserted makes this very hard on the rider. Another event that takes a toll on him is when he @CAPS1 the pump that has tar, dirt, then hot water in it. Also the road plays a toll on him. I know this house he says If I could just make it to that next horizon/hill Ill be alright"".This is how I know the setting and features in the setting is affecting the cyclists mentally and physically." 1 1 1 +6870 3 "Hot, alone, no water all are reasons why the features of the setting affect the cyclist. It is very hot as the cyclist is riding. This makes the cyclist feel worried about getting dehydrated. The cyclist is alone and there is nothing in sight. If anything happened to him there is no one to help. The cyclist had very little water and had to conserve it in order too stay active and have energy. With very little water it is hard to stay hydrated. Hot, alone, no water- all are reasons why the features of the setting affect the cyclist." 2 2 2 +6871 3 "The terrain that a cyclist is riding on has a big affect on them. The first example of this is in they are riding on hills, it makes it much harder for them. For example when the rider in the story saw that he was going to have to ride on hills he was, olcasly disappointed. Another thing that affects cyclist is the smothness of the road they are riding on. In the story Rough Road Ahead: Do Not Exceed Posted Speed Limit the main character came to rough spot in the road and was disappointed and didnt want to ride it. Another aspect that can affect cyclists is the heat. Several times in the story, the cyclists says that he is tired and dehydrated, at one point he thinks he is going to die of heatstroke. Those are the effects of the riders setting have on him/her." 2 2 2 +6872 3 "The setting in the essay ""Rough Road Ahead: Do Not Exceed Posted Speed Limit"" has a major effect on the cyclist. The setting is the high deserts of California"" where it is June and very hot. The path of the cyclist suggested by some old men makes the heat even worse because there are no people or water in sight. In the essay, the cyclist starts out the day confident and excited for his ride to Yosemite National Park. His mood changes throughout the day as after @NUM1 miles he arrives in a ""ghost town"" the old men led him to believe would be a settled town where he could get more supplies and cool off. Soon as the temperature rises to what feels like ""two hundred degrees"" the cyclist begins to run low on water and feels ""sometimes life can feel so cruel."" The heat and lack of people and water lead the cyclist to desperation and make him feel like as he says ""i was going todie."" The setting of the cyclists journey provides the mood of hopelessness and amplifies the feeling of determination felt by the cyclist to keep going at all costs because he was going to die if he stopped. The author, @PERSON1 uses the setting of the essay to help bring across his mesage that by blindly trustting people instead of trusting yourself things could end up being hard for you to overcome.. " 3 3 3 +6873 3 "In the story Do not Exceed Posted Speed limit the cyclist sees many different settings when he left it was early summer and it was pretty hot outside. He rode into the morning when would make him tired. The first town he reaches upon was a ghost town so that means he could rest get his supplies. Then he arrive by cool pines and rushing river which probably makes him feel releaxed. Then he showed up at a ramshack shed with several rusty pumps and a carrol that couldnt hold in the lamest made. Gated men which people made him feel uncocleible, and the pumps did not give him water so that was nobody also pointing. Then he was rideing through the California deserts in June witch probably made him more dehirrated." 2 2 2 +6874 3 "The cyclist should have never taken the advice from the older men. The map would have been a lot safer and easier. People seem to always look for a shortcut, including myself. He could have died from heat stroke and lack of water. He did have perseverance though he never gave up and that is what saved him. Being in that situation and setting I would have given up." 2 2 2 +6875 3 "When cycling its important to make yourself aware of the type of terrain it is, make sure of the weather, make sure of the environment, and most importantly make sure of your resources. These things are key before taking any cycling trip. They are very important in determining the type of trip you will have and enjoyable and relaxing trip, or a long and miserable trip. " 1 1 1 +6876 3 "The features of the setting affect the cyclist by travelling very far where he is going. For example, ""About forty miles into the pedal I arrived at the first town."" good thing that he is taking water or who knows if he would of survived or not. I think the biggest mistake was that he asked probaly someone that had not ever been on the road for directions. When he asked the person he ended up at a sign that said Rough road Ahead: Do not exceed, that was the moment I felt sorry for him, and that was probaly the effective feature that has happen to him." 2 2 2 +6877 3 "In the story Rough Road Ahead Do Not Exceed Posted Speed by @PERSON1 the settings of the story effects the rider in manyways. The first and most obvious is the temperature, it is hot, therefore the rider is hot and becoming dehydrated making him thirsty. A second way the setting affects the rider is the fact that nothing is around him. Since nothing is around him there is no where for him to get water adding to the affect of dehydration making him more thiristy. The rider says One ran shacle shed, sevral rusty pumps, and the corral that couldnt hold the lamestmal egreeted me. ''This statement from the author support the factt that nothing is around. Onemore feature of the setting that affected the rider was the hills. The hills made the rider tired requiring more pedalind and wearing him out, the setting features had agreat afect on the rider from heat and dehydration to hills and energy. onething that the setting didnt have was a positive affected on the rider." 2 2 2 +6878 3 "In the story Do Not Exceed Posted Speed Limit by Joe Kurmaskie the setting affected the cyclist. It was a hot June day and the water supplies he had was running out. He got the wrong directions homThese old men so he would had to ride his bike longer than he had to and he would need water from pedaling all that way for nothing. Since he was going in the wrong direction there were no buildings for him to get water, there were no people so he couldnt communicate and there would be no one to call for help incase he was over heated from the heat." 2 2 2 +6879 3 "In the story, the rider faced several meloncholy sites. For examples the ghost town that he ran into at first really put a load on him because he had no one to ask for futher directions or somewhere to freshen up. Futher on down the road the hill he came up on was a physical obsticle that he had to go over. With the sun beating on his back and the emptiness of the road he might have begin to want to turn back. He kept on persaveering which was how he made it down. The lack of water also mad it difficult for him. Traveling with his water running out and beginning to feel sick did not go well with him." 3 2 3 +6880 3 "The features of the setting affect the cyclist in a negative way. For example, A tarlike substance oozed followed by brackish water feeling somewhere in the neighborhood of two hundred degrees."" This affects him because cant get water from the well. So this means he needs water, but cannot get water. Also in the essay it says the terrain is bad so that means that the cyclist has to pedal harder to keep moving and he has to work harder to hot reek. So all this puts affect on him from just whats around him. The old abbandon factory with the boy drinking juice was had the most effect on the cyclist because he was so thirsty and that was when he was about to give up. In this essay the setting had alot of affect on the cyclist to were he thought he might die." 2 2 2 +6881 3 "In the story Do Not Exceed Posted Speed Limit the setting affects the cyclist in many ways. The speaker tells us that hes riding his bike in the middle of the desert in June. This shows the author is probably very hot. The author tells us that the road turned into hills and bumps. This would make it more difficult for the author because he would have to use more energy to move up the hill. And lastly, the cyclist tells us that the towns he came to were abandoned and uncared for. This would not be good for the cyclist because he would be able to get water for his trip." 2 2 2 +6882 3 "The @CAPS1 is affected in many ways. The major thing that effects him is the lack of water. Throughout the story he mentions the lack of water. He also continues to say to himself he should not have took that route. For example, I could drop from a heatstroke on a gorgeous day in june because I listened to some gentlemen who hadnt been off thire porch in decades, caused me to laugh. The @CAPS1 says things about the older gentle man throughout the story." 2 2 2 +6883 3 Setting very much affects the cyclist and now he feels. If he was in a bad setting then he would most likely be in a bad mood. Mood is highly affected by the general setting. In the essay rough road ahead: do not exceed posted speed limit the cyclist feels very confiedent of himself and the setting helps to boost that confiedence and andorence. 1 1 1 +6884 3 "The features in the setting of the essay affected the author greatly. The Hills, on a hot day, with no water, or nearby town is really rough, expecially if youve been riding for more than @NUM1 miles. The environment of the hot June weather near a dessert area can cause serious problems, for example heat stroke and since he had no water to drink dehydration caused a lot of fear in the author. The setting of the essay and the conditions the author were under were extreamly dangerous and hes lucky he made it out alive." 2 2 2 +6885 3 That the cyclist is steyetling down up totally end steep within when to get to his destination of the town settle out are taken mean yesterday. The condition in hand and hurry some when and have one his body. 1 1 1 +6886 3 "In the short story, Rough Road Ahead: Do Not Exceed Posted Speed Limit, the setting greatly affects the cyclist. For example. In the beginning of the story, the cyclist is eager to get to Yosemite National Park. He listens to the advice of, old-timers who havent left the confines of their parches since carter was in office, and quickly realized that he shouldnt have. The author describes the setting of the first town as, the traditional definition of a ghost town. This didnt bother the cyclist as much as his next sight. One ramshackle shed, several rusty pumps, and corral that couldnt hold in the largest mule. Was what met him there. The cyclist said that this sight was troubling. It is obvious that the cyclist has given up hope when he says, It didnt really matter. I was going to die and the birds would pick me clean. This short story shows how anything can get even the best of travellers worried about their survival." 2 2 2 +6887 3 " I think the features of the settings affect the cyclist because the knowledge of the cyclist is limited example, old-timers who havent left the confines of their porches since carter was in office, meaning now its time for the older people to relax and watch of younger people." 1 1 1 +6888 3 "The features of the setting affect the cyclist because where he is riding it is very dry and hot. He can deal with the heat with his good water supply, but when it runs out he begins to get disoriented. For example in the text he writes over one long, crippling hill, a building came into view. I wiped the sweat from my eyes to make sure it wasn't a mirrage, That statement shows that the cyclist was hot, and the images around him making him feel more hot than what he is, and his lack of water made him almost belive that he was imagining seeing a building. Another example is A sand blasted picture of a young boy pouring a refreshing glass of juice into his mouth could still be seen. I hang my head. This quote shows that the cyclist is in complete despair as he looks at the photo and hangs his head. This shows that the cyclist was constantly being reminded how hot and thirsty he was everywhere he would go and he couldn't get a drink. This is how the features of the setting affected the cyclist." 2 2 2 +6889 3 "The setting in Rough Road Ahead: Do Not Exceed Posted Speed Limit greatly affected the cyclist in the story. Not two miles into this next reaction of ride, I noticed the terrain changing. Flat road was replaced by short, rolling hills (kurmaskie). the cyclist is travelling through hot, dry California in the middle of June without much water left. The fact that he now has to travel up and down short hills is going to make him even more tired, because going over hills requires more energy, than flat riding. This energy, loss coupled with the cyclist lack of water causes him to become even more miserable. The setting of this story greatly affected the cyclist." 2 2 2 +6890 3 "The features of the setting affect the cyclist mood and behavior. First the cyclist sees from believing the shortcut will help him arrive to Yosemite faster then he relies it wont. Next, the harsh sun and rafh terrain and lack of water causes the cyclist to give up hope that he will make it to yosemite and causes him to rethink his judgement and taking advice from others." 1 2 2 +6891 3 "The setting affected the cyclist in a harsh way. At first, the cyclist was fine and going strong, but soon after the first ""ghost town he was getting weak. Then the cyclist had to face a few problems. For example he was running low on water. Also, he faced rough roads last, he faced snakes and abandonment. The cyclist had to face many obstacles, but in the end, he pulled through strong." 1 1 1 +6892 3 "The features of the setting affected the cyclist for these reasons. It says one ramshackle shed, several rusty pumps, and a coral that couldnt hold in the lamest mule greeted me. The sight was troubling. That showshow how the features affected the cyclist because he says the sight was troubling. It troubled him because he wanted water and he seen the rusty pumps that reminded him of water but he new their was no water or it was nasty" 1 1 1 +6893 3 The conditions of the enviroment as well as the road can majory effect the cyclist. For example If some one was riding a bike in warm wheather on flat land it would not take major determination to pedal. On the other hand if it is hot and rough paths and hilly roads the biker colud dehidrate and it takes much more effort to get up and over the hill. Those five the conditions of the enviroment effect a cyclist greatly. 2 1 2 +6894 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, the cyclist, on his way to Yosemite National Park, is forced to face the rough deserts of California. As is normal throughout all deserts, the sun is blazing hot, as is the sand. There is no water anywhere and dangerous, highly venomous creatures are abundant. The lack of water almost puts him into a heat stroke as he is determined to leave the desert, riding his bike all alone. A grope juice factory taunts him, mocks him, but he continues on, with a steady pace. The desert roads are rocky and bumpy and his lousy 12 mph speed is getting him practically nowhere. Until, finally, he reaches a modern area and drinks from the sink in the bathroom." 2 2 2 +6895 3 "In the story the setting plays a big role in effecting the cyclist. The terrain was very hard at times such a big hills and windy torns. Also, there was no one around. no houses, buildings or people which made him fell alone and life he was going to die. The author describes the terrain in one part of the story Over onelong, crippling hill a building came into view! This quote shows how the hills in the seting were very big and hard to get over. It also shows the significance of a single building and how excited he was to see it. In the story the author described many features from the setting which all greatly effected the cyclist." 2 2 2 +6896 3 "The features of the setting affected the cyclist, by putting him in unwanted places starting off with this man took advice from many older men, which dont even know the area anymore. So riding through this man seems lost, he is trying to follow their advice, but comes across many unknown, unwanted areas. He starts out good, then comes to a Rough Road and he even says sometimes life can feel so cruel. Then he come to this large snake in the middle of the road scary enogth he has to slow ride past this thing taking up most of the road. Coming over these thing was very strong and hard of this young man." 2 3 3 +6897 3 "The dessert environment had huge effects on the cyclist. He had been drinking his water regularly and would be running out. Not realizing, their would be no refills because the pump was only giving tarlike substance said the text. With the lack of water dehydration was beginning to hit the poor man. An effect of dehydration is poor balance that would have been useful to pass the ridiculously large snake he had seen. A finale effect would be mirages that could loose your judgement. This man double checked his eyes, when coming in view of a building, by [wipping] the sweat from (his) eyes to make sure it wasnt a mirage, Through all the toughest desser obsticles the character was able to take the short cut and survive heat, dehydration, and animals of the dessert." 2 2 2 +6898 3 "I think the features in the setting of the story ""Do not exceed the speed limit, by Joe Kurmaskie, highly affect the cyclist. Some implied a information would be that it is very hot out, and the people in towns didn't help him. I know that it is not because the text says,""somewhere in the neighbourhood of @NUM1 degrees."" This implies that it is very hot outside. I can tell the people in towns didn't help him because the text says, ""Never accept travel advice from collection of old-timers who havent left the confines of their porches since carter was in office. ""This shows that the people in towns didnn't help him. Some expressed information in this text would be that there is a rough road, and a shake was in his way. I know this is expressed because it tells you right in the text. ""Rough road ahead: Do not exceed posted speed limit. ""This comes right out and tells you there is a rough road. You know there is a shake because the text says, ""and rediculously large snake blocked the majority of the road. I think there are many implied t expressed information in the story""do not exceed the speed limit. " 3 2 3 +6899 3 "The features of the setting affected the cyclist in a larger way, almost resulting in a very sevior situation. The cyclist was in a desert. Like terria, which was not dinsely populated on his trail, there was a lack of fresh water supplys, and the tempatures is more extreme. The cyclist could easily have faintid from heatstroke, due to the lack of water and excessive heat and work that his was doing peatling. Had the area been more populated, he would have had more chances to stock up on water greatly indecriasing his risk of heat stroke. There was also the snakes which presentid danger for him, has he been bitting then he would be at least @NUM1 miles from the closet help which could proven fetal. Had the setting been, say a city park, on a populated country side, them thi setting would had provided exponeutaly loss prodioms and dangers for the cyclist." 3 2 3 +6900 3 "The conditions and features of the setting caused the cyclist to be tired and dehydrated and think that he was going to die from it. For example, it says and ther growing realization that I could drop from heatstroke on a georgus day in June. Also , he thinks he is getting dehydrated when he says I was doing a water depleting 12 mph. sometimes life could be so creul. in conclusion, this cyclist started this without enough water causing him to think that he was going to die from either heatstroke or dehydration." 2 2 2 +6901 3 The setting affects the cyclist because hes in the middle of nowhere with no water. The cyclist had to ride his bike for over @NUM1 miles trying to get to Yosemite. I had been hitting my water bottles pretty regularly. This quote shows that he just beginning to run of of water. The water bottles contained only a few tantalizing sips. This quote shows how he really had nothing to drink at all. Having no water in the high deserts of California while riding your bike for over @NUM1 miles is not a good @CAPS1 unless you have a car. 2 1 2 +6902 3 In the essay the setting had every thing to do with the cyclist cause he is ridding through the desert with batey tay water. He is pedaling through the dry heat thats tough even you had water pluse there were hills deadly snakes.Its dangerous enough with out that stuff being there. So I would listen to the cyclist & never ever listen to old men. 1 1 1 +6903 3 "On the cyclists rideto Yosemite National Park he encouters a lot of hardships due to the setting hes around and the advice given by oldmen. The cyclist riding his bike in the middle of June in the deserts of california isnt good to begin with adding to cyclist dehydration state. He first come to encouters ''one ramshackle shed, several rusty pumps, and a corral that couldn`t hold in the lament mule'' By that description oF his lecatracy it seems as if he might be in ghost town by himself almost could strand him. He described the terrain with short, rolling hils.'' and ''over one long, crippling hill.'' This shows some of the obstacle that he had to go through in a bike, just to get to Yosemite National Park. He @CAPS1 realized once he encounterd these Features oF the terrain that he was oFF track and needed to find help. After his survival of his surroundings For as long as he could go, @CAPS1 gets help at a real camp. That is how the settings of the story play role in the cyclist epidemic." 2 2 2 +6904 3 "Do Not Exceed Posted Speed Limit is an inspiring and almost humorous essay it take the reader inside a journey in a cyxlist daily routine. In this story the author fights dehydration as he tries to make to a national park with shortcut directions from old timers the setting of this storygreatly affects the cyclist and the pitty the reader feels for him. Half way through the essay, the biker had already traveled roughly @NUM1 miles; thats extremely crazy. The fact that he is travelling through California deserts in June is even harder to believe. The first time he mentions the setting, he states he is in a ghost town, two sentences after he states that the sun was beating down. At that point he wasnt really bothered. Another description of his setting that probably affected his ability to peddle was when he states flat road was replaced by short rolling hills. He was already dehydrated and had already traveled so far, the rocky roads probably didnt help his journey much. The setting basically made the story. If he wouldnt have been peddling in the desert, it would have just been another trip in his life. The setting makes the reader see what cyclist really go through. " 3 3 3 +6905 3 The features of the setting affect the cyclist a lot. It does because the road is not in good condition and he has to travel a long distance with the bad weather. This affects him because he might get dehydrated. In conclusion there are many things in the setting that affected the cyclist. 1 1 1 +6907 3 "The features of the setting affect the cyclist because if they werent hills and rough roads, he would of been able to get to yosemite park faster and he wouldnt of ran out of water." 1 1 1 +6908 3 The setting was the main affect on the cyclist. He said it was hot and that he was lost. The cyclist had no clue were he was going and it was hot out side. He seemed very strest and that only made it worse for him. He was thirsty from all riding and the heat so he trys to get water from a water pump. The water that was in it was horable. He called it a substance it had a flavor of battery acid. If he were not lost and if it were cool outside he would have water and he would not be so upset. The setting of a hot and lost place had a huge impact on the cyclist. 2 2 2 +6909 3 "In my opinion the features of the selling affect the cyclist in many ways. For example, when he was talking abut the terair changing from long strat roads to shard winday one and the speed limit changing he said.he was doing a waterdepleting @NUM1 fuier sands like he is having a hard time, or doesn'twnt to go on." 1 1 1 +6910 3 "Due to the features in the setting, including the hot summer weather, the cyclist not knowing the area, and the California desert the cyclist is affected. In the short story Do not exceed posted speed limit by Joe Kurmaskie the cyclist is travelling through the hot desert in June when he realizes hes running out of water, I had been hitting my water bottles pretty reguarly and I was travelling through the high deserts of California in June(Kurmaskie). This is affecting the cyclist because hes becoming hot and has a low supply of water. Also the cyclist realizes he should have never taken the direction from the old men and thinks to himself, The growing realization that I could drop from heat stroke on a gorgeous day in June(Kurmaskie). This quote proves that the heat of the desert is taking a toll on him." 2 2 2 +6911 3 "The setting of this story affects the cyclist alot. I think the setting was supposed to be most like a run-down out of dated town which didnt help him when he was lost. The town is out of date and hot. Which bring another problem, the cyclist was dehydrating because he didnt have enough water. He would hilusinate and see things that werent there. He become very tired in the hot sun. So the setttling in this short stories effected the cyclist in many ways." 1 1 1 +6912 3 The feature's of the setting affect the cyclist because the condition's he is in without any water. the cyclist would be fine if he would have had more water for his trip. He ran out of water not to for into his journey thanks to the heat of the setting he was in. the cyclist makes this statement. I was hitting my water bottle pretty regularly and I was traveling through the high desert of California in June. The cyclist is saying that since it is so hot where he is he has to take regular drinks of water so he stays highdrated throughout is trip. It is also saying that in the mountians with less air and how hot it is he is not doing as well as he thought he would on the trip. 1 2 2 +6913 3 "The cyclist had a hard trail to bike in order to get to @LOCATION1. It is easy to bike if you are on flat smoot terrain, when you get to rolling hills, it makes it a lot tougher. The biker said I noticed the terrain changing. Flat road was replaced by short, rolling hills. It was also very hot. he was sweating and getting dehydrated, Id read once that sucking on stones helps take your mind of thirst. he had eighteen miles to next town without much water. The first deserted town didnt have any drinkable water. It was very hard to bike in these conditions, and is important to always be prepared and know were you are going." 2 2 2 +6914 3 The cyclist has to endure ruff treain and bad road condisions and a lack of water is the ??? near did not help the prodlem. Ther was a good prasority he could have heat strock then his hope was stll up by a abonded welches take factry. 1 1 1 +6915 3 In Joe Kurmaskies Do Not Exceed Posted Speed @CAPS1 the imagery is what sets the cyclist back. The scorching dessert and plant life gives him a sense of seclusion and scares him. Because the cyclist is in the dessert he keeps on worrying about his water and heatstroke where as if he where in a rain forest he wouldnt worry about water or heat. I think he siked himself out just by taking in his sorroundings. If the cyclist would have pictured water all around him and arctic like temperatures I think he wouldnt have been so worried. Whats interesting about this story is that if he would have gotten himself prepared mentally for the conditions he wouldnt have struggled so much at the end. At some point tumbleweeds crossed my path and a ridiculously large snake- it really did look like a diamond back blocking the majority the pavement in front of me.(Kurmaskie @NUM1). If the cyclist word of concentrated more on the task at hand and less on what was going on around him I think he would of succeeded without as much stress. 2 3 3 +6916 3 The features of the setting affect the cyclist in that it made him use up his water supply and tested his determination. Sometimes life can be so cruel implies that he was having a horrible time coping with the setting he was in. To himself he thought be was gonna die at any moment. 1 1 1 +6917 3 "In the essay Rough road ahead: do not exeed posted speed limit, the author is continually depressed, by the features of the landscape he passes. At first he passes a ghost town, but because he has enough water, this sight doesnt bothe him. But the next thing he sees is a rundown old shed and a rusted water pump, and this troubles him because he is running out of water. Then he sees a huge snake which does not help his mood, because the snake is blocking his path then he passes an abandoned Welchs Grape Juice factory and despairs that he will never find water. The setting its features serve to dissappoint depress the cyclist in his quest to find water." 3 2 3 +6918 3 "In the story Rough Road ahead; Do Not Exceed Posted Speed Limit a cyclist is faced with many problems. Its really hot out, practically a desert and its in June. Just knowing that makes me want some water. Also this cyclist is running short of water and still hasnt got to the place he needs to be. The roads are hills and bumpy which make it harder for him. Those are the problems this cyclist is faced with." 1 1 1 +6919 3 "At First the narrator in Do not Exceed Posted Speed limit was energetic enthusiastic about their journey to Yosemite national Park .After getting some helpful advice about a few short cuts the cyclist sets out for adventure .First thing they encounter is ghost town .The gentlemen they a taken advice from had assured them it was booming prosperous town .This set the first wave of doubt through the cyclist mind .Then lack of water began .They were travelling through the high desserts of California in June and slowly running out of water .Flat road was soon replaced by short , rolling hills which only increased the cyclist state deliriousness .After a few more dissapointments the cyclist decides there is no hope and they are going to die .The reader is partly drawn in believing that this is the end for the cyclist .All of the disappointments set the stage for the end of the cyclist and you cant stop reading because you have to find out what happens.If it werent for the hopelessness of the setting you wouldnt care." 3 2 3 +6920 3 "When the cyclist is going on his trip, he is riding through as desert. All he sees the entire journey is a flat rode and dirt. He is riding on the road; hopelssly hoping for some form of lif. There was no one in sight, not a building, car, or structure of any kind. The author is trying to be positive but its hard, because all this scenery is doing is bringing his hopes down. How would you like it if you were riding a bike and had no water in the middle of a desert. Now, if the setting had been a nice, green forest, he wouldnt be that worried, theres water and shade. He has none of that in the desert. This whole journey was all mental. He always kept in his mind that everything would be ok. That is what helped him survive. This is an ispiring story, to anyone who needs a push to stey optionistic." 2 2 2 +6921 3 "Poor directions heat, and lack of water affect the cyclist in the story. At the beginning of the story, the cyclist is confident in the directions which would, slice away hours from my ride to Yosemite National Park. As the story progresses, the cyclist is no longer so confident. The heat of the California, June day causes him to be fluent in drinking water. I had been hitting my water bottle pretty regularly, and I was travelling through the high deserts of California in June. This lack of water is a big problem for the cyclist, so big that he was near heat stroke. I eased past, trying to keep my balance in my dehydrated state. The water bottles contained only a few tantalizing sips. He braved the elements and forced himself on, with hopes that any source of water would reveal itself to him. His perseverance paid off. Then , as easily as rounding a bend, my troubles, thirst, and fear were all behind me. The cyclist had found a barst shop and recteved water." 3 3 3 +6922 3 The features of the setting affect the cyclist. I say this because the setting is in the hot deserts of @LOCATION1. The cyclist is sweaty and tired and has almost no water left. This lack of water makes the cyclist desperate for food and water. The setting has a lot to do with how the cyclist reacts to what happens. 1 1 1 +6923 3 "The features of the setting affected the cyclist in many ways. First, because there was no one in sight he couldnt ask for any help or direction. Also, because of all the road conditions it was hard to ride a bike through all the rocky roads and he was very tired and dehydrated so that didnt help him it just tired him more. Another reason is because of the poisonous snakes if he disturbed them they could harm him. Also, if he would had fallen off his bike a snake could have biten him and then he wouldnt be able to make it anywhere because of the bite. Those are the features of the setting that affected the cyclist." 3 3 3 +6924 3 "The features of the setting in the story affect the cyclist both physically and mentally. It affects him physically because of the rolling hills he has to trudge over and the lack of water he has. The rolling hills make him tired and weak along with the rough terrain. The lack of water doesnt help any when hes thirsty because of the hills. The features affect him mentally because the farther he goes the more dalerious he gets. Each more mile he keeps telling himself, if I can just get there Ill be fine. He also blames himself for listening to the old men. And with this also came doubt. He was doubting that he could make it alive. In the story it says, it didnt really matter: I was going to die and the birds would pick me clean"". mentally he couldnt make it." 2 2 2 +6925 3 "When the rider was riding his bike in such day settings has started to need water he was running out, So his whole adventure was to find water. Being thirsty was very hard because it made him not want to keep going because he was so tired. It made him harder on him. But it also got him more strength and because in himself, and keep on pushing. " 1 1 1 +6926 3 "Do not Exceed the posted speed limit tells a story of learning and determination, as one cyclist bikes through the deserts of California, encountering obstacles such as snakes and a lack of water along the way. The descriptive features of the setting greatly affect the protagonist along his journey. The essay takes place in the early summer. As the cyclist prepares to retire for the day, he takes particular note of the serenity of an early summer evening, and ends the day feeling calm. The next morning he is excited and rejuvenated, ready to bike again. The heat rises as the day goes on, and by mid-day the cyclist begins to worry about his water supply. He boldly continues forth reaching new terrain, rolling hills. Here he begins to lose hope, and is disappointed when he seem the town he hoped to find is an abandoned juice factory. The cyclist thinks he is going to die due to the heat and lack of hydration, but gathers his strength to turn the final bend, and reaches a bait shop where he can stop and get water, he is finally relieved. In conclusion, as the cyclist continues his journey through the California desert, the change in both weather one terrain coincide and affect the cyclists change in physical and mental strength to continue traveling." 3 3 3 +6927 3 "The features of the setting affects the cyclist in many ways. For example, the story said,""I gathered up a few pebbles and stock them in my mouth"" This quote explains that the setting was very and had pebbles. The setting benefiting him by taking the thrist off his mind. If their wasn't any pebbles by the cyclist he @MONTH1 not have made it. In cocnlusion in the story Do Not Exceed Posted Speed Limit the cyclist was benefited by the features of the setting." 1 1 1 +6928 3 "The features of the setting affect. Any cyclist because with the cyclist passed many time in the bicycle had problem on his/her back when he/she will be older. When they will be a older person and they had passed many time in the bicycle, they will had a serious problems and also they will can not walk more." 0 0 0 +6929 3 "The setting in the essay Rough Road ahead; Do not Exceed the speed limit affected the narrator in many ways. The first thing that affected his ride was the heat. at first he didnt really notice but then it began to slow him down. Then the ways of the roads began to affect his ride, the roads went from flat sheet to short, rolling hills. The road change and the heat made him say I could drop from heatstroke. Then because of the old towns he went through he was unable to get water. The water pumps were so old and unused for so long that the water was of very poor quality." 2 2 2 +6930 3 "The complex features of the setting affect the cyclist negatively throughout this story. His trip goes from bad to worse as he progresses to Yosemite. After taking directions from the old codgers, the author attempts the shortcut, but is dissapointed. He arrives at the first town but it is completely deserted. He rubbed it off though, and kept the cool pines and rushing rivers of Yosemite, as his motivation. He pedaled on, but began to run out of water when he arrived at a well, he found the water to be inedible, and continued. Just as if things couldnt get any worse his trail was getting rougher, and his water supply was low. The cyclist was becoming dehydrated, and began to lose hope. He became even more of a pessimist when a ridiculously large snake- blocked the majority of the pavement He kept going, and excitedly pedaled toward a building, but found it to be abandoned. He even put rocks in his mouth to help his dehydration. When he finally found the fish camp, he was relieved. All the obstacles he prospered through were worth in the end." 2 1 2 +6931 3 "The journey of a solo cyclist is a lonely one. The cyclist in Do not exceed posted speed limit had a particulaly hard journey, as made even worse by the setting. His main opponent in the battle of staying alive was the heat. In the California deserts as a day in June. It was no surprise that the sun would be heating down particularlly harder than it would at another place anytime. Also, as the terrain became hillier, his journey became even harder. There is nothing hard about biking in a flat straight line. But constantly peadling yourself up steep hills and around winding roads is no picnic. Just like the buildings around him, the cyclists water deteriorated as did his state of mind as his trip which started out very joyful became increasingly more mardid. It didnt really matter, I was going to die and the birds would pick me clean. This cyclist was fighting against strong forces of nature." 2 3 3 +6932 3 "In the short story, ""Rough Road Ahead: Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the setting plays an extremely important role. The story takes place in sunny California, where the cyclist was pedaling around 12 mph. the heat made his dehydration situation much worse. I was going to die and the birds would pick me clean. The cyclist was losing hope, yet he was still determined to find water. This setting was very important to the story, for if it had taken place at @LOCATION1, @LOCATION3, it would not have made sence. The setting contributes to the story by raising the intensity of the situation." 2 2 2 +6933 3 "The features of the setting affect the cyclist because they started to mess with her mind. She didnt knew where she was and on hip of that got lost. Whether you see nothing around. You or alot around you, youre going to feel scared. They have the same affect. In the authors case, she was cycling and didnt/couldnt and water. This is an over whelming feeling because you can die from dehydration. She then kept cycling and saw nothing. no one insight; not a building, car, or structure of any kind. That is alatining no water or people around, as if you are going to be just left to die. These settings would affect anyone who came across them. They dffinately affected the cyclist because she was by herself, and on her dvun. Plus, all she had was a map, her bike and an empty water bottle." 3 2 3 +6934 3 The features of this story tend to affect the cyclist very much. Because he took a shortcut he had an even longer journey than before. He was in the middle of no where with barley any water left and on top of all that hes exhausted from all the hills on the terrien. So because he took a shortcut it ending up costing him in the long run. 1 1 1 +6935 3 The features of the setting in the essay affected he cyclist because first of all he lisined to old fowks that havnt left their front porch in about ten years. Then he didnt ask someone elses apirean on where to go and how to get there. His worsed mistake tough was not trusting the map he had with him the howl time. If he would have just trusted his map and not when with when the old fella said he wouldint have almost died of heat stroke. 2 1 2 +6936 3 "In the essay, Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the setting affects him negatively because he was on his bicycle and he was in a hot area and no water whatsoever, like in this quote, I got down on my hands and knees, working the handle of the rusted water pump with all my strength. A tar like substance ozzed out. In the quote, the cyclist finally thinks he has found a water pump but he really gets nothing. Also, another negative thing is that he thought he was never going to get to where he was going, but in the end , he got there and he got some water." 1 2 2 +6937 3 "The setting in the story affects the main character greatly because of the heat. The main charater is biking throug a desert in the summer with little water. The heat of the setting provides a problem because the main character is at risk of dehydration and heatstroke. The main character knows that if he passes out in the barren desert he will sarley die. The main character says, The growing realization that I could drop from heatstroke. The main character is faced with a problem of man versus nature and the heat is winning. Heat and dehydration sap the main characters energy while he is biking through a desert, desperately trying to make it to the next town. In summary, the main characters biggest problem is the heat of the setting." 2 2 2 +6938 3 "The setting around the cyclist affected him in one main way. About forty miles into the pedal, I arrived at the first town (Kurmaskie). The cyclist put the words towns in to parentasis because it was actually a Ghost town. no on lived there, It was abandoned. Around the cyclist was deserts, and more empty towns. The father the cyclist got, the more we realized the old men were wrong as the cyclest was running low on water and there was no where to stop. He finally found some and vowed to never listen to old mens directions again." 2 2 2 +6939 3 "All the feature of the area have a have a big affect on the cyclist. It is a hot June morning, and he is on his bike, pedaling hard, going many miles. He can't find any water, because all the towns along the road are deserted. He is getting dehydrated, and losing strerigth. It seems like he might have collapsed it he hadn't thought he was going to @CAPS1, and if he hadn't gotten some water at that store. All in all, the setting seems to have the intention of king him." 2 2 2 +6940 3 "The features of the setting in Rough Road:Do Not Exceed the Posted Speed Limitby Joe kurmaskie affects the cyclist in a very negative way.It begins slowly with the ghost town.The narrorator chuckled, checked my water supply and moved on, he wasnt especially worried,but the fact he checked his water suggests that hell need to ration it for a while.The decline continues when he reaches the fock and the ramshackle shed.@CAPS1 the description of the place shows you he did not like it,and he confirms that with the words,this sight was troubling.He wouldnt be replenishing his water here.Any more of this hed be dead,either from dehydration or from pessimism.Eventually he reached the road sign which declared that going over 55 mph was a bad idea.This is ironics,he only going 12 mph to put it in his own words,sometimes life can be so cruel.He quite obviously hates the setting,and its all the fault of the setting." 3 2 3 +6941 3 "The features of the setting affected the cyclist because he had limited water, he had to peddle harder to get up over the hills and he was getting dehydrated from the heat. For example, he had limited water because he had taken the directions from the old men and probably didnt bring as much as he would have if he would have taken a longer way. Furthermore, to get up the rolling hills he had to peddle faster and harder. That affected him because he would have been more exhausted from peddling. Moreover, it was a June day and in June the days are hot with the lack of a good amount of water the cyclist would have started to get dehydrated. This is how the setting affected the cyclist" 2 2 2 +6942 3 "The features of the setting affect the cyclist in many ways. For one, his body heat raised a good bit. They dont come out and say it, but they do say, The sun was beginning to beat down. We all know that it your out side when its hot, you get hot too. It also probably added to his dehydryeon. As a long distance running, I know what the sun will do to you during a hot day. That is how the setting affect the cyclist." 1 2 2 +6943 3 "The features of the setting affect the cyclist in a major way. For one, if the desert was not a deserted mountainous area, in California then the cyclist would not have the same problems. By changing anyone features of the setting you would change how the cyclist would behave in the setting. Thus changing the entire plot of the story. If the cyclist was say in the entry or a mere develop area then he would not face the same dangers as if he were in a mountainous region. The settings features have a huge affect on the cyclist." 1 1 1 +6944 3 "In the story Rough Road ahead: do not exceed posted speed limit by Joe Kurmaskie the feature of the setting seem negative to the cyclist. The setting seems to start worrying the cyclist two miles after he said that he could make the next @NUM1 miles easily. For example the cyclist says Not two miles into this next section of the ride, I noticed the terrain changing. Flat road was replaced by short rolling hills, the cyclist seems worried at that point that things aernt going to be as easy as they seemed they were going to be. From that point on the setting seemed to get worse for the cyclist later on the cyclist ends up saying It didnt really matter. I was going to die and the birds would pick me clean. That was when the cyclist began to notice his fear of dehydration. The cyclist ended up making it and he realized what a big effect nature can have on you." 2 3 3 +6945 3 "The features of the setting affect the cyclist by unexpected things happening. His water supply got drank quickly and he couldnt find a town near. He was in the desert-like California, and the sun was beating down on him. When he did one town, it was more of a ghost town, and had rusted pumps that had battery-oil tasting liquid. Every person he asked told him is near, but from dehydration, it took him longer. the roads got windy and small hills occurred. There was a large snack in the middle of the road, as the tumble weed blew by. the finally saw a town that had a bait shop and was able to get water and cool down. " 2 2 2 +6946 3 "The setting in Rough Road Ahead: Do Not @CAPS1 Posted Speed Limit definitely affected the author. The cyclist states, ""Flat road was replaced by short, rolling hills"" (Kurmaskie @NUM1). The cyclist probably found it more difficult to navigate through the ""hills"" as opposed to the ""Flat roads,"" making him more quickly tired. The speaker states, I could drop from heatstroke (Kurmaskie @NUM2). The speaker is implying that it is so hot outside that he could faint from a heatstroke which could slow him down. The speaker also states,""water feeling somewhere in the neighborhood of two hundred degrees""(Kurmaskie @NUM3). The author did not have any good water to drink, because it was so hot outside, which affected him in that he was dehydrated. Many aspects of the setting affected the cyclist. " 3 2 3 +6947 3 The features of the setting affect the cyclist because if the old men didnt give the boy advice then he probably wouldnt have run into all the trouble he ran into. At the same time the boy made his way to were he was going. Next time though he will just use his map so he dont have to go through the scare of death again. 1 1 1 +6948 3 The features of the setting affects the cyclist by the roads condition being rough as the cyclist rides further along the road. 1 1 1 +6949 3 "The setting of this short story has a big affect on the cyclist. Since the story takes place in the desert, the temperature is very hot. The cyclist only packed enough water for the intended trip. Since he made a few wrong turns, he ended up needing more water. There were no signs of civilization so he could not stop any where and buy water. He came to a run-down rusty fauret and tried to drink water from it, but it was hot and tasted like battery acid. If this short story had a different setting, then the story would not make much sense. For example, if the story would have taken place in @LOCATION1 he could have just stopped and bought water. The setting is one of the most important elements in a story." 3 3 3 +6950 3 "The features affect the cyclist in many ways. For example the road, the rocks everything close. The cyclist needs to know everything about where he's going, because if not then he can run into some problems along the way, For example like snakes, rough terrain, rocks in the way. That why its important for a cyclist to never listen to anyone but themselves. That why when you see cyclist you see them around, a road where theres cars around, just in case they get into trouble." 1 1 1 +6951 3 The features of the setting affect the cyclist because It give it more life. More meaning and make I fun to read. 0 0 0 +6952 3 "At times when the features of the setting are bad it can have a great impact on the cyclist. For one if its too hot the cyclist is going to need plenty of water if he/she does'nt want to be dehydrated. There are also the dangers of heat strokes and deadly snakes, cyclist might want to avoid that. When your a cyclist times can be hard just prepared for the long run." 1 1 1 +6953 3 "The setting in the story Rough Road Ahead Do Not Exceed Posted Speed Limit really goes against the cycilist and his journey. This is because in the places he goes there is no water and if there is it is really hot or bad water. For example, on page @NUM1 it says, a tarlike substance oozed out, but the water wouldnt cool down, This explains how bad the water was when the cycilist was there." 1 1 1 +6954 3 During this essay the author is talking about his journey 1 1 1 +6955 3 The feature of the setting included nice cool pines and than a gost town and it bein hot out and banser of @CAPS1 and posine snacks and hills that where getting harder to go up. When he first started the pines where nice and cool but when he scan the gost town he sot dischriced than it started to set hot and than he seen the snack and thout that it was a dimed baby and was nuvves and than he was carid of dehydration than the hills started to make it harder and harder that is what it was like. 2 2 2 +6956 3 The features of the setting affect the cyclist because he has to use more energy to pedal up hills and through rocky terrain. Therefore he drank more water. When he coudnt. 1 2 2 +6957 3 "The features of the setting affected the cyclist in several ways. The first was the terrain, which started out flat, then turned to hills. The cyclist was growing tired from all the pedaling. Flat road was replaced by short, rolling hills. This tired him out faster, since going uphill is harder than riding flat terrain. The heat definitely affected him, because it made him thirsty. He was travelling through the high deserts of California in June. This is a very hot time of year, and when a person get lost without conserving water, which he had not done, a person get extremely thirsty. Not to mention the sandblasted picture of a young boy pourng a refreshing glass of juice into his mouth, which would remind the body of its thirst. So the setting most definitely affected the cyclist" 2 3 3 +6958 3 "In the story, the cyclist iS greatly affected by the features of the setting. For example, the setting has no thing for miles. Just ghost towns, makes it imposible to find any water. Also its a desert like setting, adding to his thirst. Another example is the hills, that made him even more thirsty. It was June in California so it must have been pretty hot and also the town that he are to had no water because they seemed desorted. Another example is the state he put under his tongue. Its a trick that lets you survive alot more effectively. Therefore the settings affected his journey and made him wish he didnt take the old mans advice." 3 2 3 +6959 3 "The features of the setting affected the cyclist in many ways. Three features I found were the lack of the water, the heat and the conditions and limits of the road. The lack of water really affected the cyclist. When he was died tried he/she didnt have anything to drink. The essay stated how would say she/he would save the water til the end. He /she was so tired so the lack of water really affect him/her. The conditions he/she was in really affected the cyclist also. From the beginning he/she was told the wrong directions. That was the reason why he/she was lost the entire time. Finally the limits of the road affected the cyclist. Hills and different grounds did not help the cyclist. In conclusion, the cyclist had many factors affecting him such as lack of water, limits of the road and his/her conditions." 2 2 2 +6960 3 "I think that the features of the setting affect the cyclist greatly. First, I think the weather conditions affect him. I think this because in the passage it says, I could drop from heatstroke. Meaning, its really hot! Also, l think the fact that he has no water left is affecting him because it says in the passage, l eased past, trying to keep my balance in my dehydrated state. This has a big affect on him, because hes very thirsty. Also, l think the fact that there is nothing around him is affecting him. I think this because in the passage it says there were no cars. I think all these things affect him." 2 2 2 +6961 3 "In Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the setting affects the cyclist. The cyclist takes advice from some old guys and ends up wishing he never did. He is on an empty road, flat and dry. He ends up drinking all of the water he has, and needing to stop for some more. I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June. He stopped to get more water, but once, all that came out was some tar like stuff, and then he couldnt find another place for quite a white. The flat road was replaced by short, rolling hills and he came to a sigh that said Rough Road Ahead: Do Not Exceed Speed Limit, and passed tumble weeds and a large snake. All of these things impacted his journey with fear, caution, etc. When he finally reached a place to get a drink, he was finally satisfied. Because it was hot, and empty, he was more thirsty so therefore the setting affected the cyclist." 2 3 3 +6962 3 "He feels alone there is noune around him to push him, and yet he keeps going trying to push him self to the end to win. The fast roads are rough and the hills are tall but he is a determined to finish." 1 1 1 +6963 3 "Heat, abandoned roads, snakes all are reasons that affected the cyclist. The heat made him get dehydrated faster while he was using energy. The long abandoned roads further increased his doubt of living the whole bike ride. He used up allof his water. So when he got to the old pump hot dirty water came out. The snake in the story made the journey for this guy perilous and deadly. This all happened because he listened to the old guys. When the other old guy was about to tell him whereto go he said no." 1 2 2 +6964 3 The features and the setting affect the cyclist a lot. One reason was that he was in the desert. Like in the quote through high deserts of California. This means that it was hot and he could pass out from a heat stroke. Then he couldnt even get any water. Like on the quote of the rusted water pump. it was describing how old it was then the cyclist got some out but it tasted like old battery acid. Therefore the features and setting afected The cyclist. 2 1 2 +6965 3 "The features of the setting intensely effect the cyclist over period of time. Destined to reach yosemite national park from Lodi, California, a determined cyclist rode strongly through the gentle evening strongly. When the setting changed, so did the effect it had on the cyclist. When the man reached the first town, which was deserted, energy began depleting because the sun began to come into the picture. next, he came to a shed desperate for water only to find rusty pumps with tainted, unsafe water. When the flat terrain turned to rolling hills, the man was entirely exhausted. With what I believed to be my last burst of enery, I manevuered down the hill. That quote directly describes what the man was feeling and how the hills effected him. When the man stumbled across a fish camp with water, he became reloaded and replerilshed with confidence he had before when he rode into the morning with strong legs and a smile" 3 2 3 +6966 3 The setting affected the cyclist in many ways. For example he was riding in the desert and all the towns he was going to were abandoned. The month was June a hot month and the sun was beating down on him. And he was cycling with very little water. 1 1 1 +6967 3 "In the essay Do Not @CAPS1 Posted Speed Limit the setting effects the cyclist in many ways. When the cyclist arrived at the first town, he described it as a ghost town. This effected the cyclist because he started to have doubts about the directions he received, but he was looking foward to the cool pines and rushing rivers of Yosemite so he persevered. The setting of the next land mark was similar to the last. There was a shed, a few rusty pipes and a corral that ""Couldnt hold in the lamest mule. This made the cyclist more werry of the path ahead because he was running out of water. The next place was also similar. There was an abandoned @ORGANIZATION1. The cyclist was running out of water and now thought he was going to die because everything was deserted. Then, finally, the setting changed. There was a store that was actually opened. The cyclist then felt happy and relieved. That is how the different settings effected the cyclist." 3 2 3 +6968 3 "The authors setting described a difficult terrain and harsh weather for bike riding. The author said that it was early summer which means it could be hot and uncomfortable weather for the cyclist. The author also that when the cyclist reached the first town, the sun began to heat down. That means the temperature is going to rise since the sun is getting stronger. Riding a bike in hot weather is very difficult because it takes a lot of effort and makes your body dehydrate faster because the heat makes you sweat which lowers your water retention. Another feature of the setting that the author described was the cyclists location. He was traveling through the high deserts of California. This gives you a sense of how much hotter it is since hes traveling through deserts during early summer while the sun is high. After the first couple town, he starts to ride on short, rolling hills. Hills take a bigger toll on a persons body because it takes more effort to pedal up a hill." 3 2 3 +6969 3 "The features of the setting affected the cyclist greatly. Fem the ghost town to the bait shop, it was all a challenge for him. A misleading challenge , But a challenge . In the desert is were water grew short and he tried everything to push himself. From staring at the horizon to get to a place to another from sucking on pebble stone to not focus on water. And when he arrive at the bait shop. A sense of relief came to him, like that shop was his safe haven. But yet he would never get directions from any old-timer again. Lack was not a factor in this story. Rather it was drive and overal climate of the story. When it was two hundred degrees left, and no water left, he pushed himself to the light. And also when he saw a building he was determined to get to it." 2 2 2 +6970 3 "The cyclist was trying to make it to Yosemite National Park. The cyclist was in Lodi, California when he decided to ask for directions from old codgers so that he could take a short cut. He followed their directions and little did he know that he should have stuck to his original directions. The cyclist was traveling through the high deserts of California in June. The cyclist became very hot and thirsty from traveling in the desert. It says in the text when I tried a drop or two, it had the flavor of battery acid This shows that he had no water left to kept him dehydrated throughout his travel. Also in the text it says with what I believed was my last burst of energy, I maneuvered down the hill this shows that he had no energy left." 2 2 2 +6971 3 "In the essay Rough Road Ahead ;Do Not Exceed Posted Speed Limit by Joe Kurmaskie he goes through all kinds of settings where the going could get better or worse. I noticed the terrain changing, flat roads was replaced with short rolling @NUM1 Kurmaskie). This shows or explains that the going could get a little tougher now because he will have to be riding up hills and he is almost out of water. There was no one in sight, not a building, car, or structure of any kind (@NUM2 Kurmaskie). This explains that the man could not get water or a ride from anywhere around, because there was nothing out there to at. This is how the setting features affected the cyclists." 2 2 2 +6972 3 Almost all the features of the settin affect the cyclist. For instence the fact that it is hot causes him to drink a lot of water and need a lot of water. In the story it goes on about how thirsty and sweaty he is. The water bottles contains only a few tantalizing sips. Wid rings of sweet circled my shirt. These description suggests that he is very hot since he is sweety and hes been drinking so much. Another feature of the setting is the rolling hills that make him feel like he is never going to reach the next town. I began breaking the ride down into distress I could make it test for. He is making the ride seem like a lot of short rides so he could make it. 2 2 2 +6973 3 "The setting is described by the author, were very challenging for three reasons, distance, water and the heat. All of these only occurred to multiply the effects of the others. As time had went on, the cyclist grew tired from the heat. In one sentence the effect of the heat were clearly described by the cyclist" 1 1 1 +6974 3 "The features of the setting effect the cyclist in many ways. The scenery makes the cyclist turn worried, unconfident, and in the end an ironic hopeful. The cyclist came upon the first town, and described it as only having one ramshackle shed, several rusty pumps, and a corrall I believe this is when the cyclist realized the men were a little off, and began to worry: he also couldnt refill water supply, so fear of dehydration also kicked in already tired, the cyclist became unconfident when he came upon the sign reading, Rough Road Ahead: Do Not Exceed Posted Speed Limit. Knowing that this was going to be a long and slow journey, the cycles becomes unconfident that he can make it, finally, when passing the sign saying, ""Gary and Wilber's fish camp If you want bait for the big ones, weve your best bet,"" the cyclist reached a hopeful stage, because he knew he had found civilization once again. I believe your atmosphere and surroundings can effect your general mood, and that stands true today with the cyclist." 1 1 1 +6975 3 "The way the features of the setting affect the cyclist is by either making the ride easy for him or tough for him. In the essay it said ""No Town"" but without a town theres no water and water @MONTH1 lead to dehydration. It also says something about flat roads turning into ""short, rolling hills."" This means that the way he had to go was tough and making it hard for the cyclist to stay focused. Those are some examples of the setting affecting the cyclist. " 2 2 2 +6976 3 "The setting affects the cyclist becuse it is the passes is on a road much alot of hills it would affect him as being tired, or if the biter was in a place where the cold or hot it would affect him or his temp. and by his attiude." 1 1 1 +6977 3 The settings in this article effect the cyclist by having to bike a lot of miles to get to the next town. The cyclist has limited amount of water and its very hot out. Theres nothing insight for miles and miles. 1 1 1 +6978 3 The futures of the setting affect the cyclist was that he show the maD to other people and he shouldnt (ister) to others where he had it to go. 1 1 1 +6979 3 "In the essay Do Not Exceed Posted Speed Limit, many features of the setting affected the cyclist. And these setting could be easily formed in the middle part of the essay. And these settings caused the cyclist exsaused on his journey. First, the cyclist noticed a rode change from flat to short, rolling hills. He had to spend more energy to go up the hills which caused him to loss a certain amount of energy. Then, his lack of water caused him a dehydrated state. He could loss an another large amount of energy by this and out of this stage, he mostly needs someone to support him or be on his side, but he was riding alone, there was no one on sight, not a building, car or structure of any kind. This might cause his emotion break down to make his energy to loss. Overall, the cyclist suffered a loss of energy on his journey. And was unable to have a supporter to help" 2 3 3 +6980 3 "The setting affects the cyclist because it can provide landmarks and directions. For example, the narrator states, Theyd sounded so sure of themselves when pointing out landmarks and spouting off towns I would come to along this breezy jaunt (Kurmaskie @NUM1). This shows that the landmarks can provide as landmarks and directions along a journey." 1 1 1 +6981 3 In the story Rough Road Ahead: Do not Exceed posted speed limit the cyclist has some very rough obstacles on his way to Yosemite National park. With his lack of water and diredness he runs into a big snake that he thinks is a diamond black. He easily passes the snake and moves on. Being in the intense heat and with know water he never gives up and knows he can make it to the park safely. The reason why he go's this way is because @NUM1 old-timers who havent left the confines of their porches since carter was in the office. These guys gave him wrong directions. That really affected the cyclist because all of the other stuff wouldnt have happened if he payed attention to his surroundings and people around him. 2 2 2 +6982 3 "The features of the setting effect the cyclist on different occasions in different ways. For instance, when arriving at the first town, the author calls it your average ghost town but continues on with confidence. The next building he saw was an abondoned Welchs Juice bottle factory, on the building was a singn with a boy drinking a cold glass of juice. This intimidates the reacher the begins to question the wisdom of the old men. Continuing on he reaches another building. To his relief its a bolt shop that was still in business. He goes to the sink immediately to drink the water at this point he is relieved to have water $ be near civilization instead of in dessert without a sight of liFe or building. Therefore his surrouding throughout the story make him indifferent, confident & relieved. " 3 2 3 +6983 3 "The features of the setting affect the cyclist because the roads are rough, uneven and he has to push out more energy to pedal his bike on rough, uneven roads then on nice, paved, even roads and also he is out of water so there again is using all his energy without any redaveanator." 1 1 1 +6984 3 "The setting affect of a cyclist can be petty complicated. So many things has to be prepared for you to be a successful cyclist. First up have to be prepared for the weather. For example when there is serious weather conditions like rain,snow you have to careful of ley roads.Also they have to be prepared for is long riais. Some naes might be from @NUM1 miles the have to bring plenty of food and water. Also anothe affects that a cyclist has to tase is the condition of the bike. For instance he/she has to make sure the bikes are in good condition and is going cooperate. Also if work need's to be done to the bike then the bike can be worked on.Also another affect of a cyclist is the cyclist is in shape. For instance if the cyclist is in shape he/she is able to ride for a long period of time. Finally another affects is the cyclist has to know where he/she is going. For instance the man in the story didn't know where to go so thats an important keypoint." 1 1 1 +6985 3 The setting of where cyclsit takes there journey effects the cyclist. The reason I say that is because in the story Do Not Exceed Posted Speed Limit the cyclsit came upon a conflict with the setting. The conflict waas it was very hot and he did not use little things to survive witch he did. These are the reason why I say the setting of where cyclsit takes their journey matters. 1 1 1 +6986 3 "The setting in the short story; Rough Road Ahead: Do Not Exceed speed Limit greatly affects the cyclist. The rough terrain and blazing sun test him and make him suffer in ways he never imagined. One point, after the cyclist has been going for hours he notes, Over on long crippling hill, a building came into view. I wiped sweat from my eyes to make sure it wasnt a mirage this setting has caused the cyclist to become so dehydrated that he cant think. The cyclist knows the dangers of the setting around him. As you can see the setting has a very strong affect on the cyclist." 2 3 3 +6987 3 The cyclist was affected by long hours of riding the bike into the areas where he never been. 1 1 1 +6988 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit. The cyclist is affected by the setting mently and physicly. For example the setting affected the cyclist mently because it all was dessert and sand with no water. He thought he was going to die, he said I was going to die and the birds would pick me clean. If he had some water he would not have thought this. Also the cyclist was affected phyisicly because the road was rough it looked as it could go on forever. He was losing energy and was getting tired from riding up all the hills with little water left in him. It was hot and it seemed hopeless but if he was riding through the evergreen forest I dont think he would have felt this way. In conclusion the cyclist was effected by the setting phyisicly and mently if he had not been riding in the desert he would not feel this way" 2 2 2 +6989 3 "In the essay, Rough Road ahead"" the character sees many settings through his ride, all of which affect his mood and physical condition. For example, when the author describes one place he came to as, one ramshackle shed, several rusty pumps and a corral that couldnt hold in the lamest mute greeted me. Thes sight was troubling, this was the turning point where the cyclist began to worry. He was running out of water, The sun was beginning to beat down, and he was probably tired of pedaling. But, to make matters worse, he came to rolling hills. This affected him because he had to work harder and had less water to pick him up. When he finally got to a modernized town his spirits were lifted, and he was able to get water to cool him down. This gave him more strength and will-power to continue his trip Yosemite park." 3 2 3 +6990 3 "The setting of the story has a huge affect because it was such a empty terran that made him rely on only himself because of the lack of others to help. For example, if he was riding through a city for hours he could stop and take a break in a store or get water from about any where. But being in the desert it really tested his inner strenght to go on and get to safty." 1 1 1 +6991 3 In the essay I can conclude that there were many features of the land that affected the cyclist. For example in the text it states ridiculously large snakeblocked the majority of the pavement in front of me. If you are greatly afraid of snakes that could ruin your whole trip. The cyclist was scared but over came the fear and moved on. Also another thing that changed the cyclist was the lack of water. Not having enough water could be bad. As stated I could drop from heatstore on a gorgeous day in June There are many features that effected the cyclist and his journey. 1 1 1 +6992 3 "In Joe Kurmaskies, Rough Road Ahead Do not Exceed Posted Speed Limit there are several features that effect the cyclist. ..and I was travelling through the high deserts of California in June (Kurmaskie) Deserts in June are extremely hot and dry and caused the cylist to become dehydrated quickly. Flat road was replaced by short, rolling hills. The change from flat lands to hills made the ride more strenuous on the cyclist. These conditions directly affect the cyclist." 2 2 2 +6993 3 "The cyclist was trying to get to Yosemite National Park. The cyclist was riding through the deserts in June. The cyclist barely had water at the end of the stony. A lot of buidings were abandoned, right when he needed water. That is how the setting affected him." 1 1 1 +6994 3 In the essay rough road ahead the setting does effect the cyclist because he has been pedaling for so long and he is becoming dehydrated I had been hitting my watter bottles pretty regularly. I was in the @LOCATION1. Another reason the setting effects him is because he is starting to see mirages A sandblasted picture of a boy pouring a refreshing glass of grape juice into his mouth could still be seen. 1 1 1 +6995 3 "The features like not enough water not enough sense of direction, effect the cyclist because he needs water to keep on peadiling. He needs maps to know what direction and where he is going. From not enough water he said I was going to die and the birds would pick me clean, leaving only some expensive outdoor gear and a lost entry in place of old men, their wisdom, and there been sense of direction. I made a mental note to change that pargraph That site ment that the old mans sense of directin was out of date. They did not no where any thing was at just there in giant poarch." 1 1 1 +6996 3 The features of the setting is that it is hot and dry. The way that it affects the cyclist is that he gets very hot and he drinks almost all of his water and he only has about @NUM1 sips left when he gets to the other town. It also effects him because he had an advantage. The advantage that he had was he left before the sun came up. So then he had a time to get cool. Another part of the setting that affects the cyclist is when he gets even some of the hills he gets a little bit of the wind. Also when the cyclist was thirsty he put pebbles into his mouth. 2 2 2 +6997 3 "Setting plays a crucial part in the cyclists mood and energy. For example, in a cool @DATE1 day riding gently downhill, the rider is happy and energetic. However, traveling through the high deserts of California in June is not the best environment for laughs and ease. The cyclist in the story was hot exhausted, and hydrated. He thought, I was going to die and the birds would pick me clean. Where the cyclist rides can have a huge effect on the cyclist himself." 2 2 2 +6998 3 The cyclist was riding his bike and was trying to get to rosemite and he had lack of water but he went on any way and he had to go past a snake and got scared. 1 1 1 +6999 3 "All the features of the settings affect his rythm, determination and will to win because it sets him off his goal a little bit when he should just try to ignore stuff the best as he can. Instead of thinking about it. If I was him I would just ride my bike & think about I thing winning!" 1 1 1 +7000 3 "To a cyclist, the surrounding setting can either cause triumph or despair. The cyclist was given very old directions. He was given back roads that are abandoned now. These towns had no people in them normally that would not matter, but he was traveling through the high deserts of California in June. (@NUM1). If there was shade, a breeze, and @NUM2 weather, he would be fine, but he is pedaling a bike in a desert during the summer. A ghost town with no good water could have killed him. A cyclist needs to know their surroundings and be prepared for what nature throws at them." 2 2 2 +7001 3 The features of the setting affect the cyclist in many different ways. First of all I think that when the cyclist came across the ghost town he felt alone and discouraged. I think he felt like he was never going to find his way and there was no one there to help him. Also the long hilly highway with nothing but desert on either side basically gave him the discouraging feeling that that road was never going to end and there was no way out of what he had started. I think it made him feel trapped and it was so dry that there was no water in sight and it made him feel so much thirstier than he was. Overall I think that it had really physical and psycoligical effects on him. 2 2 2 +7002 3 "In the story Do not exceed posted speed limit by Joe Kurmaskie, the cyclist runs into a couple obstacles and they affected him in many ways. In the story the cyclist is riding a bike for miles. tumbleweeds crossed my path and a ridiculously large snake blocked the majority of the pavement in front of me.... in my dehydrated state. This quote only lists a few of his problems. He had tumbleweed, a snake and he was dehydrated. He had to stick pebbles in his mouth because he heard that they take away your dehydration. All through out the story he ran into many problems or obstacles but overcame them very well." 2 2 2 +7003 3 "The features of the setting greatly affect the cyclist. Some of these features include:- the heat, dangerous animals, not a lot of civilization, and the terrain. In the essay, each of these features were spoke of and they all affected the cyclist in a negative way. For example, when the cyclist headed from the intense heat, he needed to find a town. The first town he found he described as a ghost town It took a while to find another town and he had been hitting [his] water bottles pretty regularly and [he] was travelling through the high deserts of California in June so he was getting really dehydrated and ready to collapse. The flat road [being] replaced by short, rolling hills wasnt helping either. The terrain really affected the ?? he had to exert in order to keep going, along with being dehydrated the cyclist had to deal with dangerous animals. During his journey a ridiculously large snake blacked the majority of the ?? which ?? him it could have ?? The features of the getting definitely affected the cyclist in many ways" 3 2 3 +7004 3 "The features of the setting affected the cyclist in many ways. First, the heat made the cyclist overheated. For instance, the weather was sunny in June. Also, the hills made the cyclist very tired. For example, the cyclist was losing energy and had to keep pushing. Lastly, the setting had no places that could have helped the cyclist. For instance, the cyclist had trouble finding a place with water to drink. In conclusion, the setting affected the biker in a very negative way." 2 1 2 +7005 3 Features of the setting affect the cyclist in the way that it is so hot that he is quickly be coming dehydrated. Another feature is that all the building seem to be either abandoned or in despair. 1 1 1 +7006 3 The features of the setting strongly affect the cyclist. Now the setting is in the california desert on a hot day in sane wich caueses the cyclist to drink all of his water wich later malice him dehydrated. The barren desert with no landmarks causes the cyclist to become lost wich is the main problem with the cyclist. 1 1 1 +7007 3 "The setting of this story plays a huge part in the final outcome. The author makes a mention that he is travelling through the high deserts of California in June. This sentence alone tells the reader that it is hot. And not hot by @LOCATION2 standards, where it gets to @NUM1 degrees, maybe, by noon. That means that the day starts at @NUM2. By noon, it's past @NUM3. Also, the author comes to a sign marked ""Rough Road Ahead: Do Not Exceed Posted Speed Limit. @CAPS1 he makes note that hes only going 12 mph. Before he reaches any sort of civilization, he has already drunken most of his water, his last ""tentalizing sips,"" This is his main problem, his lack of water. He drank most of it in the beginning of his ride, thinking hed be okay, but he regretted it later on" 2 2 2 +7008 3 "The features of the setting affects the cyclist in many ways. The cyclist was in the middle of almost nowhere dehydrating. There were no signs for resting areas where you can find water fountans around. The cyclist put pebbles in there mouth to try forget about being thirsty. Her surroundings were bumpy so she swallowed one. She just kept going and her words were I was going to die. First the cyclist was in danger of dehydrating, and end her satisfaction. The cyclist made it alive as she saw Gary and Wilbers Fish camp. Her setting was very clear until then. The cyclist was then relieved and made it alive." 1 1 1 +7009 3 "Because he is dehydrated, the setting makes him worse. Hes biking, in California, in @LOCATION2. Its not and the sun is probably scorching. The heat plus all the biking hes doing, is making him even more thirsty and tired." 1 1 1 +7010 3 "The features of the setting affected the cyclist in many was. The cyclist had been riding on the high deserts of California in June. The cyclist also saw a ridiculously large snake. There was also no signs of civilization for miles. There was no one insight, not a building, car, or structure of any kind. The cyclist went through many different obsticales travilng, triying to get to Yosemite. I think the settingS affected the cyclist in many ways." 1 1 1 +7011 3 "Features of the setting affect cyclists greatly. Things like weather, terrain, temperature, altitude can make or break a cyclist. In this essay, the heat and hills on the road challenge the cyclist. He just keeps going through, and eventually he gets to civilization. This lets you know that you cant mother nature control you." 1 1 1 +7012 3 The features of the setting greatly affect the cyclist. The author is getting worn out and is rapidly running out of water. He was traveling through the high deserts of California in June. This shows how the setting is causing him to become greatly exhausted. 1 1 1 +7013 3 "The feature of the setting affected the cyclist tremendously. According to the text, the cyclist was confident he would make the eighteen miles until he passed through the flat round, that was replaced by short rolling hills. He said and I quoted I toiledon he sounds like its hopeless, that he wasnt going to make it. As you can see the setting does effect the cyclist." 1 1 1 +7014 3 "The setting of Do Not Exceed Posted Speed Limit was very hot deserts. On a bike ride there are not many places to stop for food or water. On a bike ride you cant bring a lot of louage with you. Only important materials and a big enough jug of water. An example from the text to show how bad it was out there. I got down on my hands, and knees, working,the handle of the rusted pump with all my strength. He was so thirst and tired he didnt know how else to get some water" 1 1 1 +7015 3 "In the setting the young man is faced by some challenges that make him as an individual a stronger person. For example he was proud of himself he mad himself happy by saying at the end ""yes sir! I own a very good map"". He knows that he got through the heat, dry air, snakes, and a low supplie of water to get to where he was determined to be Yosemite." 1 2 2 +7016 3 "The setting in the story Do not exceed posted speed limit"" affects the cyclist because its a dry area in California in June. The cyclist really needs water which is the main thing affecting him besides the fact that hes lost in a ghost town. Therefore, the lack of water and misleading directions are the main features displayed." 1 1 1 +7017 3 "The feature of the cyclist was very good it erodding to who he say in paragraph @NUM1 @CAPS1. I would describe it as a fun. It also looks this time was one of his bes time. Here are some examples he is happy, competive, and thin is full. Im going to explain my examples. First, he looks hoppy becaus in the story he said the morning with strong legs and smile on my face. the phase can to you how hoppy he felt. My second example was competive, he seems like a competive person, bcouse he is very heathy and lead to to take a ride from the bike. My third example is the way he is becasse he soid ""As easily as sounding bond, my trouble, thirst and fears were all behind me the part made me feel. " 1 2 2 +7018 3 "In the story Do Not Exceed posted speed Limit by Joe Kurmaskie, the features of the setting affect the cyclist. We can tell because the author writes that road was replaced by short, rolling hills (Kurmaskie @NUM1). This tells us that cyclist is hard to ride on the road. The speed limit is also affect the cyclist. When the the speed limit sign is appear, the character feels life can feel so cruel (kurmaskie @NUM1). It tells us that character can not do what he is trying to do. The bad road and speed limit sigh effect the cyclist." 1 2 2 +7019 3 In the essay the features of the setting affected the cyclist. In the begginning the setting was at the old mans place and the cyclist was happy and confident. When he reached the ghost town and was out of water he was upset and frustrated. When he saw the building he was relived but when he found out it was abandoned he was sad. When he finally reached the store he was excited and relived. That is how the setting affected the cyclist during his trip 1 2 2 +7020 3 "In the story, Do not exceed posted speed limit, there are many features of the setting that affect the cyclist. First, in the beginning of the story it says that, The sun was beginning to beat down, the temperature was beginning to rise, but it had not really affected the cyclist because he had plenty of water supply. Next the story says, I was travelling through the high deserts of California in June, Californias temperature is really high and June is one of the hottest months of the year. The temperature was very high and the cyclist did not have much water left. This was affecting the cyclist because he was tired, hot, and getting dehydrated. Finally, at the end of the story the terrains were changing and there had been more hills and a road that was not as smooth as pavement because it was a dirt road and the hills were making the cyclist have to cycle harder to go past making him very tired. Also the temperature was still very high and he did not have barely any water left. By the end of the ride the setting of roads, temperature and the distance of the ride had made the cyclist exguasted and dehydrated. " 2 3 3 +7021 3 "In the short story Rough road ahead .Do not exceed posted speed limit , The cyclist faced many difficulties .These difficulties were the result of the setting .The story takes place in the high deserts of California in June .Because the month June is very warm , and the climate of California is usually hot and dry ,the cyclist ran into problems .Not only did this affect the cyclist , but he travelling through the desert .The setting also included several abandoned towns along the way , which contributed to the problem .The cyclistsoon ran out of water , and discovered the towns that lay before him were unoccupied .He had no choice but to continue with his the journey ." 2 3 3 +7022 3 The features of the setting effect the cyclist is many different ways. One way is the hilly terrain makes him work harder and wears him out. Since the cyclist is getting worn out he needs to drink more and more water. Now that hes drinking more water his running out of it faster and wanting more and more of it. Then when he starts to use less water to conserve it until he gets to the next town he starts to become dehydrated and more tired and he starts to feel weak. Also because the terrain is hilly his legs are working harder to go up the hills and his legs become tired. It also starts to get hotter and he gets thirsty more often. That is how the setting affects the cyclist. 2 2 2 +7023 3 In the poem Do not exceed speed limit the setting is described as very rough and dry. The man on the bike says he was running low on water. At one point he says At some point tumbleweeds crossed my path and a ridi culously large shake This makes the setting sound dry and empty with a harmful snake around. this man also said about a sign which read Rough road ahead: Do not exceed posted speed limit this also made it hard for the man to ride. These are the settings that affected the biker in the story. 1 1 1 +7024 3 The feature of it is the landscape the characters the plot the end and the begining. 0 0 0 +7025 3 "The setting in Do Not @CAPS1 Posted speed limits affects the mood of the cyclist in that every time the setting changes the mood of the cyclist changes. In the begining of the story the cyclist is riding through the cool pines and rushing rivers of Yosemite. @CAPS2 this time the cyclist is enjoying his trip and is in a positive mood. As the story goes on there was no one in sight, not a building, a car, or structure of any land. At this point in the story the cyclist has exchanged his positive mood for a desperate one as his water begins to run out." 2 2 2 +7026 3 "The setting in the essay Rough Road Ahead makes the bikers travel a very difficult challenge that he has to overcome. When the flat road was replaced by short, rolling hills, the biker must use more energy to peddl up the hills. This made it hard on him to overcome his exauhtion of physical endurance. Also, he states that he was traveling through the high desert of California in June this weather is very hot and dry, therefor causing him to quickly run low on water. And, because he was in the desert, there was no sign of towns or people or salvation of any type. These conditions made it hard on the biker because he knew if he dropped from dehydration, no one would be around to save him. In conclution, these hard conditions challenged the bike a great deal." 2 3 3 +7027 3 "The features of the setting affect the cyclist in many ways. The cyclist was on a very long bike ride to Yosemite National Park. However, on the way there, he had to cross through a desert like terrain. The blistering sun had been beating on his back for many miles. All the heat built up a desire for him to get water. He had been very tired. The terrain had made him drenched in sweat. If it wasnt so hot, then he wouldnt of had that much of a hard time. The desert contains a very high temperature, which makes it harder to endure physical activities. Even if you are to have a high endurance. The heat will make you very tired, and you will lose a lot of energy. Also, it didnt help anything, that the elderly men, had gave him terrible directions. That is why I think the setting affected the cyclist." 2 3 3 +7028 3 "The setting in the story Do not exceed posted speed limit affect the author in a big way. The features of the setting are that there was no one in sight, not a building, car, or structure of any kind. The fact that there was nothing around him, made the author lose hope and trust. After the author saw the old juice factory, he felt like something was happening in his favor. Then he saw that it was abandoned and he lost all hope. He shows his loss of hope again when he talks about how hes going to die. He shows that hes lost trust in the old men when he talks about never accepting advice from old-timers who havent left their porches since Carter was in office. In conclusion, the features of the directions he was given and lose any hope of surviving." 3 2 3 +7029 3 "At the beginning of the ride, the cyclist is feeling good and strong and the day as well as the journey, is just beginning. The sun begins to beat down on the cyclist but he remains upbeat, still feeling good and barely noticing the heat. When he arrives at an old rusty water pump, he feels disappointed and tastes a liquid that resembles battery acid. The terrain begins to feel like more of a hill, which makes the struggle even worse. The cyclist is drinking water more now, and is becoming tired. He comesto a rough road and says, sometimes life can feel so cruel, which lets the reader know he is feeling the negative affects of what he presumed to be a nice bike ride, a snake blocks his path and he becomes dehydrated. The cyclist feels refreshment and relief at a sign for a fish camp, and his thirst is replenished when he takes a satisfying gulp of water in the restroom. The water is a feature @NUM1 the setting that refreshes the cyclist, while the hot sun, rough terrain, and unknown area are features that make the cyclist feel lost and tired." 2 2 2 +7030 3 "The features of the setting affect the cyclist in many ways. For example the sand and the intense heat are two big parts of the setting, which make him thirsty. ... followed by brakish water feeling somewhere in the neighborhood of two hundred degrees. This is a quote that explains the intense heat that the cyclist is feeling. The sun is another big feature that affects him. This is how the setting affects the cylist." 1 1 1 +7031 3 "The feature effect the cyclist because he wants to go somewhere spectaculiar and amazing like. Like for example, he said he was thriving on this one spot forever and he finally got their and it was a ghost town and he chuckeled and roud away because it wasnt what he was looking for. I belive that this guy in judging every place he goes by the way it looks and not by what it haves to offer like he doesn't believe in getting direction from an old mat, but yet he still took it. I believe that he wants to get were he wants to go and not let anybody get in his way no matter what it's like he is looking for a perfect spot and he think want he finds it he will be filled with story." 1 1 1 +7032 3 "The setting can affect a cyclist in many ways, if it were hot out, he would be thirsty and sweaty. If there were hills the cyclist would be tired as well as thirsty. The cyclist although thirsty and tired is determined to get through and find a town. The cyclist said I began breaking the ride down into distances I could see on the horizon, telling myself that if I could make it that far, Id be fine, By saying this, he knows that he can make it that far as well as determined to do so. With the terrain causing even more trouble for him, would make it more difficult, but he knows that he must overcome his challenging activity but he still keeps a strong spirit with that, he can do just about anything because he has the encouragement he needs." 2 2 2 +7033 3 "The features of the setting affect the cyclist by making his mood change. In the @LOCATION1, where its nice, shaded, and cool, he feels fairly good. Hes excited and ready to take on the adventure of a new path. His still in a good mood when he comes to the first town. As he moves on, and his water supply deplets, his mood sinks lower and he becomes more frustrated. In the ironic twist of fate that he finds a Welchs Grape Juice, Factory, he is about to quit. He is dejected and almost ready to admit defeat. But he forces himself to go on, and when he finally reaches a place with water, his relief is mixed with wariness of the old man sitting on the porch. He will never take after for granted or advice from old men ever again." 2 3 3 +7034 3 "The features of the setting only drain the cyclist's willpower. The things he sees discourage him, for example one ramshackle shed, several rusty pumps and a corral that couldnt hold the larnest, mule greeted me. This sight was troubling . The desolation begins to wear away his hope of finding a building or town sometimes the things are psychologically damaging, In an ironic twist that should please all sadists reading this, the building abandoned years earlier, by the looks of it had been a Welchs Grape Juice factory and bottling plant. A sand blasted picture of a young boy pouring a refreshing glass of juice into his mouth could still be seen. For someone who is quickly running out of water, this this irony could make one lose their resolve to continue. The snake and rolling hills slow him down, and make him use more energy. The heat dehydrates the cyclist even faster. The environment is a hostile one for a cyclist. " 3 2 3 +7035 3 "The features of the setting affected the cyclist in many ways. First the climate affected him the most thats so because he became to hot, drank a lot, and then became dehydrated. So he had no energy because of dehydration. Another one is the built of the road. Thats so because it was rocky bumpy, winding, hills with being dehydrated the road was very tempting to just give up and die. Then the heat got him because there was no shade, no water left, and the sun just beating down on him." 2 2 2 +7036 3 "During the cyclist trail there are many factors that play out to be disadvantages to him/her. There are rough roads, bad water pump, abandoned battling plant, and the long lasting truth that it wasnt even his path. All of these factors create something new in the cyclist. As the cyclist recover the first town and realizes it is decreased he is initially amused. He then pedals on, but realizes his water is running low. Then , what is originally a sign of hope because another let down. A water pump found just in time, but the water is no longer any determination they reach rough roads creating, once again, a more painful journey. Finally, the cyclist sees a building in the distance, but again, deserted. The only goodness as the poor cyclist is when they came along a bait tar, some sign of civilization that keeps him alive. Hope after hope arises to the end in turmoil upon turmoil. These encounters would cause oneself to become persimistic on even a task, but he sought through. These encounters create an interesting meal. Every time you catch word on hope you become entitled to what could happen next and then feel sorry for the cyclist after having hope on multiple occasions. The steady and salidrising the plot keeps the reader entitled wanting more." 3 3 3 +7037 3 The setting affected the cyclist because of the bad condition roads. The was also hills so they made it harder for the cyclists. 1 1 1 +7038 3 "There was no one in sight, not a building, car, or structure of any kind. This adaodoness makes it hard for the cycleist to frot hope and threes as where to get water. I could drop from a heat strote in a gorgeous day in June, hes in the desert in @LOCATION1 in June with little water around no one this make's him very desperate since hes adaodoned." 1 2 2 +7039 3 "The main features that affected the cyclist were the ruff terrain and the hot sun. The rough terrain made it harder to pedal and it tired the cyclist out faster. But also helping was the hot sun because it would dehydrate him while he was riding. So between the hard to pedal rough terrain and the dehydratiog hot sun, the cyclist was very affect to the point of exausition." 1 1 1 +7040 3 "The features of the setting in the essay, Rough Road Ahead: Do Not Exceed Posted speed limit affect the cyclist. As the cyclist rides to his destination, he encounters obstacles and views his surroundings. The author gives the starting setting in the second paragraph as a reservoir campground outside of lodi, California an early. Summer evening. The reader is informed that the temperatures are not in summers in California. This gives the cyclist his main conflict, the lack of water. With temperatures being high, it is easier to become quickly dehydrated. The author stated, The sun was beginning to beat down and I was traveling through the high deserts of California in June. Also, to cyclist encounters a ridiculously large snake in the middle of the rode. The reader is aware that there are many conflicts which one can encounter while cycling. There are finally many features of the setting that let the cyclist know where he currently is, and the place where he wants to be most, the cool pines and rushing rivers of Yosemite. @CAPS1 the essay, the cyclist is determined to reach Yosemite, and although he faces troubles, he doesnt give up and is relieved when he finally receives water." 3 3 3 +7041 3 "The features of the desert changed the way the speaker thought about his journey. When the road began the change, the speakers determination did too, Flat road were replaced by short hills. The terrain began to change and the speaker became doubtful of the old man that that directed him towards the shortcut. I could drop from heat stroke on a gorgeous day in June simply because I listned to some gentlemen who hadnt been off their porch in decades. The heat in desert made the speaker thirsty causing him to drink all his water. There was no source of water therefore he decided to suckenc-stone. Id read once that sucking on stones helps take your mind off thirst,. But the bumpy terrain didnt allow him to do that. He hit a bump and swallowed the stone. The speaker began to panice, I was going to die and the birds would pick me clean. But luckily the author thoughts changed after he found a supply of water, the features did affect the cyclist very much." 2 2 2 +7042 3 "The setting affects the cyclist in a very negative way due to the lack of buildings, people, and cars on his shortcut he was in great doubt of his survival. I was going to die, and the birds would pick me clean. He thought he wouldnt get any water because there was nothing around him and he thought he would die of dehydration or heatstroke. And the growing realization that I would die of heatstroke." 2 2 2 +7043 3 "The setting of the story had affected the bike rider in many way. It was hot when he was riding so he was thirsty. For example, The sun was beginning to heat down (pg @NUM1). So the sun is very exhusting and made him to start dehydrating. Another example is a traveling through the desert of California in June (pg @NUM2). California is a relatively hot state and June is one of its warmer months. The terrain didnt favor in the riders either Flat road had turned into, short rolling hills (pg @NUM2). Short rolling hills are harder on a bikers body than flat terrain. This is how the setting affected the rider." 2 2 2 +7044 3 "The setting affected the cyclist because it was in June and it was starting to get hot. In the book, it said he was going through the desert. Also, the author did not have enough water to survive in the desert while the sun was beaming on him." 1 1 1 +7045 3 "In this paragraph I will explain how the features of the setting affect the cyclist. The setting affect the cyclist in ways such as weather, road structure, & animals. All things that the cyclist could not controll. Therefor affecting the cyclist while he rides through." 1 1 1 +7046 3 The features of the setting in this story gives the cyclist determination. Since the desert 1 1 1 +7047 3 "The features of the setting affect the cyclist because if is very hot and is summertime. The cyclist wouldnt have gotten so tired and exhausted if he wasnt in a ghost town, with the, sun beggining to beat down. It was in @CAPS1 for nia during June so it was. Very hot, the water was also @NUM1 degrees! The text as states there were rolling hills and tumble weeds, so it must have been a desert kind of area. The trip was also a very long one, about forty miles into the petal, causing him to be tired. As you can see the setting was an area with no people, and it was very hot." 2 2 2 +7048 3 The features of the setting is very important for cyclist. If the setting is wrong they could be in many danger. It is really important to have a clear setting. 1 1 1 +7049 3 "The features of the setting affected the cyclist horribly! For example, he ran into the worse problems and couldnt really do anything about them. also, he started out fine, then he started to become dehydrated. He didnt have much water left and he was only @NUM1 miles up the road. a loss of water was very affective in June traveling through a desert. also, the damage of the road was very affective too because hes on a bike and not too good of balance. These features could affect the cyclist in many ways because of the weather, temperature, loss of water, road damages and snakes. the cyclist was on a bike and couldnt really protect himself, and he was dehydrated, and tired. " 2 1 2 +7050 3 "Throughout his journey, the protagonist in the story encounters obstacles in the setting. First off, he is cycling in the hot, dry, desert. There is no civilization or natural water source, so he faces dehydration. Additionally, the terrain he was riding on proved difficult. He encountered rolling hills that took a lot of energy to ride up. There were even signs for rough road ahead, @CAPS1 obstacle was a mental obstacle. He came across an abandoned juice factory when he needed an occupied building. These were ironic and mentally frustating. The cyclist must have lost hope in @CAPS2 civilization after he found @NUM1 abandoned examples of civilization. This discouragement must have made his journey more mentally challenging." 3 3 3 +7051 3 The features in the setting would affect the cyclist because they would want to have towns with water so they can restock theyre water. They would want water even more after going up hills. They would also want a palce to gey something to eat and maybe rest. 1 1 1 +7052 3 The feature of the setting affects the cyclist because of the heat and had know water. Also how rough the road ahead was. Another problem was the dry air and snakes laying out everywhere in the desert. Also the hills were a big problem to because of the heat and know water. Finally the other problem was he knew he was going to die and the birds would eat at him and their would be nothing left of him. This is how the setting affected the cyclist. 1 1 1 +7053 3 "The hot, dry, desert setting affects the cyclist in many different ways, I was traveling through the high deserts of California in June (@NUM1). The cyclist is very hot. He was thirsty but, A tarlike substance ooted out, followed by brakish water feeling somewhere in the neighborhood of zoo (@NUM2). The water was barely even water, so he didnt have much to drink until the next town. Flat road was replaced by short, rolling hills (@NUM3). Flat road is much easier to bike on then hills. He was thirstier and more tired after biking on hills A sandblasted picture of a young boy pouring a refreshing glass of juice in his mouth could still be seen (@NUM4) on an old welchs grape fruit factory. This makes the cyclist envicus of the young boy. It also discourages him. In conclusion, the water being bad, the terrain change. the picture of the young boy, and the fact that the cyclist drinks a lot makes him tired, hot, envious, and generally exausted." 3 2 3 +7054 3 "The features of the setting affect the cyclist because when he has water and plenty of it, the setting seems to be smooth, easy riding. This means that he doesnt have to use much water, but he still uses some because anyone that rides @NUM1 miles on a bike will need plenty of water no matter what the terrain is like. The features of the setting affect the cyclist toward the middle and end of his trip greatly because it gets rough and hilly and so he needs more water that he doesnt have. And since he was planning on being able to get water at the first stop he didnt conserve it as well, so this left less water for him to have when he really needed it. He then became dehydrated after his first stop, and he didnt get any more water there so it caused him to dehydrate. So it seem that the features of the setting affect the cyclist because when he has plenty of water and doesnt really need it the terrain is smooth and easy to ride but as he drinks his water the terrain gets rougher and worse. So the features of the setting affects him greatly in that they dont help him they just get worse when he needs it to get better." 3 2 3 +7055 3 "There are many ways that the features affect the cyclist. One is that he is already scared to go up this really big hill. Another is that he is going up this big hill its hot, there snakes, hes scared and tired. Almost all of his energy is gone. He just wants to stop he is determined to go up this hill. He also knows that it cant be that bad because he can just relax al the way back down." 1 1 1 +7056 3 "After reading, Rough Road Ahead: Do Not Exceed Speed Limit, I noticed that the setting of this adventure affected the narrator. First of all, the heat cause the narrator to be uncomfortable and thirstier. While on the moving, he refers to the trip as a ,water-deplating one this quote shows that he was lacking water and that this was a major problem. Also it refers to the road as rolling hills"", and this shows the reader that they seem to go on forever. This lowers the narrators hope of getting there quickly. Also the desert gives the author low hope of reaching his destination. The setting affects the narrator both physically and mentally." 2 3 3 +7057 3 "The setting of the story affected the cyclist because it kept him going because he was all alone and had no help. First, just the fact that he was by himself kept his determination high. If he would have had a partner they could have stopped and took a break or shared the water. Next, the fact that there were no buildings, houses or anything in sight affected him. He got a bolt of strength just from seeing a building ahead. If there had been building he could have stopped and asked for more water and rested. The fact that he was in a desert in California in the middle of June really affected him. He had no determination there because there was nothing he could do to better the situation in his cause. He even at one point felt that he might die. In conclusion the setting really affected the cyclist because it determined his endurance and will power." 2 2 2 +7058 3 "Features of the setting affected the cyclist in many different ways.for example, he ask the older guts, ""that haven't left rheir porches since carter was in the office where the next placewas to get water. Also he was out in the middle of nowhere. It was also in June were the weather was warm,and he didn't have a lot of water." 1 1 1 +7059 3 "Many features of the setting affect the cyclist. First, he was in high desert of California in June. This affected him many ways. It makes him become very dehydrated. He had to conserve his water and chew on pebbles to get any spit to collect in his mouth. Also, the road became very rough. The new terrain made him has to push himself harder and lose energy quicker. The last feature would be the distance. He had to travel a lot further then he had planned to. This again affected his energy and spirits with thoughts of possible death, and not be able to make it. Those are how just some of the features of the setting affected the cyclist." 2 3 3 +7060 3 "The features of the setting affect the cyclist in many ways. Since the cyclist was in the middle of no where, he couldnt get any water. Id read once that sucking on stones helps take your mind off thirst, he was so thirsty that he barely had any energy to keep going, The growing realization that I could drop from heatstroke, it was hot out and he had no water so this affected his energy." 1 1 1 +7061 3 The features of setting affect the cyclist. The harsh turane proved a challenge when his water supply was low and all towns had been abandoned leaving him no refill. The heat was also a factor quickly creating him weary and tired. On the bike ride he had a glimmer of hope at an old water pump but quickly disappointed when the hot liquid tasted of battery acid. The setting set the conflict and helped achive the tone the author was looking for to affect the cyclist. 2 2 2 +7062 3 "The settings effect the cyclist by the roughness of the ride. First, they go over a bunch of rocks, and the tire could poys. Next it could be smooth and easy. Also, it could be far away from towns and difficult to get back. There could be a lack of water making you dehydrate. That is how the setting around the cyclist could effect him." 1 1 1 +7063 3 "The setting desented in the story, Rough Road Ahead: Do Not Exceed Speed Limit, would be a nightmare for any biker. This biker is riding in the middle of a desert on a summers day. The sweat dropping down him is just speeding up his dehydration. This is shown when the narration states, wide rings of dried sweat circled my shirt, and the growing realization that i could drop from heatstroke (Kurmaskie). This show how hot the desert was, and how he could drop dead. The desert is also deserted with rolling tumbleweeds and giant snakes, as he passed abandoned towns and factories. The dangerousness for a biker in this area is very high. The biker was lucky to have made it out of those sorroundings alive." 2 2 2 +7064 3 The desert area of California was makeing him dehydrated. The trip was long but he had enough water to get him there only if he took the maps way. The old men thot havent left the confines of their porches since carter was in office told him a shortcut that he followed and ended up almost killing him due to heat stroke and dehydration. If the cyclist would have followed the map he could have stoped off at a store for more water if the setting was that bad. 1 1 1 +7065 3 "The features of the setting affect the cyclist in many ways. The setting was a dry California desert, for if it had been a busting city, the events in the story would have not happened. The author asked a group of old men for directions to Yosemite National Park, and , like a foolish yuuth, folluwed their advice. Everything started out fine until he reached the second town. He ans almost dehydrated and in an ironic twist he reached on abandoned grape juice foctary. Almost all hope was lost for him until he rounded the bend and came across his new hope: Gary and Wilbers Fish camp-if you wont bait pur the big ones, were your best bet in He end he learned tostick to a map instead of old people who havent left the confines of their purchess,hce carter was ,h office" 3 3 3 +7066 3 The features of the setting affected the cyclist because first he realized that getting advise from people that no longer drive or even leave of the porch would be unuseful. When the author say old timers who havent lest the confined of them porches since carter was in office that what he is explaining. He then say I rode into the morning with strong legs and a smile on my face he was refering back to how hes on the rode alone riding the bike and theres not a car insight any where around. The curbs of the turns where so sharp that only a bicycle could make them as safe as he did He whipped the sweat from his eyes to make sure it wasnt mirage and tried not get to excited @CAPS1 in this situation would have made many people excited about the long lonely cicle by his self. 2 2 2 +7067 3 The features of the setting affected the cyclist by making his way to the Yosemite National Park a longer and more difficult and dangerous way to go. He takes the awee of going that way by some old folks that he says havent gotten off there porches since carter was in office. I think tha tthere would be a reason to not listen to them though they @MONTH1 have wisdom. 1 1 1 +7068 3 "In the setting there are no cars and no buildings meaning no help. The cyclist is tired and dehydrated because he ran out of water. No one was around because it was the desert. The cyclist was dehydrated but kept going to his destination. The road was straight but almost to the end there were many hills. Along with having to bike up the hills he almost ran into a snake. The weather was hot he had no water, he could have died." 2 1 2 +7069 3 "The features in the setting in the story Rough Road Ahead: Do Not Exceed Posted Speed Limit greatly affect the biker. For example, the heat is constantly drying the biker out. Also, at the first town the old water pump proved to be a hopeless cause with water tastd like battery acid. Even after that were more problems. There was a sign that posted a max speed limit. The biker was doing about one-fifth of that speed. This affects his mood and he realizes that it will be along ride. The pebbles that he found helps him out. He remembers reading that sticking pebbles in your mouth calms your thirst. Finally, the bait store gave him the relief that he needed at the end of his trip. In conclusion, the setting makes the riders journey an one, but in the end the bait store had just what he needed." 2 2 2 +7070 3 The features of the setting affected the cyclist. For example their was not towns close near. One reason this affected the cyclist is because if the towns were near each other if he ran out of water there would be stores close by. In addition he could have a heatstroke and there would be no one around to get help from and he could easily die. In my point of view of the reading I believe where he was located is what affected him mostly. 1 1 1 +7071 3 "The hot wheather is dehydrating the cyclist, who cant find more water. The hills are rough terrain is draining the energy he has. The heat is so rough he has to break the road down it to polants he wants to get to. He get drained physically and emotionally. He has a hard journey." 1 1 1 +7072 3 "The features of the setting affect the cyclist on how the nature of life he was hydrated or not. On the posts Do not exceed posted speed limit is after wide rings of dried sweat clinched my thirst, and the growing realization that I could drop from heat stroke on a gorgeous day in June. This shows that he is dehydrated from the sun which is a feature of the setting. a tarlike distance surged out, followed by cockish water feeling somelane in the neighborhood of two hundred degrees. Cyclist know that there is no water in this place which is another feature of the setting which affects the cyclist. " 2 1 2 +7073 3 "The features of the setting affect the cyclist in many ways. The cyclist from the essay Do Not Exceed Posted Speed Limit, by Joe Kurmaskie had many obsticales to over come. When he first showed the old men his map he was probably thinking to himself, @CAPS1 my gosh, what did I get myself into?! Because the cyclist trusted the shortcut the old men told him about he had a lot of doubt, anger and determination later on during the day. It was really hot and he was running out of water making him worried he was going to get dehydrated and die because he was starting to think he was getting lost. The hills also affected the cyclist by making him tired. In conclusion, the cyclist, in the end, found a little store by all the determination and effort he put in." 2 2 2 +7074 3 "The setting where the cyclist is at is in a desert, and it can affect him because, he could get a heatstroke. The text states that he is lacking water and if you get too dehygrated it's not healthy and you die from it. However, when the wind is against his face, it can cool him down,along with the sweat. As long as he has some lijid left, it should be ohang. " 1 1 1 +7075 3 "The setting of this story is a dry, hot desert in the middle of June. These features of the setting, effect the author, because it shows how he starts of strong + determained and his left weak + doubtful. In the begining of the story, the author says, Things began well enough. I rode into the morning with strong legs and a smile on my face. This is showing the readers confidence he has with himself before starting his trip. Later on in the story, he discribes the setting as the high deserts of California in June. He is discribing the heat + what he is facing. It goes on to tell how he is dehydrated in worn out. But he comes to a town, ""cool water drippen from my head as I slumped against the wall."" @CAPS1 he is relieved. As the setting changes, the authors attitude changes as well." 3 3 3 +7076 3 "Different features of the setting affect a cyclist for example,temperatare really changes everything. If its too hot, youre going to get tired really easily. Then again, if its too cold, breathing gets really hard. The biker in the story was in desert area in june, so it was really hot & tiring. Also, the terrain as affects a clyclist. If the road is filled with hills getting up those hills is difficult. If its all down hill, its really easy, but all uphill is hard, level terrain is fairly easy. The cyclist in the story was in level terain, then it turned into a lot of hills which tired him out. Features of the setting really affect a cyclist" 2 1 2 +7077 3 "The setting affects the cyclist because he is faced with roadways he is unsure of the weather is hot and dry and there are wild animals. The text states," 2 2 2 +7078 3 "The setting has a great impact on the condition of the cyclist. First, it is a very hot dry in June. The cyclist is maneuvering his way through high deserts in @LOCATION1 where he comes across many hills that he must climb over and maneuver his way down. With all of these obstacles and the heat slowing him down he will need water but is already low." 1 1 1 +7079 3 "In the story Rough Road Ahead Do Not Exceed Posted Speed Limit"" the narrator is faced with the challenging and perilous desert he must cross. He wasnt traveling in a car, he was riding a bike and crossing a desert on foot is tiring enough let alone on a bike. ""The speed limit was @NUM1. I was doing a water depleting @NUM2. Sometimes life can be so cruel. In the horrible @NUM3 degree heat the narrator gulps down his water bottles at such a rate that hes at risk of running out. Not only that but hes been pedaling for such a long time that he @MONTH1 pass out from exaustion or,. I could drop from heatstroke on a gorgeous day in June simply because I listened to some gentlemen who hadnt been off their porch in decades. So I would say the narrator was pretty hasseled by his surroundings. " 3 2 3 +7080 3 "The setting affected the character in ways that would usually affect people. When he got into the first town he had ran out of water to drink but the towns water he was in now tasted like battery acid so thats not safe to drink. As he started to head out the scenery changed. Not two miles into this next section of the ride, I noticed the terrain changing. Flat road was replaced by short, rolling hills."" This is hinting at the fact that maybe this town he is going to @MONTH1 be abandoned or not used. He saw a huge rattle snake and tumbleweed. Which are usual signs of a desert. It was hard for him to keep his balance as he says, trying to keep my balance in my dehydrated state. He ended up getting to the point where he had to put rocks in his mouth to trick his mind that he wasnt thirsty anymore." 2 2 2 +7081 3 "The feature of the setting affected the cyclist because at first he had to watch out for the snakes that usually crossed the roads, then the streets were crooked and bumpy, so the road structure throw him off a bit, and he was riding his bike in June and it was very hot, and he had lack of water so he thought he was going to have a heatstroke. These things affected how the cyclist performed on his bike." 2 1 2 +7082 3 "The cyclist is riding through the high deserts in California. In this environment everything looks the same for miles. The cyclist is dehydrated and is getting worse because he has no protection from the sun. It is hard for the cyclist to keep in good spirits because he is not even coming across any towns or sources of water. The cyclist says About forty miles into the pedal, I arrived at the first town. This place might have been a thriving little spot at one time- say before the last world war- but on that morning it fit the traditional definition of a ghost town. This made the cyclist doubt the old timers directions. In the wide open desert, the cyclist was only coming across something after at least twenty miles. The heat, lack of water, and lack of civilization made the cyclist think he was going to die and the birds would pick [him] clean. When the cyclist spots the abandoned Welchs factory, the cyclist says they used what seemed to be their last bit of energy. The conditions affected the cyclist" 3 2 3 +7083 3 "The setting affects the cyclist by showing that he is a little angry. He states that dont remember the saying dont take candy from strangers. So we know he is upset about something. He is mad about the fact that this one older man tells him directions on how to get somewhere, and its wrong. The man figure that out halfway through the story. He also said that the old man hasnt been off his porch since Carter was in office, so he needs to get his directions up to date. So the beginning is a negative attitude." 1 1 1 +7084 3 In the story Do Not Exceed Posted Speed Limit the settings affected the character because he thought he wouldnt make it to the park because of the way things looked around him. Because of the rolling hills and snakes he didnt think he would make it any where and thought he was going to die. Thats how the setting affected the character. 1 1 1 +7085 3 "While the cyclist was trying to get to Yosemite National Park he listen to some old men who gave him directions for a shortcut.When he began his trip everything was fine.But then he found that along the shortcut there was no building.By the time he figured out that the old men were mistake he had almost run out of water.There was nothing around that he could drink.He was getting very thirsty.The fact that he was in the deserts of California in June didnt make his task any easier.About halfway through his ride he ran into rolling hills, which made his trip even harder.Towards the end he found a building and he used all of his strength to get to it just to find that it was an abandoned juice factory.This made going without water much harder as well as he gazed at the picture of the boy who was drinking juice.In the end he finally make it to a pait shop where he guzzled all the water he possibly could" 3 3 3 +7086 3 "The features of the setting affected the cyclist greatly. For example when he was riding on the road he would pick a destination and ride to it. Then he would take a break. If this destination was a building he would be strong willed and determined. If it looked like their was nothing ahead but hills, he would just ride and wait to fall over dead without a care in the world." 1 1 1 +7087 3 "One ramsackle shed, several rusty pumps, and a corral that couldnt hold in the lamest mule greeted me. This sight was troubled. There was no one in sight, not a building, car, or structure of any kind. With any luck, Id hit a bump and lodge one in my throat. Rough road ahead if he didnt take the old mans advice, he would have enjoyed his bike ride he needed a new map." 3 2 3 +7088 3 "The features in the story affect the cyclist by not having anything to drink. The person was going to a place far away with out any food or water for miles. He could have died. There is anther feature the effects the cyclist, and that is no one is around for miles. If he died out there, no one would no know for days. I know this because in the story he said There was no one in sight, not a building, car or structure of any kind. ''That says it all, the last feature is that it was hot. I know this because it says ''I was travelling through high deserts of California in June.'' It is hot is June, and it is even hotter in California." 2 2 2 +7089 3 "People who travel will almost always encounter difficulties. For the main character in this story, thus a very true. His first mistake was when he took directions from the old-timers by doing that, he travelled extremely far out of his way. In the story he talked to the old men on the porch. He said, what I shouldnt have done was to let them see my map"". Another problem he faced was when he began to run out of water. This caused a problem to him because of dehydration. In the story he said, The water bottle contained any a few tantalizing sips. @CAPS1, another problem he encountered was the desert area that he was riding through. This caused problem for him because there wasnt anybody around to help him if he needed it. In the story he says, There was no one in sight, not a building, cars, or structure of any kind. By reading this story, weve realized that people encounter problems everywhere, however any problem, no matter what size, can be overcomed" 1 1 1 +7090 3 The features of the setting affect the cyclist because on page @NUM1 it talk about how the cyclist had to go down a hill then find a factory for juice. Like if the cyclist dont find any building he would of kept the hill and wasted the little bit of energy for actaire. 1 1 1 +7091 3 "Since the cyclist was really thirsty, the setting was not very appealing considering it was a desert. You could tell she was stressing because she was sweating and having a trouble time trying to pedal." 1 1 1 +7092 3 The setting effects the cyclist in away that most people cant tell cycling forty miles on maybe a gallon of water is hard expecialy in California I had been hitting my water bottles pretty regularly and I was traveling through the high desserts of California in June The effect on his body would be rather devastating. 1 1 1 +7093 3 In the story the Features of the setting affects the cyclist is that when he is riding he has very little water. Also he takes advise from old men and he meets up with an @CAPS1 Snake and he goes down an dirt Road he has no water at the time there. The conclusion is that he comes of the dirt Road and @CAPS2 the main Road that he travels. Also he promised to stick to it in the @CAPS3. That is how you should stick things at in the future. 1 1 1 +7094 3 "The biker has many features in his story. For example he has discriptive words that put pictures into my head. For example One long, crippling hill I can picture it in my head. There was no one in sight. All of these parts of the story put pictures in my head. Thats a good thing, for example you want the reader to understand it, and by having discribing words help." 1 1 1 +7095 3 "The features of the setting affect the cyclist. One way is that the rolling hills @MONTH1 let the rider get more tired. Another way is that of water from severe heat. And finally the path you take along the way and how many stops you make along the way. The heat, lack of water, rolling hills, and the advice you get can result badly by affecting the outcome. A rider should make a plan and use determination to get to where they need to go." 2 2 2 +7096 3 "The setting in the story Do not exceed posted speed limit reflect upon the cyclist. In the story a cyclist is riding his bike and takes directions from some old men. Later he realizes the old men probably had no idea that things change overtime. He says Never accept travel advice from a collection of old-timers who havent left their porches since carter was in office.(Kurmaskie @NUM1). The cyclist takes the old-timers shortcut and it takes forever to reach his destination. At the end he reaches his campsite and another person askes him for directions. This time the cyclist says Yes, sir! I own a very good map, and Id always stick to it in the future. The cyclists message is to follow a map, something you know is right, not a person that @MONTH1 be lying or irresponsible." 2 2 2 +7097 3 The features of the setting affect the cyclist by making him dehydrated and hot. He was in deserts on a bicycle with his water support running low and rough road with plenty of hills to make it hard for a bike to out come. he kept going though the heat was outrageous and dehydration beginning to overcome him. 2 1 2 +7098 3 I think the boy should ask you directions for the place were he is going. He can reach the place without water but that is not a good thing to do. 2 2 2 +7099 3 "The features of the setting affect the cyclists mood throughout the essay. Joe @CAPS1 starts with being happy and confident to determined yet help helpless and then to relief. Joe writes, Things began well enough flat roads This quote suggests that in the beginning, everything was okay. He started out with a smile on the face. (@NUM1) @CAPS2, things start to change @CAPS1 hits changing terrain. He writes, I noticed the terrain changing. Flat road was replaced by short rolling hills. This quote states the changing terrain. He starts to lose water to keep him going, yet he pushes himself to the next town. Finally, when the author reaches Gary & Wilbers fish camp he is relived when he sees an old guy sitting. The two men say, know The best way to get There? Yes sir! I own a very good map. This reveals that Joe didn t ask for more directions which was his first mistake. In addition, changes in setting can chang a persons mood and attitude." 2 2 2 +7100 3 The features of the setting affect the cyclist because it is in the desert it is in the summer. It affect the cyclist because he is riding a bike. For exsempl in the story he is running out of water. He is starting to git dehyjradid. 1 1 1 +7101 3 The setting affected the cyclist because of the mood and how everychange happened. For instance when the setting changed the cyclist felt different and it really affected him. Like if the setting was all sunny in a nice town then he would feel good but if he was in a dark town he wouldnt feel very happy. So the setting really affected him. 1 1 1 +7102 3 "After sometime into his trip he mentioned I was traveling through the high deserts of California in June. I believe that this setting had gotten him determined to keep on pedaling so he could live. But then he started to think he might die, but he wasnt sad or upset, he was happy. He had sort of chuckled to himself, because of the fact that he might die because he listend to some old men. In my opinion I think he was having the time of his life peddeling through this setting of California." 1 1 1 +7103 3 "Where cyclist was gave him more disadvantages, then advantages. The advantages were their were hills to go down. Disadvantages hills to go up, water running out when he is in the middle of no where, very hot out, and is lost in the desert, doesnt have much hope until he see's the factory. Biggest disadvantage is he is on a bike, and not in a car. So he has no @CAPS1 and has to pedel to keep going. But being in the desert on a bike with no water, and you are last, is quite bad. He is very lucky that he made it up the hill or else he wouldve died out there. And he thought he was seeing things good thing he checked it out. I think for future refrence ride in a car, dont use a bike in the desert, its not to smart." 1 2 2 +7104 3 "The features of the setting affects the cyclist because when all the cyclist is worried about is finding a place with water all hes doing is getting scared and panicing. In other words, when hes looking around, the setting he sees is like desert and no buildings. The story says, I was traveling through the high deserts of California in June when he sees that he panics and thinks hes not gonna make it which affects him mentally." 1 1 1 +7105 3 "The features of the setting affect the cyclist in different ways The woman who had listen to the older men to get where she was going had made her run out water and almost died of thirst. As she was going to this place she had seen a snake At some point, tumble weeds crossed my path and a ridiculously large snake it really did look like a diamondback (@NUM1). She started to see things that wasnt there." 1 1 1 +7106 3 "He was affected by lack of water, the hills, snake in the way and the condition of the road. The water bottles contained only a few tantalizing sips. This quote explains how the lack of water was a problem. The hills affected him by they were crippling"". The snake it was long ways on the road and he didnt know how to get passed it . Finally the roads were rough and you should go over the speed limit of 55 mph. So he was affect in a lot of different ways not just one." 2 1 2 +7107 3 "The features of the barren desert path make the cyclist quite nervous, but they also make him determined to escape them. He passes ghost towns, abandoned buildings, and diamondback snakes. These are images traditionally associated with being lost in the deserts, and would be enough to instill fear in most anyone travelling alone. The author even remarks that sadists are probably finding his story pleasing. He often mentions fears of dropping dead, being eaten by vultures, and, at one point, even wishing death upon himself via choking albeit jokingly. And yet he was determined to live. In spite of the odds stacked against him, he moved on, even after losing what (he) believed to be (his) lost burst energy."" He even maintains a sense of humor throughout, writing of a diary entry that would be left behind that remarks on the wisdom of old men. In the end, when he finds a place to rest, he turns it all into a lesson hell surely abide by: follow the map!" 3 3 3 +7108 3 "The cyclist is affected by the heat, the hills, and the lack of people. For example, the cyclist was growing short on water and had wide rings of dried sweat on his on shirt, and he could drop from heatstroke. The hills must have forced him to use more energy, and lasely the land of people. If the towns still had people the cyclist wouldnt have been as affected by the setting." 1 1 1 +7109 3 "Features of any setting affect what you do and how you do it. Features affect the cyclist by water, help, and saftey. Id read once that sucking on stones helps take your mind off thirsty by allowing what spit you have to circulate. This quote so his desperate need for water by saying he sucks a on rock to drink his own spit. The rough terrain and abandoned road the old men sent him on that was out of date, made him unable to ask for directions, and to even know if he is travelling correctly. Along the road he meets a snake. Being so far away from civilization, if he was to have gotten bit then he would have no one to help save him from dyeing on the side of the road. Also, if he was to have a heatstroke he has no water and no help. Safty, help, and water are all factors which contribute to the features, and how they effect the cyclist. " 1 1 1 +7110 3 "The features of the setting make the ride for the cyclist very hard. It has a lot of hills, which would make him use more energy. Also, it is a desert, so it is very hot and dry. This makes the author need more water than he normally would. The author said I was traveling through the high deserts of California in June. The author knew that it was very dangerous to travel there without water, he said I could drop from heatstroke If the setting had been cooler there would not be so much danger." 2 2 2 +7111 3 "The cyclists features around him affected him negatively. He was cycling through the high deserts of California in June (Kurmaskie @NUM1). His water bottle was slowly running outand the only town he came to that had water had water that tasted like batteryacid. Events seemed pretty bad, until the speaker became elated when they saw a @ORGANIZATION1 factory. The author was thirsty and the side of the building had A sandblasted picture of a young boy pouring a refreshing glass of juice into his mouth (Kurmaskie @NUM1). The building was abandoned. The speaker then states Somehow I climbed away from the abandoned factory of juices and dreams, slowly gaining elevation while losing hope (Kurmaskie @NUM3). He lost hope after that landscape, and he pretty much gave up. The landscape or features affected the author very negatively due to the lack of water. " 3 3 3 +7112 3 The setting affects the cyclist because there were lots of hills and very little water. 1 1 1 +7113 3 "The cyclist in the story rough road ahead Do not exeed posted speed limit, by Joe kurmashie, is heavily affected by the features of the setting in the story. First is the shorecay that is suggested to get to @CAPS1, which naturally just ends up separating him from all other people and putting him in the middle of nowhere with a limited supply of water. His water shortage is the second thing that affects him because it makes him despair and feel that he is about to collapse and die. In the story, he says: It really didnt matter. I was going to die and the lards would pick me clean. This shows that the features at the setting made him feel hopeless." 2 2 2 +7114 3 Many features of the setting affected the cyclist in Do Not Exceed Posted Speed Limit by Joe Kurmaskie. One feature that affected the character was the heat of the sun. The narration states The sun was beginning to beat down (@CAPS1). 1 1 1 +7115 3 "The features of the setting greatly affected the cyclist in the story Do Not Exceed Posted Speed Limit. In the story it says, ""I was traveling through the high desert of California in June."" This is telling the reader that the weather was hot and you need a lot of water here to survive, especially if you are riding a bike or working. Later on in the story it says, ""I eased past, trying to keep my balance in my dehydrated state."" This quote gives the reader information and tells us that the cyclist is having a hard time surviving through the harsh features of the setting through the harsh features of the setting. In California deserts I know from prior knowledge it is hot and dry, exspecially in the summer. If you are working outside, like the cyclist in this story is, and you do not have water to drink, you will get dehydrated which eventually leads to death. The author does a good job showing the readers how the setting affects the cyclist." 3 2 3 +7116 3 "In the essay Do Not Exceed Posted Speed Limit, the features of the setting affects the cyclist in many ways. One thing is the water. There is little water and it is boiling hot. He took some taste of it. He said It tasted like battery acide. To me if the water is hot dont taste it. Another thing is the land. The land went from straight to hilly. That started slowing him down. Last, is the day time. It started turning dark and he was still biking. He wanted to get as far as he could." 3 2 3 +7117 3 The features in the setting affected the cyclist when he got tired very easily because he was biking in the desert in June. There are no rivers in the that desert so he couldnt get water. It is so hot out there that he couldnt see very well because of all the sweat that went into his eyes. Also there are no people out there because of how hot it is. 1 1 1 +7118 3 "In the essay Rough Road Ahead, Do Not Exceed Posted Speed Limit the setting affected the cyclist. The setting affected the cyclist mentally and physically, when the setting was nice he had a positive outlook and was full of energy. Later in the essay, as the setting grew less appealing, and more treaterous, the cyclist grew weary and distressed." 1 1 1 +7119 3 "A cyclist always has to face many problems such as the weather, the condition of the road, etc." 1 1 1 +7120 3 "The features in the setting, affected the cyclist in many ways. The first way the features in the setting affected the cyclist is that the whole trail was desearted leaving him alone with no water. In the story it says This place might have been a thriving little spot at one time say, before the last world war but on that morning it fit the traditional defination of a ghost town, this explains that he was alone and that the first town he visited was deserted. The next example of how the features and the settings" 2 3 3 +7121 3 The featers of the setting afected the cyclist by the lack of water made him tiered and a bit deloshional. The lack of shade increased the rate of dehidrashion. The rough road made it hard to balinc. And the snack slowed him dowen. He thought that he was going to die. 1 2 2 +7122 3 "The setting of the story ""Do Not Exceed Posted Speed Limit,"" is very important to the events that occured in the story. For example the story was set on a highway set at @NUM1 which the cyclist was only able to do @NUM2. This is signifigant to the events of the story because since he was doing @NUM2, which by the away is a lot for a cyclist and it led to almost dehydration. Plus it was hilly. This led to the excution of the cyclist, so one could see that setting is very important to the outcome of the story." 2 2 2 +7123 3 The setting is in a California which isnt really the coolest of places to be.[temperature] 1 1 1 +7124 3 "At the beginning of his journey, the cyclist is relaxed and the features of his environment. He says, I enjoyed the seranety of an early- summer evening. At a campground in @LOCATION1, the setting is calming and relaxing. At the first town, the setting is shocking, but humorous to the cyclist and he starts to get nervous. After looking around he says. this sight was trowoling. The cyclist tip gets worse when he reads for the next town. flat road was replaced by short, rolling hills."" This part of his journey affects him the most. His environment and the features of the land have made him tired and thirsty. The setting has a major role for a cyclist." 2 3 3 +7125 3 "In the essay ""Rough Road Ahead; Do not Exceed Posted Speed Limit,"" by Joe kurmaskie, the setting is integral to how the cyclist feels and behaves. The cyclist feels a growing desperation as the setting around him gets progressively move bleak. In the beginning of the trip, the cyclist encounters a ghost town. ""I chuckled, checked my water supply, and moved on."" The cyclist is still thinking positively at this point in the essay. A while later, the cyclist comes across another abandoned set of buildings. He feels that this sight is ""troubling."" @CAPS1 the cyclist is worried, he is not yet depressive and pessimistic. Farther down the road, the terrain of the road changes, and he sees the sign that gives the essay its name."" The speed limit was 55 mph. I was doing a water depleting @NUM1. Sometimes lifes can feel so cruel."" The cyclists surroundings get progressively worse as he rides on, but even tually he finds a place with working water. He is so overjoyed by this building that he wants to find the owners, and kiss them." 3 3 3 +7126 3 Some features of the setting that affect the cyclist is he is riding a bike through the dessert. He says I was traveling through the high deserts of California in June. So he was scortching hot peddling a bike. The road became bumpy and curry. A sign had said Rough Road Ahead: Do not exceed posted Speed limit. The speed limit was @NUM1 and he was going @NUM2 so it must have been hard to get over all the bumps. The lastly he comes across and poisioness snake blocked the majority of the pavement infront of me. So him dehydrated trying to get ground a snake would be terrifying. So on his @CAPS1 the setting doesnt help him much. 3 2 3 +7127 3 "The cyclist ran into many issues in his/her travel to @LOCATION1. They had to dismiss many hardships such as lack of water, being lost, immense desert heat, plus minor things like snakes and road conditions. The setting of the California desert in June was the most intense hardship. That and the lack of water. Though the heat starting powing at the cyclists brain by making them see mirages, etc. The heat and entire setting made the cyclists travel much harder." 2 1 2 +7128 3 "The setting affect the cyclist because in the hot heat of California in June which nobody wants to be outside. But first, was the heat which took a lot out of his body while trying to keep it cool. Then came the factor of which he had very little water when he reached the first town and in the story it said, A tar like substance oozed out, followed by brackish water feeling somewhere in the neighborhood of two hundred degrees. So now he has no cool water to drink when he says, Not two miles into the next section of the ride, I noticed the terrain changing. Flat road was replaced by short, rolling hills. So the cyclist has very little water is not having to endoor the hardest part of the ride. Then later on he makes a mention to change a paragraph if he loss consciousness. Also he talked about him might getting a heatstroke. Hinting to the fact that the setting he was in was affecting him in many different ways." 1 2 2 +7129 3 "The setting of the essay Do not exceed posted speed limit,"" is very dry, sandy, hot, and deserted. On his way to Yosemite he takes a short cut"" from so he do me through the desert. When he first leaves its in a hot and flat part of the desert. His mood is high and her has confidence. Things began well enough. I rode into the morning with strong legs and a smile of my face. With this he arrives at the first town but hes wasnt worried he had bad plenty of water he moves on. The terrain starts working against him in his search for water, Flat road was replaced by short, rolling hills a large high way sign jumped out at he. It read: Rough Road Ahead : Do not Exceed posted speed limit. This lowers his confidence, especially because everything is deserted and if he has a heat stroke no one would he around to find him. He keeps up his determination we he sees the factory yet he moves on. When he see the first comp he is overwhelmed with relief and the terrain flattens out again. When asked if he need direction he say he has his own map so he can keep stick to the terrain he knows is rest. He can keep his hopes for himself and follow a true set of directions." 3 3 3 +7130 3 "Anyone who has ever rode a bike knows how relaxing it can truly be, but when you are forced to ride miles and miles on @CAPS3 terrain without any water, relaxation feels like an oasis, @CAPS1 through beat-up roads with dryness all around you really puts a domper on your experience, @CAPS2 it extends your need for thirst by enhancing the amount of dryness in the air and the amount of energy you are having. The ability to block all of that out and trying to focus on something easier to handle is exactly what you want to do in these situations, @CAPS3 terrain can really build character into a cyclist, but adding the fact the amount of water he had and the dryness around him, it sounds like torture. I can only hope that if I ever become a cyclist, I never have to endure this kind of situation." 3 3 3 +7131 3 "The cyclist, Joe Kurmaskie, had a rough time traveling to Yosemite @ORGANIZATION1l Park. Granted he was misled, but if the conditions of the terrain and if the climate were working for him it wouldve made life a whole lot easier. Not only was it hot, being in a desert in California in June, but he only had one water bottle. One water bottle @MONTH1 have lasted a little longer if it was a straight shot through, but it wasnt. The roads went up, down, there were hills, there were towns-ghost towns at that. The only water he could pump from the pump was scalding hot and tasted acidic. Also, he wouldnt have lost as much energy if it was a straight shot. Its easy to say that he literally roughed it, having to resort to putting rocks in his mouth to circulate saliva. All in all, he was very determined to work through the very unfortunate conditions he had working against him, and very lucky to survive it. " 2 3 3 +7132 3 "The features of the setting affect the cyclist in many ways For example, the fact that he is pedaling a bike through the high deserts of California in June, make the intensity level of the story very high. If it would have been @DATE1 and there was a nice breeze it would be different." 1 1 1 +7133 3 "The features of the setting affected the cyclist by lack of water, poisonous snake, the condition of the rode for example the lack of water affected the cyclist because he couldn't make it wi thout water he could of passed out if he didnt have water. Another example of how the setting affected the cyclist would be the poisonous snake if he would have goten bitten he could have died cause there would be nobody to help him. And the last example of how the setting affected him would be the conditon of the road because it make it tougher for the cyclist to get to his destination with hills and windy rounds this is how I think the setting affected the cyclist." 2 2 2 +7134 3 The features of the setting affect the cyclist in many ways. One way is that if its hot and your riding a long way you need a lot of water so you dont dehydrated. Also it can affect your vision cause you looking at the sun. Another way cyclist can get affected by the setting is because what if the road is all bumpy and just not in good shape it can affect the way they ride there bike. 1 1 1 +7135 3 " The story Do Not Exceed Posted Speed Limit by @PERSON1 had some statements that we were kind of pointless to put in. One of sentence in the essay had a couple word that dont need to be used. In the sentence, about forty miles into the pedal, I arrive at the first town, I dont think into the pedal needs to be in there because its not describing anything." 1 1 1 +7136 3 "The features of the setting affect the cyclist in many ways. One way is, the setting. The cyclist is out in the dessert, in two-hundred degree weather. With very little water. Also, the cyclist didn`t have a map and he asked someone that hasn`t let their porch since carter was in office. ''Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from heatstroke on a gorgeous day in June simply because I listened to some gentlemen who hadn`t been off their porch in decades.'' This quote talks about how the setting (@NUM1 degree weather, dessert) can @CAPS1 him. Also, he listened to someone that didn`t know what they were talking about. In conclusion that is how the features of setting affected the cyclist. " 2 2 2 +7137 3 The settings of the story is very desert like what I mean by that is its the desert and its hot and he really had to push his self to make it. The condition at the rode are very rough and has a lotof shape turn it in. Apart in the story he gets a boost of energy and pedal as hard as he can down a hill and then relaxes. This is the setting and is summary of the story. 0 0 0 +7138 3 "The setting affected the cyclist because the condition of his surrounding it was hot so he got dehydrated more and needed more water. There were a lot of hills so he had to pedal harder and use more energy to get up the hills. There were no cars, building, smog, just nature. It was peaceful and relaxful ride on the bike thats the setting affects the cyclist." 1 1 1 +7139 3 "Features of the setting affect the cyclist in a great way His journey would not be as difficult if these factors had not crossed his path. Climate, location, and population all have an effect on the cyclist. In the story, it is told that the cyclist is in the dry climate in California, in the heat of June.Their is also a lack of water, some must pace his sips carefully. Therefore also few towns, making it hard to get good advice and supplies and supplies. The cyclsit also comes across a snake, making him affected by native wild life. The dry climate and lack of water affects him by having doubt. The cyclist is constantly worried about passing out and dying of dehydration. The cyclist also gets doubts when he sees the road signs reminding him how slow he is going. The snake also has a depressing effect about his dangers on his journey. All of these things in the setting affected the cyclist. His journey does teach you though, that trough determination you will be rewarded. You have to want things bad enough and put the effort into it. The author also teaches you to always have a positive attitude to get success." 3 3 3 +7140 3 The features and settings affected the cyclist because of all the dangers of doing it. He took advice from old people to do it. But even though it started out good almost nothing last forever. Hes riding a like in the middle of summer with little water and in the desert. He runs into towns that are abandon and the next town is only @NUM1 miles are litheraly going to be rough roads ahead. But when he did get to the town that was abandon to. until he found hope and seeing a man in a chair 2 2 2 +7141 3 "The features of the setting affects the cyclist by not being in town. I say this Because the cyclist talks about old timeres who haven't left the contines of their porches since carter was in office."" So that means he dousen't know were he's at." 1 1 1 +7142 3 "In the cyclists journey to Yosemite, several factors hinder him from reaching it. The first is obviously the false information given to him by the elders. The second is that because the information wasnt true, the cyclist had an insufficient amount of water. This made him dehydrated. The last is the fact that the route given to him included obstacles such as snakes, rocky roads, and old ghost towns and abandoned buildings which made the cyclist less confident. Those are the features of the setting which affected the cyclist" 2 2 2 +7143 3 The setting affects the cyclist because one he should have stack to his own map. He should have packed an extra bottle of water. @NUM1 not take any advice from people that havent left the porch in years. 2 1 2 +7144 3 "The setting affects the cyclist mood in the story the cyclist takes a short cut with many abandon towns, and buildings as well as a bumpy, terrain. When he came to a fork in his path that had a water pump he immediately began to pump it the water was not good for drinking. He was determined to make it to the next town. I could make that he said. Because of the ghost town and the old pump he had to continue on. When the cyclist came to a sign in the road warning him about the road a hed he began to get depressed, I was sad. Finally when he reached @CAPS1 and @CAPS2 Fish Camp he was thankful and wanted to show his gratitude. The setting can affect a cyclist by his mood at first the cyclist is determined but as the setting gets worse his mood and hopes go down the drain. At the end when the setting is bright so is his mood." 2 3 3 +7145 3 The features of the setting affected the cyclists because he was thirsty and it was hot and he was almost out of water and he almost died because when he was drinking the water and he hit a bump and spit got lodged in his throat and tiring hills it seemed to never end. 1 1 1 +7146 3 "The features of the setting affect the cyclist because he wasnt pre pared in the beginning, the cyclist got directions from an old man who hadnt left his porch in years so he wouldnt know what had changed. Then the cyclist starts his journey with not a lot of water. When he got to the second town I notice the terrain changing. Flat road was replaced by short rolling hills. This quote means that he wasnt expecting hills, he thought it was going o be a flat way. Also in the @NUM1 degree whether with limited water supply, he couldnt ride up and down hills. Going down the hills gave him a break. Thats how the cyclist was affected by the settings features." 2 1 2 +7147 3 "Alot of factors effected the cyclist. Temperature, terrain, directions all gave the cyclist doubt. The temperature through the high deserts of california left the cyclist feeling hot, parched and irratable. Through the story, he had all but a few slips of his water left. Knowing your running low of water to feel sorry for himself The cyclist had biked so far the terrain started to change from flat to rolling hills. This could impact someone greatly who has never biked on different levals before. Lastly, the feeling of hoped could have effected him the most. Not believing in yourself is the hardest thing to overcome. Having just liesurly taken instructions by an old man cost the cyclist hours of torture. The author did a great job using hyperbole to exagerate the cyclists feeling of lost hope . He also used very detailed text to paint the reader a picture. These literay elements made it easier for me to understand the effect of the temp, terrain and hope had on the biclist." 3 2 3 +7148 3 "The features of the setting really affect the cyclist. He is led into false pretenses by the immediate surroundings. Little does he know that it would bring him into danger? When he comes to a rock in the road and finds that the water pumps are not good he is in serious danger. In the reading it says The sun was beginning to heat down, but it hardly noticed. The cool pines and rushing rivers of Yosemite had my name written all over them. The setting let the cyclists mind wonder so much that he didnt even realize the heat." 1 1 1 +7149 3 "In the short story, Do Not Exceed Posted speed limit, by Joe Kurmaskie, expresses the features of the setting like the lack of water, and can not find help to the end affects the cyclist in the story. During his time of need the cyclist says, It didnt really matter. I was going to die and the birds would pick me clean, leaving only some expensive outdoor gear and a diary with the last entry in praise old men their wisdom. The cyclist has a lack of necessities in the features around him and is letting his pride fall down; giving up on hope. When the cyclist finds hope, And drank deeply from the sink, I had an overwhelming urge to seek out Gary and Wilber, kiss them, and buy some bait. The cyclist was astonished of what he had stumbled onto and appreciated that he was still alive. The cyclist should not have taken the old peoples advice for granted, but will now look onto peoples sense of directions." 3 3 3 +7150 3 Setting affects many things in stories. The setting in this story affected the cyclist. The setting was very hot and it slowed him do wn a lot. For example he said he was doing 55 miles 1 1 1 +7151 3 The setting in the story was the high deserts of California in June. At first the cyclist had seemed really confident and excited about his journey. It was during it that had changed his mind. The cyclist was running low on his water supply's so he stops and pumps water from this water pump but all he gets is this acid taste. So he is on his way to the nearest town which is @NUM1 miles away and he thinks he can make it. So he is heading towards the nearest town when the terrain starts changing. It changes from flat road to short rolling hills. During this time the cyclist starts loosing hope. He thinks that he is going to die of dehydration and the birds are going to pick him apart. Then when he thought he couldnt make it he saw a sign that said Gary and @CAPS1 fish camp He ran into the shop and took long drinks from the sink in the bathroom and when he went out of the store an older gentle men asked him if he needed help and he said no I have a really good map. The thot temperature and rolling hills have a negative effect on the cyclist. I mean he goes from being confident to thinking he is seeing mirages and dieing. It states in the story I wiped the sweat from my eyes to make sure it wasnt a mirage and I was going to die and the birds would pick me clean So this brought self doubting behavior. 3 3 3 +7152 3 The features of the setting of were the cyclist are affect them very drastically. They need a water supply and if they dont have one they might dehydrate or even die. They need shade trees because it keeps the sun from beaming down on them so hard. They also need to cycle when its not as hot outside so that just incase there water gets low there is a better chance of survival. It would be great if there was someone with you to help if you get hurt. There should be buildings near by just incase of an emergency. It might even be good to carry a cell phone. 1 1 1 +7153 3 "The features of the setting affect the cyclist in more than one way. The first features were a ramshackle shed, several rusty pumps, and a corral that couldnt hold in the lamest mule. These items gave the cyclist a feeling of doubts. They made him begin to think he had taken the wrong route when he saw these things were outdated. Then, he couldnt get any cold,clean water out of the pumps to save his life. This was the first obstacle which affected him. The next features of the setting which caused a problem were the tumbleweeds and ""a ridiculously large snake. They made the cyclist scared and caused him to go around these things. You can tell he wass scared because he quoted I eased past. When the flat road was replaced by short, rolling hills, the cyclists journey became exhausting,never ending, and difficult. Two more things affected the cyclist. These two things consist of the signs. One of which read Rough Road Ahead: Do Not Exceed Posted Speed Limit"" and the other GARY AND WILBER'S FISH-IF you want bait for the big ones, were your BEST BET.""The first sign affected him in a negative way and caused him to become a little angry and frustrated because he was tired and dehydrated and the rough road ahead gave him no hope. The second sign led him to water which was the one thing that would make things better so it had a positive affect. These are features that had an affect on the cyclist." 3 3 3 +7154 3 "The setting affected the cyclist: due to the changes in terrain. A rough spot for the cyclist was when the terrain changed from a flat stretch to rolling hills. The author wrote, I tolld on""(Kurmaskie @NUM1). The cyclist was pushing through the rough and it was not an easy stretch to get through. Another place in the cyclist's trip that was difficult was when he saw the abandoned juice factory. The narration states, over one long, crippling hill, a building came into view""(Kurmaskie @NUM1). The context clues that provide information that it wasn't easy are the words ""long"" and ""crippling."" @CAPS1 of those words provide feelings of being drug on through the rough setting of the cyclist's trip." 3 3 3 +7155 3 "The cyclist had experienced some hard obstacles on his ride to Yosemite. He had gotten directions from a group of old men who hadent gone the places they told him about in a long time. Where they said there would be a town it was more like a ghost town. The day that the cyclist was riding was very hot and he was riding through the desert, @CAPS1 made it worse. Because of the heat he was drinking his water regularly to stay hydrated. This meant he was running out of it fast since the old men had given him directions through places that were no longer open he couldnt get more water. The cyclist also had to go over roads that were in bad condition @CAPS1 slowed him down even more. Those features at the setting affected the cyclist a lot on his trip." 2 3 3 +7156 3 "Many features of the setting affect the cyclist. In the beginning, he cannot get water and becomes dehydrated, then, he goes on a rough ride and loses more energy. Then he finds the bait and gets water. All of these greatly affect the cyclists condition." 1 1 1 +7157 3 The setting of the cyclists journey effected him because if he was a tot desert in california. This effected him because he had to ride a bike throug it and he heat took a lot out of him. He didnt have a lot of water because there were no rivers or water supply because of the desert surrounding him. At the end he finds a store which affects him because he gets a cool drink and same supplies which helped him. So in the end his surroundings destroyed him and then relieved him. 2 2 2 +7158 3 "The bicyclist was riding to Yosemite National Park and on the way ran out of water. ""The wate bottles contained only a few tantalizing sips. Then, hills came into play which makes you more tired and thirsty. Flat road was replaced by short rolling hills. The rider didnt think he would live I was going to die and the birds would pick he clean but he found a place to get water drank deeply from the sink and finished his ride." 2 2 2 +7159 3 "In the story Do not exceed Posted Speed Limit by Joe Kurmaskie, the setting affected the cyclist a lot. At first, when the cyclist set off in the morning, the conditions were great. It was breezy with shade from trees and rivers. Then, after a few hours, the cyclist was in the desert with bumpy hills. In the story, the speaker states, Not two miles into this next section of the ride, I noticed the terrain changing. Flat road was replaced by short, rolling hills. The condition of the roads and not having water really affected the cyclist. It took more energy to get up and down the hills without any shade which ment that he needed more water which he didnt have any. The condition of the setting really affect the cyclist and if it was easier to bike, they might have not be so dehydrated." 3 3 3 +7160 3 "The features of the setting was affect the cyclist by disturb them to ride in road, limite their speed, and make their distance longer than the original travel plan. For example, the features at the setting was disturb the cyclist to ride in road because it tells them where they can go and where they cant and they shouldnt do this or that such as the sign of no entering or one way. Second, its limite their speed because if the features of the setting it said the limited speed is @NUM1, the cyclist only can ride about @NUM1 and go no more further which can make the cyclist longer time to reach the place that they want to go and couldnt travel faster. Third, it make their distance longer than the original travel plan or exit or how fast they can rode. Such as the sign of Rough road ahead, do not exceed posted speed limit. Therefore, the features of the setting was affect the cyclist during the journal. " 1 1 1 +7161 3 " The features of the setting affect the cyclist because they doubt or lessen his chances for survival, but the cyclist is determined so he survives." 3 2 3 +7162 3 "In the essay, the features of the setting affect the cyclist. One feature that affects him is his lack of water:"" The water bottles contained only a few tantallizing sips. The lack of water made him very desperate, especially when he came to the welchs grape juice factory. The building-abandoned years earlier-had been a welchs grape juice factory and bottling plant."" This despersion, after he had come to the abondoned factory, was followed by dissapointment and a vague sense of hopelessness expressed by the phrase, ""I hung my head"" after he had found the abondoned factory. These are some of the features of the setting that affect the cyclist." 2 2 2 +7163 3 "No water, rough terran, bad info-all are reasons why the boy isnt doing so well I said no water because he is dehidrated but needs to soae his water. Also he could die from heat exauston. I also said rough terrain because he could fall and get hurt with no one around to help. And to top it off he took info from old people that didnt know what they were talking about. Theas leave all examples about the essay that support my writing." 2 2 2 +7164 3 "In the story by Joe Kurmaskie it tells about a cyclists challenge through the heated deserts of California in June. The cyclist had started out with confidence, followed by determination, then relief. The setting affected the cyclist physically and mentally. First, listening to the old men was stupid, then taking the trip not certain if you would have enough water, and lastly traveling through the desert in June. He started getting a little doubtful with himself as well, that wont help much with bringing success of the trip. Once he had made it to a fish camp an old man even older then the men who gave him the false information told him he knew how to get to Yosemite, but the young man did the best thing and told him he already knew how to get there. He didnt need to be traveling out in the desert heat for hours thats just unhealthy" 2 2 2 +7165 3 "A cyclist is affected by many things when riding, most being features of the setting. One feature of the setting that can have an affect is the terrain. If the terrain is rough then the cyclist could have a more difficult time maintaining control of the bike, especially if he is not a professional rider. For example, the author of the essay on page @NUM1 titled: Rough Road Ahead: Do Not Exceed Speed Limit, had a hard times on the rougher roads partly due to his level of experience. Another aspect of the environment that can have an affect on a cyclist is the climate. Most people who go cycling ??? know anything about the sport know how to dress for it to keep their body at a comfortable temperature but sometimes the weather plays tricks on us. The cyclist could get caught in a sudden heat wave to drop in temperature." 3 2 3 +7166 3 "The features of the setting inhance the cyclists desparate spirit. Throughout the whole journey the cyclist is by himself and there are no people, cars, or buildings around. This made him much more desparate because if he would fall of dehydration there would be no one to help him and he would just die. Also, he came upon things such as Welchs Grape Juice factory and bottling plant which got his hopes up, but would soon crush his spirits. These events made him much more desparate because he had no support from anywhere and nothing to fall back on in a life or death situation." 2 2 2 +7167 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, the features of the setting affects the cyclist in many ways. First of all as he was riding about @NUM1 miles up the road, he saw that the terrain was changing and that scared him, he says This sight was troubling. I had been hitting my water bottles pretty regularly (kurmaskie @NUM2). He is saying that as the things around him began to change the more he got scared. And he kept drinking a lot of water just to bring down his fear. Another example is after he had left the sign that told him not to pass. He says Flat road was replaced by short, rolling hills"" (kurmaskie @NUM3). This is also an example of fear that started over coming him, when he saw even more changes. He wasnt going to stop because of the road changes and the fact that his water was almost gone he still had the courage to go further. The setting brought him fear but he made it through." 2 3 3 +7168 3 In the story the cyclisst had ran out of water. He had mentioned it tasted like battery acid. The surroundings affected him by looking around and not seeing anybody around for miles. That brings despair. Also a desert with the hot sun beating down on him and just the sand and catus all around. Now if you saw that you would think of no water or shade of noting because the desert is put to image when you hear those descriptions. 1 1 1 +7169 3 "The features of the setting, in Do Not Exceed Posted Speed Limit affects the cyclist. The setting affect him both physically and mentally. In the story the setting provides no water for the cyclist making him weak. In the mental aspect he is greatly affected by the features of the setting. An example of this is when so see the abandoned welch's factory and sees the picture of a boy ""pour a refreshing glass of juice into his mouth. This made him hang his head as he rode on. He is also thinking to himself that he will die out of here. This is how the features of the setting affect the cyclist." 2 1 2 +7170 3 I believe the first photograph closely relates to the story As worry because the authors son suffs a lot. And it shows what he and his friends @MONTH1 look like. Also it shows the surf boards emphasizing there surfers. That is what I believe about the first picture. The second are only relate a little cause it has a surfer surfing. So in conclusion the first photograph is moreaccurate to the story than the second photo. 1 1 1 +7171 3 "When the bicyclist was trying to find Yosemite he stumbled into a million setting. One in the begining when he was talking to the old men on the porch and having him set of into the distance of nothing but dessert. one rameshackle shed, several rusty pumps, and a corral that couldnt hold in the lamest mule greeted me. Its only him. At some point, tumble weeds crossed my path and a ridiculously large snake it really did look like ma diamond back-blocked the majority of the pavement in front of me. Tumble weed usually mean's desert. He also saw the @CAPS1 grape juice factory and the bait store where he finally found someone else to give him directions." 1 2 2 +7172 3 "In the story rough road ahead the cyclest is affected by the setting in many ways. Because he was in a desert in June it was very hot, so he got thirsty. Also because of the heat he could have dehydration of heat strokes. Lastly because it was a desert the wild animals like the snakes and lizards could hurt or posion him and he could die that is how the setting of the story affected the cyclist" 2 2 2 +7173 3 "The cyclist in Do Not Exceed Posted Speed Limit by @PERSON1 suffers from some hardship while riding through the desert. The features of the setting affected the cyclist by having no water to drink because it was a desert there was no vegetation that means there is no water so he was becoming dehydrated. Also the setting of the towns he went to had no living organisms or people so he also couldnt quench his thirst there. In one town there was a spiket but the water was gross and hasnt been pumped in a while. Then he comes to the Welchs juice factory which was abandoned and from there he thought he was done for but then he finally come to a shop were there are bathrooms were he drinks water from the sink and he is relieved. Also the rocky roads affected him because he barely had any water left, and rocky tent to take more strength and endurance." 2 3 3 +7174 3 "In the passage DO Not Exceed Posted Speed Limit the deserts feature did not have any positive affects on the cyclist. The desert contained ""rolling hills."" When a cyclist goes over hills it takes more energy due to the laws of gravity. Because the cyclist used more energy to go over the hills he only had enough energy to ""feel sorry"" for himself. The more hills, the more energy lost, the more tired he became. The desert was also hot, and dry. Obviously, since he was in the ""deserts of California in June."" @CAPS1 the would make him become thirsty. He did stop for water but a ""tarlike substance"" came out instead. When he again stopped later for water it was ""cool"" and most likely refreshing. Riding his bike in the hilly, dry, hot desert the cyclist became tired and thirsty." 3 2 3 +7175 3 "The features of the settings effect the cyclist by obstacles in the settings. A obstacle is a object in the way of you and were your trying to go. Some obstacles in the story such as hills, forks in the road, and also rough road. In the story @CAPS1 Road Ahead @CAPS2 Exceed Posted Speed Limit the rider runs into a large highway sign jumped out at me it read: Rough road" 2 2 2 +7176 3 "In the story, Do not exceed posted speed limit, the setting affects the way that the cyclist rides. In this story, the setting is out in nowhere wit no water, and all he can see is roads. This affects the cyclist because he is hungry, thirsty,and now he's about to go down a really steep hill with fear of crashing and seriously insuring himself with noone around to get help from the setting of nowhere affects the cyclist in this story." 1 1 1 +7177 3 "The features in the story tell me that it was in a very dry, not populated area. It says that there were rolling hills, in a desert of California, and that it was dry. I think those things affected the cyclist by dehydrating him. Going up and down hills can be very tiring, especially when you dont have a lot of water left, and need to save some. The quote I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June, tells me a lot about the story. In a desert in California in June during the summer is a very brave and stupid thing to do. It s twice as hot during the summer." 3 0 2 +7178 3 "The features of the setting affects the cyclist by not having good directions from old timers. In the text it says, ''Never accept travel advice, from a collection of old timers who havent left the confines of their porches since carter was in the office, this means that the cyclist did not have good directions. Because the road might of changed and the old timers do not know because they been sitting on there porches all the time. The is why I think the salling affects the cyclist." 1 1 1 +7179 3 In the essay intitled Rough Road Ahead: Do Not Exceed Posted Speed Limit. It talks about a gentlemen who is riding a bike to Yosemite and he does not know exactly how to get there. So he stops and ask some old folks and he says Never accept travel advice from a collection of old-timers who havent left the confines of their porchers since Carter was in office. @CAPS1 means they are not familiar with the changes. After he leaves the old-folks he continues on his long hot journey. He begins to run out of water and so he begins to panic. Next he comes to the sign that said Rough 1 1 1 +7180 3 The features of the setting affect the cyclist because it is so hot the cyclist keeps drink and sweating water so he is really work down from dehydration and fatigue. Also just the feeling of how unsafe it is out there. Like how he saw a ridiculously large snake or how it just keep getting hotter. 1 1 1 +7181 3 "In the essay Rough Road Ahead; Do Not Exceed Posted Speed Limit, the features of the setting had an affect on the cyclist. The setting and the features affected him not only physically, but mentally as well. The setting caused him to doubt himself and the men and also it kept him from having the energy needed to get to where he was going. Where the cyclist was riding, in California, affected him physically. It was hot, and he had no watter. This caused him to become tired and frustrated. The setting affected him emotionally as well. He started off fine, but as he went on, and as the road slowly changed to hills, he began to get frustrated and angred that he listened to the men. As he saw no buildings in sight for many miles, he began to lose his determination as well as hope. Lastly, when he saw the sign Gary and @CAPS1 Fish Camp he started to regain hope and become less frustrated. The setting and features of the essay affected the cyclist not only physically, but mentally as well. He started of determined, then as the setting changed he became doubtful and frustrated. In the end, he turned out satisfied as the setting seemed more hopeful." 3 2 3 +7182 3 "The features of the setting affect the cyclist in many ways. The text first mentions that, there was no one in sight, not a building, car, or a structure of any kind. This shows that the cyclist felt in saccure and was starting to upset him. Another example from the text that describes the cyclist is, One ramshackle shed, several rusty pumps, and a corral that couldnt hold in the lamest mule greeted me. You can see through the cyclists that he was frustrated that the water from the pumps were lame. This also could have sparked fear in the cyclist because he was running out of water. He was terrified that since the water tasted like, battery acid, that he wouldnt last much longer. In- conclusion, the features of the setting affected the cyclist in many ways. " 1 1 1 +7183 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, many of the features of the setting affect the cyclist on his journey. The rusty water pump, highway sign and abandoned juice factory all seemed to make his trip more difficult than it already was. First of all, when the author stumbles along a ramshackle shed surrounded by several rusty pumps, and a corral that couldnt hold in the lames mule, he is anylous to check the pump for well-needed water. When he finds that he is out of luck and cannot drink the bitter tasting water, his hope droop a little. It is as if the sun were taunting him, telling him that he cant make it. Secondly, he passes a large road sign reading Rough Road Ahead: Do Not Exceed Posted Speed Limit. Once again he begins to feel hopeless, but then turns his angst into determination to finish his journey. He says sometimes life can be so cruel as he notices the speed limit to be @NUM1, but he continues on, pedaling hard. Lastly, the author sees a lone building in the distance and almost doesnt believe his eyes. It turns out to be not only his last hope for water, but an abandoned grape juice factory. He reflect on the irony of his position by saying that his situation should please all sadists reading about it. Therefore, the features of the setting affected the reader by highlighting the negativity of his situation, which in turn drives him to continue pedaling." 3 3 3 +7184 3 "In the essay Do Not Exceed Speed Limit, the features of the setting affected the cyclist in a few ways. One way it affected him was that the temperature was very hot and by it being hot outside his water wouldnt stay cool. This is a problem because you need nice, cool, refreashing water to stay hydrated. Another way was when he hit a fork in the road. He didnt know which way to go. All he saw was one ramshackle shed, several rusty pumps, and a corral that couldnt hold the lamest mule greeted me. The sight was troubling. Last but not least this water pump wasnt working very well so he got down on his hands and knees and started pumping. The water wouldnt cool down. He tried a drop or two and the water tasted like battery acid. Those are some features of the setting that affected the cyclist on his journey." 2 2 2 +7185 3 "The features of the setting affect the cyclist in several ways. First the rolling hills make it hard to pedal over the land. ""Flat road was replaced by short, rolling hills,"" shows that the terrain was changing into a more difficult course. One long crippling hill,"" also shows how the hills had an effect on the cyclist. Another feature of the setting was the desert and the high temperatures. This caused the cyclist to become dehydrated. ""Trying to keep balance in my dehydrated state"" and ""I could drop from heatstroke"" show me how hot the cyclist was. One final feature that has on effect on the cyclist was the old abandoned factory. The sight of the boy with a refreshing glass of juice makes the cyclist lose hope and he doubts he will survive. ""I hung my head"" and ""abandoned factory of juices and dreams"" tell how the cyclist lost all hope at the sight of the building. All of these features of the setting have negative affects on the cyclist." 3 3 3 +7186 3 "The setting of the area where the cyclist was biking effects him because it makes him weaker. Since the cyclist takes the long route, He is in the desert for a longer period of time. Being in extreme heat can cause a person to suffer from major dehydration. We know this was the case for the cyclist because he says, but not before I gathered up a few pebbles and stuck them in my mouth. Id read once that sucking on stones helps take your mind off thirst This @CAPS1 is saying that the cyclist put stones in his mouth to get his mind off of how thirsty he was. I think this @CAPS1 is explaining exactly how dehydrated the cyclist actually was. If he was willing to put filthy stones in his mouth to help him get through his dehydration, he was pretty thirsty. Another thing that effected how thirsty the cyclist got was how hard he worked which was also a feature of the setting since during the end of his trip, he met rough terrain, he exerted more energy which made him sweat even more than he was. This made him @NUM1 more dehydrated. This story is explaining how the features of your environment can either make or break you." 2 2 2 +7187 3 "There are several features of the setting which affect the cyclist one is the fact that he is traveling on a hot day in June. and the growing realization that I could drop from heatstroke on a gorgeous day in June. The heat was getting to the cyclist and he was scared he might get heatstroke. The terrain was also not very ideal for a cyclist on a hot @DATE1. I noticed the terrain changing. Flat road was replaced by short, rolling hills. The cyclist was tired and the hills were making it worse. The water bottles contained only a few tantalizing sips. The cyclist was running out of water quickly and there was nowhere close to get more. These glitches in the setting affected the cyclist because it was extremely hot, he was running out of water and there was rough terrain. The setting was not in the cyclist's favor." 3 3 3 +7188 3 "According to the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit'' the features of the setting affect the cyclist a lot. One way the features of the setting affects the cyclist is that the mountains make the cyclist more tired. Especially because he no water, then having to go up and down hills really wears the cyclist out and causing him to lead into dehydration faster. The features of the setting affected him in that sense. Also the snake affected the cyclist. The snake caused the cyclist to be afraid which added to the fact that the cyclist was dehydrating. Another way that the features of the setting affected the cyclist was the Welch's Grape Juice Factory. The factory caused the cyclist to be even more thirsty and think about dehydration even more in the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit the features of setting affect the cyclist a lot." 3 2 3 +7189 3 The fatures of the setting affects the cyclist because in the story the character makes it seem like horrible weather for example when he said wide rings of dried sweat circled my shirt this is one way the setting affects the cyclist because it almost like your in the story and you can imagton what the character Is going through because everything is written in details. 1 1 1 +7190 3 "The features of the setting affect the cyclist because it makes it hard for him to get to @CAPS1 National Park. He took advice from some old men to take a shortcut to get him where he wanted to be. On his ride there, he stopped at a town, which was, to him, considered a ghost town. Then he got to a Welchs Grape Juice Factory, but it was abandoned years earlier and he was becoming weak and dehydrated. He thought he would drop from a heatstroke. At the end of his ride, he reached a fish camp where he found water to drink. A man asked him where he was going and the cyclist told him. Then the man asked him, Know the best way to get there? The man was much older than the other old men that gave the cyclist advice. So the cyclist told the man yes, sir: I own a very good map. The man realized throughout the setting on his journey, that he would never accept advice from old-timers again." 1 1 1 +7191 3 In the essay Do Not Exceed posted Speed Limit the setting affected the cyclist sense of direction. The cyclist knew where he was going and how to get there but the old men told him their short-cut. It ruined his own sense of direction because he was taking out-dated directions from old-timers that hadnt left their porches since Carter was in office. That is how the setting affected the cyclist in the's essay. 1 1 1 +7192 3 The features of the setting affected the cyclist a great deal. I say that because when there is peace and calmness then it motivates you more. Than when there is a lot en stuff around you. 0 0 0 +7193 3 "Steep mountains, rolling roads, jagged rocks are all reasons why the setting is affected towards the cyclist. Well the cyclist needs to know what is going on and what @MONTH1 happen. For example Rough Rough: Do not exceed posted speed limit. This setting lead to a lot of changes. So yes the setting does reveals a lot and I guess it describes how the cyclist @MONTH1 react to it also. So yes I think the settings do affect the cyclist through this whole story." 1 1 1 +7194 3 "What l believe that the features of the setting affect the cyclist is that, The old guys in the story remember things back how they used to be bot as they say in the book the world iso fluid place things change all the time. So for the cyclist to find his way he had to try and put together the the piece the old guys gave him." 1 1 1 +7195 3 The features of the setting affect the cyclist because you wouldnt put the sitting in rain or he wouldn't be ride the bike. Anther one is you wouldnt have a the sitting a city when there is nothing around but trees and rivers. 1 1 1 +7196 3 "The features of the setting affect the cyclist is that on his way he had to deal with so many things. Like for ex he had trouble with the flat roads that was replaced by short, rolling hills. The next thing was there was a sign that was posted he could not ride @NUM1 he had to do @NUM2 and that made him disappointed. Then a large snake blocked the majority of the pavement in front of him. He became dehydrated. He became sad, hopless but still had energy to feel himself." 2 2 2 +7197 3 "There are several features of the setting that greatly affect the cyclist. One feature is the desert he is biking through. The heat of a desert in June can easily dehydrate someone. When exposed for a long time, exercising, and running out of water, the effect is even greater. In addition, the change in terrain and road surface would have an effect on the cyclist. Traveling on a flat road requires much less effort then climbing hills. If the road is also rough, the biker has to work even harder to push the up the hill. There is also the mental effort of not tipping the bike on the uneven surface. Finally, there are not any buildings in sight. When someone is dehydrated but has no water, they are desperate to find some. However, if there is nothing they know of nearby, they will start to lose hope. Once they lose hope they wont try as hard to keep going and they will lose some of their strength. Considering all of the things negatively affecting the cyclist, it is amazing that he managed to push through and reach a source of water. " 2 3 3 +7198 3 "The setting in the short story Rough road ahead: do not exceed posted speed limit by Joe Kurmaskie is troubling to the cyclist One ramshackleshed, several rusty pumps, and a corral that couldnt hold in the tamest mule greeted me, made him troubled that he was in the middle of nowhere. The quote, Not two miles into this next section of the ride, I noticed the terrain changing, flat road was replaced by short, rolling hills, shows that he was troubled by having to go over the hills. As you can see the setting was very influental to the cyclist." 2 2 2 +7199 3 I the essays the features of the setting affect the cyclist by giving him hope. The cyclist takes directions by a few old men on a porch. The directions seem incorrect at first. The remains of a Grape Juice factory make it seem like he will never find civilization. 1 1 1 +7200 3 "The features of the setting around the cyclist affected him to the point of exauhstion and dehydration. The cycllist being exauhsted and dehydrated,or tired and thirsty, was beging to wear as the setting went from being flat to many ups and downs. The cyclist exlained the change by saying, flat road was replaced by short rolling hills(Kurmaskie @NUM1). The cyclists idea presented here is that he was to find new challenges when riding the hill of this californian desert rollar coaster. His water supply was thinning from the heat and the hills were tiring him beyond reason. All this cyclist could hope for was the blessing of a water refill and the shade of a puffy cloud." 2 2 2 +7201 3 The setting effected the cyclist severly. Biking in the desert following outdated directions nearly got him killed. He also came across several broken down factories and towns causing more dismay. However he came across a last stop that saved his life. 1 1 1 +7202 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, the cyclistis affected by his surrounding. At first the man starts out at a reservoir camp ground. His confidence is high, and he is ready to continue his adventure. As the day went on and all he could find was abondoned buildings he began to worry a bit water running low he come upon one ram shackled shed, several rusty pumps no sign of life. He realiced that his trip was going to be rough. The environment and risk of death gave him the determination he needed to push forward. Although he was fearful of death from dehydration, he knew travelling through the high deserts of California in June his only chances of survival was to keep going. The mans surroundings were what had pushed him to keep biking until he found the fish camp. If he had not been so aware of his surroundings he might have given up, but not making it out of the desert to the cool pines and rushing rivers of Yosemite would be to devastating" 1 2 2 +7203 3 The setting affects the rider because it is very hot wich makes him thirsty. how long the road witch affect his mind state and last the fact that ??? is in sight and that affect is coral 1 1 1 +7204 3 "The features of the setting affect the cyclist because they change the cyclists mood towards the rider. For example, in the essay Rough Road Ahead;Do Not Exceed Posted Speed Limit it states, ""There was no one in sight, not a building, car, or sructure of any kind. I began breaking the ride clan into distances I could see on the horizon The cyclist had to do this because they were having trouble riding since they were thirsty and the ride was very boring. This makes the ride seem larges so it also makes it harder to ride. Also in the essay it states, ""One ramshackle shed, several rusty pumps This affeted the cyclist because after seeing this and later realizing he couldt drink the water, he was more thirsty since he was running out of water. When the cyclist notices the Welchs grape juice factory, he bacames determined to get there. In conclusion, the cyclist in the essay Rough Road Ahead"" by Joe Kurmaskie, the cyclist mood towards the ride is strongly affected by the settings features." 3 2 3 +7205 3 The setting affected the cyclist in many ways. When he was going up hill it was harder for him to pedal. The hot summer day was breaking him down. He was getting dehydrated because he had a little bit of water left. It said he was trying to keep his balance in my dehydrated state. He felt like giving up. 1 1 1 +7206 3 "Features of the cyclist affected the cyclist in many ways. One was the heat. For example, in paragraph @NUM1 it says, I was travelling through the high deserts of California in June. @CAPS1 that California is called, the sunshine state, I can infer that it was very hot. Another feature that affected the cyclist was when he thought he could get some water but it was hot and tasted like battery acid. This is said in. This is said in paragraph @NUM2. This is how features of the setting affected the cyclist." 1 1 1 +7207 3 The setting features affected the cyclist because it was a conflict. It was a conflict because it was hot and he was lost. I was a confict that he was hot because he had a limited amount of water. Which he could get anymoe of because he was lost. The heat causes people to get thirsty but he couldn't because he was limited in water.Another conflict was that he was lost. This was a conflict that because he needed to be some where. 1 1 1 +7208 3 "The features of the setting affect the cyclist because he rode through the heat scorching desert of California, he rode over @NUM1 miles on bike to get to Yosemite, and he almost ran out of water on the journey. What kept him going on was the cool pines and rushing rivers of Yosemite." 1 1 1 +7209 3 "There are many ways the cyclist is affected throughout the essay by the setting. As he first enters the short cut that the old men give him he is confidenc. When he arrives at the first town and sees that it is like a ghost town he does not fret but continues on his journey in confidence. As he got to the second stop his lack of water began to set in, I got down on my hands and knees working the handle of the rusted water with all my strength. This shows he will work hard and is in need of water. As the cyclist past another place with no hope of water he placed stones in his mouth because he once heard it helped get your mind off thirst when he had just about lost hope from travelling through the hot @CAPS1 desert with no water he found one lost drive in him when he saw a store with water. Though this was a hot harsh setting it created inspiration for him to keep going and push through the hard times and survive." 3 2 3 +7210 3 "The cyclist in Rough Road Ahead: Do not Exceed the Posted Speed Limit was greatly affected by the setting. There were no buildings or people to the town anywhere. This emptiness meant that there was no help from anyone and he could die with out anyone knowing. Also the setting seems to be very dry and have desert like conditions, without water the cyclist would be dehydrated and could suffer from a heat stroke. Also the setting seems to be very hot. The heartt also makes the cyclist physically dehydrated and mentally considers the logic of a heat stroke at the time." 2 2 2 +7211 3 "The features of the setting had greatly impacted the cyclist. The heat, animals, and terrain had slowed him down throught his journey. The heat had slowed him down because he didnt have enough water to keep his boby moving normaly, and he said he had slowed him down because he had to sneak around it so it wouldnt bite him. The hills had affected the cyclist because it takes a lot of energy to go up there, when he said he couldnt see anything in sight." 3 3 3 +7212 3 "The arid, bare, and rough terrain of the desert affected the cyclist during his journey to Yosemite in the story Rough road ahead: Do not exceed posted speed limit. The cyclists expedition was hindered due to many obstacles. The dryness was a huge problem during his journey. .I was traveling through the high deserts of California in June"" (Kurmaskie @NUM1). This exert explain the hot, arid climate of where he was cycling. This climate decreased the rate of travel the cyclist intended to exert. Since the cyclist was riding in the desert, there wasnt many towns present. When the cyclist did approach a town, it was abandoned. One ramshackle shed, several rusty pumps, and a corral that couldnt hold in the lamest mule greeted me (@NUM2). After riding through the desert, the cyclist would have wanted a nice rest stop, but all of them were ghost towns. Flat road was replaced by short, rolling hills (@NUM1). Cycling for hours in a hot desert with limited water wasnt enough of a challenge; the flat land was replaced with hills. The cyclist is exhausted from all the other obstacles that the desert confronted him with; the rough terrain affected his journey since his rate was reduced. In conclusion, many factors negativly affected the cyclist expedition to Yosemite. The dry, bland, and hilly terrain of the desert hindered his journey" 3 2 3 +7213 3 "I belive the setting of an area can affect the mind when put is certin situations. In the reading the man is cycling and he sees no one, he is almost out of water and cant se a house or a person as far as he can see. This is scary and gives te feeling of helplessness but if he would be in @LOCATION1 and go past cars, people on the street and cars he would be calmer he could get water at only building along his ride the tempature would be cold there far he would drink less and go further. This would have changed his mood." 1 1 1 +7214 3 Well in the story Do Not Exceed Posted Speed limits by @PERSON1 the setting affects you because if you cant see any thing for miles and you are running out of water it has a sycological effect on you. You can start to panick like he did when it stoped in the old house and all that came out of the pump was battery acid. Also you don know exactly where you are so that also affects u because you dont know where to go or if you should turn back or what. If I was this person the features around me would have a lot of effect on me. 2 2 2 +7215 3 "The features of the setting affect the cyclist in many ways. In the beginning of the essay she was happy that she was getting a shortcut ""I followed their device and launched out at first light along a shortcut that was to slice away hours from my ride to Yosemite National Park. He thought he knew where he was going I chuckled, checked my water supply, and moved on."" When she entered the first town, this sight was troubling. I got down on my hands and knees, working the handle of the rusted water pump with all my strength, she was beginning to get worried/ run out of water, the next town was only eighteen miles down the road."" He was now at the dehightrated state. The water bottles contained only a few tantalizing sips."" Then he saw a building, but it was no longer open, so he got back on his bike, but his thoughts had changed he was now upset and expecting to die. He then saw a store, Gary and wilbers fish camp. He went in drank cool water and then on used his own map, rather than old guys." 2 2 2 +7216 3 "There were many features of the setting that had affected the cyclist. One of the features was the lack of water. This had made the cyclist dehydrated and not think right. It had also made the cyclist have less energy. An example is, I eased past, trying to keep my balance in my dehydrated state. @CAPS1 feature is the heat. The heat had made the cyclist thirsty and sweaty. An example is I wiped the sweat from my eyes to make sure it wasnt a mirage @CAPS1 example is, I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June. The features of the setting had affected the cyclist in many ways." 2 2 2 +7217 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, there were many features of the setting that affected the cyclcist. The first feature that affected the cyclist was the desert terain, it very hot and there were no trees to provide shade. This affected the cyclist because he got very hot and thirsty. So he drank more water than usual. Secondly, he was running out of water because he was drinking more than usual so he had to conserve his water, which was making him became dehydrated. That all the towns we past through were ghost towns with no running fresh water, so this extremely dissapointed him, it also furthered his dehydration. Just when the cyclist was losing hope he found a small bait shop and got into the shade and finnaly got water to drink. So after all those dissapointments he found hope, in the small bait shop, which gave him the strength and mental boost to continue on with his journey to Yosemite national park." 3 3 3 +7218 3 "The features of the setting made the cyclists journey even longer and more strenuous. The reason it being in such a remote area did not help. For example the people who still lived in that remote area were probably as old as the cyclist grandparents and the directions were horrible. Also, the fact that their were no new shops or areas or rest for the cyclist to go to; the water pump he found was old and nasty and the only building he saw was abandoned. Also ther factor was the rough terrain. It being froit the cyclist was already very fatigued by lack of water and tiredness the terrain was long, bumpy and just horrible all together. Finally, the last factor was where he was bicycling in California on a @CAPS1 summer day and he being on a which had no n.c(but which bike does) did not help at all. These are how the features affect the cyclist journey." 3 3 3 +7219 3 "The features of the setting affect the cyclist because the rougher the terrain got the more the cyclist had to strain to make it. For example, when the terrain turned to hills, the cyclist had to struggle to climb the hills which caused him to use more of his energy. Also, if the terrain was flat and smooth, the cyclist had less problems making the long journey. For instance, if the cyclist had less strain on him then he would not be as tired and would not drink as much water. In conclusion, that is how the features of the setting affect the cyclist." 2 2 2 +7220 3 he wouldnt know he would be faceing while rider or the road @MONTH1 be something bad might happen to his bike or one of his bikes wheels or he might fall of his the bick he would set so tired that he cant go any more he might give it up 1 1 1 +7221 3 "The setting sffects the cyclist by the need and comfort of riding down with no infrastructure around or people that most be the best mood nice and colun no cars and just him and the beautiful sky to ride with, like if there is infrastructure he must have to watch for people, cars and just have to day to streetsigns and act. So thats outing the feature of the setting would affect the cyclsit." 1 1 1 +7222 3 "In the adventures of the cyclist the setting is not only what developes the character but, that what affects how he pushes himself to not give up, even when he feels helpless. This is one example of how the cyclist is affected, ""I had been hitting my water bottles pretty reguarly and I was traveling through the high desert of California in June,"" With that information you can observe how this harsh setting creates problems for him physicaly because his body needs water. Which he is extremely limited and doesn't savor it very well. These issues create the problem of dehydration, and when mentally you think your going to die without water. You start to panic and lose control over yourself." 3 2 3 +7223 3 The features of the setting affected the cyclist. There were 1 1 1 +7224 3 "In ''Rough Road Ahead: Do Not Exceed Posted speed Limit'' by Joe Kurmaskie, the features of the setting most the time disappoint him. You can tell that the features of the setting disappointed him because every time he got to a town he couldnt get water. In the text it states, ''I got down on my hands & knees working the handle of the rusty water pump a for like substance oozed out followed by @NUM1 degree brackish water that tasted like battery acid. You know the setting disappoints him when he sees the terrain he has to cross as well. You can tell who he says ''At some point, tumbleweeds crossed my path a ridicuously large snake.'' The narrarator was disappointed that he listened to the directions of the elder rather than use his map. Joe Kurmaskie does a great job of making one narrarator faced & how he felt about them." 3 2 3 +7225 3 "The features of the setting affect the cyclist b/c the route, that the cyclist was taking there was a rough road him to travel. The cyclist took bad advice from some old men that hadnt left off their porches for decades. also, as he got into his long journey he began to notice what the advice the old men had given him was bad was bad advice, the cyclist was headed to Yosemite & he had gotten some advice from ???(not legible onwards)" 1 1 1 +7226 3 "When the cyclist first set off, he was doing fine, he had plenty of water. As he kept going, and sort of got of cause, he began to come into the desert region. He was hot, and he was ruunning out of water. This was making him dehydrated. Also, seeing the tumbleweeds, and lack of vegetation probably made him even worse mentally, because he was maybe thinking he was never going to get free from that. When he saw the fish bate shop though, he was probably relieved that he was going to be saved, " 2 2 2 +7227 3 There are many ways that a cyclist will be affected and one of these are the setting. The setting affects them because if it is short smooth setting the ride will be easy. But if it is long bumpy rough roads it will be harder to control the bike which means that the cyclists job will be harden this is how a cyclist is affected by his or her settings. 1 1 1 +7228 3 "The cyclist ran into rough settings on the way to @ORGANIZATION1 park. The first is the town he came to was a ghost town. Then he was running out of water when he ran by tambleweeds, and a large snake in front of him. He had no more water and there was rough roads ahead of him and he came across a juice factory. No one was there and he was out of water he did not know how longer it would be until he came tp another town. That is why I say that how the features of the setting affected the cyclist." 2 2 2 +7229 3 "The features of the setting have a very negative effect on the cyclist. According to the old men the cyclist would pass by a few towns if he took the route they told him. But every town the cyclist came to was deserted. There was no one in sight, not a building, car, or structure of any kind. Because the towns were deserted, the cyclist water supply was dwindling because there was no place where he could get more water. He became dehydrated and kept pushing himself to find a place where there was fresh water. Trying to keep my balance in my dehydrated state. Once he found some pebble and thought about sucking on them because it helps to slow down dehydration. But he didnt because he thought he would choke on them. The setting around him also made him have negative thoughts. It didnt really matter. I was going to die and the birds would pick me clean. Because the setting was a hot, deserted, desert it had a very negative effect on the cyclist. If he hadnt been running out of water I dont think that the effect of the setting would have been as bad. But because he did run out of water it made the effects much worse." 3 2 3 +7230 3 "The features of the setting affect the cyclist. One reason I say this is because he ran out of water and he could dehidrate. Also looking for water slowed him dsown more. Another reason I say this is because the man gave him the wrong directions, which got him lost and confused. That is how the setting affected the cyclist." 1 1 1 +7231 3 "It is said that, ""experience is a good substitute for @CAPS1 instinct. This means if someone knows how to deal with the environment they're in they can survive even if they weren't born with the animal instinct that come with the territory. However, even the most experienced person can be overcome by the extreme weather conditions they live in. In the essay, ""Rough Road Ahead, by Joe Kurmaskie, the experienced cyclist decides to take a long, difficult, and dangerous trip. His ride will take him a long the long desert paths of California with a limited water supply. This is the major element that and him in the story. Because he listened to same old men he went without water for most of his trip. Between his constant excersise, extreme heat, and lack of water, dehydration hit him fast. A common side effect of dehydration is hallucination, which the cyclist knew. It says in the essay, I wiped the sweat from my eyes to make sure it wasn`t mirage. This represents his knowledge and experience in the matter, and showed that he was adapt to his environment through experience. A similar story to this is jack @LOCATION2's, To @CAPS2 a fire where the man is also pitted against extremes at nature through the vukor, but the elements still ovetook him. Both stories represents man's quest for adventure, and also the canstrant struggle for survival that people face. " 3 3 3 +7232 3 "The feature of a setting can affect a cyclist energy. In the setting turns irds hills, it can every this Cyclist out." 1 1 1 +7233 3 The features of the setting affect the cyclist most on the fact that it strained him out the hydrated state. It made him unable to operate at his full power/efficiency. It deprived him of the little energy he had in him to begin with. That is how the setting affected him. 1 1 1 +7234 3 The setting affects the cyclist very strongly. The desert and heat with no water cause him to get dehydrated. The rolling hills and rough terrain tire him out. In the story it says and growing realization that I could drop from heat stroke on a gorgeous day in June. This shows that the heat and terrain could cause him to over heat and live a heat stroke. 1 1 1 +7235 3 "The temperature of the place that the cyclist was riding through affected him very much. The temperature caused the cyclist to sweat. This affected him because he would get thirsty and eventually he ran out of water. For example in the text he says the water bottle contained only a few tantalizing sips and then it goes on to say, I could drop from from a heat stroke. This showed how it affected him because he thought he is going to drop from the heat." 2 1 2 +7236 3 Features of the setling affected the cyclist were the harsh & hot climate and terrain. The author clearly wrote how the sun was beating down on him and how he almost died from dehydration. 1 1 1 +7237 3 "The features of the setting do affect the cyclist. If the road is rough you have to have the right bike. Then if you get a flat tire you have to know to look out for dangerous and posionous things. If you were in a real bad accident youd have to be prepared just in case they dont find you in time. You would have to know what nights were like. For example, if it got real cold at night you need to keep youself warm." 1 1 1 +7238 3 "The desert and the hills had a huge effect on the cyclist. The desert in June must have been very hot and going up those hills had to be hard. The road was also very rough. It says, Rough Road Ahead; Do Not Exceed Posted Speed Limit. It also says, I was traveling through the high deserts of California in June. The cyclist was very thirsty because of the hot weather. I think the setting had a huge effect on the cyclist." 1 1 1 +7239 3 "The cyclists condition was greatly influenced by his setting because he was lost in the high deserts of California in June. The heat crippiled him or he traveled in search of Yosemite. He became lost and ran out of water making his situation worse. Being lost in seemingly the middle of nowhere in the hot heat he became exausted, dehydrated and fearing heat stroke and loss of consicencess. This is shown in the essay by, ""the growing realization that could drop from heatstroke"" And, ""It looked like i was going to lose concisness for the last time." 1 2 2 +7240 3 "How the features of the setting affected the cyclist in the story, Do Not Exceed Posted Limit, were very dangerous to his life. The cyclist was traveling to the Yosemite National Park on a hot @DATE1. The cyclist traveled miles after miles on his bike only to past by deserted towns, This place might have been thriving little spot...a ghost town. The terrain was threatening because after twenty two miles or so, the cyclist had to overcome, short rolling hills, which would use more energy and make his thirst for water even stronger. The cyclist was out of water and the hot day was not helping. After a grueling journey, the cyclist used all the strength he had to go to a local bait shop and drank from the sink after the trechorous environment he was exposed to. The features of the setting in the story, Do Not Exceed Posted Speed Limit were life threatening and almost killed the cyclist, due to lack of water and the terrain he overcome." 1 1 1 +7241 3 "The features of the setting effect the cyclist by teasing him. First it was the rippling streams that taunted his thirst, then the old faucet and last the welches grape factory. The strraing were the beginning stage simply provoking thirst then came the faucet. The faucet made him relise that he was dehydrated. And last the abandoned welches grape juice factory had him almost abandon hope. The setting was effecting his mood." 2 2 2 +7242 3 "The features of the setting affects the cyclist in the story. In the story, it says, The water bottles contained only a few tantalizing sips. I could drop from a heatstroke. This statement clearly says that where the cyclist was riding, water was very hard to find and scare. He is talking about how he will die if he doesnt get water. Another example is that there are no buildings around and is deserted with no one around and many hills and roads. In the story it says, the terrain changing flat road was replaced by short rolling hills. This means that he was partially all by himself and he had no one to go to." 2 2 2 +7243 3 "In this story, the features of the setting heavily affect the cyclist. Certain features portray that this journey to Yosemite National Park was dreadful, but at the same time enjoyable. ""I would come to along this breeze jaunt."" The word breezy shows that the cyclist can enjoy riding the bike because there is a breeze. Another feature of the setting is very old and dirty. The water that the cyclist is drinking is drying his mouth out even more. A tar-like substance oozed out followed by brackish water feeling. This shows the dirtyness of the water. Also this setting shows the cyclist had to use all he had just to survive. It says working the handle of the rusted water pump with all my strength. @CAPS1, the features portray sacrifice and bravely of the cyclist." 2 2 2 +7244 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, the setting greatly affects the cyclist. The setting around the cyclist led her to drink a lot of water because of the dry conditions. I was traveling the hish deserts of California in June This shows that most likely she was hot, sweaty, and a source of water was not near to her. The rough terrain also led to her using own strength to get up and down hills, and to get plants and animals. The settings in the story led the cyclist to become dehydrated and weak, she was forced on as low supply of water and dodge numerous hazards, with no sign of living people near her. This place might have been a thrivins little spot at one time say, before the last world was"" This suggests a ghost town, where no people were currently living. There was nobody around her to help. The setting led to her deteriorating health. Her physical health was in danger because of her dehydration and her lack of energy. Her mind was also starting to ware. She had a shake her head to make sure what she was seeing in one part of the story. " 3 2 3 +7245 3 The features of the setting affects the cyclist. Because the man didnt have a lot of water and he was go into the California deserts in June. Another reason is because the flat road was changed into rolling hills and up ahead there was a sign that said Rough Road Ahead: Do Not Exceed Posted Speed Limit. the speed limit was @NUM1. One more thing is make sure you dont listen to a gentleman that is old and hadnt be off ther porch in decades. That is some of the things that can affect the cyclist. 1 2 2 +7246 3 "The features of the setting affect the cyclist since it is affecting her condition. She needs water to survive, and the next town is very far away. So she could possibly pass out without brake, and the hot temperatures. When I tried a draper I was, it had the flavor of battery acid (Kurmaskie @NUM1). If she doesnt find water soon, it will affect herb condition. Also, the features of the setting affects her determination. When she knows that she needs to find a town. she works harder. ""i would conserve my water go inward for an hour or so atleast or my inner spirit""(@NUM1). She would try her hardest to make smart moves, and make it to a town, as fast as possible. She works harder since she knows without water, her life is in danger. Now, things could get even rougher." 3 2 3 +7247 3 "During the cyclist journey in Rough Road Ahead by joe Kurmaskie he expierences setting changes such as the road being flat then going to short rolling hills. When hes wrideing he says the road is flat. Flat road was replaced"" This tells us the road he was on was nice and flat. Then as hes rideing he notice the land change. Flat road was replaced by, short rolling hills. this tells us that the cyclist will have more trouble sence the terrain changed. Thats how the land changes " 1 1 1 +7248 3 "The features affect the cyclist.The setting affects the cyclist because its real hot. So he takes a couple tips on some short cuts by some old men. Then come to find out these tips werent really short cuts. So now hes riding and angry that he took their tips. Also hes running out of water and becoming dehydrated. He sees an abonded place with water, but in order to get it you need to pump it. So he starts pumping and sees black gunk. He pumps for about @NUM1 to cool the water, but it doesnt cool off. Come to find out the water tastes like battery acid. So he starts riding again. but encounters a snake. Luckily he gets away, but he feels that hes about to die and regrets listening to men who havent got off their porch since @PERSON1 was president. What makes him more angry is that they seemed so sure. As as he's riding he sees a juice factory and goes there. Now its a fishing store and drinks lots and lots of water. He also says hes never listening to old men and hell always use the map." 3 2 3 +7249 3 "As the author of the story goes on her bike trip, the landscape around her becomes less and less welcoming. The first thing the cyclist encounters is a rusty pump & old shed. When the cyclist tries to get water from the pump, she describes the water as very hot and not cooling down at all. When the cyclist continues, tumble weeds that look like diamond head snakes cross her path. She encounters no buildings for a long time when she does encounter a building, It is abandoned and suggests that people left because of the landscape. The cyclist encounters another elderly man in her journy but decides not to take his advice because of the path the last set of elderly men set her down. " 2 2 2 +7250 3 "The features of the surrounding setting affect the cyclist from hi/her performance for example, In the essay Rough Road Ahead. Do Not Exceed Posted SPeed Limit the setting is full of hills, twisting, rising and desending. All of these things are working against the energy that the cyclist has. Also, the lack of the people in towns give the cyclist a hard and depriving time on finding a water supply so he/she does not dehydrate. Third the weather in the essay has a great deal of being affected on the cyclist it is hot in the desert of California and the cyclist has to be very hydrated to continue on his bike ride. " 2 2 2 +7251 3 "The features of the setting affect the cyclist in many ways, they ware heat, lack of water, and hills. While on his journey he almost gets dehydrated because he does not have a good supply of water and he said they taste like battery acid. And he had to convince up the road for anothe @NUM1 miles so that he could finally replenish himself" 1 1 1 +7253 3 The features of the setting affect the cycleist by hurting his ability to keep going. In this story the cyclist was faced with many setbacks or problems. At first he took advice from very old man who had out of date directions. Then the cyclist thought he could keep going on a very limited water supply. The cyclist then was getting dehydrated and angry. The cyclist then found an old building which raised his hopes only to drop them once he found out it was closed and rundown. Finally he finds a store and then dehydrates and is on his way again. 1 1 1 +7254 3 I think features affect the cyclist because when you write a bycles you need to con 1 1 1 +7255 3 "In the story Rough Road Ahead: Do not Exceed Posted Speed Limit, by Joe Kurmaskie, the cyclist has a very long journey that its affected by a variety of things, and problems. The cyclist is confident with himself at the beginning but after a few moments he feels really bad, and learns a really good lesson. I eased past trying to keep my balance in my dehydrated state."" the cyclist shows that it is really hard for him to move without water. This quote shows that he is not only thirsty but dehydrated which is several for a human being. The cyclist also had a really bad time, because he had to taste stones in order to make his thirst go away, one example of that is when" 2 2 2 +7256 3 "In the essay, Rough Road Ahead: Do Not Exceed Posted Speed Limit, a cyclist is confronted with a troubling setting on his journy to Yosemite. He is led away from the steady road as a result of taking mislead advice from an old group of individuals. In this essay the setting plays a crucial impact on the cyclist. In the essay, the author sets up the story describing the day as, traveling through the high deserts of California in June. Because of the amount of heat the cyclist was enduring, he became weary and dehydrated. Alone with this, the cyclist had to work much harder because the man noticed, Flat road was replaced by short, rolling hills. This setting is a major setback to the cyclists journy, and required him to persevere. In my life there have been numerous obstacles which I have had to persevere through. One of which had been when I was out camping, and suddenly, as in the essay, the setting changed, and a storm came. Though the other campers and I did what we needed to to make the best outof it. In the essay, the cyclist is affected greatly by the setting. This was the same in my experience as the setting affected myself. In both situations, perserverance led to a final satisfaction of the journey." 3 3 3 +7257 3 The features of the setting effect the cyclist because the roads are bumpy. The other things that is effecting the cyclist is the water on the roads. There are a lot of curved roads which always slows down his speed. 1 1 1 +7258 3 "In the story the features of the setting affect the cyclist. The setting is described as a rough terrain, which makes it harder for the cyclist to travel. Also its hot, and there are no buildings or people around. This also makes it hard for the cyclist because he runs out of water. throught the story the cyclist keeps going and ends up sarving" 1 1 1 +7259 3 "The feature of the setting affect the cyclist because the surrounding is so negative. Everything around the cyclist is percieved negatively, so the naturally the cyclist feels like the task is harder and more challenging than it really is. For example, nothing is surrounding the cyclist but sand and the hot temperature since the setting is so empty and no one is around, then everything seems harder than it really is. Also the cyclist feels like he cant go on and is weak because there is no living he around him. Furthermore, if the cyclist was in the park with the sun shining and people around and in sight, his attitude would change and everything would seem easier." 1 1 1 +7260 3 "The fatures of the setting affected the cyclist by it hard for him to control hill bike down on rough road, hotter making him thisty and running out of water. Also there wasnt an building in sight so he could get anything to drink. Also he did know where he was go. These are the features that affected the cyclist" 2 2 2 +7261 3 "The setting affect the cyclist in many gruding and harsh was. First, the lack of civilization contributes to an uneasy feeling and an inability to refill his water bottle. Second, the heat and uphill bottles are taking their tollon both aplists physical and mental strength. Third, his water bottle is emptying at an alarming late due to his third and relentless heat. In paragraph four die exospodent cyclist reaches the first ''town.'' This place @MONTH1 have been a striving spell but on that morning it fit the traditional definition of ghost down. @CAPS1 he came to house with a rusty water pump, which sped out brackish, near boiling water, which did not support the porched cyclist, physically, on mentally." 2 2 2 +7262 3 The features of the setting affect the cyclist because never accept travel advice from 1 1 1 +7263 3 "The setting of the story affects the cyclist in a negative way. He intrusted that these men he had asked directions from knew what they were talking about. With the directions in mind he traveled on his way to his destination. Only to find deserted towns, disowned factorys, and hills. With all this being the high deserts of California in June. With all these aspects the cycalrst was worn out and dehydrated saying Id read once that sucking on stones helps take your mind off thirst"" shaving his deep name of thirst. After finding a place to get a drink he stated I had an overwhelming and buy some bait showing his deep gratitude and relief of finding water." 2 2 2 +7264 3 "In the story Do not exceed posted speed limit"" The features of the setting affect the cyclist in a few ways. One way is that the harsh conditions of the desert make him need alot of water resources. This is because the heat and exercise will dehydrate him. This is evident in the story because after he drinks all his water, he is desperate enough to try to drink out of an old pump that had black sludge in it. This is how the features of the setting affected the cyclist. " 1 1 1 +7265 3 "While trying to reach Yosemite by a shortcut, the cyclist faced many challenges and emotions. The cyclist started out his journey cheerfully with thoughts of the cool pines of Yosemite. The sun was beginning to beat down, but I barely noticed it. The cyclist continued on his spirits as well as her water supply going down. The cyclist encouraged himself to keep going, just to find an open building. telling myself that if I could make it that far, Id be fine. @CAPS1 many abandoned factories, the cyclist tried many methods to decrease his thirst including sucking on stones. slowly gaining elevation while losing hope. @CAPS2 the cyclist found a deserted building, he lost more and more hope. When the cyclist found open store with modern bathrooms, he had an overwhelming urge to seek out @PERSON1, kiss them, and buy some bait. At the end the cyclist promised himself to always use his map." 2 3 3 +7266 3 "In the essay, Rough Road Ahead: Do Not Exceed Posted Speed Limit by Kurmaskie, the cyclist went through hard times, trying to get to Yosemite National Park. A cyclist is someone who tried their bike mostly all the time to get somewhere. First off the cyclist asked old men for directions to get to Yosemite National Park. The cyclist knew that was a mistake in the first place, but he had hope that maybe they knew what they were talking about. Seccondly on his trip, he came accrossed an Ghost town with nothing in sight but a bike snake. The cyclist became dehydrated and was running out of water, the only water he" 2 2 2 +7267 3 "Well some features might have more than others and the cyclist might have more than others. Also the author faced alot of problems like the lack of water, the poisonous snakes and the condition of the road. So there were many thing that affected the author and the cyclist, when they were on there journey." 2 2 2 +7268 3 "In the passage Do not exceed posted speed limit, there are many features from the setting that affected the cyclist. One feature that affected the cyclist was the snake he encountered on his way, for example in the text it says At some point, tumbleweeds crossed my path and a ridiculously large snake, I cased post, tyring to keep my balance in my dehydrated state This proves that the snake was a feature that affected the cyclist by giving him a point to stay calm even in the state he was in being dehydrated and all the affects he encountered from that." 1 1 1 +7269 3 "There is many things that could have made his bycicle ride much more enjoyable, one thing is if he wasnt in the middle of no where and if he actually knew where he was. For example, There was no one in sight, not a building, car, or structure of any kind. There, he had almost no water to get him through the day. For instance, The water bottles contained only a few tantalizing sips. @CAPS1, he did not know where he was going so it was harder for him. In conclusion these are some things that made his trip hard." 2 2 2 +7270 3 "The feature of the setting do affect cyclist in such ways making him illusionalistic and dehydrated. He saw all idea that a juice factory was working, when it was abounded. He saw rusty pipes, this made him dehydrated because he knew those pipes could never produce water." 1 1 1 +7271 3 "In the short story Do not exceed posted speed limit the settings of the story affect the cyclist. They make him think he will die and overall make him worried. In the story the cyclist takes two old mens advice on the best way to get to Yosemite mountin and gets himself in the middle of nowhere. He finds himself in the California desert without water, he lets this go to his head. I was going to die and the birds would pick me clean. That line was from the last page of the story. The biker was taking an unfamiliar route and he let himself believe he would die. He knew he was in the desert without water the setting makes him nervous because he was in a desert. He wouldnt have been nearly as nervous if he was in a forest where there are streams. He lets the desert and the heat convince that he is going to die. By coming across ghost towns he believes he will never see anothe person again, he gets oledrar because of where he is. He thinks the heat will kill him. The setting affects him and tricks him into believing he is going to die." 3 2 3 +7272 3 "The feature of the setting including the conditions, weather, and amount of water can possibly decide the life or death of the cyclist. The conditions such as hills, and rocky roads can decied a future for a cyclist because if the rocky roads turn you off balance you could fall down a hill and give yourself an injury or possibly die. For example, in the short-story it says, over one long crippling hill, a building came into view This shows the conditions in which the cyclist had to deal with. In addition, the weather and amount os water can also decide the future. The water bottles contained only a few tantalizing sips. Wide rings of sweat circled my shirt, and the growing realization that I could drop from heatstroke. This shows us that if the cyclist gets dehydrated enough he could pass out and no one would find him in the desert. In addition, the heat isnt helping him out any once he could die without anyone knowing. These reasons show us a cyclist needs to make sure they have enough water and the conditons and weather is right so they dont make a life-threating choice." 3 2 3 +7273 3 "When the cyclist is at his low point, he is an abandoned ghost town, looking for water that tastes like battery acid. The cyclist feels hopeless in the abandoned town. When he first reaches the water pump and the abandoned juice building he has a little hope only to be let down, because the building has no juice and the water pumps water is too hot and the water is not any good. The setting is the reason his mood changes through out the story." 1 2 2 +7274 3 "I am going to write a response that explains how the features of the setting affects the cyclist. In my response, I will include examples from the essay that support my conclusion. I think the features in the setting affect the cyclist because different things such as snow or rocks could affect the way someone rides." 0 0 0 +7275 3 "In the begining of the story, a young cyclist sets out on a long journy to Yosemite national park. Along his ride he meets some old but confident men. They tell him a new rout wich was to slice away hours from his ride the setting was excedingly hot @DATE1. He was supposed to encounter a few thriving towns along the way the first was a baren ghost town the next had water the flavor of battery acid, then he came to an abanded welches grape juice factory. The author navigated through a very trying setting until he reached a baite shop. The advice that he gives to his readers is to stick to your guns & dont let old timers try and change your mind." 3 2 3 +7276 3 "In the essay Rough Road ahead by Joe Kurmaskie, the cyclist had many changes due to the setting of what was around. The cyclist was lost in the dessert. This affected him a lot because the desert is very hot. He could have died from either dehydration or exhaustion. Also, in the desert some animals can be very dangerous on the cyclist journey, he saw a poisonous snake. It was a good thing that he was cautious around the snake because if he wouldnt have been, he might have gotten bitten and there would be no one around to help him. The desert that he was in. also happened to be desserted and there was no one around to help him with the directions. The worst thing would have to be that he ran out of water. Without the water, he could become very weak and dehydrated. and could have even died. The setting of where the cyclist was affected him greatly." 2 2 2 +7277 3 "The features of the setting affect the cyclist by making him thirsty and him thinking he is lost and going to die. The cyclist got information from an old guy that has not been off his porch for years. Just when the cyclist thought he was lost he saw Gary and Wilbers fish camp-if you want bait for the big ones, were your best bet! The cyclist went in and got water, and the old man asked him if he wanted to know where to go, but this time he said no." 2 2 2 +7278 3 "In the short story Do not exeed the speed limit by Joe Kurmaskie, the setting has great impact on the cyclist. In the begining of the story he describes the scenery as ""@CAPS1"". As he continued following the old mens out dated advice. It lead him through more barren lands. When he came to the first ""town"" he described it as a ghost town. The second setting he arrived at was One romshackle shed, several rusty pumps, and a corral that couldnt hold in the lamest muic he continued moving to the next town, which was @NUM1 away, he came to what he thought was a Welch's Grape juice factory and bootling plant. This tools a toll on his confidence because he said ""I hung my head"" he moved on and had finally arrived at un abandoned buiding called ""@PERSON2 and wilberss fish camp. ""This is where he drunk water and became repleshed. The setting had a great effect on the cyclist. Because depending on the location, decided weather he would live or die in the hot deserts of California." 2 2 2 +7279 3 One of the main things that affect the cyclists is the heat. Due to the heat he drinks all of his water. Another feature of the setting that effects the cyclist is the rough road since he is so tired he has a difficult time riding on the hills and other hard road conditions. 1 1 1 +7280 3 "In the story, Do Not Exceed Posted Speed Limit, written by the @CAPS1, the setting reflects how the cyclist is feeling. For example, Flat roads was replaced by short, riding hills @CAPS2 as the terrain was changing, so was his attitude. When he first started the journey, he was happy and care free and the land had no hills and he flat. However, once he notice that everything is not has the men said, he seems to grow a little angry and upset, @CAPS2 like the land seemed to reflect this soon he found himself in a bumby and unpleasant road. The setting also seemed to give the man more obstacles to overcome on adventure tumbleweeds crossed my path a ridiculously large snake blocked the majority of the movement in front as me. The land seemed to be leasing and tormenting him, when he started to figure out that listening to the old men was a mistake. " 3 3 3 +7281 3 "In the story Do Not Exceed Posted Speed Limit by Joe Kurmaskie the features of the setting affects the cyclist by draining him of energy, he is sweating so much, he keeps on drinking his water and slowly finishes it and still has a long ride ahead of him. The water bottles contained only a few tantalizing sips.(Kurmaskies) since is was so hot the cyclist was thirsty and drank all of his water. It was a warm day and he needed to stay hydrated." 1 2 2 +7282 3 "In the book Do Not Exceed Posted Speed Limit by Joe Kurmaskie the setting was in codi, California. The author went on a journey" 1 1 1 +7283 3 "Throughout the riders long journey the setting greatly affected him. For example, the hot weather caused him to drink the majority of water suply making him dehydrated and tired. If the weather was cool he would have lasted much longer." 1 1 1 +7284 3 "In this story the cyclest was affected physically and emotionally in many ways. One such way was the setting around him. For example, when he rode into the first town he gained of boost of confidence because he believed that he was on the right track to Yosemite. Then when the cyclist rode upon that old shed and the rusty water pumps he began to feel a little worried because he was running out of water and The Old Timers never mentioned the shed. When the cyclist encountered the rolling hills with tumbleweeds and snakes I believe he began to feel dismayed because he was lost. I believe this because in the text he says ""I was going to die and the birds would pick me dead."" This shows how hopeless the man fealt. when he reached ""Gary and @CAPS1 fish camp"" he was relieved and thankfull because he no longer had death blazing towands him in the form of a yellow sun, empty spaces, and empty water bottle. This was how the the features and setting affects him in many ways." 3 2 3 +7285 3 "Riding through beastly mountains, hot and burning deserts and no water. A cyclist was riding through a town and asked for directions. The two old men gave him the wrong directions and send him on a trip through hell that only a determined person could get through. First he had to go miles without water which resulted in him loosing faith becoming dehydrated and not continuing with his plans. The terrain he had to go through was unbearable and could almost kill him without water. Luckily he had faith and determined so he got through it and learned a lesion. Maps are made for people to use so if you have a map you should trust it and in the ending it shows that the cyclist learned that because he said And I promised myself right then that Id always stick to it in the future." 3 3 3 +7286 3 "In the short story Rough Road Ahead Do not exceed pusted speed limit. A lot of things affeced cyclist. Such as the rocky road , and the lack of water for example where the author says when I tried a drop or two, It had the flavor of battery acid. this shows how has loosing lope, and he seems a little scared. Also the abandond towns didnt help." 1 1 1 +7287 3 "All the features of the environment through which the cyclist is riding affect him greatly. First, since he is riding through the desert in June, that means that it is very hoy out and he will need plenty of water for his long bike ride. Also, the terrain of which he is riding is rough which causes him to lose energy. The sun was also beggining to heat down on him which means that he was going to have a hot ride to the town and which later caused his struggle for water. Overall, the hot, desert setting affects the cyclist. It causes him to dehydrate and have a need for water. In the story it says, The water bottle contained only a few tantalizing sips and that he could drop from a heatstroke on a beautiful day in June, This is basically showing that the hot environment caused him to drink a lot of water, and now he has run low which could cause him to have a heat stroke." 2 2 2 +7288 3 "THE FEATURES OF THE SETTING AFFECT THE CYCLIST BY DEPLETING HIS WATER SUPPLY, AND ALMOST GIVING HIM HEAT EXHAUSTION. IN THE TEXT, HE SAYS: THE WATER BOTTLES CONTAINED ONLY A FEW TANTALIZING SIPS. THIS HOTNES HE HAS LITTLE WATER LEFT FOR SURVIVAL UNTIL HE RUNS OUT." 1 1 1 +7289 3 "The features of the setting affect the cyclist greatly. At first it was flat road which the speaker was happy with and he had a smile on. (@NUM1). Then came large rolling hills which created a challenge, the cyclist needed to muster up enough energy to continue. The rough terrain was next causing the cyclist to work even harder to cycle. As if the rough terrain wasnt energy soaking enough, a snake blocked a majority of pavement and large elevations came into play. The harder the terrain, the harder for the cyclist." 2 2 2 +7290 3 "The features of the setting affect the cyclist because depending on how the setting is, is how much skill they need. Like if their going down hill then they really only need to know how to control the bike. If their going up a mountain with lots of bumps they need to have some skill. Usually if their riding in a shady area then the wear clothes to keep them cool. But if their going to be in the sun the they need to wear light clothes. The setting affects the rider very much." 1 1 1 +7291 3 "The setting in Do not exceed posted speed limit affects the cyclist in many ways. The old men told the cyclist there were flat roads on the path he was to take, when the cyclist got there, there were hills not flat roads. The cyclist traveled through the desert to get to his destination. He started to run out of water because it was so hot and humid. He started to get dehydrated and could bairly keep his balance. In this story the cyclist had to pass a large snake a ridiculously large"" snake it realy didnt look like a diamondback blocked a majority of the pavement in front of me (Kurmaskie). The snake was big and the cyclist had to work his best to pass it while wobbling from dehydration. The settings in this story had effect on the cyclist in many ways." 2 2 2 +7292 3 "The features of the setting affect the cyclist for many readers after another. @CAPS1 are some examples why the cyclist was bike riding down a windy road. He is in a hot place similar to a desert. It is very hot there and is affecting him during his travels,""I eased past, trying to keep my balance in my dehydrated state. Another thing that affected him because of the setting was that the desert had rocky roads and windy paths because he followed the old mans direction. ""Rough Road Ahead"" are final example is that he was in the desert so he saw a snake come out of the tumbleweeds."" A large snake it really did look like a diamond back."" @CAPS1 are three examples how the cyclist had been affected due to the setting of the story. " 2 2 2 +7293 3 "The fetures in the settings like hills, make the cycleist use more energy, the more enegy that he uses the more water he will whant to drink. This is difficult because he states The water bottle contained only a few tantalizing sips. Therefore he was in trouble." 2 2 2 +7294 3 In the story the features of the setting affect the cyclist in many ways. For example he is in the desert and it is very hot outside. Also he is running out of water. This is bad because he could become dehydrated. Another example is when he comes upon the building he thinks it is a mirage at first because hes pretty much dehydrated. The rough terrain also makes it hard for him to pedal and he is already weak from lack of water. In conclusion all these elements of the desert affect the cyclist in some way. 2 2 2 +7295 3 "The features of the setting affect the cyclists mood towards the journey. At first, he is confident that the old mens knowledge of the land is accurate and he is excited about what lies ahead for him. However, his excitement soon turned into dismay and slight doubt as his journey drags on. The heat of the weather and lack of water makes the cyclist develop an uncaring matter. Id read once that sucking on stones helpswith any luck Id hit a bump and lodge one in my throat. The verbal irony in this passage delivers a negative feeling to the reader and it is here that it is clear that the cyclist doesnt care what happens to him. When he finally reaches a sign of civilization, the cyclist becomes himself again and decides that his knowledge is best." 3 3 3 +7296 3 In the story Do Not Exceed Posted Speed Limit while riding his bike the author Joe Kurmaskie has alongride. Where he is riding there is up and down hills also the road is very rough. He was running out of water in the desert. I stopped at a rusted water pump to get water and a tar like substance oozed out. @CAPS1 that he is off his bike he least worrie about the posionous snakes of the desert. He founded Welchs grape juice factory but it was abandoned. The author found a bait shop and got water 2 2 2 +7297 3 "In the short story Do not @CAPS1 the Posted Speed Limit by Joe Kurmaskie, the setting of the story affects the cyclist in many ways. In the story the cyclist experiences many changes in temperature and climate. He also experiences changes in land structure which makes it extremely hard to pedal and get where he needs to. From my reasoning is why the setting @MONTH1 affect the cyclist." 1 1 1 +7298 3 "The hot sun and the desert features in the setting are affect the cyclist in ways that could potentially stop him from making it to his destination. The sun is beating down on him and is making it harder for him to reach his destination. The sun was begining to beat down...wide rings of dried sweat circled my shirt. By him being so hot and tired fromthe sun, he thought that he would die from dehydration. This would very likely stop him from making it to his destination, Yosemite. His lack of water supply didnt help the situation either because he could only go @NUM1, was water depleting @NUM2." 2 1 2 +7299 3 "The features of the setting does affect the cyclist. For example, if it is hot outside then he would need more water than normal. Also if it was raining he would have to drive more careful. That is why the setting would affect the cyclist." 1 1 1 +7300 3 "The environment around people in certain situations can affect them in many ways. For instance if you are hot, tree could be shade, or thirsty, a river neer by could help your thirst. If you were hungry and hot, but nothing was near you this could make you hot. In this cyclist case the environment affected him in many ways, from bumpy roads, ghost towns, and trees. For example he said, The sun was beginning to beat down, but I barley noticed, this is because of the ""cool pines"" around him as he explains in the next paragraph. It also says in the text that the terrain changed and he even came upon a snake, which added to his thirst. So then making it harder for him to go one. From reading the the text on can see how features can have effects on a person." 2 2 2 +7301 3 "The features of the setting stronger, effect the cyclist's journey to Yosemite. The features of the land;in, and hills, the fact that it is desert, and the setting in the middle of june also effect this story.The dry and hills land is a huge factor for the main character. Because if is hilly, he has to work twice as hard. The land is dry, so he his thirsty and has no where to get anything to drink.The land is also desert, so there is no where he can go for help or to get food, water, or civilization. He believes that he is not going to make it. The text explains in paragraph !!, "" the growing realization that i could drop from heatstroke on a goregous day on June simply because i listened to some gentlemen who hadn't been off their porch in decades, caused me to laugh"" The setting plays a huge role in the story. It is hot, dry, and deserted this out effects the main character and journey." 3 3 3 +7302 3 "The cyclist in the essay Rough Road Ahead: do not exceed posted speed limit feels discouraged and dehydration because of the setting. Near the beginning, after viewing the first stop which consisted of a few broke buildings and some rusted pumps he states This sight was troubleing, He also feels dehydration when he reaches the pumps and finds the produce A tar like substance oozed out, followed by blackish water. Also as he is pedaling he sees a sign that says do not exceed 55 miles per hour. He" 3 3 3 +7303 3 "In this quick passage by Joe Kurmaskie, the many conditions of the road and the area around it determine how he acts and what he feels, The sun was beginning to beat down , (Kurmaskie) .He is starting to get tired because it is becoming hot and sunny, so he is feeling less confident. He was traveling through the high deserts of California in June . (Kurmaskie).Not only is he very tired and hot not where he is riding is barron and open and there is no one around him to give him help or to find water. Through the passage you can tell that the temperature and weather around the cycler can change how and why how he does. " 2 2 2 +7304 3 that explains for my features Im the of the setting affect the cyclist. the essay that support your conclusion is the cyclist .the features is the setting becaused the cyclist the Include the support for the conclusion. 0 0 0 +7305 3 The scenery makes the cyclist hapy. Hes sooooooooooooo happsy! Woohoo! happsy 0 0 0 +7306 3 In this story the setting has a affect to the cyclist trip and to him self. It being hot and over @NUM1 degrees and going down hill with a lot of turns. The cyclist is getting so hot that hes water is no longer cold. Being in this desert is killing and about to make him have a heartstoke. All the things in the desert is doing a lot affect to the cyclist. 1 1 1 +7307 3 "The setting of a situation can affect a person both mentally and physically. This is evident in @PERSON1 Do not Exceed Posted speed Limit. The cyclist is unaffected, for the most part until the directions he was given by a collection of old timers who havent left the confines of their porches since Carter was in office. takes him over terrain not suitable for biking. Prior to following the mens directions, the setting was enjoyable a made for an easy ride a reader knows this because the cyclist is confident. For example, he says The sun was beginning to beat down, but I barely noticed it. The cool pines and rushing rivers of yosemite had my name written all over them. This confidence begins to depleat as the cycling gets harder. For example, the cyclist says sometimes life can feel so cruel. after he hits rolling hills and a sign warning of rough road and not exceeding the speed limit. The cyclist became disappointed and wanted to give up because he couldnt even reach that limit. However, hes determined and pushes through to reach a shop. This gives a sense of satisfaction and confidence. So in conclusion setting can have a powerful affect on mood or motivation." 3 2 3 +7308 3 The features of the setting affect the cyclist by making him ??? are ??? like when he rood through that ghost town. The setting is a big part of this story thats all that talk about. And when hes getting water or how the tumbleweeds are crossing the road. He was all ways thirsty and rode his bike along ways and is no paint in ??? ??? ???. 2 2 2 +7309 3 "How the setting changes the mood of the cyclist is that what he sees pretty much discribes how he feels. Like he starts off with strong less and a smile on his face. Then he comes to the first town which was a ghost town, that didn't really dampen his spirits because when he sees it he laughs. Also when the setting changes so does his confidence in the old men's direction giving. Like at the first town he still has confidence in what they told him. Then he notices that it starting to get hotter but that doesnt change his mood much. @NUM1 miles later comes top a fork in road with rusty water pumps and a ran down car all that makes him less confidence in water level. Then he realizes the next town is a long way away so he losse more confidence and gets more worried about water. Then the flat road is replaced with rough road so his mood goes down more. Then at last he goes to a fishing store and so he gets water and his spirits go way up. Here is how the setting affected his mood." 2 3 3 +7310 3 The features and setting in the story affected the cyclist because they made his journey to Yosemite even harder. In the story it says that it was so hot he could drop dead from heatstroke. Also his lack of water made him extreamly tired as he petaled. Next the sun was beating down so not only was he tired due to his lack of water but also because of it being so hot out he was loosing water and energy from his sweat. Thats why the features and setting made his journey to YoSemite difficult. 2 2 2 +7311 3 "In the short story, Do not Exceed Posted Speed Limit The cyclist experiences some difficult times. When starting the journey he had very little water. Because it was hot and dry his water went quickly leaving him very little water for the rest of the trip. The ragh roads also made him, tired making it harder to make the journey." 1 1 1 +7312 3 "Features of the setting that affect the cyclist are the cool pines and rushing rivers they affect the cyclist by keeping him cool and energized by the senery and the temperature, another is the juice factory and it was old and shut down showing that he would die alone. The goast town which was completely and utterly desserted showing that the place is barren and unlivible these are some of the features the affect the biker." 2 1 2 +7313 3 "The cyclist is very discouraged by the dry and hot settings around him. A feature is something specific about some thing else. In Rough Road Ahead. Do not exceed posted speed limit the cyclist takes the advice of a few old men that seems to be somewhat outdated, and gets him lost as he is running out of water and energy. The cyclist says Over one long, crppling hill, a building came into view. I wiped the sweat from my eyes to make sure it wasnt a mirage (Kurmaskie @NUM1). He is greatly affected by the heat and was so tired he wanted to make sure the building was not an illusion. Also, the changed terrain affected how much water he drank and how hard he had worked just to get up that one long hill. The dry climate and tough terrain greatly affected the cyclist." 2 2 2 +7314 3 "Heat, dessert, humidity all are things that affect the cyclist as on his journey. First, heat because the heat is making him thirsty for water @CAPS1 he is running row on. For example, the narrator describes, water bottles only had a few tantalizing sips. This means that the day is hot and running out of water. Second, dessert because the narrator is the only one around and deserts are usually diserted. For example the narrator exclaims There was no one in sight, not a building, car, structure of any kind. @CAPS1 clearly states that he could be in a dessert where no one wants to be. Lastly, humidity, because it can be hot but then the humidity comes into plan and makes the sky more dry and seen hotter than it usually is. This is why heat, dessert, and humidity all are things that affect the cyclist as he is on a journey." 2 2 2 +7315 3 "The features of the setting greatly affect this cyclist. At first he is fine riding along the old-timers shortcut as he states that things began well enough. I rode into the morning with strong legs and a smile on my face. But what he didnt know was this was the beginning of a very rough day. He arrived at the first town which was a ghost town. He wasnt overly worried yet but at about sixty miles in on his journey he came to a ramshackle shed, several rusty pumps, and a broken down corral. The cyclist explains how he had drank a lot of his water and was in need of some. He tried the pumps but he explains how a far like substance oozed out, followed by brackish water feeling somewhere in the neighborhood of two hundred degrees. A couple miles later he came to a highway sign that read ROUGH ROAD AHEAD: DO NOT EXCEED POSTED SPEED LIMIT. The cyclist continued on desperate for water. He even came across a snake. He was now fearing a heat stroke. He came to an abandoned grape juice factory and hung his head. The cyclist then was almost completely dehydrated from the long, tiring bike rid. The cyclist was sure he was going to die from dehydration or a heatstroke that this terrible ride had caused. He finally came to a shop a drank from the sink. So this ride was torturous due to the setting." 3 3 3 +7316 3 "The features of the setting affected the cyclist in positive and negative ways. At first, there were the two old men who gave the cyclist the out-of-date information. They affected him negatively because if it wasnt for them, the cyclist would have never gotten lost. When the cyclist arrived at the first town, the water pump affected him, the cyclist was running out of water and the water from the water pump tasted like battery acid and was about @NUM1. The cyclist was becoming more and more dehydrated and the small, rolling hills didnt help his dehydration, he also used a lot of energy in order to go over the hills. Finally, he found Gary and Wilbers fish camp where he was able to get water. This whole experience in a way, affected the cyclist positively even though, at the time, he was affected negatively. The cyclist learned to not take advice from really old people who havent left the confines of their porches since Carter was in office. The cyclist was affected positively and negatively by the features of the setting." 1 1 1 +7317 3 "In the essay Rough Road Ahead: Do not exceed posted speed limit the cyclist is on a journey to Yosemite National Park and stops for advice on a quicker route. When he asks the old men he says, Never accept travel advice from a collection of old-timers who havent left the confines of their porches since carter was in office. Along with using their advice he faces abandoned ghost towns that they said were thriving spots. The cyclist overcomes the rolling hills of terrain and mirages and the heat of a day in June in the California in deserts. Finally he sees bait and tack shop and when he sees that the men who own the place are older than the other guys he just stares at them in all. Based on the quote you can infer that the cyclist will ignore their advice about having the best map. " 2 2 2 +7318 3 "The features in the setting affect cyclist in many ways. One of which is bring only to carry so much equipment which @MONTH1 be needed. For example, you can only take so much water with you and once you run out of there are no buildings or anything around that you are out of luck. Also, you can only take so much food. Finally, when you are ready to go to sleep you cant just pull over you have to ride until you find a hotel or get home. I know that I would not make it. So those are just a few reasons on why the setting affects cyclist." 1 1 1 +7319 3 "The features of the setting affect the cyclist by making him dehydrated, troubled, and relieved. The cyclist is dehydrated because of the horrible heat. He says the growing realie at von that l would drop from heatstroke on a gorgeous day in June. This means that the heat is a treat to him and would cause him to become dehydrated and have heatstroke. The cyclist is troubled by the scarce sourroundings. ""a corral that couldnt hold the lamest mule. He is getting worried because there is no one around and his directions are starting to sound wrong. The cyclist is relieved by the water from the sink. He had the overwhelming urge to seek out Gary and Wilber, kiss them. This means that that he is so relieved that he has finally found water and he wants to thanks the owners of the bait shop for providing it." 3 3 3 +7320 3 "The features of the setting affect the cyclist in the story Rough Road Ahead by Joe Kurmaskie. The downhill land format helped him in a way because he wouldnt have to use strength and pedal as hard without having as much water in his body. When he came to a pump, it was rusty with tar oozing out followed by hot brackish water flavored like battery acid. The dryness of the dessert had a bad affect on the cyclist because he wasnt able to get to the Yosemite water until the end. The breeze of the wind had a positive affect because it helped to cool him down. The features of the setting in the story Rough Road Ahead by Joe Kurmaskie affect the cyclist." 2 2 2 +7321 3 "Many things that involve settings can affect other things. In the Do not exceed the posted speed limit by Joe Kurmaskie, a cyclist is affected by the setting as he travels to Yosemite National park. The water bottles contained only a few tantalizing sips. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from a heatstroke on a gorgeous day. (kurmaskie @NUM1). The sertting from the day is affecting him very much and it is hard for him to continue. He is very tired and almost sick from the heat. The settings of this place are hurting to the cycleist and he wants to go home and away from the heat. The setting of this place effects the cyclist very much." 2 2 2 +7322 3 "The features of the setting affect the cyclist. One way that the features affect the cyclist, is that it is summer time, and it harder for the cyclist because" 1 1 1 +7323 3 "The features of the setting affect the cyclist in many ways. One way could be if the setting was in, like, a place with a lot of water, then the cyclist wouldnt have to worry about dehydration. Another reason would be if the old men were never outside in the first place, then none of this would have also happened. " 1 1 1 +7324 3 "The features of the setting affect the cyclist physically. The want of the California desert canes the cyclist to became tired and dehydrated. For example the another states I cased past, trying to keep my balance dehydrated star, The setting is the main factory which causes the cyclist to become dehydrated." 1 1 1 +7325 3 "One part of the setting that is affecting him is the sun, which is mercilessly overheating the biker. Another problem is the terrain he is on, which is a number of small hills is wearing him out. There are also apparently no trees for shade and no clouds or wind to cool him off." 1 1 1 +7326 3 "The features of the setting affect the cyclist because as the terrain got rougher things to the cyclist got harder. In paragraph @NUM1; there is a senteance that says, It read: Rough Road Ahead: Do Not Exceed Posted Speed Limit. In the next paragraph the cyclist comments, sometimes life can feel so cruel. @CAPS1 because the road ahead got rough to the cyclist life was cruel. All the features like the snake, lack of water and rolling hills are all obsticules in life, people have to experience. We might not like it but the reward at the end is wonderful." 2 2 2 +7327 3 "The features of the setting that affect the cyclist are the conditions of the road and weather. he hit some bad and nasty water. along with other hazardous things, he also tried to ride through a desert where he had already drank all his bottles of water and had nothing left to drink, he was very dehydrated and had to drink nesles water. It was hard for him to keep going, being dehydrated so bad but he had to. at one point a big snake almost took up the entire road and he had to just ease his way on by it, his riding conditions were so bad, he thought he was going to die, he said the birds were going to eat him. The weather was so hot it was hard to go on, he finally found a bathroom, went inside it drank water from the sink and yellced to a man that told him the direction he wanted" 2 2 2 +7328 3 "The features of the setting do indeed affect the cyclist. First in the story when describing the setting it says there was no one in sight, not a building, car, or structure of any kind. @CAPS1 basically giving a hint or foreshadow that something bad is going to happen because hes alone. Another description of the setting when it affects the cyclist when it says Rough Road Ahead; Do Not Exceed Posted Speed Limit @CAPS1 pretty much saying danger ahead, something bad will happen." 1 1 1 +7329 3 The setting affect the cyclist in many ways. How because there was not a posted speed limit up there cause the cyclist went right throw and over goin faster then he was suppored to. 1 1 1 +7330 3 "Poisonous snakes, mirages, rolling hills, and dry dead tumbleweed these features in the setting that the cyclist was going through have the greatest effect of all. They showed the trecherous path he took the obstacles he had to surpass the prevail. The purpose of including some features of the setting like the poisonous snakes, mirages, rolling hills, no signs of life, and no water all show and impact how bad the conditions were. If it left out these sectives the audience could say/think he was traveling through any old trail, for all they know the cyclist could be traveling along a windy river passing threw nice developed towns, so you see the features in the setting help set the mood and also reveal the confident of the story." 1 2 2 +7331 3 "When you do something really to often you get used to it, well I think is the same thing with how sitting affects the cyclist features. It might make their butt flat or their back has a diferent shape and with different shep I dont mean that they are diformed but evey person is diferen so their back can either have a @CAPS1 shape or an I shape or a D shape." 0 0 0 +7332 3 The features of the setting affect the cyclist in these ways. The cyclist was very hot. wide rings of dried sweat circled my shirt and the growing realization that I could drop from heartsroke on a gorgeous day in June. The towns that passed through that were supposed to have people were in fact deserted. His ride ended up being even harder than it would have been. This is how the features of the setting affect the cyclist. 2 2 3 +7333 3 "There are many features of the setting that would affect the pedalists. Flat road was replaced by short rolling hills (kurmaskie @NUM1) shows the change of terrain. Hills must be traveled up to get to the other side and that takes much time and eneegy, especially for bike riders. high deserats of California in June (kurmaskie @NUM1) shows heat. Heat makes it harder for most people to concentrate and causes people to heat overheated when exerting much force at once. These two co" 2 2 2 +7334 3 "The different settings of the cyclist affected him by how he felt when he rode the bike on the rode. He was well excited and happy that he is going on the ride and how he truly felt about how he rode the bike real fast through the short cut. And how he came over a long, crippling hill he was riding real fast. So unfortunately he was riding fast non stop and how he came through the whole road with relief. He felt so free and how he when he came over hills that are tall and large. But he mostly believed he could find his way at the end. He said it himself he always stuck in the future. So hes keeping his future and his wisdom to himself. He thought he was gonna die but all he had to do is ask for a little push. But different things did affect the cyclist by doing the impossible of his very bright future." 1 1 1 +7335 3 "One of the biggest problems that the author faced in his essay was his surroundings. The setting of the story in Yosemite provided many obstacles such as the vastness of the park, the summer heat, and the fact that many places had been abandoned. The summer heat was the biggest problem for the cyclist. He had to bike many miles, but he only had limited supply of water. Eventually, his water supply began to run low, which increased his determination to find the next town before he collapsed. It is this determination which moves him from ghost town to ghost town and keeps the story moving. Another big problem was the vastness of Yosemite National Park, which he was biking through. Any wrong turns (which he took, thanks to the direction he was given) could get him lost and thrown off track for a very long time. It was his confusion as to where the next time was that kept him biking, with difficulty and made for an interesting story. An example of the vastness of the park was when he quote, About forty miles into the pedal, I arrived at the first town. This place might have been a thriving spot at one time-say, before the last world war-but on that morning it fit the traditional definition of a ghost town. This quote shows that even after many miles, he hadnt seen a sign of anyone living, which would have increased his desperation to keep looking for civilization." 3 3 3 +7336 3 "In ''Do Not Exceed Speed Limit,'' by Joe Kurmaskie, the author depicts the vivid details of the setting and how they contribute to the cyclists condition. For example, the author wrote Over one long, crippling hill, a building come into view. I wiped the sweat from my eye The way the author described the hill as crippling should how much energy it was taking away from the cyclist. Another quote that contributed to the cyclists journey was, that smoky blues tune ''Summer time rattled around in the dry honeycombs of my deteriorating brain. This expressed how dehydrated the summer heat way making him. I believe the author used modifying details to support the description of the cyclists condition. I think the description of the setting enhanced the readers perception of the cyclists journey. " 3 2 3 +7337 3 "The terrain the cyclist faces dont help very mach considering he is almost out of water, he came across hills that ticed himout a lot & made him even more thirsty. Also, when we came across the juice factory he used a lot of energy to get there because he was excited and that made him even more thirsty. Therefore if he didnt have any energy left after all of that he wouldnt have been able to get to the baits shop." 2 2 2 +7338 3 "The features of the setting affect the cyclist in many ways. First of all he is in the middle of no where, and he doesnt know the direction of where he is going, and he also doesnt know the people who live there. The other thing is that he doesnt have a food, or a drink, so without eating or drinking he cant get energy, so he cant ride the bike." 1 1 1 +7339 3 "The features in the setting in the story afects the cyclist in many ways. For example in the story it said, At same point, tumple weed crossed my path. This is saying that he is in the desert or somewhere very hot because I know that you usually only see tumple weeds in very hot places. Thus, being in the desert affect the cyclist because he is already low on water then being in a place as hot as the desert made him get even nor dehydrated. Another feature in the setting in this story that affected the cyclest is the hills he had to climb. This affected him because he was already dehydrated and climbing hills made him have to work more which caused him to lose more sweat and become even more dehydrated. Those are two examples of how the features in the setting of this story affected the cyclest." 2 2 2 +7340 3 The setting in this story is very hard for the cyclist. His main problem is the lack of water. If you deprive the body of water all of your major organs will bake in the hot sun. Another problem was the condition of the terrain. It is very hard to cycle on bumpy dry land. These are any a few problems the cyclist encountered. 2 2 2 +7341 3 "The feature in the setting affeted the cyclist alot. It was a hot summer day and he was running out of water. With oll the heat he could have had a heat stroke. Another problem was the hills. He didn't have alot of energy, ?? the sun were tiding it from him." 1 1 1 +7342 3 The features of the setting affected the cycles beceuse it was hot and was a mough train. 1 1 1 +7343 3 The features of the setting affect the cyclist because as he gets closer to the nearest town the ground becomes rougher to ride on. Like when he sees the sign saying not to exceed the limit. That shows that the ground is going to be rough. 1 1 1 +7344 3 "The features of the setting in, Rough Road Ahead negatively affect the cyclist. In the California desert, water is everything. If you run out of water then you might as well have run out of life. Without water, dehydration kicks in and it affects not only your body, but your mind too. The cyclist only had a limited amount of water with him when he started. I had been hitting my water bottles pretty regularly, and I was traveling through the high deserts of California in June. Through the deserted towns he came across, he searched for a source of water but found none that were useable. When I tried a drop or two ,it had the flower of battery acid. @CAPS1 feature was the heat. It began to mess with his mind and take toll on his body quickly. I wiped the sweat from my eyes to make sure it wasnt a mirage He worned about heatstroke and his bodys need for water throughout the entire trip. Finally, in the deserts of California, wildlife can affect you. The cyclist was using a path that nature had claimed and was not traveled often by people crossed my path and a ridiculously large snake blocked the majority of the pavement. As you can see, the cyclist was negatively afftected by the features of the setting in, Rough Road Ahead." 3 3 3 +7345 3 "The feature of the setting affected the cyclist because if there is a rough road ahead your just going to have to be able and to handle the up and downs, bumps. The author was scared that he was gonna die and that the birds were gonna pick his bones clean." 1 1 1 +7346 3 "In the story the cyclist faces many issues that could stop him from not finishing his journey. First, his water supply could cause him to become dehydrated and he could pass out. Another issue is the hot weather in June, which could cause him to a heat stroke and literally die. The rough terrain could stop him from finishing the trip because he could pop a bike tire and would have to walk. The cyclist faces many problems that could end his trip and maybe even life, but pushs through and survives." 1 1 1 +7347 3 "The features of the setting affect the cyclist in many ways. One way is that the cool pines keep the sun from beating down on him and from getting heatstroke. Another way is that the towns he he went to had either bad as or no water and he was becoming dehydrated. The heat from the sun was make him feel funny, he was hoping he wasn't seeing mirages." 1 1 1 +7348 3 The cyclist does most really like the setting of the road. Its messing up big time 0 0 0 +7349 3 "The setting is a desert in California in June, this affects the cyclist because it is very hot and he only has a couple drinks of water. There is no place for the cyclist stop and get more water. He says, there is no one in sight, not a building,car, or structure of any kind. As you can see that kind of setting would definetly affect the cyclist." 1 1 1 +7350 3 "Some feature on the setting that @MONTH1 have affected the cyclist was the fact that he was running out of water and when he pumped water he said he pumped with all his strenght at first a tar like substance oozed out follwed by brackish water he said the water tasted of battery acid. Also in this setting the cyclist notices a terrain change flat road then turned short hills , follwed by a snake that looked od a diamond back." 1 1 1 +7351 3 "In the essay Rough Road ahead: Do Not Exceed Posted Speed Limit. By Joe Kurmaskie. The features of the setting affect the cyclist because he was on a bike and it was hot he ran into bumpy roads, and hills. For example he says Not June miles into the next section of the road. He noticed the terrains changing. Flat land was replaced by short, rolling hills. @CAPS1 example is Wide rings of dried sweat circled my shirt, and the growing realization that he could die from heatstroke. These examples show that it was not easy and how the features affected the cyclist. In conclusion this story shows that you should never take directions from a old person, exspecially if its hot and you are riding a bike." 1 1 1 +7352 3 "The features of the setting affect the cyclist in many different ways. To start with, the terrain of the road turned from flat bumpy which caused the cyclist to have an easy trip. In the story it said, ""Rough Road ahead do not exceed posted speed limit."" Since the cyclist had to use a lot more energy on the roads and his water supply was limited, he became very thirsty when he finally say an old town ahead, he stopped and it looked like it was a bandoned he began to pump water out of the water pump and no matter how long it pumped for it looked like battery acid. The quote from the story said, ""when I tried a drop or two, it hard the flavor of battery acid, that is some features of the setting that affected the cyclist throughout his journey." 2 2 2 +7353 3 "The features of the setting affect the cyclist in this story greatly. The cyclist is cycling in a desert, ...I was travelling through the high deserts of California in June. @CAPS1 it was hot and the sun is beating down on the cyclist, the sun was beginning to beatdown... @CAPS1 it is remote and there is no one to offer help or assistance, ...it fit the traditional definition of ghost town. There are no natural water sources for the cyclist to refill his bottles of water. He might have died from dehydration. I got down on my hands and knees and worked the handle of the rusted water pump with all my strength, but only a tarlike substance oozed out. There @CAPS1 was a poisonous snake on the road which could have bit the cyclist. @CAPS1, there were hills that required more energy to get up. Since the cyclist had to use more energy to get up the hills he got more tired and thirsty." 2 2 2 +7354 3 "The features of the setting affect the cyclists attitude towards the old men. Since the cyclist listened to the old mens directions he was furious with himself. Seeing that the last attempt of direction had caused the cyclist to become nearly delicious, the setting had added severly to the problem. The beating sun and high desserts in California in the middle of June made the cyclist dehydrated and tired. When he come to a rusted water pump black tar oozed out, you can picture the cyclist as furious and anxious and of course thirsty. The rough terrain and tumble weeds had caused the cyclist to feel skeptical of his decision to follow the old mens-directions." 3 2 3 +7355 3 "The cyclist in Rough Road @CAPS1; Do Not Exceed Posted Speed Limit starts off in the serenity of an easly summer evening taking road advice from old-timers. At first when the sun was beating down on him, he didnt mind; the thoughts of Yosemite kept him determined. Later however, his determination was fading as he realized that his short cut was not so short after all. The high deserts of California in June and the terrain changed furthered his dehydration and need to find water. The emptiness of his surrounding with no one in sight, not a building, car, or structure of any kind made him focus on the horizon and tell himself that if he made it there, the hed be alright. Finally, a building came into view. The hope he got from this gave him strength to move on. Ironically it was an abandoned building. The cyclist describes it as a Welchs Grape Juice factory and bottling plant. @CAPS2 this he had lost hope and hung his head. Believing he was going to die, the cyclist got back on his bike. Driving away from the factory, he saw a sight of a fish camp and immediately regained hope. Going there, he regained his strength and learned his lesson, never take road advice from other people. " 3 3 3 +7356 3 "The setting in the reading affected the cyclist because it was hot, dry, and nothing around. Being hot was one part of the setting that affected him because he had to drink water a lot. It was dry every where around him so he couldnt stop anywhere and cool off. Also when things got hard there was nothing around but ghost towns and abandoned buildings. This is how the setting affected him." 1 2 2 +7357 3 "The features mentioned in the settings of the story made it harder for the cyclist. The lack of water during a summer in California made it very uncomfortable for the cyclist to go through the deserts. The worst part was when he tried to suck the pebbles to cycle his saliva in his mouth, he ended up swallowing one." 1 1 1 +7358 3 "The features of the setting affect the cyclist because his body has a hard time adjusting to his life threating situation. The neat and desert atmosphere are draining his body of water, @CAPS1 he needs to keep pedaling on. Also, the terrain is stripped of water, so he doesn't have anything to refuel with. " 1 1 1 +7359 3 I think that if we where to inforce the punishments on those who speed that there wuold be less car crashes really those that have bad road rage shuold be in anger management 0 0 0 +7360 3 "There were many features that affected the cyclist. One feature included the first ghost town that he come by. but on that morning it fit the traditional definition of a ghost town. This had to affect him a little because he knows now that the people who told him the shortcut havent peen out for awhile. Another feature that affected the cyclist was the lack of water in a ""desert in California in June."" The cyclist now knows that it might be awhile before he gets any more water. The hills also had an affect on the cyclist because he knew now he was going to have to work really hard to get into the next town, without drinking much water. The Welchs building also had an affect on him since it was abandoned and no drinks were left. In conclusion, the cyclist had to battle many features on his way to the National Park." 2 2 2 +7361 3 "The cyclist see his journey affect by a succesion of events that will make his journey trave?? every time more difficul and difficult. One of the first errors his makes is take advice from people that have no clue of where there are at. @CAPS1 (I shouldn't have done was let them have a peek at my map.) The temperature of the desert also influenced him (I was travelling through high desert of California). The cyclist also finds his' self with a combination of emotions at times he thinks he is going to past away and at times he believes he will be fine. (@CAPS1 @NUM1) As i stumbled into a rather modern bathroom and drunk deeply from the sink, I thought i had a over whelming wigs to seek Gary." 2 3 3 +7362 3 "The features of the start affected the cyclist by going listing to so dyhrate who have not left town pours in this instead of following his name got him going in the middle like the start sites on the sreach make right site at the ??.???? the what he steal inside that ""I reached myself riht then that I'd always asked to it????????? find on the last ?? is the bitter. this is said ?? he did not ?? the sight and felt he walking not make, fall on the ?? and get dust stick. Did he ??? want to happen gian so be ?? to always look at the map. " 1 2 2 +7363 3 "In the story, The man has a very hard time trying to get to some water. He faces many obsticales in the story. For example, he has gone about @NUM1 miles without water. Also, their are a lot of hills and turns withen the story which slow him down He is having a hard time getting to water because of many obsticals" 1 1 1 +7364 3 "In the story the cyclist is on a bike ride to @LOCATION1. He has a new map is doing very well, until he asks these old men the best way to get there taking less time and by getting these faster a.k.a a short at. He takes there directions and feels good abut it. But soon things change, he experiences new terrain and it becomes much harder. The type of setting that he faces are steep hills, speed limits that he cant exceed, dry hot temperature, and he has no water. All these features combine together to make the situation worse. While he is experiencing these things he feels like he is going to die and feels like giving up. But eventually he finds someone and doesnt ask for directions. So the lession is dont take directions from a stranger unless your willing to face the unexpected. " 3 2 3 +7365 3 "The features affected the cyclist because of the rough roads. This affected him because it slowed him down, I know this because in the story it said Rough Road Ahead Do not Exceed Posted speed Limit. which this means slow down or you will have an accident. Another feature has it was hot which means he was losing water because it either evaporated or he was drinking it. I know this because it said The water bottles contained water a few tantalizing sips which means it was few left." 2 1 2 +7366 3 "The settings affect the cyclist in many ways on the way to Yosemite. Well for one when he took the shortcut, one thing that already made it difficult was that it was June, and hes out in the desert. Also it says how he went to a couple towns that were deserted so there was no way to replenish his water. It says, I pumped that handle for several minutes, but the water wouldnt cool down. When I tried a drop or two, it had the flavor of battery acid. @CAPS1 thing about his setting that changed was the hills. But once he came to a bait shop, the old man asks him if he knows the best way to get to Yosemite, and he responds, yes- sir: I own a very good map. @CAPS2 by this hes understood that the best way to travel anywhere is the path or road he knows because hell know what to expect. This is how the setting changed." 3 2 3 +7367 3 The features of the setting affect the cyclist in many ways. One of the ways are that it is affecting him is that the discription of it makes it seem hotter then what it really is. He says neihbor hood of two hundred degrees. He is saying that it is really hot. The features of the setting affected him because I mad it seem hoter and he was taking it to far. 1 1 1 +7368 3 "In the essay the features of the setting affected the cyclist. The cyclist used words to discribe the setting like flat road and short, rolling hills, There were also more example. The way the cyclist discribed the setting gave the reader a visual picture. I think the cyclist was affected by the setting." 1 1 1 +7369 3 "In the story Do Not Exceed Posted Speed Limit by Joe Kurmaskie, depending how the main character feels, thats what the setting is like. When he got the next town and left he was feeling well because nothing was going wrong. The setting was very tranquil. The narrator says, The cool pines and rushing rivers of Yosemite had my name written all over them(Kurmaskie). This setting was very happy and pleasant just like the narrators mood." 1 1 1 +7370 3 "Some things that affected the cyclist was the terrain changing into a flat road that was replace by short, rolling hills. Then he came to a rough road. Another obstacle from the cyclist was the tar-like substance that came out the rusted water pump followed by brackish water feeling somewhere of @NUM1 hundred degrees. Everytime he pumped it wouldnt cool down and the water tasted like battery acid. He was hitting his water bottle regularly that is why he needed new water. The cyclist was travelling through the high deserts of California and the sun was starting to beat down so he was dehydrated. The snake blocked the pavement in front of him that looked like diamond back. " 2 2 2 +7371 3 "The features of the setting affect the cyclist in the the short story Do Not Exceed Posted Speed Limit The getting of the story is, a reservoir campground outside of @CAPS1, California during the early summer. Being the early summer in souther California, the temperatures are going to be hot. And the main character, who is a cyclist and is doing a lot of physical activity, is a going to sweat a lots. The temperature and excessive sweating cause the cyclist to drink a lot of water. The water runs out and we are now it our conflict. The setting also reads the main character to his resolution of the conflict. Being by a reserveir, fishing is going to be a popular activity. A bait and tackle shop would be the perfect business to have, since there who is at bait and tackle shop, the cyclist could go inside a quinch his thirst. Therefore, the setting of the story affect affects the conflict and the solution." 3 3 3 +7372 3 "The cyclist decided to ride to Yosemite National Park during a hot summer day in California. His first instincts was to use a perfectly good map that was up to date. Then he started having a conversation with some old me who decided that they would tell him a short cut they took back in the day. The cyclist decided to take the olds mens short cut through the desert with one meschy bottle of water. It was really hot out side and the sun was scorging down on his back while he was riding his bike. This made him hotter than he ??? and there was no shade are place for him to top and get some water. This made the trip harder for him because now he was focused on finding water and not on his ride. The settings of the cause effected the cyclist in many ways he was not prepared for the route, and the route he took was not biker friendly. If he would have took the route that was on the map then he would have know where he was and his ride would not have been affected by thoughts of slowing down to put rocks in the moth to reserve water or thoughts of finding water he would " 3 3 3 +7373 3 "The cyclist a had rough time. The elements were against him. It was dry and hot and he had no water. In the text it says,""The water bottles contained only a few tantalizing sips. ""This shows that he had hardly any water, and what he did have would only make him thirster. ""@CAPS1 weeds crossed my path and a ridiculously large snake. ""It was obviously not and the quote maker you visualize a desert or colorado. The man was no one in sight not a building, car, or structure of any kind. He was saving up his energy and his water. He was starting to go a little crazy. The hills were killer for him, in the text it says ""over one long, crippling hill."" This show you now rough the conditions were because he told us in the begining that he is a cyclist. The biker hell a very rough time and the setting definity effects this. " 2 3 3 +7374 3 "The wether can change the corse of action a cyclist will take. If it is cold out side then the cyclist will bring beveyer cloths if its. Hoter out side he would most likly bring lighter clothes. If he was riding farther hed bring more supplys like water and food If he was going on a short rid then he wouldnt bring so much stuff. The way the wether is changes the way a person will prepaire," 1 1 1 +7375 3 "In the story Rough Road Ahead: Do Not Exceed Speed limit by Joe Kurmaskie the different aspects of the setting effect the cyclist in several ways. When he first begins he doesnt even notice how hot it is and he says, the ran was beginning to beat down, but I barely noticed it. His mood starts to change very quickly. Soon he drinks most of his water of becomes increasingly tired. He finds a water pump which irriates him when he realize the water tastes like battery acid. As he continues he sees a snake which he could swear was a diamond back so he slowly goes by out. When he notices a factory he uses his last bit of energy to reach it only to be discouraged when he finds it abandone. His spirits finally rise when he finds a store and drinks a good amount of water." 2 2 2 +7376 3 "Multiple parts of the setting effect the cyclist; When he arrives in a town with a water pump, but this pump doesnt have good water, when I tried a drop or two, it had the flavor of battery acid (Kurmaskie @NUM1). This part of terrain shows its effect. When he becomes very dehydrated, in my dehydrated state (kurmaskie @NUM1). Another part of the setting that effected the cyclist was when he arrived at the juice factory and it was closed which depressed him." 2 2 2 +7377 3 "The cyclist in this short story was greatly affected by the setting. He was riding in a desert which is very hot, with little civilization to help him. Also the rode that was driving on was not very smooth which gave him troubles. The wildlife also had an impact on him. He once went by a big snake that he cautiously had to ride around. Also he thought he was going to die and that the birds were going to pick him off. The desert itself was what really got to hm. Deserts dont have much water which is what he needed and he couldnt find a town to stop at, at least one with some people any way. So the setting in which the main character was riding had a huge effect on him." 2 2 2 +7378 3 "The cyclist was exhausted as he was going up hill. The setting of story affects the cyclist alot. This is because in California it is really good to be cycling. The weather is warm and perfect for a town. It had one ramshackle shed, several rusty pumps and a coral that could not hold in the lamest mule greeted him.Besides that, after riding twenty miles ahead, there was a terrain changing. Flat road was replaced by short rolling hills. After he crested the first few of these, a large highway sign jumped out at him. The rough road was the time where he had to be really careful and not to exceed the speed limit." 2 1 2 +7379 3 "The setting of the essay greatly affected the cyclist. These settings discourage him, although he tries to keep hope. Seeing dry desert, hills begin to heighten, nothing man-made is in sight. These subconsciously affect the cyclist and his growth of thirst. To one point the cyclists original objective became invalidated for his thirst pangs and exhaustion." 1 2 2 +7380 3 "Being a cyclist is not as easy as it sounds. Sure riding a bike might be easy, but being a cyclist is so much more difficult. Cyclist have many obsticles to over come while riding. One obstacle would be a rough terrain. Cyclist are used to riding on smooth, paved roads. Going off road or riding on a dirt road might be a challenge. In the short story Do Exceed posted Speed Limit, by Joe Kurmaskie also has another example for an obsticle cyclist have to be careful of, and that is running out of water, I eased past, trying to keep by balance in my dehydrated state (@CAPS1 @NUM1). The cyclist went on in telling how he needed to try to keep his balance but it was hard because he was dehydrated, and balancing is important when riding a bike. In conclusion when it comes to as easy as riding a bike, you need to take precaution in what might lie ahead." 2 2 2 +7381 3 "The setting affects the cyclist in many ways. It makes him feel hopeful, determined, alone, and completely exhausted. The desert- like terrain leaves him feeling very tired and thirsty. The bumpy road is hard to pedal over, and the endless stretches of land make him feel as if the next town is years away. While travelling, the cyclist recalls At some point, tumbleweeds crossed my path and a ridiculously large snake . blocked the majority of the pavement in front of me (Kurmaskie, @NUM1).The tumbleweeds are a symbol of dry desert death. They remind the cyclist he is completely alone in a vast stretch of sand and rocks. Were the snake in the path to poison him hed not only under the beaty sun until some other unfortunate cyclist found him. However, later on when he sees the sign for Gary and Wilbers fish camp, the hope is restored back to him. He is yet again determined because waiting somewhere near is the water he needs to keep him alive. In the end, the setting helped him to safely feel the hope deep inside of him." 3 3 3 +7382 3 "The feateres of the setting affect the cyclist in many ways. For example ""not two mlles into this next section of the ride, I noticed the terrain changin. Flat road was replaced by short, rolling hills. ""This affected the cyclist because he had to pedal harder to go up the hills and he got short of breath due to this. Another example is, ""At some point, tumbleweeds crossed my path and a rediculously large snake-it really did look like a diamondback-blocked the majority of the pavement in front of me. This affected the cyclist because he had to wait for the snake to move so it didnt bite him while he crossed it. One last example is, ""As I stumbled into a rather modem bathroom and drank deeply from the sink, I had an overwhelming urge to seek out @PERSON1 and Wilber This had an affect on the cyclist because he was now hapy to have water and have reached his destination." 2 2 2 +7383 3 "The features of the setting affected the cyclist because he saw short, rolling hills, tumbleweeds and a ridiculously large shake, and he thought that he was not getting anywhere." 1 1 1 +7384 3 "Each area the author entered changed what he felt and experienced. At first, he is lent courage by his surroundings. When he passes through the first town, abandoned and empty, he is still confidant he can go on sparred by the lush green trees and the cool rivers around him that belied the hot sun overhead. They are basically the reason he continued to go on. Later on during his trek through the desolated empty desert, his bleak surroundings make him feel hopelessness as well as despair. Even in the small details, such as the ghost town or the pump, this is ploven, as the ghost town brings him the first vestige of despair, and the useless pump only amplifys it. The scenario and scenery reflect and alter the authors mood throughout the story." 1 1 1 +7385 3 The rider was affected by two men giving him wrong directions. The rider followed their advice instead of taking the right way he ended up taking the long way. He was getting very thribiy. He also came face to face with a snake. Then he finally found the nearest town in got help. 1 1 1 +7386 3 Some features of the setting that affect the cyclist are. The hills that the cyclisit has to go over and the heat. The heat is making the cyclist sweat alot so he is loosing fluids and he starts to got dyhydrated. The hills are making him have to work harder and getting more tired. 1 1 1 +7387 3 "The features of the setting affected the cyclist in many ways. They affected his confidence, his energy, and his determination. In the beginning of the essay the cyclist is very confident. This is show when he says. The cool pined and rushing rivers of yosemite has my name written all over them. This shows confidence because he knows he can make it to yosemite.When he runs out of water he begins to lose confidence and thinks he way die. Since he ran out of water because of the heat, his energy is also dropped. You know hes running out of water when he says.The water bottle contained only a few tantalizing sips. @CAPS1, after lose of water and confidence; he actually had higher determination to make it to Yosemite. This is human nature because our bodies when into survivor mode and become determined to survive. As you can see the cyclist was affected in many ways by the features of the setting." 3 2 3 +7388 3 "Many things that the author talks about in the story affect him: One example in the oldmen that give him advice. They tell him that they know a great shortcut which turns into the authors hardest ride ever. Another example is: the heat, the location, time of day, and time of the year. In California, in @DATE1 in the dessert will give you lots of heat. In order to beat this heat you need lots of water which is one of his biggest problems. He runs out of water. Another hindering thing he discovers is the abandoned welches grape juice building where he sees a picture of a boy drinking a refreshing glass of grape juice. All these combined gave the author a hard time but in the end he found a bait and tackle shop where he was saved" 2 2 2 +7389 3 "In the story Rough Road Ahead Do not exceed posted speeed limit, the cyclist is affected by features of the setting. In the story it says The sun was beginning to beat down. This quote means that it was getting hotter and this was going to make it harder for the cyclist to ride. Another quote that states that the features of the setting affects the cyclist is Flat road was replaced by short, rolling hills. This means that the cyclist is cold not only going to have to deal with the heat, but he is also going to have to side-over hill after hill. Eventhough they @MONTH1 be small, rolling hills, it still takes alot of energy out of you to ride up and down hills repeatedly. A third quote that shows the setting affecting the cyclist is I got down on my hands and knes, walking the handle of the rusted water pump with all my strength. A tar like substance oozed out, followed by brackish water feling somewhere in the neighborhood of two hundred degrees this quote means the cyclist is so desperate to get water, that he uses his small amount of strength left to try and get some water. When he finally does get some water, it first come out as an ooey substance then the water come out really hot. In conclusion, these have been examples of how the cyclist was affected by features of the setting. " 2 3 3 +7390 3 I think that the features of the setting affected the cyclist because of the sharp turns and the lonelyness it say in the text About forty miles into the pedal. I arrived at the first town. 1 1 1 +7391 3 "The features of the setting affect the cyclist greatly because there was tough terrain. The heat had affected him greatly as well. He seemed that every where he would go, he couldnt find anything, no buildings or people until he got that one town. In the story, Rough Road Ahead;Do Not Exceed Posted Speed Limit, the cyclist qoutes.At same point, tumbleweeds crossed my path and a ridiculously large snake. @CAPS1 your bike on the middle of the desert, not knowing which way to go and only seeing harsher conditions can only give you no hope .He soon almost ran out of water only made things worst.The sun beating down on him and his mind playing tricks on him also, so with the cyclist , settings had alot to do with his journey." 3 3 3 +7392 3 "The features the cyclist experianced during his ride affect his body and mind. At first the cyclist was on flat graund, drinking plenty of water and without fear. But when he came to his second town, he became ton on water. This troubled him, but he was optomistic telling himself the next town was only eighteen miles. After this the road was replaced by short, rolling hills. this started to trouble him. Dehydration started to set him and every hill was a challenge. Once out of water he sucked on pebbles and hopped it would take your mind off of thirst. When he finally made it, he was so relieved. Everything from dehydration, wich affects the body to lozing hope affected the cyclist on his ride" 3 2 3 +7393 3 "The conditions in the California desert were horrible for a cyclist. The temperature was extremely high and the humidity was very dry. The roads also had a lot of hills and when a cyclist has to use his energy in the heat to go up and down hill after hill, it can be very hard. There were also no stops to refill his water a long the way,which is bad because the neat,lack of water,and all of his energy extension leads to major dehydration.The conditions along this trip are not good for a cyclist and can be very dangerous." 2 2 2 +7394 3 The setting of the essay Rough Road Ahead: Do Not Exceed posted speed limit affected the cyclest greatly. He was riding through a desert in June. This meant that the temperature was very high. The narrator even states I could drop from heatstroke on a gorgeous day in June. @CAPS1 feature of the setting that affected him were the hills. He even calls them 1 1 1 +7395 3 The features of the setting affects the cyclist because he knows hes in the wrong area. The cyclist understand's that he should have never took that advice from them old men. So he was upset and new he should have taken his advise. The cyclist had a feeling that he wasnt supposed to take it that way he said he shouldnt have let them take a peek at his map. So the features really affect him. 1 1 1 +7396 3 "In Rough Road Ahead by Joe Kurmaskie the main character faces a lot of trouble. First people give him the wrong directions. But, worst of all he has to travel a lot of mile on a bike through extreme temperatures. Going up and down hills and pedaling really hard. He doesnt even have any cool water. As the character says, followed by brackish water feeling somewhere in the neighborhood of two hundred degrees (kurmaskie @NUM1). That kind of water didnt help him either. It didnt quench his thirst because it was so hot, he said it tasted like battery acid. But, finally he worked up his confidence and kept pedalig till he found a fish camp that had a bathroom with a sink that had cool water. Then he headed off to Yosemite and didnt take anyones advice." 3 2 3 +7397 3 The features of the setting effected the cyclist. The setting was a desert in California making it VERY hot outside. The hills were hard to climb and there were dangers all around such as poisonous snakes. Not just this was terrain hard to move around on but the path was thickest. @CAPS1 weeds crossed my path and a ridiculously large snake. This made it harder for the cyclist to reach his destination. 2 1 2 +7398 3 "In the towns that the cyclist arrived at were all ghost towns. In the text, the author said, it fit the traditional definition of a ghost town. It affected the cyclist because, with the towns being deserted, the cyclist couldnt refill hi water." 1 1 1 +7399 3 "The cyclist was motivated to get the job done. When they said only eighteen miles down the road. He thought it was going to be forever but he made it because he conserved his water ... and last kept on going, when the road turned into a rocky gravel road, he still kept on going, but it was harder on his legs and water supply." 1 1 1 +7400 3 "The condition the cyclist are in calls for a lot of preparation. The cyclist was in a hot desert area with winding road and hills. The cyclist need to have plenty of water to make it where he is going, and, as read in the story, the conditions almost caused @CAPS1 health to the man who was trying to ride through." 1 1 1 +7401 3 "Setting in Do Not Exceed Posted Speed Limit really determines how the story turns out. The setting was in deserted areas, the desert, and even roadways. In the desert, there is no water making the cyclist become dehydrated. without water, he thought he was going to die. In the road areas, the speed limits was extremly high fifty-five miles per hour. This would not be good since he is doing a water-depleting @NUM1. When he finds areas that are abandoned, these are water pumps, but the liquid that comes out @MONTH1 be water, but it tastes like battery acid. Setting can affect alot in the story. Without this setting, the story would be alot different than it is now." 3 2 3 +7402 3 "In the story Rough Road Ahead: Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the cyclist had a couple of problems turning his journey little, amount of water, tough roads, including there were no cars on the road either. It all caused a lot of difficulty for the cyclist like on page @NUM1 paragraph one the first sentence It didnt really matter. In was going to die and the birds would pick me down The elements were so tough on the cyclist that he or she was going to going to give hope. But luckly in the end the cyclist found a place to stop and get water with directions." 1 2 2 +7403 3 "The features of the setting affect the cyclist. He is trying to get water but when he tried the pump, a tarlike substance oozed out, followed by brackish water feeling somewhere in the neighborhood of two hundred degrees. The cyclist doesnt have any water so it is difficult to go on. He could suffer from heat exhaustion. As he came to the next town, he found, the building - abandoned years earlier, had been a Welchs Grape Juice Factory and bottling plant. He is still thinking of getting to the next town to get something to drink. That is how the features of the setting affect the cyclist." 2 1 2 +7404 3 "In the story there were many features of the setting tha affected the cyclist. One that had the greatest impact was that it was dry and hot, and that the terrain was very rough in the desert. Being that it was dry and hot made his ride hard. For example, the heat caused him to get dehydrated on his journey and begin to feel signs of heatstroke. The terrain caused an even bigger dilema. For example, in the story him riding through that terrain causes him to get tired and become even more dehydrated than he already is. " 2 2 2 +7405 3 "The features of the setting affect the cyclist a lot. First is the emptiness, the feeling that he is all alone. Nor a car, person or building in sight. The fact that if something were to happen then there would be no way of telling anyone. That it would be along while before anyone would be able to find him. Nor that might ecase some, But I think dalved him even more. It gave him that extra boost of energy that seems to have come out of nowhere. Then there is the type of animal. The desert environment is very, unforgiving. The sun beats down like your only person on the plannet. The lack of water the food that it hasnt rained in decades. The never ending, @CAPS1 road. The ups and downs and all the animals that await him. The fact that if he stops at all, ever, then a snake could easily bite him and that would be the end of it. These extreme conditions and the harsh environment that is explained in the text has alot to do with the cyclist and affects him a great deal. " 2 3 3 +7406 3 The setting of this short story affects the cyclist by making him dehydrated and dies. Also in the setting he found the abandon factory which makes him feel hopeless. If the setting was elsewhere then this setting he would have felt different as he didnt meet the people of the reserve he could have been in the better roads than the old roads he was in 1 1 1 +7407 3 "The countries of the setting that had the most effect on the cyclist were the deserts and hills. The author tells us first of his depleting water supply as he journeys through the high deserts of California in June. The hills had a major effect on him because the intensive host that any desert contains, with this heat, his limited water, and the fact that it was June. Im sure the author was most a happy person traveling within his intensive journey. Another misfortune that the author explains is the touring changing. That road was replaced by a host rolling hills. With my own experience, I know these cannot be a worse kind. Tall steep hills are a difficult climb, but your a living house the luxurious most to cool. In his mind too with, the authors Short, rolling hills, the climb gets more miserable with every hill, and the coast down the other side barely cools your bare skin, leaving your thiving soul to continue in this dep pain. Im sure the cyclist was experiencing a burned out spirit after just a few of those deadly hills. " 3 3 3 +7408 3 "The features of the setting have affected the cyclist in Do not exceed posted speed limit"" greatly, first he statrs off happy because hes going to Yosemite national park and hed gotten short cut advice that would make his trip shorter. ""He rode into the morning with strong legs, Then he got to the first stop. It looked like a buzzing town at one time, but now a ghost town. So he kept on with plenty of water and thought he could make it to the next stop. The next stop was an old abandoned gas station where the only water was @NUM1. He was hitting the water pretty regular and the hot sun was beating down on him. The next terrain changed he thought he would die & have the vultures pick his bones because he took advice from old timers, then became to his next stop which seemed to be an old welchs grape juice factory. He thought he would die of thirst but he kept on with little water a hot sun. next the hills came & he paced himself a little time, then he finally came to a modern looking place with cool running water with an old man who gave him directions that he gladly took. After that he been through asuring himself he would die he was relieved to see the old mans there he would forever on listen to their advice because he made it." 1 1 1 +7409 3 "The features of the setting affect the cyclist because someone travelling a good distance in California during June will be hot. If the cyclist doesnt have enough water to supply himself for if he gets lost then the features of the setting are very crucial. Not having enough water can cause someone to dehydrate, which does happen to the cyclist in the essay. I eased past, trying to keep my balance in my dehydrated state. This statement proves that the cyclist wasnt a good state to be lost when the sun is blazing down on him. Also, when you are dehydrated and tired you @MONTH1 start to see things that arent there, but you want to see those things. I wiped the sweat from my eyes to make sure it wasnt a mirage, and tried not to get too excited. It was a good decision that the cyclist didnt get his hopes up about a building that might not be there overall, features of a setting for a cyclist can cause anything to happen, so be careful." 2 2 2 +7410 3 "The features of the setting extremely affect the adjust in the ride to the meet town. It was bad enough that the adjust the out of water but on top of that by faced, rolling wills, makes and hard road condition all of these setting played a huge will in the cyclist puformance, ""it motued the terrain changing. that way was replaced by that rolling hills."" He also says ""tumbleweed around my matt and a includesouly change snake it really did look like a demand luck blocked the majority of the movement in front of me. These setting made it difficult for the adjust to reform because the hills snakes and tumbleweed disturbed the adjust to advanced in the ride. He ran out of water no it was hard to reduce up will and the night of a deadly snake made the adjust named and worked to the difficulty of pufornenance for the cyclist" 2 3 3 +7411 3 The features of the setting affect the cyclist was like saying you are old and that you know nothing at all. But it is not true. It means you are older and that your information @MONTH1 not be correct for example in the essay when he was on his way to the town he learned to use his map instead of a guys opinion because the guy was wrong. 1 1 1 +7412 3 The first town the cyclist came to was like a ghost town because there was nobody was there. The next town wasnt any better because it was @NUM1 miles down the road. The cyclist faced some problems while on the journey. Some of these problems included snakes - The fact that he wos running out of water- the hill-and the condition of the road. 2 2 2 +7413 3 "The features of the setting in DO NOT EXCEED POSTED SPEED LIMIT affect the cyclist in a negative way. The terrain goes from being very mild to rough and rolling. Considering that the author does not know the layout of this terrain very well, he begins to struggle. The author is very unsure of where to go and begins encountering obstacles such as, tumbleweed, snakes and lack of water. The fact that the author is running out of water, makes continuing on a very stressful. He is worried that he will die of dehydration before he ever reaches Yosemite National Park. Finally, with much strength and determination, he reaches a fish a Fish camp. He is able to fill his water supply and regain his strength before pressing on." 3 2 3 +7414 3 The features of the setting affect the cyclist because he is in a hot of dry place and has no water. He is pedaling up hills and that makes him even more tired. The dude is probably dehydrated and his conditions are getting worse! 1 1 1 +7415 3 "The features of the settings affects the cyclist a lot in the passage called Rough Road Ahead: Do not Exceed Posted Speed Limit. Cyclist are in very good physical shape. They can cycle for along time; however, weather can affect the cyclist. This happened in the passage. The cyclist was determined and confident he could make this journey. I would conserve my water and go inward for an hour or so- a test of my inner spirit. Even though he had confidence the features of the setting affected the cyclist. Tumbleweeds crossed my path and a ridiculously large snake.. The water bottles contained only a few tantalizing sips. The cyclist was tired and exhausted. The weather and terrain had worn him down. The weather can change my level of ability sometimes. I love to play basketball outside. When it is hot and humid out I cant play as long. The features of a setting can clearly affect people." 3 2 3 +7416 3 "During this bikers adventure heat and lack of water affect him. In this short story when the cyclist feels lost he says I was traveling through the high deserts of California in June This suggests that the rider was faced with the extreme heat of the desert during his ride. He also says The water bottles contained only a few tantilizing sips. This quote shows that not only was he faced with the heat, but also with lack of water. These facts and quotes show the clear threats this biker faced on his long bike-ride." 2 2 2 +7417 3 "The settings affect the cyclist in more than one way. These ways are that he is running out of water, he might become dehydrated and he is unsure of the path he is on. With him running out of water, he is in real trouble. Because of the lack of water, not only might be die but he begins to see mirages. His lack of water eventually leads to dehydration and he become uneasy about things. For example; in the text it says that he staggered into the store. Because he is unsure of the path he is on, he begins to panic a little. Panicing isnt good especially considering that he is running low on water and is becoming dehydrated. Panic cant help to solve anything. The setting is in a dessert so he needs lets of water, which he runs low on. Desserts are extremly hot which causes a person to become dehydrated or die. Desserts have little shade, if any; and they have rough weather as well as rough landscape. For example, theyre landscape is mostly all hot sand. Therefore, the setting does affect the cyclist." 3 2 3 +7418 3 "The setting which is a desert in the summer affects the cyclist. For example, she caldnt go as fast, The speed limit was 55 mph. I was doing a water-depleting 12 mph, so that affected his ability to find water. The setting was also really hot, so the cyclist had a hard time getting the water he needed to keep going. For example, I pumped that handle for several minutes, but the water wouldnt cool down. @CAPS1 how the setting has got on to him, and he needs water badly. The desert setting also affects the cyclist mind. He believed he was seeing mirages and he was afraid he was going to swallow a stone because he might hit a bump. The desert setting affects the cyclist ability to function. " 2 2 2 +7419 3 "In the story Rough Road Ahead the features of the setting affect the cyclist. At points the setting mode the author feel depressed and sad and at other times, happy and joyful. For example, the cyclist was pedaling and pedaling with nothing in sight. In twenty miles he saw camp ?? a ?? that he was thirsty and had holes. When he pumped the water, no come out. These part of the setting gave the cyclist a bad affect. The cyclist gave ""teaches life can be so cruel"" He obviously had a bad effect if he thought life was being cruel At some point in the story the setting be a good affect on the reader. He is able to die of thirst when he sees a bait shop. This puts the cyclist in a good mood because he said my troubles thirst and feels he all behind me different settings in the story gave the author a different affect. " 2 3 3 +7420 3 "The setting affected the cyclist because the terrain you ride on can determine how you ride. For instance when you have hills and dry weather like they did when it said flat road was replaced by short, rolling hills The one easy terrain was now made more difficult and only added to his frustration and his dehydration from having no water. Also the heat contributed plenty and it was there the whole time. Sometimes he didnt seem to notice or feel it but it was there and it was taking energy from him: Like when it said, The sun was beginning to beat down, but I barely noticed it. He didnt know it but that took from him so he drank more water and that affected his ability to take enough to complete the ride." 3 3 3 +7421 3 "The cyclist was riding in the hot, desert. This made him thirsties and less active. The story says, ""The water bottles contained only a few tantalizing sips. Wide rings of dried sweat circled my shirt.""" 1 1 1 +7422 3 My point of view that affect a cyclist that people need to recycle sometimes people is throwing away trash can with soda in side of it people cyclist now in days some times they need to change that role my conclusion people need to save stuff to make some new things to make a good quality world of cyclist things. 0 0 0 +7423 3 The cyclist listen to the geogers. after a while he starts to get tired. After the seenery desert change he starts to get mad. He criticizes himself for accepting advice from old-timers who havent left the 2 2 2 +7424 3 "The features of the setting affect the cyclist in many ways. He always kept his head up and was determined to make it to his destination. The first problem was when he came to the fork of sorts as he put it. He needed more water, but the pumps were rusty and all he could get out of them was a tarlike substance followed by blackish water. He tested it, hoping it was better than it looked, but it wasnt. It tasted like battery acid. He was very thirsty, but had to move on, looking for another water supply. Another problem that occured was, while he was becoming dehydrated more & more by the minute and unsteady on his bike, a huge snake lay across the road. He had to slowly maneuver around it, though it was hard, he was successful and continued down the road. The third ""obstacle"" he ran into was he was so thirsty and finally had a chance for a drink, when to his dissappointment, he found an old abandoned welches grape juice factory. As nervie and upsetting as it was, he continued to move on, still determined to make it to his destination. He finally came up to a fishing supply store where he was able to take a break and get a nice drink! Even though the setting was tough, teasing, and ironic, the man made it through and still with a smile on his face." 3 3 3 +7425 3 "Features of the setting affect the cyclist because of his enduranc. The amount of time he can ride without stopping, houever long he can ride up hill, how ever many bumps he rides over, however long he can ride without a drink of water." 1 1 1 +7426 3 "The features of the setting affect the cyclist by the changes the occur while riding his bike. The cyclist began well with smily face, but then he changed because the condition of the road and the weather that was hot, also there was not any signal to show him where he was going and it was the correct way he was taking. Also, his bike flat needed to be replaced." 1 1 1 +7427 3 "The features of the setting affected the cyclist by for the roads and heat has. He has tine ling through a desert in June which made it really hot for him, @CAPS1 that the road was bumpy and that made him have to pedal harder. The @CAPS1 had to prit more effort into it because the romds here long and he had the spirit and determination to get to Yosemite. He @CAPS1 ran into a snake which told him that I am getting deeper into the desert." 2 2 2 +7428 3 "The setting of the cyclist clearly influences his mood. From the beginning to end, the outside world reflects the tormils in his head. This is evident in the beginning reservoir, empty desert, hills the Welch factory, & finally the fish camp. The reservoir is a heven, @NUM1 safe ground that contains everything the men needs. He is feeling optimistic, ready & eager to follow advice of old men. He first hits a ghost town, which is foreshadowing a dangerous future. He passes through still with a level head. He comes to a water pump that gives him battery acid. This is wher the mood shifts. He suddenly describes his setting as the high deserts of California. The sun is boiling down & water is running low. His hopes start to drop. When the flat road was replaced by short, rolling hills, it reflects the turmoil in his head. The terrain is harder the chances of his survival lessons. When he crosses a snake, it suggest even more despair. It finally climaxes at the Welch factory. How ironic, it is an abandoned juice factory. This is lost hope. When he finally arrives at the fish camp, he is relieved to be alive & is uplifted. The cyclist has made it. It is clear the setting has affected the cyclist." 3 3 3 +7429 3 "The features of the setting affect the cyclist in many ways. He is riding his bike along the road and encounters a dilema. @CAPS1 weeds crossed my path and a ridiculously large snake. Blocked the pavement in front of me. He had to stop and into by the snake which showed him down and freaked him out. He had problems with thirst already and had to deal with a snake that really did look like a diamondback. @CAPS2, he sees a building up ahead and discovers that its a walrus Grape Juice factory. He thought that is might have some water but realized it was abandoned. Relating to his thirst, before he left he grabbed some pebbles. Id read once that sucking on stones helps takes your mind off thirst by allowing what spit you have left to circulate. * @CAPS3 he came across a fishing camp and received instructions on how to go on. This affected him because he @CAPS3 got to a secure place and got proper directions and will learn from his mistake of listening to the older men at the beginning. The features of " 3 2 3 +7430 3 "The feature of the setting affect the cyclist by giving him hope that the finishing line is not far and there was nothing in sight no cars, building or stucture of any kind." 1 1 1 +7431 3 "The author was affected in many ways be the conclusion. He was tired from the blazing heat, didnt have much water, and got lost. Water simple was limiting and as he went farther and farther it seemed like thing would get worser and worser for him. A man had gave him the wrong directions and he probably hadnt been off his porch in decades the author saids." 2 2 2 +7432 3 "In the story the cyclist explains how the road goes from good to bad: An example, Rough road ahead: Do not exceed Posted Speed limit. Also the dry." 1 1 1 +7433 3 "In the story, these are many elements that affected the cyclist in his journey.The first features of the setting that affects him is the old water pump, which did not work, and when it did the water from it lasted horrible. The next obstacles on his journey was rough terrain. ""Flat road was replaced by short rolling hills,"" was how he described it. When the narrator finally finds a building, it turns out to be abandoned. Eventually he finds a town and rest after his long journey, and learns his lesson from before not to take advice from people he doesnt know." 2 2 2 +7434 3 "Well the features were rough desert like features. For a cyclist this terrain is difficult. For example the lack of water, and the battery acid flavor. These affected the cyclist in a major way." 1 1 1 +7435 3 "'Not two miles into this next section of the ride, I noticed the terrian changing. Flat road was replaced by short, rolling hills'' (Kurmaskie @NUM1). When the cyclist realized the terrain was becoming difficulty he become more ignorant and hopeless. ''Wide rings of dried sweat circled my shirt; and the growing realization that I could drop from heatstroke on a gorgeous day in June simply because I listened to some gentlemen who hadn't been off their porch in decades caused me to laugh. it was a sad, hopeless laugh'' (@NUM1). He wasn't goig to die, die but even though he was struggling, he made a big deal out of it. Unfortunately, the man lived. He would live on, telling people not to listen to old men. ''Never accept travel advice from a collection of old timerd who haven't left the confines of their porches since carter was in office'' (@NUM3). He was on a long, hot raod, and he started taking stabs at the old men ''I made a mental note to change that paragraph'' (@NUM4) The man was not forced to take direction from the old man. In his selfishness to cut back thos trip of only a few rough terrain, heat, and dehydration caused him to be hopeless,angry, and he felt sorry for himself." 3 3 3 +7436 3 "The features of the setting affect the cyclist in many ways. One way is that the cyclist is traveling through the high deserts of California in June. Another affect said in the story was that the cyclist made it to a town where the water pump was all rusted and with all his strength, he worked the handle and got a tarlike substance followed by brackish water which he couldnt drink. Also , the cyclist had been hitting his water bottles regularly. Lastly, the old-timers said the towns would be close when really they were far apart." 2 2 2 +7437 3 "There are many things that can affect a cyclist's journey. This cyclist seemed to have bad wick. He starts off mentioning that he is planning a trip to Yosemite and the men that hear this give him a tip. The cyclist is pretty confident in what they tell him, so he follows their suggestions. He ends up getting lost. The cyclist is also travelling in the high deserts of California in June. That means that he is travelling in summer with dry air. When he gets to the first town he sees, he can it get the water he needs to rehydrate his body. He also runs into a snake while travelling through the desert, which slows him down. Because its hot, and hes tired, he begins to see mirages that affect him. All of these features cause the cyclists to take one long, tiring journey through the desert. These features also taught him the lesson to not take advise from old men who have not left their porch because their information @MONTH1 be out of date." 2 2 2 +7438 3 Well the setting was the lil boy was on the bike and he meets this old man and the man toke him a short cut. So he took dis road and I guess something went wrong. 1 1 1 +7439 3 "In the Rough Road Ahead: Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the features of the setting affect the main characters, the cyclist. After he first journied from the house where he met the old men, he rode over much flat desert terrain, where the sun beat down and dehydrated him. Soon, though the terrain changed. Flat road was replaced by short, rolling hills. This tests his endurance even more as he has to maneuver down the hills while dehydrated and ready to collapse from exhaustion." 2 2 2 +7440 3 "Hot, @CAPS1, @CAPS2-all are the features of the setting that affect the cyclist. First, the hot days with not a lot of water to drink. He will get dehydrated. Also, there is no one around to help him if he gets lost. Joe Kurmaskie explains there was no one in sight, not a building, car, or structur of any kind. Finally the creature was a large snake that came along on road. So he had to move around it." 2 2 2 +7441 3 "Seting is one of the most important neds for a cyclist if the terrein or weather are bad, the hotter it is for a cylist its ?? ??" 1 1 1 +7442 3 "The The features of the setting effect the cyclist because the cyclist @CAPS1 challenging porblem face by the author. Forexample, I nottice the terrain changing. Flat road was replaced by short, rolling hills. After I had erected the first few things, a large highway. Thats shows when he arrived, the road does not good and also large highway high of jumped." 1 1 1 +7443 3 "THE FEATURES OF THE SETTING AFFECT THE CYCLIST BY IT BEING SO HOT OUTSIDE THAT HE COULD HAVE HAD PASSED OUT AND DIED. ALSO HE SAW A SNAKE THAT SCARED HIM TO DEATH BUT HE PASSED THE SNAKE. ALSO HE SAW A BUILDING THAT COULD PROBABLY HELP HIM BUT IT WAS ABANDONED,IT WAS A WELCH FACTORY THEN AS HE RUNS FURTHER DOWN HE SAW A FISH PLACE AND WENT TO THE BATHROOM TO GET SOME WATER then somebody asked him where he was going and they tined totzy him but he still had his map so he decided that he was going to use it instead of listening to other people." 2 3 3 +7444 3 "In the story Rough Road Ahead a cyclist takes some out of rate information from a couple of old guys as he went along following there directions he found out that there directions were out of rate and at points dangerous. Also the setting didnt help because he was in a desert with ghost towns and it was very hot it didnt help him believe he was going to make it out alive. For example in the story when he enters the fork in the road it says he found several rusty pumps, and one ramshackle shed. This probably didnt help him because he didnt have alot of water left and it was really hot and he was losing confidence in himslef that he went get out and there were rusty pumps so he couldnt get any water that was good. Also in the story it says that There was no one in sight, not a bulding, car, or structure of any kind and that setting affected him because in this part in the story he has cycled for a while and he has no water left and he is getting very exhausted a almost has no energy. Also it decreased his hopes because it says there wasnt a building, or a car anything so it was pretty, much a empty dessert that he was stuck in and he thought he wouldnt setent of the dessert alive. In conclusion in the story Rough road ahead the setting in the story didnt help the cyclist in his hope or confiendce of setting out because the setting was very abanded and also it was very hot and it didnt help that he was in a desert." 3 3 3 +7445 3 "Well since the cyclist is in a desert and out of mother he is probably not going to be happy. The ""ghost towns"" aren't really a boost of confidence either. The rugged hills made him angry too. The heat affected him the most." 1 1 1 +7447 3 "The features of the land affect the cyclist in the many ways. For example, the first two buildings that he came to were abandond so he could not get any food or water. Also, he noticed that the terrain was changing from flat to rolling hills and this will put more strain on his legs. Finally, the land was hot and dry wich was making him dehidrated. This is how the features of the land affected the cyclist. " 1 1 1 +7448 3 In this story the setting affects the cyclist in many ways. He tries to get directions but the people he asked really didnt know what they were talking about. Thats why you have to be careful on who you ask. Then he needs a drink but that dosent work out to well because the water ends up tasting like battery acid. Then the cyclist begins to be on his way again and finds same difficulty in the road. The same difficulty in the road. The road is in bad condition and must do slower then the speed limit. At this point it felt like he was gonna die. Lucky he found a bathroom and drank from the sink. 2 2 2 +7449 3 "The features of the setting affect the cyclist in a few ways. Early in the essay, the syclist states he enjoyed the serenity of an early-summer evening and some lively conversation with these old codgers. The cyclist was enjoying himself and the atmosphere, but then the mood changed quickly to doubt when he didn't listen to the collection of old-timers who havent left the confines of their porches since Carter was in office and his depleting water source quickly became a cause for concern. Doubt was soon followed by @CAPS1 when he saw the sign for Gary and Wilbers Fish camp and was able to get a drink from the bathroom foucets @CAPS1 was then followed by satisfaction when he promised himself right then that he'd always stick to [the very good map] in the future. " 2 3 3 +7450 3 "The setting had a bad affect on the author in many ways. One reason is that the heat of the setting caused the author become dehydrated. Dehydration is when your body begins to shut down due to lack of water. The setting also affected him by draining his confidence and making him seek out water. I hung my head, means that he was depressed. This proves that no matter who or what you follow there is always a possibility of death from any circumstances. Therefore this is how the author was affected by the setting he was biking @CAPS1." 2 2 2 +7451 3 I think the settings made it little more challenging to not letting give up also. Also shows that you do better in life when challenged. 1 1 1 +7452 3 "The setting affects the cyclist because it is in a warm dry climate, causing him to sweat profusely, and requiring like to drink more water. When no one else was around, it is more difficult for him to continue, if theres a chance that he is on the wrong path, and no body available to tell him otherwise. With only abandoned buildings, if any, water was unavailable, which made the journey more tiring and physically straining. If the setting were different, this story would not have been as traumatic." 2 2 2 +7453 3 "THERE ARE VAST FEATURES IN THE SETTING THAT AFFECTS THE CYCLIST. IN SEVERAL WAYS ONE FEATURE WOULD BE THE SUN BEGINNING TO HEAT DOWN, AS THAT MADE THE CYCLIST HOT AND THIRSTY. THE THIRSTY-NESS REDUFROM HIM TO USE HIS LIMITED SUPPLY OF WATER. SO THE SUN WAS ABLE TO EFFECT HIM A COUPLE OF WAYS. ANOTHER FEATURE THAT CAUSED SOME PROBLEMS FOR THE CYCLIST WERE THE RUN DOWN GHOST TOWNS THAT CONSISTS OF RAM-SHACKLE SHEDS AND SEVERAL RUSTY PUMPS. THESE FEATURES LED THE CYCLIST TO FEEL HOPELESSNESS, AS WELL AS THE PROBLEM THAT THEY DINT HAVE ANY WATCH FOR THEM TO FEEL UP WITH AS HE BECAME DEHYDRATED. OBSTACLES SUCH AS TUMBLEWEEDS AND PAVEMENT BLOCKING SNAKES ALSO PLAYS A ROLE IN AFFECTING THE CYCLISTS AS HE MOVE ON THE @NUM1 ROAD ONLY DOING 12 MPH. ONE FINAL, AND LAST OBSTACLE WAS THE TERRAIN HE RODE ON. THE OBSTACLE BEING A LONG CROPPING HILL, THIS MADE THE CYCLIST EXHAUSTED, AS HE USES MUCH ENERGY TO SUMMER THE HELL, HE WAS ??? ???? ??? ???" 3 2 3 +7454 3 "Topic: The features of the setting affect the cyclist. The features of the setting affect a cyclist or the major problem that a cyclist encounter are some rough road, inspection of the bike, putting on necessary equipment, do not exceed posted speed limit For a cyclist to be doing all this I don think there is going to be any features of the setting affect a cyclist. For a cyclist to maintaining the speed limit of @NUM1 or a water-depleting @NUM2: sometimes life can feel so cruel. At some point, tumbleweeds are caused by too much of speed but for them to be using the necessary equipment they wont get seriously injured. Forget that old saying about never taking candy from strangers. No, a better piece of advice for the solo cyclist would be Never accept to" 1 1 1 +7455 3 "The features of the setting really affected the cyclist. The author wrote of rough terrain and isolation. Flat roads was replaced by short, rolling hills tumbleweeds crossed my path and a ridiculously large snake. After reading this information and the descriptions. I inferred that the author was alone in the desert with awful conditions. I go inferal a tone of resentment also. He seemed to wish he hadnt taken the shortcut that landed him in the desert. The hot weather was another factor that affected the author, trying to keep my balance in a dehydrated state. He seems to have not really planned how long the ride would be and how to conserve water. The rough terrain desolation and hot temperatures seemed to have affected the cyclist / author." 2 3 3 +7456 3 "The features of the setting that most affected the cyclist were the water pump, the Welchs Factory, and the fish camp. The pump affected him because he was very thirsty, and at first he thought he would have a chance to get water, he was excited and he pumped the water out, as he wrote, with all my strength. @CAPS1 he had to go on thirsty, (a very risky thing to do while cycling) because it had the flavor of battery acid. Next, the Welchs Factory affected him by killing his spirits. He was already feeling bad from the lack of water, but seeing the mocking, ironic image of a sandblasted picture of a young boy pouring a refreshing glass of juice, made him feel worse. It reflected his own desperate situation, all refreshments in the past, there was nothing left. I had a similar experience once. I am alergic to peanuts. One time, on a long car trip, I had slept through lunch, so I was starving, and we were on a long stretch of highway with no buildings to be seen. After two hours, we finally saw a sign for a nearby restaurant: @CAPS2s peanut shade. I nearly cried. The last thing that affected the cyclist was the fish camp. It saved his life. He arrived and ""drank deeply from the sinle. He was so happy that he wanted to kiss the owners of the camp. This also relates to the car trip I mentioned, because after hours of hunger, we found a very good sush : bar, and sush: is my favorite food." 3 3 3 +7457 3 The story that I am doing the most was going to talk about what happen in the story I was not shore but the name of the story sound prety good if I was in the story I not be good becaus the story is really crazy I would be realy good two start and right 0 0 0 +7458 3 "In the setting they are in lodi, California. That is a part of the desert. The desert effects the cyclist real bad. For one it is really hot. Two the heat is making him thirsty and is running out of his water. Then last he is near no towns so he cant get anymore water, so the setting does effect the cyclist." 2 1 2 +7459 3 "The cyclist is most affected by e heat. He is exerting all his energy and will to get to Yosemite. The hot sun and lack of water makes him very tired and causes him to use his energy inefficiently. At one point, he has to make sure the building is a mirage. It is so hot his mind could be playing tricks on him." 1 1 1 +7460 3 The conditions that the cyclist was in was very horid as he continued on his ride he got hotter and hotter hoping to find water after he finished of his last bit. Taking advices from an old man was and his last decision he made. 1 1 1 +7461 3 "The features of the setting affect the cyclist because sometimes, it made him lose some courage and optimism. and the growing realization that I could drop from a heatstroke on a gorgeous day This is an example of how he lost courage. I wanted to be brave and be strong. But the hot day and all the sweat made the author feel weak. I was going to die and the birds would pick me clean, leaving only some expensive outdoor gear This is an example of how the author lost some optimism. He didnt want to die, but he kept telling himself that he was going to , he should have thought to himself that he was going it make it, but the setting was just to rough. There were bumps along his ride, and the sun beating down his thirst, he became less courageous and less optimistic." 2 2 2 +7462 3 "The features of his journey are cruel. Rolling hills, make him work harder to get over them. The more he works, the more he sweats and therefore he needs fluids to do so. The lack of water he has does not help. Poisonous dont really bother him if he leaves alone. The condition of the roads adds on to the hills. Rough roads make him work hard to get through and then over the hills. So this guy is getting it pretty rough." 2 1 2 +7463 3 Some of the features of the setting that affected the cyclist were the rough terrain and the hills. It says in the reading flat road was replaced by short rolling hills this would wear a person out without a good supply of water and is not sure in what direction he is travelling. And another thin g that affects him is the hot june weather in California. 2 1 2 +7464 3 "Throughout Rough Road Ahead: Do not Exceed Posted Speed Limit the features of the setting affect the cyclist. The cyclist was traveling through a very dry area, where it was very hot, dry and dangerous. There was no water to be found and the terrain is were rough and bumpy. The speaker stated, At some point, tumbleweeds crossed my path and a ridiculously lareg snake... (Kurmaskie @NUM1).The cyclist fared land blockings and dangerous animals. This cause him to slow down a little bit. It was extremely not out in the setting he was in. The cyclist was in the deserts of California in June.The speaker stated, @CAPS1 rings of dried sweat circled my shirt, the growing realization that I could drop from heat stroke on gorgeous day in June... (Kurmaskie @NUM1). The cyclist was expirencing the high temperatures of the setting. The cyclist witnessed the intense features of the setting." 2 2 2 +7465 3 The features of the setting effect the cyclist in many ways. He becomes delusional when he said that if he were lucky one of the stones would be lodged in his throat. Also he is dehydrated because he uses all of his water tend is having to push hard to make it to the next town. 2 2 2 +7466 3 The features of the setting started out easy like a road thats flat cool lines to keep him cool and not hot. Then it sat harder lack of water road is not flat anymore snakes the cool pines are gone. 1 1 1 +7467 3 "In the story ""Rough Road Ahead: Do Not Exceed Posted Limit,"" the features of the setting greatly affected the cyclist. As he was riding, he was passing through desert during June, a very hot month.There is not much water present in a desert (that would be part of the definition of a desert) and so, particularly in the even-hotter-than-normal June sun, he was at risk of running out of water. Had he been driving through, say, a forest or perhaps rolling grasslands, he might not have been in such danger, and could have merely looked for a river or dreck for water if he was desperate. Another thing that might have affected the cyclist would have been the affect of the desert on his mind. When people think of deserts they often think of dry, barren wastelands, complete with buzzards and maybe a dead cowskull, as in movies. Deserts are in intimidiating, they have a bad reputation and so, as he was riding through and was low on water thought of death how he was, ""going to die and the birds would pick (him) clean"" running through his now-teriffied head. Had he been in a city or in rolling farmland he might not have been as terrified. There are people in those places, and places to be safe there, but, in his desert, he had neither, allowing him to give way to despair. Setting does a lot to influence stories, so it is important to keep that in mind when reading. " 3 2 3 +7468 3 "The features of the setting affected the cyclist because he was out of water in a desert like environment and their was no one ground for most of it so he was down on his own. The cyclist was affected when in the story when he says ''I got down on my hands and knees, working the water handle of the rusted water pump with all my strength. A tar like substaNce oozed out followed by brackish water feeling somewhere in the neighborhood of two hundred degrees. That affected him because, he was drinking a lot of water before he got to that point in his trip and he was almost out so he needed to fill up with more but he did not have a place to get more water. That is one of the features of the setting that affected him." 1 1 1 +7469 3 "The features of the setting affect the cyclist by getting dehydrated, getting tired, and by getting lost. After the cyclist was on the road for a while he had drank almost all of his water, but he still had a while to go before he got to his destination. He was going to try to find some where to stop so he could pick up more water but there was nothing around. He also got tired because he was out in the sun, had barley any water, and he didnt know where he was going. One last example was that he was lost. There were no cars, buildings, or people. So if he were to get hurt or sick no one would have been able to help him. In conclusion, being dehydrated, tired and getting lost were the features of the setting affect the cyclist had." 2 2 2 +7470 3 "The features of the setting affect the cyclist because he runs out of water because he is trying to traverse the terrain. In the setting there is a desert in California that he is riding through on a bike, ""I was travelling through the high deserts of California The word ""high"" means that there were hills which would make the journey even more difficult. The hills appeared later in the story as the cyclist said flat road was replaced by short, rolling hills. When the speaker says replaced he is trying to show a change of terrain. another feature of the setting is the tumbleweed that he crosses other hills, tumbleweeds crossed in path. The tumbleweeds made him remember he was in the desert because tumbleweeds are associated with the desert which brought up the thought & dying and being picked apart by birds." 2 2 2 +7471 3 "Well if the setting relates to the theme then the story will make sence, like if its a sad story and its a ugly rainy day then it will match verry nice. Thats how the setting makes it better." 1 1 1 +7472 3 "If it is hot Out you can dehydrate quickley. also, if is ff ong hand hilly you use a lot of energy. It can berough on equipment, body, and mind. Make sure you dress apropreit lyand carry lot so f water. Next, make sure your tiresa inflated and all equip is working properly. then, plan a good route that you can stopat places and catch a breath or some water. also, make sure you eat well, food provides a lot of energy." 2 2 2 +7473 3 "In the setting of the essay; ""Rough Road Ahead: Do not Exceed Posted Speed Limit."" had a great affect on the cyclist. It made him even more determined to finish because the terrain was so hard to ride through. For example, ""At some point, tumber weeds crossed my path and a ridiculously large snake-it really did look like a diamond back-back the majority of the pavement in front of me, I eased past, trying to keep my balance in my dehydrated state. ""The author fully explains how no matter how bad the obstacles are he comes across he keeps trying to easy on by. The terrain affect the character by keeping him determined. This happens to many people in their sports. For example in football they take any problems and use them as reasons to push themselves harder to finish the game. " 2 3 3 +7474 3 "In the story the cyclist was affected. The cyclist was affected by the directions of the old man. It sas that they gave it to him to help him out. That it was a shortcut. I think the cyclsit thinks the directions are out of date. The reason think this is that in the second sentence of the story it says, ""never accept travel advice from a collection of old-timers who haven't left the continues of their porches since carter was in office."" The feature of the setting also affected him because he had to ride upand down through what he though of as it, rough terrain. That is what I think affected the cyclist." 2 2 2 +7475 3 "In Joe Kurmaskies Do Not Exceed Posted Speed Limit the features of the setting affect the cyclist alot. The terrain has a great deal to do with it. Also, the heat: First, the terrain affects the cyclist. It affects the cyclist because there is alot of hills. The text says, ""With what I believed was my last burst of energy, I maneuvered down the hill. In order to go down a hill, you had to have gone up a hill. So, having to use the energy to pedal up hills affected the cyclist alot. Next, the heat affected the cyclist. I know this because the text says and the growing realization that I could drop from heatstroke. This proves it is extremely hot outside. Heat would affect the cyclist because heat prevents you from functioning at your greatest ability. That is how the features of the setting in Do Not Exceed Posted Speed Limit affect the cyclist. The terrain affects the cyclist because of the hills. The heat because it drains your energy quick. " 2 2 2 +7476 3 "In Rough Road Ahead: Do Not exceed posted speed limit, the features of the setting affect the cyclist in many ways. One way it affected him is the towns were old and deserted. In the story he said This place might have been a thriving little spot but @CAPS1 it was a ghost town. He could not get any water or any directions. The features of the setting affected the cyclist because the roads were bumby and there were many hills. Flat road was replaced by short, rolling hills. @CAPS1 the cyclist had to use all his power to manuever over the hills. The third reason why the setting affected the cyclist was the weather and that it was a desert. I was traveling through the deserts of California in June. He was hot, sweaty and thirsty. He was also tired and desperate to find water and town that was not deserted. The features of the setting affected the cyclist in Rough Road Ahead: Do not exceed Posted Speed Limit, by the roads, deserted towns and the lack of water." 2 2 2 +7477 3 "In the story Rough road ahead do not exceed posted speed limits, The setting is a long road with no one in sight not a building, car or structure of any kind he cyclist could be affected by the rough road that he have to ride down." 1 1 1 +7478 3 "In the essay by Joe Kurmaskie, he describes his experience of bike riding in the desert. The setting affects the cyclist in many ways throughout the writing. At first, Kurmaskie is confident as he listens to a group of old codgers giving him advice. The setting is calm and happy and Kurmaskie writes that he enjoyed the serenity of an eary-summer evening. The word serenity gives the affect of calm and peace. However, as Kurmaskie proceeds into his journey, the setting changes. He is troubled by the ramshackle shed, several rutsy pumps, and a corral that couldnt hold the lamest mule in a ghost town that he meets in the desert. Even later, the terrain changes and he sees a sign stating Rough Road Ahead. Kurmaskies confidence turns into even deeper doubt and worry as his water supply runs low. Finally, kurmaskie sees a sign for a fish camp. Here, his hope returns as he finds a rather modern bathroom where he can stop to get a drink. As the setting changes, Kurmaskies confidence is followed by determination and then relief." 3 3 3 +7479 3 "The features of the setting affect the cyclist because he is in a dessert like place with a water surfage and he could hard tired. I would never have asked old people, he should have ask someone that was in charge of a store, because those people get asked many times. also he could have died if that snake got him or from what he said heatroke." 1 1 1 +7480 3 "The story begins as the author, a cyclist, has taken directions from several very old men to reach his bike-ridden destination of Yosemite National park. He starts out confident enough and then reaches the first town the gentleman described. It is a ghost town and amuses the author still believing hes perfectly fine he sets out again this time arriving at a place with One ramshackle shed, several rusty pumps and a corral that couldnt hold in the lamest mule It is at this point that the author starts to worry as his water supply is low. He preceeds past rolling hills, snakes, tumbleweeds and different land-marks. Each one rips his confidence and exciterent to shreds. Especially the juice factory as the author is currently very dehydrated and losing all hope. Finally, he arrives at the water he seeks in the form of Gary wilbers fish camp, and refreshes himself and his dried-out hope. Each time the author passed a land-mark his confidence took a beating, and even though he was in dire physical health not having any hope for his sunny breezy vacation can drain a person even more from the inside out." 3 3 3 +7481 3 "The features of the setting affected the cyclist negitvly because he was in the desert in the summer with little water and no stones too get a drink at, For example he says There was no one in sight not a building, car, or structure of any kind's. This explains how his setting affected him because he had no where to go or get a drink. That is my reason why the cyclist settings where negitve." 1 1 1 +7482 3 "The features of the setting affected the cyclist in bad ways. The rocky road and steep hills made him peddle harder. The old people made him go through the rocky way. The temperature from the desert made him thirsty so he ran out of water fast, He said When I tried a drop or two, it had the flavor of battery acid. The heat could have killed him anytime. For example Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from the heatstroke on a gorgeous day in June. This ride this man took to Yosemite was a very dangerous ride. " 2 2 2 +7483 3 "The settnig can greatly effect the cyclist. The palce can change what happens and how it happens. For example if the story had taken place in alaska the cyclist would not have had, ""Wide rings of sweat circling my shirt."" and instead have been fighting off hypo thermia. The setting is very important because it affects all of the details in the writing. " 2 2 2 +7484 3 At first the terrain was fine and he confident. But when he reached the first town it looked like one of those ghoust towns in the movies. The next town didnt come up when he was told it would. The terrain was that of a desert no water for miles. But he stayed determind. And he made it to some water though. 1 1 1 +7485 3 "The features of the setting affected the cyclist in Do Not Exceed Posted Speed Limit. For example, he finds a ramshackle shed and tries to find water. It affected him, because it says, I got down on my hands and knees, working the handle of the rusted water pump with all my strength. A tarlike substance oozed out, followed by brackish water feeling somewhere in the neighborhood of two hundred degrees. The quote meaning that he was determined to find water and perhaps anything." 1 1 1 +7486 3 "The setting affected the cyclist by depriving him of hydration and weakening him. The large hills and rough roads ebbed away every bit of his strength and wore him down. The narration states, Over one long, crippling hill (kurmaskie @NUM1). This work choice reflects the writers feeling about his adventure. Words like long and crippling show that the trip was a horrible experience." 1 1 1 +7487 3 "Pride, determination, relief all are things that the cyclist felt during his long bike ride. First the cyclist started of rideing on fresh legs and good directions, but after a while down the road he started to dought the old men, a diary with my last entry in place of old men, their wisdom, and their been a sense of direction, I made a mental move to change it. After feeling that the direction might be rough, he rode out of pride to get to his destination. Next the rider had great determination to get to his destination and did many things, I gathered a few pebbles and stock them in my mouth to take my mind off of thirst. This quote shows that he would do almost anything to keep going. Finally the cyclist was fatigue when he arrived at the @CAPS1 shop because he then knew the old men were right and would reach his destination, As I stumbled into rather modern bathroom and drank deeply from the sink this quote shows he was polite naturally to get water but to know the men were right." 2 3 3 +7488 3 The features of the setting affect the cyclist when he was thirsty. A sand blasted picture of a young boy pouring a refreshing glass of juice in his mouth could be seen. This proves that the rider was thirsty because in the paragraph before this talks about him having a last burst of energy going down a hill. And he was also sweating a lot. And also wiping sweat from his eyes. 1 1 1 +7489 3 "I work better when I can feel the environment. I think the some goes for cycling in the mountain , fresh air and no worries on you mind them cycling can become fun like the climates into the easy he even the fresh air, the fine trees and the environment makes him feel better so for cyclist environment plays a vital role." 1 1 1 +7490 3 "The features of the setting affect the cyclist in a major way. The setting affected the cyclist performance. For example, the harsh temperature started to make his pedaling sluggish. The settings also made the cyclist a little frightened for instance, the cyclist came across a snake that he was terrified of. Again the settings affected the cyclist by tempting him. For example, the river tempted the cyclist to stop riding and go get a drink of water. In conclusion, the setting had a major affect on the cyclist." 2 2 2 +7491 3 "The features of the setting affect the cyclist in many ways. For one, a lot of the settings discoured the cyclist. This place might have been a thriving little spot at one time- say, before the last world war- but on that morning it fit the traditional definition of a ghost town. As soon as the cyclist hits this town he realizes that the old mens advice might not have been so great. The dry desert affects the cyclist the most. This hot climate makes the cyclist extremely thirst, hot, and and sweaty. Wide rings of dried sweat circled my shirt, and the growing realization that I could drop from a heatstroke... The cyclist's tune here is sarcastic but he is still concerned about his health because of the heat and lack of water. The fact that there is nothing living around the cyclist also affects him. Since hes talked to the old men for directions he hasnt seen a glimpse of life, or buildings or anything. So this definetly discourages the cyclist and makes him lose his will to continue his journey. In conclusion, the features of the setting affect the cyclist in many ways. " 3 3 3 +7492 3 "The cyclist traked through a barren land trying to get to a land of rivers and valleys. Trakling through the first town the cyclist saw a ramshackie shed, rusty pumps and corral lotated in the desert of California. The cyclist was very angry that the old men led him into this barren town, however he kept hope and traveled to the next town. Their, he found a abandond fruit juice factory and bottling plant, how the discuraged the cyclist started to give up. I was going to die, he clamed with all hope loot. The man feels like their is nothing left and its the old men who caused this. Then finally, he cme across a bait shop which he found an his own giving him a huge reliefe. The features effects his attitude because in a baren land you lose hope as did the cyclist. Therefore, whats around us affect us as in education, friendship, and survival." 2 2 2 +7493 3 "In the essay, Rough Road Ahead: Do not Exceed Posted Speed Limit,'' the cyclist is affected doth emotionally and physically by the features of the setting. At the start, when he came to a deserted shed with rusty pumps, he began to feel discouraged. [The] sight was troubling,(page @NUM1) @CAPS1 on in the essay, the terrain changes from flat land to short, rolling hills and tumbleweeds began to pass. The cyclist is definitely affected by the change in terrain. He is now exhaugnted but continues to pump his legs and ride on. Before the end of his ride, the cyclist reaches an abandoned @ORGANIZATION1. The setting how includes a large picture of a young boy drinking a refreshing glass of juice. The author seems almost detected by this. I hung my head'' (page @NUM2) he confessed. In the end, once he finds an old fishermans store, he is relieved seeing the store from a distance excited the author, because, he could finally have a drink. The author mood and body were greatly affected by that features of the setting." 3 2 3 +7494 3 "The features of the setting in Do Not Exceed Posted Speed Limit by Joe Kurmaskie show that as the day goes on the cyclist becomes tired and wornout from his long ride through rough terrain trying to find his way back home then he saw some buildings down a hill and said With what I believed was my last burst of energy, I maneuvered down the hill (kurmakie @NUM1). After the rider gets home he says he is going to do it again." 2 2 2 +7495 3 "The main affect is the lack of water. It is in June, while riding his bike in California. Therefore its going to be very hot and hell need a lot of water t stay hydrated. When he sees that Welchs Grape Juice factory, it just makes him think of his thirst even more. Also the terrain he is riding is not the easiest. He starts out riding on flat ground but then is riding on hills and not so flat terrain. This doesnt help his dehydration. Thats why you should always carry a lot of water with you if youre riding a bike during the summer" 2 2 2 +7496 3 "The affects of the settings was how hot it was and the cyclist road he was on. The rider said it was June in the summer time, very hot. And the roads were not smooth, the were very old and ragady." 1 1 1 +7497 3 In the short story Do Not Exceed Posted Speed Limit a cyclist is going against heat lack of water and rough hills trying to maneuver around. 1 1 1 +7498 3 "The features of the setting affect the cyclist because he is tRying to bike up hills and down hills, which can be very tiRing. Also, the hot aiR can dehydRate him, which can cause him to pass out. Along with the dRy aiR, theRe is dRy land, which means theRe is no place to stop foR wateR oR take a @CAPS1. The Rough @CAPS2 make the biking naRaeR because it involves moRe eneRgy than biking on a smooth path. Finally, the snake in the middle of the Road made it haved foR the bikeR to go aRound. If the snake would have bitten him he could have died fRom poison." 2 2 2 +7499 3 "The setting in the essay ""Do Not Exceed Posted Speed Limit was very hot in dry, very little shade or moisture, at some point maybe even none at all. This whether affected the author because he had no water at all so he was getting more dehydrated the further he went." 1 1 1 +7500 3 "How the features of the setting affected the cyclist. The feature was that you should never take advice from old people that never get out of the house. For example in the story it says, Never accept travel advice from collection of old. times who havent left confines of their porches since carter was in office. This affecting the setting because if it werent for his map and let them take a peek at it, That would of saved him a load of trouble." 1 1 1 +7501 3 "In Rough Road Ahead: Do not Exceed Posted Speed Limit by Joe Kurmaskie the setting of the terrain was hot and water draining. In the text it says Followed by blackish water feeling somewhere in the neighborhood of two-hundred degrees this proves that the cyclist is exagerating about the very hot temperature of the high deserts of California. The setting is also water draining and had to stop in the desert town to refill his water bottle as in the text says I got down on my hands and knees, working the handle of a rusted water pump with all my strength. This proves that the cyclist had to stop for water and using much power to pump it out. In conclusion always prepare for the worst but hope for the best. " 2 2 2 +7502 3 "In the story, there are many features of the setting that affect the cyclist. One setting feature is the rolling of steep hills. The hills make the cyclist exhausted and even more desperate for water. For example, in the story it says, Over one long crippling hill, a building came into view. This shows that the hill was very hard and strenuous to get over. By using the word crippling it informs us that the hill was brutal and very hard to get over. Another setting I feature that affects the cyclist is the absence of any civilization on his cycling path. While he was riding he notices that there is nobody around to help him if he gets in trouble or needs water. The absence of people makes him feel stressed and worried about his journey. It shows this in the story when he say, There was no one in sight, not a building, car, or structure of any kind. Also it says in the story I was going to die and the bird would pick me clean, leaving only some expensive out door gear and a diary with the last entry on the parse of old men"". This shows that there was nobody around to help him and he knew it. He thought he would die alone and that birds would eat him. He was obnonely worried about the absence of people." 3 3 3 +7503 3 "Usally the features, setting has an major affect upon the cyclist. The features, setting relates, and describes the hassh, and eventually relief condition of the cyclist. The setting relates to the person and plays a role, which the cyclist can observe. One reason how the features of the setting affects the cyclist is it shows the various problems that are being faced with the cyclist. For example, the cool pines, no one in sight, and I am alone. The way how this interepts a clear meaning, I the cyclist needs help getting home, and eventually by traveling, he needs water, to fill his thirst. Prior to thisy, the features, shows the weakness of the cyclist. For example, with that i believed it was my last burst of energy, as I consently, maneuvered down the hill. The features, and settings, affect the cyclist by showing how he was facing his troubles, thirst and fear, which all lead behind him at the end. These features and settings develop a clear understandmet, for the cyclist, and what is to be expected, in by him." 3 2 3 +7504 3 "The features of the setting had a big impact on the cyclist. When he started that ride, he was confident that the old timers were right about which directions and roads he had to take to get to Yosemite National Park. Though the sun was bearing down, he refused to give up, just as he says The sun was beginning to beat down, but I hardy noticed. He came up to places that were worn down and deserted, so he knew he was alone if anything happened. The desert heat had made him down his water pretty regularly, so he tried to get more, as in, ""I got on my hands and knees When l tried a drop or two, it has the flavor of battery acid"" paragraph @NUM1. He was so thirsty that he would drink hot water. Then he thought he has only @NUM2 miles to go, so he kept going. He weakening as he pedaled along the changing terrain as he was trying to keep my balance in my dehydrated state. With what little energy he had last, he had passed an abandoned Well be Grape Juice factory, which probably tested his patience and sanity. He had resorted to, gathered up a few pebbles and stuck them in my mouth just to keep his mind his thirst. He was losing hope when he came upon Gary and wilbers fish camp best bet then he felt relieved after he was able to get cool water. By then he's learned his lesson, to stick to his map." 3 3 3 +7505 3 "In the author's recollection of his long and tiresome bike ride he talked about the struggles he had to face. when he set out that morning he asked some old guys on a porch for directions to @CAPS1. They told him that they knew the way and that they knew a shortcut. He choose to take their advice but later regreted it. when he found the towns that they spoke of all he found was ghost towns. ""Never accept travel advice from a collection of old-timers who haven't left the confines of their porches since carter was in office. ""He dose eventually reach a town were he finds signs of life. There he asks another old guy if he knows the way to Yosemite, the guy says he has a good map. All along his ride he was pleged by the sun and lack of watrer. The sun made him hot and thirsty which forced him to drink a lot of his water. when he rached his last few sips he resisted from drinking it and began loosing consciesness. ""I could drop from heatstroke on a gorgeous day in June.""" 3 2 3 +7506 3 A cyclist can only travel as fast as slow as he pedals. If the setting is a humid sunny day he cant go to fast due to his lung capacity. If it is a warm but windy day he has to wath his speed to keep from getting hurt. Basically unless the weather is nice or safe enough he will go fast. But his safty care first so it depend on the weather mostly but also the time of the day. If it is night [dark] the reflectors must be put on to keep from getting it. 1 1 1 +7507 3 "The features in the setting affecting the cyclist because of the heat and the terrain. I say this because in the story it describes all the hills that he has to go up and down with the herendous heat beating down on him. The heat also makes it hard because it makes you drink more and throughout the story he was trying to find some water, and the water he did find was about two hundred degrees and tasted like a battery acid. If you have no water that makes it very hard to bicycle that far of a distance in that much heat." 1 1 1 +7508 3 The cyclist is affected by many features in the setting. the long hill is one example the snake and the dirt road are two more. The heat of the desert is another and his depleting water supply are all examples of features that affected him. 1 1 1 +7509 3 "There were many features of the setting that affeced the cyclist. One page @NUM1 paragraph @NUM2 there is a sign that states rough road a head. One page @NUM1 paragraph @NUM4 it says ""over the long onpiling hill. He also the tempature as started on page @NUM5 and at the top of page @NUM1 paragraph @NUM7 l was travling in hing desertd of california in June. These conditions of the setting all effect the cyclist." 1 1 1 +7510 3 "The features of the setting affect the cyclist in this story. First of all, in the story it says and the growing realization that I could drop from a heatstroke (@NUM1). This quote shows that it is extremely hot and it is affecting his riding. The narrarator also says, I eased past trying to keep my balance in my dehydrated state(@CAPS1 @NUM2). This quote is saying that he is dehydrated in is having trouble keeping balance on the rough terrain. In conclusion, the setting affected the cyclist in this story." 2 1 2 +7511 3 "The setting affects the cyclist by wanting to go longer and riding the bike. And to see what is up ahead. By riding a bike in the heat, you can have a heat stroke and die from dehydration and the heat. Thats why you are supposed to have a lot of water with you when you are riding a bike." 1 1 1 +7512 3 "THE CYCLIST SETTINGS HINDER HIM IN THE ESSAY ROUGH ROAD AHEAD. THE CYCLIST IS IN THE DESERT IN THE SUMMER TIME WITH HARDLY ANY WATER. HE IS TRYING TO FIND HIS WAY TO YOSEMITE, BUT HE GETS LOST ALONG THE WAY BECAUSE SOME OLD MEN GAVE HIM BAD DIRECTIONS. DURING THIS TIME HE IS RIDING HIS BICYCLE FOR MILES AND MILES IN THE HEAT OF THE SUMMER. HIS THOUGHTS OF THIRST GET IN THE WAY OF HIM TRYING TO CONTINUE ON TO FIND YOSEMITE. I BELIEVE THAT IF THE CYCLIST WAS IN A COOLER ENVIRONMENT THEN THINGS WOULD HAVE BEEN DIFFERENT BECAUSE HIS SETTINGS WERE SORT OF A DISTRATION TO HIM" 1 2 2 +7513 3 The cyclist became very tired and the area he was in did not help at all. he was in the desert in june very hot day and every town he had come to was abandoned and had no water. It was also very hilly which made the work even harder. 3 2 3 +7514 3 "The features in the setting of ""Rough Road Ahead, Do not Exceed Posted Speed Limit"" affect the cyclist because the determine how easy or hard he ride is for the cyclist. For example. The land being hot, would enable him to die or heat struck without water, the land being dry means he doesnt have a place to refill his water supply and the land being barren means to the man that if he didnt be of heat stroke there is a chance he wouldnt be found and wouldnt survive. Another example of how the features of the setting offer the cyclist is in the story when the road gets rough and he sees the speed time sign his though are about here he is going a water depleating 12 mph. This shows that he features of the setting, namely the contour of the land and the roughness or he road make the journey a lot harder on the cyclist. The features of a setting could possibley be the biggest arrest on a cyclist, and whether they have a long hard journey in which they have to push themselves to the limit like in this story or a nice lersury ride." 3 2 3 +7515 3 "The cyclist Do Not Exceed Posted Speed Limit was definatly affected by the setting. He was cycling in California - which is a hot place to begin with - in June - which made it even hotter coming upon a hot desert. When youre doing a physical activity like that, the last thing you want is to be in the heat. The narrator only brought one bottle of water which at first he was drinking regularly. Then it started to get hot and he was out of water. This affected his body by making him tired, and his mind because he started doubting himself. Then there was the abandon juice building where they made juice. He said In an ironic twist abandon years earlier had been a Welchs grape juice factory and bottling plant. He was dying of thirst and then he found the bottling plant. The cyclist was definatly affected by his surrondings both mental - by saying Im going to die. - and physically by becoming dehydrated." 2 2 2 +7516 3 "The cyclist was riding in some rough, dry and abandoned terrain that made his journey almost fatal. He described it as, In the high deserts of California in June. It was dry, lifeless and hot The sun was beating on him and he needed to frequently drink water, but he was running out. The empty towns were what he was wanting on for fresh water, but theyd been very abandoned. This made his journey very dangerous. He couldve fallen off at any time because of heat stroke He wouldve died right then and there. His sweat was drying in the heat and there was no way for him to cool off in the lifeless desert: lifeless and dry. He had to enhance these extreme. Ironical conditions for miles on end, just to find some water. It was all that a desert is and all that a home shouldnt go through." 2 3 3 +7517 3 The features of the setting affects the cyclist in manyway. The hills are to long. Every town is fear appert and the rodes are rought. The heat also affectes him. He is affected health wise. 1 1 1 +7518 3 When your doing any sport or any thing were you sweat your setting is everything. If your sweating in a setting you can easily get sick. The setting from the story Rough road ahead the cyclist had no water and the setting was very hot. Thats why the cyclist was tired and sick because he was sweating and had no water. Thats how the setting affect the cyclist. 1 1 1 +7519 3 "The features of the setting affect the cyclist greatly. The features is old abandon towns and hot temperatures. Also abandoned buildings. This makes the cyclist think All hope is lost. The essay says this Over one long crippling hill, a bulding came into view [...] I hung my head that smoky blues tune ""summertime rattle around."" Then to a happy mo In an ironic twist that should please all sadist reading this, the building [...] by the looks afit had been a welchs grape Juice factory and bottling plant [...] I hung my head that smoky bluees tune sumertime rattle around. Then to a happy mood it states As I stumbled into a ra ther modern bathroom and drank deeply from the sink, i had a overwhelming urge to seek out Gary and Wilber, kiss them."" " 2 2 2 +7520 3 With no one around and rough road ahead not to mention dehydration the cyclist begin to feel he was going to die. Because of this he began to dout himself but each time he saw something he tried to get there. 1 1 1 +7521 3 "The features of the setting greatly affected the cyclist. For one, he was biking through the high deserts of California in June. This caused the cyclist to become overheated ad sweaty. So he drank from his water bottles frequently. Unfortunately, since there was, no one insight, not a building, car, or structure of any kind, he had nowhere to fill his bottles and become dehydrated. To make matters worse, the terrain changed from flat road to short, rolling hills. Normally, this would not cause too much struggle, but since he was dehydrated and overheated, each hill seemed crippling, My thoughts are that if the setting had been a bit cooler and perhaps on the time period the old men had lived in, the cyclist would have had a much more enjoyable experience." 2 3 3 +7522 3 "Excitement, desperation, and self-pitty are all feelings the cyclist had because of the setting. He was really excited to get to Yosemite park because of it peacefulness. He said, the cool pines and rushing rivers of Yosemite are calling my name. He wanted to get their because it was so hot. He started getting desperate for water, so he drank out of this hot water hole. I tried a drop or two, tasted like battery acid. He was running out of water so he got desperate for some. He started to have self-pitty on his self, sometimes life can be so cruel, he was feeling pitty on himself because he had such a long way to go still. These are all feeling the cyclist had because of the setting." 2 2 2 +7523 3 "Features of the setting affect the cyclists moods in many ways. The story says. About fourty miles into the pedal, I arrived at the first ""town. ""The cyclist is probably allready tired from pedaling for fourty miles. Then he finds out that the town is desserted, which makes him a little frustrated. The next few stops are also desserted and he is almost out of water. He is becoming desperate. The road becomes bumpy and there is a large snake blocking the way. He is terrified. Finally, he reaches a bait shop with cool water ,and he is relieved. As you can see, the cyclist goes though many moods caused by the setting of the story." 2 2 2 +7524 3 The way the feature of the setting affected the cyclist is that its in June in the middle of the desert. Also he was given wrong 1 2 2 +7525 3 "The cyclist was affected by the climate, the people, and the surrounding. The climate was the desert in June which was very hot with little water. This made him dehydrated and miserable. The old men that helped him acused think to be in the guiding situation he was in. There were no surrounding shop or buildings that were inhabined. This way there was no place for him to get any water nouroushment. " 2 2 2 +7526 3 "The features of the setting affect the cyclist by when the story says Twenty miles up the road. I came to a fork of sorts, This statement from the story affected the cyclist because he didnt know which way to go. Another feature that affected the setting is when the story says I got on my hand and knees, Working the handle of the rusted water pump with all my strength. That statement shows that the cyclist was dieing for water and he didnt think any was going to come out. Last feature that affected the cyclist was when the story says Rough road ahead: Do not exceed posted speed limit. This shows that the rider had to go under a speed limit but he was earlier tired and he was going way under it and that he could make it up the rough road." 2 3 3 +7527 3 "The dry, deserted area the cyclist is in, has many caations and" 2 2 2 +7528 3 "In the text, the author was cycling to Yosemite park through a desert which dehydrated him and changed his mood. Going through this desert he ran out of water so he stopped. Some of the towns he was told of which turned out to be deserted, and as he could not find water there he soon because dehydrated. This is the obvious affect the setting had on him, another affect was to cause him to doubt old people and to change his mood from confident to desperate. As he was cycling through the desert, desperately chinging to life in hopes he could find, are water, he realized that old people know of the past better than the future as they dont get out to the every changing world as much as they used to whereas, at the beginning he was confident in the directions and wisdom of the old men. The setting he was in made him a little more wise." 2 3 3 +7529 3 Because the setting of the cyclist ride is dry desert it makes the cyclist seem more and more determined. He's is going against the odds so it seems like hes pushing himself to the limit. Against the heat and the long road he's on and having no water all seems lost for the cyclist. But in the end he pulls himself together and makes it happen for himself and triumphs over adversity. 1 1 1 +7530 3 "From reading the story, l believe the setting of the desert he was cycling affected him immensly. I believe it affected him in the way his attitude of the cyclist changed for the worst. At first he was very motivated, determined, and hydrated. As time and miles went on the scenery mover changed.That can be really hard. in heated water or, you need to be as hydrated ad possible, especially it an enduring in physical activity. When time he went on, he was getting low on water and had nothing in think about a long other them, how much larger, how thirsty he was and is this worth it? It is a lot eager to the motivated when there is thing to look at to keep your mind of the attitude of the cyclist changed for the worst. In my point of view strongly believe that it could have been form working at the some sandy desert for seeds a long period of time. I have ??? ??? ??? in exercising while making on ???. Its hard to see ??????????? thing. My attitude will go farm. Im so determined to Im bored to whats the point. But I thought it was great how he never gave up ??? things got bad. It opened my eyes to see how great it is to reacts your own goals. " 2 2 2 +7531 3 "The features of the setting affect the cyclist by dehydrating him. The cyclist said, I toiled on. At some point, tumbleweeds crossed my path and a ridiculously large snake."" The cyclist was in the desert and each mile he rode he became more and more dehydrated. The desert sun drying out his body. He said with each passing landmark, I eased past trying to keep my balance in my dehydrated state. @CAPS1 that the more he went on the more the desert affected him and dehydrated him." 1 1 1 +7532 3 The features of the setting affected the cyclist in many ways. One way is that the cyclist not sticking to his map. Instead of sticking to his map he had asked a couple of old people. The old people that gave the cyclist directions also gave him a short cut to take. Thats where the second effect came in where the cyclist started to use a shortcut instead of the main road. Thats how the features of the setting affected the cyclist. 1 1 1 +7533 3 "Some features of the setting that affected the cyclist were the road conditions and road changes with the hills. So far the cyclist had a great ride for about two miles into his journey after that it started to change. This is supported when the author states, Not two miles into this next section of the ride, I noticed the terrain changing (kurmaskie). Even though the author started this journey out nice it did not take long for thing to change against him. Although the hills and road conditions changing the character in the story still gets through his problems with out much worries. With all of the problems in the setting the cyclist still comes through to end his journey." 1 2 2 +7534 3 "The features of the setting cause the cyclist two main problems: doubt and dehydration. From the essay, you can infer that the cyclist doubts he will ever make it to Yosemite because of the constant features in the essay that cause him to lose his hope and confidence. For example, near the end of the essay the cyclist is already exhausted and hopeless but then sees a building over a hill. He hurries to the building only to find out that it is an abandoned, rundown @ORGANIZATION1 factory. After getting his hopes up, he is forced to get back on his bike and carry on. This features of the setting causes further disappointment to the cyclist and installs more doubt into his mind. Despite losing his confidence and hopes to make it to Yosemite, the features of the setting also cause him a serious, literal problem: dehydration. The weather is not and he has to carry on over hills and on rough roads. He is running low on water and at the one town he finds the water from the pump is undrinkable. The features of the setting are causing him these problems and are the reason hid health is at risk. " 3 3 3 +7535 3 "The features of the setting affect the cyclist in many ways. @NUM1 way is the condition of roads. Another is the heat. Another is snakes. Another is no town insight. The final one is lack of info. @MONTH1 be the guy made it. @MONTH1 be he got hurt on the ride. Maybe a snake bit him. Either way, the setting affected the cyclist in many ways. " 1 1 1 +7536 3 "In the essay, the description of the setting was dry, hot, very open, and desserted. The description could suggest lonlieness, obviously. Even though the man was all alone and didnt know where he was going, he still persisted. While he thought about the cool pines and rushing rivers of Yosemite. This thought kept him strong, so he kept trying." 1 1 1 +7537 3 "There were many land features that affected the cyclist and his trip. First of all, it is a desert, which greatly affects him as there is no water in deserts. There was also a snake, which could have bit and kiiled him. As the road were not very well paved and had obviously been abandoned for years it made cycling much harder for him. And the juice factory just taunted him, making him remember his need for water, as did the well that did not pump cold water, but instead pumped hot,gross water" 1 1 1 +7538 3 "When the cyclist first starts his journey he is very sure of himself. He sees everything as the old men told him. As he travels on he notices everything is abandoned and empty. There was no one in sight not a building, car, or structure of any kind. The man started becoming very unsure. You could tell he says I wiped the sweat from my eyes to make sure it wasnt a mirage, and tried not to get excited. He was very doubtful hed get to where he was going. In the end he was very relieved he found a fishing spot with a bathroom and fresh water. " 2 2 2 +7539 3 "The features of the setting affected the cyclist in this story alot. Having unreliable directions, barely enough water for the journey, poor road conditions and other hazards like the heat and animals made this a very difficult journey for the cyclist. Starting the journey the cyclist recieved bad information on how to get to his destonation which lead him on a long hard journey with not much water. He says in the story The speed limit was @NUM1. I was doing a water-depleting @NUM2. This means he was running out of water too fast for the amount of land he was covering. Another feature of the netting that affected him was that the road conditions got worse and worse untill he reached a high way late in his journey. He said flat road was replaced by short rolling hills."" This means the faster, easy, to ride terrain was replaced by slower harder to ride on terrain. These features of the setting could have been very dangerous and maybe factal and affected the cyclist alot living this story. " 3 2 3 +7540 3 "The feature of the setting affected the cyclist, because as his surrondings changed he lost hope of making it to Yosemite National park. Such as when he was riding through his first town and it looked abandoned he wasnt so sure if he shold keep going. As well as when he didnt see anyone or any buildings he got worried and was wanting to lose hope. But as second road sign appeared he was relieved." 2 1 2 +7541 3 "The setting in this short story cause the cyclist to doubt his survival. The main problem is water, or lack there of. The cyclist has no water and thinks its only a matter of time before he dies. Another big problem is the rough terrain. The rough terrain is hard for the cyclist to overcome. Also, there is no buildings, people, or cars in sight to save him. Until he finds the bait shop, if anything would have happened to him, there wouldve been no one there to help." 2 2 2 +7542 3 "The features of the setting of Do not exceed posted speed limit greatly impact the cyclist, in a negative way. For example, when the road changes from smooth and easy to rolling and full of hills. It makes it difficult for him to bike. He needs to use more energy to get over the hills. Another example is when it says tumbleweeds crossed my path and a ridiculously large snake blocked the majority of the pavement in front of me. The connection with seeing a tumbleweed is that of being deserted and alone so this increased his feelings of despair. Lastly, he sees the Welchs Grape Juice Factory, which is deserted and serves to only make him thirstier. All of these things affect the cyclist. The fact that he sees the grape juice factory is also ironic, because he is extremely dehydrated and the factory is abandoned." 3 2 3 +7543 3 "The features of the setting affect the cyclist in a few ways. first of these is the blazing heat. He is basically in a desert and he is running low on water. As he starts to run out of water he starts conserving it which is dehydrating him so he is becoming weaker, I would conserve my water and go inward for an hour or so- a test of my inner spirit. Next up is the rough terrain. When you hit rough terrain on a bike it can get hard to keep going and the cyclist was already short on water a large highway sign jumped out at me. I read: rough road ahad: Do not exceed posted speed limit sometimes life can be so cruel. Finally is the structure First there was the Ghost town with the battery acid tasting water. Also there was the Welchs grape Juice factory and bottling plant which were both probably dimeriling. A sandblusted picture of a young boy pouring a refreshing glass of juice into his mouth could still be seen. I hung my head. As you can see the features of the settings generily affected the cyclist." 3 3 3 +7544 3 "The author finds the desolate and harsh settings to be not discouraging, rather they stand out as a cause of amusement and fun, quest-like tests. The author writes that after arriving at his first ghost-town, he chuckles, amused by the funny old codgers and their crazy ideas. When he arrives at the second establishment, and realizes it isnt the least bit established anymore, hes slightly disappointed, but sees it as a test of [his] inner spirit. At the third building an abandoned factory he still appreciates the irony of the situation. While biking across the desert, he refuses to be discouraged by the empty horizon and instead uses it as a point of reference to work his progress and as a way to push himself. Though the author is faced with empty disappointing views, he keeps his spirits up and keeps pushing " 1 1 1 +7545 3 "In the story Rough Road Ahead: do not excess speed limit, the reader sees the scenery and terrain get rougher, and lonelier, and as the cyclist travels and limits are being pushed his outlook is somewahat grim he only expects the worst. The rough road strats out after a water pump he finds gives him piping not, brackish water that tasted like battery acid. Water in a sense in this story is a metaphor to his life, and is the source for him living. In the beginning he drank it regularly and when he gets to the pump it is bad, just like when things start to turn sour in the story itself. The cyclist in this story is very a ware to how his body is and acknowledges his dehydration. At one point he says and the growing realization that I could drop from a heat stroke simply because I had listened to some gentlemen who hadnt been off their porches in a decade"" he later said it caused him to laugh sadly, hopelessly the lack of humans and their technology really broke him down." 3 3 3 +7546 3 "The desert is the crulest of natures environments. Its lack of water, dry air, and punishing heat are enough to kill even the hardiest creature. When traveling through a desert, one must maintain a constant water supply and know their path with respect to the power of nature in Do Not Exceed Posted Speed Limit, cycler Joe Kurmaskie must overcome the deserts heat and lack of water to survive. As the author observes in paragraph @NUM1, wide rings of dried sweat circled my shirt, I could drop from heatstroke. If the human body overheats, it becomes sick and unable to properly function. When in the desert one must keep cool or perish. In @NUM2, Kurmaskie begins to realize the danger of running out of water in the desert, I had been hitting my water bottles pretty regularly, and I was travelling through the high deserts of California in June. As this water starts to run out, Joe suffers from dehydration, despair, and a loss of balance. Water is essential in a desert environment, without it, as Joe observes, the birds would pick (you) clean, leaving only some expensive out door gear." 3 2 3 +7547 3 "The features in the setting of the essay Rough Road Ahead Do not exeed the Posted Speed limit affect the cyclist in a cruel manner. The old man say that the towns are going to be there and they are just not functioning towns. To make the cyclist feel hopeless the setting puts him in a California day in June which is extremely hot and puts in all these unexpected twists. A cruel thing to add in the essay was when it read The Speed limit was 55 mph. I was doing a water depleting 12 mph This lowers the cyclists confidence making him seem more worried. Another cruel thing is the author adding a welchs Grape Juice factory that had been abandoned with A sandblasted picture of a young boy pouring @NUM1 refreshing glass of juice into his mouth"" totally causing him to lose hope left. These features in setting are cruel." 3 3 3 +7548 3 "The features in the setting, such as the ghost town desert, and the Juice factory, give the cyclist a sense of hopelessness. He is running out of water when he comes to the ghost town, which he thought was @CAPS1 because the next town was only a short ways down the road. However when he came to the next town and attempted to use the water pump, a rather hot, foul liquid came up instead of water. He was beginning to lose hope when he came to the Welchs factory, abandoned. All hope from him at that point was lost, claiming the birds will pick me clean, To the cyclist also was best, then he was saved by a bait shop. These features in the setting gradually emptied his hope little by little, until he came to the Bait shop after which his hope, but certainly not his fait in old men, was returned." 2 3 3 +7549 3 "In the setting of the essay; ""Rough Road Ahead: Do not Exceed Posted Speed Limit."" had a great affect on the cyclist. It made him even more determined to finish because the terrain was so hard to ride through. For example, ""At some point, tumber weeds crossed my path and a ridiculously large snake-it really did look like a diamond back-back the majority of the pavement in front of me, I eased past, trying to keep my balance in my dehydrated state. ""The author fully explains how no matter how bad the obstacles are he comes across he keeps trying to easy on by. The terrain affect the character by keeping him determined. This happens to many people in their sports. For example in football they take any problems and use them as reasons to push themselves harder to finish the game. " 1 1 1 +7550 3 "This essay takes place on a barren desert landscape.The setting being very hot causes him to get dehydrated faster. Also fones are scarce. In this place as he says sometime into free essay, the negg down was only @NUM1 down the road. This place also caused him to question what he saw thinking it might be just a mirage." 1 1 1 +7551 3 "The many features of the setting affected the cyclist in many different ways. The beauty of nature around him affected him by making him laugh. In the essay, it says, on a gorgeous day in June caused him to laugh. This shows, despite what happened, he was might are on a nice day outside giving him an optimistic attitude. Also, the beating sun affected him in a different way. It caused him to sweat and almost die of dehydration. growing realization that l could drop from heatstroke This shows that he was tensely aware that he could die from the suns might. So, the settings around the cyclist affected him in different ways." 2 1 2 +7552 3 "In the setting the conditions were brutal. The author experienced sedring heat, dyhdration and getting wrong directions. He experienced depression and mear death. He had an encounter with a big old snake and last he reached his distination. This affected him and he learned to bring a map and not to take direction from old people." 1 1 1 +7553 3 "The setting affected the cycist because it made his ride harder. For example, the weather was extremly hot. The sun was beginning to beat down. He says it didnt affect him, yet he was very thirsty and dehydrated so internally it affected him. Also, the weeds and snakes frightened him. tumbleweeds crossed my path and a ridiculously large snake. This could not of made his ride easier. Next the hills and roads, over one long, crippling hill. This proves how intense his ride was. Thats how the setting affected the cyclist in Do Not Exceed Posted Speed Limit by Joe Kurmaskie." 1 2 2 +7554 3 "The features of the nearby setting affect the cyclist in a bad way. The four main things that affect him are the heat, lack of water, lack of nearby buildings, and @CAPS2. For this cyclist one of the biggest problems is the heat. He says i was travelling through the high deserts of California in June. this shows that it is quite hot outside by the month stated. June is quite a hot month especially in @CAPS1 deserts. The second problem is the cyclist lack of water. He says throughout the story how thirsty he is and how much he needs to drink some water. When he reaches the end, however he finds water. The third problem is when he needs water, he cant find anywhere due to the lack of buildings. He pedals great distances trying to find towns nearby. Once he finds them, they are either ghost towns or are not useful at all. The final problem he faces is the @CAPS2. He says At some point, tumbleweeds crossed my path and a ridiculously large snake blocked the majority of the pavement in front of me. @CAPS2 is getting in his way and not helping him to reach his destination at all. Truly . the features of the nearby setting are affecting him in a tramatizing way, because so many things like heat, lack of water , buildings, and @CAPS2 are inches way." 3 2 3 +7555 3 The settings effects the cyclist because in California it could be really hot sometimes. The cyclist could dehydrate on a long trip and pass out really get hurt. Also there are a lot of hills which could be really hard on the cyclist. 1 1 1 +7556 3 "In the essay, the author added many features that could be picked all about the cyclist jouney. One feature was that his water supply was running short. This shows exactly how hot it was and how much he was drinking. Another feature would be the rusty old pipe with the bad water: This shows that that town had been abanodoned for years and the water supply wasnt up for drinking. The essay in all shows how hand it is in hot weather with lack of supplies and no sense of direction." 2 2 2 +7557 3 The cyclist in Rough Road Ahead: Do Not Exceed Posted Speed Limit. had to go through a hard time in the California desert. It was hard for him because it was very hot in the desert in June. That he was almost out of water; at first his ride was easy on flat ground. But when he came to rolling he had to use more energy and ???. 1 1 1 +7558 3 The features of the setting affected the cyclist because he was really thirsty and then the dry air with no town nearby made it even worse. There was also the bumpy roads and hills that were tiring and mad the cyclist even thirstier. Finnally there was the factory that made him think about juice and made him thirstier yet. 2 1 2 +7559 3 The features of the setting affect the cyclist by old people changing the definition of adont talk to strangers. The main character 1 1 1 +7560 3 The features of the setting affect the cyclist because real cyclist know what the speed is for a bike so you dont need to tell them. If a cyclist needed some dierections they would go to a gas station not to some old persons house. A real cyclist can go as long as they want before the stop because they are tired. A real cyclist knows haw to do tricks on a bike dont have to do them over and over again to be able to do them. A real cyclist doesnt have to train to go into a tourtement and win they must have to practice to be able to win. 2 1 2 +7561 3 "The setting in the story had a big effect on the cyclist. The hot deserted surroundings made the cyclist become tired or discoveraged. For example the cyclist observes, ""one ramshacure shed, several rusty pumps, and a comes that couldn't hold in the lamest mule greeted me. This sight was trouble."" This quote shows the old, beat down environment worried him. Also the author says, ""there was no one in sight, not a building, car, or structure of any kind."" In this quote, the cyclist realizes his isolation, and begins to become more determined to reach his destination. Realize, ever been lost, then youknow that it can be discouraging if there's no sign of life around you. All you want to do is keep going and hope you can find your way. This feeling is shown through the cyclistand now the setting around him affects his journey." 2 3 3 +7562 3 "The features of the setting affect the cyclist in many ways. One of them is that it was in the daylight and the sun bothers the cyclist. Another one is that because there was nothing around him, he felt frustrated. There was no one in sight, not a building, car, or structure of any kind. If something were there, he wouldnt feel frustrated and at least he would have more hope to find something. " 1 2 2 +7563 3 "In the narrative ""Do Not Exceed Posted Speed Limit"" by Joe Kurmaskie, the cyclist was affected in a deadly negative way by the setting. The cyclist is travelling through The high deserts of California in June. It was hot, so hot the infact, that the author realized he could drop from heatstroke at anytime. This unbearable heat, coupled with the crippling hilly terrain was enough to reduce the cyclist to a stale of severe dehydration. Obviously not exactig a positive effect. The swelting heat and merciless hills of the setting would not be quite so awful if there had been locations to stop, rest and replenish the eyeishes diverting water supply. However, There was no one in sight, not a building, or a structure of any kind The cyclist was incomplete isolation for over @NUM1 miles of arid desert, the sweating sun heating down upon him as he toiled up steep unyielding hills clearly the setting was affecting the cyclist in horribly negative way." 3 3 3 +7564 3 "When riding a bike for a very long time with no water is bad but is even worst when your surroundings are worst. For example, when the cyclist has no water it is a day with nothing around him to help. Also with no water he could pass out & get dehydrated. When he finds no one to help & nothing around him he sucks on a pebble to keep his mouth hydrated. Therefor you should always check you destination on a bike before just going for it." 2 2 2 +7565 3 "It is very difficult to be outside in heat, let alone advise from old folks and riding a bike. If it feels like it is @NUM1 out sides, you dont need to be out there. Doesn,t matter how long you are outside for, a heatstroke could come at any body fast than they can count to @NUM2." 1 1 1 +7566 3 "On the way to @CAPS1 the cyclist was riding through dry, hot weather in rough terrain. This was making him tired and dehydrated. Half way throgh his journey he couldn't see anything for miles. That must of been discouraging. All the way there he was dehydrated and when he found water it was @NUM1 degrees @CAPS2 because of the heat." 1 1 1 +7567 3 "Hot, bumpy roads, no shade-all are things that affect the cyclist on his journey. He was riding in??? the and then the sun started beating down on him and he said it felt like the desert, considering it was so hot. The road was fine at first and than he get a while down the had and it really started getting rough and hard to ride on. The part where he has no shade has to suck because he has the sun beating down on him all the time. All are reasons why the cyclist shouldnt have taken directions in the first place." 2 2 2 +7568 3 "The setting of Rough Road Ahead: Do not exceed the Speed Limit effects the cyclist in many was. The words high deserts of California in June, from the story show that it is very hot and dry. The cyclist get's very tired and in the desert there aren't big ponds to get water out of, so if you dont have water you dont have anything. Also the cyclist suffers the pain a difficulty of having to drive on, over and down rough terrain. In the story it is said there was a sign that said Rough Road Ahead. There were also obsticals such as tumbleweeds and snakes he had to get around. The dry, rough, dangerous setting put the cyclist life in danger, but because of dedication he got through it." 2 2 2 +7569 3 "The features of the setting in Do Not @CAPS1 Posted Speed Limit affected the cyclist. The text states, ""Flat road was replaced by short, rolling hills,"" (Kurmaskie @NUM1). The flat road that was easy to bike on had changed to many hills that made the cyclist's job alot harder. The biker was negatively affected by this setting because it contributed to his rough times and caused him to lose hope." 2 2 2 +7570 3 "In the story Rough Road Ahead the cyclist is affected by the features of the setting in many ways. One way the cyclist is affected by the features of the setting in many ways. One way the cyclist is affected is when they have to cross the hills and plains. The hills make it very hard to pedal when going up hill. Another way the cyclist is challenged is when he is almost out of water. They need water to survive especially during their long bike ride. Lastly, the heat the cyclist must endure also affects them. The heat makes it hard to stay focused on making the long journey." 2 2 2 +7571 3 The features effect the setting of the story in a big way. At the beginning of his ride there are people around and he has no troubles. After he talks to the old men and starts on his ride to the @NUM1 town there is no one around. There are no buildings in site at all and no source of water. Since there was no one around his confidence of actualy completing the trip begar to go down. Once he arrived at the first town he noticed that it was an old town and no one was there anymore. This made him mad and his confidence dropped a lot. Once he reached the next building he noticed that there was no one there either and then thought hed never make it and that he die. Once he reached the final place it was a more occupied setting. There were people around. He then began to feel relieved that he could get water. The setting with no one around make him lose a lot of confidence. 3 2 3 +7572 3 "The features of a setting, such as terrain and weather greatly affect the cyclist who is biking in it. The features of a setting can make the cyclists trip either easier or harder. Weather can make them use up their water faster or slower, rain as bad road conditions could force a cyclist go slower. In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, the cyclist is slowed down and more fatigued because of the features of the setting he was in. The lack of water and settlements slowed him down. Rough roads did as well. Hills and animals on the road slowed down the cyclist even more. The features of a setting can help or hinder a cyclist, and in the case of the one in Rough Road Ahead: Do Not Exceed Posted Speed Limit, the features seriously impared his bike ride." 2 2 2 +7573 3 "The feature of the setting affect the cyclist in many ways. It it was a straight road, it would be smooth sailing. If the road was bumpy, hed jump up and down a little. If he was riding in the woods, it would be cool and a little dark. If he was riding in the desert, it would be very hot and bright." 1 1 1 +7574 3 "The features of the setting in Rough Road Ahead: Do not exceed posted speed limit greatly affect the cyclist. Im sure that the heat makes the cyclist more thirsty, and heat can also drain energy extremely fast. Being in the california desert in the middle of June does not sound like an enjoyable time to be riding a bike. When the cyclist got tired and exhausted from not having any water, Im sure that riding past all of the empty land had an effect on his attitude. I think that seeing a building made him get excited, and then when he found out that it was nothing more than an abandoned building, his spirits greatly dropped. He probably felt that he couldnt continue for very much longer simply because all of the buildings he came across were empty, or abandoned. When the cyclist reached the bait store, he probably felt much better, and very relieved to have gotten there before he had a heat stroke." 3 2 3 +7575 3 "When the cyclist passed through the old towns the old man told him to, the setting played a big part in making his situation harder to overcome when he passed through the first abandoned town, the water source was dry and empty. The text says ""pumped the handle for several minutes but the water would not cool it tasted like battery acid. The second drink source he passed was on abandoned @PERSON1s Juice factory. The text says,a sand blasted picture of a young boy pouring a refreshing glass of juice into his mouth. These two objects made his situation mentally harder to get through because he was so close to what he needed numerous times, then it was taken away." 2 3 3 +7576 3 "The cyclist is affected by the change in terrain from flat to hilly, the elderly mens directions and most importantly his thirst. He tries to save what little water he has left for time when he really needs it. He looks for a place to cool off and get water, which he finally does in the end. Hes also a little bit angry and disappointed of the old mens directions. Hes really going a lot more miles then he should be according to the directionsand he's beginning to wonder if theyve lost it. " 2 2 2 +7577 3 "There are many different features such as the weather, road condition, and how the person is feeling. The weather can effect if it is rain or weather the road are messed up he could get a flat. The way that the person is feeling is a big part on weather they try hard or they do not worry about it too much." 3 2 3 +7578 3 "According to the essay features of the setting affect the cyclist. If the cyclist is in the middle of a hot desert in June with no water, the cyclist will become excessively thirsty the longer they go. For example; the author states I had been hitting my bottles pritty regularly, and I was traveling through the high desert of California in June. The terrain changes to short, rolling hills from flat land causing the cyclist to push herself to get the next town to get water. For instance; she states over one long, crippling hill, a building came into view. This cause the cyclist to use what they thought of as their last burst of energy to get down there, but the building was abandoned, thus making the cyclist feel let down. As the cyclist continued on a setting of a bait store came and the cyclist felt relief because now she could get water. These examples show the change of setting on the cyclists trip and how it affected her." 3 3 3 +7579 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, a cyclist was trying to get to Yosemite National Park. He followed the short cut that some old men gave him, instead of taking the longer route. These old men had no clue what they were realy talking about, so the cyclist ended up taking a path through more obstacles. When the cyclist was in need of more water he ran into ""several rusty pumps."" No water would come out of these pumps so he had no choice but to keep going @CAPS1 water. As he moved forwad in his travels he said that the Flat roads were replaced by short, rolling hills. @CAPS1 any water, he did not have much strength left to face rolling hills, but he had no choice. The cyclist had to go on for miles @CAPS1 seeing anyone or anything. There was noone in sight, not a building, car, or structure of any kind."" His troubles finally came to an end after getting directions from another man at a fish camp." 2 2 2 +7580 3 The setting adds a sense of ergancy. The cyclist is running out of water and he is the middle of the dessert. If he had been in the forest or the subburbs it would not be so grave. He talks about passing out and dieing. He exclaims it did nt really matter. I was going to die and the birds were going to pick me clean. 2 2 2 +7581 3 "In the story, do not exceed posted speed limit by Joe Kurmaskie the cyclist was affected about the road ahead. He took advice that he thought was right but it was wrong. So it took him off track of his good he was trying to reach" 1 1 1 +7582 3 "The way the settings affect the cyclist is very crucel. First, the cyclist took directions from someone who has not left thier porch in decades. So once he accepted the directions and used them problems occurred. One main problem is the cyclist has a lack of water supply. Also the cyclist has incounters with snakes. Another the directions where way off so he had longer to go then he thought. Also when he arrived from his journey he found a deserted town. So in conclusion the cyclest uses his own directions from now on." 2 2 2 +7583 3 "As the setting changes in the story, so does the cyclists narrators mood. His mood changes from happy and confident to indifferent and scared. At first the cyclist is so happy about Yosemite that he is just care free and no worries at all. He says that, I rode into the morning with strong legs and a smile on my face. Even at his first ghost town he just chuckled, checked my water supply, and moved on. After this point he could not be so care free. After this town he came to, One ramshackle shed, several thirsty pumps, and men. He said, this was troubling, it was very hot and he had been drinking his water pretty often. He said that, He failed on."" He started to get sort of scared he realized that he could, ""drop from a heatstroke."" He was scared that because of his idea to believe the old men he might possibly die. He finally get happy when he reaches the bait shop and he got his drink. From then on the stock to his map. His attitude changed greatly throughout the story." 3 2 3 +7584 3 "In Rough Road Ahead: Do not exceed posted speed limit,"" the cyclist is affected alot by his surroundings. He is leaving the old water pump for Yosemite. Not two miles flat road was replaced by short rolling hills. The speed limit was 55. I was doing a water-depleting @NUM1. This shows that as the terrain gets rougher and harder, how much harder it is for the cyclist to go on. Also, since he is already getting to the point at which he is getting dehydrated, it is that much harder for the already tired cyclist to go on any further more less make it all the way to Yosemite. That is how the terrain affects the cyclist. " 2 2 2 +7585 3 The setting affected the cyclist by making him very hot. He said he started sucking on stones because he heard that if you suck on stones it makes you not thirsty. He also said he might hit a bump and swallow one of the rocks. He said he wanted to swallow the rocks. The reason for that was that he was so hot. He didnt even no where he was goin. 1 1 1 +7586 3 "The features of the setting did not help the cyclist on his trip. First of all he was in the desert on a bike! Which helped him dehydrate faster. Secondly, the towns around the way had been abandoned, leaving no place to get more water and no place to ask for directions. Lastly there were no other people around so if the cyclist was to get into trouble, he wouldn't be able to find help. " 2 1 2 +7587 3 "The features of the settings effects the cyclist by many reasons such as; dehydration, the road my cause bike to stop working. Since there is a lack of water in the dessert it seems, the guy could get dehydrated easily. The intense heat can cause that to. The road that he is riding on my cause the tires to pop." 1 1 1 +7588 3 "The cyclist was eager to get to Yosemite park he listened to the old timers who havent left the confines of thier porches since Carter was in office. He went the way the old men told him to take. He went down a hill in to town which was empty into a hard road & snakes in his way then up a hill then went down the hill saw a abanded Welchs Grape Juice Factory. Then he saw a sign say Gary And Wilbers FISH CAMP-IF YOU WANT BAIT FOR THE BIG ONES, WERE YOUR BEST BET!. So then he runs into the bathroom & drinks from the sink. Before he got there he was getting thirsty & tired & when he saw the abanded building he saw a young boy drinking a juice he wiped his eyes to see if he wasnt seen a mirage. So then he sticks a few pebbles into his mouth. It read that sucking on stones help take your mind off thirst by allowing what spit you have left to circulate. Then he left then a stone went his throat. His troubles, thirst, & fear were all behind him when he saw that sign." 2 2 2 +7589 3 "The features of the setting affect the cyclist in many ways. One feature of the setting was the heat. It affected him by getting him dehydrated. For example the text states,The water bottles contained only a few tantalizing sips I could drop from a heatstroke This meant the heat was getting to him." 1 1 1 +7590 3 "The author made the setting seem long and unbearable, felt of undesirable heat and lack of water at hand. Specially in the way he kept describing the road with all these challenges that kept appearing like after @NUM1 miles to a town then @NUM2 miles passed that he, came to a park of ???. One ramshackly shed, several rusty pumps and a carrol that couldnt hold in the hamest mule greeted me.This sight was troubling. Then he went in a discharge, ""I was traveling strenght the high deserts of California in June. @CAPS1 ?? imagine, the heat, and unbareabalnes of the ??? journey still I face. @CAPS1 that bike seen endless.Then with a thrust gaining on him for example, ""I was doing a water-deplety 12 mph, sanctures life can seen be cruel. ""@CAPS1 him feel his constrain regrate on the journey @CAPS1 me feel his constrain sorrow for his endless journey he had to go through. Another example is, ""I riped the sweat from my eyes to make sure I wasn't a mirage"". Then, reaching this, the building abondoned years ago. @CAPS1 his journey seen hopeless and long had that make endless with first wave problems getting strength at him @CAPS1 his journey seen to be harder and filled with ?? hope as strenght left to finish his goals." 3 3 3 +7591 3 "In the story, Do not exceed postal speed limit, many features of the setting affect the cyclist. First and most importantly, he is affected by the people who live there. Never accept travel advice from a group of old- timers who havent left the confines of their porch since Carter was in office. This quote describes the feelings the cyclist has towards the old men. Because he listened to their directions, he traveled through ghost towns and hourly died from dehydration. Also, the lack of people and civilization affected the author. There was no one around that he could ask for help from. but on that morning it fit the traditional definition of a ghost town. Here, the author is trying to stop for water, but since no one lives in the town any more, he gets none. Finally, the lack of water has a huge effect on the cyclist. That smoky blues tune Summer time rattled around in the dry honey combs of my deteriorating brain. This describes how the author is really dehydrated and he feels like his brain is drying up. However, his need for water makes him more determined than ever to keep going until he reaches another town, or this goal destination of reaching Yosemite National Park." 3 3 3 +7592 3 "The features of the setting affect the man in many ways. One way is that when the man notices the terrain starting to change, he becomes more and more distrought. He sees the sign that sats Rough road ahead: Do not exceed pasted speed limit it is almost as if he thinks the sign is mocking him. Also, when the rider says In an @CAPS1 twist that should please all sadists he is telling the reader that this situation is very ironic and that he was expecting nothing." 1 1 1 +7593 3 "IIn the story I read the setting is a big factor to the affect of the cyclist for example it talks about how the cyclist sees the sign that says, Rough road ahead! Do not exceed posted speed limit. So the cyclist has to be cautious" 1 1 1 +7594 3 "The cyclist was is a horrible nasty environment for cycling, but the thing that really threw the cycle off was running out of water. There were no houses to refill his bottle or no one around to give him updated directions. From the heat made him drink more water and also harder to breath in extreme heat. Without those faults the cyclist would have been fine." 1 1 1 +7595 3 I think that the features of the setting affected the cyclist in many ways. For example he talks about things that he had to endure while he was riding. For example he had no water so he was parched. There was a huge snake that took up half of the road and there wasnt a building in sight. So the setting affected him with doubt but he had confidence of getting where he needed to get then when he got there it was a sign of relif. Thats how the setting affected was. 1 2 2 +7596 3 "The setting in the story affected the cyclist physically and mentally. They affected him physically because of the rough terrain and the heat because he was in a desert and in the mountains. Also because he didnt follow his plan on the map he had no cloe where he was and so I think the anxiety of the whole thing took a toll on his physical well being. It affected him mentally because every town he passed through, or every building he passed was deserted and he had no idea where any people were so that had to stress him out. This mentally messed him and he thought he was going to die, thats not good for anyone. I really think he should just do what he thinks is right and not listen to crazy old men anymore. Maps dont go crazy and they dont really get outdated, and maps dont lie to you so he obviously learned his lesson." 2 2 2 +7597 3 "Some of the features like the change in landscape affected the cyclist. Differing from flat land to miniture hills to highways is kind of hard to cope with, especially considering he was dehydrated and had no water." 1 1 1 +7598 3 "The features of the setting in the essay Rough Road Ahead. affected the speaker by presenting challenges such as dehydration, dangerous animals and rough terrain in order to teach him a lesson about following travelling advice from old men. In the essay, he starts out confidently, on his journey after following their advice, reasoning that the men sounded no sense of themselves when pointing out landmarks and spouting off town."" The setting changes from cool to dry and barren with then mention of tumble weeds, and even changed to dangerous with the appearance of a diamondback snake that blocked his path in the end the setting changes back to comfortable, allowing him to learn his lesson through the hardship of the features of the setting, and follow his own map from then on." 2 2 2 +7599 3 "The features of the environmental setting is affecting the cyclist. A setting is a certain time and place an event is taking place along with the setting their are features, which is the background description basically giving away additional information about the subject or idea. The features along with the setting are intefering with the cyclist by the hot temperature in Lodi, California making the cyclist or biker hotter than usualier as he heads in the wrong direction closer and nearer to the hot blazen scroaching desert. In addition to this he is running out of water and is beginning to get more and more exhausted from the heat plus he is starting to lose consciousness along with getting dehydrated. This is a major problem for the character because he is losing his sense of direction and because of this he is getting more panickly as his supply of water is running extremely low. A instance of the environmental setting affecting the cyclist is I eased past, trying to keep my balance in my dehydrated state. The water bottle contained only a few tantalizing sips. Wide rings of dried sweet circled my skirt, and the growing realization that I could drop from heartstroke on a gorgeous in June ""(Joe Kurmaskie, @NUM1)."" @CAPS1 example is This sight was troubling. I had been hitting my water bottles pretty regularly and I was travelling through the high deserts of California in June (Joe Kurmaskie, @NUM2). The hotness and heat had also increased the characters confidence in himself as he was getting more and more panickly. A instance of this is I began breaking the ride down into distances. I could see on the horizon, telling myself that if I could make it this far, Id be fine (Joe Kurmaskie, @NUM1). In conclusion, the hot setting in California had affected the cyclist in a number of ways it had exhasted his water supply and this caused him to become exhausted, dehydrated, and making him lose his logically sense to make decisions however his loss of sense of direction also gave him more self confidence as he stirved to the roads and serves town that was about twenty miles away in order to get water so that he @MONTH1 survive." 3 3 3 +7600 3 "The features of the setting affect the cyclist in the essay Rough Road Ahead by Joe Kurmaskie in many ways. One way the setting affected the cyclist way when it got hot and the rider was running out of water. another way the cyclist was affected by the setting was when he said he ""could die of heatstroke on a gorgeous day in June simply because of listened to some gentlemen who hadnt been off their porch in decades caused me to laugh. a third way the cyclist was affected was was when he went inside the bait shop and cooled down. lastly when he rehydrated himself in the so the setting was a main factory to the cyclist in the essay Rough Road Ahead by Joe kurmaskie on his way to Yosemite national park." 2 1 2 +7601 3 "The cyclist chose to ride through the worst terrain one can ride through. The cyclist rode through deserts and deserted towns. Thats when he started to get thirsty. At first he wasnt tired or thirsty because he was riding by cool trees and rushing water in the morning. Once he got to the desert part with no water source then he got thirsty and started to drink his water which depleted fast. The lack of a dry place can make you thirsty by itself but after riding a while it became bad. The setting had everything, to do on how the cyclist had no water and thought he was going to die from heatstroke. Thats how the setting affected the cyclist." 2 2 2 +7602 3 "The setting affected the cyclist mood in the story. The cyclist was riding rough terrain and rolling hills. This made the cyclist feel like his journey was hopeless. When the cyclist arrived at the abandoned @CAPS1 Grape Factory he felt on twist of many. He was extremely thirsty and there used to be a @ORGANIZATION1 build there when the cyclist was a the fock in the road, he thought he could get some water. When this failed the cyclist was even less determined. He felt like the world was against him." 2 2 2 +7603 3 "The settings effected the cyclist, because where ever he went it seem to never end. Like when he was riding along where the old men told him to go. He went through a ghost town like they said he would go through a town. Then he kept on going but it never end and the summer heat started to get to him. Like when he started to dehidade he this old juice factor and started imagening that he was drinking juice. So he started seeing things." 1 1 1 +7604 3 "As the author cycles through this shortcut, he is in a very dangerous setting. As said in the poem, he is in the high deserts of California in June. A desert makes the heat unberable for the cyclist. Its just sun, sand, and him. Then it tells the month summer of course makes the temperatures for the cyclist about @NUM1 almost maybe even hotter. This could cause him to drink plenty of water and almost lose all of his water supply. The water bottle contained only a few tantalizing sips. Then there is the distance of his ride. The author is always saying About @NUM2 miles or Twenty miles up the road. All of this hard work can cause heatstroke & kill him." 2 2 2 +7605 3 The features of the setting like the dessert the sun and abondered towns affect the cyclist alot. The dry dessert makes him feel as if he were riding forever. And probably makes him wonder if he is ever going to make it to a town. The sun makes hime even hoter not he already is makes him sweat more and makes him even more thirsty.The abandoned towns make him lose hope in finding water or even if he is ever doing to make to yosomite. The mood of this story goes from content to sad to happy. He is content after riding to the first town but then the rest of time towns are abandoned too and start to ran out of water an he thinks he is going to die which makes it sad. Then he becomes happy when he finds the bait shop an finds water. 2 3 3 +7606 3 "In Rough Road Ahead by Joe Kurmaskie, the features of the setting affect the cyclist negatively. The story takes place in June in California. This is a very hot time of the year in such a desert location. The heat adds to the speed at which the cyclist becomes dehydrated, as well as his inability to think as coheratly as he could had he not been in a desert in June. The cyclist is also travelling through desolate, an inhabited land. The author says, There was no one in sight, not a building car, or structure of any kind. This emphasizes the characters total lack of resources. There is nowhere within sight that he can turn to for help, water, food or shelter. The road was also rough, plagued with many rolling, crippling hills. Such terrain is much harder to manuver, especially in such a are state of despair. The setting of the story, ""Rough Road Ahead"" greatly impacts the cyclist." 2 3 3 +7607 3 "There are a lot of things that effect the cyclist, such as the heat, having no water, the rough roads and the long trip. The cyclist is out in a desert so it is very hot. The narriation says, and the growing realization that I could die drop from heatstroke (Kurmaskie @NUM1). This means that he or she was very hot and dehydrated. The roads were very rough, for example, ROUGH ROAD AHEAD: DO NOT EXCEED POSTED SPEED LIMIT (Kurmaskie @NUM1). The roads became, bumpy, and there were a lot of hill the cyclist had to go over. There was no water either. So he/she was running out of energy and it made it even harder. In the end the cyclist survived and drank a lot of water." 2 2 2 +7608 3 "The features of the setting affect the cyclist in a very harmful way. The hot temperature and boiling sun made the author hot and took his energy away quicker. The emptiness of the setting can make a person lose hope of finding any civilization. The narrator said, It was a sad, hopeless laugh, mind you...(Kurmaskie @NUM1). That is not the last of the harmful setting, the dry desert air has the biggest impact on his llife. The dry air makes him more thirsty for water he doesnt have making him dehydrate faster. The narrator saids, I was traveling through the high deserts of California in June (Kurmaskie @NUM1). The lonely and dreadful features of the setting the cyclist was part of made it so much worse that he had no water." 1 1 1 +7609 3 "In Do Not Exceed Posted Speed Limit, a cyclist follows some bad advice, which leads him on a tough ride through the desert with little water. The setting has a large effect on the cyclist because it causes him to be dehydrated, which presents the main conflict of the story. The water bottles contained only a few tantalizing sips, the author states when his fresh water supply begins to run out. Another factor the setting presents to the cyclist is the extreme heat of the California desert. This adds to the cyclist thirst and dehydration. The reader can tell it is unpleasantly hot when reading, wide rings of dried sweat circled my shirt, that I could drop from heatstroke on a gorgeous day in June The rough roads and challenging terrain also present a challenge to the cyclist that slows his advance to Yosemite." 2 2 2 +7610 3 "The cyclist is affected by the features of the setting. The cyclists has been pedaling his bike in the direction that the old men told him to go to get to Yosemite. Soon he is out of water and very tired and he believes he will die soon. But then he finds a fish camp, goes in the bathroom to revive himself. when he comes out a man is sittiNg on the porch. The author gets directios from him and is happy that he is on the right track again." 1 2 2 +7611 3 "There are many affects of the setting in this eassy that, that can be good and or bad. The setting is alone on a empty mountain road, with no house, no cars, no people. In now going to give you some good and bad effects. One good effect is that you by yourself so while you exercise you can relax and enjoy the energy. One bad thing is that what if you pop a tire or need help. You stock because theirs no one around. Another good thing is that you being by yourself, @CAPS1 any cars. You dont have to worry about getting hit so youll be able to just relax and enjoy the ride . Another bad thing is there is no water so you might want to bring plenty with you. So whatever you decide to do just be careful and think you idea thought " 1 1 1 +7612 3 The setting or environment the cyclist was in made him feel isolated from the rest of the world. He knew the was no turning back once he started his adventure. No one was their to help him. The environment made him to realize the many risk involved in this adventure. The knowledge that there is no help was his motive to continue on his long journey. 1 1 1 +7613 3 "The features of the setting make the cyclist feel hopeless after realizing he is not on a short cut. The cyclist has the ""growing realization that [he] could drop from heatstroke"" as he rides along. Also, the only building he sees for miles ""had been @NUM1 Welch's Grape Juice Factory."" The cyclist is driven deeper into despair and feels that all hope is lost when he sees this building. As he rides on, the song ""'@ORGANIZATION2' rattled aroung in the dry honeycombs of (his) deteriorating brain."" At this point, the cyclist believes his own death to be inevitable. He saysown death to be inevitable. He says with any luck Id hit a bump and lodge one in my throat when talking about pebbles he placed in his mouth. Finally, the cyclist reaches a small bait shop, and all hope is returned as he drank deeply from the sink. The desert setting, with its lack of water, shelter, and people was the cause of this mans concern and later panic about his own life. The hopelessness of this cyclist is much like the hopelessness of those in the @ORGANIZATION1, who trapped in a blizzard far from civilization, resorted to eating their dead just to survive. While the @PERSON1 @ORGANIZATION1 went to extremes for their survival, their setting caused them to feel the same hopelessness as the cyclist." 3 3 3 +7614 3 "In the essay Do Not Exceed Posted Speed Limit the features of the setting affects the cyclist because he has to cross different types of land marks. First, he got information from the old people. For example, when he showed the map to the old people their only going to know the old short cuts not the new ones. Second, when he ran out of water. For instance, when the cyclist ran out of water he had to climb hills and that tired him out. Plus when he tried to get water from that one thing only hot water come out last, when he finally got to a story the old guy had a map. For example, when he asked the old guy about the place he was going to he said I have my own map. So therefore he knew he was in trouble. In conclusion, this is how the features of the setting affects the cyclist." 2 2 2 +7615 3 "The features of the setting effected the cyclist in many ways. The setting was verry hot and there were a lot of hills. The cyclist had been riding up and down hills all day and it took a lot of energy when he saw the building that he thought could help him he said, ... last burst of energy, i mane'uvered down the hill, By saying that it showed that the setting of where he was contained a lot of hillsy and they effected him by taking up all his energy. That is how the setting had effected the cyclist." 1 1 1 +7616 3 "In the short story Rough Road ahead: Do Not Exceed Posted Limit, by Joe Kurmaskie, the features of the setting affects the cyclist. When at the old codgens house, he is confident in himself, because they have told how of a shortcut to Yosemite, giving that confidence he needs, as he leaves, he is still confident, these as the settings changes, so does the mood of the cyclist. after ""about @NUM1 miles into te pedal"", the cyclist arrives at the first town, he has despair because it is a ghost town,"" still having confidence, he lack of water, he continues on. after a couple more miles, he comes to small fork with a pump. Thinking its cool, water he goes and pump, he finds out it is @NUM2@CAPS1 and tastes like ""battery acid"". Now he desparate, no water, dehydrated, and no towns around, he began to pedal and pedal, hoping to find a town around. When he does find a town, with water, the setting to relieving and better for him because he find water. In the end, the setting effect how the cyclist back against confident, then desperate as water is used, than relieved when water is found." 3 3 3 +7617 3 "This would be a hard risk to begin with, but the cycalist is taking it in the desert. As we all know, the desert can get boiling hot, so a bike ride could get enjoyable quickly. Also, when the only thing you see for miles is rode, sand and an empty factory, your moral can easily dray quickly. Its just an overall way setting to give lost in." 1 1 1 +7618 3 The effect of cyclist is very and treding becose alot of thing can go worrs like you can feel so hot have and water wouldnt cool down it didnt matter. But when drop in you mouth had the flavor of battery acid. He or anyone could just drop from a heatstroke on a gorgeus day in June. So hot that you are seeing thing like a town hot pouring a refeshing glass of juice into his mouth could still leave. 1 1 1 +7619 3 "The features of the setting dramatically affected the cyclist. He started out in a confident mood, until he arrived at a town that was deserted. His confidence was still pretty high but not like it was prior to coming upon the ghost town. Twenty miles up the road after that, he came to a fork in the road which contained a ramshackle shed rusty, unclean pumps, and a small corral. The desert was hot and his lack of water was dehydrating him. Paragraph @NUM1 states, This sight was troublingI had been hitting my water bottles regularly, and was traveling through the high deserts in California. With little water and a short energy supply he was getting tired and dehydrated quickly. The land started turning into rolling hills and caused him to become even more exhausted. His mood had gone from confident to hopeless. He even planned on changing a diary entry in case he died of heatstroke. The features obviously greatly affected the mood of the cyclist. Sometimes disappointment can come from taking the so-called easy way out. " 1 1 1 +7620 3 In the story the setting affected the cyclist all through the story till he arrived at body and wilbers fish camp. As the man rides his bike for a while he is of but as he road into the first town it seemed to be a ghost town. As he pedal on The sun was beginning to beat down but I barely noticed it. At that time the wheater is affecting him a lot but he keeps Yosemite cool pines and rushing rivers in his head He also only had only a few tantalizing sips left in his water bottle while going up a big hill. 2 1 3 +7621 3 The setting of this Essay is to tell cyclest were to go without getting them lost and to never take advice from old people. 1 1 1 +7622 3 "The features in the setting greatly affect the cyclist, the setting was hot and rough terrain and he was tired and thirsty. The cyclist said, over one long, crippling hill, a building came into view. He this means that he needed water so much and the hill was so big that he needed water. Also he says, Summertime rattled around in the dry honey combs of my deteriorating brain. It is summer time where he is riding and to keep his mind off of his thirst, he hums the song summertime He wants to show that the heat cannot overtake his body. Also he says, At some point, tumble weeds crossed my path and a ridiculously large snake. He is saying that the terrain is deadly because of the snake that passed by him. He needed to show with all objections, he could overcome anything. As you can see the setting greatly affected the cyclist." 2 2 2 +7623 3 "Many things can affect a cyclist. But in the story three main features of the setting affected the cyclist the most. While the cyclist was riding it was very hot. We know this by looking back at the text. It gives us this quote, That I could drop from heat stroke on a gorgeous day in June. Because it was hot. This could make the cyclist thirsty. Another feature of the setting was the multitude of hills. This would create exhaustion. We know their were many hills because in the text it says. Flat road was replaced by short rolling hills. Going over all those hills can really tire someone out. A third feature of te setting would be nature. Nature can affect us in many ways, by weather, by terrain, as in this case by animals. In the story the cyclist comes upon a large snake. This making it dangerous. The setting can affect anything. It would have been a totally different story if the cyclist had been in the summer during @DATE1, not June." 3 3 3 +7624 3 "In the essay Do Not Exceed Posted Speed @CAPS1, the setting is used to alter the cyclists mood and as a reflection of his situation. For example, the statement the cool pines and rushing river of Yosemite had my name written all over them helps describe the cyclist situation. The idea of lush, cool water vegetation gives the @CAPS4 hope during his increasinlgly hellish trip. The beauty of that setting also reflects on the comfort that would come from reaching Yosemite; the good setting equal a good out come. Later on, the cyclist comes across one ramshackle shed, several rusts pump, and a corral that couldnt hold in the lamest make. This is a depressing setting symbolizing a complete loss of hope. And inteact at this point the cyclist becomes troubles to his situation. While pedaling through desert, the cyclist becomes even more factory when tumble seed, which is always a symbol of a deserted area, cones by. The nile of setting to affect and mirror mood is nothing new. There are many examples of this literary technique throughout history. For example, in his story The @CAPS2 of @CAPS3 @PERSON1. @CAPS4 @PERSON1 was a deslated land filled wild beast to symbolize and cause @PERSON2 to change his personalith surrounded by uncivilized people and creating @PERSON2 tears of his clothes and hunt like a dog. The setting of a desert in the uncultured. Part of colonial simultaneously cause and reflects on this change. The setting in the essay Do Not Exceed posted Speed Limit is used as an important for character development. " 3 3 3 +7625 3 "The features of the essay explain how the features of the setting affect the cyclist for many reasons. When the author writes tumbleweeds crossed my path it shows that he is most likely in the middle of nowhere. This is true because tumbleweeds are usually signs in movies and t.v. shows that the place is deserted. Also, when the author writes the growing realization that I could drop from heatstroke and when he writes a ridiculously large snake show the growing danger that he is getting himself into. This is true because the snakes could get a tany time or he could just collapse from the lack of water and die. Lastly, the name of the store is revelant because it is a fish bait store and he is thirsty. This is revelant because fish live in water and he is thirsty and seeing the sign relieves him completely. Therefore, the features of this essay explain how the features of the setting affect the cyclist." 3 2 3 +7626 3 "The cyclist is faced with many challenges on his journey to Yosemite, one of which is travelling through the California deserts. This was quite a challenge because a desert is very hot and dry, plus the author was riding his bike, making himself more thirsty and hot. He also encountered a big snake that appeared to be a diamondback which he avoided even though it almost covered the road. The author also had to deal with rough terrain when he rode his bike through the hills. The biker met the challenges and progressed through them with bravery." 2 2 2 +7627 3 "In the essay Rough Road Ahead: Do not exceed Speed limit this many different settings took its toll on the cyclist. For example in the beginning he started out with a nice smooth ride. But it was very hot. Then he began to get into a hort rolling hills which were taking thier toll on his legs. Then we entered into a rough are where he had to be more careful. The roughness prolly wore him out from all the bumps and bounces. He went through a lot on that bike trip, who know he @MONTH1 have never made at back to where he was staying." 1 1 1 +7628 3 "The features of the setting affect the cyclist by making it harder for him to pedal and complete his ride. For example, flat road was replaced by short, rolling hills. This should make his trip harder because instead of being able to pedal at one consistent rate the whole time, he would have to start pedaling harder and easier over and over again, using more energy. Another example is, through the high deserts of California in June. This makes it harder for him because he has to do all his work in a scorching summer heat. Finally, the first three stops he made had no where to fill his water bottles, take a drink, or cool off. This would make it hard because he is becoming dehydrated during his whole trip. These are some features of the setting that affect the cyclist by making his trip harder." 2 2 2 +7629 3 One feature that effected the cyclist was the rolling hills. The text states two miles into the section... I noticed the terrain changing 1 1 1 +7630 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit, the setting affects the story very much for many reasons. First, it is in the summer, so it is very hot. Also, it is in the desert in the west, so there is a very warm climate already. Third, there is not any civilization on the shortcut he follows, so there is no way for the author to get any water to replenish his body with. This is how the features of the setting affect the cyclist in the story." 1 2 2 +7631 3 "The setting affects the cyclist a lot, because is it was windy too it would be had for the cyclist to control the bike. So is too has a lot as buildings and people outside their would be a lot as traffic so they would not be allowed to let the cyclist go there so the cyclist would has to turn back. Then if it was a clear road and nobody was there ad no bulidings or houses were there then it wold be an easy ride for the cyclist. So as you can see the setting affects the cyclist in many ways." 0 1 1 +7632 3 "The cyclist was affected majorly by a few dreadful parts of the setting. In the beginning, when it was not as hot and he had plenty of water, the cyclist was absolutely fine. As the day went on, he felt the heat bearing down on him. He drank all his water, and now he felt desperate. His mood changed with the setting, and he was extremely happy once he reached Gary and @ORGANIZATION1. Also, this cyclist decided to blame the old men for giving him bad directions when he was in trouble, but he thanked them once he realized they were correct." 2 2 2 +7633 3 If its a good day the cyclist will want to rid. If it is a bad day then they will not want to but probably will. 3 3 3 +7634 3 "In the essay, Do Not Exceed Posted Speed Limit by Joe Kurmaskie, features of setting affect the cyclist because there is old people that been around for along time and you cant ask for advice because theyre to old old to give information and wouldnt know what their talking about. A better piece of advice for the solo cyclist would be, Never accept travel advice from a collection of old-timers who havent left the confines of their porches sine Carter was in office. That is the features of the setting and examples from the essay." 1 1 1 +7635 3 The features for the cyclist in rough road ahead is not the kind lD war a be in at forts. I thought it was going to be a scenery story but it turns out he want that prepared. He took directions from some olden guys who havent left their house sense carter was in office. He was a bike peddaling threw the California desert with the things you can carry cause your on a bike. He ran out of water and could of got heatstroke or colapsed in the middle of nowhere with no one around to save him. So the heat gone drive you insane and make you thirty and you have a bite. The conditions this biker is in hormone and I dont think he was prepared. Always stick in your gut. 3 2 3 +7636 3 "In the story the fact that no one was around, there were no buildings, he had no water, and was lost. Had a negative affect on the cyclist, he was doubting himself the whole time. Although he did perserver and made it through the tough situation he was in." 1 1 1 +7637 3 "In the story rough road ahead the setting and the features affect the cyclist. For example in the story he says Id read once that sucking on stones helps take your mind off thirst by allowing what spit you had left to circulate. This shows that the features are rough because he would most likely not be that desperatly thirsty unless it was very hot out. The setting and features of this story is it takes place in California, on a hot day. Another quote that could support the question is when the author says, I wiped the sweat from my eyes to make sure it wasnt a mirage. This shows that it is hot because he is sweating. This also could show that it is hot because he thinks its a mirage, and people usually see them in the desert, where it is hot." 2 2 2 +7638 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit by Joe Kurmaskie, the features of the setting affect the cyclist in many ways. To begin, the as the cyclist rode on for the first miles, he did not see anything in sight. This made him less determined to reach his goal. Then, in paragraph @NUM1, the cyclist saw a building which helped him to gain strength to reach his goal. The cyclists determination went down as long as he was riding. But then at last he came to a building that gave him relief and more confidence in himself." 2 1 2 +7639 3 "The features of the setting affects the cyclist by him dehydrating and running out of time and energy. I eased past trying to keep my balance in my dehydrated state This quote proves the dehydration of the rider. The glowing realization that I could die from a heat stroke, this quote proves the time and energy of the rider is running out. These ideas and quotes show the features of the setting of the cyclist." 2 1 2 +7640 3 "In the story Rough Road Ahead the author takes a trail he had previously heard about. After the ride didnt turn out to be what he expected it to be, the setting began to set in. The aridity of the climate would cause the author to have to struggle against himself and the conditions around him. Also his lack of water was a problem to begin with. Also his lack of water was a problem to begin with but the scorching sun would make him become dangerously dehydrated." 1 2 2 +7641 3 "The cyclist runs into some pretty tough challenges. The real vies of the setting affected him, because there was so many optical that he had to overcome, for example, he got directions from some old men who move then lively didnt really know what they were talking about. Then he ran out of water so he had nothing to drink and the road started to get bumpily and he saw snakes. There were no buildings nor cars around so he had no way of asking anybody for help if needed. He came up on an old factory, that was thought to be the Welchs Grape juice, factory, but was abandoned and looked like it had been for a while, towards the end he found this fish came where he finally got water and was around people. These different optical affected his mood and how determined he was." 3 2 3 +7642 3 "The setting in Rough Road Ahead: Do Not Exceed Speed Limit has a great effect on the main character in the story. In the beginning of the story, he passes the first town and continues riding his bike, following the directions some old folks gave him. The cool pines and rushing rivers of Yosemite had my name written all over it. His mood at this point was already confident, but this adds to it, with words like rushing being encouraging to him. Then, he continues moving on the road. Not two miles into this section of the ride, I noticed the terrain changing. At this point, he is becoming unsure of how good the directions he obtained really were. Once he is already tired, rolling hills isnt what he wanted to find, so this adds to his doubt. Further along, he said, There was no one in sight, not a building, car, or structure of any kind. This adds to the despair he was feeling, because he feels he is going to die in Yosemite. Not seeing anyone was probably extremely discouraging, so the setting really affected him. Then he said over the long crippling hill, a building came into view. It is at this point that he uses the word crippling because he is just about exhausted and cant go any further." 2 2 2 +7643 3 The features in the setting greatly affect the cyclist. He is riding through this deserted and beaten up town that makes him feel weird. After that he starts to ride through the desert when a huge snake gets in his way and scares him even more. When he arrives at the abandoned juice factory he is almost completely out of energy and almost cant go on any further in his journey until he finally arrives at the bait shop. Most of the features in the setting scare the cyclist but they all affect him. 2 2 2 +7644 3 "The cyclist was begging to feel that death was coming his way as he continued withought a building in sight. This made him grow histerical over the situation, and still have enough energy to feel sorry for himself. Then when he finally did see a building he thought it was a mirage." 1 1 1 +7645 3 "The location of a cyclists ride affects the persons attitude and strength. If the road is full of hills, it takes a little more strength to maintain speed. When put in this situation, Kurmaskie writes It was a sad, hopeless laugh, mind you, but at least I still had the energy to feel sorry for myself. This shows how one gets drained by hills. Also, being in a desert situation can weaken a cyclist due to thirst.The cyclist in the reading was desperate enough to try pump water that looked brackish. So, setting can break a cyclist." 2 2 2 +7646 3 The setting in the passage is working against the cycler. Hes running low on water hes almost dehydrated and the weather were hes at is very very hot and he cant see a town for miles. 1 1 1 +7647 3 "The features of the setting affects the cyclist because it was really hot out, he had very little amount of water, and a long way to go. The temperature was so hot, the cyclist said he felt dehydrated. He also had to go over a lot of hills and go through deserts to get where he needed to go. He took a shortcut but it ended up taking longer and he got dehydrated. This is how the setting affected him." 2 2 2 +7648 3 The features of the setting affect the cyclist in the good way. For examples he would be in good shape because cycling is a sport. He would be rich because he would win the contest of cycling. 0 0 0 +7649 3 "In the essay by Joe Kurmaskie many obstacles are caused from the diffrent settings. For example, the hot temperature caused the character to get dehydrated. He recalled I eased past, trying to keep my balance in my dehydrated state. This caused the loss of determination, which led to him lossing his consciousness. The hills he had to cycle also effected him. They caused him to become tired and weak and to lose his determination, as well. Just like the temperature problem, the loss of determination could eventually make him lose consciousness. He said if it looked like i was going to lose consciousness for the last time. " 2 1 2 +7650 3 "The setting of the story had effected the cycles becuse if it was sub earbs he could have stoped any where and got water but the plot was in a middle of a desert and all he could do is keep rolling and hoping to find some water For example, he had to go @NUM1 miles to get to the next town to get water and if he was not in the desert with hills he could have made that in no time at all " 1 1 1 +7651 3 "The cyclist was affected by many features of the setting. The flat road soon became bumpy hills, which were made harder to cycle because of lack of water. The hot desert sun and lack of towns and people also made the journey difficult." 1 1 1 +7652 3 The features of the setting effect the cyclist because it is to hot. It is hot enough that his water tasts like battery acid. Then he has to deal with difficult trails breakway he said old-timers who havent left the confines of their porches since Carter was in office. This is sayin that the old-timers gave him old directions. Plus what made the setting even hotter was he has been cycling nonstop. Then when he was riding he said The cool pines and rushing rivers of Yosemite had my name written all over it. With him thinking about this it made him forget about the heat. This was why the setting was affecting the cyclist. 2 2 2 +7653 3 "There are many reasons as to why the features of the setting affects the cyclist. One reason is because it is so hot, I know this because it was sammertime in the California desert. Another reason is because the road was very rough. I know this because of the sign that he saw that said Rough Road Ahead; Do Not Exceed Posted Speed @NUM1). This tells you that the road is very rough. And being that he is on a bike rough roads are not very good for him. Another reason as to why the setting affects the cyclist is that there is no one to get directions from. There is no one around to give him a drink of water. These are few of the many reasons why the setting affects the cyclist." 2 2 2 +7654 3 "The setting of this story is outside. Yosemite is outside riding her bike. She is around hills, no water, and very hot land. You know that she is around hills because she says to herself, I maneuvered down the hill. You also know that she starts of around no??? ???good water. When I tried a drop or two, it had the flavor of battery acid that shows the water was bad. Also the land is very hot because it says in the??? ???of two hundred degrees. Yosemite starts off bad then ends up learning to stick to it and never give up. Yosemites biggest problem is her lack of water due to the fact that it is hot outside and the water she had was bad, tasting like battery acid. " 1 1 1 +7655 3 "There are many things that could affect affect the cyclist. Like when they said , tomble weeds crossed my path is a ridiculously large snake. @CAPS1 her example would be when they said Not two miles into this next section of the ride I noticed the terrain changing. Flat road was replaced by short, rolling hills. That is how the features of the setting affect the cyclist." 1 1 1 +7656 3 "The stoy of the cyclist features of the setting affect of the cyclist, The cyclist had to go thoug a lot "" The speed limit was @NUM1. The was doing a water depleting @NUM2, Sometimes life can feel so cruel. The cyclist love ride their bike they enjoyed the serenity of an early summer evening"" to cycling." 1 1 1 +7657 3 "The features of the setting affect the cyclist. First, the river and the pine trees The cool pines and rushing rivers of Yosemite had my name written all over them"". Thinking about that helped the cyclist keep going. Second, the road was getting harder to travel. Flat road was replaced by short, rolling hills"" and a sign on another road said rough road ahead The roads made the cyclist work harder to get to Yosemite National Park. Finally, the cyclist's water supply was running low. the water bottles contained only a few tantalizing sips. Not having a lot of water is really bad when your outside in the heat and the cyclist had no idea where to find more. The towns the cyclist ran into were abandon or ghost town. The cyclist had nowhere to go to get help. This cyclist faced many problems during his bike ride to Yosemite national park." 2 3 3 +7658 3 "The older men gave him directions that were acctully really bad. Nature wasnt on is side thats for sure. First of all he ran out of water because of the heat. Secondly a snake blocked his path and he didnt want to tempt it. Thirdly he became so overheated that it was possible for him to suffer a heat stroke in the middle of nowhere. Also he kept going to abandoned buildings. It was so bad that the stone relied on for his thirst got stuck in his throat, he was then lead to a bait shop that was absolutely in the middle of nowhere and he had no way of getting home." 2 1 2 +7659 3 "The features of the setting affected the cyclist. The dry desert affected the cyclist because these was no water and the cyclist was dehydrated. The strong heat, because the cyclist could bare had a heat stroke. The animals because the snake could have killed the cyclist and these was no one in miles to help. In the story it says, These was no one in sight, not a bulling, car or structure of any kind, If the cyclist had needed help then the cyclist could most likely have died. if I was the cyclist, I probably would have given up by then but Im glad the cyclist didn`t. The features of the setting affected the cyclist because of the many things that could make happened to him." 2 2 2 +7660 3 "The features of the setting that affected the cyclist was the heat because he was getting lost and he was slowly running out of water. The cyclist said, That you should never accept travel advice from old timers that havent left their porches since Carter was in office. This means that because the cyclist followed their advice he got lost in the desert and was running very low on water. He was thirsty that he put stones in his mouth to keep him from thinking about water. In the end the cyclist learned to trust the map and the signs instead of listening to really old people who havent left their homes in years." 2 2 2 +7661 3 "The setting of the desert is a hard setting to be in with no water or help. If the author would have been on a population trait with water fountain and shade, he would have been fine. But, he was in the desert no one around, hot, dry, no water, and no shade. tumbleweeds crossed my path (@CAPS1 @NUM1). This dicride his loneleness because no one was in the desert to help him. The setting could have killed him if it was not for the fish camp. The setting had a huge affected on the author." 2 2 2 +7662 3 "The feature in the short story affect the cyclist because with no towns around there is now water. In the story is says, The water bottles contained only a few tantalizing sips. This means the cyclist was short on water and needed to find a town soon. Cycling in the desert and up down hills made it harder and hotter. The heart could cause dehydration or a heatstroke because it says, and the growing realization that I could drop from heatstroke the buildings the cyclist did see were not any help to him because they had no water. Eventually he came to a fishing camp and found water in the sink of the bathroom. The story says, I stumbled into a rather modern bathroom and drank deeply from the sink. This is where the setting changes because the cyclist found cool water finally." 2 2 2 +7663 3 "In Rough Road Ahead: Do Not Exceed Posted Speed Limit, the author faces many obstacles because of the different terrain changes on his journey to Yosemite National Park. Taking advice from a group of old men, he headed to his first stop. The old men said he would see a town but what he really saw was a sort of ruined ""ghost"" town. Then he came to a fork in the road and was running out of water. He had been riding on flat road when the terrain dramatically changed. It became hilly and very inconsistent. This sudden change in terrain caused him to get more tired, thirsty, and hot. The cyclist then came to a huge hill and, using his last bit of energy, rode down. He was exhausted. All the terrain changes not only changed the cyclists physical state, but his mood and determination as well. " 3 2 3 +7664 3 "The setting affect the cyclist in many ways. ""The journey nass make an snake this quote and that there made it seem like he is in the middle of know were and is ulcoming no plass because the man on the pourch said it would not be to far. The first town also was empty and when saw the town he was excited to go and feel a little out when he got closer he realized that the town has been abandoned this whole time so he was forced to keep going out the empty town made him feel almost hopless. In his attempts to make it to that next town, that how the setting mos affected the cyclist in the way that it did." 2 2 2 +7665 3 The setting of the road affected the cyclist in many different ways. Because there were no towns on the road it made it very difficult for him to find water which led him into a dehydrated state. The old guys had sworn the next town was only eighteen miles down the road I would conserve my water and go inward for an hour or so. The rolling hills of the road were making him use more energy. Because there was no buildings for miles be broke the ride into short distances 2 1 2 +7666 3 "The features of the setting affect the cyclist in so many ways. Some ways the cyclist was affected is, the lack of water was the biggest problem he had. The group of the old guys that gave him directions werent a big help at all. The men gave the cyclist directions be what they remember when they were younger in age. The cyclist knew not to take directions from the old men, but they seemed so sure about what they were talking about to him. The cyclist first had determination to get to his destination. As he begin to get hotter and more thirster into giving up. As soon as he was about to give up his troubles, thirst, and fear were all behind him now. He stumbled across water." 2 2 2 +7667 3 "The features in the setting affect the cyclist in many different ways. One way is he is round stuck with only a little bit of water. The water bottles contained only a few tantalizing sips.(Kurmaskie). Also the cyclist was lost because of the old men directions that got him know where because there directions were out of date. Never accept travel advice from a collection of old-timers who havent left the confine of their porches since carter was in office, (Kurmaskie @NUM1). He was giving bad directions and wasnt to pleased. Therefore the cyclist went through some though times." 1 2 2 +7668 3 "Different features of the settings affect the cyclist. The setting of the story, which is based in the desert has a negative affect on the character. The desert land is baron, leaving him only with his small supply of water. During his journey he runs out of water causing him to lose contact with reality. The extreme heat in the desert causes him to begin to hallucinate. The cyclist begins to see a grape juice factory, which interrupts his trip. To his dismay, it turns out to be a no more than a mirage. The lengthy road also affected the trip. The length and roughness of the road had worn the cyclist down." 1 1 1 +7669 3 "The features of the setting affect the cyclist because he thinks after a nice afternoon in a nice campground a shortcut to his next destination would be very nice. He thinks the shortcut will be a nice way to relax than to take the original longer way to Yosemite. But the trip he makes changes his mind a lot. In the essay the narrator is talking about what the old guys had told him. He says, The old guys had sworn the next town only eighteen miles down the road. I could make that. I would conserve my water He did conserve his water but the town was very old and didnt have any water for him to drink. So throughout the essay the narrator went without water until he got to a factory, got some water to drink, and got new directions. The trip was very different from what he had expected. It was more depressing." 3 3 3 +7670 3 A response that explains how the feature of the setting affected the cyclist. Would be that in the setting in the setting affected cyclist because for one the features of setting was based on something else. So that would be a reason how it would be affected. Because they're is differences in the stories. 0 0 0 +7671 3 You came alway choose your features because you idea mind be change over time. 0 0 0 +7672 3 "The features of the setting affect the cyclist mentally, physically, positively and negatively. For instance, had been do @CAPS1's Grape Juice Factory and bottling plant. A sandblasted picture of a young boy by pouring a refreshing glass of juice into his mouth could still been seen."" This affected the author mentally, making him remember he had no water. Which inturn affected him physically by becoming dehydrated as moments passed. So overall that setting features had a negative direction affect on the cyclist. Another example, ""One ramshacked shed, several rusty pumps, and a coral that couldn't hold in the lamest mule greeted me. This sight was troubling."" This affected the cyclist mentally by making him think he was never going to see civilization again. It also affected him physically because the water tasted like ""battery acid"" which put him deeper into his dehydration state. This setting features had a negative affect on the cyclist. The setting features and had they affected the cyclist is like an environment a person is adised in and how it makes them who they are." 3 2 3 +7673 3 He is going on a journey on his bike. He has to go down hills and deal with the factt that has has no water. Thats basically what the setting is about. 3 2 3 +7674 3 When riding a bike the features around you can affect the cyclist. Some things that can affect the cyclist are weather and scenery. If the weather is cold and rainy the cyclist would not want to be riding. The dangers of riding when the weather conditions are bad will make the cyclist second guest: riding or not. If the weather is extremely hot the cyclist will get dehydrated quicker and even more exhasted. The scenery can also affect the cyclist. When a cyclist is riding and all he/she sees is a desert then they might have doubts on where there going. If there are abandon buildings everywhere the cyclist @MONTH1 become frighten and want to head back of lose hope as shown in the story Do not exceed the speed limit when he gets over a hill and begins to think that he will never make it to Yosemite. Many things can affect the cyclist. 1 2 2 +7675 3 "The features of the setting exhuberate the cyclist. The June weather added to the water depletion, being the beginning of summer, when the cyclist arrived at the first town"" it was deserted, and the water had disgusting water. The author uses verbal irony when calling it a town town having it not really be a town anymore. The large snake presented an air of danger and another abandoned Grape Juice Factory added to the hopeless lost tone. " 2 2 2 +7676 3 Many things in the setting affect the cyclist. The first thing that affects him is the heat. The heat is actually what causes the conflict in the story of the cyclist needing water. If the heat was not present in the story than the cyclist would not have such a need for water and he would be able to continue on his ride without fear of dehydration. Another aspect of the setting that affect the cyclist are the rolling hills. These hills also exhaust the cyclist and cause him to need more water. If these hills were gone than the cyclist would have tirerd less quickly making his journey easyer. The setting in this story greatly affects the cyclist. 2 1 2 +7677 3 "The features of the setting in, ""Do Not Exceed Posted Speed Limit, affect the cyclist in many ways. After following the old mens' advice he sets off on his journey. After the first town appears the sun realy starts to beat down which realy affects the cyclist. In the essay it says The sun was beginning to heat beat down, but I barely noticed it. He @MONTH1 have not noticed it yet but then later on the long winding road on the new flat terrain he runs out of water and that is real dangerous in weather that hot. The text says, The speed limit was @NUM1. I was doing a water- depleting @NUM2. In this part of the story it proves that the cyclist is out of water. In this kind of setting you can run into dangerous creatures. In the story it says, I toiled on. At some point, tumbleweeds crossed my path and a ridiculously large snake. It really did look like a diamondback-blocked the majority of the pavement in front of me. This entry proves to the reader that there are snakes in this sort of setting. The features of the setting in Do not Exceed Posted Speed Limit, affects the cyclist greatly." 2 3 3 +7678 3 The terrain setting effect the cyclist in many ways. The fast that he was in a desert made him thirsty. There was no towns any sign of water to quench his thirst. The hills he would dtwepend than heartycle town just made him moretired. These what the setting did to the cyclist. 1 1 1 +7679 3 "In the story Do not exceed posted speed by @PERSON1, the cyclist faces problems caused by the setting. The biker was riding and the heat was scourching and the biker was really getting dehydrated and tired and he was running out of water. Because it was so hot the biker had to drink more water to replenish his body of all the sweat he was loosing while biking. The hills of the terrain were making it harder on the biker by making him us more energy and liquid to keep going. If it had been cool and breezy he would have had no problem making that distance. If the surrounding area was full of people and not abandoned towns than he would have had water to drink." 1 1 1 +7680 3 "Every body experiences physical and emotional pain, but most probably wouldn't have survived what the cyclist in this story went through. The man started a bike ride Yosemite National park, but when some eldrerly men told him a short cut, his adventure had just because. First at all, every ""town""and ""building"" the men told him he would come to, would come to, wound up being completely desserted. At first this wasn't a big deal to the cyclist. In the fourth paragraph when he came to his first desserted town he, ""chuckled, checked [his] water town supply, and moved."" @CAPS1, as his journey progressed, his water decreased.He was then in desperation for a town.On topof thatin the story he wrote, ''the tast roadwas replaced short, rolling hills. ""This made his biking harder and he was then becoming denyarated. He finally found a town with water, but learned his lesson from taking advice from strangers and old men. " 3 3 3 +7681 3 "The features of the setting would have affected the cyclist a lot. There is a man who takes the advice of old men and takes a shortcut to Yosemite Park. The shortcut only leads him to thirst, and no park. The narration states, A sandblasted picture of a young boy pouring a refreshing glass of juice into his mouth couldstill be seen (Kurmaskie @NUM1). ""This feature could affect the cyclist by discouraging him. the cyclist comes to the first town but only finds yet again no water, and a picture of something that makes him more thirsty. It could also make him be more angry at the old men because they led him on this pointless journey. Another feature that @MONTH1 affect the cyclist is the lack of trees or shade. The only thing he could feel was the sun beating down on his back. The narration states, Wide rings of dried sweat circled my shirt.(Kurmaskie @NUM1). This also makes the cyclist believe that old men do not know what they are talking about." 2 3 3 +7682 3 "There are many features of the setting that affected the cyclist in ""Do not exceed the posted speed limit,"" The time of year affected the cyclist because its mid June, @CAPS1 the region affected the cyclist because mid June in arizona is extremely hot and try. If it was in a more northern state in @DATE1 or I, ll it wouldnt be as bad and you world not have the dance of a heat struggles. @CAPS1 when the terrain changed from flat to hills this affected him because it made it harder for him the to ride. These are some features of the settings that affected the cyclist in ""Do not exceed the posted speed limit.""" 1 1 1 +7683 3 "In rough raod ahead by Joe Kurmaskie the feature of the setting affected the cyclist. Because he was in the desert of California in June, he water supply was emicated and he came across a ghost town. His hope was dwindling because of this. He found a water pump that produced a tar like substance as a result the desert and the lack of water made him wish he was dead he decided never to take advice from strangers and to trust his map. That is how the feature affected the setting." 2 2 2 +7684 3 "In the essay, Rough Road A head Do Not Exceed Posted Speed Limit the features of the setting affected the cyclist. First of all, he was traveling in the @CAPS1 which means it was very dry. This meant that the cyclist could not refill his water and was slowly getting dehydrated. Also, the cyclist was biking in the heat. This meant that he was continuesly sweating which also depleted his water from his body and played tricks on his mind. Finally the hills caused him to exact more energy furthermore making him more and more dehydrated. The hills also put a damper on his spirits, which made him have to muster a lot of inner strength and determination to keep going. This part of the setting affected him emotionally. Overall the setting had a physical and emotion effect on him." 2 3 3 +7685 3 "The cyclist is alone traveling on a flat land at first following the direction in which the old men told him to get to Yosemite National Park in @LOCATION1. During his travels he becomes dehydrated cycling over hills and deserts with othe sun beating down on him in such hot weather of June, he realizes he could get a heart stroke without water. His travels are desolate and lonely and when he finally sees building which are realy ghost towns he recovers and finds some determination to speed up. The cyclist luckily found a camp site to save him from passing out in a desert where he could rest, get water, then carry on his journey using his own map." 3 2 3 +7686 3 "In the story Do not exceed posted speed Limit, the cyclist is trying to get to Yosemite with directions that some codgers, or eccentric old men, gave him. The cyclist, said the old men looked as though they, havent left the confines of their poaches since carter was in office. Well, he takes their advice, and he gets lost about @NUM1 along on his journey. While looking forward to the Cool pines and rushing rivers of Yosemite he was traveling through a barren desert. There was no one in sight, not a building, car, or structure of any kind. This type of setting could really bring down a cultists mood while thinking of Yosemite. It could make him lose all hope of ever finding Yosemite at this rate. If you have a nice setting, it makes the trip worthwhile, and your ending point even better." 1 1 1 +7687 3 "The setting effected the performence of the cyclist and the mood of the cyclist. The rolling hills the cyclist had to get over most likely made him more fined and thirsty because he had to put more effort in to get over them. over one long, crippiling hill, a building came into view. The long, big hills that he had to go up and made him more thirsty, but probably more satisfied when it was all over. Ironically, the building was a grape juice factory; abandoned and rusty, but the sigh featuring a boy drinking a refreshing glass of juice was still noticeable. This brought his hopes down. But continued to move on. In my life, I have never had such an experience to where I had to keep pushing and urging myself to my goal, but the closes I got, the more distractions got in the way to and stop me." 2 3 3 +7688 3 "Do not exceed posted speed limit, is a short story about a man who is bicycling through Yosemite and he asks some elderly men for direction and they lead him in this old shortcut that takes him through tough terrain and extreme famine. The features of the setting affect the cyclist in many ways throughout the story for example when the bicyclist came to a deserted area he said there was no one in sight, not a building, car, or structure of any kind. By this time he was malnourished & in need of water this extreme thrist also reselted in him passing an abandoned Welchs grape juice factory with an advertisement with a young boy pouring a fresh glass of juice in his mouth. He says In an ironic twist that should please all sadists reading this, the building,, then he goes into detail about the building, this mood & feeling by this time was tired and worn out and the advertisement didnt help the situation at all. The authors mood did change with the setting and before it got better it was worse." 3 2 3 +7689 3 "The young cycolist began his day confident in looking forward to his day of riding across california, slowly, however as he recognizes his been directed wrongly, his mood changes,& he begins to feel more hopless. AS he begins, he feels carefree & mody for anything. He writes ""I checked, checked my water supply & moved on. The sun was beginning to heat down, not I barely noticed it. The surroundings have little effect on him. Later, on he realizes his water was going down, & he is getting tired, his mood changed to exhaustion & defect. Here he writes i got back on the bike, but not before I gathered up a few pebbles & stuch them in my mouth with any luck Id hit a bump of lodge one in my throat. He has become sarcastic of saddened by the hoplessness of his journey. Eventually, he had relief of the cold water helps to bring up his spirits & sense of humor" 3 3 3 +7690 3 In the essay the features of the setting affected the cyclist. In the begginning the setting was at the old mans place and the cyclist was happy and confident. When he reached the ghost town and was out of water he was upset and frustrated. When he saw the building he was relived but when he found out it was abandoned he was sad. When he finally reached the store he was excited and relived. That is how the setting affected the cyclist during his trip 2 2 2 +7691 3 "Weather, places, the will to continue all are reason that explain how the features of the setting affected the cyclist. First the weather will affect the cyclist because in hot weather you lose a lot of water and you sweat a lot making it hard to pedal. The sunny hot weather will affect his will to ride. I mean come on who wants to ride when its burning hot outside the places the cyclist went through like towns and rough roads would affect him because its pretty tough." 1 2 2 +7692 3 "The story Rough road ahead: do not exceed posted, speed limit tells of a biking trip gone wrong. But the story would not be as terrifying if it had happend in a different place. The setting plays a large role in the story. The story begins on a present summer evening but as the man bikes he arrives at ghost town devold of evil life, later feeling of double sets In when he arrives at one ramshockle shed, severall rusty pumps and a corrol that couldnt hold these lamest mule. later we fear panic set in as these terrain becomes hilly and tumbleweeds and snakes cross the path. Like an cold wesstern. Finally all hope is lost when he reaches these grapes Juice factory and fInd, a sand blasted picture of a Young boy, The setting is a power full tool which greatly influences the cyclist. " 2 2 2 +7693 3 "In the story, Rough Road Ahead: Do not exceed posted speed limit,"" by Joe Kurmaskie, the features of the setting affected they cyclists physical abilities. The features affected is abilities, because the climate and dangerous environment was hot and rough to handle. These features were hot and rough 'Since he was in the California deserts in June. The passage that supports this is,. Tumbleweeds crossed my path and a ridiculously large snake- it really did look like a diamondback- blocked the majority of the pavement in front of me. I eased past, trying to keep my balance in my dehydrated state. Also, the features of the setting give him determination. They give him determination, because each horizon he sees gives him hope. They give him hope since he knows he is that much @NUM1 to Yosemite National Park. The passage that supports this is when he drops,"".distances I could see on the horizon, telling myself that @CAPS1 could move it that far, Id be fine. In the story,"" Rough road ahead, Do not exceed posted speed limit, by Joe Kurmaskie, the features of his settings affect both they cyclists physical and mental abilities" 2 3 3 +7694 3 "The features of the setting have a huge effect on the cyclist. There was a point in the story where he ran out of water ad he remembered that the old guys had sworn the next town was only eighteen miles down the rode. He was tired ad dehydrated but he thought he could make it along the road. So he started off and the two miles later the terrain changed and so did his outlook on this entire journey. Flat road was replaced by short, rolling hills. ""Sometimes life can be so cruel. @CAPS1 hills took a lot out of him and he was now on a highway. Before this terrain change the rider is very positive and thinks he can do this easily. I could make that! But after the terrain change he looses hope and almost dont make it. It didnt really matter. I was going to die and the birds would pick me clean. It is obvious as you read that when the terrain becomes tough it has a huge negative effect on the cycilists." 3 2 3 +7695 3 The features of the setting effect the cyclist in a few ways. The roads were nice and smooth then turned to hills. It was a hot day in June and he had a sparse water supply with him. He was peddling through the deserts of California. The last thing that effected him was that there wasnt very many places to stop for water. 1 1 1 +7696 3 "In the essay Rough Road Ahead: Do Not Exceed Posted Speed Limit by Joe Kurmaskie, a cyclist is on his way trying to find his way to Yosemite National Park, but runs into a little trouble when getting directions from a couple of older men. The one lesson the cyclist learned was to never to listen to short-cuts given to you by old men who are extremly out of date and havent left their pourch since Carter was in office. The cyclist learned this the hard way when he ends up lost and almost died of thirst. The setting takes place in the desert of California or in deserted ghost towns. One his journey the cyclist says I was traveling through the high deserts of California in June. This feature effects the cyclist because of the extremely dry heat beating down on him makes him dehydrated. Also along his journey the cyclist encounters hills. The feature of the setting effects the cyclist by tiring him out and making him believe there isnt any hope of him getting out alive. Features of the setting like hills and deserts dehydrates a" 2 2 2 +7697 3 "The features of the setting affect the cyclist. It seems to be the more despirate the situation the more determand her becomes. Pg @NUM1 (I was going to die and the birds would pick me clean). Right after he thinks this he climbed away for the abandoned factory of Juices and dreams. He says pg @NUM1 come troubles, thirst and tean where all behind me, this shows that after a situation the bilaver tells realeoved of all earthley obligations. Not only does the settings affect the cyclist but the entire story around him." 2 2 2 +7698 3 "The setting of the story, are very dry and humid, and flat, and hilly. The author noticed the terrain changing, Flat road. Was replaced by short, rolling hills (Joe kurmaskie). Being out in the middle of a dessert like surronding during June, and nothing surronding him is a scary thought. The heat, and lack of water affect him, by him possibly getting mirages, or he @MONTH1 faint, because of the heat, and how much fluid he has lost. The hills dont help any eigther." 2 1 2 +7699 3 The features of the setting affect the cyclist because he is riding through the desert in the middle of June yet he has very little water. This affects him because he is thirsty but he doesnt have a lot of water to drink and he is in a desert in the middle of June which makes it very hot. Also in the story it says he comes to Welchs Grape Juice Factory were on the side of the building he see picture of a young boy pouring a refreshing a loss of juice into his mouth This make the cyclist even thirstier but he continues one to find water at a bait shop. 1 1 1 +7700 3 "The cyclist in this essay is trying to go to Yosemite National Park. He feels confident in him making it, not realizing what is up ahead. First comes the windy roads. As he goes along his confidence starts to wither away. The desert hits him like a boulder because he is running short on water and needs to rest. The extreme heat just makes everything worse. Not the miley into this heat section of the ride, I noticed the terrain changing. Flat road was replaced by short, rolling hills. This shows that the cyclist did not expect to meet this kind of terrain and is over whollmed by it. The one thing he never does is give up. This is important because as he went along, just before hagon up, he found a place to get water and to relax. Then, as easily as running about, my troubles thirst, and nor were all behind me This shows that he was strong and determined to survive and he finally found what he needed and it made happy and have a will to live. Everyone in life needs to be determined." 3 3 3 +7701 3 It give him a hard time so he learn a lot of thing from that he know that it not always easy. It not abig problem but sometime some small problem become bigger life is like riding bike you have any down some time have problem sometimes lost but that is life. 0 0 0 +7702 3 "The features of the setting very much affect the cyclist. He had to ride through tough conditions and became very exhausted. I believe the toughest feature of the setting was the heat. He told us, I was traveling through the high deserts of California in June. He was talking about how he needed to sip from his water more than normally. Another tough feature of the setting was the hills he had to ride up and down. As he was riding he said, Flat road was replace by short, rolling hills. I believe riding over these hills in the hot @DATE1 in a California desert was a very tough task for the cyclist. I believe the terrain very much affected him." 2 3 3 +7703 3 "The features of the setting in this story make the ride more difficult for the cyclist. For example, the cyclist is moving through the high deserts of California (kurmaskie @NUM1). This shows that the cyclist is at a high altitude, which makes breathing more difficult. Then the cyclist notes that the Flat road was replaced by short rolling hills (Kurmaskie @NUM1 ). The hills would make the trip more difficult. This is evidenced by the cyclist describing one of them as a long, crippling hill (Kurmaskie @NUM1 ). Clearly, the terrain, which got increasingly difficult, negatively affected the cyclist." 2 2 2 +7704 3 "In the story, the setting affected the cyclist in many ways. For example, the condition of the road was bad. It changed from flat road to short, rolling roads. Tumble weeds crossed his path. He had lack of water, and the water he did have tasted like battery acid. In the story it says, I eased past, trying to keep my balance in my dehydrated state. " 2 2 2 +7705 3 The features of the setting affect the cyclist like if you have to goup hill or along long bumpy type roads. Then in the essay it says Rough road ahead: do not exceed posted speed limit: @CAPS1 does make things more difficult than average. Especially with a lack of water to make things worse. 1 1 1 +7706 3 "The setting greatly affects the cyclist trying to get to Yosemite National Park. First of all, the cyclist says hes in Lodi, California on a gorgeous day in June. Its very hot in California in June, so the biker is affected by the weather because he could die of heatstroke. Also, he is in the middle of the desert , where he faces tumbleweeds crossing his path a large snake that are possible poisonous in the way. That puts him in more despair, because he could get hurt by a wild animal, or run out of water with no place to go get more ! So the setting mostly negatively affects the cyclist." 1 2 2 +7707 3 "The features of the setting affected the cyclist; the author says he is in the California desert. This means that the cyclist must conserve water so he can stay hydrated for the trip. Also, there are many hills, as the author says, over one crippling hills with a lot of hills to climb, the cyclist uses up more energy and will become dehydrated quickly, if he isnt careful. Finally, there are many abandoned towns that are several miles apart from each other. This again affects how the cyclists uses his water, he thinks that there is a prospering town coming up, so he drinks his water, thinking hell get more soon. However, when he gets there, there is no water, and he must pedal seveal more miles to the next town with very little water. The setting is a great effect on how the cyclists act especially with no water." 2 2 2 +7708 3 "The features of the setting in Rough Road Ahead: Do Not Exceed Posted Speed Limit greatly affect the cyclist. Depending on what sort of new terrain or landmark he came to,his determination increases and decreases. For example, when he saw a building come into view ahead of him, he got excited and used all his energy to get down the hill to the building. Also, when he came to the next building and found a working bathroom, he drank from the sink as his hope (of not dying) was renewed. The man riding the bike in the story had many different changes in his emotions during his long trek in this story that were dependent on the setting. " 2 3 3 +8863 4 The author concludes the story with this because gardens cannot grow with snow on the ground. So she she figurers when all the snow is melted shell try to grow another one. I feel as if she wasnt happy enough to grow another garden I think she should be more interested in growin it then disappointed. 0 0 0 +8864 4 The narrater has that in with Paragraph becuse it all makes sence and it go'ss along together. The narrater says that when the guiss come out and the hibicus is budding is becuse it is ones more agian spring 0 0 0 +8865 4 "The author concludes the story with that passage to show the importance of the inspiration Saeng gets from the hibiscus plant. Saeng, throughout the story was comforted by the hibiscus plant because it reminded her of home. The plant during the winter metaphorically explains: @CAPS1 attitude towards her new country and her driving test; the hibiscus plant in the winter is not as beautiful in the bitter cold, but it adapts and survives, and returns to its beautiful state in the spring. Saeng is bitter about her new country and driving test, but is adapting, and will be inspired by the beautiful state of the hibiscus in the spring to try her test again. In conclusion, the author ended the story in that way to stress importance in the relationship between Saeng and the hibiscus plant." 3 2 3 +8866 4 The author ended the story with this paragraph because it shows change. The snow is melting represents change from cold to warm. The geese returning represents a new life as in coming back to something seminew. Just like the author is going back to drivers ed. The hibiscus is budding represents growth. The author will be older and more knolageble and more skilled than before. 1 2 2 +8867 4 "The author concludes the story with this paragraph of, Winter Hibiscus, because it takes us back to things that happened in the story. Saeng failed the test before. In the spring the hibiscus will be budding again. Saeng realized that many of the things she thought were strange, were almost familiar to her now. The calls of the snow geese were almost familiar to her. The snow melting will tell her that it is now spring. Some of the things that might happen as a result of spring coming might be that @PERSON1 will past the test. Her mother will be proud of her. Also, Saeng will start to become a customed to her new country and her new surrounding and stopremenising about her life back in Vietnam." 2 2 2 +8868 4 The reason the author concludes the story with this paragraph is because the author wanted to tell about about when saeng will take the test again. The author told the time with the season of the spring. In spring all the snows were melted and the geese and hibiscus has budding. And this paragraped make the reader to understand easyer. This is why the author include this paragraph in the story. 1 1 1 +8869 4 "The story ended with the author saying, ""when they come back, saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again."" The author concludes the story with this paragraph because Saeng is upset about spending @NUM1 on a plant that she had felt was different than the plant at home. She is stating that she is not going to take the test of buying one again until the geese return and the Hibiscus budds." 0 0 0 +8870 4 I believe that the author concludes the story with this paragraph because the paragraph helps bring to story to a closing. In the paragraph she is basically saying when the geese return and my flower is budding I'll be prepared enough to take the test. She'll be prepared because she'll be adapted enough and she'll have experienced enough just like the plant and the geese. She Is comparing her life to the lives of the geese and the life of her flower. 2 1 2 +8871 4 The author would conclude the story with that paragraph because she failed the test before and she wants to pass it. It makes you wonder if she will pass it or not. 1 1 1 +8872 4 "In the story, ""Winter Hibiscus,"" by Minfong Ho, it concludes the story with a good ending. In the story the girl buys a Hibiscus that remainds her of home. She goes home & tells her mother she failed her test but bought the plant. While she was planting it she seen geese and she was reminded of home. America was like home and she was happier. In the text she says, ""many of the things that she had thought of as strange before had become, almost familiar to her now."" She is willing to give the test another try and is sure to pass it. America is now starting to feel a little more like home. " 2 2 2 +8873 4 "The author concludes the story with this paragraph because the story started out by Saeng failing the test, going out and buying a plant to comfort her and confessing to her mom. The plant related to her by the memories of her homeland and when she failed that test she felt very depressed and sad. She cried to show her pain, and bought a plant to cheer her up. As she told her mom she felt the pain again but, her mother made her favorite food and helped her plant the plant. She knew that it wasnt like the old plant but, it was the thought and memories she knew that she couldnt just give up, so when it came the right time she was going to try the test again. It relates because it helps the readers understand the story a little better and shows that she wasnt going to just quit. Her mother was very understanding and when she goes to retake the test she will be prepared. That is how it relates back to the story." 2 2 2 +8874 4 I think he concluded the story with paragraph cause then do thing in the story and the report it so when the geese left they will come back and leave again so that what I think I take the test again means. 0 0 0 +8875 4 The author concludes the story with this paragraph because when every thing starts coming back she will take the test. That is why the author concludes the story with this parigraph 1 1 1 +8876 4 "The author concludes the story with this paragraph to show a sense of determination that Saeng posesses. When Saeng comes back and shows her mother the hibiscus plant, she is very upset, with tears in her eyes.Her mother at first is disappointed in her for buying the plant, but is then understanding when she realizes that Saeng was distraught. The mother offers to help Saeng plant the hibiscus, which comforts Saeng a little bit, helping her gain the determination she needs to recover. The story says Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon season, almost familiar to her now. This quote states that Saeng realizes that things at home can be the same as things in her new country. The author uses the term familiar to express that Saeng is starting to accept the fact that some things @MONTH1 be different, but she will eventually get used to it, making her view on life more positive. " 2 2 2 +8877 4 Why the author concludes the story with this paragraph is because in the paragraph there is a lot said that is the main part of this story. For example all the names and talks about the seasons and there comparisions and differences and it talks abouts different buddings like when you get your mids your nuggets and headies of the plant. Because hibiscus is a new form of some nice @CAPS1. 0 0 0 +8878 4 He states this as the conclusion because it shows the faith that she has in the flower and how it will bring her luck for her up coming test. She feels like the familiar flower is out of place as she is and they can relate to somethings. 1 1 1 +8879 4 "I believe the author concludes the story with Saeng because it shows when she is reminded of home. I believe she thought she could pass the test when the flower was blooming and reminded her of home. For example, Saeng mumbled, Not like the kind we had before. This suggest to me that she was probably home sick. Then when spring comes and it blooms the flower could give her the strength to pass the test. This is why I believe the author ended with this paragraph." 2 1 2 +8880 4 The arthur uses it because Saeng got confidence back from planting the hibiscus and everything that happened that year. So now shes ready and thats what the arthur wanted the reader to figure out. 1 1 1 +8881 4 "the author concludes the story this way because Saeng failed the test, the hibiscus comforts her, and she feels she is similar to the geese. For example, Saeng says I-I failed the test. She has admitted to failing the test and is upset about it and wants to take that test again."" @CAPS1, Saeng says,"" And that rich sweet scent- that was familiar, too, while describing the hibiscus. The familiarity of the plant comforts her and will allow her to build up the courage to take the test again. Finally, at one point Saeng thinks to herself, ""the quiet repetition of season opon season, almost familiar to her now. Like the geese. Saeng feels similar to the geese in this way and this allows her to decide to take the test when the snow melts and the geese return. The author concludes the story strongly, describing how Saeng failed the test, how the hibiscus comforts her and she feels similar to the geese." 2 3 3 +8882 4 I think the author ends the story with this paragraph because she will be reminded of her homeland and going home. The reason I say that is because the geese are returning home and she wants to. Also the hibiscus will be budding in the wild just like back home 1 1 1 +8883 4 "I think that the author concludes the story with this paragraph by teaching Saeng how to be confident and vow silently, In order to teach her more lessons because of the fact she failed the test in the middle of the passage Saeng tells her mother that when the snow is gone in the spring time she will retake the test that she failed. Her mother was very upset when she found out that Saeng failed the test the first time." 1 1 1 +8884 4 They probably ended it like that to build suspense of leave the reader on a good note because someone @MONTH1 think things are going to get better for them and Saeng @MONTH1 get her license. They @MONTH1 get more money. 1 1 1 +8885 4 " In Winter Hibiscus, by Minfong Ho, the main character, saeng , undergos many obstacles as she tries to adapt to her new country , which is very different from her home. The author chooses to end the story, as, When they come back, saeng vowed silently to herself, in the spring when the snow melt and the geese return and this hibiscus is budding , then I will take that test again. @CAPS1 the author meant to end the story in this fashion to ensure the reader that saeng has found new hope , which symbolized by the hibiscus flower.Now along with budding new hope, the flower also carries a sentimental value ,about her home .Sometimes ,the best way to overcome your obstacles is to embrace them, as she did in the greenhouse ,then that leaves room to start anew." 2 3 3 +8886 4 The author concludes the story with this paragraph to snow that just because you fail once you shouldnt give up. From what was expressed it the paragraph it was implied to me that Saeng will become stronger by spring and be able to pass the test . 1 1 1 +8887 4 "The author concludes this story with this paragraph because all things have routins and things they have to do to survive. The geese fly @CAPS1 for the warm months so they dont die from the cold. The flower dies in the winter is brought back to life in the spring. This pertains to Saeng because when the geese and the flowr come back she will take the test of trying to fit in, in her new country, That is why the auther chose this to end the story." 2 1 2 +8888 4 "In the story, Winter Hibiscus, the author ends with the last specified paragraph, When they came backthen I will take that test again. because it leaves many un-answered questions the reader might have. The reader then might want to read her next piece of work. Basically, the last paragraph drows attention to the reader. many of the unanswered questions revolve around, I failed the test.. We also do not know her gentle grandmother, mrs.Lambert, and home. Another reason the author might end the story with that paragraph is to have a effect on the reader. The reader is left to only assume and imagine what things are to come. Will she pass the test? Will she go home? What will happen? All we know is, when the snow melts, and the geese return and the hibiscus is budding, then I will take the test again. most likely the author ended the story with the paragraph for dramatic effect for the reader. This is why, I believe the author of Winter Hibiscus ended with the specified paragraph." 1 2 2 +8889 4 "I think that she ended the story like that because it means that she is getting used to all the seasons. In the spring when the snow melts and the geese return and this hisbiiscus is budding, then I will take the test again. She will and take the test once its not cold anymore so she will wait until the geese come again which will be spring by then. I think that she is also trying to say that when the snow melts and the geese are there again she will have taken the test and pass it. This is I think she ended it like this because how they mean something to her." 1 1 1 +8890 4 "The author concludes the story with this paragraph because it shows how everything is changing and adapting to the change. Saeng decides that with this change, she can also adapt to her new life by going back and passing the drivers test. The hibiscus also represents how something also from her homeland has come to america and must now survive. When it begins to bud, Saeng will begin to start adapting to america by passing her drivers test. Its all about trying to become accustomed to changes. When Saeng feels bad for failing, thats why something from her past is such a comfort to her." 2 2 2 +8891 4 "By ending the story with the idea of retaking a test in the spring, the author sets a feeling of starting fresh and perservering . for example , when the author says when the snow melts and the geese return and the hibiscus is budding ,she show the idea of starting a fresh new life in the spring by returning to their home and the hibiscus is starting fresh by budding again. This is why spring is when saeng wants to start fresh and retake the test. The paragraph also shows that saeng, like the hibiscus, is perservering. The hibiscus is perservering by making it through the winter and blooming again while saeng is perservering by retaking the test. The author ends with this paragraph to show that saeng is not going to give up. " 3 3 3 +8892 4 "The author concluded the story with that specific paragraph because Saeng feels most comfortable taking the test again when what she explained happens. Saeng misses where she came from alot. She promised herself that she would take the test again when that happens. With Saeng saying that it makes you wonder why she wont take the test again the snow melts, the geese return and the hibiscus is budding. It makes her feel really comfortable when that does happen." 1 1 1 +8893 4 The concluding paragraph explains her next goal. She had to take a test but failed it. Paid over nineteen dollars for the plant. It reminded her of her old home. She will have confident in the spring because the plant grew to its new home so she will grow to her new home also. 2 2 2 +8894 4 "The author concludes the story with his par paragraph because. She will take the test in the spring and she will do her best. She said I-I failed the test, Saeng said. By failing a test. doesnt mean. that its not end of everthing. She will have more confidence next time she take the test." 1 1 1 +8895 4 "The author concludes the story, winter hibiscus, with this paragraph of the story, for several relevant reasons. By concluding the story, in this way it shows Saengs growth, and more willingness to strive, and do her best. When she says she will take the test again, it shows her gain of confidence, and her beginning to gain comfort in the place that is not her home country. She is now striving and working toward doing her best to become successful. And she is making the very best of the given situation. The author is trying to give more depth and meaning to the study in this way. Saeng went from being nervous and worried when saying, I-I failed the test, to now setting a goal for herself to take it again, the time the bud blooms next year. Basically, the author did a full circle, by ending the story in this way. From speaking of the test, to sharing the flower experience with her mother, to state that she will re-take the test, next year. " 3 2 3 +8896 4 "The auther concludes with that paragraph because. it shows that despite her sorrow and discomfort, Saeng is able to remain hopeful. In the story, Saeng sees a hibiscus which makes her very homesick for her native country of Vietnam. The reader also leans that she failed a test and feels at of place. However, the hibiscus symbolizes hope and comfort. The auther chooses to conclude with that paragraph because despite Saengs hardships, the hibiscus helps her realize that she can overcome he obstacles and be hopeful of the future." 2 2 2 +8897 4 "The author concludes the story with this paragraph because when saeng and her mother go back to there home where the flowers were more beautiful than the flowers where there living now. She wants to plant flowers thats going to remind her of her home. In the story saeng mother said that its flowers arent as pretty, but its strong enough to make it through the cold months here this winter hibiscus her mother wanted her to know that the only thing that maths is that the plant can last threw winter." 1 1 1 +8898 4 "The author concludes the story with this paragraph because the author wanted to show just cause saeng failed that test dont mean she giving up. she said when the snows melt and the geese return and this hibiscus is budding, then she will take it again. what the author means that right now she has failed but over time she can study and learn more to get ready to re take it. And by the time she ready to take the test the snow with have went away every should be hot out the birds come back and the flower is growing fine. she will take it. And how author ended it lets us know she going to take it but how he use the words let us know that she will not only take it but pass it too." 2 1 2 +8899 4 "The author concludes the story with that because the hibiscus started budding and shes happy now. So shes saying after the geese come back and the snow melt, shes to do all over again." 0 0 0 +8900 4 The reason the author of the story Winter hibiscus ends it the way she does is so that we know we can never give up. She fails her driving test the first time and me being less than a year from taking the test myself and no matter how many time I fail the test I will never give up. We need to preserve through every problem we go through in life. If we dont and we just give up we will never get anything done in life. She vows in the spring and when the hibiscus is budding she will take the test again. I hope I pass my driving test the first time just like I did the learners permit test. Also you cant give up on anything at all even something small like working if you stop working you will loose your job. Never give up. 1 2 2 +8901 4 the author added that sentence to the story to show how much Saeng cared about the snow and the plants. She says that she much rather do gardening then school work. She loves planting new things. 0 0 0 +8902 4 "The reason why the author concludes the story with that paragraph is because it shows that saeng is starting to expect the new place she is in. Throughout the story it says how she feels out of place just like the winter hibiscus. Then later in the story she says how ,many of the things that she thought of as strange before had become , through quite repetition of season upon season, almost familiar to her now . That quote means that most things she thought of as strange she is now getting used to slowly, which means is adapting. So, the reason why she says the last paragraph is to show that when everything changes back to spring the geese come back, and the hibiscus is budding ,then she will take that test again.therefore the author puts the conclusion on the story because it shows how she will adapt as well as the hibiscus. " 3 2 3 +8903 4 "The writer leaves the reader with a sense of hope for the future by concluding with this paragraph. Even though the narrator buys the plant in sadness, after she fails her driving test and is missing her home, it is still a symbol of hope. She means that when the flower is blooming, her hope will be also and she will try again, maybe this time with success. Right now she @MONTH1 be sad and scary, but she knows that things will work out, and she will be fine. She is finally settling into her new life and says that many of the things she had thought of as strange before had become almost familiar to her now. She means that even though she misses her homeland so much, she is slowly getting used to her new home, and her new life. And maybe by the spring she will be happy and comfortable here, comfortable enough to try her driving test again. The hibiscus represents both the longing for the past and the hope for the future." 3 2 3 +8904 4 "I think the author concludes the story with this paragraph because it shows that saeng is most comfortable when she is surrounded by things from her homeland. She thinks she will be ready to take the test when she sees the ducks again, and when the hibiscus begins to bud. Narrator says A saebya ledges tall and high, had surrounded their garden @CAPS2 is evidence that Saeng had hibiscus in Vietnam, and the story of the well reminds her of it. The narrator also says, Overhead, a flock of @CAPS1 geese, their faint looks clear and -yes-familiar to Saeng now, @CAPS2 proves that the geese symbolize @CAPS3 home also. " 2 2 2 +8905 4 "I belive the author concludes with that quote for an assortment of reasons. One is to show that the charecter isnt just going to give up, that her failing wasnt the end for her. This shows sorting like morale of never giving up. It feels as the character is referring to the hibiscus as sensely. The hibiscus will be budding which means that she herself will branch out and learn more. By the spring time she would have learned enough and experienced enough to try to pass the test again. The hibiscus also reminds her of her home. When she will look at it she will find the courage to pull through and to face her challenges like her test.The ending quotealso wraps up the story.It also shows the charecters will of not giving up and to always try." 2 2 2 +8906 4 "The author uses this concluding paragraph to draw the whole story together. She speaks of the driving test, geese, and the hibiscus plant three subjects found in the story. when she says ""when the snow melts and the geese return"", she is referring to the geese mentioned when she says ""She lifted her head and watched as their distinctive V was etched against the evening sky"". She went through a change, much like the geese do every winter. She realizes ""that many of the things that she had thought of as strange befere had become...familiar to her now"". We all have to go through changes, Saeng just had a bigger one. " 1 2 2 +8907 4 The author concludes the story with this paragraph because the author wrote the same thing that it had in the paragraph and he wrote it in his story but added a little more details to it and problems and things. 0 0 0 +8908 4 The author concludes the story with this paragraph to show how Saeng is respectful and how her feelings miss her homeland. First example when Saeng vowed silently to herself it shows how she respect and miss her homeland. It tells that she want to try again about her failure in the past. The last example when she want to overcome her failure in the past. The last line of the paragraph say then I will take that test again. It says she want another. Chance on her life. These are the example of the author concludes the story with this paragraph. 1 1 1 +8909 4 "The author had concluded this story with this paragraph to make it as if they were on a clean slate like they had started over. So the past no longer haunts them. Saeng sounds as if she has a bit of relief after she takes her mom the plate. I believe that she feels better because at the end of the paragraph she sounds sure of herself. She sounds certain she sounds as if she want to start over because she says ""when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. To me she sounds like a brand new person. Who has forgotten about the past." 1 2 2 +8910 4 The author ends the story with this paragraph because the plant is noticed when she is coming home after felling the driving test. So she says when everything is right. She will take the test again. The driving test not important to her she wont pas it though so she wants to go take it again when the plant she bought is budding and at its best point. 1 1 1 +8911 4 "The author concludes the story with this paragraph because it shows how much Saeng has grow because of this experience, and how determined she is. This last paragraph afters a sudden happy ending to a rather sad story, but gives the reader role knowing the mom character is confident enough to try again. The whole story was filled with sadness about Saengs family having to move to a new country and start all over. However, the one thing that acts as an escape for them, is their gardening. In Vietnam, they seemed to have a nice garden and enjoyed having with it very much. Now that their in @LOCATION2, their garden and the plants in it remind them of that homeland, and how there life used to be. Although saddened by not passing her driving test, Saeng finds a plant that makes her happy and seems to rejuvinate her how of passing the test. The final paragraph seals the deal, as it shows that she is again confident in herself because of the happy memories that she is thinking about." 3 2 3 +8912 4 "The author used the last paragraph because the hibiscus is a symbol for saeng. It shows that she will be ready when spring comes. When the plant is ready to bud, she will have faith about taking the test. She'll probably want to take care of the plant before she takes the test. When the plant bads, saeng wont have to take care of it anymore." 1 1 1 +8913 4 "I think the author concludes the story with the paragraph because Saeng is saying when the good time came back around she will try for the test again because She had failed it. for example on page @NUM1 at the top She "" I-I falled the test"" thats why i think the author concludes this with the Story because it was important to Saeng to past the test in the good time of season Spring. " 1 1 1 +8914 4 "Winter Hibiscus is about a girl saeng, who moved from Vietnam to the @ORGANIZATION1. After she fails her drivers test. She walks home and finds a hibiscus. She closed her eyes and breathed in, deeply. The familiar fragrance filled her lungs, and saeng could almost feel the light strands of her grandmothers long gray hair She goes to a flower shop to see if it can be purchased. She pays a lot of money for the plant because it is rare and valuable. It is special to her because she used to have hibiscus plants in Vietnam. She brings the plant home & tells her mom that it reminds her of Vietnam. The mom says that it reminds her of Vietnam too. The mom is not happy with how much saeng paid for it. She plants it in her garden. When the hibiscus was lowered in the ground, a flock of geese flew by.When the hibiscus returns in the spring, saeng will take her drivers test again. In the spring, all the flowers start to bud and bloom. Everything is new again. saeng will have a new chance to pass her test." 2 2 2 +8915 4 "I think that the included that because she is compareing her slef as a flower. When she grows again like a flower she will go prove to past that test. Shes saying there always a second chance. She want to tell everyone that its to miss or a misake. For an example they said there were many of things that she had thought of strangely, season up seson." 2 1 2 +8916 4 "The author concludes the story like that because she wants every body to know how she feels about the hibiscus. She felt like the hibiscus was a wondeful plant. She described it as ""smooth and cool toward the end of the first page. When she first the plant back in Vietnam she thought that is just grew wildly. Then when she saw it in the United States she was suprised that it grew in a pot. For example she desribed the the smell of the hibiscus as a ""sweet scent. @CAPS1, this why she is concluded the story like this; because of how felt about the plant." 0 0 0 +8917 4 The author concludes the story with that statement because it shows Saeng passion for gardening. How shes willing to take the test is to see if her plants can grow when spring comes around and the hibiscus starts to bud she will attempt to grow it which shows how anxious Saeng is for gardening and to try and get the hibiscus to grow during the spring. 0 0 0 +8918 4 The author concludes the story with this to mean that when everything is back to normal and beautiful that when Saeng will take the test. She did this to show that Saeng is a spring person and that she likes working in the garden in the spring. Also it means that Saeng feels that she does better in school during the spring time.The author concludes the story with this to mean that when everything is back to normal and beautiful that when Saeng will take the test. She did this to show that Saeng is a spring person and that she likes working in the garden in the spring. Also it means that Saeng feels that she does better in school during the spring time. 1 1 1 +8919 4 "Change and disappointment are enough to over-come. Some people have an arid fear of change. For Saeng the main character from winter Hibiscus, change comes in the form of a move to @LOCATION1. Everything around her is different and new. Coupled with disappointment of failing her driver's exam, the feeling of living helpless overwhelms her. After buying a winter hibiscus plant, she vows to take the test again when it blooms in the spring. The resiliance of the winter flower and the memories it represents inspire seng to try again." 2 3 3 +8920 4 I think the author wanted to express Saeng when she took a vowed and to express the way he felt. When the statement was made that also I think it was to make readers feel interest in it but mainly to help understand. 0 0 0 +8921 4 "For shadowing, future reference, continus behavoir-all are reasons why that is the last paragraph. Well they are for shadowing because they are telling you something that she says she is going to do in the future. She is telling you what she plants to do in the future so she refrencing from what she plans to do in the future she is keeping the behavior from before up so she says she will something again next year so that is why I said continus behavior. She said when they come back,Saeng vowed silently to herself in the spring, when the shows melt and the geese return and this hibiscus is buddin, then I will take that test again. So For shadowing, future, reference, continus behaviors are very good reasons why I thing that what she says is good and those three things best describe what she said and what she said that snow as going to do next year. " 1 2 2 +8922 4 "I believe that the author concludes the story like this to show a sense of continuation in life. In the story Saeng takes a test and fails. She goes out and buys a hibiscus plant for well over what she what she should have paid for it. Her test is to try to get over the memories of her real home that Saeng is now only cries about when she thinks of it. To Saeng the plant represents memories and a life that she once had, but no longer does, however does want it back. Her vowe to herself is that when the geese come flying back over her that she will go back to the greenhouse that reminds her so much of her home and try once again to say home without breaking down, and without having something extremely expensive." 2 2 2 +8923 4 "In 'Winter hibiscus' by @CAPS1 Ho, the narrator never clearly indicates what test Saeng has failed. However, through subject matter and word choice it is clear that the test is not only important to Saeng and her mother, but also to her new life in @LOCATION1. Throughout the story saeng's longing for her homeland is over powering. The flood of memories that came back to her when she purchases the hibiscus, are obviously painful and part of her everyday life. Saeng is working is working hard to keep her memories of Vietnam alive, while knowing that she must learn to live the @CAPS2 customs and lifestyle. There are somethings she dosent need to change, like passing the test. Saeng realizes that she can use these memories to keep her spirits alive, she can use them as motivation. This is why the last sentance of the story is so impowering, because she has learned to use the @NUM1 things together memory and change, when [] this hibiscus is budding I will take that test again " 3 2 3 +8924 4 "The author chose to conclude the story with that paragraph to show that the girl had adapted to her new country. Saeng missed her home. It was hard for her to say her countrys home without crying. ""Its not like the wind we had at-at-."" She also spent @MONEY1 on a plant because it remind her of back at home. One could inter she adapted because she was familiar with the season change and it states when the geese return she is going to take the test again." 1 2 2 +8925 4 "The author concludes the story with that paragraph because it makes Saeng feel more at home. For example it say, the snow melt, and the geese return and the hibiscus is budding, then I will take the test again. I think the author says this because all the thing in that sentence remind her of home. For example the plant the geese are things she had at home, so when winter is over she will feel better and take the test. " 1 1 1 +8926 4 The reason why the author ended with Saeng vowed iS because she is very commited. She failed the first time but know she really want to pass it so she is waiting until the snow melt and @CAPS1 geese return and this hibiscus is buddin @CAPS2 she will come back 1 1 1 +8927 4 I think that the author concluded the story like that because of who throw out the whole Story the plot was in the winter. She might wanted to try it in a different season to see if she might to better with the whot setvation. That is why I think the author concluded the story like that. 0 0 0 +8928 4 "I think the author finish the story with this paragraph for the following reasons. Saeng really means she will take the test in spring. I say that because she says when the snow melt and geese return meaning next spring she will take the test again. She is saying with confidence because she started to add more. For example, she added hibiscus is budding. Saeng is determined to past the test just by what she is saying. This is why it was the last paragraph and what she meant by it." 1 1 1 +8929 4 "The author concludes the story with in the spring when the snows melts and the geese return and this hibiscus is budding then I will take that test again, because she is saying there will be a new year. For example he failed it the first time she will wait until she tries again. Another example she just want to try until she get her driving license." 1 1 1 +8930 4 In this story Saeng shows her mother how pasionate she is with planting and her pasionate for plants. The author includes the paragraph in the story so that it can show how the charact Saeng feels about her planting. One reason why this shows that she has passion for planting is because it says I will try this test again meaning that if she is doing something that she enjoys doing then she will try it again and again until she is fully pleased. 0 0 0 +8931 4 "The authors concludes that in the paragraph. I think he concluded that in these because it shows alot of confidence about her. For example when she said, then I will take that test again. It sounded very confident and made it where she can want to try if she or he fails the first time." 2 3 3 +8932 4 The author concludes the story with this paragraph to show that she has not given up on her dreams. 1 1 1 +8933 4 "Hope, a new beginning, adjustment-all are reasons why the speaker concludes by saying when they come back, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again That hibiscus flower gives that girl hope because it remind her of her grandmother and back home, how wonderful things were back there, and by the flower blooming, she realize it could wear out there too. Shell also have a new beging in the spring, by spring she should adjust to her surrounding and have new friends, things to do, and new memories to look back on, that looking backabout flawall won't be as bad the flower will bring her hope and comfort with her adjustment." 2 2 2 +8934 4 The author is saying that shes not doing nothing intell it is a nice day outside. Also she want it to be not that cold but not that not for she can come out and play with her children. Then she said she will take her test again for a nice day outside for her. 1 1 1 +8935 4 "The author ends the story with this conclusion to show that @PERSON1 is very passionate about connecting her life in the United States, to how life was in Vietnam and bringing them together somehow. In the story, @PERSON1 talks about how she misses home and how she is still trying to adapt to her new life away from the home she knew, when saeng says that she has failed the test and wants to take it again, she means that she wants to show that she can survive in the United States without disappointing her mother. When saeng spent @MONEY1 on a plant, her mom was in disbelief because Saeng knows how hard it is to survive. When the conclusion says,I will take the test again, it shows that Saeng is willing try to make it in the United States from Vietnam, proving that she can make a better life for herself and her family by working hard. While still keeping trditions in Vietnam alive. Saeng simply wanted to make her new home feel like Vietnam by buying a plant she knew her mother would like." 2 2 2 +8936 4 "The author might have concluded this story because it like a downfall. Which mean like right now hes at the bottom and got to make it to the top. He is going to start over and take the test again, but thes time he is not going to fail." 1 1 1 +8937 4 "The author had concluded her paragraph like this for emotion. This last paragraph gives emotion to know she cant garden do to winter. In the winter time all of her plants die for the season. 'The, author is just saying saeng is coming back. After the snow, frosts and cold weather is gone Saeng will come next season so she can continue with her gardening, plants and soil. As said I will take the test again"" saeng. Meaning saeng will come back and take the test of effort with her gardening and her mother next time/ next season when her starts to grow again." 1 1 1 +8938 4 I think that the author concludes which paragraph as his ending because thats what that is what the girl is going to be doing for the following year that is going to pass and still be with her mother helping her out in the garden. Without no friends just let in her mom 1 1 1 +8939 4 "The author ends the story with this paragraph to show how Saeng has found from hibiscus plant. Like the plant Saeng is going to overcome an obstacle. She will try the driving test again and the plant will overcome. The harsh ,blutal winter months. The plant will bloom in the spring and show its restrency during adversity. Saeng will also overcome the adversity she faced when failed her driving test and realizing how much she missed her homeland. Saeng too, in a sense will bloom in the spring. The winter, representing her despise and homesickness, will not present her from living happly and taking the test over.The hibiscus reminds her of the. The story ends with the paragraph to show how the Winter Hibiscus has taught her something about overcoming obstacles." 3 2 3 +8940 4 "The author concludes the story with this paragraph because it shows that saeng is going to accept her new home and reconize the similarities from her old home and hold memories close to help her overcome obstacles that she is facing in life. ""I've seen this kind blooming along the lake. It's flowers arn't as pretty, but it`s strong enough to make it through the cold months here, this winter hibiscus. That's what matters. This sets similarities from their old home to their new home. This shows that things do change but they are also the same. This leads to the conclusion because this is where Saeng relizes that she will always have the memories of her old home and will use them to help her overcome the troubles shes going through. " 2 2 2 +8941 4 "The author ends the story the way she did to show how Saeng and the hibiscus plant are a like and how Saeng will overcome her obstacle when the plant overcomes its obstacle. Saengs obstacle is adjusting to her new life and the first step in that is passing her drivers test. The reader knows she has to pass because Saeng tells her mother , I-I failed the @NUM1]. The hibiscus must make it through the winter, it also has to adjust to new surrounding to survive, just like Saeng. The mother says to Saeng, but its strong enough to make it through the cold month here, this winter hibiscus.Thats what matter [@NUM2]. So,if the winter hibiscus job, or hurdle that it has to jump,it to make it, to stay alive during the winter months, then its job will be done in the spring. The author ends the story with Saeng telling herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again[@NUM2]. If Saengs obstacle is completing, and passing the drivers test, and she passes in the spring, right as the hibiscus passes its test , the symbolism between the two, showing a determined spirits to adopt, will grow deeper because that will adopt and pass their obstacle at the same time." 3 3 3 +8942 4 I think that the story came back to this because that is what the story starts off with. It all started with Saeng going to take a test but she did not pass it. So when the weather is better she would have a batter time trying to pass that test. This is way I think she came back that the test. 1 1 1 +8943 4 The reason why the author concludes the story this way is because she wanted to leave the reader in suspence : wanting more. You can tell because it never really says what the test is. She wanted you to try and guess what the test is. When Saeng walked up to her mother she had told her that she failed the test. 1 1 1 +8944 4 "The author ends the story with that paragraph, to give an unsight on the next story. I think there will be another story because there are clue to support my theory. Just at the beginning of the paragraph at just when they come back. Then at the end at stay ""then I will take the test again. I dint stay happily ever after at anything similar its that at just stated those personally changes mentioned. So I think what the author will write another story so we could see if Saeng will pass her test. " 1 1 1 +8945 4 "The author ended with this paragraph because it is an example of how everything gets a fresh start in the spring. an example of this is that the geese will return home after the winter to start a new family and also in the winter the hibiscus leaves will die and then in the spring they will have a new start, I think the author uses this paragraph last because its a metaphor of how everything will get a fresh start and also Saeng will get a new chance to take her driving test just like the plant and geese will get a new chance at life." 2 2 2 +8946 4 "The author concludes the story with the paragraph because these geese coming back symbolize Saengs determination and hope that she needs to pass the driving test. She will wait for the winter to pass so that she can pass the test. The coming of spring also symbolizes renewal and birth. Saeng will have the chance again to pass the driving test with renewed faith and encouragement. This is a great way to end the story because it is really deep and makes the reader think about the meaning of the scene and how the geese, hibiscus plant, and spring arriving effect the conclusion of the story." 3 2 3 +8947 4 I think the author concludes the story with that ParagraPh to say that he will @CAPS1 uP in sPring time when the snow melts and geese return. Also I think that the author like the setting of sPring also to see the sunny skies a geese floating in a @CAPS2. I also would like that setting because It gives me more ideas and it's a very lovely setting to be around. That is why I think the author Picked that ParagraPh to conclude the story. 0 0 0 +8948 4 "The short story, Winter Hibiscus, is a about a girl who moved with her mother to @LOCATION1. The story tells about the girls transition into the different culture. During the story, the author makes references to the daughter having to pass a test. At the end of the story the author wrote In the springthen I will take that test again. In the text, the girl says its-its not a real one, when referring to the winter hibiscus plant she bought. The reader could infer that this quote means that the girl has memories of home, but they are not the real thing. Also the author wrote much preferred it to the Big Mac"". This quote shows that she misses her own culture & cannot adapt to the @CAPS1 one that she lives in now. In conclusion, the girls test @MONTH1 be that she needs to be able to handle change & also be able to recall memories of her homeland with happiness instead of sadness." 2 3 3 +8949 4 "The author concludes the story with that ending because he wanted to show the reader if you just try, you might like it, and thats why the girl said she would come back next spring when the snows melt so she can take the test again." 0 0 0 +8950 4 "The author concludes the story with this paragraph because it has everything together. One way it ties everything together is by taking what had happen in the beginning and tieing it in with why she had bought the flower in the first place. Also it ties Saeng's old memories from Vietnam to her new way of life in the United States. The story states ""carefully Saeng dicked it up and smilled. She closed her eyes and breathed in, deeply. the familiar programe filled her lungs."" this is now the flower she found in the flower shop gave her memories from Vietnam. this is why the author concludes the story with that paragraph." 1 1 1 +8951 4 The author concludes the story with that paragraph because its telling / showing us that Saeng is going to try to pass the test in the spring . Getting that hibiscus reminded her of her homeland and it gave her memories of then . And it also made her believe in herself and want to get there and try again . If made her hopeful . The author test in when snow melts and the geese return and this hibiscus is budding to help indicate that its going to be spring when she trys to take her test again. 2 2 2 +8952 4 "The author concludes the story with this pharagraph because he figures after all that has happened like she failed the test he wanted to end to be remembered is a happy thing. Also wanted the end to show how something bad happened but next she was going to do it again. The author wanted to show that she wouldnt give up, she goes after what she wants. And he wanted that to be the last pharagraph." 1 1 1 +8953 4 The author concludes the story the way that they did to signify that the girl will not give up trying to pass her test and will adapt to her new found home and make it what her home in Vietnam was to her. The girl is remeniscent of her past life and wishes to go back and have the life she had in her home country. When she is 1 1 1 +8954 4 "The Author chose to conclude the story with this paragraph because it is resolutive to the entire reading before it. In the story Saeng (the girl) had been stressed from failing the @CAPS1 test. She was also saddened by the memory of the hibiscus plant back in her native country Vietnam. At the end of the story when it says when the snow melts and the geese return, and this hibiscus is budding, I will take that test again"" ,(Ho) the snow melting, geese returning, and the hibiscus budding symbolize change and adoption. Saeng will need to change and adapt to a new life to pass the test and feel better. This is why the Author @CAPS2 Ho, of the story Winter Hibiscus used a strong, symbolistic and resolutive end to her story." 3 2 3 +8955 4 "After Saeng fails her drivers test, she gives up hope for the future. The sight of the hibiscus plant reminds her to never give up, no matter how tough the situation. In the story, Saengs mother says, Its flowers arent as pretty, but its strong enough to make it through the cold months here, this winter hibiscus. Thats what matters. This quote shows how even though its not an object of beauty, it can do what it takes to survive. Saeng feels that she is also like the hibiscus, having the strength to be able to survive in a new environment. Even though she is new to this country, Saeng had proved that no matter how big the situation, anything can be overcomed if you believe in yourself and your family." 2 3 3 +8956 4 The author probably used this as the last paragraph to show that at this time next year she is going to take the again. The author writes this paragraph to show that she failed the test when the geese were going away for winter and the hibiscus was blooming. 1 1 1 +8957 4 "The author concludes the end; of the story the way he/she did because it shows how much the plant truly means. S'aeng is going to wait till the flower blooms because it means so much to her. The flower represents her and her driving test. When the hibiscus is ready to bloom, she will be ready to drive. The plant gives her hope for a new tommorow, a new chance. The last paragraph helps the reader realize how much the plant means to the girl, its significance. It makes her feel more at home, and her home makes her feel stranger; makes her joyful and happy after the misery of failing the driving test." 2 2 2 +8958 4 She concludes with this the story this paragraph because she wants @DATE1 to come again. She says when the snow melts. She wants to look at the events again. and take care of them. 0 0 0 +8959 4 "In this short story, Saeng vows to take the test again in the spring because she knows that she will be able to pass it once she has accepted living in this new place. After Saeng moved, she was very upset and missed her old home, family, and lifestyle. This prevented her from focusing on the test. However, once she realized that the flowers are beatiful in her new home too, she began to accept the changes. The geese being familiar to her symbolizes that she is adjusting to her new lifestyle. Saeng also probably made this vow because she didnt want her mother to be disappointed in her again. After seeing her mother's disappointment and loving kindness, Saeng was determined to pass the test. When Saeng takes the test again in the spring, she will be ready because she has adjusted to and accepted her new life." 3 2 3 +8960 4 The authoR concludes thEy stoRy with thE paRagraph bEcause in thE bEing oF the stoRy heR Family movEd to thE United States from Vietnam. Saeng was walking home FRom Failing heR dRivER's test. She See a FamiliaR plant. Later she goes to a FloRist shop to see iF thE plant can be puRchased. So she gEt thE plant seeds and plant thEm so when they staRt to bloom she will go to heR dRiving test she Failed. I @CAPS1 she use the FoR good luck That is why I @CAPS1 the authoR conclude that paragRaph in thE stoRy. 1 1 1 +8961 4 "The author concluded the story with the paragraph because it shows that Saeng can overcome obsticles, & the next time she has these reminders she will succeed. When she says almost reluctantly, she realized that many of the things that she had thought of strange before had become... almost farmllular to her now & this is saying she is getting used to the chages in her new life. So the end paragraph reflects these ideas." 1 1 1 +8962 4 "In the story, Winter Hibiscus, the author concludes the story with the paragraph for a few reasons. One reason is that she is trying to overcome change and wants to make the situation better. She trys doing that by taking the test again. The author also concludes with the paragraph because she feels heartbroken that life is not going her way and that she needs to do something about it. Thats why the author concludes the story with this paragraph to show you if she is determined or not. If she will stick through it or not." 2 2 2 +8963 4 I think that the author concluded the story with that paragraph because she is going to see if she can adapt to the new country. This is a good way to leave off the story because you dont know if she will or not; it leaves you on a cliff hanger. I also tink this is a good way to leave it off because he could write a sequal to it and make a series out of it. 1 1 1 +8964 4 The author concludes this with the story because the snow is pretty and geese are animals that make it pretty so they want you to think that our outdoors is the nices thing around. 0 0 0 +8965 4 " The author, Minfong Ho, concludes the story Winter Hibiscus with that paragraph to show Saeng starting over In the spring , When the snows melt and the geese return and this hibiscus is budding connects to her life, is that she is starting fresh in away. Although she @MONTH1 miss her old life, her grandmother, the well, and the fine toothed comb, she is making on effort, and take that test again By retailing the test she shows that she is not ready to give in to @CAPS1 of loss. and to her grief. " 2 2 2 +8966 4 "The author concluds the story with this paragraph because he knows all of this stuff going on will probley def come back up again. Just like how he said the geese, will geese come back every year, so he is def saying that off of this will com back up. That is what I think." 1 1 1 +8967 4 "I think that the author made that the concluding sentence because it means that when Saeng is ready then she will take the test again. I think that she is comparing herself to the snow, the snow the geese, and the hibiscus. I think so because she says that when the snow melts and the geese return and the hibiscus is budding then she will take the test again. So I think that she is saying that she is not ready for the test and when she does get ready then that is when she will take it." 2 1 2 +8968 4 The author's conclusion to the story shows how Saeng interpreted the experience of that day. She uses a spring time setting to show when her confidence in herself is reborn. Seeing her hibiscus bud in the spring will giver herself and newfound integrity to go try that driving test again. 1 2 2 +8969 4 "Hope, positivness, helpful all are reasons the author concludes the story with this paragraph. First, the last paragraph gives the readers a sense that Saeng has hope. I felt that she had hope because she is willing to take the test again. Since she is going to take the test again she wants to help her mother. Second, the last paragraph gave me the feeling that Saeng has a positive attitude. She bought a flower to replace the dead ones, and she stated that she will re-take the test in the spring. Third, Saeng is helpful to her mother. Saeng finished digging the hole for the new flower for her mother, so her mom could go make dinner. Saeng also saw the feeling her mom felt when she found out Saeng did not pass the test. So she is re-taking the test. Saeng was feeling just about what any other new kid probably would have felt. She was scared, but through everything Saeng had hope, a positive attitude, and she was helpful." 2 2 2 +8970 4 "To her the hibiscus was a test. Saeng felt she failed the test of letting go of the past and embracing now. The hibiscus reminded her of home, so she spent over @MONEY1 on it, knowing she and her mother needed the money. Essentaily, she felt as though she failed a test." 1 1 1 +8971 4 "I think the author concludes the story with that parography because they want you to understand Saeng's strength. One reason I think they also end the story like that because she know inside that when her plant is strong and not covered in snow that she will be strong so that's when she wont`s to take her driving test. For example when she said, When the snow melt and the geese return and this hibiscus is budding, then I will take that test again. That is why the author concludes the story with that paragraph. " 1 1 1 +8972 4 "In the story Winter Hibiscus by Minfong Ho the main character Saeng and her mother, moved from their homeland to this new place, where everything was different. she was having a very hard time adapting to this new place, and Saeng failed an importian test. She had been very discouraged by this, and she was trying to remind herself of being at home. She bought the winter Hibiscus to remind her of home, but when she was planting it she became very determined to try and adapt, by taking the test, when the hibiscus would bud. The author is concluding by there being hope, and determination for Saeng to adapt to her new home." 2 2 2 +8973 4 "The author concludes the story with this paragraph because it adds the uplifting message that Saeng will be able to overcome the obstacles of living in an unfamiliar country. First; the @CAPS1 geese represent a piece of her new home because she reasons reluctantly that they are familiar to her now, This depicts her ability to adapt to her new environment. In addition, she also equates spring to when the habiscus is budding and the habiscus is a symbol of herself because both are trying to live in a country that is not their own. Therefore, the habiscus budding represents her being able to live comfortably in @LOCATION1. Finally, she vows that she will take her drivers test again. Her intial failure to pass the test showed her inability to become a part of @LOCATION1, but if she passes it. Then she will have successfully adapted. Overall, the author of this stoy concludes with this paragraph because it contains the theme of the passage through an uplifting message. " 3 2 3 +8974 4 "In the story Winter Hibiscus by Minfong ho, the ending includes the hibiscus budding and retaking the test to make a connection between the two. The geese are also included in the end to show the new country she has adapted to because she recognizes when the geese come and go. The budding of the hibiscus is to her much more than just a flower. It shows the rejuvenation of new life within her just as flowers tend to bud in the spring. That is also why she chooses to take the test because her budding will occur in the spring, and she will have newly born confidence for the upcoming test. That is why the geese, hibiscus, and the test are all included in the end of the story to show the connection between her past home and adaptation to a new lifestyle." 3 2 3 +8975 4 She will try gardning again after the geese and flowers return. She wants to have the best garden around. She wants to keep the tradition going. 0 0 0 +8976 4 I think the author concludes the story with this paragraph cause. Saeng didnt think the winter hibiscus was In the ground now and that when she got back all of her plants was gone do to the snow so she said she will take that test again meaning she will start back to the first steps of her plants and flowers. 0 0 0 +8977 4 "The author concludes, ""When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again because Saeng doesn't want to give up yet. In the story Saeng mumbled, ""I mean, not like the kind at-at- ""She found that she was still too shaky to say the words at home. ""Saeng was still upset because she misses her home in Vietnam. When Saeng puts the hibiscus in the ground she feels more alive and Saeng wants to feel at home in the United States. Saeng isn't going to give up driving but to try, harder and harder to pass the test." 1 2 2 +8978 4 "The author concludes the story with This paragraph because its related to she thinks, when her semile of welcome warmed Saeng cheep skip over live to youre back she saw cheerfully @CAPS1 its past time what took you so long? now did it go? Did you? She feels very skip over its related to" 0 0 0 +8979 4 "When they came back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The story winter hibiscus ended with this paragraph because it will be a fresh start for Saeng. It will be spring out and the geese will come back to her home where she lives now, which now has the hibiscus to remind her of her old home. The paragraph also compares Saeng to the hibiscus. In the story her mother says, Ive seen this kind blooming along the lake. Its flowers arent as pretty, but it is strong enough to make it through the cold months here, this winter hibiscus. Thats what matters. Saeng is the winter hibiscus thats strang enough to make it through winter and failing the test wont matter until spring when she will take it and pass. Thats represented when the hibiscus is in bloom. I also think the story ended this way because it ties in Saengs feelings throughout the story of her new home and old home. Its also showing her ability to conquer obstacles. She is going to forget about failing the driving test and work to pass it in the spring." 3 3 3 +8980 4 "I think the author concludes the story with that Paragraph because the hibiscus makes them over come obstacles. She wanted to take the test again so she can @CAPS1 to her mum that she can past it. I also, think that because the hibiscus gives them strenghth and she got more confident in herself to past the test." 1 1 1 +8981 4 "The author chose to end the story this way for several reasons. Some of the reasons is that it creates a feeling of hope in the reader, tells us we always have another chance and the importance of persistence. The ending paragraph creates a feeling of hope since it shows how everything will return and others will be another chance. The author chose to put this in the text since it creates a happy note to end on and give the reader happiness of knowing there is hope. Another reason the author chose to end the story with this paragraph is that it tells the reader that you always get another chance no matter what you do. The author wanted to impart this on the reader since it is an important lesson to know. The ending also tells the reader that persistance is very important in life and almost essential to live. The author shows this by talking about the snow melting, the geese returning and the flower blooming which are things that happen constantly and almost stop because they refuse to give up and die. Therefore, the author chose to end the story with this paragraph for several reasons. The author chose to end it this way since the paragraph gives a lot of hope to the reader and gives the idea of a second chance. The author also chose to end with this paragraph since it has several analogies to persistance which is vital in life. " 3 3 3 +8982 4 "The authoR concludes the stoRy with this paRagRaph because he is saying that Saeng likes to do thing in the spring when she sees flowers gRowing because she feels like she is at home, so she feel moRe confident. about passing the test." 1 1 1 +8983 4 "In the story ""Winter Hibiscus"", the author concluded the story with the quote ""when they come back, Saeng's vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test again."" the auther put this paragraph as the concluding thought to stress that Saeng is determined to make a change. She failed the test but wants to take it again. Her grandmother's resemblance is in the flower so if the flower budds, then her grandmother will be back in a sense. When he grandmother ""comes back"" then @PERSON1 will feel as if her grandmother is giving her strength and encouragement to try the test again." 2 2 2 +8984 4 "The auther ends with that paragraph to show how Saeng, like the budding Hibiscus, will get a new start in the spring and overcome obstacles." 1 1 1 +8985 4 "The auther concludes the story with, when they cam back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and tis hibiscus is budding, then I will take that test again. I think the auther used that conclusion to make the reader want to finish the story on their own. Or he could write another story to finish it. Most authors conclude their storys like this so the reader is in control about the ending." 1 1 1 +8986 4 Based on my understanding of the story I think the author concludes the story with the paragraph to emphize what will happened as well as to gate back to get to readler to thinking and build te excitement and with question as well as though in the head after reading the pessage. to my self to capture the reader attention as to the following upto and wondering of she survive and was able to adapt to the lifestyle that she was not use to and also see test her ability to see if she will be able to survive the different types of season and to know that no matter what you face in life their is alway more obstacles a head of you. 2 1 2 +8987 4 The author choose to end the story with that paragraph for emotional meanings. The last paragraph is saying she will re-take the test when the hibiscus is blooming in the spring. She hopes that the blooming hibiscus will give her strength to pass the test. The hibiscus reminds her of her homeland and gives her comfort. Saeng hopes the sight of the blooming hibiscus will remind her of her home and give her strength to pass the test. 2 1 2 +8988 4 "The author ends the story in this way because the plant and leaving of the geese represent change to Saeng. The hibiscus isn't the same as she remembers from back home. The budding of the hibiscus shows Saeng's happiness from home. This paragraph shows that the familiarity of the budding plant gives Saeng courage and the ability to overcome her obstacle. The geese in this paragraph represent the keeping of time. The plant will budd at the time the geese return in the spring. If the author hadn't included this final paragraph, the full effect of memories for Saeng wouldn't have been fully portrayed. This line implies that Saeng was unable to overcome her obstacle because of the newness of this place. when the budds bring her a sense of home, she will be able to defeat the obstacle of her driving test. She will be more confident." 1 2 2 +8989 4 The author includes that because it show that she is not given up. Since she is not given up she can have more trys. 1 1 1 +8990 4 "There are many reasons wht the author chose to conclude the story with Saeng vowing to attempt the driver's test again. At first, the story begins with a tone of sadness and seing fact ""as Saeng walks home after failing her driver's test"" this quote sets the tone as sadness because she has failled a very important test and she is walking alone. ""She sees a familier plant"" is when the hope comes back into the story. When she brings the plant she had purchased here to her mother also sees delinlted. "" where did you get it?"" her mother aasked, and Saeng replied ""I bought it."" She bought it for @MONEY1 more then her mother said for all of the seeds in the garden. As time went on it was clear to her mother the plant signifies strength and hope to her daughter and endyat the plant with have as well I remember a time upon my mother bought me a work-candle cat desdion. I felt it was a waist of money, but when @CAPS1 saw her light delights for I it with love as well. When Saeng's mother felt have from thr plants made Saeng happy and gave her courage the driver's test again. is the reason why the author chose to conclude the story with Saeng vowing to attempt the driver's test again. " 3 3 3 +8991 4 The author concludes the story with that paragraph because it makes the story longer and it gives it a good ending but I have no idea on what that means so the author should explain what it means not me. 0 0 0 +8992 4 the Author concluded the story with this paragraph because @CAPS1 was try intoto let us know what happen after the story was done. and tryed to make it clear and thats why I think that @CAPS1 came up with that idea to conclude with that paragraph. 0 0 0 +8993 4 "The author concludes this paragraph because Saeng is going to wait untill winter is over so she can have a fresh beginning. She wants to try again because the last time she messed up and tilled the plants. Saeng wants to become a gardener like her mother." 0 0 0 +8994 4 The author of this essay includes those sentences as the conclusion to make it that she will realize that they are coming back. 0 0 0 +8995 4 "The author concludes the story with the paragraph, When they come back, Saeng vowed silently to herself, in the spring, when the snow to show that Saeng got stronger. She got, stronger because she adjusted to her new home and new environment. Saeng is more confident in herself to take the test again. She doesnt want to cry again, like she did in her last test. Being more confident and more adjusted is the reason why she has become stronger, and the reason why she wants to take the test again is because she is stronger." 2 2 2 +8996 4 "Confidence, persistance, memories all things that Saeng has that helps explain why the author concludes this story with this paragraph since Saeng moved from her own country, she has not been very happy, she was upset pretty much the whole time and misses everyone and @CAPS1 from Vietnam; @CAPS1 she sees reminds her of it, that last paragraph, where it says, then I will take that test again, shows that she has confidence in herself and wants to try harder next time. She shows persistence when she says she will try again and hopefully, she wont give up, Saeng misses almost @CAPS1 from Vietnam, even the food. She also misses her family and how they look and dress. Her memories were probably hold her back from concentrating hard on her drivers test, she knows she wanted to do good so she bought the flower in hopes that would make her feel better. Hopefully, Saengs life will get better in the United states and she will learn to love this country." 1 2 2 +8997 4 Because withe the blooming of the hibiscuse plant comes new hope. In the story she sees the hibiscuse as her old life and with the budding of the plant starts a new chapter in the young girls life. 1 1 1 +8998 4 I think that the author concludes the story with this paragraph because hes trying to prove his point. I think that Saeng was comparing herself to the flower. For example the flower was originally a wild flower and then and then it was planted in a pot. Saeng was free happy girl but then she had to move to @LOCATION1. Both the flower and Saeng feel like they are out of place. Since in the story Saeng is similar to the flower then at the end then at the end of the story I think that Saeng thinks that if the flower can survive the winter then she can survive @LOCATION1 and she can pass the test. This is why I think that the author finished with that paragraph to get his message across. 3 2 3 +8999 4 The reason why the author concludes the story like that is because he or she wants to show Saeng is determined to not fail that drivers test. The author wants to leave Saeng on a good note so she wont be sad. When she takes the test again shell be better prepared and know what shes expecting. Shell have a better winter. 1 1 1 +9000 4 "I think the author concludes the story as he or she did to teach a lesson. No matter what stands in your way or no matter what slows you down never give up. You should keep on trying. If you fail something, try again and again until you get it right." 1 1 1 +9001 4 "@CAPS2, memories, hard @CAPS1 – All are reasons why the author conluds the story with this “When They come back, saeng vowed silently to herself in the spring, when the snow melt and the geese return and this hibiscus is buddng, Then I will take the test again. First @CAPS2 because she failed her test first so it takes some guts and will power to go back and even try it again. Also because when she remember her grandmother it upsets her so that definatly takes @CAPS2 and the human will power to do her test a second time. Next memories. I @CAPS4 she keeps wanting to do this test because she has had so many good memories with her grandmother and doesn’t want to ever forget them. But again goes back to the will power or the want to, to go back and do the test a second time. Last All the Hard @CAPS1. All the Hard @CAPS1 because She knows what her grandmother ment to her and threw all the things or Hard @CAPS1 that her grandmother put out she saw and wants to honaor or apreciate all of the stuff that her grandmother did for her. These are the reasons that @CAPS3 @CAPS4 the author ended with that Paragraph rather than some other paragraph" 2 2 2 +9002 4 The author include s the last paragraph to show that she still has hope. it is the last sentence because @CAPS1 fong Ho wants to show that when all seems lost and your at the end of the line you can always hope for the better when spring comes so will a new beginning not only saengs plant but also for her life in a different country. 1 2 2 +9003 4 "The author of Winter Hibiscuschose to end the story with that paragraph to reenforce the theme of the story and conclude with a hopeful tone. The theme of the story is adjusting to new circumstances and making the best out of each change. ""Saeng vowed silently to herself"" tells the audience that Saeng is making an effort to fit in and find the good in her new life. The hopeful tone that is created is a way to show that Saeng is willing to accept changes in life and wants to do her best to overcome obstacles. She says, I will take that test again. The test represents the obstacles she will overcome when efforts applied. The hibiscus in the sentence ""when the snow melts and the geese return and this hibiscus is budding... @CAPS1 starting over. The budding hibiscus is compared to Saeng with a fresh start and determination to achieve her goals of adjusting to a new lifestyle. The author chose this paragraph to conclude the selection to highlight the theme and symbolize a new start" 2 2 2 +9004 4 "I think the author concludes the story with that statement because the audience can then compare saeng and the hibiscus. After reading that statement, I realized saeng and the hibiscus are alike because they are both going to make it through and come out on top, (Saeng getting her license and the hibiscus bidding) @CAPS1 the author might have ended the story with that statement because it shows that saeng is committed to working toward her goal and wont give up. Saeng vowed silently to herself, I will take that test again, Finally I think the author concluded the story with that statement because it gives the audience the satisfaction of knowing what is going to happen to saeng but leaving a little mystery for the audience to fill in how they want. For example, I know saeng is going to take the test again and I believe she will pass it, @CAPS2, another person reading it might believe she failed again and had to retake it again." 2 3 3 +9005 4 "The author concludes the story with this paragraph to let the reader compare the girl to the geese and the hibiscus. The geese leave for the. winter and then come back in the spring, however the geese also show how the girl is going to come back and take the drivers test again in the spring. The hibiscus dies off over the winter and starts budding again in the spring, this shows that winter is its weakness. Like the hibiscus the girl overcomes her weakness of not being able to drive by remembering her homeland. The author puts this paragraph at the end of the story so you can see that the girl is like the geese and the hibiscus." 3 2 3 +9006 4 "I think the author concluded the story with that phrase because it shows she will mature. She is saying that she was not ready for all the challenges she was going to face, For example she did not pass her test but instead of crying about it she just said I will take it again next year. In the story she also longed for her homeland, which she truley missed. She coped with this by buying a winter hibiscus to remind her not only of her homeland but also of her grandmother overall the main character showed depth and maturity throughout the piece." 3 2 3 +9007 4 "The author concludes the story the way that she does because it shows Saengs willingness to adapt to her surroundings, just like the hibiscus. Saeng needs to adapt to her new home in @LOCATION1, and the hibiscus needs to adapt for the upcoming winter. Saeng vows to herself, When the snows melt and the geese return and this hibiscus is budding @CAPS1 from this, you can tell that Saeng has hope for both herself and the hibiscus. Initially, Saeng was very reluctant to accept her home. She says of the hibiscus, its not like the kind we had before. But she realized that the hibiscus could be a reminder of home as well as reminder to change for her new home. She knew that if the hibiscus could survive the winter, she could survive living somewhere new. " 2 2 2 +9008 4 "The author concludes this story with the promise Saeng made to herself to take the test again, come springtime, because Saeng is having trouble adapting to her new home, and she wont give up on fitting in after only one failure. Remembering her home and that she will never be able to return are painful thoughts to Saeng and memories of it help her cope with her loss. The hibiscus and other familiar flowers she found comforted her, because they reminded her of home. At springtime when the geese return and the hibiscus starts blooming, Saeng will feel ready again to take the test, the spring represents the chance for another try, and a new beginning." 2 2 2 +9009 4 "The author concludes the story with the last paragraph. The author chose because the sentence informs you Saeng will take the test agin. In paragraph @NUM1 Saeng tells her mother she faild the test. So by the time spring comes around the hibiscus will start budding and Saeng will retake the test. Also the geese left the home temporally because of snow. So she sort of compares herself to the geese because she missis her home. The geese will return when the time is right, that is what the author concludes in the storys paragraph." 2 1 2 +9010 4 "I believe that the author concluded the story with this paragraph because the plant represent to being determined to survive. In other words, the hibiscus brings Saeng a good luck for her next driving test after winter season uhen the hibiscus is budding. Also, the reason why the author concluded the sentence to show what her plan for the future" 1 1 1 +9011 4 "In the story Winter Hibiscus, the author concludes the story with this paragraph for many reasons. This paragraph shows that Saeng will not give up, she will wait for next time to come around to take the test. It also means she will be well prepared and will have a list of confidence in passing this test. It gives the reader an idea that Saeng will not give up and she will complete the test. Her mother will be proud of her for it and it shows Saeng will never give up. Just like when she said lets plant it, right now, T his example shows that even though Saeng had failed the the test and disapointed her mother,she will never give up and she still has hope in the plant just like how her mother has hope for Saeng. " 2 2 2 +9012 4 "The author concludes the story with this paragraph because he is talking about when Saeng vowed silently because she is thinking about what had happen a long time ago with her mom, the plants in her garden. Saeng was thinking about when everything comes back how will it be with the return of Spring, when the snow melts how will things be, the geese retorning and she will take the test again, that is what She was vowed silently to herself about. That is how i thik the author will conclude the story with this paragraph included wit it." 1 1 1 +9013 4 "The author concludes the story with this paragraph. In this story it about a @PERSON1, a girl and her mother. The girl is given money to buy a plant seeds. She spend @MONEY1 on this plant. Her mother get upset, but every thing turn on it, lk they had egg omlets with bits of melon." 1 1 1 +9014 4 "The author concludes this story with this paragraph because she wants to show that after everything that happened, saeng will move on and try hard. For example, when she said, When they come back in the spring, When the snows melt and the geese return and this hibiscus is budding, then I will take that test again. By ending the story like this, it leaves the reader in suspense because they do not know if the geese will return. The author seems to be showing the reader that Saeng is starting to adapt to her new country and make it like her old one. For example, when the mother said, Ive seen this kind blooming along the lake. Its flowers arent as pretty, but its strong enough to make it through the cold months here, this winter hibiscus. This shows that they want their new country to be more like their old one and when it is, she will be happy. Therefore, the author concludes this story with this paragraph to show how she will adapt to the change in her environment. " 2 2 2 +9015 4 The author concluded the story with this paragraph because she can not wait until spring because her plant will budd and it will remind her of her home land again. She can not wait to take the test in spring because she would have been alsole to stayed and she @MONTH1 pass the test in the spring because she did not pass it the first time she toke the test. Maybe she concluded the story with this paragraph because she @MONTH1 like the spring and she can not wait for it to come. 1 1 1 +9016 4 "I believe there is a meaningful reason why the author concludes the story with this paragraph. I think that the author will feel more confortable and ready to take the test. I was able to come to this conclusion because by waiting for winter to be over to take the test again, she is giving herself time to prepare. Also, she is waiting for the hibiscus plant to bud. Something. I was able to extract from the fact that she wants to wait for the hibiscus is the presence of confort, the whole story revolves around how saeng was able to confort herself by reminiscing on her past experiences in Vietnam. When she feels that an important part of her life is returning, that she can become comfortable and focused. I think the author would conclude the story with this paragraph is because the author wants to stress the importance of this flower involving how saeng lives her life" 3 3 3 +9017 4 "The author concludes the story with this paragraph to show she has hope. She believes that she can pass the test when everything is back to normal, in the spring. In the spring the geese will return and the hibiscus will be budding. This makes her feel more at home because it was always like this before she moved. Also she likes the geese and the hibiscus and these things might make her feel more comfortable. This is why the author concludes the story with the paragraph to show she has hope." 1 2 2 +9018 4 "The author concluded the story with this paragraph he/she wanted to compare Saeng life with the plant. For example, in the story Saeng had just failed her driving test and then she saw a plant the reminded her of homeland. From the flower shop to the house, she is comparing her home land to the flower which shows how she relates to it. So the concluding paragraph shows how when the hibiscus is budding and starts a new phase she will too and go for her drivers license." 2 1 2 +9019 4 "The author concludes the story with this paragraph to show saengs determination to adapt to the change in her life. In the story saeng fails her drivers test and is struggling to adapt to her new life in @LOCATION1. However, when she sees that the hibiscus and geese are familiar, she is determined to adopt as well. Saeng buys a hibiscus because it reminds her of home. This not only comforts her it also makes her miss her old home more. The hibiscus can survive in both @LOCATION2 and @LOCATION1, so it helps saeng realize that she can as well. The author includes the geese because they help saeng realize that she is becaming more familiar with things in the United states, so she can continue to adapt. Saeng says that she now recognizes the V shape of the geese. Realizing that she is becoming more accostomed to @LOCATION1 and she is able to survive helps her reach the determination to retake and pass her driving test. The author includes it to summarize the story theme of adopting to change." 3 3 3 +9020 4 I think that the author put that sentence to get a little personal with the character so you can relate to that person. 0 0 0 +9021 4 "The author concludes the story with this paragraph to show the importance of new beginnings and to accentuate the theme in the story. The theme is that one must overcome hardships and seek new beginnings. The springtime is a representation of a new beginning. So, the new beginning of spring will allow her to start all over again on the drivers test. Also, the author uses the paragraph to show the symbolic qualities of everyday things. Just how the hibiscus reminded her of home life, the geese will remind her of springtime." 2 2 2 +9022 4 "In the story ""Winter Hibiscus"" the author Minfong Ho concludes the story with that paragraph because it was a way of saying shes going to forget about what happen in the past with her failing her test and shes going to do better the next time. Its like the author is saying she will be reborn again like the hibiscus, when the spring comes. Through the story Saeng had to adjust just like the hibiscus. And the hibiscus inspired Saeng to do well where shes at. So its a new beginning to Saeng, after all her learning from hibiscus." 2 2 2 +9023 4 Its kind of like a theme for the story. The hibiscuss inspire her to want to do things. I guess it brings memories of her home country and makes her want to try new things. This is significant to the story because it shows you how important the hibiscus was to saeng. 1 1 1 +9024 4 "I think the authour chose to end the story this way to show that the girl is remembering her past and being at, ease. with the flower she at a since of peace. The writer wants to convey that no matter what your used to you can find something that can bring you happiness and a since of focus." 1 1 1 +9025 4 The author concludes the story with this paragraph @CAPS1 she is detarmand to pass that test and is not going to give up until she passes it. 1 1 1 +9026 4 The reason why I feel the authour ended the story with this paragraph is because she is showing how the charater has matured and how the charater grew in her circumstance. This shows that because you failed once doesnt mean your going to fail again. Also its okay to feel out of place there is alway going to be a time in life where a new beginning is going to start so it is your choice to take that chance or be stuck in your own ways but the decision is always up to you. 2 1 2 +9027 4 "In the short story Winter Hibiscus by Minfong Ho she ends the story by saying, when they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again. I-I failed the test. As many kids do, Saeng failed her driving test and she is crucially upset about it. nobody wants to fail at something and it is almost a humiliating experience to have failed at a test. knowing that others have already successfully passed. With the quote in the introduction paragraph, or the one in the question, it was written as a sign of symbolism. When the geese return back north, it is to show that they are ready to start over again or to try again. When the hibiscus is budding it is trying to start life again. Saeng seeing objects doing things over and over again empowers her to want to succeed and try again. She realizes it is just a part of life and that in order to succeed you have to fail. Minfong concludes with that quote because she understands that no matter what the obstacle, you must press forward and keep trying in order to succeed. She realizes success can only come from hard work and commitment, and that that is what makes a great, strong individual." 2 3 3 +9028 4 The reason why the author concludes the paragraph with that sentence is because her wants to let reader know that it's not over. He wants the reader to know @ORGANIZATION1 will not forget. And also that all this will happen again. 1 1 1 +9029 4 "The author concludes the ending as I will take that test again meaning that the things she going through now is going to happen again but next time she will be peperd. Saeng has a very difficult time moving to another country and getting comfortable in the place the mother suports her as she go throught winter the hibiscus that she bought is a symbol that represent more than it selfs, in this text of winter Hibiscus by Minfong Ho shows this biscus that she bougth when she was in wrost time, she went throug winter with the hibiscus nand at the last paragraph of the story express when the snows melt and the geese return and this hibiscus is budding she is thinking of the feature and how she saeng vowed silently to herself in the spring. She cant wait until winter is over and is just waiting for the spring to come." 2 2 2 +9030 4 "The reason why the author concludes the story with this paragraph is to tell us what she does once she gets back in the spring. That means when she gets back, she will then be taking care of the plants. When she gets gets back she wants the snow to melt and everything. That is what the author is telling me from the story." 0 0 0 +9031 4 "I think the author concludes the story with the paragraph to ensure the reader that she will say again. Also, the author concludes the story this way to show the reader that no matter where you go in life it will always be something and or someone their to assure you of everything. The author also wanted the reader to feel a sence of similarity to the character meaning no matter how out of place you feel its always something you can relate to" 1 1 1 +9032 4 "The author concludes the story with thise paragraph so that we buy his comming book, or so that we get more exited." 1 1 1 +9033 4 "In this story theauther deicides to end the story with this paragraphe, ""when they come back, saeng vowed silently to herself, in the spring when the snows melt and the geese return and this hibiscus is buding, then I willtake that test agien."" because she wants to take the test when every thing is isanters, de forexample she wants everything she likes in her nuforment such as the flowers, the geese and the whether. Another reason why I say the author ends the story with that paragragh because she wants to be, ua eviorment like the one that she was in her home country forexemple there was no snow it was like sping time all ver around. This is why I say that the auther ended the story with that paragraph." 1 1 1 +9034 4 "The author concludes the story with this paragraph to show that she is comforted by the memories of her homeland and really appreciates the beauty of tropical plants. She believes that since it is winter and the hibiscus is not budding, that cannot pass the test until it is. almost reluctantly, she realized that many of the thing that she had thought of before had become through the quite repetition of season upon season, almost familiar to her now. This shows how much she really does believe in the beauty of her homeland and the tropical plants because she is thinking back to other times where things have been strange during the winter and better in the spring and @DATE2 seasons when the plants are budding, so she believes that she will actually pass the drivers test when she feel comfortable, when the plants have budded." 2 2 2 +9035 4 "The geese flying south for the winter and the hibiscus budding are normal things to Saeng. The author wanted to conclude the story with this to show that Saeng felt comfort in things that she was acustomed to. Saeng wanted to have the geese and hibiscus there to feel more comfortable while taking her driving test. Saeng still longs for home and does not quite feel like she fits in the u.s. The hibiscus gives her that comfort feeling like she is home again, in Vietnam, Saeng still feels homesick because she wants things to be how they were. The plants in the green house along with the disappointment of failing her driving test bring her to the emotional state that she was in. In the second to last paragraph the author talks about the feeling of repetition Saeng has when seeing the v formation. Saeng feels that in the winter she will not have the same comfort feeling as when she can see the hibiscus and the geese flying overhead. It says when Saeng arrived in the @LOCATION2 she had nothing that was familiar to her. Now she gets that feeling from the geese and plants. The author concluding by saying Saeng will take her driving test when the winter ends is a good closing because it gives you some insight as to what Saeng is going to do." 3 2 3 +9036 4 "I think the author concludes the sentence then they come back, Saeng vowed to herself, in the spring, when the snows melt and the geess and this hibiscus is budding, then I will take the test again"" is that because it was winter and the school was closed. When the geese come back it will be spring, so it will be time to go back to school. I think thats the reason." 0 0 0 +9037 4 "In the story, Winter Hibiscus, the author concludes his story with an odd ending. when they come back, Saeng vowed silently to herself,in the spring, when the snow melts and the geese return and this hibiscus budding. then I will take that test again. I believe that beyond the literal meaning the author is showing how Saeng is adapting to the new country. By failing her drivers test she also failed in adapting and accepting the new country By vowing to try again it also shows that she is willing to give the country another chance. She found she was still too shaky to say the words at home.. I believe that this is showing that she still didnt consider this country her home. She was still stuck on her past. " 3 3 3 +9038 4 "The author concludes this story in the paragraph to show that saeng wont stop, just because she faild one first time. It also shows that she is not going to let certaint things keep her down." 1 1 1 +9039 4 "The last sentence of a story is usually the most meaningfull. I believe the author ended the story this way for many reasons. For example, I think the author did this to leave the reader with a strong sense of determination. The story quotes, I will take that test again. By use of the word will, the author shows the girls determination. She didnt say she would try to, she said she will, without a doubt. I also think the author ended this way to emphasize the theme of new begginigs. The story quotes, when they come back... in the spring... I will take that test again. This shows that in spring, the new begginig of life she will take the test. This is why I believe the author ended the story this way." 2 2 2 +9040 4 "The author of Winter Hibiscus made a good choice to conclude the story with when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. This paragraph hints to the reader that Saeng intends to combine her new and old lives. Her old life is represented by the hibiscus; she used to the constants from back home. The geese symbolize her new life; they have become almost familiar to her now The obstacle she faces is passing the driving test. The author implies that in the spring, when the old and new parts of Saengs life are combined, Saeng will be able to overcome her obstacle, and all will be well. With the geese in the ground, Saengs life will have come full circle." 3 3 3 +9041 4 The author concludes the story with this paragraph because its important when she says when geese returns and this hibisus is budding then she says she will take that test again and to tell the reader when she will take that test again. Thats way its in the story. 0 0 0 +9042 4 "In the story Winter Hibiscus by Minfong Ho. I think the author concludes the story with this paragraph because it emphasiseS that Saeng is willing to retake the test when it comes back. I also think that the author concludes the story with this paragraph because in the story the @NUM1 to last paragraph says, Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quite repititon of the season upon season, almost farmiliar to her now. This sentence shows me that @PERSON1 is slowly getting used to the new place. Also how she is changing her mind about the pLant and the fact that even though its not the same, it can still have meaning. Therefore, I think the author made a good choice in ending the story with this paragraph. " 2 2 2 +9043 4 "The last paragraph states in the spring, when the snow melt and the geese return and this hibiscus is budding then I will take that test again. I believe the author has ended with that paragraph to state the fact when her new home is like her old home maybe she will feel more confident and more in her place, instead of cold winter total opposite of where she use to live. The feeling of her old home, in her new home will make her more positive and comfortable. So then she will take the test feeling at home and pass." 1 2 2 +9044 4 "In the story Winter Hibiscus by Minfong Ho. The author expresses how the girl believes with her memories and once she changes and adapts to the culture thats when she will have the courage to re take the test she failed that day. Saeng misses her home so much and she cant grasp that their are similarities between her new home to her old home. She realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon season, almost familar to her now. Saeng didnt want to expect the move but noticeing that she wont forget any memories she starts to take on new memories. At first everything was so different now she is starting to remember things about her new home which is a sign of comfort to her. She found that she was still too shaky to say the words at home, lest she burst into tears again."" With Saengs feelings of the change the ending paragraph lets the reader know that there is hope for moving on her knew home. She is gradually starting to gain confidence and she knows when she does she can take her test an succeed at it. The author shows how good change can be if your willing to adapt. Everything might not always be as perfect as you know it to be but your courage will make a happy home with new and old memories, As Saeng starts to relize during the last paragraph." 1 1 1 +9045 4 "The authour meerly states the obvious within this story of shortness. This exerpt mainly mainly means that when spring arrives she will return to the Green house or area with all the plants. When she gets there, the girllwill atempt to act the plant that grews wild in her home country and bring it to her new home." 0 0 0 +9046 4 "The reason the author concludes the story with that kind of paragraph, I think hes trying to show saeng as the type of person to not give up and always to keep growing just like the hibiscus plant. And because she realizes that most of the things that she thought as strange before had become, through the quiet repetition of season upon season that was almost familiar to her. Saeng notices that she will still have next season when the plant has grown and the geese fly into a distinctive V again" 1 1 1 +9047 4 "Minfong Ho concludes the story with this paragraph because to show how Saeng fills. In the paragraph Saeng said ""I will take that test again"" means will I go throught the same stuff. Also @CAPS1" 1 1 1 +9048 4 The author ends the story this way to show that there can always be a happy ending. The geese came back and the girl was happ because of it. 0 0 0 +9049 4 "The author concluded the story with his paragraph because these are all things that she isnt going to give up on.She is trying to say that when everything she believes in successed thats when she is going to take her driving test.Her mother says that the flower is never going ti give up and its strong enough to live through the winter.The geese are going to always come back.That is exactly what she is going to do with her test.She is not going to give up on the test,she is going to keep trying untill she passes." 1 2 2 +9050 4 Saeng feels more comfirtable in the spring because it reminds her of home. She probably never experienced snow or winter before. So nothing in this time of year reminds her of home. In the spring it does because the geese return and the hibiscus grow again making everything feel like its her home again. Conferdence is what she receives when spring comes again. 1 1 1 +9051 4 "The author concludes the story, Winter Hibiscus, with that paragraph because it sums up everything the hibiscus has given Saeng for strength and courage. Just like the hibiscus, Saeng felt out of place in this new country and the hibiscus helps her realize the importance in adapting to her survival in order to live happily. She cant alway be dwelling in the past but learn to like where she lives now. Therefore, when the author writes, In the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, it is a direct symbol of Saeng budding or opening her mind to the @CAPS1 ways, like learning to drive. " 2 2 2 +9052 4 "I believe the author of winter Hibiscus used this for the last paragraph because it is saying when she sees that hibiscus it will give her memories of home again which will bring encouragement for the test. The geese symbolize Saeng's determination to pass the test and try like the new country. Saeng explains, she lifted her head and watched as their distinctive I was etched against the evening sky, slowly fading into the @NUM1) this quote creates a vivid image in my mind that lets me know Saeng will really go and take that test when she has encouragement from not only the geese but the hibiscus also." 3 3 3 +9053 4 "The author concludes with that paragraph because it is in a way letting you know that everythings going to be alright. Saeng is going to retry her drivers test again and everything is back to the way she likes best.It gives you a sense of hope, that everything is going to be alright wi her. Also, that she is going to start making the best out of life. I believe its saying to that is why I think the author concludes wi that paragraph." 1 2 2 +9054 4 "The Author uses this paragraph to @CAPS1 the Story because it shows how Saeng wants to adapt to this country and she is allready beging to understand it and like it. When it @CAPS2 and this hibiscus is budding, then I will take that test again It is a metaphor about herself when the @CAPS3 begins to bloom and @CAPS4 Just as she is starting to bloom and @CAPS4. This is why the Author endeded with this passage." 1 1 1 +9055 4 "Saeng said that when the tree she bought starts budding she will take the test over. She means that without that plant she just does not feel like taking the test. She does not because the plant was with her, her whole life. She also thinks that she can not do it, without that plant. Saeng means that since shes had a plant like that her whole life then she thinks she needs it, but I dont think she really needs it. I guess it just comforts her." 1 1 1 +9056 4 "The author didnt think that Saeng was ready to take the test until she knew more about it. Saeng had a lot on her mind of gardening since she didnt have any friends in school she didnt want to go their the would have nobody to talk to its good that Saeng vowed because she will never know if she would do good or bad, So the author realized that Saeng will take the test and pass." 0 0 0 +9057 4 The author concludes with this paragraph mostly because she wants to emphasize her memoreies of her homeland by saying that she would take the test again driving the next spring. This is due to that fact that she knows as soon as spring comes back there will be a lot of memories coming back to her since during spring animals come out and trees blossom making it all beautifu for her to take the test again with support from her memories of her country. 1 2 2 +9058 4 "After reading the story Winter Hibiscus by: Minfong Ho the author ends the story in a unique way that demonstrates a will to survive. For example in the text the author writes and explain how the plants dok faeng-noi, has adapted to its cold environment is different to the ones back at home. This demonstrates the idea of survival be the fact that in the past this plant migrated to a place that seemed warm at the time, but when cold streets, it found ways to change itself and adapt all based on the instinct to survive. Another example in the text is the author Saeng telling herself that in the spring she will try and take the test again. This demonstrates the will to survive because when Saeng failed the test she felt a sense of meloncoly and failure. The fact that she had the courage to prepare for the test in spring shows how she human being wants to live and for her to live in a new country she must adapt by passing that test to become a survivor." 2 3 3 +9059 4 "The author concludes. the story with this paragraph to show the story about snows on the roads. He shows people how to watch where they are going. In conclusion, the paragraph would show he made through the snow storm." 0 0 0 +9060 4 "In the story Winter Hibiscus Saeng vowes to herself in the spring, when the snow melts and geese return and the hibiscus is budding. then I will take the test again. The author concludes with this paragraph because the hibiscus brings her comfort from home and confidence. Almost familiar to her now. This quote from the story shows that things are starting to be right and she is starting to feel comforting her by making her relize that where she is living now can be similar to where she used to live. When around the hibiscus it brings back memorys of the flowers that they used to have where they lived. Both the mother and the daughter appreciate the flower they found because it is similar to what they had back home. For example, in the story the mother says Its flowers arent as pretty, but its strong enough to make it through the cold months here. This shows that they appreciate its similarity to the old hibiscus. In conclution the author concludes this story with that paragraph because it helps readers to understand the importance of the girls memory of where she used to live." 2 3 3 +9061 4 "The author choose this end to show that saeng hasn't given up on how she is living yet. It shows that even though she really loved her hometown, and feels and remembers a lot back then. She had taken the test and failed, living where she was living then just seemed too much pressure on her. Although she hasn't quite adapted throughly she will try her best to surcome situations that are brought upon her. It gives the reader hope by ending the story like this, instead of just leaving the reader at she bought a flower after failing a test and moves on with her life. For example when she failed the test she seemed distressed and very angry. I,I-I failed the test, Saeng said. For a long moment mrs. Panouvong said nothing. Saeng did not dare look her mother in the eye. Instead, she stared at the hibiscus plant and nervously tore off a leaf, shedding it to bits.it anger Saeng how she had to leave her happy past life for one that is different and challenging. When faced with a challenge extreme emotiona situations occur. Saeng just needed hope and the author choose this to betray to then reader there is a chance of hope!" 3 3 3 +9062 4 In the story Winter Hibiscus the author minfong to ends the story as she does for many reasons. 0 0 0 +9063 4 The auther cncludes the story with this paragraph because it wraps it all up and sums it into one. It is explaining that she is looking forward to the spring when the hibiscuss is 1 1 1 +9064 4 "The reason why at the end of the story she ended it with ""when they came back, Saeng vowed silently to herself, in the spring; when the shows melt & the gees return & this hibiscus is budding, then I will take the again. is because shes making the statement that the birds have where they live all the time & the plant can live here & not when she has & still live shes saying she can to if she tries so she will wait till birds came back are ok the plant buds living in her new home so everything will be okey then she will be able to take the test because she understand & believe she will feel safer & a lot better." 1 1 1 +9065 4 "The story like this for mine reasons. First of all he ended the story to make the readers think about what will happen if there is a part two. Secondly, so he can make a part two. That is way he ended the story like that." 1 1 1 +9066 4 "She vowed this because just as the geese would return she shall. also as the test themselves to learn and grow she would. Furthermore she @CAPS1 the the test of love, survial and family tridition she would know that comeing. back was destiny. In example they come to raise their young for the journey that they shall face and Help them to realise that they always will come back because their lives started there and to always exacpe cold and man kind that wants to harm their lives. The winter months are very harsh there so They know that they have to leave just to @CAPS2. She learns the lessons of family, freedom, life, and survival." 1 1 1 +9067 4 The author concludes the story with this paragraph because he made a comittment to himself of taking the test all over again. He probably said that because theres always a next time for everything. mostly the reason he said it was to remind himself that theres always another try of everything. Finally that most people such know that everyone get a second chance. 1 1 1 +9068 4 The author concludes the story like this because the seasons are changing and there finising there cycle and starting a new one. Thus I think this is a good way to end a story like this because I kinda sets a mood and a feel at the end of the story. 1 1 1 +9069 4 "The author concludes the story Winter Hibiscus with this paragraph because it conveys the theme of the story, adjusting to changed in life. So many things have changed for Saeng and she hasnt full adjusted yet to the way of life. Yet she learns that she needs to be determined to adapt and survive like Hibiscus. The text states, In the spring, when this hibiscus is budding The hibiscus teaches Saeng to never give up, like the hibiscus doesnt give up and survives during the winter. She learns to be determined and even though she failed the test the first time, her memories have helped her and she is going to go for it again. These ideas are in the last paragraph because they summarize the idea of not giving up even if you feel out of place. She has slowly gotten used to this new place and recognizes the seasons now as she thinks this last thought." 3 2 3 +9070 4 To set a tone and to talk about how they look. Also that little paragraph can also start another book or to get you into studing things. It could also compare Your life with the geeses life. Like explaning what hardships you went through. 1 1 1 +9071 4 "The author chooses to end this story like this for many reasons. Throughout the story, the author gives you hints of Saeng being homesick. He relates this to the flower being strong enough to survive the winter months. Meaning shell survive also. Although the flower isnt the same as she had at home, change is inevitable and atleast she could hold on to that. So I believe the author decides to end the story with this to say just like the plant shell survive and try to adjust in the spring also like her driving test. " 2 2 2 +9072 4 The author concluded like that because he was the one to score the lines below what you write. Score of to level and key better. To all the thing he was surprised to kindly be seprated by for there by up so blese geve one a high sew o of will sweit all at you up to the end of the authrs concludes 0 0 0 +9073 4 "I belive that the author included this paragraph to show that you she didn't give up, to show that she kept trying after she failed. Saeng said to her mother ""I failed the test"". Also to make her sound proud and happy to try the test over again. Also I have failed test. I also said that I would take them over but I didn't. So the author put that in their to show how determin she was going to sound." 1 1 1 +9074 4 "The author concludes the story with this paragraph because it lets the reader know that there is still a chance for Saeng; she is not giving up on herself or the test. While reading you will find that Saeng is comforted by memories of her homeland, and obviously this move to another country was hard on her. In the story the author writes, It felt smooth and cool, with a hint of velvet toward the center- just as she had known it would feel. The feeling and scent of the hibiscus flower comforted her. She then proceeded to purchase the plant, because she failed the test she needed something to lift her spirits back up once again. The author decided to end the story with Saeng stating that once this hibiscus plant is budding,then l will take that test again because as the reader should have learned by now, the hibiscus plant has been the only positive aspect in her life since the move. It is giving her motivation to once again take the drivers test, and it is also letting the reader know that Saeng is not giving up." 3 2 3 +9075 4 "Minfong Ho concluded the story Winter Hibiscus with a strong paragraph to show the passion and will of Saeng in her new home to complete the test. When the closing sentences states that Saeng vowed to pass the test, it shows her determination to fight. This will could be from the memories of her grandmother and the flowers that reminded her so closely of her old home. Saengs courage to face her homesickness is the seed of the story, and by ending it with such a bold statement, Minfong Ho blooms this seemingly sad tale into a story of willpower and drive to pass her test. Winter Hibiscus is a passage of heartache, despair, and yerning for a past life. By closing the story with the uplifting promise from Saeng, Minfong Ho puts a happy ending to a possibly sad tale." 3 2 3 +9076 4 The author concludes the story with this because the season is ending and also the story is ending. 0 0 0 +9077 4 The author concludes the story with this type of paragraph because the author knows its bond to happen again. I know this because in that paragraph it says in the spring.I will take this test again. She is just preparing herself for next year. This is why I think this paragraph ended with the story. 1 1 1 +9078 4 "Saeng was thinking to herself after dinner about the test. She knew that she can do much better than before. And she made a vowed to herself saying that once winter finally ends and spring start, she would take the test again, and this time she will pass it with flying colors." 1 1 1 +9079 4 "Saeng wants to take the test again when it is beautiful out and the hibiscus is buddy. The plant shows the beautiful achievement of passing the test. The plant will help her past the test by being strong, tough, and nicely finished. These characteristics reprecent the girl and the flower. The day was a good day and wants to take the test on the same day. The plant was strong and tought. This represents the girl in that time she didnt pass. She told her mother and was very understandig about it. The plant represents beautiful things and the geese represent beautiful things. The girl wants to do that on that time of day and thinks she will get it next time. When she completes and past her test she wants to come home to the beautiful surroundings to remember that day. The author concluded with that statement to represent the importance of the plant and the surroundings of when she wants to past the test." 1 2 2 +9080 4 "The author might have concluded the story with that paragraph, because she wanted to remind the reader how sincearl, ""Saeng"" was to the hibiscus flower. I say this because through out the story @PERSON1 was very compassionate about the flower. I think she felt as through she could relate to the flower." 1 1 1 +9081 4 "The author ends with this paragraph because it symbolizes a new beggining, Saeng says, I I failed the test. She is also really sad, she is making a commitment to get a fresh start on life, just like how the world does every spring. The theme of the story is when life seems hard take a new approach. She intends to retake the drivers test." 1 2 2 +9082 4 The author concludes the story with this to show that Saeng will be ready to take the test in time. She first has to grow and adapt to the new surroundings. Just like the hibiscus flower and the geese. The hibiscus flower now has to adapt to its new surroundings outside of the store The geese are adapting to the surroundings by flying south for the winter. Saeng needs to still learn more and adapt before she can pass her drivers test. By ending the story with this paragraph it shows that Saeng realizes what she needs to do. She needs to stop thinking about where she used to live and begin her new life in a new country. 2 2 2 +9083 4 "Minfong Ho ended her story ""Winter Hibiscus"" with an optomistic sentence. She concluded it this way because the main character of the story was beginning to lose hope. Saeng decided to retake the driving test when her hibiscus flower was blooming. This flower reminds her of her past life in Vietnam with her grandmother. ""Saeng could almost feel the light strands of her grandmother's long gray hair, freshly washed, as she combed it out with the fine-toothed buffalo-horn comb"". She preferred her life in Vietnam than hers in @LOCATION2. She was goint to wait until ""this hibiscus is budding,"" so she can feel more comfortable and happy. The author wanted to end it so Saeng would be happy. " 2 2 2 +9084 4 "The author ended the story with that because she is sad and she wants to give hope to the reader that you should never give up on any thing, always keep trying. Also it ends on a good note, if was like I stayed up in my @CAPS1 crying that would not be good ending. This ending gives hope to the reader and it also tells the reader to practice. This is because when spring comes a end the lady is going to practice driving so when she takes the test she want fail. Also the girl is getting happier at the end and that makes the reader happy. So in conclusion that ending for story has a good choose for many reasons, like making the reader happy, giving the reader couage to never give up, end to practice something if you fail it the first time. Also to help your mother when she is planting or digging up plant," 2 2 2 +9085 4 "The author concludes the story with this paragraph in order to develop the theme and to project what the main character will do after she plants the hibiscus, I believe that the theme of this story is adjusting to changes in life and the author builds upon this theme in the final paragraph. In the ending paragraph, the author writes, when they come back, Saeng vowed silently to herself in the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take that test again. The author demonstrates how Saeng learns to adjust when things change in her life. In this instance, Saeng fails her drivers test and to deal with this setback, she buys a hibiscus to remind her of her homeland. The hibiscus symbolizes a new start test once the geese ??? (THIS @CAPS1 IS @CAPS2)" 2 2 2 +9086 4 So she did not forget to take the test again. 0 1 1 +9087 4 Saeng did not give up on herself. She said she would take it over again then she might pass it. You will not always pass on your first try it takes a while sometime. Saeng encourage you to never to give up just cause you did not get it on your first time. She also builds confidence in herself. Thats why the author concluded the story that way. 1 1 1 +9088 4 "The author ended the story with the paragraph of Saeng vowing to retake the test in the spring, because he wanted to show that the geese and the hibiscus plant represent a sort of rebirth or revival to Saeng. He wanted to end the story on a positive note. Spring is an archotyal season. It is a season of birth and growing. Saeng saw the hibiscus after she failed the first test. It took her to her memories back in Vietnam, which comforted here she believes that maybe when she sees the plant florishing and she geese returning, she will experience that same revival again." 2 2 2 +9089 4 "The author concludes the story with the last paragraph because Saeng failed the test at the beginning of the story. After going through the plants and learned new things, it is natural for Saeng to take the test again in the spring(end of the story). I think this because Saeng learned that she has to get used to hung in @LOCATION1 and the plant remainded her that she has to when she saw the geese fly in the ""V""formation,it was the same as back at home in Vietnam. She realized that it was the same as Vietnam and she has to take that driver's test again in order to get used to living in @LOCATION1 with all of its changes. I also think that its prayer to end the story with her taking the driver's test in spring because the geese will come back,and the hibiscus is budding. This is the beginning for them as well as Saeng. " 2 2 2 +9090 4 "The author ends the story with this paragraph show is that Saeng is willing to try again to try to get a plant that will remind her of her grand mother and remind her of her old home where she @MONTH1 go back one day . So, she can see the near flower she loves and not the take one." 1 1 1 +9091 4 "In Winter Hibiscus the author concludes the story the way he does to show that Saeng isnt giving up. In the spring she will see the plant and remember her home which will help her not feel as homesick. Plants she had not even realized she had known but had forgotten drew her back into her childhood work. This quote shows that when she sees familiar plants she is reminded of home, so in the spring when her plant blooms she will see it and feel more comforting and more at home which will help her find the strength to pass the driving test. So as the plant blooms, so does her comfort level." 2 1 2 +9092 4 What l think the author was talking abount snow and it was add outside for the bays matter and snow started to melted. 0 0 0 +9093 4 He concluded the story with that sentence because it told that she learned a lesson in life. all the way back home where she originally came from she missed her friends ibet and seeing her mother work out in the garden durring this time of year when its cold. I guess there poor in one way. In conclusion the choose this sentence because it sounds like she learned a lesson in life and even starting all over again but with a better understanding in her learning. 1 1 1 +9094 4 Saeng says this in the paragraph because she wants to make her mother proud of her so she is going to take the test again after winter. 1 1 1 +9095 4 "The author concludes the story with this paragraph because it is more will power because she loves the hibiscus and what other way to end the story that have her comparing he self to the hibiscus because when she say in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. She is is saying now this snow is slowing down the hibiscus. So the fail is slowing her down. So she is going to be reading to prepare for when the spring comes when the hibiscus is budding then she will be budding too by passing her test." 1 2 2 +9096 4 " In the article the author concludes the story with Saeng vowing to herself that in the spring, when the snows melt and the geese return and this hibiscus is bidding, then I will take that test again because the spring and the hibiscus reminds her of home. For example in the article she gets shaky because she cant say home because she misses it too much. So she finds things that reminds her of it like a plant called dok faeng-noi. Its not the real plant but she gets it to remind her where she comes from. In conclusion, Saeng finds a plant, she likes the soring because it reminds her home. How about what reminds you of home. Think about it." 2 2 2 +9097 4 The reason that the author chose to end this story with this paragraph is to tell the reader that things get better as time goes on. Saeng failed the drivers test because she wasnt ready. The flower bloomed before it was ready. The author is saying you need to be patient and good things will come your way 1 1 1 +9098 4 "The author chose to conclude the paragraph with the sentence ""when they come back, Saeng vowed silently to herself, in the spring , when the snows melt and the geese return and this hibiscus is budding, then I will take that test again."" because it shows how the strenghth of the hibiscus is related to Saeng's strenghth. In the story, after failing her drivers test, Saeng @CAPS1 comfort in a hibiscus native to her country. when she gets home her mother says Ive seen this kind blooming along the lake. Its flowers aren't as pretty, but its strong enough to make it through the cold months here."" This shows that saeng is faltiering in her new foriegn country. The end quote sums up that saeng @CAPS1 strenghth in the strenghth of the flowers. almost thinking if flower can survive in a land away from its home, why can't I?""" 3 2 3 +9099 4 When she is ready and good she is saying she will take the test again. When she is ready and good and it is nice and beautiful out then she will have the confidence to take the test again. The author was trying to tell us how she felt about letting her mom down. 1 1 1 +9100 4 "The author concludes the story with this paragraph, because it's important to the story. Also it closes the story up. Its exploning that the girl is starting to adjust to the new area, and is going to try harder to get along well there. So by saying shes going to take the test again. It means shes going to look at it in a new way. The authur put this at the end trying to make sense of everything and show the girl had changed." 1 1 1 +9101 4 In the short story Winter hibiscus The author concludes the story with this paragraph because the author felt as thought Saeng would be ready to take thee test at that particular time. 1 1 1 +9102 4 The author concludes the story with this paragraph because its showing she still has hope. The hibiscus gives her hope and strength. In the spring she will take her test again and will hope to pass it. This is why the author concludes the story with this paragraph. 1 1 1 +9103 4 "In the last paragraph of ""Winter Hibiscus"" by minfong Ho The author concludes by saying ""when they come back, Saeng vowed silently to herself, in the spring when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"". I think the author concludes with this quote because it shows her determination to overcome this obstacle, For Saeng the hibiscus represents comfort and the ability to over come. Saeng is very strong and she believes off of that determination which comes from her past. The author concluded with that because it shows Saengs determination." 2 1 2 +9104 4 "In the story ""Winter Hibiscus"" by Minfong Ho the author ends the story it that paragraph to show how meaningful that flower is to Saeng. The text stated, ""@CAPS1 in the garden, Saeng dig out a hole and carefully lowered the ""winter Hibiscus"" into it."" This shows the reader that it is very meaningful to Saeng to have this plant in her garden. Also by having that conclusion statement it help the reader understand the affection of her new country. Also the conclusion paragraph shows comfort at a time of disappointment. In the story it said, ""Its flowers aren't as pretty, but it's strong enough to make it through the cold months here, this winter hibiscus. This also shows the connection of Saeng and the flower and how it helps her through everything." 2 2 2 +9105 4 "Why I think she added this is because she needs time to grow like the plant before she takes the test again. Sometimes you need more time to pass your test. going through school teaches more than stuff we need to know it helps us grow up, and how to understand life. I know myself as a tenth grader that I understand life more than I did in first. She still has a lot of growing mentaly about her past and preasnt." 1 1 1 +9106 4 "I believe that the author ended the story with this line to show that hope for the girl was still there and that even perhaps the flower had inspired her a lot. I believe that when she says ""when they come back, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again"", She specifically chose this time for her to start over, and try again just as everything else mentioned is. When it says, ""and this hibiscus is budding"", it shows that the flower is blooming again, with a fresh start and beginning again just as she would try to do when she tries again to succed at passing the test she must pass. also the tone of which said said this showed hope, she was hopeful and determined that next time around she would certainly pass." 2 3 3 +9107 4 "The author concludes the story with this paragraph to show that while this particular tale is over Saengs life will continue. The paragraph provides closure for the reader as well as explains that in time Saeng will take the test again, once she has further adapted to @LOCATION1 culture." 1 1 1 +9108 4 The author concludes the story with this paragraph because wants her to be successful and do good. 0 0 0 +9109 4 In the response that explains why the author concludes the story with this paragraph is because this story was about a plant growing back every year around the same time. The paragraph ment like I think when the plant came back inspring & the geese would come back around it be another test of growing and not letting the plant die 0 0 0 +9110 4 "From the story, Winter Hibiscus, by Minfong Ho, the author concludes this story with the paragraph of what Saeng vowed silently because it is to show Saengs determination. The hibiscus was the plant she found, that was closly resembled the one at home, to symbolize her conformt. The hibiscus symbolized her determination in life. through the quiet repetiton of season upon season, almost familiar to her now from this, you can conclude that Saeng is thinking of how she reconignzed the geese. It gives her greater confidence within herself. From this, like the Geese she lifited her head and watched as their distinctive v was etched,"" and this explains that there is still hope inside of her. This paragraph conclusion the author had concluded ties together what Saeng is now hoping and believing in." 2 2 2 +9111 4 "Saeng vows this to herself at the end of the story to show that she will adapt to this change, just like the hibiscus will bud. She knows that it will be hard and take time, but in the end she will achieve approval and happiness. We see that it is already hard for her by the way she breaks down crying. And the way she talks to her mother. She symbolizes by planting the hibiscus that things are going to get better if she is not too stuck in the past." 2 2 2 +9112 4 "The author concludes the paragraph with a statement that Saeng said. It was a very good statement. The author ended with this to show that she is motivated and determined to do this. She shows she is motivated in many ways. she says, Here let me help you mother. This shows that she is motivated by helping her mother finish what she started. She is also determined by saying, almost reluctantly she realizes that many of the things that she had thought of as strange before had become, through a quiet repitition of season upon season, almost familier now. This shows that she wants to do something and she doesnt think it is weird anymore. That is why the author concludes that statement." 1 2 2 +9113 4 "The Author concludes the story with this When they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is building then I will take that test again! because he or she are the ones who wrote the story. One information is her family moved to the united @ORGANIZATION1 from Vietnam. Second one is the Author could of made this story it was about her. Saeng fails her driving test. " 1 1 1 +9114 4 "The author concludes the Winter Hibiscus with that paragraph to show the narrator realizes that even though shes in a new country, some things are still the same. So she becomes determined to pass the test. For example, the narrator said, she realized that many of the things that she had thought of are strange before had become, through the quick repetition of season upon season familiar to her now. This quote shows that the narrator has realized that even though aspects of how life has changed, some things remain same. This also shows that some things like the test were strange to her but now that she is familiar with it she could pass it. The narrator also said, Saeng did not dare look at her mother in her eyes. This quote shows that the narrator was disappointed with herself for not passing the test. This means that the test was very important to her with the of pressure to pass, and of a new is ready to pass the test. But shell be more prepared. The theme of this story could be seen things discourage you. The narrator has gone through recently many but in the seasons." 3 2 3 +9115 4 "The author shows a willingness to try harder in this story. She states that, In the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. I think the author realizes that she is going to have to adapt. Also, saying that she will wait till the spring, means she is going to try again, and not give up. The author has a sentimental value to. Insince she is waiting for the hibiscus to bud, I believe she is referring that hibiscus to her country. Insince she has left her country, the hibiscus is the closet thing she has to it, and therefore, she will wait with the flower" 2 2 2 +9116 4 "The author concludes the story with this paragraph to show that Saeng now thinks about images associated with memories in her new home, as well as images she remembers from Vietnam. At the beginning of the story, in the floral shop, she remembers her grandmother, as well as a well, a hibiscus hedge, and other things that remind her of certain feelings and experiences. At the end of the story, she uses both the hibiscus, which reminds her of her previous home, and the canadian geese, which don't seem so unfamiliar to her anymore, to represent passing of time. She now sees her new home as having familiar things in it attached to memories, as her old love did." 2 2 2 +9117 4 "The aurthor concludes the story with this paragraph. In same ways. One reason why the aurthor concluded the story with this paragraph is because in the story she sad something she really wanted. So she took it home and showed her mom, Then her mom look at her weird, because in the story it said that you what? Her mother stared at her increously. So then she explains that she failed the drivers test, but she didnt give up. So at the end of the story she said that she will take that test again. So in conclusion that is why the aurthor concludes the story with this paragraph." 1 2 2 +9118 4 "The story elds with ""when they come back, Saeng vowed sileltly to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again. ""The author concludes with this to show determination to try again and to pass her driving test next year. Also the flowers reminded her of home in Vietnam. (for example, ""Plants that she had not even realized she had known but had forgotten drew her back into childhood world."") and by next year when the flowers bloomed she would more determined and ready for the test again. Also, the flowers blooming resembels starting a new life and maybe it could be the same way for Saeng by passing her drivers test. That's why the auther ends with that statement." 2 2 2 +9119 4 I think the auther concludes the story with the paragraph because it is saying Ill never give up. She is determined to concor everything. I think she is saying she will take the test over and over until she succeeds. That is why the author concludes the story with this paragraph because you should never give up. 1 1 1 +9121 4 "In the story Winter Hibiscus the author end the story saying when they come back, Saeng vowed silently to herself in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again, The author concludes the story with this paragraph because the paragraph is saying no matter what Saeng failed the drive test the first time she is not gaving up till she pass and get her driving. The author also concludes the story with this paragraph because the paragraph is saying that Saeng can wait till winter end so she see the hibiscus is budding." 2 1 2 +9122 4 "In the story Winter Hibiscus"" the author concludes in a way to relate back to the beginning conflict of the main character , failing her drivers test.The author does this to bring the reader back and yet helps the reader foreshadow in whats going on to happen in the future, ""in the spring ,when the snowS melt and the geese return and hibiscus budding, then I will take the test again."" @CAPS1 with this sentence informs the reader that with the help of a plant similar to those at her homeland it will help her move on .When the hibiscus is makeing a new start by budding in the spring Saeng will do the same ,by retaking her drivers test.With this as a conclusion that author therefore is not leaving the reader confused about What happened with the drivers test ,what was the point of that ?." 2 2 2 +9123 4 "The author concludes the story with this paragraph to inform what her hole meaning was. For example when she returned she felt great b/c she came back to were she belonged. One reason is what she vowed silently to herself, in the spring, when the snow melt and the geese return and the hibiscus is budding. @CAPS1 meant that coming back was probably the best thing she could had done." 1 1 1 +9124 4 "well It seems like to me that the reason why the author wrote that as his or her ending is because basically to have sarcaism and put emphesis on what he was saying and making it clear that he wasn't going to take the test again, and basically if some one would haft to kill him in order to make him take that test again." 0 0 0 +9125 4 "The reason why I believe the author concluded the story with this paragraph is because she wants to test the hibiscus again when it returns. FOR evidence in the last paragraph it says, when they come back saeng vowed silently to herself, in the spring, when the snow melt and the geese return And this hibiscus is budding, then I will take that test again. Thats why I believe the author concluded the story with this paragraph. " 0 0 0 +9126 4 The author puts that as the conclusion because it is like a cycle. And he didnt finish it with the end of the cycle because leaving readers with that curiosity edge gives suspense. This was a well written story and conclusion. 1 1 1 +9127 4 "In the short story Winter Hibiscus, by Minfong Ho, a teenage girl fails a driving test but vows to take it again in the spring. The story was ended like this to show that the girl will have a new beginning. For example, When they come back, Saeng vowed silently to herself, in the spring, When the snows melt and the geese return and this hibiscus is budding, then I will take that test again(HO). The hibiscus is what makes her feel as though she is connected to her homeland. So if the hibiscus is budding it is starting a new beginning she feels that she will be able to do the same. This is why the story ends like that. " 2 2 2 +9128 4 "These are a few reasons why the author concluded the story this way. The first reason is that most of the story is written in the way of a serious and stright forward tone and ending the story with a quote or riddle. Makes the reader have to think about the conclusion. It would be the same if he just ended with what happened so he just added something that made you think a little more than a normal conclusion. The author ended the story with ""when they come back, saeng vowed silently to herself, in the spring, when the snows melt and the geese return and its hibiscus is budding, then I will take that test again."" because it was different." 1 1 1 +9129 4 Because she is going to practice and get better at driving and when the flower blooms she will go take the test agin. And she will try harder next time. 1 1 1 +9130 4 The author includes that seterel paragraph because they wanted you to be able to visualize it in yor head rather than not seeing the picture. If you see a mental picture then its good at visualizeing. 0 0 0 +9131 4 The author concludes with that because she means that she will try to go a whole season without thinking about home since she failed it in winter she will try agin in spring. Oho way you can tell this is by seeing that she is talking about how the plant is reminding her how life was befor they moved to the city. For example when she smelled the plant it almost seems to take her back in time to when she was little and they were growing wild and they were pretty. 1 1 1 +9132 4 "The story Winter Hibiscus by @CAPS1 Ho the author concludes the story with ,When they come back, Saeng vowed silently to herself in the spring, when the snows melt and the geese return and hibiscus is budding ,then I will take that test again"". The author does this as a symbol of hope for the reader. Also so its not just an ending where you never know what happens it gives you something to forward to. Furthermore when the geese do come back there is warm weather and the hibiscus is blommming then Saeng will be more comfortable because she has gotten use to idea of living a new place and has met more people. Meanwhile having the hibiscus in bloom will bring good memories back from when she was young and living in her homeland .This will help Saeng achieve her goal of passing her test .Also I believe the author ended the story with that passage because it makes people want to read it again or recommend the story to someone else .I know that I hate reading stories that just end and dont tell you what happens next . However the Author resolved this by letting the reader know that Saeng wants to pass the test and is going to go back and try again." 2 3 3 +9133 4 "The last paragraph of the Winter Hibiscus reads when they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again. The author ends with this statement to let the reader know that Saeng has hope and will continue to adjust to her new settling in the @LOCATION2 @CAPS1 the story, Saeng realizes that she is not as distant from her home in Vietnam as she believes. In the florists shops she sees plants that she had not even realized she had known but had forgotten drew her back into her childhood worth. The plants she grew up with exist in the @LOCATION2 as well. She fails the test by buying a winter hibiscus after breaking down crying, homesick. By the end of the story she recognizes that she is becoming more accustomed to her new life, which is almost familiar to her now, such as the geese flying overhead. The statement of the last paragraph means that by the spring, she hopes to no longer be homesick, and to think of the @LOCATION2 with its geese and winter hibiscuses as her home." 2 2 2 +9134 4 "The author ends the story that way to show Saeng's newfound determination. The whole story is about Saeng's journey one afternoon to come to acceptance with her new home, so it seems fitting to conclude with saeng's determination to pass her driving test and make life work in @LOCATION1. The story deals with several things Saeng finds that make her feel at home. the sharp bitter melon and the hibiscus. These @CAPS1 lead Saeng to feel more at home and make it fitting to end with Saeng's acceptance that she will stay in @LOCATION1. @PERSON1 is also inspired by the hibiscus who is strong enough to make it through the cold months thats what matters. This reads to Saeng's determination to make it through her new life. And finally, the geese Saeng recognizes that life in @LOCATION1 is becoming familiar. These geese lead @PERSON1 to the realization that this is her new home, and she can't go back. The whole story is filled with events like the three above that lead the @CAPS2 determination, so its fitting to conclude the story with her determination of it. " 3 3 3 +9135 4 The author concludes the story with this paragraph because it shows that a new begining is starting For example the fact that they moved to a different country. Thats what the author means when the spring comes. Spring represents a new life which is what Saeng & her mother are doing. Also the snow represents a blanked of the past / hard times. Last but not least when the hibiscus starts to bud that also means a new beganing. So if you put it all together you get the hard times going away when the snow melts & then a new beginning when spring starts & the flower buds That is why the author put this paragraph in the story because they needed a fresh start. 2 2 2 +9136 4 They author had conclued that sentence to be the coucluding sentence because saeng thinks she deserve another chance at taking the garden test because she has failed the test before then having her mother to be disappointed in her. And to what Saeng say at the end of the story is that she's gonna have more confidence in doing the garden test again. 1 1 1 +9137 4 I think the author concludes the story with the paragraph because it is the end of winter. 0 0 0 +9138 4 "The author probably ends the story like that because it creates a sense of hope and wonder. I feel the story is essentially about over coming things. For example, Saeng had a driving test and failed it. She also seemed a bit overwhelmed by the thought of home. Saeng obviously cares about failing the test or she wouldnt have put any time into thinking about it, which led her to a green house. At the green house she was looking for a specific plant to buy, which reminded her of home. Thinking of home and her grandmother upsets her. Saeng has almost this internal war with her-self and the author ends the story that way to end the story giving the reader a sense of hope for Saeng and wonder." 3 3 3 +9139 4 "The author concludes the story with this paragraph because it shows she's not going to just give up easily after failing once. This paragraph also shows that she's trying to like this country as much as she can and she is looking forward until spring time when the hibiscus is blooming, that will remind her of home, but also of her new life in @LOCATION1." 1 1 1 +9140 4 "The author concludes the story with this paragraph because Saeng failed to get a certain plant because it died but winter is over in spring is here its her chance to get that flower. For example in the story it says Saeng broke down and wept. It was already dusk when Saeng reached home. Its not her fault because in the story, it says the wind was blowing harder, tearing off the last remarks of green and chicory weeds. The concludes because it will be a next time when you see Saeng again with a beautiful plant in her hand." 0 0 0 +9141 4 "I think that the author concludes the story with this paragraph @CAPS1 the carter Saeng want to finish or @CAPS2 Take the Test agin when they come back and and also the author is @CAPS3 people @CAPS4't give up what you are doing with your self then she say that ""when the snow melt and the geese return and this Hibiscus is budding Then I will take that test agin"" she means that she will not give up at all." 1 1 1 +9142 4 The author ended the story with that sentence because in the spring Saeng is going retake the test and her hibiscus will finally be budding. Saeng is going to retake the test because she failed it the @CAPS1 time she took. That is why the author put that sentence at the end of the story. 1 1 1 +9143 4 The author wrote this paragraph at the end of the story to symbolize a fresh start. I think this because when it is spring and the hibiscus is budding it will remind her homeland and she will take a fresh start at the test. 1 1 1 +9144 4 "The author concludes the story with this paragraph because Saeng has vowed to retake the test in the spring and will have more confidence when the snow melts, the geese return, and the hibiscus starts budding. A wave of loss so deep and strong that it stung Saengs eye now swept over her. Saeng feels lonely because she is from a different country and misses everything she knew and loved. Now she has the hibiscus to remind her of home." 1 1 1 +9145 4 "The author uses this paragraph to conclude her story to show that there was thought & a process gone through where she was learning & growing. At first SaenG is very uneasy & disappointed in herself. ""I-I failed the test,"" saeng says. ""For a long moment MRS. Pan ouvong said nothing."" You can tell at first the mother is disappointed & then as they talk the are planting which eases the mood. ""How would you like an omelet w/ slices of the bitter melon? "" ""Id love it,"" saeng said. Her mood has now lightened & she is thaking a calm, collective decision to try again which is a reasonable decision to make when she is in a good frame of mind rather than upset & distraught." 1 2 2 +9146 4 "In the story Winter Hibiscus it has an unusual ending. There are many reason why the author decided to end the story this way. First, the girl failed the test which made her go into silien, when he agreed to take the test over it is a sigh of the will to suvive, and it shows that she is trying at he goal until she got it. Finnaly the ending could represent a new beging like when the snow melts away and changes winter into spring. This is what the ending of Winter Hibiscus means and this is why the author concluded it this way." 1 1 1 +9147 4 "The author concludes with this sentence because it shows that Saeng is going to try to adapt to her new home. He lets you know that Saeng is not gonna grieve and be sad anymore, but she will adapt and continue on with her life. The author adds this: I mean, not like the kind we had at-at-"".This is when Saeng has just come home and talked to her mother and she is very sad because she thought about old memories at her old home, but by adding the last statement of the story it shows taht Saeng has decided to move on with life and no longer be sad. She has set a goal to accept it. This is the reason for the author to conclude this story like he does." 2 2 2 +9148 4 The author ended the story with that paragraph because he was trying to tell us that hibiscus represents a comfort in a time of disappointment for Saeng. She saw the plant when she just fell her driving test. 1 1 1 +9149 4 "Authors use conclusions to wrap up a story, or to make the reader think. In the story Winter Hibiscus the author uses the conclusion when they come back, Saeng vowed silently to herself, in the spring, when the snows melt ant the geese return and this hibiscus is budding, then I will take the test again he uses this conclusion to show that she is going to adapt to this culture. For example, when she is in the garden shop she breaks down crying it says and in the warm moist shelter of the greenhouse, Saeng broke down and went It is possible to reduce that she is crying because she uses to fit in here but because she didnt pass her test she doesnt think she will. So she motivates her self at the end of the story to try again. In conclusion, the author used that paragraph to show that Saeng will take the test again so she can fit into this new world. " 2 2 2 +9150 4 "Why the author concludes it because the author wants to show her that she wont give up. that she will take the test again and try harder next time to overcome her challenge, and not give up. The author wants to show her, that shes not a quitter, and shes filled with determination even though she has conflicts." 1 1 1 +9151 4 "Why did the author conclude the story with this paragraph? I believe that the author concluded that paragraph because it tells what she is going to do in the future. For example in the story she told her mom I failed When she was putting the flower in the hole by the garden a flock of geese were flying, heading south." 1 1 1 +9152 4 "The author concludes the story with that paragraph because she wants to try again. So when she said Then I will take that tes again, it means she knows she has another chance. It shows that she is strong willed and wont give up easy. So what she is saying in the last paragraph is if you dont succed the first time try and try again. In the story it says she realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon season. In that part I can tell that she is already starting to change. So I think next time shell do great." 1 2 2 +9153 4 "I think the author chose to end the story the way he did because it shows determination to pass the test. The test was to be able to make the garden graw. You know this because it says in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again."" This shows that the test she look had to do with spring and the budding of flowers and that she is trying to grow something. In this story, they mention her helping her mother in the garden. So I think when the plants didnt grow, she wanted to try again. Thats why I think they chose to end with the statement saying about taking the test again in the spring." 1 2 2 +9154 4 The author uses this paragraph because it brings back memories from when Saeng put down the soil during the winter hibiscus and a flock of Canada geese flew by her. When Saeng failed her test the first time she did not dare look at her mother. She depended on the hibiscus which helped or want to retake the test but not until they re-bud again. 1 1 1 +9155 4 The author concludes the story with this paragraph to conclude all the things they talked about in the story. In the story they talk about the spring time and now Saeng and her mother plants flowers and everything. 0 0 0 +9156 4 I think the author ends the story with this paragraph to show she wont give up if they dont. I think this because the birds and the hibiscus will only reapeer if they survive. That means they will stay strong in the meantime just like her. She will survive her new surrondings and change to fit into the styles of @CAPS1 life. 2 1 2 +9157 4 I think the author concludes the story the way hedid is becuse it will make people wownt to read the next story to see if the test is past it add suspenes to the story 1 1 1 +9158 4 "I think the author concludes the story with the paragraph because that represents saengs decision to try again and to overcome obstacles in her way. It is used instead of her saying I will try again next spring to show diction and to show her goal or decision in a different way for example, It says , Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon season almost familiar now. At first, geese flying in the sky was new to her, but now shes use to it. Maybe the author is making a reference to the geese since it will be familiar (the driving test) and she will pass like she got use to and familiar with geese. Since her family came to @LOCATION1 from Vietnam, shes been adjusting to changes in her life and to circumstances. But, Saeng seemed determined to survive and overcome it. The paragraph is saying simply that shell take the test again next spring, but the author put that paragraph there to show diction by emphasizing the geese, representing learning something new, and the hibiscus, something familiar. It overtones the point in the story, which is to not give up and the will to survive." 3 3 3 +9159 4 "The auThor loves @CAPS1 planTs , so after every winTers Her @CAPS2 To see if she can planT and grow beauTiful planTs begins . T he spring @ORGANIZATION1 is The only @ORGANIZATION1 you can grow one of a kinds plants like she grows. Her TesT is To grow a garden of beauTiful planTs and vegeTables. T he auThor will work hard jusT like her moTher did To bring The gardens To life especially afTer The winTer." 0 0 0 +9160 4 The author concludes the story with this paragraph. He was talking for bout ho beautiful was nutura. He also thought sense Saeng loved nutura a lot she was going to go back to school to finish the test when she could be home in the grarden taking care of the plant. That why I think the author dicide to finish with that paragraph it would probaly discribe how much he like nature. 0 0 0 +9161 4 "In Winter Hibiscus by Minfong Ho, the author ended the story with that particular paragraph to symbolize new beginnings. The story is all about the failure and shame felt by Saeng when she failed her driving test, and how finding a familiar hibiscus plant gave her a new lease on life. By buying the hibiscus, Saeng was reminded of her home, and by giving that single hibiscus a new, unfamiliar place to thrive in, as she was. She was able to make a connection with the plant. The spring symbolizes the beginning of a new year, and the budding hibiscus represents the start of its new life, and so Saeng wants to restart her life when the plant restarts its life and retaking her driving test." 3 3 3 +9162 4 The author concludes this story with this paragraph because the symbolism of this paragraph tells that when every thing returns to normol and the geese return and this hibiscus is budding that I will take that test again. meaning she will be willing to move again and try to adapt. 1 1 1 +9163 4 "The author concludes the story with the paragraph about retaking the test to show that Saeng is getting more used to @LOCATION2, our memories last forever, and even the smallest of things can hold memories for us. The paragraph shows Saeng is getting more used to @LOCATION2 by showing us that she isnt going to give up on @LOCATION2 and that she will keep working at understanding our customs. The last paragraph also shows that our memories last forever by the hibiscus representing Vietnam and her home there. It also shows that she can start a new here just like the hibiscus does at her house. Finally the paragraph shows that even the smallest of things can hold our memories by the hibiscus representing her home in Vietnam. The hibiscus brings many memories back for Saeng and helps her cope with @LOCATION2. This is how the last paragraph shows us that Saeng is getting used to @LOCATION2, our memories last forever, and the smallest things can hold memories." 2 2 2 +9164 4 "In the story, Winter Hibiscus, by @PERSON1, a teenage girl; Saeng, and her family, have moved to united states from Vietnam. Saeng is walking home after failing her driver's test, and she passes a familiar plant. She then goes into a florist shop to purchase the plant. She arrives home and tells her mother she failed the test of course her mother is upset, but she makes dinner and the plant the winter hibiscus at the end of the story Saeng thinks to herself, when they come back, in spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again I think Saeng says she will retake the test in spring because she feels confident and happy now that she is comfortable with the plant she has, and her mother isn't too mad at her. She feels that everything is going to be ok and she can retake the test in spring, when life is blooming." 3 2 3 +9165 4 "The author concludes the story with this line because it shows that the geese was given the inspiration from the flower to come back, try again, and not give up. for example, Saeng vowed to herself that, In the spring when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. This quote shows that the hibiscus was the reason for her determination. and that she would come back, just like they did. thats why the author decided to conclude the story with that line because she wanted to show Saeng being inspired, and not giving up. " 2 1 2 +9166 4 "In the short story Winter Hibiscus by Minfong Ho I think the author ends with that paragraph because it shows that she is determined to pass. When they come back, Saeng vowed silently to herself, in the spring, when the snow melts, and the geese return and the hibiscus budding, then I will take the test again. This shows she is determined because geese migrate every year and flowers always bud every year. She will keep coming back just like the geese and the hibiscus do. She will be determined to pass the test and fit in sooner or later. If she was not determined she might never pass and fit into her new society." 2 2 2 +9167 4 "I believe the author ends the story with this sentence to show how she overcome obstacles emotionally and how the hibiscus plant is a sigh of hope for future. In the beginning of the story, saeng is upset about failing her drivers test and then on top of that she gets upsets about seeing the native plants of her homeland. In the story it says, When she got to the hibiscus, she reached out and touched a petal gently. And besides it was yet another friend, a small shrub This quote shows how these plants remind her of her homeland, which she misses dearly and is very important to her. By bringing this plant back to her house, it's like she's bringing a little piece of her homeland. This quote: when the snow melts and the geese return and this hibiscus is budding, then I will take that test again."" shows that Saeng has hope in her life again in the form of this is a big turn of events in her life that will make her much happier in @LOCATION1 which is why she ended the story with this sentence. " 3 3 3 +9168 4 "The author concludes the story like this because she is not ready to move on with her life. When everything turns back she will take that test and move on. But until her flowers are gone, she will not worry about school. For example she wrote Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon season, almost familiar to her now. like geese. This means that she has been use to change and has accepted the situation." 2 1 2 +9169 4 "I think the author concludes the Story with that statement becauses, the snow doesnt melt in the spring geese dont return in the winter and the hibiscus is not budding til spring either. The hibiscus is a beautiful plants Saeng loved this plant. " 0 0 0 +9170 4 "The whole story about Saeng buying the hibiscus is in response to her failing the driving test. This crushed her. She wants to be reminded of her old homeland where she did not read to past the driving lessons. So she goes to a green house to find plants that are similar to the ones she used to have in her homeland. She does this to try to make herself feel better but still in the warm moist shelter of the greenhouse, Saeng broke down and wept. Saeng feels she failed and the hibiscus gives her hope and memories of her old country. Her mom clearly sees and understands this when she doesnt yell at Saeng for spending @NUM1$ on the plant. Im glad you got it, Saengs mom says because she knows it comforts her daughter. Together the plant the hibiscus. By doing this they are planting Saengs hope to grow, not only to pass the driving test but to make it in the new country. *The story ends with those lines because Saeng decides if the hibiscus will grow then so will she. She will be ready to face the driving test with hope and support and because she adapted. *The hibiscus, although it is not the one she had in the old country, she knows they can adapt to their surroundings and so the plant has in the new country. The plant will grow if it can adapt. Saeng can grow if she adapts to this new country." 3 3 3 +9171 4 "The author is trying to communicate that Saeng will never give up and her confidence will grow so she can retake her test like the hibiscus in the spring. Comparing Saeng to the hibiscus plant in the last paragraph was to show how she will grow and advance to take the test again when its the right time. The snow melting represents her sorrows going away as the sun shows how she will succeed and grow like the hibiscus plant she had bought. The plant growing in the sunlight would represent her confidence to take the test next time, getting rid of the cold brisk snow which is like her negative self esteem and attitude. The author chose to compare Saeng to the plant in the last paragraph to show how it related to her life and attitude, and how her life will change in result of the hibiscus plant." 2 2 2 +9172 4 The author conludes her story with this paragraph because it really shows the heart and the perseveriance Saeng has. Also it tells a lot about her carter and ends the story in a strong mood. That is why she ended the story the way she did. 1 1 1 +9173 4 When the snow melts & the geese return then mean its almost spring. 0 0 0 +9174 4 "The author concludes the story with this paragraph because the auther felt like she would be ready for the new test. In the text it states that after walking home after failing liner driver test, she sees a familiar plant. later, she goes to a florist shop to see if the plant can be purchased That she will take the test again because she feel as thought she is confident to past it the next time around." 1 1 1 +9175 4 "The author concludes this sentence in the conclusion because she wants to show the courage the girl has in immigrating to @LOCATION1. After having failed her drivers test Saeng was feeling deafeted and worthless. Her mother took into concideration and didnt get mad at her for buying the flower. In fact she decided to plant the flower to show Saeng that everything would work out in the end. When Saeng began to see her mother doing this she became overwhelmed with determination and took over planting the flower for her mother. Immigrating to a new country is difficult and many immigrants face problems on a daily basis. Saengs mother was out in the cold planting and trying to make the best of her situation. By setting this example Saeng realized that she too could make the best out of her situation. This is why in the end Saeng decides to take her drivers test again, and ultimatly live with the same attitude her mother has. " 3 2 3 +9176 4 They can compair the story and this statement to eachother because in the story the does not give up and the same thing with the test who even is taking to test again did not give up cause they are taking it again. 1 1 1 +9177 4 "The author concludes the story with that paragraph in hope. The conclusion the author made was to say in over that amount of time, Saeng will have overcome that failure and will be more prepared for the test for a second time. In the text, it says how Saeng realized that many of the things she thought of as strange before have become almost familiar which is an improvement." 1 1 1 +9178 4 "Minfong Ho concludes the story with this paragraph to show the change in saengs heart and attitude toward her new life in @LOCATION1 spring symbolize rebirth, the author doesnt include this on accident. Spring will be saengs time of rebirth where she can take the test and restart her new life in @LOCATION1.When the snow meltsis included because winter symbolizes death and when the snows melt a way so will saeng fears. " 2 2 2 +9179 4 Will you no in the spring the snows melt and the grass is not pretty and its a muddy grass for the pigs who love to now in mud how about a mud hath ford see what winter can do to you have about the tree now weight leave to live etc good life 0 0 0 +9180 4 "The author chose to conclude the last paragraph with the story to show that she has not given up. It shows that she has not given up because it says overhead...geese...honk...familiar to Saeng now (second to last paragraph). @CAPS1 when she buys the hibiscus, because, it holds many memories from home, to keep her going. Her mother still making an omelet with slices of bitter melon made her math water, @CAPS1 reminding her of home, gave her hope to not give up." 1 1 1 +9181 4 Saeng love Flowers and plants. The Author concludes this paragraph in the stony because it go Along with the story. In the spring when the snow melts.Saeng waS waiting For winter to beover so she can see he plants and Flowers again. Saeng like the values of plants and enjoy planting them. The Author include that paragraph because he or she was showing how Saeng is so in love with plants. She couldnt wait a new winter break was over. 0 0 0 +9182 4 The author ends the story with that paragraph because it shows how Saeng feels connected to the plant that reminds her of home. This connection is important because it shows how people can find ways to deal with changes in their lifes. Saeng does this by buying and planting the hibiscus plant so that she can see it and be reminded of home. She also buys the plant so that it motivates her to take the test she failed again in the spring when the flower is budding. 2 1 2 +9183 4 because she is confused and is not yet youst to the country she is in how so she can concentrat on her test as soon as the flower will plown because she feels more like home she thinks that she will do better on the test 1 1 1 +9184 4 "The author concludes the story with this paragraph because the hibiscus makes her comfort, she says when they come back in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. Since the author failed the test as it is told in the story, she will feel comfort taking the test again when the hibiscus come again after the snow season. " 1 1 1 +9185 4 "The author concludes the story by saying that when the geese come back in the spring then she will try to pass the test. So say that if at first you dont sucede, try try again. Also the author concludes with that to show that Saeng has been in the @LOCATION2 for some years and that she still misses her home back in Vietnam." 1 1 1 +9186 4 She thinks she is gonna pass the test because on spring becaus everything gets back on live againg flowers start growing again trees start to get green every thing starts to get Green the Geese are returning animals are starting to come out people go to the beach to distract their selve and that might be what she wants to do. 1 1 1 +9187 4 "The author most likely concludes this story with the quote because she has renewed hope. She was feeling really upset because she had failed the driving test and when she saw the hibiscus flower, she got even more emotional because she misses her home but when she sees the geese as she finishes planting the flower, she decides shes going to try to retake the test next spring." 2 1 2 +9188 4 "The author concludes the story with, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, to show Saeng growing up. As another year passes, Saeng will be more comfortable with her circumstances, and ready to start over fresh, just like all the plants will be blooming and budding. Failing her drivers test, really upset Saeng, so by waiting another year, she will be able to practice more, and become better, so that when she goes back and retests, she will be an even better driver, by having the time to practice, and start over. Its almost like a new beginning for Saeng, another year has past, and new when her familiar plant budds, and begins to start over, so will she. Since the hibiscus plant is familiar to Saeng, she is better able to relate to it, and as it buds, and start fresh, so will Saeng. In conclusion, this is why the author concluded the story with that phrase." 2 3 3 +9189 4 I think the author includes this paragraph in the story because it makes sence the geese come back home after the snow melts and saeng trys to take her test again around that time. 1 1 1 +9190 4 "In the story Winter Hibiscus by Minfong Ho, author ends the story with When they come back, in the spring when the snow melt and the geese return and this hibiscus is budding, then I will take that test again, to show that Saeng is ready to adapt, but still needs time. Throughout the story, Saeng struggles with overcoming moving from her home, to an unfamiliar place hundreds of miles away. However, Saeng still isnt ready to let go of her home yet. So she tries to hang on to her old memories, only to that in @LOCATION1, everything is different. When she buys a familiar plant to her, she realizes that even it is different in @LOCATION1, and gets angry that nit isnt what she expected. However, at the end of the story she realizes that different isnt always so bad, and vows to try to accept this new culture, but nows that it will still take a long time before she is ready to fully do so." 3 2 3 +9191 4 The author concludes the story with that ending paragraph like that because when the spring comes back she going to try again. When I was reading this story its says in the story that her mother had asked her What happened. And the Saeng said I- I failed the test. So I am predicting that her mother is going to help her more with her studying and with her gardening. When the snow melts and Saeng vowed to herself that this time she work harder and past the test. 1 1 1 +9192 4 "Why the author concludes the story with this paragraph is because that is when she will take the test again. Also because the geese made her realize, that many of the things that she had thought were strange before had become familiar. Just like the geese. It was through the quiet repitition of season upon season." 1 1 1 +9193 4 "She ends with that paragraph because it starts over. When the geese came back and the hibiscus is budding its like restart and she can try again, dealing with her memories of home and her adaption to the new country. I think she will be able deal with it better and take it again, it shows that she wont give up." 1 2 2 +9194 4 "She says that because she had failed to keep the tropical plant a live.She was disappointed in herself and so that why she said. In the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that tes t again. When she failed and her mother said it will be okay you can always try again." 1 1 1 +9195 4 I believe that why the author concludes the story with this paragraph is because she is telling the reader and herself In my point of view that once again she do work in the garden to see if it catches her interest. I believe that the author is trying to express this because in the beggining of the story the author shows no interest in the garden or any interest of the world around her. For example when she was supposed to buy just seeds for the garden she went and used some of her mothers money to buy herself a big mac. So In conclusion I believe that what I wrote clearly states how the author feels and why she ended they story the way she did. 1 1 1 +9196 4 "The author concludes the story with when they come back, Saeng vowed silently to herself, in the spring, when the show melts and the geese return and this hibiscus is budding, then I will take that test again."" because Saeng failed the test before and now she wants to pass the test. She learned a lot from her mother that day that completely changed her attitude towards life." 1 1 1 +9197 4 The author might of concluded the story with that sentence to show that she still cares about the test and not mostly about a meisly plant thats gonna die anyways. Also because she needs to pass the test and the author is putting in a getall that in the end the girl is gonna pass and not have to re-take that test all over again. but also he/she tells that because he/she wants us to know that it aint all about other things that are expensive in life but that school is really more important than anything basically. 1 1 1 +9198 4 "The reason why the author, Minfong Ho, finished the story Winter Hibiscus on with the last paragraph was due to in the story the girl went out on a test. And on this test which I do not know what the test is, she failed it and returns with a saebba hedge. This is a tamed plant for the family. The family loves this plant. They are what I understand from the story, newcomers to a country. And the country is @LOCATION1. Theyve moved here from Vietnam. She goes for her driving test and comes home failed. One of the things her mother asks, why do you spend so much money on this beautiful plant when you could a had the famed bee-maags which is the mothers attempt to say a Big Mac which is their favorite fast food sandwich. But the reason why the daughter comes back with the plant is she has failed her parents on the driving test. She wants to go back and try again. Then the snow will melt and geese return and this hibiscus is budding, then I will return to take the test again. She believes the next time she goes, she will pass the test and that she will not be ashamed of it and that she will make her parents proud by passing the test due to it is a high honor to the family, I believe, from what I am getting from this. In Vietnam not many people drive and that they want their daughter to earn this and it is something they do not have." 2 2 2 +9199 4 "It is clear that Saeng is in the midst of struggle during a time of homesickness after recently moving from Vietnam. But as time goes on she will learn to balance the affection she feels for both her new country and homeland. As Saeng moves through the story it is apparent that she longs for memories of her homeland, but is beginning to find new things to enjoy about her new home. For example, while she is touched by the memories aroused by the hibiscus flower, she is intrigued by the new experiences, such as eating Big @CAPS1 and new friends. While homesickness has caused her to struggle she knows that with time she will be able to overcome the obstacle of leaving the old ways, for the new without completely obliterating either. She is convinced that by spring she will be able to overcome this obstacle and have the confidence to pursue any that will arise in her future. " 3 3 3 +9200 4 The author concludes the story with Saeng vowel to show a sense of change in Saeng. The winter time is very brutal like Saengs mum said but spring is when things come alive. I think is showing the sense in Saeng. Though winter is tough and you @MONTH1 get them trown around by the wind. When spring comes she will try the test again and come to life and enjoy the @LOCATION1 even thagh that she is far from rain. The author did the right thing to conclude the story with that vowel. 1 1 1 +9201 4 "The author concludes the story with this paragraph because he is trying to say whenever something leaves their home they always come back. The hibiscus reminds her of home and that is where she wants to go. Saeng had failed her drivers test and she said when the geese come back I will do it again. The plant reminds her of home but its, Not like the tird we had before (Ho). She is trying to say that the ones over at Vietnam are better and she wants to go back because she misses it." 1 1 1 +9202 4 "Saeng is talking about flowers coming back in the spring time. She is vowing to take the test again after the snow is gone and she is going to do it agin. The wind was blowing harder, tearing of the last remnants of green in the chicory weeds that were growing."" So she cant wait until it is spring agin. So she can try to plant agin." 0 0 0 +9203 4 The author concludes the story with this paragraph because it is saying when everything comes beet to the way they were she will do everything agein so thins arent the same as they used to be and she wants them to. 0 0 0 +9204 4 "The girl, Saeng , seems to be attached to nature and enjoy it when the spring comes like she said, a new natural intenill start and she will be motivated to take the test that she failed again. The author most likely finished with this paragraph to show that there will be hope for Saeng and she will do what she has to do to have comfortably in her new home country. The whole story talks about how she is still unsatisfied with her new home but it would be cut to and the stay with new chances and a new life, which they did using springtime to show this." 2 1 2 +9205 4 "The author concludes the story with this paragraph to show maybe by this time she will be comfortable with her new home. I know this because when I moved i didnt like it because I didnt have many friend but in like a year or two I was fine because I had a lot of friend. This is like Saeng because she misses her old home because she keeps talking about it then crying for example, when see saw the plant it was the one she had at her old home and she started crying because she missed it. In conclusion that is why he put that at the end of the story." 1 1 1 +9206 4 "In the story winter Hibiscus, the author included important part at the end that saeng vowed. The reason why she said that is because when everything in her life starts up again she will love her life again, she will be alot happier person." 1 1 1 +9207 4 The author in @LOCATION1 this because it is shows what is is going to do to he her gain failed and this story a what she must do get just from the geese 0 0 0 +9208 4 "I believe that the author chose to end with that paragraph because the paragraph represents new beginnings and starting over. When Saeng fails her driving test she has a moment of weakness, she feels lonely and then she sees a plant that reminds her of her home in Vietnam. In a since, the plant comforts her. its flowers arent as pretty, but its strong enough to make it through the cold months here In this quote Saengs mother tells her that the flower is too, out of place but yet has found the courage and determination to still grow. In the closing paragraph Saeng decides that, like the flower and the birds, she can also find the coarge to face fears. She deciedes to retake the tests." 2 2 2 +9209 4 In the story Winter Hibiscus The Author concludes with this paragraph to show that shes not going to give up and to show her mom that too. 1 1 1 +9210 4 I belive the author was saying a new start. I say this because of everything coming back. I also say it because Saeng knows whats important now and will take it seriously. That is what I think the author was saying at the end of the story. 1 1 1 +9211 4 "During Winter Hibiscus written by Minfong Ho, a young girl and her mother to a new place,and the daughter Saeng is having a hard time.Saeng found a plant called dok faeng-noi that reminds her of home. So she bought it and took it home to show her mom, At first her mother was upset, she bought a @NUM1 dollar plant but then hearing her daughter is disappointment in herself, she found joy in the beautiful plant, while Saengs mother was cooking dinner .Saeng planted the beautiful plant and told herself when the geese return, hibiscus is budding and its spring she will retake the test. She found strength in herself and courage to do better. I think the author wanted to show how she gained respect for herself in the end of the passage. That is why the author ended it like she did. " 1 2 2 +9212 4 "The author concludes the story with this paragraph because it is what the whole story is about. It is about how Saeng misses home and filed the test when she bought the hibiscus. Saeng failed the test because she bought the hibiscus. She let herself by the flower and remember her home. That make her sad. In that last paragraph she is saying when the geese come back in the spring, she will be used to the new country and home, and will not fail the test. If she is tempted by something from home, she will not take it because it will make her sad. The author concludes the story with this paragraph because it is the main idea of the story. It shows her getting used to the new home" 2 1 2 +9213 4 "In the story Winter Hibiscus, written by Minfong Ho, the author concludes the story with that paragraph to sum it at all up. The author used this to keep the reader wondering too." 1 1 1 +9214 4 "The author concludes the story with, when they come back, saeng vowed Silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again, to show that even though she failed her test she isnt giving up and that she will persevere over this and continue to try. This ending shows the determination in Saengs heart. Saeng has enough determination inside of her to go on even though she failed her test and failed her grandmother to continue trying and continue to try to complete for her grandmother and herself. I really liked this ending and I am glad that the author decided to use this ending in the story." 1 1 1 +9215 4 "Having failed the drivers test really upset Saeng. Not only that but she had to moved to a new country and the loss of her grandmother really made thing worse. The Hibiscus plant in this story, is like a symbol. It represents her life and reminds her of one in Vietnam. The way memorys come to her as she sees these flowers shows how she felt. It was all about starting new and overcoming obstacles. When she says, and this hibiscus is budding, then I will take that test again, it shows her starting new again and making it through the rough times, symbolized by winter. It was a symbol of herself and the hardship she will overcome. " 2 2 2 +9216 4 "In the story the author concludes the story in his last paragraph because he showes that even in her hardships. Saeng goes on and keeps trying to live a normal life after she had to move. For example when it says, Saeng vowed silently to herself in the spring I will take the test again. This shows that even after one failuare you should never give up but don`t forget the past." 1 1 1 +9217 4 "The author of the story winter Hibiscus, Minfong Ho, concludes the story with a meaningful paragraph. The author wrote, When they come backin the spring then I will take that test again.(No). Saeng thought to herself and meant that she would move on in the spring. It also shows that Saeng could overcome failing the test. The narrative also states,in the springwhenthis hibiscus is budding(No). The season of spring means to symbolically start new and fresh. When the flower is budding, it is beginning a new life. Saeng is also starting fresh when she decides that she will take the test in the spring. Finally, this shows that Saeng could adopt to her new life by purchasing a familiar plant. The hibiscus helped her get through disappointing times. The geese also were a reminder that some things back home were the same. Minfong Ho concluded the story with this paragraph to emphasize Saeng's adaptations. " 2 3 3 +9218 4 The author concludes the story with that paragraph because she wants to tell people that shes going to take the test again and try. Shes going to be like the flowers but she needs time so when they budd she will. 1 1 1 +9219 4 "In the story winter hibiscus by @CAPS1 Ho the storey ends with Saeng promising herself that she will take the test again in the spring. The author most likely ends this way because it shows how Saeng is getting over her sorrow test in the spring when the Hibiscus is in @LOCATION1. This is shown when Saeng says I-I failed the test (@NUM1) this shows @CAPS2 leaving her homeland and makes her even more so sad, but she then promises herself that in the spring when flowers @LOCATION1 she will try again. She does this when she says to herself in the spring when the snows melt and the geese return and this hibiscus is budding, then I will take that test again.(pg @NUM2) this shows her getting over her sorrow and becoming determined and looking forward and taking the test again." 2 2 2 +9220 4 "The author concludes the story with when they come back, Saeng vowed silently to herself, in the spring, when the snow melts when the geese return and this hibiscus budding, then I will take that test again. The author does this to show how Saeng was able to slowly adjust to change while not forgetting where she came from. This is shown by using symbols of geese and hibiscus together. The geese represent the new home and sounds Saeng had to become adjusted to. While the hibiscus represents the old memories of her past and homeland. Putting the symbols together shows she has come to accept both places. By @CAPS1 that shell take the test again in the spring shows how she will be ready for the change because the test represents how she feels abut @LOCATION1 and by passing the test she allows herself to pass with @LOCATION1 and adjust to the change in her life." 3 3 3 +9221 4 They used this sentence because she wants to see the flower bud and feels like she is at home again. Then she will take the test. She also will feel lucky and have a memory of home so saeng vowed silently to herself. 1 1 1 +9222 4 " The author concludes the story with the sentence, when they come back Saeng vowed silently to her self in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The story tells us most of the hard times and obstictes Saeng has had to go through. The two major ones in this story were moving to a new placThe author concludes the story with the sentence, When they come back Saeng vowed silently to her self in the spring,when the snows melt and the geese return and this hibiscus is budding,then I will take that test again.The story tells us most of the hard times and obstictes Saeng has had to go through.The two major ones in this story were moving to a new place,and failing her ariving test.Saeng had a hard time trying to overcome these events and others.So I think this sentence was put at the end so the readers could see that see was going to be ok, and overcome everything that happened.Know we know this special plant will help Saeng will future proplems. e, and failing her ariving test. Saeng had a hard time trying to overcome these events and others. so I think this sentence was put at the end so the readers could see that see was going to be ok, and overcome everything that happened know we know this special plant will help Saeng will future problems. " 2 2 2 +9223 4 "After reading the about story, Winter Hibiscus by Minfong Ho, I believe the quote, when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and the hibiscus the budding, then I will take that test again. Was put in the story for a reason. I believe that this quote concluded the story because it ashamed a tone and feeling of hope. For example, in the story it state that Saeng day out a hole and carefully lowered the plant into it. This shows that this plant areas a lot to here. The story tell the readon that it things lack memories of her grandmother. It represents hope to Saeng because it always brings back happy memories she once had which push here to try to overcome the loss betters. Therefore, the quote concludes the story because it about Saeng will for hope and peace. It represent that when the plant blooms in the spring she will have a new found sense of hope and happiness." 2 2 2 +9224 4 "Winter Hibiscus, by Minfong Ho is a story about transition to @LOCATION1 and her own ability to be strong. Saeng failed her drivers test and was dissapointed as she walked home. She stops at a florist shop because she see's a plant that she thinks is like the one she had back home. Seeing this plant again makes her remember memories from her homeland. She plants it when she gets home and vows to take a driving test again. When the geese get back. The plant is like encouragment to her." 2 2 2 +9225 4 "The author concludes the story with the paragraph because the story was about her getting accustomed to things being repeated in nature, so she added the last paragraph saying that when everything happens again she will do the same. That is why the author concludes the story with the paragraph." 1 1 1 +9226 4 I think the athor includes that becaus. she mite have faeled and need more time to study to get thing @NUM1 so other than that damn new 0 0 0 +9227 4 "The author uses this sentence to conclude the story to show that Saengs hope is restored. Throughout the story Saeng is sad and misses her home. She feels hopeless in this new land, the hibiscus reminds her of home and brings back memories of her being at home with her grandmother, which makes her want to be back at home. The author adds the part about the geese leaving because they also have to leave their home. The hibiscus is to symbolize her being strong and that she will make it through moving to just strange land." 2 2 2 +9228 4 "I believe the author concludes the story with this paragraph to show Saeng wont give up & will keep trying. In the story all the memories of her old country encouraged her to be strong. For example the flower made her sad but in the end it made her better. Also in the beginning she didnt really like new changes and she missed home, but at the end some of the same memories she had back home were in her new country. Those are the reasons I believe the author concludes the story with that paragraph" 2 2 2 +9229 4 "In the story winter hibiscus by Minfong Ho I believe that the author ended the story with that paragraph because it shows that if the Hibiscus plant has enough strength to come back and flourish than she has enough strength to come back and take the test again. For example, in the story it says but its strong enough to make it through the cold months. This quote shows that the hibiscus plant is strong. And Saeng sees that as if the plant is strong enough to return after a cold winter than she can return to the test after failing. Overall, I think that both Saeng and the hibiscus plants are very strong." 2 2 2 +9230 4 In this story it is about how Saeng and the hibiscus plant are similar when it comes to adapting to their surrounding and how her and the plant will keep continuing just like Saeng with her test. But I know this because its says Then I will take that test again her saying that is her saying she will thrive again just like the hibiscus plant. So in conclusion she really is much like the plant and will continue for many seasons to come and also adapt to the changes just like the hibiscus. 2 2 2 +9231 4 "The author ended the story with the last paragraph because spring time comes and geese return, shell feel better about herself so she can go and take the test again and focus more on the test ." 1 1 1 +9232 4 "In the story winter Hibiscus by @CAPS1 Ho, the author concludes the story with that paragraph because it goes along with the story. In the story Saeng went to look for the pant that reminded her of her grandma. She found the plant and then she thought of her grandma and she cried. I think she was testing herself to see if she had gone on with her life but she failed. So I think she bought the plant so she can try again when the plant is in bloom." 1 1 1 +9233 4 "He want to learn hibiscus spirits. Don't be afraid of fare. You just keep ahead, continuly to learn what you want, then you will success. like hibiscus has strong alive: fight with evironment. So, the author use this paragraph to conclude, the purpose is the Saeng will take this test again, like hibiscus will budding when spring's come" 1 1 1 +9234 4 "When they come back, Saeng vowed silently to herself, in the spring, the hibiscus is budding. she will take the test. I think that the author conclude the story with this paragraph because she wants to test them again." 0 0 0 +9235 4 "The author ended that story like that because thats how she started the story.The little girl was looking at the flowers and plants in the the beginning ,so the author thought that it would be a good thing to end the story like it was started.Also because the friendship that Saeng has with the plants and flowers will come back again in the spring when everything is blooming and looking very beautiful.It shows that the plants give a sense of comfort when she is going through hard times.That is why the author concludes with Saeng and the plants." 1 1 1 +9236 4 "In @CAPS1 Hos Winter Hibiscus, the author concludes the story with a meaningful paragraph. The author tries to make a message to saeng. When saeng saw the geese slowly fading into the distance she thought of herself. When they come back"" Saeng will also come back to school. the geese return and this hibiscus is budding means that saeng will return to the school and be a new person. This hibiscus is budding states that saeng is still growing, just like the hibiscus. She will then take that test again because its a new start for her and a new beginning. Spring is an archetype of rebirth and a new life. since the flowers will be growing and having a new life, so will saeng." 2 2 2 +9237 4 "Saeng vowed to herself that when the hibiscus begins to bud again she will take the test again. The hibiscus symbolizes hope to saeng that things can work out a second try. She concludes the story with the vow because, it expresses her last bit of hope. For example, the hibiscus has comforted her in a new country, with new surroundings but it also explains how she feels. She vows to show she won't give up despite of falling the first time. For example, Saeng felt a shock of recognition so intense , it was almost visceral (Ho). This quote explains what the plant meant to her. This is why she concluded the story with a vow. " 2 2 2 +9238 4 The author ends the story with this paragraph to show Saengs resolution. Her family had left a lot behind in Vietnam. She had the memory of her grandmother and hibiscus. edge. In the @LOCATION2 they are struggling as implied by the mothers reaction at the cost. The hibiscus she bought was away to comfort her. She thinks that if the plant can put up with the harsh winter environment she can do despite the differences in the @LOCATION2 and passing the drivers exam is something that many do and is a way to get used to her surroundings / fit in. 2 2 2 +9239 4 "The author concludes the story with this sentence because it shows the girl the is willing to overcome obstacles and although she @MONTH1 have failed once she will keep trying, It also shows a connection between the geese and the hibiscus and the girl wanting to overcome her obstacles. Also the girl wants to overcome her obstacle at a certain time." 2 1 2 +9240 4 "In the last paragraph when she siad she was going to have the test again, but in the spring when all the snow melts and the hibiscus budd's. She says that because, that is her favorit time of the year. So she will feel more confident that time. For example when she talks about the manigascar hibiscus that grows through bricks she loves hibiscuses. So she wants to take the test when she feels the best. " 1 1 1 +9241 4 I believe the author concluded the story with that paragraph to let readers known that Saeng is a survivor just like hibiscus. Saeng has not quite adapted to america and feels that this plant reminds her of home 1 1 1 +9242 4 "The author finishes it with this because spring time is a new beginning. Since Saeng failed the test she wants to start over in the spring like the flowers do. To know that the hibiscus will grow back though now it is dying. For spring to come is a time to start a new, where babies are born, flowers are at blom and a new beggening is forming" 1 1 1 +9243 4 "The concludes the sentence this way because their trying to show that Saeng is a very deterimined girl and no matter how many times she fails, she always trys again and again tell she gets it right. By doing this the author is showing what Saeng believes in and that is no matter how big or hard the chanellge is she will keep on going tell she is done what she started. Because moving was a very hard for her. She had a very hard time communicating with peolpe and just tyring to make friends cause it is not always easy be new, by moving she took a another look at things because they were different on her. But as time went by she got the hang of it so as long as you try you can be successful in it thats what the author was trying to say by concluding it the way it was." 2 2 2 +9244 4 "In the story a young girl named saeng takes a test but she had falled. She is going to retake it next spring, thats why the last paragraph say; when then come Back, Saeng vowed silently to herself, in the spring mum the snow melts and geese return and the hibiscus is budding, then l will take the test again the author concludes the story with this ending @CAPS1 in the story it talks about the hibiscus flowers so, since she failed the test instand of saying she will retake it next spring they say when the hibiscus flowers bud @CAPS1 at that time it will be spring." 1 1 1 +9245 4 "The author concludes the story like that to let the readers know that the daughter saeng would come back and take the test again, she loves the Garden sotherefore she will not forget what spring did for her." 1 1 1 +9246 4 It shows that she loves her plants. The story tells you all of the plants and how she likes them. She thinks they are all unique and that she enjoys the plants more than school or anything else. 0 0 0 +9247 4 "Minfong who concludes "" Winter Hibiscus"" with this paragraph because it show @CAPS1's determination to succed in her new country despite the obstacles she faces. The winter hibiscus reminds Saeng to be strong like the hibiscus in is to endure winter or in Saeng's case to pass the driving test the text states ""....but it's strong enough to make it through the cold months here, this winter hibiscus ....""(Ho @NUM1). Saeng realizes she must also be ""strong"" lkie the ""winter hibiscus"" Saeng also realizes that she is beginning to adopt to the new country he wrote ""Almost reluctantly, she realized that many of the things she had though strange before had become almost familiar...""(Ho @NUM1).Saeng knows that she is able to adopt and is determined to succeed. Tthe author conclude.""..in the spring, the geese return and this hibiscus is budding, then I will take that test again"" (Ho @NUM1) The ""spring "" will be Saeng's" 2 3 3 +9248 4 "In the story, @ORGANIZATION1, by Minfong Ho the aurthe concluldes the story with the last paragraph because he's trying to say when the flower comes back to life and starts a new beginning that Saeng will start a new beginning by retaking the test. For example, Look how root - bound it is, poor thing"". The example is saying how the plant was almost died when she bought it. Another example would be, ""I-I failed the test"". The example tells how she feels down about failing the test. So In @CAPS1 the flower was at it's breaking point"" as well as saeng. The paragraph tells how @CAPS2 was going to take a break and wait for the flower to being stronger till she toke the test again." 1 2 2 +9249 4 "The author added the last paragraph because Saengs vow helps the reader Saeng and her pain, but her optimism that things will get better. I translate the vow into when things start to be normal again it will get much better for her in this new country. The spring symbolizes normal because at home where she thinks is normal is covered with beautiful flowers, like spring. The snow melting would be the pain going away. The geese returning would symbolize that saeng knows things will get better like she knows the geese will be back in the spring. The hibiscus in the story has symbolized her home and her grandmother, which symbolize happiness, so she will be happier when things get better." 2 2 2 +9250 4 "The author concludes the story with this sentence because the girl saeng wanted to take the test again, but also wanted her habiscus to stay strong and to keep growing. So she said I will take the test again when my habiscus starts to bloom again." 1 1 1 +9251 4 "Winter Hibiscus by @CAPS1 Ho explores one's quest for acceptance and adaptation to changes in life. Saeng is the young in the story who is dealing with her recent move to america from her homeland in asia. after failing a test, Saeng spends an dosene amount of money on a flower. When she consoltes with her mother, Saeng silently vows something to herself. Saeng vows ""when they come back in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"". @CAPS1 Ho chose to end the story this way because the story represents the guest for adaptation. Single-handedly, Saeng was able to say a vow to herself that showed she had accepted her new foreign home of america, even though she will always remember her homeland." 2 2 2 +9252 4 The author concludes this paragraph in the article because is the ron faldse in love with the plant and uses for a clock to tell her when she can take the test. It your not a @CAPS1.S citizen you can only take the drivers test once a year. 1 1 1 +9253 4 The reason that the author concludes the story with this paragraph is because Saeng wants to do some thing good for herself. The reason I said this is cause in the last paragraph it says Saeng vowed silently to herself which means she wants what is best for herself. 1 1 1 +9254 4 "Saeng believes that because she failed the driving test that she wont be able the transition by a new country had she goes searching for her past. She finds her past in plants remembering Vietnam in deep sorrow. The narration states A were of less so deep and strong that it stung Saeng's eye(No) She remembers and misses everything she had she wanted her country her grandmother and her life. She came home to her mother with a plant and disappoint her mother with the cost but she understands the pain. The narration states its a beautiful plant she finally said in sad you got it(No). Eventually Saeng realizes how this plant affected her and how easily it survived and made a promise to herself. The narration states and this hibiscus is budding, then I will take the test agin " 2 3 3 +9255 4 "In the story Winter Hibiscus. The author ends the story with when they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again. To show or emphasize that if the hibiscus, a plant reminding her of her home, can over then so can she. In the story after the author had failed her driving test and was walking back home, seeing the flowers reminded her of home & connected her to her past making her felt less alone. For example, when the author says A wave of loss so deep & strong that it stung Saengs eyes now swept over her. That shows that she misses her home and the flower gave her a way to move deeply connect to her memories, also when she says like the geese the distinctive V against the sky. That shows that the geese were kind of like her they were moving to a different place to start a new. Making her feel that if they can adapt and change so will she over time In conclusion the ending was to futher emphasize her feeling towards her hometown and the new town she lives in." 3 2 3 +9256 4 "The author ends the story like this in comparing to adapting changing or doing everything all over again for example; The geese fly away when it gets cold but they always come back giving their home another chance .The Hibiscus is another fine example , it buds in @DATE1 always but doesnt die in winter. It always returns . Saeng has obviously realized this and vowed to try her drivers test again because it might work this time . The author was trying to get the message spread of , dont give up." 1 2 2 +9257 4 "Determination, help, strength all are reasons why I beleieve the author concludes the story with the paragraph. First, determination is a @CAPS1 why Saeng will go back and take the test again. Saeng failed her drivers test the frst time and she wants to wait and do it again. Shes determinated to take different steps in order to pass the test. Secondly, I beleieve that help is a @CAPS1 why the author concluded with that paragraph. Saeng will need help in order to pass the test and she beleives that the hibiscus plant will help her pass and help her to do other things. The author is proving that shell go back and shell be ready. Finally, strength is the last @CAPS1 why the author chose the paragraph to end the story. Saeng beleieves that the hibiscus plant will give her the strength to pass the test. The author left off with the paragraph to show she will go back and shell be stranger than she was before. These are reasons why I beleieve the author concludes the story with that paragraph." 3 2 3 +9258 4 "Mingfong Ho concludes Winter Hibiscus with the paragraph,when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take that test again."" This ending paragraph shows that Saeng will not give up in her struggle to adapt in this new place. Saeng has been going throug hard times; moving to the United States and failing her drivers test. In the greenhouse Saeng even breaks down and crys. The hibiscus flower that saeng bought cost the family a lot of money, but to Saeng it was very important. This flower represented hope. When the flower buds again it would be the right time to take her drivers test. The flower also represents adapting to a new place. As Saeng adapts to the United States, the hibiscus adapts to the new garden. " 2 3 3 +9259 4 The author ends the story with this paragraph to show how Saeng changed. Saeng didnt want to take the test and she had no confidence. In the story saengs mother supports her no matter what. She even understood when Saeng bought a plant for @MONEY1 because it reminded her of home. Now that Saeng has been comforted she feels more relaxed and she is ready and more confident to take the test again. therefore Saeng has changed. 2 2 2 +9260 4 "The author concludes the story with when they come back, Saeng vowed silently to herself , in the spring. When the snows melt and the geese situation and this hibiscus is budding, then I will take that test again. The author chose this to end the story to show that you need to keep faith in your heart. Saeng was still a bit homesick throughout the story. That could have possibly impacted how she did on her driving test. If one waited a season or two, her homesickness would most likely drift away and she would be able to focus on meeting her goal. Missing her grandmother and her home in Vietnam must have taken a huge tell on her if it had anything to do with why she failed her driving test. Another reason the author could be that he wanted to lighten the mood up a little bit. Saeng breaking down in the greenhouse had a very melancholy feeling to it, and her vowing to herself that she would take the test over once spring come around kind of lifted your hopes up for her." 3 3 3 +9261 4 The Author concludes this story with that paragraph because she is saying that she could not concentrate on the test because she wanted to go back to her home country. 1 1 1 +9262 4 The author probally ended with this to show the feeling that Saeng will return and help out again. So Saeng must like to plant. She probaly might hep his mom with alot more things now that she can see what helping might lead too. 0 0 0 +9263 4 "In the story Winter Hibiscus, the author ends the story with Saeng s thoughts. The thought of trying the test when the hibiscus starts budding ties the story together. The story is mainly about how she looks for a flower and the memories it brings. But she wouldnt have gone to the shop if she passed the test. This creates a full understanding of the test and hibiscus. It also shows the importance of the hibiscus. Both Saeng and the flower must adapt to survive and are out of place. Saeng was from Vietnam and the flower was from a shop, both were moved from where they belong to a new place.In some ways Saeng is the flower. She must adapt to her home to survive. The flower, outside in the cold, must adapt to its surroundings in order to survive. When she knows the flower survived the harsh winter, she will realize that she can survive living in @LOCATION2. This would make her feel strong and focused. " 3 2 3 +9264 4 "In in Winter Hibiscus by Minfong Ho, the last paragraph is a vow by the main character (Saeng) to retake her drivers test when spring comes and her hibiscus is budding. The author concludes the story with that paragraph because it gives a sense of hope to the sad story. It suggests that Saeng will be okay and will move past her longing for the country of her birth. And in the war on moist shelter of the greenhouse, Saeng broke down and wept. Saeng was so sad and miserable. All of the flowers reminded her home country. She was depressed and homesick. When she got home, she planted a hibiscus plant in the frozen ground when it would bloom in the spring it would represent a new life and another chance. It meant that Saeng would not give up. Minfong Ho concluded Winter Hibiscus on a positive note with the last paragraph." 2 3 3 +9265 4 "Why the counclude the story saeng vowed silently to herself, in the spring, When the snows melt and geese return and this hibiscus is budding then I will will take that test again is to leave suspense. But he mean that saeng ate all the plant so next year she will have the test not to eat it. This is why the author ended the story with that." 1 1 1 +9266 4 "The author concludes the story with this paragraph. Forexample, It gives the Story a good and happe ending." 1 1 1 +9267 4 The author ends the story with this paragraph because he wants the reader to feel like she is going to accomplish something because of the hibiscus and the geese. An example of her accomplishing something because of hibiscus is when the author mentions how her and her grandmother use to spend time together and do things together and her grandmother would do her hair and then put a hibiscus flower into it. Also the geese are a sing of accomplishment because she sees them in the sky flying south so they can survive the cold winter months in a warm place. 1 1 1 +9268 4 The reason why he concludes this with this paragraph is because he is telling how the story ends. The reason behind that is so people know's what happens. 0 0 0 +9269 4 "The author concludes the story with this paragraph in order to end the story on an optimistic note. Saengs problem is her wave of loss that sweeps over her during her memories of her home country. This entire story deals with Saengs depressing struggle with finding joy in her life in a new, unfamiliar and seemingly unwelcoming country. This feeling of loss and loneliness is magnified by the test then Saeng failed. After a story of such depression, the author shows @CAPS1 newly found confidence and optimism by ending the story with this paragraph." 2 2 2 +9270 4 She concludes the story with this paragraph because she want to let the readers of the story that she is not willing to give up and and that she is willing to take the test again and pass it. 1 1 1 +9271 4 "The author concludes the story with this paragraph because it shows that she adapted her new home. Also, it concludes the story so it shows the leader her last thoughts. So its like its, the last thing , and subject that you that you think the author concludes the story with this paragraph , when they come back , in the spring , when the snows melt and the geese return and this hibiscus is budding , then I will take that test again." 1 1 1 +9272 4 They author concludes the story with this paragraph because he want to see what people would say. 0 0 0 +9273 4 "This saying is saying that the snow has already fallen down onto their garden and when the snow melts, they will have to recrop everything again. This is a perfect conclusion to end this story. The story is talking about how the flowers grow in the spring and how saengs mom grows fruits and veggies in her garden. So since it snowed and their would be a while before the spring come back. Saeng has alot of planning to do in the next spring. The hibiscus will be budding and the geese will return." 0 0 0 +9274 4 In the story I think the author concludes that paragraph with the story because Saeng is saying that when she comes back or when she next sees the hibiscus bloom again she will then take the test but until then she feels out of place and she is no use to the arrangements she is living in now and she feels uncomforatable but until then she thinks that she will not be able to do will until she is in her bloms tow a where it is horman for her. 2 1 2 +9275 4 The author concludes with that paragraph because show that she will go back to the one place and will not break down like that and grif over what she has lost and have to deal with change. 1 1 1 +9276 4 "The author concludes the story with this paragraph because when it snows plants die and wont grow back until the snow melts, the geese return and the hibiscus is budding then she will she how her garden will be in the spring. Therefore the author put this paragraph in the end because Saeng loves gardening so much ever since she moved to the United States. Ever since the family moved to the United States the family has never been happier for being together having dinner and planting together they had the time of there life planting all the time." 1 1 1 +9277 4 "If you have ever had to move from your home town or country, you how comforting something can be thats from your old country and in your knew one. The fact that Saeng had geese and plants and everything else comforted her enough to know that next spring she can take the test. Throughout the story it seemed as if everything that Saeng ever saw that she had in her home country of Vietnam in some way warmed and comforted her. Early in the story it illustrates her feelings as she makes her way through the green house Many times in the story you could always hear that sense of love when she would call plant by its native languages name. Throughout the story you could always sense the love and caring she had. The author knows how she loves those things and that they would encourage her. Therefore thats why he concluded the story as such. " 2 2 2 +9278 4 The author concludes this paragraph with the story because of the potintal of the hibiscus. So Saeng will go take the test again no matter she already took it and failed. She is like the hibiscuc. The hibiscus seems out of place and is determined to survive when the snow melts. So she will go take the test again and us the hibiscus as her modifation. 2 1 2 +9279 4 "The author had concluded the story with the paragraph When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again because the author wanted the reader to notice how the mother and the child bond with gardening. Between the different things that author has said about Saeng and Saengs mother. He as in the author shows a way they have bonded they being Saeng and Saengs mother which I think it was fairly neat they way the author had bid out this story. It was a fairly interesting story to it kept you guessing, on the end of year seat, wondering. But I enjoyed reading that story. I had also liked how the daughter and mother were so great friends. But it was a nice thing to see with the daughter and the mother being so in touch with each other. Also, in doing this the author has shown some of his ways of thinking. The author shows us he a great mind and a good way thinking. This author is telling us a great story of a girl and her mother it sounded very good to me. This story is a gardening story of a daughter and her mom moving from Vietnam and moving to the @ORGANIZATION1 to live out the rest of their lives." 1 1 1 +9280 4 There could be many reasons the author concludes the story with that paragraph. It could be because Saeng wants to pass the test now to make her mother happy. It could also be because she will need to be able to drive in the next year for some reason. Maybe its because it cost her money to keep taking it. She really likes her hibiscus though. 1 1 1 +9281 4 "The author concludes the story in this way to show that Saeng is a determined undividual. It is symbolic for when the geese return she will take the test again because when they left she had failed. The snow melting and the hibiscus budding show spring and spring is usually the start of a fresh and new begininig. The last paragraph its like a symbol for starting fresh. Saeng was upset about failing the test She said, II failed the test. By stuttering that shows she was upset. Since she was upset giving it time until she takes the test again is good. The author ended the story with this paragraph to show Saeng is strong and will have a fresh and new start." 2 2 2 +9282 4 "I feel the author concludes the story with the paragraph to show that Saeng found some sense of relief with the flower. It also show that Saeng wasnt going to give up and she was going to keep trying. At first she was sad and upset but when she saw the flower that reminded her of home, she became happy and didnt feel so bad about failing the test. The flower had a deep impact on her cause it reminded of home and when she started thinking about her grandmother she became a little sad, but then she thought about the flower and how much it meant to her, she felt comfort from the flower. I feel the concludes the story in good positive way." 2 1 2 +9283 4 "I think the author concludes the story with the paragraph to leave us with hope. Saeng is going to retake the test she failed. Saeng is having a hard time adjusting to her new life, by waiting until the snow melts, the geese return and the hibiscus is budding, Saeng gives herself time to adapt and heal. The paragraph shows Saengs courage and hope about retaking the test." 1 1 1 +9284 4 Honestly I'm not quite sure. Maybe because she fees assured now. Maybe its a mental trial we all must face. Maybe the geese returning and the plant budding is a metaphoric test too. 1 1 1 +9285 4 "The author chooses to end the story with this paragraph to get across the theme of acceptance and determination. Saeng is very attached to the hibiscus plant because for her it represents her homeland and all the things she left behind. This last line represents many things. The snow melting, the geese returning, and the hibiscus budding all indicate a time of rebirth and new beginnings. The fact the Saeng wants to retake her test shows how obstacles can be overcome, and goals achieved" 2 2 2 +9286 4 "The concludes the story way because that the way he want for the gril to end it. Cause she all about them flowers, plant, animals. She likes Madagascar periwinhle. The places went she use to live is gorse with plants, animals, flowers." 0 0 0 +9287 4 "In the story Winter Hibiscus by Minfong Ho the author concluded the story with a paragraph that showed feeling. The paragraph showed that the girl Saeng was determined to pass the test, For example the text states the geese return and this hibiscus is budding, then I will take the test again. It shows that even though she failed it once she isnt going to let that stop her. The girl also expresses somewhat how she feels about the geese and the plant. For example the text states when they come back, in the spring, when the snows melt and the geese return and this hibiscus is budding. It shows that she doesnt regret buying the hibiscus. " 1 2 2 +9288 4 "The author concludes the story Winter Hibiscus this way because she is creating a sense of hope that Saeng feels for the future. Saeng was feeling very sad when she was walking home from failing her drivers test. The author describes this scene as The wind was blowing harder, tearing off the last remnants of green in the chicory weeds. The winter and cold represent Saeng losing hope. When she gets home and shows her mother the hibiscus, her mother says that it is strong enough to make it through the cold months here. This symbolizes Saeng making it through as well. At the end of the story, Saeng sees geese and realizes that many of the things she had thought of as strange before had become, through the qunet repition of season upon season, almost familiar to her. This shows that she really is adjusting to her new home, and has hope for when spring comes, and the geese return, and hibiscus bloom." 3 3 3 +9289 4 "She wanted to catch them, that was her whole goal and purpose of hunting. Trying to catch geese. She saw her grandparents try to do it. In conclusion this is why she made that last statement." 0 0 0 +9290 4 "The author concluded the story will this paragraph because she wants the readers to understand that she didnt give up on the plant and that shes determine. For example the story state that Saeng said I-I failed the test, She felt as though she didnt accomplish what she wanted to. So at the end of the story she said I will take that test again. To show what kind of person she is and she not going to just give up just because she failed the first time." 2 1 2 +9291 4 "In the story Winter Hibiscus by Minfong Ho, the author concludes the story with this paragraph because in the spring time everything is reborn and in the spring time Saeng will be used to her surroundings. One example of this is when the author states ""she relazed that many of the things that she had thought of as strange befor had become, through the quiet repetition of season upon season, almost fimilar to her now. This means that with every season she get more used to her new home and if became more like her and with every season. Another is when the author says she lifted her head and watched as their distinctive V was etched against the evening sky, slowly fading to the distance. This reminds her of her old home watching the geese." 2 2 2 +9292 4 "In the story, Saeng is being forced to adapt to an abrupt change when her family moves from vietnam to the United States. The story tells of how different things in the @LOCATION3 spark a memory of her life back in Vietnam. The second to last paragraph talks about the hibiscus, and the geese and the change of seasons. The last paragraph sums all that up, and how when everything farmiliar to her in Vietnam is being symbolized in the @LOCATION3, she will continue to try driving, and, ultimately, adapt to the changes the @LOCATION3 has brought her. This shows that Saeng can overcome her obstacles of the country, and is determined to do so. This paragraph is placed at the conclusion of the story because it reflects the theme of change and adaption throughout the story, but mostly reflection. The author takes time to explain how each individual item in the story reminds saeng of her old home, and in an effort to raise the tone of the story from regret and sadness to hope and optimism, the author recollects each each item in the final paragraph, showing that there is hope for Saeng and her family. " 3 3 3 +9293 4 "The author concluded the story with this paragraph, When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The concludes the story with the paragraph above because it shows Saeng is a carring person to nature. I know this because of this quote, one of the blossoms had fallen off, and carefully Saeng picked it up and smelled it. This quote show that she cares for the little things in nature. Another quote that show Saeng is caring towards nature is, she tipped the pot and deftly eased the ball of soil out, balancing the rest of the plant in her other hand. This shows that Saeng is very caring to a small plant, which is part of nature. So in conclusion the author concluded the story with the paragraph above to show the Saeng is a carring person towards nature." 0 0 0 +9294 4 "I think the author concludes the story with that paragraph because it helps to explain the significance of the hibiscus. The hibiscus are very important to her and her culture. When there hibiscus around, Saeng feels that she can do anything. That is why she failed the test in the first place. So she is saying that the next time she takes the test, she will have the strength from the hibiscus to help her pass the test." 1 1 1 +9295 4 "This shows that she has not givven up and is going to try hard to adopte and do well in this new land. It leavs a sad story off with a happy ending. The hibiscus is a sigh of hope and so is spring, this makes the en time thing be fkor, without this part the story would be a sad one, but with it is one of hope. The way that the rest of the story is told is as if this is a turning point or an end to the en time boot. It is on resa lution without a resolution." 1 2 2 +9296 4 "The authors concludes the passage with this paragraph phrase to show that after all of that hear tacke and confusion she knows it will take time to adjust and she realizeses that shell be ready given time to heal and start fresh, just as he plant." 1 1 1 +9297 4 "The author concludes the story with this paragraph. because she wants to make a goal for herself in the future. She wants to pass the test, and she will try hard to do it next year. For example, her mother was mad she didnt pass the test, but then soon forget about it. Saeng did not forget about failing the test. She vowed herself to the hibiscus because she loves that plant and will do anything for it." 1 1 1 +9298 4 "The author ends the passage with this sentence to show that in order to succed, one must keep trying. Saeng will adapt to her new copiuntry in time but not if she spends heer time wishing to go back to her homeland. The hibiscus is a reminder to hers of starting a new and adapting to society. Saeng will retry her drivers test when the plant buds again, starting its life cycle all over again" 1 2 2 +9299 4 She is say that she will take the test again after the snow melts in the spring. So she can watch the geese the hibiscus bud while she is taking her test and try to pass it. 1 1 1 +9300 4 "The author ended this story with this paragraph because thats now Saeng felt. She felt connteced to the geese and the hibiscus , She had lifted her head and watched as their distinctive was etched , almost familiar to her now , She will retake the test in the spring . The hibiscus and the flower will make he feel better in the spring . she should pass the test." 1 1 1 +9301 4 "The author concludes with this paragraph to show how the hibiscus flower profoundly implanted Saengs life and gave her new found courage and strength. For example, while on her way home after failing her drivers test, Saeng sees a flower and says, [I] felt a shock of recognition so intense, it was almost visceral. This shows the deep concentration between Saeng and the hibiscus and it is this connection that will guide her through the tough times. Saeng subsequently was into a flower shop and identified all the flower there from her childhood. She realizes that her old home had all these flowers and Saeng used this connection to her past to further increase her courage in adapting into her knew life. Another example is when in the text it states, She realized that many of the things she thought of was strange before had becomealmost familiar to her now. Saeng comes to this realization by listening to her mother talk of how the hibiscus flower which normally survived at her old home would be able to survive here. She understood that she too would be able to do so and not think things like big @CAPS1 here would be strange anymore. It is in this way that the hibiscus tree offers Saeng support, courage and even strength. " 3 3 3 +9302 4 "When they come back,Saeng vowed silently to herself .in the spring ,when the snow melt and the geese return and his hibiscus is budding ,then I will take the test again .So which mean when they come back she has to make a test up ,so they dont have to worry about it later.But on there trip they seen a lot of different thing ,the soil was cold and hard they couldnt much with it.She though it was walking into another world ,hot, moist world exploding with with greenery @CAPS1 frends and ones of shades and shapes grew in seemingly random profusion .And beside it was yet another old friend a small shrub with waxy leaves and the dainty flower with the purplish petals and white centers .It was already dusk when Saeng reach home ,the wind was blowing hard tearing off last remants of green in the chicory weeds that grew thre the crack of the sidwak .So @CAPS2 to they saw a lot of thing on their trip.So saw thing they never seen before like the wed growin therw the sidewalk." 1 0 1 +9303 4 I think the author includes this to show the determination to pass this test no matter what. 1 1 1 +9304 4 "The author might conclude the story with this because it shows that the girl had confidence that when the flower blooms she will be able to pass. Back at her home land that flower mean't alot to her and it still does. But it seems like this flower gives her hope and pride. She used to pick it with her grandmother and put it in her hair. So when she sees the flower, she will think of her grandmother and that will motivate her to keep going. The flower is strong and can stand through winter weather, so the girl is determinded that when the flower blooms, she will be able to past the test." 2 3 3 +9305 4 "The author conclude the story with When they came back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again.because she wanted to grow hibiscus in the winter time. She had failed the first time and she wanted to redeem herself and do it the second time arround. She didnt want to fail again so she did some things differently. She planted it with care patted the soil down firmly around the plant. That is why the author concludes the story with that paragraph." 0 0 0 +9306 4 The girl says that she is going to take the test again when the Hibiscus blooms shows that she misses her country and still wants to be connected somehow. When she takes the test as the plant blooms its like support from her country. The plant is symbolic of her progress because her growth is like the plant. When she first got it she wast ready to go out and do things she still hadnt adapted lutlly to the environment just like the hypiscus wast adapted to the wather and had to wait till @DATE1 to bloom. 2 2 2 +9307 4 "then I will take that test again [@NUM1] Saengs whole intention in the story was to take the test and pass it. Houever, ""I-@CAPS1] failed the test, [Ho, @NUM2] which brought the whole story together. She yearned for comfort as she seeked the @CAPS2 Malik [Ho, @NUM3] for comfort. Seeing this brought back all the memories of her life back home [@NUM1] that kept her going. As a result, bonding with her mother erupted, and it brought another day of hope for her future in her new home. Enough hope for her to say, when they come back in the spring when the snow melts and the geese return and this hibiscus is budding, then I will take that test again." 1 2 2 +9308 4 The author ended this story with this sentence because its a good conclution. Its a good conclution because it closes by telling what she will do. This is good because it shows that Saeng had finally realized that she needs to take that test even though she likes nature so much. 0 0 0 +9309 4 "The autor of ""winter Hibiscus"" conclded the story with this paragraph because it shows that saeg is going to give the test another try. The author wanted to slow that saeg was not going to giving up in that when the thing that was most important to her was complete that she would then take the test again. In the sory it says that ""saeg did not dare look at her mother in the eye. Instead, she stared at the hibiscus is what was important t" 2 2 2 +9310 4 "In the story, Winter Hibiscus, ends by, when they come back, saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The author concludes that story with that quote because the author sees spring as a new beginning. The author knows to work hard and needs to starts over. For example, some students fail the second semester and look at winter as a new start." 1 1 1 +9311 4 The author ends the story with the paragrap and because it is winter time and she can not do anything in the winter because of the snow. The snow made it so that she would have to take a test in the spring. 0 0 0 +9312 4 "The author concludes the story with this paragraph to show that Saeng has overcome an obstacle in her life and that she is learning to move on. In the story Saeng is often stuck on past memories rather than making new ones. For example, when Saeng goes to the florist shop to purchase the plant, she starts remembering old memories from her homeland. When she sees the plant labeled jasmine, she thinks of her grandmother that died and remembers how she used to put jasmine blossoms in her hair. Also, she tells her mother that the hibiscus she bought is not a real one and she also says its not like the kind we had before. @CAPS1, she keeps comparing her new life to her old life in her homeland and she does not allow her new experiences to be as good as her old ones. @CAPS1 when the author concludes the story with that paragraph, it shows growth in the girl, Saeng, and that she is willing to move on and make new memories, such as trying to pass her driving test again." 2 2 2 +9313 4 "The author concludes the story with this pharagraph because the story is coming to and end. The author putting that sweet touch on its saying it will become string again and the beautiful flowers will blossom. Letting the readers know that the nature will continue, The season will come back around." 0 0 0 +9314 4 This paragraph @NUM1 includes to let the reader know it's winter. you know its winter because in the passage its says when the snow melt. 0 0 0 +9315 4 " Tisaeng had failed her drivers test after she went to ""flour is it and bought a plant it was the ""dok faeng noi"", she had fond memories about the plant. She remembered it from Vietnam, and how it used to be everywhere all the time. She had bought @CAPS1 hibiscus as a comfort to herself. The last paragraph says, When they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test again. Saeng figured out that things happen for a reason and opportunities occur over and over again. Just as the geese go south and @CAPS2 as the seasons change. She had decided she will retake the test next time she gets a change." 2 2 2 +9316 4 "The author concluded the story with the paragraph When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. To show that the character has become a part of her new environment. Just like the environment, she is constantly going through changes, and in the spring when all things that couldnt be their best during winter begun to thrive, she will too. And when she begins thriving and feels like herself again, then shell be ready to take the driving test, and pass. Shell have returned to her old self like the geese return home when she's done crying like the snow s done melting, and when shes done crying like the snows done melting, and when shes ready to open up, just like the hibiscus begin budding, shell be ready to take the test." 3 2 3 +9317 4 "All throughout the story Winter Hibiscus, the author gives the feeling as hope and comfort that is obtaned by Saeng when she thinks about the past. And to continue this feeling as hope, the last sentence gives the feeling that Saeng will be better off than she had been at the beginning of the story. For example, at the beginning of the story, Saeng was feeling alrenated, alone, and misplaced in her new country. But as the story progresses, she starts to develop peace of mind and certainly that her future will be brighter with the passing of the and her growing confidence. In conclusion, the author uses the last sentence to give a feeling of hope for Saengs future and growing confidence." 2 2 2 +9318 4 The meaning of the last phrase is to see if the winter hibiscus canre seed and go threw everything to become a flower for the year and repeat the process. 0 0 0 +9319 4 "Minfong Ho concluded Winter Hibiscus with that paragraph to show hope and renewal for the character Saeng. Spring represents birth and renewal, a second chance for Saeng. She had previously failed what seems to be an important test (perhaps her citizenship test), and motivated her to try and remember her past, which she sorely misses. The winter hibiscus seems to represent herself, and this illustrates it: its-its not a real one, Saeng mumbled she was still too shaky to say the words at home, lest she burst into tears again. Not like the kind we had before I know her mother said quietly' 'its flowers arent as pretty, but its strong enough to make it through the cold months here, this winter hibiscus. That is what matters. This describes Saengs position perfectly she is not the same, as happy as she once was, but she can make it through the hard times, and can bloom in the spring to take the test again. This shows the purpose of the last paragraph in winter hibiscus to show the renewal and hope that Saeng will experience." 3 2 3 +9320 4 I think that this sentence was choosen to be the last sentence because it shows that Saeng can pass the test. Although she is not at her homeland she still has the ability to do things. As the plant that reminds of home returns and begins to grow Saeng will do the same. I think that it is a good sentence to be at the end and it leaves you wondering if she will pass the test. 1 1 1 +9321 4 "She end, the story with that because the flower gives her strength. It gives her hope and reminds her of home. At her home they were every where, she had to buy this one. She planted it so it can grow through winter. After winter the flower gets huge and she passes her driver test. For reward her mom get her a real Vietnam flower." 1 1 1 +9322 4 I think he concludes his story with that paragraph because she know she was wrong and she wants to make it up to her mother. Also she is showing her mother how much she really likes nature. 0 0 0 +9323 4 I think the author concludes the story with this paragraph because she failed her driving test the first time and she was saying to herself that she will take it again. 1 1 1 +9324 4 I think the author used that response because she was showing that she had to go through another @DATE1 or hard work in planting flowers. 0 0 0 +9325 4 "The author concluded the story Winter Hibiscus the way she did because she wanted to show saeng s determination at one point in the story, the author wrote, she was still too shaky to say the words at home . Saeng really missed her old life and her old country. She often wonders when she will be able to go back to it and enjoy herself, because she still has trouble adjusting to her new life. When the author concluded the story, it was done so that saeng could be shown as a person who would not easily give up. Although shed had previous trouble, the end of the story gives new hope for saeng to adjust to her new surroundings. Also, when saeng fails the test, the ending sentence gives newhopes saeng told her mother,I failed the test , and she was really down on herself when she said so. The closing sentence gives new hope to saeng and the reader, that she will work header and do better in the spring. The author shows saengs determination to rise above failure and create a niche of her own in life. In all, the closing sentence in winter Hibiscus is used to show saengs determination." 3 3 3 +9326 4 "I think the author concludes the story with that paragraph because she fells to live the geese and her memories relate to the times she sees the geese. I think that her test is in school but she has believe that shell pass it by remembering her memories she fells conected to the outside ness. For example, she loves flowers. Thats why I think the author concludes the story with that paragraph." 1 1 1 +9327 4 "The author concludes the story, Winter Hibiscus"", with a very spiritual and confident paragraph to show that hope has an important part in our lives. In the story, Saeng"", a foreign chinese citizen, is touched and flattened by all the majestic plants and nature that was living in the green house. She ventures to find all the plants that remind her of home and to relate them to her past experiences. As she walks through the green house, she whispers and pronounces the names of the nature she sees, Saebba"", Saeng whispered, Madagascar periwinkle, its tag pronounced. How strange to see it in a pot, Saeng thought. Back home it just grew wild.!! But as her tour grew with time, she soon relizes she is missing some of her memories, and begins to cry. As she reaches home she is greeted by her mother. I-I failed the test, Saeng said. Saeng's mother is touched by her comment, and cheers her up with planting the hibiscus"". In the end, the author shows strong expression by writting one last paragraph to bring out hope, and emotion, to represent that everyone deserves a second chance." 3 2 3 +9328 4 The author concludes the story with this paragraph because he basically saying hes never taking that test again. The author is showing that the character doesnt like this test. And would rather not take it 0 0 0 +9329 4 "The author of the story ends it with a very interesting paragraph. This paragraph talks about over coming obstacles and is telling the reader to try again. It is important to never give up and to keep trying until you sucede. In the story Saeng had just moved away from Vietnam she really missed it, and on top of it saeng failed her drivers test. She was really upset. She saw a group of geese flying above her and said when they come back in the spring and my new plant starts to grow I will retake my drivers test. Geese have to overcome the cold by flying south for the winter. The cold weather is an obstacle for them. Also her new plant can't grow until its warm. Her plant has to over come being small until it can bud in the spring. People face obstacles all the time. You have to keep trying inorder to get around them." 3 3 3 +9330 4 "The short story winter Hibiscus end the way it does because the narrator realizes that with simply comes a new chance or opportunity to start over a rebirth. One passage from the text that shows the narrators hope, Almost reluctantly, she realised that many of the things that he had thought of as strange before, through that quiet repetition of season upon season,almost familiar to her now (Ho @NUM1). This passage of text shows that she realized that alot of things to her before suddenly had purpose. She realized that there is a new rebirth in the spring. The conclusion sentences states that she is going to retake the test in the spring. She now realizing that she now by a whole new opportunity and life to start. The conclusion sentence of Winter Hibiscus is one of realization of opportunity with spring beginning." 2 2 2 +9331 4 "The author concludes the story with this paragraph to show the motivation and confidence Saeng has after her experience with the plant. there are many reasons and examples that support this. One reason is, he want to show the change in Saeng after he first test and when she boaght the flower to releive her. For example, after she failed the driving test, Saeng goes to the Florist. When she see this plant, he childhood comes back and she forgets her test. This flower motivates her to get her lisence. Another reason is, it shows how confident this experience has made her. For example, after failing, she comes back saying, ... I will take the test again. In conclusion, the author includes this paragraph to show how confident Saeng has become over her experience." 2 2 2 +9332 4 The author concludes that statement at the story at the end of the story because he wants to show that Saeng wont give up just like the hibiscus.For example the hibiscus does its best to survive in the winter and blooms and starts over in the spring.Saeng will also survive the winter and star all over again in the spring and retake the test. The author wanted to show the readers that Saeng is the hibiscus in a way that she has to start over and retry what she has failed as if the hibiscus had died in the winter. 2 2 2 +9333 4 My response is that if is about winter so realy it is going to be about witer walking around having fun and all them thing. 0 0 0 +9334 4 The author concludes the story like that to make the reader more intrested and to understand it will all happen again and again year after year. 1 1 1 +9335 4 "The author concludes the story with that paragraph because he wants to show that the flower was her inspiration to take the test before. The way I got my response was, throughout the story, @PERSON1 was always either gardening the hibiscus or had one. This obviously showed me that she was inspired by this flower and its beuty. In conclusion, the author ends the story like this to show the importance of the Hibiscus flower to Saeng." 1 1 1 +9336 4 "The auther ends the story in this way because it represents the new brith that will take place. Its almost as if shes saying that she will hibernate during the winter, and when spring returns and everything begins a new cycle of life, then so will she. Saeng realized that many of the things that she had thought of as strange before had become, through queit repitition of season upon season, almost familiar to her now. She is saying that when the new season begins it will be her beginning and shell have a different outlook on her new life." 2 2 2 +9337 4 The author ends the story this way to wrap everything up. The author incorporated nature and descriptions of it. This was so the reader would get an image in their head of how Beautiful or calming spring supposively is. 1 1 1 +9338 4 I think that the author concludes the story with this paragraph because it suggest that her strength will come when the flowers come and she will be able to take the test. 1 1 1 +9339 4 "In the story ""Winter Hibiscus,"" the author, Minfong Ho, concludes the story that paragraph because, she wants to show the determination the girl in the story possess. At first, the girl could not help herself and bought the expensive flower. She did not want her mother to be disappointed though, so she was determined to ""pass the test."" In the spring when it is time to buy more seeds, the girl wants to be able to buy the seeds. So the author is showing the trait of determination that the girl controls." 1 1 1 +9340 4 "The author concludes the story with When they come back, saeng vowed silently to herself, in the spring, when the shows melt and the geese return and this hibiscus is budding, then I will take that test again because the hibiscus budding would symbolize starting over and Saeng taking the test again is giving her a chance to start over fresh and try again. The hibiscus doesnt stop budding so Saeng shouldnt stop trying!" 2 1 2 +9341 4 "In the last paragraph of the story, the author concludes the story like that because the author means to say that the hibiscus is the symbol of overcoming obstacles. For example, @CAPS1 mother says Its flowers arent pretty, but its strong enough to make it through the cold months. This is a symbol to overcome obstacles as a flower is strong enough to make it through the cold months, in which the weather is rough. In Saengs case, she is a girl who will make it in a foreign country. Thus, in the last paragraph, when Saeng vows silently to herself that she will take the drivers test again when the snow melts (writers over) and the hibiscus is budding, she uses the hibiscus as a symbol of overcoming the obstacle of failing the test. That is why the author decided to end the story with that last paragraph. " 3 3 3 +9342 4 "The author concludes the story with this paragraph because he wanted to convey a sense of determination of Saeng wanting to comput what she started. She had failed the drivers test and is very disappointed, for example, she starts to cry and has tear stains and puffy eyes as she remembers her homeland in Vietnam, her life, her memories, her family etc. She can relate to the geese that migrate during the winter and return again, an as new begginings start in the spring, so would she. A fresh start like the blossoming hibiscus. A fresh start with the drivers test." 2 2 2 +9343 4 The author concludes this story with this paragraph to show the aduiance that Saeng @CAPS1 gave up so you should'nt either. I think that this paragraph is describin a law of life witch is @CAPS1 give up. @CAPS2 even though she had failed at first she is still willing to try again. 1 1 1 +9344 4 "When they come back, Saeng vowed silently to herself, in the spring, when the snows melt &the geese return & this hibiscus is budding, then I will take the test again. I think the author included this in the story to show that you shouldnt push things off. You should always deal wi them as they come up. So in the story the girl is showing a bad example. I believe the author wanted to make a point of not doing that. Overall, to add this phrase in this story was the right thing to do to try and show the right way of doing and going about these certain things" 0 0 0 +9345 4 She should and needs too learn that you cant replace a plant with the same thing and expect it too be as equal too it. She needs too learn that lesson in life. 0 0 0 +9346 4 "The author ends the story with this paragraph to show that Saeng will follow nature and try to fit into her new land. Saeng has failed her drivers test and feels out of place in her new home. The text states, As Saebba nedae tall and lush. And surrounded there garden (No 1).When she sees the @CAPS1 it reminds her of old home where she fit in.Now she wants to wait to see that flower grown so when she takes the drivers test again.Also,she sees geese fly over her head when she plants he r flower. The author writes. She realized that many of the things that she had thought strange before had becomealmost familiar to her how(No @NUM1).The geese coming back in the spring will now also remind her of her new name and how must try to live there happily now. In the last paragraph the author writes, I will take that test again(No @NUM1).This gives the feeling of Saeng trying to start a new beginning in this new home. " 3 3 3 +9347 4 This is a powerful sentence that demonstrates themes in the story. Saeng is determined to try again because she has been comforted by symbol of her homeland. This sentence shows what the plant has done for Saengs spirit and shows how that symbol helps heal her. The sentence is able to wrap up the story and demonstrates the importance of the hibiscus. In the story @CAPS1 describes the plant as a friend and remmeder of her homeland. Once she sees the plant in bloom she`ll know that she can take the test again. The paragraph is a great conclusion to the passage because it summarizes everything that the hibiscus has meant for Saeng. 2 2 2 +9348 4 I think the author is just trying to show that you never give up. I think the author is trying to show the beautie of nature. The author used that because in the story Saeng failed the test but at the end it says that she will take the test again. In the story it talks about the winter hibiscus that she planted and that is concluded in the conclusion. The conclusion basiclly saying is there will be a new beginning. 1 1 1 +9349 4 "The author concluded the story with the paragraph When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hisbiscus is budding, then I will take that test again, because the paragraph its self concluded already. It basically sumed up what she was going to do all over again next time because she had already done it. What the author means by this paragraph is that when the plants come back in the spring she is going to have to do all the work again which was basically the test." 0 0 0 +9350 4 I think the author concludes the story with this paragraph to let the readers know that she doesnt give up. They @MONTH1 have thought that she thaght the test back home were more important. So she wouldnt care about passing this test because she misses her home and wouldnt care about those test. 1 1 1 +9351 4 I think that the auther end the story Like that as a meterphor For people to think out side the @CAPS1 or thing. OR The auther might oF ended it Like that so people can get a picture in the head about what she was talking about. 0 0 0 +9352 4 "The reason why the author concludes the story with this paragraph is to give You an idea of how she feels about what happened to her. This paragraph is her telling herself that everything is ok and she going to do better next time. The author concluded the story with this paragraph to make Saeng sound more confident in herself. In the middle of the story when she was having the conversation with her mother, she sounded unconfident with herself so this paragraph made her sound like she was sure with herself, like she knew what she was going to do." 2 1 2 +9353 4 "In the story Winter Hibiscus, I think that the author concludes the story in when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is dudding, then I will take that test again because she has made Saeng feel that if that hibiscus can restart and make new flowers the Saeng should do the same. Therefore thats why the author added that quet to the end of the story" 2 1 2 +9354 4 "Saeng failed her drivers test at the beginning of the story. She finds a hibiscus plant and buys it because it reminds her of her life in Vietnam. She sates, The familiar fragrance filled her lungs and Saeng could almost feel the light strands of her grandmothers long grey hair. The flower reminds her of her grandmother. The mother says, ??? Seen this kind blooming along the lake, its flowers arent as pretty, but its strong enough to make through the cold months. Shes trying to make her daughter feel better. It states, Overhead, a flock of Canada geese flew by their fault honks clear and yes-familiar to Saeng now. She realized that many of the things that she had thought of as strange before had become almost familiar to her now." 2 2 2 +9355 4 The author concludes the story with this paragraph because at the end she realizes that the things that seemed strange before she had just realized as the seasons were changing and the plants. So the author put that paragraph at the end because in the spring she goes back to school to take the test again 1 1 1 +9356 4 The author concludes the story the way he or she dose because it shows that the time she found the plant that she will get her lisens So it is a reminder for her. I also think she did it that way because when the plant blooms it starts over and so when she sets on gose to take a chance at the test she is starting new 1 1 1 +9357 4 "The author ends the story with that paragraph because she wants to show that the peace that the peace that the flower gave will build her confidence and she will not give up. I know this because in the story the main character fails her driving test and when she sees the flower it helps remind her of the home she had in Vietnam. Another reason is because the flower blooms in spring and it never stops blooming. She knows it will never give up and she relaizes that she shouldnt either. Plus the plant gives her stength to try again. So the reason the author ends her story with that paragraph is to show the power the flower that was know to her, give her and how she will no give up." 2 2 2 +9358 4 "The author concludes the story with this ending paragraph because. It combine the two inpefect situations. When she said when they come back Saeng vowed silently to herself, in the spring when the snow melt and the gese return and this hibiscus is budding then I will take test again. She will prove her point and abbreviated the situation." 0 0 0 +9359 4 The author is saying that she would take the test again in the spring instead of the winter cause she would be more focus to just keep her mind on the test & not the planting. 0 0 0 +9360 4 "I think she ended the story with that because throout the wole story she trys to work hard. And this last sentence is saying that its not over, That she will be back to take the test again. She trys to prove herself during the whole book. And she will continue working hard to get what she wants " 1 1 1 +9361 4 "In the story the author concludes the story the way she did because it is metaphoric, I say this because she is comporing herself to the hibiscus plant. As a hibiscus would be tested to over come conditions such as the cold and forexample in the test the author states its flowers arent as pretty, but its strong enough to make it through the cold months here. This winter hibiscus. She as the hibiscus will bloom again and have to pass the test of surviving the cold, will be able to have a chance to pass her own test, that is why the author concludes the story as she did." 2 2 2 +9362 4 "The concluding paragraph in the story Winter Hibiscus portrays the powerful massage of change from a cold, distant failure to adapt, to a new life. Saeng relates her transformation to the changing seasons from winter to spring . this is obvious shown it states in the spring , when the snow melt and the geese return and this hibiscus is budding . she accepts this as a new chance to start fresh , and then try to pass the test. The change from winter to spring symbolize saengs hardship of flying to adapt to her new home. And then, as the geese return and the hibiscus is adapting in its new environment is the symbol by which saeng follows as it is from her old home in Vietnam, but can now also prosper elsewhere. " 3 2 3 +9363 4 " The author concludes with this because it had the most impact. The ending also gave the most meaning. The meaning of the last paragraph is that time will help her adjust to where she is now living. It also incorporates the hibiscus flower and how it will bloom again, this could have a double meaning, and mean that the authors life will bloom again. Overall it was a good way to conclude the paragraph." 2 2 2 +9364 4 "In the story Winter Hibiscus"" I believe they end the story the way they did, when they come back, saeng vowed silently to herself, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again because with saeng making a goal, shes overcoming her disappointment and uncomfort living in a new country. The archetyple meaning of a flower bud is: prosper, new, growth. This shows he growing and thats important in life and thats why the ended it the way they did. Its a positive ending." 2 2 2 +9365 4 "The author concludes the story with this paragraph because it shows that she realizes her connection to the hibiscus plant. All through the story Saeng thinks about native plants shes seen before are now in @LOCATION1. She sees how theyre adapted to life there, like in the way the hibiscus can survive the winter. Saeng realizes that she also must adapt in her new home. She doesnt necessarily need to adapt to survive, but to be successful. She vows that in the spring, when the hibiscus is budding (restarting its growth cycle) she will restart too and retake the test." 2 3 3 +9366 4 "In the story, Winter Hibiscus, by Minfong Ho, the authors final paragraph shows how much the hibiscus means to her. The author uses symbolism when, he talks about the hibiscus because it is a strong plant just like the girl needs to be to pass the driving test. The author put the paragraph at the end to show that if the hibiscus can come back, after winter, so can the girl. In conclusion, the author used the last paragraph to emphasize the meaning of the hibiscus." 2 2 2 +9367 4 "The story is full of emotion and homesickness that it can be a bit depressing, so the author wanted to end with message of hope. After saeng failed the test in the maint shelter of the greenhouse (she) broke down and wept, its inspiring to know that shell keep tryinh despite all her hardship. I know first hand that homesickness can be pretty bad, and finding the strength to keep going and make the promise to take that test again can be very hard but worthwhile . The author also used the ending to give another meaning to the hibiscus for when the geese return and the hibiscus is blooming when the winter is over hard times are past, there will be new hope in a new, beautiful spring. " 3 2 3 +9368 4 "The reason why the author concluded the story with that paragraph was because at basically explained everything You needed to know for the ending. It basically explains that she is willing to take the time to study for the test she had previously taken and did not pass and wants to take it again once spring arrives. For example, the geese had left for the winter. and once they return in the spring, she will take the test over again, in conclusion, the author concludes the story with this paragraph because it best explains the ending of the story." 1 1 1 +9369 4 "The author concludes the story with this paragraph to show the growth or hope that Saeng has that she will be comfortable in the United States. When she said “I-I failed the test,” I took it as failing the test to see if she got over her country and if " 1 1 1 +9370 4 "In the story winter hibiscus by Minfong Ho, I think the author concludes the story with this paragraph. ""When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding then I will take that test again. @CAPS1 is shows that you should fight. For whats right and what you belive in." 0 0 0 +9371 4 "Saeng wanted to show that she was strong and determined. She wanted to make the best of things with what she had. She had lost a lot of hope with the big move to another country. The winter made her sad longing even more for home. She bought the flower to, in a sence, bring her back home. When the spring comes, she will bud with the flower and take the test again. This is her new home with new hibiscus. After all, winter is no time for a flower." 1 2 2 +9372 4 Saeng did get the feel that she called fil in and. Buying something that could help her but also have her missing were she from. And with her mother get a little mad about it because the prags she pay for. It @CAPS1 vowed silently to herself in the spring that she take the test again. 1 1 1 +9373 4 The author concludes the story with this paragraph. I think the author concludes this story with that paragraph to show that Saeng has confidence to take the driving test. 1 1 1 +9374 4 The author leaves the story there because it keeps you guessing on what is going to happen. That is really all you need to know about the story. The important parts the author has told al ready & the future is a whole different story. It doesnt matter if Saeng passes the test or what happens over the winter. The author has told us everything to know about the importance of this person & her mother 1 1 1 +9375 4 Saeng feels out of place in her new home and new country. She vows silently that in a year she will take the test again. She vows that in a year she will be used to her new home and new country and will start to enjoy life again. The author concluded with this paragraph because the girl Saeng will hopefully enjoy her new home and in a year she will be used to what happens in her new country. Saeng just feels out of place and she wants to wait a while until she tries to retake the test. The author concludes the story with that paragraph because she made a vow to herself and hopefully she will keep the vow and make it happen. 2 1 2 +9376 4 The author might of concluded the story with this paragraph to show that Saeng isnt @CAPS1 to stop trying shes @CAPS1 to work harder. As she sees the Geese adapting she chooses to try. and make their wew home work out. After they disapear she picks herself up and says that shes @CAPS1 to try again. By doing this she is commiting herself to try @CAPS2 things t adapt to changes. 2 2 2 +9377 4 I think she ends the story with this paragraph because she wants to take the test in the @DATE1 time when it wont be so hard on her. It will be warm again and its not quite as cold. 1 1 1 +9378 4 "The story concludes with this paragraph for a number of reasons. First, in the spring it is warm and sunny and this helped to end the story in a happy note. Next this shows that Saeng can adapt to her new home, as the hibiscus will through winter. Finally, it shows Saeng is determined and won't let her mother down. That is why the story concludes with that paragraph." 1 1 1 +9379 4 "The author concludes the story with this paragraph to show if they can adapt then she can too. In the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. I choose this saying because it shows you if they are able to come back after everything that has happen she can to. She should be able to adapt to a new place just like they do." 2 1 2 +9380 4 "Authors often end stories with paragraph that make readers wonder what happens next. In Winter Hibiscus by: Minfong Ho there is an ending paragraph just like that. The author ends it like this because she is looking towards the future. She says that she will take the test when the snow melts, the gesse come back, and the hibiscus bluming. She is looking at it like that is a new beggining. She wants to start over. Also the gesse, blooming hibiscus, and melted show gives her hope that she will pass her test. She belives now they have a hibiscus maybe it will be more like where she use to live. Authors use endings that make people wonder so people think. " 2 1 2 +9381 4 "The response that the author concludes the story with this peragraph because the author wanted us that read the story to understanding what was going on in the story. like for the @CAPS1 they was sayin when they come back Saeng vowed silently to herself in the spring when the snow melt and the geese return and this hibicus is budding then I will take that test again, was tryin to see where everybody head at in the story so they can understanding what the author be talkin about." 0 0 0 +9382 4 "The author concludes the story with the paragraph because the geese and the hibiscus were both things that were familiar to Saeng They remind her of her homeland,When the familiar things return ,she will have the strength to the test again and hopefully do better.The narrator says Overhead a of Canada geese flew by,their faint hunks clear and yes-fimiliar to Saeng now .This shows how the geese are a symbol of the fimilar things from her homeland that help Saeng feel more comfortable in her new home." 1 2 2 +9383 4 "The author included that paragraph because the hibiscus plant makes her think of where she is from and helps her to succeed a certain things. I know that the hibiscus is from her homeland because in the story she says I mean, not like the kind we had atat-, she found that she was still to shaky to say the words at home. She misses being home and this plant helps her bring back memorys of being there. Therefore the author included that paragraph to show the reader that she misses her homeland." 1 1 1 +9384 4 The author concludes the story with this paragraph why @CAPS1 it might be important to the author about Saeng. It some thing personely about her past or where she had came for. She trying to say that when she come back in the spring she going to take the test again in school. OR She is going to plants something over again the spring @CAPS1. As snow @CAPS2 and its too cold to plant any thing. That where she came from is really important to her and she miss it and went to go back to where she Come from. 1 1 1 +9385 4 "The author concludes this story with when they come back, Saeng vowed silently to herself, in the spring, whe the snow melts and the geese return and this hibiscus is building, then I will take the test again"". She does this because in the story this plant has given her a lot of beilef in herself to @MONTH1 be do better in the future." 1 1 1 +9386 4 "The author concludes the story this ways for a few reasons. One reason is that she will have more experience with her new country. She only left her homeland a few months before so in about six more months she will be more knowledgable about the ways of the new country. This will make her more capable of passing the @CAPS1 Ed test. Also in the spring is when the flower will be beautiful again and this will give her new-found strength that will cause her to pass. The few months time will allow the author time to mentally and physically prepare for the exam. Mentally, she will be able to study and learn all she needs to know. And physically she will age which will also teach her new things." 1 2 2 +9387 4 "In order to get over her failure, Saeng bought a flower that reminded her of home. Saengs started to cry when she bought the flower. She wanted to be back home. The author concluded the story with this paragraph to show how she will take the test when she feels like she is at home. when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, Saeng said to herself. Those things make her feel welcome and feeling that way will help her with her test. The paragraph concludes the story with all the things she is comfertable with. This conclusion helps the reader understand what reminds her of home. Also explains how much the hibiscus flower ment to her. Buying the flower helps her with her troubles. Seeing the geese fly reminds her of her home. The author concludes the story with the memories that will help Saeng in the future." 2 2 2 +9388 4 "I think the author ended this story with this conclusion because, every one should have fresh starts, or second chances. I guess the author was leaving in a message stating if you fail once you should at least try again. When Saeng failed the test it seems as though her self-esteem lowered, and her mother tried cheering her up, and eventually she realized it will be bad giving up and not trying again with a fresh start." 1 1 1 +9389 4 "Minfong Ho included the last paragraph in the story because it alluded to the fact that saeng felt better and more confident when reminded of home. when saeng saw the hibiscus she got a feeling ""so intense, it was almost visceral. The flower was creatively used by Ho. She said that the winter hibiscus is strong enough to make it through the cold months, which made the reader think after reading the last paragraph, that this flower must give saeng hope and confidence. Also, the geese make a V which I infured would mean Vietnam to saeng which is what the author is trying to get her reader to think. That is why and the geese return. is mentioned in the last paragraph. Minfong Ho wants her readers to realize that objects that make us more comfortable and happy are what make us strong and confident in the end. The author did a great job placing that last thought into the last paragraph because it perfectly sums up the lesson, and that is that you should do things when you feel confident and it feels like home to you. You @MONTH1 be small and fragile, but if you plant yourself you can thrive with confidence. " 2 3 3 +9390 4 The last paragraph at the end of the story was the authors way of showing how Saeng wanted spring to come early because she wants to see her hibiscus. If spring doesnt come fast she will not get to see her hibiscus and the snow wont melt. When Saeng comes up she hopes she can take the test. 1 1 1 +9391 4 "The author concludes the story with the sentence ""When they come back, saeng vowed silently to herself, in the spring, when the snows melts and the geese return and this hibiscus is budding, then I will take that test again. ""because that winter hibiscus symbolizes a new beginning for her. For example back in her home town she had hibiscus's and everything was fine and normal, she lived her life and so on, well then she moved to the u.s, and she didnt have any hibiscus, she just failed her driving test, she feels miss placed, and doesnt fit in. So, when she saw that winter hibiscus she felt as if she found something to help her feel at home or at ease almost. She felt a sense of security In conclusion the author ended with that sentence because its a new beginning for her and that hibiscus means a new start." 2 2 2 +9392 4 "The reason why the author concludes the story with this paragraph is because it resembles to her own life, that she will have another chance, just as geese will come back again. The reason why the last part resembles back to her life is that it says in the spring, spring is usually a good time of year because it gets warmer towards @DATE2 and Flowers come back. The hibiscus plant will bloom again and that will renew, In a way, her warming thought of her old home. Then that will be the time to retake her driving test that she failed, which was before she bought the plant. The author added this last part because it tied and matched so well with the story." 2 2 2 +9393 4 The reason why the author concludes the store with on small paragraph is because some time the little things count the most and the authore thouth t that in two setses that he could summarz the most important things in the story and I think that the author did a great job. 0 0 0 +9394 4 The author concludes with with paragraph because Saeng has to take the test all over. She @MONTH1 think theres a better chance when it blooms and the snow melts. So that is when Saeng is going to try and take the test after the snow melts and the hibiscus blooms 1 1 1 +9395 4 The author concludes with this sentence for a couple reasons. Saeng feels that she cant do it until the spring because that when the geese come back. Also that is when the hibiscus buds. In a way she feels as though she will blossom in spring and be able to pass the test. 1 1 1 +9396 4 I think that the authoR includes this paRagRaph in this stoRy b/c the gRandmothER might think that it is a tEst to sEE what she can gEt donE @CAPS1 time. The gRandmotheR might gEt more done then should @CAPS2. 0 0 0 +9397 4 "I think that the author concludes the story like that because @MONTH1 be shes saying that by that time shell be ready to take the test again. Another way of thinking is that @MONTH1 be by that time when that happens in spring she would be preprared and more confident of herself. @MONTH1 be the author was trying to say that just like the begining of a new springs, it would be a new beginning for her." 2 1 2 +9398 4 "I think that the author concludes the story with that paragraph because Saeng is saying that she will try again. For example, despite failing her driving test she decides to take it over after having the experience of planting with her mother. It seems as if planting the hibiscus has gained her some confidence in striving to succeed once again. In the story it seemed that she was getting used to planting. For example, now that she has done something and accomplished that she knows that she can take the test again and accomplished that. In conclusion, that is why I think the author concluded with that paragraph." 1 1 1 +9399 4 "The author concludes the story with a statement that makes you think because she wants to emphasize the relationship between Saeng and the hibiscus. Just like Saeng, the hibiscus is in a new environment and has to adapt to the surroundings. Saeng had just failed her driving test so shes bummed about that. The concluding sentance makes you realize that Saeng can overcome her driving challenges if the plant can overcome the harsh surroundings." 2 2 2 +9400 4 the author includes this as the last paragraph because it could give Saengs mother hope. It could give hope because they could really need Saeng to pass the test. 1 1 1 +9401 4 "It was very important that the author concluded the story with that paragraph. It reastablished the meaning of the hibiscus and why it was important to Saeng. I showed the determination she had in overcoming her problems with living in a new place. Without this paragraph we would have been left assuming what was to come of Saeng. In some stories it would have worked but in this case it was needed. When she first saw the hibiscus she broke down becaus she could not remember her home land. This is why the hibiscus is so important to the story. By restating the importance of it in the end helped the reader follow what was to come next eventhough the story had come to an end. It was important to express this again. In the last paragraph is says, This hibiscus is budding, then I will take that test again. The buds represent a new beginning for Saeng and a new chance to overcome her problems. This paragraph was very important and without it these events would be left hanging. The meaning of the story is much clear with it as a reader." 2 3 3 +9402 4 "Including the bit about taking the test again when the hidiscus is budding provides a sense of closeur and lesson to an otherwise open ending. Saeng fails the drivers test early in the story, then on her way home she buys a hibiscus. The reader really doesnt see a connection until this last paragraph. The hibiscus represents perserverence and strength. After a harsh winter this hibiscus can bloom again and ard continue to live. Even after moving from Vietnam, and struggling to adapt, Saeng must recover, ard keep trying. Just like the flower blooming again, so will Saeng. She will take the test a second time and pass. She will adapt to her environment, and keep going, just like the hibiscus." 3 2 3 +9403 4 "The author concludes the story with the paragraph When they come back , Saeng vowed silently to herself in the spring , when the snow melt and the geese return and this hibiscus is budding , the I will take the test again , because the author started out the story after Saeng failed her driving test . Saeng is reminded from the Hibiscus about her homeland. After Saeng wanted the Hibiscus in the garden , a flock it canada geese flow by , as they flew by Saeng felt a sign at comfort and vowed to herself what started everything . If Saeng did pass the driving test then she would of never found the Hibiscus." 1 2 2 +9404 4 The author include it because her mother took the test and passed it and the daughter wanted to do the same Just like her mom. And she can only take it in the spring because there is no flowers out in the winter. 0 0 0 +9405 4 "In think the author is trying to show that Saeng is finally starting to accept and get over the struggles in the life. It is showing that she has finally gotten used to @LOCATION1 and the customs, but she still hasnt forgotten her heritage. But she had herself much preferred it to a big Mac. It also proves that she is going to be positive and not let disc overage her. Shes going to retake it and try again. During the beginning look on her situations in life. But after visiting the floral shop, she discovers a more cherry. Optimistic outlook on her situation and decides to do something about it." 2 2 2 +9406 4 "I think the author concludes the story with that paragraph for many reasons. One reason I think is because shes concluding that the winter is there, and when winter is over, she is going to start flowering and planting again. In the story it said, the winter hibiscus was in the ground now,. So, now she has to wait for winter to pass by then the hibiscus will be starting to grow and will hopefully be alone by spring. So, that is why I think she concluded the story the way she did." 0 0 0 +9407 4 "The author concludes the story with this paragraph because the question of what about her test? Needed to be answered and thats when she'd to comfortable to take it. In the text. To her, the plant felt smooth and cool just as she had known it, which was comforting. She closed her palm around it and held it tight. That, at least, she could hold on to. Unlike her grandmother, she felt a wave of loss so deep and strong that it stung her eyes, with sadness, and maybe disapointment, which she probably word want to deal with for a while, hinted at in the conclusion her mother even uttered a small cry of surprise and delight to see the flower, even before being shocked when Saeng reveals she paid all of over nineteen dollars for it. With this concluding paragraph, I believe that she will be more comfortable at the time. planned because she'll have new and old things to come home to, such as the geese and plant. " 2 1 2 +9408 4 "In the story Winter Hibiscus the author includes this ending paragraph because she wants to show that next time around she will be prepared and ready for the garden and the challenges it holds. This first time, she wasnt ready, and she didnt know about the winter hisbiscus because she never did anything like it before." 0 0 0 +9409 4 "In the story Winter Hibiscus the story ends with saying in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again The reason the author ends the story like that is because it showing that eves though she @MONTH1 of failed the test once shes not going to give up just because of as adjustment change. The Hibiscus made the reader relize that a plantation where she lives can adapt so can she. " 1 1 1 +9410 4 The reason she ended the story like that is because when everything is blooming she will feel more at home and will have healthy. I say this because the girl used to help her grandma withe her hair before she moved. So if the flower is blooming then it would remind her of her grandma which would be insentive to do good on the test. 1 1 1 +9411 4 "The author concludes the story with this paragraph because it is a personification involving snow smelting, geese returning, and the hibiscus budding. Its explaining moments in time. The author describes how isolated the hibiscus is." 0 0 0 +9412 4 The author ended the story with that paragraph because its telling how Saeng feel about winter being near and how she have to wale until spring come back around to do her teast again. 1 1 1 +9413 4 Saeng cares about the flowers. She cares about the flower. Natural occurrence with them growing unique. 0 0 0 +9414 4 "In the story I dont know why the author and the story with that I really dont know, maybe she was talking about she took all test now she wouldnt take it over again atey. The times come. She in school and when one took the test of was that kind of wealth now that of not of is @DATE1 and school is over. " 0 0 0 +9415 4 Why the author concludes this paragraph into the story is because at the end off the story they needed and ending. Also why is because the picked and conclusion that would best fit this story. 0 0 0 +9416 4 "I believe that the author chose to conclude the story the way they did because the story was about perserverance. For example, the story was baised around the winter hibscus plant. This is a good example because in the end Saeng vows that she will perserveer and take her test again and the hibiscus perserveers and forges through the winter not allowing itself to die. Another example that @CAPS1 mother worked outside while it was cold to get her gardening done. This relates to the story because her stayed out in the cold garden to get her job done, she could have quit and gone inside the nice warm house, just like Saeng could have quit and said she was not going to try to take her test agin. But she did not, she said she was going to try again. " 2 3 3 +9417 4 "I think the author ended this story like that because it means that she hasent gave up yet and even though she failed the first time she is come try again, In the spring , when the snow melt and the geese return and this hibiscus is budding . mean that when all is @CAPS1 . She will try to do it again because if she passes it will be @CAPS1. The story was preety bad because I dont even know what she failed so I didnt like it." 1 1 1 +9418 4 "I think the reason why the author ended the story with this when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding. Then I will take that test again. paragraph because like this the plant didnt have a fight chance for survival in the winter and was same with the girl when she took her driving test but in spring the plant has chance bloom so she has a chance to pass the test because because there time and place for everything." 1 1 1 +9419 4 "Emotion, camitmint, hope, all are reasons why the author ended the story with when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the gees return and this hibiscus is budding, then I will take the test again."" @CAPS1, that last paragraph shows that she has emotion. Next, It shows that she has comitmint, she says that when the hibiscus coms back she will take the test again. Lastly, it shows that there is hope and the she will try and redeam herself. These are all the reasons why she used the last paragraph." 2 1 2 +9420 4 "The author concludes the story with this paragraph to emphasize her new found determination to overcome her obstacles. For example, in the passage she states, she realized that many of the things she had thought strange before had become, through the quiet repetition of season upon season, almost familiarizes to her. At this point she has an epiphany, and realizes that life is like seasons. In the end paragraph she intercedes this by saying that in the spring she will take the test again. This shows that just as the winter hibiscus is along winter, and then blooms in the spring, she must be strong during these hard times. One day her time will come for her to bloom. @CAPS1 experiences hard times, but we all must be strong and steadfast as we wait for our time to bloom. " 3 2 3 +9421 4 "The author concluded the story with that paragraph because, he wanted to show that she wasnt going to give up just because she failed one time. She failed the test one time already. She was very sad about it. She went and bought a plant. Saengs mom told her that they were going to do it the right way. Saeng was crying when she told her mom about it. Her mom was very understanding thought. Her mom could have been very mad with her. She could of used a plant that they grew. The plant @MONTH1 not grow right now. She should of bought a real plant from someone else." 1 1 1 +9422 4 "Determined, new beginning, symbolism each are reasons why I believe the author concluded the story with this paragraph. She finds new hope after buying the plant, and is newly determined to pass the test that she writes about. As she sees the geese flying overhead, she realizes what determination they must have and vows to do better on the test next year. With the new flower, she feels like shes starting over so that shes able to pass this test that seems important to her. When the author write, and the geese will return and this hibiscus in budding, then I will take that test again, it shows symbolism. By telling about the flower blooming new buds, it symbolizes that Saeng wanted to turn over a new leaf of some sort. Determined, new beginning, symbolism each are reasons why I think the author concluded the story with this paragraph." 2 3 3 +9423 4 "The author of Winter Hibiscus by Minfong Ho end the story with the statement, when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take test again, because it showed that Saeng had overcome her problem and vowed to correct it. By ending with this statement the author showed that the beauty of nature can help one to overcome their problems, as did Saeng. Upon seeing the Geese mignitry and the Winter Hibiscus Saeng, realized that many of the things that she had thought of as strange before had become, through the guiet repetition of season upon season, almost familiar to her now. Like the geese. Saeng realized that the test although strange and different to her now became familiar because of her experiences with nature. Seeing the geese and Winter Hibiscus. This plant also made Saeng think of her past in Vietnam and all of one good times back at her home. The familiar fragrance filled her lungs, and Saeng could almost fast the light strures of her grandmothers long gray hair, freshly mashed. The jolont made her think of good experiences. In the plant made her joyous enough not to think about past, but about the future, about taking the test again and her new life in the United States " 3 3 3 +9424 4 The reason why the author puts that last line into the story of the end is to show us the raids and saeng that even though us almost over. She doesnt want it to end but she know that it will also start up again. Next year when things goes back to the way they were before everything changed. This is why I think the author put that line into the story. 0 0 0 +9425 4 "The author concluded the story with Saeng vowing to herself in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that the test again to express her determination of fitting into new things and to express the change she was getting used to. Describing spring was important in the conclusion because it described what Saeng once thought was odd in @LOCATION1, but got used to the seasons and weather changing. Once she realized that she needed to deal with change, she knew that she would need to try the driving test again. It was very important that the authors conclusion was in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again because it expressed how Saeng was accepting change in her life. " 2 2 2 +9426 4 "In winter Hibiscus the author uses hibiscus flower to symbolize beauty in unexpected places, adapting to a new life, and Saeng's home country at the end of the story I think that the author realizes that even though she failed the test, everything is going to be okay. While looking at the hibiscus she remembers her old life, which she loved, and she is reminded of the natural beauty that can be found in a hibiscus flower. In life, I think every one should always remember that even though one @MONTH1 be disappointed at sometime, we have to keep in mind, the fact that life goes on. There will always be another chance, as long as you can find peace and beauty in something good." 2 2 2 +9427 4 "The author concludes with this paragraph to show how Saeng and the plant are similar. The plant represents Saengs strength and abilities. She knows that only when she is stronger, in the spring like the plant, will she be ready to retake the test. Her hopes will be stronger like the plant in the spring. That is why the author concluded with that paragraph." 1 1 1 +9428 4 "I beleive the author ends the story with this paragraph because it refers to previous events in the story. For example it says, ""and this hibiscis is budding"". This refers back to the beginning of the story when Saeng first saw the hibiscus plant and it reminded her of home. This is a good way to conclude a story. I wouldnt change it at all if I could. Also in the summary before the story it says how she had failed her drivers test and in the last paragraph it says, ""then I will take that test again, I think Saeng didnt have much confidence before taking the test because of her new surroundings but is now that she is familiar with everything and found a hobby she will think of passing while taking the test again. I think she is looking to start over and forget about failing. " 2 2 2 +9429 4 "The author concludes the story with this paragraph because she overcame and she wants to re take the quiz for herself and to prove it to herself no one else. she states when they come back, saeng vowed to herself, in the spring, when the snow melt and the geese return and the hibiscus is budding, then I will take that test again. So she says that she wants to retake the test. So she is not being pressured into taking it. She is taking it to prove to herself no one else." 1 2 2 +9430 4 "In the short story Winter Hibiscus by Minfong Ho, a young girl named saeng recalls her life before she moved to @LOCATION1 .She misses her homeland and all of the things she loved before she came here. Towards the end of the story, the author includes a paragraph saying that saeng vowed to take her drivers test again when winter ends, when the geese return, and the hibiscus is budding. The author concludes the story with this paragraph for one reason. He/She wants to show that saeng is strong enough to survive the winter, just like the hibiscus, and will be ready when the weary days of winter are over, and the beautiful days of spring come. Saengs mother states, ""its strong enough to make it through the cold months. Thats what matters"". The winter hibiscus is a direct parallel to saeng in that just like it, she is strong enough to survive the winter months." 2 3 3 +9431 4 "The author concludes the story with that paragraph to make the reader want more. When an author ends the chapter of a story or an episode of a show it is always a good idea to use a cliffhanger to drag the audience along. In many stories have read this is used. In my @CAPS1, the @PERSON1 book it always ends with a cliff-hanger. Like in the end of the third book one of the soldiers is killed but you dont find out by who until the next book." 1 1 1 +9432 4 "The author concludes this story the way she does to say that the girl not going to give up on trying to fit in this new country. The author concludes this way because it refers that its not over, and even though the test was a failure, it wont be next time. The author leads is know that the little girl cares about the test, and wants to prove to show people that she can pass it. She is reminded of her home by these flowers, and she has with this she can retake it and do it rite." 2 2 2 +9434 4 I think the author included that in the paragraph because Saeng didn't like the cold so she would wait until the snow melts and geese return to test the plants again. I also think she added it to show that she would come back to visit her mother. 0 0 0 +9435 4 The author concludes the story with that paragraph because Saeng failed the test and in the spring she will take the test over. 1 1 1 +9436 4 "The author concludes the story with this paragraph because it provides closure to both Saeng and the story. Saeng was upset about the fact that she failed her test, but towards the end of the story she realizes that things happen, and sometimes we have no control over what happens, but youve also got to pick yourself up again if what happens, knocks you down. When seeing the geese and the hibiscus, she realizes that everyone and everything has to adapt to something new all the time. Saeng might have failed her driving test because they drive differently in Vietnam, so she will have to adopt to the way we drive here, along with all our rule and laws. This is why the author concludes the paragraph in that way." 2 2 2 +9437 4 "Saeng was taking a test and she didnt quite pass it She was afraid to tell to her mother but she has to tell her anyway. Her mother got upset because she didnt pass it. Saeng knows that right after winter's over, Shell be taking that same test again and she hoped she will pass it this time." 1 1 1 +9438 4 "In the story, Winter Hibiscus by Minfong Ho, the author includes the phrase, -When they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test again.- because she wanted to make the story end Saeng finding the positive views on her new home and positive views in the future and have her look forward to it. Throughout the short story, Saeng happens to have a sad disposition about her new home and how the plants remind her recent home.- I mean its not the kind we at-at- she found that she was still too shaky to say the words at home, last she burt into tears again.- This phrase shows that Saeng really missed her home and was truly sad about it. The concluding phrase shown before shows that she found the strength to look positivly at the future of her new home." 3 2 3 +9439 4 The author concludes the story with this paragraph because at the beginning of the story Saeng went to take a driving test but didnt pass and so she goes and buys a hibiscus that reminds her of home and gives her strength and comfort. So her mother says this at the end because she knows Saeng is going through a hard time adapting to her new country and she doesnt want to put more pressure on her just because she knows Saeng is very upset and is trying to make it up to her by buy a flower for her so she says by next spring she should be adapted and ready for the test because the flower should give her hope. She wants her to know she is three for her. 1 2 2 +9440 4 "I think the author of Winter Hibiscus said when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, the I will take the test again. to conclude the story for many reasons. First reason is it shows that she isnt giving up. The second reason is it gives a feeling of hope of whats to come. The last reason is it leaves us wondering if she makes it next time. That is probably why the author ended it that way." 1 1 1 +9441 4 "The author of the Winter Hibiscus concludes the story with the paragraph to show the connection between the hibiscus and @CAPS1. The hibiscus has to survive the winter until spring were it can bloom and became big and beautiful. @CAPS1 is connecting to the flower and saying she can make it through her obstacles that come with the change in enviroment if the flower can deal with being confined in a plastic container and surviving the weather. She feels that right now she's likes the Hibiscus. Shes trapped because the area is alien to her and she has to adjust. Just as the container is alien to the flower because its used to being free. But once its planted, it will become a part of it's surroundings and grow. And once she accepts the change and becomes willing to start over, she will begin to grow and that will cause her driving test to be easier. In conclusion, this is the reason the author concluded the paragraph with this sentence." 3 3 3 +9442 4 "In the short story Winter Hibiscus, the author ends with the main character Saeng saying that she will take the test when the snow melts and the geese return. I believe that the Hibiscus and the drivers test are relevant like the blooming of a flower. If it wilts at the first, it can blossom later on, thus the author included this to show that Saeng wilted at first, but will blossom at spring. It also a symbol of her constant blossoming. The authors intention of the lost line was demonstrated early when Saeng was disappointed of falling the test. She is upset that she failed her drivers test, but when she sees a flower from her homeland, she starts to get boosted and start to weep a little. It shows her blossoming because she changes from a negative mood to a positive one, after seeing the flower from her childhood memory. It shows her wilt and blossom again when she tells her mother the news about the test. At first she gets nervous and scared, so scared she tears the leaf off and shreds it to pieces. Her mother then wipes the green matter of and asks her to plant it. Saeng then gets a morale boost and start to feel better. This once again shows her blossoming because she thought her mother would yell at her for failing the test, but instead accepts the plant, showing her rise again. Saeng falters throughout the story, but manages to rise above it all and give herself determination to meet her goal. She is determined to pass the test when spring arrives, and blossom again. The Hibiscus shows it with its budding stage. It will blossom like Saeng. " 3 3 3 +9443 4 "The author probably includes part of the story with the paragraph to put more details into the paragraph. The author trying to talk about the life that Saeng had vowed silently to herself in the spring when the snows melt and the geese return and this hibiscus is budding then I will take that test again, saying that when flowers start blooming again and spring comes around again thats when I will take that test and pass this time." 1 1 1 +9444 4 "I think the author concludes the story with this because shes proving she has the strength to do something that she failed the first time again. She took this plant and looked at it as a memory and a passage of time. Saeng planted it as a reminder of home and her promise. Saeng said, Its not a real one ""Not like the kind we had before. Saeng loved home and wish she was back there but her new promise was what had mattered." 2 1 2 +9445 4 "The author concludes this the story with this paragraph because its start a whole new day time . That saying means that she will take the test on a budding new day .for example, the geese return her its spring and hibiscus budd and she has the test in the spring so it will start why the author concludes the story with that paragraph." 1 1 1 +9446 4 The author concludes the story with this paragraph because she wants to take the driving test in spring time. Spring time is a symbol of positive feelingsshe gets positive feelings from the blooming of the winter hibiscus. 1 1 1 +9447 4 They had to come back so they did and they were walking into an then world over there in the corner and the childhood world to just as she had known it would feel. 0 0 0 +9448 4 "This last paragraph is written for several reasons. First, she will try again when she feels the time is right. Just like the geese coming back, Saeng will comebak to take the test, and so the Hibiscus plant will also bloom again. She feels that it is the right thing to do and it will be the right time to come back and take the test. This pharagraph describes Saeng well about how she lives and how she will take the test again when she feelsit is right." 2 1 2 +9449 4 "I believe that the author ends because the author is showing that Saeng is determined to pass the test. ""She paused as she noticed the tearstains on her daughter's cheeks and her puffy eyes. ""(Ho) This quote shows that passing the test meant a lot to Saeng. She was crying because she couldn't help but buy the plant and fail the test. She didn't want to fail and showed her sadness by crying. then I will take the test again. (Ho) This quote shows that even though she failed, she is determined to pass the test and succeed. Failing hurt her greatly. so she can't wait to do it again and pass because she is determing to succeed. This is all important because Saeng shows that determination is the key to success and she is determined." 1 2 2 +9450 4 "The author uses this paragraph to conclude the story to show saeng determination and her adaption to her new home. This shows her determination because it say I will take that test again."" This also shows that she has adapt to her new home." 1 1 1 +9451 4 "I think the author concludes the story with this paragraph because she was upset that she moved. She is also upset that she failed her drivers test. So she planted the plant and shes says that when spring comes, she will retry her drivers test" 1 1 1 +9452 4 "In the story, Winter Hibiscus"", by Minfong Ho, the author concludes the story with a paragraph with Saeng vowing she will take the test again in the spring. Minfong used this paragraph because it means never give up, even if you fail the first time. For example, Saeng just failed her drivers test but after buying the Hibiscus and taking deeper into things she realized she shouldnt give up." 1 2 2 +9453 4 "The author concludes with this sentence for emphasis. It takes Saengs mind off of the flower and she focuses on her test. By waiting until next spring to take the test it gives her something to look forward to. This statement also shows that you should never give up on anything that you do. The author ends on a good note explaining this, The last paragraph is also a break from the rest of the story and from what Saengs was just doing. It is Saengs last and final thoughts." 2 2 2 +9454 4 "The author concludes the story with that paragraph I think to say that when the hibiscus start to grow back she will be back at what she started. I think that is why because she says In the spring, when the snows melt and the geese return and this hibiscus is building, then I will take that test again." 0 0 0 +9455 4 The author concludes the story with a paragraph so the people reading the story would actually read it and not guess how the story is goin to go. 0 0 0 +9456 4 The authors conclusion in the story explains that after all that team work and handwork you should keep that flow going each year even though something might have changed. 0 0 0 +9457 4 "The author concludes the story with this paragraph to create a feeling of hope. Saeng had a bad, from failing the test to her deep feeling of loss, @CAPS1 after finding the hibiscus and planting it she seemed to be enlightened, while as she missed her home land but still had the memories, which was comforting to her. She shows determination, because she declares she will take that test again, and seems to have more confidence in herself. The author adds that saeng will take the test again in the spring. When looking at archetypes, spring is time of new beginning and life. When the hibiscus is budding(being reborn), she will take the test. It will be a new, better start for saeng too." 2 3 3 +9458 4 "The author concludes the story with this paragraph to show determination. It shows that saeng wants to take her time to adjust to her new life and her new surroundings. Then she thinks it might feel more like this place is becoming a home. She feels that maybe, if shes been used to this new place for awhile she will have a better chance at passing the test. she is determined to pass the test." 2 1 2 +9459 4 "The author concludes the story with this paragraph because when Saeng was saying this to herself, she made a promise to not give up getting her license and the hibiscus makes her feel like she is at home again. In the text when the mother says, ""@CAPS1 seen this kind blooming along the lake. Its flowers arent as pretty, but its strong enough to make it through the cold months here, this winter hibiscus. Thats what matters. when she says this it makes Saeng not sad because she knows that the hibiscus will remind her of the hibiscus at home and that gives her the power to want to try again in the spring." 2 2 2 +9460 4 "The author concludes the story with when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again. I think that the author includes this paragraph to show how persistant Saeng is. Saeng is persistant because she trys over and over again at this test and also she trys to get used to her new country. It demonstrates this in the story when it says the quote above. This quote shows that Saeng can try something and fail, then be determined to try and succeed again. Also in the story, Saeng has moved from one country to another. This is a huge jump and for her to be confident with herself is very persistant. The way the author concludes the story, with when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again definitely portrays Saeng, the main character as a persistant person, and that is the purpose of the quote." 2 2 2 +9461 4 The author concludes the story with this paragraph because he want the ourtose to think about what he said to want to read more. For example I was reading a book that end in a quesiton and I wanted to read more of what the answer to the quesition is. Another example is that I was reading another book and that was ending in a stentment So I want to read anther book that they have but they don't have One so I don't know how the story ended. Thats why the end stories like that so they can make you read another book with the ending. 1 1 1 +9462 4 "The author concludes the story with that paragraph for many reasons. The author wanted to convey a sense of hope to show the growth of her character, and to show how thing are going to change. In the last paragraph when she vows that she will take that test again it gives you a sense that everything will be okay. Earlier in the story she had been crying and missing her homeland the tone was troubled and sad. This last paragraph suggests that the tone is now hopeful. Even though she failed the test she is still going to try again. The author also put the paragraph to show how much her character has grow. Saying that she will try again shows how much stronger determed she is lastly, she had the story end with that paragraph to foreshadow what is to come.The geese coming back and the snow melting, and the hibiscus budding all show a change in the seasons. This represents the change that has occurred in her and it foreshadows that things will be different from now on." 3 3 3 +9463 4 The author concluded the story with that message is because If you think about it. if not that seems all the whole story and leavs a opening for a requal. It's ovious that whole point of the story is to make you think. 1 1 1 +9464 4 I think the author add this paragraph because it a sign of a new start for her. Because she has hard time no doesnt main the she will alway have hard times. 0 0 0 +9465 4 "The author concludes the story with that paragraph because It meant a lot to Saeng. Saeng failed her driving test and scared to tell her mother that she also spent nineteen dollars for Dok Faeng-noi which was a flower/plant they had back at home. For example, As Saeng walks home after failing her drivers test, she sees a familiar plant. The plant Saeng saw meant a lot to her mother. @PERSON1 uttered a small cry of surprise and delight. Dok faeng-nor she said. where did you get it. That was a quote stating that her mother was excited to hear that. The story is concluded by that paragraph because after all saeng went through her mother was glad she bought it. Its a beautiful plant, this dok faeng- noi, she finally said. Im glad you got it." 1 1 1 +9466 4 "Authors sometimes use intisting sentences as there concludy sentence that you @MONTH1 have a hard time understding. In the story Winter Hibiscus The author concludes her story by saying when they come back. Saeng vowed siletly to herself, iN the sprng, when the snows melt and the gesse return and this hibiscus is budding, then I will take that test again. The author says this to show that Saeng is not ready to gardam yet and needs to lean more. The mother is verry disapointed in the daghter for buying a plant that is very expensve and shows her inexperience in that buying thigs because of your fodings is wrong. This is showed wha they say I paid over Nineteen dollars for it."" You what? She also, says @CAPS1 facing. Na where did you gott that"" showing her suprise of the expensve beutiful plant. Authes use those paragraphs and sentences to show or recap the story. The Author of winter hibiscus @CAPS2 her story with the paragraph because Saeng shuld Not hav boght the plant bascal a hav emotions and that she shall try agan Next year to not mess up." 1 1 1 +9467 4 "The author of the passage ends the story with this statements to creates curiosity. Thi creates curiosity through writing for the spring and the geese to return.Spring is the beginning for many creatures on the earth therefore ,Saeng is trying to start over because she must wait for the spring. The hibiscus reinforces the feeling of a new beginningin that each year new bad grow just like she can have a second chance. Saeng waits for the spring because she knows that is when every thing else creates new life so Saeng must wait till then to get her new beginning" 2 2 2 +9468 4 I think the reason why the author ended the story with that paragraph was because that will be the time she thinks she will be ready to retake the drivers test. Before she made that move she was dishearted because she failed the test. Maybe she picked the spring time because that gives her time to get herself together and practice between them and the spring time 1 1 1 +9469 4 "The author includes this scentence, When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, to show her determination. She is determined to pass the test. Even if she is facing problems adapting to @LOCATION1 she wents to sucseed here. So she will wait a year and then try again when she is better prepared." 1 1 1 +9470 4 "From the story of the girl just moved from Vietnam to United @ORGANIZATION1. It will be hard for the girl to understand anything and anything can bring her memory back about Vietnam. The author concludes the story with this paragraph because she did fail the test and see wants to see the hibiscus is budding. I-I failed the test, Saeng said it to her mother. Her mother actually understand why it happen and she will let Saeng keep the hibiscus because it will make Saeng feel better. Saeng miss Vietnam a lot and will like to try her best to overcome obstacles." 2 2 2 +9471 4 "The author concludes this paragraph because he wants to make it more clearer so the readers would understand It more. And so he could, make it better to stand out. " 0 0 0 +9472 4 "The author finished off the story with that paragraph because the paragraph is saying that overtime when she is adapted well to every thing she will be able to take the test, so thats why she says and the geese return and this hibiscus is budding, @CAPS1 that all it needs is time. Time to get warm and time to grow. Also the paragraph is well thought out and relates to the entire story. So she concluded with a great paragraph that made a lot of sense in relationship with the story." 1 1 1 +9473 4 "In the story, ""Winter Hibiscus,"" by Minfong Ho, Ho concludes the story with the paragraph due to the fact the flower represents her hapiness from her home. The flower symbolizes the past and comfort, once Saeng began to dig the ""winter hibiscus"" In, ""she could hear the sounds of cooking from the kitchen now,"" All of Saengs sense were beginning to return; she was happy, likewise, the author uses the geese to explain the comfort of Saeng. The country around her began to feel like home. She became familiar with her surroundings. Many references to home was made throughout the piece because home is a place of comfort and happiness. therefore, Saeng would gain more confidence, which explans the reason @CAPS1 Ho concluded with that sentence." 3 2 3 +9474 4 "I think the author concludes the story with this paragraph When they come back, Saeng vowed silently to herself, iN the spring, wheN the @CAPS1 melt and the geese RetuRN and this hibiscus is budding, then I will take that test again means to the author kinda like the meaning to life. That if you mess up its okay just try again and do better." 1 1 1 +9475 4 "She concludes that paragraph with the story because she realy wants the people to realize that she is and and is always having fun. Also that she love where she at. Shes making in the world and she loves wathing flower, geese return and this hibiscus is budding that show that her favorite thing to do that she loves is flowers." 0 0 0 +9476 4 "The author concludes this story this way to go over again the important things in the story. I will take that test again, This is the test that she had failed that day. The test that she failed tested her memory of her home. Her old country was so important to her. The part in the quote, when they come back.... when the show me it and the geese return, is referring to when she says, She realized that many of the things that she had thought of as strange before had become almost familiar to her. Like the geese, She is saying that everything in this country she is starting to get used to like the geese that fly south every winter. When she uses ""and this hibiscus is budding,"" she is saying how she will remember all the things she has forgotten when she moved over here to this country. When she got to the hibiscus, she reached out and touched a petal gently. It felt smooth and cool, with a hint of velvet toward the center just as she had known it would feel. This whole statement is basically saying that she is starting to forget things in her country as this country becomes more familiar but when the geese return meaning in the @DATE1 then she will remember again and she will take that test again of her knowledge and pass." 1 2 2 +9477 4 The author concludes the story with this paragraph because he/she is trying to put across the message that the plant shows a symbol of new beginings which is a symbol of saengs vowe. Also in the story caring for the plant teaches saeng responsablity in obtaining her license by care for the plant it will teach her patients and that she needs to learn from mistakes made. 1 1 1 +9478 4 "The author ends the story with this paragraph because it shows she is not willing to give up on her new life. I-I failed the test, Saeng had failed her drivers test and was very unhappy. She also disliked her new home. She was still too shaky to say at home she missed her old home and she really wanted to give up. After talking to her mother, it renewed her hopes so the author uses this paragraph to signify that she still have hope in the end and when she is ready she will try again. When the snows melt and the geese return and this hibiscus is budding, then I will take this test again. " 2 1 2 +9479 4 The author concludes this in the story to show tone. The paragraph shows how Saeng was determined to try again a pass. This teaches a lesson to the reader. Lessons to try your hardestand dont give up. The last paragraph ends the story with a sence of curiosity. It makes you want to no more or if she passes. 1 1 1 +9480 4 I think that the concluding paragraph means after everything else important and what is meant to happen happens then she will take the test because its basically the last thing has to happen and I think she will pass it because it meant to happen. 1 1 1 +9481 4 "I belive that saeng made that silent vow to herself was because after the plant goes though the hard winter and once everything goes back to how she likes it and the plant starts budding again, that that kind of represents her hardtime with moving so if this plant that she loves so much can make it through it then she can too." 1 1 1 +9482 4 "The author of Winter Hibiscus concludes the story with the excerpt ""when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again because it emphasizes Saeng pain to come to an unknown place and fail her first test but also emphasizes Saengs resolve to work hard after seeing a flower that resembled one from home. The flower itself is very important to Saeng, for example, the text reads And besides it was yet another old friend. a small shrub with waxy leaves and dainty flowers with purplish petals and white centers. This excerpt demonstrates Saengs love for her hometown through a flower that she knows grows back home. Another example is when Saeng told her mother the bad news I-I failed the test @CAPS1 attention instantly was drawn to the flower and her mother could only be good. In conclusion, the hibiscus flower is Saengs source of stength as its the only thing she knows in the united states. Saeng wants to show the same resolve on her test that the flower shows in the harsh winter." 2 2 2 +9483 4 "The author concludes the story with the afore mentioned paragraph to represent the connection between the return of the hibiscuss bids, and the return of Saengs resolve. In the photograph for question #@NUM1, the hibiscus flower is out of place, as if it doesnt belong similar to Saeng. The hibiscus represented the link to Saengs past, as portrayed when the author writes: Plants that she had not even realized she had known but had forgotten drew her back into her childhood world. The hibiscus was native to her homeland, and by helping Saeng to remember her past, she began to cope with the present, and later the future, when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding then I will take that test again." 2 2 2 +9484 4 "By this quote, the author is explaining that Saeng will eventually be ready for her test. When the geese return, they're ready to return From their migration and when the hibiscus is budding, it is ready to turn into a beautiful flower. Saeng believes that in the spring, since the flower and the geese are ready, she too will be ready." 2 1 2 +9485 4 "The author concludes with this paragraph because the narrarator is now willing to accept and adapt to her new environment like the flower and the flower would do. Geese like the warm and not the cold so they are flying south for the winter. Saengs comfort tone is in @LOCATION1 where she has many childhood memories; including her grandmother and the hibiscus flower. She is used to the flower being in a warm environment. So, when the geese come back in the spring and when the flower blossoms again, she will be ready to adapt to @CAPS1 life more and take her drivers test. The geese and the hibiscus flower are a symbolic memory of her old home in @LOCATION1 which she misses very much. After these things come to try and adapt to @CAPS1 ways of life. " 3 2 3 +9486 4 Saeng would return to her homeland. 0 0 0 +9487 4 "In the passage winter hibiscus the author uses this phrase in the last paragraph when they came back, Saeng vowes silently to herself, in the spring, when the snow melt and the geese return and the hibiscus is budding, I will take that test again. I believe she concluded this story with these words she change because she is saying to you in that means when the birds flewaway. Even the bird seasons would be back like always. An example of this is when she says the birds eased into the hibiscus. Mingled because the last paragraph thinking that she would stay again next season and keys very what she likes to do. This what I get out as the last paragraph are the story winter hibiscus as what it means to me." 2 1 2 +9488 4 The author concludes this story with the paragraph is that the author is showing that when it becomes spring and the geese are budding she said silently to her self that she is going to take the permit again. 0 0 0 +9489 4 The author concludes the story with this paragraph because she wants to show saengs determination to survive and be happy in her new home. Although she isnt happy with her purchase she is trying to make it seem more homey. When she says will take that test againshe shows how she wants her surroundings to be comfortable. By ending with this paragraph it also shows a strongness in seasons. As it saeng will start over and try again with her life. She is content for the moment but is planning to please herself and her mother again in the spring. This paragraph also serves as a promise to discover a new way to live and make friends. The plant is like a symbol of how she is going to change she is going to investigate and pass her own test proving she diserves to be happy and make herself feel at home. 2 2 2 +9490 4 The author concluded this paragraph in the story because it was showing that there are geese that hang around the garden around the spring time. 0 0 0 +9491 4 The author in this story explaynes how hard some changes can be. The author also explayns how family and object frome home such as the flower can be comforting. The meaning of the story is to show one of the author expierances in life. 1 1 1 +9492 4 I think the author concludes this party because he wanted to let the reader know that it wasnt it for the little girl and she wasnt going to give up on planting flower and that when the spring come and the snow had melt she was going to plant some more flower and see how they will do during the spring even though that it didnt work as well as the winter season she did let her stop her I think the author is trying to say is that if you do something and it doesnt work keep on trying maybe something different will happen. 0 0 0 +9493 4 "In the story Winter Hibiscus, the author concludes the story with, When they come back take that test again. She does this to show that she still has hope, and wont just give up. She went through a lot when she moved, and seemed to have a sense of depression in the story. after all her sadness within the story, she finally gets the energy back to tell herself, keep trying. @CAPS1 I will take that test again. (shows hope).And in the warm moist shelter of the greenhouse, Saeng broke down and wept. She is obviously upset because the plant reminds her of home. as a conclusion, I thought that it was a very wise choice to end the passage with a positive addittude. " 2 2 2 +9494 4 "I think the author ends the story with this paragraph for many reasons. One reason is because It leaves you knowing that Saeng will never give up tring. Another reason is that something as simple as a flower can encourage someone to keep going even if they have nothing to go for. Saeng says that flower is something so important, that working harder will encourage her to keep doing the best she can. The author leaves you with this sentence because it is very powerful and brings Saeng courage. " 2 1 2 +9495 4 The author concludes the story with this because she failed the test already and wanted to pass it nexttime So she doesn't make her mother dissapointed in her. 1 1 1 +9496 4 "I think what the narrator means by saying this she wants to come back when everything is beautifle again. She wants to WAIT FOR ALL OF THE SNOW TO MELT AND GEESE TO RETURN SO SHE CAN SEE ALL THE COLORS OF THE FLOURS AND IF SHE PASSES HER TEST THIS TIME, SHE WILL GET TO DRIVE PAST ALL THE FLOURS. THATS WHAT I THINK THE CHARECTER MEANS iN THiS STORY." 0 0 0 +9497 4 "The author of this story ends the story with this paragraph because it explains how Saeng will not give up, just as the hibiscus does not. Earlier in the story, it explains how the winter hibiscus does not die. In the paragraph, when it says, the snows melt, this means that the seasons will keep going, just as Saeng should keep going and trying. Also when the author says and the geese return, this means that the geese will keep coming back just as Saeng should keep trying to take the test." 2 2 2 +9498 4 "I belive the author used these lines in the last paragraph When they come back, Saeng vowed silently to herself, when the snows melt and the geese return and this hibiscus is budding then I will take that test again. @CAPS1 he realy liked it." 0 0 0 +9499 4 I think the author concludes that paragraphs to show more meaning of the story.The author could of wanted to show more details in the story. 0 0 0 +9500 4 "The author concludes the story with this paragraph because she wants to show how she will start over by retaking the test, just as the hibiscus will start over by budding new flowers. Saeng shows us how she will try to overcome the obstacles she must face, just like the hibiscus flower and geese will overcome the winter. In the story, the author makes the hibiscus represent the way to adjust to the changes in life. In a way, the winter hibiscus represents Saeng because the flower is adapting to circumstances, the circumstance being winter. Just like the hibiscus flower, Saeng must overcome her obstacles of being in a new country, and retaking her drivers exam." 2 2 2 +9501 4 "When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. is the paragraph that the author uses to conclude the story. In the my opinion the author includes this paragraph to conclude the story in order to show Saeng is committed to adjusting to her new home and to leaving her old one. For example, in the story Saeng was unable to say I mean, not like the kind we had at home. without bursting into tears. This illustrates her sorrow and inability to let go of her past." 1 2 2 +9502 4 The author could have finished the story with that paragraph for many reasons. He/she probably finished with the paragraph to show that Saeng cared about adapting to her new place and was not a failure or quiter. The author also probably finished the story this way to show that Saeng was determined for success and to make her mother happy. This is why the author finished the story with the paragraph. 1 1 1 +9503 4 "The author concludes the story with this paragraph because Saeng is given a small glimmer of hope by the winter hibiscus. The hibiscus reminds her of her homeland, Vietnam, which pleases her. Also, the fact that the hibiscus she purchases can survive winter, unlike the hibiscus of her homeland, symbolizes Saengs determination to adapt to her new country. The future of the hibiscus symbolizes Saengs survival and adaptation to her new country, which will include her retaking her driving test." 2 2 2 +9504 4 "The author concludes her story with this statement for many reasons. First the Hibiscus will be strong again when the wind stops blowing. therefore, Saeng will be strong too. Also, Saeng is giving herself time to adjust and get used to her new surroundings. She is setting a real goal for herself. Saeng is identifieng with the flower. It gives her comfort, and brings back valuable memories of the things she loved and the things that made her happy, like her home country, and her grandmother." 1 2 2 +9505 4 The author of this story concludes it with this paragraph to show Saengs determination . I say this hibiscus in the story the sees the plant and it joyed to see it and is so happy but the reminders doing her grandmother s hair she tries. She snow this as a test for herself . She want to see if she could be on and try not will on the past . When she isnt home she said I failed the test . This snows melt she want is to move on but it hasnt as easy as she hope it to be. So when the as this hibiscus the shows life this paragraph it shows that Saeng is trying to move on and she is different to a English her seal. 1 2 2 +9506 4 "In the story, I believe Saeng is sad because she misses her home and the hibiscus flower. She ends the story off well because she can now have a since of peace with herself by waiting to take the test again. I believe thats why she ended the story like she did so she doesnt leave herself worried or angry. She can turn a negative attitude into a positive one when she says she will retake the test when the geese return and hibiscus is budding." 2 1 2 +9507 4 "The author concludes with this sentence because it shows that Saeng is going to try to adapt to her new home. He lets you know that Saeng is not gonna grieve and be sad anymore, but she will adapt and continue on with her life. The author adds this: I mean, not like the kind we had @NUM1at-. This is when Saeng has just come home and talked to her mother and she is very sad because she thought about old memories at her old home, but by adding the last statement of the story it shows that Saeng has decided to move on with life and no longer be sad. She has set a goal to accept it. This is the reason for the author to conclude his story like he does." 2 2 2 +9508 4 "Many authors end their storys in different ways. But Minfong Ho ended hers with almost a saying One reason she ended her story this way was she kinda revealed what would happen to Saeng in the future. Like in the end it says I will take that test again. This lets the reader know that she, the author, might write another story about Saeng but it is when she takes the test again. A second example is showing that Saeng is strong and beautiful but will try again. This is show when the author said when the snow melts and the geese return and this hibiscus is budding. see she said this hibiscus which is referring to Saeng. Without some of these writings techniques and hints we might not know if there will be a sequal and what might happen." 2 2 2 +9509 4 "They author must have put this in the story to show change. For all giving things is we give we do e them we replemise the author. People dont think about the small damages, there nuste comrade with the big changes. The small ones count the turnig sioteero & I have to bind as for. On top of that the old anges to drive. We all go through harsh big & small, but we need to over come them all" 0 0 0 +9510 4 "This is a very important paragraph for the narrator to put in the story. For instance, Saeng is saying that her new home with her flowers is more important than school and a test. And, saeng doesnt have many friends go see at school but her hibiscus will remind her of all of her old friends she made. Saeng is simply stating to herself that once everything is back to normal or the way she wants to she it then she can take that test again. In conclusion, the narrator used this paragraph to let us know how saeng feels." 1 1 1 +9511 4 "The author concludes the story with this paragraph because it concludes, and wraps up the story. It shows the relationship between nature, adapting, and how this all calmed her down after failing the test." 1 1 1 +9512 4 The author concludes this story with a sentence like this because at the end of winter into spring the snow will melt and the trees and flowers will blosom into different colored flowers. After all the flowers had blosomed the leaves had come out and then the pollin had found the right kind of trees . At the end of @DATE2 into fall the leaves start to die and change color then the leaves will fall off. Then it snows all over again. 0 0 0 +9513 4 "The author concludes the story with the paragraph, When they come back, Saeng vowed silently to herself, in the spring, When the snows melt ant the geese return and this hibiscus is budding, then I will take the test again, because it shows That Saeng isnt going to stay down. It shows That The hibiscus will overcome winter, like Saengs mother says,'but its strong enough to make it Through the cold months here, This winter hibiscus Thats what matters. This symbolizes Saeng overcoming not only failing The drivers test, but also moving to @LOCATION1. She isnt The same as she was back home, but shes strong enough to get Through This change in her life. Also, taking The test in the spring symbolizes starting over, when everyThing is new, and she has overcome her winter. This ending paragraph is so important because it shows Saengs promise to herself That she will get past The challenges in front of her, and @CAPS1 to come. When Saeng says ...When the snows melt... it symbolizes The time in her life when her failures will become good again. She will take The test with a new out look on her life. The author concludes The story with This paragraph because it shows That Saeng isnt going to stay down." 3 3 3 +9514 4 "The author concludes the story with this paragraph. Where Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscun is budding, then I will take that test again. Minpong Ho did so because she failed the test. Saeng failed to fine the finetoothed comb, the hibiscus hedge, the well, and her gentle grandmother. Apperantly this things could be found after the snows melt and the geese reture and hibiscus is budding." 1 1 1 +9515 4 "The author concludes the story with this paragraph to show Saengs outlook on the future. It is a fitting conclusion, drawing from numerous elements in the story, and it shows how Saeng has grown. Saeng refers to When the snows melt and the geese return and this hibiscus is budding. In this phrase she shows a growing acceptance and even an affection for her new homeland. The geese are familiar to Saeng now despite her thinking of them as strange before. The hibiscus is a piece of her past, adapted to fit her current situation. Saengs vow that she will take that test again in the spring, When the snows meltetc. This shows that despite losing so much - her home, her grandmother, her way of life - Saeng is still determined to make the best of her situation. She plans on passing her driving test come spring, no matter what. The concluding paragraph is a fitting way to wrap up the story. It was how the thrends of Saengs past and her present are entwined , and displays her attitude towards the future. With its optimistic words the final paragraph nearly ties up the mood of optimism amidst regret. The authors wording was very well done." 3 3 3 +9516 4 "The author concludes the story with this paragraph because in the story it says ""I will take that test again."" So she's trying to say she will she how much she have adjusted to changes in life. In the story it also states ""when they come back"" That concludes that when the flower's come back next season. She will she how much she reminber about her homeland, her grandma and the good things." 1 1 1 +9517 4 The reason why the author concludes the story with this paragraph is because they wanted the reader to know there will be another story that will be made up. Also to show that Saeng was not happy that the snow melted and the geese return and the hibiscus was budding. 1 1 1 +9518 4 Now that she knows a lot about plants the narrator makes it seem like the girl is interested in @CAPS1.R.@CAPS1. The new world and different plants that bloom and look so beautiful in the season so the way I see it is that the girl really enjoys the plants and the characteristic to me I say she is an adventurous girl who likes to explore new worlds and see what is out there to be explained. 0 0 0 +9519 4 "The author concludes the story with that paragraph because it shows that Saeng can over come her weaknesses and succeed in her newhome. What the @CAPS1 In the spring, when the snows melt and geese return and this hibiscus is budding, then I will take that test again. It means shell try the @CAPS2 Test again try new test to make her like wheres shes at and what she can @CAPS3 from it." 1 1 1 +9520 4 "The author concludes the story with this paragraph for many reasons. The first reason is to show that Saeng is determined young girl. By vowing to take the test again, she shows she is determined and not giving up. Another reason is because the author wanted to ampasize the importance of the idea of Saeng personality." 1 1 1 +9521 4 "Minfong Ho concluded the story with this because it shows Saengs determination to pass the drivers test. The fact that she failed it made her feel bad, and brought out feelings of homesickness as did the familiar plant, but in this final paragraph she vows that she will overcome all her challenges of being in an unfimiliar place and pull herself together to accomplish her goal as did the winter hibiscus." 2 2 2 +9522 4 "The author included this sentence in the paragraph because Saeng was a very determined girl. She would keep trying till she got it right. No matter how long or hard it would be she would get it done. Just like from the picture of the Hibiscus flower next to the highway. It certainly woked out of place, but it would do anything to survive. Being strong at times when you can only depend on yourself is hard to do, but Saeng is determined from her loss and the perfection of the Hibiscus flower." 2 2 2 +9523 4 "In the concluding statement Saeng states that when they come back In the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again. The author concludes the story with this passage because she is using the hibiscus as an example of survival. The hibiscus isfrom another place like her, and she is using it to represent her well being in the new place. In a way she is saying , If the hibiscus survives this winter, than so will I. I believe she uses this as a conclusion to depict her unsure nature towards her new home." 2 3 3 +9524 4 I believe the author uses this as the last paragraph because it tells of how Saeng wants to overcome and be strong even though. She misses her home. For example Saeng believed that since she cried when she saw the hibibiscus plant she failed and she believes she will get stronger over time. 1 1 1 +9525 4 "The author concludes the story with this specific paragraph to sum up the realization and determination Saeng obtains. First of all, Saeng starts out upset after failing her test. When she sees the flower and goes to find it at a shop she is overwhelmed by this small reminder of her old home. That small flower made her realize how much she missed her old home and buying it becomes a nessesity for her. She probably felt that with that flower she would always have a little piece of home in this newer world. After realizing that memories are whats important and seeing that flowers determination to survive a cold winter, she develops the determination to take the test again. She vows to do so because she has gained faith from the flowers survival and her realization of important memories. All in all ,that ending paragraph reveals these specific messages" 3 3 3 +9526 4 The reason the author was inspired was because of the flower. The flower had the ability to survive harsh winters and adapt to and new environments. She decides that she was going to over comes its obstacles just as the flower over comes its obstacles every winter. 2 1 2 +9527 4 "Memory,promise,life-all are ideas that explain why the author concludes the story with this paragraph.Memories is one idea that helps explain why the author concludes this story with this paragraph because saeng misses her old life and country.Promise is another idea because saeng makes a vow that once spring comes again she will take the test again.Life is another idea because saeng brought the flower and planted soit can live once spring has come and she said the n she will retake the test. Memories, promise, and life help explain why the author conclude the story with this paragraph. Memories will come back in the spring along with the promises she has made and the that wants to start and saeng is doing this by pla nting the hibiscus which brings back a lot of her memories from her life" 2 2 2 +9528 4 The author concludes the story with that statement because it had gotten colder and all the plants and flowers were going to die. 0 0 0 +9529 4 Resons I think the author concludes the saying at the top. I think he concludes the becus she was vary eger on passing the test. She told her self and she vowed to take the test again when the geese return and the snow melsts. Another reson I think the author concludes this is becus she faled it the first time and it is a big thing for her and she is vary eger on passing it. That is why I think the author added this to the story. 1 1 1 +9530 4 "In the story Winter Hibiscus, Saeng had failed her drivers test and as she is walking home she spies a flower that reminds her of what once her home. She buys the flower and returns to her new home to her mother who is working in the garden. They decide to plant the flower in the garden, and when the flower was planted, a flock of geese fly over head, Saeng then realizes that everything is familier to her now, when everything was quite strange to her. She concludes the story saying when the geese come back in the spring, she will take the test again. She says that the flower will be buckling which means blooming or growing, and she will have been grown and familiar to everything then, so she will be ready for the test when the geese as ready to come home and the hibiscus is ready to bloom" 2 2 2 +9531 4 The author does this because they are comparing to the plant. The author does this because when the plant starts to bloom then the characters confidence will come back. The author concludes the story with this paragraph because it gives the story some meaning. 1 1 1 +9532 4 The Author concludes this story With the @CAPS1 paragraph to emphasize the story and make it seem more interesting as to make the reader want the story to keep going on to find out what happens next. 1 1 1 +9533 4 I think this Author put this last paragraph in this story is to show everyone how determined she is to pass this test and how much it means to her to do it so that is what I think Why the Author Would put this in the story 1 1 1 +9534 4 "The author concludes the story of paragraph with the paragraph because it show the connection of nature and the girl. The paragraph says,when the snow melts and the geese return and this hibiscus is budding, then I will take that test again(No @NUM1).In spring when all of these events take place. Spring is the sign of life and birth or renewal. The geese come back. They are renewed in a symbolic sense. When the snow melts you can see the grass again which is a sign of life. When plants bud they are born. The character decides when nature is symbolically reborn and renewed she will start again just like nature." 2 3 3 +9535 4 he concludes the sTory with his paRagRaph because he wanted To say That he was going To Take The Test again when it was not The winTeR @CAPS1 and show how saeng vowed to heRself By saying that he oR she will take The Test again when it is not winTeR because even @CAPS2 the Test was not passed in winteR and could have been passed duRing when TheRe snow melted in the gRound 1 1 1 +9536 4 "In the story the author included that concluding paragraph because if you had read the rest of the story you would know that the person was talking about when she comes back that she wanted to take the test again because it would be such nicer weather then it was the first time she took it, another reason why I believe the author added this conclusion paragraph at the very end of the novel is to show the reader if they really did understand the novel and what she was really going for in the novel. So the author first wanted to make shore the reader would understand the ending of the book better with that conclusion paragraph at the end. These are the reason why I think the author added that concluding paragraph at the very end of that novel." 0 0 0 +9537 4 Because they wanted to get it done with so they made the end like the first part of the story I like the part when the birds came back they got some of the flower come back to them. 0 0 0 +9538 4 "Saeng and her mother have to be determined to try their best in order to survive. Saeng and her mother has been thourgh a lot and when she failed the @CAPS1 test, she was more depressed than before, The author concludes this story with this paragraph to give readers the thought oF how it is to be determined to adapt and survive in a different place and though Saeng and her mother are away from their homeland they still enjoy the things they did in Vietnam, like the flowers, and the hot peppers and bitter melons, her friends disagree with the taste but it doesnt stop her from enjoying what she loves most." 2 2 2 +9539 4 "The author concludes the story with that paragraph because it shows that she will not stop trying and one day she will pass that test. She made a vowe to herself that is show determination to overcome. It @MONTH1 also make us want to read make and find out if she test her vowe and if she passed the test. For example it ends in when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibsiscus is budding, then I will return and take the test again." 2 1 2 +9540 4 The Author concluded the story like this because she had another view of Saeng. He would think that every season that she would be in a different mood @CAPS1 that the garden would change so that Saeng mom would alway be out side for every season. 0 0 0 +9541 4 "The author concludes this story with the paragraph because she is proving how something from a memory can make someone determined. For example, saeng failed her drivers test but upon reaching the hibiscus plant, it reminded her of her old home. Also, while she is planting the plant, she sees the geese with a new familiarity. This combined makes her determined to complete her test because having two reminders of both homes, it comforts her to know that she can adapt easily and treasure her memories as well." 3 2 3 +9542 4 he was saying that you should not give up and that you should keep trying like the plants in the spring time. 1 1 1 +9543 4 "The author concludes the story with that paragraph, because she is making a promise to herself to take the test again so she can pass it. She will do it when it is spring with the hibiscus is budding. She need to take the test and start driving. I think that is a good thing to when people vowed thing to themself." 1 1 1 +9544 4 He is referring to the lifestyle of Saeng and the stuff they do. And what the area is like weather wise. 0 0 0 +9545 4 The author decided to finish the story with that phrase to show that she will wait for her next year and do all this over again. She will be waiting for it and do all this over again. She will be waiting for it and prove that she can do it one more time and that she is used to live there now. 0 0 0 +9546 4 the author conclude this story like that to show a new beginning in the spring. Like how flowers bloom and bud in spring she will become a new better person. that why the author conclude the story like this. 1 1 1 +9547 4 The author concludes the story with this paragraph to show that Saeng will try the test again and get a fresh new start. Also I think that its showing the reader if you fail something the first time dont be afraid to go back and try it again. I also think that the hibiscus symbolizes her because she failed the test in the winter and doesnt like what shes in. But in the spring when the hibiscus has buds on it shes going to have a fresh start on the test and the flower will have a new environment to survive in. 1 2 2 +9548 4 "The author concluded the story with that paragraph because it leaves you to interpret and decide. It doesnt come out and tell you what the test was for or even if she passed it, thats for you to decide. It also leaves you wondering what is going to happen until then. The ending to the story can be anything you want it to be, it is up for interpretation. To different people it could mean different things." 1 1 1 +9549 4 The author ended the story with that paragraph because that paragraph says when she is going to try to take the test and make changes in her changing life. For example she is sad in the story because she failed the test and want to go home. If she passes in the spring she might try to make changes and live here. This is why the author concludes the story with that paragraph. 1 1 1 +9550 4 "The author concludes the story with this paragraph to show that Saeng is Finally comfortable with her new home. After the passage is mostly a reflection of Saengs old life, it ends this way to signify that she has become accustomed to her new way of life. For example, it says in the spring, and the geese return that shows that she is now used to the geese and the nature of her new world. The author also uses that paragraph at the end to show a sense of release. Saeng had so many memories locked inside her old life, that she couldnt grasp new ones in her new home. The authors use of this paragraph is a good way to close out the story because it lets the reader feel the relaxed scene of the birds flying away; Saeng escaping her pain and becoming a real part of her new world. " 2 3 3 +9551 4 "This last paragraph reveals something special to the reader. Saeng was given new hope winter mothers understanding and the hibiscus plant. She felt hopeless, miserable and incomparable upon seeing the hibiscus that reminded her of her homeland. When she came home, however, seeing the roots of the plant buried in the ground gave her new determination. The flower represents her. It adapted to be able to survive in cold weather, or hard times, in Saeng's case. The roots are her past and although they are buried, they are not forgotten. The actual flower represents a new life for Saeng in a new country .The author, Minfong Ho, gave personification or humanizing to non-living things to the story. This is why the author used the last paragraph then why she did." 3 2 3 +9552 4 "The author concludes the story with this paragraph inorder to show Saengs determination. It is also relating the drivers test to the hibiscus plant. It is saying that when everything else starts coming to life, she will also accomplish something. She needs the motivation of her surroundings to push her. Throughout the story, Saeng is affected by her surroundings. For example, when shes in the greenhouse, it takes her back to her childhood, It was like walking into another world. A hot, most world exploding with greenery.... Plants that she had not even realized she had known but had forgotten drew her back to into her childhood world." 2 2 2 +9553 4 "In the story ""Winter Hibiscus"" Saeng finds comfort in the plant after she failed her test. The plant reminds her of home and connects her with her past experiances. Even though she failed the test the first time she feels that if she studies and trys again she can pass. This connects to the Hibiscus because in the winter the plant dies but then come spring its pretty and blossoms again. Saeng feels a connection with the plants rebirth and feels she can start over again to and do well on the test. That is why the author includes the paragraph that Saeng vowes to take the test again when the spring comes and the hibiscus blossoms." 2 2 2 +9554 4 "The @CAPS1 why the authoR concludes the story saying, ""when they come back, Saeng vowed silently to heRselF, in the spRing, when the snows melt and the geese REtuRn and this bibiscus is budding, then I will take that test again."" The authoR ended it like that, because Saeng basically saying time will come FoR heR to take that test and she will past it with belieF in heRselF," 1 1 1 +9555 4 "The author concludes the story with this paragraph as a way to say that in due season she will take the test that she failed in the belief that the hibiscus will help her to overcome the obstacles. I believe that she she bought the plant when she failed the test, that she hope that with the blossoming of the plant, I will give her a time table as to when she is ready to try again." 1 2 2 +9556 4 "The author concludes the story with this paragraph because it is a meaningful summary of the events in the story. Everything that happed to Saeng while she was at the florizd is summed upinto something resembling vengeance. The whole reason that Saeng was sad in the first place was that she failed her driving test. In the final paragraph, she vows to take the test again when the hibiscus buds. The hibiscus that Saeng bought will begin budding in the spring, when the snows melt. The last paragraph of the story gives roem for Saeng to dealhtith her nostalgiaover the winter season. Finally, the geese that fly south make Saeng feel sad, but they light a spark within her she tells herself that she will take the driving test again when the geese return, when the hibiscus buds, and when the snows melt. " 2 2 2 +9557 4 In the last paragraph they trying to express what is coming. When winter is over spring will come which means the hibiscus will come back and it will be like home. Also the geese will return and because of that she will take the quiz again. To her its like starting all over and hopefully she will pass. Also she loves the hibiscus and seamce thats back maybe she will do so much beter. Overall a new time is coming. 1 1 1 +9558 4 "I think the author of Winter Hibiscus finished with ""when they come back, Saeng vowed silently to herself, in the spring, when the snows melt, and the geese return and this hibiscus is budding, then I will take that test again, because it is showing us the importance of the plant and how it will help her pass. It also symbolizes that when the plant buds and fights all the obstacles to survive, then she will beat the obstacles to past her driving test. For example, in the story it says ""When the snows melt and then geese return the author is relating thats to Saeng and her struggle to pass her test with these struggle in surive the winter. It also says Like the geese. She lifted her head and watched as their distinctive I was etches against the evening sky, slowly seeing into the distance. This quote is saying she will rise to her challenge, and overcome it. All in all, this quote ""when they come back, Saeng vowed silently to herself in the spring, when the snows melt and the geese return and this hibiscus is holding then I will take that test again, because it is showing the similar struggles between the flower, Saeng and the geese to overcome their challenges and finish what thing started." 3 3 3 +9559 4 "The author concludes the story with this paragraph because it has meaning. The author is saying that when these animals and living creatures get their chance she too, will get hers. For example, the geese will get to return, the hibiscus will get it's chance to bud and she will get her chance to take her drivers test. I know this because Saengs mother starts talking about how great the plant will be in the spring. She even says, But its strong enough to make it through the cold months. This indicates that the mom is trying to tell her that she will get a second chance. That is why the story ends with that sentence." 2 2 2 +9560 4 Why the author concluds the story with ths paragraph because its telling the seasons and how they change and how they come and go and they start of with a new season then its something different. An I think thats why the title of this story was called Winter Hibiscus cause after spring is winter & when it was spring they have all the nice beautiful flower thats smell good. An when spring gone its winter so all the plants had died out they not going to be the same how they used to be. 1 1 1 +9561 4 "In Winter Hibiscus, by @CAPS1 Ho, Saeng does not give up, she keeps trying. The author concludes the story with a small paragraph that has an extraordinary meaning. in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test again, by saying this, Saeng shows to never give up, to give new things a fair chance, and to always remember her homeland. The author ended the story in such an inspiring way because it strengthens the theme. There is a lot to be learned from only a few words." 2 2 2 +9562 4 "The author chose to end the story with the final paragraph for several reasons. Saeng states that she will retake her driving test in the spring. Archetypically, spring symbolizes a new start or new opportunity. Ending the story with this archetype shows that later on, Saeng has a new chance to succeed at her test and also to make the best of being in @LOCATION1 and adapt to her new life. When she buys the hibiscus plant, she remembers her old home and all the wonderful memories she has of it. The plant seems to give her hope and the last paragraph of the story mentions the hibiscus. This shows that having the hibiscus around will give her hope of passing her test and also of adjusting to @LOCATION1 while remembering her old home in Vietnam" 3 3 3 +9563 4 "The author concludes the sentence on the end to state when the plants start over growing and the geese come back, she will try again. For example, the plants have to grow their pedals back and the geese have to make their home and find food again. The author is saying she will take the test again when the geese come back and the plants grow again." 1 1 1 +9564 4 "The author wrote the paragraph because she went back in side the house to get a dinner and because aint going to see the garden until the other day and because the winter come and she will not play outside anymore until the winter goes. Like she said In the spring when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. That quotation explain why the author concludes the story with this paragraph." 0 0 0 +9565 4 I would have to say that the reason that the narrator ended with this is because it is kind of a solution if you think about it. And you dont put the solution any whereelse but the end that is why she put it there. 0 0 0 +9566 4 "The author concludes the story with this paragraph bY the author shows that Saeng is not giving up and that she found a hobby to look forward too An example the winter hibiscus was in the ground now and Saeng tamped down the soil around it overhead at lock of Canada geese flew by, That why the author cludes the story with this paragraph." 1 1 1 +9567 4 "The author ended the story with that specific quote because it shows the grasp in understanding the beauty & marvels of nature. Saeng spent a lot of money to buy a distinct flower called dok faeng-nol. Saeng was taking a driver's test a liscence but was failing it, and during her test she found that plant. Ashamed that she failed the test, she still showed her mother the flower she found, which was not like the one at home. Her mother is pleased with the flowers and understands that Saeng failed her test. Her mother said about the flower, Its flowers arent as pretty, but its strong enough to make it through the cold months here, this winter hibiscus. That what matters that was a figurative speech that there's hope for Saeng to pass her test again when she her learned more refined and is ready to try again. And with the geese flying away for the winter and coming back in the spring signifies a fresh new start at success." 2 3 3 +9568 4 The author concludes this way because when it gets warm and nice outside that they will go to take the test again cause it is to nosty outside now. 0 0 0 +9569 4 "It is actually a very powerful last statement, Even though she failed her drivers test, she has realized that she will just have to keep being strong and be patient. Soon the geese will come back and the snow will melt, and she will return to take her test and will be determined to pass. Saeng bought the hibiscus to feel as if she were back in Vietnam, and felt as if it could fill that place in her heart were she misses it. I paid nineteen dollars for it. She says it like she was disappointed in failing the test but also that saying which is free back in vietnam was so expensive in the united states. A hibiscus flower is tropical so when it blooms in the spring will be when she becomes ready to give the test a second try." 3 2 3 +9570 4 "The author concludes the story with this endding because it shows that if the plant comes back and blooms then she will go back and take the test and try to pass this time. She knows that it is going to be tough for her to come back and pass this test but she knows she can do it just like she knows that the plant will fight through the winter and come back and bloom in the spring. This gives her confidence that she can pass this test if the plant can come through the tough winter that they are going through. As a result, this is why the author ended the story with that." 2 2 2 +9571 4 "In my opinion, the author concludes the story by saying that she will retake the drivers test because not only will she take the drivers test again, but she will also be more comfortable in her life. The drivers test is not the main problem, its adapting to her new environment that is causing Saeng so much heartache. For example, in lines @NUM1 Saengs thoughts are ""A wave of loss so deep and strong stang Saengs eyes now and swept over her and in the warm moist shelter of the greenhouse, Saeng brake down and wept. This piches that Saeng is having trouble readjusting to her new life and is reminded of her old memories from where she used to live and cries because its gone. I think that failing her drivers test was just little thing that finally caused her to cry because of the stress, and when she said and this hibiscus is budding, I will take that test again. It means that she will overcome all that and move on." 3 3 3 +9572 4 It was good that the author concluded the story with this paragraph. Saeng loved the hibiscus so when spring come and the hibiscus would bloom it would be the best time to take that test again from already failing it. It would probably make her more confident to take the driving test again at the right time. So in conclusion thats why the author concludes that paragraph in the story 1 1 1 +9573 4 The author concludes the story with this because she is say that she is going to grow with the season chang. She is in a new country and just failed her drivers test. She feels down but the hibiscus reminds her of being back home. In the story @CAPS1 mother says Ive seen this kind blooming along the lake its strong enough to make it through the winter. I think that Saeng can relate to that because if the flower can make it in the winter tha she can make it in a new country. 2 2 2 +9574 4 "In the story Winter Hibiscus"", the auther finishes the story with this last paragraph, when they come back, Saeng vowed silently to herself, in the spring when the snows melt and the geese return and this hibiscus is building, then I will take that test again. The auther finishes the story with that paragraph because in the beginning, Saeng had purchased hibiscus plant because it had reminded her of her hometown. (Plants that she had not realized that she had known but had forgotten drew her back into her childhood world) So she purchased it, but since there was bad weather at the time, Saeng had to get the plant back in time and plant it in the graden. But she failed setting if there on time. That is why it says I will take that test again"". And she will take it again during the spring when the hibiscus blooms once again. That is why the auther finished the story with that paragraph." 2 2 2 +9575 4 "The author concludes the paragraph like this because it shows that she @MONTH1 not going to give up. I @MONTH1 this because she vowed silently to herself that she was going to take the test again during the spring, also, it was the aiudieres not the gains in old years seeds an ezing. In conclusion they one the reason why the author concludes the paragraph like this." 1 1 1 +9576 4 "The story Winter Hibiscus is written by Minfong Ho. The author ended the story with this excerpt, When they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test again. The reason for this is so she will have time to adjust. Saeng just needs a little comforting because all of this is new to her. This words use figurative language because the geese reminded her of herself, Almost familiar to her now. Like geese."" " 2 1 2 +9577 4 "It is all most sping like he said show melting and geese return and hibiscus is buding. Grass is growing tree are buding, @CAPS1 are singing" 0 0 0 +9578 4 "In the story Winter Hibiscus by Minfong Ho, the author concludes the story with an interesting paragraph. The paragraph says When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding then I will take that test again. ""The author ended the story with that paragraph because she was not in her comfort zone, she had move to a new country and missed everything like the flower and the Hibiscus. So she would wait until she felt at home and comfortable again to retake the test. In the text it states through the quiet repetition of season upon season, almost familiar to her now. She was realizing that it wasnt so bad & she was getting used to it." 2 2 2 +9579 4 "The author concludes the story with this paragraph, When they come back, Saeng vowed silently to herself in the spring, when the snows melt & the geese return & this hibiscus is budding, then I will take that test again, so that the audience has something to think about, it gives the story a little more of a dramatic effect." 0 0 0 +9580 4 "The author concludes the story this way to show she will be alright, and remain determined. The way she speaks of future times shows confidence that she will make it till spring. The way she speaks of the test shows her determination. The use of the word vowed shows she will follow through with her statement." 1 1 1 +9581 4 The author concluded the story with this sentence because shes letting people know that she enjoys nature more than school. 0 0 0 +9582 4 The author concludes this story with this paragraph because the flower is told about all through the story and the author puts when the hubiscius is budding then I will take that test again. 0 0 0 +9583 4 "The author concludes this story with this paragraph because she is telling us what will happen beyond the story we are reading. It means when the snow melts, shell start all over again and rebuild the greenhouse." 0 0 0 +9584 4 "I think the author concludes the story the way she did to show determination. I also believe that it symbolizes adaption, when the season changes, as will Saeng, she will take the test again. Everything will soon go back to normal and will adjust just like she will. Everything is almost familiar to her now (@NUM1)." 1 2 2 +9585 4 The author concludes with this ending because it because it gives hope. It is like a happy ending to a sad story. It is also her final thought for the story and a good end point. 1 1 1 +9586 4 The author concludes this paragraph in the story because thats when she starts growing plants again & she wants to start over again 1 1 1 +9587 4 "The author concludes the story with that paragraph because it explains that Saeng will try again once spring comes around. For example, I failed the test, (Ho) shows that saeng did fail the test, but got her mother a hibiscus to plant in her garden. Her mom feels bad about Saeng failing so she cooks her food to make her feel better and try to forget about failing. This is important because it makes saeng feel a sense of comfort and relief knowing she can take the test again in confidence." 1 2 2 +9588 4 "The author concludes the story with this paragraph because of some causes. Saeng vowed silently to herself. That shows she calm down already, she feels better with her new country. She feels the snows meet, the geese return, she says that she will take that test again. It shows one that she doesnt feel bad with the test more. She knows that she has opportunity to take it again and does it better. She has a different feeling with her problem. She looks her new country with a different eyes. All things with her become better. These are some reasons explain why the author concludes this story with this paragraph." 2 1 2 +9589 4 "The author concludes the story with When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, to show that she will try again with a new start. When she sees the flower the clerk tells her it is the hibiscus. The hibiscus brings back memories of her childhood. She then takes it home and shows the plant to her mother. Her mother replies with a You what? hearing her daughter tell her how much it is. With the hibiscus bringing something of importance she acquires more hope. By saying she will start once the flower has bloomed and the geese have returned, she means she will try again with a new and frash start." 2 1 2 +9590 4 "The author concludes the story with this paragraph to show Saengs determination despite her sadness. She misses Vietnam, but she will take the test again next year. The authors choice of words in the concluding paragraph convey a sense of hope and something to look forward to. In the story, Saeng is disapointed in herself for failing the test, but buying the plant helps her because it reminds her of home. The idea that Saeng is persistant and the hopeful tone of the story are expressed in this final paragraph." 1 2 2 +9591 4 "The author concluded the story with that particular paragraph because it appeared to be an important thought to ""Saeng"" and it was basically the main cause of everything rather the main subject of the story. She also @MONTH1 possibly have concluded the story with that particular paragraph because that was her last and final thought, or memory of her previous life / lifestyle before there present place of living.""" 0 0 0 +9592 4 "The author concludes the story with In the spring when the snow melts and the geese return and the hibiscus is budding, then I will take the test again because Saeng fails the test by spending her money on a big mac and not having enough for the type of flower her mother sent for. So since Saeng failed the test, she wants to take the test again and make her mother happy." 0 0 0 +9593 4 " I believe that author ended the story with that sentence because it give a lifting feeling after the story was so sad. Saeng missed her homeland, was sad, used the flowers as relief, sad about her driving test and realy liked the plant. So the last sentence seemed to fit in as a confort zone to make the reader a bit more relieved. " 1 1 1 +9594 4 "The author concludes the story with these final lines to create a tone of hope that creates a theme. Final lines have a great impact for the reader because it is the last thing they read. In this story, Saeng refers to the time when the shows me. Here the snow is symbolic to the sorrow she has been facing because she left home. At one point in the story, Saeng brokedown and wept! The spring is a time for archetypal rebirth. However, so the show will melt and her sorrow will go away. This creates a tone of hope for happy times in the future. Next, saeng refers to the time of the hibiscus budding. The hibiscus represents a comforting connection to her old country. She referred to the plant as yet another old friend. If the hibiscus blooms, then her new life will also because she will be comforted to the point where she feels security. This creates a tone of hope for future comfort. The times ahead she speaks of are followed by a promise to take the test again despite her failure the first time. The author is using the ??? of hope to ??? home that??? We overcome. She is showing optimism toward the spring and is willing to face a challenge. Therefore, he ???? that to make a hopeful home . ??? a life lesson of courage." 3 3 3 +9595 4 "The author of Winter Hibiscus ends the story with this paragraph because it reveals the importance of the Winter Hibiscus. In the story Saeng moves from Vietnam and feels very homesick. She fails her drivers test and is very upset. When she sees the familiar plant she is reminded of her home in Vietnam. The Winter Hibiscus reminds Saeng of fond memories with her grandmother and simple things such as her fine. Toothed buffalo-horn comb and the hibiscus hedge that would leave soft red petals in her well water. When seeing the familiar plant. Saeng felt a shock recognition so intense, it was almost visceral. This shows how important the hibiscus was to her. The author ended the story with that paragraph to show how the winter hibiscus is a comfort to Saeng and will encourage her to do better on her next drivers test." 2 2 2 +9596 4 "After reading Winter Hibiscus, I can tell that Saeng is a determined person, and likes nature. I can also tell that she is determined to pass the test. The author concludes the story with this paragraph because in the beginning of the story, Saeng fails her driving test. She walks home, and as she is walking, she comes across a familiar plant. This takes her to her childhood world. Have her not failed the test, she would have never walked home and come across the plant. The author didnt want us to forget the reason she walked home. It would have never happened." 1 1 1 +9597 4 The author concluds the story with this paragraph to show that next spring she will have anoter chane. The author shows that Saeng will relate to the blooms or the hybiscus plant and take the test again. The author does this to leave a clif haber and it shows there is more to Saengs life but it is still to come. In the story Saeng is trys to get used to change and that she is have a hard time. Her moter holes cheer her up but just like the winter comes. Saeng will Have next spring to take the divers test again. 1 2 2 +9598 4 "The author concludes the story with this paragraph ""When they come back, then I will take the test again because Saeng needs time just as the hibiscus to grow. Saeng didn't do well on a test but says she will try again after snow melts and the spring comes. After moving Saeng feels alone and wants to go back home but she feels in her heart that she can try given time. The hibiscus remines Saeng of the flower back in her home country this helps her see that she has to let go of her past and live in the now." 2 2 2 +9599 4 The author concludes the story with this paragraph because it shows saeng being mature about it and being confident knowing she can take it again. When it says saeng vowed silently to herself she thought about everything and the phrase is almost like she is going to start over. 1 1 1 +9600 4 "The author concludes the story with a sentence about retaking her test when the geese are back and the hibiscus is budding because they each represent something else. The geese represent change because they change their environment in the winter just like Saeng changes her environment by going to the plant place. The hibiscus reminds her of home because at her home there are similar plants. The hibiscus budding represents a new life just like the one Saeng has to live in a new home. Overall, the sentence that the author eras with is used to show @CAPS1 life as compared to the geese and hibiscus." 2 2 2 +9601 4 Saeng was happy when the snow was disappearing because she couldnt wait for spring to come back to see the animals running around by her garden and seeing the beautiful geese flying in after they long & hard hibernation. So Saeng was excited to see everything grown back so she is guaranteed to pass the test this time 0 0 0 +9602 4 " The author concludes the story with this paragraph because Saeng was waiting for the winter time to be over. After the winter time, Saeng going take a test again and she can plants the flower. Saeng really like this hibicus and she doesn't want it to die on winter time." 1 1 1 +9603 4 "The author concluded this story with this paragraph because she wanted show how the flower gave the little girl strength. The girl was in a new place and back at home where she is from there are alot of beautiful flowers that she loved to look at and being in a new place that doesn't have these flowers really gets her down and has her upset. She misses her home so she is hurting and the only thing that sort of comforts her a little bit are the flowers. For example, the girl says, Its-it's not a real one...I mean, not like the kind we had at..."", here she stops because she is so upset that she cant say home. The flower she has right now isn't real but when the real one blossom in the spring, seeing the flower will comfort her and give her confidence to retake the test." 2 2 2 +9604 4 "The authors conclusion explains her feels. The authors conclusion saids to me ""when the snow melts and the geese return and this hibiscus is budding, then I will take that test"" again"", what means is that she is a newoman. For example, taking the test means that she will change. Also what it means is that she ready to take on new thing. For instance, the test to her is getting ready to take on a new thing. Thats what I got from the conclusion. " 1 1 1 +9605 4 The author ends with this paragraph to show gthat Saeng had. Hope. It shows that there is still hope. The ending paragraph makes you kind of create your own ending for Saeng. I like to imagine Saeng with a big garden next to her and and she passes the test. 1 1 1 +9606 4 "I believe that the author concluded the story with this paragraph for several reasons. This final paragraph draws together and unites all the final paragraph on concluding idea. It tells us that in the spring when everything is coming to life Saeng will find the strength to take the test again. These central ideas expressed in thelast paragraph show how Saeng and her mother have adapted and that new things are started in the spring, as well as new possibilities. In the text it says, I know"", her mother said quietly. Ive seen this kind blooming along the lake. Its flower arent as pretty, but its strong enough to make it through the cold months here, this winter hibiscus. This means and represents that even though life is different here away from Saeng home they will adapt and survive in their own way." 2 2 2 +9607 4 "The author concludes the story the way she does because it shows that Saeng needs to heal from the failing of the test before she can take it again. Saeng already knows that she can heal. She realizes that she has gotten used to where she now lives, that things in her new land, like the sound of geese, are now familiar to her. The narrator of the story says, ..she realized that many of the things that she had thought of as strange before had become almost familiar to her now. Things in Saeng new home had been strange to her at first, but she had healed and gotten used to them. Saeng has also healed from leaving her original home of Vietnam. She was sad to leave her home, A work so deep and strong that it stung Saengs eyes now swept over her., but she had healed. Saeng remembers the flowers that she had known in vietnam as old friends, showing that it did not hurt her to remember them. When Saeng heals from failing her driving test, like she had healed when moving from Vietnam to the united states, she can re-visit the test, without pain." 3 3 3 +9608 4 "The author concludes the story with that paragraph because it shows the character, Saeng , was going to adapt to their new home and stay strong. I believe, when Saengs mother says, Its flowers arent as pretty, but its strong enough to make it through the cold months here, this winter hibiscus, I think Saengs mother is also sort of thinking about Saeng Its almost as if shes saying that the move here scarred Saeng but she will be strong and survive the change likes anyone who has failed a test, she will study more and try hander to pass it next time. Saeng isnt going to give up and shell keep holding on to make it through Saeng knows its hard to adjust to changes to lifes but with a little courage and hard work, it will be a breeze. If she believes in herself, shell be able to get situated in this new place." 2 3 3 +9609 4 "when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding then I will take that test again. That is in there for many reasons. One is because when winter comes and brings all the snow it kills her garden. So thats why she wants it to be spring again so she can start growing things agian in her garden. She got to take a test on the things that she is growing to make sure it is @CAPS1 for someone to eat it. Thats why I think the paragraph when the come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again." 0 0 0 +9610 4 "In the story Winter Hibiscus by Minfong Ho, the author concluded the story with an interesting paragraph. It was, When they come back, Saeng vowed silently to herself, in the spring when the snow melts and the geese return and this hibiscus is budding, then I will take the test again (@NUM1). This shows that the girl is adapting to her new country and hopes to do better in the spring. The reson the author ended the story with this paragraph is because it shows that the girl has successfully adapted to her new country and is determined to get stronger as time goes. She is saying when the hibiscus returns, she will be ready to take the test again and not fail it." 2 2 2 +9611 4 The Hibiscus is budding means that the flower was growing. That is a flower with lots of bright colors and nothing else can beat it. The reason another flower cant beat it is because that flower represents so much thing and it is one of the most natural born flowers around. 1 1 1 +9612 4 The author concluded the story with that paragraph because that was how he wanted the story to end. He wanted to end the story with her talking to herself. 0 0 0 +9613 4 "People have to adapt to different cultures if they move. They could do this in a variety of ways, including making new friends and adjusting to the area. However, when adjusting to a new area, you should still remember your past home as well. This is what Minfong Ho is trying to display in the ending paragraph of the story, ""Winter Hibiscus. In the story, a teenage girl named Saeng moved from Vietnam to the @LOCATION2 She has various rememberances of her past home while visiting a plant store. She buys a plant that was common in Vietnam and plants it in her garden. The last paragraph of the story says In the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that driving test again. This shows Saengs desire to fit in with this culture, by taking the driving test, as well as remember her past, by keeping the flower. This last paragraph summarizes Saengs emotion for her old country as well as her determination to succeed here." 2 2 2 +9614 4 Because she was promiseing herself that when spring comes back then she will take the drivers test agin. 1 1 1 +9615 4 "The author concludes with this paragraph to show her determination. When she says. when the snows melt and the geese return and his hibiscus is budding, then I will take that test again. Saeng is explaining how the geese have the determination to fly back and that the hibiscus has the determination to bud again so why shouldnt she have the determination and confidence to take the test again. Saeng said, I-I failed the test. It seems as if failing the driving test made her feel like she was going to fail in the new country. But after she saw the geeses and hibiscuss determination through harsh conditions, she was determined to try the test again." 2 2 2 +9616 4 "The author concludes this story with that paragraph to explain how she already took the test and it is now winter, she will retake the test again when all of the flowers and plants come back to life and start again. Saeng wants to take the test again to show her mother that she can pass it, she bought a plant called. dorl Faeng-noi for nineteen dollars to help her mother not be disapointed. However mother was disapointed that she spent that much money on a plant. " 1 1 1 +9617 4 "The author concludes the story with this paragraph because it shows that when she sees the things from her home and living, it will comfort her in what she does. The author seems like she needs things from her homeland that help her make the best of things and bring back good memories of earlier life. I think that whenever I want to do a good job It helps to think of the good things that mean alot to me so I will be happy and want to do good. The author is smart to want to see those things for her to retake her test because if she sees her plant doing well and sees the memory of the geese again it will be good luck for her." 2 2 2 +9618 4 "The author chooses to end the story with such a paragraph as this in order to show that Saeng has received a new burst of hope from her memories and the newly familiar things in her new home. The combination of the failed drivers test and being away from her original home caused Saeng to feel much loss. While Saeng is in the flower shop, aware of loss so deep and strong that it stung Saengs eyes now swept over her. Through the rest of the story Saeng is shown to still be down, and the reader is left unsure if she will be alright. Then her recovery begins with the presence of familiar things. The pungent small of bitter melon wafted out, and Saengs mouth watered,, The winter hibiscus was in the ground now, and, overhead a flock of Canada geese flew by, their faints honks clear and yes Familiar to Saeng now. This realization that the geese are familiar to her gives way to new realization and a new wave of hope. She recognizes the fact that she is now coming to be familiar with many of the things about her new hone that she had initially thought to be strange. This is what the final paragraph explains to the reader. It summarizes Saengs newfound hope that she will learn to not just live in her new home, but to thrive in it. " 3 3 3 +9619 4 "The auther concludes the story with this statement because it shows that to her the hibiscus symbolizes overcoming obstacles. It symbolizes this because she says...and the geese return and this is budding, I will take that test again (Ho @NUM1). This shows that even though she failed it this time when the hibiscus gets bigger she will retake the test, it shows ??? or overcoming obstacles. Also I believe that this symbolizes overcoming obstacles because it gives her strength from her old country. This shows that it symbolizes overcoming obstacles because it will help her overcome this test. It will do this by giving her strength or comforting her. From this you can tell that the author ends the story with this statement. ???..." 2 2 2 +9620 4 I believe that the author concludes the story with this paragraph because it says that Saeng is confident and is willing to go back and take the test. Saeng feels good about her self and wants to do this. 1 1 1 +9621 4 "The author concludes the story with this paragraph because Saeng was taking a test. In the story there are some quotes to support my response I-I failed the test Saeng said. This shows that she was taking a test about gardening. Another reason why the author concludes the story with this paragraph is because the story was about spring, gardening, and the life of it to them. The paragraph talks about spring, and flowers. The daughter and mother live off of the plants by planting vetagables, and fruits." 0 0 0 +9622 4 The last paragraph of the story. Winter Hibiscus by Minfong Ho is important to the story. The last paragraph leaves a definite ending so the reader knows exactly what is going to happen in the future. This paragraph is a very significant ending to the story because it represent s symbols in the story. The author concludes the hibiscus is important to her. Along with the hibiscus it also shows that the geese and the melting of the snow represent a fresh start and a new beginning . These symbols are important to her in that they give her a chance to start over and she sees that in the winter hibiscus. 2 2 2 +9623 4 Saeng was very distrout knowing that she didnt passed the test the test and to her she felt as though it was a let down or disappointment. This sentence shows the ambition and determination that Saeng has so that she will be able to pass this test. 1 1 1 +9624 4 "The author concludes the story with when they come back to show how saeng has changed throughout the plot of the story. In the beginning she refers to her new home as, walking into another world. As teenager she had to move from Vietnam where traditions are so much different than in the United States. However, there is one plant that is similar, the winter Hibiscus. The plant connects her previous life and home to the life and home she lives now. It was hard to adapt to the situation of moving, but the plant created familiar scents and the familiar fragrance which filled her lungs . It was even difficult for saeng to say the words at home without bursting into tears. Once the winter Hibiscus was in the ground it changed saeng and she realized that she needed to appreciate what she had. In conclusion, the author ended the story with that paragraph because it showed how much the plant resembled saeng and how her mind set on life was altered. " 3 2 3 +9625 4 "I feel that the author concludes the story with this phrase as a way of showing how Saeng is adopting to her new home, yet still valueing her old one. The gist of the sentence is that Saeng will take her test again in the spring, showing her perseverance. However, the sentence also shows how Saeng is coming to know her new land. She says,when the snows melt and the geese return this is important because the geese and the snow are of her now home, and she now accepts them. However, Saeng also says, when this hibiscus is budding,"" and this shows how Saeng is still thinking of her old home, because the plant is her connection to the memories of Vietnam. Therefore, I feel that the author is showing how Saeng is growing up and living with changes in her life by ending the story with this statement. " 3 2 3 +9626 4 I think that the author is saying to day is that when it is winter the hibiscus is trying to piece the cold. While must plants just die the hibiscus must face it head on 0 0 0 +9627 4 I think the author includes this because she doesnt want to leave her audience guessing about what would happen next. Then I will take the test again. This quote is saying she @MONTH1 have failed the test with the plant but she is never going to give up and that when spring comes she is going to try again. I feel as though the author added this to give a better understanding of how it feels to leave your homeland to come to a place you dont no or understand such as the flower situation in the story. When she thought about the plants and how they smelt it gave her the old feelings that she had about her homeland and how close she was with her grandmother. She was so use to plants being free and growing rather than seeing them in pots and not having the room to grow. By seeing all this got Saeng to break down and cry. In conclusion I feel as though the author added the paragraph in the end for understanding and to all so let you no that Saeng @MONTH1 be in a new place with a new culture but she will never give up on that test until she feels that she has passed it. 2 2 2 +9628 4 "The author of Winter Hibiscus purposely had that last paragraph in there. Honestly the story is better with it too. In the last paragraph when it says In the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again. @CAPS1 @NUM1. When the author write all those things in nature that will happen it symbolized re-birth and a fresh start, a new chance and that is what Saeng needs with her drivers license. The author put powerfully. Put those symbols in there to show hope for the girl to make it through her tough time. Finally, the story has a sense of roundness and end with that last paragraph, the story is complete." 2 1 2 +9629 4 "The reason I think the author concludes the story with that paragraph was because it was a good learning story you can learn something from it .The author did that so you can get a better understanding of the of the story. It said saeng .teenage girl, and her family have moved to the united states of Vietnam. So from reading that it tells me that its telling you what happen right before the story took place. So you can get a better understanding. To me its rapping it all up for you. Thats why I think the author concludes the story with the paragraph." 0 0 0 +9630 4 "I believe the author of winter Hibiscus ends the story like she did because saeng agrees to take the test again. She wants to take the test when the snow melts, the geese return and the hibiscus is budding. In other words when spring has come she will be ready for the test. Saeng states in the story its the flowers arent as pretty, but its strong enough to make it through the cold months here, thes winte hibiscus. Thats what matters. I think saeng is using this as a guiding light since she just moved from Vietnam. She plans to make it and use the plant as a symbol. She will try again for her drivers license at the start of spring." 2 1 2 +9631 4 "The author used ""when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again because its resembling that her mother is refreshing, waking, and restoring its self. And Saeng said she would retake the driving test when that happens. She was really sad she failed. I I failed the test She seemed to be embarrassed + sad. So that last paragraph does a good job describing what Saeng is going to do. She is going to look on the bright side of things and restore her self to come back and pass the test" 2 2 2 +9632 4 "I the narrator this paragraph in the story because hibiscus is a valueable plant and garden is you own decision if you like to grow things like her mother grow hot pepper. Garden is a way to @CAPS1 different like the different types of foods you can plant and the different plants in the world there eg @CAPS2, lilis, and other other plants like that." 0 0 0 +9633 4 "The author ends the story with that paragraph because she is trying to overcome an obstacle. Failing the drivers test was a set back for Saeng so she plans to take it again. She plans to use the hibiscus as motivation, because the winter for the hibiscus is like overcoming an obstacle." 1 1 1 +9634 4 Why I think the author concludes the story with this paragraph is because I think its showing how much it actually means to her and shows that she does actually care And by showing that she care's will take the test again. 1 1 1 +9635 4 She ends the story with that paragraph because she wants to let everyone know she feels most comfortable in the spring. It also states that she can not wait for the geese and the hibiscus to start budding because it is her favorite time of the year. 1 1 1 +9636 4 "Saeng is not comftorable in her sorryndings, and has not addapted to the changes from where she moved. She finds the hibiscus and choses to go buy it, because it reminds of her home in @LOCATION2. When she brings it home her mother seems shocked at first by the price saeng had paid, but is then more sympathetic when she realizes she misses @LOCATION2. Sheang says she is going to retake her test in the spring. She is also implying that she is going to change her attitude about living in @LOCATION1." 2 1 2 +9637 4 I think the author concludes that in the story becaue he is saying when the geese is coming back. 0 0 0 +9638 4 "The author concludes that because she wants to show that Saeng was not giving up. I say this because she moved to, a place where she didnt like and knew No one. The author is trying to tell us no matter what dont give up, have faith. At the end Saeng has faith in herself that she can past the test next time. She @MONTH1 have realized that just because your at place you dont want to, it doesnt mean you cant go on." 1 2 2 +9639 4 "The author concludes the story like that to give the reader the idea that you cant just quit if you fail. When Saeng said that when spring comes around I will return and take the test again, that shows that she will not quit and life will go on. Thats why I think the author chose to conclude the story like that." 1 1 1 +9640 4 "I think That The author concludes the story with This paragraph to show that she does not want to give up on fighting her homesickness. The first time she bought that plant, it brought back memories of her old home and it showed how much she missed it there. By saying shell do the test again shows that she doesnt want to let ths defeat her in her new home and her new life." 2 1 2 +9641 4 "The author concludes saeng vow in the story to show that saeng can and does have the ability to overcome obstacle. Saeng feels like she is a failer. Her hibiscus represents courage to overcome her obstacle which is her driving test that she failed. The geese represent survial and to never give up, to keep trying your hardest to success." 2 1 2 +9642 4 "The author concludes the story with this because the girl in the story is almost like the flower itself. Just as the flower will blossom, Saeng will take the test again, both receive a fresh start on things. Finishing the story this way left the reader feeling positive, it was a short ending but one with a lot of meaning. ...and this hibiscus is budding, then I will take that test again. I think the last sentence is almost inspirational and it makes you want to start out fresh as well as Saeng." 1 2 2 +9643 4 "The author ends the story with When they come back, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again For many good reasons. Some reasons are, that she will keep moving on and adapting to her new life in Canada. She is going to change her way of life and try to fit in with her new culture. She is also going to have to relive the memory of her grandmother again and wants to handle it better. A wave of loss so deep and strong that it stung Saengs eye now swept over her. She wants to be able to handle the loss better. The author wants to emphasize that the story is not yet over. " 2 2 2 +9644 4 "There are many reasons the narrator could have ended with this paragraph. One reason it's the start of the winter so hibiscus won't return until spring. Also, its the end of the story so its a good way to end it because its the ending of the hibiscus and the ending of the story. The last paragraph also kind of summarizes up the story and its short and sweet. Which makes it a great ending to the story. Its not like most endings to a story so its unique. Because most stories arent about nature. In conclusion, there are many reasons the narrator could have choose to end the story with this paragraph." 0 0 0 +9645 4 "The author concludes the story with his paragraph to show how people can regain their determination. In the beginning of the story, Saeng is disheartened after failing her driving test. When she sees the Hibiscus, she is filled with memories of the past and weeps. Her mother's kindness causes Saeng to draw strength from the flower, which, as her mother says, is ""strong enough to make it through the cold months here."" @CAPS1 that the Hibiscus will bud in the spring, Saeng renews her determination to pass the test. " 2 2 2 +9646 4 The author ends with this response because he is trying to say that Saeng will repeat her self but this time more helpful in the garden and her mother.Try harder with her school work and less focusing on gardening. 0 0 0 +9647 4 "Saeng's peRsonality in this stoRy shows deteRmination and confident. I think she feels that she could do moRe experienced things on different plants. I also think this is a peRfect hobby experience foR someone who loves Plants. I feel that Saeng @MONTH1 have accomplished heR goals of planting. I think she @MONTH1 want to puRsue heR career in gaRdenning. When she stated that when the plants come back aRound, she would take the test again. I think she means that, she is willing to exploRe more plants. I think she @MONTH1 have got this experience of planting fRom heR motheR. To me this @MONTH1 have been a family tradition. Saeng will pRobably have kids and teach them about different types of floweRs." 1 1 1 +9648 4 "The author ended the story with the paragraph in order to show that Saeng is looking forward into her life and with a positive outlook. It shows that she is not going to be depressed by the change in her life anymore. The hibiscus is used as a device for this storys plot. When changes happen with the hibiscus, changes happen in the story. At first, Saeng is without the hibiscus and feels hopeless. When she sees it, she remembers her past and is sad. Once she plans it, things start to look up. She begins to accept the change when the last paragraph says, when they come back... and this hibiscus is budding, then I will take that test again it shows that Saeng is looking at her future positively, and with this positive change, the hibiscus is now beginning to bloom. The author concludes the story in a symbolic way that helps express the storys themes." 3 2 3 +9649 4 "The author concludes the story with this paragraph Saeng vowed silently to herself because she Saeng wants to do in proper time and season. winter season, the land or soil was so cold that plants was not able to grow properly. Hibiscus costs nineteen dollars, and she Saeng failed the test. There was frail, wiry beauty to her Saeng mother that touched Saeng deeply, she Saeng mother is shining when she worked to plants. These all are the description that concludes in the past which want to make correction and shine like her mother and also to pass the test. " 1 1 1 +9650 4 "At the end of the short start Winter Hibiscus, Saeng says when they comeback, in the spring, when the snow melts and the geese return and the hibiscus is budding then I will take that test again."" When she says this she is refering to her drivers test she says she will take the test again because she is reminded that her family didnt give up they moved to @LOCATION1 for a fresh start plant she had forgotten drew her back to her childhood world. She sees these flowers after failing which reminds her that she never given up before. So she wont now other. " 2 2 2 +9651 4 "The author is trying to convey a sense of hope for Saeng in her new country. After noting that she failed her test, which is probably a citizenship test, the author wants to conclude the story with something that reasures the reader. It is obvious that this test was important because Saeng could not even look her mother in the eye. This was probably why she bought the flower for her mother. The ending reasures the reader so that you dont wonder how it will workout for Saeng." 1 1 1 +9652 4 "The author concludes the story with this paragraph because to tell us that she will try and find that flower to bring back memories of her old home. To show us that they will be caming back again it will survive even though its not from where she wanted it to be from. In the story it says, I I failed the test, meaning saeng had bought the hibiscus that wasn it real or what she thought was not what she wanted to be. In the last paragraph she says she will take that test again. Saying she will find winter hibiscus that is how it use to be in the homeland. Shes hoping they survive and hoping she finds a flower like it because in that last paragraph it says ,saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding ,then I will take that test again, meaning she hopes and prays she will find one like her old homeland. " 0 0 0 +9653 4 The Author was trying to end the story quick thats why he ended it with this one. 0 0 0 +9654 4 When spring comes and all the snow melts then she is going to plant newseeds. The author concludes that because she didnt do good on the test the first time. But next year she is going to work with her plants then take the test again so she can pass it. The author put that in the conclusion because he dont want people to think that she just worries about the plants. 1 1 1 +9655 4 "In the story ""Winter Hibiscus"" is about this girl named Saeng and her mother and grandmother. Flowers are beauitful to them they plant them all day. Picking them, @CAPS1 them. Saeng did not dare look her mother in the eye " 0 0 0 +9656 4 The author concludes the story with the saying because it shows that she has confent in her self because she did not pass the test she could take it again and know she can pass the test she was up set about it her mother when she talk to her made her feel good and confent to do or retake the test and know she could pass the test so that why I think the author concludes it with that saying at the end of the story. 1 1 1 +9657 4 "This paragraph means when winter is over and the geese come back from the south, and she favorite plant comes back that used to be in her old country, she will try what she was trying to do before but this time she has more confidence. This is what I think this means." 1 1 1 +9658 4 "The author concludes the story with this paragraph because it sums everything up and solves the conflict of her failing her driver's test. When Saeng said "" I will take that test again"" it showed that she is determined to pass the tes and will try again. Since the conflict is solved there you pretty much have to introduce a new conflict to keep the story going so the author just ends it. This excerpt from the last paragraph also incorporates Saeng difficultly to that geese because just as geese faces hardships getting her driver lisense. But also like the geese she will go back her face hardships again. " 1 2 2 +9659 4 In the story Winter Hibiscus by Minfong Ho the author ends the story in a well mannered carhoined. The author ended with that paragraph to show that Saeng was not going to persuade even though for away from home. She is in a down was spiral at the beginning of the story she had failed a test and the hibiscus test her feeling nostalgic. When she got home her mother greeted her with kinds words kind of acting as an anti-depressent by making her food will not peppers and bitter melons. This kind of made Saeng see the good in life causing her not to give up and be confident that she will pass the test. 3 2 3 +9660 4 "Well in the story, Saeng fails her driving test. When she is walking home she sees a familar plant, she then goes to a flourist and finds out the plant is called a hibiscus. She then buys the plant with the little money she has because it reminds her of her homeland and childhood. It also reminds her of her grandmother who she left behind so now she is connected to the plant. Also she sees geese fly over head heading south for the winter, so she says When they come back, so she means when the geese fly north for @DATE1. And when the snow melts"" so when it becomes warmer and starts spring. When this hibiscus is budding, so when spring comes and the plant starts to bloom she will take that test again"" so she says she will take the driving test that she failed when spring comes. She gives herself the winter to practice and get ready for the test . She vows to herself that come spring she will be ready to take the test and this time she will pass." 2 2 2 +9661 4 "She said this too show the determination it takes to make it no matter how many times you fail you need to get back up and try again. She displays her courage in this way also, it takes alot for someone to fail something and to get back up and try again on it. She isnt willing to accept failure, and she's trying to redeem her failure so she says she'll try again. That is why she ended the story that way." 1 1 1 +9662 4 The author concludes the story with this paragraph. I think the author did this so that people who read the story will know what she is gonna do next spring and they might make out another storie in so that you will know that she will take the test in the spring. 1 1 1 +9663 4 "In the story winter hibiscus the author concludes the story with that paragraph because when the winter hits and the plant she likes will disappear and the flower gave her good luck so she said when the snow melt in the spring and the geese return and this hibiscus is budding, then I will take that test again. The flower was very important to her. She said, that rich, sweet scent that was familiar too. She was talking about the flowers smell compares to her grand mothers shell, it was the same." 2 1 2 +9664 4 The author concludes the story like this because she is going to come back and do the samething next year. 0 0 0 +9665 4 The author concludes the story with that because she want's to retake the test. Because she wants to pass the test for her mother. So she brought home the flower to apologize to her mother. 1 1 1 +9666 4 "The author concludes the story with this paragraph because everything in the story will repeat such as the season changes and you will not be able to plant nor grow in the winter. For example she talked about how the plants are nothing like her home, but she has to adapt to the fact shes not home, & adjust to her environment. I say this because if she doesnt she will just be an unhappen person worrying about where she came from." 1 1 1 +9667 4 "The author concludes the response by saying that when spring comes and the hibiscus is budding she will take the test again. because I think she feels hope and faith. I say this because the girl just moved away from her home and feels horribly lonesome and deppresed because she wants to go home. She I nostalgic for her past and when she sees the plant it gives her a sense of comfort like she is home. When she says In the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again. I think she says this because she is upset because she failed her test and the plant gives her a sense of comfort which gives her faith and hope that she will pass the test in spring." 2 2 2 +9668 4 when they come back Saeng vowed silently to herself In the spring when the snows melts and the geese return and this hibicus budding then I will take that test again 1 1 1 +9669 4 "In @CAPS1 Hibiscus by @PERSON1, the author choose the last paragraph because it matched the tone, the hope and the representation of the essay. The tone of the story is more of a depress ful mood because she failed the drivers test so she is very upset. He memories of her old country start to get to her when she sees the winter hibiscus. And in the warm moist shelter of the greenhouse, Saeng broke down and wept. She misses Vietnam very much and seeing this plant in this store gives her like flash backs. The winter starts to give her the feels all hope is lost. almost reluctantly, she realized that many of the things that she had thought of as strange before had become through the quiet repetition of season upon season, almost familiar to her now. To her the strange things are starting to feel the same year by year no new hope, no new anything just the same old thing day by day. This plant really starts to tear her apart just purly from the representation. She found that she was still to shakey to say the word at home, lest she burst into tews again. She cant say home because home isnt hers in the United States but in Vietnam. This winter hibiscus gives Saeng an explosion of emence emotions all having to deal with her past sr the last paragraph is more giving to how when her hope returns in spring she will just try again. Tone, hope, and representation all support the last paragraph so thats why it fits when it does" 3 3 3 +9670 4 "This was a very interesting story and it snowed all the hardships this young girl has gone through, the author ended it in a very interesting way. When they ended the story I thought to myself how nice it ended. If think the author did a very nice job. She made it so that she snowed all the hard ships that Saeng had gone through, as if they were the harsh winter. Then as the author said, as the snow melts away;,I think this shows how even though Saeng problems seem never ending and harsh, that one day they will be gone and things will become beautiful again, like the flower budding. In the spring time. Also she did a nice job because throughout the story I could feel her pain. I felt as if I was there with her because of her use of descriptive words like, exploding, shock ,intense and others to describe how much of a sudden was everything was. Then when she ended it, it was like she was showing us Saengs hope for a better future, even though things arent the way they were back home!" 2 3 3 +9671 4 "The author concludes the story with the paragraph - when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again. (@NUM1) because she feels that when the hibiscus blooms she can too bloom by passing the test. Also Saeng is relating herself to the hibiscus. Its flower arnt as pretty, but its strong enough to make it throu in here, this winter hibiscus. (@NUM1) Her mother is trying to tell her she can be strong also. She too can make it through the cold months. like the geese she lifted her head and watched as their distinctive V was etered against the evening sky, slowly fading into the distance. (@NUM1) Just like the geese Saeng is realizing to be proud of herself and there will be other chances. Dont always doubt yourself becase they will be other chances. Dont be afraid to try again." 2 2 2 +9672 4 The author concludes the story with this paragraph because she means she will go back after winter to take care of it. The author puts this at the ending paragraph because he is telling how much she cares about this plant cause she takes care of it because it reminds her of her hometown. So that is the reason she takes such good care of it so she will have something with her to remind her of her home. 1 1 1 +9674 4 "The author concludes the story with the paragraph about the geese because it shows how Saeng, like the geese, will adopt to her new environment. It shows that she will do what needs to be done in order to survive just like the geese have to do. She will take the test again and will not give up. The paragraph shows how she wants to adapt to the new country. For example, the narration states, she noticed the tearstains on her daughters cheeks and her puffy eyes[No]. This example shows how Saeng is not used to being in the new country and that she does not like it. However, she will get used to it and do her best to do so, as shown in the closing paragraph. Also, the narration states, she admitted to herself, she much preferred it to a Big Mac[Ho]. This proves how even though she @MONTH1 not like things at times, Saeng is willing to try them to get used to the new country. The narration states, she realized that many of the things that she had thought of as strange before had become familiar to her now [@NUM1].Saeng is getting more and more used to her surrounding and is adopting to them, just like the geese adapt, which is the reason the author ended the story with the paragraph about geese." 3 3 3 +9675 4 The reason why the author wrote the conclusion paragraph was to show that Saeng is looking forward to a brighter future. Saeng is hoping to see the geese once more that remind her of her homeland and that see wants to pass the driving. In this story I feel as though Saeng is a very sentimental person and so that is why I think that is reason the author wrote the conclusion paragraph. 1 1 1 +9676 4 He author concludes this paragraph in this story because It sounds good and to show the people he is writing it to that no matter what happend s to you in life you should Just keep on doing what you think is best for you. Just like the flower she keeps coming back for more after going through all thats tuff. 1 1 1 +9677 4 "The author concludes the story with that paragraph for a reason. The hibiscus reminds her of Vietnam. The geese remind her of her home now. These two things make her strong. Therefore, she will take the test when they return. She thinks she can pass the test when the flower and the geese are in her life." 1 1 1 +9678 4 The author concludes the story with this paragraph because it shows that Saeng is starting to take responsibility for her school work now. For example in the story she made it obvious she cared more about the garden then school. 0 0 0 +9679 4 Saeng was talking about testing the plants seeing if the geese liked where she planted them. I know this because she mensioned geese in the last paragraph and in the geese said yes| when she planted the hibiscus. 0 0 0 +9680 4 The author concludes the story with this paragraph because the story was mostly talking about the hibiscus. Saeng was saying that when its spring and this hibiscus is budding then she will take the test again. The hibiscus reminded her of her homeland in the past. 1 1 1 +9681 4 I think the author concludes the story with that paragraph because at the end is talking of a new begining. Also what its going to be at the new begining she says that she is going to take the test again. 1 1 1 +9682 4 "The author concludes the story with that paragraph because she has a better state of mind because she found a flower that reminds her of homeland. She is afraid that her parents are going to be mad at for not passing the test, therefore she buys a flower that she sees for it remind. When she gets home and telling her mom how much she paid for the flower and how she didnt pass, mother is upset for only a second, then she is understanding of what her daughter is going throgh. By the end of the story she has more confidence that she will succeed next time." 2 2 2 +9683 4 "Minfong tto ended the story with aphrase dialogue because it was about the main topic of the story. Saeng was to buy a plant and bring it home, but when she did so, her mother did not approve. The narrative states ""You what?"" Her mother stared at her incredulously""(Ho ). When her mothesaid this, it showed that she was displeased. The narrative states, ""I-I failed the test""(Ho). Saeng was not proud to displease her parents in any way. By saying, ""When hey come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then i will take that test again""(Ho), the author is just showing Saeng's love and want to grow foe her parents; it shows maturity. " 2 2 2 +9684 4 "The author concludes the story with this paragraph to tell the reader that Saeng is going to take the test again. The author wants to tell the reader because she fail the test she know what she did wrong and shes going to correct. For example when Saeng said, then I will take that test again. Saeng feel sorry she fail a simple test so she wants to retake the test when the snow melts." 1 1 1 +9685 4 "The author concludes the story with this paragraph because the plant wasent budding and the geese are going away and then see failed the test because all that made her sad. But when the snow melts, the geese return and the plant starts budding she will be happy again and she will take the test agian and she will pass because she is happy." 1 1 1 +9686 4 The author concludes the story this way for many reasons. One reason is to show Saeng is not going to give up and keep trying to pass her test. Another way is to show that even though your life has changed that dont mean that you have to give up. These are some of the way that the author concludes the story like he does. 1 1 1 +9687 4 "I think the author concluded the story with this paragraph because they wanted to show that she is comited to her nature especially to The hibiscus. She thought that the hibiscus was special because of what she did with it. Like when they said she reached out and touched petal gently. It felt smooth and cool, with a hint of velet toward the centre. And thats why I think the author concluded the story with this paragraph. " 1 1 1 +9688 4 "I think that the author concludes the story with this paragraph is because Saeng feels like that will be the right time to take over her driving test over and when the hibiscus is budding. And another reason would be because the authors wants to show her determination," 1 1 1 +9689 4 "She vowed this paragraph because she wanted to make her mother proud by passing the test after she had failed it, but she waits for the plant to go through and start budding. The hibiscus buddy is like a new start so it makes it through winter and it will pass the test and then Saeng will be able to pass as well because she knows a tropick plant was able to survive a harsh winter then she can survive / pass the test the next spring." 1 2 2 +9690 4 Why I think the auther concludes the last paragraph in the story because it's kind of like a moral to the story. Shes trying to say that when the time is right she will try it again untill she gets it right. Without this last paragraph you wouldn't be able to understand the message of the story. 0 0 0 +9691 4 Saeng is a very helpful young lady to her mom she makes things the author made that the ending sentence to make the story more intresting for the read ond to keep thom heoked to the end 0 0 0 +9692 4 The authoR concludes the stoRy with that sentence b/c she wanted to explain to you that she will do this again when the hibiscus is back in season. 1 1 1 +9693 4 "I guess she says this because she only wants to take the test when she is confetebel around the flowers, plants, and greens" 1 1 1 +9694 4 I think that the author concludes the story with this paragraph because it says when the snows melt and the geese return and this hibiscus is budding then I will take the test again which means that when she gets older and gets more confidence then she will blossom and get to take the test when she is ready just like the hibiscus will be ready to start to budding again. 1 1 1 +9695 4 The Author ends the story off with that paragraph because when dealing with flowers and nature. Then are seasons when the flowers dont come up like winter for example. The paragraph is saying in the spring when the winter is over she tells her self that she will look forward to seeing all the plant that nature has to give. 0 0 0 +9696 4 I believe he used this as the ending to ensure that she was strong and she would do whatever it took to perservere. 0 0 0 +9697 4 The author includes this sentence in the paragraph because its the start of a new beginning. 1 1 1 +9698 4 "In the story the author concludes with When they come back, Saeng vowed silently to herself in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. I think she did that to say that you shouldnt give up. In the story Saeng goes to the store and touched a petal. She buys the plant in an attempt to get a reminder of her old home. In this way it seems Saeng is willing to give up her memories of her past. When she brings home the plant and her mom and her plant it in the garden. I think Saeng is trying to make her new home like her old." 2 2 2 +9699 4 "The author, Minfong Ho, concludes the story with Saeng vowing to take the test in the spring when the geese return, the snow melts, and the hibiscus is budding. This is done to symbolize the many things that Saeng learnt. For example, she learnt she has to adjust to changes in her life and becoming familiar to the new things. The geese and snow she admits are the things that were strange before [and] had become familiar to her now. The hibiscus also represents something and has a reason for being included in the last paragraph. It represents the ability to overcome obstacles, connection to the past, and comfort when needed. The last paragraph symbolizes many things, and if you look into it deeply, you will learn what Saeng learnt." 2 2 2 +9700 4 "The author ends the story with Saeng vowing to herself the relationship between passing and driving test and the significance of the hibiscus flower. The flower is linked to the way things used to be for her in Vietnam. For example, hibiscus in @LOCATION3 was Madagascar periwinkle in Vietnam. It also symbolizes how the flower adapts to its surrounding when taken from a different country in accordance to Saeng adjusting to life in @LOCATION3. The reason she said when spring comes she will take the test again symbolizes that connection of the flower to the way she lives now. For instance, her ability and determination that when that flower buds she will overcome obsticles. Another is a connection of her past experiences. And it was a sense of comforting to her after she failed her driving test. The author linked the flowers significance to the ending of the story showing the hope and dedication to Saeng and the obstacles she passes to get where she is today." 2 2 2 +9701 4 "The reason why I belive the author concluded the story like that, is because, she is going going to aways start over. For instants in the story she said II failed the test. From that known she throught she was going to give up. So that is why I belive he ended the story with that line" 1 1 1 +9702 4 The author concluded the story with that paragraph because the author is trying to say that Saeng is going to start all over again just like the hibiscus would. Even though you go through bad times in your life just step and do it over again until it becomes better. The author also concluded the story with that paragraph because the paragraph pretty much starts the story all over again that like Saeng was going do. 2 2 2 +9703 4 She means that when she return she is going to do the same thing again and see if she will do better or not. 0 0 0 +9704 4 "Saeng vowed siletly to herself ""in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"" because her mind went of the track from think about a flower. She says "" One of the blossoms had fallen off"" then carefully Saeng picked it up and smelled it. it happ distracted her mind. Her promisreaction from tailing was silentess for a long moment and didn't say nothing. Her never got mad. All she did was brushing the fragments of green off Saeng's hands. Her mother was mainly thinking about the plants as the day went, Saeng dug out a hole and carefully lowered the 'winter hibiscus"" into it. Seeing her mother caused a reaction of ideas, so trying to etch a image of geese. She sent a goat to retake the driving test again as she was getting use to her new. The intro says ""Saeng, a teenage girl and her family have moved to the United States from Vietnam. it never mentioned about her family""" 1 1 1 +9705 4 "The author included this paragraph to show how much the girl missed Vietnam. When the girl saw the hibiscus it brought back memories of Vietnam. Seeing the hibiscus allows her to find comfort. So the paragraph is there to show how the United States is different from Vietnam. Since the United States has changing seasons it allows the girl to get use to the United States. The plant will always be there, but she has to look for the good that United States provides. The author states, Almost reluctantly, she realized that many of the things she had thought of as strange before had become, through the quiet repetition of season upon season, almost familiar to her now. This quote shows how the girl was getting use to the United States. How she will always remember Vietnam, and finds things in the United States that remind her of Vietnam. In conclusion, the paragraph is used to show how much the girl missed Vietnam, but how she finds comfort within the United States." 1 2 2 +9706 4 Thes basically say that he will be around again just like the geese always come back. 0 0 0 +9707 4 "The author concludes the story with this paragraph for several reasons. One being that she is still uncomfor table about talking about her old home She was still to make to say the words at home [HO] so the snow melting the geese returning, and the hibiscus budding. Second remind her of her home. We know this because Saeng says Just as she known it would feel Back home it Just grow wild just at from the cracks in the brick walls or between tiled roofs [HO].So with reminder of her home she is give both comfort and confidence. The author therefore concluded with this paragraph because since the geese, hibiscus, and the snow melting remind her of her home, that is when she will take the test again, w hen she is confident and strong. " 2 1 2 +9708 4 "By adding this paragraph to the end of the story, it show that a resolution was made and that the theme of overcoming obstacles is present in the story. When Saeng failed the test, she was miserable and heartbroken however, after buying the hibiscus, she had found hope and motivation and decides, in the end, that she will take the test again, in the spring, when the snow melt, and the geese return and this hibiscus is budding. This hope at the end of the story helps put the reader at ease when they wonder what might happen next. Its to help move the story to a conclusion. This is why most endings are meaningful like this. Readers are able to abtein the message as the story from paragraphs like this. In this case, the authors message was to never give up and that people find motivation in simple things. It is important to know what a author is trying to tell the reader through paragraphs as not only a reader trying to understand the purpose of a story, but also as a writer trying to express their ideas clearly to an audience." 2 2 2 +9709 4 "I think that the author uses this quote, when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and the hibiscus is buding, then I will take the test again. @CAPS1 it symbolizes that spring brings new life and hope. But where was the home thought come? The hibiscus hedge? The way her gentle grandmother? BOAT RIDE into the night and it was gone. @CAPS2 from Vietnam to @LOCATION2. one night she had so much hope, like, abundance, then the next she is in foreign land that is nothing like her old home. The flowers bloom in the spring bringing new life. There is a chance to move on @CAPS1 there is hope. There is hope that spring will come, flowers will come birds will come. It is a chance to let go. The ending quote was said to bring hope and like to her and she sort of promises to herself that it will get better. Hope is what makes every obstacle to get over easier and everything to be bearable. " 3 3 3 +9710 4 "The author concludes the story with this paragraph to show that the hibiscus is a symbol for Saeng. In the sping time the hibiscus grows just like Saeng. When Saeng got to the new place she was small and peuney just like the plant. Its leaves quavering in the wind"" (@NUM1). This quote tells us the the plant was weak a peuney. If the plant was strong it would not be quivering. The fact that Saeng brokedown and bought the plant tells us she was not strong. And at the end the author uses that paragraph to tell the reader that the hibiscus is strong and so is Saeng and the can over come anything." 2 2 2 +9711 4 "The author concludes the story this way to show Saeng does not give up and is determined to pass the test. The narration says Not like the kind we had @NUM1]. Saeng feels very strongly about her old home and wants hibiscus just like her and her grandmother used to have. Because Saeng would not bring back the same kind of hibiscus, she is sad and determined to get another one. The text also states, and the hibiscus is budding then I will take the test @NUM2]. This also shows she is determined because even though she failed the test once she is going it to try again. She misses her home and wants hibiscus just like she had at her old home. " 2 2 2 +9712 4 In this story the reason that the author concludes things this way is to pick a tone that feel comfortable to test again. The person who will take the test again my have picked the tone with relation to her past which she takes the time to prepare herself and maybe that is something her parents or grandparents taught her. 1 1 1 +9713 4 "The author concluded this because she thinks this is the right time to re take the test. She adds this because the snow is melted, the hibiscus is budding, and the geese return is a perfect time because everything is back and warm. She says ""when they come back...then I will take the test again. means she will have all confidence to take the test. Saeng voweds to take it again and she will and she thinks this time she will pass. That's what theauthor concludes this to the story." 1 1 1 +9714 4 "The Author concludes the story with this paragraph to show the hope and the meaning of the hibiscus to Saeng. The author also ends the story like that because spring is a time for new beginings and where everything comes back to life and starts to regrow so to say that when the snow melts and geese return. ""Its. saying its the right time for a secnd chance. I.t failed the test Saeng said.....She tore off a leaf shruddy it to pests. that shows the dying of the hope she had or the hybisus symbolized it. So thats why the author ended it like that b/c it shows new heqionqrys." 2 1 2 +9715 4 "The author concludes the story, Winter Hibiscus, with the strong paragraph of one sentence starting that Saeng will take the test when the geese return and the hibiscus is budding. This sentence leaves the reader in suspense while incorporating the main point of the story and combining them to express an idea about what might happen in a continuation on the future of @CAPS1 and this story. After all, the reason Saeng had bought the hibiscus was to comfort her mother and her-self. While she stood watching the geese, the author chose this moment to express Saengs feelings to stay determined and take the test. In the end, the author concluded the story with a string sentence which not only summerized the story, but left a cliff hangs." 3 2 3 +9716 4 "When they come back, Saeng vowed silently to herself ,in the spring ,when snows melt and geese return and this hibiscus is budding ,then I will take the test again . The author concludes the story with this paragraph because this makes you think about the story after your done reading it." 0 0 0 +9717 4 "In many stories the narrator uses a dramatic yet conclusive statement to end the story. An example of one such occurrence is in the short story Winter Hibiscus. In the story the young girl finishes of by telling us when she will be taking her test again, although not directly to us as it says Saeng vowed silently to herself but it still informs the reader. The reason the author includes this last vowe is to inform not only the reader of the future but to show the girls determination and spiritual connection with the plant. For example, when it says and this hibiscus is budding its showing the girls connection with the plant because of the comfort and canfidence it given her, ecpecially since she needs to take the test. In conclusion the narrator concluded the story with the paragraph to show future events and to illustrate the spiritual connection the girl was with her the flower and the homeland." 2 2 2 +9718 4 "In the story, at the end of the last paragraph the author wrote that why they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again (last paragraph). The author concludes the story with this paragraph because he wants to mention that Saeng is a student and she had failed a test. Even though Saeng is so interest in flowers she also cares about her school too. When the snows melt Saeng will take the test just like the hibiscus is budding and starting to blossome." 1 1 1 +9719 4 "After they come Saeng was silently to herself , In the spring , when the snows melt and the geese return and the hibiscus is Saeng then I am take that test again. She say this sentence she is herself back to home .She thinks it familiar to Saeng was. She is herself how quiet it vowed to so every season . Her live is very quiet and leavy . She feels as of place . Due to failing her driving test things herself was thing for her to united state was so different from vietnam and she expresses her feelings will she talk a about this something flower. " 1 1 1 +9720 4 The author conclude the story with this paragraph because the author wants to remind the reader and summarize the story. The way she wants to summarize is how the story started with Saeng failing the test to how the story endend with saeng planting the hibiscus in the winter. The author wants to remind the reader about the whole story. 1 1 1 +9721 4 He concludes this story like that so you dont feel as if she was defeated. She is now more aware or believes she can complete the task. Also she has more selfconcious in herself because of the flower and now it reminds her of her home. 1 1 1 +9722 4 "The auther concluded the story with this because just like the flower it will come back a new, and so will she. The flower represents determination, using the flower to show her own determination. Even though she failed her drivers test she still has determination to take it, and try to pass again. Even with failur she is determained to get over it. Just like the flower losing its buds in the winter and growing them back. Saeng is frogeting her failure and coming back a new." 2 2 2 +9723 4 "The author uses this paragraph as a symbol of realization, and new beginnig for Saeng. She spent so much time missing the past, that she didnt know how to enjoy the present, which theme-wise the author is saying live in the moment. The hibiscus represents strength, as her mother said,""It's strong enough to make it through the winter months,... thats what matters. the author is say ultimately that tough times are irevitable, so hold on to the moments that make you smile, for they will help you perservere through the times that are tough." 3 2 3 +9724 4 In the story winter Hibiscus by Minfong Ho the character Saeng had many obstacles to overcome. In the end of the story Saeng vows to herself when winter is over she will take the test again. I think that the author ends the story like that to foreshadow the future for Saeng It seems like the author is trying to say Saeng will be taking time to adjust to her new lifestyle and focus on other things before she takes the test again. It also shows that Saeng has a lot of courage to complete what she has once failed. The perserverance in Saeng shows and will help her overcome many things in her new country. In the text when Saeng's mother starts to dig a hole she says let me help mother. This shows her love towards her mother and her care for the plant that represents her pastime. So in the end of the story adding the vow was a good way to show Saengs commitment. 2 3 3 +9725 4 The author puts that excerpt into the text to show the reader that she had made a mistake an will fix it in the future. I believe the other put it in for that reason because in the text Saeng began to cry when she admitted to her mother that she failed the test. This shows that she was really upset by the fact she failed an hopes to improve in the near future. Another reason why I believe the author concludes the story like this is to lead the reader on to believe Saeng is going to get over beign home sick. 1 1 1 +9726 4 "The author ends the story Winter Hibiscus with the passage When they come back Saeng vowed silently to herself, in the spring when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. She is saying how she is going to try to take the test again because of the fact that she failed the first time. I think the hibiscus she bought comforted her and made her think of her home land so she thought when the hibiscus is budding she will take the test again. The plant made her think positivly. And insted of thinking she will fail she is thinking she will pass the next time. I also think Saeng felt comforting her when she was upset and I think that helped her feel alot better." 2 2 2 +9727 4 "The author concludes this story, Winter Hibiscus, with that paragraph as a sign of reasurrance. Saeng had had a tough few years adapting to the United States from Vietnam, this paragraph leaves the reader with hope that she will overcome this challenge just like a bump in the road. Saeng had just had a rough day after just failing her drivers test and wanted to buy the plant she saw on her walk home. While in the greenhouse she says, That, at least, she could hold on to. But where was the fine-toothed comb? The hibiscus hedge? The well? Her gentle grandmother? Saeng missed all these things from Vietnam, especially during this rough time. The final paragraph gives hope that she will take the test again and it will all be okay. The winter is a symbol of the hardships she has and will continue to go through. It says,in the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take that test again. The winter is a hardship for the geese in that they must move away, the hibiscus must survive the cold winter, and the winter is time Saeng will be away from Vietnam. As the geese and the hibiscus overcome it, so will she. This last paragraph is a good, positive and hopeful ending to this touching story, so the reader knows to have hope in life. " 3 3 3 +9728 4 "There is why the author ended the story with this paragraph. It mean that when she comes back after winter she will repeat her tasks all over. For example she will dig, sen flowers, their customers. Then when winter comes again she will do it all over. So has steally the other is using different words to say when winter ends she will repeat her actions. That is why the author ended the story with that paragraph." 0 0 0 +9729 4 "The author brought out the paragraph ""when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"", to portray the theme of the story. Saeng used the hibiscus for hope in her life. The author also uses the choice of words or diction to explain the way Saeng lived her life depending on a flower. The paragraph also explains the way her culture is depending on the theme of the story." 1 1 1 +9730 4 "The author conconcludes the story with this paragraph because, the plant brings back memories to Saeng and she is sort of like the plant. Saeng can be compared to the plant by, she is starting out in a new area that she is unfamiliar with, as well as the plant. The plant is now being planted in the soil outside of her house and has to grow. Saeng has to learn to grow aswell and get better and prepare to take the test again. So when the plant is grown and adapted Saeng believes she will be grown and adapted too. In conclusion, this paragraph is a perfect ending for the story Winter Hibiscus by Minfong Ho." 2 2 2 +9731 4 "I think that the author ends this story with that paragraph to some up what the story was all about and to also say that Saeng would try the test again. In the story it says she realised that many of the thing that she had thought of as strange before had become, though the quiet repetition of season opon reason, almost familiar to her now and this last paragraph help bring all this together." 1 2 2 +9732 4 "A vow is a good ending, she vowed to take the test again because she failed it. It expresses how she feels and she made a commitment to pass. The author wanted to show a lot of feeling and how desprite she was. So she saw tons of beauty to keep her going." 1 1 1 +9733 4 "The author concludes the story with the paragraph, ""When they come back,"" Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. She buys the flower because she failed the drivers test. She has seen the familiar plant on her way home as she went to a florist shop to try to buy one. The flower makes her happy and reminds her of home. The author ends the story the way he does because it leaves hope, so that the story doesn't end sad. She still has hope of passing the drivers test." 1 2 2 +9734 4 "She failed the test at the same day that she got the plant and saw the geese fly over. The plant and the geese represent symbols to her. The plant represents her home, where she used to live and the geese could represent how they are moving on in life, over coming the obstacles of cold weather, and snow to move on to something better most likely a warmer climate. All of this is a symbol of a new beginning for her. So she wanted to take it again, around the time of a new beginning; when the geese fly over again and the plant grows. She feels thot since she failed, she should start over." 2 2 2 +9735 4 "The author added the story in with this paragraph for a lot reasons and to make the story longer, and two to show that even if you screw up the first time you can still try again." 1 1 1 +9736 4 "In the story Winter Hibiscus, the author includes this paragraph, when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again, to emphasize that Saeng is willing try plant again in spring. Saeng wants to try planting again in the spring time to prove that she is trying to adapt to the new settings and to prove that she cares about the planting." 0 0 0 +9737 4 Saeng ment that she will take that test next spring and pass it with the hope of her winter flower and the sight of her flock of geese she has high hopes that she will pass her test . when she sees buds on her hibiscus then she will take the test again. Saeng was very upset when she failed it the @CAPS1 time and she was hoping she passed next spring. 1 1 1 +9738 4 "In the short story ""Winter Hibiscus"" by Minfong Ho, the author concludes with a paragraph explaining when the character, Saeng will take her driving test again. She says she will ""when the snow melt and the geese return and this hibiscus is budding."" I think the author concludes with this paragraph because it shows that saeng has new. found hope. For example, since she has moved from Vietnam, she has been very homesick. ""She found that she was still too shaky to say the words 'at home,' lest she burst into tears again."" But when she finds a hibiscus plant, it reminds her of her homeland. ""Back home it just grew wild, jutting out from the cracks in brick walls or between tiled roofs."" Saeng even buys the hibiscus to plant in her garden in her new home. By having the hibiscus plant with her, it gave her memories of her old life and strength to continue with her new one. The plant gives her strength to try for her driving test again. By concluding with that paragraph, it shows Saeng's change in emotions from depressed to hopeful and it also shows the strength that the hibiscus plant gives her." 2 2 2 +9739 4 "The author concludes the last paragraph of the story because she already knew that she should not be afraid of trying a new life or new environment. For example, in the story, the mother says, Its flowers arent pretty, but its strong enough to make it through the cold months ???, this winter hibiscus. It shows that the mother wants saeng to learn that saeng should be strong even I times of difficult. Another example is, when the narrator says, she realized that many of the things that she had thought of as strange before become, throught the quiet repition of season upon season It shows that saeng realized that the new place that shes leaving right now is almost the same as their old home In conclusion, the last paragraph tells that saeng should face the new reality of the world. She should be strong and follow the flow of life." 1 2 2 +9740 4 "In the spring, when the snows melt and the geese return and the hibisus is budding, then I will take that test again Saeng thinks to herself. Saeng finds herself in a new place were she has no friends. She finds comfort in a plant shop one day when she comes apon a Hibiscus flower. The flower calms her spierit and helps her beguin to adjust to the changes in her life at this time." 2 1 2 +9741 4 "The author concluded with the paragraph about when winter turns to spring, she will take her driving test again for one main reason. The girl says this because just like the plant coming back to life and starting over, she will start over too. In the essay Saeng, the young girl says, When they come back in the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take the test again. @CAPS1 Saeng failed the test the first time, She is going to wait until spring so that she can have a fresh start. In the essay, the winter hibiscus reminds Saeng of her grandmother and her home in @LOCATION1. This at first makes her sad but then realizes how wonderful her memories are and helps her to get through this tough time. Her memories are going to give her strength to carry on with her life and try her drivers test again in the spring. " 2 3 3 +9742 4 "The author ends it with that paragraph because the girl is talking about when the @DATE1 or spring comes again she will try again. The author ends it with that because it explains how the girl feels about spring and the animals. The girl says allot about the geese in the story, so we know from that she likes animals." 1 1 1 +9743 4 "Then author concludes the story with that paragraph because it sums up how the memories and the plant effects her. Just like the plant Saeng grows better in her own country and likes it better there but she can still survive in a new place if it is taken care of and fights to stay beautiful. The ending shows that Saeng realizes that if she trys harder she can survive like the plant, so she is going to take the test agian. Her mother say, Ive seen this kind blooming along the lake. Its flowers arent as pretty, but its strong enough to make it through the cold months here. Her mother is trying to tell the daughter its ok and she get through the hard times. In the end Saeng knows she can." 2 3 3 +9744 4 "In the winter Hibiscus, the author chose the to end the story with a hopeful paragraph which stated, when they come back, in the spring, when the snows melt and the geese return and this Hibiscus is budding, then I will take that test again. The reason for the decision to end on an optimistic note are as follows. For example, the Hibiscus represents. The ideas of resilience when faced with challenge , and the determination To adapt and succeed. Saengs situation is similar to the flowers, which has been uprooted from its original spot, replanted, and forced to try and survive the Winter. Saeng has moved from her beloved homeland, she must begin life anew in another country, and has been faied with the obstacle of failure in reyards to an unnamed test. In the final paragraph, she finds that like the cherished hibiscus flower, she must be resilient and determined to succeed in her new home " 3 3 3 +9745 4 "The author concludes the story with this paragraph (when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again) because it explains what she is going to do when winter is over. Also to keep the readers guessing on whats going to happen, to Saeng and her mother. Another reason is to have a new story when winter is over." 1 1 1 +9746 4 I know the reason why the author concludes the story the way he dose and it is a good reason . It says that since she failed this year next year when it is time to ready up the garden she will tell again . That is a good moral because you have to keep trying and trying to succeed because even if you fail you are not losing any progress. It is like what @PERSON1 had happen to him even though it took him @DATE1 tries to successfully make the light bulb he simply said I just found out @NUM1 ways not to make a light bulb . So I do agree with this author and how he ended the story. 1 1 1 +9747 4 She does this to show her strugle with her gardeding struggle. It is like this because ech year she has to work on her garden because the winter blowes it away meaning it kills it. 0 0 0 +9748 4 "The author ending the story with that paragraph because it shows how Saeng wont give up. Saeng wants to make her mother proud so she is gonna try to do whatever it takes. All Saeng trys to do is make her mother happy. When she failed her mother was disappointed. Then suprisingly understanding. When Saeng told her mother she failed Saeng started to cry, but then her mother wiped the tears away." 1 2 2 +9749 4 "ThE author concludEs the story with this paragraph bEcausE mEans that whEn thE shovEl grow again in the spring, whEn thE snow mElts and the gEEsE rEturn and this hibiscus is budding shE will takE thE tEst again. So shE will wait until thE nExt spring to takE thE tEst.." 1 1 1 +9750 4 In the story the test was if she could overcome her homesickness. When she want to the greenhouse all of the. plants and flower brought back memories of her homeland. When she saw the flower it reminded her of the times life she would get water from the well and and a flower was floating in it. So after the winter she would go back to the place and see if she was still homesick. I feel she ended it that way because it shows that she will persevere and not give up and try again 3 3 3 +9751 4 "I think the author adds the last paragraph because the story could use a little part about Saeng. And what she is planning to do next. Also the author @MONTH1 have added that paragraph because she was maybe thinking about writing a second story of winter Hibiscus, and they wanted to write a part that could be about in the next story. It would make you wonder that if she does take the test again would she pass it this time after the snow melts, the geese return and the hibiscus is budding. I think this @MONTH1 be why the author added this paragraph in the story." 1 1 1 +9752 4 "I think the author concluded the Story with these lines because Saeng feels more confident. First, when saeng first saw the hibiscus, she was sad, but after seeing the flower, she got happy. Next, her mother helps her plant it and saeng is sure it'll be there in spring. Finally, Saeng feels better since she has reflected on her past" 1 1 1 +9753 4 "I think Minfong Ho concluded her story Winter Hibiscus the way she did to show the avid determination of Saeng, the main character. She failed the test but she got the hibiscus and it helped her to restore her resolve to pass the test. Now that she had a moments of her homeland and her family there she was most likely reminded that they wouldve wanted her to succeed, and so she promises herself that she will take that test again when the hibiscus plant starts budding. This is why I feel that Winter Hibiscus was concluded in this way." 2 2 2 +9754 4 "At the end of the essay Winter Hibiscus by @CAPS1 Ho, it ends in a positive manner. When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The reason why I think that the author decided to put that there, was to show how Saeng felt about her country. So when the country that she is has spring again, she will take that test because that country reminds her of her original country in the spring. Which makes her feel like she is at home and she can at least take the test. Thats why the author put that sentence at the end of the essay." 2 1 2 +9755 4 "Saeng promises herself that In the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test agan. The hibiscus is meta phorica to Saeng for her childhood. Evidently she grew up in Vietnam and moved to the @LOCATION2. She misses her homeland, and all the flowers remind her of her homeland. She is overwhelmed by all the memories that she breaks down and cries. Change is a difficult thing to overcome or adjust to, especially moving to a foreign country. She has to cope with it though, and by planting the winter hibiscus is a way of coping. She knows that she will eventually adjust to the major change for she realized, that many of the things she had thought of as strange before had become almost familiar to her now. She promises herself that she will retake the drivers test when the hibiscus blossoms because like Saeng a flower changes also. When the hibiscus finally overcome the cold , dreary winter months and blooms, Saeng will know she is ready to take the test again for that flower can also symbolize her going through changes. The geese in the story also symbolize changes, they have to migrate south in the winter to avoid the cold but return home when its warm enough. Like Saeng, she will avoid the test in the winter but in the spring when she feels comfortable." 1 1 1 +9756 4 So she saying she will take the test next year. 1 1 1 +9757 4 The author concludes the story of the end because I think the author concludes the end of the story because he wants to kind of say I will be ready next year to sprout again he will be ready to test him to not cry and break down when he sees the plant to think of childhood memories he will be ready o 1 1 1 +9758 4 "Saeng buys a winter hibiscus to plant in the garden and to remind her of her homeland. She has failed some sort of test and is upset over it. Her mother feels bad for her so she doesnt get upset that the hibiscus cost @MONEY1. After planting the hibiscus Saeng says to herself, .In the spring, when the snows melt and the geese return and this hibiscus is budding, I will take that test again. The author uses this paragraph to make you think about whether or not Saeng will fail or pass the test again. It also makes you wonder about what kind of test since the author says hibiscus is budding, and the geese return, It must be a test that you can only take once a year. because she says that In the spring"" she will take the test again." 1 1 1 +9759 4 The author concluded this paragraph in this story because I think that he is tring to tell the reader a message. The author is tring to say that if a plant can mak it through the cold winter then she can pass her drivers test. That is why I think the author included that paragraph. 2 2 2 +9760 4 "The author concludes the story Winter Hibiscus with When they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again. The author ends with this promise or commitment because it shows hope and determination. Saeng vowing to herself I will take that test again, shows her determination and unwillingness to fail. That is enough to bring hope to someone who has failed and wants another chance. This paragraph also sums up and displays Saengs good character. It shows Saengs strength because even though she failed the first time she was going to put herself through the pain of trying again to succeed. To fail and try again shows great inner strength. The author also ends with this paragraph because when the snows melt and the geese return and this hibiscus is budding. brings everything back full circle. It holds the promise of Spring and better things to come with it. There are many reasons why the author concludes the story with when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again." 1 2 2 +9761 4 "The author added it in at the end not only to make the story have a happy, hopeful ending, but to show the reader that Saeng slowly adjusted to the changes in life. The paragraph above explains that Saeng realized that ""the many things that seemed strange before had become,... almost farmiliar to her now."" So the author lastly concludes that eventhough she failed the test this time, just as the geese will return in the spring, then she can take the test again. She just the point of the story across and its a ""cheerful"" way to end it." 2 2 2 +9762 4 "The author of ""Winter Hibiscus"" concludes the story with, ""When they came back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test agian."", to show that the hibiscus plant has given Saeng hope. It has helped he get threw some rough and difficult times. In the story Saeng has just failed her @CAPS1 test and had to walk home. She was very upset. On her way home Saeng saw a familiar flower. She had walked into a flower store to see if they sold the hibiscus that she had seen. The employee pointed her towards the flower. The hibiscus brought back many memories at her hometown in vietnam. Saeng planted her flowers in the vegtable garden. That flower had given her hope. She is ready to try the @CAPS1 test again." 2 2 2 +9763 4 "The author ends the story with this paragraph because the season is over. For example it is starting in the winter the hibiscuses are dying. Also she is leaving and wont come back till she can plant flowers again in the spring, and she will come back again when she takes the test over again. In conclusion that is why the author ends the story with this paragraph." 0 0 0 +9764 4 The reason the author of Winter hibiscus ends the story with the last paragraph is to give hope to the end. It gives a certain lift of joy at the end of a moderatly depressing story. It just goes to show that if you care enough you can keep moving foreward. And that the end of your world comes when you make it so. That is why I think the author used such a powerful statement at the end. 2 1 2 +9765 4 The character has what seems to be a new found confidence and a new joy of the plant that reminds her of her home land comforting her and motovating her. She says when those things come back she will try hard to complete the test. She is setting a time to push herself. As most people try to do 1 1 1 +9766 4 "The author concludes the story with that paragraph because it shows how sometimes you have to wait till the time right for you to try again... For example, In the book it says Madagascar periwinkle, its tag announced, How strang to see it in apat, Back home it just grew wild jutting out from the cracks in brick walls or between roofs. This shows that anything can be done when the time is right." 1 2 2 +9767 4 "Emotions,symbolizim, to it realized all are reasons the author concluded the story that way. a reason the author ended the story that way is to leave you, with mixed emotions. Emotions like sadness, hope, and wounder. The author makes the reader feel sad with the girl failing her test and missing home. The author also gives the feeling of hope that they one day will return home. and wandering because the conclusion leaves a lot to be answered. the author uses symbolizes in the concluding, sentances by giving the plant and the geese a sense of impotance in the story and the plant has to do with the home that she really misses. In the final story the author leaves a lot of peceptions on several. Like the importance of the plant and why did they move from a place that they lavd so much. That is why I think the author ended the story that way." 2 1 2 +9768 4 In the story winter Hibiscus Saeng is fond of Beautiful flowers that once grew in her home land. Her favirte flower was the winter Hibiscus that had beautiful red pedals on it as of velvet. She also failed a test that she had taken so what the story is trying to say is that nothing can be as good as whats at home but sometimes you just need another chance at something. 1 1 1 +9769 4 I think he did because he wanted to show how he loved everything in life. 0 0 0 +9770 4 "The reason why the author of the story ended the story like that is because after all the hard time that plant went through, it will still bad at the end of the winter. The author said that the plant will take that test again that test is surviving through the could winter and blunming at the end of the winter" 1 1 1 +9771 4 "The author concludes the story with that paragraph for many reasons. One reason is that the author is trying to say that she is going to overcome the obstacle (the test) no matter what. In the text is say it can make through the cold months. @CAPS1 consumer her which supports the last paragraph also, she is in a new country and is starting a new beginning. In the text it says Not like the same kind we had before.This implies that it different in this country and she will soon adjust. Finally it says, this hibiscus is budding which means she will bloom." 2 2 2 +9772 4 "The author concludes the story with this paragraph because Saeng is by herself, and letting herself know that she is going to try the test she failed again because she is starting to get used to her new home now that shes found something that reminds her of her life before she left." 1 1 1 +9773 4 "The author ends the story likes this so readers can understant the theme. Which is, you can always start over, after a mistake is made. For example saeng failed herb driving test and then it took a toll on her she will try again in the spring. I guess she figures that once she once she has renewed herself she'll do better." 1 1 1 +9774 4 "Explains why the author concludes the story with this paragraph. Cause it all make a little cent to concludes the story with this. Here why I think it does. The paragraph in the one of the main pieces to to the story. In the spring, when the snows melt and after return, all she say is is when the snow is gone and the grass come back, I will start planting again and she would be happy with it, this hibiscus is budding, then I will take that again, she went to put her plants up again and tests them to see how them over so she can do them even again. Saeng loved this plant so much that she cant wait. But when it does she is going to plant a lot. That what the paragraph is saying Saeng is going to wait so he can plant a hibiscus. However, since she came to United States she loved the flower that very much." 0 0 0 +9775 4 Because to her it is the best time to do things cause all the happy memories return along with the geese and hibiscus. 1 1 1 +9776 4 "The author concludes the story with this paragraph because the hibiscus is motivating her to test for her drivers test. In the spring, when the snows melt, the geese return, and the hibiscus is budding, then she will take that test again. " 1 1 1 +9777 4 "Several reasons, first, in spring she will have had more time to adjust to her new life. Also when the hibiscus starts budding she will feel conforted, as though it auomaticaly brings back her childhood memories. It also is a link to her past home in Vietnam. When the hibiscus adjusts to its new life in ground soil, she will adjust and be ready to take the test again. Its as if, when the plant is ready to start budding, she will also be ready. " 2 2 2 +9778 4 The author concludes the story with that sentence a vowed to the flower. Its just stating that Saeng will come back and try again next year & see if it works out with the hibiscus. 1 1 1 +9779 4 The author put the paragraph in to show the he/she care about the flowers. Flowers only come out during spring and @DATE2 time and thats when you plant study all that grows in a garden. So she can pass the test and be happy with the garden. 1 0 1 +9780 4 "The author of Winter Hibiscus ends the story with the paragraph when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"" for a couple of reasons. Most of all because the hibiscus blooming represents hope - the plant will survive through the winter months and will grow again and become strong. So, too, will Saeng. Although Saeng is in a strange place where she doesnt want to be, she is able to overcome adversity and hardship. In the same way, the hibiscus can withstand the winter. This is why the author ends the story the way she does, to give the impression that Saeng still has hope." 2 2 2 +9781 4 "In the story, Winter Hibiscus,"" Saeng makes a vow to herself. In the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take that test again, this vow means that she will start fresh, make changes, and adapt to her new life. She want disappoint her mother and she wont be broken down by her memories. She concluded the story like this to show in the future how her life will change and how she would learn to like where she is now." 2 1 2 +9782 4 "The author concludes the story by the paragph that says, when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, the I will take that test again"", because the author wants to convey that. Saeng isnt going to quit. She is determined to take and pass the test. It also meas that saeng will wait for the right moment to take the test. She will wait till things get better. The situation that she is in improves because it says, ""The snow melt, the geese return, and hibiscus is budding." 1 1 1 +9783 4 "The author concludes the story with this last paragraph because it shows by spring she will be ready to retake her test. It shows that like the geese who care and come back, she will have time to study and pass her test. In the story the author includes this last paragraph to truly show her dedication to eventually grow to be comfortable in her new home and to pass her drivers test all in good time. Saeng wants to be comfortable with her new life but isnt yet because of what one misses. But she knows that after this she can go back and try again just like the geese do often our winter. This was a very effective way to end the story because it really communicated Saengs message of dedication and longing to overcome her obstacles, her new home and driving. " 2 3 3 +9784 4 I think the author concludes like this because its almost like a new beginning. The ending of the story makes you think that Saeng is going to get on with her life. It makes me think that @CAPS1 plans to start her life over in comparison with the hibiscus. Once the plant starts over (rebuds) she will start over once again. It also shows that she is determined to continue on with her life in @LOCATION1. She will not let her life be distraught by her move Vietnam. She hopes that she will be able to start her life over again. The ending is a cliff hanger to show that her story has not yet completely ended. It shows that there is still possibility that she can get on with her life. It also shows she doesnt let her failures control her. She is a strong young woman and is determined to overcome this. 2 2 2 +9785 4 "The author concludes the story with this paragraph because its a very good ending paragraph that grabs your attention a little bit. Also it shows that the girl is determined to pass her test, so that makes you think this is a determind story. This is why the author concluded the story with this paragraph." 1 1 1 +9786 4 The author concludes the story this way to show that saeng intends to try again. an example of her trying again is when she sees the plant and relizes what it symbolizes to her. Another example is her saying that she wants to plant the hibiscas herself so that she holds the memories forever. This is why the author concludes the story in this manner. 1 1 1 +9787 4 "The author coNcludes the story with this paragraph because she was tryiNg to say siNce the hibiscus is plaNted we are goiNg to see how it does with the winter. ANd wheN spriNg arrives and it's still staNdiNg she caN go take the test. I thiNk the author was compariNg the hibiscus to their life aNd obstacles they will go through, so if the hibiscus is still staNdiNg theN that meaNs everythiNg will be fiNe to where she caN go back aNd take the test." 1 2 2 +9788 4 "The last paragraph of Winter Hibiscus describes determination and the growth of a person. Saeng says that when this hibiscus is budding, then I will take that test again. Just as the hibiscus blooms Saeng will bloom forth and strive through the winter to try and succeed in passing her test. Saeng concludes by saying this as a realization that she cant be sad forever. She must be determined in order to pass the test. The next season will be a sort of renewal, starting fresh and coming out beautiful as does a hibiscus in bloom." 2 2 2 +9789 4 "The Author of Winter Hibiscus, Minfong Ho, concluded hes story with the paragraph about how when the geese are there, and the hibiscus is blooming, Saeng will take her drivers test again, because she wanted to end on a happy note. In the begining of the story, Saeng, who had just moved from Vietnam to the @LOCATION2, failed her drivers test. She had found a plant they had back in Vietnam, but it made her sad. I mean its not like the kind we had at at-"" she found that she was still too shaky to say the words at home, lest she burst into tears again. (Ho, @NUM1) So by ending by describing positive things for the future, Saeng could think about that, and get her mind off of everything else." 2 2 2 +9790 4 "The author concludes the story with these paragraph for a very good reason. In away she just letting it go and will wait to take it again. I think that is a good that she found the flower. That is because it let her and her mother and in away make her better. For example when it say's"" the geese return and the hibiscus is budding, then I will take that test again." 1 1 1 +9791 4 "The author concludes the story this way to show how the main character, Saeng has changed from the beginning of the story to the end. It show a small amount of newfound confidence Saeng now has. This ending also shows how much of an effect the Winter hibiscus had on her. with bringing back memories of her old country. If Saeng wouldnt have found the hibiscus, she would have never started to reminisce about her old home. This reminiscing not only reminded her of her past, but it also helped her compare her new home to her old home. Through this she realized that life in @LOCATION1 is not so bad, and that she still has a little bit of her old home with her everyday. This realization gave her just enough hope and confidence to want to try the driving test again This ending shows the change of heart Saeng feels for @LOCATION1 and her small gain of hope and confidence. " 3 2 3 +9792 4 The author decides to conclude the story with that because she wants the moral of the story to be burnt in your head. She believes that you will always have a chance to try again and the flower restarts its cycle and it gets another chance to bud and that symbolizes that you can start over and try again just like the girl is going to do on the test. She is doing the test again when the starts over so she can do. it with the flower and the flower budding will support her and give her hope. 2 2 2 +9793 4 I believe that the author ends the story the way she did because it talks about both of the subjects. The author is trying to say that when she takes her driving test next spring the hibiscus will give her confidence to pass her driving test. The author 1 1 1 +9794 4 "In the story Winter Hibiscus the author ends the story in a way that shows that she wants to start fresh. I think this because when she is talking to her mom at the end of the story, she says In the spring, when this hibiscus is budding, I will take the test again. She is saying that she wants to start over. and adapt to her new country. Also, I think this because she wants to wait until the seasons change to go take her test again. because she says when the snow melts and the geese return. She states this because she wants a completely new slate when she takes her test again. That is why I believe she wanted to conclude her story this way." 2 1 2 +9795 4 "I think the author concludes the story like that because its showing the time that will be passing. When it shows time passing, shes grew up more and maybe shell be ready to take the test since now she knows how it is. Also because the hibiscus will be budding, that will make her feel more comfortable and relaxed because it all make her feel more like secure home feeling. hibiscus is budding this way the flower will be starting new and so will she." 2 1 2 +9796 4 "The author concludes the story with this paragraph to show that she needs to adapt to the new country. She wants to wait when the hibiscus is budding. The plant budding shows than it is adapting to a new environment just like Saeng. The story shows that Saeng is not used to the new country. she cries when she sees the plants because it reminds her of her old home. The plant also comforts her. when she addapts to the new country, then she will take the test again." 1 2 2 +9797 4 "The author concludes this story with when they come back Saeng vowed silently to herself in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again because Saeng didnt past her test and knew her mom would be mad so that why she got the flower. If she wouldnt have failed her test she probably wouldnt have got the flower in the first place." 1 1 1 +9798 4 "The author of the story Winter Hibiscus ends the story with Saeng saying a vowe to herself because it shows how important the flower is to her. For example, the hibiscus flower gives her determination because it reminds her of home. Saeng says and this hibiscus is budding, then I will take the test again. The hibiscus flower gives her confidence. It reminds her of her home in Vietnam before they moved to @LOCATION2. Therefore, the author concludes the story with that certain paragraph because it symbolizes the importance of the flower." 2 1 2 +9799 4 "She feels very connected to this hibiscus plant because it renind her of her homeland.I think she is trying to say when the hibiscus plant shows its inner budding she will to. The plant has to try hard to produce flowers, and the seen has to care out to melt the snow, so that means when it comes around to it she needs to comes out and melt all of her had habits and get what she meads to do to pass the test. But still not forgetting where she came from and all the memory left bedide. vowed silently to herself then I will take that test again. " 2 2 2 +9800 4 In the story winter @CAPS1 the author concludes the story with the last paragraph like that because when the season comes back around for budding she is going to be right back out there exsploring. Shes going to want to learn more about the hibiscus and what they do. And she cant wait to start taking care of them as they start to bud. Thats why they ended the story with that paragraph. 0 0 0 +9801 4 "There are many reasons this paragraph is included. It shows the flower will emotionally encourage her when it is budding, because it will remind her of home. This is shown when she says a blossom of two would have blown into the well It reminds her of her homeland. It also is to show she is adapting to her new home. when the geese flew by she saidshe realized that many things that she thought of as strange before had become, almost familiar to her now. This shows how she is adapting and is now enjoying her new life. This final paragraph is important because it shows how her life is changing." 2 2 2 +9802 4 "The author is saying that she will be ready soon enuff when the flowers begin to grow and the geese begin to come home, she will be ready" 1 1 1 +9803 4 "The author concludes the story with this paragraph because she failed the driver's test. She is saying when it get's a little warmer outside and the plants grow in maybe she will then take the test again and hopefully pass. I know that she failed the test because it said"" As Saeng walks home after Failing her driver's test"". I guess that from the snow being on the ground cause her to make mistakes when taking the test. In conclusion, thats why the author concludes the story with this paragraph.." 1 1 1 +9804 4 "In @CAPS1 Hibiscus, the author concludes the story with in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again, to make a point. She needs all of those thing to happen for her to be sound enough to take the test again." 1 1 1 +9805 4 "The author ended the story this way because the plant represents new beginnings in which Saeng needs. Seang failed her test & needed some comfort. She went to the greenhouse & spent @MONEY1 on a hibiscus plant that reminded her of her home. It the same time the hibiscus plant reminded her that her new home is another new beginning. The hibiscus plant gives Saeng better hopes that starting over can be a good thing & that the next time she takes the test, she'll pass." 2 1 2 +9806 4 The author concludes the story with this paragraph @CAPS1 reason why he does is because he wants to conclude by writing about geese. Second he like plants and the seasons that they bud. He vowed that he would take that test in the spring. He cant wait until the snow melts so that way he can take the test. 1 1 1 +9807 4 The author concludes the story with this paragraph is because she wants that same envioronment and everything she wanted before when she took the test 0 0 0 +9808 4 "The authors choice of words in the conclusion of the story, I believe sent of let the reade knew that the story continues. But, I think that the test is that to remind her of home." 1 1 1 +9809 4 "The Author @CAPS1 the story with when they come back, Saeng vowed silently to herself. in the spring, when the snow melt and the gees return and this Hibiscus is budding, then I will take that test again. She @CAPS1 it with this because she begins the story with Saeng Failing Her Driver license test. and also she was think that the Winter Hibiscus was good luck after it goes away and how she & fimerlary with @CAPS3 which would be the geese she put @CAPS3 together and thats why she said when the geese comes back and the snow melts......That is why she said it. " 1 1 1 +9810 4 "I think Saeng concluded with this story because there is always time to make up for the past if the past allows you to meaning that @CAPS1 didnt past the test. I fell she met that in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, to me this means that even though it is snowing outside there is always next spring to start growing back up the vegetable garden this also relates to Saeng even though she failed the test there is always another change we can make up for that lost and retry and try to succeed at this one." 1 1 1 +9811 4 "The author concludes the story Winter Hibiscus with this sentence when they come back saeng vowed silently to her self in spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The Winter Hibiscus symbolizes her fondness of the place she used to live before. Its not a real one Im mean not the kind we had at-at she was still too shaky to say the words at home when the hibiscus buds she will still be fond of her home but she will have adapted better to her current enviroment. The geese will have returned to their home means that she will find a place to call home in this place one day. When she finds that place she will find herself ready to take the test"" or do things normally. The author concluded the story with the that sentence to show that Saeng will eventually grow into her new life." 3 2 3 +9812 4 "The author concluded the story like that because she was being positive. Like the geese are coming back she is positive that she can take the test again. She knows that she will pass the test. In the story she said Many things that she had thought of as strange before had become, through the quiet reptition of season upon season, almost familiar to hernow This means that when she had just moved here she thought that everything was strange because, she have not seen anything like this before. Now as she is living here to would get use to it because, she knows what will happen nothing will become strange to her anymore since this is her home now" 1 2 2 +9813 4 "The reader thinks the author concludes the story with this paragraph because the girl is saying she will try again, and take that test. In the story Winter Hibiscus, Saeng, the girl tock a test and failed it. And she got this flower that brong back memories from the past and decied She tock take this test now that thing are going to get better again. Also when the girl saw those geese flying over her, she knew they will be coming back, coming back after winter in the spring, and when they do her flower will blossom, the one that brings back good memories from the past and she will retake that test and past. Those are some examples of why I think the author concluded the story with that paragraph." 2 2 2 +9814 4 "The author concludes the story with that story because she loves her homeland and loves nather and loves her mother. She loves the greeness and cant wait in tell spring comes. so she will take the test of being out of place to herself, that is why she concluds the story that way. " 1 1 1 +9815 4 "The author of the story Winter Hibiscus concludes her story this way to demonstrate the girls determination and to leave the reader anticipating more. I say this because obviously Saeng is determined to do well, but leaving the story hanging builds excitement for more action." 1 1 1 +9816 4 "The author concludes the story with this paragraph because it shows that Saeng is getting used to living in a new place. Towards the end of the text, Saeng says that many things she thought were strange before had become familiar to her. The winter hibiscus was comforting, and reminded Saeng of her home. she says In the spring when the snows melt because she is beginning to get used to the quiet repetition of season upon season. The geese, which form a distinctive V are becoming familiar to her. The last paragraph is an effective way to end the story because it shows that saeng is becoming accostumed to her new surroundings and is hopeful the future. " 2 2 2 +9817 4 "When they came back, saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The authors main porpuse of this lines wa to grab the readers attention by making a continuing paragraph that a closing shes adapting to circumstances. Saeng values the uniqueness of plants, she is also conforted by memories of her homeland" 1 1 1 +9818 4 "The author concludes the story with the paragraph when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, to conclude that she will wait a little bit of time, until plants can be be planty so if she fails again, she will have something to hold on to. For example, when Saeng failed the @NUM1) she try to overcome the feeling of failing, by buying something that reminds her of her country and bring back the memories to past thro this time. Another example is when Saeng felt a shock of recognition so intense, it was almost visceral (@NUM2),she forgot about everything that was happening in her life, from moving to @LOCATION1 to failing her test this feeling concentratted her on feeling like home again. In conclusion, the author conclusion, creates the belief that that the was Saeng gets over her problems is by remembering memories like the plant, that reminded her of her home country." 2 2 2 +9819 4 "I believe that the author concludes the story this way to snow that Saeng will be of next year . She said now all the new @CAPS1 things seemed weird to her when she first got here , but now they are second nature to her now . I think that the hibiscus is an can of hope and inspiration to her . I think that she finally realizes that she is in @LOCATION1 to stay and she can go back to vietnam . So she has to accept that she is here home and I think she is on her way to doing that ." 2 2 2 +9820 4 "The author concludes the story with this paragraph because she has faith for a new start. Saeng compares herself to the hibiscus. When the, hibiscus is @NUM1), she will retake the test. This shows that when the hibiscus restarts its life, so will she. Saeng feels that when the hibiscus is strong enough to make it through the cold @NUM2), then she is strong enough to pass her drivers test and live in a new country. Winter and cold represent death, and spring represent a new life or beginning. Saeng thinks to herself, in the spring I will take the test @NUM3). This is a new beginning for Saeng, a new hope." 2 3 3 +9821 4 "In the story Winter Hibiscusby Minfong Ho,the author decided to end it with the sentence when they come back, Saeng vowed silently to herself, in the spring. When the snows melt and the geese return and this hibiscus is budding, then I will take that test again, because it show that even though the main character Saeng, @MONTH1 a failed once, she will trying again too. The geese will be coming back to try out a new spring and the hibiscus will be budding new flowers so its like its starting over again as well and Saeng says that if both have made it once they tried again then she can as well but this time she will succeed. Also, it shows the determination all living things have to succeed at their main purpose. .The flower drivers to re-bud. The geese drive at coming back again during the spring and the main character drives at passing the test.The author of Winter Hibiscus,Minfong Ho,put that quote as the last line of the story for inspiration.To inspire people to continue the path of life and if you fail are task,try again.So the author gives you inspiration to help you continue to live your life" 3 3 3 +9822 4 "In the last paragraph of the story, Saeng vows to herself that she will take the driving test again in the spring. The author concludes the story with this paragraph to show the hope that nature brings to her. She describes peaceful things in nature, like the geese and hibiscus, that she draws strength from because they remind her to her homeland. In this way, shell always have a little piece of her past with her. Throughout the story, Saeng relates to nature and pulls strength from it. Her mother has a garden, and she relates to it in that she has a different past, preferring natural foods like bitter melons over @LOCATION1. This final paragraph shows the hope that the beautiful nature from her homeland has brought to Saeng, helping her adapt to living in a new place. " 2 3 3 +9823 4 The author concludes the story with this paragraph to show that shell hopefully be stronger. By that I mean shell feel comfortable in her new environment and she want miss her home as much. Also she tired the year but failed the best because she didnt get her grandmother what she asked for and she spent it on something else. That is why I think the author added this paragraph to this story. 1 1 1 +9824 4 "The author concludes the story with the paragraph because it shows the main character, Saeng, adapting and trying her best with her new life style. For example, when she vowed to herself in the last paragraph saying, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. This implies that she is putting more effort in to what she do in her new environment and settings. In conclusion, the author concludes the story with that paragraph to show how someone is adapting to change." 2 2 2 +9825 4 The author includes this because hes using metaphors to explain how the author felt about Saengs personal life is 0 0 0 +9826 4 "The author concludes the story with paragraph because it shows Saengs sympathy. She wants to help her mom with the garden because she dissappointed her. For instance, she feels bad about upsetting her mom, and while her moms gardening, she says, Here, let me help, mother, because her moms frail beauty touched her. When Saeng told her mom she failed the driving test, she even knew not to look at her because she was upset, it says, Saeng didnt dare look her mother in the eye, which shows Saengs concern for her mothers reaction. However, in the end, her mother was happy she got it, saying, Its a beautiful plant, Im glad you got it, which shows the mother and daughter have a close relationship. This is why Saengs sympathy to better herself is shown in the storys conclusion." 1 1 1 +9827 4 "The story Winter Hibiscus is about a young girl who cares for gardening over schoolwork. The given conclusion is explaining, when spring comes, and the winter hibiscus is gone, she will pass the school test she failed before. Saeng only cares for the winter Hibiscus right now, for example, the line I paid over nineteen dollars for it. Explains she used all her money on this plant rather than any other food. Also the quote I failed the test with Saeng crying shows she failed it only because she was worrying about the hibiscus. In conclusion over the spring, when the winter hibiscus is gone, Saeng will focus on school more rather than gardening. Maybe now she will pass her test and go back to her hobby of gardening." 1 1 1 +9828 4 "The author has a good reason in which she concludes the story with this. The main character of the story, Saeng, moves to the united states from Vietnam and fails her drivers test. Saeng has not adapted to the life in the united states and when she sees a firmilar hibiscus plant she buys if for her memorys of Vietnam. The author is trying to show that since saeng planted the hibiscus during winter, when it blooms in spring she will be ready to try to pass her drivers test because she will have adapted the life in the united states. The theme of the story would be if you are moving away from somewhere you grew up in, bring things that remind you of that place so you still have a little of that culture with you. Therefore the author begins and ends with the same subject." 1 2 2 +9829 4 "The author concludes the story Winter Hibiscus with a sentence about retaking the drivers test in the spring, to express the themes of adopting to circumstances and determination to succeed. The main character in the story, Saeng, is a @CAPS1 immigrant. Because @CAPS2 is not her homeland, there are still many aspects of life here she is not accustomed to, and the story shows her struggle to adapt. For instance when she sees the flower Madagascar penwinhle she thinks how strange to see it in a pot because Back home it just grows wild, The last sentence of the story is symbolic when it says and the geese return, because the geese adapt to circumstances by flying south for the winter, just like Saeng is trying to do, and Saeng realizes their pattern are becoming familiar. The very last line says I will take that test again. This summarizes the determination Saeng has throughout the entire story. Not only is she determined to succeed in her drivers test, but in other things as well. For example, when trying to plant the hibiscus Saeng observes that the soil was cold and hard, and she had trouble thrusting her shovel into it. Despite the difficulty, though, she Dug out a hole and knows its strong enough to move it through the cold months just like Saeng will be strong enough to overcome obstacles if she tries. The last sentence in the story is significant. It expresses important themes and lends valuable insight into Saengs character. " 3 3 3 +9830 4 "The author concluded the story with the paragraph to set the sonip theme. In the story, the @CAPS1 represents very important thing to saeng confidence, beauty, adaptation some things she can apply to herself, & her memories of her old homeland. She had failed the driving test. Afterwards, she bought the @CAPS1 to comfort her homesickness. I saw the @CAPS1 as a sort of metaphor to Saeng the same @CAPS1, but growing differently in a different area just as she is still the same but in a new home. The significance of the last paragraph is mainly about the @CAPS1 budding. It represents to Saeng her homeland by the @CAPS1 blossoming ,it can represent her love for the homeland. When the author wrote then I will take that test again it is referring to the new confidence she @MONTH1 have later when the @CAPS1 blooms (another @CAPS1 /person metaphor)" 3 3 3 +9831 4 "The author @PERSON1, concludes the story Winter Hibiscus with that paragraph to show Saeng starting over In the spring, when the snows melt and the geese return and this hibiscus is budding@CAPS1 to her life, is that she is starting fresh in a way. Although she @MONTH1 miss her old life, her grandmother, the well, and the fine toothed comb, She is making on effort and take that test again By relating the test she shows that she is not ready to give in to the @CAPS2 of loss. and to her grief. " 2 2 2 +9832 4 "The author ends the story with when they back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. because she is concluding that the hibiscus comforts her and once once the plant is well and alive, she will be comfortable to take the test. In reality, seeking comfort from a plant seems nieve but its not that she has comfort in the plant itself but that the hibiscus reminds her of her home in which she misses dearly. Once the plant is thriving, as such as her tropical home, she believes that it will comfort her enough to pass the test. In conclusion, this is why the author concludes the story with this paragraph." 2 2 2 +9833 4 "I believe that the author concludes the story with this paragraph to show how as the plant will grow, so will Saeng . After failing the drivers test, saeng goes to the greenhouse and finds the Hibiscus plant which reminds her of her true home back in Vietnam when they had similar plants. The plant then makes her think about all the memories and she is comforted by them even though she is said. She uses this plant as a tool for comfort to help her think about when she is from and all the good memories to help raise her spirits higher. So to boost her confidence she decides to plant it. The winter hibiscus was in the ground now, and Saeng tamped down the soil around. Then she sees geese flying in the sky which is kind of a symbol do that day, something to rembember it by, so the next year. When the snows melt and the geese return and this hibiscus is budding. She will take the test again. These things bring back good memories which help to make her stronger." 3 2 3 +9834 4 "I think Saeng need to take the test over because to get her grade up. Saeng be waring about the snow, in the spirng because she is think about the flower getting cover over it. Saeng mother late her help with the pepper and melons, and lat her state dinner." 0 0 0 +9835 4 The author concludes the story with that paragraph because she wants us to know that shes not giving up on her test. The author wants to inform the readers that shes not giving up then I will take that teat again which clearly states she still has hope. Author wants to continue on her test to find the right flower. This is why the author concluded the story with that paragraph. 1 1 1 +9836 4 "The author concludes this story with that paragraph because during winter everything dies down till springs where everything is lively again, the Saeng would feel more motivated to do well on the test. Saeng is sort of like the plant, strives and worries in the winter and then blooms beautifully in the spring. Also, I think the memories that the winter hibiscus plant brought her; motivated her to stop staying in the past and move on towards the future." 2 1 2 +9837 4 He wrote this because he is talking about weather changes 0 0 0 +9838 4 "The author probably conclude the story with that paragraph b/c she is basically relating the plants to herself meaning as the plant bloom she will too by taking the test. and her reason could be b/c or is b/c reluctantly she realized that many of the things that she had thought of as strange before had become, through the quite repetition of season upon season, almost familiar to her now. Basically she did as the geese by lifting her head watching as their distinctive V was etched against the evening sky, slowly facing into the distance. This is why I believe the author but this to conclde the story...because she was comparing herself ib the geese and does as they did " 1 2 2 +9839 4 "The author describes last quote because he wants her dream to achieve. We describes she realized that many of the things that she had thought the quiet repetition of season, almost familiar to her now. Saeng is from Vietnam, and her family have an @CAPS1 dream. so the author wants that her family adapt their new life in @LOCATION2." 1 1 1 +9840 4 "She says this because right now it is winter and flowers can grow in the winter due to how cold it is. So she is saying when spring is back she will take the test of growing the flowers again. In conclusion, this is why the author states that conclusion at the end of the paragraph." 0 0 0 +9841 4 "The author ends the story with that paragraph to give you a sense of hope and determination for the future that dwells within saeng at that time .Throught the story is seemed as though saeng was giving into despair at the remembrance of her home land ,she wasnt doing so well in her new country and and she had realized it the most when she had failed her driving test .but when she walked past the flower shop and saw all the plants that used to bloom so freely and beautifly in her home land comfind in those ting pots and fighting to survive it reminded her of herself here in @LOCATION1. As she began to plant her hibiscus she again compared herself to it and that is why when her plant blooms on the spring so well she will pass that test " 2 3 3 +9842 4 The author conclude this saying it to the story because he thought it would go because at valkay about how the hibisuse a yet budding in the winter & and how all at the geese will return to the home and stay there because they hate the winter. 1 1 1 +9843 4 "The author concludes the story using that paragraph for a few reasons. One reason why is because the change in Saengs attitude. In the beginning of the story Saeng is upset and has no hope of adjusting to her new home, but by adding that paragraph at end of the story it shows that she has hope, and shes not going to give up. Another reason why this paragraph concludes the story is to show that life does go on in toughest situation. The fact that a new season will begin figuratively shows Saeng will not always feel this way that she too will change. In conclude the story with that paragraph for a few good reasons." 2 2 2 +9844 4 The author concludes the story with this paragraph I think because since the girl failed her test the bud reminds her of her grandmothers long grey hair and I guess that gives her good luck so when the winter passes by and the spring time hits thats buds start to come back out and thats when she will take her test again. Thats why the author made this statement the last sentence of the story. 1 2 2 +9845 4 I am going to tell you why the author concludes the story with this paragraph. One reason the author does is because it tells you that Saeng is confident. It also tells you she wont give up. And it shows that she is willing to take her ability to the next level. This is why the author concludes the story with the paragraph. 1 1 1 +9846 4 "THE AUTHOR MUST LIKELY INTENDED TO SHOW THE HOPEFUL ENLIGHTENMENT OF SAENG'S COMPLEX DILEMMA. IN THE PHRASE, ""WHEN THEY COME BACK"" THE AUTHOR MUST LIKELY REFERS TO THE HIBISCUS FLOWERS THAT REPRESENT THE FOND MEMORIES OF HER HOMELAND. THE AUTHOR ILLUSTRATES SAENG'S STRUGGLE ADAPTING TO HER NEW LIFE THROUGH A TEST OF PLANTING THE BUDS JUST AS SHE HAD DONE BACK HOME WITH HER GRANDMOTHER. THIS TEST REPRESENTS THE ACHIEVEMENT OF ADAPTATION TO HER NEW LIFE. FOR THAT REASON, THE AUTHOR CONCLUDED HER STORY WITH THE PARAGRAPH INDICATING SAENG WILL INDEED TAKE THAT TEST AGAIN." 1 2 2 +9847 4 "The author decided to conclude the story with this paragraph to show Saengs determination to adapt to her new life. In the third paragraph on the second page the author writes, Saeng looked at the white bud in her hand now, small and fragile That atleast, she could hold onto. After failing her drivers test Saeng was feeling foreign and alone. She desperately looked to the flower as a reminder of her homeland, Vietnam. The flower brought back comforting memories for her, so she bought one of the plants and returned. After a discussion with her mother Saeng understands that she must cope with her new home, much like the flower must adapt to its new surroundings. By concluding the story, with that stated sentence, the author is informing the reader that Saeng must blossom in her new home in order to do well. She still needs time for this, as the flowers needs time to plant its roots into the ground." 3 3 3 +9848 4 "The author concludes the story with this paragraph. Maybe to show confidence that she would do everything over again if she had to. For example ""When they come back, Saeng vowed silently to herself, in the spring , when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"", so basically she's saying she's willing to take that step, that chance . The author ended the story with this confidence and couragement.." 1 1 1 +9849 4 "The author concludes the story with the paragraph, When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, the I will take the test again. She does this to end in hope of taking the test again and doing good. Also the author ends it this way because Saeng is believing in herself so she made a vowe to do something. Hopefully that will encourage her more and also motivate her." 1 1 1 +9850 4 The author of this story concludes the story with a paragraph basically stating that the winters coming things are going to die off then come back next spring. Shes refering to the plant. I think she is basically keeping track of the memories it left her and the thoughts that came to mind when she used her senses to connect with the flower. Saeng is ancious to see how the flower buds next spring and what other new things she @MONTH1 experience. 1 1 1 +9851 4 Well I think the author concludes the story like that because he is showing her her attitude better known now she is changing so she is going to put her mind to whatever she has to do and she is going to take the test again with some pride and try in the spring when the snow goes away. 1 1 1 +9852 4 "The author decides to end the story with the paragraph to show many things. First of all, the author uses the ending paragraph to show optimism. The whole story had been sad but the ending shows some hope. In the beginning it says, @CAPS1 of loss so deep (@NUM1) and at the end it says, I will take that test again. (@NUM2) shows how her attitude changes from cynical to hopeful. Another reason why the story is ended with that paragraph is to show how Saeng was accepting. When the story says that the geese were , almost familiar to her now.(@NUM2) demonstrates that even though Saeng is sad to leave her home, she is adapting quite well. Therefore, the author ends the story with an inspiring paragraph to show change for the better." 2 2 2 +9853 4 "The author is concluding the story with that parapraph stating when spring and @DATE2 comes again then she will take the test again. Meaning she will plant the flowers and get them to grow again. Hoping she dont fail at doing so. For example, ""Mrs. Lambert, liked it. this sharp bitter melon that left a golden after taste on the tongue." 1 0 1 +9854 4 The author concludes the story with this paragraph because he wants to end it on a good note and send a good message there not going to quit because they failed the first time. 1 1 1 +9855 4 "I say the only reason why the author included that last paragraph was to show she was not going to give up easy. She was still going to take it again, she might get good luck from the hibiscus. Saeng was walking home one day from failing her drivers test and she realizes that she recognizes a flower so she went to a florist to see if she can buy it. When she does purchase it she goes home and gives it to her mom and they plant it. So maybe it can bring back good memories from her home town or just good luck I think." 1 2 2 +9856 4 "The author concludes the story wt this passage because its symbolic. When the Geese come back in the spring it will be like a now beginning. When the Hibiscus is budding it has a new life. When all this happens Saeng will have a new fresh start too. Leaving the story to end like this is a cliff-hanger for some. It makes you wanting more, knowing she failed her test you want to know if Saeng will pass it in the spring, @CAPS1 a fresh new start. Everything and everyone will have new starts when the beginning of the new season comes around when the hibiscus blooms it will be like she has the new ability to overcome obstacles, new connections w/her past and comfort during hard times. The Hibiscus symbolizes all this" 3 2 3 +9857 4 The author concludes the story with this paragraph because this is what the story was all about. Saeng saw what happens in the winter and when it comes back around she trys to memorize it so that she can no what will happen. 0 0 0 +9858 4 "The author ends the story this way because by the time winter ends she will have adapted to her new society, just like the hibiscus." 1 1 1 +9859 4 "The young girl Saeng from the story ""Winter Hibiscus by minfong Ho, has moved from her home land of Vietnam to the United States. The young girl was hoping to get her drivers license but failed, The hibiscus she sees comforts her reminding her of Vietnam. When she purchases it her mother is concern of the price but sees how home sick her daughter is and becomes understanding. After planting the Hibiscus She watches the geese and understands that every year they change their habitat. The geese inspire Saeng along with the Hibiscus and promises herself that"" in the spring when the snow melts away the geese return and thes Hibiscus is budding, then I will take the test again." 2 2 2 +9860 4 "The author uses this paragraph because it works perfectly as an end. Wit this saeng tell @LOCATION1 that all the snow is gone she will take the test again. If one read now between the lives it says more than just this. She really likes the hibiscus and when the hibiscus goes back to life in the spring, she will have new energy to take the test again. From her experience with the hibiscus we can see that this plant really influent her. Because this plant reminds her so much of her old home. Also we can see that everything and everybody should get a second chance. In her case it is the test she wants to take again. Also in the spring she lives a couple month in the @LOCATION1 and she will adjust herself to this new situation. At the moment she is just homesick, even if her home is the @LOCATION1 now. So the hibiscus is good for her, it is some think she can hold onto from her old home " 2 2 2 +9861 4 "The author: minfong Ho, finishes the story like this to show the overcoming of obstacles. The story shows the many difficulties saeng faces when leaving her old home and comming to her new one. In the day described. She failes a drivers test, doesnt eat lunch with her friend, and spends all her money on a plant from her old home. Also, this paragraph shows how the Hibiscus symbolizes her. The plant is not in its native home, faces many difficulties; the cold its small pot, and even its general surrounding. In every way, the plant is in the same circumstances as main character and the last paragraph is used to link them. " 3 2 3 +9862 4 The reason why the author used this paragraph is because he was sag that the snow go away in spring time that all. 0 0 0 +9863 4 The last paragraph means only one thing. That one thing is to be like a Hibiscus @CAPS1 to take the test again of life. See will come back in the spring just like the Hibiscus will. So as you can see the last paragraph had a very good meaning to it. 1 1 1 +9864 4 The auther concluded the story with this paragraph because this shows that Saeng is willing to change and she wants to do so by the time spring comes. By change Saeng wants to feel comfertable in @LOCATION1 and be able to remember things from where she used to live and not have to break down and cry. Also the author use the geese because they need to leave home earely year and they deal with it so Saeng can deal with it as well. 1 1 1 +9865 4 "The reason why the author ends the story with that statement is because when you fail at something you need time to dust yourself off and try again. When Saeng fails her driving test she is disappointed. After failing her test she went too greenery where she saw flowers of her homeland. Then where sh bought the hibiscus. It reminded her of how things were different. And how thing change when you go to different place. Sometimes they aren't so pleasant at first but you get use to them. Like when she first saw the geese flying in a ""V"". she though of how strange it was. But now it is farmiliar to her. After failing her driving test Saeng learns that even though things nav change she needs to be able to try again. " 2 2 2 +9866 4 She concluded the paragraph with that paragraph to show that she is serious about her gardening and that she wont garden until geese come back. 1 1 1 +9867 4 "The author concludes the story with the paragraph they did, because Saeng is a nature freak. So she really likes nature and she would never ever hurt nature in her life and I guess that they wanted to end off with a nice paragraph. So she needs to take that test again." 0 0 0 +9868 4 The author concludes this story because it shows her determination. It says that she will keep on attempting to make an adjustment to her life till she accepts her new home. It also says that as the buds grow so will she. But her more mentally then physically. And her taking the test again is meaning that she has faith in herself that she will mature and grow up to be a person who misses their home land but accepts the new home that they live in. That is why the author ended this way. 2 2 2 +9869 4 She is saying here that she will start a new leaf when spring comes around she is going to start a new leaf and she is going to do better on her driving test. I think she concluded with this paragraph because this shows that Saeng is not a quiter and she going to try harder. 1 1 1 +9870 4 Reserved need to check keenly 3 3 3 +9871 4 The author concludes the story with this paragraph because the cold was brufield or the author never wanted to be around while the cold was in sesion. At the time it was realy cold 0 0 0 +9872 4 "I believe that the author concludes the story with this paragraph for many reasons. One being the fact that she wants to snow sympathay for the hibiscus. Another reason would be showing that Saeng wants to make her mother very proud of her. Meaning that she doesnt want her mom to think that she is going to give up. This also contributes to the reason that Saeng believes in herself and she truly thinks she can pass the test. Lastly I think that this last paragraph snowed how Saeng wants people to know that even some as small and meaning less as a plant can help her overcome obsticles, and lead her to her dreams. The author chose this paragraph to end the story because of the main fact that how we know that Saeng will not stop believing in herself. " 2 2 2 +9873 4 "The author of the story, chooses to end the story with that sentence because the story is mainly about how Saeng failed her drivers test, but when she saw the hibiscus, it reminded her of home and made her feel better. In paragraph @NUM1, Saeng says, And that rich, sweet scent that was familiar too,"" talks about how nice the flowers were and how familiar they were because she reconized the scent. Saeng was already upset about leaving her home in @LOCATION1, then coming to @LOCATION2 and then failing her drivers test, just made it worse, but then she saw the flower and it reminded her of her home, so she felt a little better. So when the author uses that quote, they end the story that way to show that she will have enough courage to try again when the flower blooms." 2 3 3 +9874 4 "The author concludes the story like that to show emphasis.Saeng vowed that so that it will teach her everything lives with hope & adaptation. She means that when everything returns and proves they survive, she will too. She will take that drivers test then. The author also wants to prove that people need to have faith in theirselves. You just need to get used to their surroundings. This is why the author concluded that way." 1 2 2 +9875 4 "In stories, author lend them many different ways with many different effects. In the story, Winter Hibiscus the author concludes the story with this paragraph because it has a touching affect to the reader and it basically sums up all the paints talked about in the story. The first example, is in the beginning of the conclusion, it says Saeng vowed silently to herself. In this unique quote, the author demonstrates imagery by giving you a mental picture of a silent lonly girl nealing down in the cold garden, whispering silently to herself. This quote and this part of the quote has a touching effect to the reader. Another example of why the author concludes the story with this is because it sums up all the parts covered in the story. ""When the geese return hibiscus is budding I will take that test again This quote mentions the hibiscus which is mentioned a lot throughout, the geese in the end, and the failing of the test in the beginning. In conclusion, thats why the author used that paragraph as the conclusion for such a touching story." 2 2 2 +9876 4 The author concludes in the story that Saeng failed a winter test and because of her love of the hibiscus plant spring will help her take test. 1 1 1 +9877 4 I belive the author concludes the story with this paragraph because. She wanted the reader to know that just because she failed that it doesnt mean her lifes over. She will requperate and to the same thing next year. 1 1 1 +9878 4 "The author uses this paragraph to conclude to show shes going to give the test another try as well as her new surroundings. For example the story says Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon, almost fimiliar to her now. Saying that she is getting used to where she is now and wants and is willing to give it a chance. Almost as if she doesnt find it that bad as she thought at first it being different and not her home and where she was used to being. " 2 2 2 +9879 4 "Maybe the author wrote that as the last sentence or paragraph because in the story she did something and failed at it, so she wants to do it again." 1 1 1 +9880 4 "The Author of Winter Hibiscus ends this story with that closing paragraph because it wraps up all the themes. It shows that Saeng has determination to overcome obstacles and it uses the plant as a metaphor, just like the rest of the story, the Hibiscus represents Saeng or adjusting to change. The plant dies in the winter and this is equivlent to @PERSON1 not getting her drivers licens, but the plant will come back, representing determination or adjustment, this is why Saeng says she will go back and pass the test because she has adjusted and is now determined to overcome this obstacle." 2 2 2 +9881 4 "After reading the quote ""when they come back, Saeng vowed silently to herself in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test. From the story ""winter' Hibiscus"" by Minfong Ho, I think the author is trying to say that after the winter and fall pass she will be upto the challenge to plant again and feel good about herself. She lifted her head and watched as their distinctive ""V"" was etched against the evening sky, slowly fading into the distance. Reflecting back I feel Saeng felt that the geese was secretly letting her know what she was doing was right." 1 1 1 +9882 4 He ends the story this way to show that she wants to and is willing to overcome leaving her homeland. In the story she goes to a green house. She is in the green house to test herself. She finds a plant from her homeland and and it reminds her of her grandmother. She finds other plants and they remind her of her homeland and she cries. I think she had a real connection with her grandmother. When they left their home country she probably cried for days its like she lost a part of her sole. 1 1 1 +9883 4 "The author includes this paragraph into the story because the girl started giving up on herself and felt sad from moving to the United States and also from failing her drivers test, but lastly about the plant that she bought that wasnt real. Also because he wanted to show that her self esteem had gone up and that she was more confident and wasnt gonna give up on herself." 1 1 1 +9884 4 "The author leaves the story with those words, because it shows the reader a large metaphor in the story, although unfinished, it is self-explantory that the metaphor compares Saeng and her test to the perenial nature of the winter hibiscus. They both have something in common, which is that they both come back, Saeng comes back to complete her test, while the winter hibiscus comes back, buds, and lives again. I can relate to this, because I remember I entered in a triathalon, and my goal was to place first, I place @NUM1 overall, then next year came, and I trained until the triathalon came again, and I placed @NUM2, so like the winter hibiscus, I came back and completed my goal. " 1 2 2 +9885 4 "The Author includes that part in his story because its talking about na ture and a the beuttifl thing's in natural. Thers the @CAPS1 @CAPS2's, tall green grass the white @CAPS3 fence and in the story there are those sanne type's of things that been in nature." 0 0 0 +9886 4 "The author views the hibiscus plant as a new start. For example, when she says In the spring, whch the snows melt and the geese return and this hibiscus is budding, then I will take that test again. @CAPS1 she failed the first time and got the plant the next time shell pass it." 1 1 1 +9887 4 "The author include these paragraph in the story because the it spring, when the snows melt and the geese return. I think the author is talk about winter when it snows and keep snowing until spring hit and then the snow start to melt a way because the sun came out. One reason, is the author is talk about how it change weather when it changes." 0 0 0 +9888 4 She was upset with herself because she bought the hibicus and not the plant seeds. So she starts crying because she remembered how pretty their old one used to be. When the snow melts and the flowers start to bloom is when she is going to take the test again. The author ended the paragraph like that to show a new begining next year. 1 1 1 +9889 4 I believe that she included this because she wanted to show important it was to her. For example when she says in the spring she will take the test again. I think that ment she will work harder to make sure she does everything right. So that she can say she follows through on things that are important to her. These are my thoughts on why she included this paragraph in the story. 1 1 1 +9890 4 The author concludes the story with that paragraph because 1. Saeng failed the test. @NUM1. It takes time for a hibiscus to bud. @NUM2. It sound like a good end i not and plus she would not want to take the test in the snow. 1 1 1 +9891 4 The reason why the author concludes the story with this paragraph is to let the readers know that how Saeng @CAPS1 about the hibiscus. I thinks the author concludes this because he his telling the reader that the hibiscus gives saeng goodluck and with this good luck She will past the test. In the story it tells us how much saeng adores the plant For example when she got to the hibiscus She reached out and toched a petal gently. It Felt smooth and cool. Thats why the author use thal paragraph at the end to indicate how Saeng @CAPS1 and how it make her feel confident. 1 1 1 +9892 4 "The author concludes the story with this paragraph to leave readers guessing and wondering what will be next. You can tell by the tone of the last paragraph, When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The author seems to leave at tone of suspense." 1 1 1 +9893 4 "By ending the story in the way the author has in the short story winter Hibiscus, the author provides a sympathetic understanding for the reader of seang at her struggle to live in another country & her sadness of wishing to be back home. I think the author was attempting to end the story with a strong feeling for a strong note of Saeng's personality to draw the reader back into what they had just read. For example, by repeating statement on the test saying I will take that test again, the author gives us that understanding that Saeng has not given up & lets the reader know she will stand & live strong." 2 2 2 +9894 4 The reason why the author concludes the story with this paragraph is becaus now she has something to work for. The author could have also put this concludes the story with this paragraph becaus she must wait that long till she can take it again also Saeng could wait to wait to see the plant grow and get bigger and stronger. They are reasons why i think the author put that conclude with the paragraph. 1 2 2 +9895 4 "The author concludes the story here to show that Saeng would not give up. She simpley set a time for her to try again. Saeng wants to make it in this world and wants to have a good life, so she tries new things" 1 1 1 +9896 4 The story Winter Hibiscus is a good-day story about a foreign girl trying to adapt to @LOCATION1. She likes tropical flowers. The reason why the author chose to write the last paragraph like that is because it finishes the story right. That ending when the goes man away and the flowers start to grow she will try to fit in the spring. 1 1 1 +9897 4 I think the author used this paragraph for the ending because its meaning fail odvestily Saeng really like garden and its something special to her . Also when all the snow melts she will take the test and hopfully get her drivers licesies. 1 1 1 +9898 4 "I think the author concludes the story with this paragraph because new beginnings.What I mean by this is,the hibiscus represents new beginnings.She says When the hibiscus is budding ,then I will take the test again .This will be a new start for her .The plant blooming makes her happy and reminds her of her grandmother.Shes saying by the time the spring comes around she would be ready for a new obstacle as so for the hibiscus plant." 2 2 2 +9899 4 "I believe the author chooses to end the story wit this paragraph because it symbolizes closure. The plant represent her home. But she realizes by the sight of the geese, flying sooth that evenyone has to leave home at some point. She has now come to terms with what is happening and she will try again for her drivers liscence soon. When the hibiscus buds again it will by symbolic to her and that is when she will be ready to try once again." 1 2 2 +9900 4 "I believe the author concludes the story with that paragraph because shes showing she is trying she wants another chance. She realized her mistakes and ready to start over, Even though she faild by trying to grow her hibiscus in the winter she is trying to start over when the @DATE1 comes in. for example in the story. It stated the ""winter hibiscus"" was in the ground now, and saeng tamped down the soil around it over head, a flock of Canada geese flew by, their faint honks clear and yes familiar to saeng snow. That is why the author concludes the story with that paragraph." 1 1 1 +9901 4 The author concludes the story with this paragraph because she thinks itll bring her good luck in the test. When she goes back to take the test shell have the comfort of her home land of the hibiscus plant to encourage her to pass the driving test. When she takes the test again shell ve mast to pass due to the comfort of home and shell be used to the area being different from her homeland. In order for her to do well in the test she needs something to help her have a little but more confident in herself. Having things to remind her of home and the house that she lives at now can help her a lot in being confident in herself. 2 1 2 +9902 4 She said that she was going to take the test agen because to show her mom that she can do it and Past it this time. instad of worring over her old home. 1 1 1 +9903 4 "I think that this snows hope because she had really missed her homeland and kind of found peace and serenity by being around them she says That at least she could hold on to meaning the bud I think that she was very upset because of missing home she missed having her grandmother wash her hair and put a dok mallk into it. I think that since she really had nothing else but the flowers that reminded of her homeland the text said where was the fine toothed come the hibiscus hedge, the well. her gentle grandmother she was missing all these thing so I think that by putting her in this posistion it has brought her to a place of where she not only misses the people from her homeland but the beautiful things as well and how she always has kind of a part of home with her because of the flower." 2 2 2 +9904 4 "In the last paragraphy the reason why the author uses ""when they come back, in the spring when the snow melt and the geese return and this hibiscus is budding, I will take that test. The author uses this because Saeng finally had found comfort. after moving from a her homeland veelnam to the united States, she felt home sick. For example, she comes across this flower that reminds her of the time she spent in her homeland. She remember he grandmother's smell because of the plant. So when she finally got home to her mother, she showed the flower to her. They both planted the flower, and @CAPS1 got a sense of relief. Thats why she vowed that when winter was oven and spring came she would take that test, because she had a sense of home in her, that gave her uncouragement and strength. it also shows that even when your are in a different area and you are chew, there's always something that can male you remember the unemove and lime spent where you can from" 2 2 2 +9905 4 The author concludes the story like this because it show that she is determined to do pass the test. It is also like if the birds can fly south she can pass that test. 1 1 1 +9906 4 "The author concludes the story with the paragraph, When they come back, Saeng vowed silently to herself in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The author does this for several reasons. The author wants to show you that Saeng still has hope and that she believes she can make it right. Also, to show Saeng will still try and adapt to her surrounding and make friends. Saeng is also, determined that she will pass the test next time she takes it. Last it is emphazing the conflict and how Saeng overcame it." 2 1 2 +9907 4 "I believe the author ended this story with this paragraph because life lives on. ""When the snow melts and the geese return and this hibiscus is budding, then I will take that test again,"" proves that shes moving on with life and so will all the creature in the world. Also even knew she moved to a new country doesnt mean she cant still enjoy the things from her homeland, but she had grown up eating it and, she admitted to herself, much preferred it to the Big Mac. thats why the author put that last paragraph to show that life lives on. " 2 2 2 +9908 4 "The author concludes the story w/this paragraph because she really isnt worried about when they take the test again, shes only concerned w/the plants she picked out. Also, she knows that it will be a really long time before she takes the test again so that gives her more time to study and get more prepared and focused. The author also ends this article w/this paragraph because she wants to let the readers know that since she failed the @NUM1 time she will be back again to take it over and nothing will stop the author from failing." 1 1 1 +9909 4 "It shows not to give up, it ends almost the same way it began, it shows that people should not stay too attached to the past each are reasons why I believe the author concludes the story with that paragraph. It shows that people should not give up because even though she failed her test then she will try again later to pass it. Also the story ends the same way it begins by her taking the test or getting ready to which is a good way of writing. One last thing is that it shows that people shouldnt become too attached to the past because if they look at one thing that reminds them of it they @MONTH1 fall apart, that is why she takes the test, to see if she can look at the familiar flowers without falling apart. " 2 2 2 +9910 4 The author concludes the story with that paragraph to end on a happy yet motivating note. In the story Saeng says that she failed the test and was very dissapointed with herself. The test must have of been very important to her for her to be so dissapointed. The author also probably ended with this paragraph to show that Saeng is devoted in passing this test. Saeng seems like a sentemental yet reliable person. I believe that the test is to spend a minimal amount of money and she wants to earn respect from her mom. That is why taking and passing the test seems so important to Saeng. That is why the author ended with that paragraph. 1 1 1 +9911 4 "In the story Winter Hibiscus the author concludes the story with the lines when they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again. The reason that the author concludes the test with these lines is because she is re-establing the symbolism of the plant. In the text it said that the plant budds in the spring, once it has time to grow and adapt to the new enviroment. Just as the plant needed that time so did the main character Saeng. She just moved from Vietnam and failed her drivers test. Saeng is very unsure of her new culture. For example she likes bitter melon it says. But she had grown up eating it and, she admitted to herself much prefered it to a Big Mac. She appears to think she is misunderstood an no one likes her, but just as the plant will adapt to this new life so will she." 3 3 3 +9912 4 "The auther conclude the story by saying she will take the test again in the spring and uptill then vow silently because the spring reminded Saeng of home. In Vietnam there were many beautiful wild flowers. Sarng goes to the flower shop to get a peice of home. It said the flower's ""leaves quivering in the wind. This shows that the plant was not the same because there were also no buds. She had just failed her driving test before this and needed hope, so al waiting till spring when the hibiscus will bloom again that will give Saeng a sense of home which will give her hope to do good on the driving test. " 2 2 2 +9913 4 The author concludes the story with this paragraph because Saeng whole world is the plants a since they are gone there is no motivation. 0 0 0 +9914 4 "In the story Winter Hibiscus, the author concludes the story with, when they come back, Saeng vowed silently to herself, in the spring when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The authors reasoning for saying this is because the presence of memories from Saengs homeland comforts her. So much that they she will pass her test with ease because she will not be nervous. it was like walking into another world, said Saeng, when she entered the florist shop, after failing her drivers test. It was almost as if she completely forgot about failing and was only thinking about the plants, flowers. The flowers take her to a happy peace and make her feel at home. Like everything is going to be alright. This is why the author concludes with such a sentence because us as readers should show memories of her farmland will help her pass her drivers test. " 2 3 3 +9915 4 The author @MONTH1 have conclude the story like that because of the titel and the begening of the story. Or he @MONTH1 have conclude the story like that because he wants to. He @MONTH1 have concluded the story like that to show what @MONTH1 happen. But is good conclusion is a good conclusion. 0 0 0 +9916 4 I really do not know why the author concludes the story with this paragraph. Possibly because she started to talk. 0 0 0 +9917 4 "The author concludes the story with this paragraph to show Saengs determination. Saeng has been through a lot and misses what its like at home. She feels different and out of place but she is still strong. Life goes on, and this paragraph shows that Saeng with move with it. The paragraph says, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. Spring will come, as nothing can stop time. The snow will melt because the weather changes. The geese will fly home and the hibiscus will bloom in spring. Saeng takes a positive look at things and decides to join them. Sure she failed once but she is strong and willing to try again. If at first you dont succeed, try, try again. Saeng will always have her memories of home but she is willing to change to her new sorroundings. The concluding paragraph shows Saengs determination to succeed and survive in the new world." 2 3 3 +9918 4 The author concludes the story saying that because she wants to show us that Saeng is confident in herself and will not hesitate to take the test again. She went over to the corner of the vegteble patch and started to dig a hole in the ground. 1 1 1 +9919 4 "The author concludes with this paragraph, to give a sense at hope and growth. The flower represents Saengs homelard, and it makes her feel comforted. It connects her with her emotions and reminds her of the way are. The growth and flourishing of the hibiscus corresponds to the flourish of Saeng. When it blooms, she will have a true piece of home with her, and will be able to take the test again. The story is about overcoming obstacles and adjusting to change. The visual, and nearly lyrical expression of the blooming hibiscus makes the reward and result of your struggles seem so much more beautiful" 2 3 3 +9920 4 "The author concludes this story with hope in this sentence. The begining was very negative with Saeng failing her drives test and her mother yelling at her. But when this sentence comes the reader is filled with hope for the young girl Saeng. The author does this to show that Saeng will adjust and will peservere wheras before she was so upset, @CAPS1 when she said, I-I failed the test. Then for Saeng to refound from this event, gave the reader hope and thats why the author did this." 2 1 2 +9921 4 The author concludes the story with this paragraph because the author is talking about how there will be a new start. Since Saeng failed the test and in the winter the plant will die in the spring the plant will bud again and she will retake the test. Its a new chance to start things over. 1 1 1 +9922 4 "Saeng vowed silently to herself, in the spring, saeng vowed don't really like to talk. Saeng liked to be by her self sometimes. When spring come it was a different story. Saeng loved the spring and @DATE2. She would play outside all day every day. Saeng was just a nice girl" 0 0 0 +9923 4 The author concludes the story with that paragraph because it shows that character will retry what she failed. In the story the character loves gardening so when her favourite plant comes back she will retry to pass her test. 1 1 1 +9924 4 The author conclud the story with that because as winter come every thing goes away. Like the trees lose the leaves the geese fly south and the flower die off. So this passage is saying in the spring time when every thing comes back she will start the test again. it is like to start a new life back over. 1 1 1 +9925 4 "In the story called ""Winter Hibiscus"" the author concludes the story with this paragraph ""when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, than I will take that test again."" The reason why the author had put that at the end of the story was because when things go under ground everyone wants to wait and wait until it comes back up again because when you fail everything goes down but if you wait awhile than everything will start to raise Just like flowers and everything else that you can think of. So that is why the author put that at the end of the story cause to tell people that it is ok for people to fail Just as long as you get up and try again until you reach your goal. So that is what the author was talking about and thats why Minfong Ho put that at the end of the story so that people can read and learn for what it says." 1 2 2 +9926 4 The author concludes the story with that last paragraph to set the final mood. The author wanted to show that Saeng will not give up and she will continue to adapt to her new surroundings. It made the end of the story feel warm and it also inspired. The end of the story encourages the reader to not give up as well. The last paragraph sets an example of how the reader can vow to improve as well. The author knew that the last paragraph would stand as an inspiration and mabe help a reader going through something similar to the story. 1 1 1 +9927 4 "The author concludes the story with that paragraph because to her the plant seems to remind her of her homeland which calms her and when it is budding she feels stronger. In the story Saeng is kind of an outsider and when she sees the plant she sees a part of her past back home. In the story it says she gets shaky when she tries to say at home. When she says and this hibiscus is budding, I think it is really saying when she is ready to accept this country as her home because the flower is a reminder of her homeland. At the end of the story it says how see is getting used to the geese flying in a V so she is getting more used to this country and when she is ready she will take her test again." 3 3 3 +9928 4 "The author includes the paragraph, ""when they come back...then I will take that test again,"" to show that hibiscus is a symbol of time. Saeng uses the hibiscus to measure the amount of time there will be until she takes her test again. The hibiscus also symbolizes the power to get through struggling (stay strong). Saeng had trouble with her test, but the hibiscus is there to help push her through it to prepare her for the next test. The hibiscus also helps Saeng's mother push through her hard time of seeing her daughter sad from not succeeding on the test. The plant helps the mother try and stay positive and it also helps the mother by trying to do the right thing for her daughter. In the story. the mother decides to plant the hibiscus in the garden to make her daughter happy. The hibiscus shows strong symbolism and it helps Saeng and her mother stay strong through out their struggles. " 3 2 3 +9929 4 This final paragraph goes along with one of the main premises of the story. To not quite and keep going in order to understand and be happy in this world. Saeng is taking this test to see if shes ready to change and adapt to her new environment. She failed this time. But when all is right and the hibiscus is ready she will try again to see if shes ready to let go of the old and be happy with the new. 1 1 1 +9930 4 she said it because she didnt do what she was sopose to so she said she failed her mother was mad for a second but then stopped she said I love it and asked if she wanted something to eat so the went inside but she took the task as a test so she said next time I will do it right. 1 1 1 +9931 4 I believe the author ended the story with the test because it is a big part of Saengs life or part of her tradition. 1 1 1 +9932 4 "There are many reasons why the author concludes the story with that paragraph. First that ending gives a lot of emotion which doesn't cause people to think the story wasn't interesting. Another reason is that it shows strength. Not physical strength, but mental strength. Saeng is stating that even though she failed the test the first time she will take it again. Another reason the author @MONTH1 have used this paragraph to conclude the story is to show people to never quit. It shows how she failed and her mom was disappointed but she is not going to quit and take the drivers test again. Overall the author concludes the story with the paragraph because it gives off a great image to keep trying and never give up." 1 2 2 +9933 4 The author most likely concludes the story with this sentence because it shows how dedicated the author and her child are to gardening. I am guessing that the young childs favoriteplant is the hibiscus. I think that the mother and her childs favorite thing to do together would be gardening. This is a nice way to end a story. It gives the read kind of a look of question on their faces. It leaves them suspicious of why the author did that. But in my opinion I think it adds some curiosity to the story. 1 1 1 +9934 4 "The find lines of the story, ""Winter Hibiscus,"" are meant to provide a glimpse into the near future, to show a change in Saeng's attitude. Up until this point Saeng had been lamenting her old country, and not adjusting well to her new one. The Hibiscus inspires her, and lets her know that the new country has many of the same things as her old country. In this last line, she comes to terms with her present situation. ""When the snows melts and the geese return and this hibiscus is budding,"" is a way of saying shes going to let a little time pass, and by taking her drivers test again, she will begin her new life." 2 2 2 +9935 4 "The author concluded the story with saying that Saeng will retake the driving test in the spring to prove a point. When walking home from her test, Saeng saw a familiar flower and chose to make a delar to a flower shop. There, she saw many flowers that reminded her of home. she bought a hibiscus and went home. Her and her mother planted it, after saeng realized the flower could make it through the winter. She looked up to see many birds flying overhead and she realized that she has adapted to her life in @LOCATION1. The hibiscus has given her the will to survive and she knows she can adapt to life in @LOCATION1. The point the author wanted to get across was that the hibiscus gave courage and hope to retake her drivers test and continue surviving in @LOCATION1." 2 2 2 +9936 4 The reason I think author concludes this story with this last paragraph is because this is @CAPS1 passion. And that Saeng is very and will do this every year. She really love plants and she will wait to do it again. The last paragraph really showed a lot of dedication. And she really values the spring and the Hibiscus. 0 0 0 +9937 4 "The author concludes the story with this line to show that just like the hibiscus, adapting and strgging to survive and fit in in its non-natve land, Saeng will too. She will not give up her fight to pass the test to become a part of her new country. This is supported through out the story when her mother connents on the hibiscus by the late. She says, Its strong enough to make it through the cold month here, this winter hibiscus. Thats what matter (Ho @NUM1). Here the author shows the comparison between the hibiscus' struggle through hard times in a foreign land similarly felt in Saengs life. Both must be strong fight through hard imes where no, one, not even her class mates or frends, or Mrs. Lambert (Ho @NUM1), understood how alone out of place she felt. So just as she vows to take the test again, shes promising herself she will fight through the hard times grow strong, just as her winter hibiscus." 3 3 3 +9938 4 Primarily why she said that was she was saying with time come s cause. She was basically saying in a while when things change again she believes that her performance could change as well. I depicted this by the idea you can tell that she is beginning to sit over missing her home in Vietnam and that is memory with time change comes along. That is a simple aspect of logic that with time comes chase. But I think as much I did properly interpret the aspect of what this is supposed to mean overall. But otherwise and finally I believed Saeng said this because time brings change. 2 1 2 +9939 4 The importance as to why the author ended this story like this was to show readers the importance of the plant. It seems that because the author is not in her native country that she doesnt have a lot around in this new place that can comfort her. The author being able to find a hibiscus in a place she thought she wouldnt be able to gives her strength to do anything that she can. It is possible that whatever the challenge @MONTH1 be that the author is trying to get by the fact that she has some support from the plant gives her the achievement and confidence to complete her task 1 2 2 +9940 4 The author concludes the story with this because the hibiscus and Saeng are very similar. Also the narrator compares her to the geese returning. The geese returning represents her starting over at drivers school and doing it again. The hibiscus represents her staying strong in the winter and the come spring she builds up and goes and takes the test again. That is what the narrator choose to end the story that way. 2 2 2 +9941 4 The reason why the author concludes the story like this for him/her to have a spin off. I mean to me I think that it mean she is going to try again when spring comes so her and her plant can have a fresh start and I think that is a good way to end it. 1 1 1 +9942 4 "The author concludes the story with, when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. for several reasons. One reason the author concludes the story with this paragraph is because the hibiscus flower will be adaptating to spring just like Saeng should to her new environment in the United States. Another reason is like the hibiscus budding, Saeng has began to grow older and much wiser of things allowing her to go back in the spring and hopefully pass the driving test. Lastly, in the text it says, she realized that many of the things that she had thought of as strange before had become, through the quit repetition of season upon season, almost familiar to her now. This shows Saeng is becoming familiar and at ease now of where she is living just how the hibiscus flower adapts to it's place with ease and gets use to seasons." 2 3 3 +9943 4 The author @CAPS1 the story with this paragraph because Saeng is saying that When She @CAPS2 @CAPS2 back she will take the test over again wich means that in form of test is that wile she was there it was a test of servle and when the story begains it is a the begaing of the test and at the end of the story the test and there leveing and she wants to come back to see what grew. The author is also saying that you dont know how good you have it. 0 0 0 +9944 4 "Because the Winter hibiscus"" was in the ground how and Saeng tomped down the soil around it. overhead, a flock of canada greese flow by, their faint honks clear and -Yes- @CAPS1 to Saeng now. " 0 0 0 +9945 4 "The author includes this paragraph in the story because it shows a impression on work ethic and adaption to a new environment can be difficult. not even @PERSON1, looked it."" makes something to dislike apparent to a student that is new dont give them good. work ethic and that will essue them mentally also. Therefore the girl is not comfortable and not enthused To working on something that none woud appreciate." 1 1 1 +9946 4 "The author concludes with this because she is determined to pass the driving test that she had previously failed. For example, She writes she vowed silently to herself. When you vow to do something it usually means that you are very determined to do something. Everything else that she says after that she really means it. Therefore, that is why the author concludes with this sentence, in order to show her devotion to her goal." 1 1 1 +9947 4 "The author of the story, Winter Hibiscus, concluded the story with that pharagraph because the author wanted to show that Saeng is finally going to start getting used to her new home. She wont spend so much time dreaming about her past. And in the warm moist shelter of the greenhouse, Saeng broke down and wept. I believe that thats what she needed to get on with her life." 1 1 1 +9948 4 "The author concludes the story with that paragraph to let us know when shel take it again. When the season change is when she will take it again. Saeng is probably embrassed that why she wants to wait so long. Saeng took a long walk home and stoped at the flower shop. She tried getting her mind off failing the test. Saeng brought a nice flower/plant for @MONEY1. Her mother was upset at first, then realize her daughter wasnt happy and changed her mood." 1 1 1 +9949 4 I belive that the author conclude the story with this because he is saying that she will keep trying and will not give up and will keep on trying. I say this because she just moved to america from Vietnam and is having a hard time adjusting to life in america. I think the geese represent something that is always changing their surroundings and when they come she is going to fly again to get her licence. 1 2 2 +9950 4 The reason why the author concludes the story with this paragraph is because now she has something to work for.The author could have also put this concludes the story with this paragraph because she must wait that long till she can take it again also Saeng could want to wait to see the plant grow and get bigger and stronger. They are the reasons why I think the author put that conclude with the paragraph 1 1 1 +9951 4 "Saeng would silently in spring she will take the that again in the good ending to this story it was as goods ended because the story had listed come of malance ready and spring it and of the plant beautiful time the spring the all as plant ending because spring in a near trying and for the take the test again of that time , to think its a goods ending because the ruler strong are about machines saeng and spring it and makes is near paragraph . That is why its is a good ending plant to the stays. " 1 1 1 +9952 4 "The author ends with this because of what the hibiscus means to saeng. To her it is a symbol of strength and comfort. And she knows that if the hibiscus can survive the snow and the cold weather of the winter, she knows that she will not fail either. To her, the hibiscus is a symbol of herself and if it survives, she knows that she too can survive. She is also going to take the test again when the hibiscud are budding since it reminds her of her homeland and comforts her. Then even if she fails she will still be happy since her favorite plant is budding. I also think the author concludes the story this way, because both the plant and Saeng are going to have to overcome obstacles. The plant must survive the winter and come back in the spring. While Saeng must pass her drivers test. Finally I think the author ended this way because of what the plant means to Saeng. If it survives she knows that she too will survive, and life goes on." 2 2 2 +9953 4 "I believe the author concluded the story with When they come back, saeng vowed silently to herself, in the spring, when the snows melt and the gesse return and this hibiscus is budding, then I will take the test again. because it shows the entire theme of the story. The theme of this story is adjusting to things in life. The conclusion demonstrats this when she says she will take the test again. The hibiscus allowed her to get over the changes in life. For example The familiar fragrance filled her lungs, and saeng could almost feel the light strands of her grandmother's long grey hair."" The hibiscus was something from home that gave her good memorys. The hibiscus encouraged her to except her new life and keep trying to make it better. " 2 2 2 +9954 4 "The author most likely concludes the story that way because that is the time that Saeng feels most comfortable. Saeng and her mom moved from Vietnam, were the winter Hibiscus are popular and familiar to Saeng. She ends the text in this maner because it remins Saeng about Vietnam, and how she feels better during that time of year. When she says And beside it was yet another old friend. She feels as if this plant is a friend to her and it makes her feel more comfortable. This is why the author ended the story in the manner that she did." 1 2 2 +9955 4 The author concludes the story with this saying because it will be a fresh start and it will be spring and beautiful. @CAPS1 plant it right now is telling me that she wants another try. She wants a fresh strart and come spring when all of her pretty flowers are bloming and geting there chance she wants her now chance to pass best. 0 0 0 +9956 4 "The author concludes the story with this paragraph because of her sadness for what she did. The test she was telling about was how she was supposed to use the twenty dollars they had and buying one. Big @CAPS1 that she spent most of money besides after to buy a plant which reminded her at home and this last paragraph is saying that when she has the chance to do the test again, that she will do what she is supposed to do " 1 1 1 +9957 4 "After reading Winter Hibiscus by Minfong Ho. I believe Ho ended the story with that paragraph to support her idea of overcoming obstacles. First after failing her driving test, Saeng was very upset and didnt know if she would ever pass it. But after seeing a hibiscus plant, it reminded her of her home in Vietnam which inspired her. Second, when she bought the plant, her mother was a little angry because it was expensive. But, after seeing how the plant brought joy to Saeng, her mother forgave her. Last when saeng was digging a hole to let the hibiscus grow, it inspired Saeng to take the test again because she overcame the obstacles of brining the plant home and letting it grow. Therefore, I believe Ho end Winter Hibiscus, to go along with her idea of overcoming obstacles." 2 2 2 +9958 4 "The last paragraph of the story displays the theme of determination. The Hibiscus reminded her that her ""home"" was her old life, but misses @CAPS1 in her new life. She gains determination through the reminder of this. She soon realizes that she is home, for things have come familiar to her, such as the V formation of the geese. She loved her old home, but she realized it was time to move on. The last paragraph does not only mean retaking a driving test, it symbolizes the determination to embrace her new home and life. " 2 3 3 +9959 4 I will take that test aGain. She has @CAPS1 confidence From The hibiscus and snow. When the snow melts and hibiscus buds. Then she will Go aGain kind oF GrowinG with the hibiscus so an in all she is @CAPS2 to have enouGh conFidence For the test. 1 1 1 +9960 4 The author concludes the story with this paragraph because they want people to know what happened in the story. Also because they want people to know what it might mean or say in relation to the story. The sentence means that when spring comes and when the snow might melt the plants will be out and budding but by next class or next school year he will come out and be brave and take the test all over again. That is what the sentence means of the story and how it might be compared to both things in different ways. 1 1 1 +9961 4 "The final paragraph in, winter hibiscus by @CAPS1 Ho reads When they come back, Saeng vowed silently, to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding,then I will take that test again.This paragraph compares her to the flowers, which shows that she is resilient like the flower is strong she is determined to take the test again next year and pass it. She would also take the test because it is comforting to her and reminds her of home" 2 2 2 +9962 4 "He ended the paragraph like that because he @MONTH1 want you to read on, or it could be that he is showing you the comparison between the flower and Saeng. ""When they come back, Saeng vowed silently to herself, in the spring, when. the snows melt and the geese return and this hibiscus is budding, then I will take that test again, ""The quote is showing the flower can fight through the winter and come back. Saeng failed the test once and is now going back to retake the test. Which shows that they both have modivation and the integrity to come back." 1 2 2 +9963 4 "The author concludes the story with this paragraph, When they com back, Saeng vowed silently to hersef, in the spring, when the snows melt and the geese return and this hibiscus is budding, Then I will take that test again. I believe the author concluded the story like this because it shows that the hibiscus represented to Saeng a new beginning and to restart what she had failed. When Saeng saw the hibiscus after failing her driving test, it gave her com fort in a time of disappointment, connection to her past experiences, and the abilities she could overcome her obstacles. Therefore, when the narrator says, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"", This implies a new beginning so the hibiscus is representing Saeng. This is why I think the author concludes the story with this paragraph." 2 2 2 +9964 4 "The last line is included in the story Winter Hibiscus because it showed the connection between Saeng and the flower. Even though Saeng failed the driving test the first time she decides to take it again in the spring. The hibiscus flower like Saeng is out of place and will have to make it through the winter into the spring so it can bud again. This shows how like the flower Saeng will bud again in the spring by retaking the driving test. Another reason is that saeng and the flower are not used to the conditions in @LOCATION1. So they both have to weather the winter months they are not used to. This shows again how the last line connects the girl and the flower together. In conclusion, the last line is used in the text to wrap up the story with a connection between the flower and Saeng." 2 3 3 +9965 4 "I think the author concludes the story with this statement because the author is determined to get used to the new country and surroundings. In the story, the author is showing home sickness. The author see a plant that is know where she come from and buy for over @NUM1 her mother couldnt believe it. She didnt want to tell her mother exactly why she got it because she was too shaky to say home or start crying again. The last sentence is showing that author is trying to adapt." 1 1 1 +9966 4 The author concludes with this paragraph because she/he wanted to close the story with a conclusion that portrays the story. The author talked about the hibiscus in the story as a comfort in time of distress a hobby or thing she likes doing with her spear time. In conclusion the author concludes with that paragraph for the reasons stated in the @ORGANIZATION1 0 0 0 +9967 4 "The author ends the story with the given paragraph to get across. It highlights the things important and familiar to saeng that gave her comfort, and uses them to essentially say that shell take the test over again once she feels better. The winter hibiscus was a plant that saeng remembered of life back home up to the story, so when she sow the plant , a wave of loss so deep and strong that it stung saeng s eyes now swept over her. Saeng was unable to comfort her emotions when she first saw the plant because she realized how much she missed her old life. The plant is mentioned in the final paragraph because when it blooms in the spring, the winter hibiscus will help fill the emotional void, and help saeng to try to take the test again. She also mentions the geese for the same reason, but in a different way. Unlike the winter hibiscus, it took a while for the geese to become, through the quiet repetition of season upon season, almost familiar to her now. Saeng mentions this so that she can get used to the strange and unfamiliar parts of her life, and to come to grips with her failed test. Therefore by mentioning the things she does in the last paragraph, saeng uses familiar objects, foreign and domestic, to illustrate her coming to grips with her failure." 3 3 3 +9968 4 "The author concludes the story with this paragraph, because it expresses the meaning of the story. Life continues no matter what, the hibiscus will return again in the spring. The hibiscus is like a symbol to Saeng's life. The plant normally doesn't survive in winter months, but this one did. The mother says, ""It's flowers aren't as pretty, but it's strong enough to make it through the winter months here..."" Saeng and her mother are just like the plant. They are strong and their lives will continue even though they are in a new environment The author chose to end the story with that parragraph because even though she say the hibiscus will come back every spring the deeper meaning is that Saeng and her mother, like the hibiscus, will continue to live their lives." 2 2 2 +9969 4 "The author chooses to end the story in a very deep, connected way. Itis ended On a note of rebirth and second chances. when Saeng vows, when the come back, inthe spring, when the snow melts and the geese return, when the Hibiscus is blooming, I will take the test again,"" The author is connecting a sense oF a new country and second chances and rebirth. Spring and snow melting could be connected to rebirth, while the geese returning could symbolize a second chance. this is connected to saengs second chance.The author also shows that saeng is getting used to the new country, which shows a sense of hope. Itshows that thereis some hope for her test. " 2 2 2 +9970 4 "I think the author concludes the story with this paragraph because he wants us to get the morle of the story. I said this idea because in the story he talks about orchids, lanno bushes, oleanders, elephant ear begonias, and bougainvillea vires surrounded her. It talks about how these flowers surrounded her to test her. Of her @CAPS1." 0 0 0 +9971 4 I think the Author concludes this in the story because. It is a key information for this story. Because. It is dealing with her mom. She loves to work on the garden and become a garden and have a really job. Like her mom 1 0 1 +9972 4 "Saeng thinks that she has failed because she misses her grandmother. The hiscubus plant that she buys reminds her of grandmothers scent. Saeng spent over @MONEY1 on the hibiscus plant. She needed it to feel a little bit more at home. Saeng feels she had very little time to leave her country, in a blink. Her grandmother would want her to be strong and not cry at the thought of being away from her. Saeng needs to think of the good and smile when she is reminded of her past. Saeng wants to pass the test. next time the hibiscus are budding she must not cry." 1 1 1 +9973 4 The reason I think that the author did it is because wanted you to know what time it took place and what the weather was like then it also so tells you how long she is going to wait like till the snow melts and that is going to be while and when the geese live and return home so this is why I think she tells you what is like. 0 0 0 +9974 4 "I think that this is about winter hiliscus and hedpe tall and lush bad surrounded their garden its lush green leaves dotted with vermilion flowers, She said when she got to the hibiscus she reached out and touched a petal gently. " 0 0 0 +9975 4 "The reason that the author had ended the story the way she did was to leave the reader on the last thought. Also it symbolizes rebirth. When Saeng says, ... this hibiscus is budding ... (Ho @NUM1). She is also describing that they will start over when spring comes. And that leaves the reader with the last thought about Saeng, and how she has overcome living in the new place. Lastly, it ties up @CAPS1 feelings and experiences the whole time she had moved, ... I will take the test again (Ho @NUM1), which tells the reader she will continue to give her new home a shot. In conclusion, the reason for this quote being the last paragraph is to show that Saeng will continue to try to overcome ??? (WORDS NOT @CAPS2) " 2 2 2 +9976 4 "The author concludes story with that paragraph because she wants there to be hope for the future seeing that hibiscus budding in the spring is what Saeng is waiting for. It gives her hope that she will be able to pass that test again. This is showed when she says .. and this hibiscus is budding, then I will take that test again, @CAPS1 the winter ,Saeng hopes she will improve and when the hibiscus buds she will know that it is time to try again .Saeng sees the spring as a new beginning. So that means it is a time to overcme her obstade.I think that obstade or test might be to not cry when she thinks about her old life in Vietnam. When she accomplishes this, she is growing just like the hibiscus " 2 3 3 +9977 4 The author concludes the story with that paragrap for one main reason. 0 0 0 +9978 4 The author is showing that Saeng wants to keep on with her mother's gardening. To take over an elders traditions and what her mother started. 0 0 0 +9979 4 "I believe that the author ended the story with this paragraph to show the persistence of the main character. I believe this because in the beginning of the story when she is walking home, she states that she failed the drivers test. In the last paragraph, she states that after winter is over she will take the test again when her hibiscus blooms. Her persistence allows her to push through life as if she was a plant trying to survive the winter." 2 2 2 +9980 4 The author concludes the story with the paragraph because she wants to do it right next time. Whats its saying is that she can try every year to get it right to impress her mother. In conclusion that what I have to say about the paragraph 1 1 1 +9981 4 " In the story Winter Hibiscus the author @CAPS1 the most likely ends the story with this quote because he wants to show that she thinks of the Hibiscus as more than just a flowers, to Saeng it is also a memory. For Saeng the Winter Hibiscus is like story books, waiting to be read simply by smelling the flower it unlocks wonderful memories of precious time spent with her gentle grandmother from her first home. @CAPS1 the is trying to use the flower to show the reader how much a simple object can trigger a memory, thought and so on. The last sentence clearly states, with evidence from the story, Saeng cares deeply about her past and so she can fit in with life today she must not forgot who she was. By keeping the hibiscus in her garden she can have a beautiful reminder of whose she came from. Therefore one is to believe this reasoning is the assumption as to why @CAPS1 the ended the story Winter Hibiscus with the paragraph selected." 3 2 3 +9982 4 "The author concludes the story with that paragraph for many reasons. For example, it shows a sense of hope, when she says this hibiscus is budding"". That indicates a new beginning or starting over. I think that is the idea the author is trying to get across. Obviously it was difficult for the author to adjust to her new country. For example, she was disappointed that the hibiscus wasnt the same as the one in her homeland. Even though she's feeling hostalgic; this paragraph reassures the reader that the author is willing to give her new country another chance." 2 2 2 +9983 4 "The author concludes the story with that particular paragraph for a number of reasons. The last paragraph states that when they come back ... I will take the test again, (Ho @NUM1). Already upset about failing her driving test, the main character is upset missing her homeland. The buds of the flowers give her hope and essentially, the strength to take the test over again. Also when she was originally in the flower shop, after smelling and seeing the flowers, A wave of loss so deep and strong that it stung Saengs eyes now swept over her ... And in the warm moist shelter of the greenhouse, Saeng broke down and wept (Ho @NUM2). It is obvious that to the main character these flowers mean so much to her; they take her back to her home country, which she was abruptly torn from and misses, they give her hope and they remind her of the things she loves, like her grandmother. In conclusion, the author chose to end the story with this paragraph because that is what means the most to the main character. " 2 2 2 +9984 4 The author concludes this story with this paragraph to show she loved them flowers. That they met a whole lot to her. When she failed her driven test she was sad. An the flower made her feel better. now that the snow is failing she waits untill spring that when they come up and she will have faith and take the test again. 1 1 1 +9985 4 "The author concluded this sentence because he was letting everyone know that Saeng would return to the hibiscus and take care of it still, and that she has not forgotten about it." 0 0 0 +9986 4 "In the story ""Winter Hibiscus"", by Minfong Ho, a teenager, Saeng, moves from Vietnam to the United states. She later takes a drivers test, but doesn't not succeed in passing, but does succeed in finding comfort from her memories of her homeland. The last paragraph states ""When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again."" The author concludes the story with this paragraph for many raesons. These being that Saeng was very upset about failing her test and was reminded of her homeland and the changes she's had to adapt to during this move. The hibiscus plant gives Saeng a hope to continue her jouney even when things get very hard. The winter is this plants time of trouble and sadness, as Saeng's time of trouble and sadness is failing this test and not being at her real home. The end of winter gives both the plant and Saeng a chance to start over and a renewed hope to start over, Saeng will find it easy to get through hardships if she continues to find comfort from her past." 3 3 3 +9987 4 The author concludes the story with that paragraph to get the readers wondering. To show that shes not going to give up on what she wants to do. 1 1 1 +9988 4 "The author Minfong Ho ends the story talking about the test Saeng failed and vowing to take it again because like in the story the test was symbolizing like slightly moving on, just kind of starting her newlife and not living in the old. But Saeng couldnt do that. She bought the flower with all her money because it held memories for her. But I think as the story goes on she kind of realizes she can have both, her old and new life. I think she ends the story that way because she really does want to try again. She wants to be able to please her mom, and herself she wants to be able to move on and starts her new life." 2 1 2 +9989 4 The author concludes the story with that paragraph because saeng relatestnct she needs more time. If she takes a break and does what she needs to then she @MONTH1 be able to pass the test. 1 1 1 +9990 4 The conclude the story this way because he can now expand on this story creating a sequel about Saengs success. Also be ending the story this way the author is showing now a limit Saeng is and now she will stop at nothing until her test is complete. Saeng is having difficulties adapting to her new lifestyle because the plants and the previous luteries that she had are no longer present. In the story Saengs determination is shown when her mother finds out that she spent @NUM1 dollers to have a simular plant. The mother responds by saying their whole garden is worth less than @NUM1 dollers. 1 1 1 +9991 4 "This sentence concludes the passage, to show how when the hibiscus is budding and a new season starts, Saeng will be a new person and will be able to take the test. In this sentence the cold snow, fleeing geese and planted hibiscus can all represent Saeng and what she is going through. They are either cold, ready to leave or restricted just like Saeng feels. But, when a new season starts, the geese come back, and the hibiscus is no longer restricted in a pot, Saeng will also grow up and be able to take the test. This sentence is put at the end to show how much Saeng can now grow because she has the hibiscus, which is growing with her." 2 3 3 +9992 4 "The author ends the story with the sentence provided because , she as she was saying that when you and winter are over there be the time again to get there gardening back to the test with the plant she had planted. " 0 0 0 +9993 4 "The author has concluded the story with a paragraph about Saeng taking the test again another time. The author concluded the story with this paragraph because Saeng wanted to take the test again when the snow melts, the geese return and the hibiscus is budding. She feels ready when that time comes around. Saeng is trying to say to herself that she needs more time to be ready for this test. When she gets more time to be ready for the test, she will take the test again. I think that is why the author wrote the paragraph as a conclusion." 1 1 1 +9994 4 "The author concludes the story with this paragraph. Because when the hibiscus started budding it will give her inspiration to try and past the test again. In order to past the test she wanted to feel like she was home, And to have memories of her home to incourage her to try again. Therefore, this is the reason the author concludes the story with the last paragraph." 1 1 1 +9995 4 The author concludes the story with a paragraph taking the test again to show that the narrator @MONTH1 be upset about being in a new place but she will keep trying. The narrator gets upset when she knows the hibiscus is not like the one's from her old home. This upsets her because she probably misses things that she was used to before. The author uses that paragraph to show the narrator is strong and wont give up on making things the way they were but also showing that she'll try to adapt to her new home. The author does this to show that you should keep trying at something that you love. The narrator will keep trying when the geese fly back and the hibiscus is budding. So the author is saying try if you fail and set goals to never give up. 2 2 2 +9996 4 I think the author concludes the story with this paragraph for many reasons. 0 0 0 +9997 4 I think the author concludes the story with this paragraph because he knows that he meased up on the test and he saying when spring comes back around he will de ready to take the test I know it is spring because he sad when the snow melts. 1 1 1 +9998 4 "When she moved to america she saw all the beautiful flowers that were out in the spring she saw a blossom that caught her attention it was called hibiscus. She felt it could with it that she went to the florist to see if they had it. Back were she could they grew wild, jittering out from the cracks in ceizors walls the blossom remind her of her grandmother its long gray hair freshly wased" 0 0 0 +9999 4 "In the passage winter Hibiscus by monfong Ho, the quote when they come back, Saeng vowed silently, in the spring, when the snows melt and the geese return and the hibiscus is budding, I will take the test again, it symbolizes @CAPS1 new journey in the new country she lives in. In the test Saeng is having a personal discrepancy, missing her homeland @CAPS2 she states I failed the test. This test meant more to then she just failing. She was a test to her ability to function in her new country and she failed. The when they came back quote started above can be analyzed deeply as the snow being her obstacles and the hibiscus being herself. When the obstacles melt away and she buds into a new stronger person she will take the test again." 2 3 3 +10000 4 She will go back to where she started. Its a circle and she will be back the next year where she began. 0 0 0 +10001 4 NO IMAGE 1 1 1 +10002 4 "I believe that the author concludes the story with this paragraph. When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again, ecause that flower budding would make her feel confident about everything. The reason I think this is because that flower reminds her of past time memories of her homeland. Its basically like she has a little peice of home in her new home. An example that represents this is, Not like the kind we had before, this is explaining the new hibiscus is similar, but not the same as the one from home, so this reminds her of home. This is the reason I believe the author ends the story the way they do," 2 1 2 +10003 4 The reason the author concludes the story with this paragraph is to show that Saeng is not just going to give up. She is going to overcome the problem. This is a great way to end this story because the entire story is about overcoming problems and if Saeng just gave up it would ruin the story. But just like she was able to move away from her home land she will eventualy pass the test. The mother was also able to overcome some obstacles. Such as moving away from her homeland and having to plant all new plants. She obviously misss the old plants. You can tell by the way she knew what her gift was. But she is able to deal with that just like Saeng will do on her test the next time. 2 2 2 +10004 4 "Everything in the story is about to change. The winter will change to spring, the snow will melt and vanish, the geese will return, the hibiscus will bud, Saeng will also change and mature as well, Saeng is just like the hibiscus plant as the plant is out of place on the road, Saeng is out of place in the new country and she must adapt like the hibiscus plant. The plant looks different in the United States than in Vietnam because it matured and grew. That is what Saeng must do she must mature and grow in this new country. For example Saeng observed how different the plant looked in the shop window then in did in her home country. She was observing herself and how different she appeared as well. The reason for putting the paragraph at the very end was to show that she had matured already and putting it at the end to show that she had grown. Putting it at the beginning would not give the same effect. The hibiscus plant was able to sustain the harsh winters change. Saeng is able to do that as well and she made the silent vow to take that test again when she has matured just as the things around her have." 3 3 3 +10005 4 "The author concludes the story with the paragraph shown for several reasons. First, the author needs to conclude the story without leaving any questions in the readers mind as to what happens. This is achieved by incorperating the geese, hibiscus and her drivers test into the last paragraph. Next, this last paragraph adds a theme of perseverance to the story. The main character is driven to take the drivers test again through memories of Vietnam lastly, it adds to the character by saying that she will ""take that test again"", she is shown as being realistic and not overconsistent. These are some of the ways that the last paragraph enhances the story." 1 1 1 +10006 4 "The author chose to end the story with this paragraph because it shows that Saeng is starting to adjust to her new home and that she will not give up. You can tell that she still misses her homeland by her reaction to seeing the hibiscus plant, but also that she is growing accustomed to her new home because of how she recognizes the geese and will make the decision if when to retake the driving test based on their migration patterns." 2 1 2 +10007 4 "The author concluded the story with the paragraph because it shows that Saeng was not prepare for this test, because she was not accustom to the place, but after seeing the plants that reminded her of home, and knowing that the spring time is when more will blossom, she will be ready to take the test over." 1 1 1 +10008 4 The reasoning for concluding this story this way is to state that the season of the flowers is over and is to be held off until the spring so that give the author a point where he/she can end the story and begin on a new one for when the flowers come back in the spring so inconclusion this is why the author ends the story with this paragraph that they chose. 1 1 1 +10009 4 "The author concludes the story with ""when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take thattest again"". To show that Saeng is going to take the test again and is not going to give up. This is shown by saying, ""then I will take that test again"". This shows that she has not given up and wants to try again. " 1 1 1 +10010 4 "The author concludes the story with that paragraph because of how it related to when Saeng failed her driving test. But she was determind to take it over when she feels shes. ready and the paragraph sad ""in the spring when the snows melt and the geese return and this hibiscus is budding, then I will take this test again.""" 1 1 1 +10011 4 In the story Winter Hibiscus which was wrote by Minfong Ho. I believe she put it there because it keeps you asking questions. I think because her mom was so disappointed with her that maybe she can change things and make things better. 1 1 1 +10012 4 "The author ends the story by saying when they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test again. she chooses to end like this to show the change of the mood throughout the story. When she gets home her mother noticed the tear staie on her daughters cheeks and her puffy eyes. Saeng felt sad and out of place in the beginning of the story but by the end she felt happy and optimistic. " 2 1 2 +10013 4 "I think the author concludes the story winter hibiscus with this paragraph for these reasons. The first reason is to show that the girl won't give up. She was crying in the store and just very depressed. But, she knows that she has to keep going. It shows a sense of determination. Another reason why I think the author made this the last paragraph is this. It showed her getting used to her environment. I think the author used what she remembers about her country and what she now knows of the new country and puts them together. That way she gets hope from both. For example, in the article it says many of the things she had thought of as strange before, had become.. almost familiar to her now. This shows that she is realizing that she is used to the arrangement right now. So she then gets hope from it. Also, I, think the author did that so that it would add a positive effect on the story. That is why I think the author wrote that as the last paragraph." 2 2 2 +10014 4 The arhuror concludes this story with this paragraph to show people that the story or people in the story have a thing for nature or like writing about nature like whats in nature the change or maybe this story is about nature at its best. 0 0 0 +10015 4 "The author wrotez that last paragraph to give hope to Saeng and the reader. After seeing the hibiscus flower, Saeng is reminded of her old country and feels sad the author write, A wave of loss so deep and strong that it stung Saeng eyes now swept over her. Saeng buys the flower and talks with her mum about it at home. The flower reminds her of home but it also gives her inspiration. That is why she says she will pass the test when the Hibiscus buds bloom." 2 2 2 +10016 4 The author concludes with this paragraph because it fits along with a lot of the story and sums it up well. In the story the hibiscus means a lot to Saeng. Durring the story she relates a lot of memories to the hibiscus. It reminds her of her home and her past so it plays an important role. When she planting it its winter and the hibiscus hasent bloomed yet. So by saying that she will take the test again when it is budding is like saying she will take the test again when its budding again. She is pretty much acting the same as the flower once again showing its importance. And thats why I think the author ended with that paragraph. 2 2 2 +10017 4 "The author concludes the story with that paragraph because its saying that she cant work in the garden in winter, but when the snow melts and the geese return and the hibiscus is budding, are all signs of spring. In the spring, she will take the test again; which implys that she will work in the garden." 0 0 0 +10018 4 "The author concludes the story like this @CAPS2 the Author (Minfong Ho) is telling you what will happen in spring time. I @CAPS1 this @CAPS2 the text say's Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that the test again. This means that in spring the hibiscus will @CAPS3." 0 0 0 +10019 4 because she thinks she will do better in the spring for some reason I dont know if @CAPS1 because she will be in a better mood then and it will look more like her home place 1 1 1 +10020 4 "The author chose to conclude the story with that paragraph becauses it symbolizes Saengs decision to try again. Things in nature are repeatative, seasons change but eventually they appear again, geese migrate but they too return and the author used this as a comparsion to Saengs decision to try for her license again. Just like Saeng the winter hibiscus was out of. As normal environment but was learning to adapt and that inspired Saeng to keep an trying even if she failed because the hibiscus was trying to survive the winter even though it was out of place." 2 2 2 +10021 4 I think that the author concludes the story with that paragraph because know matter what she said or did she had to git the flower because it remids her of where she used to live and how It was there so she stared to cry and the test was not to buy the flower and not to cry and that in th spring she is going to grow her own flower. That is what I think the test is about. 1 1 1 +10022 4 She see if her plant will survive then the winter just like the ones back at home.. And she things will be the. Same. 1 1 1 +10023 4 "Its the start of a new life. She has a new new school and a new plant, Its is like she has a connection to the plant, when it grow she grows stronger and more confident. Thats when she said when they come back when the hibiscus is budding she will be ready for that test." 1 1 1 +10024 4 "The author ends it with that because it shows that she wont give up and that she will give her new country a chance. She ends it with that to say that she will be strong like the flower and that she will stay no matter what! That she will be there, in that spot to see it grow back. That's why I think she concluded with that." 1 1 1 +10025 4 "Throughout this story we are given background information on a girl who deferately misses her true home when we are first introduced to young saeng she is in a flourists shop simply looking at flowers, we soon learn that she is not only looking at flowers but looking a pieces of her home and past, she then purchases a hibiscus which is a flower native to her vietnam. After discovering that she has just failed a test it becomes more apparent that buying the flower is a way to cope with her new situation in @LOCATION1 and feel comforted by her past. The author is able to conclude the story with that satement because it speaks of moving forward without clinging to the past, In the spring saeng will have a new home and find strength in her past, that is what I feel the final paragraph suggests" 3 2 3 +10026 4 "The author concludes the story with this paragraph because,Saeng is determined to pass the test. She knows when its spring and the hibiscus is budding, she will retake the test I think she wants to retake the test because the hibiscus makes her think about her homeland. It makes her feel more confident. She thinks she can pass it next time. The hibiscus makes her happy and overwhelmed. She wants to retake the test. Shes sure she will do better next time." 1 2 2 +10027 4 "I think that the author concludes the story with this paragraph because, it shows that if that type of flower could bloom in different places and go through natural changes than so can she. To me the flower is a symbol to the author that encourages her to keep trying. No matter if you have to start all over and doing it again. Its just this time you will know and would have learned from the past mistakes. Just as a flower blooms one spring it dies in the winter and then comes again in the spring. Thats the same as Saeng failing that test that year she can go back next time and take it again. " 2 2 2 +10028 4 "Guess that she is saying that when winter is gone she will prepared for that winter test again. I guess this because they were not prepared for the winter to come as they were planting. As in the reading she says, ""As if oblivious to the cold, he mother was still out in the vegetable garden, digging up the last of the onions with a rusty trowel. Thats the reason why I believed that they were not prepared for the winter." 1 1 1 +10029 4 The author concluded the story in this manner so that the audience would feel sympathy and understanding for the things that Saeng and her family were going through in this hard time. It makes the reader feel sympathy for Saeng because all she can think of to make herself feel better is her home town and how she got taken away. 1 1 1 +10030 4 He concludes the story because he was another chance to etact the test. 0 0 0 +10031 4 "The author concluded ""Winter Hibiscus"" with this paragraph to emphasize a new life and new chances for the main character. The future setting of the paragraph, spring, symbolizes rebirth & another start from the cold, hard winter. The author takes this to heart including, more events which enhance this symbolized meaning. the author has uses structured choice to carry her toughts. Recreate, when to convey the theme of rebirth, the author uses words like ""the gesse return"" and ""take the test again"" which add to the importance at the home. Also, the literal action of the ""hibiscus is budding"" @CAPS1 rebirth. In winter the plant is dormant & less colorful, but in the spring the plant shows rebirth through about color in its buds. The author finally conveys the theme of rebirth by ending with this paragraph." 2 2 2 +10032 4 "In the story winter hibiscus by Minfong Ho, it tells of a girl who just moved to a new country & is having a hard time adapting to the new land & its people. But I think the author put that quote at the end to lead you to believe to never give up, there is a new beginning & you will make it. I believe this because Saeng thinks to herself, almost reluctantly, she realized that many of the things that she thought of strange before had become, through the quiet repetition of season upon season, almost familiar to her. This shows that has finally has found comfort & is confident, like the geese going to adapt in a new area, & then will come back, & that the winter hibiscus new gives up & will keep living in the new weather conditions every season." 3 2 3 +10033 4 She concludes the things at the end of her paragraph she says a whole thing it means she will look at it when the winter is done. She will be able to retake the test again in the spring. That is what she was writing about 1 1 1 +10034 4 "The author concludes the story with this paragraph because it shows that she is trying to adapt to her new sorrounds. The hibiscus reminds her of her old life and it comforts her. So when she takes her test in the spring she will feel better and more comfortable while she is remembering her old life in a new place. In the story it says that she failed her test and then she bought a plant that reminded her of her old life. The plant brought back memories of her old life and that helped comfort her. The spring reminds her of her old life because the flowers in the garden are blooming, the geese return, and the snow has melted. Saeng feels like she could adapt to her new surroundings with the comfort of her memories of her old life." 2 1 2 +10035 4 "The author chose this paragraph because it fit right like a good conclusion showed for example the word again it means that you did something already and it's over but you miss so you retry what you miss, but in the paragraph it's talking about the nature and how they want to test it!(""again"")!." 0 0 0 +10036 4 The author concludes the story with this paragraph because it still shows how determined saeng is to take the test again and pass it this time. By ending this story with the paragraph the author is creating suspense is probably for a sequel of another story. 1 1 1 +10037 4 "In the short story ""Winter Hibiscus,"" a young girl from vietnam moves to @LOCATION1 and fails the drivers test. After she decides to spend money on a winter hibiscus to remind her of her homeland, The ending paragraph, ""who troy come back, in the spring when the snow melts and the geese return and this hibiscus is budding, then I will take the test again. shows deep feeling towards nature. She feels as when the Geese we ready to return home and when the hibiscus is ready to bud so will she and she will take to drivers test again." 1 2 2 +10038 4 She is talking about the flowers and win she says test I think she means how she looks and exameans the flowers and see the snow fall all over again. It sounds like the author is some one how admayers flowers a lot or maybe just this one hibiscus and how it buddies. Maybe she is just some one how likes to see changes. 1 1 1 +10039 4 "I believe the author adds this passage to the Story to represent determination and @LOCATION1. While Saeng is not originally from @LOCATION2 she is determined and willing to try and. adapt to our @CAPS1. While the winter was cold and harsh in many ways for her, the Spring will Bring foregiveness and relief from her @CAPS2. She will try to pass the driving test again to further herself into american @CAPS1, while the blooming of the Hibiscus will bring her @CAPS4 to home." 2 2 2 +10040 4 "The author probably concludes the story with that paragraph to show that Saeng has realized she needs to be confident, and to also end the story on a good note. Also, the author wraps things familiar with Saeng, and things native to her new home into the last paragraph. At the beginning of the story, the girl seemed very upset and lost in this country, and missed her home greatly. ""A wave of loss so deep and strong that it stung Saeng's eyes now swept over her."" But once she gets home, and tells her mother she failed her driving test, she seems to feel better. Towards the end, after she planted the hibiscus, she sees geese and she feels as if they're ""almost familiar"". The paragraph that ends the selection does a good job of tying her past (the hibiscus), her present (the geese & the snow) and the drama of the story (failing the test) into one." 2 3 3 +10041 4 "She wanted to learn, and do more things. She loved the way the plants looked at the store. Her mother got the plant, went home, and they started planting it. The daughter loved the plant very much. And she said that next year Ill grew a plant as wonderful as the oh her mom was growing." 0 0 0 +10042 4 "I think the author concludes this paragraph in this story to describe how grown up Saeng is now since it doesnt look like she leaves with her mom anymore. To the author probably wants to emphasize the reader @CAPS1 of Saeng, now on for she probably leave since she doesn't leave with her mom anymore. In what happen was just her past and will be memorable to Saeng." 0 0 0 +10043 4 "The author uses that passage to end the story to show that Saeng will try to adopt. When Saeng smells the Hibiscus The familiar fragrance filled her lungs and Saeng [she] could almost feel. The light sounds of her grandmothers long gray hair"" This @CAPS1 that Saeng was looking for things that were familiar to her and reminded her of her homeland. The fact that Saeng paid over nineteen dollars for a plant also @CAPS1 how much she missed her homeland. ""d-d failed the test that Saeng paid. @CAPS1 the reader that she attempted to adapt to her new home but failed. This makes her sad and causes her to miss the way things used to be. at the end of the story she said that ""I [she] will late the test again."" seeing the familiar hibiscus and geese leaver knowing that they will return gives Saeng hope. the last time in the story @CAPS1 the regard they @CAPS2 will always remember her homeland " 3 2 3 +10044 4 The author concludes the story with this paragraph to show that Saeng isn't going to give up. 1 1 1 +10045 4 With the hibiscus around Saeng she will have more courage and also have had more time to adapt in their new home. For Saeng the hibiscus is like motivation and it also reminds her. Of her old homeland. The reason I think the author choose to end the story with the paticular comment is to show that Saeng had in the end found courage and is ready to accept her tasks in this foreign land. 0 0 0 +10046 4 The story concludes that paragraph because its tell you that there changes in the weather and season as much as there is in your life. That you have to sometime deal with changes in your life. The test might be one to see if she can understand her self. There changes in the weather all the time there changes in the spring fall she other that you just got to get over. 1 1 1 +10047 4 "In the story the winter Hibiscus by minfong Ho the writers ends with a paragraph that concludes the story. One of the reasons she concluded with the last paragraph the @CAPS1 she did is because it tells the reader that Saeng @CAPS1 not given up on her drivers test. Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take that test again. This explains in more details when she will take the test Again another years on is because it leaves the reader to think how the rest of the story will go." 1 2 2 +10048 4 "I belive that the author concludes the story with When they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again, was a great way to end it becase I think that she sees how much the hibiscus can take then she can take just about anything mainly the test. Also when her mother said You what? Her mother stared at her incredulously. Sh might have also understood that if her mum could get over being mad then she would over come being upset about the test." 2 2 2 +10049 4 The writes this this conclusion to the end of the story because he wants people to know that the season's are changing and the flowers are going to be dying. He also wants you you to know that when the season changes back the flower will try and fit again with the other flowers. thats what the author means when he talks about taking the test again. 0 0 0 +10050 4 "The hibiscus flower is viewed as a symbol of hope and a reminder of their homeland. When Saeng first sees it in the florist shop, she is taken over by memories of home and how all the flowers grew freely there. I believe the author wants the new flower to represent an opportunity for Saeng and her mother to do the same in @LOCATION1. Planting the flower is a representation of adaptation, since they have moved to a new land. Saeng seems to be using it as a motivation when she says when this hibiscus is blooming, I will take the test again. The paragraph provides closure and a sense of hope, which is an excellent note to end on." 2 2 2 +10051 4 "the author concludes the story with this paragraph, because it tells that if you fail the first their is always a second time just like the @CAPS1 I dies in the winter and it come back alive in the spring." 1 1 1 +10052 4 "The author leaves us at the end of the story saying when the snow melts and geese return and the hibiscus is budding, then I will take the test again. The author is said that because the girl Saeng failed the test but still found something that remined her of her home. She was happy, but the plant were not exactly like the one from home. But she got used to it. The flower @MONTH1 not be the same but its an @CAPS1 flower and she is getting used to beining in @LOCATION1. When she goes back to take the test she will be ready and so will her plant. Her plant will full of life." 1 1 1 +10053 4 "I think the author ends the story like this becuose of Saeng's respect for the plant. Not only does she see the plant as a simple of her home but also as a symble of good luck. In the text she holds the plant in a very high value, having payed @NUM1 coins for it, So I think it ends like this to symbolize that Saeng believes that the best time to take the test is when the hibiscus is growing." 1 1 1 +10054 4 "The author includes that paragraph at the end of the story because it connects Saeng to the geese and plant with symbolism. For saeng, the snow represents her troubles adjusting to @LOCATION1, the geese show her that she is, even now adapting to her new homeland when she geese seem familiar. The @CAPS1 hibiscus was pretty but the new @CAPS2 hibiscus, which symbolizes her since she came to @LOCATION1, is adopted to the mre resilient and withstand the snow which symbolizes her problems adapting to @LOCATION1. For saeng, the hibiscus budding again represents her becoming stronger and overcoming her troubles. She wants to go take the test again when she is stronger. The author concluded the story with this paragraph to connect the Hibiscus budding with Saeng overcoming her obstacles. " 3 3 3 +10055 4 "The author chose to conclude the story like that because she’s saying that it isn’t over and she’s going to take the test again. In the story Saeng says “I- I failed the test” so shes determined to go back when the flower blooms again to get things right." 1 1 1 +10056 4 I think what the author is trying to say is that she will take her driving test again in the spring when the flowers are out because it will make her feel more relaxed. The flowers put the author in a relaxed state of mind where she can focus. 1 1 1 +10057 4 Because she saying when the @CAPS1 grow back she will be @CAPS2 to take the test again. 3 3 3 +10058 4 "In the story winter hibiscus by minfong Ho, the author is concluding the story with this last sentence because its showing everyone that the seasons over for the growing of the plants but when it comes time for the flowers to start growing again she will be back to take care of the plants because its her favorite & they are what she lives for now that she has to take care of them. Also the author probably put the conclusion of the story like that to get people interested in reading more of the story later on because your getting left in a sense of suspense, because you dont know if she really will go back to the plants or just about them. another reason I think, the auther ended it that is because its still snowing she cares about the plans but she isnt gonna worry about them until it is the right time again. For example she says when they come back then I will take the test again, thats showing she isnt giving up on anythin she loves and she will keep trying until she gets it." 1 1 1 +10059 4 "In the story the Winter Hibiscus"", I think the author uses the last paragraph to show that although the memories of her old country would always be with her but she soon will adapt to her new one. Also from time to time she still will visit her old country. For example when the show melts and the geese return"", The last sentences, then I will take the test again, This sentence means that once she is adapted to this country on goes back to her old one she still will enjoy their either way." 1 1 1 +10060 4 "The author conclude the story with this paragraph to show that saeng is going to retake the test over when all these things happen. Saeng shows that she is not going to give up, and that she is going to keep trying. The hibiscus is a lucky charm to her to keep during the test to strive her to pass the test. In addition, the author also conclude the story with this paragraph to show saeng personal thoughts, and how she feels about this test. In the spring, when the snow melts and the geese return and the hibiscus is budding, is a indication that it time to give the test another try. In conclusion, the paragraph is a indication that saeng is never going to forget." 2 1 2 +10061 4 "The author concludes the story with the last paragraph of the story. When they come back, saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibisous is budding, their i will take that test again." 0 0 0 +10062 4 I guess she felt that it was a good way to unit all up 0 0 0 +10063 4 "In Winter Hibiscus, the author concludes with Saeng saying I will take that test, again, it means that Saeng will be ready as soon as the spring arrives and her hibiscus is all in bloom. When Saeng bought the hibiscus, she was sure that as soon as the winter passes with the coming of spring, she is sure that taking the drivers test, again will be easier to overcome the fear and grieving times in a new place. This means that Saeng is able to overcome her fear of a new place. This means that Saeng is able to overcome her fear of a new place. Saeng is also sure that the memories of her homeland will help her, too. In the end, its revealed that Saeng has become strong and has high hopes to see her success be fulfilled in her new homeland." 2 1 2 +10064 4 The author concludes the story with that paragraph because it shows he determination. In the spring it will be hard for the hibiscus to survive because its a winter hibiscus and it also has determination. 1 1 1 +10065 4 "I believe the author used that statement to end the story because by the end Saeng was ready to face her obstacles again, also it shows that she was apprechiating her new environment. The plant that Saeng purchased her mother stated that, its strong enough to make it through the cold months here @CAPS1 its telling Saeng if the plant can make it through the harsh conditions then just maybe you can make it through living in a new country. When Saeng relized that things had a repeation season upon season she must had reliced that she can do it too, and face the driving test again." 2 2 2 +10066 4 "The author includes this last paragraph in the story, Winter Hibiscus to show that the main character still has hopes and has not given up on her new lifestyle. During the story, the main character Saeng reminisces on her not so distant past memories of her native home in Vietnam when she recognizes a certain plant from her country. This is important in the story because Saeng is still unhappy about moving to @LOCATION2 and she begins to cry as she walks home, having bought the plant, to her mother. A wave of loss so deep and strong that it stung Saengs eyes now swept over her. Saengs mother understood how she was feeling, and she was not dissapointed in her for failing her driving test either. Her mother made Saeng feel better by planting the familiar Hibiscus into the garden right away. The last paragraph of the story gives hope to the reader that Saeng will not give up her strength to live a different life in @LOCATION2 that she is not used to. When the snows melt, and the geese return and this hibiscus is budding, then I will take that test again. It is as if Saeng is vowing that in time, she will be happy with her new life, not just passing a driving test. The Winter Hibiscus stands as a symbol for Saeng to be strong in the new country while still remembering her old life in Vietnam. " 3 3 3 +10067 4 "The author MiNfoNg Ho coNcluded the story with ""wheN they coMe back, SaeNg vowed sileNtly to herself, iN the SpriNg, wheN the snow melts and the geese returN and this hibiscus is buddiNg, theN I will take the test agaiN because wheN the plaNt begiNs to blossom she @MONTH1 feel more confideNt and comfortable. At time you caN see how she's triNg to adapt to new surroundiNgs. I believe that the hibiscus represeNts comfort at times of disappoiNtmeNt and, a connectioN to her past expeirences. SiNce the hibiscus represeNts a comfort at times of disappoiNtmeNt, is the reasoN she weNt out and purchased the plaNt. So wheN it SpriNg agaiN and the hibiscus is fully bloomed that why she take the test agaiN because she will feel more comfortable in and with her surroundiNgs. That is why the author MiNfoNg Ho conclued the story the way he did." 2 2 2 +10068 4 "The past experiences of our lives often influence things in our life, weather we consciously know it or not. In this story Saeng tries to go to the flower shop and pass the test of not buying the cestain flower that reminels her of her home, when she fails. She is trying to get over the fact that she is not at home, that things and people that use to be ground no longer are. But there are new things that she is becoming used to. I think that the author ends the story with the paragraph that he did, to show that you can always change. She is trying to put things that make her used further back in her mind, and with time, she can do that maybe even by next year, because it is always possible to do something if you really wants to do it, and the author is showing that Saeng really wants to pass her own mind test, so she can further adapt to change, her mother will be proud of her." 3 2 3 +10069 4 "I think that she was that way to say, hey I didnt over come something and Ill be back next year to take the test again like the hibiscus budding when she snow melts and the geese return @CAPS1 year." 1 1 1 +10070 4 The author concludes the story with this paragraph because he wanted the readers to know that Saeng was going to take the test over again. 1 1 1 +10071 4 "When Saeng said that she will go and take the test over next year. She means trying to plant the plants all over again. When Saeng says Here, let me help, mother. Right then you know that Saeng does want to help with the plants after all." 0 0 0 +10072 4 "The authors choice of the last paragraph in the short story, Winter Hibiscus shows the hope for the future that seang feels. The winter and cold represent how she feels out of place and upset at not receiving her drivers license. In the spring she will have a piece of her homeland blooming and she will be warm again. She will feel ready to take her test again when they came back. This shows adapting to and accepting her new life away from her home and her memories. The last paragraph proves that she was strong enough to move past her hardships and move on" 2 2 2 +10073 4 The speaker @MONTH1 conclude the story with that paragraph because the geese returning and the hibiscus budding @MONTH1 help her with her confidence. She wants to feel like she can do this test. 1 1 1 +10074 4 "The author conclude the story with the paragraph ""when they come back Saeng vowed silently to herself, in the spring when the snows melt and the geese returned this hibiscus is budding, then I will take the test again. She realize she has another chance to pass the test, when the spring blossoms again she begin to garden when the spring returns." 1 1 1 +10075 4 "Saeng finds comfort in memories of her homeland. When she took that test, everything was unfamiliar to her, so she failed, but on her way back something familiar found her. Native plants of her home. There, in a shaft of the wan afternoon sunlight, was a single bloodred blossom, "" "" "" floating in the bucket. Saeng needs familiar things to comfort herself. So when she sees the geese, and this symbolizes change. Like the geese. She lifted her head and watched as their distinctive V was etched. Spring is a time for new beginnings, ""when the snows melt and the geese return and this hibiscus is budding. When the familiar object is at it's best, she will be her best and be able to face anything. Winter is the getting-ready stage." 2 2 2 +10076 4 "The author of Winter Hibiscus ended the story with the paragraph, when they came back, saeng vowed silently to herself, in the spring, when the snowsmelt and the geese return and this hibiscus is budding, then I will take that test again. She did this because she bought the flower when she failed the test so when the flower blooms she will take the test again." 1 1 1 +10077 4 Ill think the author tried two say wean it coming two snow melt like @MONTH1 they she will be come back. Author will because in the spring sometime to written a new book. 0 0 0 +10078 4 "The author ofWinter Hibiscus uses this paragraph to conclude her story because it is a symbol of saengs future .Winter Hibiscus is a symbol of saeng for many reasons. For one, both saeng and the plant are from Vietnam and both struggle to survive and thrive in the new world of the @ORGANIZATION1. Saeng promises herself that when the plant thrives in the spring, so shall she by retaking her drivers test. This symbol of future is extremely important to the story live and this is why ming fon Ho, the author of Winter Hibiscus, chose to end with this vital symbol. " 2 2 2 +10079 4 "The author of ,Winter Hibiscus , concludes the story with the paragraph, When they come back, saeng vowed silently to herself, in the spring , when the snows melt and the geese return and this hibiscus is budding, then I will take that test again .The author most likely chose this as the last paragraph to help the reader understand the message. The message of this story is no matter what happens or what challenges you face, never give up and always keep trying. The author makes that the last paragraph to make the reader think and ponder upon what it means." 1 1 1 +10080 4 "The author concluded the story with this paragraph for one reason. That reason is because Saeng thinks she failed because she got a fake plant instead of a real one. She felt disappointed when she brought it home. For example, she said I failed, talking about the plant. She also compares where she is now to where she used to live. For example, she said its not like the one at home. Thats why the author concludes this paragraph." 1 1 1 +10081 4 "When they comeback, Saeng vowed to herself, in the spring when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. @CAPS1 of all this statement with the story because she likes being in the garden and your not aloud to be in the garden when it snows. Second of all she loves plants and things similar to plants etc thats why the author concluded the paragraph to the story due to the fact that when it hits spring Saeng is going to purchase plants and flowers. Last of all Saeng she sees a familiar plant, later she goes to a flowrist shop to see if it can be purchased and Saeng gets highly upset when something goes wrong with them." 0 0 0 +10082 4 "In the text, when the mother said Its flowers arent as pretty, but its strong enough to make it through the cold months here, this winter hibiscus. Thats what matter This sentences shows that Saeng is just like the flowers. Theyre strong to live through the winter, that shows they are very pretty and strong in the spring. This amphasis that Saeng will be strong and more confident in the spring. Thats why the author put it in at the end. Its also reflected to the flower, how theyre pretty and strong in spring" 2 1 2 +10083 4 "In the short story, Winter Hibiscus, by Minfong Ho, the author includes a paragraph at the end, stating that the main character, Saeng, will take her driving test again. Ho, includes this paragraph to show that Saeng is determined to adapt. Saeng is new to the United States, her and her mother had moved here from Vietnam. Throughout the story she is reminising about her home life in Vietnam. About her grandmother, and the flowers there. Where was me...hibiscus hedge?.. Her gentle grandmother? When at the flower shop, Saeng finds an hibiscus, flower they also had in Vietnam. She sees how it has adapted to survive in the winter here. As she is planting the flower in her backyard, she makes a promise to herself to pass the driving test next spring. She too, wants to become adapted to the @LOCATION3 and beable to live here without missing home too much. This vow she made is included in the last paragraph. The author included it to show Saeng too, wants to adapt to her surrounding and pass the driving test," 0 0 0 +10084 4 "The author concludes the story with this paragraph to illustrate the true meaning of the hibiscus. The hibiscus is symbolic to Saeng in several ways, but the most important is that it represents change and growth and the ability to overcome obstacles. Upon seeing it, she is overcome with childhood memories and sentimentality. However, she must adjust to her new home if she wants to grow as a person. She will survive here, just as the hibiscus will survive through the winter. Also, Saeng vows that in the spring when this hibiscus is budding, then I will take that test again. She is determined to succeed, and the hibiscus itself represents triumph over obstacles. It stands for survival and endurance through lifes disappointments and challenges, from failing a drivers test to starting a new life in a strange and foreign country. The authors choice to end the story with this paragraph exhibits Saengs ultimate understanding of her strength through the symbol of the hibiscus." 3 3 3 +10085 4 "I believe that the author concludes the paragraph like that because he/she wanted to show an important message to the audience. The message that the author was trying to get across was that even though she didnt pass the test she was going to try to Next .year. Ane example of this is an exact quote in the spring when the snow melts and the geese return and the hibiscus is budding, then I will take the test again. This is why I think the author concludes the story like that." 1 1 1 +10086 4 "The author includes the story with this paragraph because since Saeng failed her drivers test for the first time when the hibiscus starts to bud it will represent a change in her life. Also, Saeng use to have hibiscus flowers at her old home in Vietnam so when the flower buds it could show that she has a new home. " 1 1 1 +10087 4 "The author finished the story with, when they come back, Saeng vowed silently to herself, in the spring, when the snows melts and the geese return and this hibiscus budding, then I will take that test again. The reason for conclusion is that it is important for Saeng to feel at home. When the hibiscus buds it wiil remind her of home and this will comfort her, when she feels at peace and at home she will do better on the test." 1 1 1 +10088 4 "The author concludes the story with that paragraph to show she is not giving up on her new home or forget her old one. She shows she isnt giving up when she brings home the flower to plant. That also shows she will not forget her old home. Also when she says, When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take the test again. That shows she is giving her new home another shot and isnt giving up. Another example is when it says, Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon season, almost familiar to her now. Here she is accepting the changes and giving her new home another chance. She is not giving up on it." 2 2 2 +10089 4 "The author concludes the story with that paragraph. She does because she is ready to do the same thing next year. She like spending time with her mom, she likes plants, she likes having fun with her mom. This are some reasons why she concludes with that paragraph." 0 0 0 +10090 4 "The author concludes the story with this paragraph because the hibiscus provides comfort. @CAPS2 Saeng failed her driving test and was new to @LOCATION1, she was frustrated and was missing her real home in Vietnam. The hibiscus reminded her of her grandmother. She writes she closed her eyes and breathed in deeply as the fragrance filled her lungs after Saeng smelled the flower it reminded her of combing her grandmothers long grey hair, freshly washed it brought her comfort in a time of disappointment. @CAPS2 she didnt have her grandmother, the flower comforted her. Although she was disappointed the hibiscus was exquisite and as she said the @CAPS1 word dokor malik meaning hibiscus she savored the feel of the word on her tongue. @CAPS2 the joy and comfort is what the flower brings to Saeng, she will take the test again in the spring when the snow melts and the hibiscus is budding, thus bringing joy, love, and comfort to the reader as they feel what Saeng feels." 3 2 3 +10091 4 "The author ends the story with this paragraph because it relates the idea of the hibiscus to Saeng and her situation in a new country. It shows that Saeng is using the hibiscus and its ability to adapt for inspiration. During the story, Saeng describes how she had always seen the hibiscus at home in her old country. Her mom describes to her that the hibiscus she bought is a bit different from the one back home. But she says its because its strong and was able to adapt to the cold winter environment of the United States. This is what Saeng was able to use as inspiration. She might have failed her lisence test, but she used the hibiscus actions to set a goal for herself. The plant will go through a cold, and snowy winter but it will grow and blossom in the spring. Saeng would use that time to study and get ready, and shell be confident for the test. The paragraph that the author finishes on shows the connection Saeng made with her situation and the plants situation." 2 3 3 +10092 4 "If at first you dont succeed, try, try again. This quote is used by many parents trying to encourage their children or by coaches to motivate their time. The quote can also apply to Saengs situation in the short story, Winter Hibiscus. Saeng fails her drivers test and, when walking home after the test, notices a hibiscus flower which reminds her of her homeland. Sadness encompasses her and she purchases the plant to pocify her grief. She brings it home and is at first reprimanded by her mother but then thanked for buying. While Saeng is planting the hibiscus, she hears the honk of Canada geese which had become familiar to her by then. The text says, Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon season, become familiar to her. This quote shows the adaptation she had to face in coming to @LOCATION1. The author concludes the story with the paragraph to show that like the hibiscus flower, she will adapt to the terrain and toils of @LOCATION1. The hibiscus inspires her to push forward and try again for license as the plant pushed forward through winter." 3 3 3 +10093 4 "The author ends the story this way because Saeng feels a sence of comfort with the hibiscus flower. The flower reminds her of her homeland with her grandmother. According to the story the familiar frogrence filled her lungs, and Saeng could almost feel the light strands of her grandmothers long gray hair. you can also tell she misses her homeland but always keeps it close to her heart whereever she goes. The text states that, it was yet another old friend, a small shrub with waxy leaves and dainty flowers with purplish petals and white centers. She seems to be very close with nature and all of its desirable traits. When she failed the test she bought her @CAPS1 Malik flower, as a sence of comfort. They both decided to plant it in their garden and while doing so, Saeng received a huge boost of confidence to retake the test. " 2 2 2 +10094 4 She compares the paragraph to the story to compare it to school. The test is makeing new friends and doing good on the test and classes. In the paragraph it said Then I will take that test again. That is the reason she is comparing that paragraph to school. 0 0 0 +10095 4 "The author concludes the story with this paragraph to emphasize the Saeng's determination to over come the obstacles of her past experience. For example, the story starts out with Saeng taking a test, while reliving her memories in the greenhouse, she started to breakdown. A wave of loss so deep and story it stung Saeng's eyes now swept over her."" She then buys the plant and takes it home to her mother,telling her that she 'failed'. The mother then becomes understanding and helps Saeng's vow retake the 'test', the narrator emphasizes Saengs determination to overcome the troubles of her past and go on with the future." 2 2 2 +10096 4 Because her school work was the whole reason as to why she was studying flowers in a green garden. And it is obvious she failed the test so when spring starts to show she will retake the test because the flowers will bloom and she can do more study to pass the test and not have to take it again. I get the feeling though she is also looking forward to the spring time coming back now an day so she can enjoy the flowers and the presents of growing and studying. 1 1 1 +10097 4 "I think that the author concluded the story with that particular paragraph because she wanted us to see that Saeng was not giving up Saeng was originally from Vietnam but she moved to the United States. She missed being home so much because nothing was the same. Its not a real one, Saeng mumbled. I mean, not like the kind we had at-at'. She found that she was still too shaky to say the words at home. But once Saeng finally realized that she was beginning to adapt to the life in the United States, she decided that she was going to give the drives test one more try. When they come back in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again.""" 2 2 2 +10098 4 "I think that the author concludes the story with this paragraph because she seems to led comfortable when she saw the geese and plants the hibiscus in the winter and keeps it from dying. In the story it said,""... their faint banks clear and -yes- familiar to Saeng now"". I think this is explaining how she feels after seeing the geese fly over head because she uses to see that in Vietnam. Also, ""when the snows melt and the geese return and this hibiscus is budding, she gains more confidence because she leds like shes back in Vietnam. All in all, that's why the author concludes the story with that paragraph." 2 2 2 +10099 4 I think the reason why the author concludes the story with this paragraph is to allow the reader to imagen what happens next once spring rolls around for Saeng. This allows the reader to use their imagenation to connect to the story. Another reason why the author chose to conclude the story like that with that paragraph was to give hope to the reader that maybe she will pass the test next time. It was also a way to end the story in a good note. 2 1 2 +10100 4 The auther ended the story with that preticular paragraph because like the geese she will be back to try again. Just in case she didnt get to finish JUST about everything she wanted to do and that the auther wanted the reader to know the determination and ambition of the character in the story. Also to show the readers that the characters characteristics couldnt be beat by one winter and that she is going to keep going at it untill she does what she has to do. 1 1 1 +10101 4 "The author of the story Winter Hibiscus most likely concludes it with the paragraph of Saeng vowing to retake the test to show that even in difficult times and new situations a person can never give up and sink into despair and that there always things to comfort someone.In the story, glimpses of @CAPS1 home are given in her memories and from them, the reader can understand what a difficult day Saeng is having. The author is describing these warm, comforting memories to help clash with the cold, bitter day the girl is having. She closed her eyes and breathed in, deeply. The familiar fragrance filled her lungs. Here, saeng recalls a memory of her grandmother and it saddens her at the thought of her home and her loss. The author builds up Saengs despair and upset for the final paragraph. The author has this as the final paragraph because it shows hope. As Saeng says, then I will take that test again.you can feel her hope. Also, the author want`s to express how there is still structure and stability in a changing world and that you can look to the simple things. Saeng says,the geese return and this hibiscus is budding, and this shows how there are some reliable things that can give you security when you think you have none. The author uses this last paragraph to balance the feeling of despair in the story, to emphasize the need for hope and to show that there always things that can give you hope and security." 3 3 3 +10102 4 "The author concludes the story of the paragraph because, the author would like to finish the last sentence of the story. Also at the last of the paragraph is when she is visualizing and putting her effort to the hibiscus. Therefore, her thoughts are appreciated to the plant. The author wanted more evidence to the story. For example, when it said, in the spring, when the snow melt and the geese ruturn and this hibiscus is budding, then I will take that test again. It includes the winter time for the plant. Also, the @DATE2 and spring the plant comes back, which the character saeng will get it back, and visit it." 1 0 1 +10103 4 The auther mad it seem like he did not like it but he loved flowers and he like working in the syr wit the people his mom is anierpaady he liked to see him togod wit his life that come back becus thay liked the place. 1 1 1 +10104 4 "The auther includes this at the end to show how much she cares about the plant and that she seils brought back her back to her childhood. An example of her loving the plant is that rich scent"" (Paragraph Minfong Ho), @CAPS1 examples It felt smooth and cool (paragraph Minfong Ho) An example of to childhood's plan is that she had not even realized she had known but had forgotten. she come back we could reed (paragraphs Minfong Ho) For these ways think that is why the author adds that at the end." 1 1 1 +10105 4 "I believe that the author left this as the last thing the reader will read, so it will be a message. In the story this girl has now moved to this totally new environment and new culture. The only thing she knew of was a flower that grew wild where she lived. This little vow to herself was a message to not give up. Keep on going and if you open your mind to new things who knows what you can experience and learn. So this girl didnt just give up. Her plant was like a representation of a new beginning. When her plant starts over then so will I. Also it can be a representation of her life itself. I say a new begging because in the text, it says," 2 2 2 +10106 4 I think the author wrote that because maybe that how she fells like in the winter she could really show people who she is but when spring come out she like a flower that has been dead all winter 0 0 0 +10107 4 "The author concludes the story with this paragraph because the paragraph before they were talking about the winter hibiscus and the geese. So the author just simply writes another concluding paragraph that just wraps the story up, and the reader walkes away with a feel good feeling." 1 1 1 +10108 4 "In the story the Winter Hibiscus by Minfong Ho it explains the obstacles Saeng went through coming to a different country. In this story Saeng had just failed her driving test as she was reminded of her home through some tropical flowers. Moreover the author writes at the end of the story referring to geese when they come back, Saeng vowed silently to herself, it the spring, when the snow melt and the geese return and the hibiscus budding, then I will take the test again. This part of the story is very important because it examines her growth and hope for change, just us the geese will come back and the hibiscus will change into a buetiful blossed flower. Furthermore it explains to the each that she will not give up and that she will change to the environment just as th plant lives has and the geese come back to the changed environment. That part of the story is very important for the reader, @CAPS1 it concludes Saeng thoughts and hopes for the future wile adapting to her new enviorment. " 3 3 3 +10109 4 "The author could have concluded the story with this paragraph for many reason. I think the author wanted to give an interseting fact about what happens to hibiscus when it snows! for example the author explain how the hibiscus grow and things that are needed for it to grow, like sunlight, water soil, and picking up there waste. Maybe the author figure that explaining that when it snows the process begans all over again the author could have concluded the story with this paragraph for many reason. I think the author wanted to give an interseting fact about what happens to hibiscus when it snows! for example the author explain how the hibiscus grow and things that are needed for it to grow, like sunlight, water soil, and picking up there watste. Maybe the author figure that explaining that when it snows the process begans all over" 0 0 0 +10110 4 "The author concludes the story with this paragraph because Saeng said she failed the test, and when spring comes back then she will take the test again. The last paragraph reads when they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test again. She really does not tell us what test she is supposed to be taking." 1 1 1 +10111 4 "The reason why the said she will wait til spring to take the test again, is to see if shes still like the bitter melon over the Big-mac." 0 0 0 +10112 4 The author concludes the end of this story with this paragraph pecause this saying to take the test again. What she means by this that she will have to do the same thing next year. She will have to addapt to life just like the hibiscus did. She is also saying to do her beest because everything in the world is by living to you fullest. So its aas a good conclusion for Story. 1 1 1 +10113 4 "I think that the reason the author concludes the story like that, is that it awhave ending. also so you know that the story is that they could make more." 1 1 1 +10114 4 What the author concludes that in the spring time when the snows melts and the flower comes back it makes be risk of spring time at home. Which makes her relax. Also spring time is a more pretty time because all the flowers are out and the flower that reminds her at home blessings. 1 1 1 +10115 4 "Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding then I will take that test again. Saeng is going to wait to take the test whe n she knows that she will past the test so she can get her licesned. Saeng wants her licesned so she can drive anywhere she wants to go. So she don't have to get her mom to take her everywhere she wants to go she can take her ownself anywhere she wants. But she has to wait till the snows is melted before she takes her test again." 1 1 1 +10116 4 The paragraph shows that Saeng has a lot of feelings for her plants. She enjoys plants and she loves taking the time to spend with the plants. She means in that last paragraph that she cant wait for winter to leave so her plants will be budding and that she can enjoy her plants. 0 0 0 +10117 4 "The author concludes the story with this parapraph because it ties it all together. I think that the author uses. it also to say that in the spring she will pass the test. I really like the part when she says ""in the spring, when the snows melt."" I like that because it explains what she wants and how she puts her mind to it." 1 1 1 +10118 4 "The author most likely uses this paragraph to show her setting a goal for the cycle to start over. She uses geese as a symbol for spring, when she would start preparing for this test once again. The hibiscus budding in this paragraph shows hope, because it is once again, a start of a cycle as well as an object of reminiscence in the story. In conclusion, this concluding paragraph uses several symbols and devices in order to convey hope, good memories, and fresh start." 2 2 2 +10119 4 The would grow some flowers and water the geese come back to her pond. 0 0 0 +10120 4 "THE AUTHOR CONCLUDES THE STORY WITH THAT PARAGRAPH FOR MANY REASONS. ONE REASON BEING THAT THE AUTHOR WANTED TO REALLY SHOW THE MEANING OF THE FLOWER. ANOTHER REASON IS TO EXPRESS THE THEME. FOR EXAMPLE AT THE END OF THAT PARAGRAPH IT SAYS THEN I WILL TAKE THAT TEST AGAIN., ITS RELATING THAT SMALL TOPIC OF THE DRIVING TEST TO THE LARGER TOPIC OF THE FLOWER. WHICH THEN RELATES IT TO THE THEME OF ADJUSTING AND KEEP TRYING TILL YOU ADJUST. THAT LAST PARAGRAPH WAS QUITE VITAL TO THE THEME AND MEANING OF THE STORY." 2 1 2 +10121 4 "I believe the author concludes the story Winter Hibiscus, written by Minfong Ho, with When they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again, because she is trying to show how past memories can be transformed into hope and determination. After failing her driving test Saeng finds the Hibiscus, the memories of her home land and her grandmother consume her. She buys the plant and puts it in the vegetable garden. After she is done planting, Saeng sees a flock of Canada geese fly overhead. Using her memory of her old home and her family, applied to her new surroundings, Saeng vows to re-take the test, to try again. The author ends the story Winter Hibiscus with that paragraph to show that Saeng will not give up." 2 3 3 +10122 4 "The author concludes with this story to show how Saeng is ready to accept her new life. Once the geese and the hibiscus are back she feel like she's at home. When she feels more at home is when she will be ready to take the test again. The text states run and the geese return"" this hibiscus is budding , then I will take that test again. Clearly the geese and hibiscus remind her of home.Once she feels at home, she will feel at ease. Thats why the author concluded with this pasage." 1 2 2 +10123 4 Why the author concluded with this paragraph was because it showed a restated the main idea of the story and the readers understood what the story was about. That is why the author concluded the story with that paragraph. 0 0 0 +10124 4 "The author explains that she has failed the test. While it is still winter and the hibiscus is still trying to grow it's lovely peddles back. As she tells her mother that she will not take the test again, until the hibiscus starts budding and spring is back." 1 1 1 +10125 4 "Yes, I do think that this concludes the story because after all of that in the story and all that learning about gardening from her mother, she remembers what her mother had said about the hibiscus and its bidding. And what she means by this ending sentence is that when the spring time comes, then she is going to take that test again. the test will determine whether or not she has learned enough about gardening from her mother over the past time." 0 0 0 +10126 4 The author concludes the Story with this paragraph because I guess her grandma died while the geese were flying. Or thats when the flowers start to bloom. 0 0 0 +10127 4 "The author of Winter Hibiscus included the last paragraph to convey to readers that she will be moving on, but still remembering her old country. Before finding the flower, the author terribly missed her old country. ""Its-its not a real one, Saeng mumbled. 'I mean not like the kind we had at-at she found that she was still too shaky to say the words at home, last she burst into tears again."" She missed her home in the other country and was having trouble getting past it. The author could not accept her new country as home yet. Saeng, the hibiscus flower brought back memories of her old country, making it even more difficult to move on. One of the blossoms had fallen off, and carefully Saeng picked it up and smelled it. Saeng could almost feel the light strands of her grandmothers long gray hair, freshly washed, as she combed it out with the fine-toothed buffalo-horn comb."" The flower was too much of a memory. She finally had something from home that she could hold. Gently, she closed her palm around it and held it tight. That, at least, she could hold onto. The author now had a solid thing to remind her of home. This was the first step to finally moving on. Now Saeng needed some time to get use to her new country. Almost reluctantly, she realized that many things that she had thought of as strange before had become almost familiar to her now. Saeng needed just a little more time, almost like a hibernation. She decided once the hibiscus came out of hibernation, and was ready to bloom, she would be ready to accept her new country and move on. Saeng decide the time between fail and spring would be long enough to adjust to her new life. By taking the test, Saeng will be moving on. The author included this last paragraph so that readers can infer that Saeng will take the last steps towards acceptance of her new country and move on by taking the test, although she will look back on her old country through the winter hibiscus." 3 3 3 +10128 4 "The story includes this paragraph because at the very beginnig of the story the girl failed the test. And so when she told her mother she saw that she was upset with it. So after they planted the plant she decided to take the test over knowing that her mother would think the best of it. Also its in there because the story started out with her telling her mother that she failed the test. And if you kept it out people who read it would be like, ok, so her mother just let her fail the test and didnt do anything about it. Plus when the reader reads that the girl failed the test, they are going to be wanting to know if she took it again, and why she took it again if she did." 1 1 1 +10129 4 "The author ended the story with an unconcluded ending. What I mean is the author wrote so that he could keep readers interested so that they would want to read his other books. Also, with an ending of that sort it kind of leaves room for improving and room for a sequal." 1 1 1 +10130 4 "The author concludes the story with this paragraph to show that Saeng is not going to give up until she successfully passes the task he mother gives her.Saeng fails the test because, though she buys a beautiful plant it is much to expensive. But how could you? All the seeds for this vegetable garden didnt cost that much! Saeng becomes very upset and realizes that she has failed her mother. Saeng still plants the winter hibiscus in the ground. Left alone in the garden, Saeng dug out a hole and carefully lowered the winter hibiscus into it. This shows that even though she had failed she wasnt going to give up on the hibiscus because it represented her home. It was very special to her." 1 1 1 +10131 4 The Author concludes the with paragraph because she wont to. 0 0 0 +10132 4 "I think the author concluded the story with this paragraph because it shows that the character in the story is starting to adapt to her new country. In the beginning of the story the character Saeng is feeling homesick and has not adapted to her new country. She is on her way home from her drivers test, which she just failed, and on the way she sports a hibiscus in a flower shop. The hishiscus is special to her because it reminds her of her home country of Vietnam. For Saeng the hibiscus represents comfort in time of disappoint, connection to her past experiences and ability to overcome obsticales. Saeng has not adjusted to this change in her life and it has affected her badly. The author concluded the story with this paragraph because he wanted to show the reader that there will always be changes and obsticates in your life but there will always be something or someone that will help you overcome it. The author shows this by concluding the story with this paragraph and showing the reader that saeng was the hibiscus as her way of overcoming and when she is ready and she has ajusted she will take her driving test again." 3 2 3 +10133 4 "The author concludes the story with this paragraph because hes saying that once winter and springs over and the hibiscus is budding, then Ill start over again and try again. The author is saying saeng cant wait till spring so she can plant her own little garden. This is why I think the author concludes the story with this paragraph." 1 1 1 +10134 4 "This paragraph represents an action that Saeng is going to do over a time period of a year. She is going to build up and change in time for the retake of the test its like a rebirth in a way. The girl wants to be a whole new person for when the test comes up again. Her mom seems to be bothered by every action or choice of her daughters. The daughter suddenly relizes the action for the hibiscus and why it dies. ""... thought the quiet repetition of season upon season."" She relates the flower and geese to herself. Over the year the flower goes through phases dying then rebirth. Saeng wants to get better once she goes through a phase like the flower. Its opens up to be beautiful again. " 2 3 3 +10135 4 The reason why the author concludes the story with this paragraph because when she come back from taking driver's test on the way home she saw winter hibiscus that was so beautiful. Then she went to the store and buy that flowers and it cost a lot of money when she got home and her mom planting vejetable and her mom ark her what is that so she tell th truth and her know that the flower costs a lot of money she get mad with the dheredulously of her how can she do that - Saeng take a big decision that she going to that eventhough her mom mad she she love that flowers I guess because it remaind of in Vietnam. The author put this paragraph I think because that the geese return and the flowers is growth she will take the test again bease that when she buy is no flowers came out yet so when it came out she will go again just to let her know that you see the first time and waite when it growth than you can take the test again In my onpion that is a good ending and also it a good question too. 1 2 2 +10136 4 "The author concludes the story with ""when they come back, Saeng vowed silently to herself...,"" because it offers the reader a conclusion. That passage means that Saeng will try talking her drivers test again once she has adjusted to her new life in a new country. Once she can find familiarity in her surroundings she will feel more at home. Throughout the story, her detatchment from Vietnam makes her feel alone. The hibiscus plant is what first offers her a sense of comfort, ""It felt smooth and cool... just as she had known it would feel."" The ending paragraph shows that Saeng will find more comfort in @LOCATION2 than just a plant and a couple of geese." 3 2 3 +10137 4 "The author concludes the story with this paragraph because when the snow does melt and the Geese return it will be time t plant and work in the garden even more, because with snow on the ground you cant plant but the geese back if the time of year to plant the seed and have are bad flock/fasten grander. The test is to she if she can have a better grade than last years, and year befor that." 0 0 0 +10138 4 The author concluded his storie with that paragraph is because thats how it should end and thats why he ended it like that. 0 0 0 +10139 4 "The author concludes the story with in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. She does this to show now Saeng is adapting and making decisions in her new country just like she did in her homeland. In Vietnam Saeng used to brush her grandmothers hair and help put it into a bun and put a hibiscus in it. That was one of her traditions with it. Also when she used to get water from the well a hibiscus would sometimes come up with the bucket. Both these thus the hibiscus was seen as a comfort object, now as she is in the states, she is trying to put it to good use, while also taking into account what repeats in the states. She notices that the geese come back in the spring and leave in the winter, and plants start to grow in the spring. By her taking the test again in the spring it is symbolizing that she is ready to start test just like the hibiscus that is going to bloom. The plant being potted in her garden and Saeng moving her both signify change, but a rembrance of old traditions, and a space for new. " 3 3 3 +10140 4 The author put that sentence in the story because she feels that will give her enough time to get the test right and cause she likes geese. 1 1 1 +10141 4 "The author concludes the story with this paragraph To show the final determination and strength Saeng has been given. Its almost as though its taken this plant To show her to get back up and pass the Test. The plant becomes a comporting item that reminds her of her homeland. She returned with the plant To show her mother but found herself too shaky to even say the words at home"". This shows how much she misses home. But she is able to realize that this is her new home and everything is becoming more familiar To her. " 2 2 2 +10142 4 "She ends it with this sentence because its a sign of new life. Just as the winter that killed the plants ending life, the spring will come and start anew. This is how Saeng feels because she left her country and all the memories left behind she feels out of place like the winter hibiscus but as the spring comes shell feel as anew person ready and able to take challenges as she said here through the quiet repetition of season upon season, almost familiar to her now she describes that with a new season comes new changes and upon those changes she will go on to take the drivers test again." 3 2 3 +10143 4 "The author end with that paragraph for several reasons. One is to show that she has failed this time, more opportunities will come later. Also, it shows that even though bad times befall her now, good times are still to come. For several reasons, it was a powoful efficient way to end the story." 1 1 1 +10144 4 "The author uses symbolism to convey a different message. Saeng said in the spring, when the snows melt and the geese return and this hibiscus is budding, and then I will take that test again. The author uses the hibiscus to symbolize Saeng gets older like the hibiscus, that then she will be ready to take that test again. The author uses symbolize to convey more of the story." 2 2 2 +10146 4 She wrote that response to tell everyone that she will be ready but the time when spring comes. Then she take it and pass. 1 1 1 +10147 4 The author concludes the story with this paragraph because Saeng wants to start planting again. I know this because Saeng life revolves around planting and @CAPS1. Saeng and her mother get there food from what they plant. So all @DATE1 they spend most there time in the garden. growing crops to sell and save. They save for winter and sell to get there equiement to continue whot they do. The part she talking about in the paragraph that say when they come back talking about the geese. She loves the geese flying over her head and landing in the yard when she outside on a beauttiful day @CAPS1. when The snow melts she wants to get back at in the soil on her hands and knee to start planting again. Once the hibiscus start budding everything else starts growing. Saeng live revolves around @DATE1 planting. The author put this paragraph in the story because this is what saeng wants to do more than anything. 1 0 1 +10148 4 "In the conclusion of the Winter Hibiscus Saeng notes how she will retake her driving test in the spring when the snow melt sand the geese return.The spring is when these events occur along with the annual budding of the winter hibiscus. Her family had moved from Vietnam to @LOCATION2, and she had bought a winter hibiscus plant to remind her of her childhood. When it blooms, she will retake her driving test because the body will bring her the hope of a new beginning in her life, and as a citizen in @LOCATION2." 2 2 2 +10149 4 In the short story Winter Hibiscus a young girl named Saeng moves away from home. This short story is the girl is trying to adapt to the new lifestyle and changes. 1 1 1 +10150 4 "The author concludes the story with this paragraph because she want the reader to see that saeng will not stop until she passes her drivers test, just like the geese wont stop until they are in the south for winter. the author is trying to show the beauty of trying again and going through your obstcles to your goal." 1 2 2 +10151 4 "In the stoRy WinteR Hibiscus"" by @CAPS1 Ho, the authoR leaves the stoRy off with a poweRful ending. The ending was When they come back, Saeng vowed silently to heRself, in the spRing, when the snows melt and the geese RetuRn and this hibiscus is budding, then I will tRy the test again"". Basically the authoR concluded the stoRy with that because it shows she's poweRful, that she's willing to tRy and make heRself stRongeR, that she's willing to tRy again, and that she wants to help heRself. Text examples to pRoove this would be, then I will take the hibiscus test again,"" ""Almost Reluctantly, she Realized that many of the things that she had thought of as stRange befoRe had become..."", and ""TheRe was a fRail, wiRy beauty to heR that touched Saeng deeply."" All those statements help backup why the authoR might leave such poweRful paRagRaph foR last." 1 2 2 +10152 4 "Thes Author, In the story Winter Hibiscus"" concludes the story with the paragraph to show how often Saeng gets tested by her memories. Saeng has ""tested"" erlier in the story when she was in a flourist. Memories come rushing back to her like a flood and she tried to feel the same as she did long ago whe her grandmother was there, and she realized that things in her memories were long gone, so she wept. Saeng reported to her mother that she had failed the test, and bought the plant to try and comfort herself. Her mother was very understanding and accepted it. Saeng planted the habiscus and at the end says that ""In the spring when the snow melts, this hibiscus is budding, then I will take that test again"". Saeng knew seeing the flower again will make her cry, will make her memories come back, she will be re tested." 2 1 2 +10154 4 "In the story ""Winter Hibiscus"" by @CAPS1 Ho a girl named Saeng failed her drivers test that day then vowed that she would retake from the spring. She ends with this statement to say that it is a new season and a new beginning for her into her new life. This archetype being the changing from harsh cold winter to nice warm spring time shows that the trouble her mother and Saeng would get better. As hard trouble winter left than their is calmwarm new beginning spring. Saeng knows this and knows that she is going to pass." 2 1 2 +10155 4 "The author concludes the story with this paragraph for various reasons. For example, the whole passage is talking about how the hibiscus flower provides Saeng with the ability to overcome obstacles, and comfort her in a time of disappointment. This ending paragraph shows that in the spring, when the hibiscus is budding, and everything is beautiful again then Saeng will take her test again. She knows that with the help of the hibiscus plant, that she will pass the test. It shows that her hope and trust to pass the test comes from the hibiscus flower. The plant with waxy leaves and dainty flowers with purplish petals and white centers will provide her the strength, determination, courage, and will power to pass the test in the spring." 2 2 2 +10156 4 "In the story Winter Hibiscus, the author ends with the statement, ...then Ill take the test again. This shows that Saeng is willing to try to adapt to this new place she lives in. That is what refers to when she says test. For example, in the story she said, I-I failed the test, when her mother asked her what was wrong. She spent so much money on that plant hopping to stay home in her mind. She just couldnt handle that. She ends with the positive statement because it just sends the message that she looks foward to a bright future in her new home." 1 1 1 +10157 4 "In the story winter Hibiscus by Minfong Ho the author concludes the story with that paragraph for many reasons. She puts in examples from the story that could help find these reasons. One reason is that we know she wont give up. In the story she says Then I will take the test again. It tells us that she will keep trying and is determined to do so. Another reason is that shes trying to tell us that there is a future for the hibiscus. How is when she says and this hibiscus is budding, that the hibiscus has a chance to change and get use to its surroundings, just like the girl in the story will be doing. Last reason is that it tells us that she is and will be doing her best. When she says she realized that many of the things that she had thought were strange, almost familiar to her now, @CAPS1 trying to get use to her surroundings and now realizes she can. In the story there are many reasons to suspect shy she ended the story with that paragraph. She gives examples in the story that makes many people get many" 3 2 3 +10158 4 "The author of ""winter Hibiscus"" concludes the story determined to pass the test after the winter is over and the flower is budding. This shows the correction between the plant and the narrator and the hardships of each. The winter represents an obstacle for the flower, but it will live through it to thrive in the spring. This gives the author confidence that she too can make it through her hardships to thrive. Another hardship that she and the hibiscus both @CAPS1 is being ""root bound."" The author misses her home oF Vietnam very much. However, both oF them must and will adOpt to their new environments.." 3 2 3 +10159 4 "The author concludes the story with that paragraph because it shows that she misses her home and that affected her driving test. At her home country it was warm and she had all her family memories. In the new country it is cold and snowy, something she isnt used to. It states she will take the test again when all them things happen because it will feel like her home country and she will be more focused on the test and not what she misses." 1 2 2 +10160 4 "The author Minfong Ho concluded the story Winter Hibiscus, with that certain paragraph to show that Saeng would not give up, that she was determined to pass the driving test and also in a way get used to her new home. It is kind of like a motivation, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The motivation is the flower, bringing back good people memories that made her happy and believed in her. Minfong also concluded the story the way he/she did to say, by next year Saeng will start fresh. To become happy with her new life and not dwell on her past. Saeng says, .. in the spring... its the beginning of a new year to start over, and rejoice. This was a really good way to end the story, because it sets a positive vibe. Its letting the readers know that Saeng is a strong person, who can remember the past but move on to a new day and life. And I think the author is trying to point out that everyone should have the strength to do the same. " 3 3 3 +10161 4 She ended it with that paragraph because she wanted to prove even though she misses the old centry she will adapt and survive. 1 1 1 +10162 4 "I think the author conclades the story with this paragraph because it sounds hopeful. She wasnt adapting to her new home very well and that made her feel hopeless.Saeng failed her driving test which only made things worse for her. To make things better, she bought a hibiscus that reminded her of her old home. She found the plant to be very comforting and it helped her get passed the tough times. In the last paaragraph, Saeng is looking forward to the spring so she can retake the test and hopefully pass it this time. I think the paragraph provides a feeling of hopefulness which is way the author concluded the story the way they did." 2 2 2 +10163 4 "The author concludes the story with this paragraph to show that Saeng will not give up and there is still hope. It is also to teach the reader to have hope and patience and the knowledge that things take time. Saeng failed the test of not giving into her sorrows and misery of missing her country. She says, Almost reluctantly, she realized that many of the things she had thought of as strange before had become, through the quiet repetition of season upon season, almost familiar to her now. This shows that she is adjusting. So by ending it with this and comparing to the geese, its showing that she is getting stronger. She will take the test again because she wont give up." 2 2 2 +10164 4 "Clearly From rending the story Winter @CAPS1, the author @CAPS2 this phrase when they come Back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test Again in the story because the passage relates to the title of the story Winter @CAPS1." 0 0 0 +10165 4 "The reason the author concludes the story with that paragraph is because, even though Saeng didnt do well on her last test, Saeng will go back and take it again so she can pass it. The author is showing Saengs determination to pass the test and do better next time." 1 1 1 +10166 4 I think the author ends the story with that paragraph because it is linting the plant that stands for many positive things to the character that failed the test that the really wanted to pass. Both the character and the plant show perservirance and I think the author is trying to send a message to the reader to never give up on something you want to accomplish. The plant gives an emblem of perseverance because it survives through the harsh winter. The main character isnt giving up on the test she wants to pass. The author is giving a message not to give up. 2 2 2 +10167 4 "At the end of the story the author says when they come back in the spring, whe the snows melt and the geese return and this hibiscus is budding, then I will take that again. The author concludes this at the end because she felt like she didnt do her best because she failed so when the spring comes again She is going to retry to do it and hopefully this time she will past. " 1 1 1 +10168 4 The author concludes the story with this paragraph. Because she wants to come back an an do smell test again when the snow melts and the geese return. 0 0 0 +10169 4 "The @ORGANIZATION1 is about a girl named Saeng She is a teenager her family just moved to the United States from Vietnam, Saeng failed her driving test and on the walk home discovers this beautiful plant named Hibiscus she falls in love with the Hibiscus. Saeng's mother has a garden she is always planting things a using plarts a veggies from her garden for dinner. The author conclude a paragraph that says where the Hibiscus plants are budding in the spring Saeng with take the test again. I think Saeng says this because she wants to see the beautiful plants When she passes the test and she thinks seeing th Hibiscus will help her passthe driving test." 1 2 2 +10170 4 I think the author concludes the story with that paragraph because she is giving herself hope on passing her test. The hibiscus will have started sprouting and the will give her the strength to take the test again and hopeful pass it all because of the winter hibiscus reminded her of home. 2 1 2 +10171 4 "The author concludes the story with the paragraph of ""when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"" because this paragraph can show that the hibiscus is the reason why Saeng wants to try the test again. If the hibiscus is budding after the snow melt and the geese return, then she can do as the hibiscus be strong and wont give up on her test." 1 1 1 +10172 4 The author concludes the story with this to show that saeng wont give up. It is possible to adapt and try to love whats around you. Saeng struggled to get out I-I failed the test and couldnt say at home this shows her insecurity and lonleiness for the new world around her and by saying she will try again in the spring gives the reader hope that she will adapt and love her surroundings. She goes through an expirence today that old life and comparing it to the one she is living in now they have some simalarities and because she will try again in the spring means she has decided to go to give a new place a chance. 2 2 2 +10173 4 "The author concludes the story with this paragraph because she says Then I Will take that test again she believes in the Flowers. she and the Flowers both adapte to there circumstances. They both being determined to @CAPS1 in @CAPS2 places. They both overcome obstacles. Maybe she wants to see what lays ahead. she hopes she is right about the Flowers maybe, she likes the spring." 2 1 2 +10174 4 "I actually like the way the author concludes the story with this paragraph. It basically sumarizises the story and sums it up into few words that would want you to wonder what happened next, and if there is a sequel. This is a very good story that I personally can relate to in many ways." 1 1 1 +10175 4 The reason why the author concludes this type of senerario is simply because the author has a pain to cross and or a situation in this particular author you know son but if you get it straight youll open your eyes and see that its your time to shine you might as well grab it before you loose your chance you only get one day to prove you are worthy to the people. 0 0 0 +10176 4 The author concludes with this sentence because he is showing the girls cofidence in herself. It also gives her enough time to get ready for the next test. Also she knows she will be ready when her flower starts to bud. 1 1 1 +10177 4 Why did the author concludes the story with this paragraph. Is so he can right another story budding on vowed silently and he will right the. Story in the spring when they come back 0 0 0 +10178 4 The author concludes the story with this paragraph because she was saying that if it is possible for these things to happen then she should be able to take the test and pass it. She was comparing things together that she knew that do noot go together. For example she said that in spring when the snow melts and the geese return and this hibiscus is budding then she would take the test over. She meant that if the thing she likes the most overcomes its obstacle then she would do what hurted her the most over again. She doesnt know if she takes the test over she would keep trying over and over until she passes it. In the story she doesnt know to fit in. All she knows is what she learned in her country . All she have to do is try harder and she maybe will be able to pass his test . 2 2 2 +10179 4 "I think the author concludes the story with this paraghragh because when she told her mom she failed her test she was crying, But I think it was deeper than that. I think she missed home so much that she couldn't concentrate. She had to cry about something because she didn't want to let her mom know that she misses home." 1 1 1 +10180 4 "When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The author concludes the story because as if oblivious to the cold, her mother was still out in the vegetable garden, digging up the last of the onions with a rusty trowel." 0 0 0 +10181 4 "I believe the author concludes the story with this paragraph because it is showing that the hibiscus inspires her and gives comfort that no person could try and do. For example, after Saeng failed her drivers test, she was disappointed. On her way home she saw a hibiscus and went to a florist shop to try and buy it. Saeng took a peddle from the plant and held it tightly while she closed her eyes. The plant reminded her of her real home in vietnam which she loved. The hibuscus became a form of comfort for Saeng since she had just failed her drivers test, even though the plant was not the same as the one at home. By the author ending the story with Saeng saying she will wait until the hibiscus starts budding to take the test again, it shows that the hibiscus helps her to overcome obstacles in life and it helps her to get through hardships she faces." 2 1 2 +10182 4 What Saeng means at the end of the paragraph is that where it is a seasson for those plants she will take the test again. The test to begin to like like the plot. Like features and characters about. Also the history about these plants. 0 0 0 +10183 4 "She is demanding to not take the test again if the winter hibiscus don't come back she was upset that she had failed the test. She spent most of her day looking at the hibiscus but she was still upset that they werent the real ones back at home. Her mother said they are strong enough to make it through the winter. when they come back Saeng vowed silently to herself in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again" 1 1 1 +10184 4 The author concludes the story with this paragraph because is symbolizes the hope that things will get better. The author ends with hope because the flower symbolizes the girl and the girl saying that if the flower can survive the year. So can she. This symbolizes hope because the girl is realizing that it is going to take time before she can adapt to her new country but eventually she will. This is meaningful because the girl considers the day that she had to be horrible and that this statement ends the day on a good note. The girl spends the entire day wishing that she were back in her own country and missing her grandmother and friends. But this paragraph is the girl vowing a promise to her self that she will withstand the winter until spring and it will get better when she can take the test again. The entire story builds up to this turning point when Saeng realizes that she will make it through this struggle just like this flower will make it through the winter. Saeng realizes that it is going to take time for her to adapt to this new and strange country and the new lifestyle that she must adopt 3 3 3 +10185 4 "The author concludes this story with this sentence, because it shows hope for the future. This sentence lets readers know that times are hard now, but in time things will get better. Saeng might have failed this test, but shes not giving up hope on passing it. She believes she will pass that test in the spring, when the time is right. Saeng might miss her home, but she wont tell that interfer with her future. That is why the author concludes the story with when they comeback, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return andthis hibiscus is budding, then I will take that tests again." 2 1 2 +10186 4 "What the author is talking about is that the snow was melting and the spring is coming. I guess what they mean is that flowers, trees and grass are going back beautiful. Also he was letting us know that spring is here and that is not winter nomore. Thats why she start to plant plants in the winter. So in the spring that can grow out to be nice and beautiful for the spring. Thats what i think the author meant. Also thats the reason why he put that in the paragraph. He should of add more to the paragraph like how the plants and stuff was growing so beautiful. He shouldn't add more details to let us know, what was talking about in this paragraph." 0 0 0 +10187 4 "The author chose to end the story in this way because it effectively ties in different aspects and principles of the story. For example, this sentence includes both the geese and the hibiscus, representing her new home, and the old, together in harmony. It also states that ""... Saeng vowed silently to herself... I will take that test again,"" which relates to the determination of the hibiscus flower, which struggles persistently through the winter. A lot of wisdom can be gathered from the symbolic messages hidden within that final sentence It implies that, though the past @MONTH1 be behind you, it is with you in your heart as you face new challenges, and if you are determined, those challenges can be conquered." 1 2 2 +10188 4 "The authar concludes the story with the paragraph they because it shows saeng determination and her overcoming her obstacles of being new in a country. With all of the doubts saeng had right after her test it is very big of her to come to this conclusion of retaking the test, Here, let me help you mother,she offered (HO). With her mom comforting her and telling her it is @CAPS1, gives saeng the boost she needs to help her mother and think to herself that she cant let just one thing hold her back in life. the support saeng has she will definetly pass the test the next time." 2 1 2 +10189 4 "In the story winter Hibiscus the author Minfong Ho ends with when they come back, Saeng vowed silently to herself, in the spring when the snows melt and geese return and this hibiscus is budding, then I will take that test again."" she ended with this show her determination to do good in her country and show that memories of her grandmother help her to strive for the best in her new country, in her new home. In the beginning of the story Saeng is at a flower shop and she sees all the flowers of her home country growing in poto. At the sight of all these flowers memories flood back to her, memories that bring her joy and sadness. Then when she returns home she tells her mother that she failed the test you can tell from her actions that she is disappointed, I-I failed the test Saeng did not dare look her mother in the eye nervously tore off a leab,shredding it to bits. After a while she planted the flower in the vegetable garden. The buying and planting of the vegetable shows that Saeng wants to remember her grandmother and home. Thinking about her grandmother helps her to survive for better, helps her want to succeed in her new home. Memories of her grandmother make her sad but in away make her happy. " 3 2 3 +10190 4 "The author concludes the story this way with a quote that says she will get another try at something. Many authors end stories at a diff way because it makes the reader wants to go on to a sequal or the next story, and I really adds a twist to the ending. Also another reason a author would end like that is because they want you to work your imagination so you picture what happens next. Using this is effective because you know what has happened and It make the reader wonder if she fails or succeeds the next time around." 1 1 1 +10191 4 "The author closes the story with this paragraph to show that Saeng is willing to try again. Even though it @MONTH1 not be right away, Saeng wants to try to see all of the flowers that remind her of home again without breaking down. She can tell that although her mother is understanding, Saeng has let her down a little bit. But how could you? You know how much wewhat happened? when her mother says this, she feels that she has let her mother down. But then, Mrs. Panouvong expresses that she is glad Saeng got it, after hearing that she had failed. Sensing her mothers inkling of disappointment, Saeng wants to try again." 2 2 2 +10192 4 "Most likely the author concludes this story with that paragraph because the author wanted to show that Saeng was a very determined person. The author wanted to show readers that Saeng was a strong character because throughout the story she seemed very determined to pass the test for the first time. But when she failed, the author wanted to show that Saeng was not going to give up hope and that she was going to take the test again." 1 1 1 +10193 4 The author concludes the story with this Paragraph because so you can get a view of what she is saying and also so you can understand it from her situration she was growing up like for example she said that 0 0 0 +10194 4 "The author concludes the story with the sentence ""when they come back, saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"" because he is making a point about immigration. The point the author is making is that when immigrants came to @CAPS1 they were told to forget where they were from . The word test in the story means getting used to @LOCATION1 and forgetting her homeland. Saeng says thoes words because she failed the test and bought something that reminded her of her homeland. In conclusion the Author is describing how immigrants were treated and told to forget who they were because their in @LOCATION1 now." 0 1 1 +10195 4 In the story Winter @CAPS1 the author was trying to saying that Saeng was from somewhere then where he is now. In the text It says It was like walking into another world so he is there thinking like no boby know him except for him and him only. 0 0 0 +10196 4 The author concludes this story with that paragraph because its show signs of hope and that knowing that spring will come again. For the family and that everything will be ok. For them also. The girl will makes friends also when spring comes. 1 1 1 +10197 4 "In Winter Hibiscus Saeng took her drivers test and failed it. She she wants to try and take it again in the spring. I think she ends the story say that because in the spring the hibiscus plant that she got and her and her mom planted, will be growing and blooming and the geese will be back with makes her feel more at home. That way she will feel comfort and be able to take the test and pass, because it will remind her of being home. " 2 2 2 +10198 4 "In the end of the story they say that she will take the test over again, in the spring when the geese come back from the winter fly. What they are saying is that she will make a fresh start in the spring when the geese come back, so she would just be starting all over again fresh new start to a new year and a new time to study for the big test and time to regroup from the last test that she took and failed the test she will just get a new start and a new chance to do something over again. Her mom was in disbelief when she found out that she failed the test, her mom said to her that it will be ok and you can take it over again, in a new season," 1 2 2 +10199 4 "The author concludes the story with this paragraph because she is thinking what it will be like when all of this happens. Saeng said; when they come back, she vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again." 0 0 0 +10200 4 "The author of the story concludes the text with that paragraph to end on a good note and show hope for the future. First, throughout the story Saeng felt lonely and depressed because she missed her home in Vietnam. With all this depression Saeng saw the winter hibiscus that reminded her of her childhood memories. She felt a little hope for adapting to the new environment and new life. The flower represented the light and hope for the future. Next, it shows perserverance factor in the story Saeng fails her drivers test and came home feeling unacomplished. When she says she will retake the test in the spring when the hibiscus blooms it shows perserverance and never giving up. Lastly, the author ended the passage with that paragraph to end on a good note and show a positive outlook on life. No matter where you come from with love and perserverance you can overcome any obstacle. Whether it be your school, tests or home with a little hardwork and faith you can achieve." 3 3 3 +10201 4 "The author concludes the story with the paragraph. When they come back, Saeng vowed silently to herself, in the spring when the snows melt and the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, to show thatshe will do this once she has gotten use to the change of her new country. When she says, When the geese return their faint honks and flying overhead are familiar to her now season upon season. Also when the hibiscus is budding because this will remind her of her home in Vietnam seeing flower and hearing these geese will give her the confidence and encouragement to retake the drivers test." 2 2 2 +10202 4 "MY detail on Saeng vowed silentlY to herself because she had difficuiltY makeing new friends. She like to plant stuff around her because she feels like Plants are her friends, Saeng took the shovel and finished the planting for her mom that make Saeng feel so good. about herself." 0 0 0 +10203 4 The author of Winter Hibiscus decided to end the story with this paragraph because its like a new beginning for saeng. In saeng moves and fails the test .The winter hibiscus comforts her from the memories of where she used to live. It gives her hope and in the winter it wouldnt be as nice as it would be in the spring. Spring is also time for new beginnings because in the winter everything dies and comes back to life in spring .saeng feels she would take the test as a new beginning. From my personal experience I always do spring cleaning because I want to begin fresh. Spring is also filled with fresh air and gives me inspiration to do good. This could be why saeng wants to take the test in the spring time. Therefore the author of Winter Hibiscus decided to end the story with that paragraph because they wanted to show how saeng wanted a new beginning. 3 2 3 +10204 4 "Authors sometimes conclude a story with a certain paragraph describing an action that will take place in the future. In the story Winter Hibiscus the author concludes the paragraph by saying when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. One reason why the author concludes the story with this paragraph is to help show that things will change come spring. For example in the story the girl saids I-I failed the test. By her saying this and talking about how she failed her driving test come spring she can change. She can get better, so that this time she will pass. Also, The ""winter hibiscus was in the ground now, and @CAPS1 tamped down the soil around it. This quote helps show that the hibiscus is being planted now, but come spring it will have changed color and have bloomed. In conclusion authors end stories with a paragraph like this to help show the changes that could happen in the future." 2 2 2 +10205 4 "The author, Minfong Ho, concludes the story with this paragraph for many reasons. The budding hibiscus symbolizes comfort for her. When moving to @LOCATION1 she couldnt take all her friends a possessions with her, but she could bring memories. The flower reminds her of home, which is comforting after she failed her drivers test. In addition, the geese returning symbolizes a new beginning. After being away for so long, the geese returning ushers in springs a time to start all over after a dreasy winter. Finally ;,.then I will take that test again. @CAPS1 that one should never give up. Even though ve was hard for her to adapt to a new country, she made friends a tried @CAPS2 foods, like a Big @CAPS3. Therefore, Minfong Ho concludes the story with the paragraph to show comfort, new beginnings a never give up." 3 3 3 +10206 4 "The reason why the aurthor wanted to put that last paragraph down because they want to keep the reader interested in the story. Another reason why she/@CAPS1 put that in the story; @CAPS2/@CAPS3 it is letting the reader know that plant will never give up." 0 0 0 +10207 4 "The author concludes the story with the quote, when they come back in the spring, when the snows melt and the geese return and the hibiscus is budding, the I will take that test again, to show that she is encouraged by the memories of her homeland. For example, in the story it stated that she realized that many things were similar to things in her homeland. As the seasons went by she discovered the similarities. The spring time reminded saeng of her home, so when at comes she will be motivated to take the test again. In conclusion, the author included the quote to show how she is encouraged by memories of her homeland." 1 2 2 +10208 4 "The author concludes the story with the main character vowing to take the drivers test again to symbolize moving forward. Saeng felt a shock of recognition so inffuse, it was almost visceral. A pone stumbling to a florist shop the main character sees a flower that reminded her of her home land, Vietnam. Here, let me help, mother. In relieving her mother in the task of planting the seed that she had bought she began to mature. After reflecting on the memories of her past and coming to peace with there there was nothing left stoping her from moving forward. when they come back I will take that test again. As she sees geese migrating south for the winter in a v formation she sets a goal for herself and uses that goal as a tool to help herself grow and move foward in the new country shes in. The main character vowing in Winter Hibiscus symbolizes moving foward." 3 2 3 +10209 4 It shows in this time of doubt that she will overcome. In the story the plant showed hope and in showing this gave her hope. All the memories that she recalled had made her sad at first but in the end gave her hope. 1 1 1 +10210 4 "I think the author concludes the story with that statement simply because, mabe he is trying to send out some sort of message to people and get their attention The author also could of concluded the story off with that statement because mabe he Just felt like he need to do that, mabe he didn't have a particular reason for doing it." 0 0 0 +10211 4 "The author of ""Winter Hibiscus"" concludes the story with the paragraph ""When they come back,Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then she will take the test again"" because its sympatizing Saeng ability to overcome her sorrow and give the test another chance.this is symbolised by when she says ""when the geese return and the hibiscus"" After fail of the test. She wasn't own considering retaking the test, but instead, just wished she could return to her old home and not how to think about it. But much like the geese returning in the spring, she says she will retake the test. She is like the geese because they overcome and adopt the cold harsh weather by flying elsewhere and returning when it's warm, like her she must wait until she is more ready and confident to take the test the second time around. The Hibiscus budding is symbolizing her strength and determination to pass the test the second time she takes it,because just like her the hibiscus survive the cold weather months, @CAPS1 bloom in the spring so must she last through the weather to pass in the spring. That is why the author consider the story with the paragraph to show that she hasn't given up and will take the test again, A sured that to pass" 2 3 3 +10212 4 The author concludes the story with that paragraph because it shows that the narrator wants to retake the test and is waiting for a better time. It shows that she is has perserverance and will not give up on passing this test. She realizes that life comes and goes very quickly. And thAt she needs to appreciate it 1 1 1 +10213 4 "The author concluded the last paragraph in the story ""winter Hibiscus"" to say that the narrator ""Saeng"" isnt given up on her driving test" 1 1 1 +10214 4 "At the end of the story, winter Hibiscus, the author's concluding paragraph shows many of the aspects of the story in a summary, Saeng is determined to go back to the drivers test and is open to a new beginning. The author used these concluding words in the paragraph to express the hope in Saeng of a better beginning and to show her determination to pass the drivers test. The author ties the objects in-a story to represent this determination and new beginning. For example, the hibiscus is a reminder of her glorious home, spring is the time she picks because it is a new beginning, and the geese returning show the determination of her and her to resolve to become new and better." 2 2 2 +10215 4 "The author minFong @CAPS1 concludes the story with this paragraph to envoke hope within the reader towards the characters in the story. One of the most important lessions anyone can learn in life is to never lose hope because things will get better so long as you try. Though Saeng was sad over failing her driving test and missed her homeland deeply, with ending the story and this paragraph, the principal that never giving up is important is presented and carried out hopefully through the characters vow. This principal presents the idea that people can overcome hard times in their life no matter what circumstances they are presented with. In conclusion, hope is envoked within the reader because of the ending paragraph which contributes to the over all theme of the entire story; it is important to never give up and always have hope especially when life gets hard." 2 2 2 +10216 4 The author concludes the story with this paragraph because it sounds better and it makes the story sound a bit more better when the author put that paragraph in the start. If the author did not put that ending at the end of the story the story probably wouldnt be that intresting and be that good of a story if the author didnt put that ending paragraph at the end of the story. Also the author wants to make the reader understand the story end end or the start all at the same time. For example if there were no good ending at the end of this story no body would want to read at all not a bit so it was a good thing for the author to put a good end stable ending paragraph at the end of the story. I think ic it was a very good paragraph for the end of the story. It just really seemed to mach the story and I could also really understand it a lot better because of the ending paragraph. It was just the perfect ending for this story. 0 0 0 +10217 4 "The author concludes the story with this paragraph because he is trying to explain to us that this plant is going to bring good luck. The snow will melt, the geese will return and the hibiscus plant will start budding. Its starting over fresh, a new beggining. Since she had failed her driving test she will start over in the spring. In conclusion this is why I think the author concludes the story with that paragraph." 1 1 1 +10218 4 "Why the author concludes the story with this paragraph is pretty much to say in the spring when the plant starts over Saeng will start over to. The story shows that this is the meaning because Saeng was having a really hard winter and was having a hard time adjusting to all of the new things, but in the spring she can start over just like the hibiscus will." 1 1 1 +10219 4 "The Author includes this paragraph to this story in many reasons why. One reason why is because the story started off by saying and talking about Saeng failing her drivers test and being depressed over it. Then it gets into talking about the hibiscus and how it reminds her of homeland and all of the good memories that she has experienced. This all relates to this paragraph because Saeng will not return to the testing again until the thing that makes her happy and confident, the hibiscus starts to bud. That paragraph relates to every little bit of this story from the beginning to the end." 2 2 2 +10220 4 I think the author concludes this in the story because when they come back is when the character feels she would be prepare to take that test again. 1 1 1 +10221 4 "The author concludes the story with this paragraph to emphisise the theme that changes in life are hard to adjust to. Saeng has moved to @LOCATION1 and longs for home. The flowers in the greenhouse reminds her of where she grew up and her grandmother. ""A wave of loss so deep and strong that it stung Saeng's eyes now swept over her."" Saeng cannot look at the flowers without crying. She tells her mom that she did not pass the test but in the last paragraph she vowed to herself that by spring she will. The author is giving us insight to Saeng's character. We now know that eventhough it is difficult for Saeng to let go of what she knows and love, she will have the strength to make it in a new world.?" 2 2 2 +10222 4 "The author concluded the story with this paragraph to show us that her days with nature is not yet over, for when it comes back around, she will continue to do what she been was doing, whicvh was growing her plants, taking care of them, tuning them out to being a goodnight dinner, and to continue that until shes no longer to do anymore." 0 0 0 +10223 4 The author concludes the story with that paragraph because the author is showing how she feels more comfortable with her old home. The winter hibiscus is related to her new home but when winter is gone and new hibiscus came they relate to her new home. The hibiscus from her old home give her a sense of comfort. So when she feels that comfort again she will be brave and go take the test. The author ended the story with that paragraph because it shows that Saeng still doesnt like the change and would like to go back to her old home 2 2 2 +10224 4 "The author includes this paragraph because Saeng is starting anew in a new country. In this country she misses her homeland and the hibiscus reminds her of so. Saeng took a test and failed and in the winter, flowers fail but they bloom again in the spring. When the hibiscus blooms Saeng will ""bloom"" and try the test again. Moving can be a hardship especially when it is to place very unfimiliar. People find ways to make themselves promises & to remind them of their old home." 2 2 2 +10225 4 The author concludes the stoRy with this paragraph because this spRing she had made a mistake like buying the plants that were oveR @MONEY1 (dollaRs) and her motheR who disappointed with heR. So she figuRes That when The spRing comes again she could get another oppoRtuniy to do her best and to get it right This time. Also so she will not be a disappointment to heR motheR. 1 1 1 +10226 4 The author ended the story with that paragraph because she said that the flower helps her with the moving and remains her of her home town and that when the geese come back and the flower starts to blume shell know that she can pass that test. She is sad for failing the test but it doesnt matter how many times you fail it sooner or later you will pass the test. She must feel comfortable taking the test again when spring comes along. 1 1 1 +10227 4 "I believe that the author concluded the story Winter @CAPS1 with the paragraph that she did in order to imply that Saeng will not give up. By allowing the audience to know that Saeng was very sad about failing the test, but will take the test again infers that Saeng is a determined person. It is my belief that the concluding paragraph was added to convey the feeling that Saeng was determined despite hardships." 2 1 2 +10228 4 "In the story, ""Winter Hibiscus,"" by @CAPS1 Ho, the authorconcludes the story with, ""when they come back, Saeng vowed silently to herself, in the spring, when the snows melt. and the geese return and this hibiscus is budding, then I will take that test again'' because the hibiscus represents hope and adapting to circumstances. Saeng is trying to adapt to the new changes in herlife but nothing is working out for her.""She found that she was still too shaky to say the words at home, lest she burst in to tears again.""@CAPS2, the Hibiscus makes her life easier because it reminds her of her homeland, @CAPS3 it gives her hope, ""look how root-bound it is, poor thing, '''the root-bound represents Saeng inher new country. Unwilling to try anything, and getting scared but assoon as Saeng and her mother plant the hibiscus, Saeng realizes that by planting it, she is going to try to love her new life in @LOCATION1 and in spring when the hibiscus and Saeng is ready to blossom, she will start trying to accept life." 3 3 3 +10229 4 "Mingfong Ho closes the story with that paragraph because it shows how far Saeng has come and her determination to persevere. The narrator says, She lifted her head and watched as their distinctive V was etched against the evening sky, slowly facing into the distance (Ho @NUM1). This is when Saeng is recovering from crying and even though she misses her homeland, she wants to adapt and succeed where she is now. The narrator also said, she found that she was still too shaky to say the words at home, lest she burst into tears again (Ho @NUM1). Being away from her homeland makes Saeng very ??? (not legible)" 2 2 2 +10230 4 The author concludes the story with this paragraph because they feel that the plant will bring them luck or something. Saeng feels that the plant gives her some type of comforte. 1 1 1 +10231 4 "I believe the author concluded the story with this paragraph because in the story, the author says through the quiet repitition of season upon season which means that seasons will come a seasons will go but shell always be there, ready to take the test" 1 1 1 +10232 4 The author is probably trying to say in the spring when the seasons change and the geese return and the hibiscus is budding he will take the test again. 0 0 0 +10233 4 "The author concludes that failing the test is not the worst thing. She relizes that times change and you can always get another chance, which is explaned in the last paragh that once the hibiscus buds she will take the test again." 1 1 1 +10234 4 "The author conclude the story with her saying in the spring, when the snows melt and the geese return and this hibiscus is budding then I will take that test again. to say the she will not gust out like that." 1 1 1 +10235 4 "The author concludes the story with this paragraph @CAPS1 It mean so many things about her in just one little sentence. For example ""take that test again"" she willing to do it all over again @CAPS1 she love it and want to do it. Also when she said ""in spring; when the snows melts and the gesse return and this hibicous is' budding"" from that when you come back and don't forget about all the things she just list. That why the author concludes the story with this paragraph. " 1 1 1 +10236 4 "This story about believed in yourself, and never giving up it was a story about perseverance. Saeng really believed she could pass her driver's test, and although she was disappointed with result, she found a way to cope with her loss. The hibiscus that flower means a lot to her because she can connect it to her homeland and, and it is a thing of beauty. something she needed at such an ugly time for her. It's always hard o adapt to a new country in a short period of time. I know what it's like when one small thing goes wrong. You can snap and it will feel a lot worse than it actually is. You feel helpless and alone just like the hibiscus growing next to the highway in the photo. Saeng vowed to take her drivers test again when her hibiscus would bloom in the spring I think the hibiscus really symbolizes Saeng as a person." 2 3 3 +10237 4 "The author concludes the story with this paragraph for many reasons, Saeng was dissapointed for failing her driving test. She found comfort with nature after she went and bought a plant. Saeng must feel that when the geese leave and the hibiscus his not started to bud, she should not take the drivers test. She feels comforted by the return of the geese and budding of the hibiscus. This implies nature comforts her. The author ended it like this because it shows Saeng is not disappointed about failing is anymore. She knows she will have another chance next year when the geese returns and the hibiscus starts to bud. With the comfort of nature, she feels she can pass the test next year. " 2 2 2 +10238 4 "The author concludes the story with this paragraph or quote to get the readers something to think about at the end of the reading. For example, It lets the reader now that the person will continue to grow plant when the winter is done." 0 0 0 +10239 4 "In the story Winter Hibiscus by Minfong Ho, I think the author concludes the story with this paragraph because it shows her determination. Saeng is having problems with both adjusting and adapting to the changes in her new life. we see an example of this when Saeng comes home with her flower, she found that she was still too shaky to say the words at home, lest she burst into tears again. we see that Saeng bought the flower because it made her feel securit. It was something from home that felt familiar to her and I believe thats why she included the story with this paragraph because next year she will have a sense of security and familiarity when taking the test because the experience she had will be making again." 2 2 2 +10240 4 The author concludes with this paragraph to show that Saeng is not going to give up. She also concludes with this to tell people that they should never give up and that the should keep on trying. Even if they have to take a break to study or rethinks the plan. 1 1 1 +10241 4 "When they came back ,saeng voed silenty to herseif in the spring when the snow melts and the geese return and this hibiscus is budding then i will take that test again .in the story the author put the paragraph in his story to show what the girl was doing to improve on her grades." 0 0 0 +10242 4 He ends the paragraph with this cause he is meaning to say he would rather take the test again when it is beautiful out in conclusion this is why I think The author ends it with this sentence. 1 1 1 +10243 4 "At the end of the short story, winter Hibiscus, the writer Minfong Ho includes somewhat inspirational concluding sentence when they come back in the spring, when the snows melt and the geese return and this hibiscus is budding then I will take that test again. I think this sentence was added in order to create a sense of hope for the future, which contrasts so greatly with the depressing nature of the story, creating a happy ending. Throughout the essay, Saeng is depressed she had to leave her homeland so hurriedly losing her childhood and beloved grandmother, A blink, a channed switch, a boat ride into the night, and it was all gone. as Saeng narrates in deeper detail. Also contributing to the feelings of sorrow in the story is how much saeng cries remembering her tragic past. Im both the greenhouse, recalling the events of her grandmother such as when she says, Saeng could almost feel the light strands of her grandmothers grey hair Saeng would help knot the hair the hair into a bun, then slip a dok Malik bud into it."" and in the garden, when she talks to her mother and plants the flower. After all this sorrow, by putting in a hopeful ending, the writer has successfully allowed a sense of hope for the future. " 3 3 3 +10244 4 She say cloning the spring I will take the test again because she know if she failed the test againg her mother will be disappointed of her because she not trying hard enough or maybe them too him never be closer again. The mother think jst because she keep failing the test because of her connection to her past expeirences or effection for her new country. and ability to overcome obstacles ar finally I think she is comforted by memories or her homland.. 1 1 1 +10245 4 The author concludes the story with that quote for one main reason. That reason is that it shows that the girl has hope. In a story one of the best qualities a character can have is hope because it makes the reader interested and helps provide a good morale for the Story. That is why the author concludes the story with that quote. 1 1 1 +10246 4 "The author of this story story created the last paragraph so that it finishes the story with a great ending. The fact of never giving up and try again again and again. The author said, I will take the test again. In the story Saeng said, I failed the test but now that she isn't giving up. This last paragraph makes a lot of senses and is needed to make this story complete. So just as others don't give up in @LOCATION1, Saeng is doing the same and is retaking the test." 1 1 1 +10247 4 "The author concludes the story with when they come back, Saeng wowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, because he wants to express to the readers that she is willingly determined for what she has to do to accomplish what she has failed. Since she has failed the test the first time she wants to overcome her failure and succede in it so the author wants her to look determined in the end." 1 1 1 +10248 4 The author concludes the story with that paragraph because it makes the story longer and it gives it a good ending but I have no idea on what that means so the author should explain what it means not me. 0 0 0 +10249 4 The plant was important to Saeng because it was from her home land. Saeng said that she would take her drivers test again when her plant bloomed. The plant wos a reamder of her home I and and what she come from. The plant to Saeng was a form of confidance. Saeng went through handtimes and the plant wos close to her because it wos from her home land. 2 1 2 +10250 4 "I believe the author ended the story with that paragraph to create a sense of wonder. I think this because if you put into context the word test, it could mean many things. For example it could mean the test to overcome the sadness of her situation. Also it could mean the test to adjust to her new home when the spring comes. That is why I think the author tried to create a sense of wonder with the final paragraph." 1 2 2 +10251 4 "The story Winter Hibiscus by Minfong Ho,is about overcoming adversity. She concludes the story by writing when they come back [the geese] then I will take that test @NUM1). The main character, Saeng, had been having trouble at school and on her way home had seen an assortment of flowers that were indigenous to her homeland. Saeng felt a shock of recognition so intense it was almost @NUM2) The sight of those flowers namely the hibiscus reminded her of what she lost and offered comfort in the face of the memory. The winter hibiscus could still survive even though it was not in the land where it belonged. Her mother states Its flowers arent as pretty but its strong enough. Thats what @NUM3). Saeng , after hearing this, decides that she could be strong, too, and would try to do her best in school. She would adapt just like the winter hibiscus." 2 2 2 +10252 4 She said that because she was more intrested in flowers tha a test. 0 0 0 +10253 4 I believe that the author concludes with this paragraph because it shows the ending of one thing and the beginning of another.After she is upset and thinks about home she realizes that something new is happening and she needs to accept it.So therefore in the spring she is going to start new like the flower blossom. 1 1 1 +10254 4 The author ends the story with this paragraph because he wants to get the point out that the character dosnt want to rush into things she wants to do right and not take the quick way out. 0 0 0 +10255 4 It shows the importance of the Hibiscus to Saeng and her dedication to the flower. It is also stating that she will wait for next spring to admire the flower again. 0 0 0 +10256 4 The author ends this story with this paragraph because she is explaining her thoughts and why she is taking that test. She is explaining that next year she will find out if it feels like home to her. 0 0 0 +10257 4 "When the author concluded the narrative by when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take test again demonstrates the ability to overcome obstacles, finding comfort in a time of disappointment, and her connection to her past experiences. First, it demostrates the ability to overcome obstacles because they are obstacles in everyone lives, and you dont have a choice to conquer them because there are unlimited. So the hibiscus flower represents the obsticles and the weather represent time because weather is stopping the flower to bloom and bloosom. Secondly, it also represent the finding of comfot in a time of disappointment because when you have going through an obstacle you would find disappointment there lingering. However she knows that the hibiscus will be coming back and she have the awareness of the obstacles coming back. Finally, it asserts her connection to her past experience because she is trapped in a world that she is not familiar with, which would make her an alien. She capture the sense of being out of place, because you can relate that the hiatcus flower would be her because she is eccentric and different from the rest of the people in her environment she is trying to adapt her way of living and trying to survive in the world, like when she was in her own country." 2 2 2 +10258 4 "The author concludes the story with the paragraph because this paragraph represent saengs determination and the situation she has now. She just come to the new country and she havent adjusted herself to this new country yet. She was disappointed like mashaft of the war afternoon starlight. war showed saeng was ery upset. After she met the flower, she thought of her old country, her homeland she missed it. She felt that life was full of hope again. She knew she should adjust herself in the new situation she was still too shaky to say the words at home. Last she burst into tears again. She missed her homelad very much snows"" symbolized the difficult situation she had now. But she believed she could overcome the situation and life was full of hope. spring symbolized the hope to the new life saeng thought things would get better in the spring. She would succeed in the spring. She had the determination to succeed, so the author uses that paragraph at conclusion. It symbolizes hope." 3 2 3 +10259 4 "The author included this because she felt that since Saeng failed the test that maybe she should be given a second chance because she tried so hard before. When Saeng says Nothing else. I paid over nineteen dollars for it. It made her mom upset because she used alot of money for one plant just so she could feel at home again since she had one when she was at her old home. Eventually her mom say, Its a beautiful plant to make her feel better because she feels bad for how she acted towards her daughter. After all the things Saeng had to go through is the reason the author added the the last passage into the story." 1 1 1 +10260 4 The author concludes the story with this paragraph the author is saying that Saeng will not quit until she pass that test she try and try and till she die. The author refering to the story again. 1 1 1 +10261 4 The authors purpose of this conclusion is that every year when the snow melts and the geese return she will have to again take care of the plant. Thats clear because taking a test is a big responsibility therefore taking care of that plant is also a huge task refering to taking the test again. this is what the purpose of the concluding sentence meant. 1 1 1 +10262 4 Because planting flowers and wasting on the garden is @CAPS1 hobby. And without it she cant think clearly or creating. So there fore waiting until they are back will make her happier also she able to do her work. 0 0 0 +10263 4 "The author concludes the story with this paragraph for many reasons. One is because she saying when everything gets back to normal thats when she is going to take the test again. Second, because there would be nothing else to say if it is not back to the way she wanted it to be. For instance, if you were building an house and a blizzared came, you would stop, you said that you would not continue until there was nice weather again. In conclusion, the author concludes the story with this paragraph for many reasons." 1 1 1 +10264 4 "The author of winter Hibiscus , Minfong Ho ended the story in this way to show the theme of starting over. Her mother adds to the theme of starting over by saying. Its flowers arent as pretty but its strong enough to make it through the winter. Thats what matters. Her words are a metaphor for the family starting their lives again in @LOCATION1, that @LOCATION1 @MONTH1 not be as pretty, but it will survive, which is what matters. Her words soothe her daughters worries about starting ore. Also, the budding hibiscus could be considered asymbol of rebirth, since it is dying and growing with the seasons.The family is dying in out a @CAPS1 family & being @CAPS2 was an @CAPS3 family. However even though they died as a @CAPS1 family, that does not meqan that they have lost their heritage which is why the author end talking about a flower that is both @CAPS1 & @CAPS3 just like Saeng." 3 3 3 +10265 4 "The author concludes the story with this paragraph to show that Saeng will perservere through the winter and try to adapt to her new lifestyle. Moving to a new country / culture is extremely tough, and Saeng is bad, but she doesnt give up on creating a new life in @LOCATION1. The concluding sentence, in the spring, when the snow melt and the geese return and the hibiscus is budding, then I will take that test, is one of determination and hope. The entire story Saeng was struggling with adapting to her non of and memory of her homeland give has a sense of security. The sentence wraps up her emotion and shows how strong she is @CAPS1 could easily give up on their driving test, but she wont. It is a happy ending for somewhat of a sad story. Furthering the sentence shows Saengs dwoton the her plant. This hibiscus will survive and so will Saeng when the hibiscus blooms in the spring, so will Saeng. She will try as hard she can to fit in and enjoy her new life. That plant will help her through it by reminding her of vietnam us will as giving her a companion throughout the winter. The author would not have chosen a better conclusion for this story. The conclusion orggos to a new hope to perservere and sucede. As a result, the reader is test with a sense of pleasure and a good feeling torwards the story. This conclusion show how Saeng is adapting to changes info and hope to enjoy her new life in @LOCATION1." 3 3 3 +10266 4 "The story was about a girl walking home after failing her driving test and breaking down about her home where she no longer lived. After she had broke down, bought the plant, and learned to actually accept the fact that she no longer lived in Vietnam and accepting that she had failed her driving test, she realized that she just has to learn to like it. She also learned that her time will come and she will one day be driving. The reason why the auethor concluded the story with this paragraph is because this is the conclusion of the story. this is where one realizes the important things." 1 2 2 +10267 4 "In the story Winter Hibiscus the author, Minfong Ho, concludes the story with a statement that Saeng vowed silently to herself. Saeng says she will take the test again referring to the drivers test. Seeing the geese flying in a V and seeing the hibiscus gave Saeng a sense of remembrance to her homeland. Saeng misses he homeland. The author wanted it to seem to the @CAPS1 as if Saeng is starting to feel at home again. The hibiscus is just a symbol to Saeng telling her that It will be @CAPS2.K, and that its okay for her to miss Vietnam but also that its okay to have a new life, So Saeng, in the spring, will go take her drivers test again with a new attitude and will pass the test." 2 2 2 +10268 4 The author used that paragraph in order to create imagry. The author wants you to get an image of the story. She also used that paragraph to express her emotions. 0 0 0 +10269 4 "The author concludes the story with the paragraph to tell you when Saeng was going to take the test again also ,to reunite with the plant again. This is a conclusion paragraph that gives insight on what will happen in the future thats also why the author added this paragraph in." 0 0 0 +10270 4 "The author ends the story with When they come back, Saeng vowed silently, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again to show a comparison. Since the plant reminds her of home, when it buds she will be more confident to take the test. When she was looking at the petals of the flower it said, Gently she closed her palm around it and held it tight. That, at least she could hold on to. This shows that she really missed her home, and she had nothing to give her confidence. The flower is the piece of confidence she needs to feel at home and even pass her drivers test. Saeng felt out of place in her new environment. The flower hibiscus, gave her motivation. It gave her a chance to connect with a part from her old home, in her new home. Saeng thinks, And that rich sweet scent- that was familiar too. This shows that this flower was a sentimental importance, she needed. Therefore, the author ended with that paragraph to show a comparison and the importance of the flower to her adapting. " 3 3 3 +10271 4 "In Winter Hibiscus, Minfong Ho ends the story how she does to show a sign of hope. Saeng is going to start over when the world starts over. Spring is the time when animals come out of their winter holes, when trees blossom, and when the snow melts. It is a time of renewed. Saeng Vowed silently to herself to try again in the spring time.Saeng parchases the hibiscus in remembrance of her homeland, but also to know when it is ready to come back out of the base to try again. The hibiscus does these actions by coming out of its buds and blooming. Ho ends her story in hope of a new beginning. Saeng vows, Then I will take that test again. In the word choice of That test again depicts her new attitude. She wants to try again, her test. """ 2 2 2 +10272 4 "to show how absent she feels without them by her. You see this when the @ORGANIZATION1 says when they come back. also when she says the geese return & this hibiscus is budding. Shows how she feel without them and how she will feel when they return and how she will carry on where they left off last time as shown when she says , Then I will take that test again." 1 1 1 +10273 4 "I think it was a good enough by Minfong Ho.Through out the story you feel somewhat happy,and somewhat sad,but always calm.You feel happy when they are talking about all the plants and when her mother accepts the plants when she bought. At first, when you think the mom is going to yell at her for buying that,after she failed her test.You feel bad for her but still calm mood and show the girl want give up,but just take her time." 1 2 2 +10274 4 "I @CAPS1 I @CAPS1 the author concludes the story with the paragraph saying that shes going to take the test again, to show us that this time shes goin to pass the test and shes not going to feel the same way she felt when she didnt pass. it tell us in spring when the snows melt and the geese return and this hibiscus is budding"" because thats when she is going to take the test. " 1 1 1 +10275 4 "Saeng vowed silently to herself and to her mother too. Saeng decided to tell her mother what she had done, she failed the test probably her mom get upset with her but then she talk to her again. Saeng mathers ask her about the plant that she have with her. Saeng said that she buy the plant by @MONEY1. She was sad because she failed the test and when she buy the plant it probalbly makes her feel better. I think the author probably concludes the story with this paragraph because it bring some kind of hope to her, and she probably will pass the test. When she said then I will take that test again @CAPS1 makes her to decide to take it agan it could be the plant." 2 1 2 +10276 4 The author concludes the story with this paragraph because the author want to show the readers that Saeng will want to pass her driver licens test. The reason that so the reader show how detirmen Saeng do after the winter The example is that in the story Saeng fail her driver licens and was sad about. The next example is that when she find this flow she know she do it again. This show that the flower help her feel better show that she will do it again. The first example show that she was sad that she fail the test. At the conclusion the author put this statement in the story to show reader tat Saeng will pass the diver licenc test later on. 1 2 2 +10277 4 "In the story Winter Hibiscus by Minfong Ho, the author concludes the story with Saeng saying when they come back in the spring. When the snows melt and the geese return and this hibiscus is budding, then I will take that test again."" The author chose to end the story this way to give it a positive ending. The rest of the story is and sad because saeng misses her home in Vietnam. ""Its its not a real one. I mean, its not like the kind we had at at she found that she was still too shaky to say the words at home, lest she burst into tears again. Not like the ones we had before."" The end sends the message that even though things are different than before, she wont give up trying to make a good life in the United States and not let this change affect her " 2 2 2 +10278 4 "The author concludes the story with this paragraph because he wants us to know that she will regain her confidence when the ""hibiscus is budding"" and take another slot at the driving test. He doesn't want to just leave us hanging with the girl watching the geese fly away into the distance. The girl felt very bad about failing the test which makes the reader feel sad. To cheer up the reader, he ended the story in this way. Saeng is reminded of home when ""the geese return and this hibiscus is budding, So, the author ends the story having Saeng have a sense of renewed confidence and the reader feeling happy." 2 2 2 +10279 4 "The author concludes the story with that because she is determined to succeed in @LOCATION1. She misses her homeland and everything there: gardens, grandparents etc. For example , she walked into the flowershop she smells the flowers like she used to back home. She then smelled a flower that reminded her of her grandmothers long gray hair, freshly washed But by saying that last sentence she said that when the hibiscus budded next winter she will take the test that she failed again." 1 2 2 +10280 4 "The author concludes the story with ""When they came back, Saeng vowed silent ly to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding then I will take that test again."" because the girl is willing to try again and to not give up no matter what. The girl is upset because she doesnt have the real flower her mom had. ""Its-it's not a real one,"" Saeng mumbled i mean, not like the kind we had at- at."" She was upset and afraid that her mother was going to be angry with her that she started to shake. I know,"" her mother said quietly. ""I've seen this kind blooming along the lake. The author is just showing that the girl is going to try again next time." 1 2 2 +10281 4 "The author concludes the story Winter Hibiscus with that paragraph because he wants to get across to the reader that that saeng will not give up. Saeng and her family moved from Vietnam, and it has been hard for her to adjust to changes. Saeng really misses her homeland and the flowers that she sees @CAPS1 life. She explains how the winter hibiscus is not the same as the one in Vietnam so she plants this @CAPS1 type of flower and decides to wait till the spring to take the driving test. This shows that saeng wants to plant her difficulties in @LOCATION2 and think of them again in the spring when the weather and atmosphere is nice. She is not siving up but she does not want to take the difficulties till a later time. That is why the author concluded with this paragraph. " 3 2 3 +10282 4 I thank he uses it because she wants to get a nother one next year to see what its like to like something so much and get to look after it for a wial That is why I think the nararator use that phrase as his last one. 0 0 0 +10283 4 "The author concludes this story with the paragraph she did because it shows how Saeng is adapting with the change she is going through in @LOCATION1.the winter hibiscus helped her @CAPS1 with Failing her driving test, so Saeng figures it will give her luck when she takes it again. Also the hibiscus will survive, and while she works towards her goal it will develop more. Once the flower blooms, it will symbolize strength, helping Saeng over come this obstacle. Her mother said the flower was not as pretty but will survive. She means @LOCATION1 @MONTH1 not be as great as Vietnam, but Saeng will stay strong." 2 2 2 +10284 4 "The purpose for the ending the Author @CAPS1 is to show how the hibiscus gives Saeng A good sense of comfort, compared to how:- she was At the beginning of the story. It Was like she had very little confidence. And now she is forced to call this strange place home, And that emptied her @CAPS2 to strive until she sees A very familiar face that brings back her memories of when She was the happiest. Having something Around that was special to her Around All the time can make @CAPS3 feel At home or like it use to be, she found her confort in the Hibiscus. So now that it rests in her garden to constantly grow through All the seasons, She will to with that reminder of her old home and how good it felt, except now with new memories." 2 3 3 +10285 4 @PERSON1 go to the top and then over the hill. 0 0 0 +10286 4 "The author concludes the story with this paragraph for a couple of different reasons. The author wants to show with meaning, that the budding of the hibiscus plant will be symbolic. Ho states, Instead, she stared at the hibiscus plant and nervously tore off a leaf, shredding it to bits, This shows meaning because it is currently a point in time where Saeng has to overcome negative circumstances, and with the plant dead it shows symbolically the meaning of the plant. At another point in the story, Saeng realizes that there is much more meaning to the seasons, Ho states, Through the quiet repetition of season upon season, almost familiar to her now, she is realizing that come spring time when the plant will be healthy and budding, she will be able to succeed and become somehow like a new person." 2 2 2 +10287 4 The author concludes the story with this paragraph because he or she feels like the audience should know what saeng is feeling. This paragraph ending shows that saeng will keep trying every spring to grow back her flowers and this shows that Saeng has a lot of potential to make her vowe top herself successful. 1 1 1 +10288 4 "This story is all about overcoming hardships and disappointments as well as accepting and adapting to the things life throws at people, so it is appropriate that the story is ended with a goal and a determined attitude. Throughout the atire reading, Saeng sought comfort in the things most familiar to her, such as flower and the taste of bitter melon. She was hurting and disappointed, and those things were the only things that gave her peace. It was those things that save her the courage she needed to retake her drivers test in the spring, so it seems fitting that she end the story with the mention of the hibiscus. The end paragraph also shows that Saeng is adapting well to her new country. She says, when they come back... in the spring, when the snow melts and the geese return... At first the sounds of geese were alien to her, but now she has accepted their honking as a normal sound. This implies that she is learning to accept her new country, which is the perfect way to end the story." 0 0 0 +10289 4 "The author concludes the story this way because in the winter time she wait be able to see the hibiscus .she is used to going outside in the garden and seeing her beautiful plant In conclusion the author concludes the story that way, because in the winter time she wait see her plant. " 0 0 0 +10290 4 In the story Saeng is trying to be ok with her new home. I think the author put that in the story to show that she has not given up. She is going to keep trying to adjust to her new home. Saeng wants to adjust but she misses her old home too much. That is why she is waiting till spring to try again. 2 1 2 +10291 4 "The author concludes the story with that like, to leave the reader guessing. The she means that she is determined to live up to her past, and get through it. The paragraph leaves the reader to wonder is she got through it the following year. He describes the snow melting, and geese coming back as change which is exactly is what she hopes to achieve. The author was trying to show how she can change, and grow just like her plant." 2 2 2 +10292 4 "The author used the concludes with when they come back, Saeng vowed silently to herself in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again. She wrights that because when her flower starts budding she will be able to take the test cause she is like a flower. The author uses the concludes because when the flower is going to budd and the geese come back she will think that she is back home. Thats why I think the author used the conclusion when they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again." 1 1 1 +10293 4 "In winter hibiscus the teenager girl Saeng fails her drivers test, and then runs into a winter hibiscus and comes in touch with her memories. The author concludes the story with re-trying the test when the geese return and hibiscus buds to show comfort & familiarity. When the speaker says almost reluctantly she realized that many of the things that she had thought of as strange before had become This example shows that she had lost touch with the realness of nature and that was what was going to get her to pass the test. The author sets an impatient mood for the reader because it took her for winter to discover this, and winter is when its too late, the geese have left and the flower has closed, so when spring comes theyll be open to new opportunities and so will she with the familarity around her. " 3 2 3 +10294 4 I think she concluded with this statement because she doesnt know if she will pass but she isnt giving up on the test and will try to pass it again when her flower grows back. Right now she feels bad and the plant helped to cheer her up so when she sees the plant next year she wants to take the test.The plant is like a sign of good luck. I think she concluded with this paragraph because it leaves you with the idea not to give up when times are hard keep trying. 1 1 1 +10295 4 The author concludes the story with this paragraph for a few reasons. One of the reason is so the reader could imagein what rest of the story would be like if it continued. For example when the author said then I will take that test again. Another reason is to give the reader one last good image to change their thought of the story. For example when the author said when the snows melt and the geese return and this hibiscus is budding. Those were reasons why the author concludes the story with this paragraph. 1 1 1 +10296 4 "The author concludes the story like this because when the snow is melting and the plant is buding and the geese come back then she will take the test again. This is a way for her to realy think when she is going to do this again. When they come back, so will she, to take the test over again." 1 1 1 +10297 4 "In the story Saeng vowed silently to herself, When the snow melts and the geese return and the hibiscus is budding she will take the test again. For some reason I think that is affine idea Saeng vowed." 0 0 0 +10298 4 "The author of Winter Hibiscus probably chose to end the story that way because then its ending with a sense of hope. Also, it is showing how Saeng is adapting to her surroundings much like the winter hibiscus. In the second last paragraph, Saeng hears the hanks of the geese and it is noted that their sound has become familiar to her through the course of the time Saeng probably vowed to retake the test when the geese returned because the time would allow her to grow and adapt even more. The hibiscus will be budding then, a sign that it overcame its obstacles and was successful in adopting. If the hibiscus could adapt, Saeng could too. She could look to the plant for inspiration. This feeling of hope in Saeng and her future is left in the last paragraph, which is why the story ends there." 2 3 3 +10299 4 "The author concludes this paragraph to the story because, seasons change, plant dont most likely grow during winter time. So you learn a lesson and take it as it is and a wait until the next time you learn basically the same lesson, when the right time comes." 1 1 1 +10300 4 I think that in the story Winter Hibiscus was a good story and also the author added the paragraph at the end because the main idea was like to work hard and that is why it mentions at the way end I will take the test again so you dont fall and stay down you work hard and get back up and try again. 1 1 1 +10301 4 "The author concludes the story with this paragraph so he can tell the overall meaning of the story. Also, the author concludes this paragraph because it is probably a moral to the story and gives you pointes or some events in the story you dint know about." 0 0 0 +10302 4 "The story is somewhat sad. The girl misses her homeland. She is also sad because she failed her driving test. The author I think ends the story with the girl saying she will take the test again, to show that even though she is sad about her country and failing she is not going to give up. Failing a test especially a driving test stinks. Your very excited to get it but then you dont. So the author is trying to show that despite the girls sadness she will not give up. The girl is going to keep trying until she finally passes. Also the author probably wanted to leave on a more positive note you usually dont want to leave a story sad with no solution. So she said she would try the test again. There were many reasons why the author ended the way she did but above are the more obvious." 2 2 2 +10303 4 "In the story Winter Hibiscus, the story ends with that phrase to show that Saeng has goals. First, she wants to adapt to the new this new land. This is because she says that when they come back in the spring, which means she wont give up and try to adapt to her new life. This also says she has precision, she will continue to try to get her license because she says, ""when they come back in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again."" She says that she will try again. Also, it exploits that she will get the courage to keep on trying and not give up." 2 2 2 +10304 4 Saeng was waiting for spring then she could take the test again. I think at se was wereing about it doing spring because she whent to wacth the geese fly in a u shape and she whent to see the plant grow but the snow dont melt yet. She started takeing to herself about it but she could whant to take at test doing spring. At if she can passed it again because she doesnt like to take the test over and over again. When every body gets to the diffent thing after thee test is over. 1 1 1 +10305 4 "In the story Winter Hibiscus by Minfong Ho, the main character Saeng who moved to @LOCATION1 from Vietnam with her family, just came home from failing her drivers test. To Saeng her failing the drivers test shows that she is unable to adapt to her families new lifestyle. Therefore she feels that she disappointed her mother and herself. On her way home she bought a flaver that her family also had back in Vietnam to try and comfort her mother. As her mother begins to plant the flower, a winter Hibiscus, she feels that her mother has forgiven her for failing the drivers test. Then she realized that she has adapted to her surroundings just like she believes her flower will and that motivates her to promise to take the drivers test again in the spring. By ending the story with Saengs promise Minfong, the author, made sure that the last thing which is the most important thing for the reader to remember about the story is that Saeng didnt give up. She promised herself that she will try again and adapt to her surroundings not like others around her have adapted. Her promise shows courage and perserverance. " 3 2 3 +10306 4 The author concludes the story with that paragraph because she is not giving up and she will take test agin and the stelent will grow agin in the @DATE1. 1 1 1 +10307 4 "The author concludes the story with that paragraph because saeng is saying she is learning to adapt to this country. Earlier in the story she says that she failed the test, because she did not impress her mom. Saeng and her mom are used to ife in Vietnam, they trying to adapt. Saeng thought that the hibiscus she got Is just like the one she had at home. At the end she realizes if she just has faith everything will be @CAPS1 and it will be just like home. She says in the spring because by then her hibiscus will be fully growned and she will take the test again to see if the hibiscus is like the one her mother thought she would get. Saeng is learning to adapt to her new country of the United States." 2 2 2 +10308 4 "The author concludes with that paragraph because it expresses and continues the theme of perserverance and adapting to change. The conclusion mentions the test again. From the reading, one can conclude that this test that the author refers to is Saengs confrontation of memories of home without feeling the breakdown from loss. Saeng says earlier in the story that she failed the test, having broken down in tears after looking at all the Familiar plants that had been at home. By concluding with this paragraph which says she will take the test again, it shows that Saeng is going to continue to try to adapt to her new home and feel at peace here, instead of feeling the tremendous loss of her old home. It shows the theme of perserverance because she is going to take the test again and try to overcome the feeling of sorrow." 3 3 3 +10309 4 The girl is determend to win. She went and took a test for a flower and she did not pass and she went back sad and emoshond she told her grandmother that these flowers are not like the ones at-at she cold not say at home because it took too much pain and her grandmother said they are not like the real wones. 1 1 1 +10310 4 "In this story Winter Hibiscus by Minfong Ho , the author concludes the story with, When they came back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. In the beginning of the story that she was less confident and she failed the test. But this one flower gave her hope and so next time she takes the test shell be better prepared. " 1 1 1 +10311 4 "The author would conclude the essay like he did because it sounded good to help he all the shangling ideas together. For example one person said, she silently vowed to herself in the spring after the snow melts she would retake that test. " 0 0 0 +10312 4 "I think the author ended the story with that sentence because every winter all or most plants die off, and during the spring the would have to start all over in growing this plant." 0 0 0 +10313 4 The authoR ends the STORY this way because their trying To show that Saeng will be dedicated To the hibiscus gardening and once she proves herself she will have passed the test. It also shows that she wants her heritage to be a major part of her life by growing their nations flower 0 0 0 +10314 4 "The author ends the story with this quote, because it shows how determined Saeng is to passing her driving test. For example, in the story, Winter Hibiscus"", Saeng after she fails her driving test says something to forget about fating, and she said, Lets plant, right now, she said this because she was trying to forget about her failing, and focus in something positive, In conclusion, this is why the author ends with this quote, and an example of how determined and focus Saeng is to passing her driving test. " 1 1 1 +10315 4 The author concluded the story the way they did because it left hope .Saeng hod been hurt anddissappointed but in the end she had shown hope in the story Saeng failedher driving test. She was very disappointed . In The endit showed she was not going to quit in this new country . She was going to move on and make the best of what she has. 1 1 1 +10316 4 I think that the author concludes with this paragraph bacuse she is determin to conpleat and pass the test. First reson way is that she faild this year and whants to pass next year. Next she is comparing the hibiscus to her passing and sulding on the test. That is way the author concludes the story with this paragraph. 1 1 1 +10317 4 "The author concludes the story with this paragraph because Saeng is going to try keep her next plant. The reason why she says she is going to take the test again because she sold the plant to somebody. Saeng has seed the plant before as a child and that's why she was so attached to it. In conclusion, the author concludes the story with this paragraph because Saeng will try and keep her next plant. " 1 1 1 +10318 4 "The author concludes the last paragraph to show that after a time period you can come back and try something again. Or maybe when weather change this can be different for Saeng. Maybe she is relating herself to the plant as to when it come to spring the flower will be stronger, and she feel that she will pass the test second time around when the geese come back and the hibiscus is budding. And it also shows how she appriate the nature because if not, why would she wait until spring and when the snow is melting. The conclusion of the story is that she do like nature, because she talk about the hibiscus." 1 2 2 +10319 4 "In the story Winter Hibiscus by: Minfong Ho, a girl named Saeng is try to adjust to @LOCATION1 coming from Vietnam. She is sad and misses her home, especially after failing her drivers test. She walks by a store and recognize a plant from her home. She buys it and takes it home in a pot. She says thinking of home and all the great memories she shared with a plant. Her mother then comes and shares the moment with her. Saeng feels better now. In the end sentence the author includes saeng vowed silently to her herself, in the spring when the snows melt and this hibiscus is budding, then I will take that test again.(Ho, ??) the flower has given her the conbidence to socceed and she wants to take the test again. This shows the connection she has with her home and the flowers. She wants to overcome her sadness and plan onward not leaving her memories behind but her pain." 2 2 2 +10320 4 "In the story Winter Hibiscus, the author chose to conclude the story the way she did to show the comfort the hibiscus provided that allowed Saeng to move on. The greenhouse provided a place for her to get her feelings out about her home sickness, and in the warm moist shelter of the greenhouse, Saeng broke down and wept. Then when she went home she was faced with the reality again of how she failed the test. I think when she failed the test it brought out feelings of how she thinks she is failing to adjust her new home. But when the geese fly by the author brought the story to a conclusion to show how the experience has made Saeng grow. When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, I will take the test again. I think the author wanted to show that through the events in the story, she was able to overcome her feelings about a new home. " 2 3 3 +10321 4 "I think the author concluded the story with this statement because to me it sounds like its going to be a new start for her-self in the spring. She talks abouts how when the hibiscus starts budding, the snows, is gone and its spring that when shell retake the test. To me it seems like when the hibiscus comes back to life. Its having like a second chance and she desrves one also. When its bright out again and things start looking out again and things starts looking good shell feel good about taking the test over again. How she ended it to me was good. You just have to read into it and try to understand what she is actually saying. So practically shes stating once everything come back to life then shell feel like she will pass it next time. Now she can be prepared." 2 3 3 +10322 4 "There are many reason why the author concludes the story with that paragraph . One reason is she likes hibiscus flower you can tell by when she again When she got to the hibiscus , She reached out and touch a petal gently . Another reason is that they are pretty . You can tell by when she says It was like walking into another world . Last reason is that she likes the present of them . You can tell by when she say Huge flat leaves , delicate wisps do tenants , ferns , and fronds and virus of all shades and shapes grew in seemingly random profusion. As you can see these are reasons why the author ended with that paragraph ." 0 0 0 +10323 4 "The author of this story was smart to end it by saying she will take the test again in the spring, when every thing bloms. This girl just failed her driving test she dose not want to take it right away. The blomming of the hibiscus symbolizes her old life at her old home and it is also symbolizing a new start when it bloms. This will give her the confodence to pass her driving test and make he excited to get a new start on the year. ""Spring is when the snows melt and geese return. This quote from this paragraph states that the snow will melt away and the geese will come back home, just like she wants to go home and fells contible, at home you are contible. The author ended this story of this girl, Saeng, with hope and drive to do what she wants to do. That is why it was smart to end the story like they ended it. " 2 3 3 +10324 4 "The hibcus as the author has reveat to the audience is a beautiful flower who in the story is the memories of a young girl who has fail the test knowing she was to depress for her failing the test. The flower helps as a symbol of encourage to the sad girl in her most tragrant event and shows how a little flower gives comfort to the girl.The girl Saeng vowed to demonstrate that when she overcomes the sad memories. Shell be able to be capable to prove she will pass, after she feels ok about the situation she is experiment with her destroy life after have to come to a different country where you mast have a @PERCENT1 of capacity and its logical that the adaptation of the girl is not going to be right away. In othe words, the author message its to motivate the people who has problems in their lifes and that life its not give up. Instead you should keep working hard until you get it. In conclusion working Hard and @CAPS1 give up its a part of our life and its up to our selves to overcome failing" 2 2 2 +10325 4 "In the Story the @CAPS1 concluds the story with the sentance ""When they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take that test again."" I think he ends it this way because she has accepted that she failed or lost but is willing to try again to accomplish her goal and ""take that test again"". Also she is making a promise, or a vow to her self and to not give up on her goal." 2 1 2 +10326 4 The author concludes the story with he paragraph because they both go togather the away there both about things going and leaving the season changing. like they dont wont to let go but they knew there be back soon. Thats why the author combided the story with the paragraph. 1 1 1 +10327 4 "The author is expressing hope for the future in her concluding paragraph although just failing her drivers test and adjusting to a new atmoshere Saeng finds comfort in a Hibiscus. it felt smooth an cool with a hint of velvet toward the center - just as she had known it would feel. This expresses that the rememberence of an old friend was able to lift her spirits after a previous dissappoinment it was obvious Saeng was uncomfortable in her environment, which her mother noticed when she arrived at home. she paused as she noticed the tear stains on her a daughters cheecks and her puffy eyes. Her daughter was not adjusting to her new atmosphere and even though she had spent a lot of money on a single flower she understood. With all the negative attitude through out the story, once Saeng saw the geese and planted her winter hibiscus, she realized what was strange to her before had now become familiar. Saeng finally realizes with a memory of home, her goals can be accomplished and life can be stable somewhere other than home. She illustrates that from failurecomes success." 2 3 3 +10328 4 The author concluded the story in the paragraph. She doesnt want Saeng vows the whole room to herself where its quite when she is taking the test. 0 0 0 +10329 4 "She is saying that ryt now, is not the right time to table the tst, she is saying that she is going to wait to care back until spring, when the flowrs we blooming to take the test, @CAPS1 she is so acentric abought the exotic flowers, She cant stand to do it now, when the time isnt right. So she is saying that she is going to wait until the time is right to take the test." 0 0 0 +10330 4 "Saeng will take the test in the spring when its not so cold. She likes it when the hibicus is budding they smell so good. They good smell reminders her of her native contrey. Saeng likes fried melon, it leaves a golden after taste on your tongue. She would poter it over a Big mac. " 1 1 1 +10331 4 These are many reason why the author ends the story with this paragraph. 0 0 0 +10332 4 "The author included that concluding paragraph because the hibiscus shows Saeng comfort in her time of discomfort. She would possibly feel more comfortable when the hibiscus is budding because she misses her homeland and the hibiscus reminds her of that she fail test the first time because she was comfortable with being in a new place. But when spring comes, shell be more confident and comfortable because the hibiscus is budding." 2 1 2 +10333 4 "The author concludes the story with this paragraph because earlier in the story, saeng was talking about how she failed the test, in which she wanted to retake. So, saeng declared that next year, when the geese return and the hibiscus is budding , she shall take the test again." 1 1 1 +10334 4 "The reason why the author concludes this paragraph is to show saeng that she will be waiting for them to grow back and she will try again for her test. Hibiscus means a lot to her, and will keep trying because she doesnt want her mother disappointed in her again. Example of wher saeng felt shame ""her mother stared at her incredulously. But how could you?"" saeng wants to not down herself or her mother. ""saeng vowed silently to herself"" saying a promise that she will pass and respect nature as well as elders" 1 1 1 +10335 4 "In Winter Hibiscus, by minfong Ho, the author concludes the story with this paragraph: When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and geese return and this hibiscus is buddling , then I will take the test again, @CAPS1 author concludes the story in this way because it is somewhat of a cliffhanger. In the story, @CAPS2 is upset about failing her driving test and she has just moved from Vietnam to the united states and so she is a little homesick. She sees a familiar plant, and so she purchases it for nineteen dollars because it cheers her up ??? reminding being alike the plants in Vietnam. By ending the story like this, you know that Saeng hasnt given up and that she is going to try and pass the drivers license test again. But what you dont know is the end result of whether she passes or not and so it is a cliffhaofer. That is why the author ended the story in this way." 2 2 2 +10336 4 "Saeng has been the victim of a tragic loss in family and also a move to a totally different world. The paragraph is symbolic of turning over a new leaf and starting over.The snows melting and hibiscus bidding are both symbolizing new life.Saeng is going to have a outlook on life and accept her situation to make the best of it. Also, the author say the winter hibiscus was in the ground now as it does compare to saengs new found outlook planted on life. Like the flower, a seed of hope was planted into Saeng, and now she is ready to blossom." 2 2 2 +10337 4 "In the story, winter hibiscus, by @ORGANIZATION1, the author is very sentimental over the Hibiscus plant because it reminds he so much of her home. The reason why the author conclude the story with that saying was because it gave her a goal. She failed once at getting a job, but she @MONTH1 believe that the Hibiscus is good luck so she sets a goal on when to try for the job again. When she saw the plant, she remembered happy memories. In conclusion, certain things can trigger your memories, but its the good memories that make things in life something to wait and hope for." 1 1 1 +10338 4 The author ends the story this way for a few reasons. First it shows that she is starting to like this new life. Also it is an ending that is open. It shows her liking her new life for a few reasons. She realized that many of the things that she had thought strange before had become almost familiar now that is when she starts to see that her new life in the @LOCATION1 is not so bad. This is about the geese and is referred back to when she vows to take the test. Also it shows how the hibiscus she just planted is already important to her. The second thing it does is dreams about future conclusions. The reader does not know if she will pass the test next time but assumes that she will because of the way she vows it. That is why the author ends this story the way they did. To show how she feels in her new life and leave an opening for people to draw conclusions. 3 2 3 +10339 4 "I think that the author concludes the story she fails the driving test, so they added she was going to take it over. And maybe the plant is or would be good luck to her after the snow melts and the geese return it would be a fresh Start. Also it would be nice after she descovered the plant." 1 1 1 +10340 4 The author concludes the paragraph with this paragraph because she wants to try again. The author is saying that the hibiscus she planted @DATE1 did not work and she is trying again this @DATE1 to grow a hibiscus plant. She will pass the test if she succeds in the spring. That is why the author concludes with this paragraph. 1 1 1 +10341 4 He concludes that when it is spring he will take the test again. That will give her another chance to pass it. This will give her another chance to do what is right. 1 1 1 +10342 4 She going to take the test agan @CAPS1 she feels like She needs to and She @CAPS2 when the snow melts and geese came back that means She wants to take the in the Spring. 1 1 1 +10343 4 "In Winter Hibiscus the author @CAPS1 sentence is When they come back Saeng vowed silently to herself, in spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again"".. I think the rememberence of home will help her take the test. She use to the geese and plant to remind her of home and by having these surroundings makes her comfortable" 1 1 1 +10344 4 "In the same way the hibiscus flower prevails in the winter saeng wants to be the same way. Saeng failed a test which makes her feel unsuccessful. Saeng wants to prevail she wants to stick it out and the rough times shes going through make it very difficult for her. When Saeng says I I failed the test this shows that saeng feels disappointe that she didnt expect that because she is a fighter, So the author ends the passage with saeng saying When they come back, in the spring, when snows melt, and the geese return and this hibiscus is budding, then I will take that test again. To show how much of a fighter Saeng is because shes determined to strive under difficult conditions." 2 2 2 +10345 4 The author puts this paragraph last because it shows that saeng is looking to a new lease almost on life. She now has something to take her through the year that is ahead of her she now wait till it is winter once again to see the hibiscus flower bloom once again and as wel as many more to come 1 1 1 +10346 4 "In the story Winter Hibiscus by Minfong Ho, I believe she concludes the story in this way to show that even though Saeng failed the test, she will try again someday, someday being symbolized by when the geese come back. Saeng is sad because she missis her homeland and she sees plants that bringback memories, so she buys a winter hibiscus to ease & comfort her & remind her of home." 1 1 1 +10347 4 "The Author concudes this story with paragraph because She loves her garden. She concudes it because the story is about then and their garden and it eventually turns cold leaving them nothing to do untill Spring. Itsuggest they have strong feelings For what they do as it says ""in In spring when the snow nelts and the gese return and this hibiscus budding"" hears she wants to take the tst to overcome and prove She can take care of her Garden." 0 0 0 +10348 4 At this time she vowed to retake a test cause of how the flowers will always come and go but her grades will be there only one time for her school work. Instead she rather garden then do school work. 0 0 0 +10349 4 "The author concludes the story with this paragraph because the winter hibiscus gave her some hope. Also , because her mother was understanding about her failing the test. That is why the author concludes the story with the paragraph ." 1 1 1 +10350 4 "The author concludes the story with optimism and hope for the future. She finishes her story with when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again. By concluding the story in that way it helps demonstrate the hope the hibiscus plant brought to her after she failed her drivers test. The hibiscus the helped give Saeng one step closer to adapting to her new home. It says in the story Almost reluctantly, she realized that many of the things that she had thought of strange before, through the quit repition of season upon season, almost femiliar to her now. In the way the author ends the story it helps give inspiration for a new beginning and new season." 3 2 3 +10351 4 "In the story, @ORGANIZATION1, by Minfong Ho, a girl named Saeng tries to adjust to a new country, but it is nearly impossible. She is stressed about failing the drivers test, country, but it is and she realizes that nothing is the same. Except for one thing that she quickly recognized. A plant called the Winter Hibiscus.It made her think of her old life in Vietnam. It helped her set through hard times and she didnt want to give up on anythings.This is exactly why Minfong Ho ends the last paragraph by stating that Saeng will retry the driving test when the hibiscus is budding.The flower gives her a thought of home in Vietnam, making her try and try again.Also,the author ends the story like this to state a theme. This particular theme is, No matter how hard something might be, you can get through it. You just have to find a way that benefits you most." 2 2 2 +10352 4 "The author comes back to that paragraph because in the story Saeng is so sorry she did not @CAPS1 the test. Now saeng wants to make up for it, She vowed to herself she will @CAPS1 that test. For example, when I say to herself I am going to get sumthin done I do what it takes to get it done and I don't give up when things get rough, @CAPS3, This last sentense is what the main idea of the story is, To make up that test and @CAPS1 it, To get done what needs to be done" 1 1 1 +10353 4 The reason why this author includes this story with this paragraph is because it is still talking about saeng and that is more like her and that she has a mind like a butterflye that was trapped a burst out with this open the Saeng and her mom had but a tennage girl me and saeng we kind relate to the same thing. 0 0 0 +10354 4 "In the story Winter Hibiscus by Minfong Ho, I think the ending paragraph is there to show that Saeng has not given up. She says, When they come backthen I will take that test again. She is talking about the hibiscus and the geese. The things that remind her of home. When the reminders of home come and give her strength, she will have the power to take the test. This shows that even though she has failed she will not give up and she will try again. I think that is the purpose of the paragraph. To show Saeng hasn't given up. " 2 2 2 +10355 4 The reason why the author concludes the story like that is because he is telling the reader that after the snow leaves the author will begin to plant more plants. The test is to make sure his plants dont die during next @DATE1. 0 0 0 +10356 4 "In the story Winter Hibiscus by @CAPS1 Ho. The author is stating that Saeng is happy when she is around the plant and she finds peace with the plant because it brings back childhood memories. For example And that rich sweet scent, that was familiar ton. She loved the way it made her feel. When one of the leaves fell off and she breathed in, it remined her of grandmother. @CAPS1 might of experienced something like this. @CAPS1 might of wrote this because the story could relate to other people who moved from another country and have something that brought back memories. Everytime that l touch or smell a sweater,it brings back memorises of my grandmother. I feel that he wrote this because of his personal experience and it could relate to others" 1 2 2 +10357 4 "The author concludes the story with this paragraph because she wants to show how some some people vowed silently because the dont want to express themselves. Also maybe because they are not very mistful of people even themself. One day I was like that I didnt want to talk to anybody. All I want to do is sit in my room and think. Think about my life were I am going to go after i die. I just woulnd sit in my room in the dark wondering if in my room in the dark wondering if I would come back in another body or will my soul roam the earth. But think I starting think that I am a kid, I got a wonderful like a head of me. I when I get to the one where I need to think about then I would . So I started talking to everybody again" 0 0 0 +10358 4 "The author concludes this story by saying this statement because the author want you to feel like the character in the book is determined. The ator is trying to put across a statement saying get through then try again. The character is not giving up, and she will get through the test eve though its hard." 1 1 1 +10359 4 The author is talking about gardning and how she wants to get better at in the spring. She probably thinks shes bad at gardening because her mom is really good at it and she wants to be that good at gardening too. 0 0 0 +10360 4 The reason why is so you get the feeling that Saeng feels about gardening. She is praying for spring to come so she can do it over again. She like to watch plants grow and become something that you can eat. That is way the Author concluded the story with this paragraph. 0 0 0 +10361 4 "The author concludes the story with that paragraph to show determination and hope. The geese and the hibiscus symbolize saengs determination, because they always come back no matter what. Saeng will be back to take the test , just like the geese will also be back. The hibiscus also symbolize her because it has faced adversity also. It has been taken to new paces and had new homes, much like saeng , and has a harsh winter coming in the near future. However , it always finds a way to come back and bloom in the spring, which is what saeng hopes to do by taking the drivers test. The author included the last paragraph to show symbolism between saeng ,the geese , and the hibiscus.That is why the author concludes the story with that paragraph. " 3 3 3 +10362 4 "The author concludes the story with that paragraph because he basicly trying to say that everything happens for a reason, and that reason might mean through seasons. She @MONTH1 think that she would have better on her test in the spring only for the simply fact that everything blooms in the spring." 1 1 1 +10363 4 The author concludes the story with this paragraph because it shows that she can go through these obstacles even though she moved from her home land. Also it shows that she has more confidence thats why the author concluded her story with that paragraph. 1 1 1 +10364 4 "When they come back, Saeng vowed silently to herself, in th spring. when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. I think the author concludes the story with the paragraph is that what happens to his life that he will take the test again. But in the story it talks about. One of the blossoms had fallen off, and carefully Saeng picked it up and smelled it So I think that they take care of there garden and try to make it live in the winter. So thats what I think about the last paragraph when they come back, Saeng vowed silently to herself, in the spring. when the snows melt and the geese return and his hibiscus is budding, then I will take that test again." 1 1 1 +10365 4 "The author concludes the story with this because that one paragraph basically sums the whole story up. ""When the snow melts and the geese return"" basically goes back to the beginning of the story when saeng started planting. This is why the author gave the story ends conclusion." 0 0 0 +10366 4 "The auther concludes the story with this paragraph for a few reasons. first, The test is important to Saeng so that she can prove to herself that she is able to pass it. Ending with this paragraph also gives the reader some suspense as to wheather Saeng will pass or even go to take the test again. Lastly, this paragraph shows Saengs personality traits. It shows that she is persistent, determined, and strong willed." 2 1 2 +10367 4 "In the story ""Winter Hibiscus"" at the end of the story the author writes ""when they come back, Saeng vowed silently to herself, In the spring, when the snow melt and geese return and this hibiscus Is budding, then I will take the test again."" The reason why the author said that Is because she Is trying to tell the readers to get right back up and do it again, If you fell once there Is no harm and trying again. When its spring and the birds aren't flying south, she promise to take the drive's test. After failing a driver test Saeng buys a flower at a florIst that remInded her of Vietnam. She takes it home and put it in the garden. Told her mother that she fail, Saeng's mother was very understand and told her maybe next time In conclusion the author write the last paragraph as a moral to never give up and keep trying until you accomplish your goals in life. " 1 2 2 +10368 4 The author concludes the story that way so she can keep everyone wondering. I belive she ended that way to let us know that she will be back and when she comes back she will be ready for everything including that test. She left us wondering because when she does come back she is going to want use to Read about what happened when she came back and what happened when she @CAPS1 the test. She only made that vowe to herself nobody else because if she did she would have let them down if she failed. That is why she concludes the story that way. 2 3 3 +10369 4 The author ends the story with this because she is saying she will be around next year to take the test again. She is saying how she wants to be around when the plants grow. She mostly wants to see the hibiscus grow. Because she appreciates and likes nature so much she wants to be around again to see them grow. 0 0 0 +10370 4 The author concludes the story with this final paragraph to show how sentimental and important the plant is to Saeng. She will take that test again when the winter is over because it's too cold for nice hibiscus to survive. You need a winter hibiscus. Not like the kind we had before (@NUM1). This shows how important it is that she finds a hibiscus like the ones she had at home. She shows dissapointment in herself until that last paragraph when she shows courage and strong will. 1 1 1 +10371 4 "When they come back, Saeng vowed to silently herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The author concluded this story in such a way that it makes the reader ask questions much live in the @CAPS1s @ORGANIZATION1 when there was a modernist way to interprentle means of a sty by makeing the reader ask questions instead of that beig a moral to the story. For example in the @CAPS1s @ORGANIZATION1"" the main character @PERSON1 run away and all are could get as a slaming door. Much live in this story there is a twist in that what test is the main character talking about? Is she goig to try to move ww friends? is this live a resolution she is making to herself? also this leaves the reader wanting more of the story so that they @MONTH1 go back and even read it again." 1 1 1 +10372 4 "The Winter Hibiscus is a realativly sad, but hopeful story that uses lots of symbols. The author concluded the story with a confident ending that makes the reader feel satisfied. The two reasons he wrote this conclusion paragraph is to give the ending a hopeful tone and relate the objects she sees to the spring. Winter Hibiscus ends with a hopeful tone thanks to the confident vow Saeng silently makes. She had a rough day, and the author wanted to make sure she had something to look as a goal. It also reveals how strong of a person Saeng is. The author uses this conclusion paragraph to leave the reader with a hopeful and confident tone. The second reason the author concluded with that conclusion paragraph was to relate some of the objects she sees to the spring. The geese represent the new place she is living in, and the hibiscus represents her old home. This paragraph links these two symbols together, so the reader can relate them to the spring. The way the author concluded the story was brillantly done. It represents a hopeful tone, and symbols that relate to spring. It ends confidently, and leaves the reader satisfied. " 2 3 3 +10373 4 "I think author concludes the with this paragraph because she wants to not give up. For example, he wants to show us never give up at anything even if you fail. Therefore, thats why he ends like that." 1 1 1 +10374 4 The author concludes the story with this paragraph because she wanted to get her point across. also because she wanted to create an under standing of the complexitier of the passage. The author wanted the reader to feel her message as if they were there to witness it. 0 0 0 +10375 4 "The author concluded the story with the sentence, because the author wanted to show that since Saeng found the flower she has new hope and reason for passing the test. The flower gave her inspiration because it made her look back on her home in Vietnam I mean, not like the kind we had at-at"" She found that she was still too shakey to say the words at home""When Saeng brought the plant to her new home and planted it in the garden it was like bringing a little piece of Vietnam home which made her feel better. The over all inspiration and the memories the flower had for Saeng made her feel better about her new home and feel better about her new home and gave her a reson to start fresh with her driving test." 2 2 2 +10376 4 "The author concludes the story with this paragraph because she is saying that when the flowers come back in the spring, and the geese return and this hibiscus is budding after winter, she will garden them again." 0 0 0 +10377 4 "The author of winter Hibiscus concludes the story with when they come back, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take the test again.Saeng, because it creates the mood that Saeng is accepting the changes. Just like nature adapts to climate and location change, saeng seems to appreciate her situation and is deciding her situation and is deciding to make it a positive instead of a negative. The author is showing that if your having trouble, try again; through the main character, Saeng." 2 2 2 +10378 4 "I believe that the author concludes the story with this paragraph for alot of different reasons. One reason why the author could have concluded the story with this paragraph is because she might try it again. A second reason why the author could have concluded the story with this paragraph is because she probably wanted to try to make her mother proud. A third reason why the author could have concluded the story with this paragraph is because she probably really felt that she really disappointed herself. In conclusion, if you mess up on something, try again maybe you will do alot better. " 1 1 1 +10379 4 "Minfong Ho concluded Winter Hibiscus with the lines when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again to show that there is always hope for better things to come. Saeng had become sad because she remembered her home in Vietnam. She longed for her natural home and familiarity. Her missed memories agonizingly hurt Saeng because she was now for away and in a different world. However, the author started to reveal hints that @ORGANIZATION1 would accept @LOCATION2 and find come childhood memories there too. Overhead, a flock of Canada geese flew by, their faint honks clear and yes- familiar to Saeng now. Already, Saeng was growing familiar with her surrounding area in @LOCATION2. Her hibiscus would keep her @CAPS1 culture, tradition, and memories alive, as the geese would help her feel happy and accustomed in @LOCATION2. As one kept her @CAPS1 and @CAPS3 culture alive through memories, she would continue a successful life and pass her test. That is why Minfong Ho ended Winter Hibiscus with the particular paragraph." 3 2 3 +10380 4 "The author concludes the story in winter hibiscus, Kind of funny/ weird like . The concluding sentence is when they come back saeng vowed silently to herself in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again. I know one thing the part of the title is in the concluding sentence, so it is basically it is concluding the whole story, plus the characters" 0 0 0 +10381 4 The author concludes the story with that paragraph because it shows that the narrator is ready. The narrator tried the test once and failed. She bought herself a flower to cheer herself up. Her mother talked to her and then she felt better. She felt determined to pass the driving test just like the flower was determined to survive. 2 2 2 +10382 4 "The author concludes the story with this paragraph because it symbolizes the change in Saeng as well as other things. The snow always melts when the seasons change. The geese always come back when the seasons change. The hibiscus will bud when the seasons change. Saeng will try again when the seasons change. But shell be a different person also. Knowing that everything will change but stay the same on the inside, Saeng decides she will too. She has more of an appreciation for @CAPS1 now after seeing the hibiscus and remembering her past." 1 2 2 +10383 4 "The author concludes the story with this paragraph when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. The author shows that Saeng will take the test again and that she will be ready and she will pass the test. Also, the author concludes the story with that paragraph because it shows that it ends the story knowing that she will take the test over again, so she knows she has faith to take the test again and make her mother proud that she passed. This is why the author concludes the story with this paragraph" 1 1 1 +10384 4 I think the author concludes the story with this paragraph because in the spring its warmer and more fun plus she will have time to study her stuff in winter for the spring time. Also because like she says in the story it goes along with the conclusion at the end that she finally understood what was going out so she connected it to the way the geese are. 0 0 0 +10385 4 The author concude the story with that paragraph because its what she solemely promoted herself. 0 0 0 +10386 4 "In Winter Hibiscus by Minfong Ho, the authors purpose in concluding the story with When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then l will take that test again, was to show how the hibiscus and the other plants in the store symbolized Saeng. When Saeng enters the store, she becomes overwhelmed by how many things she had forgotten about living in Vietnam. Plants that she had not even realized she had known but forgotten grew her back into her childhood world. This is when Saeng associates herself and her childhood with these plants. When she sees another plant she knows in a pot, she thinks to herself, How strange to seat in a pot back home it just grew wild, jutting out from the cracks in the brick walls or between filed roofs. This symbolizes her, because out of her home, she seems to feel strange and caged, too, while at home in Vietnam she was much more free-spirited. The hibiscus plant, when Saeng takes it home, is described by her mother as strong enough to make it through the cold months. Saeng identifies herself with this description, and so decided that when the hibiscus is done dealing with the bad stuff, she will have, also, and will have budded and grown just like her plant. Then, she will be ready to achieve her goal." 3 3 3 +10387 4 "The author concluded the story with ""when they come back, Saeng vowed silently to herself, in the spring when the snow melts and the geese return and the hibiscus is budding, then I will take that test again. Saeng believes that if the hibiscus can survive through hard times and adapt to changes, and survive she can also. Saeng icoms that even though she has moved to the United States and it is different she is strong enough to survive. Failing her drivers test dosent mean that she is incapable of anything, but trying again with a fresh start like the hibiscus." 2 2 2 +10388 4 "The author concludes the story with this @CAPS1 the author wants to show Saeng hasnt given up. Easly in the story Saeng goes to the green house and starts to cry. When she gets home she says to her mother, I-I failed the test. @CAPS1 of this Saeng wanted to go back and try again. That is why the author ended with that paragraph." 1 1 1 +10389 4 "The last paragraph was added in order to represent the determinedness and adapting to new things in Saeng and her family. In the beginning, Saeng held bitterness at failing the test. But after she remembers her homeland through the flower she accepts it. Just as the flower will bud, she will be a new person and thus pass the test. An example of her being determined to deal with it is that she does make friends, and, though the food she offered was rejected she didnt give in. The moment of breakdown was as she got the flower. After she got home it was over with and again she accepts the change." 2 1 2 +10390 4 The author include the last paragraph because Saeng is not going to give up. and she will try again. I think Saeng bought the flower because she had them at her home land and it will help her. For example Saeng started to cry because she miss her homeland. 1 1 1 +10391 4 I think that the author concludes the story with this paragraph because he things when the flowers come back they would be batter. I think the he thinks that it would be a better test next time 1 1 1 +10392 4 "The author concludes Winter Hibiscus with the paragraph because it continues the theme of adjusting to changes in life. In the story, Saeng has come to the United States from Vietnam and it is quite a change. Also changed are the plants. The hibiscus reminds Saeng of Vietnam, but it is different. The mother in the story says, Its flowers arent as pretty, but its strong enough to make it through the cold winter months here, this winter hibiscus. The hibiscus also relates to the theme because it is able to adjust to changes. The final paragraph talks about snow melting, geese returning and the hibiscus budding. These are all changes the author uses to connect to the theme. This adds more understanding to the storys message. Additionally, the tone of the last paragraph is hopeful, which gives the reader a positive feeling. The tone adds to the theme of the story." 2 3 3 +10393 4 The story is about he failing the test. She says she will try next year when the geese come back. 1 1 1 +10394 4 I think he means thas seasons change and that winter will come again. I think that is the test. 0 0 0 +10395 4 "I thinks that the author concludes the story with the given paragraph to show that she is similar to the hibiscus and geese. First, the geese and hibiscus both have a goal, which is to survive the winters. Geese fly south for the winter to stay warm. This is similar to Saeng worse thing both moved to a different environment where they must adapt. Also, Saeng must experience winter along with the hibiscus. The hibiscus needs tobe strong, to overcome winter, from this, it shows Saeng is like her hibiscus because she needs to be strong to overcome the test. If her hibiscus can overcome its test, winter then she can survive to cangner her own." 2 3 3 +10396 4 "The author of Winter Hibiscus includes when they come back in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take the test again because it shows that she can adapt to change and still can think about her old country too. An example of how she can keep her old country alive in her life is But she had grown up eating it and, she admitted to herself, much perferred it to a Big Mac. This shows that she can still eat the foods she ate back at her old home and try new things at her new home. In conclusion the excerpt shows that the author can put both cultures together and be happy." 2 2 2 +10397 4 "There could be many reasons why the author concludes the story with this paragraph. There could be many different meanings of this paragraph that could have importance to the story. I think that the author includes this to say that when the spring comes, she will have many more reasons to take the driving test. You can break this paragraph down to mean many different things. I interpreted it to mean that when the spring comes back, she will have a new beginning. The snow melting away represents all the hardship she faced in the previous year. The geese returning and the hibiscus budding means that they are also coming back to start the new year. They are too coming back, getting ready to start their new life. It is included at the end to show how Saeng is trying to forget about how she failed the test. She is using this time now to prepare for the next time she is going to take the driving test. She thinks that once she forgets all of the bad things she went through the previous year. She had to move on and be able to pass the driving test the next time around. The author concluded the story with the paragraph to show how Saeng plans to solve her problems. The way you interpret the paragraph gives you different ideas about what it is trying to say. I think that it is showing @CAPS1 new beginning that she will have to go through the next year. " 2 3 3 +10398 4 "I think the author concludes the story with the phase when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again I there saying that they will be ready for them the next time they come back." 0 0 0 +10399 4 "The author ended the story Winter Hibiscus with Saeng vowing to retake the test. He ended it this way to show the themes of this story. One theme of the story is to never give up. The winter Hibiscus has to last through the long winter but it does survive, and it inspires Saeng to keep trying. Another theme is to overcome your obstacles. The flower faces many dangers, but still manages to blossom. Saeng wants to overcome her obstacles and pass the test. Therefore the ending of the story displays the themes." 2 1 2 +10400 4 "The author concludes this part, because it made the story stand out a little. For example when Saeng said that she ment when the plants came back. It also gave the ending a little something to hang on two, rather than staping on talking about the v or geese to get the reader off topic. Last she also ment when the geese came back." 0 0 0 +10401 4 I think The Author finish the story of with that @CAPS1 the girls sees this plant As A symbol of straidth And fAith so she will tAke the test Next year When it comes Back @CAPS1 she truly likes the plant And she hopes it will Bring her lack. 1 1 1 +10402 4 "I think the author ended the story with that phrase to show that she wont give up; no matter how hard it is she keeps trying. The girl says in the story I failed the test, and then at the end of the story says I will take that test again so she is not willing to fail forever. I also think the author ended the story with that paragraph to make you wonder if she will ever pass the test." 1 1 1 +10403 4 I think the author writes this because whatever test she has to take she wasnt ready for before but now whenever the geese return and the hibiscus return the she will be ready to take the test. Maybe she wasnt mentally prepared. So inconclusion I think when she says the geese and the hibiscus return the she will take the test and maybe she wasnt physicaly and mentally prepared for it. 1 1 1 +10404 4 "Authors chose their closing paragraphs carefully. The author chose to end their story with this paragraph because all of the stuff the actor has in the last paragraph represents something special in the characters eyes. There are resons the author chose to conclude the story with that paragraph. The authors chose of the ending paragraph is very important. The character says this hibiscus is budding, then I will take that test again. The hibiscus that she mentions represents the ability to overcome obsticles. In the story it is talking about the girl overcoming the failed test and retaking it. That is why the author concludes with that. The author also writes. when the snow melts and the geese return This to the character represents new beginings and chances. That gives the character the sense that next time around she will pass the test. The author adds that paragraph in the end to symbolize new beginnings and chances and the ability to over come obsticles. Authors choose their last paragraph for specific reasons. This author did as well. The author did it to symbolize things." 2 2 2 +10405 4 The author concludes the story with that paragraph because of a saying that when its cold and silent shes hot to her self but when the snow melts and spring is here. Shes said and does lots of fun things. 0 0 0 +10406 4 "I believe the author concluded the story with that paragraph because the geese that flew down south in a beautiful @CAPS1 formation, fly down every season. So she tells herself, @CAPS2, she will take the test again when the geese return and the hibiscus plant is budding. For example, she thinks to herself, Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quiet repitition of season upon season, almost familiar to her now. @CAPS2, looking up at the geese she is almost reminded of an experience she went through somewhat similar." 1 1 1 +10407 4 "The author concludes the story with this paragraph, ""When they came back, Saeng vowed silently to herself, in the spring when the snows melt and the geese return and this hibiscus is budding, then I will take that test again to emphasize that you can overcome a defeat or failure by waiting until the ""season"" come again for you to re-endure. Basically, the hibiscus(a plant) meant much to the narrator and her mother which was dying and they dug up a hole to help it to grow, so when it grows again that proves that it will be living better. So when Saeng relates the test that will be her her having the opportunity to past the test. The story with this paragraph symbolizing a new beginning about to take place. This actually means a situation that will came again that will help you to get what is needed out of it that you missed. The story and the paragraph emphasizes what life is about to budling a cycle." 3 2 3 +10408 4 She cant wait till the flowers start to come back when the snow melts so it isnt very cold out so they grow and she is going to take her test that she has failed when the geese and flowers come back. 1 1 1 +10409 4 "The author concludes with this paragraph to show that Saeng, like the geese and the hibiscus, will return again and have hope. Saeng is a little depressed in the story because she is in a new country, and just failed her driving test. The hibiscus plant in the florist shop brings back painful emotional memories for her, but at the same time, s very comforting. Later in the story, she plants the hibiscus outside in the garden with her mother. As her mother goes inside, Saeng watches the geese fly overhead. Almost reluctantly, (Saeng) realized that many of the things that she had thought of as strange before had become, through quiet repetition of season upon season, almost familiar to her. Like the geese. Saeng knew the geese would return in the spring, just like she would to her driving test. The hibiscus would be in bloom again too to provide her with hope. This is what the final paragraph in the story winter hibiscus means." 3 2 3 +10410 4 "The author concludes the story with this paragraph to show saengs everlasting determination. This idea of her determination to succeed can be connected to the plant she brings home. The plant she knew grew wild where she used to live, but she found it potted in the United States which is limiting its growth, just like saengs new country seems unordinary, and she feels out ofplace." 1 2 2 +10411 4 "The author concludes the story with Saeng telling herself shell take the test again because it draws together the overall theme and major actions of the story. The theme of the story is that you can get used to a new environment by finding beauty in it and similarities to your old home. Saeng says that many of the things that she had thought of as strange before had become, through the quiet repitition of season upon season, almost familiar to her now like the geese. And when shes in the greenhouse the plants draw her back into memories of Vietnam and her grandmother. Saeng was having a hard time adjusting to new things after moving to @LOCATION2, but she was determined to overcome the difficulties just like she had overcome the differences between the @LOCATION3 and Vietnam. I think the author concluded the story by talking about the geese and the hibiscus and re.taking the test because it demonstrates all the ways that Saeng is adjusting to her new life and shows her and the reader that she can overcome new things. She vows to herself that she can do it, and fereshadows her future and sucess and adaptation to an @CAPS1 lifestyle. " 3 3 3 +10412 4 "The author concludes the story with the paragraph that she did because it was the end and the start of a new beggining. The author uses the sensens in her story. The winter is the current season and spring is on its way. Although Saeng failed her test in the winter when most things die, she is looking forward to spring to start again on her test. The geese will return and the hibiscus will bud to show spring is here with new life. Saeng will also have new life in her test to pass it this time and drive. The spring season will come and new life will be provided to all. " 2 2 2 +10413 4 The author concludes the story with this paragraph because the paragraph is like say most of the story but in a small and shorter way. 0 0 0 +10414 4 This paragraph is a good way to end the story because it relates to the test. The narrator says she will try again in the spring. 1 1 1 +10415 4 I believe that the author concludes the story with this paragraph because it's what the story is all about it just exploins what happened in the end as if what happeed through the story was the growth and living of a flower. 0 0 0 +10416 4 "The story Winter Hibiscus"" by Minfong Ho. The author concludes the story in a what seems like incomplete paragraph. The girl Saeng vows to take her driver test over when the spring comes. when Saeng was holding the plant, she felt cold and halpless like how the plant did. ""Then she noticed the potted plant that Saeng was holding, it's leaves quivering in the wind."" By Saeng's mother reassuring her that she was okay with her choice it made Saeng grow as a person, ""I'm glad you got it."" @CAPS1 mother also says, ""look how root-bound it is, poor thing."" That in a way describes Saeng clinging to stay connected with her country. Saengs mother also tells her of now the plant will surely survive. When the spring comes the plant will be just as strong, and so will Saeng. Which is why the author leaves off where she did" 1 3 2 +10417 4 "The author concludes the story by showing the girls connection to the plant and the symbolism of the geese, the Winter hibiscus is her connection to her homeland. She said shell retake her driving test when her plant buds and is brave, so she will do the same. The geese flying south show her journey as a person because she will take the test when the geese come back from their journey, as she comes back from hers." 2 2 2 +10418 4 "The author wrote the ending paragraph the way she did for many reasons. The main reason for this is because she wanted to end the story on a lighter note. All throughout the story there was depresing nogistalistic tone that made the reader yearn for the past. The author wanted to put on emphisis on being strong even though you @MONTH1 not enjoy where you are at. Also the author wanted to show the strength of the main of the main character Saeng. Even though she has just failed a test in a new, strange world she still wishes to continue pushing foward. This adds more demension the the character and makes her less static and more dynamic. This is a very good story to read if you are homesick and need something to push you forward." 2 2 2 +10420 4 The author concludes with that statement because it shows she needs time. She needs time to adjust to her new home like the hibiscus to get some roots in the new soil she is on. When she is at the orchard she sees the hibiscus and has memories of her old home making her cry but yet feel good at the same time. 2 1 2 +10421 4 I believe the author concludes the that passage in the story to show patintions. Saeng was to wait for spring maybe it will feel like her home town again. She likes the spring better than the winter. She likes the birds the geese return in sping. They go away in winter. That way I believe the author concludes that passage. 1 1 1 +10422 4 "when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again. The author has left her home and moved to another country. She is now in an unfamilar place. Everything that now surrounds her is new and mostly un-known. By ending the story with this quote, it suggest that the author still has hope of adapting to her new home. When she left her home, she did not just leave a building behind. She left her home, people she loved, and an endless list of memories. At times she @MONTH1 have felt out of place because she was no longer in her comfort zone. She is now out of the box, and in a whole new world. When she saw the hibiscus, the exotic plant took her back to her memories and to the love of her old home. Then she came back to reality and broke apart with sadness and failed her test. The ending sentence shows that the author is willing to try to survive in this new place and that she is still determined to pass her own test of adapting. " 3 2 3 +10423 4 "The author concludes as the story with the paragraph ""when they come back, Saeng vowed silently to herself., in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again"" mean that she will take the test and hoped she pass so she could make her mother happy and support her. She chosee spring because spling is the rebirth of nature and Saeng would like to retake the test with a clear and clean mind. I think that the reason why the author choose to put the paragraph in the end of the story. " 1 1 1 +10424 4 "The author concludes the story with that paragraph for several significant reasons. Throughout the story Saeng struggles with her past and overcoming it. The paragraph helps bring a sense of closure to the story. When Saeng returns home with the hibiscus she tells her mother she couldnt help it and was unable to overcome her past. Saeng said, I-I failed the test. When she says the test she means the ability to cope with the loss of her grandmother and homeland, and overcome it. In the concluding paragraph Saeng says she will retake the test. She said, When the snows melt and the geese return and the hibiscus is budding, then I will take that test again. In conclusion, the author uses the concluding paragraph to bring closure to the story and the emotional obstacles Saeng faces." 2 2 2 +10425 4 "The author concludes the story with this paragraph because she wants to end the story with hope. For example, since she has move to the United States, she feels homesick. To make it worst, she failed the drivers test. She found she was still to shaky to say the words at home, lest the burst into tears again. This quote helps add to the homesick girl. She concludes with this paragraph to show that when spring comes, shell start out fresh and re-live her life in @LOCATION2." 2 2 2 +10426 4 "The author concluded this story with the paragraph because, Saeng is explaing to the readers that she will take the test again when the time is right. When things seem to be getting better she will retake the test. That is why the authour used that paragraph to conclude her story." 1 1 1 +10427 4 "In the story Winter Hibiscus written by @CAPS1 Ho. The narrarator goes to a greenhouse that has many flowers but one in perticular catches her eye. A ''winter'' Hibiscus plant. This plant reminds her of her homeland and everything that used to take place there this plant also reminds her of her grandmother's long silkly gray hair and how she used to watch her dry it in the sun and then she would help her knot it up into a ton with a bud of this plant in it. The author ends the story with this because it counters her statement when she say ""I-I failed the test."" and the end of this passage says ""..., then I will take the test again""." 1 2 2 +10428 4 "In the story ""Winter Hibiscus"" the girl Saeng @CAPS1 the drivers test ""I-I failed the test"" said Saeng. She had bought a hibiscus because the flower remined her of some of the memories from home and the hibiscus she had at herhouse. at the end she says that she will retake the test when the geese come back, the snow has melted and the hibiscus is budding. She does this I think because she needs time to just think things through to just remember back home and to make a hibiscus garden. The hibiscus in this story is just like Saeng. They both did something wrong or @CAPS1 something Saeng failed the test and the hibiscus was constrited to a pot. But they both are going to change the bad thing.." 1 2 2 +10429 4 "In the story Winter Hibiscus by Minfong Ho, the author concludes the paragraph in that way to convey the determination and new found motivation Saeng found by buying the familiar plant. Although she failed her test, finding a plant that reminded her of her home and her grandmother instilled motivation in her to try the test again, she wanted to make her new home in a new country workout for the better, no matter what. She lifted her head and watched as their distinctive u was etched against the evening sky ... the author included details about the geese to represent moving on. The geese will go, and come back, just like Saeng. She failed the test the first time, but getting the plant and seeing the birds motivated her to try again. Almost reluctantly she realized that many of the things that she thought of as strange before had become ...familiar to her. The geese were one of the things mentioned that has become very familiar to her, in her new home. Concluding the stay with a bit about the geese conveys to the reader that she is slowly but surely learning how to adapt to her strange new home. Finding the plant helped her, because it was already familiar to her. Saeng felt a shock of recognition so intense, it was almost visceral. @CAPS1, Saeng said. After failing her drivers test, walking into the florists shop and finding that plant comforted her. It made this new place feel closer to home than it did at first. The geese had become familiar over time, and finding the plant was simply comforting. Concluding the story that way showed the reader that she was adapting and learning to deal with a tough situation in a comforting way. " 3 3 3 +10430 4 "In the story ""WiNter Hibiscus"" by MiNFOnG HO the author concludes the story with ""when they come back, saeng vowed silently to herself, in the sprinG, when the snows melt and the geese return and this hibiscus is buddiNG, then I will take that test again"". The author concluded the story with that @CAPS1 because she is sayinG that when the year starts OFF @CAPS2 and starts over, that she will too. She's sayinG that when the Geese @CAPS3 back, the snow melts, and the Hibiscus starts to bud that they all start over and start a @CAPS2 beGiNNiNG. So when she Goes to take the test it will be a @CAPS2 year." 1 2 2 +10431 4 "The author of Winter Hibiscus ended her story with words regarding to the story @CAPS1 failed her driving test. Saeng cried when noticing her past through flower. As well as bought dok malik seeds show that the story ended the way it did, because next season" 1 1 1 +10432 4 The author concludes the story with this paragraphto show that saeng is determined. She says that she is going to take the test again which shows that she is determined. Even though saeng failed her driverd test she is not going to give up. 1 1 1 +10433 4 The author used that sentence because the snow is melting and the geese are coming back. The flowers were budding up and that is why I think the author used that sentence. Scribed by @ORGANIZATION1 0 0 0 +10434 4 "I believe that this was a good ending to the story. When Saeng says When they come back she is talking about the flowers. When the come back alive. In the spring shows when the flower will come back. When the snows melt and the geese return she is saying that after winter (when the snows melts) and when the geese return(in spring). And this Hibiscus is budding She is saying when the flowers blume again in the spring. Then I will take the test again,"" she is saying after all this happens she will retake the test (in the spring). This shows that Saeng will be watching at all these things happening and count down till spring again, so she can retake the test. She is ready for spring to be here, so that she can study and pass the test, and work at the flower @CAPS1. This will be her goal for the winter, till spring comes!" 1 2 2 +10435 4 "The author concluded the story with that ending because in the spring when everything blossoms. And she wouldnt be focused while there is snow. So when the hibiscus is budding, thats when she will be able to take her test again. I think he wrote that because it means something to her." 1 0 1 +10436 4 "This conclusion of the story provides a sense of hope for the future. The girl is upset that she failed the test but still has hope for what will happen next. In the story the narrator says, She lifted her head. This quote is showing that she is not going to quit and give up, but that she will try until she succeeds. The conclusion of the story leaves readers to wonder if she will try harder and pass the test for the second time. When she says, when the snow melts and the geese return, this shows us that she is like the geese because their both going back for a hand fought journey. Also, when she says, and this hibiscus budding she is saying when everything comes to life and is at its highest peak she will take the test because she will have the most confidence. The author concludes the story to show that there is hope for the future and that she is not going to give up. Although she is upset about failing the test she will certainly be ready to pass it in the spring." 2 3 3 +10437 4 The author concludes the story with this paragraph for a couple of reasons. 0 0 0 +10438 4 Saeng is @CAPS1 that it Will be a longtime before she will worn about school work again. thats Why the author concluds the story with their paragraph. 0 0 0 +10439 4 "The author concludes the story with that paragraph, because he wants the emphasize that the girl is not completly dissatisified with leaving her home. He ended with that because he wanted to she that their is hope for her to learn to love her new home." 1 1 1 +10440 4 The author ends the story with this sentence because Saeng needs a break before she takes the test again. Saeng is comparing to indifferent things; Flowers & taking a test. That is significant. Thats why the author ends the story with this sentence. 1 1 1 +10441 4 The author concludes the story with that paragraph to show that the girl is going to be like the hibiscus. The next time it blooms the girl will be ready for the test and will take it again and will pass. The authour wants to show that the girl will not give up and will try again to make sure she passes. The author involves the hibiscus to show that the girl and the will bloom the same time the hibiscus will and will pass the test. 1 2 2 +10442 4 "Well, I think the author concludes the story with that sentence because maybe Saeng likes the spring and can concentrate better with her favorite flower that she thinks relates to her life." 1 1 1 +10443 4 "The author ends the story like that to show the theme working hard, Some other examples of working hard are the winter hibiscus."" Another example is her vow to pass the test, so that is why the author ends the story that way." 1 1 1 +10444 4 "The author concludes the story with they paragraph that they did because it's about the same thing that they opened the story with. To introduce the story, the author tells about Saeng failing her drivers test, and then seeing a familiar plant that she wants to buy. The middle of the story is about how she is having a hard time adapting to her new home. So to conclude the story, the author puts that Saeng will take her drivers test again, once the flowers starts budding, and the geese come out. The flower and the geese remind her of home, so this tells you that thinking of her home, and the objects that make her feel at home, comfort her, and help her overcome obstacles." 2 2 2 +10445 4 "Authors use many techniques to improve their stories. Without these tequniques a story @MONTH1 seem bland average or unattractive. Author Minfong Ho canverys the fact that Saeng will try to take the test again. Instead of simply stating the fact that she will retake the test, he has her make a promise on the geese that she will. The Author ended the story like this show how strongly she felt about the test." 0 0 0 +10446 4 "The author concludes the story with this paragraph because it connects the hibiscus back to the trials and triumphs of saeng . Just how saeng cant give up .and must go back to retake the test, the winter hibiscus must make it through the hard, rough winter and come back strong . The hibiscus are a symbol of hope and saeng thinks of them as her hope. Throughout the story, the hibiscus are comforting to saeng because they remind her of home. The author includes this because many people can relate to this and find hope in things. For saeng, knowing that each year the hibiscus will come back in those conditions, reassures her that shell be okay there as well." 2 2 2 +10447 4 "I think the author concludes the story with that paragraph to show a new beginning. The geese are comming back to restart their life there, the hibiscus will be blooming, and she will re-take the test. At the beggining Saeng was depressed about having to leave her old country and grandmother. Saeng began to feel A wave of loss so deep and strong that it stung Saengs eyes now swept over her. She remembered how some of these plants grew wild in bushes or between cracks in the sidewalk. Saeng saying what she did in the last paragraph is her. showing that she found comfort and confidence in the hibiscus. Memories of the past showed her the way and now she is going to retake her drivers test." 2 2 2 +10448 4 I think the author concludes this story wit this ending paragraph because the story is all about how she feels comforted in the plants and she wants to wait until the weather breaks and the geese to come back to take her test. I think she wants to wait that way she will be more comfortable with her surroundings and she can clear her mind and do her best on the test. 1 1 1 +10449 4 "The author concludes the story with this paragraph because it shows Saeng wants to take the test again, but she wants to take the test again when everything else good and happy returns like the plant and the geese. This is true because Saeng says ""When they (geese) come back and this hibiscus is budding I will take the test."" This shows her maturity and happiness and happiness. She wants to do something hard and maybe even not fun when everything else returns and is happy. Just as when she came, she was sad, but when the geese and plant comes back she wants to help them through this and make them happy too. This way they all can be happy at the same time." 1 1 1 +10450 4 "The short story Winter Hibiscus as written by author Minfong Ho, ends with main character Saeng, promising herself that in the spring when the geese return and the winter hibiscus begins to bud, that she would re-take her failed drivers test. Mingfong Ho, writes this story, with heavy imagery and symbolism, the hibiscus found in the floral shop, represents a connection for Saeng to her homeland, and the bittermellon, which is loved by Saeng, but unbearable to people in @LOCATION1 ,represents Saengs hard time connecting to people in @LOCATION1. And for Saeng, the budding hibiscus, and returning geese, are representative of a new opportunity to pass her drivers test, and better adapt to life in @LOCATION1." 3 3 3 +10451 4 "The author concludes the story with that paragraph because she wanted to show that Saeng doesnt give up and that nature gives @CAPS1 strength. The conclusion shows that Saeng doesnt give up by saying that she is going to take the test again, even though she failed it earlier that day. Also, it shows that nature gives Saeng strength by saying that Saeng will take the test again when the geese return, when hibiscus buds and when the snow melts in spring nature gives her strength because it reminds her of where they used to live and her grandmother. In conclusion, the author concluded the story with that paragraph to show that Saeng is not a quitter, and that nature gives her strength and confidence." 2 2 2 +10452 4 "The character, Saeng, experiences both internal and external conflicts. Saeng had failed her drivers test and stilled missed Vietnam. The ending of the story was an excellent choice of conclusion for the story. The flock of @CAPS1 geese represented her changes. She used to foot awkward and out of places. Many things were new to her. Saeng realized that life isn't so bad for her. The planting of the winter hibiscus represented her change as well. It showed how she will start new and continue happily. Saeng will plant a new seed. The ending was well chosen for the story because it foreshadows Saengs future. The story is inspiring and the ending greatly contributes to the effect." 2 2 2 +10453 4 "The author concludes the story with this paragraph to show how Saeng relates the hibiscus overcoming of problems to her own overcoming of problems. Saeng is comparing the hibiscus to herself. If the hibiscus can adapt to its surroundings, then so can she. And if the hibiscus makes it through the winter, then she too can make it; and she will re-take the test that she failed before. Also, before this she says that things that were once strange to her now seemed familiar, like the geese. She then sees them overhead flying in a V. They are also adapting to their surroundings by flying to a warmer place, and Saeng too can adapt." 2 2 2 +10454 4 "The author Concludes the story with that sentence, because She is excited for spring to come back So she can plant more things and watch them bloom, and come alive." 0 0 0 +10455 4 "The author concludes the story with that paragraph, because it shows Saeng will not give up. Saeng failed her drivers test and as she was walking home she found a hibiscus. It reminder her of her old home. Saeng goes to the green house or flowershop and buys one. When she returns she plants the hibiscus. The hibiscus is keeping her from giving up. When it starts budding, @PERSON1 will take the test again." 2 1 2 +10456 4 "The author chose that paragraph to put at the end because that is when everything will be perfect to redo her mistake. Saeng said crying ""I-I failed the test!"" @CAPS1 means she failed at what she thought she was good at. Here let me help mother"" getting up and taking the shovel away from her mother. Saeng is trying to get better at gardening so when she does redo her mistake she will do better. As the reader can see Saeng wants to pass the test, so she can believe sh is a great gardener like her mother." 0 0 0 +10457 4 The author concludes the story with that paragraph because It makes people want to read the next story to see How she close on a the test. In the story she failed the test now that she changed she wants to retake the test because she knows she can do @PERSON1 now than before. 1 1 1 +10458 4 Cause every thing that is in this paragraph is in the story somewere. So it really intwines to gether. She learns to adapt to her new home land as dose the plant. 1 1 1 +10459 4 I would say that the author concluded this story ently paragraph because they wanted to be very consist. They wanted the reader to have a very good example and understanding of the text. In brief words. 0 0 0 +10460 4 The reason why they include the story with the paragraph is because they talk about the same thing. Then they probably included the story with the paragraph might have been to show the good relationship between the mother and daughter and how they can do things together. Then in the story they talk about going to Canada together. 0 0 0 +10461 4 "The author decides to conclude the story with this paragraph to show the strength and confidence Saeng has. By saying she would try to pass the test again in the spring is showing she is confident and is looking for a new beginning to come then. Also he concludes it this way because after she failed the test she didnt have much self-confidence. And once she spoke to her mother and knew she was understanding, Saeng knew she had to try again and perservire until she passed the test." 2 1 2 +10462 4 I think when she take the test over it is going to be in the spring and She is going to try and pass it . But she did not want to cry in front of her mother . I think she is going to make it up to her and pass the test. 1 1 1 +10463 4 The author concludes this story with that paragraph to show the readers she was knocked down but she is going to get back up again and take the test again. This is also a very good way to end the story because it shows she is very determined to pass that test and wont give up and will do anything to pass it. 1 1 1 +10464 4 "The reason the author concludes the story with that paragraph is because he is showing that she will not give up and she will do it when she is ready to. The reason I say this is because she is doing the test when she wants to, when she feels comfortable. Those are the reasons I belive that the author ended the story with that paragraph." 1 1 1 +10465 4 "I believe the author concludes the story like this to show an example of perserverance. Saeng states, through the quiet repetition of season upon season, almost familiar to her now."" This statement represents adjusting to change. Soon she will adjust fully to her new home, it just takes time. If she keeps perservering. she will make it. In the last paragraph Saeng says, when the snows melt, and the geese return and this hibiscus is budding, then I will take that test again."" Just as the season's bring things back, she will come back. I believe this last paragraph was put in to show everyone should perservere because things just take time." 2 1 2 +10466 4 "This statement shows what the author concludes about the story. It shows the theme of the story really. It you fail, then try again. This is what the statement is saying, she failed her tasks so in the spring once the hibiscus blooms again, she will attempt to complete her task. The statement also concludes how you should never gave up. Saeng had failed the test. She said,""I-I failed the test"". This shows how sad and depressed she was because, the tone the statement was said in was a sadder more depressed tone. Even though sad depressed Saeng knows that next year she will attempt to complete the test. Overall, the sentence shows what the author concludes and think about the story Winter Hibiscus. " 1 2 2 +10467 4 "The author concludes the story with the paragraph When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take that test again, for several reasons, @CAPS1, Saeng decides that she is determined to pass her driving test just like the hibiscus. Saengs mother says that it is strong enough to make it through, and Saeng decides to be strong like the hibiscus and make it through and pass the test. Next, the reason the geese are mentioned in the final paragraph is to tie in the fact that she is getting used to @LOCATION1 because the geese sound familiar. As much as she misses her old home, she is adapting. Finally, one can conclude that because she mentions the plant, which symbolizes her homeland and the geese, which symbolizes her new home, that as much as she misses her old home, shes starting to get used to her new country and she recognizes that she ispart of it. She knows that letting her past get in the way of her will not help her pass the test and, like the plant and the geese, she will return again." 3 3 3 +10468 4 The author concluded this paragraph in this story because I think that he is tring to tell the reader a message. The author is tring to say that if a plant can mak it through the cold winter then she can pass her drivers test. That is why I think the author included that paragraph. 1 1 1 +10469 4 I think the author ended the story like that because she enjoys to see the geese and she loves the spring and wants to take the test and pass. Sh is studying for it in the mean time. 1 1 1 +10470 4 "The reason why the author concludes the story with this paragraph is because the author feels that saeng will pass the test if she has the hibiscus with her, she thinks that because the hibiscus has something unique about it. And as also gives her memory of where she used to live before she had moved to the @ORGANIZATION1. Saeng had seemed out of place she did not know what to do." 1 1 1 +10471 4 The author is very creative. He concludes the story saying how the hibiscus is building and that she will take the test agian. She believes that she will do better when the snow is gone. The author ended the story with that because Saeng was very upset failing a test but with the comfort of the hibiscus shell be able to do better. He also concludes the story with that paragraph because the climax was when she failed her test and somehow the author had to conclude what was going to happen to Saeng with the test 1 1 1 +10472 4 He concludes the story like thot because the test was the main thing thot he was talking about. 0 0 0 +10473 4 "In the end of ""Winter Hibiscus"" by Minfong Ho, the narrator describes her desire to take and this time pass the driver's test she failed earlier in the day, she ""vowed silently to herself"" that she would succeed at something she had failed at in the past. This is an important concluding message, because it shows that the author will overcome obstacles in her future. Most of the story is about the sadness that the narrator experiences because of longing for her homeland, Saeng misses her grandmother and the plants of Vietnam, and she even buys a hibiscus plant to remind her of her homeland. She is also not enjoying @LOCATION2, because she has already experienced failure at her new home. However, the end of the story provides contrast do this, for Saeng vows to succeed in the future. " 2 3 3 +10474 4 The author concludes the story with the paragraph they did because it shows how much the main character has grown. She has learned that if a delicate flower like the hibiscus can make it through rough times she can too. natures fight for survival is like Saengs struggle in a new place. She discovers that you will adapt to your surroundings over time. Then after that time it will feel just like home. The adaption principle is shown throughout this story demonstrate by nature or a childs life its there. Therefore the author would agree that the conclusion of the story illustrates the biological and physical growth of Saeng. 3 2 3 +10475 4 "In the story , Winter Hibiscus, Saeng is new to @LOCATION1. She is missing home when she sees a hibiscus in a flower shop. After she takes the flower home and plants it in her backyard, she decides the next time shell take the drivers test is when the Hibiscus is budding in the spring. The author concludes the story this way because it relates Saeng to the flower. Saeng feels out of place in @LOCATION1 because the hibiscus is a connection to her old home in Vietnam, the ending symbolizes that if the flower can make it through the cold winter, she can too. She will take her drivers test as a sign of surviving and overcoming obstacles. In this story it has a overall theme that everything will get better with time. Saeng will adapt to the differences of @LOCATION1, the hibiscus will bloom; and Saeng will pass her drivers test." 3 3 3 +10476 4 They ended it because the girl is not going to give up. She is going to keep trying at this test and wont stop at it eaither. And she will be alittle brighter. She will also pass this test. And this way she wont disappoint her mother. And she will be able to get this test of of her sholders. 1 1 1 +10477 4 "The author concludes the story with the paragraph inorder to help the reader visualize a new beginning for the girl. A time to re-take the test and have the fresh new flowers to look upon. To watch the geese return. The geese are symbolic to her and the quest she had taken.. to her new home. The combination of the melting snow and the budding flowers lets the reader know of the bright fresh unclaimed future that is to come for the girl. The author uses the paragraph at the end inorder to explain more of what is to come, to enhance illustrations and capture the attentive audience. It is used to show a spirit in the girl. that allows us to see that she is like the flower, she is having trouble rooting/grasping on to the new lifestyle but there is always going to be a fresh/new time to continue on." 3 3 3 +10478 4 I think the author puts that paragraph in the story because maybe because its a good luck thing or its a tradition so its very important that its in the story. Also it could be trying to tell us something like she only take test in the spring when the hibiscus starts budding. 0 0 0 +10479 4 "In the short story Winter Hibiscus by Minfong Ho, the author conclude the story with that special paragraph in order to mutul Saengs game for wanting to be home but also to show that she is learning to overcome obstacles. Saeng wishes that she way in her homeland, and keeps up reffiring to it because she wants it back. I mean, its not like the one we had at-at-, Saeng continues to stumble because she doesnt wish to mention home because it brought her to tears. In addition, were she mentions the test, it makes to her buyin a fake test.Its - its not a real one. She refuses to buy a real one because it reminds her of the driving test and how sad she already is. The test reffs to both the plant and the drivers test. Saeng also ends with this vow because the flower represent hope to her, ""... and this hibiscus is budding, I will take that test. The emotions test of both of the situations she is is will allow her to be stronger. This vow at the end of the story shows her willing up to be strong and come through in the end." 3 3 3 +10480 4 In the story the author concludes that after shes done her test and there's nothing that to see she'll grow more. 0 0 0 +10481 4 The author concludes this story with this paragraph she did because the girl did not pass the driving test. And she adds all of them details of nature in there because she takes time to care about nature. That is what it is mainly about in the story. 1 1 1 +10482 4 "I am guessing the author adds this paragraph to tell the reader that when all of the beauty returns, she will try to get used to new thing again." 0 0 0 +10483 4 The author of Winter Hibiscus concludes the story with that paragraph because it gives a sense of starting over and a new beginning for Saeng. The hibiscus is a reminder of her home country and it keeps her going and strong and she compares herself to the geese saying that things she thought were strange became familiar through a quiet repetition from season to season. In the winter the hibiscus doesnt bloom and Saeng fails her drivers test. That paragraph tells that in the spring when the Hibiscus thrives and the geese return it will be a fresh start for them and Saeng as well. 2 2 2 +10484 4 "The author most likely ends the story with Saeng vowing to take the test again, because he wants to show Saengs determination. For example, when she tells her mother that she failed the test her mother knew that it was hard for Saeng. Since it was a silent moment, her mother realized that yelling at her about the plant wasnt a good idea. Saeng is kindof comparing herself to the plant. she @MONTH1 have thought, if this plant can make it through the winter and still keep growing, than she can make it through the test. Therefore, that is most likely why the author ended the story the way he did." 1 2 2 +10485 4 "The author concludes the story with this paragraph because she has new hope and determination. The author loves and admires the hibiscus; for e xample But its strong enough to make it through winter, says her mother. Saeng wants to be able to deal with hardships just as strongly as the hibiscus can. She is filled with new resolution when she says to herself Then i will take the test again. " 2 2 2 +10486 4 I think the author concludes the story with this paragraph because the whole story was leading to it and the story would have been pointless if it wasnt conclusion. 0 0 0 +10487 4 "The author concludes this story with this paragraph to show that Saeng is going to adapt to the conditions of her new life. The hibiscus is a plant that thrives in warm, tropical climates. However it does not survive in the cold; only the winter hibiscus, which can survive in both climates (warm and cold) can. The hibiscus symbolizes Saeng. She lived in Vietnam and loved it with all the pretty flowers and being with her grandmother. However now that she is living in the United States, she is finding it hard to adapt. Now that she has this hibiscus flower, which adapts to the cold weather magnificently, she can adjust to her new life in the United States. When she sees the geese come back for another spring and summers, she will take the driving test because they are giving her area another chance of being their home for the season. This is why the author ends the story with this paragraph." 3 3 3 +10488 4 "The author concludes the story with this paragraph because the paragraph is about how the snow melts and the greenery returns, like a rebirth. This similizes his renew motivation to take the test again. This really shows how close he is to nature and the affect that his exposure to it has had on him over the years." 1 1 1 +10489 4 "I think that the author concluded the story with this paragraph because this whole story was sweet and left a beautiful picture in your head with like about every sentence. So why not end it in paragraph like, when they come back, Saeng vowed silently to herself in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. Now tell that wasnt beautiful." 0 0 0 +10490 4 Then author put the last sentence the way it did. It mean't by that next spring they want to see how they react different of the same. They know what it is like but they know how to react to the season. 0 0 0 +10491 4 He uses this line at the end of the story cause it shows she has anothe chance to pass the test. They use the plant cause a plant will always come back and bud again. This was also a good way to end the story because it shows now in the present plants @MONTH1 be a sign of inspiration and would teach you to look up to something. And maybe this is how she comunicotes with her mother through the plants. 1 2 2 +10492 4 "In the story winter Hibiscus they end the story with that paragaph, because it repents that she is geting use to the new contrury. She is also telling you that you need to a paped to newsra winds. Thats why I think they ened with that pargraph" 1 1 1 +10493 4 "The flowers on this bush are very comforting to Saeng. In the story she explains that they remind her of her home in Vietnam. The budding of plant and spring represent new life. Saeng thinks that spring could also have a new beginning for her. That in spring, she will do better and pass the test. But, if she falls again, the flowers will have bloomed to comfort her." 2 2 2 +10494 4 "The author concludes with that because she kind of relates herself to the flowers. She has grown to her environment like a flower. Also she had failed her test, so just like when a flower dies and then comes back, she is going to come back and try the test again." 2 1 2 +10495 4 I think the author concludes the story with that paragraph because she failed the test so over the winter they dont get hibiscus but over the spring when they get again the hibiscus she will try to take the taste again so she can pass it 1 1 1 +10496 4 "The author concludes this as the last paragraph because of Two main reasons. One of them is the flower is almost like her in the being, the flower wasn't bloomed. But when the snow melts and the flower blooms she is like the flower and is going to try again to bloom out in passing the test Another reason is because it reminders her of bock home and her mother understands why she paid so much for it so they want to take core of it." 1 1 1 +10497 4 "Minfong Ho, the author of Winter Hibiscus concluded the story with Saeng vowing to herself that she will retake and pass her drivers test in the spring when the geese fly back and plant rebuds. The author concluded the story with this paragraph to signify Saengs willingness to start over. After failing a test, Saeng visits a green house and misses her old home, Vietnam. She buys a hibiscus and plants it when she comes home after noting the geese flying south for the Winter. The plant signifies her memories. When she first sees it, its blossomed. In the spring it will rebud and form another blossom while growing bigger. This parallels Saeng getting over her sadness and homesickness and rebuilding better memories while growing stronger. When she gets the chance. The birds flying overhead are headed south for the winter for shelter from the cold. In spring they will return to start over raise goslings, rebuild their home, start over from last spring. Saeng is planning to start over, and pass it so she can drive and feel more accepted in @LOCATION2. Minfong Ho, chose to end the story with a paragraph to signify the characters starting over and rebuilding good memories." 3 3 3 +10498 4 "The last paragraph in, Winter Hibiscus, was add because the author want to show that she feels bad because she did not pass the test. She feels disapointed because her mom is disapointed in her and knows she can pass it. While she stares at the Hibiscus then the geese flying in the air, she thinks that she does have a chance in passing the test. Now that she is determined to take the test, she is going to take it at the same time in the next year and she believes she is going to pass it. " 2 1 2 +10499 4 The author concludes the story with this paragraph. He concludes with this paragraph because thats how the girl feel. She feel that in the spring she can do better then what she did. 1 1 1 +10500 4 It means that she want to do it all over again. It the girl comfort zone - So that is what she does when she upset. That is what the story and the phase mean. 0 0 0 +10501 4 "The author concluded ""when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take that test again"" to tell the reader never give up and to keep trying. It also tells us that family is always there because you can't do it on your own. ""It's a beautiful plant, this dok faeng- noi"", she finally said" 1 1 1 +10502 4 I think the author concludes the story with this paragraph because the authore is trying to show the reader that she realized cares about the nature and loves It so because she is waiting for the spring and as soon as the spring comes she will take the test again. So in my opinion the author wants to show the readers that the character in story cares a lot about the natures baety. 1 1 1 +10503 4 "The author concludes the story with the sentence saying when they come back, saeng vowed silently to herself, in the spring when the snow melts and the geese return and the hibiscus is budding, then i will take the test again because the hibiscus is not as a good luck charm, when its not there things aint right but when it comes back things then out for the better. Also the author concludes this because the good luck charm the hibiscus gave more confidence and when say it real confident one will succeed. Last one not story this lets the reader know that she believes in something that gives her hope and that will make her so well" 2 1 2 +10504 4 "The author concludes the story that way because one theme is to overcome obstacles. The hibiscus represents Saengs perseverence, and the last paragraph offers closure to the conflict that was introduced. The hibiscus is strong enough to make ith through the cold months here that is what matters, this makes a connection between the plant and the authors perseverence because of the symbolism. The last paragraph adds that symbolism with closure because she says shell wait until spring to take the test again. " 3 2 3 +10505 4 "Saeng is trying to say that when the time comes again that she will take the test. The author concludes the story with this because it leaves you wondering about what will happen the next time she takes the test. The auther also does this to show that you should never quit like if the flower can survive winter then she will be able to survive that test. Also the author is saying that when the seasons change, things change. She was going to give up because she failed the test but she seen that plant surviving through the harsh weathers and that gave her more confidence. Also she cherished the plant because she wants to see it budding because her and her mother spent quality time dve to this plant she had." 2 1 2 +10506 4 Saeng is talking about her school work and the garden. She always connects the two of them in the same way. she knows that she has to study while the garden grows and she wants to water the flowers and she is saying that when the spring comes she wont be there for the garden and she will have to take the test. 0 0 0 +10507 4 "The author ended the story that way to show that Saeng wont give up and is determined to complete her task. The author wants the reader to understand Saengs very sad and wants to overcome being homesick. Saeng is very much like the hibiscus plant, shes frail and beautiful. Saeng says she will do her test again when the hibiscus is budding, almost like shes growing along with the plant. " 2 1 2 +10508 4 "The author concluded the story with the paragraph because it shows that everything and everyone can make it through a tough time. This paragraph acts as a final positive message to readers. The text say, when they come back... I will take that test again. This quote shows that Saeng can see herself as one of the geese or the budding hibiscus plants. She knows that her winter is her test and that when she is ready, shell be able to take the test again and be successful. The budding of the hibiscus represents the time when shell be prepared to take the test. Though she is having a tough tine now, she'll be able to get through it and make another attempt. This paragraph is at the end because it brings together the purpose of the hibiscus. Without saying this, the readers would have never gotten this message, instead, they would believe that the role of the hibiscus was to serve as a connection to Saengs past. In conclusion, this positive paragraph was included to show readers that everyone can balance back from a bad situation." 3 3 3 +10509 4 One it could mean she can only take the test in the spring. But also because her surroundings during that period relaxed heR. When she was dissapointed and @CAPS1 about her driving failing grade. 1 1 1 +10510 4 "The author concludes the story with this @CAPS1 because she really cared the hibiscus. She said this because she was comparing her test to the hibiscus. When the hibiscus will budding she will take the test again. Hibiscus is everything far her. it is her good luck. And with hibiscus budding she can make her new life. withaut the hibiscus plant she was laser I-I failed the test and I baught it, saeng answered reading her mothers next questian. She was so depressed with her test failing that why she baught hibiscus to influence her life. she decided when it will spring with hibiscus budding she will start her new life by giving the test again and providing her self how important hibiscus" 1 2 2 +10511 4 "The author is concluding that anything can happen in the story. Saeng planted a winter hibiscus and her mother was getting mad at her. Saengs mother was mad because she spent money on the whole plant instead of planting it and then it would be a lot cheaper. When her mother was mad and in disbelief, Saeng started crying and the mother forgave her for her actions. This shows that anything can happen" 1 1 1 +10512 4 "The author most likely concludes the story with that paragraph because they are trying to show the reader that even though you fail at something, you cant be stubborn. So Saeng failed her drivers test but in the spring when the hibiscus plant starts to bud she will go back and take the test again. By the plant budding she thinks of that as a sign that she will pass the test" 1 1 1 +10513 4 "The Author concludes the story with Saeng saying a vow silently to herself to show the reader that she will grow like the hibiscus plant and take the test again, this time determined to pass it. The plant gives Saeng hope because it reminds her of the homeland that she loved so much. When the hibiscus starts budding and gaining beautiful flowers, Saeng will bud too and gain her license." 1 1 1 +10514 4 I think that the passage is trying to say the sum because in the passage. it says in the spring when the snows melt and only the sun does that and the gees return hunting season and the hibiscus is budding then I will take that test again. so @CAPS1 start in the spring so it has to be the sun in the spring time. 0 0 0 +10515 4 " The author used the paragraph telling about how saeng would test in the spring at the end of the story because,the words used and the way it is read can tell the reader that saeng is at peace and accepts the fact that she lives in the u.s. When Saeng says,and this hibiscus plant is budding,"" she is thinking about how the plant reminds her of her native country. Also when she says, ""Then I will take this test again she is promising herself that she will take the test when she feels at home in her new country. Saeng also is in a way telling herself that she should accept the fact that she has moved and that she can still be reminded of her native country with the new hibiscus plant and many other things." 2 2 2 +10517 4 "The author concludes this story with this paragraph for a very good reason. The author could write a sequel to this one. She could want the people to keep coming back for more, or wants people to know when things start up again so will Saeng. Ending the story with that paragraph is a very good thing to do. The author wants you to know when the plant and geese restarts their lives Saeng will do the same. She will not give up but instead re-take the test. The author could be planning to write a sequel to this short story. It leaves you thinking so then the sequel will be about the start of Saengs new life and what she plans to do to keep her vow. When everything starts to come alive in the spring so will Saeng. The author @MONTH1 love having people wonder about whats coming next. The people will go home and wonder what will the author do next with Saeng. The author loves keeping people in suspense and waiting for an answer." 2 2 2 +10518 4 "The author concludes the story with this paragraph to emphasize the willingness of Saeng to overcome the obstacles and adapt to her new life. The hibiscus discussed in the ending quote describes Saengs new hope and determination to succeed in the United States. For example in the text it states,"" its fine petals splayed back to reveal a long stamen tipped with yellow pollen. Saeng felt a shock of recognition so intense, it was almost visceral. When Saeng had found a plant that seemed to the together her past in Vietnam and her future in @LOCATION3, she was overwhelmed. The hibiscus represents newhope in a seemingly impossible situation. When the hibiscus has blossomed, her world will be open and a new life will be waiting to begin. With this thought realized at the end of the story, the reader understands that Saeng has found new stability and will eventually succeed. In addition, in the text it says, it felt smooth and cool, with a hint of velvet toward the center just as she had known it would feel. Saengs past memones could be reached when this hibiscus was in new and that served as immense inspiration to her. The author ended the story with Saengs new recollection and hope to prove that she had indeed found something helpful and stable in a new world." 3 3 3 +10519 4 "The author concluded the story, Winter Hibiscus, with the paragraph she chose because she wanted to portray to her reader that even though Saeng was experiencing a hardship leaving her old home behind, she could still find a good life with new beginning here. In the final paragraph the winter shows represent hard times in the past, while the spring represents a more optimistic future, and a new beginning. Although Saeng was grieving at the lass of her past, she could still find happiness here. In the story she once knew hibiscus cran her did home. She finds hibiscus where she is now and it is a semblance and reminder of her old home. Also, the story says. Almost reluctantly, she realized that many of the things that she had thought of as strange before had become, through the quite repetition of season upon season, almost familiar to her now. This quote leads into the final paragraph and shows her acceptance that she can appreciate happly live in this new home. The final paragraph says,.. when the snows melt and the geese return and this hibiscus is budding, I will take that test again. When things familiar to her and things their remind her of her old home come back, Saeng will have the strength to try to accomplish good things for this new life in a new home again." 3 3 3 +10520 4 "The author concludes the story with that statement because it shows that you can allways start clean you should never give up when you realy want something. The daniter realy wanted to pass the test so she worked hard but she failed it. She knows like the plant spring will offer a new braining in life and you can always change something you dont like about yourself. I stongly agree with this statement because if you didnt have a secound chance most people would all be losers because everyone makes mistakes, in there like and everyone has the over thniky to fix them. This is why I belive the author concludes this statement of the end of the story." 2 2 2 +10521 4 "The story ands with that paragraph because Saeng believes next spring when her new hibiscus is born she will have good luck to pass her driving test. It is a good way to end the story because the hibiscus was not involved in her life before she took the drivers test. Now she beleives that on her next driving test she will have the connection to her past experiences, ability to overcome obstacles, and comfort in a time of disappointment. Which Saeng thinks can help her pass the test." 2 1 2 +10522 4 "The author could have had many reasons to conclude the story with this paragraph. One reason @MONTH1 be to explain how she has changed in the story. Toward the beginning of the story the author sounds discouraged and upset that she failed her test. In her final paragraph it shows she overcame her fear. Also, the geese move like she did. Saeng and her family have moved to the United States, but the geese feel odd moving too but they come back every year. Along with the flower Saeng is unique in her new life and must learn to adapt as the geese and flower do. She knows that the flower will bud and the geese will return in the spring and that is what she must do. She wont give up but try again later on in the year. This shows how she is adapting and changing to work with her new surrondings." 3 2 3 +10523 4 "In Winter Hibiscus, the author concludes the passage with this paragraph to demonstrate Saengs determination to not only pass her driving test, but to accomidate to her new home. The author says vowed to express positive connotation in the paragraph. The author says, almost reluctantly, she realized that many of the things that she had thought of as strange before had become familiar. The author says this to show that she is adapting to her new lifestyle , yet he uses the last paragraph to say that she needs a little more time." 2 2 2 +10524 4 "In the story, winter Hibiscus saeng made a promise to herself that she would never fail the test again Saeng wanted to remember her past and homeland. That is why she bought the flowers. At the end of the story she vows, In the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take the test again. She says this because she wants to move on now and try to get used to her new home." 2 1 2 +10525 4 The author had the story end with the paragraph because all the ideas are brought together and to show that Saeng is ready for whats ahead. When they put in the flower they are concluding the flowers importance and how it relates to how the girl feels being happy or sad. Yet when she says that she vowed... and shed take the test again she saying that she is ready for whats ahead but will be open minded to whats new so that she can see were shes gone from. Therefore the author ends with that paragraph to leave mystry for what happend and to conclude. 2 2 2 +10526 4 "The author concludes the story with this because its winter now + the flowers are gone, but during that time when she was planting she grew more mature. like it says in the text things she used to think were strange are now becoming firmiliar + shes getting the hang of things. Because shes learning more about it + will be ready for the test next spring. " 1 2 2 +10527 4 The author uses this as an ending paragraph in the story because the next year at the same time she will take the test of life over again. 0 0 0 +10528 4 "The ending of a story helps determine the meaning of the story. It is the final closure and will most likely be remembered by the reader. In the end of the story Winter Hibiscus the author ends it with a paragraph of encouragement. The conclusion encourages you to keep trying, because it states that next year when the flower blooms Saeng will re-take the test. This shows encouragement because has the drive to try again and to pass. The author ends with the feeling of encouragement because it leaves the reader inspired. Her conclusion is strong and also seems to recap the stories meaning because all along Saeng keeps getting disapointed about the flower, her mother, and homeland encourage her to move on and try again. The ending used was meaningful and showed what the author was truly trying to convey" 2 1 2 +10529 4 "In the story Winter Hibiscus by Minfong Ho, the main character is troubled because they moved away from home and the culture, customs and even food are different .Therefore, the main character has difficulty adapting to her new environment. The author concludes the ending statement to show that she will not stop trying to achieve her goal. She wants to take the test again change to see if over time things @MONTH1 have changed. The story is very emotional and expresses a great deal of sorrow that is overcome in the end." 2 2 2 +10530 4 "The author concluded the story with that specific paragraph about geese to show that Saeng is going to try to overcome her obstacles. She was @CAPS1 disappointed in failing the test so she took comfort in memories of her homeland. She bought a hibiscus that she saw in her homeland a lot, and that flower @CAPS2 comfort and affection. But it also @CAPS2 her ability to come over obstacles, and while she was planting her hibiscus, and saw the geese flying above, she knew she had to try again." 2 1 2 +10531 4 The author says this because she will try to start her own garden. Her other garden didnt turn out to well. In the book it says she needed her moms help. 0 0 0 +10532 4 "The author concludes the paragraph when Saeng realizes she can miss her old home, but she needs to adapt to the new place that she is in. Saeng misses the old memories of her homeland A wave of loss so deep and strong that it stung Saengs eyes now swept over her. But, she begins to realize that not everything has changed, same things are still familiar. overhead, a flock of canada geese flew by, the faint honrs clears and yes- familiar to Saeng now. When Saeng realizes that not everything has changed she gained the strength to continue her new life in her new country." 2 2 2 +10533 4 The reason why the author concludes the story with this paragraph is because it was a good way to end the story off. At the end of this they was talkin about how saeng would come back when the snow melt and then she will take the test again. 0 0 0 +10534 4 "When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding; then I will take that test again. The author concludes this story Winter Hibiscus with this paragraph because in the story it's about Saeng and she fails her drivers test, and notice a familiar plant which causes her to go to a florist shop. As Saeng learns about this familian plant it encourages her to retake that drivers test, to where as though the snow is gone and the sun is shining. 1 1 1 +10535 4 I think the author concludes the story with this paragraph because she is basically trying to say in the spring when the snow goes away and the hibiscus start growing she will test the plant again 0 0 0 +10536 4 "The author concludes the story this way to show that Saeng still has hope to succeed and adapt in this new country. She previously had a lot of home sickness, missing her grandmother and keepsakes from her child hood. The height of her homesickness is seen when Saeng comes back to her house and is explaining to her mother the nature of the hibiscus. She found that she was still too shaky to say the words at home, lest she burst into tears again. Saeng is uncomfortable living in @LOCATION1 and wishes to go back to Vietnam. Butt by the end, Saengs attitude changes from despair to hope. Even though she has failed her drivers test. Saeng is determined and hopeful to do at least something in this new country by saying ""...then I will take the test again. Saeng has changed a good deal within this story and that change in attitude is seen with the exerpt on geese in the last paragraph." 3 2 3 +10537 4 I think he put this in here because. I think hes trying to say when the snow melts just forget bout the first time. And when the geese return it your @NUM1 chance. Then the hibiscus budding is you get passed what you were trying to do. 1 1 1 +10538 4 "This author concludes the story with this paragraph, because they both where talking about the cold or the weather and the @CAPS1 so it sated when snows melt as it talkes about weather or the @CAPS1." 0 0 0 +10539 4 "The author concludes the story like this because it shows how the main character has been effected by the events or happenings in the story. In the beginning of the story we learn that the main character has failed her drivers test. Also in the story she had spent a large amount of money just for one plant, in which her mother is shocked about. The reader at that point would expect for her to be very sad and depressed. But because of her grandmother and her homeland she instead surprizes the reader by looking on the brightside of things and saying that when the flower blooms again she will take the test again. This shows the connection between the main character and the plant. Giving the plant a humanlike existence." 3 2 3 +10540 4 "I believe that the author chose to conclude the story with that paragraph to illustrate the oevrall message of the story. That paragraph sums up the message of determination and overcoming obstacles. Saeng is coming from another country and is facing challenges not only in the garden, but in her life as well. She had to learn how to adjust to her new surroundings and never give up on what she wanted to accomplish. So, by saying ""in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again, she truly shows her determination and how shes not afraid to overcome obstacles that will face her. " 2 2 2 +10541 4 The author of this story concluding this story this way because instead opsorbing all the pain she can look in to the future. Aso by looking in to the future she can forget about the past and try better in the future. 1 1 1 +10542 4 "The author concludes the story with this piece because she said a flock of Canada geese flew by, their faint honks clear, I think she means that even tho the geese flew over with their heads up high even tho Saengs wasnt. Next year when the snow melts and the geese return and this hibiscus is budding, then I will take that test again. She means she will not have her head down and be grateful of her new home and it with time. She looks at her hibiscus she will have found memories but not be sad." 2 2 2 +10543 4 There are two reasons why he had conclude the story with this pararagraph. The one reason why the author had conclude the story with the paragraph because Saeng had silently had picked up a Winter Hibiscus so she can have to passed that driving Test. Finally; the last reason why the author had conclude the story with this paragraph because she wants to try her driving Test again so she can passed so she can also drive when she gets down passing it. These two reasons were so confusing to figure out what the author conclude in the story with that sentence. 1 1 1 +10544 4 I think that the reason why the author concludes this paragraph in the story because he wanted to show the lone Saeng had for the geese. 0 0 0 +10545 4 "There are many possibilities as to why the author ended her story, Winter Hibiscus, in the way that she did. Its flowers arent as pretty, but its strong enough to make it through the cold months here is what Saengs mother says of the flowers Saeng bought unexpectedly. The ending almost repeats this line. When Saeng makes that vow, shes splently telling herself that she too is strong enough to make it through the winter and beyond. Also in the story ,the author states she realized many of the things that she had thought of as strange had becomealmost familiar to her now. Through this statement, the author shows that Saeng, of course, still misses her country deeply, at she will eventually adjust to her new home and prwail. When Saeng makes a vow that she will retake her test in the spring, its obvious that subconsciously, she saying that she can get through these hardships. All she needs is time." 3 3 3 +10546 4 "In the story Winter Hibiscus when Saeng says that she will take the test again in the spring, so she can walk home and see the flower that she found. Also in the story it mentions that in her past childhood she had seen the same flower in her country, but the next time she takes the driving test she would like to pass. It shows that she was disapointed because in the story it say that she paid over nineteen dollars for the test. Her mother was astionished, and yelled at her for a second. Saeng began crying and her mother calmed to show sympathy for her. Now she has the determination to take the test again. " 1 1 1 +10547 4 "Minfong Ho, the author of the story ""Winter Hibiscus"" ended her story with @ORGANIZATION1 thinking about the spring because she wanted to make @ORGANIZATION1's future more hopeful. The character @ORGANIZATION1 seemed depressed and always reminiscient of her past in Vietnam. When she sees the Hibiscus and Jasmine flowers she ""brokedown and wept"", and she remembers her grandmother fixing her hair when she smells the Jasmine. To make maTters worse for Saeng she failed her driving test, which is something that most teens find as a big disappointment. By this point in the story I felt sorry for @ORGANIZATION1 and I wonderd if things would get better for her because she was away from everything she knew and loved with just some memories and a winter hibiscus unlike the kind she had back at her name in Vietnam. Then, in the last line, @ORGANIZATION1 suddenly becomes hopeful for her future and ""when the geese return and this hibiscus is budding. " 2 3 3 +10548 4 "The concluding paragraph to the story Winter Hibiscus gives a sense of hope for the future. The girl, Saeng, has just failed her test and is feeling depressed. Through a series of events, her depression leaves her and she feels hope.Then I will take that test again. This final sentence shows Saengs determination. She was upset about leaving her home and she was upset about failing her test, but thanks to a flower, she got her confidence back. Whenever someone is upset it is easy to give up. Until the final paragraph, the tone in the story is depressing. When the author put in the conclusion, it was like a light at the end of a dark tunnel. The author is saying that even when things are hard and seem impossible, something will be the to lift your spirits. There is always a posative in negatave situation, you just have to look for it. " 2 2 2 +10549 4 In guessing that it means that when winter or spring or whatever its harder to grow that garden. Also mabe its a challenge of some sort to make the garden grow by that time of year. So I would assume thats what its talking about with it. 1 1 1 +10550 4 "The author includes that sentence of the end of the story because through out the story it was showing courage,and that explains her getting better and showing courage that she is going to go back and try to pass that test and not letting it get her down that she failed the first time." 1 1 1 +10551 4 "To me I would have to say that the reason why the author concluded his story with this paragraph would be of different reasons. To explain it could mean new begining or starting over. For example, when the geese fly away and came back, that means that the @CAPS1 are changeing. So with that being said, the @CAPS1 changing or starting over could represent his chance to take test can start over, and he will get another chance. " 2 1 2 +10552 4 I think they think it will bring them luck 1 1 1 +10553 4 "The author concluded the story with this paragraph because it shows you can over come something if you have the will power. Saeng failed the first test. She bought a plant that reminds her of home. She planted the plant despite the cold, hard ground. She realized the once strange things were now part of her everyday life. She decided to retake the test. Saeng realized that even though you @MONTH1 fail once you have to keep trying if it is what you believe in. She also realized that she will never forget her home but she still can move on. Finally Saeng realized that good things can over come bad. After she failed the test she bought the flower. The author concluded the story with this paragraph because it summerizes the story perfectly." 2 2 2 +10554 4 "The author includes the exccept at the end for a meaning reason to Saeng. the hibiscus symbolizes everything, her home, her past, and her comfort. Saeng feels that if the flower can bloom, so can she. Which will enable her to get used to her new home and retake the test. It also resembles hope, because if the plant can make it through the winter and bloom in the spring, so can she. The author used this to connect the feelings of Saeng with the realistics of the flower bloomability." 2 1 2 +10555 4 "The author concludes that statement because the geese move south in the winter and come back in the spring, Saeng has failed the test in the winter but she will retake it while the season of spring comes. As Saeng fails her driving test and she see the familiar plant means she will come back to take the test. The geese have left but will come back when the season is coming. So both the geese and Saeng have a reason to come back north or retake the test. The author adds the statement in the end because the geese's actions are just like Saeng." 2 2 2 +10556 4 "The author concludes this story with this paragraph to show how Saeng was Not going to give up. Throughout the story she had been feeling down. From when she failed the test and she misses Vietnam. So many things throughout where she and her mother lives reminds her of Vietnam. She closed her eyes and breathed. in, deeply Saeng could almost feel the light strands of her grandmothers long gray hair.... This made her very imotional, to see how many things reminded her of Vietnam. The author ended like this to show how the experience of all this affected her." 1 1 1 +10557 4 The author choses to end the story like this to inspire a sense of determination. Saeng got the plant to remind her of her homeland and cheer her up. Once the plant is bloomed she feels like she would as well and be ready for the test. 1 2 2 +10558 4 "The author concluded the passage with a very powerful statement. When the geese come back in the spring, when the snows melt and the geese return and this hibiscus is budding, I will take that test again. This statement shows renewal and persistance. I think she added this because after realizing the plant can come back time and time again, even after the harsh weather, she knew she could do it too. She vowed to herself that when the day comes again she will be ready to renew herself and get back on track. It conveys persistance also. The plant doesnt die each season. Its hardy and comes back. If the girl can be persistant and come back next year to retake the test, she will be considered persistant. I think the girl wants to be just like flower. She sees it as being indomitable, renewing and beautiful. No matter where the plant is being grown, it will always keep those traits." 2 2 2 +10559 4 "The reason for the author concluding the following is because she wants it to be known to the readers that saeng is not going to just give up because she fails it the first time. That she is going to achieve so that her mother can be proud of her and to show herself she is trying to make a effort. It states that saeng will retake the test again in the spring when the snow has done melted and geese returns and this hibiscus is budding. Not only was the hibiscus an important part to the story, it was a very important part to her life it help her move on a see how things change cause over time it will chage and develop and adapt to the changes around it. Yes it was a disappointment to her mother but she sort of understood why she brought the plant home. It might comforted her in a way. There was many different things probably going on where she was she missed the test it wasnt home. She has to adjust and adapt to the situation that she is in. " 2 3 3 +10560 4 The author concludes the story with that paragraph because Saeng failed the test and next time that time of year comes back around she will have another chance to pass the test. I say that because in the text it states that she paid over @MONEY1 for it all of the vegetable seeds in the garden didnt even cost that much. That is why I say she concluded with that paragraph. 1 1 1 +10561 4 Next year around the winter time when she she have to plant things again she is going to be ready and this time she gone do it much better. 1 1 1 +10562 4 The author included this because she was showing that it was winter and the flower was goin to bloom and the geese were flying here because it is cold. Also the author said that because the story title is called the Winter Hibiscus which obviously blooms in the winter so that is why I think the author said what she did. 0 0 0 +10563 4 "The author of the story Winter Hibiscus concludes the story with a sentence stating that when Saengs Hibiscus first bud appears in the spring she will be back to take drivers test. The author might have decided to conclude the story like that because what if the plant died, would she go back and take the test? The author was probably just wanting the reader to think hard about it. In conclusion, the author of the story Winter Hibiscus might have concluded his story to make it somewhat suspenseful." 1 1 1 +10564 4 "The story ends with that line because @CAPS1 draws strength from the hibiscus, so next time she will not fail the test. In the time that it takes for the hibiscus to grow she will be growing also as a person and so will be ready for the test. The story says, Plants that she had even realized she had known but forgotten drew her back into her childhood world (Ho). Saeng had a good childhood where she got love and support. By seeing all of those plants again especially the hibiscus she can draw strength from the memories she has. The memories the hibiscus bring back are also very sad. The story says, A wave of loss so deep and strong that it stung Saengs eyes now swept over her (Ho). Experiencing all of that sadness again will only make her stronger. Along with just the sight of the hibiscus other things will make her ready for the test also. The story says, It felt smooth and cool, with a hint of velvet towards the center just as she had known it would feel (Ho).The feel of the hibiscus @MONTH1 remind Saeng of distsnt memories, like helping her grandmother with her hair. All of these things will only make Saeng stronger so that the next time she takes the test she will not fail." 2 3 3 +10565 4 The author concludes the story with this paragraph because in the spring when the snows gone she will take the test again. 1 0 1 +10566 4 In the quote above it is telling that saeng is glad to be back. Saeng also states that she would be ready to do it again if she had to. 1 1 1 +10567 4 "I think the author concluded the story like that is because it was cold outside. I also think that the author is trying to say is that when she wrote this letter it was cold outside and she wouldnt take the test until it was warm again because of the cold. In the spring, when the snow melts and the geese return and this is when the hibiscus is budding, then I will take that test over again. " 0 0 0 +10568 4 "There are many reasons the author says when they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding ,then I will take that test again . @CAPS1 the author said this because the girl left everything just to come to this country and she can not fail. The gil said That at last , she could hold on to. But where was the fine-foothed come? the hibiscus hedge? She also said this because the hedge was all she had from her old home besides her mother and when the hibiscus is budding means its starting a new life and is starting to grow leafs and the girl is starting grow and move on with her life. " 2 2 2 +10569 4 The reason the author concludes the story with this paragraph is because if the author trys it again it might work out a lot better now they know what they are doing. Also if they try it again then if it makes enough they can sell it and make money so they will keep doing it for years to come. 0 0 0 +10570 4 "The author of Winter Hibiscus concludes the story with a resolution of Saeng in order to show how Saeng will not give up and how she is determined. The reference to the spring blossoms shows how Saeng will fight to survive through the hardships, which are represented by winter. Just like the hibiscus that struggles to adapt to a new home, Saeng is struggling to adapt to a new country the final paragraph provides a resolution to the internal conflict of Saeng throughout the story by suggesting that Saeng will succeed in taking the test. In conclusion, the final paragraph in the story Winter Hibiscus provides a resolution to the conflict in the story, and shows the reader Saengs determination." 2 2 2 +10571 4 "The author concludes the story with this paragraph because It show what Saeng will be doing and If she will go to school. Saeng didn't want to go school because she will wait For the snow to melt ond the geese return and this hibiscus is bucking, and prefers gardening to school. and garden remind For about her homeland. For @CAPS1 Saeng dug out hole and carefully lowered the winter hibiscus into it. The thing that made her thing about her homeland was the beating of eggs against a bowl, the sizzle of hot oil in the pan, The pungent smell of better melon wafled out. Another @CAPS1 she went over to the corner of the vegetable patch and started to dig a hole in the ground, that show she care about the garden." 1 1 1 +10572 4 "The author concludes her story with the quote, When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. because the author is showing that nature and the plant are valuable to her. Saeng (who says the quote) believes that the hibiscus will help her pass the test. Earlier on in the story it shows that when she gets in trouble, she rubs the plant leaves in her hands to help her overcome the problem. The author is making the idea clear and portraying the idea that the plant helps Saeng with obstacles." 1 2 2 +10573 4 "In the end of the story the girl Saeng vowes to herself that she will take the drivers test next year.One reason she @MONTH1 have vowed to herself to do that she would do that is to prove that she can pass the test. Also the flower after she bought it and planted it, and after she remembered all the good times she had in Vietnam it gave her the confidense to go out and get what she wanted." 1 2 2 +10574 4 "The author includes this in the paragraph to simply be sarcastic for you to know that it is almost impossible for Saeng to take the test afresh. I say this because she was being very sarcastic meaning shes not going to take the test. For example, if someone were to tell me take a test and I said whenever @LOCATION1 is president again, then Ill take the test. That would be very sarcastic meaning that it wont happen and Im not taking the test, instead of just saying No. The author included that just to let you know that the chances of her taking the test is very low. " 0 0 0 +10575 4 "The author includes this paragraph inorder to show an end to the story and to show that Saeng has not given up. Ho wanted to show how the plant and the geese represented the continueation of Saengs life in the United States. The geese will come back and the Hibiscus will bud and flower, and Saeng will retake and hopefoly pass her diving test. This paragraph is not just a colosing but a new beginging of life for geasse, a Winter Hibiscus, and Saeng." 1 2 2 +10576 4 The author concludes the story with this paragraph to show @CAPS1 strength and encouragement. When shes willing and able she will take the test again with more confidence. Saeng says this to herself to help her get through until she can drive. Shes saying by next spring shell take her test. By next spring shell be able to drive. By next spring shell be used to her new home. This paragraph tells that it takes time to do things you dont always get it right away so keep trying. 2 2 2 +10577 4 In my opinion the author concludes the story with this paragraph because Saeng was feeling down about not passing her driving test but when she saw those flowers she realize when she came to @CAPS1 she forget all about her home town. So she decied to get back in touch with a nature side and hold off taking her test intill the spring instead of rushing things. 1 1 1 +10578 4 "I belive that the author concludes the story with that particular paragraph to that she still has hope of finding home and being happy. The hibiscus plant in her mind is a symbol of home and happy memories with her grandmother. So when the plant budds, she will feel like she is at home again and is happy, that is when she will take the driving test. Also, that paragraph shows that she is slowly getting acustomed to the new home and lifestyle, A flock of Canada geese flew by, their faint honks deer andyesfamiliar to Saeng now. Almost reluctantly she realized that many of the things that she had thought of as strange before had become, through the quiet repetition of season upon season, almost familiar to her now, like these geese. Through these examples I believe that the narrator put that last paragraph there, to show Saeng assimilation into her new lifestyle, and her acception of her situation." 3 2 3 +10579 4 "The author concludes the story with this paragraph to show that saeng did not give up on the test. for example, she says I will take the test again. It shows that she wants to take the test and pass it. Saeng is going to wait until spring comes and when the snow melts to take the test. In the beginning in the box above, it talks about her taking the test. Then it ends with her going to take the test again." 1 1 1 +10580 4 "At the end of ""Winter Hibiscus,"" the author, Minfong Ho, concludes the story through stating, when they come back, Saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding, then I will take the test again. The author ends the story in such a way in order to reveal the hope that lies in Saeng's future. After failing her drivers's test, Saeng returns home with disappointment and sadness. This last paragraph, however, shows that soon enough Saeng's luck will change. The reader is left with a hint that Saeng will retake her test and pass. Also, this ending paragraph reflects upon Saeng's determined personality to overcome many obstacles she is @CAPS1. This paragraph proves she will not give up even after she was forced to live in the United states instead of her home. Her success in fitting in with her new life is shown when through the quote, ""Almost reluctantly she realized that many of the things that she thought of as strange before. had become... almost familiar"". Truly Saeng is a determined character." 2 3 3 +10581 4 The reason the author concludes this story with the paragraph. The story is all about the girl missing her home country. This paragraph implies that the girl will adapted to her new country by the next @DATE1. The story and the paragraph show the girls strength to overcome. This this is why the author ended the story with this paragraph. 1 1 1 +10582 4 "The author is letting us /reader know that the give plans to do the same thing again next year when the show is all gone, when the geese come back and when etcs warm enough for the hibiscus flower to bud/bloom again! the author @MONTH1 also be concluding the sentence to show that this is the life the little give chose and she will keep up with new gardening till the next spring!" 0 0 0 +10584 4 "Saeng concluded the story with that paragraph because it shows what she has just been through and feels she could go through it again. If she fails the driving test again, then she use the plants to overcome her problems. She @MONTH1 actually pass the test this time. The unique plants show that she is stronger than she thinks and believes now that she feels comfortable with the plants that bring back memories of her childhood." 1 1 1 +10585 4 She shows that she loves her grandmother and she loves what they do like gardening and stuff like that. Her mother cares about her but she is really striction her. 0 0 0 +10586 4 "The author concluded the story in such a way that the readers eyes are opened. It shows the reader that dispite what @MONTH1 happen, how bad things seem, and how hopeless you feel, theres always a way to make it better. Saeng failed her test, was in a new land, and had lost her grandmother, but still planned to try again. like the waves on the shore, they will always try to wash away the sand by coming back again. just like these waves, Saeng is willing to try again, as should we all." 1 1 1 +10587 4 The author concluded the story with that paragraph because that season is over and a new season is starting. 0 0 0 +10588 4 "The author concludes the story with ""when they comes back, saeng vowed silently to herself, in the spring, when the snows melt & the geese reture and this hibiscus is budding, then I will take that test again. This quote meaning that once the flower buds she will take the test over again because saeng will have the courage & the will to do it knowing she will pass it. The flower represents something to her that gives her motivation and determination. Everyone has something that modilates them in life to keep them going & saeng has her plant. The author kind of gives you direction & idea where the story going to go also when the flower buds." 2 1 2 +10589 4 "Saeng in not only just dissappointed from failing her drivers test, she is also upset and missing her home of Vietnam. Walking home she spots a little piece of Vietnam right there in the united states. She buy the beautiful winter hibiscus, or saebba, to remind her of her past. The end of this story combines the two different, countries, cultures and almost worlds her life is from. When she says, when they come back, she is referring to the geese. To her the geese symbolize her life in life in @LOCATION2 and how she has became accustom to it. The hibiscus is also a symbol of her life. It is a symbol of her life and past in Vietnam.It brings back memories and buying that plant was like getting a little piece of home. When the hibiscus is budding then she will attempt the test again. When this little piece of home gets bigger then she will try again. When she is more stable in the @CAPS1 culture, get still has a firm grasp of her own, then she will be ready." 3 3 3 +10590 4 "I believe that the Author ended the story with this paragraph, because I think it is showing that Saeng isnt a quiter. Saeng cant wait until the Hibiscus comes back. When the Hibiscus comes back shell retake the test and show her mother that she can do it." 1 1 1 +10591 4 "The reason why the authour concluded the story with this paragraph because when Saeng saw the geese she knew that when spring comes back around she would be ready to get different flowers. Also she thinks back to when she was in her homeland she could see when the flower s grew up from the ground. Although now that she is in the city she thinks the flowers will blossom like the ones back home where she misses alot. Lastly, she describes the flowers as her friends. She also remembers the Madagascar periwinkle growing wild out from the cracks in brick walls or tiled roofs. Basically the authour says that she is ready to look for other plants that she remembers from her homeland. " 1 1 1 +10592 4 "The author of Winter Hibiscus concludes the story with this paragraph to depict a development in the character of Saeng. At the beginning of the story, Saeng is dejected about failing her drivers test. However, this ending paragraph portrays the change that Saeng undergoes. In the text, Saeng proves to not adapt well to the change from Vietnam to @LOCATION2. She finds solace in a native flower of Vietnam, a winter hibiscus. By ending the winter hibiscus in the concluding paragraph (and this hibiscus is budding), the author depicts Saengs change of attitude and her acceptance toward @LOCATION2. Saeng now feels that, like the hibiscus returning after winter is over, she will be able to return and pass the drivers test. Also, the concluding paragraph depicts Saengs new adaptation towards the creatures of @LOCATION2. Prior to her imagination to the @LOCATION4, Saeng had no exposure to Canada geese. In the concluding statement, Saengs mentioning of the creatures displays her adaptation to @LOCATION2 (when the snow melts and the geese return). This shows Saengs development and adaptation to her new surroundings. At first, Saeng proved to have a hard time leaving her native Vietnam behind and embracing @CAPS1 culture. However, this concluding paragraph summarizes the noticeable change that Saeng goes through. In this way, the author includes this paragraph to note the development in character that Saeng undergoes." 3 3 3 +10593 4 They conclude the story with that because the winter is over and spring is here and it will be beautiful again 0 0 0 +10594 4 "The author concludes the story with, when they com back, saeng vowed silently to herself, in the spring, when the snow melt and the geese return and this hibiscus is budding. Then I will take that test again. @CAPS1 then she will become more familiar. For example, the author says, Almost reluctantly, she realized that many things that she had thought of as strange before had become , through the quiet repetition of season upon season almost familiar to her now. That tells me that she feels that over same time , she will become more familiar with driving and then she will take the test again. Then she @MONTH1 pass it" 1 1 1 +10595 4 " The author of Winter Hibiscus decided to conclude the story in that way because she wanted to tie in the theme of new beginnings. Saeng is new to @LOCATION1 and has had a rough time fitting in. She misses everything about her old home, from her grandmother to the old plants there. Saeng fails her driving test, so she feels that all is lost. But the hibiscus plant helped her realize she has another chance. The hibiscus can survive the winter and bloom in the spring and that is what Saeng realizes she must do. The last paragraph said In the spring, when the snows melt and the geese return and the hibiscus is budding, then I will take that test again. Spring is the time for new beginnings: the geese return from the south, the flowers start to bloom, and Saeng can retake the driving test. In the last paragraph, Saeng realizes she wants a new beginning as well to be brought I the spring. In conclusion, the last paragraph ties the theme of new beginnings into the story. It shows @CAPS1 new realization and how the hibiscus inspired it. " 3 2 3 +10596 4 "The author concludes the story with this paragraph to show that saeng really wants to pass the test. You knows this when it says And in the warm moist shelter of the green house, saeng broke down and wept. This passage shows that she didnt want to fail. When Saeng got home she had the white bud in the pot and her mother seen that she was crying. Then her mother was going to put the plant in the ground, then saeng to the shovel and did it he self. Having her realize she can take it again" 1 1 1 +10597 4 "The author concludes the story with this paragraph for several reasons. First, when the hibiscus buds in the spring that means that the plant is about to bloom. That also means that Saeng will be ready in the spring to take the test again. Also the last paragraph is at the end because if the plant can make it, then the girl can pass her drivers test and be happy both ways." 1 1 1 +10598 4 Ii think the author concludes the story with this paragraph cause the author is saying Its gonna be a @CAPS1 year or some change is gonna happen and he feels That could of did better than what they did and is gonna take that test again. 1 1 1 +10599 4 "The author concludes with this paragraph te emphasize the new beginning that saeng is looking for. She was so disappointed when she failed her drivers test. &the hibiscus was the thing to make her happy. she needed a new beginning to start over in a new country &the flower, the flower the snow , the geese, & the test all symbolize new beginnings &challenges to overcome , the geese & snow represent a change in season, the budding hibiscus represent new life,& the passing of the test represent a milestone in saengs life . Ending the story with this paragraph makes the reader expect something new & exciting to happen to saeng." 3 2 3 +10600 4 "The author concludes the story with this paragraph to explain to the reader that she isnt done gardening, that shell go back when it blooms once again. also she isnt done. shed rather garden than go to school. This is what the author concludes about the story with the last paragraph." 0 0 0 +10601 4 The author concludes this story with the few words then I will take that test again. because she wanted us to know that she is not going to give up on something she failed once. She is going to keep going until she succeeds with passing the test. 1 1 1 +10602 4 "The author concludes the last paragraph of the story because she already knew that she should not be afraid of trying a new life or new environment. For example, in the story, the mother says, Its flowers arent pretty, but its strong enough to make it through the cold months. here, this winter hibiscus. It shows that the mother want Saeng to learn that Saeng should be strong even in times of difficult. Another example is, when the narrator says, she realized that many of the things that she had thought of as strange before become, through the quiet repition of season upon season It shows that Saeng realized that the new place that shes leaving right now is almost the same as their old home- In conclusion, the last paragraph tells that Saeng should face the new reality of the world. She should be strong and follow the flow of life." 2 1 2 +10603 4 "The author concluded this story for a internal adjust. Saeng's memories are expressed through the one at the hibiscus. The spring is a season where everything is fresh and new. As by spring, Saeng's hope would be restored and thriving, when the budding hibiscus, and the will have the ability to try at the test again with more strength and inspiration. " 2 2 2 +10604 4 "The author of Winter Hibiscus concludes the story with Saeng, the main character, vowing to attempt the driving test in the spring when the hibiscus is blooming. This is a way of showing the reader that even after this story ends, Saeng will not give up. The author adds the thought of the hibiscus on bloom because the hibiscus is a symbol of strength for Saeng. The hibiscus flower is common in her home country and the hibiscus she bought reminds her of everything she left behind when she came to @LOCATION1 from Vietnam. Saeng is trying to accept her new life style and uses the hibiscus as a tool to help her through the tougher times. After Saeng buys the flower she vows to retake the failed drivers test after spring comes. Spring is a symbol of fresh start. Saeng also feels that if the hibiscus can make it through the winter in @LOCATION1 so can Saeng. The conclusion for this story uses a lot of imagery that suggest that Saeng will be strong and continue to live in @LOCATION1. " 3 3 3 +10605 4 The resoned the author concludes the story with this paragraph because I she fail the test and make your learned to apprecite nature a litter bitter. 1 1 1 +10606 4 The author concludes the story with this paragraph because Saeng will return to the flowers again in the spring. 0 0 0 +10607 4 "The author states that idea because if you can not do it once do it again. First, if you take a test and cant pass it the first time do it again and you will be able to pass. For example, in the story Saeng could not pass a test so they could have let her take it again to see if she can pass it. Second, she could ask for help or use a book and study. For example, it will help you pass a lot easier if you study hard enough. That is what I think the statement means." 1 1 1 +10608 4 The author concludes this story with this paragraph because its how each year will begin and end. 0 0 0 +10609 4 "I believe the author concludes the story with this paragraph, because the author wants to express to the reader that Saeng has been comforted by the hibiscus and is willing to give the test another try. She is now more open minded about the situation. In the beginning of the story, Saeng was upset and annoyed about failing her drivers test. For example, the tearstains on her daughters cheeks and her puffy eyes. I-I failed the test, Saeng said to her mother. Obviously she was upset and disappointed in herself. The author didnt want to end the story with a sad, unsatisfying ending. Saeng changes her attitude about the test by the end of the story. For example, when they come back, Saeng vowed silently to herself, in the spring, when the snow melts and the geese return and this hibiscus is budding, then I will take the test again. I believe that this attitude was because of the memorys of her mother country that soothes her and also her mother. In conclusion the author ended the story with that to teach the reader a lesson to let change occur and time does heal." 2 3 3 +10610 4 "The author of the story Winter Hibiscus"" concludes the story with the motivational paragraph because he/she wants to show the reeder that Saeng is determined to adapt to her new life and home and overcome common obstacles like a driver's test. Saeng had a hard time coping with her problem so she bought a hibiscus because it reminded her of home. I think that the line and the geese return and this hibiscus is budding, then I will take the test again."" from the last paragraph is a symbol for growing up and overcoming obstacles. The conclusion for the story is a nice ending." 2 2 2 +10611 4 "I think the author concludes the story with this paragraph, because when the snow melts and the geese return, she going to have higher confidence in taking and passing the test. After she failed the test later on in the story the geeses had flew away. So when the geese return the geese will remind her of what had just now happened. When the snow melts and spring comes the hibiscus flower will bloom once again." 1 1 1 +10612 4 "In the story Winter Hibiscus in the spring come back the new hopes ,comfort belive, As she said in the story in the spring when the snows melts and the geese return and this hibiscus is budding, the I will take that test again. She hear when the hibiscus comes back brings new hopes to the life to take that test for. Here the hibiscus mean hope. Second of all when she said the geese return and this hibiscus is budding she means that is comfort for her it strong than hope and more if her mom helps her blue in her self because is not easy to do it without her mom comfort. Lastly she saidCanada geese flew by, their faint honks dear and yes familiar to saeng now. Almost reluctantly she realized that many of the thing that she had thought of a strange before had became, through the quiet repetitions of season upon season, almost familiar to her now. She mean that the season is coming and the hibiscus grow she will regain the blive and the strength that she need to have to take the test the hibiscus means a lot to her means vew hopes ,comfort, and belive." 2 3 3 +10613 4 "Coming back from failing her driving test, Saeng is comforted by finding the hibiscus flower. It brings back cherished @CAPS1 about Saeng's homeland, because it is very similar to flowers that grew by her old home. The author concluded the story by saying ""When they come back, Saeng vowed silently to herself, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again,"" to compare Saeng to the hibiscus. Like Saeng, the hibiscus must try to adapt to new surroundings. The author shows that Saeng recognizes this connection and is inspired by it. In Saeng's mind , if the hibiscus can survive being moved, then so can she." 2 2 2 +10614 4 "The story of Winter Hibiscus is a prolonged metaphor for both connections to a comforting past as well as expectance and the future. Saeng misses her homeland but she must learn to adapt to her circumstances, and pass her drivers test. The story is nicely concluded with Saeng's promise to herself that come spring, she will take the test again. The hibiscus flower itself generates this promise as it gives her some closure and alleinates some home-sickness. Saengs promise indicates that she is comng to terms with her situation. When she sees the Canada geese flying, she has somewhat of an epiphany about the seasons. Almost reluctantly, she realized that many of the things she had thought of as strange before had become.. - Almost familiar to her now. I feel that was a landmark for Saeng and the conclusion illustrates that by allows to change." 3 3 3 +10615 4 "In Winter Hibiscus by Minfong Ho, Saeng has a deep emotion connection to the memories and flashbacks that the Hibiscus brings back to her. At one point in the story, she cries out of mourning for her grandmother because the hibiscus plants bring back aware of memories. Later on in the story, she takes the plant to her mother. At first @PERSON1 is upset but then she becomes understanding of her daughters actions and feelings. Saeng is upset that she didnt pass her test and her mother understands that. I think the author ends the story this way because wants the reader to see that because the hibiscuses is so important to Saeng and reminds her of her past, she will have a reason and motivation to continue and reach her goal of passing." 2 2 2 +10616 4 "Since it is getting close to winter the geese are going south. The plants are losing there leaves. Saeng says that she will take the test again. It seems that when the geese return and the hibiscus buds it will give her hope and confidence. Especially the hibiscus because it reminds her of her homeland and her grandmother, when she first saw it and held the leaf it brought a tear to her eye. And when it comes back next year it will rejuvinate her." 2 2 2 +10617 4 The auther concludes the story with this paragraph because she thinks that it will explain what happened to saeng very well. 0 0 0 +10618 4 "The author concludes her story with that last paragraph because it shows the relasonship between saeng and the habiscas, and how much just seeing it feels. It also shows that the habiscus motivates her because it reminds her of her home land that she loves so much and that its like have a pysical memorie of her home land" 1 1 1 +10619 4 "The author is relating to that when the geese are ready, they will come back, when the flower is ready it will begin bud and grow. When she is ready she will take the test, is what is being said. She is explaining that she needs time just as the geese and flowers do as well. So you can compare saeng to both the geese and hibiscus, because they too need time in a way for when they are ready to do what they do. In a way saeng has molded as one with both objects." 1 2 2 +10620 4 "I think the Author ends this as the concluding sentence because it symbolizes how the girl presecive things. The girl means when the geese return and the hibiscus is budding it means that it is going to be warm again, @CAPS1 means when it is warm again it brings her spirit up because it reminds her of her homeland. I think by her being remind of her homeland would help her take the test easier because she will be more happy. @CAPS1 I think will help her do better on the test. For example, the author said in the story that the flower bring her comfort @CAPS1 I think being comfortable is the best way to succeed and pass the test. In conclusion I think the author ends the story like that because he wanted the readers to understand a connection with the girl and her homeland, and how flower comfort her." 2 1 2 +10621 4 the author concludes the story with that paragraph because it sounds like a interesiting ending paragraph that have something to do with the story 0 0 0 +10622 4 I think the author concludes the story with that saying because it shows that she is adappting to the new place. It @CAPS1 shows that she isent going to give up. Just like the geese dont give up flying back and forth ever winter and spring. 1 1 1 +10623 4 "In the short story Winter Hibiscus Saeng decides to retake failed drivers test in the spring. She does so because she is comforted on the moderate weather of the spring. It reminds her of home, and Saeng is very closely attached to home. It reminds me of all the places Ive been and how I still remember my favorite one. Like Saeng, I buy objects that remind me of my old home Saengs commitment to her old home makes me feel less different when I miss my old home." 1 1 1 +10624 4 The author concludes the story with that paragraph because Saeng is going to start over and do better the second time around because she doesnt want to disappoint herself. That is why the author concludes the story with this paragraph. 1 1 1 +10625 4 "I think that the author concludes the story like this because it shows a new beginning. When the spring comes, everything comes back to life. Plants grow back, animals are seen again and the sun shines bright. This is a new beginning for them so it can be seen the same for her. She could try again because it gives her another chance. Another reason he ended the story like this is because Saeng loves nature. Maybe when nature is back around her it will give her hope and confidence to pass her test." 1 1 1 +10626 4 "The last paragraph of the story was: When they come back, Saeng vowed silently to herself, in the spring, when the snows melt and the geese return and this hibiscus is budding, then I will take that test again. I think the author concluded the story with that paragraph to show that she is adapting and that she is starting to accept the change. I think that because throughout the story she is upset and not really liking the change. And in the warm moist shelter of the greenhouse, Saeng broke down and wept. The text says. This last paragraph seems optimistic talking about the flower blooming and the geese returning which seems like she is starting to accept the change. In my opinion, the author added that paragraph to finish the story to show that Saeng is starting to accept the change and be optimistic." 2 2 2 +10627 4 Saeng told her mother that she failed the test. She she what to make up for it. By helping out in the graden. Her mother usher in and started to make dinner. 1 1 1 +10628 4 "The Author concludes that, when the geese come back she will take the test because she believes she will be more ready for the test then it will be easier in the spring. This will give her more time to learn & study & hopefully her head will be more focused instead of thinking about her home. It will be easier to complete the drivers test in spring. She feels bad like she let her mother down for failing it, I just stared at the hibiscus, this tells that she felt to ashamed to even look at her mother. So next spring she wants to make her mom happy & pass cause she will be ready." 1 2 2 +10629 4 "The reason the author chose this paragraph is because the paragraph means that when the snow melt and all the geese returned, the flowers @CAPS1. That one flower she had to @CAPS2 tests on." 0 0 0 +10630 4 "The author concludes the story with the paragraph she did; to tell people never to give up. She tells people never to give up through this method because she realizes at the end, she will be prepared. In the story the line .. Slowly fading into the distance. Could mean she realizes what happens; happens and never stop doing or going to a goal you want. One more reason she @MONTH1 have used this is, that even tho your down you have friends and family to pick you up from it. The line Through the quiet repition of season upon season.. This basically said that she just needed to get into routine and she will be able to do it." 1 2 2 +10631 4 "The author concludes the story with this sentence because she wanted to make a comparison between flowers and the test. To finish with this shows she will try season after season just like geese come back every year. Since she tries to make a??? Shows she hasnt given up she will keep trying year after year. Also, it says that this girl is determined and she wont stop trying till she gets it right. Next, this last paragraph can tell you about the whole story. Lastly, I think it gives a feeling for the whole story." 2 2 2 +10632 4 The author concludes the story with that paragraph so the reader has something to think about.When the author concludes with something like that he/she wants the reader to make there own ending or pridicshon. And some times it means a sequel. 1 1 1 +10633 4 The author concludes the story with this paragraph because it makes the story a happy ending how she doesnt give up and is taking the test again. Also she doesnt want to disappoint her mom she wants to make her happy and give the test a second chance. 1 1 1 +10634 4 "She ends it with that statement to show that she is ready to relive spring in the new country now that she is comforted by the hibiscus. The test is adapting to the new country and she failed it she believes because she had to be comforted by her native plants, but she believes that she will pass the test next year because every repetition of the season allow her to become more adapted to the new culture. When she says when the snow melt and the geese return and this hibiscus is budding then I will take that test again.All those things tell her its a new year and makes it easier to accept whats happening. " 2 2 2 +10635 4 "She realized that things come and go but also change. That content times of the year the world around her changed. She had no control over it. She also had to deal with living in a new country. Living in anew country was hard for Saeng. She had to eat new foods, hear new sonds, and see thing that she never had seen before. Failing her drives test was hard for her. Not knowing the launge and what going on around her was tough of on her. the world around her wasnt something she was us to. She knew she had to change herself and work harder to get what she wanted." 2 2 2 +10636 4 The author ended the story with that paragraph to let the readers know that she did not give up. In the story it seem like she had thoughts of giving up but her thoughts of her homeland comforted her when she thoughts she was going to give up. But the last paragraph of the story she confirmed that she wasnt giving up. 1 1 1 +10637 4 I think the author concludes this story like this because they was beautiful `@CAPS1 gave her good luck because the @NUM1 time around she didnt kno they was their 1 1 1 +10638 4 "To me it seam like the whoever was saying that must of been going through a lot of things and that they was feeling like they were being tested or something or maybe somebody left her that she really loved because it say when they come back"" so @CAPS1 thinking somebody @MONTH1 have left or something."" And the reason I said that the person @MONTH1 have feel as if they were being tested because it says I will take the test again." 0 0 0 +10639 4 The author concludes the story with this because it shows that she is still uncomforalable. For example when she broke down in the flower shop. This shows that even though things can remind her of home it isnt the same. You have to get used to and become accostumed to a new place. This also shows that she thinks with more time to get used to her new home that she will be able to pass the test. 2 2 2 +10640 4 "The author uses this conclusion for a reason. The reason the author uses this cliff-hanges of a conclusion is to keep the reader interested and wanting more. By saying,I will take that test again, the author makes the reader question if Saeng will pass the test next time and the reader will wonder what the test is." 1 1 1 +10641 4 The author concludes the story with this paragraph because she probably doesnt want the snow to melt so that the geese wouldnt return. Also I think it wants to inform the reader about what Saeng was thinking. 0 0 0 +10642 4 There was a specific reason as to why the author concluded the story with that quote. The author wanted to show how the plant gave Saeng a new sense of determination. Saeng previously was upset and tearing the plant apart. But It seemed that she realized how the plant was able to bud to the odds and survive. So she now was determined to battle the odds as well and retake the test she failed. 1 2 2 +11827 5 "In this memoir of Narciso Rodriguez, @PERSON3's life, the mood containing it all, was greatful, and showed how his parents gave him love through his whole life. Both his parents were born and raised in Cuba, and in 1956, they both moved to the United States. Starting their lives over again, and taking any job they could find. Then in 1961, @PERSON2, @CAPS1. was born. Both Parents raised him with love, and care, and introducing his Cuban background into his life. As @PERSON2, was telling his story, all readers could tell how greatful he was to have a family like he did. Also, as he shared his non- blood related family, and the remembrence on how his parents' life changed by moving to @LOCATION2, he showed the respect he had towards them." 2 2 2 +11828 5 "Throughout the excerpt from Home the Blueprints of Our Lives, Narciso Rodriguez, the author, manages to maintain a single overall mood. In many parts of the story he tells about how much he loved his childhood so it lead me to think was nostalgia, but nowhere does it emphasize that he yearns to return to past times. He always declared how loving and selfless his family was, how they aided others, and how he became"" family"" with his neighbors. Due to this I have found the tone to be, loving and admiring towards his parents. This is so due to the fact that he states how his parents were so brave to leave their lives in Cuba behind just so he could have a better life. Narciso Rodriguez also remarks numerous times on how his parents helped so many in need. If in Rodriguez's position I would love and admire my parents just as much, if not more, for their selfless deeds and upbringing of their son." 2 2 2 +11829 5 "The mood the author created in the memoir is love. the author finds out that family doesn't have to be blood related. In the author's neighborhood ""despite customs elsewhere, all of these cultures came together in solidarity and friendship"" (@NUM1). The author loves thier parents because they came ""as many immagrants do, to give their children a better life"" (@NUM2). The author is very greatful that her parents ""Mother and father had come to this country with such courage, without any knowledge of the language or the culture"" (@NUM3). The author's parents gave him a great life by moving to @LOCATION1 and ""turned this simple house into a @NUM4)." 3 3 3 +11830 5 The mood created by the author is showing how cuban's lived and about Their cultra and how they lived and some people from other cultra's could be diffrent and don't @CAPS1 cared about their cultra's and some people do care about their cultra like narciso parents. that is what the author is trying to say. and that some people should respect their cultra and not @CAPS2 To be a different cultra. 1 0 1 +11831 5 "The mood created in the memoir is happiness and gratitude. Narciso is grateful of his parents for moving to @LOCATION1, and still give him warm happy feeling of a house in Cuba. His parents passed down their culture to him and he is happy that they did. Narciso is glad to have lived in the home that they did, and all the opertunities that he had as a child. He is grateful that his family always got together and had a feast with cuban music, activities, and food. His parents gave up their jobs and had to Start their lives over entirely. Narciso is also grateful that he learned the real definition of ""family"". He is also very grateful to his parents for their love and sacrifice." 2 3 3 +11832 5 "The mood definitely helps you feel and comprehend the story better. The mood is a mixture of both happy and sad because of the way the author states his ideas. For example, the sentence ""I will never forget how my parents turned this simple house into a home"" makes me feel sad because he grew up and everything is just memories now but he keeps those happy memories. Most of other ideas like ""I will be grateful to my parents for their love and sacrifice"" also carry the same reasons for being happy or sad. However statements like ""My mother and father came to this country with such courage, without any knowledge of the language or the culture"" makes me feel happy that his parents were so determind. Overall the main idea is remembering the good and bad times of his life and the mood for this idea is happy/sad." 2 3 3 +11833 5 "In Narciso Rodriguez's memoir from ""Home: The Blueprints of Our Lives"" he/she incorporated love and passion into the mood. You can tell this by how fondly and strongly Narciso talks about some things. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm houses."" In this one sentence alone, you could feel Narciso's passion and love for this home of the their's. Narciso puts a great deal of love and thankfulness into paragraph @NUM1 and @NUM2 when talking about his/her parents. ""It was here where I learned the real definition of 'family'... I will never forget how my parents turned the simple house into a home."" These two sentences are most likely the strongest in Narciso's memoir, these two are also the ones filled with the most passion and meaning. As you can see, in Narciso Rodriguez's memoir from ""Home: The Blueprints of Our Lives"", the mood Narciso puts in it is love and passion. " 3 3 3 +11834 5 "In the excerpt the mood created by the author is love. Love for family and love for each other. The author talks about his parents in a loving and respectful way, ""I will never forget how my parents turned this simple house into a home."" The author discribes all his parents went through to make their own and his life better. In doing so they turned an apartment into a place of love and caring that he will never forget and more importantly passed this love onto him. The author also talks about his ""family"" and the love shared between them, ""My parents always kept their arms and their door open to the many people we considered family..."" The author's ""family"" wasn't completely blood related. Many people were friends but very close friends that hav become like family and were always welcomed. Finally, the author talks about his community, ""In our neighborhood, despite customs elsewhere, all these cultures came together in great solidarity and friendship."" No matter what nationality they were the comunity was very close together and understanding. It was these basic principles of friendship, trust, love, and caring that were passed onto the author of this excerpt by a varity of people and give the excerpt a mood of love." 4 4 4 +11835 5 "The mood created by the author in the memoir is grateful and fortunate. Narciso Rodriguez talks about being so fortunate to have his parents and his heritage of being Cuban. From paragraph @NUM1, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 is saying that @CAPS1 was so happy and lucky to have his parents as parents which is the main mood of the memoir.Another mood created by Narciso Rodriguez in his memoir is happiness. @CAPS1 makes the story happy by saying how great it was to grow up with his family. @CAPS1 also says that his family was a lot of people in his neighborhood as well. @CAPS1 is happy to have a great family. From paragraph @NUM2, ""Here, the innocence of childhood, the congregation family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home.""@CAPS2 are two moods created by Rodriguez in his memoir." 3 3 3 +11836 5 "The author generally stayed in one mood. The mood portrayed in the story was family and friends are very important and they help what you will be in the future. This is why the author stressed how thankful he was that his family had come to @LOCATION1 to make him a better life and that his friends came over to share their culture. Also the author was saying that even in @LOCATION1 it was important to remember his cuban blood and culture. This is why he says ""...and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate cuban music (which I adore to this day) filled the air, mixing with the aromas, of the kitchen."" Also the author say's that a home is where geat memeries are and were you grow up, you should never forget it." 3 3 3 +11837 5 "The mood that the author creates in this story is a @CAPS1 sad mood But it is also @CAPS2, @CAPS3 the guy in it is getting a new Home and a new Life @CAPS3 His parents @CAPS5 @CAPS6." 1 1 1 +11838 5 "The mood in the memoir that the author creates is a very warm and relaxed sort of mood. The way the author tells you about his parents; the selflessness and the way they put their kids first before themselves really just makes you think about your own parents and how good they are to you and what they would do for you. The way the author talks about his home makes you think of all the colors in the house. I think that the house would be a golden red color yellow, white, brown and orange on the insides. It reminds me of the way they would have cooked. They would have cooked with colorful peppers, onions, tortillas and oils. It makes you think about what colors you have in your home and what you would cook with. The music sounds wonderful. Even though they don't demonstrate what it actually sounds like, you can easily imagine it. I imagine it laying in the background while all the adults are cooking and the kids are playing in colorful rooms with the golden sunlight shining in through an open window. I love the mood that this memoir puts me in." 1 1 1 +11839 5 "The mood of the memoir is very upbeat, happy mood of how @PERSON1. Grew up in Newark, New Jersey in a very Cuban family and tells the story of how Narciso went through his childhood. This memoir really emphasizes the connection and love that Narciso had with his parents and his home. It kind of makes you think that there is more to a house than just walls and a ceiling and that maybe it's part of a family." 1 1 1 +11840 5 "Describe the mood by the author in the memoir. the mood by the athor in the memoir. Is that she had a hard time grow up because her parent's keep on movieing. bay the age of twent-seven year old. Narciso Rodriguez liveing with her family she live in a one apratment room, When she was growing up there were racism were she was growing up. When she was growing up her mother and father taught her how to cook, and the number one thing she learned is how to love some one" 1 0 1 +11841 5 "The mood created by the author in the memoir was happy, enjoyable, and worth living. I say happy because they had family to be with, and other friends to help them if anything. I say enjoyable because the author talks about how they (main character) had the first birthday and first friend. I would enjoy all my birthdays if I was that person and also my first friend. I also said worth living because they had food on their table everyday. And nothing in the memoir said anything about struggling. This is why I explain the mood as happy, enjoyable, and worth living." 2 1 2 +11842 5 " The mood created by the author in this memoir was very loving and caring for their friends, family and everyone around them, for example it says how his mom would always keep the door open for whoever was going through a rough time or untill they were back on their feet because she knew they would do the same for her and her family. Also the mood is very thankful since Narciso admires everything that he's done in life and who he's helped out and he's thankful for all the friends he has and the care they have for him and his family and he thanks every oppertunity he gets in life. The mood also shows how that somthing small can turn out to be big on the inside because Narciso has done so much just from the small place he lives in." 2 2 2 +11843 5 "In this memoir, the author creates a mood. The mood is love. The author loves his parents for all the things they sacraficed to come to @LOCATION1. He really appreciates everything they've done for him and he is really grateful.The author describes the ""warmth"" of his kitchen. How it's filled with love and culture. The great aroma of their parents cooking and the music from his culture, he loves it.The author also describes how his family is @CAPS1 close, and their friends to. The love that they got for each other. The memoir says ""My parents always kept their arms and their door open to the many people we consider family, knowing that they would do the same for us."" @CAPS1 they considered people who weren't really family... Family. They helped each other out, family and friends, that's what creates the mood to be love.@CAPS1, in this memoir, the author creates a mood and its LOVE." 4 3 4 +11844 5 "The author of this memoir created a mood about family. ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country the loved,"" this quote tells that the mood created by the author makes the reader realize how hard their pareents work to give their children a better life and education. ""It was here where I learned the real definition of ""family"","" this also makes the reader feel like there is a lot more to a family then what it @MONTH1 seem. That family gives one life and teaches love. ""I will never forget how my parents turned this simple house into a home,"" this quote tells that home is not just a place where one @MONTH1 live, but that it is about relationships that are created there. These were some of the moods created by the author in the memoir." 3 3 3 +11845 5 "The mood created by this author is clearly greatfull. The author shows how he (narciso) could never stop saying thank you. He honestly loved the feeling his mom and dad made him have, and all thengs they did for him. By what the parents did by moving into a place to call home for Narciso made his mood forever endlessly greatful. By Narciso's mood being greatful I mean endlessly thankful for all that he has thanks to his parents. In this short autobiography, Narciso creats the reader to feel, and know he is happy with the life he has. As this short story creats the mood of being greatful. You understand how he feels as you read many times through out this article, ""I will always be greatfull to my parents...""" 1 2 2 +11846 5 "The mood set by the author in the memoir is a home is home kind of mood, like a great family, great friendships/relationships and open arms kind of feeling. He mentions the fact that his parents always helped friends and family in need and how selfless they were towards other people. He talks about how him and his family used to come together and have meals as a family. He says he is grateful for the spirit an generosity given to him by his parents at a young age. He gives the reader a sence of comfort and generosity and he thanks his family deeply for expressing spirit, generosity and selflessnes to people." 2 2 2 +11847 5 "The mood created by the author in the memoir is grateful, joyful, and loving. The mood is grateful because the author's parents were such wonderful people, that made the author look up to them. The author even says, ""I will always be grateful to my parents for their love and sacrifice. The mood is also joyful because, although the author lived in just a simple house, inside, there was always music and he was influenced by his culture. ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" After all a house is only a ""home"" if you feel welcome and love, and that is exactly how the author felt. Lastly, the mood is loving because in his home, his parents welcomed anyone who needed help. Example from the memoir is, ""My parents kept their arms and their door open to the many people we consider family, knowing that they would do the same for us."" Over all, the author kept the mood lively and definitely happy, although the happiness went on through difficult times like segregation." 4 3 4 +11848 5 "In the memoir, the author created a very upbeat mood. He clearly is very grateful for his family, and had a happy childhood. He pointed out the parts of his home and situation that could have been negitive for him while growing up, but then he cancelled those negitive things out by noting the positive aspects of each situation. For example, in the memoir he wrote about how his family had immigrated to the United States, and how they had good jobs in Cuba, but then had to start all over with low-paying jobs once they got here. He said that this was hard for them, but he found a positive way to look at the situation. He did this by writing about how his parent's situation taught them and him to always work hard, and never give up. So overall, he made what could have been a depressing story, have an upbeat and happy mode. He even made the story teach you a lesson about hard work and the importance of family and giving to others." 2 3 2 +11849 5 "The mood created by the author of the memoir is cozy and family oriented. From the very beginning, the author describes the home as more of a way of life than a physical space. The author's ""parents created our traditional Cuban home, part of which was the kitchen"" (@NUM1). Here, the home is described even more as a part of the family, less is a building. To enhance the feeling of family, the author includes stories of hospitality: ""My parents always kept their arms and their door to the many people he considered family"" (@NUM2). Hospitality is one of the best qualities you need to make a house a home and the author really stretches that. The mood created by the author of the memoir is cozy and family oriented." 2 2 2 +11850 5 "The author, Narciso Rodriguez, creates a very happy mood in his memoir. One reason the mood is happy is because of the setting. Narciso describes his house and says, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the back-drop to life in our warm home."" The author describes a home filled with many good friends and good memories. Anothe reason is how grateful the author sounds. It says, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" While they had to leave everything behind they did it for their kids and for a new life. The author is happy that they did. Also, the author credits the house with giving him a family. @CAPS1 says, ""It was here that I learned the real definition of the word 'family.' And for this, I will be forever grateful."" @CAPS1 learned a lot in this house and is very happy for that. In Narciso Rodriguez's memoir @CAPS1 creates a very happy mood." 4 4 4 +11851 5 "Based on this memoir, the mood created by the author it's a great mood unexplainable. in this article talks about a young man named @PERSON1 and how his life was from then and now. for example, on paragraph @NUM1, says he will always be grateful to his parents for their love and sacrifices. and how he had always told them that what they did was a much more courageous thing that I could have ever done. Also, how Cuban music was so passionate, adored so much, and how his parents turned a simple house into a home. therefore, this is the mood created by the author." 2 2 2 +11852 5 "The mood created by Narciso Rodriguez was happy and thankful. His parents taught him many things about their cuban back ground, like cooking and music. His parents gave up many things to comfort Narciso and make him at home. ""I will always be grateful to my parents for their love and sacrifice."" His parents turned their house into a home for other People as well. ""My parents always kept their Arms and door open to the many people we considered family."" Narciso's parents would take in anybody that needed a place to stay until they got back on their feet. Narciso's parents were very loving to the community and help out as much as the could in making that place at home." 2 2 2 +11853 5 "In the memoir Narciso Rodriguez the author creates a serious, happy and thankful mood. The author was serious to the point where his family had to go through economic and personal problems. However, the author was happy how they lived in a friendly and unified neighborhood with other immigrant from different countrys. The author showed thankfulness because his parents worked so hard to give him a new life. The memoir showed a good mood as well as a accurate portrait of the athour childhood." 2 2 2 +11854 5 "@PERSON1's mood was happy and greatful. @PERSON1 was grateful was because he had his family together and his mom and dad were open house with the culture. He was happy because his life was better thae it would have been if they stayed in Cuba. That was @PERSON1's mood." 1 1 1 +11855 5 "In Narciso Rodriguez's memoir, the mood and feeling of her home and comunity is a happy and heartwarming situation. Most people who would live in a tiny apartment in the city would say that it was to small and cramped, while they wished for a mansion on the ocean, but Narciso was perfectly happy being in that environment. The way she described it, there were always great smells, wounderful music, and great people around all of the time. Narciso said the man people who contributed the most to her wounderful experience in New Jersey were her parents. They supported and cared for her at the same time they were strugling for money. They never showed sadness and they loved and cared for her. Even though Narciso lived in a small apartment in the city, she and her family show that you can make the best out of any situation." 3 2 3 +11856 5 "In the memoir @PERSON1 it talks about making a house a home and a community, your family. ""Growing up in this enviroment instilled in me a great sense that ""Family"" had nothing to do with being a blood relative"" (par @NUM1) paragraph @NUM1 goes onto talk about how growing up with Italian, Spanish, and Cuban cultures in one community, with all differences aside made the community into a family. Rodriguez talks very warmly, and with only good things to say about his childhood.the mood of the memoir is Rodriguez remembering his culture filled childhood. ""I learned the real definition of ""family"". And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love"" (par seven) The memoir is a dedication to his life and a reflection of all the experiences had within his family. He writes his memoirs in loving spirits dedicating his knowledge of a ""family"" to his own." 4 3 4 +11857 5 "In the memoir ""@PERSON1 Rodriguez"" from Home: The Blueprints of Our Lives by @PERSON1, the mood is a very important part of the story. The mood in this memoir is definiatley thankfulness. The first reason for why the mood of this story is thankfulness is because @PERSON1 is thankful for his Cuban heritage. @PERSON1 shows his love for his heritage by stating ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills"". @PERSON1 is very thankful that he has these skills from his great culture. The second reason that the mood of this memoir is thankfulness is that the author is thankful for his home. ""...Formed the backdrop to life in our warm home"", @PERSON1 writes in his memoir. This quote shows that @PERSON1 is thankful for a nice place to call his home. the final reason that the mood of this memoir is thankfulness is that the author is thankful for his hardworking parents. ""I've often told them of my admiration for their strength and perseverance, and i've thank them repeatedly"", he comments. This undoubtably shows the author's great respect for his parents and all they have to offer for him to be happy and healthy. Thankfulness is a mood that suits this memoir very well, and the pride and gratefulness that the author shows for his heritage, home, and parents is wonderful." 3 4 4 +11858 5 "The mood created by the author in ""Narciso Rodriguez""is very calm and happy. The author This very calm and cool. There are no loud or emphasized parts. It is also very happy. It describes a family growing and getting to love each other. Also frends and more family having happy times having celebrations. The happiest line was the last, ""I will never forget how my parents turned this simple little house into a home."" It also has a very loving tone to it. Anything about a family coming together is loving." 2 3 3 +11859 5 "The author could have put alot of different types of mood in the memoir. I think that the mood of the memoir is happy, greatful and appreciated. I said happy because he talks about every thing he does and how he enjoys it I said greate because he is always thanking his parents and he admires them. He admires them because thy have comed last to the good life and they do everything in their power to have a good life. An he appreciates him because of the same thing I said before he admires them and always thank them for what they have done to her. This is the mood the authors has toward writting the story." 2 2 2 +11860 5 "In Narciso's memoir, I feel joy. I feel joy because Narciso's parents were able to survive. They came to @LOCATION1, ""without any knowledge of the language or culture."" @CAPS1 immigrant families do not get on there feet right away and they did, within a year they went from a @NUM1 room apartment to a @NUM2 room appartment.Joy came to my mind also because they had welcoming arms to there family. People today are losing there jobs & homes and they have nobody to go to, but the Rodriguez family had a place to go. ""Countless extaded family members came & went- and there was often someone staying with us temporarily until they were able to get back on their feet. My parents always kept their arms & their door open to the many people we considered family, knowing that they would do the same for us.""" 3 2 3 +11861 5 "The mood created by the author in the menoir. The author was grateful that the chance to growing up in the @LOCATION1. The title named is Narciso Rodriguez. He talks about his life, that he came from cuba. and that his parent welcomes people that come from cuba. They come ""together in a great solidarity and friendship."" I think his mood is every happy. To see that his parent made something out of notthing. The author parent show him with their life, and his teaching have been the basis of his life. I feel the same way because my parent brought me here for a better life. I think you learn everything from your parent How to act and all that. So yea the last sentence he said I liked it. He said I will never forget how my parent turned this simple house into a home." 3 3 3 +11862 5 "Author Narciso Rodriguez describes his love and happiness towards his family in this memoir. He states how his parents gaveup everything not for themselves for him and his relatives. The community they moved to was so happy and also like his family to him. Narciso describes how him and his family keep their @CAPS1 culture with them and he appresiates it. The last sentence truely says it all ""I will never forget how my parents turned this simple house into a home"". All of that shows how during this memoir his mood is happy, loving, and grateful all at once." 3 2 3 +11863 5 "The authors mood in the memoir @PERSON1 is thankful. I know this, because in paragraph @NUM1 @CAPS1 talks about his culinary skills and how grateful he is to have it passed down to him. This shows us that he is very much thankful for this skill, because some people don't know how to cook and to be able to cook is a blessing. This also shows us that he is proud of his culture and who he is as a person. @PERSON2 quotes ""I will always be grateful to my parents for their love and sacrafice."" In @CAPS2, this shows us that @PERSON2 was very much appreciative of all that his parents had done for him. Also that he loved his parents dearly and every chance he gets, he thanks them. Therefore in the memoir Narciso gives off the mood of being thankful." 3 2 3 +11864 5 "The author's interpretation of their childhood home set a mood of love and compassion. He writes about his parents in a way that informs the reader that they were extremely good people. He describes them, as well as others in their community, as honest, hardworking, selfless people. He writes the story with much appreciation of his parents, family, and life, which is very admirable. He describes that he lived in a house with only three rooms, and yet his parents made a home out of it and welcomed others to stay, too. The mood that this author set was that of love and compassion, and he did a very good job of explaining what his childhood home meant to him." 2 2 2 +11865 5 "In this memoir, there are moods created by the author in the memoir. One mood in the memoir was peaceful. In this excerpt it stated, ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great soliderity and friendship."" This meant that everyone got along with no fighting unlike segregation dowin the @CAPS1 at the time. Another mood is humble. A quote from the text says, ""I will always be greatful to my parent for their love and sacrifice."" This shows that no matter what @CAPS3 will @CAPS2 his parents. Lastly, the author created the mood modesty. To prove this @CAPS3 stated, ""They showed me with their lives, and these teachings have been the basis of my life."" @CAPS3 means that his parents (they) had Showed him everything @CAPS3 knows today. Therefore, this memoir has moods that are created by the author." 3 3 3 +11866 5 "In his memoir, ""@PERSON1 creates a happy and loving mood. In a time when racism and segregation was normal in @LOCATION2, @PERSON2 and his family had many happy times in his home in Newark, New Jersey. His town was filled with Cuban, Spanish, and Italian immigrants. His neighborhood was united and hardworking. In his memoir, Rodriguez writes about his kind parents. In the memoir, it states, ""My parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us,"" (p. @NUM1). Rodriguez's family was always willing to help others because they knew the favor would be returned. The Rodriguez family used their strong kindness to help everyone in the neighborhood. In return, they were respected. Also, Narciso Rodriguez writes about the bravery of his parents. He writes, ""They came selflessly, as immigants do to give their children a better life...."" (p.@NUM1-13). His parents wanted to help their children and give them better lives. They sacrificed their needs and wants for their children. The @CAPS1 loves his parents because of their sacrifice and love. Last but not least, Narciso Rodriguez writes about the struggles of his parents. He writes ""They struggled both personally and financially..."" (@NUM3). The Rodriguez family struggled through racist acts and different climates for their children. They wanted to give their children a better life in @LOCATION2 than what was given in Cuba. Overall, Narciso Rodriguez writes about his parents' struggles that lead to happy moments." 4 3 4 +11867 5 "The mood that takes place in this article would be sorrow, excitement, and being grateful for the parents he had. Narciso is grateful for the culinary skills and traditions that his parents passed on to him. Just like me most of my life I lived an apartment and saw it as any other home because of the parents you have there that care for you. Also growing up in that enviroment taught him family doesn't have to be blood related, it could neighbors or friends that could be like a brother, sister, aunt, uncle." 2 1 2 +11868 5 "The mood in this story was security and happiness. Security was prevailed when all different people with different culture and heritage could live together without fights or arguments at a time when there was a lot of racial tension in @LOCATION1. Happiness was showed in many different ways. One way was when he was describing the warmth, music and cooking in his house. Also, when he was talking about how thankful he was for what his parents sacrificed for him. Overall, @PERSON1 was happy about how his whole childhood when and it seemed like he loved every last minute of it." 2 3 3 +11869 5 "The mood created by the author in the memoir is happy. He seems happy because, he talks about his parents, his family, and his home which make him happy. In paragraph @NUM1, the author talks about how being blood-related doesn't have to do with family. In paragraph two, the author talks about the simple house that his parents made a home. When you read paragraph two, and how he describes the home, the author makes you feel happy. In paragraph @NUM2, the author says how he will always be grateful for his parents and the life that they gave him. That is the mood and some examples created by the author in the memoir." 3 3 3 +11870 5 "The @CAPS2 had many mood in the memoir. The mood that @CAPS1 mostly had was happy and greatfull for having his family and friends near him. @CAPS1 was sad because @CAPS1 didnt have his granparents with him @CAPS1 said ""I would not know my real grand parents Narciso the Elder and consuelo, until 1970 when they were allowed to leave Cuba."" @CAPS1 was happy that his parents that his parents left everything for him to have a better life. The @CAPS2 is a strong person and had a lot of good and bad moods in The memoir. " 2 2 2 +11871 5 "The mood created by the author showed me to be happy with what I have and to be grateful for what I am givin. I learned this from all the moods the author expressed in his memoir of his life. As I state this is the mood the author expressed. abd" 0 1 1 +11872 5 "The mood in the memoir ""Narciso @CAPS1"" is a Open happy familly because her parents worked and made a wonderful home for her. I think the mood in the story is a open happy family becase in the text it says ""Growing up in this enviroment instilled in me a great sense that ""family"" had nothing to do with being blood related"" and that @CAPS3 that when @CAPS2 was growing up her family had a bunch of people that were considered family but not blood related. Also the text said ""It was a close knit community of honest, hardworking imigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" That just @CAPS3 that her parants let anyone from their community who needed a family become part of their familly, or anybody who was lonley just have some company from them." 2 3 3 +11873 5 "The mood the author creates in this memoir is a feeling of relationships and love between so called 'extended family'. The author emphasizes the relationship between Narciso Rodriguez's family and the surrounding neihbors is so close that they could be family. The author incorporates the feeling of overall joy and happiness this boy has, even though they have a small house, they could still turn it into a loving home. The author shows how much this boy loves the heritage he has and his fun parents who taught him to love cooking and cuban music. This memoir shows how he is poor, but still can have a fun and interesting life with lots of friends and fond memories. Narciso is very thankful for his parents and this shows how appreciative he is of the simplist things iand home. The overall mood in this memoir would have to be thankfulness. The characters are so thankfull for everything they have." 2 3 3 +11874 5 "In this excerpt from ""Home: The Blueprints of Our Lives,"" by Narciso Rodriguez, the author sets a very clear mood in the memoir. Narciso Rodriguez's ""eternally grateful for his family and everything they did for him. For example, ""[Narciso Rodriguez] will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing then I could have ever done."" @CAPS1 admires ""their strength and perseverance, and I've thanked them repeatedly."" @PERSON1 feels that ""there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" @PERSON1 ""learned the real definition of 'family.'"" @PERSON1 ""will never forget how my parents turned this simple house into a home.""" 3 3 3 +11875 5 "The mood created in the memoir is grateful. ""My Parents both shared cooking duties and unwrittingly Passed on to me their rich culinary skills and a love of cooking that is still with me today"". What I mean by that is that he is grateful for what he learned from is parents. ""I would always be grateful to my Parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done. They showed me with their lives, and these teachings have been the besis of my life. What I mean about that is that he loves and cherish his mom and dad for what they did for him. The mood in this memoir is grateful because he love and cherrishes and cares about his mom and dad." 3 3 3 +11876 5 "In the memoir, Narciso Rodriguez, the author's mood was happiness. He explains that he is greatful for his parents for her home, ""I will always be grateful to my parents for their love and sacrifice. The author also shows that she was taught how to do things by her parents, and that she was happy that they did that. He thinks that family and friends are important too. For these reasons, the author created the mood of happiness in his memoir." 2 1 2 +11877 5 The mood created by the author in the memoir is happiness because Narciso is happy for everything that has happened Narciso is happy for his family and his native haratige. For example in the beginning of the story is says Narciso loves he haratige and his family. This means he's happy. 2 2 2 +11878 5 "The mood created by the author is a happy mood. I think that it is a happy mood because Narciso is describing his life, and at the end he says he has a happy life. ""I will never forget how my parents turned this simple house into a home"" (@CAPS1 @NUM1). I think that this is a happy statement because he is saying that his parents cared so much for him, and they turned what could have been a bad house, into a home. I think that it is a happy mood because of the way he talks about his neighbors. ""It was a close knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need"" (@CAPS1 @NUM2). I think that since he talks about his friends and neighbors so well that it is a happy neighborhood. A @NUM3 and final reason I think it is a happy mood is because of the way he speaks of his family. ""They came selflessly to give their children a better life I will always be grateful to my parents for their love and sacrafice"" (@CAPS3 @NUM4 and @NUM5). I think that he loves his family, and love is definitely a happy word." 3 3 3 +11879 5 The mood displayed by the author was a warm cozy feeling that felt like home. It showed his small house and family and their interests and how they all acted together. It really showed what he called home and what he called a family. The memoir explained the food he ate and the music he heared all through out his childhood and how he grew up. 2 2 2 +11880 5 The mood created by the author was happiness. Because every one came together as a family and they look out for each other when they were in need. They also helped each other out and were kind and friendly. 1 1 1 +11881 5 "The mood in this memoir is heartwarming.This memoir is heartwarming because it's about her parents came from Cuba to the @CAPS1. S. It's nice how the blonde-brick house was better but still the same as the house their parents lived in. The Cuban music filled the air of the house like it was a house in Cuba. A house isn't a house untill you call it a home. That family has made that their home forever. Even though their family can't come down till 1970 they too will have a place to call home like Narciso Rodriguez did. Like he said in the memoir ""I will never forget how my parents turn this simple house into a home""." 2 3 3 +11882 5 "The mood that the author has is, and happy. I know this because @CAPS1 talks about his family and friends and his @CAPS3. @CAPS1 starts to tell us about his first friend @PERSON1 and how they lived above him. ""@PERSON1 my babysitter and my first friend lived above us and @PERSON1 graced our table for meals more often than not."" @CAPS1 @CAPS2 how it was to make his first friend. @CAPS1 also went on to explane how his parents made the house and how @CAPS3 will stay there forever. ""I will never forget how my parents turned this simple house into a home."" @CAPS1 is really greatful and his mood is happy and calm. Because hes talking about how his family started and how @CAPS1 met his friends." 2 3 3 +11883 5 "In the memoir the author created a mood by using details about the setting and the chareters, one of the mood that was in the story is friendship. In paragraph @NUM1, it says ""@CAPS1 graced our kitchen table for meals more often than not."" The author is explaining that he had family friends over to his house to eat almost every night. Another mood that is in the memoir is careing. In paragraph @NUM1, it says ""there was often someone staying with us temporarily until they were able to get back on their feet."" This shows that even though the authors family had a small home they let people stay with them untill they could leave. The last mood in the memoir is happiness. In paragraph @NUM3, it says ""I celebrated my first birthdays. Mood it was in the warmth of the kitchen in this humble house where a Cuban feast alwase filled the air."" The author explains how he had his birthday with his friends and family. These are only three of the main moods in the story." 2 4 3 +11884 5 "Heartwarming. That is the mood that Narciso Rodriguez creates in his memior Home: The Blueprints of Our lives. Narciso talks of the passionate cuban culture, his welcoming home, and his caring and selfless parents.Narciso starts out the story, describing his home. He explains that it was filled with cuban culture. Food music and all. Narcisco states in paragraph @NUM1 ""My parents both shared a love of cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am externally grateful). Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" That description allows the reader to picture the warm culture of his childhood home.Then, Narciso explains that his home was always open to friends family and neighbors. He explains that they were all united because the country was filled with racism. To overcome that, they needed to stick together. Narciso states in paragraph @NUM2 ""My parents always kept their arms and their door open to the money people we considered family, knowing they would do the same for us."" That just invites the reader in.Last, Narciso explains his gratitude he has towards his parents. He states in paragraph @NUM3 ""I will always be grateful to my parents for their love and sacrific. I've often told them that what they did was a much more corageous thing that I could have ever done."" His gratitude and love towards his parents just warms the readers heart...Narciso Rodriguez truely and honestly creates a heartwarming mood in his memoir Home: The Blueprints of Our lives. @MONTH1 his message be carried on for centuries." 4 4 4 +11885 5 "The @CAPS1 in this @CAPS2 is @CAPS3 very happy and always like they are doin something as a family. it shows this in @CAPS4 @NUM1 throughout the whole thing. it shows that @CAPS5 it shows how he is @CAPS6 much as close to his family as he is to the others around him. and that should mean a lot of things @CAPS5 he really doesnt know much english and all those people are goin to be an important influence on his life As an @CAPS8 and non-Cuban, that is how and where it shows @CAPS1 in the @CAPS2." 2 1 2 +11886 5 "When an author is writing, setting the mood is really important. The mood created in the memoir is heartwarming and it shows how greatful this person is for their home, although it was extremely small.Narciso Rodriguez lived in a small crowded home, however it was the fact that his parents tried hard to make sure that Narciso had a good life, that made his house great. His parents made the best of what they had and filled it with passion, love, and laughter.The author did a very good job setting the mood of the memoir. When he was talking about his home readers could almost feel the love, @CAPS1 the food, and listen to the music. The mood is uplifting and the author shows a lot of gratitude.It makes you smile when you read the memoir because of all the pleasent memories and the caring and giving.Narciso Rodriguez had amazing parents who did so much for him. In his memoir, he does an excellent job setting the mood and readers can tell how greatful he is." 3 2 3 +11887 5 "The mood the author created in the memoir is a roller coaster. It goes up and down. At the beginning of this story, it was quit deppressing. It's basically just Rodriguez describing the crummy quarters he lived in. But, as the story progresses, it is filled with happiness and even though living conditions werent all that great, he still had fun. In the end, home is about relationships rather than physical space." 2 1 2 +11888 5 The mood created by the author in the memoir is caring because his mother gave people a home to help them get back on their feet and kept her arms open and door open. Also the mood created by the author in the memoir is thankfulness because the author thank his parents all the time for his life. 1 1 1 +11889 5 "In the @CAPS1, Narciso Rodriguez, the author creates afeeling of family, home and culture. ""Created our traditional Cuban home, the very heart of which was the kitchen."" This quote shows that Narciso and his family had a great understanding and gratefulness for their culture. The @CAPS1 says that they opened the door to any one who came in and they always shared dinner with family. That shows the close-knit family @CAPS2 grew up in. Narciso tells how his parents turned a house into a home." 2 2 2 +11890 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, @CAPS1 talks about how his Cuban roots and parents love helped to create a home and not just a simple house. In this article, Rodriguez creates a warm and calm mood by talking about his Home. @CAPS1 explians how tight-knit his family and nienborhood was because of the love and compasion of thier culture. By saying this @CAPS1 creates a warm calm mood inviting you (figuratively) into his home and childhood." 2 1 2 +11891 5 "In this memoir the mood created by the author is gratefulness, happiness and unity. This is noticeable in many different ways such as when Narciso says, ""I will always be grateful to my parents for their love and sacrifice."" This shows gratefulness Narciso per trays to his parents for giving up their life in Cuba. Another example of mood in this memoir is when Narciso states ""Here in the innocence of childhood, the congregation of family and friends, and endless celebrations...."" This passage shows happiness in Narciso's home. It is evident by the tone used by the author that these were happy times. Lastly when Narciso says, ""In our neighborhood despite customs elsewhere, all of these cultures came together."" This shows unity in the story despite the different races of people who lived around Narciso. This is how happiness, gratefulness, and unity created a mood in this memoir." 3 3 3 +11892 5 The mood from my perspective would be a calm and cozy sentimental feeling. When the author would talk about how his parents passed so many feelings and so much culture it made me think about who I am and where I am from. It gave me a warm and fuzzy feeling about the cooking and music and family and I can relate to that. It gave me a feeling of perseverance and to not stop striving for what you believe in. It made me feel strong and inspired my the mother and father's dedication to family. 2 2 2 +11893 5 "The mood of the memoir by @PERSON1 is love and compassion for his parents. He tells how he grew up with pride for Cuba and how he still loves Cuban music. His parents gave him these qualities which he adores but he is ""eternally grateful for his rich culinary skills that were passed on to him by his parents. @PERSON1 also talked about the role of ""family"" in the environment in which he grew up in. In his neighborhood, many people were the victims of racism, so they all came together to be a stronger whole. By growing up like this he learned how to give a helping hand to those who were in need. @PERSON1 also told the reader of the courage his parents had by leaving everything they knew and loved behind and how he wished he could have that same courage, but at least he knew of it." 3 3 3 +11894 5 "In the memoir from: Home The Blueprints of Our Lives by Narciso Rodriguez. The mood Narciso creates In his memoir is a sort of loving mood. This mood is described by The @CAPS1 ""I learned there how to love. I will never forget, and parents turned this simple house into a home"". this shows how he loved his home. Also The @CAPS1 ""passed on to me their rich culinary skills and a love of cooking that is still with me today and to that I am externaly grateful. This shows he loved That his parents passed on to him a love of cooking and cooking skills" 2 2 2 +11895 5 "In the memoir ""@PERSON1"" by himself he creates a tone of love. It is tone of love because he explains that his parents taught him many great things. Also that he is grateful and thankful to everything his parent's gave him, as it says in paragraph @NUM1. For example he explains that family doesn't have to be blood related. His parents taught him that anybody you can trust his family, anybody that you help because you know they will do the same for you. Also in the last sentence it says, ""I will never forget how my parents turned this simple house into a home"". So the author's tone for his memoir is love and that he is grateful for everything with his parents." 2 3 3 +11896 5 "In the memoir Narciso Rodriguez from Home: The Blueprints of Our Lives the mood was well shown in a few ways. ""My parents both shared cooking duties and unwillingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally greatful)."" The mood is is happy and greatfull for what Narciso learned. ""Passionate Cuban music (which I adore to this day) filled the air mixing with the aromas of the kitchen."" In the parenthesis it emphasizes the love Narciso has for Cuban music even more. ""Our landlord and his daughter, Alegria (my babysitter and first friend), lived above us, and Alegria graced our kitchen table for meals more often then not."" This here shows how friendly both the families are together and they are happy to enjoy these meals." 2 3 3 +11897 5 "The mood created by the author in the memoir was ""solidority."" because in paragraph @NUM1 it says ""My parents both shared cooking duties and unwittingly passed on to me their non culinary skills and a love of cooking that is still with me to today (and for which I am eternally grateful). Passionate cuban music (which I adore to this day filled the air, mixing with the aromas of the kitchen."" also in paragraph @NUM2 it says. ""growing up in this enviroment instilled in me a great sense that ""family had nothing to do with being blood related."" This is now the mood created by the author was ""solidarity""." 3 2 3 +11898 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, these are some examples about the mood in the memoir. First you should always be happy no matter what culture your in. ""In our neighborhood, despite customs elsewhere, all of the cultures came together in great solidarity and friendship."" located in paragraph @NUM1. It doesnt matter what culture you are in. Second, be happy from where you come from. ""I was born into this simple house, situated, in a two-family, blond-brick, building in the Ironbound section of Newark, New Jersey,"" located in paragraph @NUM2. You should be happy from what town you are from. Lastly, never forget who really matters. ""I will never forget how my parents turned this simple house into a home,"" located in paragraph @NUM3. You should always be thankful to you parents. In conclusion these moods are the examples of the memoir." 3 2 3 +11899 5 "The mood created by the author in the memoir is very grateful and kind for many reasons. Narciso Rodriguez he tells why his parents made a hard choice to come to @LOCATION1 and leave all their friends, family, and careers behind. He really shows the people who have read his memoir that he respects his parents and thanks them so much to make his life better in @LOCATION1. This memoir relates to people and real life. He explains where he comes from and he just loves the way he can live his life simple and be happy for what he had accomplished so far (and his parents). In his memoir the details and the description just makes you want to keep reading and learn more about his life. In conclusion, every-thing in the memoir is so kind and precious to him." 3 2 3 +11900 5 "In ""Narciso Rodriguez"" the author Narciso Rodriguez, write a memoir about his childhood. In the story he thanks his parent for thier courage in coming to @LOCATION1. As well as his cuban upbringing. He describes how thier house was always full with family and friend and how there was always a big cuban feast and cultural music playing. Finally, Narciso depicts how his community that he lived in was unity and strong even though they did not have the same heritage or background.The mood in which Narciso creates his memoir is very upbeat. He never says anything negative about his family, friend, or community. Narciso is constantly thanking his parents for his heritage and thier will to give him a better life. ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1, Narciso uses parentheses to give more background information.Narciso's memoir was a very heart felt story. It made me feel like even through hard times people can find the good in things. This story makes me think of my dad because when things go wrong he can always make a joke or find the bright side of the story." 3 3 3 +11901 5 "the mood was definatly uplifting and happy. at first when he describes his ""house"" he says within these walls my young parents treated our traditional cuban ""home"". You see how he goes from house to home that then you know is a happy place for them. with their kitchen as the ""heart"" (happy heart) cuban music fills the air/ (which he adores). this is just a verry uplifting story how he was born into a cuban, Spanish, Italian people dealt with racism and his parents are welcoming in their extended big extended family into sleep eat everything. this is a good family and like he said family is not about being blood related its about loving them the way they come and still be in their homes. their family is without a worry all about love and courage his parenths taught him something special and how you can have more than a blood related family. All you need is a little selfishness and alot of courage." 2 4 3 +11902 5 The mood in this memoir is heritage love and family love. This is showed by the author when he writes about his home and how we learn to love there. All the friendships he had and family moments made him love his home. He show the warmth and love for his family and home. 1 1 1 +11903 5 "I think the mood is happy. because Spanish cuban and Italian in the same neigh borhood with out fighting, and it seems like they like than life in United States." 1 1 1 +11904 5 "I think that the mood created by the author was happiness. I think this because when @CAPS1 was talking throughout the story @CAPS1 talked about how great her life was and how nice your parents are. @CAPS1 talked about her life as being very nice because @CAPS1 grew up in a house that turned into a home. Also, @CAPS1 talked about the great cooking that went on in her house and all of the great music, that @CAPS1 still loves today. Also, @CAPS1 talks about how caring her parents were when they opened there doors to family that needed a place to stay until they got back on their feet. Lastly, I think the mood set by the author was happiness because @CAPS1 had a lot of her family or close friends living either above or below them. Those are the reasons I thought the mood set by the author was happiness." 3 3 3 +11905 5 "The mood created by the author in the memoir is that family is very important. Family is very important an example of that in paragraph @NUM1 is when the author @PERSON1 writes ""Growing up in this enviorment instilled in me a great sence that ""family"" had nothing to do with being blood relatives.""The second way that shows family is important is in paragraph @NUM2 when the author writes ""I will always be grateful to my parents for their love and sacrifice.The third and final example is in paragraph @NUM3 when the author writes, ""I will never forget how my parents turned this simple house into a home."" @CAPS1 three examples show that family is the most important thing." 3 2 3 +11906 5 "The mood of the author in this memoir was happy, grateful, and gratitude. I say happy because in the story the author said ""in our neighborhood despite customs else where, all of the cultures came together in a great solidarity and friendship. I say happy because the author was happy to enjoy having so many friends and family to come over everyday and have fun. another mood is grate full the author as it says in the story ""I will always be grateful to my parents for their love and sacrifice. The author says this because the authors parents loved him a lot they went out every day trying to get money to make sure the author had a good life and the author was greatful for that. Now the author had gratitude for all the things the author's parents did ""parents created our traditional Cuban home"" also ""passed on to me the rich culonary skills and love for cooking"" and ""where I celebrated my first birthdays"". The author had gratitude for all these things and more because without the things his parents did he wouldn't be who he is today." 3 3 4 +11907 5 I think the mood in this story was sad/happy. I think it was happy because it says he loved to cook And he thanked his parents for teaching him to cook. Also In paragraph @NUM1 Its a paragraph dedicated to his parents. I think it is sad because in paragraph @NUM2 it says his parents had very good Jobs but when they came to the united states they had to startover. 2 2 2 +11908 5 "In the memoir the expressed different moods. One of these moods were appreciative, he was appreciative that his parents made a house into a home. They made him happy by the way his parents passed on their rich culinary skills and love of cooking and their passionate cuban music which filled the air of his home. The author also expresses how he is grateful that his parents left their families, friends, and careers in the country they loved so that they could come to america, start their life over, have a better life for themselves and himself." 2 3 3 +11909 5 The author in the story created a mood that you could feel all over while reading the article. The author created a feeling of homeliness and peace. He created this feeling because while reading he never uses a word about violence or hate. Also while reading he talks about how him and his family always helped each other out. He also considers his community family and that really makes you feel at peace inside. 2 1 2 +11910 5 "The move the author created in the memoir was that he made it so theres still hope. Even if your an immigrant you can still make it to the top. @PERSON1 family moved from Cuba when racism was legal. The neighborhood was a family, or unity. Now Narciso is a famous fashion designer. Coming from Cuba with nothing starting a new life entirely over was very hard" 0 2 1 +11911 5 "In the memoir, Narciso Rodriguez, the mood created Is happy and loving. In the memoir it says, ""In our neighborhood despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" @CAPS1 of people were very close to his family and @CAPS2 found out you don't have to be blood relatives to be family. Also it says, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS2 is happy his parents moved to @LOCATION1 and is grateful of the sacrifices they had to make do do it. ""I will never forget how my parents turned this simple house into a home. @CAPS2 went from Just living there to it being his home. @CAPS2 appieriates all his parents have done to make his life better." 3 3 3 +11912 5 "The mood created by the author in the memoir is how she learned the definition of ""family"". She learned the definition of ""family"" at what she calls it her ""simple house"". I know this because in paragraph @NUM1, she says ""It was here where I learned the definition of ""family.' " 2 1 2 +11913 5 "In the memoir, ""Narciso Rodriguez from Home: the blueprints of Our Lives,"" the author creats a special mood. I think the mood is kind of both happy and sad at the same time. It is sad because the parents had to leave all of their family, friends, and careers back in Cuba, while coming to @LOCATION1 not Knowing the language. He didn't even get to meet his real grand parents until 1970 when they were allowed to leave Cuba. The mood is happy too because the parents did all of this for their child. He gets to live a happy life in their new home, with their new friends." 2 2 2 +11914 5 "The mood set by the author is a very happy one. This is shown by explaining how happy he is to be a Cuban-@CAPS1 and be free of dark times. He also shows his happiness by explaining his qualities and family. Overall, Narciso Rodriguez wants people to be happy with their lives and family and heritage. That is the mood set by Narciso Rodriguez." 1 1 1 +11915 5 "In this memoir gives a grateful feeling. Some of the reasons I think this is because like in paragraph @NUM1. The author says ""our neighborhood was made up of mostly Spanish, Cuba, and Italian immigrants at a time when overt racism was the norm and segregation prevail in the United States."" But the main part of the story is that how he loves the neighborhood he lives in and the house he lives in and mostly how much the people are basically family in that neighborhood. And that is why I think the author has a grateful mood in the memoir." 2 2 2 +11916 5 "In the story ""Narciso Rodriguez"", the mood in the story is willing, greatful, and hopeful. ""The faith that this struggle would lead them and their children to better times drove them to endure these hard times"" that quote represents that the family was willing to go through not having a good job like in cuba and segragtion to make a better life for their kids. ""My parents always kept there door open for the people we considered family"" this quote shows the family was was greatful to have a home and still let the people they loved live there with them. ""My mother and Father came to this country with such courage, with out knowlage of the language and culture. That quote showed that the family was hopeful enough that even without knowing about the country they still believed it would bring a better life. In the story ""Narciso Rodriguez"" the family was willing to do anything for a better life." 3 3 3 +11917 5 "The mood created by the author is showing even though they came From Cuba they can still make a living and become bilingual and translate and help others Find @CAPS1. For example, ""Often someone staying with us temporarily until they were able to got back on their Feet."" meaning the would help some one until the got a @CAPS2 or @CAPS3 a apartment that was good for them and for what the make a mounth if they had Jobs. Therefore, ""my parents always kept their arms and their door open to many people we considered family"" @CAPS4 each other if the had problems. Also the mood was good because they came got an apartment and at the end every ones happy because it became their Home." 1 2 2 +11918 5 "I think that the author created a very warming, and the loving tone. Narciso created this mood by including all of the greatest aspects of his home in @LOCATION1. For example, in paragraph @NUM1 he explains the endless celebrations he had with family and friends that ""... formed the backdrop to life in our warm home.""" 1 2 2 +11919 5 What I think the mood of this story is really soft and explainable since it explains how these people immigrated from their country to where they live now just to basically get a better life. And they certainly did They are happy of ther home and the @CAPS1 is happy because of his amazing educational options. That is what I would say the mood of this story is. 1 1 1 +11920 5 "During Narciso's life, growing up in a small house doesn't matter when you're surrounded by people you love. The author created the mood of happiness, love, achievement, and being proud. Narciso was very proud of his cuban heratige, as well has his brave parents, that created a beautiful home and life for him. The mood was also happy because it's a very happy story. There is love and achievement in the mood as well because Narciso loved his friends, family, neighborhood, home and childhood. The achievement was of his parents comming over to @LOCATION1 and starting a better life. Anyone would be happy with a childhood like that because being surrounded by the ones you love and being proud of you and your family is what is important." 2 3 3 +11921 5 "The mood created in this memoir was very greatful. Narciso was very very greatful for the ""house that his parents turned into a home."" And he was very greatful to his overall parents, for giving up there own life, to try to give their son a better one, with many more oppertunities than they had. He is also greatful to his parents, not only for giving him things they never had, but things they did have, too. Things like teaching them how to cook, how to treat others, and the real meaning of family. They also showed him the value of being selfless for someone you love." 2 3 3 +11922 5 "No matter what nationality you are you can get along with anyone. He shows that his home, to him at least was a wonderful @CAPS1 with nice smells, food, and people. He is unexplainable happy and grateful for what his Parents did for him. To him it was @CAPS2/heaven on earth. It was in the warmth of the kitchen in the humble house where a cuban feast always filled the air with not Just scent and music but love and life. He will never forget that house or its gracious neigh bor hood." 2 1 2 +11923 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez a certain mood is created by the author. The mood is happiness and joyfulness because in this memoir the author continues to talk on about his family a culture which is a perfect reason for the mood to be happy. ""My parents always kept their arms and their door open to the many people we considered family."" this quot was found in @CAPS1 @NUM1, this quot also shows that his family was kind and generous. This mood involved the familys culture which Narciso loved so much. His beautiful culture was just another piece of the puzzel that fit together, and that last quot ""I will never forget how my parents turned this simple house in to a home"" found in @CAPS1 @NUM2 really puts every thing together touching the reader emotionally." 2 2 2 +11924 5 "The mood that was created by the author in the memoir would be I believe love. I said love because basically throughout the whole story all that was being talked about was ""eternal @CAPS1"", ""a dore"", bonds, and unity. The family are imigrants and they came looking for a better lifestyle in a foreign country Just for the benefit of the children. From my point of view only loving parent would give up The country they all love in order to do something like that because they had to leave behind families, friends, and careers. Now their facing cultural hardships over Just one desition." 1 2 2 +11925 5 "In this memoir by Narciso Rodriguez the mood is very warm and inviting. It is of home and family. Some examples of this are, he mentioen that the kitchen was the heart of the home and the Cuban music was playing all the time. The memoir also conveys a sense of family because the author often mentions large amounts of family and friends would often be visiting. He also mentions there was rarely a time when was not staying with them in their home until they got back on their feet. The mood of this memoir is warming and of family." 3 2 2 +11926 5 "The mood in the memoir is very adventorous. In the memoir it showed how Narciso's parent's and relatives moved. At first Narciso lived in a furnished one-room apartment, then they could afford to move into a modest three-room apartment that was soon to be Narciso's home. Narciso was born in 1961, in the Ironbound section of Newark, New Jersey. Narciso grew up with his family for a while. ""Family"" had nothing to do with being a blood relative. Narciso will always be greatful and loving to his parents for what they did for him." 1 1 1 +11927 5 In the author's memoir the author creats a mood and that mood in the story as happyness anjoy. It is happyness and @CAPS1 becuse he was happy for his home and how his parents were cooks. He also joyed the music and things he does with his family and relitize. I think this is the mood the author used in the memoir. 2 1 2 +11928 5 "Narciso Rodriguez, a memoir about growing up in a new environment with his family, Narciso puts a definite mood in the memoir. The mood, to put it in general terms, is happy. The author did not put any negative information in the memoir and only put a positive feeling. In paragraph two, the author explains how his parents brought their Cuban heritage into their home like food, music, family gatherings, and fun celebrations. All of that set a very happy backdrop for the family. In paragraph four, Narciso shows that there was always people over and having a fun time. Narciso's surrogate grandparents, babysitter, cousins, and aunts and uncles came and had a good time. Finally in paragraph six, the author sums it up and tells that he will always be grateful for his parents' love and sacrifice. His parents were thanked repeatedly by him for their strength and perseverance and taught him that friends and family are very important. Overall, this memoir had a very positive and happy mood." 3 3 3 +11929 5 "Home and family is the @CAPS1 one thing all of us love. The mood the author created was heartwarming and appreciation, because he explains how comftable his home is with everyone, together having a good time. Not only Just being together but being together: ""Growing up in this enviroment instilled in him a great sense that ""familly"" nothing to do with being a Blood relative.""Narciso Rodriguez show his appreciation for his parents he loved so much because they had to make an important change to give him a better life wiched he deseverd. They had made this change ""even though it meant leaving behind their families."" Such bravery they had.The author left us knowing his appreciation for his ""home"" with being grateful for his parents and his hispanic heritage." 2 2 2 +11930 5 "The author created a mood in the memoir. The author creates the mood of friendliness. I know this because in the text it says ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solodalriy and friendship."" This means that even though there was segregation around them, their neighborhood was still friendly. All and all, the author created a mood in the memoir." 2 1 2 +11931 5 "The mood created in this memoir is excilent. For example in paragraph @NUM1 it says ""I will always be grateful to my parents for their love and sacrifice."" This gives me the feeling of thankfulness and to really admire what my parents have done for me. Another example is in paragraph @NUM2 it says ""It was here I learned the real definition of family."" This quote makes me feel so happy that I have a family that supports me and is always there for me. This memoir really changed how I look at things and made me relize how thankful I am to have my family." 2 3 3 +11932 5 "The way the author describes his family and his home gives the memoir a very warm, happy, and pleasant mood. He had a very warm tone when he talks about how much love there was in his house. ""Here, the innocence of childhood, and the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" The mood of the memoir was happy up lifting when he talked about how his parents helped others and they always had people in their house. ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" The mood of the memoir was brought to life when the author described the rich culture in his home. ""traditional Cuban home, the very heart of which was the kitchen.... Unwittingly passed on to me they're rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adored to this day) filled the air, mixing with the aromas of the kitchen."" I think the addition in the parentheses make it light and airy. His tone is thrilled and thankful for his rich culture. The author's tone was very sweet, I think, when thanking his parents. ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me... and the demonstration of how important family and friends are.... and these teachings have been the basis of my life."" The mood of the memoir is warm, happy, and sweet, thanks to the author." 4 4 4 +11933 5 The mood changed throughout the memoir. First the mood started off depressing by saying in Cuba they had a one room furnished apartment. That when they came to @LOCATION1 and @PERSON1 could afford to move into a modest three-room apartment. Next mood was inspirring. It was inspirring because the parents were a poor family and they found a way to move out of cuba. Also because his parents were selflessly getting out of cuba so there children could have a better place to live. Lastly there was a mood of family. They were honest hardworking immagrants who extended a hand to help people in need. Also they were always had Alegria graced at the dinner table for meals and had the surrogated grandparents Sergio and @CAPS1 there too. The mood changed throughout the whole memior from depressing to inspirring and to family which it always was about. 3 2 3 +11934 5 "Narciso was very proud of his cuban culture. He was very happy with who he had become, and how he had been raised. Narciso set a very proud and greatful tone to this memoir. He explains that family isnt about blood relations; its about people who love eachother, and are going to be there for eachother. He told us that his parents passed on the cuban culture to him, in cooking. He also explained how his parents built the home on their own, that he got to grow up in. Narciso says how proud he is to be a cuban, and how his family works @CAPS1 hard to earn a living. Narciso told us how proud and happy he was, to be in a nice home, with friends, family, and a future. He told us he learned to love." 3 3 3 +11935 5 H loved His parents @CAPS1 loved his home @CAPS2 of this birthday are thair/always @CAPS3 music/always the smell of @CAPS3 food. 0 1 1 +11936 5 "In the memoir Narciso Rodriguez from Home: The Blueprints of our lives, creates a mood of hardship, and gratefulness. [pg. @NUM1] ""after living for a year in a furnished one-room apartment, @NUM2-year-old Rawedia and twenty-sevem-year-old Narciso Rodriguez, Sr., could afford to move into a modest, three-room apartment I would soon call home."" @CAPS1 hardship how they moved from Cuba to the @LOCATION2 and had to leave everything behind to start a new life, in a small, little, apartment. The memoir @CAPS1 gratefulness because Narciso is very grateful for his families sacrsfice for his future and for their caring and love. [pg @NUM3] ""I will always be grateful to my parents for their love and sacrifice."" I think the memoir is a very heartwarming story of a family that loves one another and his thankful that they have a place they can call home." 2 2 2 +11937 5 "The mood created by the author is one of blithe and thankfullness. The reasons that it is thankful if because of the frequent refrences made by the author to the courage and bravery shown by his parents. This is shown in @CAPS1 @NUM1 when the author said ""they came selflessly as many immigrants do, to give their children a better life even though it meant leaving behind their families, friends, and carrears in the country they loved"" This quote from @CAPS1 @NUM1 shows how grateful Narciso is of his parents leaving everything they had to make a better life for him. The last sentence of the memoir is ""I will never forget how my parents turned the simple house into a home."" This is showing that the mood is Grateful because Narciso means that he's is thankful because they were able to turn their little house into a place of great friendships and great times. The last reason this article has a mood relative to thankfullness is shown in @CAPS1 @NUM3 when Narciso says ""But, in reality there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and a demonstration of how important family and friends are."" This sentence shows that no matter what Narciso does he can never repay his parents for their selflessness and care. The reason this article is also happy is shown in @CAPS1 @NUM4 when he talks of ""the endless celebrations"" or ""a love of cooking that is still with me today... ""This is showing the ""mood is happy and joyous because it is clear that as a boy the kitchen and cooking were a source of happiness and @CAPS2 in his home. These are reasons as to why the author has created memoir with a mood of happiness and gratefulness" 4 4 4 +11938 5 "In the memoir ""Home: The Blueprints Of Our Lives"" the author, Narciso Rodriguez, creates a very loving mood.When Narciso Rodriguez is talking about his home he writes, ""Within it's walls, my young parents created our traditional Cuban home, the very heart of which was my kitchen."" This shows his love for his kitchen. @PERSON2 shows his love for cooking when he writes, ""My parents both shared cooking duties and un wittingly passed on to me their rich culinory skills and a love for cooking that is still with me today."" @PERSON2 provides us the love that he has for his parents when he states, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 @PERSON2 tells us that his parents were very loving when he writes, ""My parents always kept their arms and their door open to the many people we consider family, knowing that they would do the same for us.""" 3 3 3 +11939 5 "The mood created by the author in this memoir was happy, loving, and warm. The memoir is basically about family and how important family is. When you talk about your family, and its culture, you usually dont feel sad about it. Throughout the memoir. the author says things like, ""a love of cooking that is still with me today"" and ""formed a backdrop to life in our warm home"". The author also talks about the selflessness of his parents, which he is very proud and gratefull for. He states in paragraph @NUM1, that his parents, ""kept their arms and their doors open to the many people we considered family."" The author also states in paragraph @NUM2 that, ""I've often told them of my admiration for their strength and perseverance."" Their are many mood set by the author of this memoir. But there is no doubt that he aimed for this memoir to be happy and uplifting and truely touching." 3 3 3 +11940 5 "The mood created by the author in the memoir is happy. The author uses words such as warm to describe things. ""Warm homes"" gives you a happy feeling @CAPS1 two gives you a happy mood overal. It makes you think about how happy the author is knowing they still have their family memories/skills.In @CAPS1 @NUM1, the author using many words which set the mood of happiness, like ""warmth of kitchen, humble home, not just scent and music but life and love, gracious neighborhood, and simple house into a home. These choice words used by the author give you a good feeling and put you in a happy mood." 2 2 2 +11941 5 "The mood created by the author is warmth. First off, in paragraph two, it says how his family would always cook food and turn on the cuban music. It also says how the smell of the food would fill the house. In paragraph four, it says how they would always have family members over for dinner. Some of the family members they would have were Grandparents, Aunts, @CAPS1, and cousins. The last reason the mood is warmth is because he said in paragraph seven, ""I will never forget how my parents turned this simple house into a home."" That means that before they lived there, it was just three rooms; however, once they moved in, they turned it into a place where friends and family could gather and have fun." 3 3 3 +11942 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the author creates a grateful and loving mood.Firstly, the author creates a grateful mood. He's grateful for his parents and how they sacrifice moving to @LOCATION2. They had to face racism. ""Quite the contrary, our neighborhood was made up of mostly Spanish, Cuban, and Italian immigrants at a time when overt racism was the norm and racism prevailed in the United States."" They wanted their son to have a good life. The author creates a grateful mood. Lastly, the author creates a loving mood. He feels a loving mood because his family love and take care of him. He considered his neighbors his family. ""My parents always kept their arms and their door opened to the many people we considered family, knowing that they would do the same for us."" They loved many people who they knew they could trust. To conclude, the author creates a loving mood." 3 3 3 +11943 5 "In Narciso Rodriguez, his own memoir, his own memoir, we are told about his child hood. Narciso affects the mood by describing the setting. He writes ""could afford to into a modest three room apartment..."" in pharagraph @NUM1. This gives you a humble feeling from the very beggining of the reading. In pharagraph @NUM2, he writes ""passionate Cuban music filled the air..."". This made me think of mexican culture. Narciso writes things like these throught his memoir. These lines give the mood of modesty and rich Cuban culture Narciso also writes about his birthday, and faimly. The parts that he writes about faimly give you a feeling of unity. These are the lines/phrases Narciso uses to give his memoir mood." 3 2 3 +11944 5 "In the memoir, the author creates a mood. The feeling, or mood, that I think that the author is trying to create is a very grateful mood. I say this because that author is talking about how he is grateful, or thankful, to his parents for teaching him things and for bringing him up in a home and neighborhood that was very united and close." 2 1 2 +11945 5 "The author created a sense of love and care in Narciso Rodriguez. The author talked about the sense of family and how people don't have to all be the same to become one community. In @CAPS2 @NUM1 it explains ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship. It was a close-knit community of honest, hard working immagrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" @CAPS1 shared the feeling of acceptance because although they were all from different cultures and ethnicities, they all learned how to become one ""family"" in a rascist enviroment. @CAPS1 shared how his parents made the difficult decision to move to the new place leaving loved ones behind for their children's better future (@CAPS2 @NUM2). @CAPS1 showed a lot of admiration for his parents based on what they do for him and how they always have other family members or neighbors around the kitchen table for meals. In @CAPS2 @NUM3 @CAPS1 says ""There is no way to express my gratitude for the spirit of generosity and impressed upon me and the demonstration of how important family and friends are."" The author shares his feelings of love toward his parents in this memoir." 3 4 4 +11946 5 "The mood that was created by the author is loving. It teaches the reader that the heart felted sacrifice and hardship the parents endured is priceless and the love that an immigrant family has for one another is endless. This mood explains the true definition of family and the unconditional, unfadeable love that a family has for one another and for its neighbor. This is true because in paragraph @NUM1 it tells the reader how grateful the author is for having such persistent, loving parents whose faith and determination for a better future taught the author how to love and appreciate the courage and strength one must have to overcome the struggles and barriers on this pursuit of happiness everyone is destined to follow. The mood of this memoir explains how precious is a home and the memories contained in it. This is the mood the author created in his memoir." 2 3 3 +11947 5 "The mood that's created by the author in the memoir is happiness but at the same time sadiness or to give up. Happiness is one mood because the author describes how his family has lived in @LOCATION2 (New Jersey) and how his family was not the only one to immagrate from their country. Their neighborhood is made up of Spanish, Cuban and Italian immagrants. The author has also made a few friends his first one being Alegria or the landlord's daughter. But the author did show some sadiness when he and his family had left Cuba. They had left friends, family, jobs and their country that they had loved. The author still listens to Cuban music when he does cook." 2 2 2 +11948 5 "The mood that the author sets is thankfullness. He is thankful for all the things, scarifices his parents had to for him. For example ""They came selflessly, as many immigrants do, to give thier children a better life, even thought it meant leaving behind their families, friends, and careers in the country they loved."" This is why the author wrote this memoir to thank his parents for what they did for him." 2 1 2 +11949 5 "In the memoir the author, Narciso Rodriguez, creates a mood of faith throughout the reading. As the author describes the parents moving into the United States, it tells how they had to leave behind their families, friends, and careers in the country they loved. The motivation to do so reveals the parents faith in creating a home just as good as before. The author is very grateful as he admires his parents faith that has traveled so far over time. Rodrguez believes his parents have more courage then anyone and have expressed so much generosity upon him and others to always have their arms open to help others. It was the parents faith at the struggles would lead them and their children to better times drove them to endure these hard times." 2 3 3 +11950 5 "The mood That is created by the @CAPS1 In The memior's...The only @CAPS2 I can give For a mood is Friendship. Throughout the whole memoir The @CAPS1 @CAPS4 about everyone is @CAPS5 to each @CAPS6 @CAPS7 The @CAPS8 how The whole memior is about Friendship." 1 1 1 +11951 5 "Reading this article expresses many different mood changing from the auther. While reading you can notice he's proud of his Cuban culter explaining how united his family has always been for as long as he can remember. Most important his so greatful to his parents for everything they've been through to see him sucuss in life and that's what I admire the most from the author. This story is giving thanks to his parents and his culture. He mood is mostly proud and thankful throughout the whole story. Like at the end when he says ""I learned the definition of ""family"", meaning his family was there for each other and and love was all over. This pasage made me realize everything my mother went through to see my brother and I success, so I can say I can relate to the auther." 3 2 3 +11952 5 "The mood created in the memoir is greatfulness. Narciso is telling the story in honor of his parents selflessness. They came selflessly, as many immigrants do. They worked as hard as they could and made him a home and a childhood he could be happy with." 1 1 1 +11953 5 the mood of the ather is happy becus he loves his hom and it is where he rely wonts to be. He also luves his culture and where he came from he lovses his parents and the skills' tey gave him during his childhood. that Is why I think his mood is very happy. 1 1 1 +11954 5 "The mood that the author of this memoir is one of love and togetherness. The way that he describes his parents hard work and love is incredible. First, it says in @CAPS2 @NUM1 ""In Cuba, Narciso, Sr., had worked in a laboratory and Rawedia Maria had studied chemical engineering. In the United States they had to start their lives over entirely, taking whatever work they could find."" This demonstrates love beond comperashin seening as they had to start over from scratch steping down far benith there potential to care for their children. They never gave up but instead kept going to try and give there children a better life than they would have had. Also this memoir expresses togetherness not only in the famley but in the community as a whole. As it says in @CAPS2 @NUM2 "" Our neighborhood was made up of mostly Spanish, Cuban, and italian immigrants"" @CAPS1 even though they were of all kinds of races ""It was a close knit community of honest hard working immigrants who extended a hand to people who while not necessary their own kind, were clearly in need."" (@CAPS2 @NUM2) This was a community who cared for each other and helped out anybody in need of help despite raise. His parrents also kept their doors open and alowed people to just come in and stay until they were able to get back up onto their feet. Knowing that they would do the same for them. This takes a community that is very close to be able to do something like this. These are but a few of the different examples throghout this memoir that illistrate the mood that the author creates of love and togetherness." 4 4 4 +11955 5 I will always be gratefal to my parents for their love and sacrifice. Ive often told them that what They did wa sa much more conrageous thing than I could have ever don 1 0 1 +11956 5 "This memoir had one theme that meant many different things. One theme was helpful. The family moved to the @LOCATION1 from Cuba in 1956 and had many hard ships and struggles. Because they know what it feels like they decisded to help the other struggling people, and let them stay with them; that's exactly what they did. Another theme that I thought fit was inspiration. I think this family not only inspiried their children but other neighbors and other reletives. Last, I think another theme of this excerpt was heart felt. The @CAPS1 @CAPS2 family risked everything to help other families. That's was a very nice action they took on them. One person can slowly make a difference, person by person; that is exactly what this family did." 1 3 2 +11957 5 "The mood created by the author, Narciso Rodriguez, is clear in the memoir. You can sense throughout the whole story that he is completely grateful to his parents for the love they gave him, and their home life. In paragraph @NUM1, it says ""Within its walls, my young parents created our traditional Cuban home, the very heart of which was the kitchen"". Rodriguez is ""eternally grateful"" for his parents who ""unwittingly passed on to meet their rich culinary skills and a love of cooking that is still with me today"". They always had Passionate Cuban music that filled the air ""Mixing with kitchen aromas."" At the end of paragraph @NUM1, he says ""Here, the innocence of childhood, congregation of family + friends, and endless celebrations form the backdrop to life in our warm home. I will never forget how my parents turned this house into a home.""" 4 3 4 +11958 5 The author was speaking very proudly and happy about her parents. The author explained how her parents were very courageous and brave for leaving their home land. That's because neither of them spoke english. Also because they had to leave their lives back at home and start all over again. 2 1 2 +11959 5 "The mood in the memoir is happy. It is happy because it is a talking about Narciso's memories. For example, in paragraph @NUM1, it says ""I will always be grateful to my parents for their love and sacrifice."" The mood is also appreciative. For example, in paragraph @NUM1, it says ""I've often told them that what they did was a much more courageous thing than I could have ever done. I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly."" The mood is also sad. For example, in paragraph @NUM1, it says ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are. So there was several moods in this memoir." 2 2 2 +11960 5 "In this excerpt, Narciso Rodriguez describes his childhood home and extended ""family."" The mood of this duration is very warm and happy. Narciso speaks of his childhood home with only love and affection. @CAPS1's eternally grateful to his parents for turning ""... this simple house into a home."" @CAPS1 speakes admirably of his parents and the sacrifices and hard work they went through to even get to @LOCATION1, and @CAPS1 is so thankful they did. @CAPS1 also speakes lovingly of his ""extended family"" and describes his neighborhood. ""In our neighborhood..., all these cultures came together in great solidarity and friendship."" This loving, supporting ""family"" made Narciso who is is today and made him appreciate the fact that ""' family' had nothing to do with being a blood relative."" But instead is composed of those whom you love and who love you." 2 3 3 +11961 5 Happy. You should always be proud where you came from. Not only that back your background like your culture and your parents. Stuff like that. Never be ashamed about stuff like that even if your diffrent it shouldn't matter. The more diffrent you're the more unique you're. Just look at it that way. Plus you should never change just because of what you're and what you look like. 1 0 1 +11962 5 "In the memoir, ""Narciso Rodriguez"" by Narciso Rodriguez, Rodriguez created a mood of gratefullness toward his mother and father. Numerous times, he wanted to thank his mother and father. For example, ""I've often told them of my admiration for their strength and perseverance."" @PERSON1 is so grateful for his parents because they left Cuba to start a new life in @LOCATION1. They sacrificed leaving their friends and family behind. In the text, it says, ""They came selflessly, as many immigrants do, to give their children a better life..."" His parents sacrificed so much just to give rodriguez a better life and thats why he creates the mood of gratefullness in his memoir." 3 2 3 +11963 5 "The mood the author created in the memoir is united, caring, loving and more. The authour is combining all of those moods together and memories to write this memoir, which is what a memoir is about; yourself, memories, family and etc. A reason why the author created does moods because a home is were a family live's together and were they hold memories together which shows loving. For example in the memoir, ""Here the innocence of childhood, the congregation of a family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" Which is obviously the mood of loving, because there all a loving family together. A second reason why the author created does mood because in the place were the author lived there were many different people from different places. Even though they all werent the same the acted as a family and were united. For example, ""in our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" which means that even though there different there going to be there for one another which is united. A third reason why the author created does moods because the author's parent's werent just caring for themselves but for others also just like their children. For example, ""They come selflessly, as many immagrants do, to give their children a better life."" Which means her parent werent just caring abalt them but the future for there son. The whole story is based on home and family but the thing is that a home and family will always share the love, caring and unity of one another." 3 4 4 +11964 5 "The mood of ""Narciso Rodriguez"" is @CAPS1 much the same throughout the whole excerpt. In the story, the mood the whole time is calm and relaxed. Narciso talks about his family and how much he loves them and what they have done for him. It says in the story ""Growing up in this enviroment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" @CAPS1 much throughout the story, this is the mood. Another mood created by the author is gratefulness and thankfulness. Narciso is thankful to his parents selflessness. In the story, Narciso says ""I will always be grateful to my parents for their love and sacrifice."" The way he talks about his parents ends up making the reader thankful too. Narciso Rodriguez creates happy moods for us by the way he writes with love about his family and how he cares so much about what they did for him." 3 3 3 +11965 5 "The mood created by the memoir is thankful and proud. In paragraph @NUM1 it shows that he is thankful. ""... still with me today (and for which I am eternally grateful.) It also shows that Narciso Rodriguez is proud to be Cuban.In paragraph @NUM2, it says ""I will always be grateful to my parents for their love and sacrifice."" This also shows that Narciso is thankful for everything his parents did for him. Narciso also said that he often told them of his admiration for their strength and perseverance,In the last paragraph, it says that he will never forget how his parents turned this simple house into a home. This shows that he is thankful for his parents." 2 3 3 +11966 5 "The mood created by the author in the memoir is in the following. In the first paragraph, it descripes a couple coming to @LOCATION2 from Cuba who settles down and has a baby. Within the story, it describes their life here in @LOCATION2, what their house is like and the importance of cooking and music from Cuba. In Newark, New Jersey this family invites friends and family for dinner and such; the author describes how it brought everyone together and the mood of unity and happiness. The mood of this memoir is happiness and unity which was created by the author." 2 2 1 +11967 5 The mood of this exerpt is happy. it's @CAPS1 many things he could be happy for. the fact that his parents as childrens didnt live to great and allowing their children to is great. and also the home bringing the family closer together. 1 2 2 +11968 5 The mood created by the author in this memoir is careing and happiness. There is a lot of careing and happiness in this story. There is a lot of careing because he cares about his family and all that thay do for him. He also cares that his parent made the house traditional Just like back in Cuba. He also cares that his parents do so much for other people. There is a lot of happieness because he is happy to live in @LOCATION1 and to have such wonderful parents. He is happy that his parents teach him all the traditional thing that they used to do in Cuba. Last but not least he is happy because he lives with everyone he loves. 1 2 2 +11969 5 "The autor created a good mood in the memoir because, when you think about how sticked those people were, you have a warm feeling inside.The parents left their country and came in another without any knowledge of her language and her culture, they had to start over their lives with the job they could find because they wanted a good life for their child. They handed a hand to people who were in need, considered all their neighbors as family and they taught their children the real definition of ""family""" 2 1 2 +11970 5 "The mood created in ""Narciso Rodriguez"" is grateful and happy. First, @CAPS1 is very grateful because @CAPS1 says ""...To give their children a better life"" His parents gave up what they were doing in their homeland Cuba to come live in @LOCATION1 to make a better life for their child to start off and live in. @CAPS1 recognizes this but, @CAPS1 also knows @CAPS1 can never do enough to thank them. Next, it says ""family has nothing to do with love relatives."" @CAPS1 is very grateful and thankful that @CAPS1 grew up in the neighborhood @CAPS1 did where everyone was treated like brothers and sisters and they all felt saf in their community that they created. Also the story says ""I've often told them that what they did was a much more courageous thing that I could have ever done."" @CAPS1 knows that it took a lot of heart to do that much for someone else when all it did for his parents was make their lif tougher. They had to start over and that is what made him most grateful for his parents. That is what I truly think the mood of the story is." 4 3 4 +11971 5 The mood in this story by Narciso Rodriguez was that in his house he shared many memories in his house. He also shared his feelings. His family would let People in their house that were friends or family. 1 1 1 +11972 5 "The mood created in this memoir ""Narciso Rodriguez"" from Home: The Blueprints of our lives is a magnificent mood. A family move to the United States from Cuba so there @CAPS1 could have a better education. They have a nice home nice friends and a good and caring family. The neighbor, landlord, or friend Alegria makes them dinner some times. Also, they have friends that go over for dinner and often bring some food over with them. They have a family/friends that were Spanish, Cuban, and Italian people. They always had there door open for friend and family and most of there friend would go over every night. They would let people stay at there house if they needed help or if they had to rest. The mood was magnificent in this story." 3 3 3 +11973 5 "In the memoir, Narciso Rodriguez, the author creates a mood, that is overall cheerful, warm, and happy. He does this through his word choice. ""passed on to me their rich culinary skills, and a love of cookig that is still with me today."" (par @NUM1). He decribes his parents cooking skills as ""rich"" and he describes his feelings toward cooking as positive. Another example of the mood he creates is how he describes his relationship with other people. ""all of these culture came together in great solidarity and friendship."" (par @NUM2). From this quote, you can tell that he has a very close relationship with all the people. Another example is when he says, ""always filled the air with not just scent and music, but life and love."" (par. @NUM3). You can feel the warmth of the room with the adjectives he uses. This is how the author creates the mood in the story." 2 4 2 +11974 5 "In this memoir, the author touches upon serious facts while giving the memoir a fun and happy mood. For example, in paragraph @NUM1 they talked about how others who aren't even related to them come to do different activities with them, while still touching upon a serious topic about how his real grandparents weren't allowed to leave Cuba until 1970. The author also shows how even though they struggled and went through hardships in their home in the @LOCATION2, they were still able to keep their Cuban culture going along with the music they played and food. He portrays a mood that shows you can be happy no matter what the hardships you endure." 2 2 2 +11975 5 The mood of the memoir from home: the blueprint of our lives is a grateful @ORGANIZATION1.Narciso tells the story about the way he grew up in @LOCATION1 raised by his Cuban parents. Narciso is very grateful that his parents had taught him to cook and introduced him to Cuban music which he loves. Narciso is @CAPS1 grateful for having parents who have given him much love and sacrifice. Narciso also admires his parents for their persaverence and strength. He has thanked them so many times but he can't show them how truly grateful he is of them. Throughout the memoir Narciso talks about his gratefulness which he sets the mood of grateful. 3 4 4 +11976 5 "The mood created by the author in the memoir is depressing. I think that because it talks about his parents getting immigrated and then the end is sort of happy, because his parents turned it into a home." 1 1 1 +11977 5 The mood that the author has in the memoir is greatful because she keeps talking about her parents and how they gave up their lives in Cuba for her 1 1 1 +11978 5 "In the memoir, the author creates a specific mood to help the reader better relate to his life's story. The mood of this memoir is cozy in the beginning as he describes what his house was like and his own definition of family. As the memoir continues, the mood shifts to how grateful the author feels toward his parents. He describes how their selfless acts of leaving Cuba and creating a new life in @LOCATION1, helped create a strong foundation for him to grow up on. He says how his parents left behind their friends, family and jobs in the hope that their children would have a better life. His parents came to @LOCATION1, with no knowledge of the language and having to endure many hardships in finding and keeping jobs. The author says how he can't put his grateful feelings into words but is completely in their debt for taking such a big risk in coming to @LOCATION1. In the memoir, the author creates a specific mood to entice and interest the reader as they read more about his life." 3 2 3 +11979 5 "The author creates many woods in this memoir. Firstly, a mood that the author sets is warmth. Figuretive warmth. For example in paragraph @NUM1, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the back drop to life in our warm home."" which is a perfect description of some thing that makes you feel warm inside.Secondly, another mood the author sets is compassion because he talkes fondly and with compassion for his parents. As stated in paragraph @NUM2, ""My parents both had to accept that they might not be able to find the knd of jobs they desurved... The faith that this struggle would lead them and their children to better times drove them to endure these hard times."" Which @CAPS1 very compationate and full of emotion.Lastly, a mood I think the author sets is acceptance, because his parent were so willing to take in people that werent always blood related. for example in paragraph @NUM3, ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" Which States that they were very welcoming and accepting people.These are the moods the author created in this memoir." 4 4 4 +11980 5 "This @CAPS1 shows a lot of different types of moods that oneper son can have towards friends, family, andyour heritage. Narciso Rodriguez explainsthat family is reallyall you need. Hisparents movedfrom Cuba tothe United States sotheir family, especially their kids, could have a good and successful life. Narciso is very grateful that his parents would put their past behind them and their family just sotheir kids could be better people. Whenhis parents firstmoved here they werestruggling both personally and financially. Whenthey camethey went to aneighborhood where there was mostly Spanish, Cuban, and Italian immigrants. In this memoir, it talks a great deal about family, ""Growing upin this environment instilled in me a great sense that 'family' had nothing to do with being a blood relative."" With different typesof heritages sitting around their table. they noticed that it was not just about who gave birth to you, and who istheir siblings and soon, but who helped you out through your life. Another type of mood that this memoir portrays isthat you have to be happy with who you areas aperson. ""My parents always kept their arms and their door opentothe many people we considered family. Knowing that theywould do the same for us."" This memoir's moodis mostly about love and who you will be proud about. They're setting atone that says you shouldn't be discouraged about who you are and where you come from, but to beproud about whoyouare asa person." 4 4 4 +11981 5 "The mood the author created in the memoir was... him or herself expressing what it was like but then when something like that happened to them. Also he was explaining how he was really happy that their parent gave up everything in Cuba just to come be with their children, they Also didnt even know how to speak english when they first moved from cuba. So now pretty much their whole family lives close to eachother so they can all see eachother. Even if the parents can't find the jobs there looking for they were going to do whatever to make their family happy. Now that their family together They can spend the rest of there life happy together" 2 2 2 +11982 5 "The mood created by the author. Is that @CAPS1 was talking about is that theres some families that come from every were and so Narciso Rodriguez is prowed of coming from Cuba.""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us. ""My mother and father had come to this country with such courage, without any knowlege of the language or the culture. I will always be grateful to my parents for their love and sacrifice. So thats what the mood of Narciso's story was like." 2 2 2 +11983 5 "He gives a mood of friendliness and happy memories. He tries to make the reader feel the happy feelings he felt, so that people would understand how he feels and tried to relate to it. Childhood memories are supposed to give those feelings to the reader." 1 1 1 +11984 5 "The mood Narciso Rodriguez is trying to portray in this memoir is very relaxing and greatful. He wants to be able to show his readers that he is greatful for how his parents raised him and what type of enviornment it was. By reading this memoir one almost feels like they are at his house, surrounded by his friends and family. Narciso Rodriguez is also trying to show happyness, how he was happy with his life and always having friends around him." 2 1 2 +11985 5 "The mood created by the author of the @CAPS1 Home: Blueprints of Our Lives is love. One example of this is in paragraph @NUM1, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" This quote shows that even though they technically weren't family, they still loved eachother enough to be family. Another example is in paragraph @NUM2 and it says, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" This quote shows that they love eachother more than anything. they are leaving behind and would do anything to give them better lives. Lastly, in paragraph @NUM3 it says, ""I will always be grateful to my parents for their love and sacrifice."" This quote shows that for his parents loving him, he gives them love. That is the mood in the @CAPS1 Home: Blueprints of Our Lives." 3 4 4 +11986 5 "The author of this memoir gave the memoir a peaceful mood. This memoir focused mainly on friends and family getting together to celebrate. It made it peaceful because the author gives the reader the feeling that their was nothing to worry about. The author never mentioned any negative activity in the memoir. He just explained how he was very thankful for how his parents raised him and the lessons that his parents taught him. He mentioned how thankful he was for his parents since they were willing to sacrafice things in their lives for the benefit of their children. The author made the reader feel like Narciso was protected in the house he lived in because all his neighbors were so united with each other that they were all friendly to each other so there was nothing to worry about. They all cared for each other so they would protect each other if anythin bad were to happen which gives the memoir a peaceful and worryless mood. The author talks about how his house was simple, warm, humble, and full of his memories which is another reason I think the memoir had a peaceful mood. When you read the memoir, you can see how the author only talked about good things and a worryless life which really gives the memoir a peaceful mood. These are some reasons that show how this memoir has a peaceful mood given by the author who wrote it." 4 3 4 +11987 5 "The mood created by the memoir is very explicit. He shows that he loves where he is and he doesn't want to trade it for anything. He loves his neighborhood because for him it's like a ""melting pot"". There are @CAPS1, cubans and Spanish people living there. In paragraph @NUM1, the author explains how his parents house and doors are open to anyone who needs help getting back on their feet. The author also gives a sad mood at the memoir. In paragraph @NUM2, his parents lived in a one-room apartment hoping that one day, they can afford to live in a three-room apartment. That is the mood the author gives off in the memoir." 1 2 2 +11988 5 "In the memoir the author has various moods. In paragraph @NUM1 it @CAPS1, ""In 1961, I was born into this simple house, situated in a two-family... my young parents created our traditional cuban home."" The mood here is nuetral but kind of happy because the author is talking about her house. In paragraph @NUM2 it @CAPS1, ""They Struggled both personally and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardships."" This mood is @CAPS2 because the author is talking about the parents hardships. Also, in paragraph @NUM3, it @CAPS1, ""I will always be grateful to my parents for their love and sacrifice."" This also shows that the mood is happy because the author is grateful. These are the various moods that the author had in the memoir." 3 2 3 +11989 5 "The author creates a proud mood in the memoir. The author gives information about his background and how his parents were proud of it. Paragraph two states ""I was born into this simple house...my young parents created our traditional Cuban home...the innocence of childhood, congregation of family and friends and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" Narciso's parents tired to influence as much as their Cuban heritage as they could. Narciso parents were always kind and loving to others. Paragraph four states ""My parents always kept their arms open and their door open to the many people we considered family, knowing that they would do the same for us."" Though his parents didn't seem to have much money, they still housed others until they got back on their feet. Narciso parents worked hard knowing that they wouldn't get what they deserved. Paragraph five states ""The barriers to work were strong and high, and my parents both had to accept that they might not be able to find the kind of jobs they deserved."" His parents worked hard for what they worked for and no one can take that away. In conclusion, the author makes the reader feel praud for what Narciso's parents have done." 3 3 3 +11990 5 "In the memoir of Narciso Rodriguez, the fashion designer from Newark, New Jersey. Narciso talks about his Cuban family living in an apparpment with many other races. This presents a mood of happiness. The first way the mood presents happiness, is when @CAPS1 talks about his kitchen ""Passionate Cuban music, filled the air, mixing with the aromas of the kitchen."" (@NUM1) this shows that it was very happy and exciting in their kitchen. Another way is when @PERSON1 talks about his parents @CAPS2 ""I will always be grateful to my parents for their love and sacrafice"" (@NUM2) This presents a happy mood because he is grateful for what his parents have done. Finally, the last way is when @PERSON1 concludes the memoir, ""warmth of the kitchen in this humble house where a cuban feast alway filled the air, with not just the sent but life and love."" (@NUM3) This shows the happy times they had together. As you can see. The mood that is presented, is happiness" 4 3 4 +11991 5 "The @CAPS1 in this memoir is joy and happiness. There is also caring and selflessness. This memoir describes how @ORGANIZATION1 grew up and his meaning of family. His family was very genorous to the people in their @CAPS2. On paragraph @NUM1 it says ""countless extended family members came and went-and there was often someone Staying with us temporarily until they were able to get back on their feet"". His family was (seemed) very giving to their community. Because of Narciso's culture and family values, they have impacted his life today.Narciso parents were selfless. They would give up their living space to a friend who was having a hard time. They always had more then @NUM2 people at the dinner table and always more then @NUM2 people staying at their house. All these events have left Narciso Rodriguez with a sense of pride in his family and community." 3 3 3 +11992 5 I think the author's mood was kind of like @CAPS1. I said that because as he was going along in the memoir at the end this statement is that his mom and dad turn a simple house into a home. That statement tells me that the author feels @CAPS1 well he is inside his home or inside a home with his family members. I Also say that the author feels grateful because the great culture and heritage he has came from. 2 2 2 +11993 5 "I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly. They showed me with their lives, and these teachings have been the basis of my life." 1 1 1 +11994 5 "The mood is happy, proud, and grateful. Happy because he loved his family, his culture, and his home. ""In our neighborhood, dispite customs elsewhere, all of these cultures came together in great solidarity and friendship. Narciso was proud and grateful to his parents because they gave up everything to come to the United States to give their family a better life. Without knowing alot about this new country, they struggled to overcome problems. Narciso is grateful to his parents for living their life to start over. ""I will always be grateful to my parents for their love and sacrifice.""" 2 2 2 +11995 5 "In this memoir the authors mood is satisfied, and greatfull. Hes greatfull because his parents came down from cuba with their new born to start a new life and the baby can learn a lot, even though they had to leave behind their friends and family." 1 1 1 +11996 5 "In this excerpt from the book ""Home: the blue prints of our lives"" Narciso Rodriguez describes his first home in @LOCATION1. The feeling of this story is first loving with how @CAPS1 explains his parents sacrifice ""they-came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" This story also gave a feeling of closeness and how ""family had nothing to do with being a blood relative' @CAPS1 and his family opened up there house to many people. This story also gave a warm feeling by the story of his family celebrating together in paragraph seven. Overall the story had a happy mood to it showing love, kindness, and what a family should be like" 2 2 2 +11997 5 "In the memoir, Home: Blueprints of our Lives, by Narciso Rodriguez, @CAPS3 sets a mood of warm, loving, and fun. @CAPS2-out of the whole memoir, Narciso talks about how his family moved into a home in Newark, New Jersey, and... ""within it's walls, my young parents created our traditional cuban home, the very heart of which was the kitchen,"" @CAPS1 you picture that in your mind you create a very warm, tasty, good-smelling room, which helps create a mood for the whole memoir. Another way Narciso creates mood is when @CAPS3 talks about the cuban music flowing @CAPS2 the house, ""Passionate Cuban music...filled the air, mixing with the aromas of the kitchen."" With this @CAPS3 shows that it was fun, warm, inviting, and exciting. @CAPS3 says, ""Here, the innocence of childhood, the congregation of family, and friends, and endless celebrations that encommpassed, both, formed a backdrop, to life in our warm home."" @CAPS3 also creates a mood of fun, warm, entertaining, and loving feeling, by describing parties, celebrations, with friends and family, In This memoir, the author sets a mood of warm, loving, fun, and entertaining." 4 3 4 +11998 5 The mood that the author created was happy. All the people in the story were happy and some what sad. 0 1 1 +11999 5 "The mood created by the authar was warmthness. He was so @CAPS1 toward his family moving @CAPS2, he also cared for his parents alot and what they had done for their family. I know this because ""I will never forget how my parents turn to the simple house into a home""." 3 2 3 +12000 5 "In this memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives mood created is described. The starting evidence found in the memior is. ""my parents, originally from Cuba, arrived in the United States in 1956."" The mood being created is detirmenation. The parents were determined to make it to the United States because that was hard to do. But the parents did make it to the United States. The other piece of evidence found is ""in 1961, I was born into the simple house, situated in a two-family, blonde-brick building in the @CAPS1 bound section of Newark, New Jersey."" The mood being created is happiness and sadness. There is happiness because he was just born. The sadness is that they couldn't go to the hospital and they live in a two-family house. This is the moods created in the memior." 2 2 2 +12001 5 "The mood created by the author in the memoir was like hapeness and he had a lot of emotion. Because he really loves his mother, and father and his baby sister. There is lots of emotion because Narciso talks about how he lives were he lives and how long he lived in a one-room apartment. The hapeness part is When he says I will never forget how my parents turned this simple house into a home that was realy a happy and sad memory." 1 2 2 +12002 5 In the passage It shows a child growing up in a lace that he/she thinks Is heaven on earth. The author is trying to show you when you read this and feel a sense of him/she being love did and loving where he/she is. The mood it is creating is happiness also. 1 1 1 +12003 5 "The mood in this memoir was soft, with an exception. I say that the mood is soft because it has a nice thankful mood that's really telling everyone how grateful he is of his parents and their care. It's also saying that there was racism and segragation, so in that paragraph (which is the exception) the mood is more of a rougher mood, I say rougher as in ""a rough life,"" having to deal with racism and segragation. Back to the soft mood, @PERSON1 also mentions his friend and her putting meals on the table and having his family there regularly, this reminded me of when someone is going through a tough time and the camunity helps out by sometines cooking neals. This was nice of Alegria (@ORGANIZATION1's friend). And also, how they would house family until they were back on their feet and having the feeling that their familly would do the same. for them. And lastly, the last sentence of the last paragraph gave the sense of them took a house and turned it into a home would be comforting. These all gives off the soft sense, meaning nice and thankful" 3 2 3 +12004 5 "The mood in this memoir is happy and joyful. This child that is telling the story is telling about the happy things in their life. They tell about how they were born into a simple house. The heart of their home is the kitchen because they all love to cook. The family invites many people over to their home to have dinner. This child also talks about how greatful they are for their parents, and how the thanked them repeatedly. They will never forget how their parents turened their simple house into a home. So by these examples you can see that the mood of the memoir is happy and joyful." 2 2 2 +12005 5 "In this memoir there are many different moods that the auther tells you about. Happiness is a mood that the author tells you about. They are all happy because they can be together and have a grate time. Another mood is careing. her parents care about others and keep there doors open For them at all times. Love. Love is all around this house. They love all their Friends and Family and celebrate with then no matter what. They also show there love by leting people stay with them untill they can get back up onto there Feet. One mood in this memoir is courage, these two people show courage when they get here and they keep that Courage for a very long time. Expeshaly when they come from having such grate jobs to ones that arnt that great." 3 2 3 +12006 5 "The mood created by the author in the memoir is sad, and happy because he talks about things that happened to his parents and happy things of his parents. I think the author is sad because they died but he could be happy too. I think I would be sad and happy if my parents died. Thats why I think the mood created by the author in the memoir is sad, and happy. My Parents, originally from Cuba, arrived in the united states in 1956. In 1961, I was born into this simple house. I think he was happy where he was born." 1 1 1 +12007 5 "In this memoir of the author creates a clear mood. He keeps stating over and over that he is so grateful of his parents and family members. Also, he describes that his house was always filled with amazing smells and cuban music. It also says that there was always a feeling of love and happiness in the air which sometimes pushed them through the hard times that they faced. Another thing that he says is that even though almost everyone has a different race, everyone got along and help others out. And one final way I know he had a happy mood, is that he said everyone was honest and hard working." 2 3 3 +12008 5 "The mood created by the author in the memoir was very thankful. The author proved that it doesn't take the amount of money, or how big your house is to be happy. Sometimes its just the simple things. In paragraph @NUM1 it states, ""my parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" The author is showing the reader that even though they might not be family by blood, they still treat each other as if they were. In the last sentence of the memoir it reads, ""I will never forget how my parents turned this simple house into a home."" This shows the reader that no house is a home without happy memories and great lessons learned." 3 2 3 +12009 5 "Narciso Rodriguez created a mood of happiness and comfort in the memoir. When he told that ""... all of these cultures came together in great solidarity and friendship."" it signaled to me that they all must be happy together. And when Rodriguez describes how all of the Cuban traditions his parents brought blended it just made me think he was comfortable with his home." 2 2 2 +12010 5 "The mood created by Narciso Rodriguez in the excerpt from ""Home: The blueprints of our lives, is very thankFul. ""and for which I am eternally grateful"" ""I will always be grateful to my parents"" @CAPS1 like these that are scattered thro-ugh out the excerpt show greatfulness, and love for his parents. Some other @CAPS1 like ""They came selflessly"" and ""... To give their children a better life"". Throughout the excerpt he tries to express how greatful he is to his parents, and community. One quote that can to mind when reading paragraphs @NUM1 & @NUM2 is ""It takes a village to raise a child"" I think thats how @ORGANIZATION1's community worked. They weren't just neighbors, they were family." 2 2 2 +12011 5 "The moods created by the author in the memoir is happiness, love, and gratitude To start, it made me feel happy because of the way he described his house, and how delightful it was. ""cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" This quote made me visualize the scene, and I felt happy to think about the beautiful and enjoyable setting. Secondly, it made me feel loving to my loved ones like my family and friends. ""I've often told them of my admiration for their strength and perseverance,..."" I love my family, and would be thankful if they tried to take their home country to the United States (if they were born somewhere else) with them. Finally it makes me feel grateful to my own family, and friends. ""I will always be grateful to my parents for their love and sacrifice."" I would be grateful also. That is how this memoir makes me feel once I read it." 3 3 3 +12012 5 "The mood created by the author in the memoir is like a mellowish mood. Almost like a fun loving feeling. The author had literally put himself into the memoir as I read. Paragraph two, had used parentheses several times within the text. The parentheses had given the author's look into his reality. Which had helped to create a calm mellow feel. Over all the mood was fairley simple, fun. In the last sentence it stated that the author had said ""I will never forget how my parents turned this simple house into a home."" It had basically described that the family did not have much, but made the best of what they did have. The last sentence had made the whole memoir have a calm mellowish feel. In conclusion, the author in the memoir had created a mellow feeling throughout the whole memoir." 2 2 2 +12013 5 "The mood in exerpt is in between grateful and caring and hard because thats what @PERSON1's mood ended they way it created was by the type of house he living with them and and also the people @PERSON1 about. Also another mood is comfortable for example when he said ""I was born in Newark, @LOCATION2, in a simple house explains his mood towards everything. " 1 1 1 +12014 5 "The mood created by the author is a feeling of greatfulness for his parents.Narciso Rodriguez is grateful to his parents for coming to the United States with courage. @CAPS2 realizes that they came to this country to give their children better lives. His parents had no knowledge of the @CAPS1 language. Rodriguez's parents had good jobs in Cuba, and had to start their lives from scratch, all for Narciso. Rodriguez has ""often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly."" @CAPS2 is grateful to his parents for turning his small house into a home in which family is valued more than materialistic things The first sentence of paragraph six, Rodriguez states, ""I will always be grateful to my parents for their love and sacrifice."" That is an extremely good indicator that the mood created by the author is a sense of greatfulness for his parents." 4 4 3 +12015 5 "The memoir ""Narciso Rodriguez"" creates a very warm peaceful and interesting mood. The way the author described the way she used to live looks like she lived a very loving and peaceful enviroment. She also creates a spanish theme to it which I could relate to. For example in paragraph @NUM1 she says she is very passionate for Cuban music and she's grateful she know how to cook. She also said in paragraph @NUM2 she will never forget how her parents turned a simple house into a home. That quote makes the mood of the memoir loving." 2 2 2 +12016 5 "The mood in the memoir is gratefullness, happyness and remembrance. Narciso is pround and thankfull of his parents, of them coming all this way by themselves and having to start their whole lives over ""I will always be grateful to my parents for their love and sacrifice."" They came to @LOCATION1 ""to give their children a better life."" They struggled, taking any job that they could find, They struggled for him, so he didn't have to struggle. Narcisco admires them for ""their strength and perseverance."" Narciso sets the mood in the memoir as gratefulness to his parents and for all that they have done for him. He is happy with the life they have created for him, and is happy that they have done so well ""I will never forget how my parents turned this simple house into a home. Narciso is happy and grateful for his life that he was given by his parents." 2 3 3 +12017 5 "The author created a calm mood. Everything he talks about is in the same tone. When he talks about the kitchen in his home, he also created a happy mood. He was calm while talking about the memories in his old home. He stayed calm when he talked about how caring his parents were. Overall, the whole writing is in a calm mood." 1 1 1 +12018 5 "The @CAPS1 created by the author in this story is a couple different types of moods. One of those moods is a happy and good @CAPS1. One example of this is when the author states ""I Learned there about how to love. I will never forget how my parents turned this simple house into a home."" That shows a good @CAPS1 because it is about loving. Next example of a happy or good @CAPS1 is when the story states ""Countless extended family members came and whent-and there was often someone staying with us temperally until they were able to get back on there feet."" This shows a happy @CAPS1 because they are welcoming people into there family. Another @CAPS1 in the story is sad. One example is when it says ""Could not afford to move into a moddest three room appartment"" This is a sad @CAPS1 because a you always want the best of for people and if there to poor to afford a good place and that is sad. Also it says ""They struggled both personally and financially. This is a sad @CAPS1 because they are haveing trouble getting by. There is more then @NUM1 @CAPS1 in this story, but the most import @CAPS1 I think is loving. A example of loving is when it states ""all thes cultures came together in great solidarity and friendship."" That line right there is showing love. That is the most importand @CAPS1 to know in this story, loving." 4 4 4 +12019 5 The mood created by the author was that how in the beggining it was a medium normal tune because he was Just describing who he was and where he lived and what his life was like. Then towards the medium and end in changed alot in my perspective. That it changed to a sad tone because not That his life was hard also how gratful he was. And how his Parents seemed like great people. for everything they did with him. That I got This answer by the beggining and ending of the story of how sad his life was but he seemed to make the best of things and said he had a good time and or everything he did. Thats my opinion and answer to the story. 1 2 2 +12020 5 "The mood the author creates in the memoir is gratefulness. The author creates gratefulness by repeatedly saying what his parents gave him and that he is grateful for it. First he talks about how he is grateful his parents got him interested in cooking. In paragraph @NUM1 it says, ""My parents both shared cooking duties and unwittingly passed on to me their... love of cooking that is still with me today (and for which I am eternally grateful)."" This shows the author is grateful for his parents showing him to love cooking. Another time the author is grateful is in paragraph @NUM2. It says, ""I will always be grateful to my parents for their love and sacrifice."" This shows the author is grateful for his parents' endurance to come to @LOCATION1. In conclusion, the mood the author creates in the memoir is gratefulness. He was grateful for his parents giving him all they could." 3 2 3 +12021 5 "In the memoir ""Narciso Rodriguez"", tells us of how @CAPS1 grew up with his parents who which immigrated from Cuba, the mood created by the author is warm & comforting.For example, the mood is comforting because, @CAPS1 speaks of how, his parents created a traditional Cuban home, out of nothing but a one bedroom apartment. @CAPS1 descrbes his life being centered around the kitchen & his parent always provideing what they could the best for him.""@CAPS1 also states ""I will always be grateful to my parents for their love & sacrafice"". Ive often told them that what they did was a much more courageous thing I could ever have done""." 3 3 3 +12022 5 "The mood created by the author in the memoir was happy. It made me feel happy because it was good to know that ""'family' had nothing to do with being a blood relative. This meant that all the people around you that care about you are your ""family"". Another reason why the mood of the memoir is happy is because I think if my parents were in the same situation that Narciso's parents were in, my parents would have done the same thing. My parents would have also wanted, ""to give their children a better life."" @CAPS1 this memoir makes me feel happy because of how caring Narciso's parent's were." 2 2 2 +12023 5 "The mood of the memoir is happy. I know this because the Rodriguez family crossed the border from Cuba to the United States to have a better life. They came in 1956, but had to wait until 1970 to be reunited with their Aunts and @CAPS1. They now have a bigger house. They are grateful they live in the United States." 1 1 1 +12024 5 "In the memoir ""@PERSON1"" by @PERSON1 a mood is created throughout the story. Mood is a feeling displayed to the reader through literature. In this particular piece the mood was proud and festive. @PERSON1 creates this mood by using various words and phrases. First @PERSON1 said, ""my parents created our traditional Cuban home"" This shows his family's pride because thier house looks like it did in Cuba. Also, the theme was festive because @PERSON1 describes the large parties and dinners that were constant at his home. Third, @ORGANIZATION1 creates a festive mood when he wrote, ""My parents welcomed other refugees to celebrate thier arrival to this country"" This quote creates a festive theme because his family all enjoyed partying with others. In conclusion the memoir ""@PERSON2"" there was a theme of festivity and pride through out this whole piece of literature." 3 3 3 +12025 5 "In this memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, there was only one @LOCATION1 mood I think. The mood I think the author was trying to make people feel is happiness. There are a lot of examples that make me think that. One example that I think is best is the last sentence ""I will never forget how my parents turned this simple house into a home"" I think this is the best example of happiness because even though they didn't live in the biggest house, the were still happy with what they had. That is what I think the mood created by the author was." 2 2 2 +12026 5 "The mood created in ""Narciso Rodriguez"" by Narciso Rodriguez is a profound sense of closeness and selflessness that so enriched Narciso's childhood. The mood created by Narciso comes from his memoir, in which he lived a poor life, but a life that was enriched by friends and family that had a very close bond, one that overcame racism and tough time. ""all of these cultures came together in great solidarity and friendship."" The mood created by Narciso displays how his community acted, and shows how close is friends and family were. It is a mood that helps readers understand Narciso's community. The mood created by Narciso is also one of selflessness, as Narciso describes his community as one of ""honest, hardworking immigrants who extended a hand to people who, while not necessarily of their own kind, were clearly in need."" @CAPS1, Narciso creates a mood of closeness and selflessness." 2 2 2 +12027 5 "@PERSON1 is a short story about a boy who is very grateful & shows a lot of appriciation torwards his parents. He feels that he is at home even though he moved to @LOCATION1. In paragraph @NUM1 it said his parents created his new home to look like a cuban home he had back in cuba by putting cuban thing on the wall. I feel that in this short story he is very grateful because he said in paragraph @NUM2 he will never forget how his parents turned this simple house to a home. @PERSON1 is a very calm and happy short story." 2 2 2 +12028 5 "In the excerpt of Home: The Blueprints of Our Lives a memoir by @PERSON1 and internationally recognized clothing designer, there is a distinct mood of fond recollection of a warm and loving environment, as well as a greatfulness for the lessons learned in this environment. Narciso mentions how his parents created a home for him even though it meant making many, many sacrifices. He describes his @NUM1 room apartment as a ""traditional Cuban home, the very heart of which was the kitchen."" This quote is important because it begins the explanation of why his house gives him so many warm memories conveyed in his writing. Narciso explains how many people in his neighbor hood are immigrants that come together, help one another, and form one big family. ""My parents always kept their arms and their doors open to the many people we considered family, knowing they would do the same for us."" Many people in his neighborhood joined Narciso's family for meals and this brought many of them closer. At the end of the memoir, Narciso explains how greatful he is that his parents gave up their lives in Cuba to give him a better chance in @LOCATION1 despite their hardships. This undeniable thankfulness is a large part of this memoir. " 4 3 4 +12029 5 "Narciso Rodriguez loves his family and home very much. In his memoir, he talks about the sacrifices his parents made and how truly grateful he is that his parents moved to New Jersey for a better life for themselves and him, no matter what the cost. His memoir is all about the love for his parents and his gratitude toward them. He really wants people to be able to feel to happiness that he feels when he thinks about his home and his wonderful life that his parents provided for him. He realizes his luck and therefore his memoir is very upbeat and shows that even in hard times, you can live life to its full extent." 2 2 2 +12030 5 "In this memoir, there is more than one mood. There is love, friendship, and happiness Narciso expresses love for her parents and friends in paragraph @NUM1. ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" The author is saying that everyone comes toge-ther and that they all care for eachother. She expresses friendship in parag-raph @NUM2. When she says that her babysitter was her first friend. Finally, she expresses happiness. In paragraph @NUM3, when she is saying ""she will never forget how her parents turned this simple house into a home. You could tell that she is happy, and grateful for her parents. Those are a @CAPS1 moods in the memoir." 2 3 3 +12031 5 "Narciso Rodriguez is thankful for what his parents gave him, thus that is the overlying mood in the memoir, being thankful. Rodriguez was thankful that his parents came over from Cuba to give him a better life. Even though he says that his parents had to leave behind ""family, friends, and careers in the country they loved."" Rodriguez is also thankful that his parents taught him selfless ness + generosity. For example, he says ""there was often someone staying with us temporarely until they were able to get ba- ck on their feet."" It is very genorous to help some body in that way. Over all Rodriguez is thankful for his Cuban culture. Cuban culture encompasses cooking & music, but most impo- rtant ly family, having nothing to do with being a blood relative, but the fact that you have respect + love for everyone. The mood of this memoir is being thankful and is presented in all these different ways." 4 3 4 +12032 5 "the @CAPS1 that the author created in the memoir was an uplifting one. His memoir talked about growing up in the gattr of Newark, New Jersey (which became more of a ghetto), during the time of immigration. His neighborhood was full of Spanish, @PERSON1, and Italian immigrants. His family would come over and they would have dinner together, and they would have people stay in their house until they got back on their feet. He had a childhood full of family and friendship. which is great to have." 1 1 1 +12033 5 "The mood of the excerpt is very bright. The author describes her risk taking, loving parents. The author describes the many things her parents have given to her. ""Within its walls, my young parents created our traditional Cuban home... Both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today... Here the innocence of childhood, the congregation of family and friends, the endless celebrations that encompassed both, formed the backdrop to life in our warm house."" As you can see, the author. Narciso Rodriguez, describes her young life and home with happiness and greatfullness. This is all generously spoken within the depths of the excerpt. Many authors enjoy using these tones to express their own personal feelings and opinions about the matter. In this case, the author wanted to express joy in her writing." 3 2 3 +12034 5 "The author created a very grateful/happy mood in the memoir. For example in paragraph @NUM1 when Narciso says ""I will always be greatful to my parents for the love and sacrifice. When he is saying this he is showing he is happy w/ his parents. I the memoir he talks about how he loves his house and why he loves his house and all the great memories in that house and that shows that this memoir mood is a more happy mood instead of sad for example paragraph @NUM2 when he says ""It was in the warmth of the kitchen in this combo house were a cuban feast always filled the air with not just sent and music but life and love."" Also when he said in paragraph @NUM2 that"" It here where i learned the real defenition of family. And for this i will never forget that house or its gracious neighborhood or the many things i learned there about how to love." 3 3 3 +12035 5 "The mood created by the @CAPS1 in the memoir is happy. I think there is hapiness because of what it says on paragraph @NUM1. ""In our neighborhood, despite the customs elsewhere, all of these culture came together in a great solidarity and friendship."" @CAPS2 that mean that there were a happy and friendly family. In conclusion, that's the mood I think the @CAPS1 created and some reasons why." 2 2 2 +12036 5 "The mood created by the author in the memoir is intresting. First of all, his parents ""originally from cuba but arrived in the united states in 1956. After living for a year in a furnished one room apartment, twenty one years old Rawedia Maria and twenty seven year old @ORGANIZATION1 could afford to move into a modest three room apartment I would soon call home. ""in 1961, I was born into this simple house situated in a two-family, blond-brick building in the Ironbound section of Newark, New Jersey. Thats how the mood is intresting from the author creation" 1 0 1 +12037 5 "The mood in this memoir seems to be a grateful tone. The reason I say that is because Narciso says how grateful he was to have parents that left everything behind so that he could have a better life. He also sounded grateful when he talked about the Spanish, Cuban, and Italian people in his neighborhood would work together instead of being racist to each other. He also mentioned that he learned the meaning of ""family"" while living in that house. By ""family"" he didn't mean blood relative Family. What he means by family is everyone that would come into his apartment and everyone in the building was family too. The mood he has while writing the memoir is grateful." 3 3 3 +12038 5 "This memior created a warm, touching mood while he explained his childhood. I espicially think the part when he said ""Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encomposed both, formed the backdrop to life in our warm home"", because it shows an overall perspective on a normal day during his childhood. Also, where he states that family ""has nothing to do with being a blood relative really makes his memior interesting because it is also teaching lessions.All in all, this memior was great, and the warming mood is something that I won't forget, and I hope that I too too can write a memior such as heart-warming and interesting as this one." 2 2 2 +12039 5 "The author created a joyful mood. The author said, ""growing up in this environment istilled in me a great sense that 'family' had nothing to do with being a blood relative."" he talks about how people are close and they dont have to be related to be conciderd family. The authour says ""my mother and father had came to this country with such courage, without any knowledge of the language or the coltur."" The author is proud of his parents for doing that, that takes alo of courage." 1 2 2 +12040 5 "The mood created by the @CAPS1 is happy because he talking about starting a new life and how grateful family he has. The way he is also happy is that he has his 'family such as cousin, aunts, uncles, and grandparents by his side. Where he live is also happy he loves it he has his friends and babysitter living above him knowing that they are their for him. That why I think the mood is happy by telling by the story and @CAPS2 words." 1 1 1 +12041 5 "In the memoir the auther created the mood that Narciso Rodriguez was proud of his cuban culture and heritage and that family was very important to him because in paragraph @NUM1 ""growing up in this environment instilled in me a great sense that family had nothing to do with being a blood relative"" so acsepted people as family." 1 1 1 +12042 5 "The moods created by the author in the @CAPS2 were grate ful because of all the things that the parents did for their child. Friendly because they have ""family"" in the United states, and they Kept their arms, and door open for their ""family"". Also they had Courage because they didn't give, trying to learn the language, and finding a job. The last @CAPS1 that this @CAPS2 had was from paragraph seven, happiness, the chid has many memories of his/her Cuban heritage, Still listens to Cuban music, and was born and raised in the united states." 2 3 3 +12043 5 "In the memoir, ""Narciso Rodriguez,"" the author is happy. The author describes his home is a place for family. He is grateful to his parents for everything they did. The author enjoyed his childhood. He was surrounded by loving people and lots of friends. That is how in the memoir, ""Narciso Rodriguez,"" the author is happy." 1 1 1 +12044 5 "The mood of the author is a very gental yet very happy tone. The reason it's gental is because he's describing how he grew up and what his life was like. To some people, they could just blab all day, but to most they have to dig through memories so that they can get the sceen just right. For example, ""Within its walls, my young parents created our traditional Cuban home, the very heart of which was the kitchen."" @CAPS1 the parts were the mood was very happy was probably parts that he could remember the most with detail. For example, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today."" The reason that he could remember this more clearly is because he probably cooks for his family using his parents resipies." 2 3 3 +12045 5 "The mood created by the author in this memoir is deffinitty being proud. The reason I think the author is proud is because he explains how he grew up throughout his whole life. Also, growing up made him proud because he came up not having a lot, to being a famous fashion designer. Lastly, this memior's mood also seems proud because he says, ""I will never forget how my parents turned the simple house into a home."" @CAPS1, the author makes him seem proud of himself." 2 1 2 +12046 5 "The mood that was set in the excerpt Narciso Rodriguez by Narciso Rodriguez the mood that was created, by the author was to reflect on your life and to relive the great expierences that the author has gone through in his mind. It was just to think of all the great times the author had with your family." 1 0 1 +12047 5 "In ""@PERSON1"" the overall mood created by the author is of gratitude and passion. Throughout the passage the author uses very passionate words such as ""aromas,"" ""endless,"" ""encompassed,"" ""instilled,"" etc. This shows that the author obviously wants to convey a very rich and passionate the and mood to the memoir. He probably feels very moved and passionate on the subject and wants to convey that to the readers in a subtle way. As a result reader perceive a very rich and passionate mood while reading the memoir. Another element in the passage adds gratitude to the overall mood of the story. The author added bits and pieces of phrases in parentheses that make the reader perceive the author's feeling of gratitude towards his parents. Phrases like ""(and for which I am eternaly grateful)"" and ""(which I adore to this day)"" account for the feeling of gratitude the reader perceives. Another way the author created this mood is with a more direct approach by stating ""I will always be grateful to my parents for thir love and sacrifice."" The phrases and statement show that the author feels very grateful for what his parents have done for him, which create a mood of gratitude. As a result the mood of ""@PERSON1"" is one of passion and gratitude that is shown through the authors choice of words and statements. That is why I would describe the mood of ""@PERSON1"" as being very passionite and full of gratitude." 2 4 2 +12048 5 "The memoir's mood is a sense of happiness because its talking about a place where neighbors are like family and everyone is very close. Like how Sergio and @PERSON1 became his surrogate grandparents, when they were people who lived in the basement appartment. Alegria, his first friend normally ate dinner with them. The whole memoir is about how his parents showed him the meaning of family and to be open to friends and neighbors." 2 2 2 +12049 5 "The overall mood created by the author of this memoir is one of complete gratefulness. The author is very, extremely thankful for his parents sacrifice, love, care and selflessness. He also creates a mood of happiness, unity and overall loving, that he has seen throughout his lifetime. The author describes his gratefulness towards his parents by remembering how they had to leave cuba, their native country, friends, family and jobs behind because they wished to give the child they wished for better life opportunities that could only be found in @LOCATION1. He thanks his parents repeatedly throughout the memoir for the love, caring, family, friends and selflessness they brought into his life. He describes situations where his parents had to make new friends and family from around their neighborhood and that from that a sense of love and friendship and unity was found. As his family got larger, the author talks about how his childhood, small, three-room apartment was made into a completed home. When all of these details combined, along with language such as. ""I've thanked them repeatedly,"" a mood and feeling of utter gratefulness is felt throughout the memoir ""Narciso Rodriguez""." 3 4 4 +12050 5 I described the mood create by the author in the memoir and they work really hard to create the mood. 0 0 0 +12051 5 "The mood created by the author was a very grateful and happy mood in his memoir. For an example in paragraph six he states ""I will always be grateful to my parents for their Love and sacrifice."" This shows how grateful he is to his parents. He is also grateful to his friends and neighbors it states this in paragraph three when the author says ""family"" had nothing to do with being a blood relative."" This shows that Narciso Rodriguez is very neighborey and that his neighbors portray the same happy, grateful, and neighborely outlook. so all of these reasons explain the mood of Narciso Rodriguez." 2 2 2 +12052 5 "In the memoir ""@PERSON1"" by @PERSON1 he describes the mood. The first thing is that the mood is love. For starters he says ""growing up in this envionment instilled in me a great sense that ""family"" had nothing to do with being a blood relative. Over here, he is saying that your friends can be your family or the people that you love. Secondly he says ""I will always be grateful to my parents for their love and sacrifice. Right here, he is saying that he thanks his parents for the life they had given him. Finally, he says ""I will never forget how my parents turned this simple house into a home. Here he is saying that ""he will never forget when he was living in a home with family, In conclusion @PERSON1 rodriguez describes the mood but also his childhood When he learned about family." 3 4 4 +12053 5 "He/she makes you try to be sad, I dont even know if this is real but it didnt work." 0 0 0 +12054 5 "The mood created by the memoir ""Narciso Rodriguez"" is very uplifting and happy. One reason I think the memoir is uplifting and happy is because it talks about how greatful Narciso is of his parents. In paragraph @NUM1 it says ""I will allways be grateful to my parents for their love and sacrifice."" I thought that this line was very meaningful and uplifting because he's basicaly thanking his parents for immigrating and giving him a better life. Another reason I think this article is uplifting and happy is because in paragraph @NUM2 it says ""Growing up in this enviorment instilled in me a great sense that ""family"" had nothing to do with a blood relative."" I found that uplifting because essentially what he is saying that family doesn't allways mean who you are related to but the people around you that love and support you. Lastly this article is uplifting because it shows love can make a difference." 2 3 3 +12055 5 "In the memoir the mood that the author created is the memoir can be @CAPS1 in two ways. first was happy for being created and being able to use america's beautifulfriendlyness. ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to a blood relative."" @CAPS2 was that knowing that if you have hope anything can be achived. ""I will never foreget how my parents turned this simple house into a home." 2 2 2 +12056 5 "In this memoir author creates a very specific mood that is the Same throughout the memoir. The mood of this memoir was a comforting and happy mood. One way that this mood was @CAPS1 was that they talked how their enviorment Showed a great sense of family and when I think of family I see the mood as comforting and happy. ""Growing up in this environment instilled in me a great sense that family had nothing to do with being a blood relative"". This showed the mood because his family always took in people and made them feel welcomed @CAPS2 reason the mood was comforting and happy was that it talked about how all of the people were nice and kind to everyone they met. ""It was a close nit community of honest hardworking immigrants who extend a hand to people who, while not necessarily their own kind, were Clearly in need"". This is how the memoir showed a happy and comforting mood." 3 3 3 +12057 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, the mood created by the author in the memoir is together the family is organized. My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today"" the parents really are together thing how to organized the family. That is the mood that is created by the author in the memoir." 1 2 1 +12058 5 "The mood created by the author in the memoir is that it is lave. An example from the text says ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families friends, and careers in the country they loved ."" @CAPS1 example from the text says ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done. I've often told them my admiration for the strength and perseverance, and I've thanked them repeatedly. But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" In conclusion because of his parents love for him they sacrificed alot, so he could have a happy and good life. " 3 3 3 +12059 5 "The mood Created by the author in the memoir is grateful, happy. The reason I say that because if my parents did that I should be very grateful because they did all this for me to be happy and for me to have a better life. ""And for which I am eternally grateful"". ""They Came selflessly, as many immigrants do, to give their Children a better life"". Wow that @CAPS1 alot from his/her parents they are very strong and they did all for their children to be happy. This is the reason why I picked those two mood in the memoir!" 2 2 2 +12060 5 "The mood created by the author in the memoir is many things. But, I think the main moods in the memoir are happy and greatful. I think the mood of the story is happy because the story tells about all the good times @PERSON1 had in his house. For example, @PERSON1 says ""here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm house."" And, I think the mood of the story is also thankful because a lot of the story has to do with @PERSON1 thanking his parents for all they have done and sacrificed for him. For example, in the end of the memoir @PERSON1 says ""I will never forget how my parents turned this simple house into a home."" and in a way thanks his parents for everything. So, as you can see those are the moods I think the author created in the memoir." 2 3 3 +12061 5 "The mood created in this memoir is very homebound. How the parents turned the ""simple house"" into the ""traditional Cuban home"" was shocking. The parents played the ""Passionate Cuban music."" and ""a love of cooking"" helped create a family mood, and it showed how much they love their heritage. ""Growing up in this environment instilled in me a great sense that 'family' had nothing to do with being a blood relitave. This family loved spending time w/ eachother, and celebrating. Over all, the mood is loving, happy, and caring." 2 2 2 +12062 5 "The mood I felt when I read the @CAPS1 Narciso Rodriguez was a feeling of togetherness. I got this mood because he is always talking about being together with his family and how the home he was brought up in truly brought everyone in his family together and this made him proud of his family and his Cuban Culture. His family meant a lot to him so another mood could be love because of his love for his family and the house he grew up in where he learned to love. His parents did a lot for him and, ""Turned their simple house into a home"". He learned everything he could ever think about from his parents and he loves them a lot. These are the moods I felt while reading Narciso Rodriguez." 4 2 3 +12063 5 "In the memoir of Narciso Rodriguez, @CAPS1 created a certain mood. Narciso Rodriguez created a gentle mood that stayed constant. @CAPS1 tells how his parents ""always kept their arms and their door open to the many people we consider family."" Which means @CAPS1 probably grew up in a life without very much violence. @CAPS1 also says that @CAPS1 ""will always be grateful for their love and sacrifice."" @CAPS1 wants his parents to know that @CAPS1 loves them very much and lets them know by thinking them. Lastly @CAPS1 @CAPS1 says @CAPS1 ""will never forget how my parents turned this simple house into a home."" The sense of gentleness stays throughout the whole memoir because @CAPS1 is always saying the good things about his life, not the bad." 2 2 2 +12064 5 "The mood Created by the @CAPS2 in the memoir was happy. First thing @CAPS1 the mood is happy Of this memoir is when the @CAPS2 wrote ""Passionate Cuban music (which I dore to this day)"" that meant that @CAPS3 really love her Culture music. Another thing is when @CAPS3 said ""Growing up in this enviroment instilled in me a great sense that ""family"" had nothing to do with being a blood relative, And for that true you dont have to be related to someone who really love to say that he/@CAPS3 is @CAPS5 of your family is Just enoght that he/@CAPS3 love and care about you like you for he/@CAPS3. Last thing is when the @CAPS2 said ""I will never forget how my parents turned this simple house into a home, that meant that @CAPS3 will never Forget that her family began so small And then turn big because their family went to their house and they stared their new life in the house." 3 2 3 +12065 5 "The mood created in the memoir is the feeling of Cuban culture and the @CAPS1's home. The feeling could be described as homey. In paragraph @NUM1, this is where the @CAPS1 first introduces the custom of his house. And how it is. The @CAPS1 describes his house as simple with cuban music and the scent of cuban food flowing through it. The feeling that the @CAPS1 uses to describe his house is the feeling that the whole memoir had. The house kinda flooded the memior with it's feelings. Also this memior didn't only show cuban feeling it also gave of family vibes (like how a family is happy and together) It expressed how the @CAPS1 was close to his family" 1 2 2 +12066 5 The mood by the author in the memories. 0 0 0 +12067 5 "The author was @CAPS2 likely describing his happy @CAPS1. Because in the memair it was talking about how he loved his home and his parents Cooking and music. He was @CAPS2 grateful for his parents caring and selflessness. He liked how his home was a community for Spanish, cuban, and italian immagrants. He thought back to his memorable birthdays and feasts and it made him happy. This is my summary of Narciso Rodriguez's mood of the story." 2 2 2 +12068 5 "In the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives. Narciso projects a very greatful, thankful + optimistic mood. Every sentence, he thanks a specific person for bringing such greatness to his life. In paragraph six, Narciso says, ""I will always be greatful to my parents for their love and sacrifice,"" and it shows that Narciso is very greatful towards his parents, for bringing him to @LOCATION1, and him being who he is today, + who he was. Narciso also projected off a happy and thankful tone. He felt that his life was made so much better in @LOCATION1, than it wouldve or could've been in Cuba. Lastly, Narciso appears to be optimistic. Although he came from a little two-family home, he was still very hopeful about how his life would be better in @LOCATION1, and thanks his parents for their generous sacrifice. In the memoir, ""Narciso Rodriguez,"" Narciso appears to be a grateful, thankful + optomistic man." 3 3 3 +12069 5 "The mood created by the author in this memoir is both happy and uplifting but also sad. The examples of how it is happy are the way the author describes in paragraph @NUM1 how his parents were able to afford to move into a better and larger house, ""twenty-one-year-old @PERSON2 and twenty-seven-year-old Narciso Rodriguez, Sr., could afford to move into a modest, @NUM2-room apartment."" @CAPS1 example of the happiness is when he is describing the time when his parents were decorating the appartment to look like a traditional-cuban home, ""Within it's walls, my young parents created our traditional cuban home."" @CAPS1 example of happiness is when he describes his community of united and hard-working immigrants, ""In our neighborhood all of those cultures came together in great solidarity and friendship."" And the final example is when he mentions that lot's of his family and friends grace their kitchen table more times than not. The mood changes about halfway through the memoir in paragraph @NUM3 when it says, ""Even though it meant leaving behind their families, friends and carrers in the country they loved."" This is when the parents are leaving Cuba and their families and friends to take on a life in @LOCATION1. @CAPS1 example of sadness is when it says ""The barriers to work were strong and high, and my parents both had to accept that they might not be able to find the kind of jobs they deserved."" This means that the parents will have a much harder time finding jobs in @LOCATION1, and they might not get the pay they deserve. Those of the various moods set by the author in this memoir." 4 4 4 +12070 5 "The mood described by the author in the memoir is a greatful and happy feeling I say this because the main character, Narciso Rodriguez, Always brings up how he is greatful for his partents helping him in his childhood. In paragraph @NUM1, ""I will always be greatful to my parents for their love and sacrifice."" Also, the mood is a happy mood. I think this because the story states, ""At tine when overt racism was the norm... All of the cultures came together in great soidarity and friendship."" Even though there is racism, @CAPS1 one is friends." 2 2 2 +12071 5 "The overall mood in Narciso's memoir is admiration and gratefullness towards his parents. He expresses his gratitude several times. Like on paragraph @NUM1. It says ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they love."" @CAPS1 all of paragraph @NUM1 is about how grateful he is to his parents. Another example of his gratitude towards his parents is on paragraph @NUM3. ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing then I could have ever done"" Also all of paragraph @NUM3 is about his admiration towards his parents. So, the mood @CAPS1 in the memoir was love, towards his parents. " 3 3 3 +12072 5 "In the non--fiction memoir ""Home: The Blueprints of Our Lives"" by Narciso Rodriguez, Narciso talks about his life growing up, his home, and the people around him. The author considered his neighbors family also, rather than just his parents and brothers and sisters. ""Growing up in this environment instilled in me a great sense that 'family' had nothing to do with being a blood relative... a close knit community."" (par @NUM1) This gives the memoir a friendly mood, it shows that the author loved his whole neighborhood. The author also invited his neighbors into his home and was very close to them. ""Our landlord and his daughter, Alegria... lived above us, and Alegria graced our kitchen table... more often than not. Also at the table... my surrogate grandparents."" (par @NUM2) This gives the memoir an inviting mood, the author always had friends and neighbors over for dinner. The author also talks about how grateful he is for his parents. ""I will always be grateful to my parents for their love and sacrifice."" (par @NUM3) this gives the memoir a sweet mood, the author shows his happiness and gratefulness for everything his parents had done for him. In conclusion the authors sets a very sweet, inviting mood, by adding details of how joyful, and enjoyable his childhood was." 3 4 4 +12073 5 The mood the auther has is good. He's very proud of how he lives. The most thing that matters in his life are family. His family cares alot and watch over him no matter what and he is very thankful for all. 1 2 2 +12074 5 The mood created by the author was a warm and comforting feeling. He talked about his family life and that his parents had to give up everything they had in cuba to come here and start over again. He makes everything sound really nice with every one crowded in the dinning room to eat. 1 2 2 +12075 5 "The mood created in this memoir is comfort. To me it is so comforting because it is such a happy memoir, where these two young people invite other people over their house all the time. They also let people stay until they are able to get back on their feet. There is not one ounce of sadness to me, just a happy and inviting family which comforts me. Another thing is the lifestyle. I love how they are proud of their Cuban heritage. They listen to their Cuban music and always cook their Cuban food. I love it when people are not afraid to be themselves. It comforts me knowing everyone is happy. That is why the mood created in this memoir to me is comfort." 3 3 3 +12076 5 The mood created by the author was grateful and happy. The author was explaining what the boy in the memoir was feeling and felt. The boy thought that his parents were really great and he thought that he could never be like them. He was also grateful that he had house and parents like you did. He admired his parents and what they did. He will never forget growing up and living in that house. The purpose of the author was to show you how grateful someone was of what there parents did when they immagrated from Cuba to @LOCATION1. 2 2 2 +12077 5 "There was a mood created by the author in @CAPS1 memoir. Here are some points to help support this parenthesis identify a new mood, his gratefulness, and his view on things. First, parenthesis identify a new mood. When it goes from sentence to parenthesis the new mood appears then it goes back. Here is my reason why the story, ""Passionate Cuban music (which I adore to this day) filled the air, mixing with aromas of the kitchen."" @CAPS2, his gratefulness. @CAPS1 is very grateful for how things turned out. Here another reason why from the story. ""I will always be grateful to my parents for their love and sacrifice."" @CAPS3, his view on things. @CAPS1 had very fortunate times in his eyes. Ultamately these were my reasons for the mood that was created by the author parenthesis, gratefulness, and his perspective." 2 3 3 +12078 5 "The mood of the author in the memoir is very happy. I think it sounds like the child of the greatful family is talking and she is one of the most greatful people I ever read about because she says ""I will never forget how my parents turned this simple house to a home""." 1 1 1 +12079 5 "Narciso Rodriguez creates a truely original mood in the excerpt. I would say he puts a kind of grateful mood in the excerpt. He is consteintly stating how grateful he is toward his parents for their selflessness, and courage. One example of Narciso creating a grateful mood is when he says: ""I will always be grateful for their love and sacrifice. I've often told them that what they did was a much more courageous thing and I could have ever done."" This quote shows how much gratitude Narciso actually has for his parents. Another example where Narciso shows tremendous gratitude is when he says: ""they came, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they love."" In this quotation, Rodriguez shows that he knows what it took to come here, he knows the loses that his parents went through, and for that he is truely grateful." 3 2 3 +12080 5 "I believe that the mood created by the author is happy and loving. In paragraph @NUM1 it states ""Growing up in the enviorment instilled in me a great sense that family had nothing to do with being a blood relative."" @CAPS1 not only the people blood related to your is your family but also friends and anyone close to you. The excerpt also states ""It was in this simple house that my parents welcome other refugees to celebrate their arival to this country and where I celebrated my first birthdays."" This shows the love that everyone has for one another. Lastly the excerpt states ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love. It was here where I learned the real definition of family."" This part makes you feel warm and happy about family." 3 4 4 +12081 5 "In the memoir Narciso Rodriguez the author creates a variety of different moods @CAPS2 the memoir. In paragraph two the author tells how much culture was put into his home ""my young parents created our traditional cuban home."" @CAPS1 also tells how thankful @CAPS1 is that his parents instilled him a love of cooking and Cuban music. This gives you a feeling of the home being warm comfortable and most of all alive. In paragraph three the athor tells how a family has nothing to do with blood relatives. ""Growing up in this enviroment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" @CAPS2 out the memoir you really start to see the authors opinion of the definition of home and family. In paragraph six you see how grateful the author is towards his parents, ""I will always be greatful to my parents for their love and sacrifice."" It gives a mood of greatfulnes. In paragraph three and four the author talks about the sense of unity and how his parents would always have their door open to people in need and how the whole community was like a family ""cultures came together a great solidarity and friendship."" ""My parents always kept their arms and door open to many people we considered family..."" The general mood of this is all the moods coming together to creat a generas senseof home and community." 4 4 4 +12082 5 "People make sacrafices for the ones they love. That is called being selfless. In the story, Narciso's parents are selfless. They left their family and friends to give their son a better life. The author makes an enjoyable and heartwarming mood.Narciso is very greatful. He said he has ""learned the definition of 'family' "". His parents wanted a better life for him. They gave up a lot and he recognize that. Rodriguez realized his parents were very hardworking. He respected his parents and loved them for everything they have done for him. ""I often tell them that what they did was a much more courageous thing than I could have ever done."" It's a great feeling knowing someone will do anything for you.Family is very important. @PERSON1 mentioned how his neighbors were all immagrants. They had left their family, too; and only had eachother. Knowing you have people who are like family is incredible. Although they can never replace blood relatives, friends are the next best thing. I think growing up, @PERSON1 learned to very important lessons. Put others before yourself, and work hard." 3 3 3 +12083 5 "The @CAPS1 the author created is sentimental, sad but happy at the same time. I think the @CAPS1 is mostly sentimental because the family moves to @LOCATION1 and kind of looks back to good memories that happend in cuba." 0 1 1 +12084 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives has a happy mood. The author talks about ""passionate Cuban music filled the air, mixing with the aromas of the kitchen"" In paragraph @NUM1 which makes the house seem very happy and joyful. In paragraph @NUM1 the author also says ""within its walls, my young parents created our traditional Cuban home the very heart of our kitchen"" this makes the author seem very happy since they like to cook. Narciso Rodriguez talks about ""it was in this simple house that my parents welcomed other refugees to celebrate their arrival to this country and @CAPS1 celebrated my first birthdays"" the mood here seems that everybody liked to come to this house. This whole memoir ""Narciso Rodriguez"" makes the mood seem very happy and warm." 3 3 3 +12085 5 "The mood of this memoir created by the author is a grateful and/or thankfull mood. The mood is grateful because in the first several paragraphs it mentions how their home is not a high quality and they do not live a average middle class life but a severely lower-class life. However throughout the excerpt it is mentioned how whatever they lacked in quality they made up for with the coming together of their ""family"". By family it means how the other immigrants came together as one and helped one and another. Narciso mentions how even though his family had very little to share, they would always share all that they had to offer with anyone who needed it. By following this example mainly set by his parents he learned about life's lessons that he will never forget and is forever thankful and grateful to his parents for showing him." 3 2 3 +12086 5 "The mood created by the memoir is shown by many things. Through positive words, often mentioned thankfulness, and a cosy setting, a happy positive mood is shown. Positive words are oftem mentioned in the article for example it @CAPS1 ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people,"" in this the words honest, hardworking, and the pease ""extended a hand,"" (which means offered help) all invoke a happy mood. The authors constant thanking of things, like as the memoir states ""(and for which I am eternally thankful)"", gives a happy mood because people are only thankful for positive things. Finally this positive mood is shown through setting, which sounds happy and is described as nice. as the memoir @CAPS1 ""within its walls, my young parents created our traditional Cuban home, the very heart of which was the kitchen."" This descibtion of the setting shows a clear happy cosy, positive mood. The mood created by the memoir is happy, positie, and nice because the memoir is worded with positve words, has often mentioned thankfulness, and has a nice setting." 3 3 3 +12087 5 The mood in the memoir is calm and thankful. The calmness is because there are no conflicts. The thankful part is he keeps thanking his parents For making the sacrifice. How they did it for the next generations. The mood in this memoir calm and thank ful 1 1 1 +12088 5 "Before reading about @PERSON1 I don't think I read about anyone who is more happy than @PERSON1. @PERSON1 is very happy about being an @CAPS1 citizen and still be very happy of having another country's background (in this case Cuba). @PERSON1 was blessed that he had his house. It was in a great neighborhood and the kitchen was the main place of the house. @PERSON1 was very proud of where he lived even though his house was not a mansion or even close to a big house. @PERSON1 was very happy about his parents, most of all. Without his parents he would have lived in Cuba and would not have known his great neighborhood and all of his family and friends." 2 2 2 +12089 5 The mood created by the author is how much the author missis his or her home and were she or he was born and riesed.I think the outhor misses that pleace more then every and that she or he wantes that @CAPS1 back. that the auther well never forget what happened and what the auther did and @CAPS1 in that house. 1 0 1 +12090 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our lives, Narciso Rodriguez talks about what he thinks the definition of ""family"" is. He is very specific in that he believes ""family"" doesn't mean blood relatives, ""family"" is about friends and family coming together to form a community. Where everyone helps everyone and everyone is treated fairly and with respect. He sets a very specific mood in this memoir which is everyone coming together. That sense of happiness and fullness one might get after doing something good for someone else. Narciso Rodriguez talks about how his dinner table is alway full of family and sometimes friends. That his family's door is always open to people who need help. When you read his memoir, you really understand what ""family"" really is. The feeling of love, open-ness, willingness, and happiness. you get helping other people and being around people you love and who love you. The mood Narciso Rodriguez sets in this memoir is very powerful in that it really makes people stop and think." 3 4 4 +12091 5 "In the memoir the author creates a happy mood. In the memoir Narciso Rodriguez talks about what he enjoyed and is thankful for from his childhood. He does this by talking about how his kitchen table was surronded by his ""family"". Or as he say ""countloss extended family members cane and went."" This shows that there were always people around. He also says how he is thankful for how his parents came to the @LOCATION1 ""to give their children a better life"". Finally he says he is greatful to his parents ""I will always be grateful to my parents for their love and sacrife."" @CAPS1 in the memeor the author creates a happy modd by talking about his childhood surronded by family and thankes his parents for there sacrifeces they made to give him a betters life." 3 3 3 +12092 5 "There is o good moud @CAPS1 to this @CAPS2. the mood is a warm, happy feeling. Whenyou read the @CAPS2 it makes you feel @CAPS4. Just like being at your own home. But only a little different. This time youare reading a @CAPS2. It really explains what is going On. It als o give s alot of past information. Which I like in a @CAPS2. But @PERSON1 seemed to really enjoy being cuban. @CAPS7 @CAPS5 to really like her Cuban food. Her family was good @CAPS6. The @LOCATION1 was a bad place when @CAPS7 was growing up asa child. The reason for this is because of racism and segregation. But other wise @CAPS7 has a good life." 1 1 1 +12093 5 "The mood created by the author in the memoir is love. I think the mood is love because he talks about the love and support his whole family had. One example is when he says ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" To me that is saying how his parents loved him so much (even though he was not born yet) that they sacrificed everything they had for their children. That is why I think the mood is love." 2 2 2 +12094 5 "The memoir Narciso Rodriguez from The blue prints of our lives, there is a mood. The mood is very happy and positive and friends and family like, for example they just moved from cuba away from family just for his better life. Also it very helping and sellflly becuse even though ther friends and family were in cuba to parnts moved to New Jersey for a new lif for the kide and make a home. this is the mood of the memoir Narciso Rodriguez." 2 2 2 +12095 5 "In the memoir Narciso Rodriguez, he feels a great amount of passion and love. He goes into detail about his culture, and says how much it means to him. He also feels love, love for his family and friend who were always there for him. He says That family goes further than blood." 1 1 1 +12096 5 The mood of the story is some what sad and some what happy. It's sad because he comes from a not welthy family and were immergrants. but happy because he finaly knows the meaning of family and these are the moods of the story. 1 1 1 +12097 5 I think the mood is a very happy great full mood. the speaker seams very happy of her live and how it was growing up. Narciso seems very greatful of her parent and every body around her and her whole life growing up. Also about how her neighbor hood was. How every body was happy and were all firends and how there were a lot of imagrants in her neighborhood. 1 1 1 +12098 5 "What is the mood of the memoir? The mood is elated. One reason is because ""My parents created our traditional Cuban home, the very heart of which was the kitchen."" This seems very happy to me because moving from your country can be hard. So his parents brought some of cuba with them. That is the reason the mood is elated." 1 1 1 +12099 5 "In this memoir, the author creates a very calming and relaxing mood. The author talked about how family isn't about blood, and how a house doesn't have to be spectacular to be a home. The authors said in the memoir ""I will never forget how my parents turned this simple house into a home"". This basically means that with all the love and care his parents had toward him and his neighbors, created a great place to live. The mood also very hopefull. This is because the author's parents came to america with nothing, but with all their hard work, they over came their struggles and helped everyone else in their neighborhood. Another mood the story had was a loving mood, because even though his neighbors weren't his blood relatives, he loved them as if they were." 3 3 3 +12100 5 "In 1956 Narciso Rodriguez's parents arrived in the united states and bought a @NUM1 room apartment. In 1961 Narciso was born and @CAPS1 began his life. In this story Narciso describes his childhood. The home was very likely, it was a traditional cuban home that consisted of a kitchen that was the heart of the home. Both of his parents loved to cook and listened to cuban music. Narciso says ""The passionate cuban music filled the air, mixing with The aromas of the kitchen."" @CAPS1 also got a good sense of family. and it was not just those who were related to you but also those who cared for you. Although people were different (customs or culture's) they still all came together. People often came to Narciso's home and let them stay while getting back to life because they believed in doing so for one another. Narciso was extremely grateful to his parents for their love and sacrifice. They taught narciso about the true meaning of love and family they also created a home with memories @CAPS1 will never forget." 4 3 4 +12101 5 "The mood created by the author in the memoir is very soft and compassionate. The reason I would describe the mood as soft and compassionate is. When Narciso Rodriguez describes growing up with his parents and in cuba he never mentioned anything about what he hated about his family and about living in cuba. yet he describes all of what he loved about growing up as a child for example he says ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative. This shows that just because your not related by blood does'nt mean your not family. Another reason why I would describe the mood of the authour as soft in compassionate is at the end of the memoir Narciso Rodriguez says ""I will never forget how my parents turned this simple house into a home.""In conclusion those are the ways why I would describe the mood created by the author as soft and compassionate. " 4 3 4 +12102 5 "The mood that the author created in the memoir was grateful and happy for what he had. The author values relationships and he is grateful to have his "" family"". He says, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative. Quite the contrary, our neighborhood was made up of mostly spanish, cuban, and Italian immigrants at a time when overt racism was the norm and segregation prevailed in the @LOCATION1"" In other words he is saying that he is lucky to have what he has, a ""family"". Being lucky for what you have also is a synonym for grateful, meaning that the mood of this memoir was grateful. He also said that his family kept an open door and open arms, showing that they would give some of what they had to other people, showing that they knew that others had less, and that they were grateful for what they had. Mood, means tone or a feeling, so the mood of this was grateful and happy." 4 3 4 +12103 5 "In this memoir by @PERSON1 he sets the overall mood for his ""definition of family"". Rodriguez's parents or Cuban immigrants and they live in a community full of all differen ethinic groups. ""Spanish, Cuban, and Italian immigrants"" form their community. The Rodriguez famly whas enormouse and their doors where open to any one who needed assistance. The table was allways full for dinner at their house. The mood set was one of very kind and helpfull personalities. Families are bigger than just ""blood relatives"" they are the people who you care about and help, or who help you. ""I will never forget how my parents turned this simple house into a home." 2 3 3 +12104 5 "In this memoir the author creats a mood of grattitude. To support a claim like this I will provide evidence. It says in the article that ""I will always be grateful to my parents for their love and sacrifice. This clearly shows how the author is trying to creat a mood of gratitude. His gratitude is being showed towards his parents. Also it says that They came selflessly as many immigrants do to give there children a better life. This shows how the family leaves there comfort to a troublesome life for there children, thus making the children very greatful. The mood created by the author is gratefullness and is shown throw out the whole memoir." 2 2 2 +12105 5 "In the memoir, ""Narciso Rodriguez,"" the author creates a mood. First, The author shows feelings in this part ""My parents both shared cooking duties and un wittingly passed on to me their rich culinary skills and a love of cooking that is still with me today. Passionate Cuban music filled the air, mixing with the aromas of the kitchen. The author shows a feeling of a warm, wonderful household with music and cooking. Next, the author shows a feeling of a nice warm child hood here: ""Here, the innocence of child hood, the congregation family and friends, and endless celebrations that encompass both, formed the backdrop to life in our warm home."" The author enjoyed a nice childhood, filled with friends and family, all enjoying the wonders of their home. That is how the author sets the mood." 3 3 3 +12106 5 "The mood created by the author in the memoir is a happy and loving mood. It sets a loving mood whe the author says, ""Growing up in this enviornment instilled in me a great sense that 'family' had nothing to do with being a blood realitive."" This sets a loving mood because the author is pretty much saying that a person can be so close to you and love you that you consider them family even though you are really not even related. It also sets a happy and loving mood when the author says, ""They came selflessly, as immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" This quote shows that Narciso's parents love their children so much that they wanted them to have better lives and to be happy. That is the mood created by the author in this memoir." 3 3 3 +12107 5 "The mood created by the author in the memoir was grateful because Narciso is glad to be in @LOCATION1 with his family. In paragraph @NUM1 lines @NUM2-. ""I will always be greatful to my parents for thier love and sacrifice. I've often told them that what they did was a much more a courageous thing then I could have ever done. I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly. This is why the mood created by the author in the memoir was greatful." 1 2 2 +12108 5 "The mood created by the author in the memoir can be described in many ways. Here are some points to consider. First of the mood of the author is I think greatfulness. For example ""(and for which I am each currently grateful). ... (Which I adore to this day). second of all the mood of the author is appreciation. For example ""I will never forget how my parents turned the simple house into a home."" @CAPS1 I think another mood of the author is definitely love. I kno this because he talks about love and his family and friends alot. For example ""I will never forget that house or it's gracious neighbor hood or the many things I learned there about how to love. In conclusion the authors moods can be described in many different ways." 2 3 3 +12109 5 "The mood created in this memoir is happy and warm. It starts by talking of things Narciso learned in the home. The Cuban music ""which I [Narciso] a door to this day."" As well as the culinary skills, ""I am eternally grateful."" Narciso is happy, therefore the mood is happy.Also, Narciso talks about the grat community. ""It was a close -knit community of honest, hardworking immigrants who extended a hand..."" Narciso goes into great detail describing the good things, like the community. The author also describes the selflessness of many immigrants including her parents. ""They came selflessly... to give thir children a better life."" Narciso Rodriguez describes many positive effects of her parents as immigrants. As a result of the positivity, a happy mood is created." 3 2 3 +12110 5 "In the memoir ""Narciso Rodriguez"", the author created a happy tone throughout the whole story. Narcisco talked about how when he moved to @LOCATION1 he moved into a three-bedroom apartment. He brought with him the love of cooking. ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love for cooking that is still with me today. Narciso was very grateful that his parents came to @LOCATION1 to help him make his home seem more like a traditional Cuban home. ""It was a simple house that my parents welcomed other refugees to celebrate their arrival to this country and where I celebrated my first birthdays. It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love. It was here where I learned the real definition of ""family"", and for that I will never forget that house or its gracious neighborhood or the many things I learned there. I will never forget how my parents turned this simple house into a home.""" 4 3 4 +12111 5 The mood of the story is like a sad story then it leads to a happy ending. It starts sad because the family moves from cuba to the @ORGANIZATION1. They tell on nothing about the language or the traditions. It gets happier when they moved into the apartment and they find a job to work at. Thats what the mood of the story is. 1 1 1 +12112 5 "The mood created by the author in the memoir is very sad, loving, caring. @CAPS2 @NUM1 states ""I will always be grateful to my parents for their love and sacrifice; I've often told them that what they did was a much more courageous thing then I could of ever done."" @CAPS1 he is very respectful to his parents, thanks them for making a great life for him. Also in @CAPS2 @NUM1 states ""They showned me with their lives, and these teachings have been the basis of my life."" @CAPS1 whatever occurs you always go back to your roots. And how important family, and friends are. The real @CAPS1 of ""family"" through this kids eyes." 4 4 4 +12113 5 "Based on the memoir ""Narciso Rodriguez"", by Narciso Rodriguez, I believe that the @CAPS1 is trying to re-create his/her past in a way that teaches the reader a few important life lessons about home and family, such as ""It was here I learned the real meaning of family, and that you can turn a simple house into a home.""" 2 1 1 +12114 5 "In this excerpt ""Narciso Rodriguez"" by Narciso Rodriguez is a sad story. The mood the author is putting sad and happy stories at the same time. One example is when his parents left from Cuba for his son's own sake for a better place. His parents had great jobs in Cuba. His mother was a Chemical @ORGANIZATION1. and his father worked in a labratory. ""In Cuba @PERSON2,had worked in a laboratory and @LOCATION1 had studied chemical engineering."" The author's mood of this story is sad." 2 1 2 +12115 5 "He was thankful his parents moved for him and thinks it was very nice. He said he doesnt think he would do that, so it was meaningful to him. His parents had come to give him a better life, even though they were leaving behind loved ones." 1 1 1 +12116 5 "In the memoir of ""Narciso Rodriguez"" there are two contradicting moods. From chapters one to six Narciso said ""that all cultures came together in solidarity and friendship"" in his neighborhood. Rodriguez describes in-depth as well. He mentioned Cuban cooking and music, not a single detail was left out. There was so much happiness and bliss at the beginning, but it's soon faded as Narciso spoke of his parents. Narciso's parents, @PERSON2 and @PERSON1, both sacrificed their lives to live in @LOCATION1. ""In @ORGANIZATION1 and Maria worked first class careers, but it was the exact opposite in @LOCATION1."" They would take any job they could find. This mood quickly fades away as Rodriguez describes his gratefulness to his parents. Narciso is very lucky to have parents like @PERSON2 and Maria to watch over him." 3 2 3 +12117 5 "According to the memoroir the mood created by the author is he is thankful for everything his parents have gave him. For example, he states in paragraph @NUM1 ""I will always be greatful to my parents for their love and sacrifice.""Narciso always told his parents how greatful his is for them. But Narciso says ""But in reality there is no way to express my gratitude.""" 2 2 2 +12118 5 "The mood created by the author in the memoir is happy. It is showing all kinds of memories the family has at one house As it says in the memoir, ""I will never forget how my parents turned this simple house into a home. It's saying that a house is a house and it doesn't mean much to people and anyone can go there. But a home is where you live, is where you grow up and have all the memories, it's just a better place" 2 2 2 +12119 5 "In the memoir ""@PERSON1"" by The Blueprints of Our lives, the mood created by the author is happyness.The mood in the memoir was happyness. It because the mother showed he how to love people. Quote she said... Always filled the air with not just scent an music but life and love. It was there I learned the real difinition of ""family."" That many family is just not the people you love and not being a blood relative. I like when her mom let anybody to there household to the table.In the mood that created by the author is happyness in the memoir ""Narciso Rodriguez." 2 2 2 +12120 5 "In the excerpt ""Narciso Rodriguez"" from Home: the Blueprints of Our Lives. Narciso Rodriguez create a feeling of mood about their home life. Narciso talk about life at home and about his parents cooking. He is greatful for his parents cooking and how he learned from them. In paragraph three it states ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" This shows that he considered people around him family and not just his blood relatives. He shows this by talking about how his surrogate grandparents lived in the basement and he didn't know his real grandparents until 1970 when they were allowed to leave cuba. He is always grateful to his parents for their love and sacrifice. The whole memoir is about love, family which sets a positive mood for the reader." 3 3 3 +12121 5 The mood in the memoir is very calm. It's not very tense and depressing. An example of it being calm is in paragraph @NUM1 when the words are in the parentheses it's like the person is talking to you. Also how it Just states facts and a @CAPS1. Another example of it being calm is how the @CAPS1 is happy and not sad. It has a flow to it. 1 1 1 +12122 5 "In the memoir, ""Narciso Rodriguez"", by Narciso, shows mood.In the first paragraph, it talks of where he comes from. ""My parents originally came from Cuba..."" It starts with a calm moodIn the third paragraph states what it was like in United States. ""Our neighborhood was made up of mostly Spanish, Cuban, and Italian immigrants..."" It states that new life in the @LOCATION2 is liked, and how it's put together, (@CAPS1).In the memoir, ""Narciso Rodriguez,"" by Narciso shows mood in different places." 1 2 2 +12123 5 The mood created by Narciso Rodriguez in the memoir is very touching. the memoir explains how as a kid he didnt have much growing upas a kid but he did have family and he was extreamly greatful and proud of his parents for their efforts to start a new family in a different country without knowing the languge. When I hear about someone being that @CAPS1 it makes me think how times have changed from whe Narciso was growing up in the @NUM1's. He was so greatful and happy when compaired to now he has nothing. But he was abel to show all his gratude with the deepest heart warming simpathyall in all @CAPS2 learned from his parents and knew that family was the most important thing you can have. 2 2 2 +12124 5 "This memoirs mood is fairly consistent throughout the whole piece. This story is about how @PERSON1 parents created a home. His parents put love, unity, kindness and happiness in their home. He is thanking his parents for being brave and coming to @LOCATION1 with little and creating a foundation for their future life. He's thanking them for making their simple house into a loving home. The mood of this piece is graciousness and happiness. He is gracious towards his parents for being courageous and making them a home. Durring this piece he is happy that his parents were brave and came to @LOCATION1, that is why this memior also has a happy mood." 2 2 2 +12125 5 "In this memoir, Narciso Rodriguez creates a very loving and carring mood. Throughout the memoir, Rodriguez can't stress enough how much love, greatfulness, and respect @CAPS1 has towards his parents. For example in paragraph @NUM1, Narciso Rodriguez says ""I will always be greatful for their love and sacrifice"", meaning the sacrifices parents made for their children. @CAPS1 also says ""I've often told them of my admiration for their strength and perseference... but, in reality, there is no way to express my gratitude for their spirit and generosity..."" @CAPS1 cares about the lessons his parents taught him so much, that @CAPS1 bases his life on them and will never forget them. But perhaps the most important thing Rodriguez says in this memoir is in paragraph @NUM2, when @CAPS1 says ""I will never forget how my parents turned this simple house into a home."" This somes up everything his parents taught and sacrificed for him. giving this simple sentence a great meaning." 3 4 4 +12126 5 "Throught the memoir Home: The Blueprints of Our Lives, Narciso Rodriguez portrays a mood of happiness and thankfulness towards his parents. Rodriguez writes ""and for which I am eternally grateful"" (@NUM1). Narciso Rodriguez is expressing his thankfulness to his parents for the wonderful things they have taught him such as cooking. Another way this mood of happiness is portrayed is through his writing about people coming together. He writes ""all of these cultures came together showing great solidarity and friendship."" (@NUM2). He is happy and thankful for the connections he made with people of different cultures, and ethnicities. Despite the racism going on in the places around them, his parents were able to bring people together by being welcoming, helpful, and friendly. Lastly, he is greatful for all the things the parents sacrificed for him. He writes, ""I will always be grateful to my parents for their love and sacrifice,"" (@NUM3). They taught him that money isn't everything and that family and friends are greatly important. They had the ability to impress apon him many qualities that benefited his life. He writes ""these teachings have been the basis of my life"" (@NUM3). The mood is portrayed as happy and thankful about the lessons his parents taught." 4 4 4 +12127 5 "The author created a mood that showe his true love for his family and his home by explaining his culture, his family, and how grateful he is to his parents. He starts by going into detail about his culture of ""Rich culinary skills....a love of cooking....passionate cuban musci (which I adore to this day)"" it builds a base to this mood by showing that his home was always filled with the food and arts of his heritage. He goies on to talk about his family, which ""had nothing to do with being a blood relative,"" he explained how his true family was of many many cultures that ""came together in great solidarily and friendship. ""@CAPS1, he thanks his parents for everything they did for him by moving to @LOCATION1 and for showing him how important family and friends are. ""i will never forget how my parents turn this simple house into a home."" That is the mood expressed by the quthor, through his culture, family, and by showing gratitude to his parents for giving him a basis for life. " 3 4 4 +12128 5 "In the memoir Narciso Rodriguez, there is a certain mood created by the other. This mood is a mix of many things. Love, generosity, and greatfulness. The Love feeling comes from the bond between friends and family. To them, family was your community and friends. They would let people stay at their house untill they got back on their feet, and often they would have many people join them for dinner. The feeling of generosity comes from the selflessness the parents had for their kids, friends, and family. They would do kind things for them. They even immigrated from Cuba to have a better life for them and their children. The sence of greatfulness is from the friends and family, since the parents were so generous, people were greatful, and so was the author. The author says ""I will never forget how my parents turned this simple house into a home."" The mood in this memoir is created by the people and family who live there, and go there." 3 4 4 +12129 5 The mood is very warm and welcoming. It starts off with a beautiful and culturally enriched apartment. Then talks about delicious foods and great music. But at the end it leaves off on a sadder tone of her parents leaving to make a better life. 1 2 2 +12130 5 "The mood the author created in the memoir was calm, @CAPS1 saying ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm house."" she gives off a calm relaxed feeling. And makes us portra a peaceful setting." 1 2 2 +12131 5 "The mood in the memoir could be many things the one that really stands out to me though is grateful. One way how @CAPS1 shows this is @CAPS1 says ""I will always be grateful to my parents for their love and sacrifice @CAPS1 is so thankful that her parents brought her to @LOCATION1 so @CAPS1 could live a wonderful life.Another way @CAPS1 shows @CAPS1 is grateful is @CAPS1 says ""I will never forget how my parents turned this simple house into a home."" @CAPS1 respects what her gone through to make her life enjoyable and not like what her parents lives were.The last way @CAPS1 shows gratefulness is @CAPS1 thanks her parents every day for what they have done. ""I've thanked them repeatedly"" @CAPS1 says in paragraph @NUM1. I don't think @CAPS1 could ever picture what her life would be like if her parents didn't do that for her. This is what I think the mood is in the memoir." 3 3 3 +12132 5 "The mood created by the author in the memoir was graditude.The author was feeling graditude because he was thankful for what his parents have done for him. In paragraph @NUM1 it says, ""I will always be grateful to my parents for their love and sacrifice."" This lines says that the author is grateful that his parents sacrificed a lot for the author to have a better life.He was also feeling gratitude because his parents' generosity helped him demonstrate how important family and friends are. In paragraph @NUM1 it also says, ""But, in reality, there is no way to express my graditude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" This lines explains the graditude he has cannot measure up to what his parents showed him.In conclusion, the mood created by the author in the memoir was graditude." 3 3 3 +12133 5 "The mood of the memoir is love. @PERSON1 and his family ""... always kept their arms and their door open to the many people (they) consider family, knowing that they would do the ""same for (them)"" (@NUM1). Even though""(thier) nieghorhood was made up of mostly Spanish, Cuban, and Italian immigrants at a time when racism was the norm and segregation prevailed in the United States"" (@NUM2) they all cared for each other as if they were one family. Prior to moving to the United States, ""Narciso, Sr., had worked in the laboratory and Rawedia Maria had studed chemical engineering. In the United States, they had to start thier lives over entirely, taking whatever work they could find"" (@NUM3). They moved to the United States, leaving their good jobs, so that thier son could live a better life Narciso doesnt take this for granted. He engulfs the in a profusion of thanks. Throughout the memoir the author costantly writes about all the caring and love in the lives of @PERSON1 and his family." 3 3 3 +12134 5 "In the memoir, ""Narciso Rodriguez"" from ""Home: The Blueprints of our Lives"" by Narciso Rodriguez, the mood created in the memoir is a comfortable one. I know this because in paragraph three it says ""growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative"" That shows that he was comfortable in that house and neighborhood that he had developed a family other than his blood relatives. Also in the last sentence of this memoir it says ""I will never forget how my parents turned the simple house into a home."" That shows that the house had to be comfortable to him if he calls at home, because a home is a place for someone fells safe and comfortable." 4 2 2 +12135 5 "The mood in the memoir given by the author makes me think of my home. Overall, it makes you feel warm or happy inside. In the second paragraph when he is explaining his house and the music playing it automatically makes me think of my house around the holidays; like when the music is playing and you sing along matter how bad you are. You can tell that this book gives the reader a very positive mood or good ""vibe""." 1 1 1 +12136 5 "The mood in this memior is Warmth and comforting.Narcis talks about how is family is still rich in cuture and open to anyone who needs a family.in paragraph @NUM1 Narciso decribles his ""family"" that lives/visits often.Clearly, their home is open with a warm heart." 1 1 1 +12137 5 The mood that the author shows is happiness and love. In the memoir he talks about his mom and dad coming to the @PERSON1 without fear and not knowing anything abot the language or culture. Also he talks about when the rest of his family comes his mom and dad lets them in with open arms and when someone needs help to stand back on their feet. The parents were happy about what they did and who they loved. 2 1 2 +12138 5 "The mood of the @CAPS1 in the memoir is happy and grateful a quote for being grateful is is paragraph @NUM1. ""I will always be grateful to my parents for their love and sacrifice""." 2 1 2 +12139 5 "The mood created by the author in the memoir is very warm with lots of love. The author explains how him growing up in his environment had showed him that ""family"" didn't necessarily mean blood relative. Everyone in his neighborhood came together in ""great solidarity and friendship."" Whatever family members had went to the authors home, his parents would take them in no matter what because they knew if they were in the same situation they would be welcomed also. So for that they always kept their arms and door wide open to people they considered family. The author also mentioned that he would always be grateful to his parents for their love and sacrifice and how important family and friends are. So in conclusion, the mood was warm and loving because he learned the real meaning of ""family"" and how he learned about how to love." 3 4 4 +12140 5 "The mood in the memoir is very happy. Narciso Rodriguez, the main character and young cuban boy, describes some hardships such as his ""parents not able to get the right jobs"" or ""facing cultural hardships."" @CAPS1 Narciso talks about all the good things that happened. Such as his friend and babysitter, Alegria, made him feel great, or how his parents gave him the love of cooking. One thing Narciso will never forget his parents love and sacrifice. His parents always allowed family members to come and stay. Sometimes just to help them get back on their feet. The mood in which the author includes in the memoir is described her Narciso Rodriguez." 2 2 2 +12141 5 "The mood described in this memoir is mostly about love, unity, and culture. In love he shows that his parents immigrated mostly to give his children a better future. This is described in paragraph @NUM1.In unity it shows that in their neighborhood most of the immigrants were always having feasts and being really close to each other. This is explained in paragraph @NUM2 where it says, ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."". His parents taught him how to cook food from his country and also to dance to Cuban Music as it says in paragraph @NUM3. These are the types of mood described in the memoir." 3 3 3 +12142 5 "The mood created by the author in the memoir is grateful, happy, and loving his life.First of all, the mood created by the author in the memoir is grateful. Here is a quote from the text. ""I will always be grateful to my parents for their love and sacrafice.""@CAPS1, the mood created by the author in the memoir is happy. Here is evidence from the article. ""A Cuban feast always filled the air with not just scent and music but life and love.""@CAPS2, the mood created by the author in the memoir is loving his life. Here is a quote from the article. ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love.""In conclusion, my main point here is to show you how joyful Narciso is." 3 3 3 +12143 5 The mood created by the author is the feeling of happiness and warmthe because he's talking about how he enjoyed his old home. 1 1 1 +12144 5 "The mood the author created in the memoir is grateful. In paragraph @NUM1 the author says ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" The author proves and says how we as grateful. Also in paragraph @NUM2 the author says ""I will always be grateful to my parents for their love and sacrifice."" That also shows how grateful the author is. Also in paragraph @NUM2 it says ""I've often told them of my admiration for their strength and perseverance, and I thanked them repeatedly."" That shows how grateful the author is because he thanked his parents more than once. Finally in paragraph @NUM4 the author explains how he learned the true definition of family. Then it says ""And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" That also shows how grateful the author is because it says how he is gracious for his neighborhood and the many things he learned. The mood the author created is very grateful." 4 4 4 +12145 5 they'd sald what little furniture they'd possessed by then 0 1 1 +12146 5 "The mood created by the author is touching. I think that the mood is touching because Narciso Rodriguez is talking about how his neighborhood was made up of mostly Spanish, Cuban, & Italian immigrants at a time when racism was the norm & segregation prevailed in the United States. Also b/c he had to share a house with alot of people, his parents struggled both personally and financially & his parents couldn't find a jobs. That's why I think the mood is touching." 1 2 2 +12147 5 "The mood created by the author in the memoir is the begining of the memoir he tells how his parents had a hard time coming to another country and having to deal with allot of problem and the mood is really sad or with allot of suspense and by the middle of the memoir he talks about how he grown up in a family that everbody was so happy and live most everbody together and they had allots of feast and that mood changed to a more happy mood or joyfull mood that he had with his family, and by the end he talks about he thank his parents for the person that he is and all the opportunities they give him and that change the mood to a thankful mood or a grateful mood. And that is how the author creates all the moods on the memoir." 2 3 3 +12148 5 "The mood created by the author was mostly happiness and thankfulness. Narciso's parents came to the @LOCATION1 with courage without any knowledge of the language nor culture. Narciso feels thankful and graceful to his parents for their love and sacrifice. During the whole memoir, the designer is happy. He explained about how peaceful and grateful his... life with his ""family"" was by keeping is Cuban culture and heritage. The author said that the sense of family had nothing to do with being a blood relative. For paragraph @NUM1 and @DATE1, the mood was pretty sad because Narciso described what hardships his parents had to go through to come to the @LOCATION1. He said I will always be grateful to my parents for their love and sacrifice. During the whole memoir, the author describes how much he honors his parents such as how they not only told him life lessons but also showed him. Narciso Rodriguez ended the story with a happy mood by stating he loves his parents for everything they have done for him overall, this memoir had a variety of different moods at certain times depending on what the author was talking about. But mostly, the author was GRATEFUL." 3 3 3 +12149 5 "In the memoir the author creates a homey mood. he shows us the smells and tastes of the food, he shows love from his parents, and he shows grattitude for what he has." 1 1 1 +12150 5 "The mood created by the author was to me appreshiation, and some sympathy. Heres @NUM1 people that gave up their home, job, family, friends in the hope that they can live a better life with their son in @LOCATION1. I have lots of appreshiation because its just another example to show how much our parents love and want the best fer us. I feel some-what bad fer the parents because they came from Cuba, and moved to @LOCATION1. They didn't know the language, they had to learn everything over, and look for a job that would take imagrants. Most jobs dont take imagrents, so the parents had to work hard to support their son. The love and detication that our parents put in to give us the best is unbelievable. The mood set was appreshiation and simpathy for the people in this story." 2 3 3 +12151 5 "The mood in this memoir can be described as anything happy. The author sets a real nostalgic feel about happy memories in the memoir. One of the memories is the kitchen. Rodriguez describes the room as a very peaceful place with music and traditional Cuban food. He says he remembers them and still loves them to this day. He also recalls his freinds and naybors that he used to have over. Even during a time of @CAPS1.S.A racism, the freinds still found ways to make them all happy and all got a long. Another fond memory he re-calls is his parents teaching him life lessons. He says that his parents were scientists back in cuba but moved to @LOCATION1 in order to have a better home. This taught him a lesson that family can matter more then money. Through these fond memories, Rodriguez says that he finds the true deffinition of family." 3 3 3 +12152 5 "The mood that the author, Narciso Rodriguez, created in the memoir was a feeling of unity and happiness. He explained his life, home, family, and parents. He said that, ""family"", was a great thing in that he learned the real definition. He said that he is most grateful for his caring and selfnassless parents. Narisco wrote about how you don't have to be a blood relative, to be family. He said that he is also grateful to his parents for their love and sacrifice. He said they showed him their lives and those teachings have been the basis of his life. He talked about his culture and how the heart of his home is his kitchen. He loves cooking and his parents taught him how to cook. He also said that in his neighborhood, cultures came together and there was unity and friendship. That was the mood created by the author in the memoir." 4 2 3 +12153 5 In the memoir Narciso Rodriguez talks about the meaning of family. Narciso Rodriguez is grateful to have such wonderful parents and that they immagrated to @LOCATION1. He seems to speak in a happy and thankful tone. 1 1 1 +12154 5 "The author of the memoir, Narciso Rodriguez creates a caring, happy, and thoughtful mood. By mentioning the Cuban traditions shared in the neighborhood between close friends, and cooking in the kitchen to share a great meal with one another the mood is happy. When Narciso talks about the great friends he made from different heritages and knowing the entire community like family the mood is thoughtful and caring because it shows that the people really appreciated each other's company. It is also caring in the story when Narciso talks about how his parents devoted their lives to making sure that their children and the people they knew had good lives to. When Narciso describes the way his parents struggled during the cold winters, yet they always let others in, shows a very caring mood in the memoir. I also think that the fact that a small, simple apartment they lived in is very important to Narciso because he repeats it several times. I think he does this to show a thoughtful for mood, in that the house was small but through creativity in bringing culture in made it seem much bigger." 3 4 4 +12155 5 "The mood created by the author was one of happiness, love, and caring. Not only does it show in his style, but the author also gives details that really create the vibe. In paragraph @NUM1, the author describes the food as ""rich culinary skills and love of cooking,"" and the music as ""passionate Cuban music...mixing with the aromas of the kitchen."" This creates a homely affect to the scene, along with the paragraph about the many ""family members"" that came over for meals. The author describes this and explains that this was all possible, despite the nation's racism, because his parents worked hard to get where they were for the faith that their children would have a better life than they had. With all of the details, the author creates a loving, cultural affect can only be found with great family and friends." 3 3 3 +12156 5 "In the memoir about family, Narciso Rodriguez creates a loving mood. @CAPS1 creates this mood by being grateful to his parents, welcoming family in their home, and celebrating their traditions with their family. Rodriguez creates a loving mood by being grateful to his parents. @CAPS1 is grateful for their ""love and sacrifice."" @CAPS1 admires them and their courage. This shows a loving mood because it shows how much @CAPS1 cared and loved his parents. Welcoming family in their home showed love. It says, ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This showed how welcoming people they loved was important. Celebrating traditions and coming together as a family created a loving mood. It showed that they were there for eachother on important occasions. It says, ""...my parents welcomed other refugees to celebrate their arrival to this country..."" This provided a loving mood knowing that they could trust and love eachother. In the memoir, Rodriguez creates a loving mood by being grateful to his parents, welcoming family in their home, and celebrating special occasions with their family." 4 3 4 +12157 5 "Happiness is the mood described in the memoir of Narciso Rodriguez. Shown throughout the memoir that he is happy about the choice that his Parents had to make for him. The outcome of that is success. Also an example of one time the writer has shown happiness about his parents are the culture that he comes from showing that he is cuban and that he is proud to be what he is. As in the memoir says both his parents had come to america away from their good life to give more opportunities to their child. They had lost their Jobs and didn't know where to go, had no @CAPS1, But they were willing to do anything so it would benefit their child. The writer is very grateful for that because if that didn't happen he wouldn't be here, so appreciating everything his parents did for him this shows some of the things going on in his life." 2 3 3 +12158 5 "The author creates a mood that he is very greatful to his parents. His parents taught him how to cook in a Cuban-style, (wich he loves to cook). ""(and for wich I am eternally greatful)."" His main greatfullness, is of their love and sacrifise. They would take in someone who needed time to get back on their feet, wich he found amazing. ""I will allways be greatful to my parents for their love and sacrifice."" And he is not affraid to let them know, ""I've often told them of my admiration for their strength and perseverance and I've thanked them repetedly."" @CAPS1 the memoir, the auther creates a mood that he is greatful to all his parents love and sacrifices, not only to himself, but to everyone they've helped." 3 2 3 +12159 5 I feel like there is one main mood which is thankfulness made up of many different moods. The other moods are reminisceance and hapiness. Thankfulness is focused on in paragraphs @NUM1 and @NUM2. Narciso Rodriguez talks about thankful he is his parents gave up so much to come to @LOCATION1 to give him a better life. He also talks about how his parents taught him how important family and friends were. He showed reminiscence by talking about what his house was like and what the people who made up the house were like. Lastly happiness which is mostly his mood when he remineses his past and family. Those are the moods of his meimor. 3 2 3 +12160 5 "In this memoir about @PERSON1 the reader learns alot about the @CAPS1 by the mood (or tone) of the memoir. The mood of this memoir is greatful, because he is thinking of all the opportunities he got to have since his parents were so caring and selfless. In the memor the reader learns that parent makes so many sacrifices for their children that helping around the house and thanking them is the least they can do. In conclusion the mood in the memoir Home: The @CAPS2 prints of Our Lives by Narciso Rodriguez is, happy, and greatful because of the sacrifices made by his parents. A good citation for this is ""even though it meant leaving behind their families, friends, and careers in the country they loved.""" 2 3 3 +12161 5 "The mood Created by the author in the memoir was admiration. First of all @CAPS2 felt proud of his parents because they share ""Cooking duties and the work around the house."" @CAPS1 of all @CAPS2 felt @CAPS3 of knowing cuban background and @CAPS2 was proud because his parents were cuban. @CAPS2 was very admire by his parents because @CAPS2 was proud of being cuban two. These is the mood created by the author in the momoir." 1 2 2 +12162 5 "The memoir reflects the memories and traditions created in a Cuban family home. The author creates a feel of happiness and gratefulness throughout the story. @CAPS1 uses words like ""passionate"", ""rich"", and ""thanked"" to describe his family and house. @CAPS1 also creates a sense of pride in his parents and family. @CAPS1 discusses how his family was always growing. His parents doors were always open to everyone. @CAPS1 is thankful for that and feels that @CAPS1 is lucky to have such a close knit community of friends and family. The author also mentions what his parents risked and sacraficed by going to the States. @CAPS1 is both proud and thankful of his parents. @CAPS1 says his parents, ""Had come to this country with such courage, without any knowledge of the language or the culture."" @CAPS1 is so proud that his parents were so selfless and put everything on the line so that their future would be better. @CAPS1 is thankful and grateful for everything his parents and family have done.As the author mentions all of this, the readers themselves @MONTH1 remember a bit of their childhood. Some @MONTH1 relate to the story completely while others laugh at certain parts that they too remember about their parents. In the end, the author's right, its the parents that turn this simple house into a loving home." 4 4 4 +12163 5 "The author creates a loving, and caring mood. He makes it feel that you too could be invited into their home with open arms. That if you are feeling down they would pick you right up with a warm meal and a cozzy bead. He describes that they left Cuba to come to the land of oppertunities. That this family is filled with the most important thing needed to survive, @CAPS1." 2 1 2 +12164 5 "In the memoir of Narciso Rodriguez, it gives a cheery, happy safe mood. Paragraph @NUM1 explains a traditional cuban home, with the cooking and music and everything. It's like that in my house, just with @CAPS1 things, not Cuban. Also, the narrator explains how everyone in the neighborhood was a close - knit family of Cuban, spanish and Italian people. No one would hurt one other and every one will help in case of a problem, giving a safe feeling. Lastly, All of paragraph @NUM2 and @NUM3 explains how his parents risked everything to be in the @CAPS2. My parents did the same thing and it makes me feel happy that they did. So, its probably the same for the narrator. In conclusion, the memoir has a good and happy mood to it." 3 2 3 +12165 5 the mood created by the author in the memoir was mutule in the begining it was about move to a New contrey they did seem faced by it they were more into giveing there child a better life and in the end it really sounds like they were all happy they welcomed people that moved from somwhere els into there home and welcomed them I think overall it was a happy mood that was created by the author 2 1 2 +12166 5 "The mood created @CAPS1 the author in the memoir was grateful and loving. In one of the paragraphs, Narciso said, ""I will always be grateful to my parents for their love and sacrafice."" @CAPS1 saying this, @CAPS2 is saying that @CAPS2 is grateful that his parents would give up their lives as they knew it for him. @CAPS2 said that @CAPS2 learned the real definition of ""family."" @CAPS2 knows that members in a family would give up anything to help another member of the family. @CAPS2 also said, ""I will never forget how my parents turned this simple house into a home."" His family helped create a good home with love." 2 2 2 +12167 5 "The mood created in the memoir ""Narciso Rodriguez"" by Narciso Rodriguez is very happy. The mood is happy because all you read are good things @CAPS1 put you in a good. one example is ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" @CAPS1 means to me that any one can be your family." 1 1 1 +12168 5 "I think the overall mood created by the author, is comfort. For example, in paragraph @NUM1, the author writes, ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen."" the author tries to set the scene and give the reader a good sense of what growing up in his home was like.Also, the fact that they took relatives in and helped them get their lives back together again is comforting. In paragraph @NUM2, he writes, ""Countless extended family members came and went-and there was often someone staying with us temporarily until they were able to get back on their feet."" the family knew that their family would do the same for them if they ever needed somewhere to stay.Finally, the amount of love and caring in the house is very strong. Paragraph @NUM3 is all about how much the author cares about his parents and is very grateful to them. the comforting sense of a home is very important to Narciso Rodriguez, the author, and also his very large family." 2 2 2 +12169 5 "The author's mood was wondering and near the end, it changed you happiness. I thought the mood was wondering at first because he was wondering what ""home"" was all about. Then, it was changed to happiness because now the author knew what ""home"" is all about." 1 1 1 +12170 5 "Fashion designer Narciso Rodriguez is a firm beiliever in friendship and family values. In a selection from Home: the Blueprints of Our Lives, he describes the mood, or the feeling created by an author, in his childhood one of family and people with helping hands. Narciso says that everybody in his neighbor hood were ""immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" This shows helpfulness espically in a time when racism and segregation were big in the States. Secondly, their was a sense of family in all of the people at Narciso's house. There was often people staying in his house because they temporarily needed a place to stay until they got back on their feet. The Rodriguez's beilieved these people would do the same thing for them in return. Finally, Narciso can not express how grateful he is to have the importance of friends and family put on him so early in his life. Without his parents stressing the fact that family is not only your blood relatives, he would never have beilived that family and helping hands were so important. A mood of family qualities and helpfulness pre vails in Narciso Rodriguez's memoir. " 4 3 4 +12171 5 The @CAPS1 is writing in first person narrative. The @CAPS2 sets a tone with and about How he is so proud of his cuban relationship and haritage. He is also very happy and proud about how he has great parents and a great house and very very fund memories of all these things. He also explains and talks about other people and how it was hard to leave cuba and come to america. That is how the @CAPS1 sets the tone for this story. 2 2 2 +12172 5 The mood in this memoir is happy. I think the mood is happy because Narciso Rodriguez was greatful for mostley everything in his life. In Narciso's neighborhood in the @CAPS1 Came together in great solidarity and friendship. All though they had were diffrent cultures. 1 1 1 +12173 5 "In the memoir ""Narciso Rodriguez"", what is the mood created by the author?The mood that the authors creates while writing this passage is very cultural like. Because she reason is. That he uses good detail in decribing the home of the character. For example, @CAPS1 Cuban music (which I adore to this day). This shows that there was some beautifull cultural music.Another way is that he is in a cultral mood is when he says. ""My young parents created our traditional cuban home."" This shows that they took what they had in Cuba and brang it to @LOCATION1. Also that they wanted it to be like home in which they miss.In this memoir there @MONTH1 have been other ways to describe the mood of what the author created. But I think the cultral mood is one of the bigger ones. Thats what I showed you in these two paragraphs." 1 2 2 +12174 5 "A house is not a home without family, and a family is not a family without its trails, struggles, and happiness. The mood in the memoir was to show what family is, that its much more than blood. It's unity, friendship and laughter, its the tears, pain and heartache. Its about how you can start in the slums and work your way up but one thing is never going to change, and that's family. Home doesnt matter about the physical space of the dwelling, but about the relationships and memories you make there. Home is where unity, satisfaction, happpness, and imagination come together in one unorganized way, but it doesnt mean that it won't have trails like racism that almost every minority has to deal with even Narciso Rodriguez dealt with it. I deal with it to, I get called cracker and n**** on a daily baised, I dont know how I would get through it without family." 2 2 2 +12175 5 "The author in this memoir created a mood that showed how @CAPS1 felt about this house and his parents. He appreciated the house and was grateful for his parents. He is grateful for his parents and for their love and sacrifice. He is grateful they love and care for him. He says, ""I've often told them what they did was a much more courageous thing than I could have ever done. I've often told them of my admiration for their strength and perseverance."" @CAPS1 appreciates this house and how his parents made it into a home. He appreciates how his parents always kept their arms and their door open to the many people they considered family.So in this memoir the author created a mood that showed greatfulness and appreciation." 2 2 2 +12176 5 "mood created by the @CAPS1 in the memoire. The @CAPS1 memoir in cube was real grandpareAts, aunts dertha @CAPS2 and their cousins Arnold, Maria, and last but not least Rosemary also lived by. had language or the cultureThe childre a much much better life were they are staying now facy cutrarl hardships" 1 0 1 +12177 5 "The author of this memoir put a mood to it. The mood of this is very loving, because the parents gave everything to make their child's life easier. There is also a very friendly and caring feeling for because the article says how their neighborhood is mostly immigrants and that they are a close-knit community of honest, hardworking immigrants extended their hands to people well in need. I would say all the moods in this memoir is loving, caring, friendship, and equality." 2 2 2 +12178 5 In the memoir the mood created by the author is the mood of happiness and appritiation. This has the mood of happiness because it just fills you with happiness to know the everyone can be one big family no matter what race and having realized that anyone can be family even if their not a blood relative. This memoir gives you the feeling of appritiation because it makes you appritiate what you have and appritiate having any kind of family. Also just to have everyone united as one and be thankful for my culture and it kind of makes me want to explore my culture and express it more. 1 2 2 +12179 5 "The @CAPS1 created by the author of the memoir is warm and inviting. In this quote the authors childhood is revealed and how he feels about it, ""The innocence of childhood, the congregation of the family and friends, and endless celebrations that encompassed both, forms the backdrop to life in our warm home. Also when the author says this it creats a happy @CAPS1 and shows how greatful he is to his parent's, ""I will always be greatful to my parents for their love and sacrifice. The last qout wraps up his feeling about his life and how he feels ""It was in the warmth of the kitchen in this humble house where a cuban feast always filled the air with not just scent and music but life and love./I will never forget how my parents turned this simple house into a home."" This quote show the love and warmth of everyone in the family and how a house can bring people together. This showed the warmth, love and selflessness of the family." 4 4 4 +12180 5 The mood that the author was trying to show was calm. I think thats what he was trying to show because Narciso is talking about his family and when he was growing up. Narciso also talked about what kinds of things happened at his house when he was a kid. One thing he talked about was how his landlords daughter was his first babysitter and first friend. He also talked about how his parents showed him thier cooking skills and thier passion for cooking. 2 1 2 +12181 5 "The mood created by the author in the memoir is great @CAPS1. Narciso loved to cook. ""A love of cooking that is still with me today."" Narciso loved his parents very much. ""I will always be grateful to my parents For their love and sacrifice."" The Rodriguez family help people come into ther house hold. ""It was in this simple house that my parents welcomed other refugees to celebrate their arrival to this country"". This was the mood created by the author in the memoir." 2 3 3 +12182 5 "In this memoir, Narciso talks about how it was hard to be raised by immagrant parents in @LOCATION1, getting cruddy jobs for low pay, but his home is his home, where all of his memories are. In my opinion, his mood is happy, and joyful, based on how much he talks about his home." 2 1 2 +12183 5 "The author created a mood in The memoir. The auThor use a mood of @CAPS1 @CAPS2 The memoir. The auThor showed This by ""alegrai graced our kitchen table more often Than noT."" This shows That The auThor used a mood oF @CAPS1 @CAPS2 The memoir" 1 1 1 +12184 5 "Narciso Rodriguez by Narciso Rodriguez is a memoir from Home: The Blueprints of Our Lives and it is about Narciso Rodriguez's early life. The major mood in the memoir is honesty and truthfulness. This is because the author talks about that you don't want to hear or that makes you sad to hear. For example, the author tells us about racism and how it was normal in the United States but the community overcame it: ""a time when overt racism was the norm and segregation prevailed in the United States. In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship. It was a close knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need"" (@NUM1). In conclusion, the mood of the memoir is honesty and truthfulness because the author tells us about things that might make us uncomfortable." 3 3 3 +12185 5 "The mood in this memoir I believe is appreciation and caring towards others. @NUM1 home as well as neighborhood was a place of unity and caring for one another like a family. In the memoir it says that people were always coming in and out of the house for a place to stay or for a meal to eat and were always welcomed with open arms. ""Family"" to him didn't mean you were related but were loved and cared for by other and with that mindset he had a huge family. His parent left behind their lives in Cuba where they were both scientists and had friends and family there for their son. They knew that the United States had better oppurtunitis for Narciso (in which he becomes a designer). He states several times how grateful he is of his parents for them to move to the @LOCATION3 for him as well as making his house feel like a home." 3 3 3 +12186 5 "The mood created by the author in the memoir is. First, the moon that I think is a warm and and saying there's no place like home feeling. In @CAPS1 @NUM1 it states all of these cultures came together in great solidarity and friendship as in home and and the people around us is like family and we come and unit as friends and families. Also Narciso Rodriguez says in paragraph @NUM2 ""I will never forget how my parents turned this simple house into a home. To finish my describtion of the mood created by the author in this memoir of Narciso Rodriguez theres no place like to feel at home." 2 2 2 +12187 5 "In the memoir, ""Narciso Rodriguez"" from Home: The @CAPS1 @CAPS2 of our Lives the overall mood of the author is greatfulness. Narciso begins the memoir by telling us how much @CAPS3 appreciates his culture and all that his parents do for him In paragraph @NUM1, ""... And unwittenly passed on to me the rich culinary skills and love of cooking... (For which I am eternally greatful)"" @CAPS3 has an optemistic outlook on every aspect of his family and his culture. Most of it had to do with how @CAPS3 grew up and was born into a family who had just finished their hardships of getting int @LOCATION1." 2 2 2 +12188 5 "The mood created by the author in this memoir was nostalgic. @PERSON1 remembers all the happy times he had, and memories that took place in his home. In paragraph two, he reflects back on how in his traditional Cuban home, where the heart was the kitchen. He remembers his parents love for cooking, and how eternally grateful he is it got passed down to him. @PERSON1 remembers the passionate Cuban music mixing with the aromas of the kitchen. In paragraph three and four, he tells how the environment he grew up in instilled that ""family"" had nothing to do with a blood relative. He recalls past neighbors, and surrogate grandparents, his aunts and cousins. @PERSON1 remembers how there was always someone at the dinner table, and usually someone staying with them until they could get back on their feet. In paragraphs five, six, and seven, @PERSON1 expresses his gratitude towards his parents, and how much they had to sacrifice. He states that, ""I will never forget how my parents turned this simple house into a home."" The home @PERSON1 lived in had many happy memories, and instilled that family and friends were important no matter what." 4 4 4 +12189 5 The mood was a little sad at certian times and greatful at others. It was sade that they have to leave Cuba and start all over agin. It was greatful becase they hade family that loved them and cared for them. 1 1 1 +12190 5 "The mood created by the author in the memoir was grateful, happy, and thankful. The author was grateful because he wasn't asked to be born in america, hes parents immigranted to america so that Narciso can live a better life. Narciso was happy because he get to see both of his parents, his grandparents which lives in the basement of his house, and his aunts Bertha and Juanita and his cousins Arnold, Maria, and Rosemary. Narciso was thankful because he gets a home where he can sleep at, a family who loves him, and he could've ask for nothing better than the life he has now." 1 1 1 +12191 5 "The mood of the memoir is appreciation. I think it's this mood because in the final paragraph the author says, ""... I will never forget that house or it's gracious neighborhood or the many things I learned there about how to love."" @CAPS1 fact is, in paragraph @NUM1, @PERSON1 talks about how he kept thanking his parents for everything he had. He states, ""I've often told them that what they did is a much more courageous thing than I could have ever done."" I guess he is just very grateful for his parents, his childhood, everything and everyone he has ever met, had or done in his life. If I were in his shoes, I'd be grateful, too. This opened my eyes and now, I, too, am grateful for everything and everyone I have in my life." 2 3 3 +12192 5 The mood created by the @CAPS1 in the memoir is very sensative way. And what I mean by that in paragrap @NUM1 and @NUM2 it sound's like the @CAPS1 is getting real emotional. It say's in paragraph @NUM1 I will always be grateful to my parents for their love and scrifice. 1 1 1 +12193 5 "The author shows many moods while writing this memoir, like gratitude, happiness, and love. The main mood in this memoir however is gratitude. @ORGANIZATION1 is very grateful for everything his parents have ever done for him and he loves them with all his heart. Also he is grateful for how they always made him safe. In the last sentence Narciso says, ""I will never forget how my parents turned this simple house into a home."", what this means is that he is greatful for the life he had. So he will never forget the gratitude that fills him up inside." 2 2 2 +12194 5 "The @CAPS1 created by the auther is that in paragraph @NUM1 it States that ""Within its walls, my young parents created our traditional Cuban home. It was verry heart of which was the kitchen. My parents both shared cooking duties and unwitting pakd onto me their rich culinary Skills and a love a cooking that is still with me today."" I think this relats to the @CAPS1 of the memoir because living in @LOCATION1 you could Still have a house and life stile like you were Still living back where you live, in this case in Cuba.""" 2 2 2 +12195 5 "The mood of the storry is happy. She discribes how lucky she is to have parents like her own, and be Cuban. She loves the music, the food, and the culture. She's glad her parent were careing and helped people." 1 2 2 +12196 5 "The mood created by the author in the memoir was happy and up lifting. The author discussed the positives in his life. He did not dwell on the negatives, did not say what he would like to change. The positive mood of the memoir made it entertaining to read.The author emphasized the fact that his parents moved to @LOCATION1 because it was best for their children. They would sacrafice having the jobs that they deserved. They immigrated to @LOCATION1 to give their children a better life. His parents cared about the future of their kids, and they were unselfish.The way in which the author honors his parents makes the story very enjoyable. The mood is positive and keeps the reader interested and involved. It was a very good story." 2 2 2 +12197 5 "The mood created in this story was happiness and greatfulness towards his parents. In the story he told the many sacrifices his parents made to give him a better life than the one they had. ""I will always be grateful to my parents for their love and sacrifice."" ""But in reality, there is no way to express my gratitude for their spirit of generosity."" His parents came to the country knowing little engish and having to start their lives over just so that his life would be better." 2 2 2 +12198 5 "The mood created by the author in the memoir is emotional. The mood is emotional because his family left ther homeland for the freedom of ther children. They gave up everthing including family for the kids. The fact that they didn't know anybody or the town itself was amazing. Jobs were few, money was sarce. Even though hard times, after there over, it's the best times of all. Family can be in a place with no relatives, That is the mood created by the autheor in the memoir" 2 1 2 +12199 5 The author creates a special mood in this memoir. The mood the author gives is a very comfortable mood. He talks about his family and how they all ate together and always had relatives stoping by. It gives you a sense of togetherness. It gives you a sense of how the family interacted and became one with the neighborhood. So the author of this article really shows how just the whole town had a sense of togetherness with the family. 2 2 2 +12200 5 "In his memoir Home: Blueprints of Our Lives, Narciso Rodriguez creates a warm, familial mood. Narciso deep gratitude for his parents' decision to move to the United States has a large effect on the mood. He describes how brave his mother and father must have been to make the life-changing choice, and admits that ""I've thanked them repeatedly. But, in reality, there is no way to express my gratitude."" The author understands what a large, positive influence his parents have had on him, and his gratitude for his family contributes to the warm mood of the piece. Narciso's admiration for his family also develops the atmosphere of the memoir. He uses words like selfless and hardworking to describe his family, and tells them of his ""admiration for strength and perseverance."" @CAPS1 his descriptions of the feats his parents have accomplished and the hardships they have had to endure, the author conveys his feeling of true admiration for his family to the reader. However, absolute love is the strongest emotion that the reader feels from the memoir. Narciso uses careful selection of what memories he writes in his memoir, along with the addition of passionate words like warm, gracious, honest, and close-knit to make the love within his family stand out. Although there were certainly fights within his family, he never mentions them, focusing instead on the underlying bond he felt with his relatives and how the warmth of his kitchen ""filled the air with not just scent and music but life and love."" Narciso is passionate enough about the atmosphere within his family that he makes the gratitude, admiration, and love he feels for his relatives the focus of his memoir." 4 4 4 +12201 5 "In the memoir, ""Narciso Rodriguez"" I believe he goes from a calm mood to a proud mood. He starts off describing his life so far and family. How he used to live in a one-room apartment in Cuba and how his family lives in Newark, New Jersey along with other Spanish, Cuban, and Italian immagrints. Then he talks about the neighborhood and how together are great solidarity and friendships. Also, a honest and hard working community mostly immagrints. He also said, ""I will always be grateful to my for their love and sacrifice."" (paragraph @NUM1) I think Narciso feel thankful and proud to be a Cuban and have such wonderful parents. ""I will never forget how my parents turned this simple house into a home."" (last sentence)" 2 3 3 +12202 5 This memoir creates a warm feeling of nostalgia for the auther's home. The author writes about how his parents were able to make a great home out of a @NUM1 room apartment. The auther also wrote about how his parents raised him wild teaching his cuban heratige 1 1 1 +12203 5 "Narciso Rodriguez could not describe his home any better, it was as if I was there with him. I can see he really remembers the sound, shites, and smells of his home. ""...situated in a two-family, blond-brick building in the Ironbound section of Newark, New Jersey. Within its walls, my young parents created our traditional Cuban home, the very heart of which was the kitchen. My parents both shared cooking duties and unwittingly passed on to me their rich culture. Passionate Cuban music... filled the air, mixing with the aromas of the kitchen."" That whole paragraph really gave me a good feeling, and I could tell the mood was always a happy one considering all the festivities. Therefore the mood is happy and warm, I would love to be there." 2 2 2 +12204 5 "There where many different moods that the author created in the memoir. The three most important moods where grateful, loving, and happy. The first mood the author showed for this story was being grateful. This family was very lucky to move from cuba to the @LOCATION1 and find a better home. They where also lucky that they where going to have a better life. The second most important mood was loving. This family showed alot of love for each other. An example that shows how loving they are is when it @CAPS1 they left their family, friends, and careers so their children could have a better life. The last mood was happyness. When reading this story you can really tell that this family was happy. It talks about how they will never forget the memories and how generous their parents where. In conclusion there where many different moods in this story. The three main moods where grateful, loving, and happy" 3 3 3 +12205 5 "In the memoir @ORGANIZATION1 gives a loving and caring mood to the readers. I think this because whe he describes certain things, like his parents, he would add a loving and caring feeling. In paragraph @NUM1 it says ""I will never foreget how my parents turned this simple house into a home."" That sentence indicates how much he Loved his parents for doing that. Also in paragraph @NUM2 it says ""I will always be grateful to my parents for their love and sacrifice"" that indicates how apriciative he was. Also this memoir gives a grateful and thankful mood because it makes you think about the people and family members that had loved and sacrificed for you. That is why I think the memoir @ORGANIZATION1 gives off loving and caring mood to the readers." 2 3 3 +12206 5 "The mood created by the author is welcoming. ""In 1961, I was born into this simple house, situated in a two-family, blond brick building in the iron bound section of Newark, New Jersey."" This gives the feeling of being welcomed because it makes me feel like we just saw Narciso Rodriguez's house and we are about to walk in. ""In our neighborhood, despite custums elsewhere, all of these cultures came together in great solitary and friendship."" This makes me feel welcome because it doesn't matter if you are different you are still family. ""Within its walls, my young parents created our traditional Cuban home, the very heart of which was the kitchen."" This gives me the feeling of being welcomed because it was imagery that makes me imagine and I'm able to picture this house, with brilliant smells and lovely cuban music playing. In conclusion, the mood of being welcomed is portrayed strongly throughout the memoir, especially when he is describing his home" 3 3 3 +12207 5 "In the memoir Narciso Rodriguez from Home: The Blueprints of our Lives by Narciso Rodriguez a mood is created. Rodriguez remembers his home in a refreshed way. @CAPS1 remembers his parents ""rich culinary skills and love of cooking."" @CAPS1 recals the ""passionat Cuban music,"" that filled the walls of his home. @CAPS1 really lets us know that there was a great sense of community and family in his neiborhood. @CAPS1 quotes ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people, who while not necessarily their own kind, were clearly in need."" It sounded like everyone worked together there and helped each other out. ""There was often Someone Staying with us temporarily until they were able to get back on their feet,"" @CAPS1 writes. Narciso says his parents ""came selflessly,"" to @LOCATION1 ""to give there children a better life."" Narciso is very thankful for his parents imagration Struggle and says ""I will always be grateful to my parents for their love and sacrifice."" Narciso Rodriguez ""learned the real definition of 'family,' ""Love and carries his memories with him where ever @CAPS1 goes." 4 3 4 +12208 5 "There are many moods in this memoir by Narciso Rodriguez. One of the moods are loving ""I learned here how to love."" @CAPS1 mood is caring ""my parents always kept their arms and their door opened to the many people who were considered family. And @CAPS1 mood was happiness ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations"" That is the mood of this memoir." 2 2 2 +12209 5 "The author was so thankful, they explained how they thank there parrents for moving here. And how a house can become a home and how important family and friends relationships are" 2 2 2 +12210 5 "The mood Created by the author brought out a Cuban @CAPS1 of heritage and family. The mood set here is that family doesn't mean ""blood relatives"" it is People who need help and will have that Same felling for @CAPS2 if @CAPS2 needes that same help. The mood @CAPS3 how @CAPS2 have to go threw alot of times where it's hard and @CAPS2 will lament but @CAPS2 have to get through it and it will pay off. your culture is a part of the mood of the story. This @CAPS4's @CAPS5's came from cuba and had a one bedroom apartment raises a kid and still helped others. The apartment is turned into a cubain house hold of food and music and families. The mood elavtes and esksimtes as they spend more time more family better living space better job and most of all better under standing. The mood of the whole story really cenies around family and the true meaning of family. family is your love ones who care and help, love and respect @CAPS2, That's the mood of the story." 2 3 3 +12211 5 "The mood in this memoir by Narciso Rodriguez's love. Love is the mood for many reasons. One reason is that Narciso's parents were very caring. ""My parents always kept their arms and their door open to the many people we considered family"" (paragraph @NUM1). Narciso's parents cared about everybody as if they were part of the family. Another reason the mood is love is because Narciso talks about how his parents were selfless. With courage they moved to @LOCATION1 without knowledge of the lanunguage or the culture."" They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" (paragraph @NUM2). @PERSON2's parents did everything out of pure love. Because of them @PERSON2 lived a life filled with happiness and love." 3 3 3 +12212 5 "In this @DATE1 from ""Home: The Blueprints of Our Lives"",Narciso Rodriguez creates a safe, calm and secure mood. His description of his home and family gives readers a feeling of warmth and happiness. The very last sentence in paragraph @NUM1 says ""the innocence of childhood, the congregation of family and friends and endless celebrations that encompassed both, forms the backdrop to life in our warm house."" @CAPS1 just a backdrop. He also says ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship. It was a close knit community... ""and "" countless extended family members came and went... my parents always kept their arms and their doors open to the many people we considered family..."". The way, Narciso described his family and neighborhood, keeps you a sense of unity and comfort, like there will always be someone there if something goes wrong. In the @DATE1, Narciso creates a mood of gratitude, constantly repeating how thankful he is to his parents. He tries to get the message across that ""[he] will never forget how [they] turned the simple house into a home"" or ""their love and sacrifice."" In my opinion, Narciso Rodriguez created a comforting and grateful mood in his @DATE1. " 4 4 4 +12213 5 "The mood created by the author in the memoir was a happy and grateful mood. Some evidence to back up my thinking is in paragraph @NUM1 it says ""and for which I am extremily grateful."" @CAPS1 can tell that the author wants @CAPS1 to also feel grateful. Another example in paragraph @NUM2 where is says ""I will never-forget how my parents turned this simple house into a home."" that quote showed me how satisfied with how his life is now and how much the author is appreciative for what his parents did for him.""I've often told them my admiration for thier strength and persevearence and iv'e thanked them repeatedly"". That also show how the author was pushing to make the mood grateful. It also shows how the author is happy about his parents desisions." 4 3 4 +12214 5 "The mood described by the author is homely. In the excerpt the author invites you into his own house, his own life. that creates a nice mood, descr ibing how everyone got along and that everyone .is. family." 1 1 1 +12215 5 "The mood created by the author in the memoir is a grateful one. Because it is telling you what his experience in life was, and what his parents were like. It is also my opinion that they liked where they were. One reason is because they liked to cook all the time. Another reason is that they liked to have fun with their son One last reason is because they had a son. Their @CAPS1 name was @PERSON1." 1 1 1 +12216 5 "What is the mood, created by the author in the memoir? The mood created by the author in the memoir would be loving/warmth. The fact that Narciso's parents would take people in, until they can get back on their feet. ""My parents always kept their arms and their door open to the many people we concidered family, knowing that they would do the same for us."" Narciso's parents moved to another country to give their children a better life. The sacrificed everything everything leaving their families, friends, and career. ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing I could have ever done."" The home that they are in now is very special to Narciso. Basically, his first everything was done there. ""I will never forget how my parents turned the simple house into a home."" The mood created by the author made me feel grateful for what I have in life." 4 3 4 +12217 5 "The mood in the memoir ""Narciso Rodriguez"" is happy and grateful. In ph. @NUM1, Narciso's parents gave up all they had to leave Cuba and come to @LOCATION1 where their children could have a better life. Narciso was so grateful to them that he couldn't express a thank you in words in ph. @NUM2. In ph. @NUM2, it also states that he is really grateful for his parent's love and sacrifice. The reason he is happy, I think is because he has a family that loves him. Even though they're from different cultures they came together and that wouldn't have happened if his parents hadn't immigrated. That is why I think the mood is happy and truely grateful." 2 2 2 +12218 5 The mood created by the author is welcoming and warm. The author makes it so that you want to be @CAPS1 and being able to smell the good food. Also just being able to appreciate the cuban culture. 1 2 2 +12219 5 "In the memoir, @PERSON1, from: Home: the blue prints of our lives, the mood created by the author is happy, thankful and also familyorented. First @CAPS1 says ""I will always be grateful to my parents for their love and sacrifice"", and which by that you can tell @CAPS1 loved that new home, and that @CAPS1 loved and appriciated everything her parents did for her.Second, ""... instilled in me a great sense that ""family"" had nothing to do with being blood relative"". Which @CAPS3 that @CAPS1 treats and acts like everyone is her ""family"", because @CAPS1 loves and cares for all of he ""family"" that isn't blood relative in her neighborhood as if the were blood relative.Last, the memoir says ""... endless celebrations that encompassed both, formed the backdrop to life in our warm home"". @CAPS1 says ""warm home,"" that ment @CAPS1 loved being home with her family/etc. And that @CAPS1 loved being with her friends and neighbors, because thats what @CAPS1 loved/loves to do. therefore @CAPS1 is happy." 4 3 4 +12220 5 "The mood in the memoir is basicly showing love, happiness, and friendship. The way that the mood shows love is in @CAPS1 @NUM1 and @NUM2. In @CAPS1 @NUM1 is says Alegria graced our kitchen table for meals more often than not. In @CAPS1 @NUM2 it talks about how his parent welcome refugees to celebrate their arrival to @LOCATION1. Happiness was shown throughout the story. And friendship was shown as well The way that friendship was shown by his parents keeping their door open to whom who did not have a home. But let them stay in their home until their back on he or she is back on there feet, and considerd part of the family." 2 2 2 +12221 5 "This memoir creates a peacefull mood. It is telling us of his childhood. Narciso writes, ""In 1961 I was born into this simple house,"". As a child you have nothing but peace. He had many visitors. He writes ""my mother took in refug is welcoming them into the country"". He obviously had a nice enviornment with all those visitors. He is explaining his past. He loves his house and the enviornment it creates. He writes ""I will never forget how my parents turned that simple house into a home,"". It just put your mind at ease. That is how this article creates a peace ful mood" 2 3 3 +12222 5 "The mood that was created by the author in this memoir is being happy. The author is happy how Where she use to live she left there to move to @LOCATION1, and made it feel just like home instead of looking back and thinking no place could ever take my real home. The author was positive about this memoir." 1 1 1 +12223 5 "In the memoir, the author creates the feeling that everyone in the neighborhood treated each other as family, though they were all struggling to get buy. They were all struggling immigrants who had sacrificed a lot. Narciso's parents had highly skilled well paying jobs in Cuba and they were forced to get whatever jobs they could find in @LOCATION2. They would always help someone in their family if necesary, and often did. Narciso's family made the best of being poor, and managed to get by. They did all this without loosing their culture (Cuban music and food). Their entire neighborhood, one big family, survived and thrived on little. Being a blood relative wasn't the only defenition of family in their part of Newark, New Jersey." 2 2 2 +12224 5 "In the memoir, @ORGANIZATION1 the mood created @ORGANIZATION1 the @CAPS3 is hard and happy.The first place in the story when the @CAPS3 creates a hard mood is when they say that racism is overt. ""Spanish, @CAPS1, and @CAPS2 immigrants overt racism"". this show that the mood is hard because we know that at that time racism was occurring so that made it hard for them to fit in with everybody else.The last place in the story were the author creates a happy mood is when the neighborhood came together. ""In our neighborhood, despite custom elsewhere, all these cultures came together and great solidarity and friendship"". This displays a happy mood because is represents a whole bunch of diffrent people comming together to work together.As you can see @CAPS3 creates two different types of moods hard, and happy." 3 2 3 +12225 5 "@ORGANIZATION1 tells the story of his childhood and the feel good-times of his "family" in a small house in Newark. Rodriguez shares a unique happy feeling with this excerpt; the feeling of great memories that have been strengthened with each day. The phrases he uses to help describe the house like "passionate Cuban music filled the air" and "the congregation of family" established this vibrant and happy feeling of the welcoming household he grew up in. The excerpt furthers these feelings when the author tells about how much his parents gave when they themselves had little of their own. The description of these selfless attitudes and ways helps paint a beautiful portrait of a family, with "extended family" also, forgetting their troubles and enjoying every second they spend together in a lively kitchen. As the author goes on to tell how grateful he is for his parents and wonderful, warm childhood, it provides a serene and a down-to-earth honesty from the author. The excerpt recreates a feel good time of a carefree life and worryless days that provide a wonderful atmosphere for the reader." 3 3 3 +12226 5 "The mood created by the author Narciso Rodriguez in this memoir is special, loving but most prominantally gratitude.Time and time again the author shows his gratitude toward his parents for making life for him growing up special in a loving atmosphere. He describes how grateful he is for his parents cooking in paragraph @NUM1 when he says ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and love of cooking that is still with me today (and for which I am eternally greatful)."" In the same paragraph he mentions the music, ""Passionate Cuban Music (which I adored to this day) filled the air [...]"". His parents taught him to be open and loving to others as said in paragraph @NUM2 ""Countless extended family members came and went and there was often someone staying with us temporarily until they were able to get back on their feet. My parents always kept their arms and their door opened to the many people we considered family, knowing they would do the same for us."" This also taught him a sense of what family really is and that it has nothing to do with being a blood relative but a loving friendship and sense of respect and caring. I feel he best expresses his gratitude in paragraph @NUM3 when he says ""I will always be grateful to my parents for their love and sacrifice"" and in paragraph @NUM4 and he says ""I will never forget how my parents turned the simple house into a home."" " 4 4 4 +12227 5 the @CAPS1 mood was good he have spicecfic details and told were he was from how his parents were ect. 1 1 1 +12228 5 "The mood the author creates is the sadness of living one country where freinds and family lived. To happiness of the times they've shared in the United States. As the memoir states the center of the home was the kitchen where here parents split cooking duties and where passionate Cuban music filled the air the the kitchen's aroma. In the kitchen was the backdrop to life in their home. The author also creates a mood that is filled with their hope of creating a better life for the family even if it meant leaving their country, freinds, and family behind. The author also creates a mood of love and caring which her parents showed for her and her sister. These are the moods the author creates throughout the memoir." 2 3 3 +12229 5 "The mood created by the author in the memoir is they had no problem finding a house. for example the author states ""My parents both shared cooking duties and unwittingly passed on to me they're rich culinary skills and love of cooking that is still with me today (and for which I am eternally greatful)."" This means that they are great cooks and have skills for cooking. ""Our landlord and his daughter, Alegria (my babysitter and first friend), lived above us."" Even though they first came to the @CAPS1. S they had no problem finding a home. ""It was in this simple house that my parents welcomed other refugees to celebrate their arrival to this country and where I celebrated my first birthdays."" This is saying his mom keeps the traditions with all the celebrations for new comers to the @LOCATION1" 3 3 3 +12230 5 "In this memoir, I think the mood created is very peaceful, happy, and homely. Narciso Rodriguez describes in detail how selfless his parent were, As the left their entire lifes behind in Cuba togive their Children a better life in @LOCATION1. Their home was almost a sanctuary. Warm, full of Cuban heritage, cooking and music. Family members always around, visiting frequently for dinner. A safe and secure place to grow up in, in my opinion. After reading this memoir I had a warm feeling inside of me, and I began to think of places like my home which make me feel in this way. Narciso was a very lucky boy to be brought up this way." 2 3 3 +12231 5 "The author in the memoir from Home: The Blueprints of our lives creates the mood of gratitude and admiration towards his parents.One example of how the author shows gratitude is by mentioning how thankful he is toward his parents. Specific textual evidence that proves this is ""... unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" This quotation creates the mood of appreciation by simply stating ""eternally grateful"". Furthermore, another textual evidence which proves my thesis is ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 the authors use and repititon of the word ""grateful"", or ""thankful"" creates a mood.Another example of how the author creates a mood is by showing admiration for his parents. According to the text he says ""I've often told my admiration for their strength and perseverance."" This quotation is important because it shows that he has told them he admires them. The author also creates the mood of admiration when he says ""... what they did was a much more courageous thing that I could have ever done."" @CAPS2 this quotation the author recognizes that his parents faced many hardships, and praises them by showing his admiration." 3 4 4 +12232 5 "The mood in the memoir ""Narciso Rodriguez"" by @PERSON1 is very cozy and welcomeing. Inside the @PERSON1 home the @CAPS1 describes a cozy and friendly atmospher. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed bot, formed the backdrop to life in our warm home"". This quote shows how cozy or ""warm"" their home is. In the memoir he also explains how welcome people are and that everyone in the Apartment building was friends or even family! ""Growing up in this environment instilled in me the great sence that ""family"" had nothing to do with being a blood relative."" This quote means that in his welcomeing home friends were also concidered his family. Narciso Rodriguez had a wonderful @CAPS2 to grow up in." 2 3 3 +12233 5 "In the memoir, the author creates a very peaceful mood. He achieves this by using a blunt voice and unusual punctuation.The author's voice is very blunt. for example, he describes his house as a ""simple house"" numerous times in the memoir. He tells the reader more than enough about his simple home, and there is almost no conflict in this memoir. This gives the reader a sense of peace and never leaves the reader hanging or wondering about something.To help him with that, the author uses lots of unusual punctuation. Parenthesis are used five times in this writing, as well as five words with dashes. This punctuation is used to give extra information, like the age of ""twenty-one-year-old Rawedia Maria"" or about ""Passionate Cuban music (Which I adore to this day)."" When the author gives extra information, it gives the reader a sense of peace and makes him feel ""at home"", which is the topic of the memoir." 3 2 3 +12234 5 "The mood that is described in this story is love. Why did I pick love? I picked love because in the story it says a lot of stuff about family and Cuba and home (Cuba, is where the love (family) is. In this story is states that his love comes from his family and love comes from every family and @PERSON1's loves his family he says it alot in the story." 1 1 1 +12235 5 "In this memoir the mood that was created was security and warmth. I say this because throughout his story he talks about how grateful he is to have parents who cared about him so much they moved to the United States to give him a better life than what he would have had in Cuba. Narciso constantly talks about the food that his mom used to make and has taught him. The unity that the neighborhood has formed. When he was young there was still a lot of racism and segragation from whites to other races and because of that his neighborhood was the only place to feel at home and feel like they didn't have to prove anything. Their house was permanently open to whoever needed it, and his parents would feed and be overall kind to them. This memoir is about Narciso Rodriguez's kind and loving family, and that comes off strongly in his story." 2 3 3 +12236 5 "The author creates many different moods throughout the memoir. In the beginning, the author talks about his traditional Cuban home, in which he feels extremely comfortable and safe. Here, he creates a mood of warmth, and a very family oriented upbringing, all positively. Around paragraph @NUM1, the author begins to talk about his pride in the success and determination of his family. For example, (paragraph @NUM1, final sentence) ""The faith that this struggle would lead them and their children to better times drove them. (his parents) to endure these hard times."" This gives a mood of pride and great triumph. That is the mood that @PERSON1 gives in the memoir from ""Home: The Blueprints of Our Lives.""" 2 3 3 +12237 5 "The mood created by the author in the memoir is a verry happy tone. The reasons that its a happy tone is because @CAPS1 tells about her Childhood hapily by talking about the unity of his invirorment and the happiiness, cuban food, and Cuban music that filled his home and that still fills his home today because he injoyes it so much." 2 1 2 +12238 5 "In the memoir there is alot of differet moods such as mad, sad, hopefull. I think that over all it is a happy memoir because in the story is says ""and for which I am eternally gratefull"". and also ""Which I adored to this day."" @CAPS1 I think that over all it is a happy mood, because there is alot of evidence to help support it." 1 1 1 +12239 5 "The mood in the memoir, which the author is trying to show you is pretty much the happiness and gratefullness that Narciso Rodriguez has to be cuban. Narciso is bringing the mood of happiness in this memoir learning all about his Cuban background and how much he is greatful for his mom and dad. The author is trying to show you appriciation and gratefulness. This whole memoir is trying to show readers how great it is to come from different cultures and know how to make and do different things. This memoir is representing good moods and happiness. To always be grateful for what you have in you life, exspecially your family, friends, & your life. The mood in this memoir is very happy and gratefull" 2 2 2 +12240 5 "The author creates moods in the memoir that seem to be possitive. The first mood that is shown is a loving mood. In paragraph three is states, ""All of these cultures came together in great solidarity and friendship."" This shows when all the immigrants came to @LOCATION1 they would descriminated they all came together and became a family.Another mood that is created is careness. Narciso Rodriguez's parents showed so much love and support towards him. Paragraph five says, ""They came selflessly, as many immigrants do, to give their children a better life."" This quote shows that even before Narciso was born his parents were thinking about them. Narciso's parents wanted their child to have a good life. A final mood would be happiness. Narciso is very happy and has alot of gratitude for his parents. Narciso quotes, ""I will always be grateful to my parents for their love and sacrifice. By Narciso saying that it shows how much he loves his parents and how happy he is living in @LOCATION1. The author creates different moods throughout the entire excerpt." 4 3 4 +12241 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives there is a mood of happyness created. There are several examples from the article that show happyness. The first example is ""they came selflessly, as many immigrants do, to give their child a better life"". Narciso's parents left everything they had just to give their son a better life. This made him happy because he knew his parents loved him and would do anything for him. The second example is ""I will always be grateful to my parents for their love and sacrifice."" This shows he is very aware all his parents did for him and makes him truly happy knowing they care for him that much. The third and final example is ""It was here I learded the true definition of family."" Where he moved to his parents, siblings, and neighbors became his ""family"" and although he didn't know all of his ""real"" family he was happy with the one he had. Those three examples show the mood of the memoir ""Narciso Rodriguez""." 3 4 4 +12242 5 "The mood created by the author's tone in this memoir is appreciation which is displayed in three important places. First, Narciso Rodriguez, the author, creates the mood of appreciation when talking about how his parents lef cuba. He explains ""they came selflessly, as many imigrants do, to give their children a better life"" (@NUM1). This description shows the mood of appreciation because it shows the author's parents left ""selflessly"", ""to give their children a better life,"" which implies that his parents @MONTH1 not have wanted to come to @LOCATION1, but they knew it would be the best place for him, so they came anyway, which clearly creates a mood of appreciation through Narciso's tone. Additionally, the mood of appreciation created when Rodriguez declares ""I will always be greatful to my parents for their love and sacrifice"" (@NUM2). This informs the reader outright that rodriguez is"" ""greatful to his parents"", which creates the mood of appreciation should through his tone. Finally, the mood of appreciation is created when Narciso states ""I will never forget how my parents turned this simple house into a home"" (@NUM3). This statement insinuates appreciation because Rodriguez is informing the reader that ""he will never forget"", what his parents have done for him, which carries the message that it changed his life, creating the mood of appreciation through his tone. In conclusion, Narciso Rodriguez creates the mood of appreciation through his tone in this memoir to his parents." 4 4 4 +12243 5 "Based on the memoir ""Narciso @CAPS1"" from Home: The Blueprints of our lives the author creates a very powerful and posative mood. One strong example of this is how he expresses his parents. He implies the mood they set on him by saying things like ""always be greatful for my parents"", ""admiration for their strength"", ""perseverance"", and ""generosity."" The mood Narciso used to express his family was very positive and thankful. Another example of the mood the author sets is what he thinks of his culture. He tells that his family and friends are immigrants and how hard they worked to be free and give a better life to their families and children. The struggle and hard work his family went through to keep their culture alive; Narciso was very thankful for. He was extremely proud of his culture and thankful for the example his family had set. Narciso Rodriguez expresses a very positive and powerful mood about his family and his culture throughout the excerpt." 3 3 3 +12244 5 "This is the mood that was conveyed by the author in the memoir. The mood is a very happy one. The author looks back on all the good times @CAPS1 had as a kid. @CAPS1 explains how Cuban culture was a big part of his life and how @CAPS1 still enjoys Cuban food and music. @CAPS1 also describes how his parents made their little apartment feel like a home. In the last line @CAPS1 says, ""I will never forget how my parents turned the simple house into a home."" @CAPS1 also talks about how @CAPS1 lived in a neighborhood with all the other immigrants from all over the world. @CAPS1 describes how even though the familys from different places had almost nothing in common they'll all became very close. In the third paragraph it says, ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" That quote shows how close that neighborhood was even though they came from different places. Is happy in that memoir because @CAPS1 only revisits memories that @CAPS1 was fond of. That was the mood that was conveyed in the memoir." 4 4 4 +12245 5 "In the memoir Narciso Rodriguez from Home: The Blueprints of our loves the author creates a mood in the memoir. The mood that he creates is a relaxed and laid-back mood.The way the author writes is very smooth for example ""in 1961 I was born into this simple house, situated in a two-family, blond brick building in the Ironbound section of Newark, New Jersey."" That is a very relaxed sentence.He then goes on about his life. He tells about his neighborhood, family, religion and much more. Towards the end he tells what he is grateful for.The author told this story as if he was being interviewed and he was very relaxed and layed back." 1 1 1 +12246 5 "The author, Narciso Rodriguez, created a ceartain mood in his memoir. That certain mood was love and family. The reason why love and family is the moood is because of the following reasons. Family is the mood because the author starts out by saying that family had nothing to do with blood realitives. It is also because everyone even if they weren't related was labeled as cousin, aunt, uncle, grandma, grandpa etc. Another reason that it is family is because that is what he felt every one was to him. A reason that it is love is because he loved everyone in his family. They always came over and had dinner babysat him and every thing that is why it is love." 2 2 2 +12247 5 "As I read the article, also called memoir, I didn't so much find a certain mood that the author had created. This memoir is indeed heart warming and touching, though it is very inspirational. It teaches, at least it taught me, that if you can dream something then you can do it. Narciso's parents most likely did dream of coming to america to raise a family and they accomplished with a little hope and hard work. If I had to say what mood this author created I would say happiness. The reason for that is because Narciso was not rich in the sense of money but rich in the sense of love, happiness, and family cultures. For example, as this article said, his parents had a talent for cooking which was passed down to Narciso and he was grateful. Another example is that he was filled with joy and happiness just because of who is family and neighbors were and how he spent his life living around them." 3 3 3 +12248 5 "The author of the memoir set a mood in the writting. The mood of thankfullness and humbleness was set in the writting piece. The word greatful was repeated over and over again. Since the author emphasized the word it gives a reader an idea that he truley is thankful for his parents and childhood. ""I will always be grateful to my parents for their love and sacrifice."" this is an example of the author showing his graditude towards his parents. While reading this peice it gave me a warm feeling. Even though the author's parents had a hard time when they moved to @LOCATION1 they gave the author a good childhood with happy memories. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This is how the author looks at his memories. They are always cheerful and warm. In the last sentence of the memoir he says ""I will never forget how my parents turned this simple house into a home."" This shows that he is grateful for having so many good relationships with lots of people and that it didn't matter how small their house was the author's parents help brought it to life, and for that he is grateful." 3 2 3 +12249 5 He is very greatfull to live in @LOCATION1 and even with all the racism he still found ways to have fun and enjoy life. 1 1 1 +12250 5 "The @CAPS1 created by the @CAPS2 is happy, @CAPS3 was happy that @CAPS3 got to live in @LOCATION2 and be raised in @LOCATION2.@CAPS3 happy because shes lived In the Same house in New Jersey all her life then finally got to meet her grandparents In 1970 When @CAPS3 turned @NUM1 years old.@CAPS3 Is also happy because @CAPS3 Is older and has alot of memorys In the house and Is happy @CAPS3 lives In a free country." 1 2 2 +12251 5 "The mood created by Narciso Rodriguez in the memoir is very thankfull and happy. Narciso does a very good job of show his moods, like when he says, ""Growing up in this environment it instilled me a great sense that 'family' had nothing to do with being blood relative."" Here, you can tell that the mood is happy because the way he says how his family would welcome anyone into their family, but It also shows that if you grow up in a good family environment, you're also going to want to invest those lessons into your own kids lifes. Another example of mood is the last sentence, ""I will never forget how my parents turned the simple house into a home."" Not only does it show again that what you learn when you are little you always want for your family, but also shows that you cannot call a house a home till you are able to live their with your family and the home always have a good mood in it. In the end, the mood in this memoir by Narciso Rodriguez, reflects the proper, but not only way, to have a good mood in your home." 3 3 3 +12252 5 "A happy, grateful, and proud mood is expressed by the author in this memoir. The author, Narciso, expressed a grateful and happy mood by describing things his parents did for him that he was grateful for, as well as happy to have. ""... a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" (@CAPS1 @NUM1) The author also expressed his pride in the story, by stating and describingwhat his parent's did that he was proud of. ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture."" (@CAPS1 @NUM2) ""they struggled both personally and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardships."" (@CAPS1 @NUM2) These were the moods the author expressed in the memoir." 3 3 3 +12253 5 "The mood created by the author was very happy. The author was grateful to his parents. For example in paragraph @NUM1: ""I will always be grateful to my parents for their love and sacrifice."" The author thanks his parents repeatedly for their strength. For example in paragraph @NUM1: ""I've told them of my admiration for their strength and perseverance, and I've thanked them repeatedly."" @CAPS1 will never forget his home. For example from paragraph @NUM3: ""I will never forget how my parents turn this simple house into a home."" The mood was very happy. The author was grateful, thankful, and never forgot his home." 2 3 3 +12254 5 The memoir created a happy mood. Living in @LOCATION1 is great. They had a better chance in life then being cuba. @LOCATION1 has alot of oportinitys and staying together. Having friends come over relatives and non- relatives is great. You have a better mood in the day to come. 1 1 1 +12255 5 "The mood that the author created in this memoir is kinda sad because these imegrents that came to know america slefliss just to give thier children a better life. These imagrents do not have a lot to work with. They live in small homes that are durty but in a suprizing way the manage. All these imagrents from different cultures that live in the same neiborhood came together in great soldarity and frendship. There are other imigrents that are unlucky and don't find jobs or houses, they have to eather leave or stay tempory with other people until they get back on their feet. In conclusion in this memoir the author created a very sad mood as you can see from the some of the spesific deatils from the story I have included." 1 2 2 +12256 5 "The mood created in the memoir, ""Narciso Rodriguez"", from Home: The Blueprints of Our Lives"", is a mixture of happiness, relaxation, and gratefulness, even thought the memoir sometimes states how @PERSON1' parents had to give up their jobs in Cuba, and how overt racism was normal and segregation prevailed in the United States at the time, giving the mood as sadness, the article mainly consists Of happy memories. An example of this can be found throughout the story, especially in the ending paragraph when Narciso Rodriguez sums up the memoir and expresses how grateful he was toward his parents and the childhood he had. Also in the third and fourth paragraphs when he talks about his neighbors and how everybody got along with eachother, and how they frequently had meals together, I find the mood to be relaxing in paragraph three and four also, but mainly in paragraph @NUM1 when he talks about his kitchen and the smells, aromas, and music that used to dance through the air. The over all mood of the memoir could be considered gratefullness. I could be considered gratefulness because Narciso Rodriguez always states how grateful he is for his parents and child hood." 3 4 4 +12257 5 "The mood in the story is very homely and happiness. The author clearly loved their childhood and was filled by great experiences and a loving background. The author was very greatful for the parents for what they have done. For moving to @LOCATION1, making sacrifices, wanting a better life for them. Also how their home was a great enviroment. always open, cozy, and loving. The mood of the cooking, family coming together, and of the cheerful music is just great." 3 3 3 +12258 5 The mood of this memoir is a good one. It describes how a house is not the same as a home (last sentence in memoir) and how family is more than just blood relatives. 1 1 1 +12259 5 The mood created by the author in the memoir is happy. It symbolizes togetherness and coming together as a family. In this passage evry one is caring and open to anyone living with them. The child in this story talks abou how greatful they are for there parints. Their happy because their all a family living together as one. Evry one is exsepting of one and another. Over all I think the mood is happy. 2 2 2 +12260 5 "The mood created by the auther in the memoir is happyness because in the memoir it describes how many memories are in his house, and it is also happyness because he mentioned his family and friends, and how peacful it is Also because he describes that there was a @CAPS1 cuban music that filled the air. He also described were his house is and he loves cooking, and he describes it as a rich culenary cooking that he loves so much." 2 2 2 +12261 5 "The author, Narciso Rodriguez, uses detailed descriptions of her childhood to create a warm, gentle, and grateful mood in the passage The memoir begins with Rodriguez explaining her Cuban heritage and how big of a role that played in her life This creates an idea of pride and love for who you are. Narcisco goes on to say how her parents were ways welcoming and inviting and how they sacrificied basically their whole life so they could make a better life for their children. In the final paragraphs the author expresses pure graditutity for everything her parents have given up and done. In one line Rodriguez praises parents when she thanks them again saying, ""there is no way to express my gratitude for the spirit of generosity and the demonstration of how important family and friends are."" All of these details contribute to the overall mood of the memoir." 2 3 3 +12262 5 "In the memoir ""Narciso Rodriguez"" by @PERSON1 he writes mainly about how grateful he is for everything he grew up with and is truly the mood created by the author. Narciso is grateful for his cuban culture and how it was incorperated into his life growing up even though he was in New Jersey. He is also grateful for his parents and the sacrafices they made for him in order to grow up in @LOCATION2. His parents also taught him to be kind to everyone, and treat everyone like family. He is grateful for that." 2 2 2 +12263 5 "The mood created by Narciso Rodriguez and his mermoir is happiness. The author creates a very happy mood in this memoir. Here he describes how the people in his neighborhood acted towards each other. ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" The people in his neighborhood were very kind and generous people. The help each other whenever one is in need. The author makes the reader smile when reading about such a place. Another example of this is when he writes, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" To see such selfless act is just wonderful. The way the people sacrificed their lives for their child's is amazing. Reading about this just warms a person's heart. Another example proving this mood is when the author writes, ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" The author is very proud of where he grow. It @MONTH1 not have been perfect but he managed to find the good parts. It is his pride that makes the readers feel happy for him. Thus, the mood created by Narciso Rodriguez in his memoir is happiness." 4 4 4 +12264 5 "There are Many ways I can explain the @CAPS1 created by the author in the @CAPS2.One way I can explain the @CAPS1 created by the author in the @CAPS2 is That he is so greatfull for having Parents that care about him and want him to get a good edication.The second way is that @CAPS1 is always happy at his home, he always has some cuban spirit in his house. his perents cook cuban food and have There Family together.The third way is that he Loved his house how his perents Made it so confortible and his perents made so many of his birthdays there, he had a great time at that house ""I will never forget how my parents turned his simple house into a home""This are some of the ways I explained the @CAPS1 created" 2 2 2 +12265 5 In this memoir the mood sounds like a happy one. An example of how you might know this is in paragraph @NUM1 when it discribed what he loved doing with his parents and family. Also throughout the whole memoir you can feel the happiness when he talks about eating dinner with all his family members and friends. One more detail about the mood is that he sounds very grateful for what his parents did and the hard choice they had to make about moving to @LOCATION1. There are some details of why I think the mood of this memoir is happiness 2 2 2 +12266 5 "The mood created by the author in the memoir is a happy setting. In the memoir, the setting is a happy setting, in a sense of living because in the passage, there are parenthesis that explain how much the narrator appreciAtes his family and his heratige. In the passage in paragraph @NUM1, it explains how the families are close and help those in need, even wheN things arent going so soomthly for them. Also there are certain words in the passage that would help with the mood, words such as selflessly, solidary, love, friendship, and sacrifice. In my opinion, this words help bring the mood to a happy, calming feeling to the passage. The ""happy"" mood is created by the authoR in this memoiR." 2 2 2 +12267 5 "The mood the author used in the memoir is showing how proud their family is. Narciso shows how greatful and proud she is that her parents would change cultures, language, and also find a new job so she could be born in @LOCATION1. The author also shows how close their family is. They have an extended family because they live with their grandparents. Narciso is very proud to live in the family she is, and grateful that her parents did all of that for her." 2 2 2 +12268 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez the mood created by the author is happiness. The author is gratefull that his parents were selfless and gave him a home in Newark, New Jersey. He is gratefull because his parents helped out other people move into @LOCATION2 and weren't selfish, the left stranger live in their home until they were ready to move on. In the last sentenee it says, ""I will never forget how my parents turned this simple house into a home. That is the mood of Narciso Rodriguez as he was growing up." 2 2 2 +12269 5 "The author created the mood of happiness that the authors parents went through such struggle, but in the end everything turned out fine because they have family. The author sets the tone of the struggle by describing the author's parents first home ""A furnished one-room apartment,"" and that ""racism was the norm and segregation prevaileel in the united States"" @CAPS1 explains how her family had a hard time with money and that people were racist to them because of teir background. But, ten @CAPS1 describes how @CAPS1 overcame the struggle of her parents and the racism by uniting with all the other immigrants living in their neiborood. ""Despite customs elsewhere , all of these cultures came together in greater solidarity and friendship"". This sets the tone that even though tere were many bad things going on, they overcame it. @CAPS1 also sets that mood when @CAPS1 describes her traditional home. @CAPS1 says there was great food, ""passionate cuban music"", and ""the congregation of family and friends"". This sentence makes the reader feel happiness that they could go through such bad times of leaving their homelands to a neiborhood full of friendship and happiness. The author sets the tone by it first descring harsh times, and then talking about how happy her home is becuse @CAPS1 had her family and friends. Overall, the author sets te tone of happiness That this family overcame struggle." 4 4 4 +12270 5 "Throughout Narciso Rodriguez's memoir, he potrays a happy, uplifting, positive mood that explains how close his family was and what being a family means to him. It also describes how grateful he is toward his parents and how proud he is of his Cuban culture.First of all, Narciso believes that to be a family, you don't have to be blood related to that person. In paragraph @NUM1, he says: "" All of these cultures came together in great solidarity and friendship. It was a close knit community"" This quote explains how much he valued his friends, neighbors, and other family members; and how all three of these categories formed the house he called home.Secondly, the mood of the memoir was not only centered around family and friends, but Narciso also showed much gratitude toward his parents. In paragraph @NUM2, it states, ""They [his parents] came selflessly, as many immigrants do, to give their children a better life"" And the later in paragraph @NUM3. he says, ""I will always be grateful for their love and sacrifice."" These two quotes explain how much he admires his parents, and this feeling of admiration and thanks played large part in the mood of Narciso's memoir.Finally, @PERSON2's Cuban pride was another large contributor in the mood of this excerpt. In paragraph @NUM4, it describes how he adores Cuban music to this day and how his ""parents created their traditional Cuban home"" @CAPS1, in paragraph @NUM5, he says, "" a Cuban feast always filled the air with not just scent and music but life and love."" This quote describes how much he cares about his culture and where his family is from.In conclusion, Narciso Rodriguez's memoir is full with a closely knit family, gratitude, and pride in his culture. And all three of these things helped make his ""house a home.""" 4 4 4 +12271 5 "The mood in the memoir is loving. It is loving because the authors parent's let pretty much anyone in need, come to live in their house. They did this because they knew if they were in need other people would do that for them." 1 1 1 +12272 5 "In this memoir ""Narciso Rodriguez"" by Narciso Rodriguez it shows the story of how a young boys home and parents have changed his life forever. Originally from @LOCATION2's parents immigrated to the United States in 1956. They started off in a small apartment then later getting the money to move into a ""simple house."" ""Growing up in this environment instilled in me a great sense that family had nothing to do with being a blood relation."" @CAPS1 some of the most loving families are not related. The mood in this memoir is inspiring to the narrator. This allows the reader to feel such love and happiness which is being expressed. ""They came selflessly as many immigrants do to give their children a better life."" The narrator is explaining what courage it took for his parents to make such an adjustment for the sake of his own happiness. Overall the memoir ""@PERSON1"" is a story full of love and should be told for generations to come. The main lesson here is don't take your family for granted, the narrator is forever grateful that his parents ""turned this simple house into a home." 2 3 3 +12273 5 "The mood in the memoir was created in a couple of different ways by the author. One of the moods that was created in the memoir was happiness. Back in his past, his parents shared all of their Cuban family recipes, they had a lot of family and friend celebrations with the rest of the neighbor hood, sharing friendship and helping others in need @CAPS1 as long as you can sea, the family and the neighbors all came together as one big family to be happy, to make a happy community, and that made the memoir happy. Another mood that was created by the author was sadness. At the end of the memoir, the author went back to the present, talking about the past times. At the end, he thanks his parents for everything. He talks about how he came around to learned the definition of family and how he learned to love. Because of this, the old memories seem to get further away, and the mood changes to sadness. The memories are growing old, but he will always remember his ""family""and his name. The author did a great job at creating those two moods and putting them into his memoir." 3 4 4 +12274 5 "The @CAPS2 is trying to describe his house when he was a kid. In this case he describes his Cuban heritage and how being @CAPS1 is really fun and amazing. The @CAPS2 is saying that the Cuban kitchen is pouring out with amazing foods and during holidays his ""Family"" would come and visit. Cuban is a very exciting culture is what pops into my head after reading this story. The mood is that festivitys and holidays are the best for him." 1 0 1 +12275 5 "The mood created by the author in the memoir would be how fortunite we are to be living here in the united States and how lucky we are to have our education and our friends and families here with us. For example in paragraph @NUM1 when he says ""I will always be greatful to my parents for their love and sacrifice."" This is the mood created by the author in the memoir." 1 1 1 +12276 5 "In the memoir, the mood created by the author is their feelings.In paragraph @NUM1, lines @NUM2, it says, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, forms the backdrop to life in our warm home.""For that quote, the authors mood is sometimes sad and sometimes happy. The author's mood about being sometimes sad is because of how they live. The author's mood about feeling sometimes happy is because no matter what happens they still have their friends and family, or each other.In paragraph @NUM3, lines @NUM3 and @NUM5, it says ""I will never forget how my parents turned this simple house into a home.""For that quote, the authors mood is srprised and thankful. The author's feeling is suprised because she would never think her parent would do that for her. The author's feeling is thanksful because thats what her parents did for her made her life better.All and all, that was the mood created by the author." 4 1 4 +12277 5 "The mood created by the author in the memoir was simply love. for his family and the people @CAPS1 him. Especially his parents who came to @LOCATION1 from cuba. And At first they struggled but they knew that there was hope and happiness in the near future. Love for his culture that came from cuba with the music and food. And most of all the place he had called home Not the space, but everything and everyone @CAPS1 him." 2 1 2 +12278 5 "The mood that Narciso Rodriguez created was a very happy and uplifting mood. It makes you feel like you were there and that you wish your family could be like that. You wish and hope that you could have a life like that where everyone will do anything for you and everyone is so close and they have dinner every night together. He makes it seem like not having any money is the best way to live. That even though you left your family, friends, jobs everything is okay because you are with each other. You are with your family but they are not your blood family. They are having so much fun with people you just met because they are so excited that they made it to @LOCATION1 and they are just having fun with their culture and tradition. The whole neighborhood is one big family they all call the older people who are living in their basement their grandparents when their real grandparents are in Cuba. It just makes you think about your family and all they do for you." 3 2 3 +12279 5 the mood of this is gratful becaause @CAPS1 is gratful of what her parents did to help her have a better life in america. @CAPS1 was gratful of how her parents left their friend and career just so @CAPS1 can have a better life. @CAPS1 is gratful they gave up alot for her 1 2 2 +12280 5 "The mood created by the author in the memoir is @CAPS1. In @CAPS2 @NUM1, he says how his parents left everything they loved to give the author a better life in @LOCATION1. In @CAPS2 @NUM2, the author says, ""I will always be grateful to my parent for their love and sacrifice."" In @CAPS2 @NUM3, the author says, ""I will never forget how my parents turned this simple house into a home."" Also, in @CAPS2 @NUM1, the author talks about how his parents @CAPS3 nothing about the country when they came and how the struggled financially when they came. Also in @CAPS2 @NUM2, the author talks about how he could not thank his parents enough for all they have done for him." 2 2 2 +12281 5 "The mood created by the author is one of loving mood. The author is very grateful for all that his parents did for him. In paragraph @NUM1 it says, ""...and a love of cooking that is still with me today (and for which I am eternally grateful)."" @CAPS1 loved how his parents loved him back too. They came to @LOCATION1 for him to have a better life. In paragraph @NUM2 it says, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their family, friends, and careers in the country they loved."" @CAPS1 loves his parents for the sacrifice they made for him. The author wrote, ""I will always be grateful to my parents for their love and sacrifice."" The author has created a loving mood in his memoir." 3 3 3 +12282 5 "The mood of the author Narciso Rodriguez was he was always proud of his culture and mom and dad. For example in paragraph two it talks about @CAPS1 where he lived and how he said that he ""Passionate Cuban music (which I adore to this day)"". ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). In the story @PERSON2 always excepted anything and was kind and always wanted to see his parents smile. And he was positive and honest. And he even talked about his community ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" And Narciso also said ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love.""" 3 3 3 +12283 5 "The way this author wrote this memoir, he @CAPS1 created multiple moods. The main mood he created was thankfulness. He continues on about how thankfull he is that his parents aborted their lives to make his life better. The author really emphasizes how thankful he is that his parents did this for him. Since his parents did this for him he has even become a clothing designer. The author of this memoir is very thankfull. This author also creates other moods such as happieness and sadness. This author creates many moods in this memoir." 1 2 2 +12284 5 "The mood conveyed in the memoir is love. The author talks about how thankful he is for his parents love and sacrifice. In other words, he loves his parents because of the love they showed him. Also, the author discusses the unity and love between his family and neighbors. Although they weren't blood related, they formed family-like relationships. Furthermore, the author states, ""a cuban feast always filled the air with not just scent and music but life and love."" Just the mere smell of his mother's cooking brought love to the entire room. To conclude, the author used many examples to explain to readers the love that was shared in his home." 2 2 2 +12285 5 In the @ORGANIZATION1. Narciso Rodriguez tells about his life at home when he was a child. The mood of this story is happy because he tells how selflessness his parents were and how his family always looked out for one another even though they werent the richest family they still stuck together. In paragraph @NUM1 it says how the teachings have stuck with him his whole life and how import family and his friends were to him which creates a warm setting. 2 1 2 +12286 5 The author mood is happy Narciso's was talk about have a family in just one little apartment bliuding and thank them for all @CAPS1 had and what @CAPS1 got 1 1 1 +12287 5 "In the memoir by Narciso Rodriguez he created a mood of happiness and joyfulness. Narciso Rodriguez creates this mood by showing the generosity his parents have towards their son, family and friends. I also feel another mood that Narciso expresses is love.iI say this because his parents sacrifice everything they had because they wanted a better Life for their son. ""The faith that this struggle with lead them and their children to better times dove them to endure these hard times"". In this quote is love. Narciso's parent's new that for him to have a better life they would need to sacrifice thirs. That is why i feel love is a mood protrayed in the memoir." 3 2 3 +12288 5 "The mood created by the author in the memoir was in a very thankful mood. The author shows how proud @CAPS1 was of his parents and how thankful @CAPS1 is. @CAPS1 also like His new enviroment, and his surprised how all the cultures fit together with No problem. @CAPS1 also explains how grateful @CAPS1 was to His parents for their love and sacrifice. In conclusion @CAPS1 was very proud and thankful to his parents." 2 1 2 +12289 5 The mood created by the author in the memoir is a mood of happiness and thankfulness. In the memoir the author talks about how greatful he is to his parents and how happy he was when he lived with them. 1 1 1 +12290 5 "In the memoir Narciso Rodriguez The auther makes the mood seem fermiluar and loving. He created a mood very uplifting and loving as if to say your childhood and family is the heart of your home. In paragraph two the author states that he had lived in a home were celibrations, that formed a backdrop to life in his warm home. What the auther means is, family and friends made the home feel enviting and comterable. The author also explans restating from paragraph four ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This scentence explains that even if there friends and family had no were to go, they were always welcome in their home. This memoir creats a very loving mood. In the last paragraph the author explains that home is were he learned the real definition of family and love." 3 3 3 +12291 5 "There are Three Things That discribe The @CAPS1 in This memior. one of Them is The authors love for his Cuban heritage. ""@CAPS2 cuban music [which I love to this day] filled the air, Mixing The aroma of the kitchen. Another way The author discribes The @CAPS1 is The houses his parents owned. ""In 1961, I was born into this simple house, situated in a two-family, blond-brick building in The @CAPS4 bound @CAPS5 of Newark, New Jersey"". The last thing That discribes The @CAPS1 is The love and sacrifice That They gave there son. ""It was in This simple house That My Parents Welcomed other refugees To celebrate @CAPS7 arrival To This country and where I Celebrated My first birthdays. ""Cuban food and music were every were."" This is how the author discribes The @CAPS1 in This @CAPS9." 3 3 3 +12292 5 The mood in the memoir is happy and thankful. I think this because the memoir is talking about how this boy apreshiates that his parents moved just so he can have a better life. I know this because in the last paragraph the boy talks about his family and how he will never forget how his parents turned a simple house to a home. So thats the mood of the memoir. 2 1 2 +12293 5 "In the memoir, the author created a mood. The mood was a very good one that shows everyone that reads it, that the human race can be genuinely kind and helpful. No matter what race you are or where you come from, you don't have to be blood related to be ""family"" and we can all extend a hand to the people that need the most help. The author's parents gave him great love and sacrificed alot for him; @CAPS1 is very thankful to them for that. @CAPS1 tells them that what they did was a much more courageous thing then @CAPS1 could've ever done and @CAPS1 has great admiration for their strength and perseverance. Being an immagrant you have to be unselfish because most parents do it to give their children a better life. The author learned the real definition of ""family"" and for that, @CAPS1 said @CAPS1'll never forget that house or the many things about how to love. In the memoir, it creates a peaceful mood." 3 2 3 +12294 5 "The mood created by the arthur in the memoir is to never forget what home is if you ever move away or you grow up and you move. its okay because you will have better memories there at your new house and also if you have the nastest house, you can always make it into the cleanest house it just takes time, and effort. Everyone can do it. It don't matter what you look like or anything, and what you house looks like you still are you." 0 0 0 +12295 5 "The mood the author created in the memoir loving and happiness. The mood was happiness and loving toward his two parents. Quote: ""I will alway be grateful to my parent for their love and sacrifice."" The mood show that the author had a great childhood and loved his neighborhood very much. Quote: ""I will never forget that house or its gracious neighborhood or the many thing I learned there about how to love."" The mood the author created also showed that he didn't care if they didn't have a lot of money, he loved it where he lived and all the people that live in it, even if they weren't a blood relative. Quote: ""Growing up in this enviroment instilled in me a great sense that family had nothing to do with being a blond relative."" To wrap it all up, the mood the author created in the memoir was about love and happiness." 3 3 3 +12296 5 "The author in the memoir tried to create a specific mood. This mood is appreciation. He is saying all the things he is thankful for. ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly..."" In this quote he is thanking and appreciating all the work his parents went through to give him a good life. He is also admiring the things they went through such as leaving behind their families, and careers in the country they loved. He is greatful for the house he lived in and he looks back at the memories of them cooking in the kitchen again, with the smells of Cuban foods, and sounds of Cuban music. He expresses all of this in the last few lines of the memoir that state: ""And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" In conclusion, the author's memoir is all about his appreciation of the good things that came to him in his childhood, and the memories he will never forget" 3 4 4 +12297 5 "In the excerpt ""Narciso Rodriguez"" from Home: The Blueprints of our Lives the author leaves a friendly, compassionate, and graceful mood. This excerpt leaves a friendly mood because of how much friendlyness is given by Narciso Rodriguez neighborhood at his younge age' In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and frienship. It was a close-knit community of honest, hard working immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" (@CAPS1 @NUM1) Also this excerpt leaves a compassionate mood because of how much compassion Narciso's parents showed to familys of friends who need a push or help to stand on their feet once again. ""countless extended family members came and went-and there was often someone stying with us temporarily until they were able to get back on their feet. My parents always kept their arms and their door open to the many people we considered family..."" (@CAPS1 @NUM2) Rodriguez leaes a grateful mood when he continues to thank his parents for their love. ""I will always be greater to my parents for their love and sacrifize... Admiration for their strength and perseverance.. and these teachings have been the basic of my life. Rodriguez uses these wonderful moods to describe his wonderful parents." 3 3 3 +12298 5 "The mood created by the author in the memoir is one that is used in lots of memoirs because they are like thing's: someone will never forget like the author said ""my parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally gratefull). Passionate cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen. That's all stuff that he will never forget." 2 1 2 +12299 5 "The mood in this memoir ranges from happiness to love. One type of mood in this story is uplifting hapiness. You can see that because throughout the story there is so much positivity and warmth. It is almost contagious how the author tells the story of his cherished years of childhood which is made up of hapiness. One example is, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This quote emphasizes the hapiness and uplifting cheer from the authors endless childhood of home. Another mood this memoir gives is gratefulness and gratitude to the authors family and home. For example, ""I will always be grateful to my parents for their love and sacrifice."" This quote shows that the author can only give thanks to his loving parents who did everything to insure a great life. The author grew up loving his home filled with culture and family. A third mood in this memoir is compassion and dedication. This memoir shows that because even with moving to a new country with new people the family still keeps his childhood filled with culture of who they are. They don't hide it because of their struggles and hardships or anything. An example of compassion and dedication is, ""in our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" This quote shows that they keep constant custom of their cultures warmth and detiration. Nothing has stopped them from living life how they chose." 4 4 4 +12300 5 The mood created by the author in the memoir is lifting. The mood created by the author is lifting because it shows that race doesn't matter when it comes to unity or friendship. It is also lifting because Narciso's parents gave up everything and everyone so that their family can live a better life. Another reason why it is lifting is because in the story it talks about how the family doesn't have to neccisarily blood related and can be someone you love and will help you. That is why I think the mood created by the author in the memoir is lifting. 2 2 2 +12301 5 "The Originally from cuba arrived in the United States in 1956. After living for a year in a furnshed one-room aparment @NUM1 old Rawedia maria and @NUM2 year old @PERSON1. In 1961, I was Born into this simple house, situated in a @NUM3 family, blond-brick building in the Ironbound section of Newark, New Jersey. They came selflessly, as many immigrants do, to give their children a better life. They showed me with their lives and these teaching have been the basis of my life. Now he have good live because move to United States." 1 1 1 +12302 5 "The mood in ""Narciso Rodriguez"" is very warm and calm. There can be a lot of drama in a family, but @PERSON1 his backround and how much he loves his family and the people in his neighborhood. In paragraph @NUM1 he says, ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" In the first paragraph Narciso @PERSON1 how he tackes in his culture. I says, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" Narciso @PERSON1 love and gratefulness in this excerpt, ""Narciso Rodriguez""." 2 2 2 +12303 5 "The mood created by the author in the memoir is that he was grateful in the beginning of his memoir. Evidence from the text that supported this is paragraph @NUM1 it stated ""(and for which I am eternally grateful.)""The second mood created by the author in the memoir is that he was thankful. He was thankful because his parants were immigrants and came to the country without knowing any language or the cultureThe last mood created by the author in the memoir was that he felt loved. He felted loved because his parents sacrifice for him. They welcomed many things in Narciso life. those are three moods that were created by the author in the memoir" 2 3 3 +12304 5 The mood the author created was a good mood. It is a good mood because it is telling you about his life he has. He has a good life because he has good and nice parents. He is wealthy. He has no trouble like getting punished. His parents are wealthy and they have a good job. The author did a good job make this story happy and not sad. 1 1 1 +12305 5 "The mood in the @ORGANIZATION1 is displayed as happieness and appreciation. Narciso understands how much his parents had given up for him by moving from Cuba to @LOCATION1. They also have always stood by his side and made sure there was only positive attitudes around him. He appreciates this so much he ends the @ORGANIZATION1 saying ""I will never forget how my parents turned this simple house into a home"". by this he is saying it was a house that could shelter you, but a home is somewhere you want to be with family where you feel safe and comfortable. The happieness comes from the appreciation because you cant appreciat something and it doesn't make you make a little bit happier. his happieness is also portrayed in paragraph @NUM1 where he starts by saying ""I will always be greatfull to my parents for their love and sacrifice""." 3 3 3 +12306 5 "The mood created by the author, @PERSON1, is a upbeat & happy mood. I know this because he states that he is very grateful for his parents to pass down the cooking recipes and skills, and the Cuban music that they would listen to.This is the mood @PERSON1 creates in the memoir." 2 2 2 +12307 5 "The mood in the memoir, that the author is trying to @CAPS1 you is. That it is calm, and in its own way the mood Kind of leads to forgiveness and @CAPS2. Because the memoir is mostly trying to tell you that no matter where you go you never forget about your family. And that the memories are much better then the reality that you live in. And no matter how far you deciede to go, to a different Country. Never forget who gave you birth. And who loves you. Which really means family. And friends. But the @CAPS3 That they describe in the @CAPS4. He decieds to leave his family to go to america and to get an education. And do something big with his life. And he is going through other things to like, the other People are thinking of him as a immagrant. And how the rest of the family @CAPS5 leave there @CAPS6. But the family to them that really didnt mean anything to them. In there house they left there door open to any family that needs help, or that there going through the same thing as what their family is going through. So thats the mood that the author is trying to describe to you." 1 1 1 +12308 5 In the memoir Narciso Rodriguez from Home: The Blueprints of Our Lives the aurthor displays a mood. The mood is very calm and grateful as he explains how he feels to have his cuban culture and lifestyle. Explaining how his family loves cooking and playing music. The author just explains how he lived when he was with his parents. Then the author gets more detailed talking about who lived with him like his landlord and his daughter; his two granparents and others. The author just creates a calm and grateful mood to this memoir. 2 2 2 +12309 5 "In the memoir ""Narciso Rodriguez,"" by Narciso Rodriguez, there is a specific mood created. The mood is proud, because the author goes on about how amazing their parents are & how inviting the house was. In the memoir it says, ""Within its walls, my young parents created our traditional Cuban home, the very heart of which was the kitchen. My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" The author talks about how his/her home was full of Cuban culture and how great Cuban food is. The author also says, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative... In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" The author is grateful and proud because her parents welcomed with open arms people of all types. The author was also proud that he/she was so close with neighbors that they were like relatives. This is why the mood created in the memoir is proud." 3 3 3 +12310 5 "The mood of the story is happy. Everyone spend time with their family, having fun together, celebrating together would give you a happy feeling of what a family is. It's like how the family in the story moved to the United States, they first doesn't know anyone, they haver no friends. They are living in an apartment that has one room, but years later, they moved to a @NUM1-room apartment. There live a family with a borned baby above them. the baby is the job for the main character (baby sitter) and also the main character's first friend. To the main character, friendships and home is very important to him. If there's no friendships and home, there will be no love. These taught the main character how to love and how to care about someone. else. The main character said friendship and home is the basis in his life, he understand without letting his parents teach him. When you have friendship, home, and love, everything will be perfect for you. All you need is a support from your family. You will be always happy and feel very lucky that you have all of these things." 2 3 3 +12311 5 The mood the other Created was how happy narciso was because her parents gave up so much for her to have a better life and education in america. 1 2 2 +12312 5 "The @CAPS1 is trying to make the reader understand Narciso Rodriguez feelings by describing how little Narciso had grown up with and how hard it must have been for him to live in that type of enviroment and home. for example ""In 1961 i was born into this simple house, situated two-family, blond brick building in the Ironbound section of Newark, New Jersey."" This quote @CAPS4 how even from his early days being as a child Narciso was still living in poor enviroments and did not have much at all. The @CAPS1 @CAPS4 the unhappiness in the Rodriguez family and how they are struggling to make everything better @CAPS2 the end of the memior the @CAPS1 @CAPS4 the happiness and how proud the family is because they are now doing a lot better then they were before. for example ""I will never forget how my parents turned a house into a home"". Again this grate @CAPS4 how proud they are to be living in a much better place and enviroment, And had to struggle to get where they are now" 4 2 3 +12313 5 "In the memoir of Narciso Rodriguez is a nonstalgic mood is created from his memories. The mood is created by his parents and where he lives. One way the mood is nonstalgic is he's grateful towards his parents. ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was much more courageous thing than I could have ever done"" (@CAPS1 @NUM1). By being grateful towards his parents, he is helping the nonstalgic mood grow. Also, where he live helps the mood. ""And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turn this simple house into a home those"" (@CAPS1 @NUM2). Since his parents turned his house, to a home he will never forget what they did for him, making this memoir more nonstalgic. In the memoir of Narciso Rodriguez, he creates a nonstalgic mood from the memories of his past." 3 3 3 +12314 5 "There are few moods created. They are comfort, Love and sacrifice. Comfort because of the way @PERSON1 described his home, parents, and neigborhood families. Love because his parents loved him and each other very much, and they cared about what they did and their family. Sacrifice because his parents sacrificed their comforting home to move to @LOCATION1 for their son. That was difficult for them, but @ORGANIZATION1 appreciated that. He loves his parents what they did for him." 2 2 2 +12315 5 "There Were many moods set by the @CAPS1 in the memoir. one of the moods was happiness. Narciso had a very happy family. They had many friends and Were thankful. Another mood the @CAPS1 set Was being proud. He was so proud to have parents who cared so much and had such selflessness. A third mood in the memoir is love. Narciso and his family Were loved by many and they also loved many back. His parents arms and doors Were open at all times for anybody needed to get back on their feet. Narciso was grateful to have such a great family (including extended). Throughout this memoir there was moods of caring, loving, grateful, & happiness. Those Were the moods the @CAPS1 set into this memoir." 2 3 3 +12316 5 "The mood created by the author was very greatful and outgoing.The person was very greatful to grow up and be able to live in @LOCATION1. He loved how his parents gave up everything and were selfless so their kids could live normal lives and do what they wanted to do.The kids parents were very outgoing because they gave up everything they had in their lives in Cuba, so they could give everything they ever wanted to their kids in @LOCATION1." 1 2 2 +12317 5 In the non- fiction book The @CAPS1 prints of our lives by Narciso Rodriguez he talks about his family and where he lived before he was this famous fashion designer. The mood that is given off by this biography is a sad and happy mood. He talks about family we originally from Cuba and how they arrived in the United States 1956. He said that after living for a year in a furnished one room apartment he moved into a three room apartment that he would call home. He has a lot of happy memorys from his apartment. Alegria was his baby-sitter and became his first friend.Narciso Rodriguez gives a mood to the story that is very uplifting and sad at the same time. 1 1 1 +12318 5 "The mood creatd by the author in the memoir is a happy, loving, and thankful mood. Passionate Cuban music filled the air, mixing with the aromas of the kitchen. This is saying that there was a fun vibe in his house when he was growing up which makes you feel happy. ""Growing up in this environment it instilled in me a greate sense that 'family' had nothing to do with being a blood relative."" Here he is talking about the fact that he loves his family, even if he isn't a blood relative with them, that puts me in a loving mood. ""I will always be grateful to my parents for their love and sacrifice."" What he was saying was he was grateful to his parents for what they did for him so that makes me feel thankful for my parents. That was the mood I felt created by the author in the memoir." 4 3 4 +12319 5 "I think the mood of the story is being gratefull. I think this because in the story it says Narciso thank his parents for their love and sacrifice.Also because in the story, Narciso says that his parents turned a simple house into a home. Which means they were kind and selfless.And he says that ""the warmth of the kitchen of his humble house where a cuban feast always filled the air with not just scent and music but life and love." 3 1 2 +12320 5 "In this memoir, the mood is very pleasant and makes you think of childhood memories. The reason is because he talks about how his parents guided him to be a strong-willed man, and he couldn't have done it unless he had the conditions he did then. He seems to think that if he didnt have the parents and oppurtunities he did then, his life would have been much different. So, the mood in this poem makes you feel like home is where the heart is." 2 1 2 +12321 5 "The mood created by the author, Narciso Rodriguez, in his memoirs is very proud of his parents and happy. ""... lived above us, and Alegria graced our kitchen table more often than not."" The author is happy, remembering memories, which are not unhappy or unpleasant. It's not romantic, lonely, or sad, it's happy, fun-filled, friendly, and fulfilled. ""I will never forget how my parents turned this simple house into a home."" Narciso is very appreciative of his parents, moving so @CAPS1 could have a better life and education than them. @CAPS1 expresses his gratitude toward them a lot. ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 writes about how @CAPS1 told them what they did was a more courageous thing than @CAPS1 ever could have done, and his admiration for their perseverance and strength. @CAPS1 really does love and appreciate his parents and everything they did for him, that being a main theme of the memoir. The mood @CAPS2 and created by Narciso Rodriguez is proud and admiring of his parents, and very happy." 2 3 3 +12322 5 "The mood created by the author in the memoir. First, the mood of history is that the author wanted represent the history of a family that came to @LOCATION1. Second, the history is nice because the son of the family was born in the @LOCATION1, and the author tried to represent the nationality of a @CAPS1 that the parents are other nationality, they Know how to live with son." 1 1 1 +12323 5 "In the story ""@PERSON1"", the mood created by the author is loving and peaceful. For example, Passionate Cuban music filled the air, mixing the aroma of the kitchen. This shows that the home is peaceful. Another example is, ""My parents always kept their arms and the door open to the many people we consider family. This shows her family is kind and loving. lastly, I will always be grateful to my parents for their love and sacrifice. They shows she loves her parents very much and always will. In conclusion, that is the mood wich is loving and peaceful created by the author." 3 3 3 +12324 5 "The mood created by the @CAPS1 in this memoir is mostly grateful through the memoir. It's grateful well because the @CAPS1 talks about how thankful he is that he has such loving Parents who risked sacrifised their Jobs, and @CAPS2 everything they had back in Cuba to go to the united states where they did not know the language, had no money, and at the moment no shelter. I know it is grateful because the @CAPS1 clearly says ""I will always be grateful to my Parents For their love and Sacrifice."" this pin-points the mood as well as throughout the excerpt the @CAPS1 speaks about his gratefulness to his Parents. In conclusion the mood to wards the article I think happens to be grateful." 3 2 3 +12325 5 The mood created by the author in the memoir is loving. The mood of the memoir is loving because Narciso's home reminds him of his old country. The author talks about his grand parents not being able to come to @LOCATION1 until 1970. Narciso's house was turned into a home that reminded him of Cuba. 1 1 1 +12326 5 The mood by the outhor in the memoir is it about family culture and how I'd be in a house with your family friends ond how it's important and in the story it saing that Narciso Rodriguez parents move and how he is living and it saing how these cultures come together in great solidarity and friendship And Narciso Rodriguez parents olwoys kept their door open to the people that they considered as family that they would do the same us them. And Narciso Rodriguez always be grateful to his parents for their love and sacrifice they have for him and he said that he never is going to forget that house that he was live in or its gracious neighborhood that was so greateful for him and the things that he learned with his neighborhood how to love And he said he will never forget how his parents turned his simple house into a home. And thats how it's in Narciso Rodriguez house with his neighborhood that he like to be with 3 2 3 +12327 5 "This memoir definatley has a strong and apperent mood, and that mood stands out to me as Narciso being grateful, he is obiously very thankfull to his parents and family. I know this because the memoir says ""I will always be grateful to my parents for their love and sacrifice"" This quote really shows that @PERSON1 is thankfull for his parent's love for him.This mood comes out in the memoir when @PERSON2 says ""But, in reality there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important Family and @CAPS1 are."" This quote shows how he is thankfull for his Family, but also how his Family shaped him as a person.In all, There are many emotions in this story, but the one that @CAPS2 out to me the most was him being gratefull." 3 3 3 +12328 5 "The author created a mood of immense gratefulness. The author knows that not every family (Cuban or possibly @CAPS1) can all get together and be truly happy and grateful for what they have. Not every family can work well with everyone else. Not every family can have the satisfaction of sharing and giving to others. This is a feeling of gratefulness because of the parents. The authors consistantly praises them on their courageous acts, and even going against the law to help those in need. The parens brought such happiness by welcoming those who are different and sharing happiness with them. The author had an incredible experience and is eternally grateful for having such wonderful parents that she had." 2 2 2 +12329 5 "The mood created by the author of the memoir is thankfulness. The mood is thankfullness because through the whole memoir the author is looking back on his life and is explaining how thankfull @CAPS1 is. In the memoir the author says ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done."" @CAPS1 also expressed the importance of family and friends. @CAPS1 states that by stateing ""it was here where I learned the real definition of family.""" 2 2 2 +12330 5 "The mood created by the author is gratefulness. The author created this mood by telling the reader how grateful she was to her parents for their love and sacrifice. The author was grateful to her parents because when they moved to the United States, they had to start their lives over entirerly. Meaning that had to find all new jobs.The author explained her greatfulness by telling her parents that what they did was much more courageous than she could ever do. The author also said that there was no way to express her gratitude for the generosity impressed upon her at such an early age." 2 2 2 +12331 5 The author gave a loving mood in the memoir. I know this becacus he did not talk badily about anything and he talked about how his parents helped him and other people as a kit. in paragraph two he was talking about how his house was nice and comsortabur. I know this because he sais. the love of cooking and the passioniate Cuban music. 1 1 1 +12332 5 "A) The mood that was created in this memoir was a basic mood. It wasn't a happy or sad in was a flat mood, because Its talking about how their in debt needed to move the kid lost all of his friends. The kid can't attend school because they can't afford any type of education. so that is why its a basic or flat mood. I also belive its a basic mood because it says that ""kids have to do a lot of the work"" because They are the youngest and the older can't do that work or they will get hurt. Towards the end It gets to a happy mood because it say ""my parents will always be there for me.""" 2 1 1 +12333 5 "The mood created by the author in the memoir was very loving, thankful, and happy. The author described the love of his family throughout this memoir and his friends also. He thanks his parents for giving him a good life and he is grateful for their love and sacrafice. He also describes happiness in the kitchen, the heart of the house." 1 2 2 +12334 5 "In the memoir @PERSON1 written by @PERSON1 the mood is happiness. First, Rodriguez writes, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)"" (paragraph @NUM1) Narciso's parents have a great skill and love for cooking, now Narciso has a great love and skill for cooking as well. Both of which he is still happy to have today. Finally, @PERSON1 writes, ""And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into home"" (paragraph @NUM2) Narciso learned about love in the house. his parents had a @NUM3 room house, but there were able to turn it into home. The size of the house does not matter, it matters who you are there with. in conclusion Narciso is greatful and happy for everything his parents have done for him. " 3 3 3 +12335 5 "@PERSON1 wrote this memoir in a happy, warm, senseful way. He was able to describe in great detail what went on in his house during his childhood and how caring and loving his parents were. Not just to him but to almost anybody. Anyone that was considered family was allowed in and he was also grateful to be Cuban and for the foods he was able to eat and the beautiful aromas in his Cuban kitchen. His description of this home is very soothing to me because it just has a happy background and his talk so highly of. It is a tempting place to attend life in this "make the best of" little Cuban home." 2 2 2 +12336 5 I think the mood to author created was proud and happy. Because he got to come to the United States. And live a better life as a immigrant. And he got to get a better education and he is proud and thankful to have parents like that. 1 1 1 +12337 5 "The mood the author gave in the @CAPS1. was a very happy, thoughful, respectful, thankful, moved when he explained his reason and his thoughts, him expressing his family life was very nice he said the best things his parents did for him was to leave there family in cuba and start a new life in @LOCATION1 for new life and, future, also he expressed that he always thanked his parents for what they have done for him. but he knew that wasn't the best way it was just that he had to prove he was thankful." 2 2 2 +12338 5 "The life @PERSON1 lived as a child was a paradise in his eyes. He learned what a family really was, people who cares for eachother no matter what. And in his eyes, his whole community was one big family. His parents were kind, giving and generous to everyone. Despite the different customs elsewhere, all of these cultures were united as one family. They would lend a hand for anyone who needed it, because they know that they'd do the same for them. Throughout his life, he'd never forget his wonderful childhood and all the things he was taught, @CAPS1 and Generosity." 2 2 2 +12339 5 "In this memoir,"" @PERSON1, he is feeling loving when he wrote this. One @CAPS1 is when he says, ""They came selflessly, as many immigrants do, to give there children a better life..."" is showing an @CAPS1 of love. Also, when he says, ""I will always be grateful to my parents for their love and sacrifice. Last @CAPS1 is when he said, ""I will never forget how my parents turned this simple house into a home. In this memoir, you can tell @PERSON1 really cares about his family, especially his loving parents." 3 2 3 +12340 5 "In the memoir, ""Home: The Blueprints of Our Lives,"" the author, Narciso Rodriguez created a mood throughout the memoir of his home and Family. Narciso talks about how lucky he was to have had such a wonderful home where he belonged and a family that was always there for him. Narciso put it best in the last few lines of his memoir that say ""I will never forget that house or its gracious neighborhood or many things I learned there about how to love. I will never forget how my parents turned this simple house into a home.""A big mood in the memoir was a feeling of warmth and happiness, an enviroment where everyone was family, a strong sense of community, togetherness and belonging, that love, care, family and friendship is always there, and that this was home, always and forever. ""In our neighborhood,... all of these cultures came together in great solidarity and friendship. It was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need... My parents always kept their arms and their doors open to the many people we consider family, knowing they would do the same for us.""@CAPS1 mood in the memoir was a feeling of strong love and gratefulness Narciso felt for his parents. They were strong, courageous, selfless and brave, and they gave up so much to give Narciso a better life."" I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done."" The author created a mood of his home and family in the memoir, ""Home: The Blueprints of Our Lives.""" 3 4 4 +12341 5 "The author has many moods in the memoir. One of his moods is that he is happy. ""A cuban feast always filled the air with not just scent and music but life and Love"". This quote shows that he is happy. Another mood is that he is grateful. ""I will always be grateful to my parents for their love and sacrifice."" This proves that he is grateful. These are the authors mood in the memoir." 2 2 2 +12342 5 "I the memoir ""Narciso Rodriguez"" from Home: The Blueprints of our lives, the mood created by the author is about a cuban that came to american without knowing the language and having no money they made it. It wasn't easy though and for that, that is why Narciso is so grateful. She also tells about how alot of people have came and gone because her parents have open arms to anyone." 1 1 1 +12343 5 "The mood in this memoir is gratefulness. This memoir is basically about how grateful the author is to his parents.The author is grateful to his parents because of their love and sacrifice. The quote, ""In the United States, they had to start their lives over entirely."" From this quote, I can see why the author is grateful. His parents decided to immigrate to give him a better life, at the expense of their families, friends, jobs, and their country.Another reason why the author was grateful was because the author learned that ""family"" was not just a blood relative, but much more. In the piece of text, ""In our neighborhood, despite customs everywhere, all of those cultures came together in great solidarity and friendship. From this snippet, I can tell that the author was grateful for learning the true meaning of family. He learned a ""family"" was a unity of people that helped each other.The reason why the author was grateful was because of their courage. In the text, the quote, ""They struggled both personally and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardships."" From this quote, I can gather that his parents were grateful. Most people would've given up from the tall and wide barrier in their way. His parents could've given up, but they didn't. I think it's reasonable the authors should be grateful for his parent's courage.In conclusion, I believe the mood of the memoir is gratefulness, because the author's parents have done everything they could to make it easier for him." 4 4 4 +12344 5 The mood created by the author in the memoir is a happy mood because the memoir is about how one parents sacraficid all they have for their child and then they chanced a house into a life time of good memories. 1 1 1 +12345 5 The author is telling us a story about a kid that Just came to the United States. He is only @NUM1 years old & he likes it. A man named narciso @PERSON1 is a memoir to all the people. 0 0 0 +12346 5 In this memoir author makes the mood happy. One example is when they talk about all being a family and letting people stay. Another is when they are talking about the racism and other things but says how the neighbors have united. All in all the mood for the memoir was happy. 1 2 2 +12347 5 "The overall mood created by the author, Narciso Rodriguez, in the memoir is very warm, loving, and shows great unity at his old home and family. In paragraph @NUM1, Narciso talks about the great selflessness and courage that his parents had when they immigrated to @LOCATION2. Narciso talks about how grateful he is to them, for leaving their homeland so that he could have a better life. During the @NUM2 and @NUM3 paragraphs of the memoir, Narciso describes the warms and generosity of his family. He also showed how family doesn't necessarily mean a blood relative. His family came from Cuba, but there were also other cultures in their neighborhood such as @CAPS1, and also Spanish immigrants as well This loving and extremely rich cultural background that he had lived in as a child showed great unity between different types of people. Narciso's family's door was always open to anyone in need. Narciso Rodriguez's definition of family, shows that his background was full of sharing, joy, and love all squeezed into his small apartment in New Jersey." 3 4 4 +12348 5 "In today's aspects, @PERSON1 wouldn't be considered wealthy, but underneath material, he is more wealthy than most people will ever be. For example, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a relative."" Family is very valuable, and a great wealth to Narciso, and throughout the memoir he keeps bringing the feelings of family. It's seem like that emotion was give that held everything together and would make it all ok! He also experiences great gratitude towards his parents and his neighbors; ""But in reality, there is no way to express my gratitude for the spirit and generosity impressed on me at a such an early age and be demonstration or how important family and friends are."" I think the overall mood of this memoir is very warm, and optemistic about life. They make the best of their situation, and that really made an impression on Narciso. ""I will never forget how my parents turned this simple house into a home."" " 3 3 3 +12349 5 "The mood created by the author is @CAPS1, @CAPS2, and relaxing. I think that because all he's talking about is his family and how much his parents did for him. For example in @CAPS3 @NUM1 it says ""I will never forget how my Parents turned this simple house into a home."" To me that sounds like @CAPS2 because he knows he can always come home to his Parents if he ever need help. Another example is in @CAPS3 @NUM1 it says ""I learned there about how to love"". That to me sounds like when he was growing up it was rough and he never actually loved some one in his life until now." 1 3 2 +12350 5 "The mood created by Narciso Rodriguez in from Home: The Blueprints of Our Lives is immense gratitude, happiness, and admiration. Rodriguez describes his home @CAPS1 writes, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home"" (@NUM1). Rodriguez expresses happiness reminiscing about his home that was ""warm."" @CAPS2, the mood shows admiration towards his parents. @CAPS1 writes, ""My mother and father had come to this country with such courage, withot any knowledge of the language or the culture"" (@NUM2). Rodriguez admires his parents for coming to @LOCATION1, ready to work hard, despite the problem of knowing nothing about the country. Lastly, the mood can be described as thankfulness, or gratitude. Rodriguez writes, ""I will never forget how my parents turned this simple house into a home"" (@NUM3). The house was more than just the physical part; his parents filled it with love and compassion, and Narciso Rodriguez is extremely greatful The overall mood of the passage is greatfulness and happiness" 3 3 3 +12351 5 "In the memoir from ""Home: The Blueprints of Our Lives"" the creates a good mood of accomplishment. The mood first develops in the first paragraph, when Narciso writes of his parents immigrating from Cuba and being able to move up from a one room to a three room apartment. The second appearance of this mood is when the author writes of how their community came together and helped eachother through the segregation and racism of the time period. The third and last demonstration of the mood is how the parents took what they could get and made their house, into a home. Accomplishment, is the mood created by Narciso Rodriguez in his memoir from ""Home: The Blueprints of Our Lives""." 2 3 3 +12352 5 "The mood of this memoir was appreciative. The author reflects upon his experiences at home in a positive manner which expresses the fact that he is thankful for what he had. ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and love of cooking that is still with me today (and for which I am eternally grateful) (paragraph @NUM1). This quote shows Narciso's appreciation for the culinary skills his parents passed down to him. The extra information in the parentheses also provide a grateful tone to the piece of writing. Also in paragraph @NUM2 it says, ""I will always be grateful to my parents for their love and sacrifice."" The language used (grateful) shows the intence thankfulness he feels. Throughout the entire reading the word ""grateful"" is used repeadtly. The use of repetition provides a reader with the knowledge that that word is very important. So grateful appears to be a keyword. Also, later in paragraph @NUM2 it says ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed on me at such a young age"" There is so much passion in this phrase. ""There is no way to express my gratitude"" shows that he's just so thankful there is not way to even express it. The author really shows the reader that he is appreicative of his family." 3 3 3 +12353 5 "The mood that Narciso Rodriguez protrayed very strongly in ""Narciso Rodriguez"" is gratitude. In the memo I @CAPS1 mentions how thankful @CAPS1 truly is to his parents for giving him a life of family, and happiness, love etc. For example @CAPS1 thanks them for their ""rich culinary skills and love of cooking that is still with me today (and for which I am extremely grateful)."" Narciso is grateful in a way @CAPS1 could never be able to show them his gratitude. ""... I've thanked them repeatedly. But, in reality, there is no way to express my gratitude for the spirit of generosity..."" Narciso ""will always be greatful to his parents for their love and sacrifice."" @CAPS1 is greatful for what they did for a better life, for showing him happiness, family, love and sacrifice. Overall the main mood of this memoir is gratitude." 3 3 3 +12354 5 "The mood created by the author in the memoir Come in different ways. The first mood giving is greatful, in the ""Skills and the love of cooking that is still with me today"" @CAPS1 mood of greatful is ""I will always be greatful to my parents for their love and sacrifice"" The mood of Admiration, ""I often told them of my admiration for their strength and perseverance. In this memoir there was a lot of moods, the ones the stood out from the author was his greatfulness and admiration." 2 2 2 +12355 5 "The mood created by the author in the memoir of Narciso Rodriguez is gratefulness. The mood created by the author in the memior of Narciso Rodriguez is gratefull. The author's memior is grateful especially according to paragraphs five, six, and seven. Paragraph five talks about how grateful he is for his mother and father to come to the United States with such courage, without having any knowledge of the language or of the culture. ""The faith that this struggle would them and their children to better times drove them to endure these hard times."" ""I will always be grateful to my parents for their love and sacrifice"" is what starts off paragraph six. The author explains how he has been telling his parents of how much more courageous their plan was then his would have ever been. The author also says how he admired how much strength and perseverance his parents had and how he has thanked them repeatedly. His parent taught him two lessons with out telling him, but with their lives, ""and these teachings have been the basis of my life"", the author states. Finally in the last paragraph the very last sentence says ""I will never forget how my parents turned this simple house into a home."" which ultimately shows how grateful Narciso Rodriguez truly is." 3 4 4 +12356 5 The authors @CAPS1 was good because the story is kind of happyness. 1 1 1 +12357 5 "the mood in the memoir can be exaessed in many different ways. The memoir is mostly eprssed with gratitude from Narciso to his parents. He describes in good detail all the sacrifices his parents made for him. Leaving behind all their friends and family, the hot climate, and their cultures back in Cuba. Another mood expressed in the memoir is love and kindness. Narciso's parents were kind to everyone. They turned their house into a hotel for people who needed help until they were ready to go. They had open dinner where friends and family members came. Even when they struggled financially they still let everyone in. Narciso's parents made the biggest sacrifice for him. What they did for him created the beautiful moods described in the memor." 2 3 3 +12358 5 The mood created by the author in the memoir was good. Her memoir was good because in 1961 they moved to a simple house only for two-familys. with blond-bricks building in the ironbound in @LOCATION1. She also had a good mood because she had her first birthday in the arrival of the country. 1 1 1 +12359 5 "In this selectian family is being defined, and Narciso Rodriguez gives it a whole new definition. Narciso Rodriguez is now a recognized clothing designer, but as a child she also had a great life ful of laughter and love. She grew up in a two family home within Newark, New Jersey. I can now smell, hear, and picture the inside of where Narciso grew up. ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and love of cooking that is still with me today, and for which I am eternally gratefull."" This sentence gives me an image of that happy family and puts me in a good mood, While it reminds me of my our family and the memories that we share among our kitchen. Passionate Cuban music, which I adore to this day, filled the air mixing with the aromas in the kitchen. This sentence puts me in a really excited mood because it reminds me of when my own house is filled with loud music during the summertime. Narciso Rodriguez definitily created a mood in this selection, and it was a good one." 2 3 3 +12360 5 "The mood created by the author in this memoir of Narciso Rodriguez is grateful. Throughout the excerpt, it shows his gratefulness towards his life living with his family, his life in his home, and his overall life living in @LOCATION1. Reading this makes me feel grateful to live in @LOCATION1. It even mentions in the passage that he's ""grateful to my parents for their love and sacrifice."" It uses words such as ""warm"", which here means friendly, ""aroma"", ""rich"", and ""solidarity"". All these words, and many other words close in meaning, set this mood. In the @NUM1 paragraph it mentions all the sacrifice that his parents took to get their family to @LOCATION1. And then it talks about his gratefulness, to truly show the contrast between sacrifice and the state of being grateful. Those are the reasons that point to the mood of this excerpt being grateful, or gratefulness." 3 4 4 +12361 5 "In the memoir called, ""Narciso Rodriguez,"" by Narciso Rodriguez, the author creates a mood. In paragraph @NUM1, ""I will always be grateful to my parents for their love and sacrifice. But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" The mood is set on this paragraph. it shows and tells how grateful he is. The mood in the story is thankful." 1 2 2 +12362 5 The author i think wants to go back to cuba to see his family and friends. Also i think the author wants to move back down to cuba. To stay with the rest of his family and friends and take and maybe take care of @CAPS1 older relative 0 0 0 +12363 5 "Throughout the story, the author put in details, explained things, and painted pictures in your mind all to set the mood for the story. A few different moods went on in the story but one of the most important was loving. not only was because of how close his neighborhood and family was, but because of the overall bond and unity they had shared but also because the parents ""turned this simple house into a home.""The author had also stated ""always filled the air with not just scent and music, but life and love."" This passage just completely revealed how much love had been in the air, even through those hard times. It also showed the importance of your loved ones and how you need them in your life." 3 2 3 +12364 5 "In the memoir Narciso Rodriguez from Home: The Blueprints of Our Lives by Narciso Rodriguez the mood created by the author is that he is greatful and happy. Greatful is the mood of the memoir because he is greatful to have many things. First he is greatful for his parents because they always loved him. ""I will always be greatful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done."" (para. @NUM1). In the memoir @PERSON1 makes the mood greatful because he talks about how he is greatful for his friends, culture, and like I said before parents. ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent an music but life and love."" @CAPS1 of all he is greatful to his home and where he lives and whom he lives with. ""It was here where I learned the real definition of ""family"". And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" (para. @NUM2). He wrote all about how greatful he is for everything. So all in all, the mood of this memoir is that he is greatful and happy." 4 3 4 +12365 5 "In this memoir, Narciso Rodriguez from Home: The Blueprints of Our Lives, the author creates a mood in the story, the author does this by writing in a certain way. One way the author does this is by writing very empathetacly. ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" (paragraph @NUM1). A second way the author sets the mood is by sneaking in deeper thoughts within the paragraphs and parentheses. For example in paragraph @NUM2. ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and love of cooking that is still with me today (and for which I am eternally grateful.)"" A third way the author sets the mood is by speaking so fondly of their parents. ""I will always be grateful to my parents for their love and sacrifice I've often told them that what they did was a much more courageous thing than I could have ever done"". (paragraph @NUM3). The overall mood that the author sets for this memoir is a kind, sweet and thankful mood, Narciso Rodriguez, is thankful for many thing; family, culture and living in america." 4 3 4 +12366 5 "Based on the excepert, the mood created by the author in memoir was being grateful and happy about his life.The first example that the mood created by the author in memoir was being grateful. This author this author was grateful for his Cuban culture and heritage. In paragraph @NUM1 it tells what he is grateful for (cuban music, food...). Here's an example from this text or passage "". My young parents created our traditional Cuban home, the very heart of which was the Kitchen. My parents both shared cooking duties and unwitting passed on to me they're rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adore to this day)..."" That's an example how he was grateful.The second example that the mood created by the author in memoir also was being happy about his life. In paragraph @NUM2 it explains how he is happy about his life. Here's another example from the passage, ""It was here where I learned the real definition of ""family"". And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" That was another example of how this author was happy about his life." 3 3 3 +12367 5 "The mood created by the author in the memoir is that Narciso is @CAPS2 with his life and @CAPS1 would do nothing to change that. In paragraph @NUM1, @CAPS1 says ""love of cooking that is still with me today ( and for which I am eternally grateful.)"" @CAPS1 shows that @CAPS1 loves his families cooking and his own. Also in paragraph @NUM1, ""Passionate Cuban music (which I adore to this day) filled the air."" Narciso shows that @CAPS1 loves his culture in the music. In paragraph @NUM3, Narciso says that ""even though it meant leaving behind their families, friends, and careers in the country they love"". This showed that the family was still @CAPS2 in the country they were in now but before was good too. Narciso says in paragraph @NUM4, ""I will always be grateful to my parents for their love and sacrafice."" Narciso loves his family and is thankful for everything they've done for him. The overall mood to this memoir was @CAPS2, @CAPS2 that the family gets to share so many great, And fun moments together." 4 3 4 +12368 5 "In the memoir ""Narciso Rodriguez,"" there is a loving and happy mood created by the author. The author shows the love of his culture, home, and family. It makes the reader think of their family and their culture, and what and who they grow up with. The mood of this story made me think of my Italian grandparents and the sacrificies they made to get a better life for their family.The mood of this story also shows dedication, respect, admiration for loved ones. The author says, ""I will always be grateful to my parents for their love and sacrifice."" I know when I read this line I realized all that my parents have done for me. The mood also makes me think of what my mom does for her job. She helps homeless teens find places to stay and she is always welcoming. Narciso's parents often let family and friends stay at their home to get them back on their feet.The mood of this story is very positive. It helps the reader make connections because all of our relatives know better how long ago made sacrifices for their family. The loving and respectful mood created by the author makes me think of my family." 3 2 3 +12369 5 "The mood in this memoir is very happy and uplifting. This memoir can pick the spirits up of any person in poverty that does not like the home they live in or their family. The memoir shows that even if you are poor, with your family and friends, you can be happy. In the last sentence of the memoir it says ""I will never forget how my parents turned this simple house into a home."" Which shows that you can make the best of any situation with family and friends. Narciso and his family became successful and had a good life because of their positive attitude" 2 1 2 +12370 5 "In the memoir, Narciso Rodriguez, from Home: The @CAPS1 @CAPS2 of our Lives, the author creates a mood of the story. First, the mood is very @CAPS3. This is because the author uses his family members, and his struggles to find the definition of ""family."" Also, the author shares specific information about what his family was like. Also, the, mood seems to be very thankful. The author continueously thanks his parents, and he recalls on his past time about how wonderful his family and friends are. The author also makes the mood thankful by Narciso Rodriguez saying, ""I will never forget how my parents turned the simple house into a home."" Narciso will never forget when his parents turned the simple old house they had, into a home. In the memoir, Narciso Rodriguez, the author creates a mood of the story." 2 3 3 +12371 5 "The mood the author gives about the memoir is is at one point happy and exiting, another very tough and full of struggle, and last a mood of humbleness.One mood the author gives is a happy one. In paragraph @NUM1 it states ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen. This is a happy mood because musics playing and smell of foods in the airAnother mood is a tough and struggle mood. In paragraph @NUM2 it states ""They struggled bothe personally and financially, buring the harsh winters while yearning for there native tropics facing cultural hardships. This relates to the quote because it states they struggled.The last mood is a humble one. Its humble because in paragraph @NUM3 it states ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just music but life and love. They relate because of the humbleness of the quoteIn conclusion the author gives several different moods about the memoir." 3 3 3 +12372 5 "In the memoir ""Narciso Rodriguez"" there are different moods. Three different moods are happiness, enjoyable and, grateful.Throught this memoir he seems very happy. He's happy about where he lives and happy that he has a caring and nice family, ""In our neighborhood, dispite customs elsewhere, all of these cultures came together in great solidarity and friendship.""@CAPS1 mood in this memoir is enjoyable. He is enjoying every family moment. He is also enjoying having his family always at their home. ""My parents always kept their arms and their door open to the many people we considered family, Knowing that they would do the same for us.""The @CAPS2 mood in this memoir is being grateful. He is grateful that he has wonderful parents that teach him different things, (such as cooking) ""I will always be grateful to my parents or their love and sacrifice.""" 3 3 3 +12373 5 "What is a memoir? A memoir is of writing someone's own feelings and experiences during their life. This memoir by Narciso Rodriguez tells of her life in her simple home in Newark, New Jersey. Throughout the memoir Rodriguez sits a distinct mood of love and care, which she learned from her parents back in her childhood. The mood is mainly set by the memories of her environment, friends, and culture. All of these things are described by Rodriguez to make you feel the mood she expresses. The mood of love and care is incorporated into the memories of her childhood, beginning from the time she was born. Rodriguez begins to draw the mood in paragraph two by describing her home that was made into a traditional Cuban home by her parents. She describes the ""rich culinary skills... Passionate Cuban music... And the congregation of family and friends."" @CAPS1, she begins to describe the love of her friends and neighbors, who she felt, were family. Last, Rodriguez describes the influence her Cuban culture has had on her. She talks about how her parents helped others of their kind which made her what she is today." 4 3 4 +12374 5 "In the memoir ""Narciso Rodriguez"", by Narciso Rodriguez, the mood created by the author is a loving mood.The mood created by the author was love. Narciso's parents came all the way from Cuba to give him a better life. In the memoir he grew up in a kitchen full of people who taught him to love cooking. In this new house many people came over to eat and he felt good around these people. ""... regularly joined us at our table."" But in this new country, his parents were struggling personally and financially, but even though they started life all over again. But they had faith that they would prosper. ""The faith that this struggle would them and their children to better times drove them to endure these hard times.""As stated above, they had faith but they love each other so much they would do whatever it took." 2 3 3 +12375 5 "The mood created by the author in the memoir, ""Narciso Rodriguez,"" was sort of excitement/happiness. In the memoir of the author states that ""Rawedia Maria and Narciso Rodriguez, Sr., could afford to move into a modest, three-room apartment I would soon call home."" The author is excited and happy to move from Cuba, to have a chance to grow up in the United States." 1 2 2 +12376 5 "The author set a great mood of love and gratefulness in this memoir. In paragraph @NUM1, @CAPS1 explains that his parents left Cuba with quite goods jobs. His father worked in a laboratory and his mother studied chemical engineering. They both came to the @LOCATION2 and had to work in whatever job they could find, although they deserved much better ones. ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 is very thankful for what his parents have done, how much they have given up in order for their kids to have a better life His parents showed him in their everyday lives the spirit of how to be generous at such an early age, and the true importance of family and friends. They didn't just ""tell"" him to live this way, they based their lives in this belief. that's the reason @CAPS1 has taken these teaching to be the basis of his life. These are the ways in which the author sets a mood of love and gratefullness in this memoir." 3 3 3 +12377 5 I think the memoir has a happy and grateful mood. He talks about how thankful he is to have such a good family and that he can call his home a home. I think that when readers read this memoir will make them think how thankful they should be with being blessed with people that love them and having eachother. I just think the memoir sets a happy mood. 1 2 2 +12378 5 "In the memoir, the author tells us all about his family and friends and his backround. He tells us that the way he grew up effected him all his life. He loved his parents and relatives and friends and his home. He even loved his Cuban heritage. In this entire memoir there is nothing but happiness and good attitude from the author. He lets us know that home is where the heart is and that he would'nt trade his childhood life for anything." 1 1 1 +12379 5 "The mood created by Narciso Rodriguez in this excerpt from his memoir ""Home: The @CAPS1 of our lives"" is a very comfortable one. He uses words like ""warm"" (@CAPS3 @NUM1), and ""Close-knit"" (@CAPS3 @NUM2). He shows us, how welcome his house was in @CAPS3 @NUM3, @CAPS2 ""Countless family members came and went."" In @CAPS3 @NUM4, he tells how his Family immigrated ""Selflessly... to give their children a better life."" And they did, because in @CAPS3 @NUM5 the author says ""It was in the warmth of... this humble house... where I learned the real definition of 'family'.""" 2 2 2 +12380 5 "The mood the author created in memoir was that of happiness and acception. Even though Narciso Rodriguez is Cuban, as well as his family, he fit into his neighborhood, and most likely made a lot of friends very quickly. This gave a feeling of acception as well as a lot of happiness. That is the mood that the auther set on the story." 1 1 1 +12381 5 "The mood that the @CAPS1 created in the memoir is @CAPS2. The @CAPS1 talks about his parents immigrated to @CAPS4 so that he can have a better education. He tells us how they welcomed people into their home whenever they were in need. In the excerpt it says, ""they struggled both personally and financially, braving the harsh Northern winters while yearning for their Native tropics and facing cultural hardships."" @CAPS5 his parents faced many conflicts, they were still there, and he is very greatful for that. This just shows how much the @CAPS1 @CAPS7 them, and how thankful he is." 2 2 2 +12382 5 "The mood created by the author in a memoir. Is happy and greatful in line @NUM1 It's say's growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative so she like saying where she grew they all are alike that they dont have to be related that her people and she greatfull for havin them." 2 1 2 +12383 5 "In the memoir, ""@PERSON1"" from Home: ""The Blueprints of Our Lives"" writen by @PERSON1 the mood created by the author is grateful. The mood is grateful + thankful throughout the memoir. @PERSON1 is grateful that he had the parents he did. They showed him that you don't have to be blood-related to be family. Caring and always being there for each other and loving each other is just as important then having the same @CAPS1. He also has a lot of respect for his parents. They moved to @LOCATION1 for a better life but not only did the better theres but also others, the alwaysed welcamed friends, family and even people who just need help into their home and made them feel welcomed and loved. Thankful, grateful, and respected is the mood in this memior, that @PERSON1 felt." 2 3 3 +12384 5 "The mood in this memoir is very strong. Sometimes the mood is sad, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved. They struggled both personally and financially...The barriers to work were strong and high, And my parents both had to accept that they might not be able to find the kind of jobs they deserved."" In this memoir the mood is also happy at times, ""Growing up in this enviorment instilled in me a great sense that family had nothing to do with being a blood relative."" The author, Narciso Rodriguez creates many moods in his memoir, he creates happy, sad, and many more, but his memoir ends happily, ""I will never forget how my parents turned the simple house into a home.""" 3 3 3 +12385 5 The mood created in the memoir is a happy and caring and also sometimes sad. It was happy when he got together with family members but caring when his family let random strangers stay with them until they got on there feet it was sad When he couldne see his grandparents till they got permission from cuba. 2 1 2 +12386 5 "The mood created by the author in the memoir is gratefulness. Narciso often explains how thankful he is to his parents. Like When he says ""I will always be grateful to my parents for their love and sacrifice. Narciso starts off the memoir by talking about the hardships of his parents and than goes into how well of a home they made for him. He than talks about all of the good times that they have, and than, he thanks them one more time." 2 2 2 +12387 5 "The mood created for me in this memoin is a grateful, happy, and mostly thankful mood. I believe the mood is grateful because it is mentioned by the narrator many times like during the third paragraph where he mention how grateful he is to have parents who made good meals and taught him how to cook. Also he said he was grateful for being introduced to cuban music. I think this memoir also has a happy mood because although the hardships are mentioned it wasn't about how they struggled but how the concoured the hardships they faced when immigrating to @LOCATION1. Another way this memoir is happy is because he talks about how happy everyone is and how family makes a house turn into a home it just touches your heart and gives you a sence of happiness. I think this memoir is mostly thankful because this whole memoir to me feels like a thank you letter to the narator's parents. That is how the mood created in the memoir to me was grateful, happy, and mostly thankful." 3 4 4 +12388 5 "The mood of the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives by Narciso Rodriguez is grateful, loveing, cheerfull, and fond. The whole memoir is looking fondly back at his home that he grew up in. He expresses his fondness of this time throughout the piece I his quote Narciso Rodriguez shows his gratefulness ""I will always be grateful to my parents for their love and sacrifice"" This quote shows how he is grateful for everything his parents have done for him. He shows great cheerfullness through this quote from his memoir. ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen. Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This quote shows cheerfullness because it looks back on his family and enviorment in a positive and cheerful way. Throughout the whole memoir fondness and love is shown, but they are highlighted of the most in this quote, ""I will never forget how my parents turned this simple house into a home"" this quote expresses fondness of his home and love for his parents. In ""Narciso Rodriguez"" from Home The Blueprints of Our lives by Narciso Rodriguez the mood is both loveing and fong as well as cheerfull and gratefull." 3 4 4 +12389 5 "In the memoir, the author creates lots of moods. First of all, the author creates this mood that makes you want to cry. While there is a kind of Love mood here. Narciso loves his home because that's where he grew up and he cherished it. Also, Narciso is graceful that he got the chance to grow up in @LOCATION1. Finally, he's happy that he has a Cuban culture and that he has good caring parents. The author has good moods." 1 2 2 +12390 5 "Rodriguez creates a greatful and playful mood in this memoir. For example, in the second paragraph, Rodriguez writes about how his parents cooked, and the music they played In paranthesis, he adds his @CAPS1 about he was greatful for his parents love of cooking and how he still adores the passionate music his parents played. In paragraph @NUM1, the author writes about the closeness and kindness of his neighborhood. He talks about how everyone was an immigrant and faced segregation, but were always willing to lend a helping hand. Towards the end, in paragraph six Rodriguez is greatful to his parents for the love and sacrifices for him. In conclusion, Rodriguez adores the home his parents created for him." 2 2 2 +12391 5 "The mood created by the author in the memoir was the love your home and all of the people around it. The author is gratefull for all of the skills that her parents taught her like cooking, which she said that she was grateful for and also music. She loves to cook and listen to cuban music. She also loves all of the people around her home and how they all came together in unison even though they were all different cultures. She is grateful for all that her parents sacrificed to give her a better life. That is what I think was the mood of the memoir created by the author is." 2 2 2 +12392 5 "The mood created by the author in. the memoir were changing all through the book. In the begining he feels normal explaining his life and how important his parents are to him. When he explaines how important his parents are to him, he feel greatful and happy for all thing his parent impacted his life. In the middle of the memoir he explaininig how his life is like how he like how he came out in life. At the end he is looking back at his life as a little kid and how he has improved his life." 2 1 2 +12393 5 "Based on the memoir the mood created by the author in the memoir was filled with lots of love and satisfaction. It was filled with love and satisfaction because Narciso and family loves everyone for who they are. People from all over came and be apart of the family and it was alright with them. It said in paragraph @NUM1 that growing up in there environment instilled in them a great sense that ""family"" had nothing to do with being a blood relative. In there neighborhood, despite customs elsewhere, all of the cultures came together in great solidarity and friendship. They were all proud and happy with everyone coming together as a family. In paragraph @NUM2 Narciso said that he will always be grateful to his parents for their love and sacrifice. Narciso had a loving mood because he is grateful for what his parents done for him. Last but not least in paragraph @NUM3 Narciso also had a mood of love and thankfulness because he learned the real definition of family and love. Narciso proclaimed, ""I will never forget how my parents turned this simple house into a home." 4 4 4 +12394 5 The mood created by the author in the memoir was love. One way that he expressed this in the memoir was by saying that his man had let in other immigrants to their house. Also a way that this was expressed was by saying that his parents selflessly left Cuba to get a better life for their children. Furthermore the author of the memoir expressed this by saying that his family turned this simple house into a home. This is the mood that the author created in the memoir 2 2 2 +12395 5 "The mood the @CAPS1 creats in the memoir is a mixture. In reading the story you feel happy, and greatfull, this is because the @CAPS1 is stating how great her family and friends were, along with how great her life was. She also states that you dont need alot of money or a big house to be happy. In paragraph @NUM1 she says ""I will always be greatfull to my parets for their love and sacrifice."" This says to me, that very happy and she very greatfull to have parents like she does and that she would never want to loose them. She also states in paragraph @NUM1 ""in reality there is no way to express my gratitude for the spirit of generosity..."" To me, everyone should be this gratfull to their family and loved ones because you never know when you're going to loose one" 3 2 3 +12396 5 The mood created by the auther sounds like he's happy But sad at the same time. He is happy to move to america. But sad cause his friends aren't gunna be there with him. Another thing is he sounds sad cause he is thinking About memories. Those are things dat describe the mood that the author created. 1 2 2 +12397 5 "The mood that the author created was very happy and full of joy. None of the situations in the story in were negative. They mostly were memories of good past times and how he grew up in a loving and caring family. To prove this in the first sentence in @CAPS1 @CAPS2 it says ""I will always be grateful to my parents for their love and sacrifice."" @CAPS3 his parents sacrificed their hopes and dreams that shows they love and admiredness toward the author." 2 1 2 +12398 5 "In the memoir, @PERSON1 by @PERSON2 the mood he created was being grateful.The mood the author @PERSON1 had in the memoir was grateful. He was very grateful that his parents loved and sacrifice thier carrers for him.He learned the real definition of a ""family"". On paragraph @NUM1 Narciso says ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" Narciso's mood he's being grateful about the unity he had at the place he called Home. With many diverse immigrants mostly Spanish, Cuban and a few Italian people.In conclusion, Narciso Rodriguez was very grateful about the oppurtunities that was left for him. Now he's a international clothing designer. He will never forget the days he had in the traditional Cuban Home." 2 2 2 +12399 5 "The mood created by the author in the memoir is happy, delightful, unique. I believe the author is happy because he/she is very grateful for the love of cooking his/her parents passed down to him/her. ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" I believe he's/she is delightful just the way he/she wrote the memoir. The words she/he used, the way he/she wrote them just sounds delightful to be who he/she is. The author sounds unique to me because he/she is just happy that he/she is Cuban and is happy with what he/she has. This is what I think the authors mood is in the memoir." 2 2 2 +12400 5 "The mood the author created was a peaceful mood. She was bringing up good memories of her past life in her home. She was saying how she was eternally greatful for everything her parents gave her and taught her. Her parents tought her much about her heritage when she was young and kind, she lived in a very diverse area growing up there were Spanish, @CAPS1, and @CAPS2. There were times of racism and violence. The overall mood she created in this memoir was sad, happy and peaceful." 2 2 2 +12401 5 "In the memoir Narciso Rodriguez by The @CAPS1 prints of our Lives the mood in many thing. The mood is the feel of happiness in his house of his family shows him love and his culture and heritage. I think this becausein the story it say ""I will never forget that house or its gracious neighbor hood or the many thing I learned there. about how to love """ 1 1 1 +12402 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our lives, there are many moods. There are happy, grateful, stressed, calm, relaxed and harsh moods. Some are happy moods because they have each other. There are grateful mood because of all that Narciso's parents did for him. There are stressed moods because his parents don't get the jobs they deserve. There are calm moods to show the contentness he had in his home. There are relaxed moods to explain the feelings he had for his life and there was even harsh moods to show the tough times they went through and such. Even though some moods are good and some are bad. This story shows the love they have for each other and that even though they might go through some hard times. They can stick through it together." 2 2 2 +12403 5 "Based on the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the author created a mood. First of all in paragraph @NUM1 Narciso says ""here the innocent of childhood, the congregation of family and friends, endless celebrations... That formed the backdrop to life in our warm home."" This means that the author was trying to convey a happy sort of mood the setting that they were surrounded with me that the foundation to their warm spirited home as it said ""the backdrop life of our warm home."" @CAPS1 it also has a homey feeling. Second of all it also says ""family had nothing to do with being a blood relative."" This means that he felt he was close enough to everybody in his community it was like family. They were all each other had anything not matter where they came from. Finally, in paragraph @NUM2 Narciso says ""I've often told them of my admiration for their strength, and perseverance, and thank them repeatedly for that."" This means that the author is trying to convey is thanks and gratitude on who his parents made him. In conclusion the author created in mood through this memoir that family has many different meanings." 4 4 4 +12404 5 "Narciso Rodriguez uses a grateful and content mood in her memoir. @CAPS2 describes her house is warm and says that ""family had nothing to do with being a blood relative."" Rodriguez is grateful that @CAPS2 had people who cared for her when @CAPS2 was growing up. Also, Rodriguez states that the cultures in her neighborhood had ""solidarity"" or unity. @CAPS2 was happy that everyone in her neighborhood got along. Rodriguez says that her parents came to @CAPS1 ""selflessly"", and this shows her appreciation for their decision. Furthermore, the author states that @CAPS2 is grateful for her parents ""love and sacrifice."" @CAPS2 describes her parents as courageous and having strength as well as perserverance. Finally, Rodriguez says that her parents ""turned this simple house into a home"". In summary, the readers can see now Narciso Rodriguez's positive mood in her memoir." 3 4 4 +12405 5 "In the memoir Home: The Blueprints of Our Lives, Narciso Rodriguez described their childhood home. The author creates a mood in this memoir.The mood is created by description of the kindness of his neighbors, his gratitude toward his parents, and how his house was turned into a home. The mood is created by a description of the kindness of his neighbors. Narciso talks about his neighbor hood, calling it ""a close-knit community of honest, hard working immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" Narciso is getting the point across that his community was a warm, loving place, where everyone was friends and there was no conflict. Narciso also talks about his gratitude towards his parents. He says that, ""They came selflessly, as many imigrants do, to give their children a better life, even though it ment leaving behind their families, friends, and careers in the country they loved."" Here, the mood is set as grateful, since if his parent had not given all that they had had, he would of been in a worse situation in Cuba. Narciso sets the mood by talking about his home. He says that, ""Countless extended family members came and went -- and there was often some one staying with us temporarily until they were able to get back on their feet."" This adds to the warmth of his home, giving in a warmer environment.The mood in this memoir is set by @PERSON1' parents' determination, the kindness of his community, and the open arms of his home. All of these thing are the definition of family." 4 4 4 +12406 5 "In the memoir, the mood the author creates is peaceful. @PERSON1 says his family has a warm home, which means it's nice and quiet. Where @PERSON1's family lived, the different cultures that lived in the neighborhood were friendly with each other. In @PERSON1's family, they had countless extended family members who usually joined the family at the table for a nice meal and family get together. @PERSON1's family welcomed many people to their family. @PERSON1 was very grateful to his parents for their love and sacrifice. His family had many rich culinary skills. Their best skill was cooking, which was fun and relaxing to them. Finally, growing up in the environment in New Jersey gave @PERSON1 a great sense that ""family had nothing to do with being a blood relative."" Clearly, @PERSON1 and his family were very friendly and did many things that were peaceful." 3 3 3 +12407 5 "The author definatly created a mood when he wrote the memoir. The mood is love. All throughout the memoir, he talked about how his parents love of him had them leave their countries and come to the US. Because they loved him and wanted him to have a good life they left Cuba, everyone they knew and loved, the jobs they had, and started all over. Their families love turned the house into the home he loves. They brought the culture of Cuba into their new home with decorations and ""the very heart of which was the kitchen. The memoir's mood is the love of the author's parents to him." 2 2 2 +12408 5 "Narciso Rodriguez, a clothing designer, wrote a memoir on his ideas about family. I believe the author set a very personal mood in this story. This is not unexpected considering it is a memoir however there were few statement facts and everything was personal experience. Along with personal the memoirs also show a very loving and happy lifestyle they lived. For example there was always Cuban music playing along with Cuban food and the parents would always host a person in the house is time to get back on their feet. Above all the author clearly shows his love for his parents. ""I will always be grateful to my parents for their love and sacrifice."" With this the author clearly shows the mood for love and happiness." 2 3 3 +12409 5 The story I just read was inspiring. I relized that your true blooded family isnt only your family theres other people that you can bond with and after a little while you can become family according to how close. The mood created my the author was happy. It was happy because everything he said in this story was true and it made me feel lucky to have such a great family and freiends that I call family. 1 1 2 +12410 5 "The mood about the @CAPS1's memoir is his happiness and caring and the selflessness. According to the text in @CAPS2 @NUM1, ""I will always be grateful to my parents for their love and sacrifice. That's how the mood describes the @CAPS1 memoir of Narciso Rodriguez background and his family." 1 1 1 +12411 5 "The mood that the @CAPS2 used in the memoir was joyful and motivating at times. The @CAPS2 was able to paint a marviles painting of his parents, by using words such as brave, courageous, strength, perseverance, loving, carrieing, and gracious this shows the reader that the @CAPS2 wants to paint a serious mood. Also when the @CAPS2 went on to describe his home it gave a sence of loving and joyful enviroment or mood. For example the @CAPS2 was able to experince real friendship, and endless celebrations, love and the strength of helping others, @CAPS1 his childhood. The @CAPS2 used a powerful since of mood to show his pashen for his parents and his home." 3 3 3 +12412 5 "The mood of this memoir is happy and grateful. The narrator is grateful for all the great times in life him and his parents had together. He is happy that said ""times"" were so great.He is grateful for the happy times they had together like cooking, music, and so on. But he is mostly grateful for his parents turning his house into a home." 2 1 2 +12413 5 "I think the mood in the memoir is love. I think this because the whole memoir is about family, friendships, and relationships. For example in paragraph @NUM1, it says, ""countless extended family members came and went- and there was often someone staying with us temporarily, until they were able to get back on their feet. My parents always kept their arms and their doors open to the many people we considered family, knowing they would do the same for us."" In this quote I believe it is saying that everyone you know and love is part of your family and that you should always be available to help, just as they will too. The mood of Narciso Rodriguez's memoir is love and that you should always be their for your family and your family will always be there for you." 2 2 2 +12414 5 The mood about the memoir was more of an up set memoir because of the way he was talking about his life. 0 0 0 +12415 5 "The author sets many moods for the reader in his memoir from Home: The Blueprints of our Lives. The first and most dominant mood is a sense of family or friendship. The author constantly describes how his family's generosity made his apartment into a friendly place with the constant coming and going of relatives, distant and close. Next the author installed a sense of warmth. The very idea of this family moving from cuba into this three room apartment for their son really gives any reader some sense of warmth. Finally the author gives us a Sense of culture. As early as paragraph @NUM1 the author writes...""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful. Passionate Cuban music (which I still adore today) filled the air..."" In these ways, the author reaches out to his readers with the mood of friendship, warmth, and culture to give us a taste of his life with his adoring parents in this small three room house he called home." 3 2 3 +12416 5 "@ORGANIZATION1 creates a warm, comforting mood in a piece of Home: The Blueprints of Our Lives. He does this by explaining what goes on in a positive light. "Here, the innocence of childhood, the congression of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm homes." This quote uses words like celebrations and warm to show that this place was a comforting place that always had a great time. This shows how Narciso Rodriguez created this warm, comforting mood." 2 2 2 +12417 5 "In the memoir ""Narciso Rodriguez from Home: The Blueprints of Our Lives"", the mood created by the author is gratefull and family. Throughout the memoir, Narciso Rodriguez talks about his life growing up. Readers read things like: ""My mother and father had come to this country with such courage,"" and ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" @CAPS1, towards the end, the author explains that he is very grateful to have his parents: ""I will always be grateful to my parents for their love and sacrifice."", and ""in reality, there is no way to express my gratitude for the spirit of generousity impressed upon me at such an early age and the demonstration of how important family and friends are."" @CAPS2, Narciso Rodriguez was greatly influenced by his family during his childhood, and his memoir shows that along with how grateful he will always be." 3 3 3 +12418 5 "There is a very distinct mood set by Narciso in this passage. He talks about Faith, love, courage, and just the overall niceness of his home and community. He speaks of the ""innocence of childhood"" and the ""gratitude for the spirit of generosity"" impressed upon him at a young age. I believe the mood is one of gratitude, gratitude of how his parents struggled to raise him right and well. He is grateful for his home, his family, and his community, of course he ""groups"" the last two together because of the deep, emotional way they all felt. Gratitude is one thing so he doesn't have." 2 2 2 +12419 5 "The mood created by the auther in the memoir was showing the feeling he had when it came towards the things he had. In the article it says ""Growing up in this environment instilled in me a great sence that family had nothing to do with being a blood relative."" Also his family was always happy. In the text it said ""My parents always kept their arms and their door open to many people that were considered family"".Last but not least experiencing the new life even when they left everything behind. In the article it said ""Many immigrants give their children a better life even when it meant leaving everything they loved." 2 1 2 +12420 5 "In the memoir the author obviously seems to be grateful and thankful because he states it multiple times in the passage. When he is recalling all the memories he had it proves to be a warm and happy mood. The cookings skills that his parents passed on to him he says that he's grateful for and passionate Cuban music he says that he still adores to this day. The author also states that there's not only a sense of family in being a blood relative but in the neighborhood as well. All the different cultures of his neighborhood; Spanish, Cuban and Italian came together in a great solidarity and friendship. The author is so thankful in fact that he's actually told his parents that he could have never done something as courageous as they did. The mood of the memoir is so strong in a positive way because he also writes that there is no way for him to express his gratitude for the spirit of generosity impressed upon him at such an early age. To wrap up his memoir he mentions that he will never forget how his parents turned a simple house into a home." 3 4 4 +12421 5 "I particullarly like this one beacous in this story the author sets a good happy, Cultural @CAPS1 to the story. I @CAPS2 the Culture and how you need to appreciate what you have. And it @CAPS2 what his parents Did for there Children @CAPS4 that they could have a better life in a new country." 2 1 2 +12422 5 "The author's mood was a very grateful and good mood throughout the memoir. The author loved everything about these memory's. For example, ""and a love of cooking that is still with me today (for which I am eternally gratefu)"". The author shows that he is in a good mood by saying he is eternally grateful. His mood was also very appreciative. For example, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind families..."". The author is very thankful and appreciative to his parents that came to the United States from Cuba just for him. He has thanked them many times. The author also shows his gratefulness again at the end of the passage. For example, ""I will always be grateful to my parents for their love and sacrifice"". The authors parents bought a house that was big enough for his family and his mood was grateful due to his parents. Lastly, the authors mood was very thankful. For example, ""It was here where I learned the real definition of ""family"". The author shows that he learns family and is very thankful to his parents for that. That's how the authors mood was." 3 4 4 +12423 5 "In the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, described the mood created by the @CAPS1. The mood was @CAPS2, grateful, and proud.The mood of the memoir was @CAPS2. For example, Narciso and his parents had to leave there home and Come to the United States where they all Struggled financially and personally living through the cold winters and facing Cultural hardships.However, the mood was also grateful. Narciso was very grateful for his Parents for all that they have sacrificed for him to have a better life and all that they have taught him made the moode of the memoir grateful.Lastly, the mood was also proud. The parents come to the Country with such courage without any Knowledge of the language or the culture, leaving all there families and friends behind. Just so that there @CAPS3 Could have a better Life made the mood and the reader's proud of the parents.These were the moods created by the @CAPS1 in this memoir." 3 3 3 +12424 5 "In his memoir, Narciso Rodriguez portrays a happy mood. First he says how grateful he is for the customs passed down to him. Rodriguez writes, ""My parents both shared cooking duties and unwittingly passed on to me there rich culinary skills and a love of cooking that is still with me today (And) for which I am eternally grateful). Passionate Cuban music (which I adored to this day) filled the air, mixed with the aromas of the kitchen."" (@CAPS1 @NUM1). This shows him grateful to his parents for passing on their culture to him. Next he writes about how they regularly had large dinners where they invited neighbors. Rodriguez writes, ""My parents always kept their arms and their doors open to the many people we considered family knowing that they would do the same for us."" (@CAPS1 @NUM2). He is happy about how they invited many people over for dinner, and because of this they made many friends. Lastly, he thanks his parents a lot. Rodriguez writes, ""I've often told him of my admiration for their strength and perseverance, and I thanked them repeatedly. (@CAPS1 @NUM3). This shows his happiness for his parents risking their lives for him to have a better life. Clearly in his memoir @PERSON1 portrays a happy mood." 3 4 4 +12425 5 "Immagrants from Cuba to the @CAPS1 usuely had to undergo a tough transitien. It took buckets full of curage and modevation to get through this huge transitien. Narciso Rodriguez's famly whent through this move using family power and the love they had for each other. It was a big change for them to be in a one room apartment to a @NUM1 room apartment. Through the memoir there was a mood of satisfaction and love for Cuba. For example, the memoir stated many times how much Narciso enjoyed the Cuban food and music and treditiens. Also the satisfaction mood comes out when Narciso talkes about how fortunate he is that his parents were willing to take the risk of moving to @CAPS2 to give him a better life. This showes that the love of a parent is stronger than enything in the world. Another mood is relieve. for example Narciso is relieved that his family made it to @CAPS2 sofly and sand. This article is a perfect example that family is all you have in the end and that nomatter what they are there for you." 4 2 3 +12426 5 "in the Narciso Rodriguez the author in the memoir for @ORGANIZATION1 is ""Growing up in this environment instilled"" this prove that how he grow up.Another @CAPS1 is to give their children a better life.this show that the children well get what they want. all this show that where was he born how he got her and him getting a better life" 1 2 2 +12427 5 "The author mood in the memoir sound gratefun and very happy. This @CAPS2 that he was greatful because Cuba music and he sound like love to write about his @CAPS1 life. One example is in the article he was greatful of his parent's for what they did. Because his parent's work financially to get where they are, This also @CAPS2 that he was happy of meeting his neigh bor hood. One example is because he said They where all family To Them. Another example was he felt warm because of that. He love what his parent's did." 1 2 2 +12428 5 "The mood created by the author in the memoir is being together. This mood is created by saying how his parents created a traditional cuban home in New Jersey. Also, when he said that that his parents always kept open arms and door. I think that ment that they were willing to let people stay with them and help them out when they were having a hard time. Also, when he said that everyone in the neighborhood despite there customs came together in friendship." 2 2 2 +12429 5 "The mood created by the author in the @CAPS1 is supposed to be warm, motivative, and inviting.The mood is mainly set when he describes the warmth of his kitchen ""The passionate Cuban music filled the air, mixing with the aromas of the kitchen.""The mood is inviting when he describes his parents generosity by letting so many people come and share a delicious feast with them ""My parents always kept their arms and doors open to the many people we considered family, knowing that they would do the same for us.""@CAPS2, the mood is motivative when he describes his parents perseverance for a better living. ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved.""That was the mood created by the author in the @CAPS1." 3 3 3 +12430 5 "In the memoir, Narciso Rodriguez, by Narciso Rodriguez, he sets a mood of thankfulness toward his parents. Narciso tells of how his parents immigrated from Cuba to the @LOCATION1. He tells of the hardship of the sacrifice they went through. In this memoir, Narciso says one line over and over. It is ""I have thank them (his parent) repeatedly (Rodriguez @NUM1)"". He is also grateful for his parents love and sacrifice. In the last sentence he says, ""I will never forget how my parents turned this simple house into a home"" (Rodriguez @NUM1). In conclusion, Narciso is grateful of his parents sacrifice for a better life of their child. " 3 2 3 +12431 5 The mood created by the auther in the memoir is that he was happy about his parence sacrinefying to what they wanted for themselfs and thinking about the family and what they needed. Also show them how @LOCATION1 is different from Cuba. They show him how to love because well his mother would invite people who can't find a job can stay there unil they can get back on there feet. This is how the author fells about the memoir. 2 2 2 +12432 5 "The mood created by the author, @PERSON1, in the memoir was grateful and it had gratitude. In paragraph @NUM1 he says, ""I will always be grateful to my parents for their love and sacrifice."" His parents sacrificed their families, friends, careers, and the country they love to selflessly come to @LOCATION1 to give their son a better child hood because they loved him that much. Even though they had to change jobs and take any possible work. They also struggled with finances, harsh northern winters, and cultural hardship that wouldn't give up and that's why the author was grateful, creating the mood. " 3 2 3 +12433 5 "The mood is nutral in the authors memoir. he speaks about his house and family. He tells the reader how greatfull he was have loving parents, stated in line @NUM1 parigraph @NUM2. The author also speaks about how important his family and friends were/are. The mood is somewhat happy because he was remembering the good times he had as a child growing up with his Cuban family." 2 1 2 +12434 5 "the mood created in the memoir, I will always be grateful to my parents for their love and sacrifice. Ive often told them that what they Did was a much more courageous thing than I could have ever done. Ive often told them of my admiration for their strength and perseverance and I've thanked them repeatedly But in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how importand family and friends are." 1 2 2 +12435 5 The author wanted people to understand the story's and to make it easy to read whats it is about. 0 0 0 +12436 5 "The mood of this story is happy, hopful, and caring. In some paragraphs, the mood shifted and felt upsetting and gloomy (p @NUM1) ""They struggled both personally and financially."" At these parts in the memoir it felt sad and hopless to see what struggles they faced. But then it shifted. Narciso used words like, ""courage, selflessly, love, family, and celebration."" This transformed this memoir to an exciting and happy story. They never gave up hope and all the imagrents helped eachother with their problems. This is set a mood of selflessness, and caring which is what the Rodriguez family brought to the United States." 2 2 2 +12437 5 "The mood that the author in the memoir has created is a soft happy and @CAPS1 mood. He trys to say how grateful and happy about his memoir. An example is ""My parents both shared cooking duties and unwittingly passed on to me their Rich culinary Skills and a love of cooking that is still with me today (and for which I am enternally gratefull)"" OR ""Passionate Cuban Music (Which I adore to this day). His mood is also saying that hes happy for what he has because he said that his parents are very couragous and he could of never did what they did. The authors mood is very grateful." 2 2 2 +12438 5 "In the excerpt by Narciso Rodriguez, the mood of his home is created. The mood in his home is always happy, and thankful. Narciso was always talking posetive, never about what is bad in his life. He talks about how his parents had to start over again with their lives to come to @LOCATION1. ""meant leaving behind their familles, friends, and careers..."". This quote meants that his parents gave up everything to come to @LOCATION1. Narciso and his family have lots of friends like them because they keep there arms open to people. Narciso's mood is set in the excerpt from his memoirs." 2 2 2 +12439 5 "The story, ""Narciso Rodriguez"", has a comfortable and loving mood. This memoir sounds almost cozy, in some ways. If you read paragraph @NUM1, you can imagine just how happy the kitchen table was when @LOCATION1 (landlord's daughter), Sergio, and Edelmira (""surrogate grandparents"") were around it. Also, in paragraph @NUM2, it talks about the Passionate and Cuban music"" that filled the air ""and the ""aromas of the kitchen"". If that doesn't sound like a comfortable place, I don't know what does! Love must have been a main factor in the author's life because it is evident in the excerpt. This story talks about all the people that would come over the house, friends and family, too, and how everyone there was cared for no matter what. The first sentence in paragraph @NUM3 says ""I will always be grateful to my parents for their love and sacrifice."" That alone says how much love there was in the house. The mood of this story was very comfortable and very, very loving." 2 3 3 +12440 5 "In the memoir the author creates the mood of happiness when he talks about his parents 'love and caring for others.'The author talks about in paragraph two when he was born. His parents passed on their rich culinary skills and a love for cooking, ""and for which I am eternally grateful."" His parents would play, ""passionate Cuban music (which I adored to this day.)""In paragraph three, the author says, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative. In his neighborhood, everyone came together and extended a hand to people who were clearly in need.Rodriguez went on to explain how his parents would have everyone over for dinner and help people get back on their feet. Towards the end of the story in paragraph six he says, ""I will always be grateful to my parents for their love and sacrifice."" Narciso Rodriguez says, ""I will never forget how my parents turned the simple house into a home.""" 4 3 4 +12441 5 "The mood created by the author in memior was his home, His home was, His house was never perfect but he mad it how he need to be and his parent did too and that's what change it into a home for him and the neighborhood made him learn how to learn how to love and how much sacrifice his parents made him have a loving memior for his home town." 2 1 2 +12442 5 "The mood created by @PERSON1 in the memoir from ""Home:The Blueprints of Our Lives"" is that of a grateful sense. In this memoir Narciso reflected and thanked his parents for their love and sacrifice for him, Narciso also said that he was grateful for the teachings of his parents such as in the line ""It was here where I learned the real definition of ""family."" And ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love.""" 2 2 2 +12443 5 "The mood created by the @CAPS1 in the memoir is that the @CAPS1's feels @CAPS2 @CAPS3 all of the memories that he has for his family as he was growing up. ""I learned the real definition to family""." 1 1 1 +12444 5 "The mood of the memoir is one of greatfulness and of @CAPS1. This is because the auothor, Narciso Rodriguez says, ""I will always be greatful to my parents for their love and sacrifice."" In this quote is saying straigh up how he feels, which is grateful. You can also tell that he is implying that he loves his parents. Another quote that supports my main idea is The author says, ""... There is no way to express my gratitude..."" In this quote, just like the last one the author is saying directly how he feels, which is again greatful. In conlcusion the author uses effective techniques to trap the reader in his mood, which is greatful and @CAPS1." 3 2 3 +12445 5 Narciso was happy and grateful. He was proud of his parents for what they did. His parents left behind thair family and friends to give him A better life. When they Arrived to @LOCATION1 they had to start over. They got A house And fixed upto how they liked it. They fixed up the house to look like A cuban home. His parents All ways took in people who came from cuba And let them stay there untill they got back on there feet. Thats why he was pround And grateful for his parents. 1 1 1 +12446 5 "The mood created by the author in the memoir is love. To start off, Narciso had so much love and appreciation for his parents decision to immigrate to @LOCATION1. In paragraph @NUM1 Narciso says, ""There is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age."" The purpose of the author writing this was to strongly show how truly greatful Narciso is for the hardships his parents had to endure to give him a better life. And also to show the love that Narciso will always have for his parents. Next, the author also expresses how important family and friends are to Narciso. In paragraph two Narciso explains her true love for him family and friends, ""Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This quote shows how immensely immportant his family and friends involvement in her life is to him. In conclusion, the author purposfully showed how important his parents, family, and friends are to him to grasp the meaning of love he feels for his family." 4 3 4 +12447 5 "The mood created by the author is very happy and grateful throughout the memoir. It is very interesting also, when he's talking about when his parents first bought the house and how happy they were in 1961 when they made their home into a traditional Cuban home, ""Within it's walls, my young parents created our traditional Cuban home, the very heart of which was the kitchen."" (@CAPS1 @NUM1) In that @CAPS1 he also says how he got his culinary skills from his parents and that he was grateful for it. He also says, ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their child a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" (@CAPS1 @NUM2) @CAPS3 you can tell a lot about his parents by those two sentences. @NUM3. They care about their children @NUM1.) They're not selfish @NUM5.) They're not afraid to make sacrifices and @NUM6.) They can adjust to new things and new surroundings. @CAPS3 by everything I have said the mood throughout the memoir was happy, kind, caring and many moods similar to those. The same moods came everyone that was mentioned in the memoir." 4 3 4 +12448 5 "Narciso Rodriguez @CAPS1 the following definition of family in this memoir. In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity & friendship. My mother & father had come to this country with such courage, without any knowledge of the language or the culture. In the United States, they had to start their lives over entirely, taking whatever work they could find. I will always be grateful to my parents for their love & sacrifice. They showed me with their own lives & these teachings have been the basis of my life. It was in the warmth of the kitchen in this humble house where a cuban feast always filled the air with not just scent & music but life & love. It was here where i learned the real definition of ""family"". And for this, i will never forget that house or its gracious neighborhood or the many things i learned there about how to love. I will never forget how my parents turned this simple house into a home." 4 3 4 +12449 5 "The author of Narciso Rodriguez creates an enjoyably, happy, fun mood. The author makes every little sentence sound like you actually lived there & or were there at some point. The whole second paragraph is wonderfully written it makes me feel like I honestly was the experiencing his home & the love & kindness of his home. The love & friendship @CAPS1 shared with the people of his neighborhood is also shown in that same paragraph & as well as the other ones too. @CAPS1 shows so much love & thanks to his family & friends & his whole entire neighborhood in his last paragraph. Yet most of all to his parents in his last sentence. ""I will never forget how my parent turned this simple house into a home."" @CAPS1 also especialy shows how hard his parents worked to stay up but still did so much to care for everyone else, all right in paragraph @NUM1." 2 3 3 +12450 5 "The mood created by the author in the memoir is a good mood. It is a good mood and it also explains the hardships along the way, such as moving from cuba to the united States. It was a good mood because the parents of Narciso Rodriguez always let people who needed help in their home until they could get back on their feet, paragraph four. Their is a nice attitude towards everything through good times and bad always a good attitude. Narciso's parents let family and friends over for dinner all the time for cuban cooking and music. Every One has such a great attitudes. This selection has a soft, nice, and good mood." 3 2 3 +12451 5 Based on the memoir of Narciso Rodriguez the ovor all mood is thankfull. It is that full because he is thankfull his parents came to america and that his connenity is helpfull. Also he can now have a good career and his family can grow up here to. Also his family and friends are importat to him 1 1 1 +12452 5 "The mood created by the author in the memoir is very cool and funky. I say this not to make fun of anyone but to thank them. The author says that his parents unwittingly passed on their skills and love for cooking. This piece of evidence is located in paragraph two. The mood is described as joyous, giddy, excited, and elated. This is because the author is starting to figure out what it's like to have a ""family that isn't related by blood but by race and culture. This evidence is located in paragraph @NUM1. The authors parents invited refugees to stay with them until the got back on their feet. His/@CAPS1 parents did this so whenever they needed anything than they would be alright. This final piece of evidence is located in paragraph seven. These are pieces of evidence that describe the mood of the memoir. (And also of where they are located)." 2 2 2 +12453 5 "This story, basically, brings me back memories myself. In the memoir, the author feels a happy, strong, lovable mood. He feels as @CAPS1 those times, are never going to be forgettable, that he's always going to remember those times. That once he gets older, he will take these good times, as granted. Even during bad times, he will look back. Also he will always be thankful, for what his parents have done, to make his life better, and esier. That way he wouldn't have to life a hard depressed life. Hopefully he will always be thankful for that oppertunity, that his parents gave him. I know that @CAPS1 my parents did that for me, I would never forget them." 1 1 1 +12454 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, the author's mood was very loving and I could the grattitude and respect in his voice, especially when he talked about his parents. He said ""There is no way to express my grattitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how impotont family and friends are"". The author obviously is extremly thankful for the enviroment he had growing up as a child and @CAPS1 sure he feels very lucky to have had such a great, loving, childhood. I can tell he is very proud of his parents because they gave up everything to come to @LOCATION1 so their children could have better lives. The author reffered to them as selfless, and I would agree. The mood of the entire memoir is mostly shown in the last two sentences where the author says, ""And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" That shows the caring, thoughtful tone the author had as he remembered fondly about his past." 4 3 4 +12455 5 The author set a mood for this memoir. The mood he has set is love and kindness. The reason love and kindness is the mood because he says he loves his parents for self sacrifice so that he could grow up in the @CAPS1 of @CAPS2. The mood is of kindness too because he thinks his parents are kind for letting anyone into their door. 1 2 2 +12456 5 "The @CAPS1 created by the author in the memoir is understanding & love, because no matter where you are, you can always bring a piece of where your from and place it where you are at present. For example his parents decorated the Kitchen in cuban ways and listened to cubin music. Keeping their hintage going. And he realizes how great and hardworking his parents are, how good they've been to him. Also even if your not blood related, when loved ones come altogether, who care about eachother, thats family." 2 2 2 +12457 5 "The mood created by the author in the memoir is gratefulness and happiness. He was grateful because of the sacrifice (moving to the US) his parents did for him. His parents were selfless. ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done."" @CAPS1 part of the mood was happiness. One example is when he learned the definition of family. ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" Also they made him a home. ""I will never forget how my parents turned this simple house into a home."" " 2 3 3 +12458 5 "The auther creates a very comfortable and happy mood. In the text, it says, ""within it's walls, my young parents parents created our traditional cuban home, the very heart of which was the kitchen."" This suggests that many of the good memories Narciso had were in his kitchen. The text also says, ""My parents always kept their arms and their door open to the many people we considered family..."" This suggests that Narciso's parents were very caring people, and gave their home a very friendly and welcoming feel. Overall, the author describes the home of Narciso and his family in a very joyful way." 2 3 3 +12459 5 "Narciso Rodriguez is very grateful of his family. During this memoir he is very excited and thankful for the family he has. Like was said in the memoir ""I will always be greatful of my parents for their love and sacrifice."" @CAPS1 example of how Narciso show that he is greatful is ""I've often told them of my admiration for their strength and perseverance, @CAPS2 thanked them repeatedly"". Narciso says he really has a family, that show they care. He appreciates what his parents have done for him. You can tell his very greatful because of the way he expresses himself about his family. ""In reality there is no way to express my gratitude for the spint of generosity impressed upon me, and demonstrate of how important family and friends are"". He is a caring young boy." 3 3 3 +12460 5 "In this memoir by Narciso Rodriguez, The mood was pretty much the same throughout. The mood in this @CAPS1 of writing was very happy. Narciso Rodriguez was very grateful and happy throughout the @CAPS1. He would always say that he was very grateful for his Parents being all nice and coming over here to the united States from Cuba to give him a better life. Also, his family gave up their friends and family, good jobs and all said goodbye. Just to have a chance at a new and better life. He was also very happy, because even though he wasnt in Cuba anymore, he still grew up with a Cuban cuture." 2 2 2 +12461 5 "The mood of the memoir was happy because, Narciso is happy that their moving, but is still going to miss his old house, but surprised on how his parrents could turn his new home into his new home agian." 1 1 1 +12462 5 "In the excerpt Narciso Rodriguez from Home: The Blueprints of our lives, the mood created is togetherness, love, and friendship. This story talks about coming to @LOCATION1 and being welcomed in by an aray of people whom you don't know, but are treated like family. ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" (.@NUM1) No matter if you were Spanish, Italian, Cuban, or whatever else, you were treated with love and respect. This portrays the mood of friendship and caring because although they are not ""blood"" family. they take care of eachother as a family member would. Narciso's parents are a large inspiration in his life. ""It was where I learned the real definition of ""family"". And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned the simple house into a home."" (@NUM2). This excerpt shows that by just being there and looking out for eachother brings you closer to one another. " 4 3 4 +12463 5 "This memoir, ""Narciso Rodriguez,"" from ""Home: The Blueprints of Our Lives,"" is very enjoyable. The mood made it really easy to understand and read.The mood of this story is not funky or funny. The mood is like haveing a regular conversation with a person. I like when the author adds little perenthesis, it gives it a personal touch and adds more of a conversation touch to the mood. For example in paragraph @NUM1, ""Passionate Cuban music (which I adore to this day)."" Its more of a fun fact or personal note.In the memoir, ""Narciso Rodriguez,"" has a very formal mood, with a personal twist. The formal mood makes the memoir easy to understand, while the personal twist makes the story enjoyable to read. This is how to use mood correctly." 2 1 2 +12464 5 The @CAPS1 mood in this memoir is loving and thankful and calm. @CAPS2 is just in a verey good mood @CAPS2 is trying to show his gratitude to his parents for what they have done and given up for him. They made a simple little house into a great home for everyone. They gave up great jobs for him so the could move to america. Him saying that @CAPS2 can't even show How grateful @CAPS2 is in that ther selfless shows his thankful and loving mood 2 2 2 +12465 5 "In the memoir, Narciso Rodriguez, from Home: The Blueprints of our Lives writen by Narciso Rodriguez the mood of the excerpt is nice. I think it is nice because it says that he is prowd of his parents, being @CAPS1 and about home." 1 1 1 +12466 5 "In this memoir, Narciso Rodriguez, there is a main mood created by the author. I think this mood is happiness. To Narciso and his whole entire family, family is the most important thing. No one leaves a family member out. In his neighborhood there mostly lived, Spanish, Cuban, and Italian immigrants. All these cultures came together in great solidarity and friendship. Narciso's parents came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved. When I read this memoir I felt happy reading it. It let me know how other families who really have nothing, have everything. Narciso's family is very close, and caring for one another, and to them family is the only thing that matters." 3 2 3 +12467 5 "The mood created by the author in the memoir was, powerful, @CAPS1, and appreciative. The first mood created by the author in the memoir was powerful. ""My mother and father came to this country with such courage"" The second mood created by the auther in The memoir was @CAPS2 ful. ""The congregation of family and friends and end less celebration. The last mood created by the author was appreciative. ""I will always be grateful to my parents for their love and sacrefice"". In conclusion the moods created by the author in the memoir were powerful, @CAPS1 and apprective." 2 3 3 +12468 5 "The author, Narciso Rodriguez, creates a passionate mood in his experiences of having a ""home"" rather than just a house, and how growing up in such a different community has shaped the man he has become today. Narciso is forever grateful for his parents' willingness to give up their good lives in Cuba and move to @LOCATION1 for the sake of him. The selflessness and thoughtful choices Narciso's mother and father made truly don't have words that are able to describe it. Narciso feels that you don't have to be related, of the same background or believe in the same things in order to be ""family."" The loving atmosphere of living in the neighborhood of Spanish, Cuban, and Italian immigrants was created by the feeling of coming together and having a good time, despite all of the differences. Narciso cherishes the memories he has kept of his childhood very much and will always admire his parents for the sacrifices they made for him." 2 4 3 +12469 5 The mood created by the author in this memoir is that hes glad to be born in @LOCATION1. He loves his parents for the sacrifice for making his life easier and better by moving to @ORGANIZATION1. 1 1 1 +12470 5 "The author, Narciso Rodriguez created a pleasant mood, with a family atmosphere in his memoir. First, he described his childhood home. With the great Cuban music and cuisine, his family, friends and the many celebrations, he painted a vivid image of fun and comfort. Next, he describes his neighborhood. With the many diverse cultures of all the immigrants, they work together, and kindness prevailed. The community would always extend their hands to one who was down on their luck. Third, he describes his friends and family who visited often. Their landlord and his daughter, Alegria; his surrogate grandparents Sergio and Edelmira; His aunts Bertha and Juanita; his cousins Arnold, Maria, and Rosemary; the list goes on. His parents let all who needed a home to stay with them, because they knew that the others would help them if they needed shelter. Finally Narciso described the hardships and sacrifices his parents made for him, for which he is eternally grateful. His parents left behind friends, family, and their good jobs to start anew in @LOCATION3, also that he would live a better life than they. Because of this writing style; because of his vivid imagery; Narciso Rodriguez wrote an article that is not only pleasing to read, but that it also touches the heart." 3 4 4 +12471 5 "The mood that the author created in this memoir is a happy, emotional, and @CAPS1 and caring. The are happy because the are all living together in a perfect place all together. It is emotional because the care and love for each other. They help each other out. In paragraph @NUM1 it states ""these are two lessons that my parents did not just tellme. They showed me with their lives, and these teachings have been the basic of my life. And those are some of my reason why the author added mood to this memoir" 2 2 2 +12472 5 "In the memoir, Narciso Rodriguez, the @CAPS1 is family. This entire memoir focuses on family. Narciso first describes how him and his family Came to live in a one room apartment. He then said how him and his sister Rawedia Maria are going to move into a three room apartment in the future.In the memoir, Narciso said how his parents came from Cuba as immigrants to the united States. Narciso couldn't believe how brave his parents were. His ""real grandparent's couldn't leave Cuba until 1970, but his parents snuck out.Narciso said how his house was not a simple house because @CAPS2 many people lived in it. some relatives lived upstairs, some down. But the one thing that Narciso keeps saying to his parents is thank you. If they got caught sneaking out of Cuba, they wouldn't be able to live in this nice place: Narciso calls home." 1 1 1 +12473 5 "The mood of this memoir is suppost to be @CAPS1 and thoughfull or happy feelings. The author is talking about his past, when he was younger. He loves his past life when he was little because it was full of happyness and good times with his family. you @CAPS2't need to be blood related to be family. All these good people got together and became family. And with this family came the good times. Makeing the mood happy. never being able to thank your Parents enough for giving you that chance to live a happy life is also part of the mood. Thankfulness." 2 2 2 +12474 5 "The mood created by the author is very welcoming. It is explaining that their home was were all their great memories happened and all the get togethers. And that their home was a place you could feel safe and protected. The mood I think of his warming, happiness, and joy." 2 1 2 +12475 5 The son in the family is always happy in the memoire. All he talks about is how greatfull he is for his parents @CAPS1. Everyone is happy and having a good time. 1 1 1 +12476 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, the mood created by the author in the memoir were happy and loveing. Happy is one of the moods because there are many happy memories in the memoir. ""... endless celebrations..."". Love is one of the moods because in a familey most of the time you love each other. ""I will always be grateful to my parent for their love and sacrifice."" @CAPS1 on the memoir ""Narciso Rodriguez from Home: The @CAPS2 of Our Lives the moods created by the author in the memor were happy and loveing." 2 1 2 +12477 5 "In the memoir, the author definatly creates a mood that you can obviously see. He creates a mood of friendship in pharagraph @NUM1, ""our land lord and his daughter (my baby sitter and first friend), lived a bove us and graced our kitchen tables for meals more often than not."" Also a feeling of love in pharagraph @NUM1 (again), ""there was often somone staying with us temporarily until they were able to get back on their feet."" The final mood he sets is a feeling of gratefulness in pharagraph @NUM3, ""I will always be grateful to my parents for their love and sacrifice"". Therefore, the overall mood is his appriciation for his family." 2 2 2 +12478 5 "In the memoir, Narciso Rodriguez, from Home: The Blueprints of Our Lives, a great mood is created by the author. This mood is unity. One reason why the mood is unity is because even while Narciso Rodriguez's parents moved from Cuba to the United States they stayed together. After they had first moved to the @LOCATION3 they had a child and that really shows how much unity came into play. Another reason why the mood of this memoir is unity is because, when the Rodriguez's were first living in the United States, the other immigrants in their neighborhood became family. And paragraph three it says, ""In our neighborhood, despite customs everywhere, all of these cultures came together in great solidarity and friendship."" A synonym for solidarity is unity, so here the author is even saying how his neighborhood all united into one big happy neighborhood. The final reason why the mood of this memoir is unity is because even after all of these years, Rodriguez ""will always be grateful to his parents for their love and sacrifice."" To this day, his family is still united and they all still love each other. In conclusion, in the memoir, Narciso Rodriguez, from Home: The Blueprints of Our Lives, the mood is unity throughout Rodriguez's and his family's whole story." 4 4 4 +12479 5 "In the article ""@PERSON1"" from Home: The Blueprints of Our Lives the mood created by the author is both loving and appriciative. In the third paragraph, the author describes that the neighborhood, (mostly made up of Spanish, Cuban and Italian immagrants) would come together to help one another if they needed it, and how they could be like a family with out being blood related. In the fourth paragraph explains how extended family members could rely on eachother, because they know that they would do the samething if someone else was in need of help. Those are two examples of how the mood is loving. Another way the mood can be loving, and appriciative, is in paragraph five. Paragraph five shows that @PERSON1' parents would do anything to make their childrens lives better. in this case it was leaving friends, family, and work behind and moving to a totally different country. All in all the mood is given off as loving and appreciative even through the hard times of Narciso's life." 3 4 4 +12480 5 "The author set the mood in different ways Such as describing where he lived before he moved then when he told about his culture and him inheriting it then how he moved to @LOCATION1. He does not set the mood when he talks about his parents being selfish. The biggest part of the mood is talking about where he lived at first, where and what he had. He might have a good start with mood if he told more about the kind of education he got whether he was in Cuba or @LOCATION1. The mood was an overall ok because more about his life but the memoir was not a complete success. But as long as he had a satisfied, happy, organized life it was a good tone of mood." 1 1 1 +12481 5 "@PERSON1 remembers his child hood fondly in his memoir about his home in New Jersey. He creates a setting that many people can relate to because of the general feel of family and heritage. The tone in the memoir is nostalgic as he recalls the hard work of his parents, the people who he considers family, the food and the music. Rodriguez recounts his childhood as many people would, telling the readers how grateful he is to his parents and how warm and welcoming his home seemed. Even in the time during segregation in the US, numerous people from different cultures formed the community of Rodriguez's home. This place that Rodriguez describes his welcoming, and that is exactly the mood of the memoir, welcoming. The author recreates his welcoming, warm, musical home for the reader to visit and enjoy. " 2 3 3 +12482 5 "The overall mood of this excerpt from the book Home: The Blueprints of Our Lives by @PERSON1 is of love and gratitude. This article shows that @PERSON1 is looking back with love and warm memories in his mind, and there are many examples to show that this is true. @PERSON1 described his home as ""(A) humble house where a Cuban feast (albeit a frugal Cuban feast) always filled the air with not just scent and music but with life and love"" this shows how loveingly he thought of his home because he talked of how the house was always filled with life and love. He described the people of his neighborhood as ""a close-knit community of honest, hard-working immigrants..."" @PERSON1 describes this community with a lot of affection in this quote, which also conveys a warm mood. @PERSON1 constantly talks of his parents great sacrafices and he is eternally grateful. For example, he says ""I will always be grateful to my parents for their love and sacrafice."" This peice also talks of his friendly home environment where everyone was welcome. He said ""My parents always kept up their arms and their door open to the many people we considered family..."" @CAPS1 the mood this article conveyed a feeling of love, warmth, gratitude, happiness and acceptance" 3 4 4 +12483 5 "In the memoir ""Narciso Rodriguez"" there is a certain mood created by the author which makes the story interesting. It has a playful tone with a warm and loving mood. ""@PERSON2"" is about how his mother and father immigrated from cuba in 1956. They moved into a simple house when Narciso was born. Throughout the years, ""this simple house"" turned into a home"" (paragraph @NUM1). The house was filled with the loving family and special friends turning it into something special in Narciso's life, a home. How close his family and friends were added to the relevence of the home. ""It was the warmth in the kitchen in this humble house where a cuban feast always filled the air with not just scent and music but life and love"" (paragraph @NUM1). This shows how special the house was to him. This feeling also adds to the mood because of the appreciation shown. It was where I learned the real definition of 'family'."" (paragraph @NUM1) The memories from the home make the mood loving and warm." 3 3 3 +12484 5 "Your home @CAPS4 were you find happyness, joy and peace. Not only is home a @CAPS1 to be @CAPS2 but a @CAPS1 for family to be unified. In this @CAPS3, The author explains what it is to have a family and what it is and means. Joy and peace is the over all mode and thats what family @CAPS4 feel likeMany farmles in @LOCATION1 are immagrants and thats what makes up @LOCATION1. Many people stuggle to give education and happiness to there familys. They care about there familys future and would leave there hole life back in there home countries to give that to there Children and that is what familes @CAPS4 do.The author is great ful for what his parents have suffered so that he could get the good education here and not suffer as they did The mood is very calming and it describes what home and family @CAPS4 feel like." 1 2 2 +12485 5 "The mood created by the author in this memoir is that if you were born in a place you have a heritage in or family that live close to you that its your decision to move or not. As its states ""home is where one lived as a child."" in paragraph @NUM1 Narciso says @CAPS1 will always be greatful to her parents for their love and sacrifice. It took her a lot to move to @LOCATION1 but @CAPS1 was glad @CAPS1 did. in her house in Cuba @CAPS1 had her first birthday there and ""the warmth of the kitchin this humble house."" @CAPS1 found the definition of ""family"" and for that @CAPS1 says, ""I will never forget that house or its gracious neighborhood or the many things I learned there about to love." 2 1 2 +12486 5 To me the mood of the author is happy. Thinks he's happy because in the article it talks about how he grow up and where he lived through his entire life. Also it talks about when Narciso Rodriguez arrived in the United States which was in 1956. Plus it talks about how he helped the poor people in his own country before he moved to the US. Narciso Rodriguez did alot of stuff to help his country survive before he left. 1 1 1 +12487 5 "The mood created by the author in the memoir is happy. The author explaines how happy @CAPS1 was living in his cuban home. The mood is also grateful. The author is grateful that his parents left their homes and left everything behind to give a better life to their kids. The author states, ""I will always be grateful to my parents for their love and sacrifice."" The author is happy that @CAPS1 had a real family. @CAPS1 was happy for the simple house they had and was grateful. The author says in paragraph five, ""In the United States, they had to start their lives over entirely, taking whatever work they could find."" @CAPS1 is grateful that his parents struggled just to make life easier or better for their children. Those are what I think the moods are created by the author." 2 2 2 +12488 5 "The mood the author set was warmth and happiness. He describes how hard it is growing up in a racist time, and how the real meaning of family is changed through different points of view. Also he shows how the parents are selfless and open minded even when things weren't going there way. He brings cultural diversity and unstanding to describe the neighborhoods family like relationship." 2 2 2 +12489 5 "In the memoir ""Narciso Rodriguez"" From Home: The Blueprints of Our lives the author created many moods. One mood was @CAPS1 and Friendship. @PERSON1's parents kept their arms open for anyone who needed help. so did every neighbor he hade. They all came together and had fun even when they had different backrounds. You hade to make as many Friends as you could to help you live a healthy life. Another mood that was created was calm. In the house there was ""Passionate Cuban music"" and the air smelled of traditionally Cuban @CAPS2. This was because their family was Cuban so they wanted to keep traditions and make a better environment. The last mood that their was was harsh and sacrifice. @PERSON1's Parents had to give up a lot like family, friends, job, and have just to move to @LOCATION1. And when they got here they had to start fresh and take any jobs they could Find. His parents life was hard they tried to make it as good as they could For, their son. It was hard for them but they got by and did a great job." 3 4 4 +12490 5 "The mood created by the author is a heartwarming mood. This is so because he talks about his parents with a passion of love and respect. To me that is a heartwarming mood. The author talks about his parents generousity, selflessness, and caring ways. In the memoir it says that the parents let friends and family stay with them until they got back on their feet. The author also talks about how the parents left their family, friends, and careers behind just so that the author, their son, could have a better life. If that is not a heartwarming mood I don't know what is." 2 2 2 +12491 5 The mood that the author creates in the memoir is gratefulness. The basis of the authors life has been the @NUM1 lessons that his parents have shown him with their lives. The author is eternaly grateful to his parents for passing on their love of cooking and their rich culinary skills. Narciso Rodriguez admires his parents strength and courage for what they did. The mood that the author portrayed in the memoir is gratefullness towards his parents. 2 2 2 +12492 5 "In this memoir by @PERSON1, he explains and recalls the home he grew up in. He talks about the small little @NUM1 room house and explains how his parents made it home like. The mood Rodriguez created is sort of reminisant/wistful mood of his days as a kid in the house. He talks about, how his parents ""... both shared cooking duties and unwittingly passed on to me there are rich culinary skills and love of cooking..."" (@NUM2 2.@NUM1-5). This sort of sets up the mood of the narrator being reminisant and grateful of his life as a kid." 2 2 2 +12493 5 "The @CAPS1 made the mood in this memoir a nice feeling story and a motivating story. It's nice because of the actual story of the family moving to @LOCATION1, and establishing their own home. The family didn't just live with themselves, it was like all of their friend were like brothers and sisters nobody was excluded from their ""family"". It's motivating because of even if you wern't in their race, they would still lend a hand for people clearly in need. Everybody in the community acted like they were like they were blood related but in reality nobody was. Everybody just cared and love for eachother like parents, brothers and, sisters. The mood in this memoir was it had a nice feeling and it was a motivating story." 2 2 2 +12494 5 "The mood in the memoir by @PERSON1 his family, and how not all family members are blood relitives. Narciso grew up in a house filled with culture and love. His ""young parents created a traditional Cuban home"" that Narciso would grow up in. Throughout his memoir, Rodriguez talks about ""the real definition of 'family.' "" @CAPS1 explains how it there were people of no relation who were considered family. His parents would keep ""their arms and the door open to the people we considered family, knowing that they would do the same for us."" Narciso Rodriguez tells of his home were @CAPS1 learned that a family is a group of people who care for one another, and that is the mood in his memoir." 2 3 3 +12495 5 "In the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, created a mood of joy and happyness. It set this mood because he can have a nice and happy life. I think its happy that he can express his feelings to us the reader. The writer makes me feel joyful because it reminds me of what my family is like. ""My parents always had their arms and door wide open to friends and people we consired family."" My mother always has her heart and arms open to anyone who needs to be loved. It is also joyful to know that most of his family will be coming to live with him. The writer tells us about how his grandfather and grandmother will be coming to the United States when they are allowed to leave Cuba. That is the mood the memoir set of me to understand it." 2 1 2 +12496 5 "The mood created by the author in the memoir is thankfull for being united with his family, naivors and friends. also for all the things his parents have done to give him a good education an a home so he could have everything he needs." 1 1 1 +12497 5 "The mood created by the author in this memoir is happy and grateful. @PERSON1 starts by explaining his love for his home and cuban traditions. ""... my young parents created our traditional Cuban home, the very heart of which was the kitchen... Passionate Cuban music... formed the backdrop to life in our warm home."" (@CAPS1 @NUM1). The author shows his love also for his neighbors and neighborhood, even though the @CAPS2 was very racist they still came together like a family (@CAPS1 @NUM2). Lastly, the author shows the mood by explaining how grateful he is to his parents:, how they have done so much for him ""The faith that this struggle would leave them and their children to better times drove them to endure these hard times. I will always be grateful to my parents for their love and sacrifice."" (@CAPS1 @NUM3 and @NUM4). By writing about his love for his family, friends, and home, @PERSON1 makes the mood loving/ happy and grateful for all that he has." 4 3 4 +12498 5 "The author creates a loving, warm mood that is felt throughout all of @PERSON1's memoir. For example, ""...passed on to me they're rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adore to this day)..."" (Rodriguez @CAPS1 Two). Rodriguez's parents loved to cook, something he remembers fondly, and he shares their love to this day. The reader feels this love when reading the line. The reader feels how much @PERSON1 loves Cuban music when reading the next sentence. He even states how much he adores Cuban music even now. Another example, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, form the backdrop to life in our warm home"" (Rodriguez @CAPS1 Two). @PERSON1 even says ""warm home,"" and warmth is definitly felt while reading this line. The feeling of being a child, of being surrounded by friends and family and many celebrations consumes the reader in a blanket of warmth and love because the reader can imagine this. Another example, ""My parents always kept their arms and their door opened to many people we considered family..."" (Rodriguez @CAPS1 @CAPS4). @PERSON1's parents provided a warm envirorment opened to loved ones because they are very warm and loving people themselves. @PERSON1 and the reader feel the emotion because of @ORGANIZATION2's writing. one final example, ""I will always be grateful to my parents for their love and sacrifice"" (Rodriguez @CAPS1 @CAPS6). The reader gets a feel of how much Rodriguez loves his parents. @PERSON1 even says ""love."" His parents are loving people and so is @LOCATION1. @PERSON1 had a warm and loving childhood, which he depicts greatly in his memoir." 4 4 4 +12499 5 "In this memoir, the author is showing the mood as happiness. The mood is happiness because, the author is talking about how Narciso childhood use to be when he was little. The enviroment of his home, and his cuban culture. He mentions how his family came over from dinner sometimes, and the cuban heritage filled the air. Also how the cuban music brought enjoyment. And that just brought him happiness." 2 1 2 +12500 5 "In the memoir, ""Narciso Rodriguez,"" the mood is very welcoming and warm. An example of This mood is when it said, ""growing up in this environment instilled in me a great sense That ""family"" had nothing to do with being a blood relative. All of the different cultures came together in friendship.The parents of Narciso came to the United States with a lot of courage. They didn't know any about the language or culture, They just wanted their children to have a better life. They left behind family and friendIn their house, they welcomed all other refugees for their arrival. They still had cuban feasts but he learned the real definition of family. Those are The ways That in this memoir, The mood is very welcoming." 3 3 3 +12501 5 "Narciso Rodriguez expresses many moods of happiness in the memoir. @CAPS1 is thankful, ""But, in reallty, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" That statement shows how thankful Narciso is to have such a wonderful life full of great friends and families. The mood of the memoir is very up-beat because Narciso is talking about how great his life has been since @CAPS1 was born. ""I've often told them of my admiration for there strength and perseverance, and I've thanked them repeatedly."" That quote shows how proud @CAPS1 is of his parents because they gave up their families, friends, and careers so that @CAPS1 could have a better life in @LOCATION1. Narciso says, ""my mother and father had come to this country with such courage, without any knowledge of the language or the culture."" @CAPS1's saying that @CAPS1's very happy that his parents did that for him. Many quotes from the memoir support and set the mood to describe Narciso's life." 4 4 4 +12502 5 "The mood created by the author was greatfulness and happiness. When the author was talking about his parents and his culture he said ""and for which I am extremely greatful"" ""Which I adored to this day."" The author discribed his charector in such a way you could easily tell he was a greatful and happy person." 2 2 2 +12503 5 "In the excerpt ""Narciso Rodriguez"" written by ""Narciso Rodriguez, @CAPS1 designer"", the moods created by the author in the memoir are mainly happiness, gratefullness, and being humble. For example, in paragraph @NUM1 Narciso mentions alittle bit about his past, and how gratefull he is for what he has today. Narciso knows that his parents try their best to give him a better life. He knew that the move would have to be a big sacrifice for his parents to do so he thanks them often. No matter were Narciso was, either a good place or a bad place, he always found happiness. This @CAPS2 doesn't have alot of different moods but few simaler ones. The @NUM1 moods that were mainly presented in the @CAPS2 are happiness and gratefull and all of which came from Narciso Rodriguez." 1 2 2 +12504 5 "In the memoir ""Narciso Rodriguez from Home: The Blueprints of Our Lives a certain mood was created. The type of mood that was created by the author is a warm and @CAPS1 mood. It was because of the different things that were happening in this community, and more importantly the house. This house had become a home to Narciso because of all the different that would happen there. like the Cuban music, the constant in and out of extended family members, and the fact that this all happened because his parents selflessly came to this country to give him a better life, even though they had to leave behind their families, careers, in the country they loved. This is the mood created by the author in this memoir." 2 2 2 +12505 5 "In the memoir, ""Narciso Rodriguez"" the author does a great job creating the mood. One example of how the author creates the mood is, when the author says ""my parents created our traditional Cuban home, the very heart of which was the kitchen."" That creates a mood of happiness and love. That's because the author shows it by saying created our traditional Cuban home. Making the family feel back at home made them feel happy. Also the author makes the mood of the passage ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and love of cooking that is still with me today. The author creates the mood as happy and gratefulness. The author shows it by saying love of cooking. Also by saying which is still with me today and I am grateful. Also in this memoir the mood is shown by gratefulness by the line, I will always be grateful to my parents. Lastly, the author creates a mood bravery and caring. It says ""my mother and father had come to this country with such courage."" That line shows they were brave and willing to try something new, they cared for their child. That is how the mood is created by the author." 4 4 4 +12506 5 The @CAPS1 is happness cause @CAPS2 think of all the good time her when @CAPS2 was there 1 1 1 +12507 5 "Narciso Rodriguez creates a grateful and appreciative mood in this memoir. When he talks about his friends being like his family it makes people grateful for their close friends that they have. While reading this many people probably became more appreciative for what their parents did and provided for them.""I will always be grateful to my parents for their love and sacrifice.""(paragraph @NUM1) This quote @MONTH1 make some wonder if they are grateful for what their parents did for them.While reading people @MONTH1 also reflect on if they lived in a home with people they love around them or a house." 2 2 2 +12508 5 "In the story Narciso Rodriguez by The blueprints of our lives, the author's mood in this story is very happy, generous, and humble. The author is so happy that she is moving to a new, and bigger house. This one she can actually call home. And very generous because her parents moved for her education. and to get good money to make us happy. The girl's parents welcome anyone into their home as family, and thats why she loves them too. But I have to say she's mostly grateful. Because her parent's are doing every thing to make her happy, and they even have to accept getting a job they dont even like. And for their love and sacrifice. And that's what mood the author feel's in the story." 2 2 2 +12509 5 "The mood in the story was very nice. Narciso Rodriguez was very grateful to his parents and friends because of their great solidarity and friendship. In paragraph @NUM1 Narciso said ""I will always be grateful to my parents for their love and sacrifice."" Narciso's parents welcomed other refugees to celebrate their arrival to the @LOCATION1. They taught Narciso rich culinary skills that he would never forget. Narciso also learned how much his family and friends mean to him. ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and a demonstration of how important family and friends are."" In paragraph @NUM1 it said ""They showed me with their lives, and these teachings have been the basis of my life."" Narciso's friends and family taught him the real meaning of the words family and home." 3 2 3 +12510 5 "The mood of the memoir is happy and thankful. The author explains how his parents brought him to the United States. All of his neighbors were spanish, cuban or Italian. They were all friends and had a good bond. He had people at his house for dinners. It was here in the United States, that he really understood what family was or what a home was. He couldn't show his parents how grateful he was for them to go through such a hard time to make their childrens lives better. The thankful mood he displays makes the story more meaningful." 2 2 2 +12511 5 "The mood created by the story could be described as thanfullness or gratitude. After reading about a loving pair of parents that gave everything they had just for their children makes you feel guilty and respectful of your own parents. The author portrayed that they were grateful for their parents and they he or she knew they would never be able to repay them. From what the author says, times at home financially @MONTH1 have been tough, but because they had such a loving family, everything was alright. It makes me happy and proud to think that my family plays a huge part in who I am. The mood that is created by this story is admiration." 2 2 2 +12512 5 "In the memoir ""Narciso Rodriguez from Home by the blueprints of our lives the mood is homely and friendly. The mood of friendliness is displayed from his passed In paragraph @NUM1 it says ""... the very heart of which was the kitchen."" This is where he had memorized his culture's distinct type of food. Also his mood is from the music. In paragraph two it states, ""@CAPS1 Cuban music filled the air, mixing with the aromas of the kitchen."" This shows the culture lurking and dancing through his house of his childhood. Lastly the mood is interpreted from his family. In paragraph four it states, ""... @LOCATION2 graced our kitchen table for meals more often than not. Also at the table were Sergio and Edelmira, my surrogate grandparents who lived in the basement apartment."" This shows how friendly and inviting the were. The mood set in this home is friendly and inviting." 3 3 3 +12513 5 "The mood of this memoir is warm and friendly. This is easily recognizable because all of the poem was based on his family and his tightknit community. @PERSON1 five correct @PERSON2 explains everything about his home that made him who he is today. @PERSON2 also explains about his community and the diversity there. He talks about how his neighborhood is mostly made up of Spanish, Cuban, and Italian immigrants. It @MONTH1 seem like this would be a tough neighborhood but he specifically says, ""... all of these cultures came together in great solidarity and friendship. @PERSON1 also describes what life is like in his house he tells the reader that the ""heart"" of his house as the kitchen. His mother was always in there cooking a traditional Cuban meal. He also says that everyone (his landlord, his surrogate grandparents, his aunts, his cousins, and his extended family) would come to his house for dinner. Another thing is @PERSON1 would always praise his parents throughout the whole story. He would talk about how selfless and kind they were. He thanks them for his success in life. I believe that if it was very brave of @PERSON1's parents to move to the United States, but they did it for their children. @PERSON1 ends the article with a very inspirational quote. It is, ""I will never forget how my parents turn this simple house into a home."" That is the mood @PERSON1 sets for his memoir." 4 3 4 +12514 5 "Narciso Rodriguez creates a mood of happiness and greatfulness in his memoir. He talks about how his family is always celebrating @CAPS1 From their native Cuba. The memoir states, ""It was in the warmth of the kitchen in this humble house where a Cuban Feast (albeit a frugal Cuban feast) always filled the air with not just scent and music by life and love,"" about the house Narciso grew up in. Narciso's parents came to america ""to give their children a better life"" which makes Narciso greatful to them. Narciso was also greatful to his parents for their love and sacrifice they gave to him. Narciso says, ""there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are"" Which makes his greatfullness come out into the mood. He shows his hapiness and greatfulness for his parents @CAPS2 the mood of his memoir." 4 3 4 +12515 5 "In the memoir ""Narciso Rodriguez"" from @CAPS1: The Blueprints of Our Lives The mood created by the author in the memoir is very cultural and family. The mood is very cultural because they created the home into a cuban home, the very heart of which was the kitchen. The Parents both shared cooking duties and unwittingly Passed their rich culinary skills and a love of cooking. The mood is also family because when someone needed a place to stay from their family they would let them stay at their house." 2 1 2 +12516 5 "This memoir by Narciso Rodriguez has a grateful mood. @CAPS1 is thanking his nieghbors for the unity that @CAPS1 had in his community and explaining how @CAPS1 learned about family from them. @CAPS1 is also thanking his parents for giving up everything they had in Cuba to give him a good home. For example, @CAPS1 explains that @CAPS1 had a ""close-knit community of honest, hardworking,"" ""Spanish, Cuban and Italian immigrants at a time when Overt racism was the norm and segregation prevailed."" @CAPS1 says his neighbors helped people who were, ""not necessarily their own kind, (but) were clearly in need."" In paragraph @NUM1, @CAPS1 describes the things @CAPS1 loved about his ""traditional Cuban home"". In paragraph @NUM2, @CAPS1 says, ""My Mother and father came to this country with such courage, without any knowledge of the language or the culture. They came selflessly... to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they love. @CAPS1 describes his parents hardships and says @CAPS1 will, ""always be grateful... for their love and sacrifice."" @CAPS1 makes it clear that the passage is written with gratitude." 4 4 4 +12517 5 "The author's mood was happy, thankful, greatful, caring, thoughtful. The mood was happy because he was sharing his life story and what his parents did for him and his siblings made him very happy and greatful. He is very thankful because his parents could have stayed in Cuba and let them grow up there. But instead they came to @LOCATION1 and struggled at first, but the end result was more they could have imagined. He described his parents to be very caring and always put their children before their needs. The author sounds like he is very thankful to grow up here than Cuba because he now sees that he had a much better life. Having a family liked he did he really cheriste the word family. At the end of the excerpt he said ""I will never forget how my parents turned this simple house into a home. This means it was just a random house when they moved in, but when they were done became a home." 3 4 4 +12518 5 "The mood of the memoir created by the author was that he was very greatful for what his family has done. I know this because throughout the memoir he would always say how much he appreciated how his parents made this house into a Cuban home. I also know that the mood of the memoir by the author is greatful because he said how he liked that his neighborhood had many different cultures such as Spanish and Italian. The author also said ""I will never forget how my parents turn this simple house into a home."" That is what I think the mood of this memoir is." 2 3 3 +12519 5 "The mood of the memoir is generally happy. Narciso talks about how wonderful his home was growing up. Narciso speaks about the wonderful music and the food, he talks about his family's happiness and how that house he grew up in became his home. The mood is happy because it makes you feel the love he felt living with his parents in that home in New Jersey. To conclude the mood is happiness, proudness, fondness. It brings back the memory's of anyone's first home and love that was there" 2 2 2 +12520 5 "In this memoir about Narciso Rodriguez the ton is happy and loving. In this memoir there are many examples about how the tone is loving, and happy, but heres a few. First in paragraph @NUM1 there + two phrases in parenthesees that show how @CAPS1 loved the things like the music and the cooking of his home, and family. ""(and for which I am eternally greatful)."" And, ""(which I adore to this day)."" @CAPS1 wouldn't have added the use things in unless @CAPS1 truly meant it, and if @CAPS1 really loved his home. Also what sets the tone is how @CAPS1 talks about loving his parents, and how @CAPS1 is grateful for them. ""I will always be grateful to my parents for their love and sacrifice,"" @CAPS1 states in the first sentence of paragraph @NUM2. Lastly, the last sentence of the memoir is happy and puts a smile on your face after you read it, ""I will never forget how my parents turned this simple house into a home."" In Rodriguez's memoir, it has a happy and loving tone throughout it." 2 3 3 +12521 5 The mood of the memory is happy and loving. 1 1 1 +12522 5 "The mood which Narciso Rodriguez showed in the memoir was thankful and grateful to his mother and father for their love and sacrifice they went through when he was growing up. He was very thankful for their giving arms to anyone who needed them and for their warm attitudes and teachings of what family really defines. Narciso learned this deffinition from his parents, family is or can be anyone important to you and they do not have to be blood related such as a neighbor with a different culture. He is also very grateful for his parents unselfishness by moving to @LOCATION1 for his education not even putting the thought of work in their head. Narciso's mood is represented in every sentence in this memoir written, he was very lucky to have had such a great childhood and ""family"" which he realizes and will be grateful and thankful for everything anyone ever did to help him grow up to who he is now for the rest of his life." 3 3 3 +12523 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the author sets a certain mood. I think the mood created in this story is love. My reason for thinking this is that the story talks about how the parents sacrificed everything to move to the @LOCATION1 so they would have a better life and so would their children. Another reason why love is the mood is because he talks about how even though the people he spent his time with weren't his blood relatives, he still consider them all family. Lastly, I think love is the theme because he shows an undying gratitude towards his parents for his wonderful childhood and making the place he lived in feel like home. That is why I think the mood the memoir creates is love" 3 2 3 +12524 5 "The mood is set to a sad feeling. Filled with poverty the auther sets it up this way. There is a mood of love too. For example in paragraph @NUM1, it says, ""I will never forget how my parents turned this simple house into a home."" It also says that they learned the real definition of family. this is why it is set too a sadly love mood. They were an immigrants. This memoir is inspirational." 2 1 2 +12525 5 "In my opinion I think that the author sets a loving mood. Here are my points to consider. First of all he explains how much he loves his parents. An elaboration of my point is that he uses strong words to show that he loves them alot. For example ""I've often told them of my admiration for thier strength.""@CAPS1 of all he talks about his family and the love they shared. An elaboration of my point is that he explains what courage they had. For example ""My mother and father had come to this country with such courage, without any knowledge of the language."" @CAPS2 of all he explains how much his house meant to him. He talks about the memories he had there. For example ""I will never forget that house... or the many things I learned there"". In conclusion thats why I think the author sets a loving mood." 3 3 3 +12526 5 The author memoir were import to him a life ment alot to him and shard it with the whole world to read. 0 0 0 +12527 5 "The mood in this story is more of a positive mood. Because the auther is talking about his home and how he loves it. And how he is praising his parents for takeing a chance in america. but it could be a bad mood because they had to leave their friends behind, but they made it to america and they are a faimly and home." 1 1 1 +12528 5 The mood created by the author in the memoir is happiness and love I think that this memoir is about happiness because in paragraph @NUM1 he explains how fun and happy his home is. And his family cooks together which he really appreciates and @CAPS1. I also think this memoirs about love to because through out the whole memoir he talks about his appeciation and love for his family and friends. And thats why I think the mood of this memoir is happiness and love. 2 2 2 +12529 5 "I think that the main mood created by the author in the memoir was love. But love branched out into gratitude and hospitality. Love is shown a lot through family in this memoir. The love of the authors parents is shown in paragraph @NUM1, when it says ""They came selflessly, as many immigrants do, to give their children a better life..."" Love from the author's parents is shown again in paragraph @NUM1 when it says ""The faith that this struggle would leave them and their children to better living drove them to endure these hard times."" These two quotes show the love that the author's parents showed towards their children. A mood of hospitality was also shown in this memoir a lot. In paragraph @NUM3, it shows hospitality by saying ""it was a close-knit community of... immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" This shows the hospitality of the neighborhood and how caring it was. The other mood that the author created in the memoir was gratitude in paragraph @NUM4, this is shown. ""I will always be grateful to my parents for their love and sacrifice. I've often told him that what they did was a much more courageous thing than I could have ever done. I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly."" This quote shows how massively grateful the author is toward her parents. These are the ways that the author shows the mood in the memoir. " 4 4 4 +12530 5 "In the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of Our lives by Narciso Rodriguez, the author creates a mood for the story. The mood for his story is bittersweet. It is happy, but slightly sad. One way is is shown when @CAPS1 mentions his grand parents. Rodriguez writes ""Sergio and Edelmira, my surrogate grand parents who lived in the basement apartment. (I would not know my 'real' grand parents, Narciso the Elder and Consuelo, unil 1970 when they were allowed to leave Cuba)"" It @CAPS2 that it is bittersweet because even though Rodriguez had ""grandparents"", @CAPS1 didn't meet his actual grandparents until later on in his life.Another way Rodriguez makes the mood bittersweet is by talking about his parents. @CAPS1 writes, ""they came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" It @CAPS2 that his parents sacrificed for him. Another way Rodriguez creates a bittersweet mood is by admiring his parents. Rodriguez writes, ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageas thing than I cold have ever done."" @CAPS1 @CAPS2 @CAPS1 is grateful for what they gave up so @CAPS1 cold have a good life. Rodriguez conveys the happy, yet sad times in the memoir." 4 4 4 +12531 5 "In the memoir, @PERSON1, from Home: The Blueprints of Our Lives, the author created a mood for @PERSON1. The mood the author created was something different, but it never seems to go down.As Narciso Rodriguez really gives you the definition of ""family"", in the memoir. One of the examples the author created for the mood is ""Growing up in this enviornment instilled in me a great sense that ""family"" had nothing to do with being blood relative."" In the paragraph before that they talked about moving into a new home, and to the heart was the kitchen, they cooked while listening to cubic music. Narciso said, ""she's internally grateful to know how to cook, and she still enjoys listening to cubic music."" Its a happy mood, showing memory. Another example is, ""My mother and father had come to this country with such courage, without any knowledge of the language or culture."" Narciso's mood is suddenly more strict, but proud of her parents. The last example would be, in all of the last paragraph. ""It was at her home where she learned the real definition of 'family'."" ""I will never forget how my parents turned this simple house into a home."" Narciso's mood is so happy and pround to say that her home and family really meant a lot to her. The mood the author created for Narciso Rodriguez was always proud, happy, but never sad. She had a lot of memories from one home." 4 4 4 +12532 5 "In the memoir Narciso Rodriguez the author sets a mood. The mood that is set is happy, greatful, and loving. In paragraph @NUM1 it states ""They came selflessly, as many immigrants do, to give their children a better life."" The author is very happy his parents did this for him. In paragraph @NUM2 it states ""I will always be greatful to my parents for their love and sacrifice"". And in paragraph @NUM3 it states ""I will never forget how my parents turned this simple house into a home."" The author loves his home for all the memories and friendships it holds, and is greatful to his parents who provided him with it." 2 3 3 +12533 5 "The mood in the memoir is happyness, and friendship, and glory, an example is ""My parents always always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us. A feeling of friendship and honesty is ""it was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, where clearly in need."" and that is the mood of the memoir." 1 2 2 +12534 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, the memoir gives a loving and thankful tone. The loving and thankful tone is snowing the definition of ""family"". In paragraph seven the author states, ""and for this, I will never forget that house or its gracious neighborhood or many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" This shows that the tone is thankful for what the parents had done and love them at the same time. As I aformentioned, the tone is love and thanked." 2 2 2 +12535 5 "The mood created by the author, @PERSON1, in his memoir is happy and warm Rodriguez (multiple times), lovingly discribes his childhood and the people in it. In the memoir, he talks about the house he grew up in and the love in his home. Rodriguez describes the warmth of his kitchen and every thing that went on in it. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home"" (paragraph @NUM1). Rodriguez also describes the conection between the family and friends around him, ""countless extended family members came and went...My parents always kept their arms and their doors open to the many people we considered family, knowing that they would do the same for us"" (paragraph @NUM2).With all of the love in this memoir, there is also a serious tone when the author describes the difficulties his parents had to face, to give him the best life that he could have. You can tell that Rodriguez has great respect for his parents." 3 4 4 +12536 5 "In the memoir, Narciso Rodriguez, there is a clear mood created by the author. For instance the Cuban background set the mood of happiness. Narciso explains, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I'm eternally grateful). Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" This shows her love and happiness from her Cuban background. Also another mood set by the author is greatfulness. Narciso explains, ""I will always be grateful to my parents for their love and sacrifice."" Narciso is clearly greatful for her parents for leading and guiding her life to happiness. In conclusion, Narciso Rodriguez creates the moods of happiness, and greatfulness throughout the memoir." 3 3 3 +12537 5 "In this memoir, the author, Narciso Rodriguez enstills a kind of loving mood and a strong feeling of gratitude. He is thankful for the fact that his parents sacrificed their happiness and family for the well-being of their child's (Narciso's) life, as shown in paragraph @NUM1, where it says: ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" Also, Narciso gives a feeling of admiration for his parents. He admires their courage for leaving all the wonderful stuff in Cuba, as he says in paragraph @NUM2: ""I've often told them [his parents] of my admiration for their strength and perseverance, and I've thanked them repeatedly.""All in all, Narciso really shows a feeling of love in this memoir." 3 3 3 +12538 5 "In the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, the mood created by the author is a happy, joyous mood.The mood of the memoir is happy because of their close friendships. The family got along well, they cooked together, ate together and so on. The community was close, so everyone felt like family. They had feast with music. This are shown through the following quotes ""my parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking. In our neighborhood, despite customs elsewhere, all of these culture came together in great solidarity and friendship. It was a close-knit community. My parents always kept their arms and door open to the many people we consider family, knowing they would do the same for us."" @CAPS1, their aunts, cousins, and friends graced to their table, and ""It was in the warmth of the kitchen in this humble house where a Cuban feast filled the air with life, love, and music.The author ends it with ""It was here where I learned the definition of family. I will never forget that house or its gracious neighborhood where the many things I learned there about how to love."" That concludes why the mood is joyous." 4 4 4 +12539 5 Narciso Rodriguez created a very positive mood throughout the memoir. The mood that was created by the other was happy. I chose this mood because in the memoir he describes how nice it was to live in a town where people cared for him. He also mentions how grateful he was to have a caring and loving family to be brought up in. In this memoir about Narciso Rodriguez the author created a very positive mood throughout the memoir. 2 1 2 +12540 5 "In the memoie, ""Narciso Rodriguez, from Home: The Blueprints of our lives, the mood created by the author in the memoir. The mood the character created was greatfull. One way he was greatfull was because he talked about how he grew up with his family and was happy for every thing his family went to help him out becoming someone in life. The author apreciated everything they have done for him even though they were immagrants but still helped him out. In conclusion the authors mood that he created was greatfull." 2 2 2 +12541 5 "The author of this story created quite a mood in these few paragraphs. As I read this I could feel a warm welcoming from home. The mood would have to be greatful and happy. Feelings of which we are expected to feel on @CAPS1. The author talks about his kind parents and loving family. About how his parents was so selfless, and would always lend a hand to anybody needed help, matter who they were. He also talked about his loving neighborhood, and not blood related families. I believe the author created a great mood that reminds you of home and makes your heart smile." 2 2 2 +12542 5 "The mood the auther describes in this memoir is very simple and nothing special in paragraph @NUM1 @CAPS1 leads off saying ""In 1961, I was born into this simple house."" @CAPS2 the auther was saying the childhood was very Simple and nothing special." 1 1 1 +12543 5 "The mood created by the @CAPS1 in the memoir is by in paragraph @NUM1 it say's ""Growing up in this environment instilled in me a great sense The ""family"" had Nothing to do with being a blood relative."" and in paragraph @NUM2 it say's ""it was in the warmth of the kitchen in this humble house where a Cuban feast (albeit a frugal Cuban feast) always filled the air with Not just scent and music but life and love It was here where I Learned The real definition of ""family."" These are the mood created by The @CAPS1 in the memoir. " 2 2 2 +12544 5 "In the memoir ""Narciso Rodriguez"" the mood created by the author is very loving and grateful. He talks about how great it was growing up in his home. He also says how gracious his parents were. In the memoir he said, ""I will always be grate ful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could ever have done."" This shows that he sounds very grate ful to his parents for everything that they have done. The mood also sounds very loving because he loves his parents for moving to @LOCATION1. His parents also sound loving to him because they were brave and sacrificed a lot for him. these things are why the mood of the memoir is loving and grateful." 3 3 3 +12545 5 "The mood of the boy in this story was he was happy talking about how his whole family could come to his house for any meal in the day. Also his friends could come over too. While he was explainng how he didn't ever get to meet his real grandparents from Cuba he didn't sound as happy as before the text was more happy. At the end of this memoir the boy said "" I will always be grateful to my parents for their love and sacrifice."" When he said that his mood went to happy and thankful for everything his parents gave him in his life also like the main thing is his cooking skills came from his parents too @CAPS1 he is very thankful for what he has. That is the boys mood in the story." 2 3 3 +12546 5 The mood created by the author of the memoir was a very nice tone that gives a feeling to the reader that helps them understand the feeling that the author is putting into his words. The mood is full of happeness that is expressed by the fond memories our author had. It was also a mood of deep satisfaction that helped our author give his point. He gave information of the house and the neighbor hood. To add a personal touch. The mood was based off of all the happenings in the house. 1 2 1 +12547 5 "The author tries to set the mood to gratefulness. ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, & careers in the country they loved."" ""I will always be grateful to my parents for their love & sacrifice."" ""I've often told them of my admiration for there strength & perseverence.""" 1 1 1 +12548 5 "The mood in the memoir doesn't change alot. Narciso Rodriguez mood is happy in the end because @CAPS1 says ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" @CAPS1 also says ""I will never forget how my parents turned this simple house into a home."" @CAPS2 there I think Narciso is happy. The mood is mostly calm & happy because @CAPS1 telling the courage his parents had. Thats the mood the author gave." 2 2 2 +12549 5 "The author creats a mood in the memoir that is a fantastic to feel and it is called happness. In the memoir she creats the mood of happness by tell us about all her happy, loving, memores. One is how her younger parents pasted @CAPS1 the cuban cultur, music, food, and more. Another one is how her parent cared about others so they help family and friends into they got back on their feet and how she does the same. Also she was happy about the non selfleness her parents had she said they allways put her and others ahead of them they did ever thing for her.Happness is one of the best moods to be In No matter where you are because @CAPS2 you are happy others are happy too it also making you and others feeel good." 2 2 2 +12550 5 "Narciso Rodriguez created a very warm, loving, and overall positive mood in his memoir. Throughout the memoir everything is positive. For example, he describes his parents hardships here in the @LOCATION1 Not with pity for them but with pride. They were ""braving the harsh Northern winters"" not dying because of the cold, they were strong. Rodriguez also describes his community. He portrays it as a close-knit community almost like a family who extended their help to anyone in need. Rodriguez clearly has a very good outlook on what his childhood was like." 1 2 2 +12551 5 The mood of this story is very happy because the author is describing his childhood memories and all the great times he had in his home. He says over and over that he loved his home when he was a kid and enjoyed hanging with his family. Also the mood of this story is very loving. The author talks about how he realized the true meaning of family in his house. Plus he talks about how much his parents sacrificed for him to be happy 2 1 2 +12552 5 The mood created by the auther in @CAPS1 is happy and thank full. one rezon that @CAPS2 is happy her mom and @CAPS3 that @CAPS2 had a good life and her mom and @CAPS3 helped 1 1 1 +12553 5 "In this memoir, the author creates a very nice mood. The mood he creates is comforting, yet at the same time, it is grateful and happy. The author creates a comforting mood because he talks about his home, his family, and what he grew up with. He talks about how his parents played Cuban music, cooked Cuban meals, and turned the ""...Simple house into a home."" When he talks about how generous and wonderful people his parents were, the reader feels a sense of comfort. Also, when he talks about how he lived in a neighbor hood that was a ""...close-knit community of honest, hard-working immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" The reader feels a sense of comfort. The author also creates a greatful mood because he is always talking about how he will ""...always be grateful to [his] parents for their love and sacrifice. ""The author is greatful for all the things his parents have done, from leaving Cuba, their jobs, family, and everything behind when they left just so he could have a better life, to how well the raised him and all the things they did during his child hood. Throughout the memoir, the author constantly creates a comforting, grateful, and happy mood." 3 4 4 +12554 5 The mood in this article was just stunning because explaining how your parents were very good and explaining how they raised you well gives people the thought this is very good especially when you are having fun with friends and family.The author just set off a good mood towards the readers in this article: because people like to read something that would make him or her happy and this story made me feel good about my self and family just like the family he/or she has in this article 2 1 1 +12555 5 "In the memoir, Narciso Rodriguez describes his family factually, as well as loving and inviting. In paragraph two, Narciso tells how his family interacted in their house. ""In 1961, I was born into this simple house, situated in a two-family, blond-brick building in the Ironbound section of Newark, New Jersey."" Here, Narciso lists the facts about his childhood. The memories he shared with his family during that time makes the mood for loving. ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" His parents shared their love and compassion with everyone else, and that is what Narciso is grateful for; for the love and sacrifices his parents made for him. The powerful words he uses in the last two paragraphs puts the memoir into a mood of love and perhaps even sadness. The word he uses can tell they are from the heart, the memories of @CAPS1 parents as well as the rest of his family, influenced his life, and he learned the true meaning of family." 3 3 3 +12556 5 "The author created many types of moods in this @CAPS10. At one point in the @CAPS1 he creates a sweet type of @CAPS6 by describing his home, him @CAPS2 and @CAPS3, how the kitchen was the heart of his house.At another point in the @CAPS1 the author created a @CAPS5 @CAPS6. He creates this @CAPS6 by telling the @CAPS7 about how his Family took everybody in. His Family Always helped their Friends and when family visited they always had a place to @CAPS8. He also created a sad tone by talking about how he'll never beable to express his gratitude twards his parents. Finally at the end of the @CAPS1 the author creates a sincere @CAPS6. He creates these sincere @CAPS6 by expressing his gratitude twards his parents for being so selfless.Those are ways the @CAPS6 changes during his @CAPS10." 3 3 3 +12557 5 "In the memoir of @PERSON1, the author shows a lot of mood throughout the story. Happy and grateful stand out as the two most important moods. @PERSON1 is very grateful throughout the memoir. He is grateful of his friends and family. His caring and selflessness parents. Also all of the hard work they do and what they gave up back in Cuban in order to come to @LOCATION1. His dad worked in the laboratory and his mom studied chemichal engineering. Lastly he is grateful to have grown up in a really good home. Another mood is happiness. In the first paragraph parenthesis mean that he really enjoys cooking and Cuban music. He is also very proud about his Cuban @CAPS1 and how his extended family stays with him. This memoir has a lot of mood in it and it makes it a lot better." 2 3 3 +12558 5 The mood from the auther her Life was very good @CAPS1 @CAPS2 in a simlpe house cuba. @CAPS1 Do alot of fun thing with her family. her grateful parents their Love sacrifice and I've often @CAPS1 Told then that what did was so much courageous and her parents told her that the early age the demonstarat how important family and friend are. 2 1 1 +12559 5 Narciso mood in the @CAPS1 is him growing UP in Cuba and then moveing to the US. When he is in the @CAPS2.S he finds a house and later in the @CAPS1 he and his famliy makes the house into a home. The @CAPS1 is also about in explaning how is life is like what he dose like cooking for his famliy and what he dose in his free time. 1 1 1 +12560 5 "@PERSON1 is a memoir of family memories growing up in an immigrant neighborhood. Throughout the reading Narciso created a very grateful and excited mood. One example of this was when he said that he was forever grateful of his families Cuban cooking.Another example of this mood was when he was getting excited over the fact that his whole immigrants neighborhood was lending out a helping hand even if you had a different @NUM1 also portrayed greatfulness by how that even though he hasn't met his real grandparents, that someone in the neighborhood supplanted them and treated @PERSON1 like a grand-child. That is the mood that @PERSON1 showed in his memoir of his family." 2 2 2 +12561 5 "I think the mood of the memoir is overall positive. The charactor is always complimenting his parents and is always telling him he admires ""their strength and perseverance."" @CAPS1 of the memoir is the child complimenting the parents and culitur. Narciso strongly adores him family." 1 1 1 +12562 5 In the quick story @PERSON1 the auther shows a mood of gratitude and appreciation for what her parents have done throughout their lives. They have gone through tough moments but they kept moving on to make their lifes and their child's life easy and good 1 1 1 +12563 5 The author's mood is happiness the author is really happy to do this @CAPS1 about this family that is grateful of liveing in their country that they love with all their hearts and they will never forget their country. 2 1 2 +12564 5 "The mood Created by the author in the memoir is in my opinion pure happiness and Love. Narciso Rodriguez says that ""Growing up in this environment instilled in me a great sence that ""family"" had nothing to do with being a blood relative. This family shows this many times in this memoir, they always had people over, like the landloard's daughter Alegria who was Narciso's first friend and babysitter she went over to eat dinner very often. Narciso also States that ""also at the table were sergio and Edelmira, my surrogate grandparents who lived in the basement apartment. (I would know my ""real"" grandparents, Narciso the Elder and @PERSON2, until 1970 when they were allowed to leave Cuba)"" @CAPS1 also always has many of his aunts, uncles, and cousins for dinner, and ""countless extended family members came and went"" But @CAPS1 says @CAPS2 ""My parents always kept their door open to the many people we considered family"" which explains why the house was full of happiness but I think the house was full of love because ""I will never forget how my parents turned a simple house into a home.""" 3 3 3 +12565 5 "I think the authors mood is, honored, proud, loving, and appreciated. I think the author mood is part of being honored because (in paragraph @NUM1) he really expressed how he feels about his parents being so loving and makes others feel loved and welcomed. I also think he was proud because, he explains (in paragraph @NUM2) how much he appreciates his family and his parents to have open arms and help thoughs in need, and to have such great parents that he does'nt even have words really to express to commitment and kindness his parents have with everyone. Through out the story the author alway's mentions How loving his partent are and you can see in the passage that he picked that trait up with the words and expression he used in the story to express the fact of his parents being loving to their family and their @CAPS1. Those are what I think are his moods and the reason for them." 2 2 2 +12566 5 "The mood created by the author in the memoir is nice, and calm. It describs How the famialy let people in their house with open arms and a open door and that makes me and mybe other people seem the mood is nice. The mood is calm because it talks about this famialy doing nice thing and there is no yelling no fighting and I find the to be nice, and calm." 1 1 1 +12567 5 The mood created by the author in the memoir is that every time he talks about his new home his mood changes. For example paragraph @NUM1 rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adore to this day). Every time there is parentheses means that the mood of the story changes when he talks about his life in cuba and the new life here in america. He is grateful that he is in america and that his parents left cuba where they had a better life. 2 2 2 +12568 5 "The mood created by Narciso Rodriguez has a loving and caring feel to it. Since he is talking about his family of course he is going to @CAPS1 loving. For example he says ""Here, the innocence of childhood, the congregation of family and friends"". This shows that he misses those times and he missed them he definetely cared about those times. So the mood created in the excerpt is loving and caring." 1 2 2 +12569 5 "In the memoir, the mood created by the author is very understandable and true. Throughout the memoir the author says how grateful he is for his parents. In the memoir Narciso explains, ""I will always be grateful to my parents for their love and sacrifice."" Narciso's parents had to go through a lot of hard things. They had to leave their country, their friends and family, and they had to pretty much start their lives over again. But his parents stood strong in those hard times. They cared and taught Narciso many important things. The mood the author sets is very loving. The author had very incredible parents that he is very grateful for." 2 2 2 +12570 5 "The mood that the author creates in the memoir is loving and grateful. Narciso tells the reader about how grateful. @CAPS1 is for living in @LOCATION1, and that even though @CAPS1 didn't live in a big, nice house, her family is what makes her love her house. @CAPS1 loves and appreciates what her family did for her. ""I will always be grateful to my parents for their love and sacrafice. @CAPS1 will never forget the house because it is where @CAPS1 learned the real definition of family. ""It is where I learned the real definition of ""family."" And For this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. " 2 2 2 +12571 5 "In the memoir, the author doesn't just describe the journey to @LOCATION1 and the house he lived in. He gives a in depth and warm description of his life in @LOCATION1 and the relationships he made. He also spends some time talking about the selflessness of his parents and what they do to make the new immigrants feel welcome in this new place.The author sets the mood that makes people wanna read this if they are feeling sad and they just want to get a warm, cozy feeling from it. I think the mood in this gives off a sence of being selfless, but also coming together when all are segregated and form unity. When you turn segregation into unity then good things are bound to happen. The authors says this in his memoir: ""I will never forget how my parents turned this simple house into a home."" The mood of this story really shows you that the world doesn't have to be a cold, heartless place.If we do as they do, we can all live in unity." 3 2 2 +12572 5 In the memoir the boy talks about how his parents gave up every thing for him and how they were self less bye inviting refuges even thouw There was not that motch Room. 1 0 1 +12573 5 "In this memoir the author created a mood of what it was like in his childhood home. Based on pharagraph @NUM1, cooking was a big part of the author's childhood life. The author describes a home filled with the smell of the kitchen and the ""passionate @CAPS1 music."" @CAPS2 a warm mood that makes you think of home, this pharagraph is the base of the authors childhood. The author lived in a neighborhood of immigrants that were friendly and always helped each other out. In pharagraph @NUM2, the author describes a mood of family, friendship and acceptance. Even though the people of the neighborhood weren't all the same, they except one another as equals during a time of racism and segregation. Coming to a different country and starting a new life can be extremly difficult. It is hard to get good jobs when you just immigrated and maybe don't have a ton of money. It is also hard to get used to climate change, and learning another language. This creates a mood of hardship and rough times. Throughout this memoir the author creates moods, whether good or bad, of the memories of his childhood." 3 2 3 +12574 5 "The mood created by the author is happy. A sense of security with friends families and neighbors. His parents sacrificed there careers and leave behind friends and family basically starting there life over for the benifit of their children. Where Narciso lived was a nice two-family blond brick building. There she learnd cuban culture such as cooking and music that filted the house when she was a child. Narciso had tons of ""families."" Not necessarily blood related, their neighbors were mostly immagrants and when all thoes cultures came together there was great solidarity and friendship. She lived in a close community were helping hand was always there if needed. Her parents always kept their arms and their door open. Alegria their land lords daughter came down to their kitchen more often than not. Also her aunts Bertha and Juanita along with her cousins Arnold, Maria, and Rosemary. Often someone would stay with them temporolly Even in hard times her parents would sacrifice anything for her And for that Narciso is greatful. Greatful to her parents for makeing a simple house into a home." 4 4 4 +12575 5 "The mood created in this article is a joyful mood. He says, my parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today and for which I am exernally grateful. This shows that he is grateful for what he received and the mood is very joyful. Also he says Passionate Cuban music which I adored this day filled the air mixing with the aroma of the kitchen, Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home. I mean that the mood is lighthened up a little when he says all of this stuff." 2 2 2 +12576 5 "In Narciso Rodriguez's memoir, the author created a very thankful mood. When Narciso talks about his family's culture at home, he constantly tells us how much he sill loves it today. ""Passionate Cuban music (which I adored to this day) filled the air..."" (@CAPS1. @NUM1). Instead of just telling us that there was passionate Cuban music in his home as a child, he included the parenthasese to remind us that he still loves the music he used to listen to. This makes him sound very thankful that his parents played that music in his home. In addition to him giving us reasons to believe he is thankful, he tells us in his memoir that he constantly thanks his parents. ""I've thanked them repeatedly."" (@CAPS1. @NUM2). He tells us plainly that he thanks his parents, and that he is very thankful for what they did for him when he was a child. Finally, ""I will never forget how my parents turned this simple house into a home."" (@CAPS1. @NUM2) ends his memoir and proves to us how thankful he is. Only a person who is very thankful ""will never forget..."" something. Throughout Narciso's memoir, there is a very clear and constant mood of thankfullness." 3 3 3 +12577 5 The memoir is that @ORGANIZATION2 lived in Cuba they arrive at the @ORGANIZATION3. They finally could afford a @NUM1 bedroom apart-ment where they had a baby in 1961 thats when Narciso Rodriguez. in @LOCATION1. in a blond brick building within its thin walls my young parents created our traditional Cuban home The very heart was my kitchen Both of my parents were cooks. They love to cook. Passionate cuban music filled the air mixing with the aromas of the kitchen. 1 1 1 +12578 5 "The mood of the @CAPS1 was good he was talking about his family alot one he @CAPS2 his family and second their motoevation was always hoping around the city, state, or where ever, he would might go the @CAPS1 was never @CAPS4 he was mostly happy and the story" 1 1 1 +12579 5 "The mood created by the author in the memoir is happiness and greatfulness Here are my three reasons why I think that First of all, Narciso is proud of the way @CAPS2 lives and who @CAPS2 is. It all began, starting with his parents, they are immagrants. ""In 1961, I was born into this simple house.""@CAPS1 of all, @CAPS2 cherished every moment @CAPS2 lived. @CAPS2 is grateful for all the things his parents did for him and everyone else. ""my parents always kept their arms and their doors open to the many people we consider family"".Finally, His parents migrated from cuba. They are known as immagrents because they was not born in america, and narciso is proud and honestly happy for them. Thats why I think the mood created by the author in the memoir is happiness and greatfulness." 2 3 3 +12580 5 "In the memoir there were actually two main moods. The first mood and most prominant mood was joy and happyness. Because throught the memoir the reader learns about the writers family and how greatfull the writer was for her family. An example of this is when the writer wrote: ""I will always be greatful to my parents for their love and sacrifice."" But joy is not the only mood in the memoir, because though the memoir is mostly about positive things, the reader still has to remember that this is a memoir. Meaning this was only written because Narciso Rodriguez passed away. Therefor sadness is also a mood in this memoir. In the end, the joyfull mood sort of covers the depressing one, but to really get a sense of where the writer is coming from the reader most consider both these moods." 3 1 1 +12581 5 "Narciso Rodriguez created a caring and greatful mood throughout the memoir. He did this @CAPS1 never premoting himself, but always thanking his parents and talking about his childhood in a way where everybody helped eachother. Fer example in @CAPS2 @NUM1, he talks about the sacrifices his parents made to give their children a better life. He states, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved. They struggled both personally and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardships."" @CAPS1 writing about the hardships and sacrifices others (in his case his parents) had to go through and make in order for his life to be better, Narciso Rodriguez shows apretiation towards them, which then gives the reader a sense of gratefulness. Also, in @CAPS2 @NUM2, he describes how his neighborhood was like a family. He stated, ""Growing up in the environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative. Quite the contrary, our neighborhood was made up of mostly Spanish, Cuban, and Italian immigrants at a time when overt racism was the norm and segregation prevailed in the United States. In an neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" This @CAPS2 gave me a sense of how in times of struggle, people will come together and help each other push through. So it gives the reader a sense of caringness. Narciso Rodriguez produce a mood of caringness and greatfulness throughout his memoir." 3 4 4 +12582 5 "There are many moods that the author creates in the story, ""Narciso Rodriguez"", from Home: The Blueprints of our lives. Some moods it creats are sad, brave, and thankfull. The author creats a sad mood in many ways. One way he creats a sad mood in the article is in paragraph @NUM1, he talks about how imigrants leave their families, friends and carrer, just to come to @LOCATION1 to do good and to lead your children in a good place. In paragraph @NUM2, he also says he will always be greatful to his @CAPS1. Leaving your freinds and families behind is a brave action.He also creates a sad mood when he says that all imigrants come selflessly to this country to give their children a better life. The author is showing that he knows how immigrants come to @LOCATION1. He also creates a sad mood by never talking about the good things." 2 2 2 +12583 5 In This memoir Narciso Rodriguez from Home: The @CAPS1 @CAPS2 of our lives The @CAPS3 explains the definition family as not blood relatives but as people who leave a lasting imprint in your life because of the large impact they had on you and the role played by them in your life portraying a figure of some sort in your eyes As the @CAPS3 descriptively went through this the whole time @CAPS5 was talking about family and the definition of it they were not portrayed as people related to you but just basically people who were their for you the one who gave the shoulder to cry on as in the memoir the land lord and his daughter had put food on the table for the @CAPS6 more often than not and How the whole community had been a family because they acted as one reaching out to lend a hand though they had come from very different backgrounds some more different from each other stood unified resulting in something more they were a family 3 2 3 +12584 5 "In Narciso Rodriguez from Home the @CAPS1 @CAPS2 of our lives The mood that was created by the author in the memoir is @CAPS3 but sad because it says in @CAPS4 one that the bays father and mother where liveing in a One room appartment. But it is @CAPS3 and @CAPS5 because they his parents had him and they had A house feel like a home to him. they tought him how to cook and they showed him diffrent music from his cultere and he adores the music today that information was in @CAPS4 @NUM1 The last thing that made this @CAPS7 @CAPS3 and @CAPS5 was. the naigboors lived together and where there for each other when they need each other. Plus they had all diffrent religons italian, Spanish, and cubain. I got this statment from @CAPS4 @NUM2 that is why this @CAPS7 is @CAPS3 but also at the same time sad." 3 3 3 +12585 5 "The mood in this selection is prode and happy. I know this from some clues in the text. the first and biggest clue is when the auther states some facts like ""and for wich I am eternaly ""greatful"" and ""witch I adore to this day. Also when she says that ""I will never forget how my parents turned this simple house into a home"" it shows how prouud she is." 2 2 2 +12586 5 "From the memoir Home: Blueprints of Our Lives by Narciso Rodriguez, the author creates a mood of gratitude and love. The author's gratitude is to his parents for their cultural and selflessness for leaving their family and friends so their kids could have a better life. one line that really showed this was ""My parents both shared cooking duties and unwittingly passed on a love of cooking that is still with me today"" (@NUM1). That line shows how much he loves his culture and heritage. He loves his Cuban family with all their traditions. I'm aware of this because of a line ""Passionate Cuban Music (which I adored to this day) filled the air, mixing with the aromas of the kitchen."" (@NUM1). Narciso Rodriguez is constantly creating a mood of gratitude and love in his memoir." 2 2 2 +12587 5 "The mood created by the author in the memoir is a mood of happiness. Rodriguez explains how appriciative he is of his parents and every thing they have done for him. Making his house a home and always being there for him. He talks about friend ships and familys, but family being the relation ships between their friends even if they werent blood realitives. Overall he thanked his parents and said ""in reality there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age, and the demonstration of how important family and friends are." 2 3 3 +12588 5 "In his memoir, Narciso Rodriguez creates a reflective and relaxed mood about his memories. For example, his use of parentheses create a voice for him through which the reader can better understand what he is trying to say. Also, by reflecting positiely on old times, it feels as if the author is right here next to the reader, having a pleasant conversation. For example, when he is talking about his landlord's daughter, @LOCATION1, he mentions how she would often grace his table with her presence.Furthermore, by describing the enviroment of his apartment, it feels to the reader most as if we are sitting in a wood backed chair listening to the sweet saranade of an unamed Cuban singer. The smell of spices lingers in the air, The smoke from a stove waters the eye's as it drifts lazily out the window. The sound of engines and the beep of horns created by the low roar of a bus plays in the backround. The bright reds, oranges, and yellows of the furniture burn pleasantly in the eyes. This reflective and relaxed mood is so important for the author to get his stories across, and Narciso Rodriguez does it well." 1 1 1 +12589 5 "The mood that author has created in this memoir was a happy feeling because this is proud of his culture. He loves his parents and loves that house that they turned into a home. The author exsplains how his life begain in new jersey and how proud of his parents he was and that he looks up to them and plans on carryinging out the culture and triditions that his family had so that's what makes me think that the mood of that the author sets was happiness and fullness of this familys life, and as I read this passage I was glad and happy for him that he admires his family that much and how happy his life was." 2 3 3 +12590 5 "The mood created in the memoir could be of happiness, gratefulness and love. The author describes in the memoir how his parents left their country Cuba to give their children a better life even though it meant leaving behind their families, friends and careers in the country they love (@CAPS1 @NUM1). The author express gratefulness by saying his grateful for his culture and the sacrifice his parents did (@CAPS1 @NUM2). To conclude the author also express his feelings about the house he use to live, you learn the real definition of ""family"", he is really happy about the welcomes his parents use to do when other refugees arrival to this country. At the end the author says ""I will never forget how my parents turned the simple house into a home."" (@CAPS1 @NUM3)." 3 3 3 +12591 5 The mood created by the author in the memoir was sad because he grew up as a poor boy his family had no money too he was living in a @NUM1 bedroom apartment in New Jersey they were living a heart of which was a kitchen and his parent were both sharing a cooking duties but his parents still remember the traditional way they act in cuba they were in a very poor house it was a refugee place here all refugee live after he thought about going to school and helping his family After he started going to school and he started learning lot's of stuff about love and other stuff and he started learning @CAPS1 because he didn't know how to speak @CAPS1 then he started learning it and he lived in a house thats where he celebrate his birthday at it was very small it was the size of the kitchen and he said he will always be grateful to his family for doing so great things for him and thats the time he was very young he was very proud and he said he will be always be to his parents for there love and sacrifice he told his parent that he admired them for there strength and courag and perseverance so it was a very sad life for him and his parents 2 1 2 +12592 5 I think that the mood of this excerpt is caring. The parents wouldn't have (pretty much) given their lives away to start new and give their children a better place to live. They had a perfectly good life back at home but gave it all away for their children. That is why the mood of this excerpt is caring. 1 1 1 +12593 5 "The parent oF Narciso are immigrant they live to Cuba, parents created our traditional Cuban home, It's to hard to live the parent to cuba, this is the great Family to support this in this country the immigrant to live one place, but the imigrant have your own culture in this country iF you are cuban you have you own culture." 0 1 1 +12594 5 "The @CAPS1 of the poem is very warm and loving The warm memories of his home, filled with passionate Cuban music and the love for culinary arts leave the reader with the warmth and love of the house. The words he uses, like ""adore,"" ""warm home,"" ""innocence of childhood,"" ""passionate,"" ""congregation,"" ""love of cooking"" and ""celebrations"" lets The reader go away from the excerpt of a loving and heartfelt @CAPS1 His discussion of the real definitions of family, which aren't only blood relatives leave the reader warm as the paragraph talks about his extended family like Alegria. Sergio and @CAPS2: and his real relatives like aunts Bertha and Juanita and his cousins ""I will never forget how my parents turned this simple house into a home"" is so loving that the @CAPS1 is struck in a strong, final chord of warmth, which leaves the reader satisfied. The @CAPS1 of @PERSON1 is undoubtedly loving" 3 2 3 +12595 5 "The mood in this article is happy and grateful. I think it's happy because Narciso tells you how much fun he has with his parents and close family, and how much Narciso likes living where she lives. I think its grateful because Narciso got the education that he wanted and everyone around him was so proud of Narciso. I feel like the mood is mostely happy and grateful" 1 1 1 +12596 5 "Living life in a country or place away can be very difficult from what I've known, heard and seen. Poverty often takes over the situation with a side of racism and discrimination occasionally. Nonetheless, this well-told memoir tells of the contentment and good side of it all. The happiness that was created in a place that Narciso calls home. In the home, he still got to experience Cuban culture including music, traditional cooking and best of all ambiance of family being around. ""Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This quote kind of lightens up the whole idea of this memoir and how people from all over came together to celebrate the wonderful joys of life even though at times they were frowned upon." 2 2 2 +12597 5 "The mood created by the author in this memoir is love. Narciso and his family had so much love that they were able to overcome struggles and help others to overcome by allowing them to stay in their home, and live with them. They allowed people who weren't even apart of their family to become part of their family, they loved and cared for other, possiably even more than them selves and gave up everything they had in cuba to come to america for a better future for their children. The amount of love in this house is what turned it form an ordiary house and into a loving, caring, compassionate, and selfless home, not only for Narciso but for everyone in the community, and family"" that was created. That is what the mood of this memoir was, and in whom created it." 2 3 3 +12598 5 The mood was happy beacuse most of his family immigrated to @LOCATION1. That him and his parents loved to cook. He loved the smell of the kitchen There family sometimes cooks and to visit them and eat. The auther past was unhappy because they needed to put up with racism. 1 1 1 +12599 5 "The mood created by the author in this memoir is happy, grateful. In paragraph @NUM1 the author says ""I will always be grateful to my parents for their love and sacrafice"" In paragraph @NUM2 ""My mother and father had come to this country with such courage, without any knowledge of the language or culture."" @CAPS1 therefore I say the mood of the author in this memoir is happy, grateful." 2 2 2 +12600 5 "The mood given by the author in this memoir is happiness. In the memoir Narciso talks about how greatful he is that his parents left the one place they love, Cuba, just so they can give there children a better life in the @ORGANIZATION1. Narciso explains how much he loves his parent for the love and sacrifice they have put forward for example ""In Cuba, Narciso, SR., had worked in the laboratory and @LOCATION1 had studied chemical engineering. In the united states, they had to start their lives over entirely, taking what ever work they could find."" Narciso loves his parents for this sacrafice they did and the risk they took just so he can have a better life and this is why he wrote this memoir." 2 2 2 +12601 5 "In the article ""Narciso Rodriguez"" from Home: The Blueprints of our Lives, the mood created by the author in the memoir was happy, but sometimes sad. The author made sure that the mood went along with the words in the story. The words were happy and sometimes sad. The mood in the beginning of story was sad, but then it got happier as the story went on. This was the mood created by the author in the memoir." 1 1 1 +12602 5 "The mood the author created in the memoir was about family. He describes how it was when he was growing up in New Jersey. He talk's about ""Sergio and Edelmira"" who were his grandparents ""his real grandparents he did not see until 1970. Even though alot of the people around him were not his real family he consider them to be because they cared and love him. That's what I think the mood in the memoir is." 1 1 1 +12603 5 "The mood created by the memoir created by the author @PERSON1 is that he is a clothing designer that is internationally recognized by the world and he offered his definition of ""family"". It is a heart warming story about him and what he calls his one and only ""family""." 1 1 1 +12604 5 "I think the mood created by the author was to show everyone that Narciso is grateful to live where he does. He loves his home, his parents everyone gets along. even know he's an imarant he wants to succedy and get along with everyone." 1 1 1 +12605 5 "The, mood created by Narciso Rodriguez is very @CAPS1 and happy. In paragraph @NUM1 nothing really happens so there is no real feeling. About half way through the @NUM2 paragraph was when the memoir started to get very @CAPS1. It is really @CAPS1 because you realize that he can turn a New Jersey apartment into a traditional Cuban home. It says in paragraph @NUM3 that they are neighborhood was made up of, ""Spanish, Cuban and Italian immigrants at a time when overt racism was the norm and there was segregation."" It is really @CAPS2 that those cultures could be in a friendly neighborhood during those times. In paragraphs @NUM4 and @DATE1 when Narciso Rodriguez starts to thank his parents it feels as if you were inside that house and your having dinner with their family. Overall, the memoir about turning a New Jersey three-room apartment into a traditional Cuban home was a very @CAPS1 and @CAPS2 story throughout the entire memoir." 2 3 3 +12606 5 The mood of the author of the story is happy and sad. Happy because he is so grateful to have had parents like he did/does and sad because all of his childhood wasn't great but having a family made it happy and it made it seem more like a home and where his family should be 1 1 1 +12607 5 "When I read ""Narciso Rodriguez"" I thought the mood was warm and thoughtful. ""family had nothing to do with being blood related"" I thought that was welcoming and showed that his parents didn't care who you were or what culture you believed in. He would always thank his parents, because they had left cuba so that their children could have a better life. His parents thought that if they get through the bad time they will enjoy the good times to come and for that he always thanked them." 3 3 3 +12608 5 "The mood created by the author in the memoir is very happy and appreciative of what he once had. I can tell because every time the author speaks he is always happy, and I noticed not one negative thing was said during the story. An example of appreciating his life is where he states in paragraph @NUM1, ""I will never forget how my parents turned this simple house into a home."" @CAPS1 could tell he was happy because he'll never forget how nice and giving his parents were. Another example of the mood being happy is where it says in paragraph @NUM2, ""I will always be grateful to my parents for their love and sacrifice."" This shows how happy he was because of how much his parents loved him. My third example in the story is when the author states in paragraph @NUM3, ""my parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This shows that the writer appreciates how much his parents cared for others, and how much others cared for them. My fourth and final example is in paragraph @NUM4 it states, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant having to leave behind their families, friends, and careers in the country they loved."" This statement shows how happy and appreciative the author is, because of how the author's parents left everything to give their kids a great life. And those were for specific examples of how the mood created by the author was very happy and appreciative in the memoir." 3 4 4 +12609 5 "The mood created in the memoir, ""Narciso Rodriguez From, Home: The Blueprints of Our Lives,"" by the auther is all about love and happiness. The memoir is mostly about family and childhood memories. It expresses the authors feelings or love, @CAPS1 the reader feels it to. The author didn't have many material things growing up, or a big house, but there was great memories of love and warmth.The many different memories in the this memoir gave a mood of love and happiness. First of all, it says in paragraph @NUM1, ""... All of these cultures came together in great solidarity and friendship."" The author lived in a neighborhood with many different cultures, but they put their backgrounds aside and were able to great friends. Also, the memoir says in paragraph @NUM2, ""My parents always their arms and their door open to the many people we considered family..."" This shows that their family was very inviting. They were always having guests, and loved a lot of people and considered them family. The author also says in paragraph @NUM3, ""I will never forget how my parents turned this simple house into a home."" @CAPS1, the author didn't have a big home but the memories, and environment his parents created ***** what he really remembers.In conclusion, from reading this memoir, you can really feel the loving mood from all of the authors amazing childhood memories, to his great home environment. The author really did a great job of creating a mood of love, and helping the reader feel it." 3 4 4 +12610 5 "The mood created by the author is a happy and grateful one. The memoir expresses a positive mood and their are no signs, at all, of negativity throughout the memoir. The author created a mood that tells the reader that he does not regret anything from his childhood and he's grateful for his wonderful and caring parents. The author created a mood that also tells the reader that he is proud of his Cuban heritage and everything and everyone that he has grown up around. Narciso has also made a mood of strong feelings toward his beloved parents, friends, and family. The mood of this memoir is positive and can be described in great meaning." 2 1 2 +12611 5 "The authors mood in the story ""Narciso Rodriguez"" from Home: The Blueprints of our lives, could be discribed as calm, and a little sad. The author is constantly talking about, and remembering, what her home was like when she was growing up. But, now she is moving away from her beloved home and it makes her sad. Also, she talks about how ""My parents always Kept their arms and their doors open to the many people we considered family."" This would also make her seem sad because maybe her parents died and that's what she remembers about them. As you can see, the authors tone in this memoir is calm, and sad." 2 1 2 +12612 5 "In the memoir written by @PERSON1 the author created a mood, that shines throughout the story. The mood represents the hapiness in @LOCATION3's life when he lived in a three room apartment Newark, New Jersey. In paragraph two, the author talks about how his parents used their heritage of Cuba and brought it to their new home in the United States. @PERSON1 was always greatful how his whole house was revolved around the kitchen. There was always Cuban music and the smell of a Cuban fiest in the air. @PERSON1 was always happy because he was always a part of a family. Through out the tough times @PERSON1's parents went through there was never a shortage of love or the feeling of family. In paragraph six, the author says ""I will always be grateful to my parents for their love and sacrifice"" When the author says this, it creates a happy mood, and it flows through out the memoir. Also in paragraph seven he says ""I will never forget how my parents turned this simple house into a home."" This memoir shows that the importance of family and friends creates a positive feeling in anyone's life." 3 3 3 +12613 5 "The mood created by the author in the memoir is happiness and love for family. He writes about how his parents and other immigrants moved to @CAPS1.S.A only for a better life of their children. He writes that in a way which could make the reader feel that he is extremely happy. He also talks about how his parents taught him to cook and talked to him about Cuban culture. He was extremely proud and grateful to his parents to teach him all these. The author writes about how this small simple home was very special home to him and also how much it meant to him. Also this house has been this special to him, by spending his childhood there and also how he got love from his parents in this house. This was the house where he was able to learn what the word ""family"" really meant and also how it made him happy about how he would never in his life be able to forget his family. These love and happiness were the the moods created by the author in the memoir dedicated to his family." 3 3 3 +12614 5 "Inthe memoir the author the mood the author sets is a thankful soft one The author is thanking his parents in a good way, in a nice, soft, and appreciative way. ""It was in the warmth of the kitchen in this humble house with a Cuban feast (albeit a frugal Cuban feast) always fills the air with not just scent and music but life and love (pg. @NUM1). All you need in life is a little imagination and a lot a help and love. This guy in the memoir got a lot of help in love by describing it in a nice calm way, of thanking his parents for all they have done for him." 2 1 2 +12615 5 "The mood that is created by the author is joy. The reason I think that is because Narciso's parent's are immigrants who works hard. They could've stayed in their own country but they wanted a better future for Narciso. When Narciso realized that he felt happy and filled with joy. In paragraph @NUM1 it says ""I will always be grateful to my parents."" When you're grateful you feel happyness. This is the mood that I think this author created." 2 2 2 +12616 5 "The mood created by the author in this memoir is love, and happiness. In the memoir the reader expresses the love and gratitude towards his parents. Not only did his parents love him; they quit their jobs and moved across the world just so they could give their son a better life. The authors parents risked so much for their son. The author states that he is very grateful for his parents, and that there is no way to express the love he feels for his parents. This memoir expresses the love, and gratitude in one's family, and how a little bit of caring can go a long way." 2 2 2 +12617 5 "The mood of this story is very weird. This story is about different cultures coming together as one. Narciso's parents are very nice and generous. His parents are always taking in @CAPS1 needs a home, and treats them like family. Narciso still has some family in Cuba, and will might be able to meet them until a later time in life. Anyways the mood of this story is very heart-warming, Narciso was also thankful for everything he has, Narciso's parents have a lot of people to feed since, There is more than one family living in their home so It is hard for them. Well I think the mood of the story is great." 2 2 2 +12618 5 "The overall mood created by the author in the memoir is happiness. First, Narciso's parents went through the struggle of coming to @LOCATION2 and starting over. Narciso narrates, ""My parents, originally from Cuba, arrived in the United States in 1956."" His parents came from Cuba to the United States to have a happier future. Narcisos family is nice to everyone and everyone in their neighborhood is nice to them. He explains his parents doings. ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" Narciso's parents are happy to let anyone into their home. Finally, Narciso is very grateful towards his parents. Narciso explains, ""I will always be grateful to my parents for their love and sacrifice."" Narciso is very happy about what his parents did for him. The mood of this memoir is happiness." 3 2 3 +12619 5 "One of the moods in the memoir was greatful. Narciso greatful to have parents who gave up so much to make a good life for him. Also he is greatful because his parents showed him how important family and friends are. This means that he was greatful to have parents who cared enough to give up things they loved for people they loved. Another mood is peaceful because Narciso loved the Cuban music they listen to. Narciso had people over all the time, the kitchen was always being used. He says ""family had nothing to do with being a blood relative. I mean his house was a peaceful and a safe place. Everyone was always at his house. His parents ""always kept their arms and their door open to the many people the considered family."" the last mood I thought was happy. Narciso was always happy because his family helped so many people. Also he loved that his parents thought them so many things. I mean that he always had something to do. He was always happy to be around family and friends." 4 3 4 +12620 5 "The mood created by the author in the memoir was happiness and gratitude. The mood was created from the words, and the way the auther described his home and his appreciation of what his parents did for him. @CAPS2 was born into a simple house in a blonde-brick building situated in the @CAPS1 section of Newark, New Jersey. The auther said, ""Within it's walls, my young parents created our traditional cuban home, the very heart of which was the kitchen."" @CAPS2 explained that his parents both shared cooking duties and passed on their culinary skills and love of cooking down to him. ""passionate cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" The auther also explained how everyone in the community helped each other and treated each other like family. Even though his parents had no knowledge of the language or culture, they immigrated to make a better life for their children. They left everything behind them. Struggling financially and personally. @CAPS2 was eternally grateful for what they did. In conclusion, the mood created by the auther was happiness of love and gratitude. ""I will never forget that house or it's gracious neighborhood or the many things I learned about how to love." 4 3 4 +12621 5 "in This @CAPS1, narciso Rodriguez, The @CAPS2 in the @CAPS1 would be a @CAPS5 bit sad, sad because @CAPS3 is taking about her life and how @CAPS3 grows up in a one @CAPS5 Simple house in 1961. her mother didns want her to live anywhere else. @CAPS3 was a only child. and this @CAPS1 tells you mostly about her life. That is the @CAPS2 in the @CAPS1 @PERSON2." 1 0 1 +12622 5 I think the mood given by the author in the memoir is a happy mood. I think this because throughout the entire memoir the author didn't talk about one unhappy thing. In paragraph @NUM1 the author talks about how his parents taught him how to cook and how they gave him a love for passionate Cuban music. In paragraph @NUM2 the author talks about the unity and friendship throughout his neighborhood despite the racial differences. The author talks about all his friends and family who graced his table in paragraph @NUM3. The most important thing I think he talked about was how he learned to love in paragraph @NUM4. As you can see there are no sad memories in this memoir and I think that is what gives it such a happy mood. 3 3 3 +12623 5 "The mood created in the memoir was very greatful because of @PERSON1's family that nearly gave everything up to have a wonderful life in New Jersey. He was grateful for the talents his parents passed on such as cooking and loved the heritage they had like their interest in Cuban Music. @PERSON1 must've been very grateful to be surrounded by so many loving people like his ""@CAPS1 lord and his daughter, @PERSON2 (my baby sitter and first friend)...(who) graced our Kitchen table for meals more often than not""" 2 2 2 +12624 5 "Based on the excerpt of the ""@PERSON1"" by the blueprints of our Lives, That mood created by the author is happness and @CAPS1.When the author restate when the girl says I will allways be grateful to my parents for their love and sacrifice. That shows How much @CAPS2 cares about her mother and father and How respectful @CAPS2 is towards them. Anothe example that her mother and father is @CAPS3 and cares a lot is when her mother and father had come to this country with such courage, without any knowledge of the language or the culture. That line proves how much the mom and dad care about there daughter." 2 1 2 +12625 5 The mood created by the author was very interesting. At some points the author was very serious. He would tell about the hard times his family had and what they went through. Then he would be joy ful. He would explain what his house would be like. He would tell how joy ful his house was and how he loves his parents so much. He would explain what loving parents he had. He showed how his family wasn't blood related at all. His family was different cultures all combined to make one happy family. 1 2 1 +12626 5 "The mood created by the author in the memoir is gratitude and happiness. Narciso repeatedly states how grateful he is to his parents for showing him what it really means to be a family and having selflessness and caring. He says, ""In reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" When he is recollecting memories from his childhood he shows how there was a lot of happiness in their home. He says, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" With his memoir, Narciso creates a great mood filled with gratitude, happiness, and a sense of childhood." 3 2 3 +12627 5 "The mood in the memoir of the life of Narciso Rodriguez is mostly how the bonds between him and his parents, and everyone around them got them through tough times. In @CAPS1 @NUM1 he states that in their neighborhood ""cultures came together in great solidarity and friendship"" And how ""immigrants extended helping hands to people, who were not only their own kind, but who needed a helping hand."" The author says that in his community many different cultures came together and help each other through racism, and other tough times. He says that ""family"" isn't just those you are related to blood, but those who are close to your heart." 2 2 2 +12628 5 "The mood created by the author in the memoir is happiness. Narciso is remembering all the great times he had in his house. His parents are very friendly and welcoming and treat everyone like family. In paragraph @NUM1 it says, ""my mother and father had come to this country with such courage, without knowledge of the language or the culture."" This is what happiness really is. Narciso and his whole family have such a great attitude and just want to be friends with everyone. " 2 2 2 +12629 5 The mood of the story is different throughout the memoir. During the the parts were he talks about the struggles to get from Cuba to @LOCATION1 the mood is sad depessing. But the mood is different when he talks about how his family sometime gets to gether for dinner when they throw a Cuban party for the relitives who arrived to @LOCATION1 from Cuba. 1 1 1 +12630 5 "In the memoir ""@PERSON1 from Home: The blueprints of our lives."" I belive the author Narciso Rodriguez, demostraigted the mood of being laidback very acticulatly.This memoir dose not soud very formal due to the fact Narciso does little things like adding parenthenthese with aditoal statments for exsample in paragraph @NUM1. And taking about his friends and family so openly.Thats why I @PERSON1's memoir ""Narciso Rodriguez from Home: The blue prints of our lives."" @CAPS1 the mood of being laid back." 0 1 1 +12631 5 "There are many times in the memoir when author created a mood. One time that the author created a mood was when he described a traditional cuban home. In which the kitchen is the heart of the home. Also when the cuban music mixes with the aromas of the kitchen. This gives off the mood of hunger for great food. Another time when the author created a mood was when he described how he lived in a close-knit community. This shows how the author grew up helping people. While being helped in return. This gives the mood of wanting to help someone in need. A third time the author created a mood was when he described his parents as caring people. His family always helped people who were considered family to them. This creates the mood of hope because his family knew that other people would do the same for them. Clearly, there are many times when the authour creates a mood for the reader." 3 2 3 +12632 5 "In this memoir, the mood created by the author was heartwarming and apperciative. There were so many parts to this story that made me feel so warm and made me want to say ""aw"". For example, in paragraph @NUM1 where it states, ""was a close-knit community of honest, hard working immigrants who extended a hand to people, not nessecarly of their own kind, were clearly in need"". This line showed me how much love there must've been. Also, that everyone cared about everyone else. When the author is showing how her parents left their country to come to @LOCATION1, you can tell how grateful the author is this is shown extremely clear in paragraph @NUM2 where it states ""I will always be grateful to my parents for their love and sacrifice.I think this story made me realize that you need to apperciate what others do for you. This author was so greatful for her parents, and that is shown very clearly in this memoir." 3 3 3 +12633 5 "Narciso Rodriguez is very gracious and compassionate, and he will never forget the monumentous risk his parents made to leave everything behind to come to @LOCATION1 so he could have a better life. Narciso recalls how his parents had to take any job they could and ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This past @DATE1 I was in @LOCATION2, @LOCATION3 and I had to stay with this family. This family was great to me, and I will never forget their uncany attitudes to give me whatever I want. When I read this passage this family immediatly popped into my mind. Narciso's mood is unbelievably grateful to levels most people don't have the chance to experience. Narciso will never forget his parents and the sacrifice they made for him." 2 3 3 +12634 5 The mood in the memoir is that Narciso appreciates what his parents have done for him. So he can have a better life. he also appereciates that they turned there simple house into a home. he thinks that wat they did was very courageous. Marciso is thanks his parents. For Sacrifice there life in Cuba. To make his life better. 2 2 2 +12635 5 "In the story ""Narciso Rodriguez From Home: ""The Blueprints of Our Lives. In the story the little girl lives in a one bedroom apartment and she doesn't call at home untill she move's into a three bedroom apartment they maybe she will call it home. She doesn't really know adout love & to be kinda Also, to care about people. But at the end of the story she knows adout love she say's ""I will nevere forget how my parents turned this simple house into a hom""." 1 1 1 +12636 5 "When reading this memoir it makes you feel something. The feeling you feel is a sort of sorrow. When you feel this it makes you think why did they have to live that way. It also shows that you care for the people Who deal with that lifestyle, @CAPS1 for goodness sake be nice to people dont be nasty because what you do could affect you too." 1 0 1 +12637 5 "The mood given by the author in the memoir is sweet, loving, and grateful. The author uses many kind, gracious words to describe his family and uses things from what we picture as an ideal family to create an even more colorful image for us to see. He uses imagery and sensory language; which helps us feel I homey atmosphere when we read. In the neighborhood he lived in, ""... all of these cultures came together in a great solidarity and friendship,"" and that shows how close everyone was to one another and how rich of cultures that had come together. (@NUM1 line @NUM1) @CAPS1, in paragraph @NUM3, the author explains how grateful he is to his parents which showed him the lessons which became the root of his life. As most children experience through their lives, they are greatly influenced by their parents. To have his parents teachings be the basis of his life, he must have had a deep connection with them. As he talks about his home and that his ... ""parents both shared cooking duties and unwittingly passed..."" them on to him, it shows how observant he is and how caring his parents are to have the time. These words create a very sweet, loving, and gracious mood to the memoir." 4 4 4 +12638 5 "The mood created by the author in the memoir is joyfull and grateful. The author is joyfull because in stanza two Narciso states ""Passionate Cuban music (which I adored to this day) filled the air, mixing with the aromas of the kitchen."" This shows that the childhood of this person was joyful with the culture, family, friends, foods, and smells. This person is very grateful for all of the things he parents did. Such as when the author states ""I will always be grateful to my parents for their love and sacrafice. I've often told them that what they did was a much more courageous thing than I could've ever done. I thank them repeatedly. But, in reality, there is no way to express my gratitude for this period of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" This shows that the author is truly grateful for everything the parents had done for him or her and he or she is really joyful now thinking back and makes the mood of the memoir joyful and grateful." 3 3 3 +12639 5 "The mood created by the author in the memoir was happiness and being thankful because in the memoir in paragraph @NUM1 when he is saying ""growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative. It means that it doesn't matter if you aren't blood related because it only matters if you have love for one another and you care about one another. Narciso is just saying that he is proud of what he is today, and loves and respects his culture, and that he has people to love and has people who love him back." 3 2 3 +12640 5 "The @CAPS1 is trying to set a mood. The mood is inviting and how a family can over come difcultys together. ""parents welcomed other refugees to celebrate their arrival to the countrie."" That is showing how open and caring the family is." 1 1 1 +12641 5 "The mood created by the memoir is a mix between a happy mood and an unhappy mood. Everything is happy when they talk about his parents welcoming the other imagrents into thier home. And how thier landlords daughter was his first friend. And then how it talks about how thier neigerhood is filled with @CAPS1, Spanish, and Italian imigrents and how they are in that neghborhood because of racism." 1 2 2 +12642 5 "The mood created by the auther was happy, thoughtful, and very polite. Narciso talked about his family and his life! He also was talking about how he loved his family and what he does best like cooking and playing his Cuban music." 1 1 1 +12643 5 "The mood created by the author in the memoir is joyfull. The author tells us how he loves his cuban culture. They listen to the music, the cook food and it's just very house warming. The author also loves his family. He doesn't argue with them and they enjoy the time they have together. I think the author is joyfull with all the happiness that surrounds him at his house." 1 2 2 +12644 5 "Narciso Rodriguez creates a very humble, caring, and grateful mood in his memoir.The humility shows when he describes how, although rich and inviting on the inside, his house was simple and ""modest"" on the outside. All of the home's warmth and comfort was crammed into a three-room apartment.The sense of caring was demonstrated throughout the whole memoir in the way that Rodriguez referred to not just his blood-relatives, but the friends and neighbors whom he considered ""family."" Of his parents, he says that they ""always kept their arms and their door open"" to their community.Rodriguez expresses his gratitude again and again, especially in the sixth paragraph. He states that he could never thank his parents enough for the valuable lessons they instilled in him, especially their generosity and sense of community. These three themes set the mood of this memoir." 3 3 3 +12645 5 "The mood created by the author is quite comforting and homey. As the author describes his life growing up at home as a child, he seemed to have a pleasant life. when he (the author) ex plained how greatful he was to have learned all the things he had from his family, it portreyed a simple but very enjoyable mood. When the author spoke of his family and friends that came to dine in the apartment that was made into a home, Narciso created a very relaxed mood. Everyone who came to the Rodriguez's home was welcomed and treated as if they were close family. The overall mood of this memoir is friendly and welcoming just as the Rodriguez's home was." 3 2 3 +12646 5 "In the memoir by Narciso Rodriguez, he develops a very warm, comforting, and happy mood of where he grew up. Narciso Rodriguez tells us of how his parents came to the states and after living in a small, one room apartment for a while were able to move in to a three room apartment where he was born. He speaks of how is home was decorated in the traditional style, about the Cuban music always playing and of how his parents taught him to cook. Rodriguez also tells us of his diverse neighbor hood but of how they all came together in unity. Everyone cared for one other and they helped whoever was a need. If someone needed help they received it and people would sacrifice for others. The memoir depicts that Narciso Rodriguez grew up in the love of his family." 2 2 2 +12647 5 "The mood created by the author is loving because it talks about how generous and caring his family is. ""... @LOCATION1 graced our kitchen table for meals..."" That quote gives you an idea of how close everybody is ""...family had nothing to do with being a blood relative."" @CAPS1 around Narciso treats him like family. He learned what family really ment by living in this house during his childhood. ""I will always be grateful to my parents for their love and sacrifice."" In the memoir you can see how Narciso loves his family and friends. Overall the main mood of this memoir is loving." 2 2 2 +12648 5 "The author creates a simple but peacful and happy mood with the way he describes things. in paragraph @NUM1 he describes his home growing up in great @CAPS1 that makes it feel almost like you are there. also words he used to describe the neiborhood like hardworking, and close knit, help set the mood for the story. It makes you think of your own family." 2 2 2 +12649 5 "Home is where the heart is, many of said this and many more have meant it. In the non-fictional memoir by @PERSON1 talks about the importance of family. Narciso pats many moods into the story and describes them with such grace. ""Friends and celebrations both, formed the backdrop to life in our warm home."" (paragraf @NUM1) This gives a sence that for him home was the safest and happiest place for him to be. ""My parents always kept their arms and their door open the the many people we considered family."" (paragraf @NUM2) This gives off the mood that his home was a very careing place and that anyone that they loved was cared for. ""It was here where I learned the real definition of 'family'."" (paragraf @NUM3). This sets the mood that he was never really alone that he had people with him at all times that cared and loved for him like he loved for them. ""My parents turned this simple house into a home."" (paragraf @NUM3)" 3 3 3 +12650 5 "The mood that was created by the author is something that not alot of people have. In the selection Narciso shows that he is thankful for being cuban living in the united states. His parents moved to Newark, New Jersey after living in cuba to give their children a better like. Narciso has ""a love of cooking"" because he was raised with his parents both cooking and having cullinary skills he was passionate of cuban music which ""filled the air mixing with the aromas of the kitchen"". To Narciso Growing up in his envirenment family had nothing to do with blood relative and, was more as someone who you think of as to being like family. For Narciso there was no way for him to show the gratitude and generosity that he got in such an early age. And how important he learned that family and friends are." 3 3 3 +12651 5 "The mood created by the author was great. He made it so Narciso was very happy, and proud to of grown up in Cuba. He also made it so Narciso was grateful for everything. For example, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills, and a love of cooking that is still with me today (and for which I am externally grateful). The mood created by the author was a great mood." 1 2 2 +12652 5 The mood is very loving and happy. The way he talks about the neighborhood he grew up in and everyone was so close. Than how he talked about how caring and uselfish His parent were. Just how gratefull he is made the memoir very happy. 1 1 1 +12653 5 "The mood created by the author in the memoir is happy and grateful. He is grateful that his parents give up everything that they had just to give him a better life. In the memoir it says: ""They came selflessly as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, careers, and the country they loved."" he is happy because he has an opportunity to have a better life and that he learned the real defition of family. In conclusion the mood for this memoir is happy and grateful." 2 2 2 +12654 5 "The mood is well many different things. But mainly the mood is loving. I think it's mainly loving because in the memoir at both the begining and end, Narciso talks about how nice, sweet, and caring his parents are. For example in paragraph @NUM1 he says ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" And in that sentence you can see that both Narciso's mother and father would always welcome people into their house." 2 1 2 +12655 5 "In the story, Narciso Rodriguez, from Home: The Blueprints of our lives, The @CAPS1 created by the @CAPS2 in the memoir was a very soft @CAPS1 because they are all greatfull for what being going on with their lifes like the @CAPS2 said in paragraph @NUM1 ""It was in this simple house tha my parents welcomed other refugees to celebrate their arrival to this country and where I celebrated my first birthdays. It was in the warmth of the kitchen in this humble house where a Cuban feas (Albeit a frugal Cuban feas) always filled the air with not Just scent an music but life and love. it was here where I learned the real definition of ""family"". And for this, I will never forget that house towards gracious neighborhood or the many things I learne there about how to love. I will never forget how my parents turn the simple house into a home." 2 2 2 +12656 5 "In the memoir the mood created by the author is gratefullness. I know this because in the memoir it says, ""But, in reality, theres is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" This evidence shows how Narciso Rodriguez was grateful which is the mood of the memoir. His parents taught him how to love his culture, (and for which I am eternally grateful)."" The way the author puts the words and uses them shows the mood of the memoir is grateful." 2 3 3 +12657 5 "Narciso Rodriguez's @CAPS1 from Home: The Blueprints of Our Lives, creates a very optimistic mood.Narciso describes how even though ""at a time when overt racism was the norm and segregation prevailed in the United States"", he and his ""family"" (which included foreign neighbors) still overcame adversity. In addition he describes how even though his neighborhood shared different cultural backgrounds, they still lived together as a family. Lastly he describes all the memories and celebrations that helped shape his house from a living space into place of love and friendship. It is real easy to tell that Narciso loved his family and friends all the same in a way that shaped his life." 2 3 2 +12658 5 "I was in this simple house that myparents welcomed other refugees to celebratetheir arrival to this country and whenI celebrated my first birthday. I was in thewarmth of the kitchen in this humblehouse where a cuban feast always filledthe air with not just scent and love.It was here where i learned thereal definition of family And for this,I will never forget that house or its,I will never forget that house or it's graciousneighborhood or the many things i learnedthere how to love, I never forget this house." 2 1 2 +12659 5 "In the memoir ""Narciso Rodriguez"" is a clothing designer who grew up in @LOCATION1 with all different immagrets. The mood of it is that home isn't a physical space but relationships. ""Growing up in this enviornment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" (@NUM1). He had a: ""Close-Knit community of honest, hard working immigrants.."" (@NUM1). I think Narciso would be a clothing designer if he didnt grow up with these people." 2 2 2 +12660 5 "The mood the author created was gratefulness. Narciso he is grateful for his parents sarrifice to live in @LOCATION1. This gave him a better life. The auther writes, ""I will always be grateful to my parents for their love and sacrifice. Also, he admired their strength and perverance of his parents. In the text it says, ""I've often told them of my admiration for their strength and preseverance..."" @CAPS1, he says that he will never forget how his parents turned a house into a home. That is the mood the author creates in the memoir." 2 3 3 +12661 5 "The @CAPS1 created by the author in the memoir was regular becacuse in the story (Narciso Rodriguez) he explains his life a little to the reader he explains how they lived in cuba then to america and the boy also explains how he loves his home, and celebration and heritage in america the boy talks with like same kind of smat tone beacse he's really explaining his like then about really now and hear he likes is so theres no anger in this story. " 2 0 2 +12662 5 "In this article the author kind of gave a both happy and proud mood. He loved where he came from. Where he was raised, and mainly the life his parents provided for him. He adores his parents and couldn't be more gratefull. They turned a house into a home. They didn't thousands to be happy all they needed was each other...and they did. He is what he is and that's extremly proud of his Cuban life and family." 2 2 2 +12663 5 The mood created by the author is that @PERSON1 is greatful for his education and growing up in @LOCATION1. Also his parents and they're cooking skills. The mood is love and greatfulness. 1 1 1 +12664 5 "The mood in this memoir is very happy. It kind of shows how lucky we are, by showing how greatful they are to be hear in @LOCATION1. The mood is also joyful." 1 1 1 +12665 5 "@PERSON1 uses a very happy tone and mood when talking about his home." ...Passed on to me their rich culinary skills and a love of cooking that is still with me today (and For which I am eternally grateful). Narciso is very happy he learned such great cooking in his childhood. "Here, in the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home" (@NUM1). Being so happy made this such a warm home in @CAPS1. "I will never Forget how my parents turned this simple house into a home" (@NUM2). Narciso summed up his entire article in one sentence and creating what most people feel at home. At my home I feel everything Narciso does because its not were you live its how you live." 2 3 3 +12666 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez the mood is calm and they are happy. I think this because they talk mainly about the good thing in their childhood. They also say how much they loved thier family. If you don't love or have a family as a child you would not be happ and they were. My last reason is they were most grateful for their home and how their parent turned a house into a home. This is why I think the authors mood is happy and calm." 2 2 2 +12667 5 I think the mood is happiness because when she was talking about he cooking skills and how she was listening to cubin music in pertheisis it said stuff like which I still love today. When she said our house became a home I think that ment that they are happy settled in theres not alot of stress and everyone seems comfortable. She kept say how much she was thankful for having such great parents and a great house. It just made me think she has to be really happy with her family her house and her life. She must be happy with her life here in @LOCATION1 3 2 3 +12668 5 The mood of This memoir is positive and careing. The reason why this story is caring is because they @CAPS1 all the people stay there and they aid them until those people could move. And the reason why this story is positive is because The parents are always having fun cooking cause that's their favorite thing to do and their always haven fun @CAPS2 those are the mood that is in this momoir 2 1 2 +12669 5 "The mood created by the author is a happy reflective memoir on the family life of the author growing up. It talks about how warm and caring the authors household was and how it got to be like that The author sets the mood in the menoir by talking about what was going on n the household ""Our traditional Cuban home, where the very heart of which was the kitchen."" The author talks about her families love for cooking and happy mood of the house with the ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen"". The author also talks about the close knit community of honest hard working migrants who ** in the surrounding homes they were all friends that took care of eachother, knowing that anyone would do the same for them as well. The author is able to keep the mood happy in the memoir by talking about how he will ""always be grateful to my parents for their love and sacrifice"" @CAPS1 it as a loving caring story to read about @PERSON1's childhood." 4 3 4 +12670 5 "In the memoir ""Narciso Rodriguez"" from the book ""Home: The Blueprints of Our Lives,"" The author was very happy and grateful. I know he is happy in this memoir because in paragraph @NUM1 he writes ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love."" This is a happy setting where the author grew up in. The author was also very grateful to his parents. I know this because in paragraph @NUM2 he says ""I will always be grateful to my parents for their love and sacrifice. This shows the emotions the author felt growing up." 2 2 2 +12671 5 "The mood created by the author is the mood of appreciation for his house and parents. First, he author talks about how her parents give up what ever they had for them. It says ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, and careers in the country they loved. They struggled both personally and financially..."" This means that their parents gave up their family and friends and jobs in their beloved country, Cuba, just for him and his sister so he appreciate them a lot for doing all of these for them. Secondly his parents showed him the two lessons abot life. The story states ""I will always be grateful to my parents for their love and sacrifice... I've often told them the admiration for their strength and perseverance... and the demonstration of how important family and friends are. These are two lessons that my parents did not just tell me. They showed me with their lives, and these teachings have been the basis of my life. This shows that his parents taught his something important without telling him by showing him. Third, he learned the real definition of family. It says ""It was where I learned the real definition of ""family."" It shows he learned the most important lesson it this house. These is the mood and how it is shown." 4 3 4 +12672 5 "The mood created by the author in the memoir is a very happy, loving, content mood. This mood is created by Narciso talking about what a great and happy life his parents made for him. For example in paragraph @NUM1 he says ""the congregation of family and friends and endless celebrations that encompassed both, formed the backdrop to life in our warm home. It just sounds so happy and loving to me. He also says things like ""It was a close-knit community of honest, hardworking immigrants who extened a hand to people who, while not necessarily their own kind, were clearly in need. Thats another example of the loving happy mood in this memoir because hes talking about how people were so helpful and gracious to anyone in need and it makes me feel so happy that people are like that. I really enjoyed reading this memoir because it was all about peoples love toward eachother which set a very happy, light-hearted mood for me." 3 3 3 +12673 5 "In the memoir, Narciso Rodriguez, by Narciso Rodriguez the mood created by the author is gratitude. First, Narciso loved his parents and was very grateful for everything they did. Rodriguez says, ""I will always be grateful to my parents for their love and sacrafice"" (@NUM1). Narciso's parents came to the US just for him and he is so grateful. Secondly, he says he has thanked them so many times but he doesn't know how. Rodriguez says, ""There is no way to express my gratitude for the spirit of generosity impressed upon me"" (@NUM1). He is so thankful he doesn't even know how to put it in words @CAPS1, Narciso knows even though they only had a three room apartment he knew it was special. Narciso states, ""I will never forget how my parents turned this simple house into a home"" (@NUM3). His parents couldnt give him much because they didn't have much money but it meant the world to him Clearly, the mood of this passage is gratitude" 4 4 4 +12674 5 "The mood in the memoir created by Narciso Rodriguez is hopeful, heart lifting, caring, grateful, lively, loving, and courageous. It's hopeful because Narciso's parents had to start their lives all over with any jobs they could find and they wouldn't have made it without hope. They had hope in their children when they came to @LOCATION1 to have great and prosperous lives. It's also heart lifting because it was about how their parents came to @LOCATION1 for their kids and they ended up successful in life and became someone. Having people for dinner, housing others in need, and always ready for more to come who fell down in their lives and need some comfort shows as much care as a parent is to their newborn. Narciso's parents showed him what family, and friends are and to have courage and persevere. He is very grateful of his parents for these important lessons of life: They didn't just tell him, they showed him through their lives which makes it much more effective. They always had life in their home because of the music and aromas in the air and all of the people that came for dinner or to stay for a short time. His parents must have had courage to throw away their life's work, come to @LOCATION1 for better lives for their children, and to start a new career. The mood was very important to really feel the message of the memoir." 4 3 4 +12675 5 "The mood in this memoir is a very relaxed and happy mood. Narciso is always happy in the house, there was always the smell of food, and his parents cooking. There was always a strong sense of family and the house too. In pharagraph @NUM1, Narciso said that ""growing up in this environment instilled in me a great sense that family had nothing to do with being a blood relative."" What he is saying is that you don't have to be related to be family. Anyone close enough can be considered family. He also felt that you should always help people in need. That is what his parents, they always help people when they need it. and were always willing to share everything they have. That is the mood instilled in this memoir about family and love." 3 3 3 +12676 5 "I think the mood of the passage @ORGANIZATION1 by The Blueprints of our Lives is a very @CAPS1 mood because in the passage it @CAPS6 ""I've thanked them repeatedly"" I believe this meas that @CAPS2 is thank full that her parents provided him/her with a good home. Another reason I think that the mood of the @CAPS3 is @CAPS1 because in the story the @CAPS3 @CAPS6 ""I will never forget new my parents turned his Simple house into a home I think this means that the @CAPS3 is @CAPS8 and that is the mood I believe the article is about." 1 2 2 +12677 5 the mood givin by the @CAPS1 (In My prospective) is happy becaus even if you had to move to @LOCATION1 away from his loved ones he still managed to be happy with his family in @LOCATION1 1 1 1 +12678 5 "The mood that was created @CAPS1 the @CAPS2 is a happy, loving mood. The reason I say this is @CAPS3 if you read the passage you'll see that in his home it wass all about love and care. So in the end they have mad a Home and a @CAPS4 relationship together and with other people. the authors family @CAPS5 in their home people that they considered Family, this right here is a mood well a caring mood." 2 1 2 +12679 5 "In the article ""Narciso Rodriguez"" by The Blueprints of our lives the mood of the author in the memoir was he was thankful for everything he got so like the mood was quite and loving I picked quite because he has grew up nothing really exciting happened in his life he grew up in @LOCATION1 and his parents were from @CAPS1 parents were very nice people and alway wanted to give their kid a better life and he's alway been grateful for his parents they were the originally parents that made his life not that much excitiing and also picked loved as a mood because in the article ""always filled the air with not just scent in misic but life and love. It was here where I learned the real definition of family meaning his mood was he felt loved by his family. Thats why chose quite and loving." 1 2 2 +12680 5 "The mood created by the author in the memoroir is gentla and proudness. The author explains of how he felt of his parent that risk everything in order to give him a better future according to paragraph @NUM1. The author feels proud of being from Cuba through the whole memoroir. He feel proud of being Cuban by explaining the things he does and things that they share by his culture. Last but least he feels thankfulness according to paragraph @NUM2 becouse, through his parents and things from his country he learned what family really means, he says ""... I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turn this simple house into a home"". Through the whole memoroir the auther show proudness of wher re he came from, from his parents, country, and his neighborhood." 3 3 3 +12681 5 The mood the author is creating is sad. Because he is talking about his whole family and his house and how he had so many good memories and his first friend. This kind of mood is sad. 0 1 1 +12682 5 "In the storie ""Narciso Rodriguez"" I think the author was very greatful & happy at the moment. I think he was happy, because he was lathing about how Narciso was always in a good mood and how she always loved how to cook in the kitchen with everyone. Also how she still loved her ritual song she sings with her family." 1 2 2 +12683 5 "The mood that was creat by this author was love. It was love by how he discribed his house. ""The passionate cuban music fill the air, mixing with the aromas of the kitchen. Cooking and music you usally associate with love and love is happiness The author also talks about his ""close-knit community of honest, hard working immigrants who extanded a hand to people who, not necessarily their own kind were clearly in need."" This also shows the mood in this memore is love, love of cooking of music and of family. Another place were it showed love in the memore was in this quote. ""My Parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This shows love because even though these people aren't blood related they still look out for each other and knew they had someone to lean on. The apparent mood in this story was love and the family had much of it." 4 3 4 +12684 5 "The mood created by the author in the memoir is Love. In paragraph @NUM1. It says, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This means that there will always be love and happiness in your home if you just respect your friends and your loved ones. Life would be good." 1 2 2 +12685 5 "In the memoir, the author creates a mood of love and community. In paragraph two the author describes his childhood home with words like traditional, passionate, and congregation. These words set the tone for the rest of the memoir in which love in helping the community are key themes. It gives me the feeling that I could walk into their home and be welcomed with open arms even as a complete stranger. These themes are reinforced in the last few sentences when the author ends speaking about his gracious neighborhood and how he learned to love." 2 2 2 +12686 5 "The mood created by the author is happiness and gratefulness. Reading this made me feel very thankful. The author thanks his parents several times. He talks about how he learned how to cook from his parents and says ""and for which I am eternally grateful"" in paragraph @NUM1, and in paragraph @NUM2 ""I will always be grateful to my parents for their love and sacrafice.""I think those specific quotes from the memoirs show how grateful the author is feeling. Reading this made me feel grateful for what I have, and think of all my parents did for me and sacrificed. I also think this sentence from paragraph @NUM3 supports the author wanting you to feel grateful. ""They came selflessly as many immigrants do, to give their children a better life."" I also think happy, because the author is looking back at his life and states ""I will never forget how my parents turned this simple house into a home."" This made my mood become happy." 3 4 4 +12687 5 The mood is a warm happy feeling. in which The home is safe and one of those happy perfect homes. were nothing goes wrong. But it is a careing home with plenty of friends and family for a long time. 1 1 1 +12688 5 "The mood that they author creates is kind of happy for what he has. ""In our neighborhood, despite costums elsewhere, all of their cultures came together in great solidarity and friendship."" The quote @CAPS1 how the author thinks of the different cultures uniting together." 2 1 2 +12689 5 "In the memoir ""@CAPS1 Rodriguez"" by Narciso Rodriguez, the mood created by @CAPS2 is shocking. First, on page @NUM1 paragraph @NUM2 Rodriguez wrote, ""I would not know my 'real' grandparents... leave Cuba."" Here, Rodriguez is talking about how she never meat @CAPS2 real grandparents until they left Cuba in 1970. This is important because early in the memoir she said @CAPS2 surrogate grandparents (Sergio, Edelmira) came to eat dinner. In conclusion, in the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the mood created by @CAPS2 is shocking, @CAPS2 real grandparents come to @ORGANIZATION1 in 1970. She wanted to write this because she wanted to teach the reader to know the real deftion of family." 1 0 1 +12690 5 "The mood created by the author is a loveing and careing mood. in the second paragraph he describes the the house as having the rich culinary cooking of his paroents the passionate cuban music filled in the air the aromas of the kitchen in there warm home. he tells that in there house they have feast also the many immigrants they invite into there house until they can leave by them self or fine a place to live. he describes family has nothing to do with blood relatives every body in there neiborhood is family and they care for each other and care for any of the people who need help at the end he says ""I will never foget how my parents turned this simple house into a home."" he tells how they taught him love and real defination of family he describes there house as being a Warm house. " 3 3 3 +12691 5 "The mood created by the authour iN the memoir is love aNd happyNess and how family are frieNds. IN the memoir he expaNeds how his mom and dad gave up everything for there child aNd his life. How they had to chaNge everything they did in Cuba. Like the jobs, IN Cuba His dad had worked iN a laboratory aNd his mom had studied chemical eNgiNeering aNd they might have to give it up. thats the mood created by the authour iN the memoir." 1 1 1 +12692 5 "The mood of this memoir is grateful and content. The author @CAPS2 this mood with his quotes that @CAPS1 puts in. ""I was born into this simple house, situated in a two-family, blond-brick building in the ironbound section of Newark, New Jersey."" That @CAPS2 that the author did not care that much about house looks, price or its location. ""It was here where I learned the real definition of family... [that it] had nothing to do with being a blood relative."" @CAPS1 is grateful for all the people that @CAPS1 now considers his ""family"". Also, ""I will always be grateful to my parents for their love and sacrifice... they came selflessly, as many immigrants do, to give their children a better life"". That @CAPS2 right in the quote that @CAPS1 is feeling grateful! The author also puts some phrases in parentheses, just to add a bit more, ""(after which I eternally grateful)"", ""(which I adore to this day)"". Those show @CAPS1 is happy and grateful with his life, and last this next quote @CAPS2 that his ""family"" members were all grateful for each other. ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necissarily their own kind, were clearly in need""." 3 3 3 +12693 5 "The mood created by the @CAPS1 is friendship and love. When the @CAPS1's parents moved to the United States, They created a traditional home. The hard being the kitchen. ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen."" In the kitchen celebrations, childhood, Friends and family formed the backdrop to their life. The @CAPS1 learned that '""family"" had nothing to do with being a blood relative.' The neighborhood the @CAPS1 lived in is made up of many different cultures but they blend with each other to form a small comunity of honest, hard-working immigrants who help others when they themselves are in need. ""My parent's always kept their arms and their door open to the many people we consider family."" The many immigrants gave up their lives in cuba to move to the US to make a better life for their children even though they did not know the language or culture. The @CAPS1 will always be thankful to her parents for that reason. There is no way to show her thanks for her parents love and sacrifice that they showed to her when she was just a child, and showing her the importance of family and friends. The @CAPS1 states ""I will never forget how my parents turned the simple house into a home."" They didn't just change it, they did it through love and friendship." 4 3 4 +12694 5 "The mood created by the author in the memoir was loving and caringness. Repeatedly throughout the memoir, the speaker Narciso Rodriguez which show what his family did after migrating from their native country, Cuba to their love. As said his parents always kept their arms and their door open to the many people they considered family, knowing that they would do the same for them. They cared for their children's future, by leaving their families, friends, and careers in the country they loved. All though ""they struggled both personally and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardships."" they had to do what they thought was best for their children. Their simple house was the best place for them to be together as a family. ""The warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love"". This memoir made me connect this family to mines how similar it is. Without love it isn't a family, thats why at the end of the word ""family"" the i, l, y stand for ""i love you.""" 3 3 3 +12695 5 "This memoir gives me a sort of cozy and comfortable feeling. When it talks about a family being not only people that are blood-related to you I think of my friends and the people I can count on. They are my family too. He also talks about how a house is not necessarily a home, not without memories, your family, and something or someone that you trust. Lastly, he tells us about how greatful he is that his parents brought him to a neighborhood that he would soon learn to love. This piece makes me think about and appreciate my family, and my home." 3 3 3 +12696 5 "The mood created by the author in the memoir. The mood was a good feeling. To explaination of how he lived @NUM1 reality. Having family come live with you till they get back on their feet. Having family all around you. Realizing you turned your ""house into a Home"". Endless celebrations that encompassed, both form a a backdrop to life in their warm home. ""they came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in their country they loved."" ""The barriers to work were strong and high and my parents both accepted that they might not be able to find the kind of jobs they had deserved."" ""In Cuba, Narciso, Sr.. Had worked in a laboratory and Rawedia Maria had studied Chemical Engineering."" In @LOCATION3, they had to start their lives over entirely, taking whatever work they could find. The faith that this struggle would lead them and their children to better times drove them to endure these hard times."" Is what I thought the author in the memoir mood was." 3 2 3 +12697 5 "The mood created by the author in the memoir is loving, caring, and gratefulness. Throughout the memoir the author continuosly mentions how grateful she is to her parents. and how much she loves them. She says that ""I will always be grateful to my parents for their love and sacrifice."" The author means that she's thankful her parents love her enough to give up their home, jobs, and friends, all to give her a better life. She also says that ""what they [her parents] did was a much more courageous thing that I could have ever done."" Narciso is stating that it takes a lot of carage to go forward to an unknown futue, and she's very greatful that her parents did. The quote show the loving, caring, and gratefulness expressed in the memoir by the author." 3 3 3 +12698 5 "The mood is a mixture of things, it's really hard to say withe all the emotions the author throws around. But however the strongest feeling is unity, and family.I'm Not sure family can be called an emotion, but it is I think something that can be described by several. One of course is unity, or as he says it, ""great solidarity and friendship""it's rather sweet how he charectorizes family as something as the bonds you make withe people in contrast to other cultures where family is from blood ties and family s always first. So in a way I think his way of thinking comes from his culture.But also he puts in a bit of sadness but overall seems to be extremely thankful for what he has. As they say ""happiness is nothing without appreciating it"" and as he says ""I learned the real defnetion of family"" so apparently he knows real happiness" 3 2 3 +12699 5 "The mood created in the memoir ""Narciso Rodriguez"" is of happiness, peace, and gratitude. Narciso is thankful for all that his parents had sacrificed and taught him His overall tone in the memoir is translated into a happy and peaceful mood. Narciso writes ""the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop of life to our warm home."" The tone in this quote is calm and friendly, as Narciso explains the happiness of his life at home. By saying his house was ""warm"" with celebrations for family and friends, it constructs the peaceful mood of the memoir. Narciso goes on to explain that ""My parents always kept their arms and their door open to the many people we considered family. Here, Rodriguez adds to the peaceful mood by speaking of generosity, and care towards family. It is the idea family that fueled his loving childhood. The mood turns to gratitude as Narciso thinks his parents for giving him a better life, though they had to endure difficult jobs and conditions. He expresses that he had ""no way to express [his] gratitude for the spirit of generosity impressed upon [him],"" and ""the demonstration of how important family and friends are."" The concepts of family, love, and generosity Narciso learned from his parents formed the basis of the gracious, happy, and tranquil mood of his memoir, as well as his life." 4 4 4 +12700 5 "The author created a tone in the memoir that was truthful and grateful and pride inducing. ""pasionate Cuban music... Filled the air mixing with the aromas of the kitchen. Here, the innocence of childhood, the congregation of family and friends, and endless celebrations... that formed the backdrop to life in our warm home"" (@NUM1). The former quote was found in paragraph @NUM1 described the pride and gratefulness of the home in which the author lived. The memoir created a Family love which every person longs for in life. "" They came selflessly, as many immigrants do, to give their children a better life"" (@NUM3). Anyone who can sacrifice like that for the better life of their family is a good person. That is the family love I am describing being selfless and loving to other members of your family. Another mood created in the memoir was pride in the family's sacrifice. ""I will always be grateful to my parents for their love and sacrifice I've often told them that what they did was a more courageous thing than I could have ever done"" (@NUM4). That was a quote from paragraph @NUM4. It shows that you have to be thankful for the sacrifices people make for you. All of which make the qualities of a good family life." 4 3 4 +12701 5 The mood created by the author in the memoir is very happy because the atsmothsphere is filled with family and friends also joy and happyness. The considered everyone family even though the times were not the greatest for everyone also his parents gave up a lot so he could have a good life in @LOCATION1. He is very grateful for his parents bringing him to @LOCATION1 so he could have a good life even though had to leave their life in Cuba to come here for him. This is the mood created by the author in the memoir. 2 2 2 +12702 5 "The mood created by this memoir is a relaxed caring kind of mood. Several parts of this work emphasize this mood. The author often writes about how he loves his parents for their selflesness. This emphasizes the mood, and he repeats it many times and the repetition helps build mood as well. A final thing that helps the mood is how he describes how everyone in his nieghborhood was kind to each other. In conclusion, there are many things in this work that emphasize a relaxed, caring mood." 2 2 2 +12703 5 "Within the walls of narciso, her young parents created there traditional @CAPS1 home, There heart was the kitchen. Narciso parents both shared cooking duties and unwittingly passed on there rich culinar skills to narciso she love to cook. Quite the countrary narciso neighborhood was made up of mostly Spanish Italian immigrants at a time racism. her parents came selflessly, as some immigrants will do, to give their children a better life. They sacafised leaving their family friends and careers, in the county they came from I think her memory is a nice, happy one becuase with those memorys she knows what her family went through." 2 2 2 +12704 5 "The mood created by the author was love from his family The author describes ""a love of (cuban) cooking which is still with me (the author) today"" and how ""Passionate cuban music which I (the author) still adore today."" The author got this love from his parents. Another way the author created the mood of love was by talking about how his ""parents always kept there arms and door open."" I know that it takes a lot to be able to let anyone into your home. The authors speaking very lovingly at this point in the story. The author also says that he ""will always be grateful to his parents for their love and sacrifice."" This also sets the mood of the story because they are talking about a loving relationship The mood that the author set during the story was love. I think that this was a really good mood to set in a story." 2 3 3 +12705 5 "I think the mood created by the author was gratefulness towards his parents. Narciso Rodriguez wants to tell his parents how very special they are to him and how much he thanks them for what they did for him. In this memoir, Narciso Rodriguez says that ""I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly."" I think that in this memoir, Narciso wants the reader to understand how he feels about his family. He wants to tell us about what they did for him. Narciso thanks his parents for their sacrifice and I think by telling us his story, the mood that was created was gratefulness towards the parents who made him a 'home.'" 2 2 2 +12706 5 "In this excerpt from Home: The Blueprints of Our Lives, @PERSON1 talks about the true meaning of ""family"" and the mood of gratitude is established.""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills... Passionate Cuban music filled the air, mixing with the aromas of the kitchen. Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" In this passage, @PERSON2 is establishing his gratitude for the cultures of his family. He is grateful for the food and music that has wound its way into his present day life.My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved. They struggled both personally and financially braving the harsh northern winters while yearning for their native tropics and facing cultural hardships."" This quote explains how much @PERSON1's parents sacrificed for his happiness. They left behind everything and everyone they loved, basically a huge chunk of them, and for that, he is extremely grateful." 4 4 4 +12707 5 "The @CAPS1 in the @CAPS2 is different and uneek to other I have heard. I belive that the @CAPS1 the @CAPS3 is trying to make is happyness, and selflessness, and grateful. I think this because he describes his parents As selflessness and takes everyone in to theire small Apartment. I also think he is creating ""warth"" by saying that his first birthday with his parent Are comfortting That is the @CAPS1 I belive the @CAPS3 is trying to create. " 2 1 2 +12708 5 "c.The mood in this passage Narciso Rodriguez's home, nationality, and his family. He often talks about his nationality. He is proud to be born in Cuba and not afraid to say it. He is also married. He lives in the @DATE1's. In america. He also often talks about his @NUM1 bedroom apartment in Newark, New Jersey. He aslo likes to talk about the new freinds he mad here. And his family. Also Narciso childhood. His neighborhood is made out of cubans, And @CAPS1. That was the memoir of this passage. " 2 0 1 +12709 5 "The mood in the memoir is grateful. It is grateful in a few ways. One way is in paragraph six he says ""I will always be grateful to my parents for their love and sacrafice. I've often told them that what they did was a much more courageous thing than I could have ever done. I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly."" This shows that he is grateful toward his parents because they moved to the @CAPS1 from Cuba. Another way is in paragraph @NUM1 he says ""my parents both shared cooking duties an unwittingly passed on to me they're rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I admired to this day) filled the air, mixing with the aromas of the kitchen."" This shows that he is grateful toward his parents because of their Cuban culture and specifically their cooking skills being passed on to him. Those are some reasons why the mood of the memoir is grateful." 3 3 3 +12710 5 "In ""Narciso Rodriguez"" by Narciso Rodriguez, the mood created by the author in the memoir is grateful. Narciso is thankful for his parents support and love. When he talks about how he feels about his parents, he says ""I will always be grateful to my parents for their love and sacrifice"" (Rodriguez, p. @NUM1). The words ""grateful for their love and sacrifice"" demonstrates that through his whole life they were there for him. They didnt just tell her what to do, they showed her. When he talks about the @NUM2 lessons he has learned from his parents, he says ""They showed me with their lives, and these teachings have been the basis of my life"" (Rodriguez, p. @NUM1). The words ""basis of my life"" demonstrates that they taught him how to live (the essentials to living). They also showed him the meaning of family. He doesn't just think family is blood related, ""It was here when I learned the real definition of ""family"""" (Rodriguez, p. @NUM4). The words ""definition of family"" demonstrates that he is thankful for them teaching him what family means to them. In conclusion, the mood of this passage is grateful. " 4 4 4 +12711 5 "The mood Created by the author in the memoir is a happy One because in the memoir Narciso was happy with with all her parents did for her and the neighborhood was a peace one, every body reached out to help who ever needed help." 2 2 2 +12712 5 "The memoir looks back on his childhood, with fondness, so I'd call the mood whistful. Yes, the author creates a whistful mood, by talking about his childhood home, friends and family. But... whistfulness only lasts until the end of paragraph @NUM1... after that it becomes a greatful mood, where he's giving out thanks and describing what his parents went through. If it is possible to have two moods, then this memoir does. The moods are both whistful and greatful. Yes." 2 2 2 +12713 5 "The mood of the author and the memoir is greatful. The author is very greatful for his parents. He is thankful for his parents because they gave up their life for him. They moved from their country so that he could grow up in @LOCATION1. His parents quit their jobs and came over all for him. He is also greatful for his extended family and friends. They are the ones who he eats with, plays with and etc. He takes care of them and they take care of him. They are his surrogate grandparents, aunts, uncles cousins and friends. He is also thank full for his culture. All his food along with traditions come from cuba. The author is greatful." 2 2 2 +12714 5 the mood that the author created in the memoir was so sad and happy and they wer were interested are. I think that this memoir is a good one and I liked the tital of it Narciso Rodriguez. 1 0 1 +12715 5 "The mood created by the author is both @CAPS1 and love. At first the mood the author created was @CAPS1. In paragraph @NUM1 it says ""They struggled both personally and financially."" Narciso explains the tragedies his parents had to face in order for him to live in @LOCATION1. So by reading the excerpt based on the poverty and struggles his family faced makes you grow @CAPS1 for them. I also chose love. In the excerpt it states. ""It was here where I learned the real definition of ""family"". And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" @CAPS3 the excerpt the author explains the love he learned to form for the ""family"" @CAPS3 the neighborhood. Therefore that's why I think love is another mood created by the author. These are the reasons I chose both @CAPS1 and love for the moods created by the author based on the excerpt. " 3 3 3 +12716 5 "In this memoir the mood was created Narciso and his family. @PERSON2 family, created the mood by bring all of the family together in thier old home in Cuba and thier new home in @LOCATION1. @PERSON2 brought the mood is this memoir by loveing his family and telling them every day that he is thankful of everything that they did for him whan he was just a child to when he is grown up. Also @PERSON2 family took people in whan thay had nowhere to go and they stayed with them until they got back on thier feet." 1 2 2 +12717 5 "The mood created by the author in the memoir can be describe in many ways. The mood that the author created was confusing. Is confusing because I see more than one too many times. Some of the are happyness, proudness, sadness, and other ones. It's because the memoir talks about Narciso Rodriguez life. The mood created by the author can't be describe since there's too many." 1 0 1 +12718 5 The author creates a @CAPS1 but happy mood and shows @CAPS1 parts and happy parts in the @CAPS2 about a boy whos parents immigrated. his house was what he grew up in and his parents put a Cuban twist to it. 1 1 1 +12719 5 "The mood created by the author in the memoir is happiness because in mostly all of the paragraphs he talks about how much he loves his parents and his cuban culture. Narciso talks about how his parents made his everyday house into a home. That is why I think Narciso is happy in this memior. In paragraph @NUM1 it says ""Within the walls, my young parents created our traditional cuban home, the very heart of which was my kitchen.""" 2 2 2 +12720 5 "The author is very happy and satisfied with the family he has and want his family has done. The author appriciate what his parents has done to other of his parents that immigrated from Cuba. He dedicates what he has learned such as cooking, manners, and friendship to his parents. The author ""admires the strenght and preseverance and have thanked them repeatedly."" overall the author could not had a better family then this, they showed them how to live and that is what a families should accomplish." 2 2 2 +12721 5 "Narciso Rodriguez from Home: The blueprints of our Lives shared his feelings, traditions, and Love he shared with his family growing up.Narciso and his @CAPS1 and dad were cuban. they shared their cuban traditions with eachother and were warm and welcoming with eachother and other people. Narciso's family was generous to other people and shared with everyone. they were all kind to eachother and lived a traditional @CAPS2.Narciso emphasized a mood during the memoir .. The love and meaning of family." 2 2 2 +12722 5 "In this memoir it talks about what the true meaning of selflessness and a home really is. At the beginning of this memoir they talk about how their parents knew the struggles of a life. And would invite people into their home until they got back on their feet. It was at least five years until the parents could afford a decent sized house.Even though his parents left Cuba they still made an effort to keep all their Cuban traditions alive. His parents loved to cook and taught Narciso how to. They also play traditional Cuban music. Also, they taught him to be selfless. They would invite people over even if they weren't the same race because it didn't matter to them." 2 2 2 +12723 5 "The mood created in this memoir is love and unity. (@CAPS1 @NUM1) ""... all of these cultures came together in great solidarity and friendship."" This means that they were close, loving, and unified. This memoir gave me the feeling that just a house is not a home until there is love. ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen"". This also gives me the feeling of warmth and love." 2 2 2 +12724 5 "In my opinion the mood is created by the auther in the memoir by the setting and describing her child hood, where she was born and why her parents came here. The reason I think this is because the mood can create this setting, because the mood is the feeling in the story, such as sad, happy, lonely, silent and that is what creates the setting which is where, when, and time of the story. Some examples from the excerpt are, ""In 1961, I was born into this simple house, situated in a two-family building, in the Ironbound Section of Newark, New Jersey."" Also, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being blood relative."" The author is very thankful for her cuban heritage and her home is about relationship then just space. In this memoir the mood created the setting." 3 2 3 +12725 5 "I particularly enjoyed this memoir. The author did a fantastic job at creating a sense of love and comfort while telling his story. The first sentence that stuck out to me was in paragraph @NUM1: ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" To me, that sentence was all about making people feel comfortable and at home. It put out a sense of family in the story. The feeling of love was easily put into the story at paragraph @NUM2, when the author talked about his family. Especially where the author had said ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us. The family loved everybody, and used their love to help struggling people, or people who just wanted to visit, get back on their feet and stay in their home. This story was truly filled with dozens of examples of love and comfort, and I really enjoyed reading it." 4 3 4 +12726 5 The mood is a family that tried to move from their home country to start a new life in a new country 1 0 1 +12727 5 "The mood the author created in this memoir was very proud. I could tell that the mood was like that because he would always talk about his parents and how they gave up so much to come here. For example in paragraph @NUM1 it says, ""My mother and father came to this country with such courage, without any knowledge of the language Or culture... To give their children a better life, even though it meant leaving behind their family, friends, and careers in the country they loved."" I could @CAPS1 feel the prid in that because he is talking about how his parents left every thing basicly for him. Also, he mentions how his parents opened their arms to who ever needed help even though they were the richest people either. He gave many examples throughout the memoir that strongly showed the mood he made in this memoir, pride" 3 2 3 +12728 5 The @CAPS1 creates a mood of happiness in the @CAPS2. He states memories of his child that made him happy. He mentions the love that he had of cooking with his parents. He also mentions music as being passionate and that he still adores it even to this day. He also describes how good his neighborhood was and how they were a close knit community. Then he startes to explain that a lot of his family was not just blood related but how it included other people. He then explained that he's parents were very self sacrafising people. So it was a very good mood the @CAPS1 wrote the @CAPS2 in. 3 2 3 +12729 5 "In the memoir Narciso Rodriguez by Narciso Rodriguez, the author shows a very strong mood relating to the piece. The emotions used to create the mood include passion, unity, and gratitude.The mood of this memoir has lots of passion. Narciso talks about his family's passion for their Cuban heritage, and how they shared it with him. That was a big component of turning that house into a home, and therefore, part of the mood that Rodriguez wanted to represent. ""... my young parents created our traditional Cuban home... love of cooking... passionate Cuban music..."" (Rodriguez, @NUM1). I also could feel a sense of unity the author was trying to portray. "".. the congregation of family and friends..."" The author mentions several times his parents and him were always letting distant relatives stay at the house, and many friends and family came and shared dinner with them. The author even describes his community as a ""... a close-knit community..."" (Rodriguez, @NUM2). Lastly, a sense of gratitude runs along the spine of this piece. The author notes his parents were a huge part of his life, exposing his to his culture, family and friends, and they home. He doesn't even have to write how grateful he is, it is so evident. ""I will always be grateful to my parents for their love and sacrifice."" (Rodriguez, @NUM3).The author created a mood filled with passion, unity, and gratitude. All of these emotions are evident in the text." 4 4 4 +12730 5 "The mood the @CAPS1 creates is happy. He had no negative comment about his parents or the way he grew up. His parents sacrificed everything for him so he can have a better life. Also the feel of his home reflected on the mood. It was a warm and safe environment in paragraph @NUM1 it states, ""Here, the innocence of childhood, the congregation of family and friends, the endless celebrations that encompassed both, formed the backdrop to life in our warm house."" @CAPS2 can really tell that he loved his home and family and the reflected upon the mood." 2 2 2 +12731 5 "Growing up in this environment in me a great sense that ""family"" had nothing to do with being a blood relative. Quite the contrary, our neighborhood was made up of mostly spanish." 0 1 1 +12732 5 "The mood created by the author in the memoir is happy and family-like. The author goes to describe his family, which were loving but poor. His family supported him by growing up in a happy loving home. They cooked nice food, and invited the relatives over to eat. The author show that no matter if your rich or poor, you can still have a closely knit family." 2 2 2 +12733 5 The mood created by the author in the memoir would be describe happy and thankful. I say that because the author talked about how his parents were caring and selfless. They always helped out people in need. The author loved how he grew up with his cuban culture and how he would never forget it. He said that was one house hold he would never forget. 2 2 2 +12734 5 "The mood created by the author is that he is realy happy that his parents moved to america to live close to friends and family because in paragraph @NUM1 it says"" countless extended family members came and went -- and there was alway someone temporarily staying with us.""" 1 1 1 +12735 5 "I feel that the mood (s) created by the author in the memoir is happy, proud, and grateful. I think that the author makes the memoir feel happy because he is saying that his parents were kind and they worked hard and that made him happy I think.Another mood I think is he was proud. He said (in paragraph @NUM1) that growing up in his environment istilled a great sence of family. His family welcomed other refugees from cuba to celebrate their arrival to this country. Thanks to what he grew up in he learned the real definition of family.The last mood I feel the author created was he was grateful. He said in paragraph @NUM2 that ""I will always be grateful for my parents love and sacrifice. He is gratful to his parents and how they ""turned a simple house into a home"" (paragraph @NUM3). That's what I feel the mood (s) are in the memoir are." 4 2 3 +12736 5 "In the memoir ""@PERSON1 from Home: The Blueprints of Our Lives,"" by Narciso Rodriguez, he creates a mood for the readers. The mood or feeling created in the story is mainly love. There are many things said in the memoir that express the mood of love. For example in paragraph two the author talks about the simple apartment that him and his parents lived in as a great place. He does this because he is so thankful to his parents because he loves them. The paragraph says, ""and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" @CAPS1 people @MONTH1 not be a grateful about simple things like cooking, but the Narciso loves his parents so much that he is extremely happy for even the little things they did for him. Instead of calling Sergio and Edelmira the neighbors who lived below us, they are called surrogate grandparents. This shows that they were very loved by Narciso. Paragraph @NUM1 says ""Countless extended family members came and went and there was often someone staying with us temporarily."" This expresses the mood of love because again the neighbors are called family. Also, Narciso's parents allowed them to live with them because they love them and cared deeply about them. In paragraph @NUM2 it says, ""I will always be grateful to my parents for their love and sacrifice."" Narciso sees what his parents did with their lives as an amazing thing because he loves them so much. When this memoir is read the mood of love is expressed." 4 4 4 +12737 5 In this memoir the author creates a feeling of gratefulness. @PERSON1 is grateful of his parents unselfishness and his heritage. He loves his home country of Cuba. @PERSON1 is also thankful for his grandparents. He loves his home in @LOCATION1 and is grateful for growing up in @LOCATION1. He is also grateful that his grand parents came to @LOCATION1. 1 1 1 +12738 5 "There is a mood created by the author in the memoir.One way in which the mood is created is by explaining how the warm life in the narrator's house was created. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, form the backdrop to life in our warm home."" (@CAPS1 @NUM1) This helps create the mood of the memoir because it is explaining how the narrator grew up.Another way in which the mood is created is by showing how caring and selfless the narrator's parents are. ""I will never forget how my parents turned the simple house into a home."" (@CAPS1 @NUM2) This gave the memoir a light and happy mood.A third way in which the mood is created is by showing how friendly everyone was with each other. ""In our neighborhood, despite customs everywhere, all of these cultures came together in great solidarity and friendship."" The narrator explained how friendly and open everybody in the neighborhood was with one another.As you can see, the author of the memoir created a late mood in the memoir." 3 3 3 +12739 5 "In the memoir the authors tone is loving. The way he describes his Cuban heritage and culture is full of pride for being Cuban. In @LOCATION1 two he states that he is eternally grateful for having had his parents ""rich culinary skills and a love of cooking"" passed on to him. Then at the end in @LOCATION1 seven his tone is once again loving and grateful. In the very last sentence it is noticeable. ""I will never forget how my parents turned this simple house into a home.""" 2 2 2 +12740 5 "In this memoir ""Narciso Rodriguez"", by Home: The Blueprints of our Lives, the mood created by the author is happy.The mood is happy because everyone in the memoir are enjoying their lives and their not worrying about anything. As explained in the memoir, even when @PERSON1 and Rawedia had to start their lives over entirely, they didnt hesitate. Their family were happy, they partied, and as said in paragraph @NUM1, they ""always kept their arms and their door open to the many people they considered family."" In this memoir Narciso enjoyed his life and looked up to his parents for everything they did for him. In paragraph @NUM2 Narciso exclaimed that he will never forget how his parents turned that simple house into a home, which showed their happiness in this memoir." 2 2 2 +12741 5 "In the story I just read, ""Narciso Rodriguez"" I think that the mood that the author gives would be passionate, greatful, and happy.The reason why I think the author is passionate because he talks about how a home isn't just a roof over your head, its where your heart is. ""My parents always kept their arms and doors open for the many people they concider family."" I think that is passionate because in order to do those things you have to be really caring and lovable.I think that the author shows greatfulness because he says that he always thanks his parents for the sacrifices to give him a better life in @LOCATION1. Even though he says it many times, it just isnt good enough to prove how gratful he is. His parents changed a three bedroom apartment into a place he now calls home and that is what he is greatful for.I think that Narciso is happy that he had gotten a chance to spend his child hood lif growing up in @LOCATION1, but still take on the cultural tredition of Cuba. He is now a fashion designer.All in all that are all the three moods that I think Narciso gives in the story." 4 3 4 +12742 5 "In the memoir Narciso rodriguez by Home, the mood created by the @CAPS1 in the memoir is that growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative. They showed me with their lives, and these teachings have been the basis of my life. but, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are. I will never forget how my parents turned this simple house into a home." 3 2 3 +12743 5 "The author does an excellent job for creating many moods in this memoir. One of the moods, is love. Love is a mood in this memoir because @PERSON1's parents took ten people who needed somewhere to stay, because they know that those people would do the same thing for them. Another example of love is when @PERSON1 says in paragraph @NUM1, ""they came selflessly, as many immigrants do, to give their children a better life."" The memoir also makes one feel very grateful for what they have, which, is another mood. It does this by having the author point out how little his house was, and how his parents did everything they could to give them a better life. It really makes one look back, and see how much their parents have done for them." 2 3 3 +12744 5 Well first the authur feels happy and exsited but he also feels sad cause he is moving to @LOCATION1. In 1961 he was born but In that time he met a friend which was his Babysitter and she was his first friend she lived up stairs from them he has alot of family members but wen he moved to @LOCATION1 his mom and dad took his people that need a home Just until they can get back up on there feet he wants to see his grandparents that cant leave until 1970. But he told his mom and dad he will always be grateful to them for their love and sacrifice he often told them that what they did was much more courageous thing than he could have ever done he also often told them of his admiration for their strength and perseverance andt he thanked them 2 1 2 +12745 5 "The mood would be loving and carring. When @CAPS1 was a child growing up in @LOCATION2, his parents treasrd familey and friends. They taught him to always lend a helping and and to alway keep his door open. ""Quite the contrary, our neighborhood was maid up of mostly spanish, cuban, and italian immigrants at a time when racism was the norm and segregation prevailed in the United States."" It was a close knit comunity and everybody knew everybody. Nobody was a stranger. ""My parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us"". His parent's instilled How important familey is and friends." 3 3 3 +12746 5 "The @CAPS1 created by the author in the memoir is Very necessary. I say this because I don't like any writing that doesn't have @CAPS1 swings. this author does a good job of showing the emotions of Narciso Rodriguez in their story. A place in the story where I really like the @CAPS1 swing is between @CAPS2 @NUM1 and @NUM2. I like this change because, it goes from talking about a landlord and his daughter to talking about @ORGANIZATION2's parents. I like that because, it creates a mode of @NUM3 different backgrounds on the two different @CAPS3 of People. It talks about how @PERSON1's Parents were imigrants and weren't raised well buts they wanted their son to have a better childhood life than them. On the other hand, the landlord and his daughter @LOCATION1 , were rich and Could do anything they wanted. I am just blown away by how this author changes his moods." 1 0 1 +12747 5 "In the memoir 'Narciso Rodriguez' the mood of it was happy and was meant to sorta touch someone. In his memoir he explains something he found fun and amusing that he still does today ""a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adore today)"". ""In our neighborhood despite customs elsewhere, all of these cultures came together in great solidarity in friendship"" this shows the neighborhood he lived him was happy and united. ""My mother and father had come to this country with such courage, without any knowledge of the language of the culture. They came selflessly"" this shows that he wanted the readers to know how caring and loving his parents were." 2 3 3 +12748 5 "There is a warmth kind of family mood in this memoir, @PERSON1. This mood is portrayed in many ways. One way the mood is portrayed is by telling us about @PERSON1's parents. And how there home is always open or how theres always ton of people at the dinner table. Another way they portrayed this mood is by @PERSON1 stating ""there is no way to express my gratitude for the spirit of generosity.... the demonstration of how important my friends and family are. This is how they show the warmth kind of family mood in this memoir, @PERSON1." 3 2 3 +12749 5 "In the memoir ""Narciso Rodriguez"" from Home: the Blueprints of Our Lives the author creates a mood of love and admiration. For example ""Growing up in this environment instilled in me a great sense that 'family' had nothing to do with being a blood relative"" shows the love the author had for all people. ""This environment"" is referring to seeing friends of the family (who are also immigrants) very frequently while racism was normal in the US. The author talks about the love and respect everyone had for each other in that community. Another example of the mood is ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture."" @CAPS1 the poem the author speaks of his parents with great admiration. I can tell that he is inspired by them. He makes the reader admire them too. All in all, the moods being created in the memoir were love because of the community he talked about and grew up in and admiration because of the way he wrote about his parents." 4 4 4 +12750 5 "The author of Narciso Rodriguez, Narciso Rodriguez made the @CAPS1 feel happy and welcome. When he talked about the different cultures and races coming together and becoming a solidarity made the @CAPS1 feel welcome to everyone no matter what race you are. When he talked about his Culture and house and having people over for dinner everynight just felt happy and welcome. When he showed his love for his home and culture his parents had shown him made the @CAPS1 feel uplifting. that is how Narciso Rodriguez created @CAPS1 in the memoir, by talking about happy uplifting topics." 2 2 2 +12751 5 "The mood that the author gives through out this hole artical or, memoir is happiness and family. All during the memoir he speaks of how he cherished his family. In paragraph @NUM1 he says ""It was here where I learned the real definition of ""family"". And for this I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" the author keeps on saying how much he is thank ful to his parents and how he loves how they were able to give him all they had to offer. That is what he ment when he said he couldn never show how much it means to him. The mood in the memoir is love, family and happiness." 2 2 2 +12752 5 The mood in the memoir is alot of things here are some. First it makes a warth feeling. It also makes a happy mood because he says that he cannot thank enough. For what they did for him. And lastly it makes you kind of sad because it talks about people that need help. And it says that they love cuba and wants to remember there heratige. There some moods that this story brings out. 1 1 1 +12753 5 "By writing the story, the author created a mood full of warmth and comfort. The mood created in this story shows how family should be. When @PERSON1 says that ""they take anyone in until they are back on their feet"", this shows that they appreciate their family and they are all close. This shows that they care for one another contributes to the mood by showing love and warmth towards another person. A second way about the mood is when he talks about his kitchen and how much it means to him. When he talks about the love of culinary skills and cooking which is still with him today it creates a solemn mood that sets the tone of the story. Third, where he talks about his neighborhood. @PERSON1 talks about the immigrants in the area and how they come together with their different backgrounds. This shows that they show affection for one another and that everyone is the same. This sets the mood too by showing everybody needs to be nice to everyone. These three parts set the ""mood of the story." 3 3 3 +12754 5 The mood is good and happy. In this artical the mood is peaceful and positive. It's a secsesful mood also great-full because @PERSON1 is greatful for everything. 1 1 1 +12755 5 "In the article ""Narciso Rodriguez"" the author talks about the home that they grew up in and the sacrifice and selflessness that their parents have. The mood of this story is happy in the author really shows how much of the love their parents and what they did for them. In paragraph two when they talked about how they love Cuban music and the culinary skills that their parents had, that was passed on to them and that they love so much. Another example of the mood of the story is shown by paragraph four when they talked about all the people they had at their kitchen table and how they were so helpful to the people that they met through where they live. The mood of the article ""Narciso Rodriguez"" was happy and loving to all the people this person has ever met from that house." 3 3 3 +12756 5 "The mood created by this @CAPS1 is, It makes the reader think About his family And what they have sacrificed for you. And ot makes you feel warm @CAPS2 It makes you think of family and friends. And your culture. And It also makes you @CAPS3 thinking of All the @CAPS4 your family has to make for you. And It Also makes you happy @CAPS2 It makes you think About all the fun you And your family has together. All In All It's A great @CAPS5 that makes you feel a flood of emotions @CAPS2 It makes you think of the best thing on earth, family And friends." 2 1 2 +12757 5 "The mood created is happiness & pride. Like in paragraph @NUM1, it says, ""community of honest, hardworking immigrants."" Being honest and hardworking are two qualities to have. And in paragraph @NUM2 ""they cpme to this country with such courage."" @CAPS1, courage is a good quality to have. So pride & happiness are the mood." 2 2 2 +12758 5 "The mood is grateful, because it shows how grateful he is for his house and all the people that come over and be his family." 1 1 1 +12759 5 "In this memoir by Narciso Rodriguez, the mood is a loving one Rodriguez is looking back at all the great memories of himself and his ""family"" when @CAPS2 was young.When living in new @CAPS1 as a child, Rodriguez lived in a very loving home, and a very loving neighborhood. Rodriguez refers to the people living in his neighborhood as family, claiming ""... 'Family' had nothing to do with being blood relative."" @CAPS2 always had neibors an friends over which @CAPS2 considered to be ""family."" The was alot of love in his neibors, and so @CAPS2 grew up with a lot of love around him. But, of course, @CAPS2 loves his parents the most.In this memoir Rodriguez is thanking his parents for being so selfless and loving him so much throuout his childhood. Rodriguez is looking back on how great of a childhood @CAPS2 had, living in a great loving neiborhood, with parents that love him alot.Narciso explains the true definition of family in this memoir, and thanks his parents for loving him as much as they did." 2 2 2 +12760 5 "The mood created by the author in the memoir is very strong. Narciso's mood mostly has to do with his family, friends, and most importantly his culture. Narciso is very happy and lucky to be born in the United States and have a chance to grow up there. Second Narciso loves his home. He talks about how they created their New Jersey home into a traditional Cuban home. For example he says that the kitchen is the heart of his home and how his parents taught him how to cook, which he is greatful for. Lastly his mood towards his friends is that he treats them and considers them as his family. For example his landlord's daughter cooked meals for him more often than not. Also his ""real"" grandparents wich weren't his real grandparents because they were still in cuba. Those are the reasons that create the authors mood in the memoir." 3 3 3 +12761 5 "The mood in the memoir by @PERSON1 is happy, loving, and upbeat or lively. Happiness is seen by the reader when he Is ex plaing the way many different cultures ""come together in great solidarity and friendship"" @PERSON1 is happy he grew up here and is happy with everything about his childhood in this neighborhood. The author loves everything about this neighborhood. @PERSON1 especially loves that there are always people around their table and extended family comes to see them. @PERSON1's writing is very lively and he writes with great passion. The fact that the author puts so much happiness, love and life into his memoir is what makes it so interesting to read and what makes the mood so fantastic." 3 2 3 +12762 5 "In the memoir the mood that was created by the @CAPS1 was saying Family is the most important thing in life. In the memoir Narciso Rodriguez says ""I will always be grateful to my parents for their love and sacrifise. That means he is saying that he will always love his parents and his family. The @CAPS1 is trying to say that it is better to have family than money because in this memoir it talks about his parents leaving Cuba with no money no job but for them being together it gave them hope and now they live in a @NUM1 room house with their family. With out family life would be much harder to deal with." 2 1 2 +12763 5 "I believe the mood of the memoir is happy and enlightening. I think this because @CAPS1 someone imagrate from a certain country of poverty or unjust laws this community or neighborhood will take you in. this community is made up of Cuban spanyards and italians all have left there homelands to persue a better life for either them, the family, for there kids In conclusion the mood of this memoir is happy because it is enlightening and welcome place to be." 1 2 2 +12764 5 "The author's mood of this memoir is extremely thankful and appeciative. He said he will always be grateful to his parents for their love and sacrifices, and mentions what struggles they had, beginning in a one room apartment then affording to move into a three room apartment for him to call home. He explains how his parents started their lives entirely over in @LOCATION1, and needed to take whatever work they could find. They were able to endure their hard times with the faith that this struggle would help lead themselves and their children into better times. The author had so much admiration of his parents strength and perseverance. He learned the true meaning of 'family"" and about how to love. He was really appreciative for all he had, and the lessons of generosity and how important family & friends are that his courageous parents had taught him, that had also become the basis of his life." 3 3 3 +12765 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the author creates a family mood. Rodriguez talks about how family always visits. The memoir states ""countless extended family members came and went..."" (paragraph @NUM1). He also explains that family isn't always the people related to you. Rodriguez says that his neighborhood ""came together in great solidarity..."" (paragraph @NUM1). Rodriguez says that he is most grateful for his parents ""for their love and sacrifice"" (paragraph @NUM3). Narciso Rodriguez really creates a mood filled with love, caring, and family." 3 3 3 +12766 5 "In the @CAPS1 from ""Home: The Blueprints of our lives,"" @PERSON2 creates a very distinct mood. I think the mood of the @CAPS1 is Warm, caring, comforting, and very loving. The author's home is very family oriented, but not to just blood family. His neighborhood was all family when ""Racism was the norm and segrigation prevailed."" When Narciso Rodriguez discribes this the @CAPS1 sounds comforting and loving. He @CAPS2 ""My parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us."" This brings a happy, light feel to the article and coforting as well.When Rodriguez @CAPS2 ""I will always be grateful to my parents for their love and sacrifice,"" the mood changes a bit. Now it's admiring, grateful, and compationate. As Narciso Rodriguez discribes his parents Struggle so he could grow up @CAPS4 nicer than they did you can feel hes very grateful and loving. The mood is happy, loving, and full of compasion at this point This is the mood created by the @CAPS1 by @PERSON2 from ""Home: The blueprints of our lives""" 3 3 3 +12767 5 In the memoir the author sets up a happy mood while remembering his child hood home. He only recounts good things and happy memories in the entire memoir. He also speak of cherished childhood memorys and how good his cummunity was and parents. 2 1 2 +12768 5 The mood in the story is very happy. The author is thinking about all the good times he had growing up. He is talking about how he had such a good life in the house. How his parents came there as immigrants and made a life for themselves and then him. Another reason he has a happy mood is because he talks about his family coming to @LOCATION1. He talks about how his parents taught him how to cook. He thanked his parents because he was so happy they created a family not just a home. 2 2 2 +12769 5 "And throughout the memoir there is a constant mood, which is happiness. In the beginning of the memoir, @PERSON1 describes his home, about how it started to how it became a wonderful ""home"". He said it had ""a passionate Cuban music"" and ""amazing aromas of cooking"". Then in paragraph @NUM1, @PERSON1 says that ""he loves his parents for their love and sacrifice""; and he continues saying how grateful he is toward them. Lastly in paragraph @NUM2, he says, ""I will never forget how my parents turned this simple house into a home"". This is the mood expressed in the memoir." 2 2 2 +12770 5 "In the memoir the author creates many moods with in it. In the text the first mood he created was caring because in paragraph @NUM1 it says ""countless extended family members came and went-and there was often someone staying with us temporarily until they were able to get back on their feet. My parents always kept their arms and their door open to the many people we considered family knowing that they would do the same for us."" This shows caring because they would let anyone that was family and wouldn't care. The next mood he showed is being grateful because in paragraph @NUM2 he says"" I will always be grateful to my parents for their love and sacrafice"". This is him showing that he is grateful because he says it in the sentence and he also tells the reason why he is grateful to them. These are the moods the memoir created." 3 3 3 +12771 5 "I think in my opion is that the author was very comfortable with his words and his way of being human. His parents was originally from cuba, @CAPS1 was in to there culture nice to other in there surrounding. For an example @CAPS2 say It was in this simple house that my parents welcomed other refugees to celebrate their arrival to the country and where I celebrated His first birthday." 1 1 1 +12772 5 They author makes a mood like is other in this memoir. He creates a mood in which enstills @CAPS1 and praise for his parents. He tries to express his @CAPS1 to his parents in words but can't because of all the great times. He makes a mood of happiness in which will last for ever in his memories and the Kitchen. 1 1 1 +12773 5 "I think the mood of this story is warm and loving. Narciso's Parents never had a big home in the United States but they turned a small house into a home.In a @NUM1 bedroom, two family house in @LOCATION1's parents created a traditional Cuban home. A lot of cooking hapened in the house. Family was always around which must've been fun, and all of this hapening with Cuban music playing in the back ground. ""@CAPS1 the air, mixing with aromas of the kitchen. Narciso makes his home seem like a very loving home." 2 1 2 +12774 5 "The @CAPS1 @CAPS2 in the story is happy This is because he got to move to the @LOCATION1 and be born hear for a better life. He Also loved growing up hear with the cuban traditions and music as stated on paragraph @NUM1 ""And for what I am eternally grateful,"" wich I adore to this day.""" 1 2 2 +12775 5 "In this memoir, Narciso made the mood peaceful because he named the music that was playing and all the family that ate with them. Narciso also talked about them cooking. I think the moods peaceful because he doesn't say anything bad about his parents. he only says the good things about them. The mood could also be grateful because he was grateful for many things that his parents did for him such as pass down the love of culinary. He's also grateful for his parents leaving Cuba and @CAPS1 everything over again @CAPS2 that he could have a good job and a good life. Another possible mood can be warmth because Narciso loved his family and probably felt the warmth of everyone when they all went over his house." 2 1 2 +12776 5 "The mood created by the @CAPS1 in the memoir was, gratitude towards his parents.In the memoin the @CAPS1 thanks his parents for raising him the way they did. In the article he thanks them by saying things like ""my admiration"", ""my gratitude"", and ""generosity"". all these statements are true and they reflect his mood towards his family.In conclusion, the mood was alot of thing but, i choose gratitude because it reflects how he feels about his family the most." 2 2 2 +12777 5 "Narciso @PERSON1 so proud he was Cuban immigrante and how his parent did so much for him. he realized that (in paragraphy @NUM1) family had nothing to do with being blood relative. And How all culture just came together as great solidarity and friendship doubt to when overt racism was norm and segregation prevailed in United @ORGANIZATION1. He learned the true meaning of family. How his parent turn a regluar house into home that he loved. He was grateful how his parent made so many sacrifice that turn something into life time expenence that he will never forget. He was happy how little thing turn it great memories, that he can't wait to tell the world." 2 3 3 +12778 5 "The mood created by the author in this memoir is one of happiness, safety, and care. Narciso had parents who loved him and a very close-knit community. All the descriptions of his family cooking and family neighbors eating together is enough to make anyone feel happy. Throughout the memoir, Narciso emphasizes the care of his parents. You know Narciso's parents loved him as of his attitude toward them. In paragraph @NUM1, when he writes, ""I will always be grateful to my parents for their love and sacrifice,"" shows his parents' care for him. When the author writes, ""In our neighborhood,... all these cultures came together in great solidarity and friendship. It was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" These two sentences give the reader feelings of safety and once again emphasize care. This memoir by Narciso Rodriguez creates a mood of happiness, safety, and care." 3 4 4 +12779 5 "The author of this memoir creates a warm, loving, lively and festive mood as he describes his home. A few times the author uses ""warm"" to describe the home, for example he says ""warmth of the kitchen."" @CAPS1 reads this memoir gets the feeling it's a bright and warm place. The reader also gets the feeling that everybody is loving and friendly, especially as the author talks about how immigrants from different places came together and were great friends. He also says his parents ""always kept their arms and their door open to the many people we considered family"". @PERSON1 paints a picture of a home filled with love. There was also a lot of life at his house. ""Endless celebrations [...] formed the backdropto life in our warm house. He also wrote that 'Cuban feasts [...] always filled the air with not just scent and music but life."" From reading his memoir we get the feeling that his home was a great place to be during his childhood,he created a warm, inviting, and festive mood." 4 3 4 +12780 5 "The mood created by the author in the memoir was greatful. The memoir was all about how Narciso Rodriguez admired his parents courage, selfishness, culture, heritage, strength, and perseverance. Narciso said, ""I will always be greatful to my parents for their love and sacrifice"" @CAPS1 also said, ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" Not once did the authors say anything negative about his experiences growing up. The memoir focused on how @CAPS1 is so greatful for everything his parents did and sacrificed for him. In conclusion, the mood created by the author of the memoir was happy and greatful." 2 3 3 +12781 5 "In the memoir, the author creates a sort of grateful, appreciative mood. Throughout the memoir, Narciso repeats how grateful he is to have such courageous parents. For example in the first few sentences of paragraph @NUM1, ""My mother and father come to this country with such courage, without any knowledge of the language or culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind thier families, friends, and careers in the country they loved."" this shows how grateful he is for his parents, to do all this, just to give him a better life. I would feel just as grateful For my parents if they had done this for myself, just as how Narciso felt." 2 2 2 +12782 5 "The mood created by the auther in the memoir are love, happyness, and @CAPS1. Love is one of the moods because they welcome people in need ""My parents always Kept their arms and their door open to the many people we consider family, Knowing they would do the same for us. Happieness is one of the mood because Narciso is pleased with parents. ""I will always be grateful to my parents for their love and secrifice."". @CAPS1 is one of the moods because all every one in the neighbor hood got along. ""In our neighborhood, despite customs elsewhere, all of these culture came together in great solidarity and friendship.""." 3 3 3 +12783 5 The mood created by the memoir is exciting because he likes fashion design. He makes the story about clothing design. He also feels happy because he likes the home and has turned a simple house into home. He felt sad because he was born in a simple house. He wanted somewhere he could call home. 1 1 1 +12784 5 "The mood the author created in the memoir is very significant. He expresses love, appriciation, and unity. Narciso shows a lot of love not only to his parents, but to his culture. He stated often about how thankful he was to grow up around cuban food and music. For example in paragraph @NUM1 he says, ""...Passed on to me their rich culinary skills and a love of cooking that is still with me today,"" and, ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" @CAPS1 he showed appritation toard his parents. Narciso often states how much he admires them for their bravery by coming to @LOCATION1. He talks alot about how they turned their simple house into a home in paragraph @NUM2. Finally, unity was shown a great deal in his community because they were mostly all cuban, spanish, or Italian imagrents, and they tended to stick together. Overall, Narciso really learned what the word ""family"" means." 3 4 4 +12785 5 "The mood created by the author was happy, The love Of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (Which I adore to this day) filled the air, mixing with the aromas of the kitchen. I will always be greatful to my parent, for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could ever done. They @CAPS1 me with their lives, and these teachings have been the basis of my life. My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life. The author's mood is happy and grateful of there parents to give the author a better life, and leaving what's behind." 2 3 3 +12786 5 "In @PERSON1 from: Home: The Blueprints of our Lives the author creates a warm and loving mood. When @PERSON1 talks about his parents and how they ""always kept their arms and their door open"" that sets a loving mood because if one is so generous and caring to do that, it means they love you and they care about you. Also at the end of the memoir Narciso says that he ""learned there about how to love"". @PERSON1 now says this about his house because his parents were always so up beat and caring that they showed him what love is. Being loved makes all people feel good inside." 3 2 3 +12787 5 "The mood of the author in the memoir are grateful and thankful. Narciso life seem original like others would have. It was a simple house they started, turned to a warmth home. Narciso appreciated his parents brought them to this land, Cuba, selflessly care for their children for a better life. Although they is struggling but they are have happiness. His parents often welcome neighbors and relatives to join the dining. family to him that he be learned is not just his parents, sisters and brothers. It's neighbor surround you and treat you with respect like a family. This is how Narciso Rodriguez felt of worthy to have a home like that. He felt grateful and thankful for his parents love and sacrifice. He admired for his parents strength and perseverance. He'll never forget the gracious neighborhood brought him memories and his parents turned this simple house into a home." 2 2 2 +12788 5 The mood the author created in the memoir was emotional because he describes his childhood and how he grew up. 0 1 1 +12789 5 "The mood in this story @PERSON1. Moving can be hard for some people others it is an @CAPS1. Most people hate to leave their @CAPS2, work, and friends behind. Other people it's a new oppertunitie to meet new people a better job, or go to a better @CAPS2 for your education. I understand it is hard to move from cuba to the united States. Thats across the world not a town over or a street down. But he made a friend and his mom and dad love him very much. They always have food on the table so at lest they dont starve. It was a step down moving to united States going from a good jobs to poopy. The mood in this story is very loving between the family and all there friends" 1 1 1 +12790 5 "The author in the memoir mood was happiness because they bought a New house in New Jersey. They had a born baby in the house her @CAPS1 is Narciso she @NUM1 years old. There family is happy. There parents are from cuba. They live in a beautiful house that has @NUM2 bedrooms. In hous There, familys are always happy." 2 1 2 +12791 5 "The mood created by the author in the memoir is very relaxed and happy. This is shown in @CAPS1 @NUM1.In @CAPS1 @NUM1 the memoir states, ""the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in a warm home."" This brings a very calm mood of how their home brings them together.Another example is in @CAPS1 @NUM3. @CAPS1 @NUM3 states: ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" This sentence gives a ""welcome home"" and loved mood." 2 2 2 +12792 5 I think the mood was happy @CAPS2 the @CAPS1 talk about a @PERSON2 named narciso Rodriguez and that he lived in Cuba and he's parents moved to the United States so the family could Be together and I think that the @CAPS1's mood is happy @CAPS2 this story was great a talk about a @CAPS3 and his parents moving to the United States. 1 1 1 +12793 5 "The mood created by the author in the memoir is happy and warm. This is shown in two ways: the selflessness of the parents and the true meaning of family. Narciso Rodriguez, the author, is forever grateful to his parents for starting their lives over so he could live a good life in @LOCATION1 This is shown in paragraph @NUM1 when he explains that his parents loved Cuba but left so their children could have a better life in @LOCATION1. He gives his thanks to his parents in paragraph @NUM2. This feeling of gratefulness contributes to the warm, happy feel of the piece. Throughout the piece Narciso explains to us the true meaning of family ""'... family' had nothing to do with being a blood relative,"" he states in paragraph @NUM3. In paragraph @NUM4, he explains that family means those who care for and about you and stick by you no matter what. This feeling of family definitely helps to make the piece feel warm and happy." 3 3 3 +12794 5 "I think the mood is suppost to be sad for many reasons. One reason is that he keeps saying how his house isnt a home untill the end. Such as ""I will never forget how my parents turned this simple house into a home. Another reason is that his friends and family is all he got. Such as ""...how important family and friends are. Also because he had to move, so he didnt no anybody. Such as ""...Originaly from Cuba, arrived in the United States in 1956." 1 2 2 +12795 5 The mood created by the author in the memoir was warm and inviting. The auther made it feel as. if I was really there in his neighbrhood. the auther took the things most people take for grantit and elaberated on them. he made the mood feel real he made the reader that they were a part of the story. 1 1 1 +12796 5 "the @CAPS1 the author created was a warming @CAPS1. He gave events from the past which created a content tone. He also used discriptive language about the food, Music, and family. in this memoir it stated that he appricieated his parents very much for their selflessness. in @NUM1 it sais ""Growing up in this environment instilled in me a great sense that family had nothing to do with being a blood @CAPS2"". This is showing now nis family treated him real well. All in All he gave a good tone in this story." 1 1 1 +12797 5 "The author of the memoir creates a very loving, peaceful, and happy mood in the story. It is always saying that his house was always filled with friends and family. This gives the story a very loving mood and shows how they are all there for each other. Also, in paragraph @NUM1 it says, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to lif in our warm home."" This sentence shows that the home is very loving and warm. Lastly, the mood that Narciso has throughout the memoir is very greatful. He is always saying how much he appreciates what his parents did by moving to @LOCATION1 to create a better life for him. That is the mood of the memoir throughout the whole passage." 3 3 3 +12798 5 "The mood in this memoir is very moving and heart-felt. By the way the author writes about his family @CAPS1 can just feel the warmth and love that his family provided for him ""... my young parents created our traditional Cuban home, the very heart of which was the kitchen. My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today."" @CAPS1 can just tell by this quote how much of an impact Narciso Rodriguez's parents had on his life. It also explains how crafted his parents were and how intelligent they were. ""I will always be grateful to my parents for their love and sacrifice."" @PERSON2 most deffinatly loved his family. " 3 2 3 +12799 5 Though out this story there is a certain @CAPS1 of @CAPS2. like how these people got there dream home and this was it. How there Parents Came to this country not knowing the language or have a good edication but Still becoming succesful and living in this house. Where these people learned to love. and the best part having family near by. 2 1 2 +12800 5 "Based on the memoir, the mood created by the author is one of friendliness, thankfulness, and caring. In paragraph @NUM1 and @NUM2, the author says that, ""all of these cultures come together in great solidarity and friendship."" @CAPS1 also says, ""My parents always kept their door open to the many people we considered family, knowing that they would do the same for us."" These quotes @CAPS2 that friendliness and helpfulness to the people around you considered family is a big part of their lives and the author trys to convey this sense or mood to the reader. The mood is thankful because @CAPS1 is appreciating all that his parents have done for him. In paragraphs @NUM3 and @DATE1, the author mentions being grateful of the cooking Skills passed onto him and ""to his parents for their love and sacrifice."" The feel the author creates of his ""admiration"" for his parents leaving their native country, comes through in the mood. Lastly, The mood is one of caring and welcome to friends and neighbors they considered family. In paragraph @NUM2, the memoir States that ""Alegria"" and the author's ""surrogate grandparents"", ""graced our Kitchen table for meals more often than not."" These quotes @CAPS2 the openess and caring feeling in the home and family created by the mood of the story. This family kept their ""door open"" because they cared about ""countless"" people around them." 4 4 4 +12801 5 "The mood of this article created by Narciso Rodriguez in ""The blueprints of our lives."" Is selfessness, admiration, gratitude, and thankfullness. In paragraph @NUM1 it takes about how his parents did his out of love, for her children, not for her. It also @CAPS1 the friend ship of all other imagrints trying to start lives in america. As it States in paragraph @NUM2. This article is fille d with love and respect for family and friends, that is what the atheur was saying." 2 1 2 +12802 5 "The mood created by the author in the memoir are pretty good. The author shows that he really does appreciate his parents and thanks them for everything they've done. He calls his home a warm home. He remembers the inocence of childhood, congregation of family, friends, and endless celebrations. He states that he had a great sense that ""family"" had nothing to do with being a blood relative. And I think what he's trying to say is you dont need to be blood rellated to be family, just love and care about someone." 2 2 2 +12803 5 "The author of the memoir is thankful of her parents and to the rest of her family. I know the author is thankful for his parents because in paragraph @NUM1, the author says, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, freinds, and careers in the country they loved."" @CAPS1 reason why I think she is thankful for her parents is because they made their liFes worse to make the authors life better. I know this because in paragraph @NUM1, it says, ""In the united states, they had to start their lives over entirely, taking whatever they could find."" The last reason why I know is because he basicly says it in the last sentence of paragraph @NUM3. It says, ""I will never forget how my parents turned this simple house into a home. That is the authors mood in this memoir." 3 3 3 +12804 5 In the memoir narciso rodriguez by The blueprints of our Lives The mood the author created in the memoir was grateful the author created that mood because he was and is still grateful abought how his parents left behind their family and friends and Jobs so that he can have a better life also the mood is grateful because they passed on their rich culinary skills to him. Also he is grateful for livving in a simple house with all those wonderful neighbors and freinds. I think the mood created by the author is grateful because this is a memoir of all the good things in his life and all of the stuff he should be gratefull for having. 2 2 2 +12805 5 "In the memoir of Narciso Rodriguez, he creates a happy and excited mood. This is because he is sharing family memories and those of his home. He is happy about them because of all of the good times he had in it. One event he was fond of at his house was his babysitter and first friend Alegria. Narciso shares times hes spent with Alegria and in doing so shows a mood of happiness. When the author talks about the kitchen and the Cuban music it brings an excited mood to my head. I imagine some exotic food cooking with a sweet warm smell and parents talking over the passionate Cuban Music. Narciso Rodriguez's life seems to be one that is very interesting and exciting. I wonder what he's doing now." 3 2 3 +12806 5 "The mood created by the author in the memoir can be described in many ways. For one, the mood is of graciousness for all that was done for Narciso Rodriguez. In the memoir it says, ""I will always be grateful to my parents for their love and sacrifice."" This feeling of graciousness tells about the love and sacrifice he feels his parents went through for him. The memoir also shows this mood of graciousness for the understandings his parents taught him. In the memoir it says, ""Growing up in this envronment instilled in me a great sense that family had nothing to do with being a blood relative. This understanding that was taught to him had a large impact on his life at that time. The final express of graciousness in the memoir is his feelings toward the passions his parents taught him. In the memoir it says, ""unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally thankful). Passionate Cuban music (which I adore to this day) filled the air,"". These express the passions and skills that followed the author to adult hood, holding a special place in his heart. These are the descriptions of the mood that is created by the author in the memoir. " 4 4 4 +12807 5 "The overall mood created by the author in the memoir was courage, and perseverance. First, Narciso Rodriguez's parents traveled to the United States with absolutely nothing; they had no money or background information about the @PERSON2 In paragraph @NUM1, Narciso states, ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture."" Narciso's parents would bravely step into a new world where they didn't know anyone, they couldn't communicate with anyone, and they didn't really have any ideas as to what was going on. The Rodriguez's also persevered through the @CAPS1 challenges of racism and segregation, here in this country. In paragraph @NUM2, he states, ""at a time when overt racism was the norm and segregation prevailed..."" @CAPS1, Narciso's parents had to get through problems with people, and they also had to fight through the mental challenges, due to racism. Lastly, in paragraph @NUM1, Narciso says that his parents were always ""braving the harsh winters while yearning for their native tropics and facing cultural hardships."" His parents had the courage to persevere through new weather and financial struggles. The overall moods that Narciso Rodriguez created for me were bravery and perseverance." 3 4 4 +12808 5 The mood created by the author in the memoir was the mood that you don't have to have lots of money or a big house you just have to have your family to support each other. 0 1 1 +12809 5 "The moode the author has in this memoir is happines. He states that growing up around in the envirnorment gave him a sence of family, he says that here in my house felt lik cuba. He and his whole family have respected each other and others. Thats the authors mood" 2 1 2 +12810 5 "A sense of community, selflessness, and contentment washes over Narciso Rodriguez's memoir of his first home. Happiness was prevalent over this story, described through a ""love of cooking"", ""endless celebrations"", and ""friendship"". Readers can imagine the scenes depicted, happy gatherings around a table laden with aromatic food, and parties with people, young and old, tall and short, of all different cultures. The words that weave this well-written memoir are nothing if not content.Community is also emphasized in this written work. ""A close-knit community of honest, hardworking immigrants"", their neighborhood was described as. The memory of many souls working together despite radical racism in that time really gives the memoir a communal sense. Narciso Rodriguez says, ""My parents always kept their arms and the door open to the many people we considered family, knowing that they would do the same for us.""When the sacrifices that his parents made were outlined in the memoir, selflessness truly becomes a mood in the memoir. A whole new life embraced just so that their children could have a better life, his parents rarely did things for their own benefit. ""I will always be grateful to my parents for their love and sacrifice,"" Narciso Rodriguez says. The endless struggles they endured, and the many times they could have given op, they didn't, because they wanted, so selflessly, to give Narciso a better life. This memoir's mood holds three important things: a love of community, happiness, and selflessness." 4 4 4 +12811 5 "the mood created in the memoir were all different. they talk about there family, friend, and how they turned a apartment into a place called home. they talk about there cultures and wat they do for fun with friends, and family. He also talked about sad moments and happy moments he didnt get to know his real grandparents until 1970 when they were allowed to leave cuba in paragraph @NUM1." 1 1 1 +12812 5 "In this memoir Narciso Rodriguez from Home: the @CAPS1 of Our Lives created a mood that was calming and the author was passionate in what he said and made a happy mood. ""my parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adore to this day)..."" This quote shows that the mood was cheerful and calm. The mood the author created was the friendliness of family and friendship between the family and how other people would join them into his family house. The author made the mood like an instilled enviroement as like he was growing up in ""this environment instilled in me a great sense of ""family"" had nothing to do with being a blood relative." 3 3 3 +12813 5 "While reading Narciso Rodriguez I felt a certain mood. the mood was very serious and grateful. In the memoir Narciso said, ""I will always be thankful to my parents for their love and sacrifice."" this shows he is thankful for all his parents Did to make him the man he is today. He also writes, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" That statement is a serious thought that clearly came from the heart. It shows he has love for anyone who comes close to him. to add, ""My mother and father had come to this country with such courage."" that says that he thinks about his parents and having heart, and courage, and that is both serousness and gratefulness. In closing I would like to say Narciso Rodriguez is a very grateful and serious man." 3 2 3 +12814 5 The mood created by the auther is that of the american dream. It is a very happy and successfull theme with roots in the hearts of millions of immigrants that hopefully had simallar stories. In each paragraph there lines that have relation With freind being family and how his home was phisically quant but emotionally it was a place of love. That enhances the mood of happines in the story. Also the fact that in the story racism and segration were set aside and neighbors were relatives because of who they were not were they came from. That is what everyone loves to hear and makes the mood hope that the whole nation will act like that. lastly the story tells times how the parents sacrifice for their sons better life. That has probably touched most of reader close to hom so the mood would now becom very serious. This short memoir is a great story to bring you mood from sad to hopefull and thankfull that you live in a place you can call home. 3 3 3 +12815 5 "In the excerpt from the memoir ""Home: The Blueprints of Our Lives,"" by Narciso Rodriguez he has a specific mood or feeling throughout the whole excerpt. He mood seemed to be kind of like a happy mood that shows everything even the hard times like ""a time when overt racism was the norm and segregation prevailed the United States,"" in a happy tone or mood. He even explained how his parents left their country and friends to live here and have warre jobs in a lighter happier mood. I believe that Narciso Rodriguez likes to look at everything in a happy, light mood no matter what it is." 2 2 2 +12816 5 "The mood created by the author in the memoir is a happy and a loving one. A reason why I think this is by talking about how he and his neighbors (of different descent) All got along very well in solidarity with one another which creates a sense of love. Also when he talks about happy times like when he and his family are cooking in the kitchen they are having a good time, laughing, and listening to Cuban Music. Lastly when he and his family take in family or even just really close friends who they consider family conveys a true sense of happiness, peace, and love." 2 2 2 +12817 5 "The mood in ""Narciso Rodriguez from Home: The Blueprints of our lives"" is compassion. Throughout the memoir it talks about how Narciso was grateful to his parents for their ""love and sacrifice"". He was grateful that they wanted to move to the United States from Cuba just to ensure that he would have a better life. He learned generosity and how important family and friends are from his parents and they have been ""the basis"" of his life. His house welcomed everyone and the air was always filled with ""not just scent and music but life and love. He learned what family really ment and learned how to love. He loved his parents a lot and talked highly of them in his memoir ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they love... The faith that this struggle would lead them and their children to better times drove them to endure these hard times."" That is why I think that the mood in the memoir ""Narciso Rodriguez from Home: The Blueprints of our lives"" is compassion." 4 3 4 +12818 5 "The @CAPS1 of this memoir creates a mood that is very touching and meaningful. It shows the hardships his family had to overcome as well as the good that came frome it all. The @CAPS1 states in his memoir, that, although his family was going through tough times, they left their door wide open to family that needed help and always had the thought of others in their mind. He explains how hard it was for his parents to leave their home and jobs in cuba, but that they did it for him, so he would get to live a better life. one more thing the @CAPS1 said in the memoir that was very touching was when he said, ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me..."" These words show us how much of an impact his parents action had on him and how they helped him in life. These are some examples of how the @CAPS1 describes the mood." 3 3 3 +12819 5 "The mood created by the author in this memoir is very appreciative and grateful. The author, Narciso Rodriguez, is grateful and appreciative for his Cuban culture and that is also amazed that his parents could be so courageous to leave Cuba, to come to @LOCATION1. The author shows @CAPS1 is grateful and appreciative for his Cuban culture by expressing the way @CAPS1 feels about the ""passionate Cuban music (which I adored to this day)."" @CAPS1 is also appreciative and grateful that his parents were such great cooks by saying ""our traditional Cuban home, the heart of which was the kitchen"" and how ""it was in warmth of the kitchen in this humble house where a Cuban feast always filled the air."" The author is also appreciative that his parents were so courageous to move to @LOCATION1 by saying ""I will always be grateful my parents love and sacrafice. I've often told them that what they did was a much more courageous thing that I could have ever done.""The author was very grateful and appreciative for his parents and this memoir for their cooking skills and courageousness. @CAPS1 is also very grateful that @CAPS1 is Cuban and is grateful for his culture." 2 3 3 +12820 5 "The mood of the memoir was him being very thankful of his parents. This is shown when he says ""In reality there is no way to show how greatful of my Family I am. This show that he shows and respect all of his Family." 1 1 1 +12821 5 The mood created by the author in the memoir is @CAPS1. He tels us his life in past of the hoas he ust to live in and how much hapines it broght hem. He tels us how they cald the people to selebrate when they cam to @CAPS2 ther first ime. But he dosent only tell us what good time he had he olso told us haw hard it was fur him to live in cuba. 2 1 1 +12822 5 "In the memoir, ""Narciso Rodriguez"" by Narciso Rodriguez, the story has more of a ""happy"" or ""joyful"" mood. I chose those moods because one, it showed how peaceful and loving everyone was even if they weren't family, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" Two, he said how happy he was for his unselfish parents, ""I was always greatful to my parents for their love and sacrifice. I've often told them that what they did was much more couragous thing than I could have ever done"". Finally, he explains how different everyone was, and yet can get along with each other so well, ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" In conclusion, this is the mood I think the author created in the memoir, ""Narciso Rodriguez"" by Narciso Rodriguez." 3 4 4 +12823 5 "The mood created by the author in the memoir is grateful. Narciso Rodriguez is eternally grateful to have the rich culinary skills and a love for cooking just like his Parents. His very happy he came from such friendly family. The community and @ORGANIZATION1 comes together to help out those who needs a hand. Rodriguez is grateful to his Parents for their love and sacrifice, and he thanks them repeatedly. His Parents have there arms and doors open to those who will do the same for them." 3 2 3 +12824 5 "The mood created by the author is very greatfull and thankful. The author shows how greatful and thankful they are in this memoir When they said, ""I will always be greatful to my parents for their love and sacrifice. I've often told them what they did was a much more courageous thing that I could have ever done. I've often told them of my admiration for their Strength and perseverance and I've thanked them repeatedly. But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are. These are two lessons that my parents did not just tell me. They showed me With their lives, and those teachings have been the base of my life.""- In my conclusion this is why I think the authors mood in the story is very thankful and greatful." 2 2 2 +12825 5 "There are many ways to describe the mood in ""Home: The @CAPS1 prints of Our Lives"", by Narciso Rodriguez. First, the mood is family-friendly. This is because in paragraph @NUM1, the author states ""the innocence of child hood, the congregation of family and friends, and endless celebrations that encompassed both, forms the backdrop to life in our warm home."" Also, the mood is very joy ful. In paragraph @NUM2, the author states, ""all of these cultures came together in great solidarity and friendship."" @CAPS2, the mood of this memoir is defining the love of his family. In paragraph @NUM3, Narciso states, ""I will always be grateful to my parents for their love and sacrifice."" These have been some moods in this story." 2 2 2 +12826 5 "The mood created by the author in the memoir is that he tells where they live, how there house is, who lives there and the familys names. The mood of the story is happy. They all want to be to gether and be a happy family. They are telling you where the parents are from and when they moved here. There is alot of love in there family. The parents turned a simple house into a home." 2 2 2 +12827 5 "I think the mood of author in the memoir is thankful, proud and happy. @PERSON1 is extremely thankful of what is has, disspite what has happened through his life. He is proud of his Cuban heritage and is still proud of it today. He listens to Cuban Music and cooks Cuban food. Also his is happy. In the memoir he has a very happy tone because is his proud and thankful. His parents were immigrants from Cuba and he still got the education he wanted, even though his parents went through tough times." 2 2 2 +12828 5 "In the memoir the author had a certain mood. The mood of the article is somewhat happy because in the memoir the author is remembering good things. The author is reminising and being grateful for being what he is. Narciso is remembering and bringing us through his heritage and home, which is in a happy setting. The mood of the article is happy which the memoir was." 1 1 1 +12829 5 "The mood of this story is happy. I think this because in the memoir it talks about cuban fiests, being with family, and friends and it seems like its a good time. Also I think this because it talks about good memories wich is always a happy thing. And it's all celebrations and being together wich is always a good thing." 2 1 2 +12830 5 "In this memoir, ""Narciso Rodriguez"" by Narciso Rodriguez, there is certain mood. I believe that the mood is supposed to be seen as joyful and uplifting. The whole memoir is describing what a rich child hood the author had, from his home itself to all his family, he had nothing but great things to say. When talking about his home, he says ""Within its walls, my young parents created our traditional Cuban home, the very heart of which was the kitchen. My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am externally grateful)."" I would say that is pretty enlightening. He also says how grateful he is for his parents. The mood of this memoir is nothing but good." 3 3 3 +12831 5 "In the memoir written by Narciso Rodriguez, Narciso shows a certain love and passion toward his family and culture. The mood of this memoir would be love and passion because of the words and emphisization his feelings. For instance, in paragraph three it states that family does not mean just blood relations. @CAPS1 talked about how all sorts of cultures came together as one and were always good friends along the way. Another way mood is expressed is through his foreshadowing, showing @CAPS1 kept the tradition going. ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and love of cooking that is still with me today"" and ""Passionate Cuban music (which I adore to this day)..."" @CAPS1 expresses his foreshadowing in two ways, by adding parentheses and just stating it. A third example of the mood in this memoir is the way @CAPS1 talked about the love for his family, and how important being thankful is. ""I have always told them that what they did was a much more courageous thing than I could have ever done."" Narciso also states @CAPS1 can't thank his parents enough, and if they taught him none of that @CAPS1 would not be who @CAPS1 is as a person today. ""I will never forget how my parents turned this simple house into a home."" Just adding the love and culture to one's house can turn it into a caring home!" 4 3 4 +12832 5 "Narciso was very grateful of his parents they had love, happiness, depression and maybe more. The author's memoir was sad, but also a loving memoir. ""In 1961, I was born into this simple house, within its walls, my young parents created our traditional Cuban home."" Narciso loved his parents for making a simple house into a traditional Cuban home. He also loved how his parents made their own home. ""My mother and father had to come to this country with such corage, they came selflessly as many immigrants do, to give their children a better life."" Narciso was so grateful he thank his parent every day that created love. ""It was this simple house that my parents celebrate my first birthday"". He kept the house as a memoir to remind himself of how he came to america. it was loving, caring, and also cheerful." 3 3 3 +12833 5 "The author of the story creates a mood to help really emphasize the point of his story. Narciso Rodriguez explains how his parents immigrated from Cuba to @LOCATION1 and try to find new jobs and start new lives. Rodriguez also explains how he learned to call his neighbors family as the Italian, Cuban, and Spanish cultures ""came together in great solidarity and friendship."" @CAPS1, he tells of how the door was always open and their newfound family was always a seated around the table. Rodriguez really does a fantastic job of creating a pleasant mood in this memoir." 2 2 2 +12834 5 "In this memoir written by fashion designer Narciso Rodriguez, there is a certain tone conveyed by his writing about his childhood home. Here is what is.Many people who immigrate from a poorer country like Cuba are quite poor when living here because like Narciso says in the bottom of paragraph @NUM1, ""In the United States, [my parents] had to start their lifes over entirely, taking what ever work they could find."" @CAPS1 of talking about the hardships, Narciso focused on the fact that he was raised into a wonderfly cultural enviorment. An enviorment filled with his ""family"". When he says family he doesn't meen just her biological family. He means all the people that he spends time with and has a deep connection with. Therefore, the mood that Narciso Rodriguez is conveying in this memoir is a warm, greatful, and happy tone. A tone that shows that he will never forget all the things his parents gave up so that he could have a good childhood. The tone also shows that now, even though he is a famous fashion designer and most likely is quite wealthy, he will never forget how his parents ""turned the simple house into a home."" This is what the tone of this memoir is." 3 3 3 +12835 5 "The mood of the author is happy. The mood is happy because they doesn't really mention any negative thoughts or feelings at all. He mentions throughout the story, how he is so grateful for his family, like his mom and dad. He talks about himself being cuban, and how proud he is to be Cuban. The narrator has a bunch of good thoughts, about his mother and father. He mentioned in the story ""I will alway be grateful to my parents for their love and sacrifice. He always tells his parents of how proud he is of them, and mentions how their basically an @CAPS1." 2 2 2 +12836 5 "The mood of the author in the memoir is that the author was there and lived there so, the mood was really so, the author was happy. Happy that the authors parents gave him a @CAPS1 and also gave them freedom to start over for there son." 1 1 1 +12837 5 "The mood in the memoir swifts throughout the story. First is that in the begin Narciso wasn't sure he would like moving to @LOCATION1 because it was so different. But that changed when they started having family over and also using there imagination to decorte there house. Next is that the mood change in the middle of the memoir when they rellized you can have just a good life in @LOCATION1 then you can anywhere else. Also, by them having there family with them while in @LOCATION1 made there moods more positive. Lastly the family's mood was negitive when having to move to @LOCATION1, but once they were there and made there house into a home there mood change immeditly and they were happy in @LOCATION2. Thats the mood created by the author in the memoir." 1 2 2 +12838 5 "In the memoir, Narciso Rodriguez creates a very specific mood. He talks about family, love, and home. For example, Narciso says that the heart of his home was the kitchen, and there was always passionate Cuban music playing. In his neighborhood, Narciso says that ""cultures came together"" and that his parents ""always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" I can tell how important friends and family are to Narciso and his family and how welcoming and caring they are. Narciso believes that his home was filled with ""not just scent and music, but life and love."" I believe the mood of his house was not only obvious to Narciso, but to his neighbors and family too." 2 3 3 +12839 5 "Narciso Rodriguez creates a very calm and grateful mood from beginning to end in his memior. First of all, he describes the selflessness of his parents. Narciso explains that ""they had to start their lives over entirely."" (@CAPS1 @NUM1) when they left Cuba for the United States. He understands that they only left for his benefit, and he appreciates that. Also, Narciso is thankful that although his parents moved to the United States, they kept their Cuban traditions. In Narciso's three room apartment, ""Passionate Cuban music... filled the air, mixing with the aromas of the kitchen"" (@CAPS1 @NUM2). Lastly, Narciso expresses his appreciation, and strengthens the mood by defining what a home is. He claims that he ""will never forget how [his] parents turned the simple house into a home"" (@CAPS1 @NUM3). For these, Narciso is grateful for, and his appreciation creates a calm, inviting, and grateful mood." 3 3 3 +12840 5 "The author created a warm, loving mood throughout the memoir. ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen. Here, the innocense of childhood, the congregation of family and friends,... formed the backdrop to life in our warm home."" (@CAPS1 @NUM1). This quote represents a warm mood because he talks about what he loves, such as Cuban music, and how friendship and family really come together to form his life growing up. ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people who while not necessarily their own kind, were clearly in need."" This quote clearly represents a loving mood throughout the memoir because, like the first quote, it represents friendship and family. but also represents love and caring between all members of his childhood community, showing the reader that the community cares for each other, and they are all loving of each other. The mood changed near the end as well. It turned into totally love and warmth, but also happiness. ""It was a simple house that my parents welcomed other refugees to celebrate their arrival"" (@CAPS1 @NUM2) this shows happiness because even though they are poor when they arrive in @LOCATION1, they are still celebrating the possibilities that are facing them." 4 4 4 +12841 5 "In the memoir, by Narciso Rodriguez, a distinct mood of family and caring is set. The first way this mood is set is by the the passionate Cuban music and the home cooked meals. Rodriguez writes, ""passionate Cuban music filled the air, mixing with the aromas of the kitchen."" (p. @NUM1). This quote exentuates the mood of family because the music and food of thier nationality gives a feeling of comfort. The comfort with you family and to the mood of family. Another way the mood of family is portrayed is the size of the house. Rodriguez writes,""... I was born in this simple house situated in a two family, blonde-brick building..."" (p. @NUM2). This adds to the mood of family because living in a small house means that a lot of the time will be spent with family. This also adds a cozy feel to the environment. Finaly, the mood of family is contributed to by how close their family lives. Rodriguez writes, ""My aunts Bertha and Juanita and my cousins Arnold, Maria and Rosemary also live nearby"" (p. @NUM2). Family living nearby contributes to the mood of family because it exentuntes the number of family members which exentuates the mood of family. Based on the memoir by Narciso Rodriguez, a strong mood of family is expressed." 3 4 4 +12842 5 "The mood created by the author in the memoir is happy. It is happy because she said growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being blood relative. This is saying that she is happy for what she has in her life. She is saying that she has a nice family, friends, and a good home" 1 1 1 +12843 5 "The author of this memoir creates a very calm mood. This article isn't anywhat exciting at all. All it is doing is explaining this child's life. This memoir, to me, was like taking a list of things and putting them into a full paper. The author did not create any kind of mood that interested me to keep reading of this topic. This memoir did however express a lot of feelings though. It expressed how grateful this kid was for his parents and his Cuban descent. Although this memoir had a calm (and slightly boring) mood, the author's ability to reveal information was very deep and insightful." 1 2 2 +12844 5 "one mood of this memoir was that of a traditional Cuban home. In the memoir, paragraph @NUM1, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary Skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban Music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" A second mood of this memoir was the impression of a Cuban family who faced my hardships. In the memoir, paragraph @NUM2 ""They Struggled both personally and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardships."" The last mood gives me the impression of what a real family is about: love, loyalty and friendship. In the memoir, paragraph @NUM3 ""It was here where I learned the real definition of ""family"". And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home." 3 3 3 +12845 5 The mood by the author in the memoir is touching because i feel like memory story. This story is telling yu how to be memorized about the story and it makes u cry a little bit. I kind the like it a little bit because its about cuban peoples. I think my father knows People from cuban and I think he knows their culture. 0 1 0 +12846 5 "The mood of the @CAPS1 is happy. In the memior, Narciso Rodriguez describes the happy and fun times of living in her small home in New Jersey. He describes how his family, which consisted of her mother and father turned their @CAPS2 house into a cuban home and opened the doors to other refugees that were going through difficult times. In the last @CAPS4 Narciso explains that this is the home where all her first birthdays happened, and where her friends and family would gather. The message the @CAPS1 was trying to get across is that it doesn't matter how big or expensive a home is, it matters who is in the home that makes it a special place to be. The reason I know the @CAPS3 mood was happy is because, she had wonderful people in her life. Her home wasn't big and fancy but as described in @CAPS4 @NUM1 ""It was a simple house that my parents opened to other refugees."" In this @CAPS5 he is saying that his home was full of happiness and love. Narciso's once simple house had turned into a home, filled with friends and family." 3 3 3 +12847 5 "In the memoir I think the mood the author creates is love for family. In paragraph @ORGANIZATION1 explains that family has nothing to do with being a ""blood"" relative. He means that you don't have to be related to someone to consider them family. In paragraph @NUM1, Narciso says that so many extended family members come in and out of his house all the time and they are always treated lovingly. I think that the fact that Rodriguez's parents brought in so many people to their home is inspiring because it really does show the love and warmth the family has to bring in refugees from places other than america, plus their family!" 2 3 3 +12848 5 "In the memoir, the mood created @CAPS1 Narciso Rodriguez is welcoming and cheerful. One example that describes this is from paragraph @NUM1. This is where he described his neighborhood, saying ""In our neighberhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" @CAPS1 this he meant that no matter what background their neighbors were from, they always welcomed each other. Also, in paragraph @NUM2, the author says that his parents came to @LOCATION1 selflessly, to let their child have a better life even though they were leaving their home country. Lastly, in paragraph @NUM3, Rodriguez describes the warm memorice of his home, where he had birthdays, parties, and family. He said that there was the scent of life and love in the air. For this he is forever grateful to his parents because he learned the true meaning of ""family.""" 3 3 3 +12849 5 "The mood of the memoir is nostalgic and happiness. He tells the readers about his econimic backgrounds. He also explains about his family and what they meant to him. then, he talks about his house and about how he had he had his birthday there. Those are some examples on how they create the mood." 1 2 2 +12850 5 "The mood created by the author in the memoir is that he is proud of his family, their background, and the way he grew up. In the memoir, it says, ""I will always be grateful to my parents for their love and sacrifice."" Narciso loves his parents and the way they raised him." 1 2 2 +12851 5 "The mood in this story is very happy. In this answer I will show how he created it.Firstly, the author always had a good mood no matter what happened or what his parents didn't do. He had great memories of the kitchen smelling good. He also loved his Cuban music.Secondly, he showed how thankful he was towards his family for bringing him into this world and caring for them.These two things show how Narciso Rodriguez made this a happy passage to read." 3 2 3 +12852 5 "The author of this memoir created many moods. One mood that was felt is happiness because of the way Narciso Rodriguez described his home to be a place of childhood innocence, family, friends, and endless celebrations. Another mood is gratitude for I have never given up my friends, family, and home and Narciso Rodriguez's parents had to give up their friends, family, and home in Cuba to support Narciso. The last mood is admiration at the fact the Narciso Rodriguez and his friends and family could feel so happy even though racism and segregation were a part of the @PERSON2, along with the fact that they were going through financial trouble. In this memoir, Narciso Rodriguez made the readers feel many moods while telling his insperational story." 3 3 3 +12853 5 I think the mood in this storie was mostly happy and grateful. Because he loved living there with his parents and having family members around and being able to learn about his heritage. And learn about all the cooking. He seems to have had a very nice childhood and has always thanked his parents for that. they gave up everything to go to america to raise him and he seens very grateful. 1 2 2 +12854 5 "In this memoir by Narciso Rodriguez, she uses key terms and phrases to discuss the mood in paragraph @NUM1 she says, ""Cuban music filled the air, mixing with the aromas of the kitchen."" This line puts a clear picture in your head of what it would be like to have lived in that home. Another time Narciso Rodriguez puts a clear picture of the setting in your head is in paragraph @NUM2. She is stating where her parents must live and says, ""braving the harsh northern winters while yearning for their native tropics."" This line puts the setting in my mind which makes it more clear to picture the home and setting. Narciso does a great job describing the mood of each location." 2 0 1 +12855 5 "The mood created by the author in the memoir is that of gratefulness and happiness. The memoir show a pasionate explination of how Narciso Rodriguez's parents Came to the land of @LOCATION1. It shows how happy he is that he can live in @LOCATION1, and lead his own life. He is, and will always be, eternally grateful that his parents brought him here, so he could have a better life. His gratefulness also affects how his parents raised him, as a Cuban. Any mood could have been described here, but, as it states in the memoir, he is grateful for his family." 3 2 3 +12856 5 "In this excerpt ""Narciso Rodriguez"" by Narciso Rodriguez the author uses a large array of vocabulary and creates his sentences in such a way that one can easily register the author's mood of love, happiness, and appreciation of his home and community. ""For instance when he described the harmony and friendship within his neighborhood despite nationality, which was quite contradictory to the times ""In our neighborhood... all of these culture came together in Solidarity and friendship"". His word choice and constant repitition of words such as love, grateful, & self-less reinforce this image/atmosphere of love "" They came selflessly, as many immigrants do, to give their children a better life"". ""I will always be grateful to my parents for their love and sacrifice. ""@CAPS1, the author's thoughtfully crafted and retrospective composition especially how vividly he describes it as a place so near & dear to him gives room to the mood of underlying gratitude & love." 4 3 4 +12857 5 "In the memoir ""Narciso Rodriguez"" from home: the blueprints of our lives. The mood created by the memoir are described in many ways. To start of with, ""growing up in this environment instilled in me a great sense that FAMILY had nothing to do with being a blood relative."" Quite the contrary, his neighborhood was made up mostly Spanish, Cuban, and Italian immigrants at a time when overt racism was the norm and segregation prevailed in the @LOCATION1 @CAPS1, @CAPS2 will always be grateful to his parents for their love and sacrifice. @CAPS2've often told them that they did was a much more courageous thing than @CAPS2 could have ever done. Finally, It was here where @CAPS2 learned the real definition of ""family"". @CAPS2 will never forget his house and his gracious neighborhood and @CAPS2 will never forget how his parent turned this simple house to a home. In the memoir ""Narciso Rodriguez"", from home: the blueprints of our lives. The mood created by the memoir where discribe in these ways." 2 2 2 +12858 5 "In this article I am given information about this main character's life and his caring parents.The author's mood in this article is grateful, happy, and amazed. The author is so grateful that his parents would do such a brave, corageous thing for him. It makes him amazed that his parents would do that for him to live a great, happy life.The author will never be able to show all of his appretiation towards his parents, for they did a great thing for him. That is what this article is about, and the author's mood." 2 2 2 +12859 5 "In the story Narciso Rodriguez the person telling the story is @CAPS1 grateful to to parents for moving so thay could have a better life. The people that were around them were like their Family evan though thay went blood @CAPS2. The Parents wernt selfish, and thay helped if people need help and let people stay if thay needed a place to stay. The parents moved to make a better life for their Family evan iF it ment Leaving every thing behind." 3 2 3 +12860 5 "The mood created by the author in the memoir is caring, and loving. The author explains, throughout the memoir, how his Parents were caring and loved to help others. He says that his parents ""always kept their arms and their doors open to the many people we considered family"". He explains how his parents had left their great jobs, friends, and family in cuba, so that their children would have a better life. The author says that his parents helped him discover the real meaning of family." 2 2 2 +12861 5 "So the mood of this memoir is @CAPS1, Struggle or not so good and @CAPS2. In the @CAPS3 it telling you all about His parent and alot more about His parent's. Next is talk about Being born in a simple house and that way @CAPS1 mood there to. So @CAPS4 the end of the memoire @CAPS5 startes to talk about the @CAPS6 things like not Be able to find the kind or jod they deserved and that not that much @CAPS6 thing @CAPS5 talk But But in the end @CAPS5 @CAPS10 the definition of @CAPS11 and that mood is alsome. Then @CAPS5 learne there about love in the simple house and to never forgot how my Parents turned the simple house to a home. So the mood is a mix of @CAPS1, @CAPS6 time's and the alsomeness and more." 2 2 2 +12862 5 "The mood created by the author in the memoir is that they feel more responcible to help support themself more than anyone else dose as growing up From the young to older, and have been living off their own from being away from your families. I think the mood of the auther is that they feel good about themself and happy to have a better life from the past until now and learn more about themself as they're mood becomes happy and joyful about themself for ""having a better life."" " 1 2 2 +12863 5 "In Narciso Rodriguez's memoir, Narciso Rodriguez from Home: the Blueprints of Our Lives, the mood created by the author is appreciative. Narciso Rodriguez is deeply thankful of his parents and other friends and family for helping him through his life.Narciso Rodriguez repeats several times throughout the memoir the appreciation he has for his parents, family, and friends. In paragraph @NUM1, it quotes, ""My mother and father had come to this country with such courage... They came selflessly..."" This describes how he respects his parents so much for their sacrifice. Paragraph @NUM2 states, ""I will always be grateful to my parents for their love and sacrifice... There is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age."" In this quote, Narciso Rodriguez thanks his parents for loving him and their sacrifice. Then, he gives appreciation to the caringness he had during his childhood, which includes his neighbors, friends, and family. Narciso Rodriguez is appreciative of his family, especially his parents, for the generosity for the betterness of his life.In the memoir, Narciso Rodriguez from Home: The Blueprints of Our Lives, by Narciso Rodriguez, the mood created by the author is gratitude and appreciation for his parents generosity, care, selflessness, and sacrifice." 3 4 4 +12864 5 "The mood the author created in the memoir was happy and joyful. The author explains were he lived as a child very vividly. from the air mixed with the aromas of cuban food to to cuban music the author still loves today. It seems like he had a good childhood. He says his parent were selfless and took in refugees in their home. It gives this story a warm feel like it could almost be your mom or dad. He make the story very personal with all the family members he explains. His parent, did the very best they could for their family. That is how the mood is set." 2 2 2 +12865 5 "In the memoir what was the mood created by the author.First, I feel that the mood created by the author is both happy and sad. I feel that they are sad because they moved from Cuba to @LOCATION1 where they left all of their friends and family and careers they loved behind. They also struggled both personaly and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardships. Although they were sad I also felt that they were happy. I thought this because even though they moved from the place they loved they have one thing that made them feel at home. I think that it was there home and each other because they have there home Just as they like like, like when they were back home. I felt that the mood was both happy and sad in this memoir." 2 3 3 +12866 5 "I think the mood created by Narciso Rodriguez in his memoir is that he is proud and grateful. One way he shows he is grateful is by telling the readers how his parents sacrificed themselves to give him a better life. He says: ""I will always be grateful to my parents for their love and sacrifice."" Which shows that in addition to being grateful to them for sacrificing themselves, he is grateful for all the love and care they gave to him as he grew up. Narciso Rodriguez shows he is proud by saying ""my Mother and father had come to this country with such courage I've often told them that what they did was a much more courageous thing then I could have ever done"". This shows Narciso Rodriguez is proud to have parents that are strong and brave and willing to leave ""behind their families, friends, and careers, and the country they loved"" all for him. So I hope you now see how Narciso Rodriguez's memoir creates a mood that reflects how he is proud of and grateful to his parents." 4 2 3 +12867 5 "The mood that was crea ted by the author was love, and inspiration The mood was love because throughout the whole story he told his parents that he loved them and was proud of them. he feels proud of them because of all they do for him and the family. So he is proud of them. he is also greatful to have parents like this because they do so much for him they cook, clean, and keep a roof over his head and keep him protected. The other mood that is created for me is inspiration this mood is created because of what he says ""I've often told them of my admiration for their strength and perservirence. this means that he is proud of his parents and he is thankful for what they do for him, he says tha he is thankful for all they have sacrificed. These are some examples of the mood that was created." 3 3 3 +12868 5 The mood created by the author is love and @CAPS1. Because the author talks about how growing up was. The author helps babysitting. And the author sounds like a nice person. thats what the author's mood is. 1 1 1 +12869 5 "In the memoir, ""Home: The Blueprints of Our Lives"" by Narciso Rodriguez, There are various different moods. The main mood is thankful. In the memoir, Narciso Rodriguez expresses a thankfull mood. In paragraph @NUM1, there is an example of this thankfullness: ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" (Rodriguez, paragraph @NUM1). This proves how Narciso acknowledges the sacrifice of his parents, and thanks them for it. In paragraph @NUM3, Narciso states that, ""I will always be greatful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing that I could have ever done."" (paragraph @NUM3). This proves how Narciso Rodriguez thanks his parents for what they did for him. In conclusion, in the memoir, Narciso Rodriguez creates a thank ful mood." 3 3 3 +12870 5 "the first paragraph was kind happy because they came to the @CAPS1.S.A and that after living for a year was happy. I 1961 he was born they were living in the Simple house, situated in two family blond-bricks building in the Ironbound section of, @LOCATION1 was onhappy because they parents shares same kitchens." 1 1 1 +12871 5 "The mood created by the author in the memoir is a happy mood, that's sort of calming. The author explains how the house was very comfortable for him. Narsico explains how his parents were caring and selfless all the time. I think that creates a very calming are caring mood. Also in paragraph @NUM1 it says ""I will always be grateful to my parents for their love and sacrifice"" which again creates a caring mood." 2 2 2 +12872 5 "The mood the author creeted is gratefulness. @CAPS1 is grateful for many things @CAPS1's grateful for culinary skills and love of cooking that was passed on from her parents. @CAPS1 is grateful of her close-knit community, who are honest hard working immigrants who always extend a helping hand. But the big reason @CAPS1 is grateful is @CAPS2 her family. @CAPS1 is grateful for her countless family & extended family who joine them for meals and who stay with them temporarily. @CAPS1 is also mostly grateful for her parents. @CAPS1 is grateful that her parents are @CAPS3 nice and always keep there arms & door open for help knowing they'll do the same. @CAPS1 is also majorly grateful for their courage to come to a new world without knowing any of the language or culture just to give their children a better life. @CAPS1 is grateful her parents had to make a huge sacrifice just for her benefit to leave behind there friends, family & careers in the country they love. @CAPS1 is also grateful for both the personally & financial struggle her parents had to go through and braving the harsh northern winters. For her culinary, love of food, family, and parent sacrifices @CAPS1 will be forever grateful." 3 2 3 +12873 5 "This memoir really sets of mood of love and comfort. It does this when he tells us that his parents immigrated just for him. Than it keeps that mood going when he tells us about all the people that come over regularly for dinner. His parents loved him and made a great inviorment for him like he said, they ""made a house a home""" 1 2 2 +12874 5 "In the memoir of Narciso Rodriguez the mood created by the author was powerful. It had made one feel as though you were accualy there. The author had explained in detail his living enviornment of a small house in a community of other immigreants like them selvs who had band to geather in rough times. During the memoir the author tells about his cuban background, ""Passionate Cuban Music filled the air, mixing with the aromas of the kitchen."" @CAPS1 also tells about @CAPS1's deffinition of family. the ones in his community that wernt just blood related but the neighbors who looked after each other. The author sets the mood of love for his culture and his family within their community. and how his simple three room apartment has become a home." 3 3 3 +12875 5 "Throughout the memoir Narciso Rodriguez the author creates many different moods. As a ready I got a large variaty of moods from the author. Such as sorrow for the family and what they went through, pitty for the children and how they watched their parents struggle for them, yet at the same time they benefited from watching because it made them stronger. Though throughout the memoir, among all the of the other moods that are potraid, there is the mood of eternal gratefulness. The fact that the parents went through so much just for their kids to have a better times and a promising future is beyond the relm of words. Words do not exist that can describe how amazing those parents are to do what they did. This is the mood, and moods, that are potraid in this memoir." 0 2 2 +12876 5 "The mood in the memoir ""Narciso Rodriguez"" is that of a happy mood. The memoir is about a cuban family who want to live in america to give their son a better life. Their parents gave up their jobs of being scientists for their son. The story is in a good because their is true love being spread. Narciso Rodriguez lived in a happy mood." 1 1 1 +12877 5 "The mood of this story was a happy and a reflective one. Many times during the story, especially in paragraph @NUM1, he told us what his parents did, but also after almost every sentence in parentheses he would say how much it meain to him. For example, he says how his parents cooked, and after that: (and for which I am eternally grateful). This shows how much he loved his parents for passing on their culinary skillsIn one paragraph, he starts off the sentence with: ""I will always be grateful to my parents for their love and sacrifice."" This again shows the mood of greatfullness, happiness, and reflectiveness from the story." 2 2 2 +12878 5 "The mood that the author created throughout the course of the memoir was a sense of happiness but also family. This family moved from Cuba to @LOCATION1 with no clue what to expect, no prior knowledge of the culture or anything else. All they had was eachother which gives off a great sense of family. Then there is the happiness factor, throughout the story no matter what the sircumstances they seem to be happy because they had family. In the story it says that ""my parents turned this simple house into a home."" This lets me know that he does view his house as a home and that means he is happy." 2 3 3 +12879 5 "The mood in the memoir changes. But overall the mood is sad. It tells how Narciso's parents give up what they had for the better of their children. ""They came selflessly, as many immigrants do, to give their Children a better life, even though it meant leaving behind their families, friends, and careers in the country they love."" Also, most of Narciso's family did not have homes for a while which is sad because they do not have a place to call home."" Countless extended family members came and went-and there was often someone staying with us temporarily until they were able to get back on their feet."" Narciso's parents gave up everything for him to have a better life. They left the place they were most @CAPS1 in for him. ""The faith that is struggle would lead them and their children to better times drove them to endure these hard times.""" 2 3 3 +12880 5 There in family cubana to father come to 1956 for good future for you family @CAPS1 have one apatarme of two room who @CAPS1 have two son in @CAPS3 A bay or boy @CAPS1 twinty one And @CAPS3 twinty seven 0 0 0 +12881 5 "In the memoir the author creates a mood that is calm and comfortable. For example, in paragraph @NUM1 he says ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen"" that shows that his house is without no yelling or fighting. Also, in paragraph @NUM1 he says ""the congregation of family and friends, and endless celebrations that encompassed both, formed backdrop to life in our warm home"" that shows while he grew up his home was comfortable for him. In paragraph @NUM3 it says ""the kitchen in this humble house where a @LOCATION1 feast always filled the air but life and love that showing that his family was calm and loved each other. The author says in paragraph @NUM3 ""I will never forget how my parents turned the simple house into a home"" that shows he was comfortable growing up in his house even though he didn't have lots of things. In conclusion, the author creats a mood for the memoir." 4 4 4 +12882 5 "In this memoir the author creates a mood which- for me, sucked me into this memoir. I think Narciso Rodriguez created a ""home sweet home"" mood. I say this because when he says, ""within it walls, my young parents created our tradition cuban home, the very heart of which was the kitchen."" it reminds me of my family and how my family loves cooking puerto @CAPS1 food. The smell is like, ""your home"". In my home everyone's execpted and even if you're not realated. Narciso also says this in his memoir. also.Narciso is very grateful in his memoir because his parents immigrated to have a better life. this creates a loving and family mood. Narciso says, ""I will never forget that house or its gracious neighborhood or the many thing I learned there about how to love. I will never forget how my parents turned this simple house into a home. Now that they've immigrated Narciso Rodriguez will never forget his childhood home. There are many moods in this memoir." 3 2 3 +12883 5 "In the memoir ""Narciso Rodriguez"" the mood is kind of happy, sad and is greatful. Narciso is very happy because he usually gets to spend time with ""family"" and is also very happy that his family hes with him and that more family will come from cuba in a few years. He is sad because he cant see his grandfather and because his parents didn't get to live such a great life as him. He is greatful for being alive for his parents doing everything for him bringing him to @LOCATION1 and he's greatful because he got to live such a great life because of his parents. That was the mood of the memoir." 2 1 2 +12884 5 "The mood the author Narciso Rodriguez, creates in this memoir is a very apreciative and thankful tone. In this memoir is expressing how thankful he is for his parents moving to @LOCATION1 to give him a better life. He shows apreciation to them for their selfless and brave deeds. At one point in this memoir he says to his parents that what they did was a much more courageous thing the he could have ever done. He tells his parents this to let them know how brave he thinks they are." 2 2 2 +12885 5 "His mood was happiness. Being with his family, sharing, being gathered with your family, having great times with your family members, taking chances with your family, explore the world, never be afraid to go somewhere new, express your feelings to each other, always be there for each other, being yourself, don't change and take risks to a different state. Don't be afraid to share with one another and always be there for one another and always be yourself, express yourself how you want to be and don't change for anybody," 1 1 1 +12886 5 "The mood created by the author, in my opinion, is a happy mood. It is happy because the author gives the reader a great explanation and description of his life at home. The author created a happy mood also because it showed that his parents were not selfish and that they wanted their children to have a better life in the United States. They had left their whole family behind. Also, Narciso talks about how he and the rest of the immigrants had to deal with racism. But, they were still happy and determined to be, so they all work together happily and in unity. I think it shows that the author not only had family in a nice house, but in the neighborhood as well. The story gave me a sense of a really good, close-knit family. Including the importance of one." 2 2 2 +12887 5 "The mood created by the author in the memoir is pride. I think that the mood created by the author is pride because in paragraph two it says ""...culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" I think it's an example of pride because it says ""for which I am eternally grateful."" showing that will always be proud of Cuban food. Another reason why I think the mood is pride is in paragraph @NUM1 it says ""Passionate Cuban music (which I adore to this day)..."" I also think that is an example of pride because it shows that he was raised with Cuban music and he still loves to listen to it." 2 2 2 +12888 5 "The mood in the memoir is very uplifting. The story is mostly about how much the author appreciates his family and what his parents have done for him. It also shows how happy the family was and how everyone around them were family iregardless of where they immigrated from. In paragraph @NUM1 he says ""Family had nothing to do with being a blood relative""." 2 2 2 +12889 5 "The author created several different moods in this memoir. The main mood that the author was trying to creat was thankfulness. In paragraph @NUM1 it says,"" I will always be grateful to my parents for their love and sacrifice."" This shows thankfulness because she's saying thank you to her parents and everything they have done for her. Also, she is thankful because she started to realize how hard her mom and dad had to work for the house and put food on the table. The main mood of the story is clearly thankfulness." 2 2 2 +12890 5 "The mood created by the author in the memoir is love and appreciation. Narciso appreciated all that his parents did for him. They gave up a home in Cuba for him, their job and even happiness. Love because they all loved each other alot family meant alot to the family. they said family is people who care for one another even if they are not blood related. it doesnt matter. It's about Love and careness." 2 2 2 +12891 5 "The mood created by the author in the memoir is nostalgic, warm, and thankful. In the memoir the author explains the importance of family, recounts his experiences with family, and thanks his family for all the important life lesson they have taught him. In paragraph two the author says: ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This excerpt conveys a feeling of nostalgia and warmth as the author praises his childhood home. In paragraph three the author says: ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" This sentence also makes the reader feel nostalgic and warm because the author really gives the reader a sense of his childhood community's unity and love. In paragraph five the author says: ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture."" In this sentence the author really conveys his @CAPS1 of thanks of his parents to the reader as he praises them. In paragraph six the author says: ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important Family and Friends are."" And later in paragraph seven: ""It was here where I learned the real definition of 'Family'. And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" These excerpts really sum up the author's @CAPS1 about family. They explained to the reader how really important Family is and how thankful the author is for his family and all the life lessons they have taught him. These excerpts really convey the @CAPS1 of nostalgia, warmth, and thankfulness to the reader." 4 4 4 +12892 5 "The mood created by the author in the memoir. First, the mood created by the author is that he love to cook, his parents taugh him how and her is eternally gratefull for his parents. Second, his mother and father ""had come to @LOCATION1 with such courage, without any knowledge of the language or the culture. they came to give a better life to Narciso @PERSON1, leaving behind their country they loved.""third, he parents had a simple house. They always filled the air with not just scent and music but life and love.In summary, this are the mood created by the author." 2 3 3 +12893 5 "Narciso Rodriguez wrote fondly about his memories of growing up in Newark, New Jersey. He creates a mood of bliss through his loving and grateful tone. Narciso describes his neighborhood as ""of honest, hardworking immigrants."" ""Growing up in this environment gave me a sense of family' that had nothing to do with being a blood relative."" A picture of kind, smiling faces is painted by this description of a tightly-knit, ever-willing to hep group of people. Rodriguez tells of his parents' creation of a beautiful home from just a house. ""My parents kept their arms and their door open to the many people we considered family."" Narciso's words captivate the reader with a scene of relaxed happiness, generosity, and love. He is clearly grateful for his enviable childhood, and cares dearly for his selfless parents. The peice he wrote has a loose bliss, like eating a delicious truffle." 3 2 3 +12894 5 "The mood in the memoir ""Narciso Rodriguez"" he demenstrates a mood of love. @ORGANIZATION1 shows his love by telling his parents. In the @NUM1 paragraph he says ""I've often told them of my admiration for their strength and perseverance."" Here he shows his compassion for his parents because his parents left cuba and went to @LOCATION1 to start a new life. Also, they wanted a better education for their children so they left family, friends, everything behind so they could restart their life. Another way how Narciso shows love to his parent is by using what his parents did to him into his life. Narciso used the better education, to have a better life. Now he is a fashion designer. Therefore, in the memoir ""Narciso Rodriguez"", he shows a mood of love in the memoir." 2 2 2 +12895 5 "In this memoir Narciso Rodriguez, The mood the author created was loved, because he showed that his parents gave up what they had from Cuba to come to @LOCATION1 for a better for their children. For example his @CAPS1 worked in a labortory in cuba, and his mom was studying chemical @CAPS2 and they left that to live in Newark, @ORGANIZATION1. And the author discribed how he grew up in a triditional Cuban home and how you could smell the aroma of food, and Passionate Cuban music filled the air. And how he lived in a neighborhood of Spanish, @CAPS3, and Italian Immigrants. And he also discribed how his family always kept their doors open for people who were considered family." 2 2 2 +12896 5 "In the memoir by Narciso Rodriguez, he creates a certain mood. The mood created is love. In paragraph @NUM1 the mood is really shown because Narciso talks about how his family cooked with him, listened to music, and family-friends attends celebrations with him. ""family and friends, and endless celebrations."" This quote shows how he was given love by his family and friends through these celebrations. In the last sentence of the memoir Narciso fills the reader up with love. ""I will never forget how my parents turned this simple house into a home."" This last quote shows the love given to Narciso. This shows the mood is all about love." 2 2 2 +12897 5 The mood created by the author in the memoir. The mood that the author was happiness. When example of happiness was that his parents passed on their culinary skills and a love of cooking. Another example of happiness was that aromas from the kitchen mixed with Cuban music filled the air. The last example was that he grateful for his parents sacrifice and love. 2 2 2 +12898 5 "The mood created by the author in the memoir was happy and grateful. @PERSON1 is grateful that his parents moved to @LOCATION2 to give him a good life. @PERSON1 says that his parents were brave before beginning a new life in the United States and how he wont ever forget how his parents turned the simple house into a home filled with things from their culture. Finally, it shows that the mood is happy and grateful because it says that he will always be grateful to his parents for their love and sacrifice. So, the mood created by the author was happy and grateful." 2 2 2 +12899 5 "In the memoir; ""@PERSON1"" from ""Home: The Blueprints of our lives, the mood is both happy and sad. This is portrayed happy when he talks about his heritage of being Cuban and having the advantage of being born in @LOCATION1. He also is sad though when he talks about how he left his family in cuba to be born in @LOCATION1. He likes that his family lives close by in 1970 when his family was allowed to in Cuba for @LOCATION1. He also is very grateful for his parents sacrifice to give @CAPS1 the life he has. Allthough liking his neighbrhds he is depresed to be born to a time of racism and segragation like most immagrants faced. This is what the mood was in the memoir of @PERSON1 was portrayed as." 2 1 2 +12900 5 "The mood created by the author in the memoir was very thankful. Narciso was very thank ful for everything about his life. Narciso said ""I will always be grateful for their love and sacrafice."" That stood out to me because he really cared and was thankful for his parents. The mood created by the author in the memoir was very thankful." 1 2 2 +12901 5 Narciso Rodriguez was very grateful for what he had. His parent were important to him they came to @LOCATION1 to give him and the other children in his family a better life. Narciso Rodriguez family was everything to him 1 1 1 +12902 5 He was happy to be educated like he is and he was happy to be Cuban and even though his parents didn't have much he was still proud of his family because is not where you live or in what conditions is. If you are from an honest family and if they're with you in the hard moments. 1 1 1 +12903 5 "The mood created in this memoir by Narciso Rodriguez is a grateful, cheery tone. As Narciso talks about his parents' Cuban background and tradition, by his tone you can tell how proud and happy he is in his heritage. Also, as in paragraphs @NUM1 and @NUM2, he talks very highly of his parents, how they made their house a home, and how grateful he is to have them as parents. The mood makes me think of the color yellow, and of the sun, happiness and warmth. Narciso Rodriguez did a great job setting this cheery mood in his memoir." 2 2 2 +12904 5 "In my opinon I felt like his culture ment a lot to him and I felt that her house and family and friends was all important to him. In the frist paragraph he describes his family, where they lived where they came from, how old was they and it made me think about my culture and family. In the second paragraph it tells what year she was born in and how his house was and I wanted to describe my old house the only house with more memories then I could think of. His neighborhood is a close tight community with honest hard working immigrants. It made me think about how all are community could be if we was hard working. In my opinon her memories made my memories come back." 1 1 1 +12905 5 "In the memoir @ORGANIZATION1 the mood created @ORGANIZATION1 the author in the memoir. The mood was like excited because Narciso Rodriguez is man that we can tell that he is a man that apreciate what his family did for him. Because in the memoir say that he felt graceful and happy about his culture. He is from cuba, his family are so friendship. His family teach him lots of stuff that why now is have been the basis of his life. His friend have inportant friends. Now in this memoir he express all and also how proud he felt about his family. And his admiration about his family is awsome. he learned with his family how to love others and how to respect. In the memoir he say that he would never forget how his parent turned his simple house into a home. This is how the mood created @ORGANIZATION1 the author in the memoir." 3 3 3 +12906 5 The author that wrote this put this in a sad or good memeries. 0 0 0 +12907 5 "I think the mood the author set is loving. The story says how there was a love for cooking and a passion for Cuban music. Just how endless celebrations brought life in there warm home. Narciso Rodriguez also had a great sense that ""family"" had nothing to do with being a blood relative. ""In our neighborhood despite customs elsewhere, although these cultures came together in great solidarity and friendship."" How there parents always had their arms and door open to many people knowing they would do the same for them. ""I will always be grateful to my parents for their love and sacrifice."" ""I will never forget how my parents turned a simple house into a home."" The mood @PERSON2 set for this story is loving." 3 2 3 +12908 5 "In the memoir Narciso Rodriguez had created a very warm and loved mood. He explained a little about his parents when the first came here to @LOCATION1. Narciso also tells us that in 1961 his home was a traditional cuban home. He explains his parents culinary skills, and how he was grateful to have gotten them. Also how there was always music that was like an endless celebration. His parents ""always kept their arms and their doors open"" (@NUM1) to many of whom they considered family. They had know that if they needed help they would do the same. Later in the memoir Narciso gets to a personal feelings of grateitude, and love. He explains how his parents wanted a better life for their family, even though it meant leaveing so much behind. Their families, friends, and jobs in the country they loved. It takes great bravery. Narciso understands this and expresses it freely." 3 3 3 +12909 5 "This memoir ""Narciso Rodriguez"" creates a mood that shows Narciso Rodriguez is happy, proud of his parents, and the memoir creates a mood of unity. First, the memoir creates a happy mood. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home (paragraph @NUM1). Rodriguez is happy that at his home his families, friends, and celebrations helped form usual life in his house. He is happy is parents worked so hard to get him to New Jersey. Rodriguez is happy about how welcoming his parents were to people who needed help, and how during segregation, his family and friends stayed together. ""Narciso Rodriguez,"" had an incredibly happy mood. Next, the memoirs mood shows that Rodriguez is obviously proud of his hardworking parents. ""My mother and father had come to this country with such courage, without any knowledge of the language or culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved"" (paragraph @NUM2). Narciso Rodriguez is so proud of his parents giving up so many things for him. They gave up their families, friends, country, and careers all for their son, so he could live a better life in the @LOCATION2. They basically had to start over this pursuit to get good careers. Finally, the mood in ""Narciso Rodriguez"" brings about a sense of unity. ""Growing up in this environment inspired in me a great sense that ""family"" had nothing to do with being a blood relative"" (paragraph @NUM3) In Rodriguez's family, they took in people who need help, who aren't in their family. During a time of segregation, this neighbors, families, and friends stayed united. In ""Narciso Rodriguez, The mood created shows that Rodriguez is happy, proud of his parents, an the memoir shows a sense of unity." 4 4 4 +12910 5 "The mood in ""Narciso Rodriguez"" from Home: The @CAPS1 prints of Our Lives is grateful. This is shown by how Narciso explains in detail the major chronologically ordered events his life. Narciso also includs little sentences in parentheses explaining what he had just said or telling how grateful he was for it. This happens for example when Narciso states: ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" This shows how he is greatful his parents taught him how to cook, which he still does today. Narciso also shows his gratefullness by making it abundantly clear how gratefull he was to have parents that taught and did so much for him. In this memoir, Narciso Rodriguez created gratefullness as the overall mood in his piece. the did this by showing how thankful he was to have parents who taught and did so much for him." 3 2 3 +12911 5 "In the memoir ""Narciso Rodriguez"" from Home: Blueprints of our lives, the speaker shows many moods. The moods of gratefulness and happiness from his life.The speaker is very grateful through out the whole memoir. But the speaker is most grateful for his family and oppertunity to come to @LOCATION1. It says, ""'I will always be grateful to my parents for their love and sacrifice.'"" This shows that he is very grateful because he's saying that if his parents were not willing to sacrifice things he would not have been able to go to @LOCATION1 for a better life. He also tell us that his parents left their friends, family, jobs and homes to come to @LOCATION1 for a better life for their children.The speaker also shows happiness. He says, ""'countless extended family members came and went.'"" This shows he was surronded by people he loved and that made him happy. It also said that they would help people out, spend time with the comunity and have people for dinner all the time. This also shows he was happy because he was spending time with so many family members and friends. These are example of the moods that author created in the memoir." 4 3 4 +12912 5 The mood created by the author in the memoir is very grateful and happy. The memoir explains how proud the author was of their parents. They did so much for the author. The most important thing was bringing family and strong relationships into the house making it an actual home. 2 2 2 +12913 5 "In ""Narciso Rodriguez from ""Home: The Blueprints of Our Lives"" there is a proud, happy mood. This memoir is all about heritage and the home. When he talks about his heritage he speaks about his food, home, and music that gives the reader a sense of pride. This is also a happy sort of memoir because it talks about the unity of the neighborhood despite the fact that they are all from different parts of the world," 2 1 2 +12914 5 The mood created by the author memoir was upset to have to leave cuba but happy to be somewhere better. To have to leave memeries and friends and family is upsetting. Also its better because now their lives will get better. Everything they had befor they will soon have here. The mood created was upset but happy and excited. 1 1 1 +12915 5 "In the memior, ""Narciso Rodriguez"" form Home: The Blueprints of Our lives there are relevant and specific pieces of information describing the mood created by the author.This quote or textual evidence shows that the mood of the author is very ""warm"" and free. ""Here, the innocence of childhood, the congregation in the family and friends, and the celebrations that encompassed both, formed the backdrop to life in our warm home."" This quote shows that the author is very warm because he says, ""the congregation of family and friends, and also, ""life in our 'warm' home."" The first quote shows he was very free with feeling and the second quote shows that he was ""warm"" inside.This quote shows that the mood the author changed to be very loving. ""I will never forget that house or its neighborhood or the many things I learned about how to love."" This quote shows that the author is very loving because he says, ""learned there about how to love."" This shows that the authors mood was very loving." 3 2 3 +12916 5 "The mood created by the author is happy and grateful towards his parents. He is happy and grateful towards them because they gave up their old lives in cuba where they had good jobs, friends, and family so that Narciso @MONTH1 have a good life. The mood kind of shows his attitude of hope and that his parent hardships created a good life for him. The mood also shows that he is proud of his heritage because he adores Cuban music and is grateful for learning culinary arts from his parents. His parents were not the only people to make him feel happy but it was also his neighbors who were also immagrants were kind and he felt united with them. This mood is great and shows anyone can be happy." 3 2 3 +12917 5 "The mood the author created in the memoir was appreciation. Narciso Rodriguez thank his parents many times for moving to @LOCATION1 and giving up their lives in Cuba to give him a better life. He also thanks them for his childhood. He thank them for teaching him so many things as a child and the environment he grew up in. When the author says how his parents cooking was passed on to him he cuts away from the article specifically to thank his parents. He tells how even though his community was made up of many races they still lived in friendship and unity. He tells how people always came over to house for dinner and there were many celebrations. He tells of the courage his mother and father had of coming to the country without any knowledge of the language or culture. He describes how all immigrants left their country just to give their children better lives. Narciso describes how his parents had great jobs in Cuba, gave those up, and took any jobs they could find in @LOCATION1. In paragraph six he says how he will always be greatful to his parents for their love and sacrifice. Also in that paragraph he says there is no way to express the graditude he feels towards his parents. The last sentence of that paragraph he says ""They showed me with their lives, and these teachings have been the basis of my life."" There once again he is thanking his parents. Throughout the memoir he describes his parents like heroes and thanks them for everything they did for him. That is why the mood for this memoir was appreciation" 4 4 4 +12918 5 "The mood created in the memoir is very loving and caring and it shows appreciation to the authors parents. The author (@ORGANIZATION1) explains how it was for him as a kid and his ""family"" doesn't always mean a blood relative. He describes the household as being very humble and always had open arms and welcomed others. He also says that it wasn't about the size of the home or how expensive it was, it was about the people inside it and how close they were and the memories they shared. All in all through this memoir @PERSON1 (the author) shows that he is very appreciative of his family and wouldn't change how we grew up and thanks his ""family"" for impressing the spirit of generosity upon him in an early age." 2 3 3 +12919 5 "In the memoir, ""Narciso Rodriguez"" from ""Home: The Blueprints of Our Lives"" by Narciso Rodriguez, the author depicts a mood with distinct traits. One trait of the mood is selflessnes and courage. It is shown in paragraph @NUM1 when the author says, ""They came selflessly, as many immigrants do, to give their children a better life, even though it ment leaving behind their families, freinds, and careers in the country they love."" Would you be able to throw away your life, into an alien world, just so that your children would have a better future? Doing this would take lots of selflessnes and courage. Also, the mood has gratefulness. The author shows this in paragraph @NUM2 when he says, ""I will always be grateful to my parents for their love and sacrifice."" This shows the author's gratefulness towards his parents for their selflessness and courage for coming over to @LOCATION2 to give him a better future. Finally, unity is found in the mood. It is found in paragraph @NUM3 when it says, ""in our neighborhood, despite customs else where, all of these cultures come together in great solidarity and freindship. It was a close- knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" This shows great unity in their neighborhood because in other parts of the United States, these three races didn't get alond, but in this neighborhood they were unified. In conclusion, the author depicts a mood with distinct traits." 3 4 4 +12920 5 "The author created a very positive and optimistic mood in the memoir. He talked about how his fascinating Cuban culture was portrayed throughout his home. The author said, ""passion Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" This quote shows his love and pride for his culture. In the memoir, the author also tells about his extreme thankfulness towards his parents. He admired their courage. Narciso felt that his parents did all they could to give their family a good life and that they were successful. Narciso said, ""I will always be grateful to my parents for their love and sacrifice."" This shows that he has a genuine appreciation for what they did. He believed that family is everyone that you love and are close to, not just blood relatives. Narciso considered his community to be one giant family. This memoir had an upbeat tone due to the positivity and optimism of the author." 3 3 3 +12921 5 The mood created by the @CAPS1 in the memoir is that at first was getting to short in who the character was. Like it went slow then fast than slow that person couldn't controle her writeing in the story out all so mood was like think fast then think hard and good nex time the writer should stay at one speed why then readers give up on the story. Who know's that story could of been the best but Just didnt want to stay at one speed. See me @CAPS2 not the one to talk because I cant write has good but i do read and very welling so take it from a reader not a writer. Also the story was to plan like any other story bad before it gets good I think if the writer he a she would of went slower with describeing the story and would of been different but the frist @NUM1 minoter I was like oh this is like any other story @CAPS2 gona stop reading right now boreing and rush the answer be careful how you write or choice these stories you dont know whats best fo me I do. You dont know me from a hole in a wall get a batter program. 0 1 1 +12922 5 In the memoir the mood was happy and loving because when they had their house their families would be welcomed in and strangers also would be welcome in. His parents were very loving because they were always so kind to people and they would rarely get into arguments. And the family was so enthusiastic and happy just because their family was together 1 1 1 +12923 5 "In the memoir Narciso Rodriguez from Home: The Blueprints of Our Lives, it explains how your house can effect you as a child and when you grow up. The mood of this memoir to me is comforting. I think this because when the memoir said that he had plenty of relatives around, and freinds that probably made him feel comfortable. Also his parents were very welcoming and kind so you would probably feel comfortable because of that too. That is what I think the mood of the memoir is and why." 2 1 2 +12924 5 "In the memoir, the author created the mood that made it had a close relationship. The author made the relationship very close from everywhere. In paragraph @NUM1, it says, ""all of these cultures came together in great solidarity and friendship."" The author gave the happiness to the cultures they have settled with the author, giving them friendship and happiness. The author also described their friendship with their neighbors. In paragraph @NUM2, he wrote, ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" The author thinks it his family consider other families as part of their family, then the other families will consider the author's family as part of their family. Families have been always close to each other. The authors said he will never forget his own family. He wrote in paragraph @NUM3, ""I will never forget that home or its gracious neighborhood or many things I learned there about how to love."" The author shows that his close relationships of his neighborhood and all his friendships. The author created a close relationship mood while he was writing his memoir." 4 3 4 +12925 5 "The mood created by the @PERSON1 in the memoir was to show how happy it was for Narciso Rodriguez growing up. ""here, The innocence of childhood, The congregation of family and friends, and endless celebrations that encompassed both, formed the back drop to life in our warm home"" and when the @PERSON1 says ""growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relitive."" as you can see the mood of the story is warm and tells us about how he had a good Childhood" 3 2 3 +12926 5 "In the memoir there is more the one mood, but this is the main one. First, the author is trying to create a ""no place like home mood,"" and the author succeeds at it. It seems he/she is using memory and telling his/her background. The mood was also very calm and very relaxing for the story. In conclusion this is the mood the author is giving." 2 1 2 +12927 5 "I the exerpt Narciso Rodriguez from Home: The Blueprints of our lives There is a specific mood set on the exerpt I think its love and @CAPS1. for example in paragraph @NUM1 it says ""I was in this simple house that my parents welcomed other refugees to celebrate their arrival to this country and where I celebrated my birthdays.""" 1 1 1 +12928 5 "In the memoir the mood created by the author I think was more of a serious, informative, and uplifting mood. The reason for why I think this is that the way his lifestyle is described as a happy and enjoyable life of also being able to talk about some serious topics like his culture and the diversity of the cultures of the poeple that live on the street. Also by how he feels so confortable with all the people that are in his apartment building and all the people that come to his house for dinner to call them family." 2 2 2 +12929 5 "The author creates a very warm happy welcoming feeling by describing how friends and family are always visiting and how happy the family is all the time. The author Narciso Rodriguez never mentions any bad times and shows how kind everyone is. This quote from the memoir proves that Narciso is creating a good mood throughout the story.""The innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This quote i think shows very well that the author is creating a happy mood in his memoir." 2 2 2 +12930 5 "@PERSON1's parents came (or emmigrated) from Cuba into @LOCATION1, where they were not wealthy and many racial barriers stop them from getting good jobs. However, @PERSON1, who is writing the memoir, explain how they sacrificed it all so that @CAPS1 could have a better life and how much they help their neighbors and their family.Rodriguez writes a lot about how they "always kept their arms and their door open to the many people we (they) considered family." @CAPS1 emphasizes this mood, a mood of "good @CAPS2" and a neighborly love, how they treated everyone as family. The mood @CAPS1 creates is that where you find the good in a life where there might not be too much good." 2 3 3 +12931 5 "The mood created by the author in the @CAPS1 was both loving and @CAPS2. This was the mood of the story because the author mentioned how his home was filled with a lot of love & how he is grateful for the sacrifice that his parents made for him. (@CAPS3. @NUM1) In his community that was filled with hardworking immigrants came together in great solidarity & friendship. (@CAPS3. @NUM2) The author's parents had come to the country with courage, without any knowledge of the language or culture which he will always be grateful for. (@CAPS3. @NUM3) His home was always filled with life & love. The author said that he would never forget that house or its gracious neighborhood or the many things he learned there about how to love. He would never forget how his parents turned that simple house into a home..." 3 3 3 +12932 5 The mood in the memoir was in a way sad. The reason why it was kind ave sad is how they came into this country with nothing. They had to live in a @NUM1 bedroom apartment. Even though that they still made it up to being able to make money. They got a better living style too. 1 1 1 +12933 5 It seems kind of happy and sad mostly happiness. They were sad because they had to leave everything behind in Cuba. 1 1 1 +12934 5 The mood in the passage is @CAPS1. It is @CAPS2 because they can give there child a better life. Next is because Cuba is not a good place to be in. They are @CAPS2 because they get start a new life over. Another reason is they can get Better jobs over hear. They get to live in a @CAPS3 house then @CAPS4. They are @CAPS2 so they can also help other refugees. Finally they are @CAPS2 for other refugees the celebrate there arrival to the country. 2 2 2 +12935 5 "Based on the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the mood could be a lot of things. The mood created by the author in the memoir is a @CAPS2 mood. first of all I know this because in paragraph @NUM1 it said ""... and for wich I am eternally grateful."" also it said ""wich I adore to this Day."" How I know that those where a @CAPS2 moode because if I where to say that it be @CAPS2, also there was nothing saying that @CAPS1 disliked it. Second of all, @CAPS1 would all ways tell his Parents that ""I will always be grateful to my Parents fo thier love and sacrifice."" also told them ""I've often told them of admiration for their strenth and Perseverance. There for the wood of the memoir is those two reasons why it is a @CAPS2 mood that the author created." 3 2 3 +12936 5 "There are many ways to describe the mood of the memoir. One way I could describe the memoir is that it makes you fell good about things. I know this because in paragraph @NUM1 it says, ""I will alwase be greatfull for my parents love and sacrifice."" @CAPS1 mood the memoir sets is a warm mood. I know this because in paragraph @NUM2 it says that his houses were he learned the real definition of family. As you can see, there are many ways to describe the mood of the memoir." 2 2 2 +12937 5 "In the @ORGANIZATION1 amemorie when in 1961 Narciso was born into a simple house. A cuban home filled with traditions, and the very heart of whitch was the kitchen. His parents who loved to cook is still with him today and for whitch I am eternally grateful. Passionate music witch he adores today. His neighborhood was madeup of mostly Spanish, Cuban, and Italian imigrants like his family. His mother and father had come to this country with such courage without any knowledge or the culture. They came to selflessly, as many immigrants do, to give their children a better life, even though it ment leaving behind their families, friends, and career in the country they loved. They struggled both personally and financially, braving the harsh Northern winters while yearning for their native tropics and facing cultural hardships. His mood shows lots of positive thing's about his family being proud what he is and what he stands for having the blood of being cuban. He seems very pleased on his familyes sucsess." 3 1 4 +12938 5 "In the memoir Narciso Rodriguez from Home: The Blueprints of our Lives, by Narciso Rodriguez the author creates a calm and loving mood. The author first shows a loving mood when he says ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture... to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved. This shows a loving mood because the parents wanted to give their children a better life by moving to american, even though they were leaving alot behind. The author shows a calm mood when he says ""always filled the air with not just scent and music but life and love. It was here where I learned the real definition of ""family"""". This quote puts a calm mood because when you think of filling the air with scents and playing nice music it puts you in a clam relaxed mood. This quote also shows a loving mood as well. This is because it explains her love for her family and that @CAPS1 is proud to call her family a family. All in all the above evidents set the memoirs mood as loving and careing." 3 3 3 +12939 5 The author created a mood in the memoir. The mood in the memoir is share with someone even if you don't want to. 0 0 0 +12940 5 "In the memoir, Narciso Rodriguez, from Home: the Blueprints of Our Lives, The mood of the author created is Grateful, ""I will always be grateful to my parents for their love and sacrifice"" Narciso says in paragraph @NUM1 first sentence." 2 1 2 +12941 5 "The mood of the memoir is very warm, happy and inviting. Since the whole story portrays this mood, I will tell you some reasons why. In paragraph @NUM1, Rodriguez tells you how everybody in his neighborhood were good friends and would always give a hand to people in need. Paragraph @NUM2 goes into more detail about paragraph @NUM1, telling us how many of Rodriguez's neighbors, friends and relatives joined him and his family at dinner on a regular basis. His parents ""always kept their arms and their door open to the many people we consider family, knowing that they would do the same for us."" In paragraph @NUM4, Rodriguez states how his parents selflessly came over to the @CAPS1.S.A to give him a better life. They give up everything they had just so he could have more than his parents did. This just goes to show how much Rodriguez's parents cared for him. As you can see, this is why the mood of the memoir is warm, happy, and inviting. (Also heart warming!)" 4 3 4 +12942 5 I believe the author's mood was serouse 0 0 0 +12943 5 "The mood the author creates in this memoir is gratitude. The author is very grateful to his parents for all that they have sacrificed for him. For example, they came to the United States from Cuba, without a clue of its customs or language. The authors parent's left behind their careers, their families and friends, just that they can have a better life for their baby. The author's parents let people stay in their home so that they could get back on their feet. The authors gratitude is clearly shown in paragraph six when he says ""I will always be grateful to my parents for their love and sacrifice"" The author clearly states that he is grateful for all that his parents have given him. The author also says that he thinks that what his parents did for him was the ""most courageous thing [that he] could have ever done.""" 3 2 3 +12944 5 The mood in this memior was happyness. It was happyness because he talks about how much his parents care not only about their family but also friends. 1 1 1 +12945 5 "In the memoir, the author emphasized a very specific mood. She greatly emphasized warmth and safety. By warmth, she meant that you were always surrounded by loved ones. It meant something you'll always remember, because it's such a remarkable feeling. By stressing this warmth, it meant that it created memories. The other part of this mood was safety. The explanation of the safety was that you're surrounded by people that care about you, and there's no one to judge you, no one to hurt you, and you're safe from any dangers. I personally love the mood of this story because it's something I long for each @DATE1 down thecape. In conclusion, the mood of the memoir is very clear." 2 2 2 +12946 5 "In the short story ""Narciso Rodriguez"" by The Blueprints of Our Lives, the mood of the short story is grateful and reasonable. In the story a man named Narciso Rodriguez twenty-seven years old migrated from Cuba in 1956 with his parents to come to the United States. When they came they had to live in a one bedroom apt. they could afford nothing else. But Narciso was being very greatful. Even though they had nowhere to to work in places with bigger pay. So they only had little pay to feed there family. Narciso is greatful in paragraph @NUM1. @CAPS1 says ""They struggle both personally and finanacially braving the harsh northern winters."" @CAPS1 had to settle for what was given to him at the time." 2 1 2 +12947 5 "The mood created by the authour in the memoir, is the idea of sacrifice and generosity. @PERSON1's parents came to @LOCATION1 as immigrants from Cuba and by doing this took a very risky and difficult journey in order to make @PERSON1 have a more successful life. The parents gave up seeing their families, friends and careers in the country they loved. Narciso displays generosity by saying ""I will always be grateful to my parents for their love and sacrifice." 2 2 2 +12948 5 "In the memoir ""Narciso @CAPS1"" by the Blueprints of Our Lives, the mood was happiness because he had his heritage, family and freinds, and the chance to make new lives in @LOCATION2. In paragraph @NUM1 it States ""Skills and love of cooking that is still with me today. Passionate cuban music"". This quote is releavant because it shows that @PERSON2 is happy of his heritage. In paragraph @NUM1 it states ""Family and freinds, and celebrations that encompassed them both."" This quote is relevant to my question because it shows that freinds and family made Narciso happy. In paragraph @NUM3 it States ""In the United States they had to start over entirely taking whatever jobs they can find."" This quote is releavant to my question because it shows that Narciso's family can make whatever they want out of their lives. That is the mood in the memoir ""@PERSON2 @CAPS1"" by Blueprints of Our Lives." 2 2 2 +12949 5 "The mood created by the author memoir is... LOVE and Sacrifice. He often told them that what they did was a much more courageous thing than I could have ever done. As he was growing up in his environment instilled in him a great sense that ""family"" had nothing to do with being a blood relative. He often told them of his admiration for their strength and perseverance, and he thanked them repeatedly. As he say ""he will never forget how his parents turned this simple house into a home""." 2 2 2 +12950 5 "The @CAPS1 created by the @CAPS2 in @CAPS3 like in @CAPS4 @NUM1 it sAys that My Mother And My fAther hAd to come to this country with Such courAge, without Any knowledge of the lAnguAge or the culture they cAme selflessly, As MAny immigrants do, to give their children A better life, even though it Meant leaving behind their families, friends, And careers in the country they loved." 1 1 1 +12951 5 "The mood that was created by the author was respect. For example it told the boy that you don't have to be a blood realative. For instance, the author states ""@CAPS1 up in this environment in stilled in me a great sense that ""family"" had nothing to do with being a blood relative"". Another reason, was that you should always help your family s during bad times. For example the book reads ""Countless extended family members came and went-and there was often someone staying with us temporilily until they were able to get back on their feet"". Thirdly, the boy will always be grateful to his parents for their love and sacrifice. For instance the auother quotes ""They came selflessly, as many immigrants do, give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved." 3 3 3 +12952 5 "The mood in this memoir I think would be happiness because his parents gave him happiness by being there all the homieness. ""I will always be grateful to my parents for their love and sacrifice."" This show how much they've done for him and he has apreciated. Overall this is reconizing that family and happiness are unified." 2 2 2 +12953 5 "The mood created by Narciso Rodriguez in the story, ""Narciso Rodriguez"", was sad. This is so because he's always talking about how he doesn't Know parts of his real family & he lives in an apartment." 1 1 1 +12954 5 "In the memoir, @PERSON1,"" by Narciso Rodriguez, has a very strong and touching mood. In paragraph @NUM1 Rodriguez states ""I will always be grateful to my parents for their love and sacrifice."" This line describes the mood as extremely loving and touching because he is showing how much love he dedicates to his parents For the life he lived. Also, in paragraph @NUM1 Rodriguez states ""... there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" This line also describes the mood as very calm and loving because he is extremely grateful for the life his parents gave him. In paragraph seven, the last scentence really describes the mood because he is know showing the love to his parents and to his house where grew up, ""I will never forget how my parents turned thes simple house into a home"" This memoir describes the mood as extremely loving and grateful." 3 3 3 +12955 5 "The mood created by the author is fairly formal, with a few informal parts. For example a formal paragraph, like paragraph number one, sets the stage of the whole memoir and uses formal transitions like ""After [living]"". Also, the paragraph is very informative, telling about his parents imigrating to the @ORGANIZATION1 from Cuba and how they were financially poor + could not afford a fancy home like they could in Cuba.An informal paragraph in the memoir is a paragraph like number six where he is describing how thankful he is for his parents being as selfless and giving as they are. He also uses informal transitions such as ""But, [in reality]."" And ""these...,"". It also just has an informal tone to that paragraph.As a conclusion these parts of the memoir have a good balance of formal + informal settings to keep the reader engaged." 2 1 2 +12956 5 "In the memoir ""Narciso Rodriguez"" there was a mood to the memoir. The mood that was set was about how you should keep peace in the house. You should be grateful and appresitive to what your parents do for you and what they give you.Another mood that was set is to keep yoar house open to family and friends. And hope they would do the same for you. And no matter if your poor or have a small house ""family"" is always there. And family ""can turn a simple house into a home""" 2 2 2 +12957 5 "The memoir ""Narciso Rodriguez"" creates an overall mood of happiness, and some sadness at the same time. In paragraph @NUM1, the author explains what it was like to live in his home in Cuba. The way he describes his experience in the kitchen cooking and listening to music gives the reader a warm feeling. It says, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This sentence not only makes the reader happy for him, but they can see unity in his family. In paragraph @NUM2, he also shows how life with his family was. ""It was a close-knit community of hardworking immigrants..."" On the other hand, there's also a part of this story that makes the reader feel sad for him. In paragraphs @NUM3 and @NUM4, he explains the difficult life his parents had moving to @LOCATION1. ""They struggled both personally and financially"" it says in paragraph @NUM3. It's upsetting to read this after hearing of all the great times he had with his parents. That's why the end of the memoir and the beginning have two different moods. Both happiness and sadness are shown in the memoir ""Narciso Rodriguez.""" 2 3 3 +12958 5 "The mood Narciso Rodriguez creates in his memoir is a very good and bright. He and his parents survived hard times in their New Jersey home, such as segregation of @CAPS1-@CAPS2 like himself and not always having enough money. Yet he and his family survived because of the unity of his closely-knit community, Immigrants from @ORGANIZATION2, the @LOCATION2, @LOCATION3, @LOCATION4, and elsewhere all came together and ignored their differences. They shared food, shared their homes, and shared happiness between them. There was a certain trust among the community, every family holding their door open for anybody,"" knowing that they would do the same for [them]."" (paragraph @NUM1) To make the mood of this excerpt very light and cheerful, Rodriguez uses words like, ""rich culinary skills and love of cooking,"" ( @NUM2) ""innocence of childhood,"" ( @NUM2), ""hard working"", ( @NUM4), ""courage,"" and ""selflessly,"" ( @NUM5) ""grateful... love and sacrifice,"" ""admiration for their strength and perseverance,"" ""spirit of generosity."" ( @NUM6). All of these words show that through solidarity, hope, and courage, people can make a good life for each other, no matter how hard their situation is at first." 3 4 4 +12959 5 "Based on the memoir, ""Narciso Rodriguez"" the mood created by the author in the memoir could be described in many ways. To begin with, the boy is very so grateful for his parents and adore them so much. And paragraph two it states, ""the very heart of which was the kitchen. My parents both shared cooking duties and unwittingly passed onto me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful.)"" @CAPS1 more, his parents left the country Cuba to have a better life for there children. In paragraph five it says, ""they came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and carreers in the country they love."" @CAPS2, he thanks them and admires their strenght and preserverance, and I've thanked them repeatedly."" As you can see, the mood of the memior created by the author could be described in many ways. " 3 3 3 +12960 5 "The mood created by the author in this memoir is a very calm mood. For me personally home has always been a calm place. The author further emphasizes the mood by using words like aromas, passionate. The author sets a calm, kind and gentle mood by talking about family and friends. In conclusion the author sets a calm and kind mood by using words and subject matter that I feel are calming." 1 2 2 +12961 5 "The mood created by the author (narciso Rodriguez) in the memoir was that he was grateful/appreciative for his life, and also happy with his life. Through out this memoir I think he has realized and is explaining what family really is and that he is grateful for having one. You'll figure this out when you read this because he states, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being blood relative."" what he also says that proves his mood was grateful is, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 with all this being said I believe thats what his mood was through out the memoir." 3 3 3 +12962 5 "He creates a calming outgoing mood for the @CAPS1 he makes The reader feel, smell and hear the cuban, Spanish influence around him in his home. The feeling inside his home is warm and bright the soothing viberant hispanic vibe that run's through the @CAPS1 brings a great feeling to the reader." 1 2 2 +12963 5 "From the reading ""Narciso Rodriguez from Home: The Blueprints of our Lives"", by Narciso Rodriguez set a certain a mood throughout the whole entire reading. That mood is happy and friendly. They based their lives on family and happiness inside their home. He said that ""My parents always kept their arms and their doors open."" this shows that if family or friends needed help they were there for them. It also stated people in your family don't have to be blood related and that many people where welcome to eat dinner with them. This shows how nice and how well the neighborhood got along. They would also surround themselves with Cuban food and music show that they where proud of who they were and that they made their new home a nice and piecefull environment." 2 3 3 +12964 5 "The aurther talks about home and family which would be a calm, caring, and happy mood. The author created these moods by talking about memories and how her parents moved from cuba to give there child a better life and how they take in family mebers in need until they get back on there feet. She said her parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love for cooking that is still me today. Passionate Cuban music filled the air, mixing with the aromas of the kitchen. Which is kinda like a happy mood and "" Here, the innocence of childhood the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home. Which is definatly a calm and happy mood." 3 3 3 +12965 5 "In this memoir Narciso Rodriguez from Home: The @CAPS1 prints of Our Lives the mood was very happy and made me thankful. My grandparents moved to the @CAPS2.S when my mom was just six. They wanted to give her and her brothers and sisters a better life. This is why I am thankful. I live in the @LOCATION1. The mood is also happy because everyone loved eachother. They didnt have the nicest home, but it was full of love. The music was always playing and Family came a lot. The door was always open in the Rodriguez house. The last sentence in this memoir ""I will never Forget how my parents turned this simple house into a home."" This made me smile it was so beautiful. This is how the mood was happy and made me thankful. The next time I see my grand parents I will make shure to thank them for moving to the @CAPS2.S and giving are Family a better life." 3 2 3 +12966 5 "I beleive the mood that sets off in the beggining of the story is how in her house cuban music and great aroma's From @CAPS1's @CAPS2 through the air, I also think that it gives picture of laughter and happiness, And I think that throughout the story @CAPS3 tells that @CAPS3 relizes through spending time with community that his parents are teaching him, Just because someone isn't blood related dosent mean they can't be lik family as said in the package, There teaching him that It Is also people that love you and care about you. As @CAPS3 continues through the passage It says that his family is all ways open to take care of people that they love and need help. @CAPS3 soon relizes that all his family gave up from their old lives was so that they could provide a nice home for him and teach him a valuable lesson in Life the true meaning of family." 3 3 3 +12967 5 "In the memoir this is how the author created the mood, he tells of how his parents lived in a house where it was very poor at that time. His parents immigrated to @LOCATION1 where Narciso was born. he was raised in the ghetto. When he was living here it was during the time of racism and segregation. Narciso didnt know his real grandparents until 1970 when they were allowed to leave cuba. This was how the author created the mood." 0 1 1 +12968 5 "The mood created by the author in the memoir is warm, grateful, and very palpable to the reader. One mood the author conveys very deeply is that of his love of his family. However, his ""family"" not only consisted of blood relatives, but also of the immigrants living in the neighborhood. He says, ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" It is obvious that the author feels very strongly about the good relationships his family had with the other immigrants around them. His mood is warm and compassionate as he talks about how much each one of his community was important to him. The next mood conveyed by the author is gratitude and admiration for his parents. In paragraph @NUM1, he talks about how he will be forever grateful for his parents' sacrifices and their hardwork and the numerous times he has told them of his admiration for their strength and courage. However, he does not feel it is enough and says, ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" The mood shown in this quote is that of thankfulness, and even a small bit of frustration that he cannot fully express his gratitude towards his parents." 4 4 4 +12969 5 The mood is grate full because in cuba which is a central goverment they had to sneek to get in Cuba. Well @CAPS2 felt Great full of What his parents did which was give him a better life. I usto be like him my parents took a plane to @LOCATION1 we only had @DATE1 of stay but we overdid it. We usto have nothing or docoments as the years passed we @CAPS1 gotting documents and finally the beloved green card. So @CAPS2 was very great full and honorable to his parents because of what they did. 1 1 1 +12970 5 "In the memoir Narciso Rodriguez by himself from Home: The Blueprints of Our Lives it talks about this fashion designers life. One example is in paragraph @NUM1 page @NUM2 it talks about his backround Narciso states ""My parent, originaly from Cuba, arrived in the United States in 1956..."" The paragraph goes on talking about his parents and their names. Nex it is paragraph @NUM3 page @NUM2. This sets the mood of him growing up in a new inviorment. For example he States ""Growing up in this new instilled in me a great ""Family"" had nothing to do with being a blood relative. Quite the contrary, our nieborhood was made up of mostly Spanish, Cuban and Italian immigrants at a tim when overt racism was the norm of segregation prevailed in the United States."" @CAPS1 is on page @NUM5 paragraph @NUM6. It shows the mood of how he loves his house. For example he says ""... I will never forget that house or its gracious neiborhood or the many thing or I learned there about how to love."" In conclusion this is how the mood creates the author." 2 4 3 +12971 5 "The author creates many moods in the story. While reading this story I felt happy, sometimes sad and overall it made me feel good.The mood that the author is trying to sel is happieness and unity. even though many cultures and ethnic backgrounds were in his neiborhood they all came together as one. Then at other times I felt sad because he grew up with racism still in america. The story makes me feel good because the author is trying to say that it is not the materialistic things that make you happy it is the family and freinds that surroud you every single day." 2 2 2 +12972 5 "The mood, or general atmosphere created in ""Home: The Blueprints of Our Lives"" by Narciso Rodriguez is happy, peaceful, and gratefulness. ""The innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" ( @NUM1) The author explains to us how peaceful and happy his home was. They had many celebrations with family and friends and everyone cared about each other. ""In our neighborhood, all of these cultures came together in great solidarity and friendship."" ( @NUM2) The author lived in a friendly neighborhood where there wasn't much racistism. ""My parents always kept their arms and their door open to the many people we consider family, knowing that they would do the same for us."" ( @NUM3) They didn't only consider blood relatives family. Many people were family to them. They always had each others backs and had many celebrations. Most of the time, it was just about a group of people who love each other having a good time with each other. The author was also grateful, ""I will always be grateful to my parents for their love and sacraficed."" The author's parents moved to the @LOCATION1 to do what was best for their child. They had to find new jobs and give their child a happy life. ""I will never forget how my parents turned this simple house into a home.""" 4 4 4 +12973 5 "I believe the was more of a ""thank you"" in the memoir and here a three reasons. I think Narciso Rodriguez is thanking his parents for making him have a good childhood. Like in the excerpt ""I will never forget how my parents turned this simple house into a home. Another reason I think he's thanking his parents because he was praising them. In the excerpt ""I've often told them that what they did was a much more courageous thing than I could have ever done."" @CAPS1 Narciso is forever grateful to his parents. Like in the excerpt ""I will always be grateful to my parents for their love and sacrifice."" These are the three ways the mood was more of a ""thank you"" kind of thing in the memoir." 2 3 3 +12974 5 "on paragraph @NUM1 in the article it say's ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done."" I think that the mood the auther is creating in the memoir is happyness because Narciso is very geatful to his parents." 2 1 2 +12975 5 "In the memoir ""Narciso Rodriguez"" from Home: The blue @CAPS1 of are lives it gives you alot of different moods. One mood it gave me was happiness, I got this mood because he said cuban music filled the air and cuban music is normalli happy. I know Cuban music filled the air from when it states ""Passionate Cuban music (which I adore to this day) filled the air"" @CAPS2 @NUM1. Also I got the mood of welcomeness because his parents always let people In the house. I know his parents did this from when it states ""My parents always kept their arms and their door open to the many people we considered family"" @CAPS2 @NUM2. Lastly this gave me the mood of love. I got this feeling because his parents did hard jobs because they loved their kids. I know this from when it states ""They had to start their lives over entirely, taking whatever work they could find"" @CAPS2 @NUM3. These are the moods the memoir ""Narciso Rodriguez"" from Home: The blue @CAPS1 of our lives." 3 3 3 +12976 5 The mood created by Narciso Rodriguez in his memoir is thankfulness. Throughout the memoir Rodriguez talks about the life his parents gave him and how thankful he was. 1 1 1 +12977 5 "In Narciso Rodriguez's memoir, Narciso really sets, a joyous, happy mood when @CAPS1 describes his home. @CAPS1 gives the reader a feeling of just how much @CAPS1 loved his home. @CAPS1 sets a mood of gratefulness as well, when @CAPS1 describes how much is parents sacrificed for him to grow up well. ""There is no way for me to express my gratitude for the spirit of generosity at such an early age, and the demonstration of how important family and friends are."" @CAPS1 sets such an ecstatic mood, that the reader wants to be there, at his home. This is a mood that Narciso Rodriguez sets, and the way @CAPS1 shows the reader just how great his home really is." 2 2 2 +12978 5 "This passag has a very calm and happy mood. He is looking back on his childhood and the memories. He talked about the cheerful house, people and neighborhood. You could picture the house and smell the aromas. Narciso set a very nice setting and tone that the entire passage was lifted in energy. You could tell he was passionate about what she was writing. He showed a real admiration for his childhood and the people he shared it with. The way he felt about her childhood was potrayed beautifully in this piece and that really helped the reader get into the happiness and community like feel. Her gratefullness potrayed into the mood and made the entire piece fun to read." 2 2 2 +12979 5 "The main mood that is potrayed by the author is coziness or family, because his parents gave up everything and came to the United States so that Narciso could have a great childhood and he did. Narciso's parents turned a small apartment into a happy comforting place that people would go to for a happy reunion matter where they were from. The single force of staying over brought people together. That is how Narciso grew up with and with that was lucky and grateful." 1 2 2 +12980 5 "The mood created by the author in the memoir is being grateful. First, the author reveals her greatfulness by complimenting her mother and father. She states, ""my mother and father had to come to this country with such courage, without any knowledge of the language or culture. They came selflessly, as many immagrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved"" (@NUM1). The author is grateful because her parents came to @LOCATION1. But she is grateful because they didn't come for themselves, they came for her. They gave up everything they had for her. Next, all her thanking shows her being grateful. The author tells he parents of her ""admiration for their strength and perseverance"" (@NUM2) and has ""thanked them repeatedly"" (@NUM2). The author reveals gratefulness through what she tells her parents. She is grateful for their perseverance and for their strength through this whole process and thanks them over and over again. Finally, she is grateful when they are leaving their house. She reveals, ""I will never forget how my parents turned this simple house into a home"" (@NUM4). The author is being grateful here when she recognizes the house she has lived in, the house her parents have worked so hard to get to. And now, he is grateful that they have enough money to have a bigger home. The mood created by the author in the memoir is being grateful." 4 4 4 +12981 5 "The mood of Narciso Rodriguez's memoir is very loving, grateful, and warm. Firstly, the way that Narciso describes his family and friends and home life is very endearing and clearly expresses the love that he had for the people around him and the building he lived in. The memoir states, ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home"" (@CAPS1 @NUM1). This definitely shows how much he loved his family, home, and friends, and how they taught him how to care for and love others. It brings a great feeling of lovingness this to the reader. Another large contributor to the mood of the story is the gratefullness Narciso feels to have grown up in such a wonderful home. The memoir states, ""I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly. But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age"" (@CAPS1 @NUM2). You can almost feel how grateful he is for is happy childhood and the selflessness of his parents through the writing. Finally, there is a warmth that contributes heavily to the mood of the memoir. The memoir states, ""Here, the innocence of childhood, the congregation of family and friends, and the endless celebrations that encompassed both, formed the backdrop to life in our warm home"" (@CAPS1 @NUM3). Narciso has become a better person because of the warmth and involvement in his home and, like the warmth formed the backdrop of his life it also forms the backdrop for the mood of the memoir." 4 4 4 +12982 5 "The mood in this memoir is caring and loving. Even though everyone in the neighborhood isnt blood related they are all still family. Everyone in the neighborhood is so welcoming, he tells us how his mother always leaves the door open for those who welcome her in. When they all have partys everyone is so happy to have what they have. Narciso is over greatfull for what a life his parents give him and he can never thank them enough. He says ""I will never forget how my parents turned this simple house to a home."" His parents are also very greatfull for how thankfull Narciso is. Everyone in this ""family"" will forever love eachother" 2 2 2 +12983 5 "The mood the author portrays is love and unity. The author portrays his love for his parents when he explains how selfless they were in immigrating to @LOCATION1, and sacrificing so much for the sake of their children. They also show unity by explaining how close everyone in his neighborhood and family are. They all share a similar culture, and they consider a lot of the people in their neighborhood family, even if they are not blood-relatives. A lot of their family lives close by, and they often spend time together, usually for meals as it says in paragraph @NUM1." 2 2 2 +12984 5 "In the memoir, Narciso Rodriguez, from Home: The blue prints of our lives by Narciso Rodriguez, Narciso explains the mood of his home. One way is in para graph @NUM1 when he says ""Passionate Cuban music filled the air, mixed with the aromas of the Kitchen"". This @CAPS1 the mood of family. It gives you this sense of a warm family.Another way is in paragraph @NUM2. He says ""My parents always Kept their arms open to the many people we considered family"". This gives a loving and caring feeling. It also gives the sense of family.The last way Narciso explains the mood is in paragraph @NUM3. In this paragraph he just gives an overall warm and inviting mood. He says how appriciative of his parents he is. He really @CAPS1 the mood to be thank ful of everything they have done. These are a few ways Narciso @CAPS1 the mood of the memoir." 3 2 3 +12985 5 "The mood of this memoir is one of love and kindness. In paragraph @NUM1 it says ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship. It was a close-knit community of honest, hard-working immigrants who extended a hand to people who, not necessarily their own kind, were clearly in need."" This shows how close and kind the neighborhood around the house was. The end of paragraph @NUM2 it states ""Countless extended family members came and went-and there was often someone staying with us temporarily until they were able to get back on their feet. My parents always kept their arms and their doors open to the many people we considered family, knowing that they would do the same for us. The way that her parents helped the community out shows their general love and kindness for all. Finally, in paragraph @NUM2 it says, ""It was in the warmth of the kitchen in this humble house were a Cuban feast (albeit a frugal Cuban feast) always filled the air with not just scent and music but life and love. It was here that I learned the definition of ""family"". And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" It says right out that the ""scent"", or mood, is of love and that this is where he learned how to love. The mood of this article is very loving and kind." 3 4 4 +12986 5 "In his memoir, Narciso Rodriguez creates a warm and loving mood. First, he talks about his welcoming house. Rodriguez writes, ""...the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both..."" (@NUM1) this shows that Narciso's home was open to anyone. Also, he talks about how close he was with others. Narciso writes, ""...""family"" had nothing to do with being a blood relative"" (@NUM2). This explains that everyone near him was like family. Finally, his parents were able to support these bonds. He writes, ""I will always be grateful to my parents for their love and sacrifice"" (p. @NUM3). This shows that Narciso's parents had to go through a lot to make it all happen. Overall, Rodriguez creates a loving mood of togetherness." 3 3 3 +12987 5 "In the memoir Narciso Rodriguez, from Home: The Blueprints of our lives, the mood that is created by the author is love and sacrifice. In the memoir, the author shows love by not only showing the love between the child and the parents but by also showing the love throughout the community. The author shows sacrifice by showing what the parents had to give up in order for their child to have a better life. In the memoir, it talks a lot about the neighborhood, ""all of these cultures came together in great solidarity and friendship. It was a close-knit community of honest, hardworking immigrants who extended a hand to people."" This shows the closeness of the people in the neighborhood had and this represents the love as well. Sacrifice is shown by Narciso's parents. ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" This shows what his parent left behind for him, representing sacrafice. At the end the author also mentions ""I will never forget that house or it's gracious neighborhood or the many things I learned there about how to love."" This ties up the mood throughout the memoir. Love and sacrifice is the mood throughout the memoir that the author created." 4 4 4 +12988 5 "In this paragraph I'm going to tell you the mood created by the author in the memoir I just read. One mood that the author had was happy. The reason why I said that is because everytime he spoke about being Cuban or about his family, he spoke with this joy or pride in his voice. Also when he was talking about Spanish, Italian and Cuban all like being a family. Another mood he had was kind of sad. The reason why I say that is because when he was talking about how he couldn't his a real grandparents until 1970. He sounded a little deppressed about that. I also feel that he is a very happy man for the rest of the memoir. Those are the moods that I think the author created during the memoir." 2 2 2 +12989 5 "The memoir Narciso Rodriguez by Home: The Blueprints of Our Lives, enholds a mood of happiness and warmth, which is described in several ways. Happiness serves as an apt description of the mood in the story, due to the narrator's constant reference to a joyful essence which fills her apartment house. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm house."" This represents how happiness transpires throughout their home, and how everybody can feel free to be whoever they want to be. Consequently, Narciso's house is a warm, happy environment. Another example which describes the mood in the memoir is how Narciso explains how there is always a friend or family member in the house. ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" This quote, spoken by Narciso, further explains how growing up surrounded by love and laughter and warmth, creates a positive influence that remains instilled in a person forever. This reflects how the mood of the story is happiness as well. Finally, a last example which concludes how the mood is described within the memoir is how the author illustrates the admiration that Narciso feels for his parents. He describes how these are the words to show his gratefulness toward his parents, and how he admires them both for leaving their hometown to raise a family. This contributes to how the mood of happiness exists among the memoirs content, and furthermore describes the mood that was created by the author." 3 4 4 +12990 5 "The mood in this memoir changes throughout the story. First off, the mood starts with being friendly. ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" This tells us everyone in the neighborhood is nice. In the middle of the story, the mood is strong and determined. ""They struggled both personally and financially, braving the harsh northern winters."" This tells the people had to stay strong through hard times. Lastly, the end of the story is greatful. ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" This tells how the narrator is thankful. All in all, the moods in the story fit together nicely." 3 3 3 +12991 5 "In this memoir from Home: The Blueprints of Our Lives, written by Narciso Rodriguez, Narciso talks about how his family made his house a home. The mood he sets throughout the memoir is love, selflessness, and gratefullnes. This memoir shows love because of paragraph @NUM1, Rodriguez reminisces, ""countless extended family members came and went--and there was often someone staying with us temporarily until they were able to get back on their feet. My parents always kept their door open to the many people we considered family, knowing they would do the same for us."" This shows love because even if they weren't blood related, they still consider themselves family and cared for each other beyond belief. This memoir also has the mood of selflessness because Rodriguez says that they moved selflessly, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved and ended up facing many hardships to their new country. The last mood shown in this memoir is gratefullness. Narciso Rodriguez is grateful for his cooking abilities, his love for cuban music and for his parents love and sacrifice. Especially he is grateful for how his parents turned his simple house into a home." 4 3 4 +12992 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the mood created by the author is respectful. First of all, Narciso's parents were very courages. When Narciso talks about his parents, he says, ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture"" (Rodriguez paragraph @NUM1). Narciso gives his parents the respect they deserve by describing their actions as ""such courage."" @CAPS1 of all, Narciso's parents wanted their kids to have a better life. When Narciso explains why his parents came to the United States, he says, ""They came selflessly as many immigrants do, to give their children a better life, even though it meant leaving behing their families, friends, and careers in the country they loved"" (Rodriguez paragraph @NUM1). When it says ""They came...to give their children a better life"" shows that Narciso's parents love their kids so much, they did what they could to give their kids a better future, which deserves great respect. Finally, Narciso is greatful for what his parents did. When Narciso describes what he feels towards his parents, he says, ""I will always be grateful to my parents for their love and sacrifice"" (Rodriguez paragraph @NUM3). When the author says, ""I will always be grateful"" shows that the author is thankful for what his parents did for him and therefore shows respect. All in all, in the memoir ""Narciso Rodriguez"" the mood created by the author is respectful." 4 4 4 +12993 5 "The mood the author created in the memoir was happiness. He/she wasn't sad at all because all his/her memories were happy. His/her memories taught him/her what family was. The tone the author gave out was joy. ""Endless celebrations"" ""all of these cultures came together in great solidarity and friendship"". Not one of his/her memories he/she talked about showed any sadness for he made a lifetimes of friends. The author showed us a calm and grateful mood for everything that have happened. ""I will always be grateful to my parents for their love and sacrifice. The author wanted to express a lot of gratitude for what his/her parents have done for him/her. Through his/her parents Narciso Rodriguez have so much happy memories. Narciso Rodriguez's memoir was anything but sad and his/her memories taught him/her family." 2 3 3 +12994 5 "In the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, the author creates a mood in the memior in many ways. For example, the author is in a loving mood of the begging of the memior. In paragraph two, he says ""...a love of cooking that is still with me today."" In addition, the author is in a caring mood at the middle of the memior. In paragraph four, ""My parents always kept their arms and their door open to the many people we consider family"". Lastly, the author is in sed mood neer the end. In paragraph @NUM1, he says ""They struggled both personally and financially..."" In conclusion, the auther creates a mood in the memior in many ways." 2 2 2 +12995 5 "the mood of the @CAPS1 in the article is like kind of happiness and @CAPS2, relax, and grateful. Because their grandparents are coming from Cuba. Narciso Rodriguez feels like being an immigrant from Cuba and making a family in the United States is hard. Because you have to start your whole life over so you can get a job and provide for your family. This is what I think the mood of the article is about in the memoir." 1 2 2 +12996 5 "In this memoir, the mood is very light hearted and kind. It gives you a feeling of peace and community.Several times the author tries to show appreciation. Not for any one thing in particular, just gratitude. For example, in paragraph @NUM1, he puts phrases in parentheses for no reason other than to show gratitude for his life as a child. As a result of this, while reading you get a feeling of peace and kindness.Because of his repeated display of gratitude, the mood is light hearted and unserious." 2 1 2 +12997 5 "The author creates a unique mood in the memoir Narciso Rodriguez from Home: The Blueprints of Our Lives. The mood is loving/caring/kind from what the authors saying about his memories. It is loving because he is talking about all the close relationships he had with his family and friends. ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" The mood was also sad because throughout the whole thing he was saying thank-you to his parents for all his oper tunities. ""I will always be grateful to my parents for their love and sacrifice."" Also another mood is happy, happy from all the great memories. He talks about all his family and friends hangin' out and having a great time. In the memoir Narciso Rodriguez from Home: The Blueprints of Our Lives the author creates a unique mood." 2 2 2 +12998 5 "The mood that the author created in the memoir is a very loving and caring one. This is because the author tells what his parents gave up just for him to have a good life. That means his parents really loved him because they wanted him to grow up and have a good life. And that was something that they could find in @LOCATION1. It is very caring of them because when they moved to @LOCATION1 not only did they look after their baby, but other people that needed help as well. To them everyone in their neighborhood was their family and they all looked after each other. The mood is really both loving and caring because it shows how an group of people are so close, that they love and care for each other as one family. No matter what even in hard times one of them will always have their door open for them, and they can always relay on them. That is what family is about." 2 3 2 +12999 5 "The mood created by the author in the memior is very pleasant, proud and happy. He shows that in growing up in such a wonderful @CAPS1 @CAPS2 family and home that he felt that the experience he had in his home was just exceptional. He believed that by growing up in this enviroment instilled a great sense family had nothing to do with being a blood relitive. He was very grateful to his parents for his love and sacrifice and couldn't ask for anything more. By growing up in such a wonderful place he will always never forget how his parents turned his simple house into a home." 2 2 2 +13000 5 "In this memoir, the auther creats a mood. The mood that this author creates is the gratefulness. The reason that I say gratefulness is because Narciso Rodriguez is so greatful, and so happy to have two loving, caring, selfless parents. He's grateful to have not only a house, but a warm, cozy home, where he's grown up in and had so many memories. He is grateful to have all the perks of a traditional cuban home, with the food, the music, and all of the people Narciso is grateful that his Parents basically just gave up their own lives and dropped everything, so that he could have a better life. Nariso cannot imagine @CAPS1 to @LOCATION1 not knowing the language, not knowing anything, and leaving everything he knows behind. However that's what his parents did. they sacrificed so much for him. and he appreciates that more than anything. I think that the mood that the author chose for this story was perfect." 3 3 3 +13001 5 I think in some parts @CAPS1 was happy. And then is other parts @CAPS1 was sad because @CAPS1 is talking about her first house in america. @CAPS1 is happy because @CAPS1 can look back on the memories and be happy. 1 1 1 +13002 5 "The mood of this memoir is @CAPS1. I say this @CAPS2 his family always let people from the neighbor hood come over and they were like family. His parents let people stay with them ""until they got back on their feet."" @CAPS3 admired his parents for their ""strength and perseverance"". Through everything they had been through." 2 2 2 +13003 5 A mood for the memoir would be redeaming. It would be a redeaming mood because it talks about strugles like being an immagrent and being poor. It also talks about how a community that is going through the same strugles can come together and help each other out. The author also mentions how her parents sacrificed a lot to help her acomplish what she has become today. Since there are tradteties that help the author lead to success it would be a redeaming mood. 1 2 2 +13004 5 "The mood created by the author in this memoir would probably be gratefulness. One way the mood is gratefulness is how much Narciso likes his culture. ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" This shows that he is grateful of his culture. Another way is how much family he has that aren't really family. ""Alegria graced our kitchen table for meals more often then not. Also at the table were Sergio and Edelmira... My aunts Bertha and Juanita and my cousins Arnold, Maria, and Rosemary also... regularly joined our table."" This shows that he is grateful for all the extended family members he has. Lastly would be how his parents cared for him. ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age..."" This shows that he is grateful for his parents teaching him how important family and friends are." 4 3 4 +13005 5 The mood in this memoir is that Narciso is happy and very grateful for his parents sacrafices and willpower to make Narciso's life better and do give him more opportunitys in his life. 1 1 1 +13006 5 The mood of the @CAPS1 is @CAPS2 and happy because Narciso Rodriguez parents immagrated from Cuba to @LOCATION1. The parents lived in a one room apartment for one year and when Narciso Rodriguez was born They moved in a @NUM1 room house. The parants try to make the house as @CAPS3 can be. 0 0 0 +13007 5 "The mood set by the author is very solemn. He started by telling the scenery he lived in during a time of segregation. That was hard because he was Cuban. He didn't have a lot of money, and lived in an apartment. His life was like a somewhat below avereage life today.Towards the middle the memoir was still serious but happier in a sense. It was happier because we Know that he could have more life opportunities in @LOCATION1. He grew up and actually met people and made friends. Also he had a caring family that did what they could to make his life easier for him. He made the memoir and nice and passionate.The moods started off a bit shaky and very serious. Then he got into a happier mood by telling how his parent and family were good to him. It ended in the same mood started in the middle of the passage, happy." 2 2 2 +13008 5 "The mood in the memoir created by Narciso Rodriguez is a comfortable. It's comfortable because as I read the memoir it made me think of my own home life. And how important my family is to me. It also allowed to see how full and good his was to. I mean I love his descriptions of the food cooking in the kitchen and all the great smells. Also, the wonderfull music that played and the people that always came over to visit. And all that good family comfort that we all crave at one time or another. That's the feeling I get when I read Narciso Rodriguez's memoir." 2 3 3 +13009 5 "In the memoir the mood is very loving, @CAPS1, and thankfull. The mood is loving in many different ways. ""I will always be grateful to my parents for their love and sacrifice."" Also, ""it's gracious neighborhood or the many things I learned there about how to love."" Also @CAPS1 is expressed throughout this memoir. ""It was in this simple house that my parents welcomed other refuges to celebrate their arrival to this country, and where I celebrated my first birthdays."" @CAPS1 is expressed by the family gathering a the dinner table more times that not. The greatest mood in the memoir is how thankfull he is to his parents. ""I will always be grateful to my parents for their love and sacrifice."" Also ""I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly.""" 3 3 3 +13010 5 The mood is memorable because he loves remebering everything that he did in his childhood. Also he also put the memories that he really like in parentheses. Also he thanked everybody on what he did in his lifetime. That is why memorable is a memory in his lifetime. 1 1 1 +13011 5 The mood created by The @CAPS1 in The memoir is soothing and @CAPS2. I explains how @CAPS2 Narciso is at his parents house. The passage also explains how many friends he has. Narciso is grateful of his heritage which help set a good mood. 1 1 1 +13012 5 "In the memoir a @NUM1 year old man Narciso Rodriguez, Sr. good affored to move to the modest, three-room apartment soon called home. (@CAPS1 @NUM2) In 1961 he was born in a simple house in Newark, New Jersey. @PERSON1, Sr. was a mood like man he was greatful, kind, traditional, and happy. Narciso was greatful because his parents passed a rich culinary skills and a love of cooking to him. He was happy because he could move to an affordable three-room apartment. @PERSON1 is traditional because he would listen to Cuban Music that would fill the air with mixing the aromas of the kitchen (@CAPS1 @NUM3), he would also have a Cuban feast which brought life and the love (@CAPS1 @NUM4). His babysitter was his first friend that lived above him and graced his kitchen with meals. This man's life was very successful because his traits would show about his community." 3 3 3 +13013 5 "In the memoir ""Narciso Rodriguez"", from Home: The Blueprints of Our Lives, the author explains the true meaning of family and home. The mood is extremely deep and pearsonal as he describes the love and selflessness his family expressed. He explains that his mother and father emigrated from Cuba and moved to @LOCATION1 so that Narciso, their son, would have a better, successful life. Reading this memoir, I can picture Narciso getting very emotional expressing how grateful he is for his parents and family. He explains, ""I will never forget how my parents turned the simple house into a home"" (@NUM1). This sentence and last few paragraphs change the mood a great deal. It went from happy, appreciation, and an explanation of his life to deep, incredibly personal, and to his complete thoughts. Narciso had a great love and admiration for his family and friends like most people should be able to experience like Narciso writes about in his memoir." 2 3 3 +13014 5 The mood created by the author was a very unique one. The author was remembering and charising the memorys he had of his old home. He described his home by saying how brave and courageous his parents were to give him a better life also how his family was so rich in culture and how his family and neighbors would always visit because times were tough but the authors parents never turned them down. The author made it sound that it was the perfect childhood and described it with such detail and passian and that is why the mood is so unique and special. 2 2 2 +13015 5 "The mood created by the author was warm, welcoming, and gratefulness. When the author described his home, it gave a feeling of warmth and it was very welcoming. He made me feel like I was invited to his home with open arms and I could feel the environment around me. He gave of a feeling of gratefulness when he explained how grateful he was to his parents for sacraficing everything and how much he appreciates everything they have done for him. He showed in the passage the warmth and love in his home." 2 2 2 +13016 5 "In the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of our lives, Narciso Rodriguez creates a powerful mood for the reader. First, right of the bat I felt love and thoughtfulness, which I still felt throughout the story. ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" This made me think of my parents immediately. My father gave up his career and my mother gave up her family to give me and my brothers a better life. This feeling is without words. I can't describe the level of gratefulness I feel, just as Narciso does. Secondly, the admiration I shared with Narciso. She described her parents well enough to put me in her shoes. ""I've often told them of my admiration for their strength and perseverance, and @CAPS1 thanked them repeatedly."" What her parents did for her was incredible and something to learn from. From Narciso's story, I got a sense of admiration, greatfulness, and connection, which I believe are the moods she created throughout his story." 2 3 3 +13017 5 His mood was like happy and unsatisfying at the same time. They also say like how his/her life is so I think this book is good to. Or we can say article. It's like all about how his/her life story is. 0 0 0 +13018 5 "In this memoir by Narciso Rodriguez you can really see the moods of love, friendship, and perseverance that are created. In the second paragraph you can see the love that was in Narciso Rodriguez's life and home. ""Here, the innocence of childhood the congregation of family and friends and endless celebrations that encompassed both, formed the backdrop to our lives in a warm home."" Love was definitely a big mood that ran throughout the Rodriguez home and it shows greatly in this memoir.Another mood that is shown very strongly in Rodriguez's memoir is friendship. In the last sentence of the fourth paragraph you can see this, ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This sentence shows what great friendship and love the Rodriguez family offered by always lending a helping hand.The final mood that is strongly shown throught this memoir is perseverance. The Rodriguez family moved from Cuba into a one-room apartment in New Jersey it states in paragraph one. The Rodriguez family took whatever jobs they could get and just wanted the best for their children. The Rodriguez family always rose when they fell and in this memoir that mood shines greatly. In this memoir by @PERSON1 family is immensely important to him and that mood shows greatly." 4 4 4 +13019 5 "In this memoir, Narciso Rodriguez creates a heart-warming, and comforting mood for the readers. First, we see this comforting mood being established through the setting. ""Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home,"" (@CAPS1 @NUM1). This creatively loving setting gives the reader a sense of comfort when reading the piece. Next, we see this sense of heart-warming coming from Rodriguez's word choice. ""... there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age..."" (@CAPS1 @NUM2). This rich, vivid word choice sets a caring mood through out the piece. Lastly, the family's background started out somewhat bitter, and depressing when Rodriguez explains their financial instability in @CAPS1 @NUM3, but then later on, we see the family moving to @LOCATION1, and finding comfort in their new home. ""My parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us,"" (@CAPS1 @NUM4). This sense of family contributes to the heart- warming mood created by Narciso Rodriguez in this memoir." 4 4 4 +13020 5 "The mood that the author created in this memoir was love and gratefullness. The author is trying to get their message across about how much a family is bonded together and how much there is to be thankful for. ""I will always be grateful to my parents for their love and sacrifice."" This shows how much love the author has to be grateful for. He is also trying to say that there is no way to express his emotions and love to his parents. ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" The authors main point is to thank their parents for everything they have done. ""I will never forget how my parents turned this simple house into a home""" 3 3 3 +13021 5 "The mood created by the author in this memoir is love, happiness, and self lessness. The of the memoir that emphasized the mood of love was when the author mentioned that, ""It was here where I learned the true defonition of family. I will never forget that house or its gracious neighbor hood or the many things I learned there about how to love."" The mood for that exerpt was love because it explains how much he cared for his family and neighbors. There were many exerpts in this memoir that gave the mood selfless ness, As such, ""They came self lessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers, in the country they love."" This indacates selflessness by explaining how they left behind their jobs, family, and friends, all to give their children what was best for them. The overall mood of the story was happy because it explained their happiness, struggle, courage, good outcome, and beloved memories." 3 3 3 +13022 5 "The mood created by the author in the memoir was a mood of admiration. I think it was a mood of admiration because Narciso admires the fact that his mother and father both left their ""families, friends, and careers in the country they loved."" @CAPS1 mood that the memoir sets is the mood of family and friends. I think the memoir sets the mood family and friend because it talks alot about the meaning of family for example in paragraph @NUM1 the author says ""Growing up in this environment instilled in me a great sense that 'family' had nothing to do with being blood relative."" That means that even though someone is not blood related to you can love them just as much as if they were. @CAPS1 thing the memoir said was ""I learned the real definition of 'family'. And for this, I will never forget that house or its gracious neighbor hood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" This means that his parents turned a small house into a welcoming. loving place that holds so many memories." 4 3 4 +13023 5 "The mood created by the author was grateful and happy. The mood was grateful because Narciso was glad his parents moved to the @LOCATION1 and started their wonderful home. Narciso was grateful of this because he grew up in an environment he loved. The mood created by the author is happy. The mood is happy because Narciso is happy that he grew up around people who loved him. This made him happy because he knew that he was safe and loved with these people. When his community of differences came together to form one community, this made Narciso happy. The mood is both grateful and happy. I would also be grateful for this, happiness is key to having friendships and famalies." 3 2 2 +13024 5 "In the memoir Narciso Rodriguez, the mood is set to reflect family values and memories. For example in paragraph @NUM1 she explains that her family is From Cuba and they raised her in a replica of a traditional Cuban home. She tells us that her parents bolth cook traditional Cuban foods and teach her how to cook as well. Then another example is from paragraph @NUM2 when she tells us that her family stays with her a lot, such as uncles aunts, cousins, grandparents, they @CAPS1 stay whith her until they are able to get on their feet again. Finaly in paragraph @NUM3, @NUM4 and @NUM5 It explains the sacrifice that her parents had to give in order to start a new life in the US, and about how her familly takes in other refuges and also about how she will never forget her parents and all the memories that go along with the house." 2 3 3 +13025 5 The mood of this memoir is love and staying a family. The author sends a message to her readers when one leaves what they once had. Her tone tells the mood by writing with passion. The mood is basically is being happy with what you have. that's how the family written about acts in this memoir. 2 2 2 +13026 5 "The mood at the beginning was kind of sadd but then Narciso starts to realize the good things in her life like how her mom turned a simple place into a home and she says she's thankful for her cuban heritage and in paragraph @NUM1 she says she is most thankful for her caring and selflessness parents and that she loves them dearly for everything they do not for just her, but for the world." 1 2 2 +13027 5 The mood created by the author in the memoir was ment to be a happy and thankful mood. The mood was created happy because the child Narciso was very hapy that his parents moved to @LOCATION1. He was also happy because his house was not just a house it was a home. The kin Narciso was thankful because his parents let other people into the home untill they have somewhere elese they can call home. He is also thankful that he got his parents marvilous culinary skills so he can cook very well. He is also thankful for his parents love and sacrifice. The mood that we are suppose to get is a happy yet calm mood well we read this because Their is nothing to exciting but their is some parts where you get happy for what they did and you feel calm because as I said their is nothing really jumping out at you. it is just a life story. 3 3 3 +13028 5 "The mood the author created in the memoir was joyful and optimistic. In the memoir, the author describes his home and how even though the house wasn't much, his parents made it feel inviting and comfortable. In his neighborhood, all the people were friends and took care of each other when they needed help. The author's home reflected the Cuban culture because of his parents. The author describes the hardships his parents had to go through like adjusting to a colder climate in not getting good jobs. Even though they had their own troubles, they were selfless and didn't let their problems get to them. The author is very grateful for how his parents gave him a home and taught him what a family really was." 3 3 3 +13029 5 The mood the @CAPS1 created was a mood of happiness and gratitude. The @CAPS1 States how he will always be grateful for what his parents did for him. He also stated that he admired them and honestly could never repay them for everything they did This shows how the @CAPS1 @CAPS4 how his parents worked so hard to make his life better. He is forever greatful. 2 1 2 +13030 5 "In the memoir, ""@PERSON1,"" by Home: The Blueprints of Our Lives, The mood is set right from the beginning. The first thing said to Start the mood was, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am extremely grateful.)"" This shows the author is grateful and happy. The memoir also said, ""Passionate Cuban music (which I adore to this day) filled the air mixing with the aromas of the kitchen."" This shows how the author is very proud. Also lastly the memoir mentions, ""I will always be grateful to my parents for their love and sacrifice."" This again saw how grateful the author is. In this passage the mood is set to be grateful, happy, and loving right from the start." 3 3 3 +13031 5 "The mood this memoir created was a warm greatful feeling, with his praising for his parents and saying how much he loves his tiny home in his hometown and how greatful he is for his parent's selflessness." 1 2 2 +13032 5 "The mood of this memior is slightly diffucult, somewhat depresing, yet gratefulness and now I am going to explain to you how. The mood is slightly diffucult and depressing because there is a different culture and a brand new language. Also in the united states you have to have get a new job. This short story is also gratefull because you have a amazing oppertunity to start a very better life and get a great education." 1 1 1 +13033 5 The title of the story is Narciso Rodriguez. The authro is the @CAPS1 Narciso Rodriguez The mood I think is this story the author gave was pretty good. The author knew when to be excited and knew when to not be excited and he did a good story. The author put in explition marks in when the author was happy or sad. So to me I think this was a good story and I like it. The mood went right with it. 1 1 1 +13034 5 "The author creates a grateful mood. The author writes about how his parents had good jobs in Cuba but left everything to give their children better lives. He also writes about how he grew up, which is parents teaching him about music, cooking, and family. His parents never got the jobs they deserved because of the barriers to work for their children. The author is grateful for the things parents did for him so he could get a better life." 2 2 2 +13035 5 "The mood created by the author of the memior exposed various emotions and contrast. In paragraphs @NUM1 and @NUM2, the author talks alot about culture, he explains how they could not live without having their practice, in their lives. ""Rich culinary Skills and the love of cooking (and for which I am internally grateful). Passionat Cuban music (which I adore to this day) ...""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity"". Another mood the author captures is greatfullness. In paragraph six the author explains how he is so grateful for the strength and courage his parents showed from moving away from Cuba. ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing that I could have done."" The final way the author creates a mood is during the last sentence of the memoir. The author states ""I will never forget how my parents turned this simple house into a home"". This quote captures the mood of being thankful for the unity of his family. He looks up to his parents for making his life as great as it is today. These are some moods the author creates throughout the memoir." 3 3 3 +13036 5 "Througout the story, Narciso Rodriguez shows examples of how grateful, loved, and unified his family felt with their struggles they had overcame and heritage they were proud of. Paragraph @NUM1 illustrates the fond memories Narciso has of his house and childhood. Paragraph @NUM2 displays Narciso's strong sense of family within his local @CAPS1 community. Paragraph @NUM3 explains Narciso's parents' rough journey from Cuba to @LOCATION1, and paragraph @NUM4, Narciso explains how grateful he is for his parents' hard work and determination for their children to have a good life. ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love"" wraps up the whole article and shows how grateful and cared for Narciso feels for his warm, welcoming home celebrating life, love, and their Cuban culture." 4 2 2 +13037 5 The author of this memoir presented a kind of grateful and cheerful mood. I believe it is this type of mood because in the memoir he talks so much about on how that he is so grateful that his parents were so caring and selfless people because they moved from their home country cuba just for the sake of their children. He presents the cheerful mood by focusing all the good things in his life with his parents in his house and neighborhood. Example's are him talking about how all the cultures got along good with one another in his area. He also talked about the good times he had with his parents in the kitchen. The memoir he left was definetly a pausitive one not a negative one. 2 3 3 +13038 5 "In the memoir of Narciso Rodriguez the mood of this is full of love and happiness.When Narciso is talking about his mother and father he starts to talk about how they always loved and cared. ""I will always be grateful to my parents for their love and sacrifice... I learned there about how to love. I will never forget how my parents turned this simple house into a home."" This shows that the whole house was filled with love because of Narciso's parents. Also,the way Narciso talks about his parents shows that he lovef his parents. This also showed happiness because since he would never forget his home in must've been nice there. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebration that encompassed both, form the backdrop to life in our warm home."" This shows that the house was full of happiness and warmth. This is because of all the friends, family, and celebration. In the memoir of Narciso Rodriguez the mood of this is full of love and happiness." 3 2 3 +13039 5 "The mood created by the author is outstanding. The mood is nice, and warm-hearted. the author talks about how the heart of the home is in the kitchen; and how cuban music is always playing this sets a happy, cheerful mood. then, the author talks about how their home is always open and welcome to family and friends. this sets a warm, loving mood finally, the author talks about the cuban feasts and close relatives he has after reading the story, you feel like part of the family." 2 2 2 +13040 5 "Narciso creats a mood that shows family ties and unity within his community. By showing the way that each member of the community are willing to help each other gives a positive and freindly mood to the memoir. Also, he shows how members of the community treat each other as family regardless of race or ethnicity. This gives the the memoir a loving and accepting mood to it." 2 1 2 +13041 5 "Throughout this memoir a very important mood is portrayed and that is thankfulness. Throughout this memoir Narciso shows great thankfulness towards her parents and how they gave up everything in they country they loved, Cuba in order for their kids to have more opportunities and to have a better life. Also in this memoir it talked about her parents making the best of what they do have and always helping people in their communitie hoping that they would return the favor if needed. In their neighborhood all the races were together in unity despite the customs else where. In @LOCATION1 her parent's struggled both personally and finecially and they had to accept they might not get the jobs they deserve but they did it all for their kids, they had to endure the tough times for the better of their kids. Narciso has thanked his parents repeatedly for their love and sacrifice but in reality he says there is no way to express his gratitude. Narciso said he will never forget how his parents turned a simple house into a home. His parents perseverance is the basis of his life today that taught him great lessons." 4 4 4 +13042 5 "The mood created by the author I think he was in a good mood because the story didn't talk about nothing bad it talk about happiness and how parent reas their @CAPS1 with no help of any one, and how their @CAPS1 felt when they were big they were happy and proud." 1 1 1 +13043 5 The mood created by the author in the memoir is proud This is the mood because he is showing thanks to all of the things that he learned in his childhood that he is proud of. One example of this is when the author talks about his Cuban heritage and how he still loves Cuban music. He is also proud for his parents immagrating to the @LOCATION1 to start a better life for him. He is also proud because even though the other people that lived in the neighborhood with him were of different backgrounds everyone accepted eachother. Another reason he is proud is because his parents would help give so many people home to stay in. The author is most proud of his parents because of tier love and sacrifice. They were loving to all and they sacrificed a lot to get to where they were. The mood of the author in the memoir is that he is very proud in what his parents have done. 3 4 4 +13044 5 The author of the memoiar was writing about a boy who grew up in @LOCATION1 and loved his first home. the @CAPS1 of this story is that happiness can be created and kept in one place. The boy in the story was very happy about how his parents took care of him and gave him a safe enviroment to grow up in he said that home is were @CAPS2 feel geruenly happy and want to stay there the rest of your life. 1 2 2 +13045 5 "The mood of this memoir is relaxed, happiness and thankfulness. Narciso makes their home feel peaceful and realxed. ""a great sence that family had nothing to do with being blood realted."" This shows that @CAPS1 is very happy with his household and his life that @CAPS1 shares with all of his ""family."" @CAPS1 is very thankful for his parents for giving him a good life and for giving up theres in cuba do come to @LOCATION1 to help give him a better life. ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned the simple house into a home." 3 3 3 +13046 5 "The mood of this memoir is almost remorseful, remembering his childhood home, his family life that includes his neighbors and extended family Narciso Rodriguez creates a feeling of being home and being surrounded by people you love. He explains how his first friend was his babysitter and the person who lived above him. And his real grandparents were still in Cuba so his downstairs neighbors became his surrogate grandparents. He also creates a mood of having no where to turn when it came to his parents getting jobs in the United States. They had to settle with getting jobs underequiped for their abilitie. His parents, he said ""came selflessly, as many immigrants do, to give the children a better life, even though it meant leaving behind their families, friends and careers in the country they loved"". He feels that this is one of the reasons his childhood house was turned into a home." 2 3 3 +13047 5 "In the memoir, Narciso Rodriguez describes his loving family and creates a appreiative, loving, and homey, comforting mood for the reader. The author thanks his parents for their kind and loving actions. It makes the reader feel admiration towards his parents and the author is trying to create a sense of appreciation and gratitude towards his parents. In paragraph @NUM1, the author explains his appreciation for his parents; ""But in reality, there's no way to express my gratitude for the spirit of generosity impressed on me at such an early age and demonstration of how Important friends and family really are."" The author is also trying to create a comforting mood. When he explains the atmosphere of his home, he is trying to create a homey mood; ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" (@CAPS1 @NUM2). This quote is comforting and adds to the homey mood. The author is also trying to create a loving mood in the sense that he is explaining the caring acts of his parents. In paragraph @NUM3, the author describes his generous parents, ""My parents always kept their arms and their door open to... many people... I will always be grateful to my parents for their love and sacrifice"" (@CAPS1 @NUM3-@NUM1). This shows the generosity of his parents and the author is trying to create a loving mood. @ORGANIZATION1 develops a grateful, comforting, caring mood." 4 4 4 +13048 5 "The mood that the author was trying to create was a sense of hope, family and happiness. Hope was @CAPS1 because his family helped others by letting them temporarily stay with them until they got back on there feet which provided hope for the extended family. Family was @CAPS1 be cause in the last paragraph he is explaining how in this tiny apartment you learned the definition of ""family"" through welcoming refugees and celebrating his first birthdays and having a loving, careing enviroment. Finally I think happiness was @CAPS1 because he was explaining how grateful he was for his parents coming to america to give him a better life and also in paragraph two he was explaining how his home environment was filled with cooking and music which can be factors of happiness. These are some moods that the author was trying to show." 2 2 2 +13049 5 "In the memoir ""Narciso Rodriguez"" (who is also the author) is writing about his live changing experience. The mood of the poem is happy. His parents immagrated from Cuba to the United States in 1956. When he was growing up he learned all Cuban traditions and envied them all. He's very proud of his parents for the risk that they took for him. This is why the mood of the story is happy." 2 2 2 +13050 5 "In the memoir, Narciso Rodriguez, several moods such as comfort, sympathy and a sense of family are created by the author. Immediately as I began to read I felt comforted by the author writing about the home and family. I felt especially warm inside when he talked of his fond memories with friends. As the author continues, you cannot help developing a sense of security. However, once you continue reading and get into @CAPS1 @NUM1, the mood darkens. The author talks about the hardship his parents had to endure to give him a better life. I solemnly read on and was filled with a sense of family. ""I'll always be grateful to my parents,"" the author writes. ""for their love and sacrifice."" (@CAPS1 @NUM2). He explains how much he appreciates the love and care given to him by his family. While reading this memoir, I have felt comforted, sympathetic, and a strong sense of family, as I'm sure the author had too." 3 3 3 +13051 5 "The mood created by the author, Narciso Rodriguez was calm and loving. @CAPS1 creates this mood by explaining a loving family, new friendships, and an overall welcoming feeling.To begin with, in paragraph Narciso Rodriguez states, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This quote creates a calm loving mood because it explains that the author enjoyed his childhood, and loved if family who loved him back. @CAPS1 again complements his family and the way @CAPS1 was raised in the first sentence in paragraph @NUM1, also creating a common loving mood.Next, at the end of paragraph @NUM1 Narciso Rodriguez explains the love @CAPS1 feels towards his friends when @CAPS1 states, ""... All of these cultures came together in great solidarity and friendship."" @CAPS1 again shows the love towards his friends in the beginning of paragraph @NUM3. Showing love towards his friends creates a calm loving mood.Lastly, the calm and loving mood was also created because of an overall welcoming feeling. In paragraph @NUM4, the author welcomes the reader into his past by speaking about his childhood home that @CAPS1 loved. Also in the last sentence in paragraph four @CAPS1 explains the people his parents help stating, ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This quote explains welcoming people people creating the mood. Explaining a loving family, new friendships and an overall welcoming feeling create the calm and loving mood, created by the author." 3 4 4 +13052 5 "The author creates a happy and grateful mood in the memoir. Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home. In our neigborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship. I will always be grateful to my parents for their love and sacrifice. There is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are. It was in this simple house that my parents welcomed other refugees to celabrate their arrival to this country and where I celebrated my first birthdays. It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love. It was where I learned the real definition of family. I will never forget that house or its gracious neighborhood or many things I learned there about how to love. I will never forget how my parents turned this simple house into a home" 2 2 2 +13053 5 "The feeling in this article when it talks about family is love, peace, happiness, and gratefulness. Narciso understands that his parents left everything in Cuba for him. @CAPS1 could tell that his parents love him very much and @CAPS1 is grateful for that. In paragraph @NUM1 @CAPS1 states, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 has the opportunity to be born in @LOCATION1 and having a better life. Narciso also learned that @CAPS1 could love a non blood relative because they could be his family too. There were many people that were like family to him. @CAPS1 loved them and they were happy spending time with each other. In this memoir the mood would most likely be happy and loving." 2 2 2 +13054 5 "The mood created by the author in the memoir shows a kind community, careful, and courage. My first quote is ""...hard working immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" The quote means the mood of the community is kind and helping. My second quote is ""My parents always kept their arms and their doors open to the many people we considered family."" This quote means that his parents mood was careful and do anything for people if they needed help. My third and last quote is ""My mother and father had came to this country with such courage."" This quote means like before they came to the United States they had courage and now they were going to make it and be successful. Those are my three quotes and examples of the mood created by the auother in the memoir." 3 3 3 +13055 5 "the mood created by the author, I would say good. there very gratefull to there parents about everything. family is very important in the excerpt. In paragraph @NUM1, where it says ""Here, the innocence of childhood, congregation of family and friends, and endless celebrations that encompassed both"" is an explanation of how and why there so gratful towards there family. In paragraph @NUM2, where it says ""growing up in this great environment instilled me a great sense that ""family"" had nothing to do with being a blood relative."" explains that being close to someone doesnt mean you your blood related." 2 2 2 +13056 5 "In the memoir, ""Narciso Rodriguez"" from ""Home: The Blueprints of Our Lives"" by Narciso Rodriguez, the mood created by the author was mostly happiness and celebration. The author constantly talks about how his home was a wonderful place and a happy environment to live in. One example was in paragraph @NUM1. It talks about the endless celebrations and countless congregations of family and friends. This is clearly a happy thing to happen. Also, in paragraph @NUM2 it talks about the wondrous joining of the different cultures in the neighborhood. It was wonderful because at that time there was much trouble with segragation and racism. It created a happy environment to live in compared to the many other towns with horrible racism and segregation. Finally, in paragraph @NUM3 it talks about how their arms and doors were open to anyone who needed them. This allowed not only them to be happy but for other people to share their happiness with them. In this memoir the mood created by the author is mostly happiness and celebration. " 4 3 4 +13057 5 "Nacisco was happy of what she had, even though she was poor. She loved her heritage which she still adore today. She is proud of being an cuban. She had good relations in her house. She had great neighbors. Her parents were hardworking and supported her. Her family had a good relationship with family and friends. She appreciated what her parents had done for her. They gave up their career and beloved country to move to @LOCATION1 for her to have a better life. Her friends and family, refugees came to her house all the time. Her baby sitter became her first friend. In @LOCATION1, they celebrated her first birthdays. These event would stay in her memory. She would never forget how her parents turned her house into a home, where she belongs. Her life will always be filled with music and love. So even though she had hard times, she still apreciated of what she had." 3 4 4 +13058 5 "The mood the author created in this memoir is very happy and relaxed. It is also very opening. It is opening because it says we let anyone we consider family stay over for however long period of time. They are very happy and relaxed because in paragraphs @NUM1 it seems like everyone is mellow, and greatful to be in this country. They are so happy to have decent jobs, and new lives. This is the mood the author swings into the story. The author did a great job fixing these into the story to make it flow very well." 1 2 2 +13059 5 "The mood created by the author in the memoir is very greatful and happy. For example in paragraph @NUM1 it says that his parents had good cooking skills and then notes that he is very greatful. So basically he is very greatful that he had or has a chance to life as @CAPS1 and have the opertunities that others don't have. And very, very happy that he did not just live in a house. his parents made it into a home with loving memories and his family moments." 1 2 2 +13060 5 "The mood of the @CAPS1 of the text ""Narciso Rodriguez"" is very thankful and happy. I can tell this because in @CAPS2 @NUM1 it shows how greatful @CAPS3 was to live in that house with his parents. And in @NUM2 it says how much love Narciso had for his parents and how thankful @CAPS3 was. And finally in @NUM3 the @CAPS1 tells the reader how @CAPS3 was thankful for immegrants for giving their children a new begginning @CAPS4 are ways you can tell the mood of the @CAPS1 in the text" 2 2 2 +13061 5 "I think the mood was happy and @CAPS1. Because They @CAPS2. The boy Loved his parents. They had to leave theirs friends. Some family there and They would miss them, but the parents wanted a better life for thier children. They were @CAPS1. to Move." 1 1 1 +13062 5 "The author created a mood of happiness and love. When Narciso Rodriguez was thinking back to the past he loved his home and his parents for what they did for him. The way, he lived was the mood of his house. It was free and welcoming. Just as the way his parents were to other immigrants. Narciso Rodriguez's cubian home was one of the most important things he cared about and grateful for." 2 1 2 +13063 5 "The mood created by the author in this memoir was more of a homey-heart touching mood. To know that his family helped other immigrants in their time of need, in any culture, was really getting the point across. That where you live is just a house until you make it a home." 1 1 1 +13064 5 "The mood created by the author in the memoir was a happy mood. It is a happy mood because Narciso finally knew what family actually meant.For example when Narciso says ""It was in this simple house that my parents welcomed other refugees to celebrate their arrival to this country and where I celebrated my first birthdays, It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love."" This quote shows the mood that Narciso had wich was happy.In conclusion Narciso had a happy mood because he finally knew the real definition of family." 2 2 2 +13065 5 "In this @CAPS1 this is the mood I think the author is trying to create. Well I think its happy. I believe this because he doesn't use depressing words or ephrasses. Also, he had a great family. He had stateted that he enjoyed his lifestyle and his home!" 1 1 1 +13066 5 The memoir of the author were of is house as a kid. and How it was made In to a home for him and his famaliy 0 0 0 +13067 5 The author did a good job bringing different moods into the memoir. There was a sad mood but also happy at times to. When there was a happy mood the memoir was more enjoyable. The last sentence leaves people knowing he wouldn't trade it for anything 0 1 1 +13068 5 "Throughout this @CAPS1 there is a very happy and loving vibe. This is shown in paragraph @NUM1, ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen. Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, form the backdrop to life in a warm home. This paints a glorious picture of what @CAPS2 life in the house was like. Another example in the text is at the end, in paragraph @NUM2, ""I will never forget how my parents turned a simple house into a home."" This shows with happiness and love, It does not matter how rich you are, or what you own. Anything can be a home." 2 2 2 +13069 5 "It brings a happy mood. It brings a very warm feeling about you. It gives you an understanding of how people use to live. The family had a close relationship almost like family with their friends. They like to have people over their house and cook for them They considered people that werent really their grandparents, grandparents. He got to grow up in a very nice family and in a nice way. They brought love to all people." 1 2 2 +13070 5 "The mood created by the author in this memoir is happy and loving. The author resortes to specific things she loves it remembers, such as her parents, family and friends. She also explains her past with such detail and care. When she explains the kitchen she talks about the music and the aromas and all the love of her parents. When she talked about he friends she mentioned Alegria her neghbor, baby sitter and first friend. The author talks about how her parents let friends and family in so often that it was a close-knit comunity and everyone cared and loved each other." 2 2 2 +13071 5 "In the memoir @PERSON1 from Home: The Blueprints of Our Lives there is a thankful and gracious mood. Talking about his parents immigrating, @PERSON1 says, ""They came selflessly, as many immigrants do, to give their children a better life,"" This quote shows thanks because @PERSON1 is glad his parents immigrated to give him a better life. Another example of a gracious mood is in paragraph @NUM1, ""I will always be grateful to my parents for their love and sacrifice."" @PERSON1 shows his is gracious for what his parents did and how much they care about him. A final example of thanks is, ""It was here where I learned the real definition of ""family."" And for this, I will never forget that house or its gracious neighborhood."" @PERSON1 is thankful that he got the opportunity to grow up in such a great house and community. As you can see from these examples, the memoir had a very thankful and gracious mood to it." 4 4 4 +13072 5 "The mood was calm as if it was a wonderful place to be in that will also makes like wanting to live their forever. As in the relevant it says ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home"". Passing the mood of his great @CAPS1 house and his coulture in this relevant it shows that they have wonderful times and great friends." 1 2 2 +13073 5 "In this memoir, there are many moods created by the author. One major mood in this memoir is love, and loving. In paragraph @NUM1, ""... the many things I learned there about how to love,"" and also, ""... not just scent and music but life and love."" A second major mood in this memoir is warth. In paragraph @NUM1, ""it was in the warmth of the kitchen..."" And third, a major mood in this memoir is gratefullness and being grateful of what we have. In paragraph @NUM3, ""and for which I am externally grateful,"" and in paragraph @NUM4, ""I will always be grateful to my parents for their love and sacrifice."" These are just some examples of moods created by the author in this memoir." 3 3 3 +13074 5 "The mood created by the author in this memoir is lovable. Narciso Rodriguez said he will always be grateful to his parents for their love and sacrifice. He said that what they did was a more courageous thing than he could have ever done. Also, the mood is grateful. In the memoir, it says that Narciso thanked his parents repeatedly for what they have done. He also states, ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship. It was a close knit community of honest, hardworking immigrants, who extended a hand to people who, while not necessarily their own kind, were clearly in need."" That shows that he is grateful to have friends and family. Also, the mood is caring. This is because he stated that her parents came sefflessly to give their children a better life, even though it meant leaving behind their friends and jobs." 3 3 3 +13075 5 "The mood the @CAPS1 created in the memoir is a peaceful happy riminder. the @CAPS1 said how he remenber coming to @LOCATION1 to get a beter Life. The @CAPS1 @CAPS2 alot @CAPS3 in @CAPS5 @NUM1 the @CAPS1 says ""Growing up in this enviroment istelled in me a great sense that ""Family"" had nothing to do with being a blood relative."" The @CAPS1 says how glade he is that his parents help him out a lot. @CAPS3 he says in @CAPS5 @NUM2, ""I will always be grateful to my parents for their love and sacrifice."" The @CAPS1 reminds us alot about how he started and how he is now. at the end he says ""I will never forget how my parents turned this simple house into a home."" (@CAPS5 @NUM3)" 2 3 3 +13076 5 "I think the mood that is created by the author in this memoir is cheerful and welcoming. In paragraph @NUM1 he says, ""My parents always kept their arms and the door opened to the many people we considered family, knowing that they would do the same for us."" The author is explaining how their house was always open to anyone that ever needed, all wanted to come, which is a very welcoming feeling. In paragraph @NUM2 he says, ""I will always be grateful to my parents for their love and sacrifice."" The movie is creating when he is saying this is very cheerful because he is very happy and grateful for what his parents did for him, and by him showing that it makes the mood cheerful. In paragraph @NUM3 he says, ""they came selflessly, as any immigrants do, to give their children a better life even though it meant leaving behind the families, friends, and careers in the country they love."" When he says this, you just get this nice, warm feeling because they gave up everything they loved just so that their kids could have a better life. This gives off a very happy and cheerful mood. In conclusion when the author talks about his family, and his life he gives off a very cheerful, and welcoming mood." 2 2 2 +13077 5 "The @CAPS1 of the @CAPS2 was happiness and out going, nice @CAPS3 told it good @CAPS3 felt happiness Solidarity." 1 1 1 +13078 5 "In the memoir, the author creates a loving mood. I think he creates a loving mood as opposed to something else because of the way he describes and explains things. For example, when he is describing his parents cooking. ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adore to this day) filled the air,"". The phrases in parenthesis portrait to me a loving mood. Another part of the memoir that really portraits to me a loving mood is the way the author describes this community and his parents sacrifice is shown by these next to quotes ""it was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need"", ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved. They struggled both personally and financially,"". The detail and emotions he uses in those quotes makes the mood a loving mood for all the author gives a great and loving mood in this memoir." 3 3 3 +13079 5 "While reading the memoir titled ""Narciso Rodriguez"" from Home: The Blueprints of our lives by Narciso Rodriguez. I could feel the great sense of mood and emotion that the author poured into it. To describe the mood he created in this memoir, I would have to describe it as a great sense of love and gratitude for some things called home and family. This memoir is just gushing appreciation for family, parents, love, courage, and a caring home everywhere you look.Rodriguez starts off by describing his Cuban heritage and how it was always there during his childhood. In paragraph @NUM1 it states, ""My parents... Passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adored to this day) filled the air..."". Here you can really feel he appreciated how his parents incorporated his heritage into his daily life as a child and how he still has fond memories of those times. Rodriguez than goes on to discuss in paragraphs @NUM2 and @NUM3 the community he had grown up in and what he learned from being part of such a tight knit neighborhood, such as to open up your heart and home to those in need and to never hesitate when the people you care about need help. This is shown in para @NUM2, in two instances when he says, ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" And where it also says, ""In our neighborhood, despite customs elsewhere, all these cultures came together and great solidarity and friendship.""At the end of his memoir, Rodriguez then goes on to describe the love and appreciation he has for his parents for having ""Such courage"" and how ""They came selflessly"" (para, @NUM5) to @LOCATION1. In para @NUM6 it tells, ""I will always be grateful for their love and sacrifice."" Rodriguez really tells of how their faithfulness and great examples have also helped shape him into the man he is today.To conclude, I truly need to say is that Rodriguez did a marvelous job with giving his memoir a very generous dosage of mood. It spoke volumes of how indebted he feels to his parents for giving him a loving home and teaching him how much family means, which I believe is the best gift a parent can give their child." 4 4 4 +13080 5 "The mood created by the author in the memoir was being gratefull. The author takes paragraphs @NUM1 and @NUM2 to fully explain his gratitude to his parents. ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing then I could have ever done."" (@CAPS1 @NUM1) ""I will never forget how my parents turned this simple house into a home."" (@CAPS1 @NUM2). These are the @NUM5 main points from paragraphs @NUM1 and @NUM2. The author is thanking his parents for the numerous amount of things they have done for him, he is grateful. The author shows his gratitude throughout the excerpt, this common mood always remains.For instance, in @CAPS1 @NUM8 the author reminds the reader that ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" Or in @CAPS1 @NUM9 when he writes ""my mother and father had come to this country with such courage, without any knowledge of the language or courage."" As you can see, the author constantly reminds the reader of how thankful/grateful he is to his parents. This sets the mood of being grateful throughout the story!" 4 4 4 +13081 5 "The mood of the memoir is very appreciative and grateful. The mood of the memoir is very appreciate and grateful because the author is looking back on how his parents turned a three room appartment into a home. I know this because in paragraph @NUM1 the author writes ""I will never forget how my parents turned this simple house into a home."" This supports the mood of the memoir because the author is grateful to his parents for teaching him what a home really is. Also the mood of the memoir is very appreciative and grateful because the author tells of how his community was a family. I know this because in paragraph @NUM2 the author writes ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" This supports the mood of the memoir because the authors appreciative of the atmosphere of the place that he grew up in. Another reason the mood of the memoir is very appreciative and grateful is that the author understands his parents hardships. I know this because in paragraph @NUM3 the author writes ""I will always be grateful to my parents for their love and sacrifice."" This supports the mood of the memoir because the author appreciates the fact that his parents gave up so much to make a better life for him. The mood of the memoir is shown in many ways." 4 4 4 +13082 5 The author fellt happ she war born in the @CAPS1. S. A. But she loved her cubin haratig. 1 0 1 +13083 5 "In the memoir, by Narciso Rodriguez the mood created by the author is togetherness. There are many other words to describe the mood, but togetherness describes the family as a whole. The parents accepted almost anybody into their home and they were very welcoming. To illustrate this, it says in the memoir, ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" @CAPS1 could also describe the mood because the Rodriguez family let their neighbors and family to their table and they were very friendly. In the memoir it states, ""My aunts Bertha and Juanita and my cousins Arnold, Maria, and Rosemary also lived nearby and regularly joined us at our table."" That quote also shows togetherness within the family. That the Rodriguez family stayed together through all the hard times of moving countries, getting new jobs, and starting over was really an accomplishment, especially in @LOCATION1. The memoir shows that, ""... My parents both had to accept that they might not be able to find the kind of jobs they deserved."" @CAPS2, the family created the mood of togetherness, especially going through hard times." 3 4 4 +13084 5 "I think the mood the author is trying to give is thankful, and satisfied, and that he is loved. An example of his satisfaction is ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the to life in our home."" And an example of his thankfulness is ""My parents both shared cooking duties and unwittingly passed on their rich culinary skills and love of cooking that is still with me today..."" And lastely an example of him being loved is ""Growing up in this enviorment instilled me a great sense that ""family"" had nothing to do with being a blood relative."" I can tell that Narciso feels all three of those feelings and he presents it well." 3 2 2 +13085 5 "The mood created by Narciso Rodriguez in this memoir. Is a very happy and grateful mood. It is happy because in paragraph @NUM1 it says ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, Formed the backdrop to life and are warm home. It is grateful because he says in paragraph @NUM2 ""They came selflessly as many immigrants do, to give their children a better life, even though it means leaving behind their families, friends, and careers in the country they loved. In paragraph @NUM3 it says ""I will always be grateful to my parents for their love and sacrafice. This is the mood created in this excerpt." 2 2 2 +13086 5 "Narciso Rodriguez sent a very loving and inviting mood to his memoir. He wrote about his great home and family. He showed how happy everyone was to be together and nothing went wrong. Narciso tells how his parents sacrificed everything in Cuba for him. The whole neighbor was tight-knit and loved each other. Family was defiantly a huge part of Narciso's life and he expressed that with his writing. His home was a ""traditional Cuban home"". By having his heritage surrounding him, his childhood was very pleasant. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our new home"". Narciso sets a loving mood with his great family and home memories." 3 2 3 +13087 5 "In the memoir of ""Narciso Rodriguez"" by Narciso Rodriguez. The mood of the reading could be described as grateful. I can sense this mood by some of the things Narciso Rodriguez mentions. The author would constantly say ""thank you"" to his parents for all the sacarfies they had to mak for a suitable living enviroment for Narciso. It also states that ""there was no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and demonstration of how important family and friends are."" Over all, in the memoir of @PERSON1 the mood can be mainly described as Grateful towards his parents, heritage and home." 2 2 2 +13088 5 The mood of the author changed during the memoir because in the beginning of the story he had mood of just telling where the character was from and where he was born. On paragraph @NUM1 he has a ill do what it takes mood. For example he was grateful about his parents and his life he was okay on how things were and he loved it. On paragraph @NUM2 and seven the author feels relieved and happy because he writes about the character remembering the good old times. 1 1 1 +13089 5 "@CAPS4 on the article "Narciso Rodriguez" by from Home: the @CAPS1 of Our Lives, the mood created by the author in the memoir is loving, happiness, and greatful. There are many @CAPS2 showing the mood @CAPS4 on the article. For @CAPS2 one of the moods created is shown in para @NUM1 "gratefull." @CAPS2: "I will always be grateful to my parents for their love and sacrifice." @CAPS3 that he love them anyways even if it is good or bad. Another @CAPS2 of the mood grateful is in para six, is by him telling his parent he is grateful by @CAPS2 "I've often told them of my admiration for their strenght and perseverance, and I thanked them repeatedly. @CAPS3 he does it with love, another mood in the article. Those are the moods created by the author in the memoir, @CAPS4 on the article "Narciso Rodriguez by "from Home: The @CAPS1 of Our Lives. " 2 3 3 +13090 5 "In this memoir ""Narciso Rodriguez from Home: The Blueprints of Our Lives, The mood that the author created was grateful, couragous, and generosity.First in the memoir, The first mood that the auther created is grateful. The author states that ""My parents both shared cooking duties and unwittingly passed on to me they're rich culinary skills and a love of cooking that is still with me today (and for which I am eternally gratefull)."" That means he was very excited and happy that his parents Passed down to him unstead of other family members thats why he is gratefull.next, his seconed mood is courageous because of his family. The author states that ""I often told them that what they did was a much more courageous thing that I could have ever done."" That means that all the times he had been with his @CAPS1 or his dad they help him though life and difficulty of his education and work.lastly, his final mood was generosity because of all the time he was young. The auther states that ""there is no way to express my spirit of generosity impressed upon me at such an early age. That means his mother allways depened on him to do all the work around the house in the yard. All in all in this memoir ""Narciso Rodriguez from Home: The blueprints of our lives. The mood that the author had in the memoir was gratefull, courageous, and generosity." 4 3 4 +13091 5 The @CAPS1 @CAPS2 a lot of his @CAPS3 in the story. The @CAPS1 creates a mood that makes you think about your self and your family. He talks about his family and when he was a boy and were he grew up. The @CAPS1 also spoke about his parents and there life. He also talkes about how he and his parents lived in a neighborhood with imigrints. The @CAPS1 talks about how it is hard for him and his parents to leave without the rest of there family. The @CAPS1 also talkes about how he loves music and how he loves his parents as well. His parents helped him and gave him hope. He also uses music to simbolize his life. Now he is a successfull fashion designer. 2 2 2 +13092 5 The mood created by the author was proud of being cuban. Proud of their heritage that the whole family have. And grateful with her parents and family. 1 1 1 +13093 5 "In the excerpt ""Narciso Rodriguez"" from the book Home: The Blueprints of Our Lives, the author tries to create a mood that complements his opinion on the definition of family. Narciso Rodriguez was born to Cuban immigrants in a busy area of New Jersey filled with people of all nationalities. It was this melting pot of people and his parents hard work that shaped who he is today. The main mood that is generated throughout the passage is a positive mood, exemplified best by how the author himself positively talks about the great impact his parents had on him. Narciso realizes the sacrifices and the the hard work his parents had to endure to provide for him, of which Narciso writes ""My mother and father had come to this country with such courage, with no knowledge of the language or culture. They came selflessly, as many immigrants do, to give their children a better life, even if it meant leaving behind their families, friends, and careers in the country they loved."" (paragraph @NUM1) Narciso's parents were not selfish at all and took a huge endeavor by going for the United States. However, through their hard work, determination, and couage they established themselves in @LOCATION3. It is this positive, happy outcome that makes the mood so bright and positive. In Narciso's home, as he writes, ""the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop of life in our warm home."" (paragraph @NUM2) The use of the word ""warm"" creates the bright vibrant mood associated with his home. The idea of warmth is repeated later in the passage where the author writes ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the the air with not just scent but life and love"" (paragraph @NUM3) The repetition in describing the warmth of the house once again establishes the positive mood. Narciso lived in a neighborhood filled with all kinds of people. However, despite their differences they came together as a friendly, united community, of which the author write: ""Despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" (paragraph @NUM4) Despite the overt racism at the time, this community still came together and were there for each other no matter what. This unity with in the community definetely distills a happy mood within the reader. Overall, Narciso Rodriguez creates a very positive mood throughout the memoir." 4 4 4 +13094 5 "The author of the memoir mood created was intence, strange, happy and sad. Happy because the change the simple house to a home. Sad because is hard to leave something behind. Intence because because is hard to move on. Lastly Strong because he was strong inoff to leave that behind even though it was hard." 1 2 2 +13095 5 "The mood created by the author in the memoir is very luring, like you read one sentence, then you want to read more. In the story, she says how her parent have to start their lives all over again. But, then she says that they're just happy to be together in good old @LOCATION1. Just because you have very little, doesn't mean you can't live it out the fullest. Be happy with what you got or don't have anything at all is what this story is telling me in my mind. So I will follow my life to the best like Narciso and her family did." 1 1 1 +13096 5 "The mood created by the author in the memoir was mellow because he's talking about his life and his greatfuless to have been raised in @LOCATION1. Also the mood was happy, because he said ""I will never forget how my parents turned this simple house into a home"" which is him talking about how his parents made @LOCATION1 feel like home. Those with the moods of the story" 2 2 2 +13097 5 "The author that created the memoir created a cozy home feeling which made The reader feel the same way. The thing I mean by cozy home feeling is that the author showed how narciso and his family got along and helped people in there family, friends, and people who just needed a little help." 1 1 1 +13098 5 The authors mood towards the memior was ok I guess. In some areas it was low. It could of been better. 0 0 0 +13099 5 "In the excerpt ""Narciso Rodriguez"" by Narciso Rodriguez, the mood created by Narciso was happiness. I know this because of the following three reasons. One way I know the mood was happiness is when the article said ""there was often someone staying with us temporarily until they were able to get back on there feet. My parent always kept their arms and their door open to the many people we considered family"" This showed how Narciso was happy that his parents were nice & very caring. Another way the mood was happiness is when the article said ""I learned the real definition of ""family"". & For this, I will never forget that house or its gracious neighborhood"" this shows how he was happy to find a better difiniton of family through his stay at the house ""the last way the mood was happiness is when the article said ""my mother & father had come to the contry with such courage, without any knowledge of the language or the culture, they came selflessly"" Narciso showed happiness because that his parents made it through They're big change in their lives. This showes how the mood being created was ""happiness His Parents are wonderful people." 4 3 4 +13100 5 "The mood in the memoir represents friendship, family, helpfulness, one example of helpfulness is in the @NUM1 paragraph it says ""It was a close-knit community of honest, hard working, immigrints who extend a hand to people who, while not necessarily their own Kind, were clearly in need."" @CAPS1 good example of the mood in this memoir is family but also ties back to helping is in paragraph @NUM2 it says, ""My parents always kept their arms and their door open to the many people we concider family. Knowing that they would do the same for us. This is what the memoir is about." 2 2 2 +13101 5 "They were sad through some of this memoir. The first reason why they were sad was that they left there familys. They also had to leave the country of Cuba. And left their friends to. They were also happy too. The reason why is because it is a Spanish, Cuban, and @CAPS1 comunity. So they feel like they are at home. They were made because they would half to start there life over. They would have to find new jobs and transportation. " 1 1 1 +13102 5 The mood created by the author was a happy and exciting mood. This is because the family was so excited about moving to a new place with better oppertunities and educational purposes. It also changed a regular house into a special home for them because they had people over and over and over which finally became family. The neighbors also helped create the mood by not creating any negative action or violence in the author put the family's location in a non-american neighborhood. 2 2 2 +13103 5 "The mood of the memoir is kind and loving. It showed kindness in paragraph @NUM1, what the memoir described how his parents made the whole house feel sweet and nice. He did this by using words like ""innocence"", ""celebrations"", and ""warm home"" to create a the feel of kindness. Love was shown when the author told about the way his parents welcomed anyone of every race to live with them until they ""got back on their feet."" This shows love because when you are welcomed no matter what the problem is or who you are, it deminstrates love to everyone." 2 3 3 +13104 5 "When you have a loving family and a beautiful home, you should be very grateful. Narciso Rodriguez was also very grateful. The overall mood of Narciso's story is gratefulness. Narciso Rodriguez was born in 1961 in Newark, New Jersey. His memoir explains how @CAPS1 is grateful for everything. ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 would always tell his parents about his admiration for their strength and perseverance. His family cared for everybody and ""Always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" All and All the memoir's mood is gratefulness because Narciso was very grateful for everything." 2 2 2 +13105 5 "The mood of the memoir is that he is growing up in the house with his Mother and father. His parents giving a hand to people who Need help. One explaination is when his parents moved here and left all of their friends & family in hopes to make a better life for him. Another is showing him about his culture threw music, cooking, celebrations and taking care of other people. His parents let people stay at their home when they Need to get on their feet. And by always having people over for dinner (Aunts, uncles, grandparents, cousins, @CAPS1 etc...)." 1 2 2 +13106 5 "All these things that I listed all had something to do with creating the @CAPS1 in this memoir. But the biggest feeling of all is love his parents went all the way from Cuba just to give @CAPS2 a better life, Even if it meant leaving their jobs, family, friends all behind just to give their son a better life. Also after they arrived they lived in a one room apartment for a year then moved to a new house and made it ""our traditional Cuban home"" so it would teach their son about the place where they came from and to make it feel natural for Narciso When he was born. Even after that they were still kind and had open arm for other immagrants. So I absolutly think that the @CAPS1 in this memoir is about an overwhelming feeling of love." 3 2 3 +13107 5 "The ather creats mood in the memoir in soe ways. In @CAPS1 @NUM1 the author says, ""Growing up in this environment instilled in me a great sense that family had nothing to do with being a blood relative."" His is an example because it is sayin That in some environments everyone is your family. In @NUM2 the author says, ""I will always be grateful to my parents for their love and sacrifices."" This is an example because he appreciates everything that his parents did for him and he always will too. That is how the author creates a mood" 2 3 3 +13108 5 "The author showed his mood very clearly in the memoir. The way he worded things such as ""I will never forget how my parents turned this simple house in to a home"" Showed how happy he was toward his parents. He told us how greatful he was for his parents being so selfless and thinking about him first. He also makes it clear how he is proud and how he greatly respects his parents for the great things they did to improve his life. Also he shows how he admires his parents hard work and bravery for the things they have done. In conclusinon, His overal mood I think is his gratatude toward his parents." 2 2 2 +13109 5 The author was in a respectful mood. In the memoir it tells a lot about how his parents took care of him and about his life and how his parents heped him through it. So when the author wrote this he was in a somewhat happy mood because he looked back on all the good times but that can also make you sad too. 1 1 1 +13110 5 "Narciso Rodriguez describes his life in the hardships and selflessness of his humble and caring parents. The moods created by this author is happy and lighthearted, inspired by his love, and gratefullness. Narciso views his parents as saviors, who sacrificed everything to provide a better life to their children. He is eternally grateful for their courageus acts that brought him incredible oppurtunities in @LOCATION1. He looks back happily at the warm and comfortable atmosphire of his home. He is greatful for his Cuban heritage that his family instilled in him at a young age. The unity of his close knit community taught him honesty, and the importance of hardwork.Narciso exudes love and a sense of pride in his incredible and hospitable family through his writing. Setting a mood a gratefulness a true admiration for parents who taught him important life lessons he will never forget." 2 3 3 +13111 5 The mood created by the author in the memoir is a very happy mood. The author's parents gave up everything to come to @LOCATION1 for their soon to be child. They did that so that he could have a better education and for that he is verry greatful. The author loved his home and had great times in their. It is his most favorite place in the whole world and that is why he talks about his home in great detail. The author had great family memories in the kitchen with Cuban music and the scent of Cuban food. The author's mood is gratefull. It is because for what his parents did for him by moving to Cuba. It also is happy because of all the great times he had there. The author would probably want to relive those times as I want to relive times of my childhood. 3 3 2 +13112 5 "The mood created by the author is that he is remembering back at the old days how he used to live and how much he admires his family but mostly his parents. He came to the United states in 1956. In 1961, he was born into a simple house. The mood of the author is that he admires his parents to give their children a better life even though they left families, friends, and Careers in the country they loved just for their children. The author will always be grateful to their parents for their love and sacrifice ""I've thanked them repeatedly. Therefore this is the mood that the author shows mostly love for his parents family, friends and Cuba. He thanks and learns from his both parents for all they did to go on with their children no matter what they had to sacrifice for them" 2 3 3 +13113 5 "The author's mood that is created in the memoir is love and gratitude. The author expresses how thankful he is of his parents to live and grow up in the home they made for him. He says that he knows that family is not just blood related. He tells how his parents had open arms and doors to people in the community who needed help. Their home was filled with @CAPS1 music, food and love. They would have celebrations of his birthday's and people's arrival to the new country. There was this atmosphere of love and thankfulness in his life and that is expressed in this memoir." 2 3 2 +13114 5 "The mood created by the author is that @PERSON1 is grateful For what he has. @PERSON1 is grateful for his parents arriving In @LOCATION1. @PERSON1 likes to cook Cuban food and listen to Cuban music. The mood I think also that @PERSON1 is most grateful to his parents for being brave for coming to @LOCATION1, and hes grate ful for his parents love and sacrifise. @PERSON1 @PERSON1 siys he will never forget how his parents turned a simpe house into a home" 2 1 2 +13115 5 "The mood created by the author in this memoir would be grateful and happy. It really makes you wanna think about life and how good it is, thanks to parents and grandparent, even anchestors. It makes you want to love your parents even more seeing how they went through alot and probably gave up alot for you. Like leaving their homeland or giving up great things like @ORGANIZATION1 and Narciso Rodriguez Sr did for their family or son. They wanted a better life and education for their kids. They had to leave their homeland, where they were born and raised and give up some things to get better things. They had to give up their job and skill's they already knew how to do for better things. The good thing that happened or that they get is more freedom and better life and education, it's not easy leaving everything you love and where you are born but has to be done for better things and opportunities. Reading this memoir gives you or leaves you with a satisfying, grateful, happy and kinda sad mood." 3 3 3 +13116 5 "The mood created in the memoir ""Narciso Rodriguez"" by Narciso Rodriguez is comforting. ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the Kitchen."" @CAPS1 a sense of home, spending time with the ones you love. Is it not comforting?" 2 1 2 +13117 5 The mood that was created by the @CAPS1 is that no matter if your an immigrate or not one you could make friends and have family that you love still with you and could make some friends. Another mood that he talks about is tha his parents and how they love to cook together and are selflessness too. 1 1 1 +13118 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez the mood is happy and warm. This is because of the strong and caring relationships talked about in the memoir. As stated ""I will never forget how my parents turned this simple house into a home."" @CAPS1 the story that is what is talked about. In the story he talks about being aroud ""family"" people who arent blood realative; just that can make a person happier @CAPS2 the memoir make the reader happier because the author is writing about happy memories he'll never forget. Although it was simple the author put a lot of deep emotions that were portrayed in the story, which made the story has a deeper mood." 2 2 2 +13119 5 The mood in this memior is happiness because she was so happy that his parents have moved to a bigger apartment then they previously had. She was happy that the landlords daughter was nice and always set the table for them. Sometimes his aunt and cousins would go over and eat at the table as well. He explained that the landlord's daughter was his first friend and she was also his babysitter. He also explained his friendship was happiness. 1 1 1 +13120 5 The mood is created by the author is how Narciso is so grateful for his parent's Love and sacrifice 1 1 1 +13121 5 "The mood created by the author in the memoir was loving, caring, and heartwarming. The memoir had a loving mood because the author talks about friends and family and how important loved ones are. In the selection it said "", the congregation of family and friends, and endless celebrations that encompassed both, form the backdrop to life in our home."" Also, the author creates a caring mood throughout the story, from him to his parents. For example, ""My parents always kept their arms and their door open."" and ""I will always be grateful to my parents,"". The author also creates a heartwarming mood in the memoir when he said, ""I will never forget how my parents turned this simple house into a home."" These are the few moods created by the author in the memoir." 3 4 4 +13122 5 The mood in the story is happy. Growing up the main character had a great sense of family. He states his realatives usually join them for diner. H loves his parents because they always had their arms open to any type of realative. Lastly the author was thankful because his parents gave up their lives in cuba to make his better 1 2 2 +13123 5 "The mood in the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, is comfort. In chapter @NUM1 it talks about the overall feelings of love and care that surrounded the Rodriguez household like a comfy blanket. Also, it talks about how the ""... congregration of family and friends, and endless celebrations that encompass both..."" helped pave the road for a great childhood with many friends and family members who where always there for Narciso Rodriguez to rely on. Another example of the comfort within the Rodriguez home is that the ""... parents always kept their arms and door open to many of the people... considered family, knowing that they would do the same..."" This portrays an overall image of a community where everyone got along and helped each other out. Last but not least Narciso's home was ""...always filled... (with) life and love."" Where he felt secure and cared for. All in all, the household that @PERSON2 lived in was a household filled with love, care and especially comfort that every child should have." 3 4 4 +13124 5 "This excerpt called ""Narciso Rodriguez"" written by Narciso Rodriguez, he sets a light, happy mood. I say this because throughout the whole story, he is describing all the good things about his parents and his household during his childhood. A few examples are in paragraph @NUM1, where Rodriguez states ""My parents always kept their arms and their door open to the many people we considered family"". When he says this, it gives the reader a good feel of how his parents cared for anyone who needed their help. In paragraph @NUM2, Rodriguez says ""I will always be grateful to my parents for their love and sacrifice."" When he says this, it is another time he is telling us he is grateful for his family. Throughout the whole excerpt, Rodriguez lists many times he was happy and grateful for everything his parents have done for him, which sets a positive mood." 3 3 3 +13125 5 "There are many ways the mood was created by the author in the memoir. One way the mood was created by the author in the memoir was by the author's past memories. An example of this was ""passionate Cuban music (which I adored to this day) filled the air."" This supports the idea that the mood was created by the author in the memoir because culture music came from the author's memories, which is the mood. Another way the mood was created by the author in the memoir was by the author's opinions of the memories. An example of this was in paragraph @NUM1 ""(and for which I am eternally grateful)."" This supports the idea that the mood was created by the author in the memoir because the author expressed their opinions in there own way which set the mood." 2 2 2 +13126 5 "In the excerpt ""Narciso Rodriguez"" from Home: The Blueprints of Our lives, shows an specific mood. The mood from this is happieness and satisfaction. The family is happy because they got a new home, they have a child, and they made pretty good friends from the nabiorhood. The satisfaction part is in there too when they are satisfiyed with what they got like, a job, a home, family, friends, and they are makeing money. After all moods depend on your surroundings, like the people not the merchendise. And thats all that matters." 2 2 2 +13127 5 "By reading the memoir I know that a Family @CAPS1't Just a Family because they are blood relative a family is about loving eachothor and always being there for eachother The author is greatfull For everything his parents have doneFor example in paragraph @NUM1 he says ""I will alway be greatful to my parents for their love and sacrifice.""" 1 2 2 +13128 5 "The mood in This memoir is @CAPS1. Narciso Rodriguez is from a Cuban born and raised childhood he values everything they ever did for him.As stated in @CAPS2 @NUM1 of this passage he ""is eternally @CAPS3 for all that his family done wheather it was The @CAPS4 Cuban food they cooked him or weather it was the Cuban music They made him listen to. Growing up in a multiracial community made him accustomed to being a non segregated individual. The mood he sets when narrating this is @CAPS1 because, not once did he ever take life for granted.""I will always be greatfull for what my parents showed within love and sacrifice, @CAPS6 ofen told them for what they have done was more couragoas Than i could have ever reached""." 3 2 3 +13129 5 "The mood created by the @CAPS1 Narciso Rodriguez's mood was a loving, caring, thoughtful feeling which came from his childhood home. In the passage ""Narciso Rodriguez"" it states ""A cuban feast always filled the air with not just scent and music but life and love"". This quote shows how much love and caring the mood is and makes the mood a more loveing and thoughtful feeling In the passage ""Narciso Rodriguez"" it states ""it's gracious neighborhood or the many things I learned there about to love."" In This quote I felt the mood which was love and the @CAPS1 inquires it with his word choice. Also in this passage ""Narciso Rodriguez"" it states ""I will never forget how my parents turned this simple house into a home"". This quote signify's all three moods loving, caring, and the thoughtfulness of the memoir. It describes how the mood was brought on, how it was and the meanings. The mood to the story is touching with all the warmth of love brought into the house, instead of caring about the possessions with greed." 4 3 4 +13130 5 "the mood created by the author in the memoir is how he was living with his family in the house. the specific revelant in the story is said ""the innocence of childhood the congregation of family and friend and endless celebration,"". and what he want to show how he was living with many people and he is a immigrate" 2 1 2 +13131 5 "The mood created in the memoir is thoughtful and caring. ""I've often told them that what they did was a much more courageous thing that I could have ever done. Narciso is very thankful and feels very much beloved in his family. In the mood in this memoir is not just thoughtful or kind or caring, it's the feeling loved and loving that feeling. ""It was here where I learned the real definition of family.""" 2 2 2 +13132 5 "In the memoir by Narciso Rodriguez, the mood he created is gratitude. First, he is grateful to his family. For example he says, ""I will always be grateful to my parents for their love and sacrifice"" (@NUM1). From this, you can understand how much he appreciates what his parents have given him.Next, Narciso is grateful for being part of such a caring family. He says ""there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age"" (@NUM1). This quote explains how much his family taught him about being kind.Finally, is grateful to know such wonderful people. Narciso says, ""I will never forget that house or its gracious neighbors, or the many things I learned there about how to love' (@NUM3). To sum it all up, the mood Narciso Rodriguez created for his memoir is gratitude." 3 3 3 +13133 5 "The mood created by the author in this... memoir would be thankfulness and appreciation. I think @PERSON1, wrote this memoir for his parents. He wanted to portrey that even though most people would think that he had a tough life, he would completely disagree. He reailzes that his parents did what they did so @PERSON1 would have a better life. He appreciated the fact that his parents always made anyone feel like they were part of the family. They were loving, caring, heartwarming people. Like @PERSON1 said, ""I will never forget how my parents turned this simple house into a home." 2 2 2 +13134 5 "In the memoir, ""Narciso Rodriguez"", the mood is very grateful. All throughout the story, the other kept stating that he is extremely grateful to his parents for their selflessness and care. This mood shows most in paragraph @NUM1 because he continually thanks his parents for moving to the United States from Cuba to help him when he is born. He thanks them for leaving their friends, family and jobs to help him, even if the new jobs they get are not what they deserve.So, as you can see, the author is very grateful to his parents, making this the mood." 2 1 2 +13135 5 The author said that he had never seen his real grandfather until they allowed too leav cuba that was in the @DATE1 then they had there whole family in new jersey where they wanted to live. 1 1 1 +13136 5 "I think that the mood created by the speaker is gratitude. I think this @CAPS1 his parents ""unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful.)"" This shows that he appreciates his parents passing on their cooking skills. Another example when Narciso is thankful ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 they gave up their jobs of working in a laboratory and chemical engineering to make his life better. This shows that the speaker was creating a tone of gratefulness" 2 2 2 +13137 5 "In the memoir in ""@PERSON1 Rodriguez"" by @PERSON1, the overall mood of the storie is happy.The reason its happy is if you hear the tone how shes telling us. ""I was born into a simple house situated in a two-family, blonde brinck building in the *** section of Newark, New jersy. My young parents created our traditional Cuban home."" @CAPS1 sounds happy to be Cuban it what @CAPS1 is. thats what the mood of the memoir.Another reason it's happy is ""I learned the real defenition of family And for this I will never forget that house or its gracious neighborhood. @CAPS1 cares about his familey @CAPS1 now feel what his parents showed him thats why the overall mood is happy.In the memoir ""@PERSON1 Rodriguez"" by @PERSON1 the overall mood of the memoir is happy." 2 2 2 +13138 5 "In the memoir, the mood that is created by author is a loving and grateful mood towards the author's parents. A example from the memoir is when the author talks about his gratefulness toward his parents. ""I will always be grateful to my parents for their love and sacrifice"" (paragraph @NUM1). This quote shows that the author's mood is loving and grateful toward his parents because he mentions his gratefulness towards them. Another example is when the author tells the reader that his parents showed him two important lessons that he chose for the basis of his life. ""They showed me with their lives, and these teachings have been the basis of my life"" (paragraph @NUM1). This quote shows that the author's mood is loving and grateful towards his parent's because the author tells the reader that what they did helped him become a great/better person. Lastly, when the author tells the reader that he is grateful for the fact that his parents gave up their life in cuba to make his life better. ""They came selflessly, as many immigrants do, to give their children a better life"" (paragraph @NUM3). This quote shows that the author's mood is loving and greatful because he expresses what his parents did for him and it shows that he feels greatful that they did that. The author creates a loving and greatful mood toward his parents in this memoir." 4 4 4 +13139 5 "The mood created by the author in the memoir feels like that of simplicity and home. He talks of the music and smells of his house, giving the feel that one is actually there sensing everything. He describes his home in such a relaxed way, and how the people in his neighborhood were also good to eachother. It gives the empression that his life was like a relaxed dream where everything is right. He talks of all his relatives that live nearby, and being a child I feel a somewhat comforted sensation from that very part. He describes how his parents had been working in Cuba with great jobs, but had moved for their children to @LOCATION1 where they would have to take lesser paying work. Sacrifices like those make me feel as if there is pure love left in the world, I only wish my parents cared like that. Though this story proves the love of two parents to their children, and that alone makes me feel a sense of peaceful closure." 2 3 3 +13140 5 "In the memoir Narciso Rodriguez the mood is happy. Narciso is happy with his family and his cultre. He is glad that he is with his family. Narciso Rodriguez loves his talent, but he is just a little sad that he won't be able to meet his real grandparents. That is the only thing that he is sad about. Other than that he is as happy as can be." 1 1 1 +13141 5 "The mood created by the author in the memoir is loving. An example of where this mood is shown is this quote from the memoir, ""Growing up in this enviroment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" The author is talking about how everybody in his neighborhood acted as one large family, even though people were of very different nationalities. It shows that the author had a very loving community and remembers this time as a time of love and brotherhood. Another example is when the author states ""...I will never forget that house or it's gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" This quote shows the love he feels for his parents, his house and all the residents in the neighborhood. A third and final example of the loving mood within the memoir is when the author writes ""I will always be grateful to my parents for their love and sacrifice."" This shows that he loves his parents for giving him oppurtunities, even when it @MONTH1 have cost them something they loved. The author created a loving mood in the memoir because that was how he remembered his childhood; Filled with love." 4 4 4 +13142 5 The mood in this story is sad because the person leaves cuba and someone in the family dies. But the person has big dreams and becomes a fashion designor 0 1 1 +13143 5 "In the article Narciso Rodriguez the tone is loving, peaceful and happy. In this memoir it talks about family and friend coming together as one. In the article the best example of happiness and peace is the last sentence, ""I will never forget how my parents turned this simple house into a home."" This shows joy because they are all together. Another example is in paragraph seven where he says I learned the real definition of family."" This is loving because it shows he is happy and he enjoys being with friends and family. Another reason why the tone is grateful is because he says ""... there is no way I can express my gratitude..."" this is happy because he is thankful for what everyone does in conclusion the tone is happy, loving and grateful" 3 3 3 +13144 5 "The mood created by the author in the memoir is greatful. @PERSON1 is greatul for many reasons. Some things he is greatful for is his parents his home his culture and his family. I say this because he mentioned these topics alot in the memoir. One reason he is greatful is for his parents culinary skills, As said in the memoir ""my parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still in me today (and for which I am eternally grateful)"". Another reason @ORGANIZATION1 is greatful is for the love his parents give him because without his parents love and sacrifice he wouldn't have the courage he has. I know this because in the memoir @PERSON1 said ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done"". The next reason @PERSON1 is greatful for his family because they are always there for him that is the reason his parents always keeps the door open to family. @PERSON1 is greatful for life and love. It was there when he learned the real definition of family, and this is why he would never forget the place he called home." 4 3 4 +13145 5 "The mood created by the author of this memoir is a mixture of a few different moods. The author is proud and grateful of his family, home, and culture which makes of every relaxed and peaceful mood. For example he calls his house a ""simple house"". He also talks a lot about family and all of the people he cares about. The author makes a very loving and caring mood by doing this. He talks about the love for the people and things in his life that he cares about. He says, ""I will always be grateful to my parents for their love and sacrifice."" That sentence shows a very loving and caring mood because its showing that he really loves his parents for the sacrifice they made for him The last sentence in the memoir says, ""I will never forget how my parents turned this simple house into a home."" This shows a mixture of both mood. It shows the love for his parents for making their house a home. But it also is very peaceful and relaxed because it is showing that throughout the memoir the author had the same mood of not letting stuff get to him and being grateful for the things he has." 4 3 4 +13146 5 "I think the memoir is a thankful and grateful mood. The author is grateful that she has parents that moved to @LOCATION1 for her. Also she is grateful that the simple place she lives in feels like a home. This says so in the last sentence ""I will never forget how my parents turned this simple house into a home."" Also Narciso is thankful in paragraph @NUM1 ""my mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly as many imagrants do, to give their children a better life, even though it meant leaving behind their families, friends and careers in the country they loved."" @CAPS1 how thankfull Narciso seems to her parents who sacrificed their whole life for her. If that was me writing that story I would make the mood very grateful towards my parents." 3 2 3 +13147 5 "Memoirs have a certain mood that the author usually works around with. In the memoir Narciso Rodriguez, the author explains his family in a very @CAPS1 way. The author talks about his love of cooking, how his parents want to give their children a better life by moving to @LOCATION1 leaving loved ones behind, and the author @CAPS1 his house.The kitchen was the very heart of the home to the author. His parents was very skilled in cooking, which passed onto their children. The author says on paragraph @NUM1, "" A love of cooking that is still with me today (and for which I am eternally grateful)."" This shows the author's love for culinary skills. Next, is how the author's parents love their children. They didn't know anything about @LOCATION1, but moved there just to give a better life for their children. The parents had to leave their loved families, friends, and country. For example, on paragraph @NUM2, it explains what the parents had to. ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" This quote shows the parents realy loved their children wanted them to be happy. Finnaly, the last sentence of the memoir, ""I will never forget how my parents turned this simple house into a home."" states how the narator feels love for his parents and his home. This all shows that the narrator is happy with his family in pleased of where he lives. In the memoir Narciso Rodriguez, the mood is @CAPS1 . The author shows this by @CAPS1 the culinary art his parents, and his home. He is grateful for what he has, and has love for his family and home." 4 4 4 +13148 5 "The mood of the memoir I believe to be grateful or enspioring. Narciso's parents are imigrants from Cuba who live in a rasict community and are working to be able to support there kids. They are great parents to Narciso and provide him with basic nacessidies. They feed him, and buy him clothes. Narciso is very kind and thankful for the trouble his mother and father go through and he is also very considerate to try to help them when they need it. The mood is grateful because that is how Narciso feels toworrds his parents." 2 1 2 +13149 5 "Throughout this memoir the mood was very realistic. While I was reading it I was very interested in what Narciso had to say next. It seemed as if he was extremely happy to be at where he's @CAPS1. From his speech in this story I can tell that his personality is very outgoing and he likes to look back at where he used to be, and where he is now, and all the sacrifices that have been made throughout his lifetime. He is a very grateful child. Another mood in the story was happiness, along with unity. Naciso quotes ""I will always be grateful to my parents for their love & sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done."" Just by reading this quote you can clearly see that Narciso is very grateful. He also quotes ""But, In reality There is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important my friends and family are to me."" @CAPS2 reader, there you have it. Those are the two main quotes throughout this memoir explaining the mood of the set!" 3 3 3 +13150 5 "The author of the memoir, Narciso Rodriguez, talks a lot about home and how you can find family were your not expecting too.He sets the mood in the memoir, that portrays love, warmth, and happyness. The overall mood of the memoir is loveing. Like how Narciso says in paragraph @NUM1, ""And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about love.""When Narciso was growing up he learned that ""... Family had nothing to do with being a blood relative."" All the cultures in his neighborhood came together in unity and Friendship. So Narciso Rodriguez wants to create a warm, loving, @CAPS1 mood to his memoir, just like he experienced growing up!" 2 3 3 +13151 5 The mood created by the author in this memoir is greatfulness. The memoir showed how greatful Narciso's was to his parents. Their bravery and selflessness must have truley impacted his life then and probaly how he lives today. It also give the feeling of respect. In this memoir it shows how much he truley respected his parents and community. And last I think it gives the mood of admiration. The memoir really expressed how much he admired his parents and community. It showed how much he admired his parents bravery and he admired his overcoming of odds. He also admired how a community of different races could get over that and pull toghether to really make a community.Those are some of the moods that ar expressed in this memoir. 2 2 2 +13152 5 The author created many different moods in this memoir. An obvious one is Love. As a child @CAPS1 really appreciated that her parent gat anew home and moved to @LOCATION1 to raise their child. @CAPS1 loved her cuban background and environ ment that @CAPS1 grew up in. 1 2 2 +13153 5 "The mood created by the author in this memoir is generosity. Narciso Rodriguez, the author, talks about how much generosity his parents had. He says, ""My parents always kept their arm and their doors open to the many people we considered family."" ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and carrers in the country they loved."" In the memoir Narciso says that he will always be grateful to my parents for their love and sacrifice. His dad worked in a laboratory in Cuba and his mom had studied chemical engineering in Cuba. In the @CAPS1.S they had to start their lives over entirely, taking whatever work they could find. He says that this house was where I learned the real definition of family. He also says, ""I will never forget how my parents turned this simple house into a home."" @CAPS2 @CAPS3 parents were generous, grateful, brave and had courage. We should all be grateful for what aour parents sacrifice for us or had sacrificed." 3 4 4 +13154 5 "The mood that the author had setted in the memoir it went from a calm then to an emotional mood telling about how hard his childhood was and how his family was struggleing with there jobs, and the have their financial problems." 1 1 1 +13155 5 "The author sets a mood to the memoir that allows the reader to attach and relate to what he is trying to explain. The mood given off by the memoir to me is selflessness. We all have an experience in life where someone gives up a piece of their lives for you. And Narciso's case his parents ""moved from Cuba to give him a better life, even though it meant leaving behind their families, friends, and careers and the country they love."" Even though they gave these things up they brought along a lot of their Cuban customs with them such as music, cooking and lifestyle for Narciso to experience while living in the safe and comfortable environment of @LOCATION1. They took those things and invited them to their new house to create a comfortable, suitable, loving living area which allowed Narciso to call this area ""home"". By showing the selflessness of his parents the author is able to create a connection to a time in the readers life where someone showed this sort of mood towards them creating a perfect mood to enjoy the reading." 2 3 3 +13156 5 "The author's mood in this memoir is gratefulness, happiness, and gratitude. In paragraph @NUM1, the author shows happiness, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations... formed the backdrop to life in our warm home."" As you can see the author was very happy to move to @LOCATION1 to start a new, fulfilled life. In paragraph @NUM2, the author shows gratitude towards his willing parents. ""They came selflessly as many immigrants do, to give their children a better life..."" here the author shows that he's extremely grateful for what his parents did to help him make a new life. Lastly, in paragraph @NUM3, the author tells direct explanation to why he's grateful. ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1, the author in this memoir shows an extreme amount of gratitude, happiness, and gratefulness, to his sacrificing parents" 3 3 3 +13157 5 The mood shows that Narciso loves his family very much. 1 1 1 +13158 5 "In this memoir there is a mood created by the author. In the memoir the mood is like, calm and happy and relaxing. In the memoir the author is saying ""passionate cuban music filled the air, mixing with the aromas of the kitchen."" That was the mood of relaxing because when you hear music it relaxes you and when you smell something out of the kitchen that you like it relaxes you even more. Also in the memoir it says most of the people in the neighborhood was spanish, cuban, and Italian immigrants which were honest, hardworking immigrants who extend a hand to people. That was showing the calmness because if you know everyone of your neighbors are the same you dont have anything to worry about. The last mood is being happy thing that showed that is he was grateful for his parents. In the memoir the author says he is grateful fo his parents love, sacrifice, and courageous. An their admiration for their strength and perseverance. That was the mood created by the author in this memoir." 3 3 3 +13159 5 The mood of this story is Narciso @CAPS1 his family and his house. He Love his home becase even tho they live in @LOCATION1 it still feel like Cuban. with is family being there they will always be there for him and help him. 1 2 2 +13160 5 "In the excerpt, ""Narciso Rodriguez"" from Narciso Rodriguez's Home: The @CAPS1 print of our Lives, the author creates a very warm, kind of theme by painting a picture in the reader's mind of a family long ago, that lived in unity and supported each other, pulling through in the very end. The author mentions several things from which one can infer the sensation of a strong supportive family that has everything it needs. As the author tells us, ""In 1961 @NUM1 family, blond brick building created our traditional Cuban home very heart kitchen rich culinary skills and a love of cooking Passionate cuban music filled the air, mixing with the aromas of the kitchen innocence of childhood, congregation of family and friends endless celebrations that encompassed both, formed the backdrop to life in our warm home"" ( @NUM1). This quote comes across with not just @CAPS2 meaning, but with a feeling that's hard to obtain like when you're sitting around a campfire with friends and/or family. This feeling is created by the author's language, displaying a masterpiece to the reader. Language like ""very heart"" and ""warm house"" is what really conveys it. In conclusion, the author uses language appealing to a readers sense of safety, warmth, and unity to create a warm theme in his memoir." 2 3 3 +13161 5 "The mood created by the author in this memoir is happiness. According to the last sentence were @PERSON1 says ""I will never forget how my parents turned this simple house into a home. This means that the mood is very happy and that this mood is great. @PERSON1 has many memories of the home that are positive and he also learned from what his parents taugh him. This mood in this memoir is a very positive and happy mood because the passage is about good memories and bonds between friends and family. Such as, when they first moved from cuba to the unided states to start their lifes new." 2 2 2 +13162 5 the mood is that the author is very good. 0 1 1 +13163 5 "I think the mood of the author is love and family. In this article, he keeps saying how grateful he is to his parents. A quote proving this is ""I will always be grateful to my parents for their love and sacrifice."" This quote shows that he loved how his parents loved him, and made sacrifices for him, and he will always be grateful to them. He also says that he now knows the true definition of family. A quote proving this is ""... Family had nothing to do with a blood relative."" This quote shows that even if people aren't blood-related, they are still family. Narciso Rodriguez says that his parents welcomed anyone with open arms. A quote proving this is ""it was in this house where my parents welcomed other refugees..."" This quote shows how loving his family was. Family really is a strong bond that will last forever." 4 4 4 +13164 5 "The mood in ""Home: The Blueprints of Our Lives"", by Narciso Rodriguez, is warming and caring. From this memoir you can tell there was a lot of love, understanding, patience, and gratitude in this family. He was greatly affected by his parents selflessness and I'm sure he will be as loving and wonderful to his own family because of what they taught him." 1 1 1 +13165 5 the mood created by the @CAPS1 is a serious mood. The mood is serious because he is explaining his childhood and his home. he explains how his parents raised him. He also explained how his parents left. That was the mood of the @CAPS1. 1 2 2 +13166 5 "In the nonfiction memoir Narciso Rodriguez by @PERSON1, the author creates a curious and warm mood by talking about his origin, talking about his upbringing, and talking about his memories. First of all, the author talks about the Cuban family he was raised into in Newark, @LOCATION2. He tells the reader that he lived in a two-family home with Cuban immigrants. The author's origin makes the reader curious because they want to know more about the author. Also, the author talks about his life in an immigrant community and how he was exposed Cuban music, foods, and culture from his parents. The author's upbringing makes the reader curious and warm because they want to know more and learning about cultures and celebrations gives the reader a warm feeling. Last but not least, the author talks about his loving parents and Cuban feasts. The author's memories make the reader feel warm because love is heartwarming. As you can see, the author creates a curious and warm mood." 3 3 3 +13167 5 "The mood created by the author in the memoir is happy because he was always gratefull for everything his parents had done for him (Narciso Rodriguez). My opinion-I think that Narciso Rodriguez had told us students and adults a little bit of his life because he might want people to understand what he had went through in his life, and see how he got this way and how he got to Where he is today or now." 1 1 1 +13168 5 "The mood created by @ORGANIZATION1 in the memoir was a peaceful, loving mood. Narciso says that his @NUM1 room home usually had someon staying there temporarily until they could get back on their feet. In Narciso's neighborhood despite customs, all cultures came together in great solidarity and friendship." 2 1 2 +13169 5 "In Narciso Rodriguez from: The Blueprints of Our Lives, the author creates the mood of family and love in the memoir. @PERSON1 was a boy he lived with his parents in a three-room apartment. The heart of the house was the kitchen and that was where his parents taught him to cook and showed him the passionate Cuban music In the house, ""...the innocence of childhood the congregation of family and friends, and endless celebrations that encompassed both formed the backdrop to life in our warm home (@NUM1). Then, @PERSON1 realized that "" 'family' had nothing to do with being a blood relative"" (@NUM2), which showed that a neighborhood made up of Spanish, Cuban, and Italian immigrants could get along. Many people had lived at the Rodriguez house, even if they weren't blood related. Some people were the landlord and his daughter, who lived upstairs, while the grandparents lived in the basement. Anyone in the neighborhood was welcome to stay and they would usually stay in the house because they had an economic/money problem, @CAPS1 the Rodriguez family let people stay until they could get back on their feet @CAPS1, ""My parents always kept their arms and their door open to the many people we consider family, knowing that they would do the same for us"" (@NUM3). ""It was in this simple house... where I learned the real definition of ""family."" And for this I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home"" (@NUM4)." 4 4 4 +13170 5 "The mood in the memoir was that the author was grateful. He was grateful for many things like love for cooking and grateful for his parents. He is happy he has this family and he is happy that he has the simple house he was born in. There are a few choices the mood could be The one that the author has written about is happiness. He grew up where he had friends or family to have someone that they trust. He also had his land lord and first friend that helped grace their kitchen table for meals. His parents opened the door for family members, knowing that others would do the same. He thinks his parents are brave that they would have courage to come to @LOCATION1, knowing that they would leave everything behind. He is most happy about how he learned about the real meaning of ""family""." 2 3 3 +13171 5 "The author creates an optimistic, caring mood in his memoir. He described the strong sence of love and kenship in hs home. These emotions came out in the writing. The passage-being about his home-sent out a very homey vibe. One can feel the warmth, love, and roots in this memoir. The loving mood of this excerpt has many subdivisions of emotions." 1 2 2 +13172 5 "Home is where the heart is, and nothing says that more than in the memoir Home: The Blueprints of My life. In the memoir, it talks about family and that where ever your heart is, is where your home is. The memior and gives a tingling and loving mood. It makes us feel happy and feel loving, especially in a few sections.First, when the author talked about what his familly did at home, it made theworld slow down and think about the family. Narcisoc (the author and narrator) said in paragraph two, ""endless celebrations and that encompassed both, formed the back drop to our life in our warm home"". This made a picture of a happy and laughing family like in the movies about the holidays.Second, Narciso said how united they all were. This painted a mood of unity and care. In paragraph four @PERSON1 recalled, ""My parents always kept thier arms and thier door open to the many people we considered family, knowing that they would do the same for us"". The makes the reader think of friendship and hope in trouble times.The mood that came was loving and that tingling feeling of hope. Most people can't find that feeling anymore, especially in these tough times. What most people do know is that and home is not a building, it's a santurary." 3 2 3 +13173 5 The mood of the author i think is caring; but then I also think it's calm. I think it is caring because of the way he talks about the neighbor-hood. I also think it's caring because he understood what was going on. But I think it is calm because the way the way that he speaks it's in a calm tone. 2 2 2 +13174 5 "The mood created by the @CAPS1 is a very good and happy mood. You can tell by how he is always talk about both happy, family, and his cuba harrtage and works, music." 1 1 1 +13175 5 "The author creates a peaceful mood in the memoir. Its peaceful because you can just picture the admiration in his voice when he talks about his family. One reason he loves his family is because, ""my parents always kept their arms and their door open to the many people we considered family, knowing they would do the same."" This means that their family always watched out for one another and protected everyone when they needed help. Another reason he loves his family, his parents specifically, is because they did so much for the author. ""They came selflessly to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they love."" This means that even though everything they have known is in Cuba, they wanted their children to have better lives and chances to be happy, so they left everything and moved on. These are some examples as to why the author has set a peaceful mood in the memoir." 3 3 3 +13176 5 "In the excerpt, the author creates a loving mood. It mentions that Narciso will always be grateful to his parents for their love and sacrafice. That's telling us they get along well and really care for eachother. And then there is his siblings that live in different parts of the apartment. They help set the table and eat with them so I can tell they are all really loving and caring and all enjoy being a family together. This why I believe the author is creating a loving, and peaceful mood." 2 2 2 +13177 5 "In ""Narciso Rodriguez from Home: The Blueprints of Our Lives by @PERSON1 the author creates a mood. I think this is the mood of exceptance. @PERSON2 talks about how he grew up in a neighborhood with many other immigrants. Paragraph @NUM1 says ""It was in this simple house that my parents welcomed other refugees celebrate their arrival to this country""... This shows that no matter how diverse people were. the author's family always accepted them and their differences. Paragraph @NUM2 says ""My parents always kept their arms and their door open to the many people we considered family, and knowing they would do the same for us."" This is another example of how loves and accepting the home that Rodriguez grew up in. It also shows how close, kind, and loving this community was in ""@PERSON2"" from Home: The Blueprints of Our Lives by @PERSON1." 2 3 3 +13178 5 "In the passage ""Narciso Rodriguez from home: the blueprints of our lives,"" written by Narciso Rodriguez @CAPS1 ponders, and re-memmorates past events about his parents home in Newark, New Jersey. The author creates a suttle, but happy memory in the passage. The first reason to why the mood is a suttle, but happy one would be because their are serious parts of the passage, and happy parts of the passage. In paragraph four Narciso recalls having a lot of his family members living near his familys his house. When @CAPS1 says, ""Arnold, Maria, and Rosemary also all lived nearby and regulary joined us at our table."" @CAPS1 refers to the supper table when @CAPS1 says, ""our table."" The mood gets suttle when @CAPS2 talks about being greatfull to his parents for coming to @CAPS3 as immigrants with no working knoledge of @CAPS4 language, or writing. @CAPS1 also says in paragraph five, ""to give their children a better life."" @CAPS5 these are many terrific details to explain the mood that Narciso is trying to put into this passage." 3 3 3 +13179 5 "I think the mood that this author is creating is love, happiness, and respect. He really admired and cared for his parents. In @CAPS1 @NUM1, the author remembers, ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came here selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" @CAPS2 of the mood is that they took their cuban styles and culture, and brought it to @LOCATION1, living in a simple house. Determination also plays a big @CAPS2. The author's parents were determined to have their kid have a better life. Mood is the overall @CAPS3 in the story, so I think it would be a mixture of happiness, unity, caring, and determination." 2 3 3 +13180 5 "The mood the author creates inthe memoir ""Narciso Rodriguez"" by Narciso @CAPS1 from Home: The BluePrints Of Our Lives, is @CAPS2 but happy and loving at the same time. Narciso creates a @CAPS2 mood because he explains about his familys troubles and his friends and local neighbors. Narcisco explains what they went through, Which makes a person feel @CAPS4. Narciso also creates a happy and loving mood because he would say, People came from all over ""Made up of mostly Spanish, Cuban, and Italian immigrants"" would come to this one city, they would unite and help one another. They would also consider each other one big family, which consists of happy and loving. Those are the moods the author, Narciso Rodriguez, creates in the memoir." 3 2 3 +13181 5 "The mood created by the author in this memoir was really grateful and that ""family"" had nothing to do with being a blood relative (paragraph @NUM1). Also, it shows how grateful he his about his family because in paragraph @NUM2 it says, ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done."" This shows that he is really happy and grateful for what he has and that he actually realizes how many sacrifices they did for him and how much they love him" 2 3 3 +13182 5 "The author gave a @CAPS1 and cultural mood to the memoir. He talks about the music and food of his childhood but he also talks about his Extended ""family"" and how they always had someone staying in the house until they could get back on their feet. He also talks about how the House dosn't make a home- its the people that do. If no one lived in a House it could never be called a home. The family and friends @CAPS2 bring it closer and closer to being a Home." 2 2 2 +13183 5 "In this memoir Narciso talks about his life. As @CAPS1 talk @CAPS1 always creates a @NUM1 creates a mood by talking about his environment. In paragraph @NUM2 it say, ""that ""family"" had nothing to do with being blood relative."" @CAPS1 created a good mood cause @CAPS1 knows @CAPS1 has a lot of friends.Secondly, Narciso creates a mood talking about his first friend. In paragraph @NUM3 it says, Alegria lived above us, and Alegria graced our kitchen tables for meals more often than not. Good mood for having a friend thats so @NUM4 creates a mood talking about his parents. In paragraph @NUM5 it says, ""My mother and fathe had come here with such courage, without any knowledge of the language or the culture. @CAPS1's in a good mood because his parents had alot of courage.Clearly Narciso creates a mood in the memoir." 3 3 3 +13184 5 "The mood created by the author in the memoir is that he was happy. One way is ""My mother and fathe had come to this country with such courage, without any knowledge of the language or the culture. they came selflessly, and many imigrants do, to give their children a better life, even though it meant leaving behind ther families, friend and carrers in the country they loved"". For example he was @CAPS1 of what his Parents did by coming to @CAPS2 with such carange. Second way is ""I will always be grateful to my parent for their love and sacrifice"". For example you always thanks your parent when they do something for you. The is how the author describes his mood." 2 2 2 +13185 5 "Home is where the heart is. In this case, his ""Family"" is his heart, and his house is his home. He's cubain but never been to cuba to see his real family." 1 1 1 +13186 5 "There are many ways to describe the mood of the author in this memoir. I think the overall feeling and mood in the memoir is happiness and greatfulness. Narciso Rodriguez's parent were from Cuba and they werent very wealthy. Narciso grew up in a three room apart ment in a niehgborhood filled with immigrants from Cuba, @LOCATION1, and @LOCATION2. Narciso had great parents according to the memoir it says in paragraph seven, last sentence ""I will never forget how my parents turned this simple house into a home."" @CAPS1 means that @CAPS1 didn't care about the amount of space they had in the apartment @CAPS1 just cared and love the amount of love and the relationship they all had eachother." 2 2 2 +13187 5 "In the memoir, ""Narciso Rodriguez"" From Home: The Blueprints of our lives, the mood conveyed to me were, happiness, gratfullness, and sadness. First the mood conveyed was a mood of happiness. The speaker is speaking about his community when he says ""All of these cultures come together in great solidarity and friendship"" (paragraph @NUM1). When it says ""came together"" this shows the happiness the speaker must of fealt in the story. Secondly the mood was one of grate fullness. When the speaker was speaking about his parents he said ""I will always be grate ful to my parents for their love and sacrifice"" (paragraph @NUM2) When it says ""grateful"" This shows that the speaker has alot of respect for his parents. lastly the mood conveyed to me was one of sadness. When the speaker is speaking about his parents he says ""What they did was much more courageous thing than I could have ever done"" (paragraph @NUM2). When he says ""have ever done"" he feels sad that he wont have the chance to repay them. Allinall the moods conveyed to me in the story were, happiness, gratefullness, and sadness." 4 3 4 +13188 5 The mood created by the author in the memoir was happiness and how he wrote his feelings of being cuban. For example she was saying that she will never forget how my parents turned the simple house into a home. The author feel really happy of being cuban and celebrating her cultures in the United @ORGANIZATION1. 2 1 2 +13189 5 "The mood created by @PERSON1 in the memoir from Home The Blueprints of Our Lives is one of generosity and friendship. From an early age, @PERSON1 recounts how more often than not there would be a guest at his table. It could be Alegria his ""babysitter and first friend,"" his surrogate grandparents, or any number of friend and relatives. There was a constant ""congregation of Friends and family"" they generously hosted, because his Family knew that because of their generosity, they would always be welcome at other people's houses. ""My parents always kept their arms and doors open to the many people we considered family, knowing that they would do the same for us."" This constant congregation of Friends and family in @PERSON1's home, creates a mood of generosity and friendship throughout the memoir." 3 3 3 +13190 5 "It was a very high up, cheerful mood. It made me feel as if I was there. In paragraph @NUM1 it said ""I will never forget how my parents turned this simple house into a home"". That means he thanks his parents for all the hard work they did. The @CAPS1 they made. Also in paragraph @NUM2 it said ""my mother and father had come to this country with such courage, without any knowledge of the language or the Culture"". He is proud of his parents on coming from their country and speaking a different language and learning a new one is hard. All in all it was a very high up, cheerfull mood." 2 2 2 +13191 5 "The mood that the author created in the memoir is a warm, happy, pleasant feeling. When Narciso Rodriguez describes his home in Newark, @CAPS1, I get this really joyful feeling of his Cuban home. He states, ""my young parents created our traditional Cuban home... Passionate Cuban music (which I adore to this day) filled the air mixing with the aromas of the kitchen."" From this statement, I can vividly see couples dancing to Cuban music and his parents making a meal. The positive warm mood that Rodriguez created was shown by diction, where he uses a specific word choice. When he uses the words like ""passionate"", or ""close-knit community."", I am able to get this warm feeling. Rodriguez also created the mood of happiness when he describes his Cuban feast with all his family and friend. He states, ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent and music but life and love."" (paragraph @NUM1) The mood of happiness and warmth is created by author throughout his vivid and descriptive details." 4 4 4 +13192 5 "The author creates a lively mood in which he is grateful for his parents love. ""I will always be grateful to my parents for their love and sacrifice."" They passed on their rich culinary skills and love for cooking in which he is eternally grateful. He adores to this day, the passionate Cuban music that filled the air. The author created a lively mood filled with love and gratefulness for his parents." 2 2 2 +13193 5 "The mood to me was love and to getherness. Every one in the community would help each other one out. In the passage they said ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not neciraraly not there own kind, were clearly in need."" That tells me they will help and love anyone and any race like they were part of there own family. That is the mood this story portraise to me." 2 2 2 +13194 5 "The over all mood created by the author in the memoir is gratitude. A quote from paragraph @NUM1 is, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that expressed both, formed the backdrop to life in our warm home."" This quote shows that Narciso grew up in a very warm and happy home and he is very happy and grateful for that. Another quote is, ""I've often told them that what they did was much more courageous than I could have ever done."" paragraph @NUM2 This shows that his parents must have done something very hard and gave up a lot to give him to have a good life. A quote from paragraph @NUM3 is, ""It was here where I learned the real definition of ""family"". And for this, I will never forget that house or its gracious neighborhood for the many things I learned there about love."" This shows that he is so grateful to his parents for teaching him so much about life, love, and family that he would have never known if it weren't for them." 4 4 4 +13195 5 "The mood created by the author in the memoir is grateful and apriciative. In @CAPS1 @NUM1 it says ""My parents always kept their arms and their door open to the many people we consider family, knowing they would do the same for us."" This quote shows that Narciso Rodriguez felt very grateful about where he live with all his family and friends, because he knows that if his family need something, their neighbors will alway be there for him and his family. Also in @CAPS1 @NUM2 it says ""I will always be grateful to my parents for their love and sacrifice."" This quote shows that Narciso Rodriguez felt very grateful to have a family that was loving and thoughful towards him, through thoes tough times for him and his family." 2 3 3 +13196 5 "The author in the memoir created many different moods. One of the moods the author set was sympathetic or a sense of sympathy for the parents and how they only could live in a one-room furnished apartment. Another mood that was created was the mood of being proud. The author set this when they were talking about how he was born into a simple house and now he adored the music, culture, cooking and family. The author set a mood of sadness when he stated that it was a time when overt racism was the norm and segregation prevailed in the United States. This creates a sad mood because of racism is a bad concept and also because the family is Cuban. Other moods that the author set were moods of gratetfulness and happiness. The author set a mood of gratefulness towards the end of the excerpt when he started saying how he is so thankful for having selfless parents and caring parents. Also when he said he had a humble house where a Cuban feast always filled the air with not just a scent and music but life and love. Happiness was the mood of the author because he lived in a good home, had a family full of love and care, and when he said I will never forget how my parents turned the simple house into a home." 4 4 4 +13197 5 "The mood created by the author In the memoir is a good mood @CAPS1 knows that her parents moved from Cuba for her, to give her a better life. ""My young parents created our traditional Cuban home."" There trying to give her the life they would have had in Cuba, only better. And @CAPS1 had unselfish family because they moved for her and let her grow up in a good community. And when they say ""All these cultures came together in great solidarity it just makes you feel good that segrigation stoped and people can hang out with others, from different places. Family is always first no matter what even if you dont understand, its always first which is why @CAPS1 creating a happy and good mood in the people reading this because of family." 3 2 3 +13198 5 "The mood the author created in the memoir was very happy and thankful. He grew up in a traditional Cuban home where his parents cooked and he was able to get a great sense of ""family"". Not just blood relatives but everyone who would do the same as them. There was no racism within their neighborhood. They all came togather Many people, and the for dinner everynight. His parents loved him and sacrificed a lot for him. His simple house was a home. These things created the happy and thankful mood" 2 2 2 +13199 5 "The mood created by the author in the memoir was thankful @CAPS1 and happyness. He was so greatful for his parents, and how they gave up their whole lives in cuba just to come to america for there kids benefit. They had a good life in cuba, they had good paying jobs, and they had a nice home, and a nice huge family there and i bet they didn't want to leave. but it was something they had to do for their kids benefits. So they moved to america, and they left their home and their good paying jobs, and they also most importantly left their family. that im sure they are going to miss like crazy. In this passage he (the author) was the most thankfull boy ever, and he was thankfull for his parents sacrifice and how they came to this country with such courage and NO knowlage of the language of the culture. but they came to give their children a better life even if it ment leaving behind their family, friends, and carreers in the country." 3 2 3 +13200 5 "The mood created by the author in the memoir is that of love, kindness, and welcome. This is true because the author uses adjectives such as passionate, warm, humble, and simple to describe how the family lives surrounded by kind people with a loving ambience. Also, the author describes how his family always welcomed others into their home and received a similar kindness back. This, @CAPS1 describes, is because they consider everyone as family, which, as Narciso believes, is because of their love for each other. finally, the author explains how @CAPS1 is extremely grateful to his parents ""for their love and sacrifice."" @CAPS1 states that @CAPS1 ""thanked them repeatedly."" This also shows how Narciso wrote his memoirs to be full of love, especially for his parents, which dictated the mood of the piece." 3 3 3 +13201 5 "The mood of the auther might have been in a good mood. the auther might have been doing some of us own family, history and saw that his family did the same things as what they did in the story." 0 1 1 +13202 5 "The mood is warm, happy nice. His parents were open with warm hearts, kindness to anybody in trouble. The would have people over and stay with them as long as they like." 1 1 1 +13203 5 "The mood created by the author in the memoir is happines and Love for the @NUM1 reasons. first @CAPS1 parents ""creatud aur traditional cuben home, the very heart of which was the kitchen. My parents both shared cooking Duties."" as said in paragraph @NUM2 and had Passionate Cuban music filled the air, mixing with the aromas of the kitchen. wich hade a feeling of happines in the house with the aroma of food and the music playing mixing in with the aroma also the parents helping each other in the kitcn gives the Love mood. Second is stated in paragraf @NUM3 ""our Landlord and his daughter, Alegria (my babysitter and first friend), lived above us and Alegria graced our kitchen table for meals more often than not wich shows the mood of love and happines between Narciso and Alegria with them eating together and being freinds. The last example is also in paragrafe @NUM3 as it said ""countless extended family members came and went - and there was often someone staying with us temporarily until they were able to get back on their feet."" wich was a kal the mood of Love for ther reletives to take them in until they are on track with thier Lives. That is the mood created by the author in the memoir is happines and Love." 4 4 4 +13204 5 "The @CAPS1 created by the author in the memoir Narciso Rodriguez is a loving and scaring one. Through out the memoir Narciso talked about how his whole neighborhood ""came together."" Also, he gave the readers a feeling of how loving and caring his household was. Narciso also says ""growing up in this enviroment instilled in me great sense that family had nothing to with being a blood relative."" @CAPS2 that his neighbors where close to him there where basically family. The @CAPS1 described in the @CAPS3 is loving and caring." 3 2 3 +13205 5 "The mood of the story is comfort. When the author describe his home and how everyone was welcome it made me feel as if those people were in a comfortable, safe, and loving enviornment. When you turn a house into a home you feel comfortable in it because you have many comforting and loving memories in it. The author said that many people came to his house to eat Cuban food." 2 2 2 +13206 5 "In the memoir, ""Narciso Rodriguez"" by Narciso Rodriguez, the author creates a very strong mood, and describes it very well. The mood of the story is happiness. One way the author describes this is with all the appretation in the memoir. The author really appretaties all the things his parents have done for him, that were really hard for them to do. ""My mother and father had come to this country with such courage, without any knowledge of the language or culture. They came selflessly, as many immigrants do, to give their children a better life."" One more way the author reinforced the mood is with the carring in the story. Narciso cares so much for everything his parents did for him. Also, how his family would let other relatives stay with them and care for them. Lastly, all the culture helps the mood. The description of the cuban food and music and how they celebrate creates happy thoughts in the reader's mind. As you can see, the author was very good at creating a mood." 4 3 4 +13207 5 "the mood that the author created is happiness. I know because he explains how much he is grateful for his parents, @CAPS1 happy he had a great home and he learned the real definition of family.The auther is grateful for @CAPS1 parents for the love they gave him. He says ""I will always be grateful to my parents for their love and sacrifice.He is happy to have a place called home. And he wont forget it either. He also says. ""I will never forget how my parents turned this simple house into a home.And last he learned the defintion for family. The article says ""It was here where I learned the real definition of ""family""." 3 3 3 +13208 5 "The moods created by the author in the memoir are loving, care, family, sacrafice, and warmth. All of these moods are demonstrated when the author describes all of what her interpretation of family is, and when she described everything her parents have done for her. The passage that states: ""they came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving their families, friends, and careers in the country they loved."", @CAPS1 that the parents sacrificed so much, and cared and loved their children so much that they were willing to give up their lives in their country and leave behind everything in order to make Narciso's life better. Their family provided warmth and care for everyone who needed it. They truly learned the real meaning of family. The author created a very loving mood in this memoir." 3 2 3 +13209 5 "The created by created by the author in the memoir is happyness because his happy cause he grow up in @LOCATION1 and for the courage of his family. Also love because he said ""I will never forget that house or it gracious neighborhood or the many things I learned there about how to love.' @CAPS1 admiration ""For their strength and perseverance.""" 2 2 2 +13210 5 "The mood created by the author in this memoir is that be proud and happy of who you are no matter what. One example of this mood being showned in the excerpt is when the family moves into the new apartment. The narrator says that ""My young parents created the traditional Cuban home. Passionate @CAPS1 music filled the air. Here the innocence of childhood, the congregation of family and friends and endless celebrations that encompassed both, formed the backdrop to life in our warm home"" This shows the families proudenest of being cuban because even though they are in @LOCATION1 now, they didn't forget their cuban traditional of life, food and music. They are happy with their life. You should always be proud of who and what you are as explained in this excerpt. " 3 2 3 +13211 5 "The mood created by the author in the memoir is a loving mood. In the memoir, the author talks a lot about family. And even though they weren't blood related, he considered many people his family. In the text it says ""In our neighborhood, despite customs elsewhere, all these cultures came together in great Solidarity and Friendship. It was a close-knit community...."" @CAPS1 example of the mood being loving is the author talks about his parents being selfless and leaving so much behind. And they did all that just to make sure he got a better life. In the memoir it says ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" Also, the mood is loving because the author talks about how grateful he is. He's grateful to how much his parents did so much for him and others. In the story it says ""I will never forget how my parents turned that simple house into a home."" @CAPS2 are ways that explain why this memoirs mood is a loving mood." 3 3 3 +13212 5 "In the memoir by Narciso Rodriguez, he undoubtedly creates a mood of happyness and love, love for his family and friends. His definition of family is different from other people's definitions, but many people would agree with his definition. He calls family not only blood relatives, but the love and friendship that people have for eachother. By creating a mood of love and happyness draws the reader into a cultural story and how his life was affected by that of his parents, and his family. When he describes the food, the laughter, the neighbors, the kitchen, and the house, it all feels very warm and feels like a place someone would love to be at. Because he talks about things people want to hear, he accomplishes a great feeling of warmth and being happy throughout the reading." 3 3 3 +13213 5 "In the article ""Narciso Rodriguez,"" the author is explaining his home growing up. THe mood changes throughout, from ""uplifting"", to proud, to greatful. All very relaxing tones. First, the article starts off with background information. This section is uplifting, especially when the writers uses terms like ""innocence, warm, and endless celebrations"". When he states ""Here, the innocence of childhood, the congregation of family and friends and endless celebrations that compassed both, formed the backdrop to life in our warm home,"" the reader gets a image of happiness in their mind this is one mood the author gives @CAPS1 mood given off in the article is a sense of pride. Narciso Rodriguez says ""It was in this simple house that my parents welcomed other refugee to celaebrate their arrival to this country and where I celebrated my first birthdays."" @CAPS2 no shame in that sentence. The author is honest, and shows how proud he is to explain how much he was proud of growing up. Finally, the author gives off a greatful mood. He says that he learned the definition of family, and even though he wasn't put in the best home, many memories were made there In conclusion, the author shows different moods such as uplifting, sense of pride, and thanks giving." 4 3 4 +13214 5 "The mood that was created by the author in the memoir is that. It means that she is a citizen in the united States of @LOCATION1 and she is a good kid in school. She is kind to others. She respect the reigion she is, she haves lots of hope for the furtiure. She has lots of family members in the story, that wha I think of the memoir. that what I think it means." 0 0 0 +13215 5 "The mood in the memoir is mostly gratefulness and happiness. The author describes his house as ""... our traditional Cuban home,..."", ""... unwittingly passed on to me they're rich culinary skills and a love of cooking that is still with me today."" This explaines that even though the author is an adult he still has the pasion that his parents had together when he was a kid. The author realizes that ""family doesn't mean blood realated"" it's about being around people that he loves and making things out of the little moments in life. The article states ""I will always be grateful to my parents for their love and sacrifice."" This shows that the author admires his parents for everything they have given up to get to where they are now. The end of the memoir explaines that the author is grateful for living in that house, and having all the people around him. He learned the real definition of what ""family"" means and what love truely is." 4 3 4 +13216 5 "The author creates a mood of grateful rememberance. The auther is looking back at the place where he grew up and is recalling how loving and open his parents were to a world that tried to hold them back. He is grateful to his parents for teaching and showing him the definition of family, and of how to cook, and an appreciation of culture and openess." 1 2 2 +13217 5 "The author of the memoir created the mood very well. The mood in the memoir was very warm and happy. There were many ways the author created the mood. One way he created it was by saying that at that time, overt racism was the norm and segregation prevailed in the United States. And then he said his neighborhood was made up of Spanish, Cuban, and Italian immigrants and despite the different customs all of these cultures came together in great solidarity and friendship.Another way the author created the mood was by telling us how caring his parents were. He does this when he tells us about how when ever someone was in need, they would let them stay at their house.'""The next way the author creates the mood is when he says my parents always kept their arms and their door open to the many people we consider family, knowing that they would do the same for us.Those are some ways the author created the mood in the story." 3 3 3 +13218 5 "The author creates a mood in this memoir. The author starts off with a mood that is kind of sad. He explains how his parents lived in a one-room apartment when they moved from Cuba to the United States and that there was a lot of segregation going on in the United States. The memoir gets happier as the author describes in paragraph @NUM1 how friendly and close the people living around him were. The hardships of the author's parents are listed in paragraph @NUM2. The fact that they had to start all over again is sadening. The author finishes of in paragraph @NUM3 and @NUM4 with a happy ending. He describes what he has learned from his parents and everything he is grateful for. For example, he learned the true meaning of ""family"". The mood that the author creates is very important to the memoir." 2 2 2 +13219 5 In the memoir the author created the mood of being happy and joyfull. One reason I feel this way is by the way he talks about what goes on in his home. Like when he talks about the hart of the home being the kitchen and how his parents passed on the skills and a love for cooking to him in paragraph @NUM1. Another reason I feel this way is the way he describes the types of friendships he has with is neighborhood. Like in paragraph @NUM2 he talks about how all of the different cultures come together and have great friendships with each other. As I read this it makes me think of all the fun and joyfull things that happened at my house and wonder what else will happen at my house in the future. 2 3 3 +13220 5 The mood in the @CAPS1 is happy. Happy because Narciso is happy to have a home and family. He is happy about the courage his parents have. He is happy that he is loved. Narciso loves his family for caring about him. He also loves the courage they had to immagrate to the United States. The mood of this story is happy. 1 1 1 +13221 5 "In this memoir the author tried to create a mood, so the reader could understand this memoir better. The mood the author created was very caring. The author talks about her ""Traditional Cuban Home"" he talks about the things that went on in her household, @CAPS1 For @CAPS2 the Passionate Cuban Music that was played, the armonos of the Kitchen, the innocence of childhood, and her life in her ""warm home."" This shows that her family really loved and cared for one another. Also, Narciso Rodriguez said ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" This also shows the mood was love, and caring for each other. Lastly, Narciso Rodriguez talks about how grateful she is for what her parents did and sacrificed for her. She said she will never forget her graceful Neighborhood, she learned the real definition of family, and she was @CAPS3 her parents/family for turning her house into a home. The mood for this story was very loving, and caring." 3 3 3 +13222 5 "The mood created by the author in the memoir felt happy, and very greatful. In the memoir it tells how the author, Narciso Rodriguez feels ""I will always be grateful to my parents for their love and sacrifice"". which gives that he is so, so, so grateful and happy of his life, which makes the reason happy to hear that his parents sacrificed themselves for their children to have a better life, even though it ment leaving behind their families, friends, and careers in their country they loved." 1 2 2 +13223 5 "The mood that the author was portraying in the memoir was a very loving, caring and emotional mood. In paragraph @NUM1 she states ""It was here were I learned the real definition of ""family"". And for this, I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home.""" 1 2 2 +13224 5 "His mood of this author is @CAPS1 and detailed. He describes the life of this person and tells life about the family. He says and describes how he lives in a two family, blond brick house in @LOCATION1, and passionate about cuban music. There was Cuban and Italian immagrants who were racist and didn't care." 1 2 2 +13225 5 "In ""Narciso Rodriguez"" from the story ""The @CAPS1 of Our Lives"", Narciso describes a mood of family and friends. He describes how his family always kept their arms opened, etc., to accept anyone who needs their help. He describes how his extended family always nearby. He describes the celebrations and the dinners that took place in his home. Most of all he described his home always had guests and family nearby." 2 2 2 +13226 5 There were many different moods throughout the passage. One of them was in paragraph @NUM1. It was a party in there new home and everyone was enjoying themselves. They were all happy and excitedThe second mood was there friendliness in paragraph @NUM2. They were all from different parts of the world and got along and he even though they had there differences they got together as friends.The last mood was there love. Thare whole family got together on birthdays and sometimes on a random days and ate together. The Rodriguez family left there door open for any reletives who needed a place. They let them stay in there house for as long as they needed to get back on there feet. (in paragraph @NUM3.)@CAPS1 were the different types of moods throughout the passage for the Rodriguez family. 3 3 3 +13227 5 "The author created a very warm, cheerful mood in the memoir, using a happy tone throughout the story. First, Narciso talked about his New Jersey home that was re-created with Cuban tradition. ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" As you can see, Narciso has a great admiration to his Cuban tradition and showed it through the warmth he provoked in this sentence. Next, Narciso stresses how regardless of mixed heritage, everyone in the neighborhood came together like family, which creates a happy, safe feeling in the reader. Lastly, the author created a mood of feeling touched in the reader by explaining how much sacrifice his parents made for him to have a good life. Narciso strongly represented the love of his parents in this sentence, which the reader can feel." 3 3 3 +13228 5 "the author in the memoir's mood is like saying it's good and bad because he talks like he and his family take in people that need help geting back on thare feet, there hopeing that the people will do the same for them if thay need it.the boy is happy he lives in the @LOCATION1 but his parents gave up so much for him. this is the mood of the author." 1 2 2 +13229 5 My mood while reading this memoir written by the author was a little bittersweet. It talked about sweet little things that were sad but sometimes happy. They talked about sacrifice so much in this memoir. And it feels like they all have to grow up faster because it is so different than our lives ane they are more gratefull then us even though they have like not as much. And it sounds like everyone gets along so easily and yet they make do with all they have. It really touched my heart. 1 1 1 +13230 5 "The mood in the memoir ""Narciso Rodriguez is appreciation for what you have. An example of appreciation is in @CAPS1 @NUM1 when he states ""After living for a year in a furnished oneroom apartment, @NUM2-year-old Rawedia Maria and @NUM3-year-old @ORGANIZATION1 could afford to move into a modest three room apartment I would soon call my home"". This shows that he is happy to have whatever he can get. Another example is throughout the memoir he always talks about all the problems they have had but is still grateful for everything they have growing up. This is how the mood in the story is appreciation" 1 3 1 +13231 5 "The author of this passage seems very happy about the way her life is today. She explains that her parents originally from Cuba arrived in the United States in 1956. She tells us about how she was born in 1961 and situated in a two family, blond brick building. She talks about growing up in this enviroment instilled in me a great sense of family. She mentions that her parents raised her well and they made it seem like they were a extremely great family. The author of this memoir seems extremely happy and she thinks she found the definition of family" 2 2 2 +13232 5 "In this memoir, the author creates a very unified and comforting, but also responsible and thoughtful, tone. Within the second paragraph, Narciso Rodriguez provided a sentence to generally describe his thoughts toward his three room apartment, claiming it to be where ""the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" The adjectives that Rodriguez providvedes in the sentence, such as ""innocence"" and ""warm"" provide for a comforting feel, while ""congregation"" adds to the concept of the unity. However, he is also shows that his parents were very responsible and hardworking, coming to the United States ""selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers"". With all this self sacrifice, Narciso Rodriguez himself expresses gratitude in great amounts towards his parents, constantly thanking them for the opportunities they provided for him." 4 4 4 +13233 5 The author's mood that he wanted you to feel was that your family and house was loving. he mentions a lot that his parents would let friends and @CAPS1 come eat at dinner table for because they would help the authors family in the long run. The mood shows that the author liked his home life growing up and that his family admired were they werer from. 1 1 2 +13234 5 "The mood created by Narciso Rodriguez is happines. @CAPS1 shows happiness by showing @CAPS1 wanted nothing more that to be with his family doing the things @CAPS1 loved, which @CAPS1 did. @CAPS1 also shows that @CAPS1 is greatful. ""I will always be greatful to my parents for their love and sacrifice."" @CAPS1 feels @CAPS1 could never be as ""courageous"" as his parents and @CAPS1 thanks them for that, ""I've thanked them repeatedly."" I think the overall mood of this memoir is joy and happines.There is a flowchart on the bottom of the page, @NUM1 columns: one is mood, the other support. Under mood is happy and grateful. Under support for happy is ""like @CAPS1 wanted nothing more"". For grateful is written (@NUM2)." 2 3 3 +13235 5 The mood of the memoir is very appreciative. The author is appreciative for his culture and Cuban descent. He shows that his culinary Skills improved because of the phase change from a house to a home. His parents are greatful to have a great designer learn and egknowloge @CAPS1 of the Cuban Skills he had learned just from the mood of his life as a child. 1 1 1 +13236 5 "In the memoir of Narciso Rodriguez he creates a mood of appreciation. He talked about how grateful he was that his parents selflessly came to @LOCATION1 to give their child a better life. Also, how his parents accepted how they wouldn't get the jobs they deserved. However, Narciso's parents knew that if their children got better lives it was worth it, which made Narciso feel incredibly grateful for his parent's sacrifice. He appreciated how his parents taught him the true meaning of ""family."" In paragraph @NUM1 it says, ""And for this, I will never forget that house or its gracious neighborhood or many things I learned there about how to love."" The quote creates a feel of how grateful Narciso was for everything he had. The mood of Narciso's memoir is his appreciation for his family." 3 3 3 +13237 5 "The mood is created by the auther in the authe in the memoir by. ""Narciso Rodriguez and internally reconized @CAPS1 desiner, offers the following definition of ""family""."" @CAPS2 @CAPS3 what and all the diffienetions of family and what a family is. ""Our landlord and his daughter, Alegria (my badysitter and my first friend) lived above us and Alegria graced our kitchen table more often than not"". Alegra was @CAPS4 as a part of the family not by blood not by chose but by @CAPS5 because @CAPS6 understand the Rodriguez's family @CAPS6 liked them so @CAPS6 becacme part of there family and they became part of her family. ""Here, the innocence of childhood the Congregation of family and friends and endless celebrations that encompassed both formed the backdrop to life in our warm home"". When your away from Home every thing you do is different the way you sleep, eat, talk, react, is all different except when your home every thing is normal again. family isn't by blood but by heart of @CAPS5 and Home isn't where you live it's where familiy is it's where memoris are that's How the mood is set by the auther" 3 3 3 +13238 5 "The mood created in the memoir was peacefulness, @CAPS1 and gratefulness because Narciso Rodriguez is grateful for hisparentsshowinghim what family really means, and he says his whole neighborhood came together in @CAPS1 to createpeace." 1 1 1 +13239 5 "In the memoir, The author mood is that they have a family come from Cuba and they had come to @LOCATION2 in 1970 but the other [Parents] come to @LOCATION2 in 1956 and the live in one apartment. It is nice that it changh their live over time in the @LOCATION2 and the author moon is okay because they want to tell us about their live and how it happend, how they get here, and other things that they want us to know about." 1 1 1 +13240 5 "The mood created by the author in the excerpt ""Narciso Rodriguez"" is light-hearted. One piece of evidence of a light-hearted mood is in paragraph @NUM1 where it says, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" @CAPS1 piece of evidence is in paragraph @NUM2 when it states, ""My parents always kept their arms and their door open to the many people considered family, knowing that they would do the same for us."" Also, in paragraph @NUM3 it says, ""I will always be grateful to my parents for their love and sacrifice. I've often told them what they did was a much more courageous thing than I could have ever done."" In conclusion, I feel the author created a light-hearted mood. " 3 3 3 +13241 5 "The author created a mood of warmth and happiness. By talking about his parents cultural cooking and music gave a feeling of home. His parents graciously taking in people when things weren't going well for them, created a mood of the unity and friendship, along with the love for extended family. The author also creates a grateful mood through his parents' love and sacrifice, as well as there struggle to make there lives better. This also showed perseverance because Narciso's parents couldn't even speak english but they made it through that and created a wonderful life for their family." 3 2 3 +13242 5 "There is actually more than one mood that is set in this memoir. The most important one, though, is admiration. The author focuses his writing on the many positive actions and characteristics of his parents during his childhood. He admires their courage to come to @LOCATION1 in order to start a new life, despite hard times and rascism. He also praises their willingness to help other immigrants and stick with everyone while they create a new beginning. The other mood in the memoir is gratitude. The author looks back on everything his parents did for him many times. He credits them with turning their small, poor apartment into a home for him, and teaaching him the true meaning of being family. The author, in a way that reaches out to readers, thanks his parents for making him into who he is." 2 2 2 +13243 5 "The mood created by the author in the memoir was happy and grateful. First, the setting contributes to the mood. The setting of this story is in a nice little home that had a happy environment, surrounded with family and friends. ""Growing up in this environment instilled in me a great sense that"" family"" had nothing to do with being a blood relative... In our neighborhood... all of these cultures came together in great solidarity and friendship."" that quote shows that the neighborhood and the people in it all contributed to the happy mood. Second, the actions of the author's parents made the author happy and grateful. ""I will always be grateful to my parents for their love and sacrifice."" Even though it wasn't easy for them, the author's parents @MONTH1 the sacrifice so the author could have a better life. This made the author's life happy, and the author was grateful. the mood created by the author in the memoir was happy and greatful." 3 3 3 +13244 5 "The mood in the memoir is about family. Your family does everything for you. I love my family. They support me at whatever I do. Whether it's sports or school work, they're always there for me. They are so loving and amazing. All families have crisis', but my family works them out. In the memoir, Narciso has to live on his own. His parents left, and they think he can do it. He is very responsable, and his parents see that. His family is big on religion. The listened to their cultural music while cooking. My family can do a lot together. The work well together, and they became successful. They own a family resterrant in @LOCATION1 called @ORGANIZATION1's @CAPS1. They make amazing food, and I'm so proud of my family." 1 0 1 +13245 5 "I would @CAPS1 the @CAPS2 is @CAPS3, hopeful, and thankful because the last few paragraphs it thanks people and shows it's appreciation." 1 1 1 +13246 5 "In the memoir, ""Narciso Rodriguez"" the mood set by the author is thankful. We can tell the author is thankful because, she says that she is thankful that her parents left Cuba for her to have a life in @LOCATION1. In paragraph five he says, ""They came selflessly, as many immigrants do, to give their childern a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" In paragraph six she says, ""I will always be grateful to my parents for their love and sacrifice."" This is another example showing that she is thankful. A third example is also in paragraph six when the author says, ""I've often told them of my admiration for their strength and perseverance and I've thanked them repeatedly."" This is saying that this person is thankful for the sacrifices and that they can not tell they're parents enough. In conclusion, from the memoir, ""Narciso Rodriguez"" the mood that we can conclude is given off is that they are thankful for what they're parents have done for them. " 3 3 3 +13247 5 The @CAPS1 created a warm and welcoming feeling. They explained they're Parents troubles in the past and how they over came them. This shows courage. They describe their heritage and culture which shows confidence and honor. The @CAPS1 did a great @CAPS2 creating a comforting feeling. 1 1 1 +13248 5 "Throughout the @CAPS3 the author @CAPS1 many moods to describe and fit what has happened in his memoir. One way the mood of the memoir is loving. From the @CAPS3 it tells how he had grown to understand what family ment even if he wasn't blood related to someone. This @CAPS5 the mood is loving because he is @CAPS4 Close to people in his life from everything that has happened to him. A second mood of what the memoir is, appreciative. A memoir is a true @CAPS3 witch tells true feelings behind what the author is saying about the @CAPS3. From the @CAPS3 explains how the author is @CAPS4 appreciative of his parents for going through @CAPS4 much for him, and providing him with things he's needed. This @CAPS5 its appreciative because it says that he has thanked them over and over again. Lastly the mood could be @CAPS2. The mood is @CAPS2 because in the @CAPS3 it explains how having family and friends over all the time made him enjoy everything because his family always had people over to have dinner with, and always had their arms open if Someone needed help, @CAPS4 this @CAPS5 that the mood could be @CAPS2. Overall there are many ways to describe the mood of the @CAPS3 from reading it." 3 3 3 +13249 5 the mood created by the author in the memoir would be sad because he is remembering a really good time in his life and he knows it wont happen again but at the same time he is happy for having a good childhood and misses the good times and he is feeling greatful for his parents hard work when things looked bad thats how I think the authors mood would be in this memoir. 1 1 1 +13250 5 "In ""Narciso Rodriguez"" by Narciso Rodriguez a happy, loving and grateful mood is created. Narciso writes ""Growing up in this enviroment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" @CAPS1 loves the people that @CAPS1 calls his family, even if they aren't really related. @CAPS1 talks about Alegria, his first friend, and Sergio and it Edelmira, his surrogate grandparents. Narciso aknowledges the fact that his parents left behind their old life and came to @LOCATION3 for him. @CAPS1 says, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 knows that his parents care about him more than they can ever express. Narciso knows that his neighborhood was a huge part of his life and proves it by writing ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love."" I think that overall it is an upbeat article about a man's past, where she learned the defenition of love, and how grateful @CAPS1 is to those who taught him it." 4 4 4 +13251 5 "The book Home: The Blueprints of our Lives by Narciso Rodriguez, the memoir describes of her home and how grateful she was towards it. The author was gratefu her parents work toward the house because of how much time the parents had used in order to make the auther at her homeland. The declorations in the home were amazingly done to perfection. ""My young parents creates our traditional Cuban home, the very heart of which was the kitchen"" (paragraph @NUM1). Shows how much love, time, sacerfice her parent put through to achieve such amazment. It is hard in order to turn ""one simple house into a home."" (paragraph @NUM2)." 2 3 3 +13252 5 I feel like the mood in the memoir is being grateful for your family for many reasons. My first reason is Narciso's parents came to @LOCATION1 from Cuba just to make sure that there kids will have a good life. Another reason is his parents did hard labor and worked really hard to make he a good life. They also made there house feel like a home for their son. There are alot of thing Narciso is grateful. 2 2 2 +13253 5 "In the memoir the author gives off a happy and greatful mood. He talks not have they changed their home into a tradition Cuban home, the hearth of which is the kitchen. Narciso says he is eternally greatful for the skill of cooking his parents gave him. They had ""family"" over all the time, and they would even let people stay over till they got back on their feet. He was greatful for them doing everything they could so their kids could have a greater life. They had also taught him the real definition of ""Family"" and he is greatful to them for ever more." 2 2 2 +13254 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez the mood the author created in the memoir was a mood that made you feel like you were at home.The mood that the author created with the mood that made you feel like you are at home. One quote from the memoir that helped set the mood was ""Passionate Cuban music filled the air mixing withe the aromas of the kitchen.""The second thing that @PERSON2 mentioned that also helped set the mood was ""Growing up in this enviorment instilled in me a great sense that ""familly"" nothing to do with being a blood relative.I conclusion the mood that @PERSON2 created was to make you feel like you wer at home. Thats @CAPS1 set the mood. " 2 2 2 +13255 5 "In this memoir, the author creates the mood as gratitude. Narciso Rodriguez says, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 expresses his gratitude for his parents selflessness. His parent's ""started their lives over entirely"" (paragraph @NUM1) just so their children could have a better life. ""The faith that this trouble would lead them and their children to better times drove them to endure these hard times."" (paragraph @NUM1) It also describes how friendly their family was. It says, ""There was often someone staying with us temporarily until they were able to get back on their feet."" (paragraph @NUM3) They were honest, hardworking immigrants who helped others and worked hard in persue of a better life.@CAPS1 describes the mood using many details. @CAPS1 describes Rodriguez's home by saying in paragraph @NUM4, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, form the backdrop to life in our warm home."" The author uses details to describe the mood in ""Narciso Rodriguez"" memoir." 4 4 4 +13256 5 "In the memoir, ""Narciso Rodriguez"", the author describes how his first home as a child was a warm and inviting place to live. As described in paragraph ""... my prents always kept their arms and door open"", meaning his home was a loving place where anyone in need was welcome to stay. The overall mood of this memoir is that the community the author grew up in was a unified and happy one, where all the other immigrants were ""family""." 1 3 2 +13257 5 "The mood created by the author in the memoir is very positive. I believe that the mood is positive because in paragraph @NUM1 it says ""I will always be grateful to my parents for their love and sacrifice."" Also ""I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly"" @CAPS1 the whole memoir there is a lot of positiveness. That is the mood from the memoir." 2 2 2 +13258 5 "The mood is nice, happiness and joyfulness. He talks about how his most treasured memories are at his old home with his parents and family and friends. He talks about all of the fun they had like feasts seeing alot of family all of the time and how he has so much fun." 1 1 1 +13259 5 "The mood created by the author, Narciso Rodriguez is a grateful and loving mood. The author creates this mood because he is saying how grateful he is for is parents to sacrifice what they had in Cuba to come here and help create a better like for him. In paragraph @NUM1 it says, ""I will always be grateful to my parents for their love and sacrifice."" The author is truly grateful for all his parents havedone. Also the author creates a loving mood because in paragraph @NUM2 he is saying how his parents always cared for friends and family an he said that they always kept the door open for anybody who needs time to get on their feet Also the author was talking about how his neighbor hood is a family and they all love eachother. the author, Narciso Rodriguez creates a loving and grateful mood" 3 3 3 +13260 5 "In the memoir the author creates a mood. Narciso Rodriguez tells about their childhood, and their home. This creates a mood in the reader of being home and warmth of family and love.@CAPS1 this memoir gave a feeling of home, or being in the home of a Cuban family. Almost as if who ever was @CAPS1 it knew them. It gave a feeling of hospitality and love. For example in paragraph to the author talks about the home, food, music, etc. In the end of of the paragraph it said all those things formed the backdrop to life in our warm home.Throughout the memoir it speaks about family, friends, and neighbors. This gives a feel of hospitality, for example ""My parents always kept their arms and door open to the many people we considered family.""@CAPS1 this memoir creates a mood in the reader. Mostly of hospitality, but also of love, warmth, and friendship. As if you know the Rodriguez family, and you're entering their home." 3 4 4 +13261 5 "In, @CAPS1 of our lives @CAPS2 narciso Rodriguez. The mood was calm and @CAPS3, and this I why he metiond how @CAPS4 he Is To every one and I like how he @CAPS5 a Back round story. Like in @CAPS6 one he @CAPS5 a story time line for what was To happend. That Is The mood/@CAPS8" 1 1 1 +13262 5 The mood was to show it was a comftorble feeling. To show about a family and how a family would take care for you and what not to explain what lifestyle makes someone feel great to make the feel safe and not live in a life where it will just wither away from you. That is the mood I think the author is trying to set 1 2 2 +13263 5 "The mood created in The memoir was based off how The author felt about his ""home"" and ""family"". @CAPS1 was raised by parents that would let people stay in their house until they got back on their feet again, Their whole neighbor hood did it: ""Quite The contrary, [his] neighborhood was made up of mostly Spanish, Cuban, and Italian immigrants at a time when overt racism was The norm and segregation prevailed in the United States (paragraph @NUM1)"". @CAPS1 learned many diffrent things from them, like the definition of family: ""Growing up in The environment instilled in [him] a great sense That ""family"" had nothing to do with being a blood relative (paragraph @NUM1)"". What @CAPS1 is trying to say that you can love Someone and call them your family even if they are not blood related. The feeling that @CAPS1 has towards his family is mutual to the feeling everyone else has with there's: ""[@CAPS1] will always be grateful to [his] parents for @CAPS2 love and sacrafice (paragraph @NUM3)"". @CAPS1 loves everyone who helped him through his life and @CAPS1 is grateful to have them. The mood in This memoir is love." 4 4 4 +13264 5 "The mood created by the author in this memoir is a very welcoming and happy one. Right off the bat Rodriguez talks about the advantages in his life. The advantage of where he lived, his heritage and his ""family"". When Rodriguez first moved into his house, he thought of it as ""a modest three- room apartment. After all the good memories shared in the apartment Rodriguez attitude about the appartment changed. ""Turned this simple house into a home. His heritage, or culture, filled the air. Some of these cultures included Cuban cooking and music. ""Which I adored to this day"" another mood setting advantage is his ""family"". Rodriguez talks about how his family was always over filling the house with laughter ""family"" had nothing to do with being blood relative."" A welcoming and happy mood is created by the author." 2 3 3 +13265 5 "The mood in this paragraph is pride, and hope, and love. Narciso clearly feels very strongly about his family. He states ""I will never forget how my parents turned this simple house into a home."" That sentence alone @CAPS1 the pride and @CAPS2 in Narciso's words. The mood is happy and loving." 1 1 1 +13266 5 "The mood created by the author in this memoir is a exciting, partying like mood in the beginning because in the second paragraph he's saying, ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen and endless celebrations, etc. Towards the end, the mood changed a bit into a grateful, sweet and loving mood because he says, ""I will always be grateful to my parents for their love and sacrifice."" The mood changed into a slowed kind of mood and explains why he is grateful for all of it. He says, ""I will never forget how my parents turned this simple house into a home."" This sentences shows us anothe reason that at the end, the mood turned into a grateful, sweet and loving mood." 2 2 2 +13267 5 "The mood created in this memoir is friendship. One reason is because his parents let the door open for the peope they considered family. A quote that shows this is ""My parents always kept their arms and their doors to the many people we consider family. This shows that the mood is friendship because his parents are great friends to their family. A second reason is the importance of friend ship. A quote that shows this is ""the demonstration of how important family and friends are."" This show that the mood is friendship because his parents taught him friendship his whole life." 2 3 3 +13268 5 "In this excerpt from Narciso Rodriguez's book, home just reading the last sentence: ""I will never forget how my parents turned this simple house into a home,"" reveals the true mood of the memoir. The mood the author gives out in this excerpt is warm, comfort and happiness. In the first @NUM1 or so paragraphs, Rodriguez describes his simple apartment that he first lived in, and how really, it was nothing anyone would consider special. But as the memoir goes on, he talks about how his family and friends is what really turned his little house into a home. His parents created a traditional Cuban home, which mainly consisted of the kitchen and how cuban music, and traditional cooking always went on. What really established a sense of warmth, community and happiness in this memoir is when he talks about how you didn't have to be a blood relative to be considered family, everyone was welcomed into his home. All were immigrants though, hardworking immigrants that created this close-knit community. Everyone's arms were wide open, so to speak. The great act of giving thanks contributes to the mood displayed within the memoir. The last few paragraphs state how Rodriguez's parents came to @LOCATION1 very selflessly to give their own children a better life than they had had even if it meant struggling with their own personal hardships. The author talked about how he admires his parents and appreciates everything they had done for him and how their teachings of family, traditions and welcoming anyone no matter what their background really did turn their simple house into a home." 4 4 4 +13269 5 "The mood in ""Narciso Rodriguez"" was loving, caring, warm, and inviting. The loving atmosphere was created by how much the family really did love each other. The family also loved their Cuban culture. The mood was also caring and friendly. The familes from all different countries cared for one another. I felt that all the people were warm and inviting. Everyone felt that they could trust each other and have each other over for dinner. The Rodriguez family really brought their culture to their new home and Narciso mentioned in the last paragraph that this is where he found out the definition for family while living in this neighborhood. The mood was created very clearly by the author in this memoir." 3 2 3 +13270 5 "The mood created by the author in this memoir is peaceful and loving. Narciso really believes that the definition of home is relationships & love rather than furniture and expenses. His home sounds really great because the way it is described in the memoir, you can see that his family are very caring and selfless people. The fact that his parents take in strangers and allow them to stay at their home really shows that they are very caring people." 2 2 2 +13271 5 "In the memoir, Narciso Rodriguez by Narciso Rodriguez, there are different moods created.One mood is @CAPS2. This memoir includes @CAPS2 because it reminds him about where he grew up and how comforting and loving his parents were. ""I will never forget that house or its gracious neighborhood where the many things I learned there about how to love."" @CAPS1 mood is love. ""I will never forget how my parents turn this simple house into a home."" This shows how much he loves his parents and how much he loved his home.The last mood is, grateful. Although they were poor and lived in a @NUM1-room apartment, they were extremely grateful for that. ""Here, the innocence of childhood, congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This shows how grateful they were.In this memoir, Narciso Rodriguez by Narciso Rodriguez, some different moods included are, @CAPS2, Love and being grateful for what you do have and not what you dont have." 3 4 4 +13272 5 "The author's mood is very grateful and happy. The author's parents were originally from Cuba, and arrived in the United States in 1956. The author moved into a modest, three- room apartment. Both the author's parents had rich culinary skills and a love for cooking. The author inherited his/her skills from his/her parents. They lived in a community of hard-working immigrants from @LOCATION2, Cuba, and @LOCATION3. The author's parents were very nice and friendly. They invited immigrants to their house to eat and celebrate the arrival of the United States. The author learned the real definition of ""family"" in his/her new home and community. The author is grateful to his/her parents for their love and sacrifice." 2 2 2 +13273 5 "The mood of this passage is very warm and personal. Narciso is very reflective in this passage about how his parents were so unselfish and gave up their life in Cuba to give Narciso a better life. Narciso goes on saying how unselfish his parents are, and how they take people in to give other people a better life not just themselves. Narciso's parents were very caring, and very meaningfull to him. He continues the mood by talking about what a true family is. How it's not just someone your blood related to, but who you care about and love." 2 2 2 +13274 5 "The mood created by the author in the memoir. Growing up in this environment instilled in me a great sense that family had nothing the memoir life was hard. Quite the contrary our neighborhood was made up of mostly Spanish, Cuban and Italian immigrants at a time when overt recism. in their neighborhood despite customs elsewhere all of these cultures came together in great solidary and friendship. Over all these was hard for the author memoir" 2 0 1 +13275 5 In the memoir the author made a certain mood. The mood he made was loving and very alive. He constructed the mood of love in paragraph @NUM1 where he talks about the memories of his house always filled with comforting aroma of food and the passionate cuban music playing. It also where he talks about how the memory of his home having the congregation of family and friends as the back drop of their warm home. Another example of the mood of love is in paragraph @NUM2 where he talks about how he was always surrounded by love ones during meals. He constructed mood of life in paragraph @NUM2 as well because he talks of how his house always became a sanctuary to his extended family member who lived with them until they got back on their feet. This gives the mood a sense of life because of all the people who have lived there. In conclusion this is the mood created by the author Narciso Rodriguez in his memoir. 3 3 3 +13276 5 "Narciso Rodriguez creates many moods in his memoir. In him memoir Narciso states ""My parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us."" From this statement I feel the mood is loving and kindness. He also states ""But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and demonstration of how important family and friends are."" This changes the mood to greatfulness and selflessness of the parents. The last statement I thought really changed the mood was ""I will never forget how my parents turned this simple house into a home."" The mood when the author says that is I think thankfulness. Those are so examples of how @PERSON1 changed the mood thought out him memoir." 3 3 3 +13277 5 "The mood of the memoir is greatful. In paragraph @NUM1 It says in parentheses ""and for which I am eternally greatful."" Also in the same paragraph in parentheses it says ""which I adore to this day"" about Cuban music. Lastely In the last sentence of the memoir it says ""I will never forget how my parents turned this simple house into a home.""" 2 2 2 +13278 5 The mood created by the author is in the memoir. The mood of the memoir is that he always be grateful to his parents and he will love his parents and sacrifice. Memoir told his parent that of the admiration for the strength and perseverance and thank them repeadedly. He said that he would never forget his parent that turned this simple house into a home. That the mood of the author in the memoir. 2 2 2 +13279 5 "The mood created in the memoir is I think comfort and happiness. First in paragraph @NUM1 ""Here, the innocence of childhood the congregation of family and friends the endless celebrations."" These all make people happy childhood, family, friends and partys, so its no wonder that I think the memoir is happy. Also in paragraph @NUM2 ""My parents always kept their arms and their door open to the many people we consider family knowing that they would do the same for us."" This puts a smile to my face that people are so giving to others when they don't have to, I hope it brings a smile to you to. Last in paragraph @NUM3 ""filled the air with not just sent and music but life and love."" when I read this I think of nothing bad jut a family singing, laughing and all by a warm cozy fire place. It brings me comfort. Over all thats why I think the memoir is comforting and happy," 3 3 3 +13280 5 "The mood of the memoir is gracious. Rodriguez is grateful for many things listed in this memoir. In paragraph @NUM1, @CAPS2 says @CAPS2 is grateful for his inheritance of the cuban culinary gift. In @CAPS1 @NUM2, by saying ""My mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life."" @CAPS2 shows his gratitude for his parents moved to @LOCATION1. In paragraph @NUM3 @CAPS2 shows his gratitude for his parents love in the quote ""I will always be grateful to my parents for their love and sacrifice."" Rodriguez is also grateful for the love and hapiness of the home. @CAPS2 evidences this in paragraph @NUM4 in the quote, ""it was in the warmth of the kitchen in this humble house where a cuban feast always filled the air with not just scent and music and love. It was here where I learned the definition of family"". @CAPS2 goes on to say, ""I will never forget this house or it's gracious neighborhood or the many things I learned about how to love"". Rodriguez is gracious for his family, home, and life in this memoir." 3 3 3 +13281 5 "The mood created by the author in this memoir is that she is very grateful for everything of her parents had done for her and showed her. She is very happy for all the things she has and she admires her parents for their love and sacrifices they took. In this memoir she talks about how her parents came to the United States in 1956 and then had only a one-room apartment with her and her sister. They finally afforded to move into a three-room apartment. She finally called it a home (as she says in the article). She is very thankful for he family and important friends. She says they showed her lives, and these teachings have been the basics of her life. This is the author's mood in the memoir." 2 3 3 +13282 5 "Home: The Blueprints to Our Lives is a wonderfull memoir that tells what a ""home"" is truly about. It has a loveing and careing mood to with that shows that very thing. Love is what the author, Narciso Rodriguez likes the most about his home. He talks about how he grew up and his parents took people in that needed support and helped them out. Going on to talk about how his parents cared about him for them to come to @LOCATION1 for him, to get and have a good education and a better life. This is something that takes a couragous person to do and a person that loves and cares and wants the best for others. Because family sets of mood and that is love and careness." 2 3 3 +13283 5 The mood of the memoir thatthe author istrying to create is happiness. As it saysin the story a love of cooking. The other thing is that the passionate Cuban music playing. This is why the mood is happy. Happy is the mood of the story because of what his parents did to get shelter and food. Heis also happy how his parents turned a simple house into a wonderful howe for everyone. Narciso isalso happy for what love and sacrifice his parents endured throughout the time of making their houseinto a home 2 2 2 +13284 5 "In this passage the mood to me is like relaxing and a soothing gratefulness towards his parents. The tone of his voice is not angry, not happy happy but soothing. Obviously Narciso loves his family and loves @LOCATION1. By the tone of the narrators voice shows that. Coming to @CAPS1 was a great change as he said because you leave behind so many friends, family and the presence of the culture. Family to Narciso is his relatives but culture as well. As you can see the tone of the narrators voice really makes the story interesting." 2 2 2 +13285 5 "In this memoir Home: The Blueprints of Our Lives @CAPS2 Narciso Rodriguez, the mood of the story really translates the way the reader is reading it. As Narciso live in this small house it becomes his whole life. And his life revoles around his family. ""I will never forget how my parent turned this simple house into a home."" (@CAPS1 @NUM1) @CAPS2 this simple hous it changed his whole life. As @CAPS3 grew up many of his blood relations were not near where they lived but his neighbor were like his family. ""Growing up in this environment instilled in me a great sense that 'family' had nothing to do with being a blood relative."" (@CAPS1 @NUM2) @CAPS3 figured that people close to him was his family. The unique tradition of daily routines his family did really becam a part of his life. ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" (@CAPS1 @NUM3) these little things like music or the smell from the kitchen had a memorable impact on his life. In conclusion, the mood created in this memoir was created @CAPS2 these tradishon of his family" 4 3 4 +13286 5 "The mood created by the author in the memoir Narciso Rodriguez from Home: The Blueprints of Our lives is greatfulness, through out the memoir @PERSON2 talks about how he is greatful for his parents. @PERSON2 mentions that he grew up in a close knit community. @PERSON2 also talks about the sacrafices his parents had to make for him. In paragraph @NUM1 @PERSON2 says ""my parents both had to accept that they might not be able to find the jobs the deserved."" @PERSON2 mentions that in Cuba his parents had really good jobs, and how they made sacrifices. Paragraph @NUM2 sums up the mood of the entire memoir. Paragraph @NUM2 starts with ""I will always be grateful to my parents for their love and sacrifice."" This line proves the mood of the memoir is greatfulness and that @PERSON2 is greatful for every thing his parents had done for him." 2 4 3 +13287 5 first he was depressed by the house. Now he was happy for the house they were gonna get. his parent were selfless to protest their own child. 1 0 1 +13288 5 "In the memoir Narciso Rodriguez gives her own definition of ""family"". In paragraph @NUM1, @PERSON1 that she adores the cuban cooking, and music. In paragraph: three, she states that her neighborhood were all family and they were all close. Stated in paragraph four, her parents would have everyone over (anuts, cosins, land lord ect). She also States that her parents would let people (family) stay with them until they could get back on there feet. Narciso parents seem like good parents, and she has a nice nieghbor hood When she was younger." 2 2 2 +13289 5 "The mood of the author is very greatful. I know this because @CAPS1 keeps repeating, ""I am greatful for all my parents did."" @CAPS1 is also compationate. In paragraph @NUM1 @CAPS1 sais, ""It was here that I learned the real definition of 'family'."" and it continues ""I will never forget this house or gracious neighborhood.""" 1 2 2 +13290 5 "The mood created by the author in the memoir is a very happy, calm, and kind mood. It is a happy mood because the author only talks about the good things that happened to him and his family. It is a very calm mood because nothing very exciting or nothing very sad happens, everything in the memoir is very calm. The mood created by Narciso Rodriguez is also a very kind mood because his parents are very kind. In paragraph @NUM1, ""my parents always kept their arms and their doors open to the many people we considered family, knowing that they would do the same for us. This shows that Narciso Rodriguez's parents are very kind people. Narciso Rodriguez creates a very happy, calm, and kind mood in his memoir." 2 3 3 +13291 5 "In the memoir ""Narciso Rodriguez from Home: The Blueprints of Our lives"" by Narciso Rodriguez, he shows how greatful he is that his parents were brave enough to come to @LOCATION1 in search of a better life. ""I will always be greatful to my parents for their love and sacrafise."" This shows that even though he @MONTH1 not be very wealthy he is grateful that his parents were brave enough to come to @LOCATION1 and try to get their children a better life. ""I will never forget how my parents turned this simple house into a home."" This shows that he doesn't care as much what his house looks like but he does care how much his parents cared and worked to get where they are." 2 3 3 +13292 5 "Mood was created by the author in the memoir ""Narciso Rodriguez."" The mood that he creates is a happy and proud mood. The author is happy to have had a wonderful family and was proud of what his family accomplished and proud of his home. Also the environment of were he was growing up taught him that ""family had nothing to do with being a blood relative. He sets a happy mood because of how he thinks of his whole community as a family. He was very proud of his mother and father. For example he says ""they came selflessly, as immigrants do, to give their children a better life."" And he also says ""I will never forget how my parents turned this simple house into a home."" This is the mood I think that the author created in the memoir." 3 3 3 +13293 5 "The authors mood was grateful and proud. He is grateful that his parents were that caring and that he found out what ""family"" really meant. He was also proud of how his parents got through everything." 1 1 1 +13294 5 "Throughout the memoir, a very thankful and happy mood is shown. Narciso was raised in @LOCATION1, and knew why his parents had moved from Cuba, despite their love for the culture and weather. ""They came selflessly, as many immigrants do, to give their children a better life."" This quote shows Narciso's understanding of how much his parents gave up for him. ""I will always be grateful to my parents for their love and sacrafice."" This shows how happy and thankful he has been throughout his life because he was given the chance to grow up in @LOCATION1. ""I've often told them of my admireation for their strength and perseverance."" Narciso's parents gave up alot to give him a better life, and he shows he will always be greatful for what they have done." 3 3 3 +13295 5 "The author created a reflective, happy, and grateful mood in the memoir. First, the author states in his memoir, ""I was born into this simple house... which I adore to this day... childhood... first friend."" All these phrases show Narciso reflecting to his childhood, his first friend, and first house. Narciso reflects to his past, like how all memoirs should be. Secondly, the author uses words like ""great sense... adore... grateful,"" to show his appreciation and happiness of his childhood. To my knowledge, there aren't any grave, dark, sad parts of his life in the memoir. Finally, the author says that he is grateful for his rich culinary skills, passed down by his family, and his parents' love and sacrifice. This gives the mood of the memoir appreciation throughout the memoir, especially near the end, where he is grateful for his parents' selflessness. To conclude, the mood of this memoir is appreciation, happiness, and reflective." 3 3 3 +13296 5 "The mood of the auther is suttle but at the same time kinda depresed. The way the narator sounds to me is that he or she is in a bad mood. But sometimes its not in a bad mood, its in a suttle mood." 0 0 0 +13297 5 The mood of the memoir was warm and happy. The author talks about how is parents were poor and just moved to the United States from Cuba. He then says he had a wonderful life even though his family didn't have a lot of money. All that mattered was that they had their family and friends around them every day. Narciso says how his parents gave him the love and skill to cook and how he still has that love and his love for Cuban music. This memoir basically says how Narciso's parents were people who realized the more important things in life. It's not all about the fame and fortune. Its about love and family and spending time together. 2 2 2 +13298 5 In the memoir the author Narciso Rodriguez set a good mood. One thing he did was compare the United States and Cuba. He also made the kids parents seem like very nice people which set a friendly mood. Another thing he did we show how much the kids thanked his parents for making a sacrafice for him. Overall I think Narciso made this story a very cheerful story. 1 2 2 +13299 5 "The mood created by the author in the memoir is happiness because on the second paragraph all he talks about how his parents made a simple home very traditional Cuban home, and the very heart was the kitchen. Also ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being blood relative."" Also his parents sacrifice a lot to get at the point where there at now. This is why the mood of the memoir is happiness. ""I will never forget how my parents turned this simple house into a home. " 2 2 2 +13300 5 "Based on the memoir, the mood the author creates is warming and grateful.first of all, warming because in paragraph four @NUM1 and five lines @NUM2 through @NUM3 it states ""my parents always Kept thieR arms and their door open to the many people we consider family...""@CAPS1 and finally, the author created the mood that @CAPS2 was gratful in paragraph(s) six line(s) @NUM4 the author States ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what the did was a much courageous thing than I could have ever done. I've often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly. But, in reality, there is no way to express my Gratitude.""In colclusion the authors mood(s) of the memoir are warming and grateful." 3 3 3 +13301 5 "The author creates a verry good mood in the story. It is a mood of well-being and happiness in their family. I think the author has a verry good bond with his family. I think that because he talks about being with his family alot listening to Cuban Music and eating dinner together. He also appreciates his parents alot because they left cuba to come to the United States so he would have a better life. In paragraph @NUM1 he says ""I will always be greatful to my parents love and sacrifice""." 2 2 2 +13302 5 "The mood created by the author is a warm and meaningfull adviroment. They made there house have a Cuban feel to it. They have passionate Cuban music playing, and aromas from the kitchen. Anyone who needs to stay at a place, stays there. His parents moved here and left everything behind them, friends, family, and jobs. His mom and dad taught him that family and friends are the most important thing in your life. He said he learned the real meaning of family in his house and he says I will never forget how my parents turned this simple house into a home." 3 2 3 +13303 5 In the artical Narciso Rodriguez by @PERSON1 edwards the mood created by the author the mood is happy and sad in different ways because he goes from like be nothing to living in a nice home and a good family and how his first birthday was and what his parents did to make him live a happy life in america. 2 1 2 +13304 5 "The mood of the memoir was heart-warming. The way Narciso Rodriguez wrote the memoir was looking back at his life as half full, not as half empty. Instead of pointing out or remembering the bad things about his childhood, he writes about the good parts of his childhood. For example, his parents gave him oppurtunitys despite their struggle. His parents made their home a happy place to be, even though they were going through times of rasism and segregation. Also because of his parents positive attitude, it made him a positive person. Another reason the mood was heart-warming was now Narciso's parents demonstrated with their lives and teachings how important family and friends are. Narciso's parents have given up and done so much for him, resulting in who Narciso Rodriguez is today, makes this memoir truly heart-warming." 3 3 3 +13305 5 "The mood set was a happy mood. As Narciso Rodriguez looked back on his life in @LOCATION1. He describes all the great experiences he had and the house he once lived in. He is also grateful because his parents gave up almost everything to provide him with a better life. He says ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. He is so grateful and happy that his parents loved him so much to trade thier lives in, so he could live in @LOCATION1" 2 2 2 +13306 5 "If I were to describe the mood created by the author in the memoir I would say it is positive and thankful. I am saying positive because he regards his childhood so respectfully and proudly; like how he describes his neighborhood as: ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" From this quote you can tell that the author held his community in the highest of regards, as family. I describe it as thankful because based on this exerpt, you can determine that the author was taught family morals, and was raised in a household rich in Cuban culture. This mood is seen by how he tells the story of how his parents made the house they live in into a home. The author learned the significance of his Cuban heritage, and the sacrifices his parents made to come to @LOCATION1, which in no words can he thank them enough for their selflessness." 4 3 4 +13307 5 "The mood created by the @CAPS1 in the memoir is happy, grateful, and loving. The @CAPS1 shares her background life with us. She expresses to us how she feels about her Passionate Cuban music, and her parents great cooking skills. ""A love of cooking that is still with me to."" ""Passionate Cuban Music (which I adore to this day filled the air."" This shows that atl this time the @CAPS1 is grateful about her cooking and music. The @CAPS1 shows her self as a really grateful for all her parents have done for him. ""I thanked them repeatedly. But, in reality, there is no way to express my gratitude for this spirit of generosity impressed upon me at such an early age"". The @CAPS1 mood is so warming when she expresses her love for the parents, music, and cooking skills. The @CAPS1 creates many moods throught the memoir, but I think mostly she thankful for her family and heritage." 2 2 2 +13308 5 "within its walls, my young parents in the immigrant sectional of newark, new jersey. within its walls my young parents created our traditional Cuban home, the were heart of which was the kitchen. My parents both shares cooking duties and unwittingly passed on to me their rich culinary skill and a love of cooking that." 0 1 1 +13309 5 "The mood created by the author in the memoir. The mood of the story was happiness. The reason why I said that the story was happiness was because she was happy that she was growing up. In the text it says ""Growing up in this environment instilled in me great sense"". Narciso Rodriguez was happy she grew up in the neighborhood she lives in. Her neighbors/friends were from Spanish, Cuban, and Italian immigrants. In conclusion that was the mood of the authors memoir of the article/story." 2 1 2 +13310 5 The mood created by the author is a proud mood. He is proud of his culture the way he lived and how his parents were caring people. His parents always kept there arms and doors open for people to get back on there feet 2 2 2 +13311 5 The author was gratefull. His parents moved to america for him. so he could have a good education. He can't thank his parents enough for moving. He tells them how much courage they have and thanks so much for leaving their jobs. He also talks about home. How home is a place you learn to love and admire your relatives. It doesn't even matter if your blood related. He will love you either way. 2 2 2 +13312 5 "In the memoir, the author describes his home enviroment while growing up. As a child, his home has given off a very happy and loving mood. One in which was created again in this memoir. When describing the culinary and musical habits in his home as a child, I can feel the happiness that the moment had possessed. Also, I can feel the love between himself and his constantly growing family that surrounds his kitchen table @TIME1. So, to me, this memoir gives off a great mood. One filled with happiness, love, and loyalty. Also with unity and friendship as well." 2 2 2 +13313 5 "The mood created in Narciso Rodriguez's passage is loving and grateful. Narciso creates the image of a very happy childhood, while comparing her happiness to the hard work her parents toiled through and all the things they sacrificed for her. @CAPS1 often describes the feeling of closeness between her neighborhood and her family. 'In our neighborhood... all of these cultures came together in great solidarity and friendship. It was a close-knit community of honest, hard-working immigrants..' Their family consisted of a variety of people, not necessarily related, but there was always a helping hand for each other in the community in times of trouble. ""My parents always kept their arms and their door open to the many people we considered family."" The warmth of her childhood life is expressed in the line, 'Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home.' Narciso gives many examples of her happiness, but @CAPS1 always refers back to the hard work of her parents. @CAPS1 thanks her parents for giving her the opportunity to experience a better life. 'I will always be grateful to my parents for their love and sacrifice...' I will never forget that house or its gracious neighborhood or the many things I learned there about how to love.' @CAPS1 feels very grateful for her parent's strife to help her and for such an accepting neighborhood. The mood of the passage is loving and grateful." 3 4 4 +13314 5 "In the memoir. from ""Home The Blueprints of Our Lives"" by Narciso Rodriguez there is a certain mood created. I believe Rodriguez creates a ""thankful"" mood in his memoir. In the memoir Narciso talks about how his parents had successful lives in Cuba but came to @LOCATION1 so Narciso can have a better life. Narciso even said, ""they came selflessly, as many imigrants do, to give there children a better life..."" @CAPS1 was thankful that his parents sacrificed everything for him. Rodriguez said, ""... even though it meant leaving behind their families, frineds and careers in the country they loved""Rodriguez was also thankful for his parents turning ""this simple house into a home."" His parents made his house feel warm and cozy. @CAPS1 leared the real definition of family living in this simple house.At the end, @CAPS1 said @CAPS1 could never be able to thank his parents for what they sacrificed for him" 3 3 3 +13315 5 "The mood created by the auther in the memoir is.Love,"" I will always be grateful to my parents for their love and scrifice"". This is shown in ph @NUM1.Care, ""Countless extended family members came and went-and there was often someone staying with us temporarily until they were able to get back on their feet"". This is shown in ph @NUM2.faith, ""My parents always kept their arms and doors open to the many people we considered family knowing that they would do the same for us"" This is shown in ph @NUM3 that is the mood created by the auther in the memoir." 2 3 3 +13316 5 "The mood created by the author in the memoir is happy and good thoughts. Narciso tells us what it was like growing up. She gives us the idea that her and family were really close. She expresses to us how proud she is to be Cuban in many ways. Narciso tells us she enjoys cooking and so do her parents. She loves listening to Cuban music also. Narciso lived in a traditional Cuban home. Her home was not just a simple home, her parents created it into something more meaningful, something more special." 2 2 2 +13317 5 "The mood I get from this article is that even though Narciso Rodriguez grew up in a time of rasicm that his parents did everything for him and he was greatful a few exampls are in paragraph @NUM1 it states ""my parents both shared cooking duties and unwittingly passed on to me theire rich culinary skills and a love of cooking that is still with me today (and which I am internally greatul) then also in paragraph to there was a sentence that stated ""passionate Cuban music (which I adore to this day)..."" @CAPS1 are only some of the exampls in this memoir called - ""@PERSON1""" 2 2 2 +13318 5 "In the memoir, @PERSON1, the author creates a mood that inspires us to try our hardest and that mood is perseverence. The mood perseverence is expressed in the memoir in many ways. One way it is a stress is when @ORGANIZATION1 and @PERSON1 moved to the United States and lived in a one bedroom apartment. They finally saved up enough money to be able to move into a @NUM1 bedroom apartment. In this neighborhood the family raise as much money as possible to buy food for themselves and to help the people that were in need of anything from, water, shelter, and clothing. The reason they move from Cuba was to begin a better life in the United States which they never gave up until the day that they finally had enough money to live here." 2 2 2 +13319 5 "In the memory ""Narciso Rodriguez"" the mood created by the author in the memory is very kind. Firsty, he grew up with loving parents. For example it said in the memory that his parents would be excellent cooks that passed it down to him. @CAPS2 that they would have the time to teach him and learn. Next, he loved his parent so much. For instance, it says ""I will always be geateful to my parents for their love and sacrifice."" @CAPS1 he didn't love them he woldn't be saying thoughs things. Lastly, he loved his home and was happy with it. For example in the memory it say that ""I would never forget how my parents turned this simple house into a home."" @CAPS2 that everyone he lived with and all of his familys he loved so much and his home was great with it all. That is why in this memory, the auther shows love and kindness as a mood to this peice." 3 3 3 +13320 5 The mood created by the author was a positive mood because he only said good things about his family and he talked about how grateful he is that they moved to america 1 1 1 +13321 5 "The author, @PERSON1 created a mood in the memoir. The mood he created was deffinitely loving and warm. For example, I would say this memoir's mood is loving and warm because the memoir kept mentioning how considerate, friendly, and passionate his family was. Also, he kept saying he learned what family was all about and he learned the true meaning of family. So, to me the mood in this memoir, is loving and warm. The author, @PERSON1 created a mood in the memoir." 2 2 2 +13322 5 "I think that there is a warm mood in the memoir. I think so because in the memoir, the author is talking about how thankful he is to his parents for moving to @LOCATION1 destpite the hardships that they faced. Also, there is a warm mood to this memoir because the author is reminiscing about his past with sense a fondness for his parents and his neibhors. ""Growing up in this enviornment instilled in me a great sense that 'family' had nothing to do with being a blood relative... formed the backdrop to life in our warm home."" In the memoir, the author often talks about how kind the people he grew up with were, and how good of a childhood he had. This is why I think the mood of this memoir was warm." 2 2 2 +13323 5 "In the memoir, Narciso Rodriguez, the mood is said in all different ways. In paragraph @NUM1 when she talks about her love for cooking the mood is calm with a dash of spice to it. Since she is Cuban I like to think the cooking is spicy. In paragraph @NUM2 she states, ""My parents always kept their arms and doors open to many people we considered family..."" That is a happy loving mood. To be able to say that means you have some pretty amazing neighbors. In paragraph @NUM3, ""I will always be greatful to my parents for their love and sacrifice."" That is the most important mood set in this memoir because she is thanking her parents for her life that she has. That is a very respectful thing to do. Everyone does it, but did you write a memoir about it?" 2 3 3 +13324 5 "In the memoir, @PERSON1, from Home: The blueprints of our lives, there was a very solidary mood. The @PERSON1 family was so happy to be in @LOCATION1 and be free, and no longer in Cuba. It was a very loved environment with friends and family always coming to their table. They were a very caring family. They always had the arms and door wide open to other refugees until They got back on their feet. They were a happy, loving, and caring @CAPS1 family." 2 2 2 +13325 5 "The main mood through out this entire excerpt from Home: The Blueprints of Our Lives is one of thanks. Through out the excerpt, @ORGANIZATION1 about and explains about how his parents struggled in the US for their children. In his house, as it is said in paragraph @NUM1, ""My young parents created our traditional cuban home"" @CAPS1 loved everything about that home. Also his family. Not blood relatives just family. His family was made up of the entire community in a time, as discribed in paragraph @NUM2, ""When overt racism was the norm and segregation prevailed in the @LOCATION1."" @CAPS1 is most thankful of his parents. In paragraph @NUM3 it discribes ""They came selflessly, as many immigrants do, to give their children a better life... They struggled bothe personally and financially... My parents had to accept that they might not be able to find the kind of jobs they deserved"" His parents gave up everything for his current life and Narciso is forever greatful." 3 3 3 +13326 5 The mood of the memoir was a happy and graceful mood because they live in a good neighborhood in america and they are surouded by their family members who have dinner with them. 1 1 1 +13327 5 "The author of this memoir created a very uplifting mood. The way Narciso described her home, explained the sacrifice of her parents, and her definition of ""family"" all added to the overall mood. Narciso's description of her home and neighborhood expresses the passion she feels for it. She used phrases such as: ""I am eternally grateful"",""passionte Cuban-music, and ""which I adore to this day"" to express her positive feelings towards her childhood home. When the author ends paragraph two with ""life in our warm house"", the reader knows she was pleased with her childhood conditions. The sacrifices and selfless actions of Narciso's parents is purely uplifting. ""My mother and father came to this country with such courage... they came selflessly... to give their children a better life."" Their actions are touching and heroic - adding greatly to the up with the mood of the memoir. The author's definition of a ""family"" is very touching as well. She expresses that """"family"" had nothing to do with being a blood relative."" and the way her neighborhood ""came together in great solidarity."" @CAPS1 this neighborhood was united and supportive of one another - the kind of place that anyone would want to live. I believe that the last sentence displays the mood nicely, ""I will never forget how my parents turned this simple house into a home."" The perseverance of the author's parents, the descriptron of her home, and her definition of family all create an uplifting mood for this memoir." 4 4 4 +13328 5 "This was a touching story of how this boy appreciates his family and parents so much. There is a mood through the story.Home to this boy is about family and relationships. He talks about how he liked the kitchen and cooking, just like his mother and father. That is a mood of happiness.The kitchen is why he loves. He talks about his Cuban culture and how he appreciates his parents bravery to come to @LOCATION1.The mood is mostly appreciation in the story. He is very appreciative." 2 2 2 +13329 5 "The mood of this memoir is that @PERSON1 is happy being with his family because he believes you should always love your family. Growing up in his environment instilled in him a great sense that family had nothing to do with being a blood relative, but his neighborhood was made up of mostly Spanish, Cuban, and Italian immigrants. At this time racism, and segregation prevailed in the United States. Despite customs elsewhere, all the cultures came together in great solidarity and friendship. It was a closeknit community of hard working immigrants who extended a hand to people who were not necessarily their own kind, but were clearly in need of a helping hand. The mood of this story is that everyone can come together in happiness and joy." 3 2 3 +13330 5 "In the memoir Narciso Rodriguez, Narciso created a few moods that are very relatable, yet make you think. One mood is happiness. This reading feels happy from the beginning to hand because it shows how Narciso went through his life, and what he loves about his childhood paragraph @NUM1 says ""my parents both shared cooking duties and unwillingly passed onto me their rich culinary skills and a love of cooking that is still with me today. Passionate Cuban music filled the air mixing with the aromas of the kitchen."" These sentences show he loved the environment he lived in, and what was in his home, which made him happy.Narciso also created a mysterious mood. This mood made you think about your home, and what the word 'family' really means. Narciso's family was a great, big, loving group of people-many of whom were not even related. Paragraph @NUM2 says ""my parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us."" This shows thier consideration of family was large, and inspiring.The main mood in this memoir from Narciso is gratefulness. Narciso is grateful for many things, especially being able to live his life the way he did. He is mostly grateful to his parents, as paragraph @NUM3 says ""I will always be grateful to my parents for thier love and sacrifice."" Narciso's main mood is gratefullness because he is grateful toward everyone & everything that made his life good, and made him what he is now." 4 4 4 +13331 5 "This memoir by Narciso Rodriguez had a warm down to earth feeling. Narciso expresses his love for everything given to him. I can tell he has a huge heart and it all starts at home. In the second paragraph he talks about his home life. Everything about his family gave me a warm sunny feeling. He sets the mood by talking about his amazing parents, they are wonderful. They incorporate their culture into everything. Food gives everyone a fuzzy feeling inside.Home: The Blueprints of Our Lives shows the warm welcoming feeling Narciso get when thinking about his family. " 3 2 3 +13332 5 "The mood the the author created for the memoir was ""about how because his parents moved to the @LOCATION1 he lived a life that he would have never have lived before I his life his parents would take people in for a shot peirod of time to help them get back on their feet because they knew that the would do the same for them." 1 1 1 +13333 5 "The mood in the memior of Narciso Rodriguez is one of admiration, satisfaction, and courage. Narciso had admiration for his parents who sacrifaced a set life for a better one for Narciso. His parents caring and unselflessly came to @LOCATION2 struggled personally and financially. He was satisfied with life he had. through family values and determination he was able to succeeb. Courage beacuse his family was able to give him a better life here eventhough they were better off in Cuba. It was struggled but they were determined to do it for Narciso. The mood overall is admiration. Admiration is the mood in the memior Narciso Rodriguez fashion designer from Newark, New Jersey." 2 2 2 +13334 5 "The author creates a warm, joyful mood in the memoir. He talks about the fond childhood memories he has in a way that gives the reader a warm, joyful feeling inside. For example, although his parents endured hardships in coming to @LOCATION1 from Cuba, they created an inviting home environment. The memoir states, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, form the backdrop to life in our warm home"". ( @NUM1) This imagery creates a feeling of happiness in the reader. The memoir also says that family isn't nessecarily based on blood. The author's community was like a family. ""All of these cultures came together and great solidarity and friendship. It was a close-knit community."" ( @NUM2). Additionally, the author explains ""my parents always kept their arms and their door open to the many people we considered family."" ( @NUM3) @CAPS1, the author talks of ""the warmth of the kitchen"", ( @NUM4) and how the air was always filled with love. All of these passages give the reader a mental picture of joyful and warm family gatherings, instilling those feelings. This is important because it shows that the author fondly remembers his childhood. Although his parent's life was tough, they made his life full of joy and warmth, showing that one can make tough experiences into positive situations." 4 4 4 +13335 5 "According to the memoir, the author created a mood to use in the memoir.The author created the mood of happiness. According to the memoir the author was very happy with his life. He was very joyful that he gained all the Cuban culture. He also is happy about all the ""family"" he has. So you can tell by the mood he has in the memoir that the arther is very happy and saticfied with the way he was raised.Thats how the authors mood would be described in the memoir." 2 1 2 +13336 5 In every paragraph in the memoir he explains how life was and how he loved it so much. In paragraph @NUM1 he uses parenthesis to show or talk about how much he loved different kinds of things. He shows in his writing all the warm kind of feelings he had as a child. In paragraphs three and four he also talks about how much he loved being with other cultures and how his parents were really good people. 1 1 1 +13337 5 "The mood created by the author in the memoir is [Love] I feel this is true because in paragraph @NUM1 it says ""I have been grateful to my parents for there love and sacrifice. Another reason is in paragraph @NUM2, it says ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and the love of cooking that is still with me today (and for which I am eternally gratefull). And the final reason is in paragraph @NUM3 It says ""It was here where I learned the true definition of ""family"" And for this, I will never forget that house or it's gracious neighborhood or the many things I learned there about how to love" 3 2 3 +13338 5 "I believe that the mood in this memoir is happy because the athor is talking about his first friend (land loards daghter) the great cooking and music that his home had. how greatful he is to his parents for moving to america for him, all the celibrations they had for people, how everybody in the naborhood were friends, and much he loved his family. What about that is unhappy" 2 1 2 +13339 5 "The mood created by the author in this memoir is over all warm. @CAPS1 explains the positive things about his home and where @CAPS1 grew up. @CAPS1 also explains the positive things about his family and culture, which @CAPS1 is very proud of. @CAPS1 says ""growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" @CAPS1's basically saying that @CAPS1 realized that all the people that lived around him came together and all connected somehow with their cultures, which made them all feel like family. @CAPS1 also explains how gratefull @CAPS1 is to have his parents who did so much for their children to have a better life. They did struggle at times, but the author is still happy for what went right in his childhood, and having all these wonderful people there. All of the people that came and left his house for all those years made him realize that ""family"" is just being around everyone you love and connect with which makes a house a home." 3 3 3 +13340 5 The mood created by the turdison of Cuban. Every familey have a turdison that they pass to there children. Eavery Father tell or give some thing. It cone be a knife or a gold chane. They can tell family resepy for food. My family I @CAPS1't know what they gone tell me or give me somting. 1 0 0 +13341 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the over all mood is happiness. ""The congregation of family and friends, and endless celebrations that encompassed both, form the backdrop to life in our warm home."" This quote explains how much he loved his child hood home. The last sentence in the memoir which says ""I will never forget how my parents turned the simple house into a home."", really shows how much he apreciates his parents hard work in the home they made for him. The author of this memoir seems to look back on his childhood happily though his family struggled finantially and personally." 3 3 3 +13342 5 "In the memoir, ""Narciso Rodriguez"" by Narciso Rodriguez there were many moods created such as, upbeat, happy, and exciting. The first mood that the memoir showed was upbeat. ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen."" This was very upbeat and welcoming tune to listen to in the kitchen rather than talking or silence. The second mood displayed in this memoir was happiness. ""All of these cultures came together in a great solidarity and friendship."" This is a happy thought and time when different cultures can come together to have friendship. The last mood that the memoir portrays is excitment. Here, the innocence of childhood, the congregation of family and friends, and endless celebrations."" This tells us that there are celebrations, and faimly and friends coming together, which is a very exciting time. In conclusion family and friends can make all the difference in a persons life, just as it did for Narciso Rodriguez." 2 4 3 +13343 5 "In the memoir ""Narciso Rodriguez"" he expresses his gratitude toward his family. He describes why he is so thankful to have a neighborhood that is united together.Narciso Rodriguez includes a happy mood. He points out all of the positivities of his life. ""I will always be thankful to my parents for their love and sacrafice."" (@CAPS1 @NUM1) this is a quote showing that he'll do as much as he can to prove how lucky he is. Narciso thinks of his whole town as a family. They are united together and he knows that he is always welcome in their arms." 2 2 2 +13344 5 "In the memoir, the author creates a loving, caring and friendly mood. He creates this mood by describing the atmosphere of his home. ""Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" The setting of their warm, welcoming home contribute greatly to the mood of the memoir. The author's greatfulness to his parents selflessness and courage also contributes. ""I will never forget how my parents turned the simple house into a home."" His greatfulness creates a thankful mood through paragraph six and seven, ""it was here were I learned the true definition of ""family"""". This quote helps bring out the love in the mood. The warm, loving mood of the memoir really helps the authors point get across in a meaningful way." 3 2 3 +13345 5 "The mood and Narciso Rodriguez's memoir was love and respect. Narciso loved his family so much, and he learned that family does not only include blood-relatives. Narciso's family included the friends that he had made living in his neighborhood. Majority of Narciso's love went to his parents. He loved them for selflessly coming to @LOCATION1 just to give him a better life. They were fueled by the fact that they were giving a great life to their son, despite the fact that their jobs were not the best. He loved them for sacrificing their home, family, and friends back in Cuba just for him. Most of all, he loved them for teaching him two very important things-the spirit of generosity, and how important family and friends are. His parents also taught him courage by not being afraid of coming to @LOCATION1. He constantly thanked his parents and told him that he wouldn't have been so brave. All of Narciso's undying love and gratitude piles up, and it is clear to see how much Narciso respected his parents." 4 3 4 +13346 5 "The mood described by the auther was warm and full of happiness. In the memoir, the auther @ORGANIZATION1 talks about the importance of his family Which always brings a comforting feeling. He Shared that he ""was born into a two-family blond-brick building in the Ironbound section of Newark, New jersey"" but that it did not matter where he lived but who he lived with. The mood you get when you read this memoir is mixed because Of the way he describes his parents life, his life and his home. When he says ""the innocence of Childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home"" he is talking about how close they all are and that, that is what matters, when you read that you feel the comfort, happiness, joy and compassion that he feels toward his life, his parent and everyone around him." 3 2 3 +13347 5 "The mood of this memoir is grateful. Narciso Rodriguez's parent both move to @LOCATION2 from Cuba to give their children a better life than what they had. Narciso's parents lived in a one room house untill they moved to New Jersey, were Narciso grew up. Inside that home the family created a beautiful Cuban communitie. The heart of the house was the kitchen. Where they played Cuban music all the time. The part of New Jersey were the Rodriguez family lived was filled with Spanish, Cuban, and Italian imigrants. The community was like a big family, ""the cultures cam together in great solidarity and friendship."" All of these cultures that came together really showed Narciso what a ""family"" really means. She never would have know what that ment or have had these oppertunities if her parents hadn't been selfless. They came here and had to start their lives over. As Narciso says ""I will never forget how my parents turned this simple house into a home.""" 3 3 3 +13348 5 "In the memoir, ""Narciso Rodriguez"" the @CAPS1 create a mood in this memoir. ""Growing up in this environment instilled im me sense that ""family"" had nothing to do with being blood related."" That mean people that weren't blood related, he still constiders them an family. He also says ""I will never forget how my parents turned this simple house into a home."" That mean that evan though it wasn't a nice house it was still his home and he loved it. The mood of this memoir is love and he will never forget it. Thats the kind of mood in this memoir." 2 3 3 +13349 5 "The mood created by the author in the memoir. He felt @CAPS1 and curious my mother and father Had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved they struggled both personally and financially, braving the Harsh northern winters while yearning for their native tropics and facing cultural hardship." 2 2 2 +13350 5 "The mood in ""Narciso Rodriguez"" is very subtle and can be undefind. I say this because when I read this I didn't feel anything @CAPS1 I thought about it. The article gave off a very comfortting mood. As he said in the memoir ""Growing up in this environment instilled in me a great sense that ""family"" at nothing to do being blood relative."" (@CAPS2 in the beginning paragraph @NUM1) That quote sets a mood where a little audience in your head goes ""@CAPS3 I never thought of that way before."" This memoir does not give out blunt moobs like happy or sad, It makes you think. There was never a really sad moment in the whole thing. At the end of paragraph @NUM2 he says ""I will never forget how my parents turned this simple house into a home."" This quote is another example of giving a very undefind mood, I say it is undefind because you just cant put it into words of how you feel. So in conclusion the mood this piece gives is undefind." 1 1 1 +13351 5 "The mood created by the author is respectful. The mood is respectful because They came from cuba and went to @LOCATION1. as the @CAPS1 says ""My Mother And father had come to this country with such courage, without any knowledge of the language or the culture"". Another reason why the mood is respectful is that the Mother and father went to this country for their child. As the @CAPS1 says ""They came selflessly, as many immigrants do, to give their children a better life."" This shows that they moved for the kid and not For themselfs." 2 2 2 +13352 5 "I think that the overall mood of the memoir is a thankful one. Towards the end he says ""I will always grateful to my parents for their love and sacrifice."" Also, he doesn't talk about the bad alot. He only briefly touches on it. For the rest of the memoir he is explaining how his life was wonderful, and that he always had family around him." 1 1 1 +13353 5 In the article the author is trying to say how good his past was. The mood of the article is that it was happy memories and the smell of his mom's cooking and the memories. As a child the author's memories were happy and home setting mostly the mood was good throughout the story. Throughout the article his memories of his childhood home were happy and good. 1 1 1 +13354 5 "In the memoir ""Narciso Rodriguez"" the author create the mood was grateful for cooking skills and his parent's love.One way that the author is grateful is his cooking skills. The author is grateful for his mom and dad's cooking skills. For example. "" My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" @CAPS1 way the author is grateful is his parent's love. The author is thankful for his parent. For example. "" I will always be grateful to my parent for their love and sacrifice."" The author love his parent for the love and sacrifice. In the memoir ""Narciso Rodriguez"" the author creates the greatfulness for his cooking skills and his parents love. " 2 3 3 +13355 5 "The whole memoir gives off a very positive attitude. The author explains a feeling of unity and Friendship. This quote shows this, "" all of these cultures came together in great solidarity in Friendship."" The author is saying that despite the fact that they were living in times of racism, all different cultures and their neighborhood lived in peace. Paragraph @NUM1 has a feeling of caring. For others and love. The author explains how his mother and Father moved out of Cuba for better lives for generations to come."" ""They came selflessly, To give their children a better life, even though it meant leaving behind their Families, Friends, and careers in the country they loved,"" shows the feelings perfectly. The final part of the memoir presents great thanks to the authors parents. He states, ""I will always be grateful to my parents For their love and sacrifice."" @CAPS1, in the last line of the memoir, the author describes the true mood of his house growing up. The memoir reads, ""I will never forget how my parents turned a simple house into a home."" The author is saying that his house was and just living space, it was full of love, caring, and great relationships. The whole memoir has a loving mood." 3 3 3 +13356 5 "In the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, the mood is gratefulness. Mood means the overall atmosphere of the authors words. I think that it is happyness, because no matter what happens, Rodriguez is always gratfull. She does not care if she lives in a simple house with a bunch of people, she is happy that she has a home. In paragraph @NUM1, she says, ""I will always be grateful to my parents for their love and sacrifice."" I would have looked up to her, for being this gratfull and happy for what she has. Also, the last sentence she says, ""I will never forget how my parents turned this simple house into a home."" These are a perfect example of the mood, greatfullness, and some of happyness." 2 2 2 +13357 5 "The mood created by the author was structured around many things. First of all, it is a light, warm, happy mood as the author describes how he grew up in a simple but loving neighborhood. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" It continues to be a friendly, cheerful mood throughout the whole memoir. It grows grateful and thankful, however, as the author describes how ""They [his parents] came selflessly, as many immigrants do, to give their children a better life, even if it meant leaving behind their families, friends, and careers in the country they loved. They struggled both personally and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardships."" @CAPS1 he sets a mood which fluctuates and changes throughout the memoir. It moves from warm and fuzzy to thankful and back again." 2 2 2 +13358 5 The mood created in the memoir is love and care because this family of Cuban use to live in a @NUM1 apartement building now the live in a @NUM2 bedroom apratment. Now they are inviteing people in treating people and family member's with love and care and that will rub of the kid's and it is a good thing that they did that and Also that the neighborhood was good. 2 2 2 +13359 5 "The mood created by the author is your family will always be there for you, a quote from the story is ""I will never forget how my parents made this simple house into a homeThe mood might also be there are always better opertunities in life. What I mean is that Narciso Rodriguez's parent's moved to @LOCATION1 for a better opertunity for their kids. ""It was here were I learned the real definition of ""family""."" ""And for this I will never forget that house or it's gracious neighborhood or the many things I learned there about how to love ."" " 2 2 2 +13360 5 "I think the mood that the author created was a happy mood and a mood that makes you appreciate what you have. And to always remember where you came from, and to always love family. At some points in the memoir the mood become more about @CAPS1, for example in ""paragraph @NUM1"" he tells how his neighborhood growing up was made up of many races including Spanish, Cuban, and Italian, and he tells how they all came together in solidarity and friendship. He also says how his family was always helping each other.In conclusion, I believe the main mood in this memoir would be @CAPS1 and coming together wether it be as a family, or as people." 2 2 2 +13361 5 "In this memoir, the author created a proud and glad mood.The author, Narciso Rodriguez, showed how proud he was of his family and home through his memoir. His parents left their home in order to make a better life for him and for that he is extremely proud and grateful. His parents also allowed other immigrants to stay with them temporarily. In paragraph @NUM1 he says, ""what They did was a much more courageous thing then I could have ever done.""Narciso shows how glad he was that he got to grow up where he did. He had his parents, as well as all of his neighbors, which he considered his family. Though his apartment wasn't the nicest place to live, it was his home. He was happy there and always had people around him who loved and cared for him. In paragraph @NUM2 he says, ""I will never forget how my parents turned this simple house into a home.Narciso shows his proud and glad feelings through his memoir." 3 3 3 +13362 5 "The mood of the author is @CAPS1 and grateful because his parents left Cuba and were very nice people. They let people live at there house. When the didnt have much money, the took any job the could get so they could care there son, Narciso, they had a three bedroom apartment and they let refugees celebrate their arrival to this country, they also had there house full of love and life. Also they came to this country with not knowing how to speak this language. So the mood of this story at the author seems to be proud." 2 2 2 +13363 5 "I think the mood of the memoir is comforting and happy because it talks about how a simple house became a home. The memoir shows how a family can turn a random house into a home would love and by selflessly letting people stay with them until they can get back on their feet. The memoir also shows how family has nothing to do with being blood relaited, it's about being their for one another in a time of need. I think that shows a great amount of comfort and happiness, knowing that a simple apartment could become a loveing home, filled with family and love." 2 2 2 +13364 5 "The mood created by the author in the memoir is greatful. For example, his parents both shared cooking duties and unwittingly passed on to him their rich Culinary Skills and a love of cooking that is still with him today (and for which @CAPS2 is eternally greatful. That @CAPS1 that @CAPS2 loves to follow his parents goals and @CAPS2 loves them very much. In addition, @CAPS2 will always be greatful to his parents for their love and sacrifice. @CAPS2 has often told them how courageous they are for letting people into their home. @CAPS2 loves them for their strength and perseverance, and @CAPS2 has thanked them repeatedly. But in reality there is no way to express his gratitude for the spirit of generosity and pressed upon him as such an early age, and how @CAPS2 knows how important family and friends are." 3 2 3 +13365 5 "The mood created by Narciso Rodriguez in the memoir ""Narciso Rodriguez"" is greatfulness.Throughout the memoir, the mood created is greatfulness. There are many quotes in the memoir that support the mood created. One quote is ""I will always be greatful to my parents for their love and sacrifice."" @CAPS1's greatful for his parents giving him a better life in @LOCATION1 and raising him up to be a good guy." 2 1 2 +13366 5 The mood would probably be happy and sort of sad at the same time because on one hand he's describing his family's happyness and unity amongst his family and Spanish and Italian family's around the area but also segregation in @LOCATION1. 1 1 1 +13367 5 "The mood created by the author is a good @CAPS1 mood it describes His and His familys struggles but very @CAPS1 @CAPS3 even thow they @CAPS4 behind jobs, Friends and Family there all very @CAPS5 and @CAPS1 to enjoy there Lives in New Jersey withe there Cuban setting" 2 1 2 +13368 5 "The mood in this memoir is happyness, love, and warmth. It is to be thankful for what you have and not what you want to have. Narciso was just happy to have such a loving family. Inside of Narciso's home it is very happy loving and warm. I think that the author is trying to make it seem like nothing matters as long as you have family. Overall the mood created by the author in the story is love." 1 2 2 +13369 5 "The mood created by the author in the memoir is nice and happy. I think the mood is nice and happy because @ORGANIZATION2 shows @CAPS1 for his parents, grandparents, and his house. Another reason I think the mood is happy and nice is because the passage talks about @ORGANIZATION2's hometown, culture, and etc. It also talks about what he is grateful for and that would be his parents, and passionate Cuban music. In conclusion that is what I think the mood is which is nice and happy in the story Narciso Rodriguez." 2 1 2 +13370 5 The mood created by the author in the memoir. The character Narciso's parent moved from cuba to the united states to have better oppertunitys in life. When @PERSON1 came to america he had became friends with a girl name Alegria. 0 1 1 +13371 5 "The mood created by the author in the memoir was strong. The mood, or the feeling received by the author was show in a grateful sense. The author admired his parents and was so touched by their teachings. ""Growing up in this environment instilled me in a great sense that ""family"", had nothing to do with being a blood relative."" The lovingness of his parents and open arms in stride left Narciso feeling appreciative. ""My parents always kept their arms and their door open to the many people we considered family. Knowing that they would do the same for us."" @CAPS1 the author's parents overcomed many obstancles faced moving to @LOCATION1 it never stopped them from aiming for success. ""The barriers to work were strong and high and my parents both had to accept that they might not be able to find the work they deserved."" Narciso's parents created a house a home, and for that he was ever grateful. The mood is thankful and gratefulness in this memoir." 4 3 4 +13372 5 "The mood created by the author in the memoir is a sense of family. He says how when his parents came up to Newark, New Jersey, from Cuba, they had to start all over and find a new beginning. They passed on their rich culinary skills and love for Cuban food in the kitchen of a three-room apartment in a two family building. He says that the community was all a different race but they all became a big family that got through the racist times of the United States in the '@NUM1. He says that he will always be grateful to his parents for their extreme love and sacrifice. He reminds them constantly about how grateful he is and that he can't believe how they did it. So the mood in this memoir is about family." 2 2 2 +13373 5 "In this memoir the mood varies. In paragraphs three and four it was a ""giving"" mood, for example explained in paragraph four ""My parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us."" It shows right in the sentence that they gave people in need what they needed in difficult times. In paragraphs six and seven the mood was thankful and happy for the sacrifice his parents gave for him. Because of her future. In paragraphs one and two the mood is happy and comfy because she is happy about her home, her family and the love she has been given in her life. These are the various moods in the memoir." 3 3 3 +13374 5 "In the memoir by Narciso Rodriguez, he speaks of how his family, related or not, provided the happiness and wonderful memories of his childhood that he adored so much. The overall feel to the memoir, or its mood, was expressed as gracious and thankful to his family, but also warm and happy, creating pictures in the reader's mind of a lovely childhood. ""I will always be grateful to my parents for their love and sacrifice"" said Rodriguez, showing his thanks to his parents for allowing him to grow up in @LOCATION1. He knew that many immigrants risked everything to come raise their children in @LOCATION1 and for that he is thankful. He also praises the other families of different cultures in his neighborhood, giving more of a grateful atmosphere to the memoir. ""It was a close-knit community of honest hardworking immigrants who extended a hand to people in need."" The mood of the memoir is happy and warm as Rodriguez describes his cozy home filled with music, sweet smells, and letting people. ""Here, the innocence of childhood, the congregation of family, and friends, and endless celebrations that encompassed both, formed backdrop to life in our warm home."" Rodriguez's mood and feeling is clearly expressed in his descriptions and memories." 3 3 3 +13375 5 "The mood is the @CAPS1 is happiness, for example at the end he says you can find happiness anywhere and he did. He found it in a abandoned home. The @CAPS1 sayes that he got All the thing his parents didn't get. That show happiness." 2 1 2 +13376 5 "The mood created by the author in the memoir is a warm feeling. Narciso Rodriguez explains how thoughtful and selfless his family was. In paragraph @NUM1, Narciso reveals how cozy his surroundings were, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful)... Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" Narciso further explains how kind and brave his parents were, ""my mother and father had come to this country with such courage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved"" (paragraph @NUM2). Narciso tells us how much you both his parents and how grateful he is of them. In the end, Narciso expresses one last thank you to his parents, ""I will never forget how my parents turned this simple house into a home."" (paragraph @NUM3) All in all, the mood that the author created in this memoir is a very welcoming, heart-warming and inspiring." 4 4 4 +13377 5 "In the memoir of Narciso Rodriguez, he gives a mood throughout it. I think that if is that home is really where the heart lies and blooms. Paragraph two states, ""the congregation of family and friends... formed the backdrop to life in our warm home.' In paragraph seven, 'It was in this simple house my parents welcomed other refugees to celebrate their arrival to this country.' Rodriguez wrapped it all up with what really showed what the mood was, 'I will never forget how my parents turned this simple house into a home,' in paragraph seven." 2 2 2 +13378 5 "In ""Narciso Rodriguez"" from ""Home; the @CAPS1 of Our Lives"" @CAPS2 Narciso Rodriguez, the author creates a warm, pleasant mood. He does this in several ways, one being him writing about how the overcome segregation. He says that ""...Our neighborhood was made up of mostly Spanish, Cuban, and Italian imigrants... In our neighborhood,...all of these cultures came together in great solidary and friendship."" In this manner, he creates a bright feeling @CAPS2 saying that even when segregation was dominant, everyone in his community was friends. Another way he mixed the story pleasant sounding is how he talks about his parents. Althroughout the excerpt he, talks how greatful he is to his parent: mainly @CAPS3 of how kind and loving they were As he puts it, ""They came selflessly... to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" @CAPS2 giving up their lives, they were able to make others' lives better. Due to this, he is greatful for the love and support his parents offer to him @CAPS3 of the uplifting theme of the story, Narciso Rodriguez creates a smooth, pleasant, warm, and loving tone." 2 4 3 +13379 5 "The mood created by the @CAPS1 indacates how family and happiness is the best thing, and how A home is were you feel safe and happy, not just for space, but safeness, Narciso made his home a good place for him and his family. He hade a place to call home." 1 1 1 +13380 5 "The mood that the author creates is that his culture is very enthusiastic, and that his home is where he made it. And that his parents were very generous and selfless and that he is eternally grateful for that." 1 1 1 +13381 5 The mood that was created by the author in the memoir is thankful and @CAPS1. I think that the moods are @CAPS1 and thankful because there are surten parts in the story where it makes him seem like he is @CAPS1 and throughout the story he is just saying thank you to his mother and father. So those are the two moods that I think there are in the memoir. Also these are my thoughts on the memoir. 1 1 1 +13382 5 "The mood created by the author in the memoir is a very upbeat happy one. This is because he uses the memoir to describ how happy and upbeat his house was as a child. He does this by saying ""I will never forget how my parents turned this simple house into a home."" This indicates a happy mood because the son is very happy that his parents love and sacrifice helped pave the road to his future. That is why the memoir has a happy mood." 2 2 2 +13383 5 "The mood of this memoir is happy. The main character of this story is Narciso he was kinda poor him and his family lived in a on bedroom appartment and he didnt mine because he loved everyone around him especially his parents because they gave him everything and now Narciso Rodriguez is a fashion designer in his hometown Newark, New Jersey" 1 1 1 +13384 5 The short story call Narciso Rodriguez from the blue print of our lives. The mood of the article is love and family because in the story all he talks about is his parents and how much they mean to him 1 1 1 +13385 5 "In the memoir, the mood seems to be happy, and grateful. To me it seems as if the author is trying to show his great love and respect for his parents and how they have taught him everything he knows and without them he would be nowhere. ""I will always be grateful to my parents for their love and sacrifice I've often told them that what they did was a much more courages thing thing than I could have ever done."" (@CAPS1 @NUM1) This shows me that the author's mood is set to be happy and about love and how he is extremley grateful to have them in his life Also it shows his love for what his parents have taught him. ""My parents both shared cooking duties and unwittingly passed onto me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful.) This also shows that the mood is in a happy mood because he is explaining everything great his parents have done for him." 4 3 4 +13386 5 " In the memoir, Narciso Rodriguez, he included many stories about his ""family"" and parents. The stories, along with the parentheses expressing more of his opinion, created three main moods in the memoir. The moods @PERSON2 created were happiness, humor, and kindness. The mood of happiness is expressed when Narciso is talking about his friends in the community and family. At the table, when at least one of his extended family members joined him regularly, Narciso set a mood that was very happy. During those meals that him and his family had, they would often laugh. Laughing and humor were another specific mood of Narciso's memoir. In the parentheses, Narciso put a personal touch of his experiences. For example, when talking about 'rich culinary skills', the parentheses said, 'and for which I am eternally grateful.' The extra information had a hint of humor and kindness. Kindness is the third mood set by Narciso. He had a kind tone when talking about his parents, and how generous and loving they were. He also had a kind tone when talking about the friendship in his community. Friendships like, extending 'hand to people who, while not necessarily their own kind, were clearily in need'. In Narciso Rodriguez's memoir there were the tones of happiness, humor, and kindness. All three moods were involved, one way or another, with his most important thing, family." 4 4 4 +13387 5 "The mood by the author by his memory was happy, thankfull, because he sais that his house in New Jersey bring happy memoris like for example his kitchen were his parends shared cooking duties and unwittinegly and the kitchen were he loved to cook. or his neighborhood were all of Spanish cuban and italian immigrants were there customs despid, all of this cultures came together in great solidary. or were his parents always kept their arms and their door open to the many people they considered family. or were he feels grateful with his parents for their love and sacrifice he often told them that what they did was a much more courageous thing then he could have ever done.. he will never forget How his parents turend that simple house int a Home.. " 3 2 3 +13388 5 "In Narciso Rodriguez by @PERSON1, there was a mood created throughout the story. What was the mood? In paragraph @NUM1, the mood was joyful and heart-breaking. ""Situated in a two-family, blond-brick building in the Ironbound section."" It shows how Narciso felt about her home in New Jersey back in 1961. In paragraph @NUM2, the mood was memorable and grateful. ""What they did was a more courageous thing that I could've ever done."" It shows that Narciso's parents had always done courageous thing. In Narciso Rodriguez by @PERSON1, there was a mood created throughout the story. In conclusion, the mood can always help the story flow and work so well." 2 1 2 +13389 5 "The mood of this memoir is the importance of family. @ORGANIZATION1 says in the beginning how much he loves his cuban culture and heritage. For example, ""my parents both shared cooking duties and unwittingly passed on to me there rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen."" Narciso Rodriguez enjoyed his ethnicity very much. Him and his family were always very open and welcoming to other people. ""My parents always kept their arms and their door open to the many people we considered family, Knowing that they would do the same for us."" Narciso also became close to other immigrants that were not blood-related to him. ""Growing up in this envirement instilled me a great sense that ""family"" had nothing to do with being a blood relative. Quite the contrary, our neighberhood was made up of mostly Spanish, Cuban, and Italian immigrants."" Narciso was close to many people who he considered family." 4 4 4 +13390 5 "In the memoir ""Narciso Rodriguez"" from ""Home: The Blueprints of our Lives,"" the mood is portrayed as very cheerful, warm, and happy. The way that the author described his home and early years provided an image of a large happy family throughout the passage. For example, in paragraph @NUM1 it states ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" This portrays the image that life in the author's home was friendly and loving. Another example is in paragraph @NUM2 where it says ""countless extended family members came and went - and there was often someone staying with us temporarily until they were able to get back on their feet."" This means that their family was very close and would always look out for eachother. So in conclusion, the mood in this memoir is portrayed as very happy, upbeat, and loving." 3 3 3 +13391 5 "The mood created by the @CAPS1 in the memoir shows him that he is grateful to have a home to live in When he was born by his parents. He was happy to live in a family that is unity and have friendship with others. He has learned the definition of ""family"" and know what a ""family"" is like and he respects his family for having a great home in @LOCATION1. The @CAPS1 has learned about how to love, and not forgeting his family for bring this simple house into a home as said in the last paragraph. He is happy to have a home to stay in and finding his new life ahead of him. Greatful for the love and sacarfice of his parents. Having a home is sweet." 2 2 2 +13392 5 The mood projected by the auter is that of a nice and cozy place where the stayed and were always nicee. They let anyone into their home and kept eachother safer from the racists. 1 1 1 +13393 5 "They were different kinds of mood in this memoir. The mood created by the author is a happieness and love mood. I know that because everywere in the article the author talkes about love and happieness. To prove that it says ""It was in the warmth of the kitchen in this humble house where a Cuban feast always filled the air not just scent in music but life and love. I know the mood is happieness because there is always positive things in this memoir. Also, with love comes happieness. Thats why I think the mood of this memoir is love and happieness." 1 2 2 +13394 5 "The author created a loving and accepting mood in the memoir. He first does this when talking about his familys dinner table. The author says, ""My parents always kept their arms and their door opened the many people we considered family, knowing that they would do the same for us. (@CAPS1 @NUM1) This shows that his parents would help anyone and treat anyone like family in a time of need. Second, the author describes this mood in @CAPS1 seven. He opens the @CAPS1 with, ""It was in this simple house that my parents welcomed other refugees to celebrate their arrival to this country and were I celebrated my first birthdays."" (@CAPS1 @NUM2). His parents were so loving and caring that they celebrated with complete strangers and family their arrival. Lastly, the author ends his memoir with a powerful sentence, ""I will never forget how my parents turned the simple house into a home."" (@CAPS1 @NUM2). The author completes the mood by stating that his parents created a home by being loving and caring and accepting other refugees that came into the United States. Throughout the author's memoir, he creates a mood of loving, caring, and accepting." 4 4 4 +13395 5 "Narciso Rodriguez from Home: The Blueprints of Our Lives is non-fiction. The mood created by the author is strong because he loves his family for going to america. Love is a strag mood to show. He says in the story ""My parents always Kept their arms and their door open to many people we considered family, Knowing that they would do the same for us. That shows the authers and his parents mood." 1 1 1 +13396 5 "In the memoir, Narciso Rodriguez is very grateful for his parents. The overall mood is happy and very grateful. It is happy and grateful because his parents came from Cuba and started a new life in @LOCATION1, but they made their house to look like a regular Cuban home. He is also very proud. Hw is proud of his Cuban background and culture. He is also happy his parents kept their homes open to everybody. He is grateful for his parents sacrifice and love. Those are the overall moods of the memoir." 2 2 2 +13397 5 "In the memoir Narciso Rodriguez from Home: The Blueprints of Our Lives the mood author created is thankfulness and gratefulness towards Narciso's parents, family, and friends for making his house a home and also gratefulness toward just his parents because they gave him a better life. In paragraph @NUM1 it says ""My mother and father had come to this country with such courage. without any knowledge of the language or culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" @CAPS1 saying this Narciso is expressing thanks and graditude toward his parents. In the first sentence of paragraph @NUM2 it says ""I will always be grateful to my parents for their love and sacrifice."" Narciso is clearly stating his gratefulness toward his parents. In the last sentence of the memoir it says ""I will never forget how my parents turned a simple house while home."" @CAPS2 Narciso is thinking his parents. In paragraph @NUM3 it says ""It was here I learned them real definition of family."" @CAPS3 it weren't for Narciso's parents, friends, family, and home, Narciso wouldn't have learned the real definition of ""family."" The mood created @CAPS1 Narciso Rodriguez gratitude." 3 3 3 +13398 5 "The mood created by the @CAPS1 in the memoir is that when he arrived in the United States he was given the opportunty that so many immigrants wanted and that was education. His parents still carried that cuban culture they had that was especially in their kitchen because both his parent loved making food, and they had great culunary skills which he learned. They would have cuban music going while they were setting the table. The @CAPS1 tells us that when his parent were still in Cuba his dad worked in a laboratory and his mother had studied chemical enginerring. The @CAPS1 says ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done.""" 3 2 3 +13399 5 "There are a few ways to describe the mood the @CAPS2 created in this memoir. They description im going to give is the @CAPS2 created a very happy & loving mood. For example, in paragraph @NUM1. it say's ""Quite the contrary, our neighborhood was made up of mostly Spanish, Cuban, and Italian immigrants at a time when overt racism was the norm and segregation prevailed in the United States. In our neighborhood despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" That means that family doesnt have to be blood related for you and that person to unite and became very good friends. Also another example is in paragraph @NUM2, where it says, ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courageous thing then I could have ever done."" That shows she's a very loving and caring person to actually be @CAPS1 for something your parents have done. Those are a few way's to describe how the @CAPS2 created this happy and loving mood." 3 4 4 +13400 5 "The mood created by the author in the memoir was warm and comforting. The author described his home with great words and descriptions. While describing the meals and get togethers, the author made me feel at home. Memories are sometimes greater than plans of the future. Memories of homes are the best in remembering times at home. This memoir made me think of past times and happy memories. The vocabulary and extra information in this memoir made the mood of it very happy and comforting and made me want to read more about his past life." 1 1 1 +13401 5 "There are alot of ways to describe the mood in this memoir, The mood created in the memoir is heartwarming.One example is in paragraph @NUM1, when Narciso Rodriguez is describing his house, he says, ""here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" @CAPS1 example is in paragraph @NUM2, when he says, ""growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative"". And again in paragraph @NUM2, he says, ""in our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" And @CAPS1 in paragraph @NUM2, he says, ""it was a close-knit community of honest, hard working immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need. @CAPS1 example is in paragraph @NUM5, when he says, ""they (his parents) came selflessly, as many immagrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved.In the memoir the mood that is created is heartwarming. Narciso Rodriguez's parents did a lot of this for him to make him feel like its Cuba. In my prospective this memoir is probably the most touching to my heart." 4 4 4 +13402 5 "The mood of this memoir is good. It's good because everybody is happy. Narciso is in a good mood and inviting everybody into is his. The excerpt says... ""My door will always be open"". Also in there house's they have music going on all the time. The excerpt also says... ""In our meighborhood despite customs elsewhere, all of these cultures came together in great solidarity and friendship"". There were also very unselfish, caring of everyone, and did whatever they could for there families. In this memoir there was a overall pretty good mood of everybody because they were nice, inviting, and caring." 2 3 3 +13403 5 "In the memoir @PERSON1, the mood of the author is @CAPS2. The author is from Cuba who lives in a modest three-room apartment. That is big coming from a one-room apartment. The author says that they turn this little space into a cuban home. One reason @CAPS1 is @CAPS2 is because his house was always filled with love, friends, and family. @CAPS1 is also @CAPS2 of his parents. @CAPS1 says ""they came to this country with such courage."" @CAPS1 also says ""I will always be @CAPS2 to my parents for their love and sacrifice."" The author loves his parents and is very @CAPS2 for all they have done including ""turning this simple house into a home."" @CAPS2 his mood created by the author in the memoir." 3 2 3 +13404 5 "The mood created by the author of this memoir was very warm and loving. He talks about his family and friends throughout the piece, and how much they have changed his life. He talks about Cuba and its culture flowing through the home, how his parents threw their careers away so that their children can have a good life, and how everyone in his neighborhood was very close knit as if they were a family. All these aspects of his life thrown together with words like ""faith"", ""struggle"", ""admiration"" and ""selflessly"", among many others, makes for a very compelling piece that has a strong heartfelt mood." 2 2 2 +13405 5 "The are many strong feelings in the memoir but @CAPS1 is the most important one. In the memoir ""Narciso Rodriguez"", Narciso Rodriguez talks about all of the sacrifices and Love in his house hold and how @CAPS2 is forever great full for his parents selflessness. ""Love of cooking that is still with me today (and for what I am extreemly greatfull)"" is what Rodriguez says @CAPS2 appricietes. @CAPS2 is also appriciative for the way @CAPS2 grew up and how his parents taught him that ""family had nothing to do with being a blood realetive."" @CAPS2 is so appricietive that @CAPS2 tells his parents constantly that @CAPS2 ""will always be greatfull to my parents for their love and sacrifice."" The author excpetially ex presses the mood of @CAPS1 in the line, ""I will never ferget that house or its gracious naighbor hood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" Rodriguez is forever appriciative to his parents and their strong desitions that made him the person @CAPS2 is today." 3 3 3 +13406 5 "the mood the author had created in the memoir is happyness for his home.The author says that family doesn't have to be blood related. the author states, ""Growing up in this enviroment instilled in me a great sense that ""family"" had nothing to do with being a blood relative.""" 1 1 1 +13407 5 "The mood of the memoir is actually happy and grateful. I think this because the kid thanked his parents for letting them move to @LOCATION1 and all of them were happy that they took this sacrifice, Narciso especially. Narciso always thanks his mom and dad for thier bravery. He @CAPS1 he thanked them repeatedly and he could never have enough bravery to do that. That is how it is grateful. Something about the story has a very happy feel to it. Because the family is together and they are talking about how happy they are living with each other and even in @LOCATION1 it adds a very happy feel to it. That is what I think the author tried to create in the memoir." 3 2 3 +13408 5 "In the memoir ""Narciso Rodriguez"" Narciso tells all about his parents and how greatful he is. Narciso created a mood during this memoir, he talked about his mom and dad and how they created his house into a home. Narciso's parents sacrificed a lot to move to @LOCATION1 and give their children a good life, even if it meant them having to leave behind family, friends and careers. The mood created overall was that I felt thankful for my home and family here in @LOCATION1. Then I also felt sympathy for Narciso's parents for leaving everything behind for their children. they also had to leave behind family, which is very hard to do. Narciso's parents made a very tough but wise deisicon but in the end it was worth it." 3 3 3 +13409 5 "The mood created by the author in the memoir I would have to say a loving mood because through-out the whole memoir Narciso Rodriguez talks about how loving and caring and selflessness his parents were. For example in paragraph @NUM1 it states ""They came selflessly, as many immigrants do to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" Also near the end of paragraph @NUM1 it says ""In Cuba, Narciso, Sr., had worked in a laboratory and Rawedia Maria had studied chemical engineering. In the United States, they had to start their lives over entirely, taking whatever work they could find. The faith that this struggle would lead them and their children to better times drove them to endure these hard times."" @CAPS1 are two reasons of why I believe the mood of the memoir the author created is a loving mood. Also in paragraph @NUM3 it says ""countless extended family members came and went- and their was often someone staying with us temporarily untill they were able to get back on their feet. My parents always kept their arms and doors open to the many people we considered family, knowing that they would do the same for us."" That is the final reason of why I think the mood of the memoir is a loving mood." 3 4 4 +13410 5 "In the memoir, @PERSON1, by @PERSON1, he talks about how thankful he is. One thing is that he is thankful for his babysitter and friend giving them food when they needed it. Also he was thankful for the community he had. Lastly, he was thankful for his parents' love and sacrifice.He said that ""@CAPS1 graced our kitchen table more often than not."" (@NUM1, Rodriguez) this shows he everybody helped each other out.Next he says that ""our neighborhood... Came together in great solidarity and friendship."" (@NUM2, Rodriguez) this how close-knit Rodriguez's community was. Lastly, he says that ""I will always be grateful to my parents for their love and sacrifice."" This shows how thankful he is toward his parents for sacrificing almost everything for him.By Narciso Rodriguez wrote this in a thankful mood. He thanks his babysitter, he thanks his community, and he thanks his parents. All of them contributed to his life." 3 3 3 +13411 5 "The mood that is @CAPS1 and that it is created by the author in the memoir is the feeling of being thankful. This is the mood @CAPS1 because it says ""Their rich culinary Skills and a love of cooking that is still with me today (and for which I am eternally grateful)."" This @CAPS3 the mood is thankful because author is thankful for the culinary skills that is still with him. Another that @CAPS3 the mood thankful is when it says ""I will always be grateful to my parents for their love and sacrifice."" This @CAPS3 the mood thankful because @CAPS5 is thankful to his parents for their love and sacrifice. Another that @CAPS3 the mood as thankful is when it says: ""I've often told them that what they did was a much more courageous thing that I could have ever done."" This @CAPS3 the mood as thankful because @CAPS5 is thankful for all they have done and @CAPS5 could never be more courageous than them. This is the mood of the memoir created by the author." 3 3 3 +13412 5 "The mood created by the author is a warm happy mood. This is because he is talking about the love and bonds of family. He also is talking about home and how a house can become a home. He also talks about how he and most people are grateful for family and friends. All of this blends together to form a happy, good, warm mood to the story." 2 1 2 +13413 5 "I think the mood created by the author in the memoir is happiness because in paragraph @NUM1, in the beggining Narciso's parent gave up there" 1 1 1 +13414 5 The mood the auther was in was @CAPS1 & happy. The reason It was happy & @CAPS1 is because they talked about Being @CAPS3. And living in a @NUM1 @CAPS4 apartment. 0 1 1 +13415 5 "In the excerpt of the memoir Home: The Blueprints of Our Lives by @PERSON1, the mood created is one of love for family and friends. The author explains his parents reasons for immigrating with such love and devotion that it is hard to not feel the same way. The author describes how everyone would eat together and they often had many more people eating with them. The author says ""...countless extended family members came and went..."" and then continues on to describe how his family lets other family members come stay with them until they get back on their feet. The author really shows the mood of the excerpt in a loving way and does this the most when saying you will always be grateful to his parents for moving to @LOCATION1 for him. The author shows that he truely cares about his family." 3 3 3 +13416 5 "The mood the author creates in the memoir shows a soothing and grateful memory of the authors home and relatives. The author creates a peaceful tone representing calmness, comfort, and happiness displayed in his memories.One example of the authors way of creating a comfy and peaceful mood is in paragraph @NUM1 ""Passionate Cuban music filled the air, mixing with the aromas of the kitchen. Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" @CAPS1 two sentences give a deep and warm thought of family and friends along with comforting images of kitchens and sweet aromas of cooking. This type of writing gives the reader a calm mood based on the comforting words, used in the sentence such as passionate, aromas, innocence, and warmAnother example is in paragraph @NUM2 where the author displays happiness and shows his gratfulness for having family and what his family has done for him. This adds to the mood in the memoir by representing how great family is and how much it can mean to people.Overall the author uses calming and strong words to get his images and feelings through in the memoir. Because of this he was able to create a peaceful, and comfortable mood while expressing his love for family and friends." 4 4 4 +13417 5 "The @CAPS1 mood about the story is happy. The reason why is because the story talks aboult how the kid learns a lot of things from his young parents. The boy learns that @CAPS3 was born in cuba but @CAPS3 had to leave to New @CAPS2 even though @CAPS3 didn't want to. @CAPS3 also learns that his mom and that like to cook a lot together, @CAPS3 also learns that they make schedules for eachother. Even thougth they moved to New @CAPS2 they still do what they do in cuba and they let people visit even thougth they don't know them." 1 1 1 +13418 5 "The mood created by the author was grateful. The mood is grateful because he gives thanks to his parents For ""... their love and sacrifice"" (@NUM1). This memoir is based on the definition of family. Rodriguez explains that Family means many things. It means helping others, accepting everyone, and for his parents giving up your life so your children could have a better one. He recalls the many people his mother and father help. The people in his neighborhood that were not related by blood but were still his family. The courage and selflessness of his parents leaving their country to start over. He tells them of his ""...admiration of their strength and perseverance"" (@NUM1). There is still ""no way to express my gratitude"" (@NUM1), he also states. He will be forever grateful to his parents for these lessons that have formed his life." 3 3 3 +13419 5 "The mood in the memoir ""Narciso Rodriguez stays constant through out the story. First, ""growing up in this environment in stilled in me a great sense that 'family' had nothing to do with being blood relative"". This quote talks about when Narciso's mom and dad take people in their house that need a home, but they are not blood relative family. Second, ""my mother and father came to this country not knowing the culture of language to give me a better life."" Even though his mom and dad knew nothing about the language or culture in @LOCATION1, and didn't want to leave friends and family, @ORGANIZATION1's mother and father sacrificed it all to give @CAPS1 a better life. Finally, ""I will never forget how my parents turned this simple house into a home."" @CAPS2 means that its a simple house but it turned into a safe home with all the people @CAPS2 loves around him. All in all, the mood of this memoir is happy. The author makes all his challenges happy." 3 3 3 +13420 5 I think this is the @CAPS1 Childhood. This memoir is about A young girl that tells about her life and. her parents life. is saying when did her parents @CAPS2 from Cuba to the United @ORGANIZATION1 in 1956. It says wen she was born in 1961 & she saying she was born in a simple house. This @CAPS1 is saying about The little girl's family wen did they @CAPS2 & were did they lived. 0 0 0 +13421 5 "In the excerpt Narciso Rodriguez the @CAPS1 sets a mood of relaxation, happiness, joy, and an overall feeling of over satisfaction and unity. The @CAPS1 describes his feelings of being at his home and how much it made him feel overjoyed. In paragraph @NUM1 it says ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" In this particular sentence the @CAPS1 is tring to get the mood as like a heaven on earth thing. The @CAPS1 while tring to give the reader factual information about his home, is also tring to exagerate the emotion and make it paradise. In paragraphs @NUM2, @NUM3 and @NUM4 the @CAPS1 emphasizes how courageous, kind, and selfless his parents are and how he will always be greatful to them for that. He shows it in statements like ""They came selflessly...to give their children a better life"" and ""Generosity and selflessness are two lessons my parents did not just tell me. They showed me their lives."" The @CAPS1 sets the mood in the story as paradise for everyone." 3 3 3 +13422 5 "The mood created in memioar Narciso rodriguez is unity as shown in paragraph @NUM1 ""Our neighborhood was made mostly up of spanish, cuban, and @CAPS1 Immigrants at a time when over racismn was the norm and segregation prevailed in the United States. In our neighborhood despite customs elsewhere. all of these culture came together in a great solitary and friendship. It was a close knit community of honest hard working Immigrants who extended a hand to people who, while not necessarily their own kind who were clearly in need secondly they had courage as shown in paragraph @NUM2 My mother and my father had come to this country with such courage. Without any knowledge of the language and culture. They came selflessly, as many @CAPS2 due to give their children a better life even though It meant leaving behind their familys frends carrers and the country they loved. That is the mood created by the memiour." 1 2 2 +13423 5 "The mood created by the @CAPS1 in the memoir. First at the end of the memoir @CAPS2 was @CAPS3. ""I will never Forget how my parents turned this simple house into a home.""@CAPS4 @CAPS3 one is, ""it' was in this simple house that my parents welcomed other refugees to celebrate their arrival to this country and where I celebrated my First birthday.""My @CAPS6 mood that I am going to tell you about is like an I don't care. ""Growing up in this environment instilled in me a great sense that ""Family"" had nothing to do with being a blood relative.""@CAPS7 are my moods created by the @CAPS1 in the memoir." 1 2 2 +13424 5 "The @CAPS1 Created in the @CAPS2 is Not that of a @CAPS3 one. The @CAPS1 Created is cheerful and happy, as the narrator talks about his family and childhood. @CAPS4 talks about how his Neighborhood consisted of many races. as stated in paragraph @NUM1 ""Spanish, Cuban, and Italian immigrants."" @CAPS4 talks about how they all live together in peace and @ORGANIZATION1. This @CAPS5 @CAPS6 that the meaning of family does not nesecarily mean you have to be related. The @CAPS1 is happy and @CAPS6 that friends are family too. " 2 2 2 +13425 5 "The mood that was created by the author in the memoir was happiness, love, unity, and satisfaction. These words describe the mood because in the memoir the author would talk about how eternally greatful he is for his family. He talked about the struggles they had but how they saw past them and realized that as long as they have each other thats all that matters. They got along great and were very happy they had each other. They also helped other people in need which seemed to complete their lives. They saw everyone as family and as little as they had, all they wanted was to give back. That was the mood created by the author. " 2 3 2 +13426 5 "The mood created by the author in the memoir is, happy, proud of his parents and proud to be a Cuban. For example in paragraph @NUM1 he states ""I will always be grateful to my parents for their love and sacrifice."" His parents gave up their wonderful jobs in Cuba and now are working jobs that they don't like. Another example is in paragraph @NUM2 Narciso says that this environment instilled in me a great sense that ""family"" had nothing to do with a blood relative. Narciso is grateful for his parents and grateful for being in @LOCATION1." 2 2 2 +13427 5 "The memoir has a very happy mood to it. Paragraph @NUM1 gives a real feeling for what the authors home was like. It talks about the food and the music that the author emphasises his love for. Paragraphs @NUM2 and @NUM3 give information on how close the comunity was. The author talks about how great his friend Alegria was and says she ""graced"" their kitchen. Throughout the memoir, the author explains how happy his home was and with his detailed descriptions the reader gets a feel for the happiness too." 2 3 3 +13428 5 "The mood of the author and the memoir was happy. He or she seemed proud of everything about theirselves. He or she didn't let anyone stand in their way of their culture, home, and parents. For example the author said ""I will never forget how my parents turned this simple house into a home."" When i read that last sentence of the whole memoir I understood what feeling the author was getting. He or she was in all kinds of moods. Some was happy, some was grateful, and some was exciting. The mood the author was in made me realize that I need to appreciate what I got. In my home, in my school, everywhere and everyone around me. The mood of the author in the memoir was grateful. and happy." 1 3 2 +13429 5 "This article @PERSON1 has created a different mood for me. I was first bored but now I'm more grateful of my parents. My parents had also moved from a different country to the United States. They moved from @LOCATION2 to here @CAPS1 the children could have a better life and education. This article also says that close friends can also be family and now that I think about it, I think it's true. The author says ""growing up in this enviroment instilled in me a great sense that family had nothing to do with being blood relatives. That's the kind of mood this author created for me as I read this memoir." 3 2 3 +13430 5 "In ""Narciso Rodriguez"" the most imp-ortant thing is love. It talks about how much Narciso cares for his family.The mood is love, admiration and gratefulness. Narci-so is so grateful for what his parents did for him. To give up everything to go to a better place. ""I will always be grateful to my parents for their love and sacrifice."" says Narciso. Another m-ood is also love. In the memoir it express-es a great deal of love that's in his family. "".. It meant leaving behind their families, friends, and careers in the country they loved"". They gave up everything for Narciso who they truely love. You get the feel of admiration when Narciso says ""They showed me with thier lives, and these teachings have been the basis of my life"".The overall feelings of the memoir is love, admiration and gratefulness. Narciso learned a lot from his family. ""I will never forget how my parents turned his simple house into a home""." 3 4 4 +13431 5 "In this memoir the author gives the mood a sense of inspiration, as well as the love of family and friends. In the memoir the author talks about how great it is that the author's parents had turned a simple ordinary house into a home, which means that the author's parents had made thier house to feel like home by bringing their Cuban culture into the house, such as Cuban food, Cuban music, and Cuban decoration. That makes the memoir a happy mood. But there is also inspiration to this memoir because it basically tells readers that it doesn't matter who your blood relatives are, family is family, people who love and care about you the most." 2 1 2 +13432 5 "The mood of this memoir is very happy and loving. Throughout the story Narciso shows how much he apreciates that his parents gave him the oportunits to grow up in @LOCATION1. He shows to me that this in memoir is loving by explaining how his mom and dad always had there arms and dores open to any body they considered family. The memoir is happy because it shows that he has a lot of good relations with many people that he calls family. He is also happy because he knows how much it takes to move from your home country to @CAPS1. Overall Narciso had a very happy, loving childhood." 2 3 3 +13433 5 "The mood created by The author is happy and warm tone. In paragraph @NUM1 he recalls enjoying cuban music and learning to cook. He also recalls making friends with other imigrants and learning to love and help everyone. (@NUM2) In paragraph @NUM3 he recalls learning the true meaning of family and what it means to make house, a home. The mood created is warm and loving and teaches the true meaning of family and of selfless behavior and that home is about The family, not the space" 2 2 2 +13434 5 "The mood the author created in the memoir was happiness and satisfaction. I know this because in the story the main character is happy. As he arrives in New Jersey he enjoys how his parents create their house looking like a traditional Cuban home. He is passionate of the Cuban music that he adores listening too everyday. Another thing is that the main character is satisfied of what his parents do for him. In paragraph @NUM1 it says ""I will always be grateful to my parents for their love and sacrifice."" The last thing is that he is thankful to his parents because in paragraph @NUM1 it says ""@CAPS1 often told them that what they did was a much more courageous thing that I could have ever done. I've told them of my admiration for their strength and perseverance and I've thank them repeatedly."" These are the moods the author created in the memoir." 3 3 3 +13435 5 "The mood created in Rodriguez's memoir is one of gratefulness + happiness. There are supporting feelings such as coziness + friendlyness but Rodriguez himself most exhibits gratefulness. In paragraph @NUM1, there is a great catalogue of gratefulness to the social skills that were passed down to him. When in paragraph @NUM2 he talks about their cuban feast, a small one perhaps but with true love + life. You get a true sense of the gratefulness Rodriguez displays for his parents not because of who they are or how much money they have or what they give him (materialistically), but being genuinely grateful of the nature + kindness bestowed to him." 2 3 3 +13436 5 The mood of this memoir is loving. It's @CAPS1 you how you should look back at your home and your family. They all love you and how you love all of them. How every one was always there fore everyone. 1 1 1 +13437 5 "In the memoir Home: The Blueprints of Our Lives @PERSON1 he makes the mood seem the loving, cheerful, and grateful.The mood is grateful to Rodriguez's parents for making his house more of a home among other things. In paragraph @NUM1 he says ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 his parents did a ton for Rodriguez and he is constantly grateful. Their is also a lot of love in the mood of the book because there are lots of mentions of family. In paragraph @NUM2 it says ""My parents always kept their arms and doors open to the many people we considered family."" @CAPS2 arms opened and a big ""family"" are surely signs of lots of love. The mood of the excerpt is also cheerful because as Rodriguez says ""Passionate salsa music filled the air."" And ""a Cuban feast (albeit a frugal Cuban feast) always filled the air."" Music and feasting are two of the most cheerful things there are.By recalling experiences from his childhood @PERSON2 manages to make the mood of his memoir loving, grateful, and cheerful all at the same time." 4 3 4 +13438 5 "In the memoir ""@PERSON1"" from Home: The Blueprints of Our Lives the author creates a positive, greatful mood. The author ""will always be greatful to my parents for their love and sacrifice"" I know because a writes a few paragraphs just to show how thankful @CAPS1 is to his parents. @CAPS1 describes how great their jobs were in Cuba and then how poor they became in the @LOCATION1, but yet they still worked hard to give their children a better life. ""In a simple house that my parents welcomed other refugees to celebrate their arrival to this country where I celebrated my first birthdays."" @CAPS1 describes everything, as a positive learning experience, but shows that throughout the memoir, the theme is positive and greatful." 3 3 3 +13439 5 "The mood created by the author in the memoir the author's mood feel sad. Because in the cuba, @PERSON1, had worked in a laboratory and Rawedia Maria had studied chemical engineering. In the United States, they had to start their lives over entirely, taking whatever work they could find. In author memoir @CAPS1 will always be grateful to his parents for their love and sacrifice." 1 1 1 +13440 5 "The mood in this memoir is gratitude. Narciso is so greatfull and proud to have grown up where he did and have the family he had ""In our neighborhood despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" Narciso is telling the readers that even thogh the people in his neighborhood were all different, they were still family. ""I will never forget how my parents turned this simple house into a home."" This quote tells you that even though things were ruff he still is gratefull for all the opertunities his parents gave him." 2 2 2 +13441 5 "the mood created by the author in the memoir was happy for remember the most important peoples on his life, the poor house were he lives when he had his first birthday and a different kind of people in the place were his family live, he was grateful for everything to his parents gived to him when he was a little boy and the education how his parents give it to him." 2 1 2 +13442 5 "Narciso Rodriguez's memoir creates and overall mood of love and compassion for family and shows the strength of his own family. Narcisco explains that his parents love of cooking and willingness to let other people in ""instilled in me a great sense that ""family"" had nothing to do with being a blood realative."" Also, this memior shows people facing hardships. Narciso explains his neighborhood, and family overcame racism together. This sets the mood that they love eachother. Lastly, this memior shows love and sacrifice. Narciso explains that his parents ""struggled both personally and financially."" during their move to @LOCATION1. But Narciso's parents still showed him to love. From his parents, Narciso has learned to love, and for that he admires his parents." 3 3 3 +13443 5 "Based on the auther in the @CAPS1, the mood created by the author was happy and sad, I sead that the mood created by the auther was happy because he lived in a comfortable with made by thier neighborhood was mostly, Spanish, Cuban, and italian immigrants at a time, it was no rasism, no segregation he lived his home peaceful, and the sad thing was that NARCISO RODRIGUEZ learned how to love and the the definition of family and about how to love but he saed that he would never how parents turn house into a simple home." 1 2 2 +13444 5 "In the memoir Narciso Rodriguez by Narciso Rodriguez the author's mood is happy, @CAPS1 he says ""I will always be grateful to my parents for their love and sacrifice."" And @CAPS1 he loves his family and friends. oh so dearly. He is also grateful to have a lot of his family members who are close to him. That could get together for dinner and a lot more. The author says ""It was in the warmth of the kitchen in this humble house where a Cuban feast (albeit a frugal Cuban feast) always filled the air with not just scent and music life and love.""As you can see in the memoir the author felt happy and grateful @CAPS1 of the love and sacrifice of his family." 2 3 3 +13445 5 "In the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, Narciso Rodriguez is an internationally recognized clothing designer. He talks about his hometown in Newark, New Jersey. In the memoir, he offers the true definition of ""family"". I felt like the mood was comforting, and loving, and heart-warming. Just by the way he talks about how much he loves his Cuban heritage, and how his mother and father immagrated from Cuba, to @LOCATION2, and how, even at a young age, they still managed to raise him, and do alot for him, and give him the best childhood they could give him, that he'll always remember. He also talks about how ""Growing up in this environment instilled in me a great sense that 'family' had nothing to do with being a blood relative"", meant that you could even consider someone not blood related to you, as your own flesh and blood, family." 2 3 2 +13446 5 I think he has a really great life and he's a happy person.And also he appericates what happens in he live. 0 1 1 +13447 5 "The mood created by the author in the memoir is love, caring, and thankfulness. I say this because she really appriciates what her parents have done for her. In @CAPS1 @NUM1, she says ""I will always be grateful to my parents for their love and sacrifice, my admiration for their strength and perseverance, and I've thanked them repeatedly."" Also, ""it was a close knit community of honest, hard-working immigrants who extended a hand to people who, while not necessarily their own kind, were really in need.""; @CAPS1 @NUM2. This shows that Narciso and her family can trust the people in their community which is a thankful mood. Because they know that they would never do anything to hurt them. In the last @CAPS1, it says ""it was here where I learned the real definition of family and I will never forget how my parents turned this simple house into a home."" This shows how thankful, loving, and caring he is to his parents. Narciso is proud of his parents because they let people stay with them, when they need to.. This is the moods created by the author in the memoir." 4 4 4 +13448 5 The author created the mood of love and caring. They alwayS cared about other people 1 1 1 +13449 5 "The mood created by the author of the memoir ""Narciso Rodriguez"" is generally a happy and memorable one. The author describes how his parents came to @LOCATION1 and had to start all over. However, the author's parents are still very kind and turn their neighborhood into one big family. The parents cook and celebrate things with the neighbors. The author says he is very proud that his parents were such caring people. The mood of this story is overall very happy, sharing, caring, and grateful because of how nice the parents were. The author states ""my parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us."" The memoir ""Narciso Rodriguez"" is a very inspiring and happy memoir to read, with the mood to match it." 3 3 3 +13450 5 "In this memoir by Narciso Rodriguez, there is a mood of joy, and hope. His parents came to @LOCATION1 in a time of racial segregation. they persevered through the hard time with their child by having close bonds with Friends and Family that lived nearby. Culture was passed on to Narciso and he loved the @CAPS1 and music he grew up with. Narciso's @CAPS2 always invited Family into their home when they needed help. Also, many people that weren't related to them shared dinner with them each night. In the Rodriguez's home, there was hope to get better and joy For the moment." 2 2 2 +13451 5 The mood by Narciso Rodriguez in the memoir is happy. When the author talk about his or her memoirs it seemed like they felt happy having those memoirs to talk about. Like when the author talked about their parents and the house they live in and how it always made them remember like if they were still there. So if I was in the author's shoe's I would fell good about how I was raised by my parents to live in a better place even if that means giving up a lot of thing that mean a lot to you. That is what I think the author's mood is. 2 1 2 +13452 5 I think it was proud mood cause she is saing what her parents did for her. 1 1 1 +13453 5 "The author creates a gratefull mood in the memoir. For example in paragraph @NUM1 the @NUM2 sentence the author states ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" This @CAPS1 that the author is gratefull enough to have parents even though they are not his biological blood related parents. In paragraph @NUM3 In the first @NUM4 sentences the author is talking about how his parents came to this country with carage and without speaking the language or knowing the culture. He also mentioned in those sentences how to give their children a better life meant leaving behind families, friends and careers in their original country. This @CAPS1 that the author is also generous because he realizes the love and sacrafice it takes to do this. Also, In paragraph @NUM5 sentence @NUM4 he says that he has told his parants that what they did was brave because he would have never been able to do what they did. It really displays how grateful the author is, and how much he admires his parents." 3 3 3 +13454 5 "The author created many feelings in the memoir. First, the author created a warm and loving mood; ""I will never forget that house or its gracious neighborhood or the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home."" This quote shows how much passion is behind his families love and it makes you feel warm and comfortable inside. Second, some feelings the author also creates are friendly and caring; ""Growing up in this environment instilled in me a great sense that 'family' had nothing to do with being a blood relative. In our neighborhood, despite customs elsewhere, all of these cultures came together in great solitary and friendship."" This shows how friendship was very important and gives off a friendly and caring feeling to the reader. Lastly, the author created a very happy and upbeat feeling in the begining of the memoir; ""Here, in the innocence of childhood, the congregation of family and friends, and endless celebrations that encompass both, formed backdrop to life in our warm home."" This quote shows that the author's family celebrated life and created upbeat feelings. In conclusion, the author of the memoir created many feelings for the reader." 3 3 3 +13455 5 "In this memoir written by Narciso Rodriguez, he portrayed a very specific mood. This mood made me feel that I was there, or part of the story that he was telling. I felt this way because by familiarizing your readers with your characters, that makes writing the rest of the story a lot easier. For example, in paragraph two, I was able to get a sense of what his home and family life was like-especially with this line, ""Within its walls, my young parents created our traditional cuban home, the very heart of which was the kitchen."" @CAPS1 line that I felt was special to the story was, ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people who... were clearly in need"" I liked this statement especially because it showed me, as the reader, how caring those people were. It also brightened the mood of the whole story. The overall mood of this memoir, I feel, was clearly depicted." 4 4 4 +13456 5 "In the excerpt ""@CAPS1 Rodriguez"" from Home: the @CAPS2 of our Lives, the author gives off a very nostalgic mood. Throughout the excerpt @CAPS4 recalls all the feasts, parties and guests @CAPS4 had at the ""simple house"" his parents turned ""into a home"" as stated in @CAPS3 @NUM1. This tells me that the author had very good memories at the house @CAPS4 loved and grew up in. The author also gives off a very compassionate mood. In @CAPS3 @NUM2 it says ""I will always be grateful to my parents for their love and sacrifice."" @CAPS4 describes his comunnity as ""close-knit"" and ""honest"". This tells me that the author was very similar to his community and loved all of them and was grateful his parents took their time to make his life the best they could. The mood is lastly @CAPS5. In @CAPS3 @NUM3 it says his community ""extended a hand to people who were clearly in need."" @CAPS4 calls his parents actions of coming to @LOCATION1 ""courageous."" @CAPS4 takes pride in his Cuban family and @ORGANIZATION1 and all of the immagrants @CAPS4 grew up around, which tells me @CAPS4 knows they accomplished a big feat in their lives. Those are the moods set by the author." 4 4 4 +13457 5 "In ""Narciso Rodriguez"" by Narciso Rodriguez, many moods were shown and created in the memoir. One mood shown in the memoir is great love. In paragraph three, Narciso wrote, ""In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship."" @CAPS1 mood described in Narciso's memoir was gratitude. In the final paragraph, the author wrote, ""I will never forget how my parents turned this simple house into a home."" A last mood produced in the memoir was pride. In paragraph two, Narciso wrote, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful). Many positive emotions were created by Narciso Rodriguez in his great family memoir." 2 2 2 +13458 5 "In this memmoir of Narciso Rodriguez from Home: The Blueprints of Our Lives, the author beautifully creates a positive, happy mood. Throughout most of the memmoir, the mood is very warm and hearty. The author's description of how his home came to be and how it's like warms up the atmosphere of the reader's mind and make them smile unknowingly. For example, the last sentence of paragraph @NUM1, it says, ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" The author's diction, or choice of words, such as congregation, celebration and warm home creates imagery of happy, joyful house and gives off an positive effect. In addition, he boosts up the warm, soothing mood up a notch @CAPS1 saying in paragraph @NUM2 ""... All of these cultures came together in great solidarity and friendship. It was a close-knit community of honest, hardworking immigrants."" @CAPS1 saying this, this sentence sets up a feeling of being supported @CAPS1 your loved ones and shows a real definition of true family. Also, it sends a warm, relaxing, cozy feeling as the author talks about a loving, caring family. For this memmoir, the author created a heartwarming, joyous, warm mood as he described his loving home and provided a real definition of family. A loving family really sets a warm, hearty mood." 4 4 4 +13459 5 "In the story Narciso Rodriguez the mood of the auther created was very peaceful. It was saying how it was a traditional cuban home and there was passionate cuban music that filled the air. There was also the mixing of the aromas in the air coming from the kitchen. There's tons of loving people around the house too. Which makes it home and comfertable. The mood was always happy and everyone loved to cook so they would always do that together even though they wernt blood related. ""Within the walls, my young parents created created our traditional cuban home, every heart of it was in the kitchen. As you can tell this family loves being together and enjoys eachothers company" 3 2 3 +13460 5 The mood was great. 0 1 1 +13461 5 "In this article, the authors mood seemed to be happy and good. For example he likes that his parents are selfish and hard working people and tried to make his life happy. He also liked how they would invite a lot of people to come over for a visit and how they treated them like family. He also likes how they tought him things that they know how to do such as cooking. His mood did seem to change when he talked about how in Cuba having a job was a bit eser then how it was in New Jersey. They tried to make as much as they could and his mood seemed to be a bit worried. His mood changed to be happy again when he menchened that he loves the way they treat their house like a real home." 3 2 3 +13462 5 "The author creates a very happy, but curious mood towards the reader. The reading made me happy for Narciso, but curious on how much his parents had to struggle to give Narciso the best life he could get. For example the author states that his parents had to ""start their lives over entirely, taking whatever jobs they could find."" Back in Cuba, ""Narciso, Sr., had worked in a laboratory and Rawedia Maria (Narciso mom) had Studied chemical engineering."" This shows how much his parents lost due to immigrating to @LOCATION1. This made me wonder why they would do this. They did it because they wanted Narciso to have a good education and to live a good life. Also the author creates a sad emotion, by saying, ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and carrers in the country they loved."" This made me sad because some of the immigrants had to leave their mother's, father's, and friends and @MONTH1 never see them again. The author creates a variety of different moods throught the memoir." 3 4 4 +13463 5 "In the excerpt ""Narciso Rodriguez"", by Narciso Rodriguez, there are several ways in which the author created the mood. For instance, when the author states how his family is from Cuba and they were able to move to a modest apartment.. The authors states, "" originally from Cuba could afford to move into a modest apartment I would soon call home"" (@NUM1). This quote shows, that the authors parents wanted to give him a good life. They did this by moving themselves and him to @LOCATION2. Another example occurs when, the author describes what his kitchen ""heart of the house is like and how even though they are New Jersey, their house still feels like cuba. The author says, ""Passionate Cuban music (which I adore) filled the air, mixing with the aromas of the kitchen"" (@NUM2). This quote demonstrates, that the authors family made sure he still knew what cuba is like. The authors parents wanted to show him both sides of the world (cuba and @LOCATION2). Last, when the author says how grateful he is about his parents and the way he grew up. The author says, "" I learned the real definition of ""family"" I learned there how to love"" (@NUM3). This quote shows, that the author has learned all the important skills in life. Thanks to his family he now knows how to love and treat everyone with respect. Clearly, there are many ways the author created the mood for the excerpt." 4 4 4 +13464 5 "Based on a memoir by Narciso Rodriguez, a specific mood is created. First, the author tells about a love of cooking in the kitchen with his family and the meaningful Cuban dishes prepared there. This creates an atmosphere of passion. Rodriguez describes, ""passionate Cuban music (which I adored to this day) filled the air, mixing with the aromas of the kitchen"" (paragraph @NUM1). This quote shows the passion the author has for his culture and traditions. Second, the author talks about the relationship he has with this neighborhood. A mood of passion is created based on the authors loving emotions towards his unofficial family. The author writes, ""My parents always kept their arms and doors open to the many people we considered family"" (paragraph @NUM2). Finally, the author shares his gratitude towards his parents and all that they have done for him. His passion for their strength, perseverance, and teachings create a passionate atmosphere. The author says, ""I will always be greatful to my parents for their love and sacrafice"" (paragraph @NUM3). Throughout Narciso Rodriguez's memoir a passionate mood is displayed. " 3 4 4 +13465 5 "In 'Narciso Rodriguez,' the author creates mood in several ways. The mood created by the author is a warm, happy mood that associates with feelings of family and love. The first place we can see this mood is in paragraph four where the narrator tells us ""my parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This shows that everyone in their community loved each other and help each other, which added to the mood of family and love. The narrator also tells us of his parents that ""they came selflessly, as most immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they love."" This shows that the narrator's parents loved him so much that they wanted the absolute best for him no matter where it took them. This shows they feel family is very important to them adding to the mood of family created by the author. The final place this mood can be seen is when the narrator tells us that he would ""always be grateful to my parents for their love and sacrifice,"" and that it was from his parents that he ""learned the real definition of family."" This shows how much he loved and respected his parents which added to the warm, loving mood. In 'Narciso Rodriguez' several things used by the author create a warm mood of family and love." 4 4 4 +13466 5 "The mood created by the author in this memoir is comforting. His memoir shows his past life and how he felt about it. Cuban music filled the air, tables of Cuban feasts, different kinds of people interacting, all that is the mood he's trying to express about his life through his memoir. He's also showing his appreciation for his parent for making sacrafices for him so he could have more opportunities and education. He's also being very descriptive about his childhood and showing the type of life he had and what he and his parents had to go through when they came to @LOCATION1 and how they don't want people going through the same thing as them so they helped Immigrants who needed support." 2 2 2 +13467 5 "The mood is obvesoly love, and greatfulness. ""(And for which I am exernally greatful)."" The boy is young so he doesn't quite get how big that move for them was. ""In the United States, they had to start their lives over entirely."" This means leaving family, friends, @CAPS1 new jobs, a house to put over his head, and leaving their home to give a great one for their son. He is thankful that his parents were still able to keep his cuban life alive. They didn't forget where they came from.Now I think about it one of his moods could be sad because he was the reason for all that happend. What happen if he was never born he would ever never found out what family means. That is why in this memoir has some greatfulness, some love, and that little bit of sadness." 2 1 2 +13468 5 "the mood they created in the author in the memoir was very diffrent from other people We all have diffrent mood swings but some people have the same and it never changes, one way you need to change this how you act around others and how to get to know them the way they are around and not with friends." 0 0 0 +13469 5 "The mood created in the memoir @ORGANIZATION1 is happy & warm. The memoir is happy & warm because it describes how a small home & be very happy like in paragraph @NUM1, it says ""always filled the air with not just scent and music but life and love."" This shows that love fills the air which is happy. That is how the author creates a mood." 2 1 2 +13470 5 "Home The Blueprints of our Lives is a warm tribute to the parents of Narciso Rodriguez. The author of this memoir had said, ""Growing up in this environment istilled in me a great sense that 'family' had nothing to do with being a blood relative."" Narciso Rodriguez would change the way a reader would perceive this memoir. It would be a story of a young child who has perceived the physical and mental qualities of adults. @CAPS1 acknowledges the troubles @CAPS1 and his parents are in. For his neighborhood including his family being immigrants, in a time of racism and segregation, @CAPS1 learned how to appreciate this ""close-knit community of honest, hard-working immigrants.""@CAPS1 understood how to Narciso Rodriguez Sr, and @ORGANIZATION2 struggled personally and financially. @CAPS1 became grateful for his opportunity to live in this Cuban home of Newark, New Jersey. Though his parents had worked in a laboratory and studied chemical engineering, they struggle to find work in financial times. @CAPS1 adores them. The author writes, ""They showed me with their lives, and these teachings have been the basis of my life."" Without these relationships, and the lives of various people, this memoir would be a selfish story of a child. @CAPS1 appreciates everything the family has done. There was too much generosity impressed upon a boy of such an early age. @CAPS1 had learned how to respect his parents. In the end, Narciso Rodriguez would write a memoir devoted to the bonds @CAPS1 created with his parents and the refugees amongst them." 4 3 3 +13471 5 "In this memoir the author has created more than just one mood. He has, in my opinion, created around three. Love, gratitude, and carring.The mood of love was created because in the memoir, Narciso Rodriguez tells us that family isn't just blood relatives. It can be anyone. In his case his whole neighbor hood was his family. Family can be anyone and to me family is or can be people that you love. That is how the mood of love was created by the author.When I read the memoir and got near the end, I personally felt the mood of gratitude. I felt that because the author is grateful for all the things his parents did for him, one example is when his parents left their hometown so that their son could have a better life. My parents did that for me, so I could relate on a personal level. I know I'm grateful for them making that big decision.I also think the mood of caring was created. I think that because in the memoir the author says that his parents would let people live with them until ""they got back on their feet."" I felt as if the family was caring doing that, its not like anyone would do that, so the family was caring. That is why I felt the mood caring was created by the author." 3 3 3 +13472 5 " In this memoir, Narciso Rodriguez speaks with nothing but warm fondness and gratitude as she describes her childhood home. The loving way she talks about her parents' appartment and their kitchen and the Cuban culture they combined into their everyday lives suggest that Narciso has wonderful memories of her parents. Obviously, she is very grateful for everything her parents did for her and the chance for her to grow up in such a tender community - where ""'family' had nothing to do with being a blood relative."" (@NUM1) The entire memoir is written with such care and attention to sweet detail. The author clearly feels blessed that her parents sacrificed their safety in their homeland to bring her to @LOCATION1 in order for her to live a better life, to experience the importance of friends and family, and to learn about the true meaning of love through Cuban culture." 3 3 3 +13473 5 I think @CAPS1 mood in this @CAPS2 was @CAPS3 was @CAPS4 and glad @CAPS3 grew up with such good Parents and How There not self ish 1 1 1 +13474 5 I think that the mood that the author created was a unpleasnt. One beccause he lived in a one room apartment so that must mean that they are poor. and that they live in a poor town without any food. 0 1 1 +13475 5 "The mood in this memoir is one of gratitude. This is first seen in paragraph @NUM1 when he talks about cooking and Cuban music. It is also in paragraph @NUM2 when he talks about leaving their home countrys. A third time is seen in paragraph @NUM3 when he tries to say thank you, but can't find the right words. The mood in this memoir gratitude and it is easiest to see in paragraphs @NUM1, @NUM2, and @NUM3." 2 2 2 +13476 5 "The mood created by the author in the memoir could be strong to many people once they put it together. Narciso's parents started of in a home that meant nothing. However, Narciso's parents turned it into something great. In the last sentence of the memoir Narciso states ""I will never forget how my parents turned this simple house into a home. What he was trying to explain was your home is what you make of it. That is what I believe the mood created by the author in the memoir is." 1 2 2 +13477 5 The mood that the author created in the memmoir was very thankful. He was very thankful for his parents coming to the @CAPS1 from Cuba. The opertunties it gave him a better education and to be successful. In the memmoir he was thankfull for al the people that helped him in this new country and supported him and his family as he did the same to the people that supoorted him. Thankfull was the mood that Narciso Rodriguez show'd in this memoir. 2 2 2 +13478 5 The author Created the memoir because he remember other people the family that don't live with us.The author remember us about the culture and other stuff.The author created the memoir of Narciso because he talking about family. 0 1 1 +13479 5 "The mood created by the memoir is @CAPS1, gratefullness, and overall feeling of the story. One reason would be the mood of celebrations with his families and friends; from paragraph @NUM1 ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompass both, formed the backdrop to life in our warm home."" Also the mood is gratefulness by how the family keeps the arms Open for people who need help because they knew that their friends/family would do the same; from paragraph @NUM2 ""My parents always kept their arms and their door open to the many people we consider family, knowing that they would do the same for us."" There was also a depressing mood because Narciso family had to move from their friends and jobs to have a better life for the child/son; from paragraph @NUM3 ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" Also they're grateful and Admiration to do what they did came their; from paragraph @NUM4 ""I will never forget how my parents turned this simple house into a home."" The moods created by this memoir filled the heart with depressing laungauge, gratefulness, @CAPS1, and admiration of the memoir." 4 4 4 +13480 5 "The author of the memoir creates a Very a grateful and happy mood. ""They came selflessly, as many immigrants do, to give their children a better life."" The author @CAPS1 what his parents did for him. He knows it was hard for his parents to leave their country for him. ""They struggled both personally and financially... I will always be grateful to my parents for their love and sacrifice."" The authors @CAPS1 what his parents struggles that allowed to grow up the way he did and allowing him to have the life he did meant to him. He admires his parent for being as brave as they were. The auther @CAPS1 in his writing what it his parents did for him, means to him. Narciso Rodriguez is grateful for his parents. ""It was in the warmth of the kitchen in this humble house where a Cuban feast... always filled the air with not just scent and music but life and love."" The author @CAPS1 how his parents brought him up in a happy way. He @CAPS1 how his parents Showed him love. Narciso Rodriguez is grateful, proud, ad happy for his parents" 2 4 3 +13481 5 "Throughout the passage, ""Narciso Rodriguez"" the author displays many moods in his writing. One of the moods of the story is love. That his family filled thier home with things they loved. like the food they ate and the music the played. And they also loved the people in their family. Not their real family but the people in thier neiabor hood that they considered family. And they would always have they would always have people eat over and stay over if the needed to. And the other mood of the story is being grateful. That Narciso Rodriguez was grateful that his parents gave up everything to come to @LOCATION1 so he could have a good life. That they gave up all their friends, family, jobs, and the country they loved so he could have a good life. And he was grateful for all the things that they taught him. And that is the mood of the story." 3 3 3 +13482 5 "What living with his immigrated parents in the United States, the author created a mood with the memoir. First, in paragraph @NUM1, Narciso explains that part of the warmth in his home is by having endless celebrations with family and friends. Also, in paragraph @NUM2 he stated, ""I will always be grateful to my parents for their love and sacrifice. I've often told them that what they did was a much more courages thing that I could have ever done. Finally, he has mentioned that, he has learned the real definition of ""family and about how to love in his own home. In conclusion, the author created a mood while talking about his memoir." 3 2 3 +13483 5 "In the story ""Narciso Rodriguez"" written by The @CAPS1 @CAPS2 of our lives, the mood in the memior is emotional & loving. In this story the @CAPS3 talks about how his Parents are immagrents. How his Parents we're nice enough to let people stay in thier home & how the let people w/ them" 2 1 2 +13484 5 "The author that wrote this story created a lot of mood. First, the story created a lot of love. For example in paragraph @NUM1 his parents had to leave all that they loved The had to leave their country, family, friends, and there careers. His parents left behind so much. secondly, there is a lot of gratefulness in the story. For example in paragraph @NUM2 Narciso is very grateful for what his parent had to give up and for their love. He also said that what they did was more courageous than something that he could have ever done. Thirdly, there is a lot of sadness and generosity. Narciso is stating how impressed and generous his parents were and he realizes how important friends and family are in paragraph @NUM2. Narciso also states in paragraph @NUM2 that the two lessons that he learn wasn't just taught, but were shown by his parents lives. I think that this story was very touching and created a lot of mood and emotion as I was reading." 3 3 3 +13485 5 "The mood created by the author in this memoir is a warm and happy one. He does this by talking about homes, friendship and his neighborhood. He creates this happy feeling by talking about his home. He talks about his simple house in which was created a cuban home. His kitchen has aromas of food filling the air. The rich skill of cooking was passed on to him. In this house he had the innocence of childhood. The second way he creates a happy mood is talking about friendship. He talked about how his land lords daughter was his friend and babysitter. This led to a playful warm tone as he lead to his grandparents who also enjoyed a meal at his house. The last way is talking about his neighborhood. He talked about how the immigrants in his neighborhood all helped each other. They all came to @LOCATION1 hardworking and willing. The author also wrote that family doesn't need blood. Those are the ways that the author created a happy mood in the memoir" 3 3 3 +13486 5 The mood that was creatied by the author was a warm feeling because the text describe pride and gratefullness. Also it give a @CAPS1 and sense of a good family relationship. The author also puts feeling into his writting. Those are the feeling dat the author describes. 2 1 2 +13487 5 "After reading the selection ""Narciso Rodriguez"" by @PERSON1 I have decided the as a child @PERSON1 seemed to have a very fun life. Also the memoir seemed to have a good mood to it. One thing that made the mood good with all the talking about parties. I like parties and thinking about parties during @CAPS1 makes it a little less @CAPS2 racking. Another thing that sets a good mood is a talk about how Narciso's parents are always upbeat and ready for any thing. The final thing that makes the selection have a very good mood is how Narciso talks about all his family and friends. When I think of good memories of my family and friends it always brings a smile to my face. Overall this memoir made me feel good and brightened my day." 3 2 3 +13488 5 "The mood set by the author is thankful. The author says that he is happy to have his parents. He thanks them for giving him a life in @LOCATION1, but still carrying out their Cuban ways. He was happy to have others come into his apartment and sit down and act like family. He likes that his parents are selfless and that they care about others. He also enjoyed learning to cook, which he says he adores it to this day." 3 2 3 +13489 5 "The mood the author created in the memoir is... to show how to be grateful. Appreciate what you have in life. Like in the memoir Narciso lives in a apartment with one bed room. But he loved it there was and is good memories. Narciso quotes on @CAPS1 @NUM1.... ""I've often told them of my admiration for their strength and perseverance, and I've thank them repedatedly. But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon, me at such an early age and demonstration of how important family and friends are. That quote told every thing the whole mood of the story and the very last sentence ""I will never forget how my parents turned this simple house into a home." 2 3 3 +13490 5 "In the memoir, Narciso Rodriguez, the author creates a mood of appreciation + happiness. @CAPS1 does this by starting w/ background, + by the end moving to the lessons @CAPS1 learned from his parents.First, @CAPS1 describes how wounderful this enviornment was in paragraph @NUM1. ""My young parents created a traditional Cuban home, the very heart of which was the kitchen... My parents passed on to me... a love of cooking that is still with me today (for which I am eternally grateful). Passionate Cuban music (which I adore to this day) filled the air..."" @CAPS1 continues by describing how wonderful a place to grow up it was + how his parents showed him genorosity.Next, @CAPS1 says how hard it was for his parents to leave everything they knew, just for their children. In states in paragraph @NUM2, ""they came selflessly... to give their children a better life."" @CAPS1 continues by writing of how strong they were by showing him the value of family + friends + genorosity. This shows how apprecitive @CAPS1 was of them. Overall, by communicating this mood, @CAPS1 was able to honor his parents that much more." 4 3 4 +13491 5 The mood that I was feeling in this passage was how much just A simple home @CAPS1 A loving family together And in this tough @CAPS2 stage in life you can Always go And still have some one who would do @CAPS3 for you And this passage really makes you relize how great full you are to have A loving family no mater what. 1 1 1 +13492 5 "Narciso Rodriguez tried to create a warm feeling in your heart, remembering all of the pleasant childhood memories, and to think about all the sacrifices our parents made, to try to give us a good life. ""They came selflessly as many immigrants do, to give their children a better life, even though it meant leaving behind their families friends, and careers,""said @CAPS1 while trying to explain how parents only want to give their children a good life." 2 2 2 +13493 5 "In the memoir, the author creates a @CAPS3 that is a @CAPS1 of @CAPS2, love, and unity. The author shows @CAPS2 For his home country of Cuba. He says how much he loves the culinary creations of the culture, the music, and the celebrations with his extened family. As a result of his @CAPS2, it shows that you can have a sense of home even if you are in another country. The author also sets a love filled @CAPS3 because of how open his family was to other people. His family would let many people into their home and build a great friendship with them, regardless of race or cultural beliefs. The author sets a @CAPS3 of unity as well. This @CAPS3 is a result of how all the different people in his neighbor hood, even though they come from all different countries, always worked well together and showed the outmost respect for one another. This is how the author set a @CAPS3 of @CAPS2, love, and unity in the memoir." 4 3 4 +13494 5 There were several different moods created by the author some were @CAPS1 peacful. Like he was talking about his first @CAPS2 warmth of the kitchen cuban the feast. The mood of courage of his parents moving to the united States. Hes admiration strenth and perseverance for his parents. The faith the struggle hard times. 2 2 2 +13495 5 "The mood in this memoir is caring, happy, and loving. First, it is caring. For example @PERSON1 would do anything for his family. If @PERSON1 did not do anything for his loved ones he would not care for them. Second, it is happy. For example @PERSON1 has a baby sitter and his first friend. Lastly, it is loveing. An example is when he talks about his parents. He is very greatful when he talks about his parents and the mood describes that by makeing the home feel loved." 2 2 2 +13496 5 The mood was him just triing to remember all of his past memory as a @CAPS1 and his home what he could remember was all good things nothing negative about his home what I read was that it was a very good healthy environment had friends and had a good mother everybody wishes there life was like that. 0 1 1 +13497 5 "In the memoir ""Narciso Rodriguez"" from Home The Blueprints of Our Lives the author has a very appreciative mood. One example of this is when he says, ""(and for which I am an enternally grateful)"" this shows that he is incredible thankful to his parents for everything they have done for him. A second example is, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 the author saying that you can see how much gratitude he has for his parents for everything they have done for him. Lastly, he says, ""I will never forget how my parents turned this simple house into a home"" This tell us that the author truly understand what her parents did for her. That is the mood in the memoir." 2 3 3 +13498 5 "In ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives, the mood created by the author is grateful. The narrarator in this memoir is very grateful as it states in paragraph @NUM1. ""I will always be grateful to my parents for their love and sacrifice. He also says that they have done a more courageous thing than he could ever do. The narrarator is also very proud of being Cuban. Also, he loves Cuban music. He also states that he loves his house in paragraph @NUM2. ""It was in this simple house that my parents welcomed other refugees to celebrate their arrival to this country and where I celebrated my first birthdays"". The mood created by the author is grateful in ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives." 3 3 3 +13499 5 "Based on the memoir ""Narciso Rodriguez"" from Home: The Blueprints of our Lives by: Narciso Rodriguez, @CAPS1 designer. The mood created by the author in memoir is happy. You can tell that the mood is happy because throughout the memoir the author tells about all the good times that they had in their house in Newark, New Jersey. The author tells about how her family would always come over to her house and have dinner there. He/@CAPS2 also tells about how their was always cuban music and cuban food. They used to have fun at that house. That's how you can tell that the mood is happy." 2 2 2 +13500 5 "In the short story of @PERSON1, there is a very happy mood. The story has a lot of examples of how his family was so nice. He says how his parents made their house a home, and how they put a lot of their Cuban heritage into the house. The story says that he was incredibly greatful to have parents that gave him so much love and sacrafice. The mood in the story is deffinetly a very happy one." 2 1 2 +13501 5 I think the @CAPS1 was happy. I think he was because he has a nice house and a nice family. Another reason why I think he was happy is because he is now in @LOCATION1 but still around his Cuban culture. His parents put him in @LOCATION1 I think because they wanted to live there and start a family. That is why I think that this is the mood of the @CAPS1 in this memoir. 1 2 1 +13502 5 "In this memoir ""Narciso Rodriguez from Home: The Blueprints of Our Lives"", the author creates a mood in the memoir. In paragraph @NUM1, the speakers shows the readers how much love and happiness flowed through his family's house. How there was cooking by his loving parents which eventually pass down their culinary skills to him. How passionate Cuban music was played that he loved, friends, and endless celebrations. This showed a happy mood that the author was creating because there was cooking, music, parties and just happiness just flowing through the air. In paragraph @NUM2, Narciso parents came to this country wanting to give their children a better life even though they had left behind the country the loved. This show the love on which his parents did for him and for that he had a happy life. In paragraph @NUM3, the author is grateful for his parents love and sacrifices. This shows the love and apperciation he has for his parents for truning a simple house into a home he can always rember. In conclusion the author creates a mood in the memoir." 3 3 3 +13503 5 "In the story ""Narciso Rodriguez"" from Home: The Blueprints of our lives, it patrays the mood of Narciso home and relationship with his parents. The mood created by the author in the story is alive, hopeful and cultural. Narciso said that his parents created a traditional Cuban home alive with Cuban food and music. Thats stating the mood was very cultural. Throughout the story it was hopefull they left Cuba and only lived in a @NUM1 room apartment but his parents were hopeful they would succeed. It was also very alive they always had someone other than their family at the table had doors open to family and friends. The Cuban music and food aroma drifted through the small place. Narciso Rodriguez will never forget how his parents turned a simple house into a home." 3 3 3 +13504 5 "The author creates a sense of unity and happiness when she explaining how she had grown in her home, her neighborhood, and with her parents. Narciso first begins to tell us about where she grew up and how she was brought. She says that she was born in a simple house in Newark, New Jersey. She also says that she had lived in a traditional Cuban home and how she is thankful for her Cuban roots. Then Narciso continues by telling us about how there was a great sense of unity and ""family"" growing where she did. She says she grew in a neighborhood where everyone was one big family. Towards the end Narciso tells us how much she is greatful for her parents and their love & sacrifice. Throughout the whole memoir, Narciso's main focus is how she grew, her Cuban roots, her gratefulness for her her parents, and last of all her own definition of a real ""family""." 3 3 3 +13505 5 "I think the mood the author created in the memoir is love. Through the memoir, he talks about his parents immigrating, his new home, and people that were always at his house. This shows their love, and his parents' selflessness. He portrayed his parents as caring people and it seems like they showed love to everyone. Rodriguez says ""My parents always kept their arms and their door open to the many people we considered family."" They seemed to put other people before themselves, and to always surround themselves with people who they love, and to love them." 2 3 3 +13506 5 The mood of the menoir is grateful And thankful And it is somthing @CAPS1 @CAPS1 Never will Forget And the comfart of his home. 1 1 1 +13507 5 "In the memoir by Narciso Rodriguez the author was feeling grateful and homesick. Narciso explains that he is grateful for his parents and what they did for him. ""My parents both shared cooking duties and unwittingly passed on to me their own culinary skills and a love of cooking that is still with me today""" 2 1 2 +13508 5 "The mood created in the memoir, ""Narciso Rodriguez"" made me feel like I was in their kitchen eating Cuban food, and listen to music. Also, he told the life of a cuban immigrant. My grandfather followed the same path. He was a young boy when his family immigrated from Cuba. But he worked his hardest and became a very succesful man. This story completely reminds me of him and since I have some background with this, I know this ""mood"" and it speaks to me. The memoir really shows, ""The @CAPS1 @CAPS2."" a person coming here with close to nothing and become a very succesful person. Finally, the mood he created shows that if you put your mind too it you could accomplish anything. Also, it shows the mood created in a typical cuban home." 0 2 2 +13509 5 The mood created by the author in this memoir is being thankful. Narciso Rodriguez is thankful for his parents giving him a loving home in @LOCATION1. The author created a mood that the reader should be thankful for their parents. The sacrifice and love of anyones parents (like Rodriguez's) is what you should be most thankful for. 2 1 2 +13510 5 That he was happy. He relizes he has a better life in @LOCATION1 than what he would of had in Cuba. But he still lived in a house that was like a Cuban house 1 1 1 +13511 5 "In the memoir ""@PERSON1"" by @PERSON2, the mood is friendly. Anybody was allowed to stay at his house. ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" His parents were ready to take anyone in because they knew they also would. Their community had a strong bond. ""It was a close-knit community of honest, hardworking immigrants who extended a hand to people who, while not necessarily their own kind, were clearly in need."" @CAPS1 in the neighborhood cared for each other even if they were a different race. Getting together all the time was life in his house. ""Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home. Getting with family and celebrating was the theme of their home. @CAPS1 loved and cared for each other in the neighborhood." 3 4 4 +13512 5 "The mood created by the author of the memoir is a mellow, unintense and subdued almost sad mood emphesized by the hardships the Rodriguez family (parents) faced in their struggle to give their children a better life. Although slightly depressing, the mood is happy and in a way, cheerful when the author describes how kind and welcoming the Rodriguez family is in paragraph four. But, the memoir create the depressing mood in paragraph @NUM1 due to the explinations of the families struggles in moving to @LOCATION1 and what they had to give up in order to selflessely better their childrens life.Over all, between the cheerful mood of the memoir and the sad mood of the memoir, the memoir generates a mellow, calm and serene mood throughout the article." 2 2 2 +13513 5 The @CAPS1 Created @CAPS2 The @CAPS3 in this story is A very strong And happy @CAPS4 @CAPS5 They @CAPS6 From Cuba to A @CAPS7 @CAPS8 the United States And They were hoping For A Better life For there kids then The life that they had And @CAPS9 why the @CAPS1 was happy. 2 1 2 +13514 5 "In the memoirs of Narciso Rodriguez, the mood of the writing is grateful. The two main examples of what Narciso is grateful for are his heritage and his family. Narciso is very grateful for his heritage and is a proud cuban. I know this because in paragraph @NUM1 he talks about how he loves cuban food, cooking, and music and how he is grateful for all of them. Another thing that Narciso is extremely grateful for is his family. His family moved up to @LOCATION1 before he was born so that their children could have a better life. They have sacrificed so much for their children including social and financial sacrifices. In paragraph @NUM1, Narciso writes, ""I will always be grateful to my parents for their love and sacrifice."" Any sane human being would be grateful to have parents that did what Narciso's parents did for him. As now evident, the main focus and mood of this excerpt from @PERSON1 memoirs is that he is grateful." 3 3 3 +13515 5 "narciso Rodriguez is a clothing designer who wrote a memoir Home: The blueprints of our lives. The mood created in this memoir is a warm feeling that surrounds the meaning of family and home.narciso says in the memoir in @CAPS1 @NUM1 ""Passionate Cuban music filled the air, mixing with the Aromas of the kitchen. Here, the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the back drop to lif in our warm home."" That proves that narcisos house was a warm family home, that was alway welcaming.narcisos comunity was also close like a family. In @CAPS1 @NUM2 it proves this when saying ""Close knit community of hones, hard working imigrants who extent a hand to people who were clearly in need"". He also states that blood does'nt mean your family. Like his surrogate grandparents. In @CAPS1 @NUM3 he proves that his parents were alway welcoming ""My parents always kept their arms and their door open to the many people we concidered family, knowing that they would do the same for us." 4 3 4 +13516 5 "In the memoir from ""Home: The blueprints of our lives"" by Narciso Rodriguez, the mood of this seems to be overjoyed, and happy. His life so far in @LOCATION1 must be great. For example, Narciso talked about how his sense of ""family"" had nothing to do with being a blood relative. Also, about passionate cuban music filled the air, mixing with the aromas of the kitchen. As well as the love and sacrifice of his parents that was given to give him a better life. But most of all the mood gets serious at times, like when he talked about how his parents turned the simple house he lived in into a home. Then, how it was in @LOCATION1 he learned the real definition of the word ""family"", and how to love, etc. In conclusion, the memoir jumped from overjoyed and happy into very serious and real." 3 3 3 +13517 5 "In the @CAPS1 by Narciso Rodriguez, Narciso seems to get a certin mood, tward his parents, a mood of happyness and greatfullness.Thorought the hole @CAPS1 Narciso is constantly thanking his parents for everything they have done, and gave up just for him to have a better life. His parents gave up their Jobs, thier houses, they left ther family there, thier friends, and in return they go to @CAPS2 and give thier son a better life, witch he is constantly saying how greatfull, and how honored he is to have parents who will give up everything they had for him Over All thorought The @CAPS1 @PERSON1 sets a mood of happiness, and gratfull ness tward his loving parents." 2 3 3 +13518 5 "The mood in the memoir, ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives is happy and sympathetic. One reason is they never gave up no matter how hard it was. Narciso said that his parents, ""drove them to endure these hard times,"" so, no matter how hard the times are they never gave up. Another reason is they stayed very close with their family. The author wrote, ""all lived nearby and regularly joined us at our table, ""this shows that their whole family was very close to each other. My final reason is that the Rodriguez's always wanted to help. Narciso said, ""My parents always kept their arms and their doors open,"" which shows that they always wanted to help people in need. The mood in the memoir, ""Narciso Rodriguez,"" from Home: The Blueprints of Our Lives is happy and sympathetic." 3 3 3 +13519 5 "The mood in the memoir is gratefulness and happiness. For example, in paragraph @NUM1 it says ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking that is still with me today (and for which I am eternally grateful."" This shows how @CAPS1 thanks his parents for loving cooking. Skill that cooking and his eternal gratitude. Also, in paragraph @NUM2 it says ""I will never forget how my parents turned the simple house into a home."" @CAPS1 is happy that @CAPS1 grew up in @LOCATION1 and how grateful @CAPS1 is to them for passing down their traits and loves to him and all their hard work." 3 3 3 +13520 5 "The author created a heartfelt mood in the memoir. The mood the author created was greatful mood. In the memoir it states ""skills and a love of cooking that is still with me today (and for which I am eternally grateful)"" This quote make me feel grateful for my culture and heritage. This story also make me feel proud. In the story it states ""My Mother and father had come to this country with such courage"". I feel so proud that they wanted to leave to come have a better life. Lastly the mood is happy. This story is happy because he learns a good lesson and he pround of his parents and culture." 2 3 3 +13521 5 "The mood created by the author in the memoir is a combonation of calm, nice, and happy. It could also be described as heavenly.Narciso reffers to his childhood like it was one happy dream. ""Here, the innocence of childhood, the congregation of family and friends, and the endless celebrations that encompassed both, form the backdrop to life in our warm home"". He also mentions how greatful he is to his parents. ""I will always be greatful to my parents for their love and sacrifice"". One last fact that contributes to the mood of this memoir, is Narciso's view on family. ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative... In our neighborhood, despite customs elsewhere, all of these cultures came together in great solidarity and friendship"".From this excerpt it is clear that the author cherish this time, and would love to go back." 3 3 3 +13522 5 "The mood Narciso Rodriguez creates is gratefullness. When I read this, I feel thankful like the author. Although his family had a good life in Cuba, they left to give their kids a better life. @CAPS1 the author's family hadn't left Cuba, I think the mood would be different. Then the author wouldn't think his parents were selfless (for that reason, anyway) @CAPS1 my parents did that for my siblings and me, I would want people to feel grateful as well. @PERSON1 understands how hard it was for his parents. Another mood could be guilt. I feel guilty when I read this because I don't always thank my parents or apreciate them. Narciso Rodriguez created a lot of moods in the memoir." 2 1 2 +13523 5 "In the memoir, the mood, or how the article made me feel, was grateful.Narciso Rodriguez wrote this memoir almost as a thank you letter.""I will never forget how my parents turned this simple house into a home. -paragraph @NUM1 uses words that portait the mood of thankfullness, like ""eternaly grateful"" in paragraph @NUM2, or ""I will always be gratefull"" in paragraph @NUM3.Narciso Rodriguez describes all of the sacrifices that were made and all the hardships lived through by his parents. He describes their coming to @LOCATION1 selflessly and beginning anew all so that their children could life -paragraph @NUM4.When I read this memoir, it reminded me of all of the things my parents have done so that I @MONTH1 be happy- so that I can have a home." 3 2 3 +13524 5 "The mood created by @PERSON1, the author of the memoir, Home: The Blueprints of Our Lives, is a comforting one. This is shown, for instance, by his reccolection of his childhood in his family's home being fond. For example, he states that he is ""eternally grateful"" for his parents passing on, ""their rich culinary skills and love of cooking"" that he claims to still have. Also, he remembers life as being neighborly and treating neighbors and friends as part of their family with kindness and sharing. This is shown when Narciso says, ""my parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" In addition the comforting feeling is shown when Narciso says, ""I learned here about how to love.... My parents turned this simple house into a home. This shows that Narciso had a great place to grown up in and has fond and comforting memories of it." 3 3 3 +13525 5 "The mood created by the author in the memoir is humble. He loves him home alot. He loves the scent and the music and culture in his house. In the memoir he stated that ""Passionate cuban music filled the air mixing with the aromas of the kitchen. The mood in the memoir is also touching. He say that his mom is so helping and opening to family members in need. He had stated that ""My parents always kept their arms and their door open to the many people we considered family."" @CAPS1 example of mood from the memoir is how he explains how close his community is. He states that all the cultures and ethicitys came together in great friend. The mood the author created in the memoir is touching, humble and inspiring." 3 3 3 +13526 5 "In the memoir by @PERSON1 the mood in the memoir by grateful, friendship. The first @ORGANIZATION1 @CAPS1 Narciso was very grateful cooking that is still with me today (And for which I am @CAPS2 grateful that means that Narciso like these there cooking and it very grateful.The @ORGANIZATION1 shows that Narciso is very friendship with his Parents and friendship ""All of these cultures came together as a family in the memeior by @PERSON1 the two @ORGANIZATION1 @CAPS3 How Narciso @CAPS4 grateful and friendship. " 2 2 2 +13527 5 There are several of mood the author created.First of all the author create this family full of love in a home that is loved by family gatered up.Also the author talk about the relationship where they are from there nationnalityIn addition In the @CAPS1 there family living all over the basement upstairs allmost everywhereThe best example the author talk about in the @CAPS1 where instanters are from.As you can see this @CAPS1 was a great @CAPS1 the made the word loved have the whole family in it. 1 1 1 +13528 5 "In the nonfiction memoir Narciso Rodriguez from Home: The Blueprints of Our Lives the author created a warm, busy, and giving mood. The mood is warm because in the memoir it says ""the congregation of family and friends and endless celebration that encompassed both, form the backdrop to life in our warm home"". This shows she were a lot of friends and family together in this home showing friends and family being together. Also the mood is busy because in the memoir it says ""countless extended family members came and went-and there was often someone staying with us temporaily until they were able to get back on their feet"". This shows how people were always coming and going in this home. The mood was also giving. It was giving because in the memoir it says ""It was close-knit community of honest, hardworking immigrants who extended a hand to people, who while not necessarily their own kind, were clearly in need"". This shows how people were given when othrs needed help even if they were not the same kind. That is the mood the author gave in this memoir." 3 4 4 +13529 5 "The authors mood of the memoir is that @CAPS1 is grateful because @CAPS1 tells us how much @CAPS1 appreciates of what his parents have done. @CAPS1 appreciates that his parents ""immigrated"" to the United States so @CAPS1 can have a ""better life"". @CAPS1 said that ""they came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country the loved."" @CAPS1 is grateful that his parents did that for him. @CAPS1 is happy that his parents made their house like if they were in Cuba where they originally came from. @CAPS1 said that the ""Cuban feast always filled the air with not just scent and music but life and love."" @CAPS1 is thankful of the ""sacrifice"" that his parents needed to make. @CAPS1 is so grateful that @CAPS1 can't ""express his gratitude"". The author thanks his parents of what they've done to make him happy. That is how grateful the author is towards what his parents did to make them have a better life and @CAPS1 has learned what the word ""family"" truly means." 3 3 3 +13530 5 "The mood portrayed in Narciso Rodriguez's memoir is closeness. The first way in which the extreme closeness of Narciso's childhood is displayed in the memoir is through the way that, ""all of the cultures came together in great solidarity and friendship"" when, during the time period that this story is taking place in, the many different immigrants would never usualy even think of mingaling with each other. This shows that, in Narciso's youth nobody cared about race and every person in his neighbor hood was extremely close to the friendly people who surrounded them, regardless of ethnicity. The second form in which the tight bond between his literal family and his many neighbors is describing all of his aquaintances as ""family"" that have a close enough bond to each other to be able to show up at each others doors and immediatly be taken in and fed a meal that the Rodriguez family worked hard to procure. This insight into the early years of Narciso's life shows that he grew up with the understanding that ""...' family' had nothing to do with being a blood relative"" and that you should treat all of your friends as you would family. Finaly, and possibly the most extreme way that the @CAPS1 shoed their extrordinary closeness to their friends and relatives is by keeping their, ""... arms and their door open to the many people we considered a family..."" This willingness to give anyone they knew a place to stay and food to eat shows how extremly close they were to everyone the knew. Wether it be by always having their door open, to mixing between many races, or considering almost everyone family the Rodriguez family showed extreme closeness with the rest of human kind." 4 4 4 +13531 5 "The mood created by the author, Narciso Rodriguez is very happy and uplifting. The whole story is an optimistic view of Narciso's child hood. None of the bad parts of his childhood are written about. He writes about his perent's coming from Cuba and how some of his family would come and eat with them. Narciso's memoir is a happy look back at his child hood.Narciso is very grateful for his family, specifically his parents. They came from Cuba to @LOCATION1 to start a good life for their son. This causes the beginning this memoir to start off with a happy, uplifting mood. As the memoir progresses, it still maintains the same happy mood. Paragraph @NUM1 is a great example of how the mood created by the author is so happy. Paragraph @NUM1 talks about how Narciso's family would go to their house and share meals with them. Narciso was happy to be around his family. The best example of the mood created by Narciso is the final @NUM3 paragraph. Paragraph @NUM4 talks about Narciso's gratitude towards his parents. He loves them so much for coming to @LOCATION1 and leaving their promising jobs in Cuba to give Narciso a better life. The final paragraph talks about how Narciso's whole family a house into a home. This is a very happy paragraph to complete the happy mood of the story.The mood created by Narciso Rodriguez is extremely happy. There are no mad, or sad parts of his child hood mentioned in the memoir." 2 4 3 +13532 5 "In the article Narciso Rodriguez from Home: The Blueprints of our lives, the mood in this story is very happy, and heart warming. When she talks about how they have their own cultures, and live in the kitchen, and how the sit down at dinner together as a family, it makes the mood happy and wishing you were there. The different imigrants that live in the neighborhood that are very friendly and kind to one another and are hard working makes life there seem nice and easy going. I think how the parents give up everything like house, food, Cuba, and everything else in the gave up just for their kids to go to a good school, eat well, have friends, be near relatives and everything just to make their kids happy. That is a lot of work to have all of that especially in another country. Another happy thing they would do is with their lanlord they would set the table and eat good food and goof around and have fun. It is good to have friends and family that care about you and are willing to give up everything for you. It makes the mood happy." 3 2 3 +13533 5 "The author, Narciso Rodriguez, creates a mood in ""Home: The Blueprints of Our Lives."" The mood of this memoir could be described as nostalgic or even love to some extent (as in loving his old home, family, friends, ect.) The author mentions ""endless celebrations ... formed the backdrop to life in our warm home."" This helps create the mood because the author is reminicing on the events that happened in his home (in this case, they were very happy memories) The author mentions in paragraph @NUM1 that during a time of racism in the @CAPS1 his community was so close-knit that people were like family. He even states: ""family"" had nothing to do with being a blood relative."" These examples from the memoir help create a nostalgic mood, it also shows the love throughout the community. Finally, in paragraph @NUM2 the author says he ""will never forget"" the things he ""learned there about how to love."" Which builds on these two themes as well (due to the fact he is remembering the feeling of love he expirienced and learned.) In conclusion, the mood(s) of this story would be of nostalgic and/or love." 3 3 3 +13534 5 "In the passage the author provided a good mood. for example he talked a lot about love, friendship, and other related things. He talked about the differences of a home and house. He made this passage for people to start thinking about what love realy is and what people will realy do for each other. He is a very good author." 2 2 2 +13535 5 "In the memoir, ""Narciso Rodriguez"", an internationally recognized clothing designer, offers the following definition of ""family"". In this memoir the mood set by Narciso Rodriguez is a gratefull person of his rich culinary skills and love of cooking that is still with him today. He is also grateful to his parent for their love and sacrafice, it wasn't for their love and sacafrice to come to the @CAPS1.S he would not be who he is now in days. That's why his a grateful person." 2 2 2 +13536 5 "In the memoir, ""@PERSON1"" from Home: The @CAPS1 prints of our Lives the mood created by the author is that he wasn't happy moving to @LOCATION1 at first but after being in a home with his loving family he liked it. Even though he had to work and he was an immaigrant he was happy. The only reason he was happy was because he was with his family and thats what is important to him. He was from Cuba and immigrated from Cuba to @LOCATION1. The mood of the story is not happy, happy, and sad. this is what the mood created by the auther is." 1 1 1 +13537 5 "The mood created by the author in the memoir Narciso Rodriguez is caring, loving, happiness, and being grateful. These moods are all created because Narciso loves his parents and his home. Also, his culture.Narciso has a mood that is caring because he cares about his home and his parents. He is also happy to have a loving home and parents who love and care about him. Narciso is grateful for his loving home and his loving parents.The author created these moods because they are specific memoirs of his life and he feels all of these moods for the house that he has and for the parents that he loves. Narciso feels all these moods, and he will ""never forget how his parents turned their simple house into a home.""" 2 2 2 +13538 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez the author create the mood of familarty and homyness.First, in the memoir Narciso describes his home enough to give the reader a sense of homyness. There are many examples of this in the memoire. One is when Narciso Rodriguez says ""the congregation of family and friends, and endless celebrations that encompass both, formed the back drop to life in our warm home."" When Narciso writes this it creates a sense of home or homyness. This is one of the many moods Narciso makes you feel in the passageSeconde, Narciso also creates a mood of, famileraty to a lot of people. Espesically immigrents, ""They came selflessly, as many immigrants do to give their children a better life."" This is something all immigrants and sons of immigrents know of. So Narciso creats a mood of familerty with this memoir.Finally, in the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, their is a mood of homyness and famlierty." 2 2 2 +13539 5 "In the story Narciso Rodriguez a certain mood is created. For example, one mood is love. @CAPS1 family did everything for love. In paragraph @NUM1 it says ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" This quote shows @CAPS1 family took care of everyone even thought they did not have much themselves.Another example of mood is being together Narciso's family helped out all imagrants to get back on their feet. Paragraph @NUM2 says, ""they came selflessly, as many imagrants do, to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved."" Narciso's family helped the less fortunate very often. The mood of this story is very inviting and peaceful." 3 3 3 +13540 5 "The mood created by the author is described in many ways.First, he described a friendly mood. In paragraph three, he says, ""Growing up in this environment instilled in me a great sense that 'family' had nothing to do with being a blood relative."" And in paragraph four, he states, ""... Alegria (my babysitter and first friend), lived above us. and Alegria graced our kitchen table for meals more often than not.""@CAPS1, the mood is described as warm and family-like. In paragraph four, he states, ""Countless extended family members came and went..."" And in paragraph seven, it says, ""I will never forget that house or its gracious neighborhood...""@CAPS2, it's a loving mood. In paragraph four, it states, ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" And in paragraph six, he says, ""I've often told them of my admiration for their strength and preseverance, and I've thank them repeatedly.""To conclude, the mood created by the author is described in many ways." 4 3 4 +13541 5 "In the memoir written by @PERSON1, he tells about how his parents immigrated from Cuba to The United States so that he could have a better life. He tells of how he will always be grateful for his Cuban culture that stayed with him his whole life, and for the selflessness of his parents. The mood that he sets in this memoir is gratefulness. When his parents moved from Cuba, they had his best interest in mind. This memoir also tells that economically, they struggled. However, @PERSON1's family still found away to have a home. They created a bond with the people in the area and stayed very close with them. This gave @CAPS1 a sense of family even though his real family was very far away. He is grateful for this because he will always have his cuban culture because that's what he was raised with. The overall mood he created was gratefulness." 3 2 3 +13542 5 "In the excerpt, the author created a relaxed tone in the memoir. ""Passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen"". This shows how equipped his parents were with Cuban culture. Culture was a big piece of Narciso Rodriguez child hood and life. ""Here the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home"". This shows that the author is trying to focus your attention on the culture of the @CAPS1 and that the house was relaxed and calm which is the tone of the author." 2 2 2 +13543 5 "I think the mood created by the author was very warm, greatful and happy. I think this because he often expresses how his parents sacrificed a lot of things and made his childhood ful of joyous memories. ""I will always be grateful to my parents for their love and sacrifice."" In many paragraphs he explains how he admires them for their strength and perseverance in moving from Cuba to @LOCATION1. I also said happy because he is happy that his childhood was so memorable. ""Innocence of childhood... endless celebrations."" This shows me that he enjoyed the parties and being a kid. (growing up in that household.) This is why I think the mood is so grateful and happy." 2 2 2 +13544 5 "The mood created by the author overall is gratefulness. As Narciso writes about some events in his life you notice he mostly talks about his family. He says that you don't have to be a blood relative to be family, what matters is love.Narciso is mostly grateful to his parents who sacraficed their old lives in Cuba for him to have a better life in the US. Their jobs in Cuba were great but when they got to @LOCATION1 they had to have whatever job they could get.Not only did Narciso's family teach him how to love he learned the real definition of family. It saw what courage it took for his parents to turn the simple house they once had into a home for him." 2 2 2 +13545 5 "IN THE MEMOIR HOME: THE BLUEPRINTS OF OUR LIVES. HER MOOD IS LOVE, BECAUSE SHE LOVES HER PARENTS FOR ALL THE SACRIFICES THEY MADE, JUST SO NARCISCO CAN HAVE A BETTER LIFE FOR EXAMPLE, ""I WILL ALWAYS BE GRATEFUL TO MY PARENTS FOR THEIR LOVE AND SACRIFICE."" SHE MEANS SHE WILL ALWAYS BE GRATEFUL FOR WHAT HER PARENTS DONE FOR HER IN HER CHILDHOOD TO MAKE HER BECOME WHAT SHE IS NOW. ANOTHER EXAMPLE, ""I WILL NEVER FORGET HOW MY PARENTS TURNED THIS SIMPLE HOUSE INTO A HOME."" SHE MEANS THAT HER PARENTS SACRIFICED TO TURN A @NUM1 ROOM APARTMENT INTO HER HOME." 2 2 2 +13546 5 "Narciso Rodriguez set a strong mood of happieness and thankfullness in his memoir. One way he did this is by thanking his parents for passing on their culinary skills to him. He says in the memoir that he is ""eternally grateful"" and still has a love of cooking. Another way he set this mood was by explaining how nice his neighborhood was. He said that all the different cultures came together in solidarity and friendship and everyone was hardworking. A third way he did this was by saying how great his parents were. He said he was greatful for their love and sacrifice. their strength and perseverance, and their courageousness. Narciso Rodriguez said a happy and thankful mood in his memoir." 2 3 3 +13547 5 "The mood created by Narciso Rodriguez in his memoir was very positive and warm, showing gratitude, and promoting the real definition of family. An example of his gratitude towards his parents is when he states: ""My Parents both shared cooking duties and unwittingly passed on to me the rich culinary skills and love of cooking that is still with me today (and for which I am eternally grateful)."" Narciso describes his sense of true family in paragraph @NUM1 when he says: ""Growing up in this environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative."" Narciso describes that his parents were very courageous coming to @LOCATION1 having no previous knowledge of the culture or language. He expresses how thankful he is for his parents to come to @LOCATION1, leaving everything they knew behind, in order to give him a better life. He describes his neighborhood being a true family, adding big dinners together, and helping one another in times of need ""I will always be grateful to my parents for their love and sacrifice... what they did was a much more courageous thing then I could have ever done... I think them repeatedly. But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" The mood of the memoir truly does demonstrate the importance of family, love, warmth, and gratefulness." 4 4 4 +13548 5 "This is the mood created by the author in this memoir. In this memoir the author states""I will never forget how my parents turned this simple house into a home"". One reason why this describes the author's mood is that it shows that through all the great times he's had with his family, they have giving him an experience of a life time that he will never forget. Another reason why this shows the author's mood is that now that his parents have died and he misses them the only memory he has of them is this house he calls home. That is how the author describes his mood a lot in this memoir." 1 1 1 +13549 5 "In the excerpt Narciso Rodriguez from Home: The Blueprints of Our Lives, The author sets a very greatful & loving tone. For example, in paragraph @NUM1 Narciso states ""I will always be grateful to my parents for their love & sacrifice."" Narciso's parents left everything they ever had behind, to make his life easier. This whole excerpt is thanking them. Also, in paragraph @NUM2 Narciso ends with ""I will never forget how my parents turned this simple house into a home."" This quote shows how much he loves them. He could've had a big house where his family lived, but it wouldn't be home. Instead, he had a small house where everybody shared things. He could really call it home.In the excerpt Narciso Rodriguez the author sets the tone of gretfulness & loving. I can relate to this story because it reminds me of my family." 2 3 3 +13550 5 "The mood created by the author is a grateful mood. It's grateful because the boy kept on talking about how thankfull he is for all the stuff he has. Another reason why the mood is grateful is because all of the people in the neighborhood will all come together and eat with eachother, visit with eachother, and help eachother. I know the mood is grateful because it says in paragraph @NUM1 ""I will always be grateful to my parents for their love and sacrifice.""" 1 2 2 +13551 5 "The mood created by the author in the memoir is talking about this boy's life and about his parents and what they do for a living and what they are and how they are nice to other people.... I think the authors mood would be like happy...Nice and caring on other people and not being rude. Its all about careing, and love, happiness." 1 1 1 +13552 5 "In the memoir from ""Home: Blueprints of our lives"" by Narciso Rodriguez, the author stretches the importance of family. The mood that Narciso Rodriguez creates is a comfortable, loving, homey feeling. He states that he grows up learning that ""family has nothing to do with being a blood relative"". He says that his family welcomed everybody. Strangers that needed help, neighbors, and extended family. He creates a loving mood when he said he lived in a ""close-knit community"". He also says ""These cultures came together in great solidarity and friendship."" @CAPS1, when @PERSON2 says ""I will never forget how my parents turned this simple house into a home,"" you can sense his appreciation and feel the comforting atmosphere. Those were the moods I felt while reading this memoir by, Narciso Rodriguez." 3 2 3 +13553 5 "In the memor from Home: The Blueprints of Our Lives by Narciso Rodriguez his mood is very meaning full. You can tell that what he's saying he really means it, he's senser. He say's ""my parents created our traditional Cuban home, the very heart of which was the kitchen"" in paragraph @NUM1 line @NUM2. In paragraph @NUM2 line @NUM4 he say's ""it was a close-knit community of honest, hardworking immgrants who extended a hand to people who, while not necessarily their own kind, were clearly in need. Or when he tells us that his first friend was his babysitter @PERSON2 who was his land lords daughter. Narciso Rodriguez tells us how his parents ""always kept their arms and their door open to the many people we considered family. in paragraph @NUM5 line @NUM6. He tells us in paragraph @NUM7 second line how his mother and father ""came selflessly, as many immigrants do, to give their children a better life"" even if it did mean leaving behind their loved ones, and things they loved. In the last sentence of his memor he says ""I will never forget how my parents turned the simple house into a home.""With those last words you from Narciso Rodriguez you know that he is senser, about what he's saying and that he could never thank his parents for what they did for him." 3 3 3 +13554 5 "The mood created by the author in the memoir is a very satisfactory mood. The author uses a satisfactory tone, too, especially when the author is explaining what a family is. Near the end of the memoir it has a very satisfactory mood, partly because it is near the end and they are ending the memoir, and also it is explaining what a family is. The mood of the memoir is also interesting because the author uses information of Narciso Rodriguez's life to help explain what a family is. The mood created by the author in the memoir is very satisfactory and interesting." 2 2 2 +13555 5 "In this memoir ""Narciso Rodriguez by The blue prints of Our Lives, the author sets a deep and powerful mood to the setting. Throught this memoir we feel happy as he explains his culture, for example as it states in paragraph (@NUM1) ""Here the innocense of childhood, the congregation of family and friends and endless celebrations that encompassed both, formed the backdrop to life in our warm home's."" @CAPS1 the author uses warm words that fill our heart's. For example in paragraph (@NUM2) it state's ""But in reality there is no way to express my grattitude for the spirit of generosity impressed upon me at such an early age. And @CAPS2 this author uses @CAPS3 to use further information which explains Narciso's feeling towards certain childhood memories. Such as the cuban culture. These are three examples of how the author sets the mood in this memoir." 3 3 3 +13556 5 The mood created by the author in this memoir is gratitude and great memories. Narcisco is obviously grateful towards his parents for teaching him how to love and that family or friends come first. Narcisco is talking a lot in this memoir about his great family memories of all his friends and family coming over for dinner and his mother cooking in the kitchen traditional Cuban food while listening to traditional Cuban music. He learned that friends and family members are there to love and spend time with. 2 1 2 +13557 5 "The tone of Narciso Rodriguez's memoir was a happy one with many positive feelings, memories, and undertones mixed in. Rodriguez sets the mood in the @NUM1 paragraph when @CAPS2 describes the warm, inviting, and cozy feeling that was given off at his home. Here @CAPS2 describes how ""passionate Cuban music... filled the air, mixing with the aromas of the kitchen."" This gives off a warm, innocent vibe, staging the mood for the memoir @CAPS1, in paragraph @NUM2, the mood is expanded so that it also encopasses the welcoming feel of the house. Here, Rodriguez says that his ""parents always kept their arms and their door open to the many people [they] considered family"". Finally, this excerpt gives off a proud and graceful mood. This pride and gratitude from Narciso Rodriguez is directed toward his parents @CAPS2 uses many words like ""courage"", ""selflessly"", ""struggled"", ""braving"", and ""hardships"" to describe Rawedia and @PERSON2's actions with a proud undertone Rodriguez then talks about how grateful @CAPS2 is to his parents ""for their love and sacrifice"" (paragraph @NUM3). Then @CAPS2 goes on to talk about how deeply grateful @CAPS2 is towards his parents for all they did for him in great detail. The mood of this memoir is happy, welcoming, warm, grateful, and proud. that would make anyone yearn for the one place where they too felt this feeling circulating around them" 3 3 3 +13558 5 "The mood created by the author was a very loving mood. Rodriguez describes his home life as @CAPS1 grew up in Newark, New Jersey. @CAPS1 describes the Cuban heritage that his parents based their home upon, including the music and the aroma, and ""endless celebrations that encompass both, formed the backdrop to life in our warm home."" @CAPS1 says @CAPS1 grew up with a ""sense"" of family. His neighborhood was different than much of @LOCATION2 because ""all of these cultures [Spanish, Cuban, Italian] came together in great solidarity and friendship."" @CAPS1 expressed the love his parents had by explaining their hard work as they experience financial and personal struggles. ""@CAPS1 says @CAPS1 learned the real definition of family through his parents, and is very grateful. ""I will always be grateful to my parents for their love and sacrifice.""" 3 3 3 +13559 5 "The mood of this story is happy he paints a picture with words in the @NUM1, @NUM2, @NUM3 + @CAPS1 and he tells of the extreme unity and happiness of his house hold neiborhood and family. He also shows how happy he is and how grateful he is of his Parents.He paints a picture with words in the @NUM1, @NUM2, @NUM3 @CAPS1 he says My parents where originally from Cuba, And the came here and I was born in a simple house in Jersey. In my house there was beatiful Cuban music and cooking going on we always had family over and neiborgs he paints an nice soothing picture.In the story he also talks about the unity of his neicboorhood made up of mostly spanish immagrints. He talks about that in @CAPS1 @NUM3, @NUM8. This shows you how happy he was.In many places in the story he also says how grate ful he is to his parents and how much courage the had to do the trip.As you can see the mood in this tory is grate ful and happy." 3 3 3 +13560 5 "The mood of the memoir is pleasent. @PERSON1 talks about her nice childhood. She talks about selfless her parents are to her. Also the mood is set when @PERSON1's is parents help other people get back on their feet. Also talking about how people would eat dinner with @PERSON1's family. She also tells about how she had family that weren't exactly blood relatives but, they were people who cared for each other like a family. Also the way Narciso told was with a very pleasant tone." 2 1 2 +13561 5 The narrator is describing the life he grew up in. How his parents cooked in the kitchen and played Cuban music. How great things were. He was trying to create a warm happy mood by decribing how his parents try to help the people and do the best the could With anything. Showing greatness in life when you barly have much yourselve. 1 2 2 +13562 5 "The mood Created by the author is @CAPS1. I @CAPS5 this because you can tell that the narrator doesn't take anything for granted. I know this because the @CAPS2 parents was given a house, and since @CAPS8 was part of the family, it was her duty to make that house a home as much as possible with her parents. I Know this because it @CAPS7 it in @CAPS3 @NUM1, and @NUM2.The author also gives a @CAPS4 mood in this memoir. I @CAPS5 this because in @CAPS3 @NUM1, and @NUM4 it @CAPS7 that @CAPS8 is Cuban and italian, from Newark, New Jersey, and @CAPS8 seems to be @CAPS4 of who @CAPS8 is and where @CAPS12 from. I know all of this is true because its all in the text." 2 2 2 +13563 5 "In the story, Narciso Rodriguez, the author sets a certain mood after @CAPS1 describes the hardships his family faced to give him a better life.""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends and careers in the country they loved."" @CAPS1 feels thankful of what @CAPS1 has and appreciates what his parents did for him. This sets an happy mood because @CAPS1 is happy of what @CAPS1 has and wouldn't give anything to replace it.In paragraph @NUM1, Narciso Rodriguez sets a nostalgic mood because @CAPS1 is talking about his childhood and the past with his family back then. @CAPS1 also explains that ""My parents always kept their arms and their door open to the many people we consider family."" This creates a warm and friendly mood, by knowing that his parents were friendly and generous.The story Narciso Rodriguez sets many moods on the reader." 3 3 3 +13564 5 The mood created by the author in the memoir is happy. It seems that way. It looked like he was happy. Why wouldn't he be happy? That is the mood created by the author in the memoir. 1 1 1 +13565 5 "According to the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our Lives the author created a mood throughout the memoir. The mood was happiness because Narciso was happy with his life.One example of Narciso's happiness is with his home. When @CAPS1's telling about the apartment @CAPS1 grow up in the mood is happy. Although it wasn't much his parents made him comfortable in it. They made it seem like Cuba as much as they could. Narciso loved his apartment even if it wasn't Cuba. In paragraph two ""within its walls, my young parents created our traditional Cuban home."" @CAPS1 was happy with the apartment because his parents made it feel like a Cuban home to him.Another example of Narciso's happiness is with his family. Narciso tells how his friends seem like family. In paragraph four ""Our landlord and his daughter... do the same for us."" Even though the people aren't blood related to him @CAPS1's still happy with them. Finally, based on the memoir ""Narciso Rodriguez"" from Home: The Blueprints of Our lives the author created a happy mood. This mood was created because Narciso is happy with the life @CAPS1 lives." 3 2 3 +13566 5 "In the memoir Narciso Rodriguez From Home: The blueprints of our lives the author sets a sad mood in this memoir. An example of the sad mood set the author describes his neighborhood. The author describes his neighbor hood by saying ""our neighborhood was made up of mostly Spanish, cuban and Italian immigrants."" (@NUM1) This show they live in a run down neighborhood because most immigrants are poor when they arrived at the @LOCATION1 @CAPS1 example is when he describes his family. The author say's ""There was often someone staying with us temporarly until they were able to get back on their feet"". (@NUM2) This shows the poverty that they lived around because they had to put shelter around those who couldn't aford it. The last way the author describes the sacrifice of his parents, The author say's ""The Faith that this would lead them and their children to better times drove them to endure these hard times"". (@NUM3) This is a sad mood because it shows how their @CAPS2 back fired and they didn't have a very happy time. That is why I think the tone of this memoir is a sad one." 2 3 3 +13567 5 "The mood of this memoir was very happy, and peaceful. @CAPS1 seems like hes a very happy peorson. ""and for which I am eternally greatful."" @CAPS1 and his parents let anyone that was ""family"" in." 1 1 1 +13568 5 The mood that the author created in the memior is love and friendship. In the memoir they talk about family and how the love each other. Another mood mood that the author creates is happiness. The memior is uplifting and cheerful. Those are two of the moods the author rreates. 2 1 2 +13569 5 "Based on the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, the mood created by the author is peaceful because the whole memoir is talking about love and care for each other and your family.In this memoir there are many times where the author discusses his love for cooking. ""It was the warmth of the kitchen in this humble house where a Cuban feast always filled the air with not just scent in music but life in love"". This quote shows that Cuban feasts caused him to experience life and love with his family and loved ones. ""It was here where I learned the real definition of family"". This proves that his life in New Jersey at his house helped him realize the true meaning of family. The last quote that made this memoir peaceful was when he said, ""And for this, I will never forget that house or it's gracious neighborhood where the many things I learned there about how to love. I will never forget how my parents turned this simple house into a home"". This quote shows the love and affection that Narciso Rodriguez feels about his parents and his home.After reading this memoir, that was the mood that was created by the author in this memoir." 3 3 3 +13570 5 "The mood created by narciso Rodriguez was appreciation, or that's what I got out of it. Throughout the whole memoir, narciso's affectionate language and explanation to his life and his parents was constant and grasping. In paragraph two, he uses perenthesis as if his gratitude is so strong, that he can't bear to leave out how thankful he is. He set the scene with new experience and inspiration, Which he always thanked his parents for introducing him to. ""I will always be grataful to my parents for their love and sacrifice. I've often told them What they did was a much more courageous thing than I could have ever done...""p. @NUM1. He closed it off with how he could never forget how his parents turned a house into a home, appreciation flowing strongly" 2 3 3 +13571 5 "The author creates a mood of joy and thankfulness in the memoir of how great life was and how grateful he is for what was given to him. The author writes about how even with the little they had how happy his house was with all the music and visitors that were mentioned in paragraphs @NUM1 and @NUM2. Also the author portrays how thankful and grateful he is for everything he was taught, was sacrificed for him, and for the life lessons that were instilled in him. In paragraph @NUM3, the author writes how he learned that ""family"" wasn't only blood relatives but was all your friends that would always be there for you as you would be for them. The author also explains how grateful he is for everything his parents went through for him in paragraphs @NUM4 and @NUM5 giving mood of happiness and grateful ness. Narciso also creates a mood of love, as of that he had for his parents and ""family"" that he says transferred his house into a home in paragraph @NUM6." 3 3 3 +13572 5 "The author creates a very warm mood and inviting mood that makes you want to feel relaxed and comfortable. Here are the ways he creates it. He describes the kitchen and how his family loves to cook and entertain. He says that his parents have welcomed refugees to stay at the house that sets a welcomeing mood and that the parents care for their friends and family. To his family the word ""family"" means anyone it's important to remember that because a family could be anyone. That's how the author sets the mood." 2 2 2 +13573 5 "The mood created by the author in the memoir is very happy and warm. The author talks about how grateful Narciso Rodriguez is. Narciso also loves the home he grew up in. He also talks about all the people that live near him and how he loves them all like family. His parents are very good cooks, and they taught Narciso their rich culinary skills and a love of cooking that is still with him today. His mood is very loving and caring, and its his family and how he adores them that is the mood created by the author in the memoir." 2 2 2 +13574 5 "The mood in this memoir was very happy and grateful to be living in the house where Narciso had such good neighbors as family, who were close to him. Even though Narciso's neighbors weren't actually family (as in blood related) Narciso still felt comfortable with them as if they really were his family. ""My parents always kept their arms and their door open to the many people we considered family, knowing that they would do the same for us."" @CAPS1 on their street the immagrents were like a family. They all carried for each other and were happy." 2 3 3 +13575 5 "The author gave the memoir the feeling of happiness, gratefulness, and the feeling of family. The memoir makes you feel like you are at the kitchen table, listening to Cuban music." 1 1 1 +13576 5 The mood is @CAPS1. The story talks about Cuban culture. He talks about all the @CAPS1 times. All the time he spent with his family celebrating cuban herritage. They would all come over for dinner. Thats how he set the mood. 1 1 1 +13577 5 The mood in the memoir is peaceful and loving The reason why it is peaceful is because there is no fighting in this story at all. This story is loving because throughout the whole thing the only thing that I learned about was how to respect and love each other. There are many examples of this in paragraph @NUM1 and paragraph @NUM2. This is the tone of the story. 1 1 1 +13578 5 "A wonderful mood was created by Narciso Rodriguez, the author, in this memoir. While reading this story, I could feel the love, peace, & appreciation created by his words. Throughout the memoir, he really expands on the love & appreciation he feels for his parents. Paragraph @NUM1 states: ""I'll always be grateful to my parents for their love & sacrifice."" Also, in paragraph @NUM2, he again mentions his parents & how they had turned a house into a home. You can feel his awe & appreciation spilling out of his words. Also, the childhood home is described in paragraph @NUM3. Rodriguez describes the house's feeling as warm & elaborates on the things he's grateful to and will always love. The mood of this memoir is very specifically felt." 3 3 3 +13579 5 "The mood created by the author in the memoir is made up of happeness, love, and lastly respect for his parents, whitch shows how the mood is actually peaceful. In the memoir the author stated memeries of his neighborhood that was good. The authors stated about how the cultures formed together, helped each other and worked hard to make a living as well is a future for their kids, which shows his respect for his friends and family. The author states his gratitude toward the hard ships his parents went through for him and for the dream of a better tomorrow." 2 1 2 +13580 5 "The mood in this memoir created by the author, was very peaceful and extremely loving. It was also a big thank you to his parents for everything they did for him. ""I will always be grateful to my parents for their love and Sacrifice."" The author is trying to get his point (of gratefulness) across to, not only the reader, but everyone in his life, but it seems that at some point he's lost for words. ""@CAPS1 often told them of my admiration for their strength and perseverance, and I've thanked them repeatedly. But, in reality, there is no way to express my gratitude for the Spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are."" The way the author explains everything puts you in the same mood is him. He seemed to feel the same peaceful, yet loving, and grateful mood flow over you as well. This is an amazing piece of work." 4 2 3 +13581 5 "The mood created by the author in the memoir is happiness, unity, and caring. ""The congregation of family and friends, and endless celebrations that encompassed both, formed the back drop to life in our warm house."" The author shows that he likes his house and enjoys how it is, ""family had nothing to do with being blood relative. saying that all can be family as long as you care about each other."" Close-knit community""shows unity. ""@CAPS1 get families get back on their feet."" shows caring. she enjoyed doing this It made her happy. That is how the author in the memoir made the mood of happiness, unity, and caring." 3 2 3 +13582 5 "The mood created by the author of the excurpt ""Narciso Rodriguez"" From Home: The Blueprints of our Lives in the memoir was love, happiness, and old memories of home. In paragraph seven it states ""... i celebrated my first birthdays. it was in the warmth of the kitchen in this humble house..."" That shows how much he loved his home, even though it wasn't purfect. Also in paragraph four he say's ""..our landlords and his daughter Alegria-my first friend..."" Narciso's tell's about his first friend. But the tone that gives the best mood of the story is the memorie that Narciso's say's ""... i will never forget how my parents turned this simple house into a home..."". In paragraph seven." 3 2 3 +13583 5 "The mood created by the author in the memoir is a happy thankful mood. The why it is a happy thankful mood is for the reason why he talk's about his family and how they sacraficed so much just for him. For example; ""They came selflessly, as many immigrant's do, to give their children a better life, even though it ment leaving behind their families, friends, and careers in the country the loved. They struggled both personally and financially, braving the harsh northern winters while yearning for their native tropics and facing cultural hardship."" @CAPS1 thing is that he also learned what family really means. For example; ""I learned the real definition of ""family"". And for this, I will never forget that house or it's gracious neighborhood or the many thing's I learned there about how to love. I will never forget how my parent's turned this simple house into a home.""" 3 2 3 +13584 5 "The mood created by the author, Narciso Rodriguez in the memoir from Home The Blueprints of Our Lives is a happy and thankful mood. This is because of the happy memories Rodriguez describes in his memoir, his gratitude he expresses for his family in the end, and describing the hardships his family had to endure for him.First, Rodriguez brings a happy mood into the story because of the many happy memories he describes during the memoir. One of them, in paragraph @NUM1, is when he says ""The passionate Cuban music (which I adore to this day) filled the air, mixing with the aromas of the kitchen.""@CAPS1, the gratitude he expresses for his family in the last two paragraph conveys a thankful mood. For example, in paragraph @NUM2, Rodriguez says, ""I've thanked them repeatedly. But, in reality, there is no way to express my gratitude for the spirit of generosity impressed upon me at such an early age and the demonstration of how important family and friends are.""@CAPS2, by describing the hardships his family had to endure for him, Rodriguez furthers conveys a thankful mood. Rodriguez devotes the entire paragraph @NUM3 to describing how unselfish and kind his family was, thus thanking them.In the end, because of the happy memories described, his gratitude he expresses for his family, and by describing hardships his family had to face, @ORGANIZATION1 conveys a happy, thankful mood." 4 4 4 +13585 5 "In the story, ""Narciso Rodriguez,"" the narrator had shown happiness throughout the memoir.One example of when the author showed happiness was when they were thinking about cooking. They admired when their parents helped and teached them how to cook. They would hear the music in the back that they adored as their heritage or backround. In the story it says, ""My parents both shared cooking duties and unwittingly passed on to me their rich culinary skills and a love of cooking.""When the authors still live with their parents their relatives would come over to eat and have fun. To reflect back on those memories made the author happy. In the story it says, ""Countless extended family members came and went-- and there was often someone staying with us temporarily until they were able to get back upon their feet.""@CAPS1 example is when the author thought of the time when their parents moved to @LOCATION1. They thought of how lucky their parents were to come to such a nice place. In the story it says, ""they came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind families, friends, and careers in the country they loved." 3 4 4 +13586 5 "The mood created by the author in the memoir is very thankful. Again and again @CAPS1 thanks his parents for several of the things that they gave to him that @CAPS1 still values. First, @CAPS1 thanks them for passing on their love of cooking and music which @CAPS1 says @CAPS1 is ""externally greatful"" for and which @CAPS1, ""adores to this day."" @CAPS1 is thankful for how they brought him up, showing this by writing how much @CAPS1 still enjoys these things today. Next, Narciso Rodriguez says how @CAPS1, ""will always be gratful to my parents for their love and sacrifice."" @CAPS1 describes how they did so much to give their child a better life. They sacrificed their laboratory and chemical engineering jobs to work their way up from the very bottom in @LOCATION1 to give their children more opportunity. His parents left behind, ""their families, friends, and careers in the country they love."" @CAPS3, they did all of this with, ""The faith that this struggle would lead them and their children to better times drove them to endure these hard times."" The parents sacrificed so much because they wanted so badly for their children to have a good life and for this Narciso Rodriguez is extremely greatful." 3 4 4 +13587 5 "The mood created by the author in the memoir is to show gratefulness towards the author's parents. He wanted to portray the fact that his parents sacrifice their lives for the author's life.Narciso repeatedly conveys the message that ""family had nothing to do with being a blood relative"", but people who care for one another; people who ""come together in great solidarity and friendship"".The most important family to Narciso are his parents who sacrifice their lives, in order ""to give their children a better life, even though it meant leaving behind their families, friends, and careers in the country they loved"". He says that he will always be grateful to his parents. He admits ""that what they did was a much more courageous thing than ""he"" could have ever done"". Narciso infact, cannot thank his parents enough for showing them how important family and friends are.In the end, @PERSON1 realizes that a home is a place you live, and celebrate birthdays, and do work, but mainly a place where everyone is welcome and a home is a family in itself." 4 3 3 +13588 5 "The mood created by the author in the memoir was decribed passionately and emotionally. The mood in this whole memoir was gratefullness. starting from the beginning how his family passed on their traditions. Also having people around him family and friends who helped him, living close in reach. With his parents giving up everything from their past just to start a family with a better life. sacrificing all they had in life. His life was filled with joy and happiness, thanks to his family and friends." 2 2 2 +13589 5 "The mood story the author creates is a prideful memoir of his life/home and what others did for him, while living in a time of hate/racism. He feels foreverly grateful for the love and sacrifice his parents showed to him. He was happy that during these times people of of different culture/ethnicity were treating all in the community like family. The mood and emotion of this memoir is of pride/love for others and caring." 1 1 1 +13590 5 "The mood created by the author in the memoir is courage. ""I will always be greatful to my parent for their love & sacrifice. I've often told them that what they did was a much more courageous thing than I could have ever done. Another example of courage is how ""They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their families, friends and careers in a country they loved. This is the mood the author creates in this memoir." 2 2 2 +13591 5 "In the story The Blueprints of Our Lives by Narciso Rodriguez the @CAPS1 creats a mood, here is the mood created. The first mood is the one of her house. She describes friends and family with cuban music along with the food here is one example of the food and music ""Passionate Cuban music...filled the air, mixing with the aromas of the kitchen. Another mood is the family and friends. An example of this is in paragraph four where it says ""My parents always kept their arms and their door open to the many people we considered family."" And those are some reasons how the @CAPS1 set a mood in The Blueprints of our lives." 2 2 2 +13592 5 "The mood created by the author in the memoir is a positive one. The author tells how his parents immigrated from Cuba in 1956 and how he was born in 1961. He never said one negative thing about his life growing up in Newark, New Jersey. He mentioned how his parents had a love for cooking and that love was passed down to him. He said that he was grateful for that. He also mentioned that, along with the cooking, was Passionate Cuban music. He described his neighborhood as being made up of ""all of these cultures came together in great solidarity and friendship."" As a final sentence, the author stated how we ""will never forget how my parents turned this simple house into a home.""" 2 3 3 +13593 5 "In the memoir by @PERSON1, he seems to be very happy. He has a big family and @CAPS1 of friends and many good memories. He comes from a very caring and sharing home. The whole mood of the story is very uplifting." 1 1 1 +13594 5 "Narciso Rodriguez creates a mood -- feeling, rather -- of belonging, ""home"", and comfort. He recalls growing up in an apartment where ""countless extended family members came and went"" and his life was full of people from his community -- cousins, aunts, friends. Narciso recalls that his parents ""always kept their arms and their door open to the many people we considered family"" -- and there is a sense of belonging. Comfort: ""the innocence of childhood, the congregation of family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home.""There's also a sense of thanks in this -- gratefulness, one could say. Narciso's parents left everything behind when they immigrated to @LOCATION1 from Cuba -- and as he says, ""I will always be grateful to my parents for their love and sacrifice."" And this -- all of this -- creates the sense of ""home""." 3 3 3 +13595 5 "The mood created by the author in this memoir is gratitude Narciso Rodriguez, the author is grateful for the way his cuban parents brought him up when they had so little to begin with @CAPS1 thing that the author is grateful for are the cuban traditions that his family passed on to him. One of the traditions would be there rich culinary skills and a love of cooking. @CAPS1 thing the author is grateful for is that his mother and father came to this country to give him a better life even though it meant leaving behind, family, friends, careers and the country they loved That was the mood created by the author in this memoir." 3 3 3 +13596 5 The mood the author created was how they were immagrants and they had to adjust the the @CAPS1 way of life but they still celebrated his first birthdays In that very house. They will always be grateful to my parents for their love and sacrifice. It was deminstration of how important family and friends are. And that I will never forget how my parents turned this simple house into a home. 1 2 2 +13597 5 "The mood created @CAPS1 the author in the memoir is a positive and grateful mood for his home, and his parents. One example of the mood created @CAPS1 the author is in paragraph @NUM1 when he says, ""I will always be grateful to my parents for their love and sacrifice."" The author is once again stating how thankful he is that his parents came to @LOCATION1. Another example of the mood of the story, is in paragraph @NUM2 when the auther states, ""They came selflessly, as many immigrants do, to give their children a better life..."" A final example of the mood created @CAPS1 the author, is when in paragraph @NUM3 he says, ""I will never forget how my parents turned this simple house into a home."" @CAPS1 saying this quote he means he is grateful for his parents sacrefice to come to @LOCATION1, but also being able to be raised in the traditional Cuban way. He also means that he had many great memories growing up in this home, and how they bonded together with their multi-racial neighbor's to battle through the tough times. The memoir has a very positive, happy and chearful mood about the Cuban family." 4 3 4 +13598 5 "The mood is shown and explained in several ways throughout the memoir. The mood of this short story is happiness and of a sense of family. The first example of this mood is in paragraph @NUM1 when the @CAPS1 says ""growing up in this environment instilled in me a great sense that family had nothing to do with being a blood relative."" @PERSON1 is showing that just because someone is not related to another person they cannot be family. Another example of the mood of the excerpt is when is when Narciso says ""My parents always kept to their arms and door opened to the many people we considered family, knowing they would do the same for us."" The @CAPS1 is showing that people who love each other like family have each other's backs, no matter what. A final example is when the @CAPS1 states ""I learned the real definition of family. And for this, I will never forget that house or its gracious neighborhood or many things I learned about how to love."" The @CAPS1 is saying he is greatful for the people who showed him what ""family"" really is. In closing this story shows true family and how a house becomes a home." 3 4 4 +13599 5 I would say the mood that the author was in was happy. I would say that because he always has something nice to say. He never gets into fights with his mother or father. He talks about how he is grace full. how he would never agure with his parents. How he's always had a good life from when he was a kid to now when he is an @CAPS1. He was going to move into A new @NUM1 bedroom apartment soon. That way he can call It his home. 1 2 2 +13600 5 "In this memoir, ""Narciso Rodriguez"" from ""Home: The @CAPS1 of our Lives"" it tells us about a kid from Cuba.This memoir has a positive mood. It says that they keep family or friends in their home untill they get back on their feet. It tells us about the neighborhood he live in. And how theres many different types of immigrants there and how they all get along. The kid's parents have friends and family over for dinner. The parents give up everything their jobs, friend, and families so that their kid could grow up in @LOCATION1. " 2 2 2 +13601 5 "The mood created by the author in the memoir is a nice ""homie"" feeling. The author tries to let you know a home is more than physical walls it is a place for relationships are made. ""The congregation of family and friends."" The is is signifagant because all of the good times an celebrations occurred with the people he loved in his home. The author tries to show the love and affection throughout his home. ""always filled the air with not just sent in music but life and love."" The author shows the love that goes on throughout his home." 3 2 3 +13602 5 "The mood created in Narciso Rodriguez from Home: The Blueprints of Our Lives, is a very happy and loving mood. As it says in the memoir ""I will always be grateful to my parents for their love and sacrifice"". This means he is happy and loves his parents have done. It also says ""I've often told them of my admiration for their strength and perseverance"". He loves his parents and is happy with what they have done. The last thing the memoir says is ""I will never forget how my parents turned this simple house into a home"". This ment he was very thankful for what they have done. Narciso Rodriguez from Home: The Blueprints of Our lives, has a happy and loving mood. This happy and loving mood is exspressed throughout the memoir." 2 2 2 +13603 5 "It creates a mood of happiness ""but Cuban music filled the air as it mixed with the aromas of the kitchen."" this shows what his home was like" 1 1 1 +13604 5 "The mood created by the author in this memoir is the appreciation through the author's parents. Another mood is the happiness of ""home"" or family. In paragraph @NUM1, the author is grateful to her parents for their love and sacrifice and courage. In the last paragraph, paragraph @NUM2, Narciso mentions how welcomed refugees that just arrived to the country were at their house to stay, that the ""warmth of this Kitchen and humble house where a Cuban feast always filled the air with life and love"" made her learn the definition of ""family""." 2 2 2 +13605 5 "In the memoir ""Narciso Rodriguez"" from ""Home: The Blueprints of our lives"" the mood created by the author is that his parents were loving and caring. His parents were loving and caring because they made their house into a home. His parents were selfless and caring when they come to the United States. In paragraph @NUM1 it says ""I will always be grateful to my parents for their love and sacrafice"". This shows his parents were loving and made sacrafices for their children to have a good life. In paragraph @NUM2 it says ""they struggled both personally and financially"". This shows they cared about their family because they sacraficed things to struggle & make their family happy. In conclusion, the mood is being caring and loving." 3 3 3 +13606 5 "In the memoir ""Narciso Rodriguez"" by Narciso Rodriguez, Narciso mood in the memoir seemed happy and grate. Narciso's mood sound happy because when he was telling us (readers) about his life growing up in Newark, New Jersey and explaining how his house was he was saying how his landlord and daughter nice and how the landlord's daughter was his first friend, and he was also saying how his family and friends were very close. In the neighborhood it was despite customs elsewhere, all of the cultures came together in great solidarity (happiness) and friendship. His mother and father made the house cozy and at the end of the memoir the author said ""I will never forget how his parents turned their simple house into a home meaning that he never had a home like the one he lived in now." 3 3 3 +13607 5 "In this memoir I think the mood is a warm and nice one.One example on how its warm is how he discribes the home. For example, it says in paragraph @NUM1. ""Within the walls, my young parents created a traditional Cuban home, the very heart of which was the kitchen."" This is a warm mood because when you think of a kitchen you think of a warm room with sweet eromahs of delicious food in the oven.A reason why it is a nice mood is because all of the cultures got along and treated each other like family. For example, it says in paragraph @NUM2, ""All of theus cultures came together in great solidarity and friendship."" It is nice because there was alot of racism at that time and all the cultures overcame it together.The last reason why there is a warm and nice mood is how he apreciates what his parents have done. For example it says in paragraph @NUM3, ""I've often told them that what they did was a much more courageous thing than I could have ever don."" This is saying that he is greatfull that his parents left Cuba to give him a better life.Thats why I think the mood of the memoir is warm and nice." 4 3 4 +13608 5 The mood in this memoir is very relaxed and proud. The author showed that he was so proud of his parents and his culture. He talked with a relaxed feeling and loving everything about his home and culture. Also the mood is so grateful. He is so grateful of his neighbors and how they all came together. Also he was grateful to have his family and friends in his apartment. The author was just so proud of his life and parents. 2 2 2 +13609 5 "There are many different ways on how the mood was created by the author in the memoir. First, he had described his house when he had first moved in. He said that it was a simple house, situated in a two-family and it was a blonde-brick building. Second, he told us how he should be happy of what he has and to be greatful. He was saying that the word solidarity was a big word and meant something. Last, he was describing the hope that he had about his parents and home that he had. He was saying that ""which i am eternally grateful)"" also, ""which i adore to this day"". These are many different ways on how the mood was created by the author in the memoir. " 2 2 2 +13610 5 "The mood created by the memoir is greatfulness. I think this because this is one of the words he uses over and over again to show emphasis. Narciso says ""... And for which I am eternally grateful. (paragraph @NUM1). In paragraph @NUM2 he also says ""I will always be grateful to my parents for their love and sacrifice."" Narciso's memoir states all the things he is grateful for this is why I believe greatfulness is the mood of this passage" 1 2 2 +13611 5 "The mood that the author in the memoir created was good by his love, his blood relative, and also by courage.To start with her love is like part of her life. He love his parents. For example In the storie say's ""I will always be grate ful to my parents for their love and sacrifice."" @CAPS1 this mean she loves he parent for every little single thing they did. Also he learn how to love people.As will as her blood relative meaning that he @CAPS2 got to do with nothing of this. She is from cuba, and came to the united state on 1956. Also born to this a simple house. His that build a traditional home.This is how the author describe the mood, by his love, his blood relative, and also by courage." 2 2 2 +13612 5 "In the memoir many moods were expressed. I think the mood that was expressed the most was happiness. Narciso described to us that no matter what happened her family and close friends would always feel a sense of belonging with each other. This gave everyone mentioned in the story great reason to be happy and feel good about themselves and each other. In conclusion, the strongest mood in the story was happiness." 2 1 2 +13613 5 In the story memoir the author created a couple of different mood to decribe the story. The first mood was greatfullness. The author described greatfullness tword the parents when the author was discribing selflessness caring of the parants when they made the disision to move to @LOCATION1 to give them a better life. The last mood discribed by the author was happyness. The author discribed happiness in the story when it was discribing the parents making everyone feel at home These are the differend moods discribed in the story by the author. 2 2 2 +13614 5 "In the memoir, Narciso Rodriguez, from Home: The Blueprints of our Lives, talks about the fashion designers life and the mood created by the author. After his parents imigrated from Cuba, Narciso was very greatful. ""I will always be grateful to my parents for their love and sacrifice"" (para. six). Narciso believes in his Cuban heritage a lot. when coming to @LOCATION1, his neighborhood was full of Spanish, Cuban, and Italian imigrants. All of which he considered his family. He was grateful for the life, friends, and family support his family has given him. His parents had shown him with their lives, and these teachings has been the basis of his life. Narciso is greatful for coming to @LOCATION1 and bringing his old home in Cuba to his new home in @LOCATION1. " 1 3 2 +13615 5 In this memoir the mood created by the author is very positive. The author is turning @CAPS1 not good into a much better thing. Like when they had a very small house they turned it into a home. The people living in this small house let people stay with them until they got back on there feet. These people made up the whole building feel much better by keeping there old culture around. 1 1 1 +13616 5 "The mood is @CAPS1 in many ways. First, the mood in this @CAPS2 is @CAPS1 as if he was happy to immigrant to the @LOCATION1 Also its @CAPS1 as sad, ""... Even though it meant leaving behind their families, friends, and careers in the country they loved"", another mood would be brave. For me these immigraters are brave because I would never want to leave behind my friends and especially my family. Another mood is greatful. ""I will always be greatful to my parents for their love and sacrifice."" In conclution, these are many ways the mood is @CAPS1 in this @CAPS2." 2 2 2 +13617 5 "In the memoir, ""Narciso Rodriguez"" from Home: The blueprints of our lives the mood is heartfilling, and about appreciction. In the memoir @CAPS1 says, ""I will always be grateful to my parents for their love and sacrifice."" @CAPS1 thanks his parents so much for everything they've done for him. @CAPS1 also says, ""I will never forget how my parents turned this simple house into a home."" @CAPS1 knows it wasn't easy but loves how his parents managed to give him the best life possible. @CAPS1 writes, ""what they did was much more courageous then I could hae ever done."" @CAPS1 knows his parents took chances and did whatever to keep him happy which sets this mood to be so warm and heart filling." 3 3 3 +13618 5 "Warmth In the memoir ""Narciso Rodriguez"" the author created the mood in many ways.One way the author creates the mood is by saying (paragraph @NUM1) ""The very heart of which was the kitchen; passionat Cuban music filled the air. Here, the innocence of childhood, the congregation of family and friends, and endless celebrations"". This creates a warm mood because the kitchen seems like a very friendly place due to the people gathering together.Another way the author creates the mood is by saying that ""my parents always kept their arms and their door open to the many people we concidered family, knowing that they would do the same for us"". (paragraph @NUM2)These are the ways of the author of ""Narciso @CAPS1"" created the mood in this story." 2 2 2 +13619 5 "The @CAPS1 sets a good mood in this memoir about his house.the @CAPS1 states the house is a sign of life and love. The @CAPS1 states, ""always filled the air with not just scent an music but life and love."" The @CAPS1 explains the mood by a Cuban feast. Also when he learns that in the neighborhood there is love to. The @CAPS1 states, ""And for this, I will never forget that house or its gracious neiborhood or the many things I learned there about how to love."" The @CAPS1 shows how many cultures and countrys show satisfaction in the whole neiborhood that is filled with mostly Spanish, Cuban, and Italian immigrants at a time when overt racism was norm and segregation prevailed in the @LOCATION1. The @CAPS1 shows a good positive, and geneorus mood in the book that has all started in the kitchen with a Cuban feast." 3 2 3 +13620 5 "The mood set in this memoir by the author, was greatfullness, and it seemed to be thanking his Family for such a loving childhood. It also seems @CAPS1 misses it. ""I was born into this simple house"" @CAPS1 says ""within it's walls, my young parents created our traditional cuban home."" @CAPS1 was very comfortable in his home and @CAPS1 loved it. It seems as thogh the excerpt was made to thank those who @CAPS1 lived with. As it says in paragraph @NUM1 ""I will always be grateful to my parents for their love and sacrifice."" @CAPS2 the excerpt @CAPS1 explains how caring, and generous his family and neighbors were."" My parents always kept their arms and their door open to the many people we considered family, knowing they would do the same for us."" The author tells about his neighbor making delicious meals all the time, and their dinner table consisted of many neighbors, and blood relatives. The author had a very close relationship with his neighbors." 4 4 4 +13621 5 "The mood I think the author created in the memoir was love.The reason why I say love is because to me he cares about the his family and he also stayed with his family tradition and he care and follows them. He also loved being with his family. For example in paragraph @NUM1 in the article it say; ""I will never forget that house or it's gracious neighborhood or the many things I learned there about how to LOVE. I will never forget how my parents turned the simple house into a home. and to me that shows Love thats why I think the author created Love as his mood in the memoir." 2 2 2 +13622 5 "The mood created by the author is loving and happy for many reasons. It is loving because Narciso really loves his family and is grateful for his parents for giving up there lives, to give him a better one, ""I will always be grateful to my parents for their love and sacrifice."" It is happy because the overall memoir is about family and friends and good his child hood was. ""Growing up in the environment instilled in me a great sense that ""family"" had nothing to do with being a blood relative. Those are the biggest moods that this memoir potrays." 2 2 2 +13623 5 "The mood created by the author in the memoir is happiness and grateful because the author is grateful of his parents for having a roof over his head, cooking food for him, and for having such courageous parents. That's the mood of the author in the memoir." 2 1 2 +13624 5 "The mood created in this memoir was manily for me family and Love. for most of the memoir the author was talking about exprens he had in the house, and the love he had's for his family and frend's. The first example I have for the mood is when he say's ""as many immigrants do, to give their children a better life."". This shows the parents love for the kids. a second example I have is for family when the reading say's ""growing up in this environment instilled in me a great senst that ""family"". and he is talking about thy are all so close nit. This reading was a good example of a closs nit comunity and of parent scracise. for they kid's." 2 2 2 +13625 5 "The mood in the author's story is happy and gratefull. Happy because even though it was a new country the came with a purpose and are living it with their culture which is past down family to family. ""My mother and father came to this country with such couage, without any knowledge of the language or the culture. They came selflessly, as many immigrants do, to give their children a better life, even though it meant leaving behind their family, friends and careers in the country they loved."" Also greatfull because he sees what his parents did and does for him so he could be happy. ""I will always be gratefull to my parents for their love and sacrifice."" ""I was in the warmth of the kitchen in this humble house where a cuban feast always filled the air with not just scent and music but life and love!""" 3 2 3 +13626 5 "The mood created by the author in the memoir is proud. The author was proud because he was growing up as a loving caring child in the US. Also he was proud that even though his family moved to th US from Cuba he still practices his Cuban culture. Another reason that he was proud is that he has loving parents that want him to be successful in life. His parents helped him keep up with is culture by having family come over."" My @CAPS1 Bertha and Juanita and my cousins Arnold, Maria, and Rosemary regularly joined us at our table."" (ph @NUM1) This quote shows that Narciso Rodriguez family came to join his parents and him for dinner. Narciso family gave up everything including leaving Cuba so he can have a better life. A life that his family can be proud of." 2 3 3 +13627 5 "The mood of this memoir is nonfiction. The mood is that because Narciso Rodriguez is telling about his past in his and it is about the life he once lived in New Jersey, in a Cuban, Italian, and a Spanish neighborhood. The house was transformed into a home by his parents, his surrogate grandparents, and himself. The home he lived in was a blonde-bricked apartment, filled with Cuban Aromas and Cuban musics. The mood became joyful because of the Family's love of Cuban Music, and Cuban cooking, (which is really good). The mood also is represented with the Family, a loving and caring family in a nice apartment building. The mood is non-fiction, joyful, loving, and caring, I know this because the ""home"" is so pleasent to be inside." 2 1 2 +13628 5 The mood was created by the author in the memoir and specic imformationI @CAPS1 the mood is like something in the sky that's why I @CAPS1 about the mood. 0 0 0 +13629 5 "In the memoir ""Narciso Rodriguez"", the mood created by the author was loving, caring, and appreciative. loving is what they did most because they basicly called everyone thier family. For example in paragraph @NUM1 it says that ""My parents always kept thier arms and thier door open to the many people we call family, knowing that they would do the same for us"". Another mood was caring, because they wanted thier children to have a better life. A example is ""My mother and father had to come to this country with such courage, to give thier children a better life, leaving thier friends, families, and career in the country they loved"". This shows they care about thier kids. One last mood is appreciative. ""The barriers to work were strong and high, my parents had to accept that they both might not be able to find the Jobs they deserve, they had to start thier life over. These are the moods that was created by the author." 3 4 4 +13630 5 "The mood created @CAPS3 the author, Narciso Rodriguez in the memoir ""Narciso Rodriguez"" from Home: The Blueprints of our Lives is Love and @CAPS2. Love is shown in this excerpt @CAPS3 how grateful he is for his parents and how he feels about then. In paragraph @NUM1 he says ""@CAPS1 often told them that what they did was a much more courageous thing than i could have ever done."" @CAPS2 is shown @CAPS3 the Way, Narciso described the house he grew up in. Stated in paragraph @NUM2 that ""Here, in innocence of childhood, the congregation the family and friends, and endless celebrations that encompassed both, formed the backdrop to life in our warm home."" Love and @CAPS2 is expressed all throughout this memoir and I stated just a few examples of it." 3 2 3 +13631 5 "The author created such a specific mood for this memoir. She @CAPS1 off by telling alittle history of how she came to be in @LOCATION1 but quickly changed it to what her home was like. Narciso emphisized the importance of her culture but more importantly her family and friends. she talked about how the latin music, the big cuban cooking all made what is her home. She focuses more on the gratitude of her parents even more than her heritage and family bonds. She's focused on how her parents made a house a home." 2 2 2 +14834 6 "There were many obstacles that the builders faced in attempting to have dirigibles dock at the Empire State Building. Safety was an issue with the dirigibles because of the highly flammable gas hydrogen. So, if the dirigibles explode over New York many people could be killed in the very populated. Another problem is keeping the derigible @CAPS1 so people can get off while the wind moves the back end of itself. The only way was to tie lead weights down in the back of the dirigible, but it would be dangerous over people down below. So, these obstacles workers faced, never got past them and so they made the world's highest soda fountain and tea garden for tourists in the observation area." 2 2 2 +14835 6 "Him from the start, there would have been many problems with allowing dirigibles to dock some @NUM1 feet in the air. The major problem here would be that the Empire State building was being constructed in New York City, a highly populated area. Below the mooring mast would be several other buildings were other people worked and lived. If something happened while he dirigible was attempting to dock, it could take out the building and the lives of the people in it. Not only that, but below were the city streets, where pedestrians walked. In paragraphs @NUM2, the passage also talks about the stress of a heavy, steel framed airship mooring at the top of the building. The frame would need to be very dense and, as the architects of the project discovered expensive. Other safety issues include the high winds that would drift the dirigibles off course, and the safety of dirigibles themselves. The passage mentions the Hindenburg incident, as well as the worry the owners of the building had about that happening over such a densely populated area." 3 3 3 +14836 6 "The builders of the Empire State Building faced many obstacles while attempting to allow dirigibles to dock there. one obstacle was that the dirigible would have to be held by a single cable tether. This would add stress to the building's frame in order to make the frame or sturdy, there was modifications to the building's framework which cost over sixty thousand dollars. Another obstacle the builders faced was the dirigible's use of hydrogen which is highly flammable. Since New York was a densely populated area, this would not work out well. The dirigibles would also have to be weighted down in the back with lead weights. In order to do so, the lead weights would end up dangling high above pedestrians on the street which was a safety issue one last obstacle the builders faced was the law against airships flying too low over urban areas. This law made it illegal for a ship to ever tie up to the building or approach the area." 3 4 4 +14837 6 "In the passage The Mooring Mast by Marcia Amidon @CAPS1. The builders of the Empire State Building faced opstacles in the building of the Empire State Building, in allowing dirigibles to dock there.One reason is that Al Smith (four-term governor of New York who headed efforts to construct the Empire State Building after his years in office) had made the tower tall... The hight of the building was 1,250 ft. But after almost losing the title of worlds tallest tower he announced that there would be a top or hat put on the tower.Another reason is the tower was made for Dirigibles (blimps) That Could @CAPS2 people from New York to New Jersey. Smith wanted a place where dirigibles could dock off. But it never happened because the German dirigible ""Hindenburg"" was destroyed by fire in Lakehurst, New Jersey, and on May 6, 1937 the owners of the State building realized how much worse that accident could have been if it was over New York.In the 1930's the idea was dropped after another dirigible was trying to proform a stunt. The Empire State Building never got to fofil what it was made for." 1 1 1 +14838 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The first obstacle they faced was the existing law against airships flying too low in urban areas. This made it illegal for the dirigible to tie up on the building. Another obstacle faced in allowing dirigibles to dock was safety. Most dirigibles used hydrogen which was highly flammable. If a dirigible caught fire over the densely populated area of New York, there would be a good chance that many people would be hurt. A final obstacle faced was ""nature itself."" The winds on the top of the Empire State building were constantly shifting due to violent air currents. Even though a dirigible would be attached to the mooring mast, the back of it would move around the mooring mast in a dangerous way. Many obstacles were faced by the workers of the Empire State Building in order to allow a dirigible to dock there." 3 3 3 +14839 6 "soon after it's conception, The Empire State Building mooring mast was doomed to fail. Early obstacles were easily surmounted, for example the problem of added stress on the building's frame caused by the added weight of the moored airship. This was fixed by structural modifications to the building's frame, an expensive but fairly simple procedure. one of the biggest blows to the project was the advent of the Hindenburg disaster. The Hindenburg disaster was the cause of the forefront of a decline in airships. Airplanes became a safer, faster, more designer form of transportation. In addition to the Hindenburg disaster, it soon became clear that mooring and airship at @NUM1'or higher was not feasible. Surging winds would not allow the airship to maintain it's course and the ship would be blown erratically around the mast. The final nail in the coffin for the mooring mast was a law prohibiting airship travel over urban areas. These multiple factors easily disallowed any possibility of successful airship travel in the future." 4 3 4 +14840 6 The builders of the Empire @CAPS1 Building were faced with obstacles while attempting to allow derigibles to dock there. The architects realized they could not put the mooring mast on top of the building without modifying and strengthening the steel frame of the building. The stress of the dirigible's load and the wind pressure would add too much weight to the framework which could cause it to collapse. They strengthened the framework from the bottom of the building to the top before putting the shiny glass and chrome-nickel stainless steel tower on the top of the building. The builders were faced with these obstacles but they were successful in completing their goal. The mooring mast is not used as a docking station but it is still looked at as the final peice that makes the Empire State Building stand out above all buildings in downtown New York City. 2 3 3 +14841 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, many complications occurred during the plans and construction of the attempted docking mast. One obstacle was that dirigibles were just too heavy and the metal frame of the building would have to be modified. After repairing the framework of the Empire State Building, two trial runs were displayed by the @ORGANIZATION3 dirigible ""Los Angeles"" and the Goodyear blimp ""Columbia"". The result of the expirament were that the wind current, physically, didn't allow the blimp to come close enough to the building to dock Also, ""an existing law against airships flying too low over urban cities"" was an obstacle they could not surpass. Within years of postponing their efforts, airplanes made way and dirigibles, as transportation, were long forgotten." 3 3 3 +14842 6 The obstacles the builders face were great. They explained how most dirigibles from outside the @LOCATION1 use a different gas called hydrogen which is highly flammable. Following that they told @LOCATION1 how Hindenburg by fire in 1937 which used hydrogen. They realized if this had happen in a urban area it could have been worse. Anthore obstacle they faced was the wind. If the dirigible was parked at mooring mast the violent wind speeds would make the Blimp shift and cause strees on the building steel frame. The greatest obstacle was the law passed. The law stated that no airships could fly to low in urban areas. This would keep blimps from landing there. 3 3 3 +14843 6 "The builders of the Empire State Building a great idea. They wanted to be able to tethered dirigibles, or blimps, to the top of the building. However, there were many problems with this idea. First of all, blimps themselves were not very sturdy. Strong winds could easily blow dirigibles trying to dock into the spires of other buildings. Dirigibles also started to use hydrogen gas rather than Helium. Hydrogen gas is extremely flammable. The smallest the sparking could set the whole blimp ablaze. The docking system its self was also a problem. The only way to keep a dirigible level was to hang lead weights off the side. One concern was that a way could fall off and fall into the densely populated city below. This could've proved very disastrous!" 3 3 3 +14844 6 "The Empire State Building's docking zone was a magnificent and novel idea when it was first concieved but it was too difficult to implement. Al Smith, who spearheaded the operation, was too over anxious to complete it. Since not enough time was devoted to researching the risk's and structure of the dock, the plan to mount it on top the Empire State Building was already a failure. Before the construction even began, trouble started to brew. The building couldn't withstand the stress of the @DATE1 foot long dirigible. The shock to the building would have transmitted tremendous pressure to the foundation. So the roof would have to be re-done in order for it to be structurally sound. After many months and @NUM1 dollars, the creation of the landing dock could begin. Life is precious, and the landing dock was too volatile and dangerous to be used. The architects overlooked the fact that most foreign ones were made of hydrogen not helium. Hydrogen is extremely Flammable. In @LOCATION1, the Hindenburg, which was constructed using hydrogen caught aflame and killed hundreds. There was even a law stating that aircraft could not be suspended so close to an urban area. The idea was ostentatious and showy but because it was rushed, precautions were not taken into account. The obstacles that faced the docking station were too much, so finally the plan to erect it was abandoned." 3 3 3 +14845 6 "During the construction of the Empire State Building to allow dirigibles to dock, there were constant obstacles faced by the builders. Architects could not place a mooring mast on top of the Empire State building. @NUM1 ft dirigibles would add stress the buildings framework, therefore causing the architects to modify the framework. This would cost them an extra @MONEY1 for the modifications. The Architects don't know if these modifications will help. Safety is another concern. Foreign dirigibles used hydrogen rather than helium, which is highly flammable. For example ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place over a densely populated area such as downtown New York."" The Architects also had to worry about @ORGANIZATION2 and the constant shifting of the winds due to violent air currents. ""Even if the dirigible were tethered to the mooring mast, the back of the ship which swivel around and around the mooring mast."" @CAPS1 dirigibles land in open fields where they are weighed down so they won't drift away, except it is impossible to weigh down the dirigible in the air. They dangle high above pedestrians walking around on the streets, therefore making it not safe. There is also the law against airships flying too low over urban areas. ""This law would make it illegal for a ship to ever tie up to a building or even approach the area."" There were two attempts to dock on the building. @NUM2 was in December 1930, the @ORGANIZATION3 dirigible Los Angeles Attempted to dock except it couldn't get close enough to to high velocity winds. ""By the late 1930s, the idea of using the mooring mast for dirigibles and their passengers had quietly disappeared."" Airplanes became the future." 4 4 4 +14846 6 "The builders of the Empire State Building faced many obstacles trying to construct this marvelous building One obstacle was making sure the stress of the building from the dirigible would go to the foundation of the building and not the top or middle where it could cause it to collapse. As said in the text ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. Over @MONEY1 worth of modifications had to be made to the building's framework."" @CAPS1 the building had to be changed in many ways to make it stable enough for dirigible to dock.Another obstacle was the weather above the building which was very strong winds and air currents. This would mean that the dirigible would just be ""dangling high above pedestrians on the street"" and that's not a safe thing to have highly flammable hydrogen floating around above millions. An obstacle as well that came with these dirigibles was all the time and effort they had to put in to learn how to safely install a mooring mast. This took people going to professionals like the Navy and finding out the proper way. The mooring mast on the Empire State Building caused many obstacles to get in the way." 4 4 4 +14847 6 "The builders of the Empire State Building faced many obstacles in their attempts to allow dirigibles to dock at the mooring mast. Al Smith was the architect, and man behind the idea of the Empire State building. He and the maker of the Chrysler building were competing against eachother to construct the world's tallest building. To make the Empire State building bigger than the Chrysler building, Smith was going to construct somthing that John Tauranac stated, ""Would be equipped for an age of transportation that was only the dream of aviation pioneers"". That dream was to travel by blimp. The Empire State Building was going to have a mooring mast at its top for the dock of air ships. It was not going to be as easy as the concept. The architects couldn't drop a mooring mass on the roof because it would stress the buildings frame. The greatest reason the mast would never fufill its destiny was for safety. The excerpt states, ""Most derigibles used hydrogen"". Hydrogen is flammable. There was also a law that was, ""against air ships flying too low over urban areas"". After numberous attempts and modifications, the idea was shelved." 2 3 3 +14848 6 "The obstacles the builders of the Empire state Building faced in attempting to allow dirigibles to dock there was the lack of a suitable landing area. A mooring mast added to the top of the building would dirigible's to anchor there for several hours for refueling or service, and to let passengers off and on, the electric winch, which hauled in a line from the front of the ship and then tied it to a mast. The body of the dirigible could swing in the breeze, and get passengers could safely get on and off The dirigible by walking down a gang @CAPS1 to an open observation platform. They of the Empire state Building consulted with experts, taking tours of the equipment and mooring operations of the U.S. Naval Air station in Lakehurst, New Jersey." 2 1 2 +14849 6 "The @CAPS1 The Mooring Mast by Marcia Amidon Lsted, shows the thoughtful, intelligent, yet obstacled ideas of attaching a landing dock to the Empire State building. The obstacles that builders of the Empire State building had to overcome were that wind speeds where the dirigibles would land were too strong and would whip the balloon around like a rag doll. They would ""have to use lead weights"" which would pose another problem, questioning the foundation of the building. The weight of the building also the weight of the lead weights might collapse the structure. The gases they use ""hydrogen and hellium"" make the balloon fly, but hydrogen ""is highly flamable and can't be used in populated areas."" There was ""an existing law against airships flying too low over urban areas."" @CAPS2 are the obstacles and the reason ""the mooring mast of The Empire State building was destined never to fullfill its purpose""." 3 3 3 +14850 6 "In Marcia Amidon Lsted's excerpt, The Mooring Mast, many obstacles had the engineers of the Empire state building looking for a new way to dock dirigibles. One obstacle they had to face was the steel work of the building. The pressure of the wind and the dirigibles load had cost the company @MONEY1. Secondly, they had to design a few special floors for the passengers of the dirigibles. One floor would be for baggage and suitcases while a special observation deck was set up for passengers to exit or enter the ship. Lastly, the building would now be 102 floors and would need to be very durable so special materials were needed to be brought in and used to create the building. All in all, the Empire State Building engineers had to overcome many obstacles when constructing the 1,250 ft. building." 1 1 1 +14851 6 "The builders of the empire state buildings had many problems in allowing dirigibles to dock there. Things such as the wind, the actual docking, and the people getting off safely. The actual docking was impractical it would be nearly impossible to connect the winch. The wind was the main reason for the fate of the mast. First the wind current was so strong that the pilot would have a very difficult time getting close enough. The captain of the, ""Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of the forceful winds. Also even if it could tie up the back of the dirigible would swing around fiercefuly. So the builders were dealing with an impractical task" 2 3 3 +14852 6 "The first obstacle that it faced with having to reconstruct the body frame so that it could support the mooring mast, The second is that dirigibles from other country's used hydrogen, wich is highly flammable, instead of helium. The third reason wich should have been apparent from the start was a law against airships flying too low over urban areas. The last reason is the wind conditions at that hight made it impossible for the dirigibles to land there without the tail and swaying in the wind." 3 2 3 +14853 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there are stress to the building's frame. The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below. The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. Over sixty thousand dollars worth of modifications had to be made to the building's framework." 2 2 2 +14854 6 "The builders of the Empire State Building faced many obstacles in an attempt to allow dirigibles to dock there. One major obstacle was constructing a mooring mast that would not threaten the buildings structure. The builders had to modify and strengthen the frame of the Empire State Building. According to the excerpt ""over sixty thousand dollars' worth of modifications had to be made to the framework."" Another big obstacle was safety. At the Empire State Building's hight it would have been illegal to land a dirigible. The dirigibles, at that time, were filled with hydrogen. If the dirigible ever exploded, it would threaten the hundreds. of pedestrians on the streets of New York City." 3 3 3 +14855 6 "The builders of the @ORGANIZATION1 many obstacles when attempting to allow dirigibles to dock there. ""The stress of the dirigible's load and wind pressure would have to be transmitted all the way to the building's Foundation, which was nearly eleven hundred Feet below."" The winds current would cause the dirigible to drag the building with it because the wind current is very strong. The weight of the dirigible and the pressure of the wind may cause the building to collapse."" Al Smith realized that he was close to losing the title of the world's tallest building, and on December 11, 1929, he announced that the Empire State Building would now reach the height of 1,250 Feet."" Al Smith didn't want to lose his title so he decides to to make the building taller. The taller the building gets the stronger the wind current will be the more it adds on the building."" Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe."" Dirigibles should land in wide open areas where there isn't anything to harm the blimp, citizens, and passengers. The gases that are used to @CAPS1 the dirigible to make it lighter than air are highly Flammable. These are some of the obstacles the builders of the Empire State building had to @CAPS2." 3 4 4 +14856 6 "In the reading The Mooring Mast written by Marcia Amidon Lsted, the builders of the Empire State Building faced an obstacle. Which was attempting to allow Dirigibles to dock there. Not to mention Dirigibles were thought of being the transportation of the future. First, ""The one obstacle to their expanded use in New York City was the lack of a suitable landing area"" (@NUM1). This quote shows that for one this Dirigible would need to find a proper landing area. As well as not being able to fit. Thus, there was some need of more area space. Also, ""some were as long as one thousand feet, the same length as four blocks in New York City"" (@NUM2). It seems as though there was not enough space due to the Dirigible being so long. It also shows how would these architects come up with a plan in making this work, so that way it would fit properly. Therefore, there was an obstacle the builders of the Empire State Building faced. Which was the lack of a suitable area." 2 1 2 +14857 6 "The builders of the Empire State Building faced difficult circumstances and many obstacles during the task of designing a brand new Empire State Building to accompany this new means of travel. The builder's mission was to design the top of the Empire State Building to accommodate the mooring of blimps over one thousand feet in the air. The first obstacle was designing a landing area. This was difficult because the architecture needed had never before been created or even attempted in the past. A second obstacle was having to make sure the Empire State Building could withstand the stress created by the blimp. Paragraph @NUM1 says ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation."" The difficulty with this obstacle was having to refurbish the steel frame at the Empire State Building which took lots of time, work, and over sixty thousand dollars. ""The greatest obstacles to successful mooring was nature itself."" There were violent wind currents at the top of the building and the blimps were never very stable. There were many pedestrians under a moored dirigible so this was a very dangerous obstacle. Lastly, the pre existing laws of airships flying the low over urban areas posed a new problem. even with successful architecture, laws disallowed the blimps in the first place! Planes were also becoming more popular." 4 4 4 +14858 6 "In building the Empire State Building, the builders faced some problems in allowing dirigibles to dock there. Some of the obstacles that the builder faced were actually having a way for dirigibles to dock at about 1,250 feet above the ground. The strong air currents and changing in the wind direction also made it difficult for the piolots to steer the dirigibles close enough to the mast for docking. A final problem that the builders faced was a law that ""airships flying too low over urban areas"". (@NUM1). Which basically means that if it was docked at the Empire State building, then it would be too low to an urban aera and that's against the law." 2 3 3 +14859 6 "The idea of mooring dirigibles to the top of the building that stood 1,250 feet above the streets of downtown New York was a facinating and amazing idea. An idea that would bring New York into a whole ""age of transportation"" (@NUM1). Unfortunately this wonderful idea had a few holes in the plans. Later the architects that were building the mooring mast had discovered that their idea was not going to be fulfill. The idea had too many obstacles to overcome. The fact that ""most dirigibles outside the U. S used hydrogen rather than helium, and hydrogen is highly flammable"" (@NUM2). If anything was to go wrong, it would be catostrophic seeing as how below them were highly populated streets. Also, ""the greatest obstacle was nature itself"" (@NUM3). There was just too much wind to keep the aircraft steady and undercontrol. The reality of the fact was that the idea to moor derigibles sounded great but there are far too many risks to carry out the plan." 2 4 2 +14860 6 "In the excerpt ""The Mooring @CAPS1"", by: Marcia Amidon @CAPS2 the builders of the empire State Building faced obstacles in attempting to allow dirigibles to dock there. The Empire State Building was destined to never fulfill its purpose due to many reasons and many obstacles. One of those many reason was that most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable. Furthermore the biggest obstacle to the sucessful use of morning mast was nature itself. Due to the reason that the winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. Using these at the Empire State Building, where they would be dangling high above pedestrians on the Street, was neither practical nor safe. The other obstacles was an existing law against airships flying too low over urban areas. This law would make it illegal for ship to ever tie up to the building or even approach the area, although two dirigibles did attempt to reach the building for the entire idea was dropped. The builders of the Empire State Building faced many hard obstacles. " 3 3 3 +14861 6 "The builders of the Empire State Building face many obstacles in attempting to allow dirigibles to dock there. One obstacle they faced was the safety issue. As stated in paragraph @NUM1, most foreign dirigibles used the flammable element hydrogen rather than helium. A fire would be very deadly in a highly populated area like downtown New York. Another obstacle the builders were faced with was the wind. In paragraph @NUM2 it says, ""The winds on top of the building were constantly shifting due to violent air currents."" This would cause the un-tied back of the dirigible to thrash around and even ""swivel around the mooring mast."" When a dirigible is moored in open fields, they can be weighted down with lead weights. Doing this in open air above the Empire State building would be un-safe due to pedestrians below. The final obstacle builders faced was the law against airships flying too low over urban areas. In paragraph @NUM3, it says, ""This law would make it illegal for a ship to ever tie up to the building or even approach the area..."" This is why the mooring mast for dirigibles of the Empire State building never served its purpose." 3 3 3 +14862 6 "Based on the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, there was many obstacles that the builders of the Empire State Building faced with allowing diriibles to land there. One of the obstacles were the safety problems. The drigibles had to come close enough to the Empire State building so they could be able to tie the dirible down. This put the diribles too close to the people. There was a law that that stated that airships can't fly to low to urban areas. There was a disaster that happened in Lakehurst, New Jersey that they were trying to prevent from happening in New York (paragraph @NUM1). Another problem with that builders faced was that the strong winds of nature did not allow diribles to get close enough to tie down to the mast. There were many obstacles builders had to face that at the end it was not worth making the Empire state building a dirible dock." 3 3 3 +14863 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock. The steel frame of the Building needed to be modified and strengthened to make a place for dirigibles to dock. Also, over sixty thousand dollars worth of modifications had to be made. The last obstacle builders had was that a thousand-foot dirigible moored at the top of the building would add stress to the buildings frame. It was not easy for builders to build a mooring mast on top of the highest building that was one thousand two hundred fifty feet, but the architects reached their point by designing the mooring mast." 2 3 3 +14864 6 "While building the Empire State Building, workers faced many obstactles while attempting for dirigibles to dock there. A dirigible attached to the mast and building would add extra stress, so builders instead had to over sixty thousand dollars worth of reconstructions to fix the buldings framework. Dirigibles also dock with a line running from the front of the ship to the mast, and while they planned for the blimp to be able to sway in the wind, it was unrealistic that any ship could attach to the building at the high winds.Other obstacles they faced in letting dirigibles dock the building, was because of the safety hazards, the hydrogen used in most dirigibles from outside of the U.S. is highly flammable. Builders also did not take into consideration the pre-existing law against airships flying too low over urbanized areas, so it was illegal for a dirigible to tie to the building. The task of having dirigibles attach to the Empire State building was an impossible task to begin with. " 3 4 4 +14865 6 "There were many reasons why architects had problems allowing dirigibles to dock on the empire State building. One of the problems was that most dirigibles were @NUM1 ft long and it would be to much. There Would only be a single cable tether and it would add stress to the buildings frame. The entire Steel frame would have to be modified and strengthened which would cost over sixty thousand dollars.The greatest reason why the mooring mast would never fullfill its purpose is safety. Most dirigibles from the United States used hydrogen rather than helium, and hydrogen is highly flammable. The greatest obsticale to the successful use of the mooring was nature itself. The winds on the top of the buildings were constantly shifting due to the violent air currents. Even if the dirigible were tethered to the mooring mast the back of the Ship would swivel around. They are meant to land on open playing feilds but using these at the empire state building Where they would be dangling high above pedestrians was not safe" 3 3 3 +14866 6 "the obstacles the builders went threw was using hydrogen which is flammable. Another one is the ""wind on the top of the building were constintly shifting due to violent air currents."" the third one is when the back of the ship would swivel around and around the mooring mast. last but not least the law against airships flying to low over urban areas." 2 2 2 +14867 6 There were many obstacles that builders had to face in attempting to allow dirigibles to dock there One obstacle was the wind. At higher elevation the wind is much more powerful. This would make it very difficult to accually get the dirigible close to the mast. Also the structure of of Empire State Building. The framework was not built for the amount of weight that would be on top of the building. Builders made over @MONEY1 worth of fortifying the framework. Those are some obstacles that builders had to face in attempting to allow dirigibles to dock on the Empire State Building. 2 2 2 +14868 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. Although the builders thought it to be a brilliant idea, they did not carefully consider the safety hazards they may have encountered, and how unrealistic the idea truly was. One of the greatest reasons the mooring mast was destined to be unable to fulfill its purpose was because of safety concerns. In paragraph @NUM1 it states ""Most dirigibles from outside of the United States used hydrogen... and hydrogen is highly flammable."" When a dirigible was destroyed by fire in New Jersey, the owners of the Empire State building realized how much worse an accident like that would be if it occurred over a place as densely populated as downtown New York. Another very practical reason why dirigibles could not moor at the top of the building was, as stated in paragraph @NUM2, ""there was an existing law against airships flying too low over urban areas."" That would make it impossible for a dirigible to even approach the area, let alone be able to tie up to the building. It is very apparent that the builders of the Empire State Building faced many issues in the attempt." 3 2 3 +14869 6 "The builders of the Empire State building seem blind of all the dangers that would be a result of the mooring mast. One huge factor in danger was the violent winds at that elevation. The blimp would be swung around on the tether going to the building, which could either damage the building itself, or damage the blimp. Alsoif the blimp was moving, how would passangers get on and off? They could fall off the loading dock whether they were going on or off the blimp. Passengers could even get blown off the open floor of the Empire State building. Another factor was the high population of New York City, if something like debris had fallen down to the streets, it could probably kill a few walking pedestrians. I would think that the architects would have considered all these factors before trying to begin the project." 2 2 2 +14870 6 "In the excerpt, the Mooring Mast, by Marcia Amidon Lsted, the construction of the Empire State Building faces many problems. One of these problems is that the governer of New York, Al Smith wanted the building to be the tallest in the world. In order to do this you would need a mask to break the record. The mask made to made nature a danger to the whole building because of violent air current. Another reason how the Empire State Building failed is because their was a law banning airships flying too low over urban areas. This law went in effect because of a German dirigible caught on fire in Lakehurst, New Jersey. Those were just some of the many problems the dirigibles faced while passing the Empire State Building." 2 2 2 +14871 6 "Builders of the Empire State Building faced obstacles when attempting to allow dirigibles to dock there. A one thousand-foot dirigible, attached to a single cable tether, would add stress to the buildings framed if the dirigible was placed at the top of the building. The buildings frame would have to be strengthened and modified to accommodate the situation. Over @MONEY1 worth of modifications would have to be installed into the framework. some other obstacles builders faced was the safety. The dirigibles ran on hydrogen which is flammable. Another obstacle was the weather. The winds shifted at the top of the Empire State building were shifting due to violent air currents. One last obstacle was an existing law that airships could not fly too low over urban areas. The idea of a dirigible quietly disappeared." 3 3 3 +14872 6 "Although Al Smith had expected the mooring mast of the Empire State Building to be unique and practical, builders faced many obstacles in attempting to allow dirigibles to dock there. First, in order for the building to accommodate the stress that the dirigibles would add to the building's frame, the framework of the building had to be modified. This cost over sixty thousand dollars. In addition, dirigibles used hydrogen-a highly flammable gas. An accident could be fatal in a densely-populated area like New York City. Also, there were violent winds at the top of the building that would making docking difficult and could possibly blow a dirigible into the side of the building, causing it to be punctured. Finally, an existing law prohibited airships from flying to low over urban areas; it would be illegal for a ship even to approach the building's area." 3 3 3 +14873 6 The builder's of the Empire State Building faced many difficult obstacles when attempting to allow dirigibles to dock. The greatest obstacle of the use of a mooring mast was the wind. At the top of the Empire State Building the winds were constantly shifting due to violent air currents. The winds would cause the back of the dirigible to swivel around the mooring mast. Another reason the dirigibles would not be able to more at the Empire State Building is because there is a law that says airships cannot fly low in urban areas. This would make it illegal for the dirigible to approach or dock at the Empire State Building. 2 2 2 +14874 6 "Based on the story it all started when they had build the empire state building and the workers should have knowned that the building was too big for the wind climate, up in the sky and plus when you make a building like that you have to make sure it's strong enough to keep balance. They faced problem's like when the U.S. tried to make a deal with them if they would let them use the top of the building for a dock to let civilians on the deck, and after they made a law that no more blimps can land on the dock a blimp attempted to land on the dock." 1 1 1 +14875 6 Obstacles the bulders faced was if they put a Mooring @CAPS1 At the top of the building it will Add stress to the building and they would have to modify the building to support the mooring @CAPS1. Another @CAPS2 they @CAPS3 is safty Most @CAPS4 Are Filled with Hydrogen which Are Highly Flammable. If there was A Fire it could @CAPS5 @CAPS6 of people Due to the fact its A Densely Populated Area. Nature Itself Also seems to @CAPS7 A @CAPS2 the winds Above the building were very Violent. then theirs the law where Airships can @CAPS9 Low Above urban areas. 3 3 3 +14876 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there are described. One obstacle was that most dirigibles were highly flammable. In paragraph @NUM1 it says, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" If a dirigible caught on fire near the Empire State Building, the accident would affect many people since its a densely populated area. Another obstacle the builders faced was the winds of nature itself. Even if a dirigible was docked, it would still swivel around too much. In paragraph @NUM2 it says, ""... they would be dangling high above pedestrians on the street, was neither practical nor safe."" One more obstacle they faced was an existing law. In paragraph @NUM3 it says, ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" The architects faced many obstacles while trying to bring their idea to reality. It's better to plan ahead and think of every obstacle before bringing ideas to life." 3 3 3 +14877 6 "The builders had a very hard time because of where it was located, and how the dirigible was to dock. Their first problem was the fact that it was so tall, it was hard to work on. Another problem was the fact that the blimp would be pulling in on the building, so it had to be reinforced. The final problems that made them most an unreliable choice, were the wind conditions and the fact that the tail end of the blimp could swing freely. These all contributed to make the mast on the Empire State Building a bad idea." 2 1 2 +14878 6 "From the excerpt, The Mooring Mast, the architechs building the Empire state building faced many obstacles. in attempting to allow drigibles to dock there. An obstacle they faced in attempting to let the drigbles to dock there we're the winds. As it says in the excerpt, ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around..."" The dirigible would not be stable. Another obstacle they faced was to weigh it down, they'd have to use lead weight but it wouldnt be ""practical nor safe"" dangling high above people in @LOCATION1 on the Street. Overall The architecs faced a lot of obstacles for docking the dirigibles, Most being either practical or not safe." 2 2 2 +14879 6 "There were many problems with allowing dirigibles to land on top of the Empire State Building. When designing the mast they realized that with the weight of the dirible, the buildings frame would have stress. (paragraph @NUM1) They also noticed that the diribles from other countries used hydrogen and not helium. Hydrogen is highly flammable. (paragraph @NUM2). A factor of building the mast that was out of the builders control was nature. The winds at the top of the building were constantly shifting. (paragraph @NUM3). Law was also a problem when wanting to construct the mast. There was a law against airships flying to low over urban areas. (paragraph @NUM4). With the factors of weight, gas, nature, and law the builders of the Empire State Building faced many obstacles." 2 2 3 +14880 6 "In the excerpt from, ""The Mooring Mast"", by Marcia Amidon Lsted, tells about the original purpose to the mast on top of the Empire State Building was to serve as a landing spot for dirigibles (blimps).Some obstacles the builders of the Empire State Building faced was the tremendous stress that the mast would put on the Empire State Building. In order to get around this, they put frame work around the entire building's frame. Another obstacle that was faced was safety. First of all, the wind at the top of the Empire State Building was to great for any blimp to stay aloft in mid-air without being tossed around. Finally, the possibility of the blimp either popping on the spikes, or blowing up because of the hydrogen, over New York City.In conclusion, the mast on the Empire State Building, looked good on paper, but once you add in natural elements, the mast had too many flaw to it." 2 3 3 +14881 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was modifying and strengthening the frame of the building. It says that ""over @NUM1 thousand dollar's worth of modifications had to be made to the building's framework"" in order to accommodate dirigibles. However, after the modifications were made, the builders had to face another set of obstacles, more serious than before. the first one was ""safety"": the destruction of the Hindenburg in @LOCATION3 raised fear for a densely populated area such as New York. Another obstacle was ""nature""; the strong winds and violent air currents on the top of the Empire State Building made dirigibles ""neither practical nor safe"". the third obstacle was ""an existing law against airships flying to low over urban areas"". this law made it ""illegal for a ship to ever tie up to the building or even approach the area."" the Los Angeles and Columbia dirigibles attempted a few things, but unsuccessfully, and the idea of dirigibles disappeared by the late 1930's. these are the obstacles that the builders faced in attempting dirigibles to dock on the Empire state building." 4 4 4 +14882 6 "Based on the excerpt, The Mooring Mast by @PERSON1, the builders of the Empire State Building were faced with a number of obstacles while attempting to allow dirigibles to dock at the top. The greatest obstacle the builders faced was nature itself. @PERSON1 stated, ""The winds on top of the building were constantly shifting due to violent air currents,"" therefore it wasn't safe for dirigibles to be docked there. The wind would cause them to swivel around the mast, and it would be unsafe for the builders to hang lead weights on the dirigibles because they would be dangling above the pedestrians on the street. The other obstacle which prevented dirigibles from mooring at the Empire State Building was due to the law against airships flying too low over urban areas or cities. This existing law made it illegal for dirigibles to ever tie up to the building or just approach it because the area was too low over the city. @PERSON1 said, ""although two dirigibles did attempt to reach the building before the entire idea was dropped."" @CAPS1 two dirigibles failed at getting close enough to tie up or to deliver there cargo safetly, because of the forceful winds and the non-existence of certain mooring equipment, which should've been installed. Due to the obstacles, dirigibles were never able to moor at the building." 3 4 4 +14883 6 "In ""The Mooring Mast"" by Marcia Amidon Lsted the builders of the Empire State Building endured many obstacles when trying to dock dirigibles. The idea of a mooring mast began when former governor of New York, Al Smith was determined to make the Empire State building the tallest in the world. When the Chrysler building became the tallest Smith was said to have announced, ""... The Empire State would now reach the height of 1,250 feet"" (Mooring Mast). Although many were enthusiastic about the plan, there were many obstacles before dirigibles docked there. The first problem was stability. If a thousand pound dirigible was connected to the building by one tether then it, ""... would add stress to the buildings frame"" (Mast) Which would have made the builders completely alter the buildings structure. Another reason was safety At the time most foreign dirigibles used hydrogen, a highly flammable substance, instead of helium. Which could be a great hazard considering all the people it could harm below. However, the greatest obstacles for the dirigibles future was nature. Above the Empire State there was wild wind currents causing the back of the dirigible to swivel. When builders couldn't find a practical solution to all these obstacles, it was realized dirigibles would not be kept there for the safety of all New York City inhabitants." 3 3 3 +14884 6 "In the excerpt, ""The Mooring Mast"" written by @PERSON1, there were obstacles the builders of the Empire State Building were faced with that should have been apparent before they built the mast. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" It says in the ""The Mooring Mast"" that at the top of the building winds were constantly shifting due to violent air currents. Also if the dirigibles were tethered, the back of them would move around while the dirigibles would also be high above the city with people watching. Unsafe for many. ""An existing law against airships flying too low over urban areas."" It's illegal for a ship to tie up with the building or to even go to an area like that. These thing should have been brought to the builders attention with obstacles such as nature and lawbreaking are in play." 2 3 3 +14885 6 "Based on excerpt builders of Empire State building faced alot of obsticles. Here are my three points to consider. They need to make plans that were very difficult and hard. The Blimps and @CAPS2 could crash in to the building. It was too high firstly. The builders needed to make long difficult, plans. They needed to make the right skeleton for the mast to fit the rest of the building. They had to make changes to the existing plans to fit the mooring mast. Secondly, The Blimps and @CAPS2 could cause an accident. Blimps fly about @NUM1 miles per hour and they could approach the mast at a speed that is too fast and destroy it. Lastly, The mast was very high. It would be hard for blimps to reach the height of the mast. Irving Clavan said, ""... Such a height made it desirable to post poned to a later date for the landing gears."" In @CAPS1 builders of the Empire State building faced a lot of obsticles. The plans were difficult the Blimps and @CAPS2 could crash and the mast height was too high." 2 2 2 +14886 6 "Some of the obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were mainly weather and safety. In paragraph @NUM1 the author says ""The winds on top of the building were constantly shifting due to violent air currents"". This means that because of the wind and air currents always shifting the the dirigibles would be hard to control. Another obstacle they faced was safety. Also in paragraph @NUM1 the author says ""Dirigibles moored in open landing fields could be weighted down in the back with lead weights... where they would be dangling high above pedestrians on the street..."" @CAPS1 that means is having something heavy dangling above people is not a good idea. It wouldn't be a good idea because if the weight would of disconnected from the dirigibles there is a possibility that somebody could get injured badly. Those obstacles are @CAPS1 builders of the Empire State Building faced in allowing dirigibles to dock." 3 2 3 +14887 6 "Thraghat The process of attempting to allow dirigibles to dock on the Empire state building the builders faced many obstacles. The first obstacle that the bilders faced when attempting to allow dirigibles to dock there occurred in the actual ""building"" process. Because the mast wald add to much stress to the frame of the building if simply attached to its flat roof, the buldas had to reconstruct the steel frame of the building in order to safely place the mast on top, a very expensive and time consuming project. Another obstacle that the builders faced when attempting to allow dirigibles to dock on the Empire state building had to to with nature itself. Because the winds on top of the building were constantly shifting the back of the ship wald swivel around the mooring mast which was very unsafe. The laws against airships flying too low over urban areas also proved to be an obstacle because the Ships would never be able to actually approach the area. In conclusion, the builders faced many obstacles during construction for the dirigibles." 3 3 3 +14888 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were, A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame. So that was an obstacle because if the workers were up there working with that it would have to of been a very dificult situation and chalenging to work on the building with it like that. Another obstacle I would have to say would be the wind pressure they had when the thouand-foot dirigible was only hung on by a single cable that must of been a difficult obstacle with the wind blowing hard. Over sixty thousand dollers' worth of modifications had to be made to the buildings frame work must have been a challenging obstacle because they had to do alot of work that would take a while to get done if it has all over sixty thousand dollers' worth of work they had to do @CAPS1 on the frame work." 1 2 2 +14889 6 "In the excerpt, The Mooring mast by Marcia Amidon Lsted, the readers learn that there are obstacles the builders of the Empire State Building in attempting to allow dirigibles to dock there. In paragraph @NUM1, the readers learn that the architects are worried about the load of the blimp and the wind pressure that is transmitted all the way to the buildings foundation. The architects would have to strengthen and modify the Empire State Building for it to be accustomed to this new situation. The architects also saw problems with foreign dirigibles which use hydrogen rather than helium as said in paragraph @NUM2, ""Most dirigibles from outside the U.S used hydrogen rather than helium, and hydrogen is highly flammable."" One of the biggest obstacle was how the winds on top of the building were always shifting so even if the dirigible is tethered to the mast, the back would still swivel around. Later on, the architects idea for a mooring mast disapperead and it was then used for observation." 3 3 3 +14890 6 "The builders of the Empire State Building faced some obstacles in attempting to allow dirigibles dock there. Some of these obstacles had easy solutions, but some of them were really hard to solve.One obstacle they had was the dirigible on top of the building being hold by a cable tether only would cause stress to the building's frame. In order to solve this problem they needed to make modifications that would cost around six thousand dollars. This wasn't the only problem, there was a law that prohibited airships flying too low over urban areas. This law made it illegal to get close to this area or even try to get tie up to the building. Adding to this, the most difficult obstacle the architects faced was nature, and this problem was hard to solve and also hard to control.All this obstacles they faced lead them to give up for now & wait to see if later with more technology the could finally make this dream come true." 2 3 3 +14891 6 "When they build the Empire State Building they faced obstacles building it. An obstacle they faced was that they wanted to make it as high and as safe as possible. The way the architetures wanted to make it the tallest building in the world was by putting a mooring mast on the top of the building. A mooring mast is basically a dock for dirigibles (blimps). This was dangerous. It was because the Mast could snap at such a high altitude and plumate to the ground or snap, and dangle high above the street. ""... The Government people in washington are figuring on some way of mooring airships to this mast,"" says Al Smith four year term governor of New York. Although it may look nice, its not the safest idea." 1 1 1 +14892 6 "There were many obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. For one thing, the builders couldn't simply place a mast on top of the empire state building, because the building would surely collapse. ""A thousand-foot dirigible moored at the top of the empire state building, held by a single cable tether, would add stress to the building's frame"". To change and fix this problem, over sixty thousand dollars would be needed for the modifications. Another obstacle the builder's failed to see was the actual construction of a modern-day dirigible. The dirigibles, ""used hydrogen rather than helium, and hydrogen is highly Flammable"". If the dirigibles were to ever explode while docking, the situation would have been horrible over a densely populated area of New York. Lastly, the greatest obstacle of the building was nature itself. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around"". this would be very dangerous. The dirigible could @CAPS1 over pedestrians the streets meaning it was not safe at all. There are three obstacles that prevented the empire state building from allowing dirigibles to dock there." 3 3 3 +14893 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted the builders faced obstacles such as how the dirigibles would stay tied to the mast. They weren't sure as to how they would keep the dirigible from swiveling from air currents. As said in paragraph @NUM1, ""A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's framework."" Another problem faced was the use of hydrogen in the dirigibles made them highly flammable." 2 2 2 +14894 6 "The builders of the Empire State Building faced many problems that ""Should have been apparent before it was ever constructed. One of the problems that they faced was that many dirigibles ""used hydrogen rather than, helium, and hydrogen is highly flammable."" This factor caused that the owners of the Building to worry about the safety of the many civilians that lived in downtown New York. Another factor that the builders face was that the winds ""were constantly shifting due to violent air currents."" This caused problems because in landing fields the blimps could be weighted down with lead weights but that could not be done at the Empire State Building; many dirigibles would not be able to reach the Building either due to the winds. One last factor that was faced is that it is against the law to have airships fly to low over the urban areas. This ""law would make it illegal for a ship to ever tie up to the building or even approach the area."" All these factors caused ""the idea of using the mooring mast for drigibles and passengers"" to disappear." 4 4 4 +14895 6 "In the short story ""The Mooring Mast"" by Marcia Amidon @CAPS1 There is an obsticle that the builders had to over come. Building the top of the empire state building was difficult because the dock part of the tower wasn't stable. Also the frame of the building couldn't support the dirigible, ""dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame"". The designers designed a new tower that was a ""shinny glass and chrome-nickel stainless steel tower that would be illuminated from the inside"". The winches and controlling machinery would be housed in the base of the shaft its self. They also added a observation deck and more passengers were able to wait for the dirigible. another problem with it was there was a law that aircrafts couldn't get to close to urban places. Over all it was a hard pain saking design for them and costed alot of money." 2 2 2 +14896 6 "Despite Al Smith's goal of fulfilling the ""dream of aviation pioneers,"" the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One such problem that the builders faced was the stress a dirigible would add to the building itself; by mooring a large dirigible to the building by a single cable tether, the building would have to be able to withstand the stress of the dirigible itself and the wind pressure that would be transmitted throughout the entire building. Thus, the builders were forced to strengthen the frame of the Empire State Building with over @MONEY1 of modifications. In addition, dirigibles from outside the United States posed as a danger hazard due to most of them being filled with highly flamable hydrogen. When the German dirigible was destroyed by fire in Lakehurst, New Jersey, it became obvious of the risks of such an accident above a densely populated city of New York. Not only that, but the raging winds on top of the Empire State Building also posed a problem as even when tethered to the mooring mast, the rear of the ship would continually sway around the mooring mast; this proved to be a danger hazard with the citizens of New York directly below it. Furthermore, there was an established law prohibiting airships from flying to low over urban areas; this made it illegal for a dirigible to tether itself to the Empire State Building and further cemented the impossibility for the builders in attempting to allow dirigibles to dock there." 4 4 4 +14897 6 "In @PERSON1's excerpt, ""The Mooring Mast,"" the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. Although dirigibles were a modern form of transportation they were highly dangerous. As it states in paragraph @NUM1, ""Most dirigibles from outside of the U.S used hydrogen rather than helium, and hydrogen in highly flammable."" This along with the ""violent air currents"" as stated in paragraph @NUM2, were two of the risks that the builders had to take into consideration. The builders needed to converse the idea of a safe way in which dirigibles could dock there insuring that no one gets hurt. Another obstacle the builders had to take into consideration was the law passed in which was, ""against airships flying to low over urban areas,"" as explained in paragraph @NUM3. The excerpt clearly explains the complications the builders had to endure and take into thought when constructing the Empire State Building. In conclusion, the builders of the Empire State Building underwent many obstacles in attempting to allow dirigibles to dock there." 3 3 3 +14898 6 "In the excerpt from ""The Mooring Mast"" by @PERSON1, the builders of the empire state building faced many obstacles in attempting to allow dirigibles to dock there. The greatest obstacle the builders had to overcome was the winds were constantly changing because of the air currents. Another reason why dirigibles weren't allowed to dock on the empire state building was because many dirigibles from outside the @LOCATION3 used Hydrogen which is very flammable. So if one blew up like it did in Lakehurst, New Jersey more people would be effected by it. Yet another reason why dirigibles weren't allowed to dock there is because they could use lead weights to weigh down the back of the blimp because that would be dangerous for the people below Another reason why dirigibles weren't allowed is because of the sharp spires of the other buildings in the area. If a Navy captain was afraid of having his blimp poped then no one should be allowed. The last reason was that there was a law saying that air ships can't fly too low over urban Areas. Those with the obstacles the builders could never overcome." 4 4 4 +14899 6 "There are many obstacles that the builders face when creating the empire state building. First off the height of the building more come into question as much and there were to many discussions about the Top of the building. The empire state buildings first goal was to be the future of city they wanted to food people onto blimp. another problem is where really is know way to get the blimp steady enough to stick to the building and the large aircrafts are not suppose to fly back close to the building because other building are around. In conclusion, they did face many problems." 0 2 1 +14900 6 "There were many obstacles that the builders of the Empire State Building faced. One of the greatest being safety. As stated in paragraph @NUM1, most dirigibles from outside of the U.S used hydrogen rather than helium. Hydrogen is highly flamable. Also another issue was purposed in paragraph @NUM2, this was nature itself. The winds at the top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered down, the back of of the ship would swivel around the morning mass. Yet another obstacle as to the reason why dirigibles couldn't dock at the Empire State Building was in paragraph @NUM3, this was an existing law against airships flying too low over urban areas. These obstacles made it nearly impossible for the Empire State Building to serve it's original purpose." 3 3 3 +14901 6 The greatest abstacle to the successful use of the mooring mast was nature itself. There were high violent air currents causing the building to constantly shift. It was neither practical nor safe. 1 1 1 +14902 6 "There were many obstacles that the builders of the Empire State building had to face while trying to allow dirigibles to dock there. One reason is the dirigibles were unsafe. This is because dirigibles from outside the United States used hydrogen, which is extremely flammable. If the dirigible caught on fire in a densely populated place, then many people could die from it. Another obstacle the builders faced was nature itself. This is because the winds at the top of the building were constantly shifting so the back of the dirigible would swivel back and forth. They could only fix the problem by putting weights on the back of the ship, but to do that impractical and unsafe. This is because the weights are dangling high above pedestrians, so if one broke, it could kill someone. The third obstacle is that there was a law against airships flying to low over urban areas, so it would be illegal for the ships tie up to the building. The final obstacle was the wind could have pushed the ship onto sharp spires, which could puncture the ship, so the pilots wouldn't be able to get the mooring equipment. These are the obstacles the builders face, which caused the mooring equipment not to be installed." 4 3 4 +14903 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. Safety reasons, weather conditions, and government laws, defeated the purpose of the mooring mast on top of the building. For example, many of the dirigibles used at the time contained hydrogen instead of helium, ""hydrogen is highly flammable... above a densely populated area."" (@NUM1). The builders realized this was not smart. Furthermore, ""The winds on top of the building were constantly shifting do to violent air currents."" (@NUM2) This created a dangerous situation because the ship would swing around the mast. Lastly, the most obvious obstacle was a government law prohibiting a ship to even approach the building. ""...an existing law against airships flyinging too low over urban areas"" .(@NUM3) The whole idea that was built up to something great had slowly dwindled. The builders of the Empire State Building faced these obstacles, and many more, in their attempt to allow dirigibles to dock there." 3 2 3 +14904 6 "In the article ""The Mooring Mast"" by Marcia Amidon Lsted, many obstacles of building the Empire State building as a docking station for dirigibles are describle. John Tauranac, the man who came up with the plan to dock dirigibles on the top of the empire state building forgot some very important things to take into account. First the entire building would have to be modified because ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stres to the building's frame"" (paragraph @NUM1). The second problem that would need to be solved would be the safety of the city. Many ""dirigibles from outside United States used hydrogen rather than helium, and hydrogen is highly flammable."" (paragraph @NUM2.). If an accident like German dirigible Hindenburg happened, it would be ten times worse. Lastly, the ""violent air currents"" (paragraph @NUM3) would pose as one of the greatest obstacles. The U.S. Navy dirigible Los Angeles tried to tie up but could not get close enough because of ""forceful wind."" (paragraph @NUM4). The obstacles of making the empire state building into a mooring mast caused too many obstacles that could not be solved." 3 3 3 +14905 6 "The builders of the empire state building faced many obstacles. Allowing dirigibles to dock on the top of a building had never been done before. They had to add over sixty thousand dollars worth of framework before they could even begin building the mast. Then, once the mast was designed, and the building had been framed to the 85th floor, the roof had to be completed before the mast could begin to be framed." 1 1 1 +14906 6 "Builders had many promblems with allowing dirigibles to dock at the Empire State Building. First of all in @CAPS1 @NUM1 the author exsplains that ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would only add stress to the buildings frame"". Builders with that would have to construct the building to make it more stable. Also there were cases that outside the United States they use Hydrogen other then helium. Hydrogen is very flamible, and because new york is so populated it would not be safe to podestrions. Seeing this you can tell that builders had to many promblems coming from such an ""easy"" thing." 2 3 3 +14907 6 "The obstacles on allowing dirigibles to dock at the Empire State building were far to great, something that should have been obvious before construction started. One major reason, safety. Most dirigibles used hydrogen instead of helium, and hydrogen is very flammable, and after the ""Hindenburg"" accident in Lakehurst, the idea was shot down. Another reason why it just didn't work was the wind current at the top of the Empire State building. Winds would have been to great for dirigibles to safely dock at the Empire State. There was already a law about Airships flying too low over urban areas. With a dirigible approaching the building would make it illegal. Thus ending the idea to proceed." 3 3 3 +14908 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. In paragraph @NUM1, the excerpt tells the reader of a huge issue. It states, ""A thousand-foot dirigible moored at the top of a building, held by a single cable tether, would add stress to the building frame."" Due to this over sixty thousand dollars worth of modifications had to be made to the buildings framework. Another set back is in paragraph @NUM2. It states, ""The greatest obstacle... was nature itself."" Due to violent air current, the back of the ship would swivel around the mooring mast. Tethering the mooring mast would do little help. Lead weights could not be used. In paragraph @NUM2, it states, ""dangling weights high above pedestrians..., was neighter practical nor safe."" All of these obstacles showed architects, the project at that time was impossible." 3 3 2 +14909 6 "The builders of the empire state building faced many obstacles. In the excerpt said ""the mooring mast of the empire state building was destined to fail."" A somehow unseen obstacle was the fact that ""most dirigibles from outside the United States used hydrogen instead of helium"" which is a much more unstable gas and if a dirigible caught fire and went down over New York many civilians would be killed or wounded. Another obstacle the builders faced was ""the winds at the top of the building were constantly shifting."" This would make it very difficult to ancor a dirigible down to the mast and as the excerpt said they could not use lead weights hanging from the underside of the dirigible because they would be hanging over citizens below. Those are the problems faced by the builders of the empire state building." 3 3 3 +14910 6 "The builders of the empire state building encountered many obstacles. These obstacles were not easily fixed. First, the steel frame of the empire state building had to be modified and strengthened to accommodate the ""new situation."" Another obstacle was safety. Having an accident would be detrimental to many peoples' lives, because it is located in such a densely populated area. Also the winds made the whole thing very dangerous. Lastly there was an existing law saying that airships could not fly too low over urban areas." 3 2 3 +14911 6 "The obstacles that the builders @CAPS1 in attempting to allow dirigibles is making its speed go up. Another obstacle that the builders @CAPS1 is the landing area. The last obstacle that the builders @CAPS1 is making sure that the passengers get on and off safely. Like it says on paragraph six, ""passengers could safely get on and off the dirigible by walking down a gangplank...""" 1 1 1 +14912 6 "There were plenty of problems engineers at the empire state building faced when they wanted to dock dirigibles. Well for starters, the winds up that high were over-powering, as it says in paragraph @NUM1 ""the winds on top of the building were constantly shifting due to violent air currents."" Also there was the dirigibles themselfs that caused a problem For they were filled with hydrogen, which is very flamable, One other problem was air laws they state that dirigibles, in urban areas, were not to fly too low. It is because of these problems that destroyed Al Smith's Idea that building could dock airships." 3 3 3 +14913 6 "With any public transportation unit, many challengers are expected and some are problems unable to be solved. Based on the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, builders of the Empire State Building faced plenty of obstacles in attempts to allow dirigibles, or blimps, to dock there. In regards to docking these dirigibles, they were breaking ""an existing law against airships flying too low over urban areas."" Which made the builders' procedure illegal. Also, not only was it a dangor for the citizens of New York City, but due to the weather conditions it was dangorous for passengers and workers on the dirigible. Lsted states that ""The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents."" This goes to show that any project should be checked for safety precautions at all times." 3 3 3 +14914 6 "Al Smith's dream of having airships dock atop the Empire @CAPS1 Building Was cut short by bitter reality. The idea failed parially due to the impracticality of docking a @DATE2 foot balloon filled with flamable gas to a city building. The mere size of this glimpse was astounding and this created many problems. Firstly The wind atop a skyscrapper is great and inconsitent. It is extremely difficult to dock to a building a seen when the Los Angeles tried to dock in @DATE1. The balloon was unable to dock due to potential damage it could cause to itself and the surrounding city. The blimps were also kept afloat by Hydrogen which due to its chemical nature is extremly flamable. Blimps had exploded in the past such as the Hindenburg. Engineers knew that if a similar accident occurred at the Empire state Building, substantial damage would have been done to the city and building itself. These impracticalities combined with the use of airplanes rather than blimps gaurenteed no blimps would ever be docked to the Empire State Building." 3 3 3 +14915 6 "Builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock on the mooring mast. One of which being that most dirigibles outside the U.S. used Hydrogen to float, making them very flammable and unsafe. If a blimp were to be damaged over New York, many people could be hurt. Also, nature itself made docking extremely difficult. Winds made the blimps very unstable. If one were tied to the mast, winds could wrap the line around the mast. Another obstacle was the existing law that prohibited aircrafts from flying that low over urban areas. This made it illegal for any ship to even approach the mast." 2 3 3 +14916 6 "Al Smith and his team of builders faced several obstacles when trying to allow dirigibles to dock at the top of the Empire State Building. The first problem with docking dirigibles is that the steel frame and foundation could not support The stress put on it by a dirigible attached to it. Also, when the builders looked back on past dirigible accidents like the Hindenburg, they realized that if an accident were to occur, many lives would be at stake. Furthermore, there were laws that limited how low a dirigible could fly over urban areas, so it would be illegal for a dirigible to dock at the Empire State Building because it would be too low. Finally, and according to the builders, most importantly, the largest problem with docking dirigibles to the Empire State Building was mother nature. Winds at the top of the building were very high and changed unpredictably, effectively turning the dirigible docked into a disaster waiting to happen." 3 3 3 +14917 6 "The builders of the Empire State Building faced many obstacles in an attempt to allow dirigibles to dock this included not being able to put a mooring mast at the top of the building in fear that because the dirigible was being held by a ""single cable"" it ""would add stress to the buildings frame."" @CAPS1 with the amount the dirigible @PERSON1 and the wind the buildings frame would not be strong enough and would have to be ""modified and strengthened."" Another obstacle in attempting to get the dirigibles to dock was the wind. The building was high up @CAPS1 the wind currents were volatile and ""constantly shifting"" in result the back of the dirigibles ""would swivel around and around the mooring mast."" @CAPS2 obstacle faced by the builders was that they were trying to build the mooring mast in an urban area with other buildings, close by the dirigible could be pierced and would also be dangerous for the pedestrians in the city." 3 3 3 +14918 6 "The builders of the empire state building where faced with multiple problems for their idea in for what the building would be used for.The first problem for the builders came up about the buildings frame. A thousand foot dirigible at the top of the building held by only one cable would cause to much stress to the buildings frame. the load of the dirigible and the wind would have to go to the buildings foundation, which was much to far below. The building would have to be modified costing over sixty thousand dollars in modifications. The architects made changes to the building to fit these needs. But again the architects we're presented with a problem. The mast of the building would cause problems that should have been spotted by the architects way befor construction. the biggest problem having to do with safety issues. most dirigible outside the country used hydrogen wich is highly flammable. There already had been an exsplosion one over New York could be to much." 2 3 3 +14919 6 "In order to allow dirigibles to dock on the roof of the empire state building, the workers would have to go through a series of tasks such as, strengthening the steel frame, and designing a sturdy mast. If the frame were not strong enough, then the building would simply colapse. More than sixty thousand dollars was spent on restructuring the frame. Also with high-speed winds the mast would have be incredibly sturdy, otherwise the dirigible would not stay in one place. After the Hindenburg disaster, people realized how unsafe these dirigibles really were, and so the idea would was found not only unsafe but it illegal. In conclusion, not a single blimp would ever be docked, nor will one ever." 2 2 2 +14920 6 "The builders of the Empire State Building faced many obstacles when attempting to allow dirigibles to dock. Firstly, the thousand foot dirigible would attach to the buildings by a single cable, adding stress to the frame of the building. The builders were forced to modify and strengthen the foundation to address the issue of stability. similarly, builders had to deal with the issue of wind pressure which were constantly shifing at heights of over @NUM1 feet in the air. The load of the dirigible swinging in the breeze would transmit pressure and stress onto the buildings foundation. This was a high safety concern, and pivotal to the decision that dirigibles could not dock at the empire state building. Lastly, builders were forced to face the law against airships flying too low over urban areas, making it illegal for dirigibles to even attempt to land on the mooring mast. The builders faced significant obstacles such as building weakness, safety, and law enforcement, that made attempting to allow dirigibles to dock on the Empire State's mooring mast, virtually impossible." 3 3 3 +14921 6 "In The Mooring Mast, by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. Al Smith wanted to add a ""top"" or a ""hat"" to the Empire State Building that would function as a docking station for dirigibles. The dream was not ment to be.The first of many problems was getting the mooring mast, docking station, on top of the building. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" A dirigible would only be held by one cable.The dirigible's load and the wind presure would have to be transmitted all the way down the building. There were also safety problems. A lot of dirigibles used hydrogen. Hydrogen is highly flammable. It is also very windy around the Empire State Building. The dirigibles would have to hang sandbags by ropes. These would hang above the people below. The mooring mast was a good idea, but the builders faced to many problems. The project was never completed." 3 3 3 +14922 6 "Though in theory the idea of the mooring mast seemed attainable, in reality there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. An initial problem was faced during the process of adding the mooring mast to the building. As stated in the article: ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. ... The steel frame... would have to be modified and strengthened to accommodate the new situation."" This modification, necessary to overcome the obstacle of attaching the mooring mast consumed over @NUM1 thousand dollars and much time and effort. A second obstacle which interfered immensely with safety was ""nature itself."" The violent winds at the top of the building would cause tethered dirigibles to ""swivel around and around"" the mooring mast. Dirigibles moored in airfields could be weighted down by lead weights, but this idea could not be executed because ""... using these at the Empire State Building, where they would be dangling high above pedestrians on the street was neither practical nor safe."" Such problems as these created many obstacles for the builders of the Empire State Building." 3 3 3 +14923 6 "In this excerpt, the builders faced many obstacles with the Empire State Building in attempt to allow dirigibles to dock there. Some of those problems included weather, height, and the gases used to to fuel the dirigible. The weather was a tough force to beat. If the dirigibles were to dock at the building, the wind at that height was more extreme, and could cause the dirigible to swerve. The next contributing factor was height. In the excerpt, it stated that law ordered a limit. If the dirigibles were too low to urban areas, it would be unsafe. At any moment something could cause the dirigible to fall and crash on buildings and pedestrians. The last obstacle is the type of gas used. Apparently hydrogen is highly flammable compared to helium. Which could also cause harm to the passengers. In conclusion, weather, height, and the type of gas used, were all among the many obstacles that the Empire State Building would face when allowing dirigibles to dock there." 3 3 3 +14924 6 "The architects of the Empire State building believed that dirigibles were able to dock on the building if there was a mooring mast. However there were many obstacles to over-come to allow this to happen. If a dirigible landed on the mast, it would force a lot of pressure on the building as it swayed in the wind. ""A thousand-foot dirigible moored... would add stress to the buildings frame."" And as nature played a role, the wind could swing the body of the dirigible possibly causing the frame of the building to break and the building to collapse.Another obstacle that the architects faced was danger. American dirigibles used helium, while dirigibles from other countries used hydrogen, which is highly flammable. ""... the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey..."" The architects realized that they Hindenburg explosion would have been worst if it occurred on the Empire State building ""... above a densely populated area...""." 3 3 3 +14925 6 "In the excerpt ""The Mooring @CAPS1"" by Marcia Amidon lusted theres alot of problems when trying to add a dock for dirigibles at the top. One problem or obstacle was the safety of the dirigible itself, ""most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly inflammable."" (@NUM1). Another obstacle was nature itself, ""The winds on top of the building were constantly shifting due to violent air currents."" (@NUM2). The last problem was the existing law aganist airships flying too low over cities or urban areas. ""This law would make it illegal for a ship to ever tie up to the building or even approach the area."" (@NUM3). These are three reasons why in the excerpt ""The mooring @CAPS1"" by marcia Amidon lusted that there were alot of problems when trying to add a dock for drigibles." 3 3 3 +14926 6 "Through the excerpt The Mooring Mast by @ORGANIZATION2, we learned that the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock on the summit of the building. Some of the obstacles that the builders faced in this enginering challenge are; @CAPS1 the builders faced the challenge of how the Empire State Building was going to be able to support the weight of these long aircrafts. We learned this in paragraph @NUM1 when the author states ""A thousand-foot dirigible moored at the top of the building... would add stress to the buildings frame."" To overcome this problem ""The steel frame of the Empire State Building would have to be modified and strengthened (@NUM2)."" It is later said that these modifications would cost over sixty thousand dollars. Another problem that the builders faced was, how safe docking a blimp would be in a highly populated area. In paragraph @NUM3 we learned that most dirigibles are made of hydrogen, which is highly flammable. After ""the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey... The owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" All in all in the excerpt The Mooring Mast will learned that the builders of the Empire State Building face many obstacles in attempting to allow dirigibles to dock on the peak of the building." 3 3 3 +14927 6 "The builders of the empire state building could not dock dirigibles because of the building's structure, the winds pushing the dirigibles, and public safety. The structure could not handle the swaying dirigible becacse of the winds pushing the back side. ""Most dirigibles from outside the United States used Hydrogen rather than helium, and hydrogen is highly flammable. this quote shows how dangerous it would be to put a large flammable dirigible over new york and the people in new york." 2 2 2 +14928 6 "In the excerpt The Mooring Mast by Marcia Amidon @CAPS1 explained why there is a landing area on the Empire State Building called the Mooring Mast. The first obstacle the workers faced was there was no Landing space on the top of the Empire State Building. This means dirigibles could @CAPS4 at all. To fix the problem of not having a Landing area is, they would add the Mooring Mast. The Mooring Mast was built with wenches that would hold the dirigibles but it would put too much stress on the building. The workers used a @CAPS2 of money to make the building so it wasn't stressed when the dirigibles was held to the Mooring Mast. After all that got fixed they forgot one thing, the wind. The wind was so violent that the dirigible couldn't maneuver. to get on top of the Empire State Building. When the workers figured that out they gave up. Marcia Amidon @CAPS1 explained what the workers tried to do to get a dirigible to @CAPS4 on the Empire State Building in the excerpt The Mooring Mast." 2 3 2 +14929 6 "Most of the obsticles the builders of the Empire State Building had were due to weather. If New York ever had a windy day the dirigible would pull at the mast. The mast is attached to the ""@CAPS1"" of the building, and it might affect the frames or ""@CAPS1"" of the building. Another reason is the danger it would bring to all of New York. If a dirigible ever hit something or something went wrong the dirigible would @CAPS3 on top of New York. With all the trafic of New York you would most likly not want a burning dirigible falling overhead." 2 2 2 +14930 6 "Builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The builders could not simply just drop a mooring mast on the roof. It would add stress to the building's frame. Another problem that faced the builders was that hydrogen is very flamable. If a dirigible had been caught on fire and exploded, over downtown New York, then law suites would be made. Another problem that faced the builders in attempting to allow dirigibles to dock on the Empire State Building were the winds at the top of the building. There were shifting winds due to violent air currents and these winds would make it extremely difficult for dirigibles to dock. The last obstacle was the fact that there was a law against aircraft flying too low over urban areas. Builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there." 3 4 4 +14931 6 "The builders of the Empire State Building faced a few obsticales in attempting to allow dirigibles to dock there. One problem with the height and alltitude of the Zeppelin. Even if they docked, the back of it would be moving around everywhere from the wind. Another reason was that on May 6, 1937 the Hindenburg was burned to the ground after takeoff. witch means that it was very flamable from using hydrogen instead of helium. All raised safty issues that needed to be sought out." 2 2 2 +14932 6 "The builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. Dirigibles were long; some were as long as one thousand feet. Dirigibles were docked by an electric winch, which hauled in a line from the front to the back. The architects could not drop a mooring mast on top of the building. A one thousand-foot dirigible held by only a single winch would be to heavy for the buildings frame. In order for it to work it would have to be strengthened to accommodate the one thousand foot dirigibles. This would be a process worth over sixty thousand dollars, just for the framework. Another obstacle was safety. Dirigibles out of the United States contained helium meaning it was highly flammable. If an accident would occur like in Lakehurst, New Jersey then a lot more people would be harmed considering downtown New York was densely populated. Other obstacles were made for the builders of the Empire State building which proves that it was not a good idea to dock dirigibles." 3 3 3 +14933 6 "The builders faced many obstacles when attempting to allow dirigibles to dock. One was that they had find away that would not make the building to unstable ""A thousand-foot dirigible moored at the top of the building... would add stress to the building's frame."" Another obstacles was the winds would be too strong and not safe for the dirigible to be up there ""the winds on top of the building were constantly shifting due to violent air currents."" A third example would be that it was too dangerous to have the dirigible up there because the gases with in were extremely flamible ""most dirigibles from outside of the united states used Hydrogen... and Hydrogen is highly flammable."" The final obstacles the builders would have to face was that there is a law that does not allow airships to come to close to the ground in urban areas. So in conclution we can see that even though it was a good idea to port dirigible is was not a practical one." 4 3 4 +14934 6 "In this excerpt, ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles to allow dirigibles to dock there. The first problem they faced was redesigning the building's original skeleton to fit the needs of the mooring mast. This can be shown when the excerpt states, ""over sixty thousand dollars' worth of modifications had to be made to the buildings framework"" (paragraph @NUM1). The workers had to change their first design to meet the mandatory requirements for the mooring mast. The workers also had to face the fact that overall, the mooring mast was too dangerous to use. This can be proven when the excerpt says, ""The greatest reason was one of safety... hydrogen is highly flammable"" (paragraph @NUM2). The dirigibles used outside of the United States used a gas they created a dangerous risk for accidents. Another battle the builders had to face was the strong winds. This can be shown when the excerpt quotes, ""The greatest obstacle to the successful use of the mooring mast was nature itself"" (paragraph @NUM3). The winds caused the dirigible to move too much that it became unsafe to use. The builders of the Empire State Building were challenged with many obstacles while they attempted to allow dirigibles to dock there." 3 4 4 +14935 6 "There were many different obstacles the builders of the empire state building faced in attempting to allow dirigibles. For example ""the wind on top of the building were constantly shifting due to violent air currents. Because of the weather itself it caused them not to be able to build the mooring mast. Another reason is ""using the empire state Building where they would be dangling high above pedestrians on the street was neither practical nor safe"". It could easily kill people that were roaming around. Lastly they could not more at the empire State Building because ""It was an existing law against airships flying to low over urban areas." 2 3 3 +14936 6 "During the construction of the mooring mast atop the Empire State Building the builders faced several obstacles. The greatest obstacle was @CAPS1 Nature. The winds at this height are shifting to frequently causing the dirigible to be tossed around the mast, making it unsafe to board. Another obstacle was how they weighed dirigibles down with lead weights. Having lead weights at this height was risky because they could plummet down upon the people below. The third obstacle was a law against the airships flying too low in urban areas. This made it impossible for any dirigible to dock or even come near the Empire State Building. These obstacles forced the builders to shelf the mooring mast construction." 3 3 3 +14937 6 "Obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were some of the following. They needed an exact way of getting everything perfect for the job. The whole building process for this job was very complicating and needed the best expertese.In paragraph @NUM1, Al Smith's quote greatly backs up to my point. He says ""one set of engineers here in New York is trying to dope out a practical, workable arrangement and the Government people in Washington are figuring on some safe way of mooring airships to the mast"". It tells just how much people are working on this job.In conclusion, this was a complicated job. They weren't positive if the mast even be able to stay. They also werent positive if the fluids inside would be but a problem factor." 1 1 1 +14938 6 "In the piece ""The Mooring MAst,"" by Marcia Amidon Lsted, it describes what the mast on the Empire State Building was really for. There were many obstacles that the builders faced in attempting to allow dirigibles to @CAPS1 on the mast. One problem they faced was that the dirigible landed on the roof would add stress to the building's frame. The stress and wind pressure would have to be transmitted all the way to the foundation of the building. This means the building would have to be modified and strengthened. Safety was also a big issue for the mast. Because the dirigibles used hydrogen, it could catch on fire and be destroyed over a densely populated area. Another obstacle was nature itself. The winds on top of the building were constantly shifting. This made the back of the ship swivel around. Lastley, it was not successful is because of the law against airships flying too low. Before the constructors built all this extra to the building they should have thought of all the defects it could have." 3 3 3 +14939 6 Al Smith was a very competitive person: one of @CAPS1 Al had to go through is competing with another building and he had to make his building taller Than the Chrysler building. Wich in @DATE1 if he didn't make his building taller he would of lost the tittel of The tallest building in new york 0 0 0 +14940 6 "Although the idea for turning the mast at the top of the Empire State building into a docking area for dirigibles was a highly clever idea, it was not a very safe one at all. One ""reason why dirigibles could not moor the Empire State Building was an existing law against airships flying to low over urban areas. This law left the idea of the mast as a failure before construction even began, but the workers failed to notice this law. Another obstacle that added difficulty to the construction was how much pressure having the dirigibles moored to the building added to the base of the building. This caused another @MONEY1 to be spent trying to fix this problem. A third factor that made the idea of setting up a mast even more difficult came straight from nature itself. The winds that high off the ground made manuvering the dirigible in such a small space very difficult. This was proven when ""In December 1930, the U.S Navy Dirigible' Los Angeles' approach the mooring mast but could not get close enough to tie up because of forceful winds." 3 3 3 +14941 6 "There are many things in life that seem like they could be brilliant ideas but, in reality there are many flaws with it. One of these ideas is using the Empire State building as a mooring mast for dirigibles. This is what Al Smith, the governor of New York at the time, discovers in an excerpt from The Mooring Mast by Marcia Amidon Lsted. In this excerpt the builders of the Empire State building had to face some serious obstacles to allow the docking of dirigibles: @CAPS1 building the Empire State building many of the blue prints had to be changed. One thing that had to be changed was the skeleton of the building. They needed a way to support the drigibles if they were to dock. The skeleton they had in place put too much stress on the top half of the building that it would result in breaking. Another thing that the builders had to deal with was the safety of the @LOCATION1. If the highly flamable helium inside the dirigibles then it would be putting thousands of peoples lives in jeopardy. Finally the builders had to deal with the violently shifting winds. This too put stress on the frame of the building since the winds were so strong there and also a fear that it would blow the blimp into the pointed mast and break the blimp. Overall there are many reasons why the Mooring Mast never became a reality." 3 2 3 +14942 6 "The idea of docking dirigables on top of The Empire State Building was a grand one It seems as though the dream of dirigable transportation was on it's way up, however, the architects were blinded by their excitement. Al @CAPS1 competitive nature not only pushed the building to a un-precedented 1,250 ft., but also combined transportation in new, fashionable, And effective ways. This not only made the public and architects excited, but also put a lot of expectations on the building. Al Smith did not see all the obstacles ahead that would halt his dirigible plans. One of the obstacles being that the swaying of the dirigible would add stress to the frame of the building, though the necessary precautions were made, the obstacle was foreshadowing the others to come. When the dirigible Hindenburg was destroyed by fire due to the hydrogen gas, people became skepticle. What if it were to blowup over a crowded New York city street? Also, an existing law against aircrafts flying too low over urban areas prohibited the dirigable plans. The obstacles proved too much for the plan to go through. Though the plans were merely postponed by the late 1930's the idea of dirigables a top the Empire State Building had disappeared." 3 3 3 +14943 6 "Based on the excerpt, ""The Mooring Mast"", by Marcia Amidon @CAPS1, the builders of the Empire State Building faced several obstacles in attempting to allow dirigible to dock there. The builders of the Empire State Building failed to realized that building the mast would create too many problems and safety risks. Without thinking about the obstacles, the mooring mast also had problem on its own anyways. According to the excerpt, one of its greatest obstacle was ""The winds on top of the building were constantly shifting due to violent air currents."" This resulted to being a problem because the dirigible could go anywhere, not landing in the mast properly and cause damage. With this problem also came risks for pedestrians who are on the streets. The dirigibles ""...could be weighted down in the back with lead weights"" because it used open landing fields. This was not a good idea to be using these at the Empire State Building. Another thing builders should have considered was that there was a law in place already that is ""...against airships flying too low over urban areas."" All in all, there were alot of things that builders should have considered before attempting to allow dirigible to dock there" 3 3 3 +14944 6 "Based on the excerpt ""The Mooring Mast"" written by Marcia Amidon Lsted, the builders of the Empire State building faced many obsticles in attempting to allow dirigibles to dock there. One main problem was that the architects could not just drop a mooring mast on top of the Empire State building's flat roof. There needed to be modifications made to make it safe for a dirigible to land there. The biggest obstacle was nature. Lsted said it best in paragraph @NUM1, ""The winds on the top of the building were constantly shifting due to the violent currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. The final problem the builders faced was, even if they did manage to figure out a way to put the mooring mast up, there was still a law stating dirigibles illegal to land there. Lsted said in paragraph @NUM2, ""This law would make it illegal for a ship to ever tie up to the building or even approach the area..."". Obviously, from the examples given, the builders of the Empire State building had faced many obstacles in attempting to allow dirigibles to dock there." 3 4 4 +14945 6 "The obstacles the builders of the Empire State building faced were wheather. Nature itself would ruin the time frame of building. Winds would shift, even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast.Another challenge the builders ran into was that dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas." 2 2 2 +14946 6 "The builders of the Empire State building faced many challenges in attempting to allow dirigibles to dock at the mooring at the top of the building. The main challenge was caused by nature itself. The winds above the building were constantly blowing and shifting direction. This would cause any dirigible attempting to dock swing around and below in the wind, which poses many safty risks for passengers going on and off the zepplen. The dirigible could also puncture its frame on nearby buildings while attempting to dock, which also causes safty risks for people on the building and on the ground. Have a zepplen attatched to the building also made it structurally unstable and modifications had to be made the frame of the building to give it more support. In the end, the idea was dropped because it would never work and was unrealistic." 3 2 3 +14947 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced while trying to dock dirigibles. One obstacle was nature. At the top of the building, the winds constantly changing because violent air currents. This would make a ship swivel around dangerously. Even if it was tied in the back would move. ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigibles were tethered to the mooring mast, the back of ship with swivel."" Another obstacle was safety. Foreign ships use hydrogen, and extremely flammable gas. In fields, they use lead weights to weight down. If an accident happened with either it would be extremely fatal. A flaming dirigible or a falling metal object at extreme heights would cause serious injuries because the landing is above a highly populated city. ""Dirigibles from outside the @LOCATION1 use hydrogen... is highly flammable."" ""Could be weighted down by lead weights, but using these at the Empire State building, where they would be hanging high above pedestrians on the street."" A law forbids ships to fly in low urban areas so, if the moore worked it couldn't be used. These events led to the quiet dissaperance of the thought in the late 1930's." 3 3 3 +14948 6 "Throughout the passage, the builders were faced with many obstacles while attempting to allow dirigibles to dock at the empire state building. Al Smith had the idea to have dirigibles be a new form of transportation. The idea sounded great with the dirigibles moving at a rate of seventy five miles per hour and moving thousands of feet without needing to be refuled. Anxious, Al smith was very unsure of when the would all be done, saying, ""it's on the level, all right. No kidding. We're working on the thing now."" It would just not be possible for the architect to drop the huge mooring mass on top of the buildings flat roof. Another problem would be the violent wind currents. The fate of the dirigible had faded out. Airplanes became more suitable to passengers then dirigibles." 1 2 2 +14949 6 Based on the excerpt I just read these are some of the obstacles that the @ORGANIZATION1 one of the obstacles was the balloon becuz it had hellem and it was also flame abou. The secton obstacles is that you cantroll the balloon and the threed obstacles The Empire State Building had was a flat roof. and these are the obstacles that the @ORGANIZATION1. 1 1 1 +14950 6 "There were several obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The first problem they faced was they would have to change & fix the @CAPS1 of the Building in order to compensate for all the Stress there would be on the Building when the dirigibles landed. After they constructed & built the landing, there were several more problems. The first problem was that the hydrogen in the balloons is very flammable. This is a problem because New York is densely populated & with a flammable substance above there heads, it poses a threat. The second problem was the dirigible itself. It can easily blow in the wind, & would constantly wave in the wind, & unlike in a field, weights cold not be tied to the back of it because of the crowds below. The third & final problem they dealt with was the law: airships are not allowed too fly low over urban areas. The Empire State Building was too low in an urban area for anything to fly over it. Several of these problems led to the failure of the original idea & left the Empire State Building with a tall post of no purpose." 3 3 3 +14951 6 "Dirigibles also known today as Blimps used to dock at the empire state building. The Empire State building was used as a docking ground for dirigibles (which are enormous steel formed balloons filled with hydrogen and helium, which made them lighter then air). They had a top speed of @NUM1 mph for thousands of miles. ""Al Smith saw an opportunity for the empire state building: A moor added to the top of the building would allow dirigibles to anchor their for several hours for refueling or service, and to let passengers on and off."" As stated in the excerpt. The dirigibles were docked by an electric winch which stopped the big balloon from going anywhere and tied it to the mast. Al Smith was successful when building moore cause it was good for dirigibles." 0 0 0 +14952 6 "Some of the obstacles the builders of the Empire state Building faced in attempting to allow dirigibles to dock there, was that it wouldnt be able to tie cable tether, because it adds stress to the buildings frame. Also in the story they tell you how the steel frame of the Empire State Building would have to be modified and strengthened to accommadate to the new situation." 2 1 2 +14953 6 "In ""The Mooring Mast"" many of the builders faced obstacles for attempting dirigibles to dock at the empire state building. Many of the reasons had to do with safety. Although the idea to dock dirigibles to the building sounded good many things could of gone wrong. The Empire State building was a enormous structure for it's time, even though it looked ideal for the mast to go on ""winds"" would be too dangerous for even the most skilled pilots to menuver the dirigibles. Also most of the dirigibles from other countrys such as @LOCATION2 used ""hydrogen"" in their blimps. Although the dirigibles were ""hailed"" as the transportation of the future, too many safety precautions had to be taken because of the densely populated area of New York City. For the dirigibles at the time they were a sound and good idea for transportation, but even though the structure of the Empire State building lookd good they still had to be care ful with the building and the people below, and for the German hydrogen filled blimps were not good terms of safety over a populated city." 3 3 3 +14954 6 "The builders of the empire state building faced several obstacles in their attempts to allow dirigibles to dock there. One being the changes in wind current. The dirigibles did have steering systems, and could be tethered however the wind could overpower these systems causing it to loose controll and crash. Another obstacle was the fear of another ""Hindenburg"" accident. On May 6, 1937, the hinden burg (a dirigible) that, like all other dirigibles, contained hydrogen (a highly flamible gas) was ignited and burned down, keeping the casualties mainly to the men and women on board, however, if this incident happened above the highly populated @CAPS1.Y.C. the number of deaths would increase due to the pedestrians below." 2 2 2 +14955 6 "Some obstacles the builders of the Empire State Building faced in attemting to allow dirigibles to dock there are safty and nature. Safty was an obstacle because most dirigibles from outside the U.S used hydrogen instead of helium and because hydrogen is flammible it was not safe at all because it could have caught fire just like the ""Hindenburg caught fire in 1937 so the owners of the Empire state building saw how it was unsafe for the public and the building. Nature is another obstacle because the wind currents on the top of the building kept shifting because of violent air currents. Those are some examples of some obstacles the builders of the Empire state building had." 2 3 3 +14956 6 "Although high expectations were concieved for the Empire State Building, the builders faced many obstacles in attempting to allow dirigibles to dock there, as explained in the excerpt from The Mooring Mast by Marcia Amidon @CAPS1. The dream of having a mooring mast to dock new airships was quickly halted when architects first discovered the stress that a dirigible, held by a single cable tether, would add to the building's fame. As a result, ""the stress of the dirigible's load and the wind pressure would...be transmitted all the way to the building's foundation...nearly eleven hundred feet below"" (paragraph @NUM1). Consequently, architects had to reinforce the buildings framework to accommodate the tremendous amounts of stress. Secondly, the owners of the Empire State Building found that a law concerning airships became an obstacle as well. Stating that airships could not fly too low over populated urban areas, the law became another practical reason why dirigibles could not moor atop the miraculous building. Finally, architects had also discovered the greatest obstacle to their success to be nature itself. The winds atop the building were described to be violent, forceful and unpredictable. As a result, mooring dirigibles to the mast ""where they would be dangling high above pedestrians on the street, was neither practical nor safe"" (paragraph @NUM2). Moreover, the violent winds made it difficult for dirigibles to approach the mooring mast. In December 1930, the captain of the U.S. Navy dirigible ""Los Angeles"" feared that ""the wind would blow the dirigible into the sharp spires of other buildings in the area, which would puncture the dirigible's shell"" (paragraph @NUM3). In effect, the idea of using the mooring mast to dock dirigibles atop the Empire State Building quietly disappeared. As described by Marcia Amidon @CAPS1 in the excerpt from The Mooring Mast, the builders of the Empire State Building faced many obstacles in allowing dirigibles to dock there." 4 4 4 +14957 6 "The Top of the Empire State Building would be more than ornamental, more than a spire or dome or a pyramid but there to add a desired few feet to the height of the building or to mask." 0 0 0 +14958 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were that most dirigibles used hydrogen rather than helium, and hydrogen is highly flammable."" Another reason was the wind. The winds on top of the building were ""constantly shifting due to violent air currents."" It will not be safe for the pedestrians below the Empire State Building." 2 2 2 +14959 6 "In Marcia Amidon Lsted excerpt The Mooring Mast, is about the empire state that was built to being the tallest building. There are copious of ways of the builders faced attempting to allow dirigibles to dock there. In the excerpt it states, ""Most dirigibles used hydrogen rather than helium (hydrogen is more flammable)"". This @CAPS1 proves how it's likely to destroy the whole entire empire state with Fire. Another @CAPS1 that portrays how builders faced attempting to allow dirigibles to dock there when it states,... ""Dangling high above pedestrians on the street was practical nor safe"". This @CAPS1 @CAPS4 the safty of the people walking on the @CAPS5 and what if they get hurt. finally another @CAPS1 that portrays the obtacles the builders faced when it states, ""... blow the dirigible onto the sharp spires of other buildings"". This @CAPS1 proves if the dirigibles blow the empire it's not the only building in danger others around it too." 3 3 3 +14960 6 "In the nonfiction article The Mooring Mast by Marcia Amidon Lsted it gives information of the potential problems from the Mast. In @CAPS1 @NUM1 it says ""The steel Frame of the Empire State Building would have to be modified and strengthened."" This shows that at first the building was not strong enough to hold such weight. Another problem was nature. The workers had to take nature into effect. If they had a dirigible or a blimp up there the wind could potentially harm the dirigible. There was also a law in place that for bid aircraft to fly that low. Finally, workers had to make the height exceed any other height that was taller. In @CAPS1 @NUM2 says ""In December 11, 1929, he announced that the Empire... would reach 1,250 feet..."" John Tauranac also followed by saying ""Their top they said would serve a highe calling."" The builders had a lot to take in to effect they had height issues, frame and law issues. That they had to sort out." 3 2 3 +14961 6 "In the novel, The Mooring Mast, by Marcia Amidon Lsted, obsticals of the Empire State Building faced to attempemt to allow dirigibles to dock there were enginering challenges. A problem with the docking was that the building was complete before the idea came to mind. A second problem was that the whole skeletal structure had to be changed in order for dirigibles to be able to dock. Then the question on how the airships, dirigibles, would stay next to the building. These were harder problem after it was illigale to have dirigibles to be close to buildings as well. Plus the fact that if they crash they are flamable and could kill people. Those are some facts that made it difficult for the Empire State building to build a dirigibles docks in the novel, The Mooring Mast, by Marcia Amidon Lsted." 3 3 3 +14962 6 "In the excerpt from ""The Mooring Mast"" by Marcia Amidon @CAPS1, there is an obstacle the builders of the Empire state Building faced in attempting to allow dirigibles to dock there. This idea would not work because the dirigibles is way to heavy, and that would cause more pessure towards the Empire state building. When there a massive amount of pressure on the building, it would collapse. ""The dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which nearly eleven hundred feet below."" Another obstacle is it was expensive to build it. ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework."" In New York there are many places and people are tightly packed. There isn't any space that is big enough for the dock. ""Some were as long as one thousand feet, the same length as four blocks in New York city."" These are the main obstacles of the Empire state building to allow dirigibles to dock." 2 2 2 +14963 6 "Based on the excerpt ""The Mooring Mast"", by Marcia Amidon @CAPS1, the builders of the Empire State Building faced many obstacles in attempting to let dirigibles dock there. One obstacle they faced was that the building's frame would have to be modified. This was because the dirigible would add stress to the frame of the building when docked on it. These modifications would cost over sixty thousand dollars. Another obstacle the builders faced was that it would be too difficult to keep the dirigibles still. ""The winds on top of the building were constantly shifting due to violent air currents."" This made it dangerous for passengers as well as pedestrians on the street and prevented the dirigible from getting close enough to tie up. A third obstacle the builders faced was that there was an existing law that said airships could not fly too low over urban areas because it was very dangerous. Although it seemed like a good idea, there were too many obstacles and dangers involved in letting dirigibles dock at the Empire State Building." 4 3 4 +14964 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One of the most aparent problems was its a urban area with a lot of pedestrians walking the street. They didnt want to dirigibles flying so close over with out not knowing wha's gunna happen. Another thing was that the German dirigible had been destroyed by fire. They had to think about how worse that could have been if it was on the mooring mast, possibly killing people and completely destroying the building. Also how much more construction and money it would take for the Empire State Building to hold a dirible. There were many problems they didn't think about in the process, that's why the mooring mast wasn't successful as planned." 2 2 2 +14965 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One problem was that a thousand- foot dirigible moored at the top of the building, held by a single cable, would add stress to the buildings frame. So in order to strengthen the frame it would cost over sixty thousand dollars. Another challenge was the stress of the dirigible's load and the wind pressure. The last obstacle was safety because of an accident took place in downtown New York it would be devastating." 2 2 2 +14966 6 "In the excerpt ""The @CAPS1 Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. One obstacle that the builders faced was safety. In paragraph @NUM1, it was said that ""most dirigibles from outside of the @CAPS2 used hydrogen rather than helium"", now hydrogen is highly flammable. In paragraph @NUM2, it states that ""if the dirigible were tethered to the mooring mast, the back of the ship would swivel around"", now thats niether practical nor safe. If the ship is tied, the back should be stable. The last obstacle that the builders faced was a law against airships flying too low. In paragraph @NUM3, it applies that ""this law would make it illegal for a ship to ever tie up to the building or even approach the area"". Though some ships did attempt to reach the building, there was no success in that." 3 2 3 +14967 6 "When the idea of making a mooring mast atop the Empire State Building was thought of, builders did not realize the obstacles that would have to be passed. One obstacle was ""nature itself. The winds, on top of the building were constantly shifting due to violent air currents."" This means that if a dirigible were to be tied up for loading and unloading, it could be moved around freely in the sky, making it dangerous for passengers to be on or around it. An example of the dangerous winds would be in 1930, the ""U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds. A concern for safety was that ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" If something wrong were to happen, there could be great consequences for the heavily populated downtown of @LOCATION2. A third and final obstacle that occurred was ""an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area."" Because of these obstacles, the idea to have dirigibles dock at the top of the Empire State Building seemed impossible, and was never accomplished." 4 3 4 +14968 6 "Now, people know what a ludacris idea it was to have dirigibles dock on top of the Empire State Building; however, in the @DATE1's and @NUM1's people were oblivious to the idea many failures and the obstacles the builders would face. One obstacle that was faced was that most of these dirigibles used hydrogen instead of helium, which is extremely flammable and put the city at risk. Another obstacle was nature, due to the winds on top of the Empire State Building it was hard to bring the dirigibles remotely close to the mast. Yet another obstacle facing the builders of the mast was a law that prohibited airships from flying too low over urban areas like New York City. Overall, the idea could not be projected into a real-life, visual interpretation because of the obstacles faced by the builders of the mast, now people have airplanes and airports to dock the planes - theres no use for the mast on top of the Empire State Building regarding aviation." 3 3 3 +14969 6 "Builders had to face obstacles in attempting to allow dirigibles to dock there. The biggest obstacle is that it is unsafe to have it dangling over the city and thousands of pedestrians. The dirigibles would be held by a single cable tether and that would add a lot of stress on the buildings frame. Another big obstacle they faced was nature. ""The winds on top of the building were constantly shifting due to violent air currents."" Over @MONEY1 would be needed for this to happen." 2 2 2 +14970 6 "Allowing dirigibles to dock at the Empire State Building caused many obstacles. One of these obstacles was that dirigibles outside the @PERSON1 used hydrogen rather than helium. Using hydrogen was highly flamable. They knew how dangerous it was. In the excerpt it says, ""The owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York. Another obstacle people had to deal with was nature. In the excerpt, it says that air currents were ""violent"" and it would be very hard to control the dirigible. Finally, dirigibles mooring at the Empire State Building would be illegal. It says, ""An existing law against airships flying too low over urban areas."" @CAPS1 the dirigibles could not dock over a heavy populated city like New York City. Many obstacles made it challenging to dock dirigibles on the Empire State Building." 3 3 3 +14971 6 "In building the dirigible docks on the Empire State Building builders faced an onslaught of problems that should have been easy to pick up on. Everyone got caught up in the hype in my opinion. Outside of the U.S., other dirigibles used hydrogen, which is highly flammable, instead of helium. After the Hindenburg disaster, ""... the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" Winds also played an obstacle in the construction. ""... the back of the ship would swivel around and around the mooring mast."" The dirigibles would not be able to tie to the dock and stay because of violent air currents. There was a law holding airships from flying too low in urban areas. ""The law would make it illegal for air ship to ever tie up to the building or even approach the area...,"". Finally, times changed and planes became the new fad for air transport, ending dirigibles run as the main provider." 3 3 3 +14972 6 "The builders ran into quite a few problems when they attempted to allow dirigibles to dock on the Empire state Building. As stated in paragraph @NUM1 ""Most dirigibles from outside of the United States used hydrogen rather than helium; and hydrogen is highly flammable."" This would mean that if a docked dirigible filled with hydrogen were to catch on fire it would burn down the Empire State Building and much of the city, killing many people with its explosion. Another main obstacle As stated in paragraph @NUM2 was nature ""The winds on top of the building were constantly shifting due to violent air currents"". These winds would make it almost impossible for a dirigible to reach the mast and actually dock. In addition the dirigible would be swinging around violently once it was tied to the mast The third major problem was the law against aircraft flying low over urban areas as stated in paragraph @NUM3 ""This law would make it illegal for a ship to ever tie up to the building or even approach the area"". With the law in the way no one would even want to try. Those are the three major problems found when building the mast" 4 3 4 +14973 6 "The empire state building builders had to face hard obstacles by.... ""accommodating passengers,"" new routes, and the greatest obstacle was to nature itself. By accommodating the passengers they had to bring them to the existing transatlantic routes. This was because the new routes weren't made yet. Reasoning being is because the building needed to be more taller. So then they added more things on the top of it. They wanted the State Building to nature itself because the building @CAPS1 Shifting from ""violent air currents"". Also the dirigible was more open fields to the moor. The State building also was weight down by the lead weights." 1 1 1 +14974 6 "There are a few obstacles the builders faced when attempting to allow dirigibles to dock on the Empire State Building. One was the violently changing wind currents at the height the docking to place. This would move the blimp and possibly send it into another building, puncturing the side of the balloon. Dirigible after dirigible being docked would put a lot of stress on the building itself. It would disrupt the frame and possibly effect the building as a whole. Also most dirigibles outside the United States used hydrogen rather than helium. Hydrogen is highly flamable as seen in the Hindenburg disaster. Due to all these reasons the mooring mast never saw a docked blimp." 3 3 3 +14975 6 "According to the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, engeneers fused several obstacle when they attempted to allow dirigibles to dock in the @CAPS1 state Building. As stated in paragraph number nine, there @CAPS2 problem was ""the stress of the dirigiblel's load."" With all this weight being transmited to the buildings foundation, the steel frame of the Empire State Building would have to be modified and strengthened to accommodate its new situation This was verry expensive todo. Sixty thousand dollars wer nesciary.Another problem was that the blimps would not stay still while docked The winds would toss it around. A solution was putting waights at the back of the landing fields, but the weights ""would be dangling high above pedestrans on the street"" like explaine in paragraph @NUM1. " 3 2 3 +14976 6 "When building the Empire State Building, builders were faced with several obstacles in their attempts to have dirigibles dock there. The builders first had to ensure that the building was going to be able to support the dirigible. After they completed this issues relating to safety arose. It was very dangerous to because some air ballons were made out of hydrogen which were flammable. If their were any issues, New York's population could be in grave danger. The wind also was an issue ... because it was so shifty a dirigble would be heavy in the back. Dangling above new york was very dangerous. The last complications that affected the idea of docking the drigbles was ""an existing law against airships flying too low over urban area."" because of the law, safety and nature complications, builders were never able to successfully reach their goal of allowing dirigibles to dock on the Empire State Building." 3 3 3 +14977 6 "In the excerpt, The Mooring Mast, by Marcia Amidon Lsted, had many obstacles of the construction of the Empire State Building in allowing dirigibles to dock there. The author states ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" That law was considered illegal for a ship to approach the area and to get tied up to the building. Another obstacle was the lack of landing area, it was a challenge to expand in New York City, causing it hard to land dirigibles. The greatest obstacle was nature itself, the weather would cause the dirigibles to swivel around the mooring mast. The author states, ""Dirigibles moored in open landing fields could be weighted down in the back with lead weights... dangling high above pedestrians on the street, was neither practical nor safe.""" 3 3 3 +14978 6 "The builders of the Empire State building faced many difficulties in attempting to allow dirigibles to dock there. One difficulty they faced was when they were designing the mast. They ""could not simply drop a mooring mast on top of the Empire State Building's flat roof..."" ( @NUM1) because it ""would add stress to the building's frame"". ( @NUM1) this was a difficulty because the Empire State Building's frame had to be modified and strengthened to accommodate it, resulting in @MONEY1 in modifications. Another difficulty faced by the builders was in regards to nature. As dirigibles use ""hydrogen instead of helium"" ( @NUM3), there was a great risk of fire; always a problem above New York City. The wind was also a problem. The winds on top of the building were ""constantly shifting due to violent air currents"" ( @NUM4). The back of the ship would have to be weighed down by lead; again, not feasible in New York City. A final difficulty the builders faced were existing air laws. The builders' faced the issue of existing law against airships ""flying too low over urban areas."" ( @NUM5) This made it ""illegal for a ship to ever tie up to the building or even approach the area."" ( @NUM5) Some of the many difficulties faced by builders of the Empire State Building were mast designs, nature and existing air flights laws." 4 4 4 +14979 6 Some of the Problems they faced building the emPire State building was the hight. building a buildig that high up and also epecting it to do things such as bording dirigibles. The @CAPS1 of the dirigible against the building could couse it to collapes. thats why The contractor to to re shape the Skeleton of the building. 1 1 1 +14980 6 "In the passage, ""The Mooring Mast"" by Marcia Amidon @CAPS1, there were a lot of conflicts that the builders ran into while trying to let the dirigibles dock at the Empire State Building. One problem was safety. Unlike regular balloons, dirigibles were made of hydrogen. Hydrogen is highly flamable. This would have been a problem if it was above people on the street and the building. Another problem was nature. The winds, where they would have docked, would have been way to strong. As the passage says ""the winds on top of the building were constanly shifting due to violent air currents."" (@NUM1). One last reason is because there was a law against aircrafts from fly to close to neiborhoods. All and all the dirigibles ran into a lot of people." 3 3 3 +14981 6 "Al Smith, a former governor of New York had a brilliant idea to make the empire state building, the tallest building in the world. He would put a mooring mast on the top to @CAPS1. dirigibles to the top so the dirigibles could let passengers off here. But, this plan had many @NUM1, ""The stress of the dirigible's load into the wind pressure would have to be transmitted all the way to the buildings foundation"". This is a problem because if the mast was just placed on the building, it would destroy itself. Another problem is that ""most dirigibles from outside of the United States use hydrogen."" Hydrogen is a very flamable gas, and would put the whole section of the city underneath the Zeppelin at risk. The third Reason was an existing law which prevented airships from flying too low in urban areas." 3 3 3 +14982 6 "In the excerpt from ""The @CAPS1 Mast"" by Marcia Amidon @CAPS2, many obstacles are described from the construction of the Empire State Building in New York City. Thousands of dollars were spent on hopeless modifications to the building, in efforts to add a mooring mast to the top for the docking of dirigibles, or blimps. These efforts however were unsuccessful. Two main obstacles builders faced during construction were safety in nature. After a 1937 dirigible fire in New Jersey, owners of the Empire State Building ""...realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" (@NUM1, @CAPS2) and an existing law forbade low airships in urban areas. Also, the unpredictable winds provided workers with a very risky, dangerous situation in the end, although builders faced many obstacles during construction, diribles were never docked on the building." 4 3 4 +14983 6 "The Empire state building faced several major problems in making a station for diridgibles to dock. One is, that at that time there was a law prohibiting airships of any kind landing/docking in a residential area, never mind a densely populated city. There will were also many issues with practicalities with the mast, if it was even constructed. It would have been a huge hassle to get the huge airships docked, and keeping them there, never mind the extremely flammible hydrogen gas zeppelins were often filled with." 2 2 2 +14984 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was for many differents reasons. One of them is the wether, ""the greatest obstacle to sucessful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents"". The second one is that they have a law aganist airships, ""was an existing law aganist airships flying too low over urban areas"". The also have have the problem is that the dirigible will be dangling high above people reads, ""...they would be dangling high above pedestrians on the street, was neither practical nor safe"". This is some of the problems that they have." 3 3 3 +14985 6 "The builders of the empire state building had to face the obstacle of safety, to make sure everyone can get on the dirigible safely without any form of danger. Another obstacle is arranging the dirigibles so that they are able to board passengers from there. @PERSON1 said ""the height made it desirable to postpone to a later date the final installation of the landing gears."" People did'nt want to try it, so that would be another obstacle. If people did'nt want to try it then it will become just a decoration, and that's not what Al Smith wanted. Last obstacle would be that it would'nt hold for long as said in the excerpt ""The mooring mast on the Empire State Building was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed."" In other words, the architects did'nt think to far a head into the future to see if the mooring mast would even be used. These are some of the obstacles that the builders had to face." 0 2 0 +14986 6 The builders of the Empire State Building faced many obstacles while constructing a mast that would make it possible for dirigibles to dock. The greatest obstacle of all was nature itself. It was unrealistic to have a dirigible tied by a single cable tether to remain intact when the winds on top of the building were constantly changing due to violent air currents. The back of the ship would swivel around the mast which was hazardous for pedestrians. There was nothing the builders could do to alter nature so their ideas soon became unrealistic. Another obstacle the builders faced while constructing the building was that the dirigible's weight would add to much stress (especially with added wind pressure) to the building's frame. They then decided the only way to fix that problem was to shift the weight to the building's foundation. 3 3 3 +14987 6 "The builders of the Empire State Building faced many obstacles while attempting to allow dirigibles to dock there. One problem was attaching a mooring mast to the top of the building. Because of the height of the Empire State Building, they were unable to just drop the mast onto the roof for would have interfered with the buildings overall frame. In order to keep the mooring mast atop the roof, the architects spent thousands of dollars on modifying the framework of the building. Another obstacle for the docking of diribles was the preservation of the safety of the public below. Dirigibles were inflated with highly flammable hydrogen, creating the risk of a massive explosion over New York and endangering countless lives. Lastly, a very important obstacle for the builders was the danger of nature. Violent air currents filled the winds above and around the Empire State Building. Even if a dirigible were strung to the roof, the back of the ship would continue to swivel, causing even more danger to citizens below the building. Those were some obstacles that builders faced and prevented to making of a mooring mast to let dirigibles to dock at the Empire State Building." 4 3 4 +14988 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was the frame of the building. In @LOCATION1 @NUM1, it explains that attaching a durgible to the building would add stress to the building's frame. They had to modify the whole frame of the building to a stronger material for the mooring mast to work. One of the biggest obstacles was safety. Most durgibles use hydrogen to power them, and hydrogen is highly flammable. There is a great risk of the dirigibles to catch on fire when flying over such a densely populated area as New York. Another obstacle in the way of the mooring mast was the conditions at the top of the building. At the top of the Empire State Building, there are violent winds that would cause the dirigibles to swivel around the mooring mast. Lastly, An obstacle the builders faced was the law against airships flying too low over urban areas. As explained in @LOCATION1, because of this law, it is illegal to even fly up to the Empire State building. With all of these obstacles, it is clear why the mooring mast wasn't used." 3 3 3 +14989 6 "The builders of the Empire State Building faced some problems while trying to allow the dirigibles to dock there. They couldn't just allow the dirigibles to land on the buildings flat roof, because it weighed too much and would add stress to the buildings frame.The plan never followed through for a few reasons. A big issue was safety. The dirigibles used hydrogen, which is highly flammable. The highly flammable substance was too dangerous to use above New York. The greatest issue was the wind. It was always changing because of air currents. The dirigible could be tethered down, but it would be floating in the air above pedestrians. The plan to build a mooring mast on the Empire State Building to allow dirigibles to dock their was a failure." 2 3 3 +14990 6 "While building the Empire State Building, Al Smith believed he had solved the problems of dirigibles having no where to land. However, having the building as a place for dirigibles to dock proved to be much harder than it seemed. First, the balloon would cause too much stress to the building's frame. The author states, ""The stress of the dirigible's load and wind pressure would have to be transmitted all the way to the building's foundation..."" (@CAPS1 @NUM1). Also, because this frame would need to be modified, a lot of money would need to be spent. The author states, ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework"" (@CAPS1 @NUM1). It was too risky to invest on such an unsure project. Also, they realized how dangerous any accidents could be over such a populated area. The author explains, ""Most dirigibles from outside the United States used Hydrogen rather than helium, and hydrogen is highly flammable"" (@CAPS1 @NUM3). If anything had happened, a very large part of New York could have suffered. Although the plan of creating a mast for dirigibles was impressive, it was neither logical financially, or logical for saftey reasons." 4 3 4 +14991 6 "During the Building of the Mast, the builders faced many obstacles in allowing dirigibles to dock there. The @CAPS1 obstacle was the building itself. By adding the mast lots of stress would be added to the buildings frame and therefore strengthening modifications had to take place before the mast was erected. Another problem was how to tether the Blimp properly since they are generally landed in wide open fields which allowed for wieghts to be place in the front and back of the blimp, they could be secured properly. But since the blimp was going to be attached to a mast, there was no way to secure the back of the blimp and therefore no safe way to tie the blimp down. And finally the last problem builders faced was the how to even get the blimp docked. Since there was such high winds on top of the building there was no feasible way to dock the blimp in less it was perfect weather. Ultimately all those problems made it so the mast could never be used." 3 3 3 +14992 6 "Many obstacles stood in the way of docking the dirigibles on the empire state. One obstacle the builders faced was the law stating airships couldn't fly too low over urban areas. Also, the builders would have to reinforce parts of the building to support the stress the dirigibles would place on the frame.Lastly, nature would not allow the dirigibles to be safely docked due to the fact the violent winds would shift the back of the dirigible making it sway wildly. These obstacles made sure that dirigibles could not be docked at the empire state." 3 3 3 +14993 6 "Te obstacles that the builders of the empire State building faced in attempting to allow dirigibles to dock there were, the dirigibles would add stress to the frame of the building, The steel frame of the empire State Building would have to be modified and Strengthened to accommodate this situation, over Sixty thousand dollars were needed to moderate the @CAPS1 Of the building, The greatest Obstacle was nature itself because the winds on the top of the building were Constantly Shifting due to violent Air currents. This were some of the obstacles to the builders of the empire state builders to attempt to allow dirigibles dock there." 2 2 2 +14994 6 "The obstacles that builders faced in making the Empire State Building a docking point reached the greatest problems. Obstacles come in all forms, depending on the size of the goal. The goal's size was immense so the range was in its greatest. The problems were law, nature, safety, and the point of docking.Firstly, the main problem was the location. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" This would have not only tore down the entire building but send it crashing down onto pedestrians within the range of eleven hundred feet it the direction it was hauled. Secondly, instead of helium, dirigibles used hydrogen instead, ""and hydrogen is highly flammable."" This put a safety issue, especially over a highly populated urban area, like New York. Thirdly, the building was so high, it intercepted higher forces of wind. ""The winds on top of the building were constantly shifting due to violent air currents."" This could have made a dirigibles strain against the building or fresh against the mooring point. Lastly, law prevented all ""airships flying too low over urban areas."" As high as the Empire State Building was it was too close the public.Overall, the builders were impacient and that created obstacles in allowing dirigibles to dock at the Empire State Building. They made the goal so large, it caused the obstacles to reach their range of difficulty. The purpose of the Empire State Building may be a failure, but it still is the tallest building constructed." 3 3 3 +14995 6 "In the short story, ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles when building the mask. The entire steel frame of the Building would have had to be strengthened to hold the weight of the mast. The mast, which towered at over @NUM1 feet tall, would have stressed the steel frame of the Building, making its foundation weaker. To hold the mast, ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework."" This meant that the builders had to really think through the process of how they were going to get the mast to not bend the steel frame. Another obstacle the builders faced was a new law that forbid airships from flying too low over urban areas, such as New York. Therefore, ""This law would make it illegal for a ship to ever tie up to the Building or even approach the area. ""Because of this law, the mast was very rarely used. Regardless of what they tried, the builders would have to make big changes to the Empire State Building's framework in order to have the mast. However, the new law prevented airships from docking there, so the mast was not used as often as originally projected. The mast did help make the Empire State Building the largest building in the world at 1,250 feet, but it forced strengthening and fixing of the building's framework, and the mask was not used as much as the builders thought." 3 4 4 +14996 6 "The builders came across many obstacles while trying to build the Empire State building for dirigibles to dock. One obstacle was just having ""... a single cable tether."" which they went on to say it would add stress to the building so they had to fix that. They choose to modify the frame and strengthen it as well. Another obstacle was having to get the right equipment. They had to go get some information from the @ORGANIZATION2 air station. The last obstacle would be the dirigibles were filled with oxygen instead of Helium. This had meant it was very flammable which was something the must consider. While trying to make this work for the dirigibles they came across building problems, safety, and dangerous problems." 2 2 2 +14997 6 When the Empire State building was built the workers were trying to find new ways to @CAPS1 the structure. They had sudently had found some problems with one being the top of the empire state building. Workers had tryed to figure out hwo they were going to but a Dirigibles on top of the building so that they could be able to pick up people and to drop them off up there but there were different problems. 1 1 1 +14998 6 "The builders of the Empire State Building's mast were confronted with many obstacles to overcome. Firstly, the builders had to compensate for the stress a docked airship would place on the building. According to @CAPS1, ""the stress... would be transmitted all the way to the building's foundation."" As a result, the building's steel frame would need to be modified to accommodate the load. Another obstacle faced by the builders were the weather conditions at that height: ""The winds on top of the building were constantly shifting due to violent air currents."" Any airship attempting to dock there would be violently buffeted around by the wind. Finally, there was the obstacle of safety. As @CAPS1 states, ""Most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is extremely flammable."" @CAPS3 of a Hindenburg-type accident over a densely populated area gave pause to the builders. In conclusion, the builders had to face several huge obstacles, which combined eventually doomed the project." 3 3 3 +14999 6 "In order for the Empire State Building to dock dirigibles (blimps), many obstacles had to be overcome by the architects. One of those obstacles was the Empire State Building's frame. If a thousand-foot dirigible was moored on top of the building with just a single cable tether, it would add tremendous stress to the foundation of the building due to the dirigibles load and wind pressure. Another obstacle that the architects faced was safety. Because dirigibles in the @LOCATION2 used hydrogen, a highly flammable gas, instead of helium, there was a high risk of the dirigible exploding, and threatening the dense population of downtown New York City. Possibly the greatest obstacle that the architects had to face was high winds. On top of the Empire State Building, the winds were constantly shifting due to violent air currents. Even if lead weights could be used to weigh down and control the docked dirigible, they would still be unsafely dangling about the pedestrians of the streets below. Those are some obstacles that the architects of the Empire State Building faced in an attempt to dock dirigibles." 4 4 4 +15000 6 "In the passage, ""The Mooring Mast,"" by Marcia Amidon @CAPS1, a myriad of obstacles had faced the builders of the Empire State Building in terms of allowing dirigibles to dock there. First was the problem of constructing a mooring mast on top of the building's flat roof. Because, ""a thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame,"" the building would be unable to support the stress of both the dirigible and wind pressure. Next, safety became an issue. After the discovery that, ""most dirigible's built outside the United States use hydrogen rather than helium, and hydrogen is highly flammable"", owners of the Empire State Building realized the hazard involved when having a highly flammable object fly over a densely populated area. This was brought to their attention when a German dirigible was destroyed by a fire in Lakehurst, New Jersey. An addition problem was nature itself. The winds on top of the building posed the problem of having the dirigibles back end swivel around the mooring mast, seeing as weights could not be used to weight the back down since they would be dangling above pedestrians on the street. Lastly, there was, ""an existing law against airships flying too low over urban areas."" @CAPS2, it would be illegal for a Ship to be tied up to the building or approach the area. In light of the aforementioned reasons, it is evident that the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there." 4 4 4 +15001 6 "Ambitious for its time, the idea of allowing dirigibles to dock at the top of the Empire State Building was doomed from the start. The engineers and builders of the mooring mast were faced with many obstacles that could potentially inhibit safe docking at the top of the building. The first major obstacle was finding a way to tether the dirigible to the dock. As described in paragraph @NUM1, ""A thousand-foot dirigible moored at the top of the building, held on by a single cable tether, would add stress to the building's frame."" Modifications would have to be made to the entire building. Another obstacle the engineers were faced with was stabilizing the dirigible once it was tethered to the building. As described in paragraph @NUM2, ""The winds on top of the building were constantly shifting due to violent air currents."" This would make it nearly impossible for passengers and crew to get on or off the dirigible. These obstacles, baffled engineers and builders of the Empire State Building until the project was abandoned entirely." 3 3 3 +15002 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigible to dock there were many and at the end the dock could not happen. One of the obstacle was that buildings foundation had to be modified. In the story it says, ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation which was nearly eleven hundred feet below."". Being so high the dock would be moved around because of the winds. Also the blimp itself could not even attached itself to the dock because the winds wouldn't let it. In the end the dock wasnt meant to happen it came with a lot of problem for the builders and even the artitechs." 2 3 3 +15003 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted there are many obstacles that the builders stumble across. Many people would have a hard time with creating the docs for the dirigibles for the Empire State Building. One major obstacle that the builders had was ""The one obstacle to their expanded use in New York City was the lack of a suitable landing area."" Another obstacle that they could come across is that the dirigibles could take to long to fuel up and could cause a jam with other dirigibles. Even though they had this huge obstacle they managed to get their way and they found a way to actually use the dirigibles without any types of problems." 1 1 1 +15004 6 "From the excerpt ""The Mooring Mast"" by Marcia Amidon @CAPS1 she describies the obsticles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. Three of the main obsticles they faced where there was a lack of suitble landing area, they would have to reconstruct the building's framework, and there was a law against it. The Dirigibles are enormous steel framed balloons, that have envelopes of cotton fabric. They are also filled with hydrogen and Helium to make them lighter and float eayser. As a result of the Dirigibles being so large, some over one thousand feet, there was really no place for them to land. ""The architects could not simply drop a mooring mast on top of the empire state Buildings flat roof, it would add to much stress to the buildings frame"" (paragraph @NUM1). Another obsticle being faced was they would have to spend over sixty thousand dollars to the building's framework just so the building could support the Dirigible. The third obsticle faced was there was a law agianst it. It claimed that there would be no airships flying too low over urban areas. So even if they did build a landing area, and spend the sixty thousand dollars on the building's framework they wouldnt be able to use them because of the law. Even though the idea of having a dirigible dock on the Empire State building the obsticles too face were to great for the builders with the lack of a sutible landing area, the reconstructing of the framework, and the law agianst aircrafts flying to low." 4 4 4 +15005 6 "There were obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. A practical reason why was a law against airships flying too close over urban areas like New York. The law would make it illegal for a dirigible to even approach the building. The greater reason was the issue of safety. If a ship came in to dock with use of hydrogen (a highly flammable gas), an explosion is possible, harming everyone bellow.The greatest obstacle were the shifting winds from air currents. Even if tethered down, the ship would swivel around the tower getting tangled. In conclusion, the idea had to be dropt, though some ships have tried to dock their." 3 3 3 +15006 6 "I've been to the Empire state building before, right up to the top. The top was not opened, but several windows were, and our thing that still stays with me is how amazingly windy it is up there. Trying to park a blimp on top of the building would be like trying to park a car in a flood, impossible I was waiting for that factor to come up the whole story, and it finally did. ""The winds on top of the building work constantly shifting due to violent air currents"" (@CAPS1 @NUM1) In addition to parking the blimp, the passengers would have to get off on a swaying gang-plank, which would not be too fun. Another problem they faced was the law. There was ""an existing law against airships flying too low over urban areas."" (@CAPS1 @NUM2) I would think that before spending @MONEY1 on an already unrealistic project, they would at least have made sure they were cleared law-wise. When I read this essay, it seems the project was doomed from the start." 3 3 3 +15007 6 "In the excerpt, The Mooring Mast by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles to allow dirigibles to dock there. One obstacle was the lack of a suitable landing area. So Al Smith thought putting a mooring mast at the top of the building, would allow dirigibles to dock there several hours. It would allow the dirigibles to refuel or get serviced and let passengers on and off. Another obstacle would be how the dirigible would be moored. It would be held by a single cable tether, which would add stress to the frame of the building. The stress of the load and wind pressure would have to be transferred all the way to the foundation of the building, which was about eleven hundred feet below. Third obstacle would be using hydrogen or helium. If they used hydrogen it is highly flammable, and the German dirigible Hindenburg was destroyed by fire. Those are some of the obstacles the builders had to face in attempting to allow dirigibles to dock there." 3 3 3 +15008 6 "In ""The Mooring Mast"" by Marcia Amidon Lsted talks about The Mooring Mast or also known as the Empire State Building of how it was built and the original purposes of the building. During the making of the Empire State Building, builders faced issues in attempting to allow dirigibles to dock there such as architectural problems, different gases, and the law. The builders faced a problem with the architect of building. The roof top was a flat as it says ""the architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" That meant the heavy dirigible would add stress to the building's frame Another issue they faced was the gas some dirigible used @CAPS1 dirigibles were filled with different gases and ""most dirigibles from outside of the United States used hydrogen rather than Helium, and hydrogen is highly flammable."" It meant that the building could catch on fire and whole downtown New York. They also faced an issue with the law saying ""an existing law against airships flying too low over urban areas"". It explains it would be illegal to tie a dirigible on the building" 3 3 3 +15009 6 "The excerpt ""The Mooring Mast"" by Marcia Amidon Lsted explains the construction of the Empire State Building in New York. The excerpt explains the steps of building the building as well is the obstacles and challenges that the builder faced. The architects of building the Empire State Building attempted to allow dirigibles to dock there, did not take into account the problems that may come with taking on such a large project.The creator of this plan to build a docking mast on the Empire State Building was Al Smith. Al Smith was so excited to build the mast, that he did not think about the complications associated with his ""master"" plan. Because of the stress of the dirigible's load and the wind pressure, it was necessary for the building's frame to be strengthened which costed over sixty thousand dollars. The greatest obstacle for the builders was a matter of safety. Most dirigibles use hydrogen rather than helium, and hydrogen was known to be very flammable. If something like that happened over a densely populated area such as downtown New York. Another obstacle was nature. The winds on top of the building were constantly shifting due to violent air currents. Also there was an existing law against airships flying too low over urban areas. This excerpt shows that before you leap on a large challenge, you should look and take into account obstacles that may come with that." 3 4 4 +15010 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were accidents over densely populated areas, violent air currents constantly shifting, etc." 1 1 1 +15011 6 "The idea to put a mast on top of the empire building @CAPS1 like a brilliant idea. People thought it would be a great idea to dock a dirigible on the mast, expecially because ""New york city was the lack of Suitable landing areas."" But it is easy to @CAPS2 how the mooring mast would never be able to dock drigibles. One reason this could never happen is because @CAPS3 of these drigibles contained hydrogen in them wich is highly flammable. ""When the german dirigible Hindenburg was destroyed by fire in lakehurst, New Jersey.... the empire State building realized how much worst that accident could have been."" @CAPS3 people would die if this happened over a highly populated area. Another reason that the mast would never be able to be used is because there was, ""an existing law against airships flying too low or over urban areas."" @CAPS4 even if everything was Set up correctly they would be breaking the law flying there dirigibles @CAPS4 close to the city. But the most obvious reason is that the weather would be to unpredictable above the empire State building. ""The winds on top of the building were constantly Shifting due violent air currents."" The mooring mast would just be a tottally unstable place to dock these drigibles." 3 3 3 +15012 6 "In attempting to allow dirigibles to dock on the Empire State Building, the architects faced many problems. One of these problems was the buildings frame. The frame needed to be modified and strengthened to accommodate the new mast. Another huge obstacle was safety. In paragraph @NUM1 the author states, ""hydrogen is highly flammable."" If a dirigible were to go up in @CAPS1 not only the passengers would be in danger but everybody on the crowded streets below. The winds at such a high altitude also posed a threat. Paragraph @NUM2 explains that the violent air currents would cause the back of the ship to swivel all over the place, making it hard for passengers to unload. These were just some of the many problems builders faced while attempting to allow dirigibles to dock on the Empire State Building." 3 3 3 +15013 6 In the excerpt the builders had wanted dirigibles to dock at the top of the empire state building. They found that they couldn't do that because the winds would push the dirigibles in all different dirrections. And also there was a law that air crafts had to be a certain height in the air. 2 1 2 +15014 6 "When the Empire State Building was conceived, it was planned as the world's tallest building, taller even than the new Chrysler Building that was being constructed at forty-second Street. and lexington Avenue in New York. The top of the Empire State Building be more than ornamental, more than a spire or dome or a pyramid. The age of dirigibles. The navy was the leader in the research and development of dirigibles in the United States. the architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. Once the archietects had designed the mooring Mast and made changes to the existing plans for the building's skeleton." 1 2 2 +15015 6 "The obstacles the builders fact was that they could not simply drop a mooring mast on top of the Empire State Building's flat roof. The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation. The Steel Frame of the Empire state Building would have to be modified and Strengthened to accommodate this new situation. The greatest reason was safety: most dirigibles from outside of the united states used Hydrogen rather than helium, and Hydrogen is highly flammable. The winds on top of the building were constantly shifting due to violent air currents. The back of the ship would swivel around and around the mooring mast. existing law against airships flying too low." 3 3 3 +15016 6 "Some of the obstacles the builders of the Empire State building faced were the winds in the high altitudes, the laws that didn't allow airships to be so close to an urban area, the safety of the passengers, and the safety of the pedestrians below." 2 2 2 +15017 6 The building was big and beatful. 0 0 0 +15018 6 "It was unrealistic and also unsafe of engineers to think that they could have dirigibles dock on the building. One major problem with the idea that the dirigible would add stress to the building's frame. Also the weight of the dirigible and the wind pressure would cause a problem for the foundation. Another thing, dirigibles were made up of hydrogen which is highly flammable, and if one of the exploded it would have been a disaster for downtown New York. This is why the idea is neither practical or safe." 2 2 2 +15019 6 "Based on excerpt, ""The Mooring @CAPS1,"" by Marcia Amidon Lsted, the builders of the Empire State Building faced certain obstacles in attempting to allow dirigibles to dock there, such as the violent air currents, and the safety of pedestrians.One obstacle the builders of the Empire State Building faced was the violent air currents. According to the excerpt, the winds on the top of the building were constantly shifting. So if a dirigible happened to get caught in this they would be dangling high above pedestrians. Example of this would be, ""the winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring @CAPS1 the back of the ship with swivel around and around the mooring mast."" (@NUM1) Another obstacle was the safety of pedestrians. When owners heard about the German dirigible, Hindenburg, was destroyed by fire in Lakehurst, New Jersey, they decided that it would be even worse if it had taken place in a heavily populated place like New York. An example of this would be, ""owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York.""In conclusion, the excerpt, ""The Mooring Mast"", written by Marcia Amidon Lsted, the builders of the Empire State Building faced certain obstacles in attempting to allow dirigibles to dock there. Such as the violent air currents and the city pedestrians." 3 3 3 +15020 6 "The Empire State building faced many obstacles while attempting to allow dirigables to dock there. This building being so tall, and large wind shifts were a constent worry. Wind shifts, is when the direction of the wind shifts suddenly. One minute its @LOCATION1, the next its @LOCATION2. On may 6, 1937, when German dirigible Hindenburg, caught on fire, people thought, what would have happened if that was over the empire state building. over New York, with such a large population, it would have been hectic. Airships werent allowed to fly that low anyways." 2 2 2 +15021 6 "The task of trying to allow dirigibles to dock 1,250 ft. above round over the city of New York not shockingly posted a few obstacles for the builders of the Empire State Building.Before the dirigibles could even try to dock on the mast, the builders had to modify the whole building due to the stress and pressure on the building from the dirigibles. The modifications cost over sixty thousand dollars to strengthen the building once the builders finally had all the modifications and building done; they were faced with a whole new set of obstacles. Most of the dirigibles from out of the united states were filled with flammable hydrogen. ""The german dirigible @CAPS1 was destroyed by fire in @LOCATION3, New Jersey"". This accident worried @CAPS2. Also they faced problems with the shifting winds and air currents that made it difficult to dock the dirigibles. Another obstacle was the fact that laws existed against airships flying too low to the ground. Due to these unforeseen obstacles, the idea of docking on top of the building disappeared." 3 3 3 +15022 6 "Based on the information given in the excerpt, there are multiple obstacles they couldn't have been overcome by the builders of the empire state building. Between the winds, problems with ancoring, risk of Fire and sharp spires, there were also legal issues that would first have to be bested.One thing the builders of the Empire State building hadn't considered was the wind current. Because the dirigibles were primarilly huge propelled balloons, the wind could push them around, and at 1,250 Feet, there isn't very much around to slow or block the wind. They also didn't think about the @CAPS1 that hydrogen, a key gas involved with lifting dirigibles, was very Flammable and if one was to ascend in @CAPS2, dozens or maybe even hundreds of people bellow would be doomed.More problems the architects face were the sharp spires atop many of the buildings around. If a pilot were to lose control of the bimp, then it would cause @MONEY1 of damage to the city.Lastly, a new law was undergoing a legislation process. It prohibited the flying of any air travel bellow a certain Feet in residential areas." 2 4 3 +15023 6 "The builders of the Empire State Building faced many obstacles while attempting to allow dirigibles to dock atop it.One major obstacle was safety, ""Most dirigibles from outside of the [@LOCATION2] used hydrogen rather than helium, and hydrogen is highly flammable"". The owners quickly realized how dangerous an accident would be ""above a densely populated area such as downtown New York"".The second major obstacle was nature; ""the winds on top of the building were constantly shifting due to violent air currents"". A thousand-foot dirigible moored atop the building would add enormous stress to the frame of the building.In the end these two obstacles would be too great. Times were changing and with the air plane taking over modern travel the dirigible and the mooring mast were doomed." 2 3 3 +15024 6 "The builders of the Empire State Building faced many obstacles when it came to allowing dirigibles to dock on the mooring mast of the building. They first had to do modify this top as a mooring mast and the steel frame of the building had to be modified to accomadate the dirigible. They also had to make a docking and ticketing area, which also costed money. They also had the problem if the dirigible hit something or caught fire by its hydrogen gas. Nature itself was the biggest problem because near the building, winds were violent. There also was a law stating that dirigibles or airships couldn't fly too low over urban areas. If the shell broke, the dirigible could hurt many people." 3 2 3 +15025 6 When building a structer as big as the Empire state building and even having it dock a Dirigible to the top of it means there will be challenges to face. In order for It dock. The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the buildings foundation. The building would have to be @CAPS1. All these problems must be taken into consideration. This would mean spending more money 1 1 1 +15026 6 "When the builders of the Empire State Building were attempting to allow dirigibles to dock there, they had great intentions but faced some obstacles along the way. This job was not an easy thing to accomplish, it's not as simple as it might sound. If the builders added a thousand-foot dirigible moored at the top of the building, held by a single cable tether, it would add stress to the buildings frame. All of the stress would be transmitted all the way to the building's foundation, so they would have to modify and strengthen the steel. This would cost over @MONEY1, and thats a lot. The greatest obstacle was nature itself, the wind up at the top was constantly shifting. This wouldn't be safe either. There was also a law against airships driving too low and this would enable them from being able to dock. Also since other dirigibles from other countries used hydrogen instead of helium, it could easily cause a fire. The main obsticle for the builders was saftey when they were building this, there were many unsafe outcomes so it was too risky to construct." 3 4 3 +15027 6 "One of the obstacles that the builders of the Empire State Building faced was that the construction of the mooring mast would add stress to the building due to its height. The architects, however, were able to design a special type of stainless steel that would be illuminated from the inside and provide support. Another obstacle was that the dirigibles used hydrogen instead of helium, and having such an airship with flammable gas nearby civilization was considered unreasonable. Thus, a law was passed that forbid the transportation of dirigibles close to the public. Nature was also against the architects, and so posed a safety hazard when high-speed winds attempted to @CAPS1 the dirigibles from the sky while being weighed down with lead weights. In the end, the mooring mast on the Empire State Building was never used due to these issues." 3 3 3 +15028 6 "There were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock, there. They had known that the mooring mast wasn't perfect. There were many reasons but the greatest one they said was the safety. The hydrogen in them is highly flammable and after the accident in New Jersey in 1937, they noticed how much more dangerous it would be if it happened right in New York. So they dropped the idea later on and left the transportation to the airplanes." 1 2 2 +15029 6 "There were several obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One major problem was the stress added to the building's frame when the dirigible wore it at the top of the building. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation."" This meant that they would have to rearrange the frame to make it work. Consequently, the workers were never able to accomplish the goal. Safety was a major factor in the failure to dock dirigibles at the @ORGANIZATION1 dirigibles were highly flammable which could have caused a serious accident to occur. However, the ""greatest obstacle to the successful use of the mooring mast was nature itself."" @CAPS1 there were heavy air currents above the building, it would cause the dirigible to ""swivel around"" when attached to the mooring mast. There was also an existing law that prohibited planes to fly low over city areas, which of making impossible for dirigibles to reach the building. As a result of all these obstacles, the main goal to dock dirigibles was not achieved." 4 4 4 +15030 6 "Obstacles that the builders had faced involved safety for those below the dirigible and those on it. One proble they faced was that if something happened to the dirigible like the Hindenburg. Then the pedestrians below could get hurt if the zeppelin came crashing down. It was also a problem with passengers because in a city they could easly crash. It tells how when the ""Los Angeles"" tryed to get close enough it couldn't because the strong winds so high up could have knocked it into a different building.Other obstacles builders faced were nature and the law. When high up wind currents can be very strong and changing. It talked of how if the dirigible were tethered the wind would cause the back of the ship to keep swiveling around the mooring mast. The final obstical builders would have to over come was the law. There were already laws in place preventing dirigibles to fly low in urban areas. If ships had tethered to the building than they would have been doing so illegally." 3 4 4 +15031 6 "There were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there The higher calling for which the mooring mast was built was to put New York on the forefront of modern travel; the builders then, needed to solve some obstacles that were on their way. First was that the building itself needed to get stronger in order to support ""a thousand-foot dirigible moored at the top of the building"" As a result, the frame of the Empire State Building needed to be modified and strengthened to accommodate the problem. According to the excerpt, @MONEY1 worth of changes had to be made to the building's framework. Another problem was that of the stress of the wind pressure The wind pressure would have to be transmitted all the way to the building's foundation. This was also solved, at least they thought, by making a few changes to the skeleton of the building. Lastly, was that the building needed a space to provide for passengers that were to come from the ""blimps"". To solve the problem, they built a shaft to bring passengers down to the @NUM1 floor, where baggage and ticket areas would be located. The builders had to face many problems even before attempting to build a mast for dirigibles to dock at." 3 3 3 +15032 6 "Various obstacles came up in this excerpt. This building of the mooring mast simply went from a dream to more of a way to win a record for the world's tallest building. The greatest obstacle they faced was the issue of safety. In paragraph @NUM1 it reads ""Most dirigibles used hydrogen rather than helium, and hydrogen is highly flammable."" @CAPS1, an obstacle faced was the danger of the dirigible being destroyed by fire while trying to dock on the Empire State Building which would cause a large amount of destruction in New York. The builders, also faced the problem of nature itself. The violent air currents at these heights would cause the dirigible to swerve around the mooring mast. The builders also faced a legal issue stating in paragraph @NUM2 ""an existing law against airships flying too low over urban areas"". @CAPS1, the dirigibles were never going to be allowed to fly so close to the Empire State Building anyway. These were the obstacles faced by the builders." 4 3 4 +15033 6 "The builders of the empire state building faced many obstacles in attempting to allow dirigibles to dock there. In paragraph nine it states ""The architects could not simply drop a mooring mast on top of the empire state buildings flat roof."" This obstacle was massive because in order to accommodate the new station over sixty thousand dollars worth of work would have to be made to the building. Another reason as stated in paragraph @NUM1 ""The other practical reason why dirigibles could not moor at the empire state building was an existing law against airships flying to low over urban areas."" This shows this was another major obstacle for the builders. Another obstacle for the builders is nature as stated in paragraph @NUM2 ""The winds on top of the building were constantly shifting due to violent air currents."" this could be very dangerous. If the back of the ship was dangling over the streets surrounding the empire state building there could be many safety hazards. These obstacles were the main obstacles the builders had to face if the Empire State building would be a landing dock." 4 3 4 +15034 6 "Based on the excerpt from ""The Mooring Mast,"" by Marcia Amidon @CAPS1, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there, such as safety, nature, and legislation. First, it would be difficult to safely allow foreign dirigibles to dock. In paragraph @NUM1 it says, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" This displays the fire, and therefore safety, was an obstacle. Next, air currents made it difficult for dirigibles to dock safely. The air near the top of the building was affected by air currents, so it was difficult for pilots to land. Also, ""using [lead weights] at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical or safe."" There was no way to work with or combat the uncertainty of the wind, so nature was an obstacle. Finally, there were laws about aircrafts flying too close to the city. In paragraph @NUM2 it says, ""[There] was an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building."" The very purpose of the moor would be illegal, so it would be nearly impossible for a dirigible to ever tie up to the Empire State Building. The builders of the Empire State Building faced many challenges regarding the moor, and its opening was never successful as a result of them." 3 4 4 +15035 6 "In the short excerpt, The Mooring Mast By Marcia Amidon Lsted there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. An obstacle they faced was the space. An example ""The one obstacle to their expanded use in New York City was the lack of a suitable landing area."" @CAPS1 saying it was going to be hard finding a place to land. Although that may had been one of their problems that was not the only problem it was the safety. The excerpt says, ""the mooring mast added to the top of the building would allow dirigibles to anchor there for several hours for refueling or service and to let passengers off and on."" Which meant it would have taken along time just land and fueling. Another obstacle was for the dirigibles to be tested in the testing of the mast" 2 2 2 +15036 6 "The builders of the Empire State Building faced a few obstacles when attempting to allow dirigibles to dock there. The biggest obstacle was finding a safe way to do it. New York City is a very densely populated area so any type of accident would be horrific, as the owners realized in @CAPS2 @NUM1, ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the empire state building realized how much worse that accident couldve been if it had taken place above a densely populated area such as @CAPS1."" Another obstacle was nature itself. The wind at the top of the building was too strong as it says in @CAPS2 @NUM2, ""The winds on top of the building were constantly shifting due to violent air currants. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around the mooring mast."" Safety was clearly the biggest concern" 3 3 3 +15037 6 "The obstacles the builders of the Empire State building faced law against airships flying to low over urban areas This law made it illegal for ship to ever tie up to the building, fearing That The Wind would blow the dirigible onto the sharp spires of other buildings in that area. That would harm the dirigible's shall Then another dirigible attempted a Publicity stunt, when it would tie up and deliver a bundle of newspaper to the Empire state building. The Idea of The mooring was shelved. They yet unsolved Problems of mooring air ships to a fixed Mast at Such a height made it desirable. The highest open observatory dock, intended for disembarking Passengers, has never been open to The Public." 2 1 2 +15038 6 "The builder's main problem with safety. Most Blimps that aren't made in @LOCATION1 are filled with hydrogen, which is highly flammable. If a disaster like the Hindenburg accident happened while the blimp was moving to the tethers at the Empire State building, the outcome would have been much more disasterous. Another Obstacle is the winds. According to the exerpt ""The winds on top of the building were constantly shifting due to violent air currents... the back of the ship would swivel around and around the mooring mast."" One final obstacle was the law against airships flying too low over urban areas. ""This law would make it illegal for a ship to ever tie up to the building."" The builders faced many obstacles by attempting to allow blimps to dock at the Empire State Building." 3 3 3 +15039 6 "There were obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. For example, on the excerpt is says, ""A mooring mast added to the top of the building would allow dirigibles to anchor there for several hours for refueling or service, and to let passengers off and on."" This shows that builders had to build a mooring mast to have some time for refueling or service and have people get off and on safe.Another example from the excerpt is when it says, ""The body of the dirigible could swing in the breeze, and yet passengers could safely get on and off the dirigible by walking down a gangplank to an open observation platform."" This shows that the builders build a gangplank for people can walk up or down the gangplank safe from the dirigible." 2 1 2 +15040 6 "The builders of the empire State building were faced with many different obstacles. One was the empire State building it @CAPS1. It is one of the tallest buildings in the world so only construction plan that goes wrong could be trajic for all the people below. When the started Construction on the mooring mast they knew there was Some risk but didn't think it threw. See all this was introduced because Al Smith wanted the Empire state to be the biggest. Now he didnt @CAPS2 look into it if a blimp was to @CAPS3 on the mooring mast they would have to worry about weather, wind, and also the strength of the buildings foundation. Also they would have to worry about the blimp it @CAPS1 back then dirigibles were filled with hydrogen and if Something was to go wrong ever downtown New York and the blimp was to catch a spark it would burn four city blocks" 2 2 2 +15041 6 The @CAPS1 of the Empire State building faced many Problems when attempting to allow dirigibles to dock there. Some of the problems are some blimps are filled with hydrogen wich is highly flammable. If a blimp with hydrogen in it exploded over @LOCATION1 that would not turn out so good For people in New York City. Those people could die. Also one one blimp exploded in New Jersey the blimp had hydrogen in it. So when that happened they thought a lot about the docking station and only to allow blimps with helium in them to dock there. 2 1 2 +15042 6 "The idea of allowing dirigibles to dock on the Empire State Building was laden with problems ranging from natural preventions to pre-existing laws. During the time of frequent dirigible travel in the world, a German dirigible called the Hindenburg was destroyed in New Jersey due to a complication with fire. This catastrophe revealed to the workers a problem they had previously overlooked, the fact that most foreign dirigibles were inflated with flamable hydrogen gas. The idea of a problem like the Hindenburg ocuring over one of the most densely populated cities in the world ruled out the idea. The workers of this project also overlooked the laws against airships flying too low over urban areas. Although the empire state building was anticipated to be the tallest building in the world, the soon to be created mast would still be too close to the millions of people in the city. After test runs had occured to try out the new mooring system it was seen that dirigibles were not even able to get close enough to the mast due to the strong winds. The idea that these same winds would blow the dirigible into another buildings spire put fear into the minds of the people. The combination of this variety of problems put an end to the idea of using a mooring mast atop the Empire State Building" 4 4 4 +15043 6 "Al Smith and the builders of the Empire State building faced several obstacles when trying to allow dirigibles to dock there. First obstacle was designing strengthening beams to the frame and foundation to support the extra stress caused by the dirigible's load and wind pressure. The second was that the gases used in some dirigibles were unsafe. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (Lsted, @NUM1). The inefficient the gases, the violent air currents would either cause the dirigible to spend, or add lead weights which would ""... be dangling high above pedestrians"" (Lsted, @NUM2). Among all of these problems ""... was an existing law against airships flying too low over urban areas"" (Lsted, @NUM3). Therefore, not only was it unsafe or impractical, it was illegal." 3 3 3 +15044 6 "The builders of the Empire State Building faced many obstacles while attempting to allow dirigibles to dock there. The first problem that the workers faced was that a ""thousand-foot dirigible... would add Stress to the building's frame"" (@NUM1). This meant that the frame would have to be Strengthened. Another obstacle they came across was that there was a ""law against airships flying too low over urban areas"" (@NUM2). Therefore, the it would be illegal to dock a ship on the building, because the airship would be too low down. Finally, the most difficult obstacle they encountered was that ""the winds on top of the building were constantly Shifting due to violent air currents"" (@NUM3). This made it unsafe and unpractical because the dirigibles would be above pedestrians on the street. Due to all of the complications and challenges that faced the workers who were trying to allow dirigibles to dock on the Empire State Building, the project was never completed." 3 3 3 +15045 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon @CAPS1 the builders of the Empire State Building faced some obstacles in attempting to allow dirigibles to dock there. One of these obstacles was that it was unsafe. It was unsafe because the dirigibles use more hydrogen than helium and hydrogen is highly flammable. In the excerpt it says the greatest obstacle was nature itself. This is because the winds at the top of the building was constantly shifting and the back of the airship would swivel around. Another obstacle was an existing law against airships flying too low over the urban areas. These are the obstacles that the builders of the empire state building had faced." 3 3 3 +15046 6 "The builders of the Empire State Building were faced with many problems when attempting to allow dirigibles to dock. One main reason was that it was illegal for dirigibles to dock. ""Empire State Building was an existing law against airships flying too low over urban areas"", @CAPS1 @NUM1. Also mother nature prevented dirigibles ability to dock there. ""The winds on top of the building were constantly shifting due to violent air currents"", @CAPS1 @NUM2. However some dirigibles attempted to dock. In 1930 the U.S. Navy, Los Angeles tried to dock, but due to the severe winds could not. New York was a very densely populated area, and having explosive hydrogen floating low over the city could cause a huge threat. ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey."" This showed the builders and owners of the Empire State Building that it was very dangerous for dirigibles trying to dock there. A main set of problems the builders faced was making the building itself strong enough to allow dirigibles to dock. The builders had to modify the frame of the Empire State Building and design a custom mooring device. The builders were faced with legal and safety problems when attempting to allow dirigibles to dock on the Empire State Building." 4 4 4 +15047 6 "The Mooring Mast by Marcia Amidon Lsted explains the plans for adding a mast to the top of the Empire State Building that would have been able to anchor blimps to the top of it. This idea was very complex; however, architects of time (@DATE1's) believed that it was quite possible. What they didn't seem to realize was just how many problems and obstacles there were to get in the way of the mast's success. One minor set back was that the mast (and the blimp attached to it) would add great amounts of stress to the frame of the building. This problem was taken care of with little stress by simply modifying in strengthening the building's foundation and frame. The largest obstacle standing in the way of the mast's success was the heavy winds at the top of the building, which were ""constantly shifting due to violent air currents"". However, the absolute greatest issue that was faced was safety of the public. Most foreign blimps at the time were filled with highly flammable gas, which was ultimately why the mooring mast was never a success." 3 3 3 +15048 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. Throughout the excerpt the author states that ""dirigibles were being hailed as the transport of the future"" (paragraph @NUM1). This means that builders had to work harder and figure out ways to get this to work. Architects and engineers talked with experts about the equipment needed to build the dirigibles. The author also states that they asked people to test the dirigible. They had to work on the mooring mast in order to get the dirigible to work properply. Getting the mooring mast to work was very difficult for the builders. In paragraph @NUM2 it says ""the greatest obstacle to the successful use of the mooring mast was nature itself."" Dirigibles were basically given up on by the 1930's." 2 2 2 +15049 6 "The obstacles; the builders of the Empire state Building faced in attempt to allow dirigibles to dock there were highly challenging. They delt with the frames and shapes, but theres other reasons that are not so physical.One of the greatest obstacles they faced to allow dirigibles to dock on the building was nature itself. At the top of the building winds were constantly shifting due to violent air currents. Using the Empire state Building, where the blimps would be dangling high about pedestrians on the lower level of the street, was not safe.Another particular obstacle they faced was; an existing law against airships flying to low over urban areas. This law made it illigal to ever tie up the blimp to the Empire State building itself. The blimps couldnt lad on the flat roof of the Empire state building. The builders of the Empire State Building had alot of obstacles in front of them. Not just physical objects to make it easier for the dirigibles to land, but the @CAPS1 of politics and nature aswell." 3 3 3 +15050 6 "In this excerpet from the mooring mast by marcia amidon, there was alot of examples of obstacles that the builders of the empire state Building faced in attempting to allow dirigibles to dock there. one oBstacle that the builders faced was the weight and presure of a DiriGiBle @CAPS1 on @CAPS2 one teather at the top of the empire state building. this was a big @CAPS3 because all the stress and pressure of the rope would pull on the building sending the preasure all the way to the bottom of the building one thousand feet below. another obstacle that the workers faced was nature its self. this was a @CAPS3 because of the high speed winds at the building shifting all the time. If a DiriGiBle was to be teathered at the top by only one rope in the front the back of it would be free to move in the wind. this would allow the back to be able to be blown by the wind having the possibility of hitting the building. In conclusion there were many obsticles builders had to face to attempt this project." 3 2 3 +15051 6 "In the excerpt ""THE MOORING MAST"" by Marcia Amidon Lsted there were many obstacles that the workers had to face to allow Dirigibles to dock at the top of the empire state building. One of the many obstacles the workers faced was that they could not simply drop a mooring mast on the top of the Empire State building. Also the thousand-foot dirigibles moored at the top of the Empire State building. A single cable tether held the dirigible and it would add stress to the building's frame. The biggest obstacle the workers would face was the mooring mast on top of the building with all winds shifting due to vilent air currents. Another obstacle was the dirigibles were moored in open field and they were weighted down in the back. The problem was they were dangling high above pedestrians on the street. Those are the obstacles the workers faced" 3 2 3 +15052 6 "In ""The Mooring Mask"" by @ORGANIZATION2, the obstacles that the builders of the Empire State building faced were nature, safety and the law. Al Smith, @CAPS1 of New York and headed construction of the Empire State Building, was determined to make it the tallest building ever. This would be impossible without a mooring mast, which would serve as a docking station for Dirigibles.In building the mooring mast, came obstacles. One obstacle was nature. There were violent wind speeds at the top of the building, which would cause the dirigible to sway back and forth. Lead weights were typically used to keep from swaying, but if used here, lead weights would be dangling @NUM1 ft above pedestrians heads. Which leads to safety being another obstacle. Many dirigibles were filled with hydrogen, a gas that is highly flammable, if ignited, the possibly largest accident would occur to New York City. The Final obstacle is the law. There is a law that states ""airships may not fly too low over urban areas."" Which would make the mooring mast's purpose illegal. Today, it is nothing more but decoration." 3 3 3 +15053 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon @CAPS1 the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The mooring mast of the Empire State Building was destined to never fulfill its purpose, for reasons that should have been apparent before construction ever took place. The main reason for this was safety. First, there was a chance that it could catch on fire. For example, most dirigibles are made of hydrogen rather than helium, and hydrogen is highly flammable. They relized how much damage it could do if it caught on fire in a densely populated area, such as downtown New York. Secondly, they had another obstacle to the successful use of the mooring that was nature itself. For example, the wind on top of the building was constantly shifting due to the violent air currents. Lastly dirigibles could not moor at the Empire State Building because they was an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach it. Instead of becoming the transportation of the future the idea had disappeared. They faced to many obstacles that could not be overcome." 3 4 3 +15054 6 "They ran into a few problems when it @CAPS1 to building this. They realized after that it wasnt that smart or that safe to have a dirigible hanging by a 102 floor building just by one cable tether. Another problem they ran into was the fact that they couldnt control mother nature. If it was a really windy day out it would be hard to keep it steady. And if there wasnt enough support on the building frames, then it could potentially collapse." 1 2 2 +15055 6 "The builders of the Empire State building faced multiple potential problems in allowing dirigibles to dock there. For example, the strong winds up above the city streets could have caused the dirigible's back and to blow sideways and puncture on the tops of other buildings. On top of that, many dirigibles used hydrogen instead of helium, making them highly flammable. Also, the added stress of a dirigible moored on the Empire State Building could have easily cracked or collapsed the building and its foundation. Luckily, the builders and engineers behind the mooring mast had enough sense to cease production of the mast, because it was merely an excuse to cover up the competitive nature of the building's designers." 2 3 3 +15056 6 "The builders of the Empire State Building faced obstacles trying to allow dirigibles (blimps) to dock there. Lack of a suitable landing area was a tough obstacle. It is against the law for airships to fly low over urban areas. It would be dangling high above people and it wouldn't be safe. The way the dirigibles stays up in the air is it uses hydrogen instead of helium yet hydrogen is extremely flammable. To have a dock for the dirigibles on the Empire State Building it would not be safe and the builders would have to think of a new plan therefore, there would be many obstacles." 2 2 2 +15057 6 "During the @DATE1's technology and engineering wasn't quite as advanced. So it's safe to say builders of the Empire State Building had so obstacles. One of them were, how were they going to dock the dirigible safely and keep them stable, they had know idea. They did have the knowledge or technology to do such a thing back then." 1 0 1 +15058 6 "There were many obstacles in allowing dirigibles to dock on the Empire State Building. One problem that was addressed was the fact that dirigibles all over the world were mostly filled with hydrogen, which was flammable. This was a problem because on May 6, 1937 a dirigible was destroyed by fire and the owners of the Empire State building relized ""how much worse that accident could have been if it had taken place of a densely populated area."" (@CAPS1 @NUM1) Another potential problem were the strong wind currents on top of the building, as described in @CAPS1 @NUM2. The concern was that these strong currents would prevent a dirigible from docking, and could possibly blow it into another building. This could puncture the dirigible's material and cause a horrifying accident. The final obstacle that prevented dirigibles from docking on the Empire State Building was the fact that it was against the law. The law stated that ""airships flying to low over urban areas"" was prohibited. There were many obstacles that prevented dirigibles from docking on the Empire State Building." 3 4 4 +15059 6 "In this @CAPS1 ""The Mooring Mast"" by @ORGANIZATION1 the builder of the empire State building faced many @CAPS2 during the building of the Empire State building.The @CAPS3 obstacle would be the wind. Because The building was so high And the more up the more Air and wind they had to stop landing or Drop off the dirigible. A dirigible is also a ballon or blump but there different because the dirigibles can be controlled by pappellers. Another reason was the @CAPS4 equpment. They didnt have the right equipment to dock the dirigible. So they @CAPS5 from letting them dock there ever again. They also @CAPS6 to stop it because it's over hundreds of civilians and if something goes @CAPS4 the balloon could fall on the civilizians.Those Are the reasons Why in the @CAPS1-""The Mooring Mast"" by @ORGANIZATION1 had to face problems with docking ballons." 3 2 3 +15060 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles dock there. One example is, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. The owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York. When the builders realized that hydrogen is flammable, they had to rethink the construction for if there was a fire it would be much more dangerous in a populated area like New York. The chances of people getting hurt or injured are more likely. Another obstacle was, ""dirigibles could not moor at the Empire State Building [because] of an existing law against airships flying too low over urban areas. This law would make it illegal for shipped ever tie up to the building or even approach the area."" This was a major obstacle because the builders would have been violating a law. It would also be very dangerous." 4 2 3 +15061 6 The builders of the Empire state building faced obstacles in order to attempt to allow dirigibles to dock there. One issue was that the winds at the top of the building were very dramicaclly shifting because of the air currents. Because of this the Dirigible end would swivlle around the top of the building. An other issue was the people walking the @CAPS1 of New York below the building. To stop a Dirigible heavy lead weights had to be used. This was problamatic because one of the weights could very easily come lose and @DATE1. The law that was about a flying airship lingering too low over a city would be broken if a Dirigible had been stationd at the Empire State building. 3 3 3 +15062 6 "Builders of the Empire State Building faced numerous obstacles in attempting to allow dirigibles to dock there. Safety was a prominent issue; if human lives are at risk, an idea is not likely to be successful. Most foreign dirigibles contain hydrogen, an element that is ""highly flammable"" (paragraph @NUM1) and posed a threat to not only the passengers, but the people at the docking station as well. Another potential obstacle was the violent winds at the top of the building. These winds would cause the back of the dirigible to blow around freely with the wind. Even the proposed solution of weighing down the rear of the dirigible with lead weights was dangerous; lead weights would be left ""dangling high above pedestrians"" (paragraph @NUM2). A final and very obvious obstacle for the builders of the Empire State Building was the pre-existing law prohibiting airships that fly ""too low over urban areas"" (paragraph @NUM3). Even with a safe docking station, landing would be illegal. Although it may have seemed like a feasible plan at the time, the idea of dirigibles docking on the top of the Empire State building was not a safe or practical one." 4 3 4 +15063 6 "While the construction of the Empire State Building was in progress, the builders faced many obstacles in trying to allow dirigibles to dock there. At first, people thought it was going to be wonderful and lead to the ""transportation of the future"". One obstacle the builders faced was the fact that a large dirigible moored to the roof would have negative effects on the building's frame. ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation"". The builders would have to pay @MONEY1 to fix this problem. Another problem that was present was also the lack of safety. ""Most dirigibles from outside of the united states used hydrogen rather than helium, and hydrogen is highly flammable."" Also, even if the dirigible were tethered to the mooring mast, the violent winds would cause the back of the ship to swivel around and around the mooring mast."" Even if the back of the dirigibles were weighted down with lead, it would not be safe; as the lead would be ""dangling high above pedestrians on the street."" There was also a law stating that airships could not fly too low above urban areas. Nature itself presented many more problems, such as winds blowing the dirigible onto the ""sharp spires of other buildings."" As numerous problems became apparent after the building was finished, the idea of dirigibles being the ""future of transportation"" was dropped." 4 4 4 +15064 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the builders faced many obsticles in attempting to allow dirigibles to dock there. ""the as yet unsolved problems of mooring airships to a fixed mast at such a height made it desirable to postpone"". This quote by Irving Clavan is saying that there is many problems unsolved because of the height made. Which means its harder to do because of how high it is. ""Most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly flamible."" They're pointing that out because if ever a chance of a mess up and it starts to come crashing down, its coming down on one of the most populated cities in america. These are some obstacles builders have to face." 3 1 2 +15065 6 "In The Mooring Mast builders of the Empire State Building faced many obstacles to attempt to allow dirigibles to dock there. The obstacles the builders faced were that they realized hydrogen was very flammable. An example from the excerpt is a German dirigible was caught on fire, the builders then thought how much worse it would of been over a densely populated area. Another obstacle was the use of the mooring mast. The winds at the top of the building were harsh, and made it hard for landing. It was also a law that airships could not fly low over urban areas. The builders of the Empire State Building then decided not to use the mooring mast for dirigibles." 3 3 3 +15066 6 "The builders of the empire state building faced many obstacles in attempting to allow dirigible to dock there. One obstacle they faced was that if a thousand-foot dirigible was moored at the top of the building by a single cable tether, it would add stress to the building's frame. Another obstacle they faced was that most dirigibles from outside the united states used hydrogen not helium, and hydrogen is highly flammable. The greatest obstacle to the successful use of the mooring mast was nature. The winds on top of the building were constantly shifting because of violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around the mooring mast. Those are some of the obstacles they faced trying to dock on the building." 3 3 3 +15067 6 There seemed to be many problems erupting during the making of the dirigibles dock. For one the Empire State building natural structure can't handle its weight. Therefor architects had to make a stainless steel tower. Even after this was made they realized how flamable helium and hydrogen are. Not only that the airwaves at the top of that building are extremely violent. The idea was eventually forgotten about due to the possible accidents that could happen. 2 2 2 +15068 6 "The builders of the Empire State Building faced several obstacles in building a mooring mast for dirigibles to dock on. The first obstacle was the inadequate framework on the building itself because with a mooring mast on top, much stress would be added to the building. It is said that ""over sixty thousand dollars worth of modifications had to be made to the building's framework,"" which could also be a cost problem. Secondly, building a mooring mast for dirigibles over densely populated New York City would be extremely unsafe. Dirigibles from foreign countries used hydrogen to keep them afloat, and ""hydrogen is highly flammable."" @CAPS1 the Hindenburg disaster of 1937, any fires above heavily populated New York City would have disastrous effects. Next, the worst obstacle the builders faced was the winds that were ""constantly shifting due to violent air currents."" @CAPS2 a one thousand foot long dirigible to the top of the Empire State Building would be very unsafe because the winds would blow the back of the dirigible, therefore swivelling the ship around the mast. The final obstacle the builders of the Empire State Building faced in allowing dirigibles to dock there was ""an existing law against airships flying too low over urban areas."" Even if the building of the mast was a success, the law against dirigibles coming too close would prevent the use of it. All these obstacles the builders faced led to the ultimate failure of the mast." 4 4 4 +15069 6 "The builders of the Empire State Building were faced with multiple obstacles while attempting to allow dirigibles to dock there. Although some of these obstacles were fixed early on, others were not brought to the builders' attentions until later on. The first obstacle that the builders encountered were the modifications that were needed to be done to the building's framework. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" (@CAPS1 nine). The Empire State Building would not have been able to support the mooring mast without having the essential modifications done. This process costed an extra sixty thousand dollars. The second obstacle that the builders faced had not even been brought up until after the building had been completed. The wind factor had made it nearly impossible to be able to dock any dirigibles. ""Even if the dirigibles were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" (@CAPS1 @NUM1). With all the pedestrians located on the ground, this factor made it extremely unsafe. The final obstacle that was faced was with the law. Under already existing law, airships were prohibited from flying too low over urban areas. Blimps docking at the mooring mast would be violating this law. The architectures and engineers of the Empire State Building clearly did not look into what was necessary to building the mooring mast." 4 4 4 +15070 6 "When architects and engineers planned on building the mooring dock for blimps on the Empire State building they didn't realize all the problems that could happen. One of these problems was a big safety issue. Most blimps used hydrogen instead of helium. Hydrogen is very flammable. If a blimp were to catch fire while on the Empire State, it would end in a disaster. Another obsticle was nature. The wind was unpredictable and the dirigibles would just be swinging in the wind. If the wind got to strong it could add a lot of stress to the building and it could colapse. One last reason was an actual law. The law stated it was illegal for airships to fly too low over urban areas. The mooring dock on the building would have never worked." 3 3 3 +15071 6 "When attempting to allow dirigibles to dock at the Empire State Building, the builders had many obstacles to face. Most of the dirigibles used at the time were from countries other than @LOCATION1, so they used hydrogen instead of helium. Hydrogen is very flammable so if it caught on fire it would go down in a very populated area. Another obstacle was at that height, the wind was very strong and violent. When tethered to the mooring mast, the back of the dirigible would be caught by the wind and swing around the mooring mast. The last obstacle was there was a law stating that dirigibles can not fly too low over urban areas this made it impossible for a dirigible to ever come close to the building." 3 3 3 +15072 6 "The builders of the Empire State Building faced a number of obstacles in attempting to allow dirigibles to dock there. One obstacle was one of safety, most blimps outside the U.S. used hydrogen instead of helium, and hydrogen is highly flammable. Another obstacle the builders faced, was nature itself. The wins on top of the building are always changing because of dangerous air currents. These winds would cause the rear end of the blimp to move around and around the mooring mast.A third obstacle they faced was a law that aircrafts couldn't fly too low over pedestrian filled areas. This law makes it illegal to tie up to the Empire State Building." 3 3 3 +15073 6 "The builders of the Empire State Building faced many obstacles, including nature, safety, and the law, when attempting to allow dirigibles to dock there. The builders' first imediate concern was for the structure of the building. When moured, the dirigible ""would add stress to the building."" To counteract this added weight, the building would need to be modified and strengthened. The builders were also worried about safety after a German dirigible was destroyed in a fire. Since the gas used to keep dirigibles aloft are highly flamable and downtown New York is so densely populated, they realized this could be very dangerous. The greatest obstacle was the high winds on top of the building that, ""were constantly shifting due to violent air currents."" With the dirigible tethered to the mooring mast, the back of the ship would be swiveling in the wind. While lead weights could be used in open landing fields, these would be neither safe nor practical when hanging above pedestrians on the streets. Lastly, there was a law existing stating that airships could not fly too low over urban areas. This would make it impossible for a dirigible to even approach the building. The combination of these obstacles made it impossible for dirigibles to ever dock at the Empire State Building." 3 4 4 +15074 6 "In the excerpt there were a few obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The largest issue with allowing the dirigibles to use the building as a mooring site was safety. It mentions in paragraph @NUM1 that the German dirigible, the Hindenburg, was destroyed by a fire in New Jersey. This brought on thoughts about it happening at the Empire State Building. If a dirigible caught fire while attached to the building there would be a high death rate due to New York City being so populated. Another obstacle would have been keeping the dirigibles from swiveling around the mooring mast. In paragraph @NUM2 the point that having lead weights away down the back of the ship would be quite dangerous with so many pedestrians on the street below. Yet another reason why trying to more the dirigibles to the building was not practical was because of ""an existing law against airships flying too low over urban areas"" (paragraph @NUM3). This made it illegal for the ships to tie up to the building, let alone get close enough to try to. Tying all of these reasons together is the fact that the wind was too strong at the top of the building for anything to happen safely and without some sort of injury." 3 3 3 +15075 6 "The obstacles the builders had to face where rational, but there are some things you sould think of first, such as peoples safty, aircraft hight limets, and wind. They they thought about how to dock it, How to get the passengers safly to the landing area. What they did work on was smart though, they had the the thing that connects the dirigibles to the dock, the electric winch. They had a baggage, and ticket area. What they thought of was smart, but the other stuff first." 1 1 1 +15076 6 "The builders of the Empire State Building faced many challenges when attempting to put a dock for dirigibles on top. In order to make New York City the most modern city for travel, Al Smith attempted to put a dirigible dock on top of the Empire State Building. They did finish constructing the mooring mast, although the steel frame of the building had to be strengthened. The stress of the people boarding the dirigible could cause damage to the original framework. Once it was finished, there were @NUM1 attempts the board passengers onto the blimps. Although, they both ended in failure. The builders were not able to overcome the obstacles of the severe winds and laws. Winds could blow the blimp strayed into another building. Also, if a dirigible made of hydrogen was used, it could cause a fatal accident due to the high flammability of it. Finally, there was an existing law that airships from flying close to urban areas. The architects of the mooring mast were not able to overcome these challenges." 3 3 3 +15077 6 The obstacles the builders of the Empire State building faced in atempting to allow dirigibles to dock there. The bigest obstacle is to their expanded use in New York City was the lack of a suitable landing area. Al Smith saw an opportunity for his empire state building. One set of engineers and the government people in washington are figuring on some safe way of moooring airships to this mast. The greatest obstacle itself was mother nature. The winds on top of the building were constantly shifting due to vilant air currents. These are some of the many obsticles of the Empire State building faced wile atempting to alow dirigibles to dock there. 2 2 2 +15078 6 The following are obstacles that the builders of the Empire State Building faced. They were worried about the hydrogen and the helium being highly flammable and considering the disaster The Lakehurst Fire in New Jersey. They were also worried about the back weight of the ship. And they feared wind would be blowing it into the spires of the building which would puncture the blimp shell. 2 1 2 +15079 6 "Many obstacles approached the builders of the Empire State Building as they attempted to allow dirigibles to dock there. The builders put reality before theory in order to pick the safest route in docking a dirigible. Most dirigibles from outside of the United States used Hydrogen rather than helium, and hydrogen is highly Flammable. When the German dirigible Hindenburg was destroyed by fire in New Jersey, the builders realize how dangerous it could be putting that risk in such a densely populated area such as New York. The greatest obstacle in being able to dock safely was nature. The winds on top of the Empire State Building were constantly shifting due to violent air currents. This would sway the ship around the Mooring @CAPS1, becoming dangerous. The Mooring @CAPS1 project came to a hault in the late 1930s, in order to keep the people of downtown New York City safe." 3 3 3 +15080 6 "There are many reasons Why the builder's faced many obstacles in attempting to allow dirigibles to dock there. In paragraph @NUM1 the excerpt states that most dirigibles from outside of the United states use hydrogen rather than helium, and hydrogen is highly flammable. The hydrogen can cause a fire and destroy the Empire State building and can destroy downtown New York. Another reason why the builder's faced obstacles in attempting to allow dirigibles to dock there is because it was against the law. In paragraph @NUM2 the exerpt states there was an existing law against airships flying too low over urban areas. This could be dangerous to the citizens of downtown New York." 3 2 3 +15081 6 "The builders of the empire state building faced many obstacles in the idea of docking a dirigible to a building of such height. Dirigibles, mostly outside of the U.S., were made with hydrogen rather than helium. Hydrogen is extremely flamable gas which was very dangerous above a highly populated are such as downtown @LOCATION2. Safety was a major concern an accident like Hindenburg was something they do not want to risk. The ability of docking a lightweight flyer was also very difficut. With strong winds, after the tethor cable was attached, the back end of the air craft would be blown around making the aviator of the blimp hard to control. Also, a law stating aircrafts may not fly too low to the buildings was stated especially after the incodent of hindenburg in New Jersey. A blimp could possibly hit a spire of another building The reality of docking these lightweight aircrafts was a major saftey and difficult concern. These obstacles are what builders of the empire state building faced." 4 4 4 +15082 6 "The original plan for the Empire State Building was to be tallest building in the world, at @NUM1 feet. Everything was going well until the competition. The Chrysler Building, threatened to steal the title. When Al Smith announced that he was going to but a mooring mast at the top of the Empire State Building, this obviously changed the architects designs. ""The architects desighned a shiny glass & chrome-nickel stainless steel tower that would be illuminated from the inside, with a stepped-back desighn that imitated the overall shape of the building. The rocket-shaped mast would have four wings at its corners... and would rise to a conical roof that would house the mooring arm."" (Lsted). Two months after the workers started with the new plan, the celebrated because the finished framing the entire building ""The Empire State building was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed. The greatest reason was safety."" (Lsted)" 4 1 1 +15083 6 "There were many obsticles the builders of Empire State Building faced in attempting to allow dirigibles dock there. One obsticle was the buildings frame was not prepared for it. In paragraph @NUM1 it says ""A thousand-foot dirigible moored at the top of the building, held by single cable tether, would add stress to the buildings frame."" The frame of the building could not handle a docked dirigible. To fix this problem, over sixty thousand dollars worth of modifications would have had to be made. Another obsticle faced by the builders was that most countries other than the United States use hydrogen instead of helium to make there dirigible fly. Hydrogen was very flammable and builders figured that if an accident like the Hindenburg occurred over a desely populated area like New York, it would be devastating. The greatest obsticle faced by the builders were the wind on top of the building that was constantly shifting. The shifting winds were caused by very violent air currats. While the digarble were tethered to the mast, the back of it would just keep spinning around in circles. They could not use lead weights to help hold the zeppelin steady because you can't just dangle heavy lead weights over New York City. From the beginning, the idea of allowing dirigibles to dock at the Empire State Building was ridiculous." 3 3 3 +15084 6 The builders of the Empire State Building faced some obstacles in attempting to allow dirigibles to dock there. The first obstacle they faced was having to modify and strengthen the steel frame of the building. They had to do this because the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation. Another obstacle they had to face they had to add to more floors to the building to make a grand total of 102 floor. The 101st floor was a glassed-in observation area and an open observation platform on the 102nd floor. 1 2 2 +15085 6 "The builders that were attempting to build a dock on the Empire State Building, had to face many obstacles. First, the girigibles were similar to huge ballons, @CAPS1 they were composed with hydrogen and helium. In the expert it says, ""Most dirigibles from outside of the United States used hydrogen rather than, helium, and hydrogen is highly flammable."" (pg @NUM1.) @CAPS1, if a dirigible caught on fire while it was stationed near the Empire State building, it may also catch the Empire State Building on fire. Resulting in a hazardous environment for the employees, and passengers.Next, attempting to tie down a dirigibles to a building, is known to be illegal. On the expert it states, ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."". If anyone disobayed this law it may result in punishment; as a result, it would create a new obstacle the builders would have to deal with.Last but not least, the idea of docking airships to a building is extremely unsafe. ""The @CAPS2 Mast"" by Marcia Amidon Lsted gives an excellent third reason why airships are unsafe, ""Fearing that the wind would blow the dirigibles onto the sharp spires of other buildings in the area, which would puncture the dirigible's shell."" If a disaster ever took place, many lifes would have been lost or severely injuried. Finally, the builders and architect would have an extremely hard time convincing high government officials to allw air ships to dock on the empire state building, because the bad certainly over powers the good." 4 4 4 +15086 6 "There is a lot of obstacles in trying to come with an idea of a building. They had to make sure the structure of the building was capable of the high winds it was going to get. Plus, they also had to make sure the top was safe enough for the dirigibles to dock there without harming any people or the building." 1 2 2 +15087 6 "In ""The Mooring Mask"" by Marcia Amidon Lsted, In order to allow dirigibles to dock there, the builders of the Empire State Building had to face obstacles. First, ""the lack of a suitable landing area"". They had to make room for the huge dirigibles to land. Second, ""add stress to the building's frame."" They had to make the structure of the building stronger so it wouldnt break. Lastly, ""The winds on top of the building were constantly shifting"" if they were going to be able to make this work they needed to find a way to calm the wind by the tower. Hence, In ""The Mooring Mask"" by Marcia Amidon Lsted, in order to allow dirigibles to dock there, the builders of the Empire State Building had to face obstacles." 2 3 3 +15088 6 "In the passage ""The Mooring Mast"" by Marcia Amidon Lsted, the obstacles builders of the Empire State Building faced in attempting to allow dirigibles to dock there are brought out. The author brings our ""The greatest obstacle to the successful use of the mooring mast was nature itself"". The climate and winds were constantly changing at the height of the building. The back of the dirigibles would then swivel which could very well be dangerous. Also the builders had to take into account the fact ""most dirigibles... used hydrogen rather than helium, & hydrogen is highly flammable."" The Empire State Building is in the middle of New York, a highly populated State. The explosion of a dirigible at the top of the Building would be very dangerous & would lose a lot of lives. The builders of the Empire State Building under went many challenges in trying to allow Dirigibles to dock." 3 3 3 +15089 6 "As the Empire State Building was being built to allow dirigibles, or blimps, to dock there, the workers faced several problems in trying to accomplish this. The first of these obstacles to occurr to the workers was the framework of the building. The building needed to be sturdy enough for the blimp to dock there with the harsh winds constantly pushing the blimb in different directions. Without the proper frame work, it would be extremely dangerous to dock. The next obstacle for docking was the hydrogen gas powering the dirigibles. Hydrogen is extremely flammable, and there had been other previous accidents with hydrogen blimps. The workers realized that an accident with exploding blimps would be very dangerous in a such ""densely populated area."" The final obstacle workers faced was the harsh wind currents at that altitude. The winds were so strong, that the blimps could not even get close enough to dock. The workers suggested weighting down the blimp would lead weights, but seeing as the weights ""would be dangling high above pedestrians on the street,"" it ""was neither practical nor safe."" Trying to allow dirigibles to dock on the Empire State Building seemed like a good idea. As time went on the obstacles preventing this became to great and finally shut down the idea. " 4 3 4 +15090 6 "Based on the excerpt there are a few key obstacles the builders face, one being the safety of the people in the dirigibles and people below them, and two being nature itself.The safety of the people was critical because if something was not safe then it would not be put to use. There were many things that could go wrong such as, the blimp hitting a spire and killing all the people below.The Greatest obstacle was nature. If the dirigible was tethered to the mooring mast it would get wraped around the building, or just getting to the mooring would be difficult because of the wind.Overall the mooring mast was not a practical Idea. It was just something thought up to compete with the @CAPS1 building, and was not thought through with the aspects of safety in mind." 2 2 2 +15091 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One important issue was the Mooring Mast. According to @ORGANIZATION2, ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" (paragraph @NUM1) Another problem would be the dirigible's load. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation."" (para. @NUM1) One of the main things the architects forgot to take into consideration was the buildings frame. ""The steel frame of the Empire State Building would have to to be modified and strengthened to accommodate this new situation.""(para. @NUM1) The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there." 2 2 2 +15092 6 "Based on the excerpt, the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. One obstacle was lack of suitable landing area; ""so were as long as one thousand feet, the same length as four blocks in New York City."" Another obstacle was the wieght of a mooring mast. ""The steel frame of the Empire State Building would have to be modified and strengthened,"" which means they would have to modify the whole frame to bare the weight of the mooring mast which would cost over sixty thousand dollars.Safety was also an issue. Most dirigibles outside the United States used hydrogen. Hydrogen is extremely flammable, so if it caught fire over a highly populated area such as downtown New York than the accident would be much worse. Another issue was the fact that ""the winds on top of the building were constantly shifting due to violent air currents."" Because of the wind the dirigible would swivel around the mooring mast." 3 4 3 +15093 6 "allowing dirigibles was going to be the new way of transportation back in the 1920s. There were many problems with having a mooring dock on top of the empire state building.one of the main problems was it was flamable. The helium and the hydrogen gases that lifted the dirigibles. If there was the smallest spark the entire Dirigible would go up in flames in a second. For an example The hindenburg German zeppelin that exploded in New Jersey on May 6, 1937. So the thought if that had happened in a more densely populated area like downtown New York it would of been much worse.Another problem with the dirigibles was wind. If there was strong air currents the dirigible would swivel around the mooring mast when it was docked. aqlso it is weighed down by the lead by lead weights. If it is over pedestrians It is not safe." 3 3 3 +15094 6 "Based on the excerpt from the Mooring Mast by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in building the mooring mast. For example, there was actually a law that prohibited exactly what the builders wanted. The law said that airships could not fly too low over city areas. The mooring mast on the Empire State Building would directly violate that law when the ships come in to dock. Another problem the builders faced was the danger surrounding the airships that would be docking there. The airships, called dirigibles, were like giant balloons and could pop if they touched something sharp enough. The Empire State Building was surrounded by other extremely tall buildings and most of them had long spires on top. Therefore, if the dirigible bumps one of these spires, it could pop and go plummeting to the ground. This presented another problem. Had an airship popped in New York City, it could've killed a large number of people not only in it, but on the ground. During the time of building, the Hindenburg crashed into fields, killing all of it's passengers. The builders thought what the consequences would be if that had happened in the city. This was the final straw for the builders as they abandoned their lofty goal, because of too many problems." 3 4 4 +15095 6 "In the expert the builders of the Empire State Building faced a lot of obstacles in attempting to allow dirigibles to dock there.The fabiric that they use for dirigibles is very lighter. ""Cotton frabric filled with hydrogen and helium to make them ligther than hair.They also imply that the architects did not try hard enough to solve the problems.""The mooring mast of the Empire State Building was destined to never fulfill it purpose...""" 0 0 0 +15096 6 "The builders of the Empire State Building taste some obstacles in attempting to have a dirigible dock. The dock would break the laws. The dock would also be a danger to the people below. It would also put a lot of stress to the frame of the building.""" 1 1 1 +15097 6 "In the excerpt ""The Mooring @CAPS1"" by Marcia Amidon Lsted their were obstactes the builders of the Empire State Building faced in attempting to allow dirigibles to dock their. One obstacle was the terrible winds. In the excerpt it states how bad the winds are. One dirigible was going to try to dock there was the U.S. Navy dirigible Los Angeles couldn't get close enough because of the very strong winds. The Captain feared the wind would blow the dirigible into a sharp spire on one of the buildings in the area and puncture the dirigible's shell. Another reason was their was already a law that stated against airships flying to low over urban areas. This made it illegal for any dirigible to tie up to the building or even approach it. The last and final obstacle they faced was the fear of crashing. Since most blimps from out of the country used hydrogen rather than helium it was dangerous because hydrogen is very flammable. They heard about the blimp fire in New Jersey they realize how much worse an accident like that would be on such a densely populated area like downtown New York City. And that is the obsacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. The huge wind gusts. The Law. And don't forget what happens of the dirigible crashes in the area of New York City." 4 3 4 +15098 6 "When constructing a building, workers will face tough obstacles, ecspecially when it comes to building the Empire State Building. In attempting to allow dirigibles to dock there, Al Smith and other architectural builders faced many problems. As stated in paragraph @NUM1, dirigibles could not moor at the Empire State building because there was an existing law against airships flying too low over urban areas. Also, as stated in paragraph @NUM2, the winds on top of the building were constantly shifting due to violent air currents. Both of these obstacles were reasons that explain the failure of the mooring mast. The builders were not successful at their attempt to allow dirigibles to dock at the Empire State Building." 2 2 2 +15099 6 "Builders of the Empire State Building faced many obstacles in attempting to allow dirigibles. The first problem was the material of the dirigibles. Dirigibles ""were actually enormous steel frame balloons with envelopes of cotton fabric filled with hydrogen and helium make them lighter than air."" The first problem is that it's material could be broken if happened to fly into a sharp area of the building, and the ""violent air currents"" did not help. Since the dirigibles could not be weighted down at the Empire State Building, it would be dangerous to have them ""dangling high above pedestrians on the street."" Another obstacle was the fact that the dirigibles were filled with hydrogen. Although dirigibles from the United States were filled with hydrogen and helium, ""most dirigibles from outside the united states used hydrogen rather than helium, and hydrogen is highly flammable."" With these obstacles builders of the Empire State building faced in attempting to allow dirigibles dock there, the theory did not work out in reality." 3 3 3 +15100 6 "Although thousands of dollars and countless hours were spent on the Mooring Mast, certain obstacles prevented dirigibles from docking atop the Empire State Building for safety reasons. First, these dirigibles were not safe to fly over populated areas. Some contained the highly flammable gas hydrogen. Also, a German dirigible called the ""Hindenburg"" burst into flames in New Jersey. As stated in paragraph @NUM1, ""the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" The winds at the peak of the Empire State Building were violent. It is stated in paragraph four teen, ""The winds on top the building were constantly shifting."" It would not be safe to dock a dirigible on the Empire State Building." 2 3 3 +15101 6 "In the excerpt of ""The Mooring Mast,"" many obstacles created problems for the builders of the Empire State building and their goal of allowing dirigibles to dock there. The first obstacle that came across the builder's minds was that they ""could not simply drop a mooring mast on top of the Empire State building's flat roof,"" (paragraph @NUM1) because it would damage the building with the ammount of pressure pulling on the structure. The second problem that the architects faced was safety. Events from the past such as Hindenburg was caused by the use of ""hydrogen rather than helium, and hydrogen is highly flammable...the owners of the empire state building realized how much worse the accident could've been."" The next problem that came up was nature itself, such as dangerous winds. An event when ""the U.S. Navy dirigible, Los Angeles approached the mooring mast but could not close enough to tie up because of forceful winds."" @CAPS1 there were legal issues, and existing law was against airships flying too low over urban areas, making it illegal." 4 4 4 +15102 6 "The builders of the Empire state building faced the problem of how to keep the back end of the blimp from swaying in the wind. They were unable to solve this problem, as we see in paragraph @NUM1 where it says: ""Even if the derigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Another problem with docking blimps on the Empire State building was a law that stopped dirigibles from flying too low over populated areas. There is proof of this in paragraph @NUM2 where it says ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" One more problem with mooring dirigibles on the Empire State was that it was hard for pilots to dock their ships on the mooring. An example of this is in paragraph @NUM2 where it says ""The U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds.""" 3 3 3 +15103 6 "The builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. Obstacles they faced were the strength of the framework, Safety of the dirigibles, @CAPS1 nature, and a law. The first obstacle, framework, wasn't too hard overcome, it cost @MONEY1 to strengthen it in order to support the mast and a blimp. The second obstacle was safety, on May 6, 1937 the German dirigible Hindenburg was destroyed by fire due to the highly flammable gas hydrogen which is used in dirigibles. This accedent could have been much worse if it occured above a highly populated area like New York. The third obstacle was @CAPS1 nature, the violent air currents on top of the Empire State Building made it close to impossible to dock a dirigible to the mast. By using led weights to weigh down the back of the blimp would be neither practical nor safe hanging high above pedestrians. The final and forth obstacle builders faced was a law against airships flying too low over urban areas. This would make it illegal to even attempt docking to the mast." 4 3 4 +15104 6 "While attempting to allow dirigibles to dock on the mooring mast, Empire State Building building faced many obstacles. One problem they encountered was the use of hydrogen in dirigibles rather than the use of helium. Hydrogen is highly flammable and actually caused a dirigible to be destroyed by fire. Also, the winds on top of the building were constantly shifting due to violent air currents, making it difficult for a dirigible to stop swiveling around-a safety hazard for pedestrians below. Lastly, it was illegal for aircraft of any sort to fly so low over urban areas. At first, the idea of the mooring mast was well-liked but in the end it had too many problems and proved to be impractical." 3 2 3 +15105 6 "In the 1930's the world was evolveing and new technology's were comeing of age. One of these tecnology's was the Dirigible and some people thougt to expand it's use. One of these idea's was the moring mast on the Empire State building. This was a great idea but the things that stood in it's way made it impossible. A major problem was the safty, consdiring it was 1,250 feet up. ""Most dirigibles from outside the United States used hydrogen instead of helium, and hydrogen is highly flammable. If this thing caught on fire, everyone inside would burn to death or crass into the ground and kill everyone under it. Another huge problem was the winds and ease of pushing it off corse. ""The winds on top of the building were constantly shifting due to violent air currents. These winds made it simply impossible for this to happen. One problem that should have bee looked at from the beging was law. ""The other practical reason why dirigibles could not moor at the Empire State building was an existing law against airship's flying too low over urban areas."" @CAPS1 this moring Mast was a fantastic idea, there were to many things standing in it's way." 3 3 3 +15106 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, describes complicated obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One of the obstacles was competition. ""It was planned as the world's tallest building taller even than the new Chrysler Building,"" (@CAPS1 1). ""Al Smith realized that he was close to losing the title of world's tallest building"" (@CAPS1 @NUM1). There was a competition as to had the tallest building between the Empire State Building and the Chrysler Building. Another obstacle, was the safety and dirigibles. ""when the German dirigible Hindenburg was destroyed by fire in lakehurts, New Jersey, The owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populate area such as down town New York."" (@CAPS1 @NUM2). The owner didn't want to risk a accident to cost people's life it would have been bad rep for them. The obstacles that the builders went through was a positive thing, it made them @CAPS2 and open their eyes." 1 1 1 +15107 6 "There are many obstacles faced because of letting the dirigibles dock at the Empire State Building. First, ""the greatest obstacle to the successful use of the mooring mast was nature itself."" This means that the winds ontop of the building were strong and will cause the dirigible will swivel around the mooring mast, if tethered. Also, ""The other practical reason why dirigibles could not moor at the Empire State Building was existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the areas."" This shows that it was a waist of time thinking ships could moor at the State Building because there is a clear law against it. There still are many obstacles you have to over come for any project." 2 3 3 +15108 6 "Based on the excerpt from The Mooring Mast, there are three main obstacles prevented the Mooring Mast on the Empire State Building from being used in the way it was intended. The first obstical was that it lacked safty. Dirigibles are highly flammable machiens when used with hydrogen, and a fire in New York City would be tragic.. Another obstical that the Mooring Mast faced was @CAPS1 Nature. The mooring was designed to attach to the dirigibles with a electric winch, allowing the dirigibles to move freely. When the winds of @ORGANIZATION3 were to blow on this situation, the diridles would ""swivel around & around the mask"" (@CAPS2 @NUM1) this would cause tension to build on the buildings frame and lead to a very unsafe inviorment. The last reason was that there was a law created that stated that it was illegal for a ship to fly too close to urban areas for safty reasons leaving the whole Mooring Mast to be unusable." 3 3 3 +15109 6 "Based on the excerpt, the obstacles the builders faced while attempting to build the dirigible dock at the Empire State Building were: finding a way to make this building bigger than the Chrysler Building, Designing the mast and @CAPS1 the reality. Al Smith needed a way to make is building bigger than the Chrysler building. He came up with the idea with putting a mooring mast on the building. The idea seemed great. While designing the mast, architects realized they can't just place the mast right on top of the building. They'd have to modify the foundation. After changing the skeleton of the building, construction went on as planned. Two month later the mast was finished, but the architects forgot that most dirigibles use hydrogen which is highly flammable. All the work the architects put in was for nothing because the mooring mast was never used." 2 2 2 +15110 6 "There are always challenges when you are trying something inovative. There are obstacles like getting approval, gaining support and you also need to be structurally sound. Al Smith and the rest of these archetects faced all of these. During the 1920s dirigibles were supposed to be the future of travel. Al Smith wanted to be able to dock a dirigible on top of the Empire State building. Other than getting people to go along with the plan he had other problems. The wind is very violent at that altitude. Dirigibles were not supposed to fly that close to the city it is dangerous and some were highly flamable. In conclusion There were too many large obstacles to overcome." 2 2 2 +15111 6 "Based on the excerpt, there were many obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. ""Hydrogen is highly flammable."" The dirigibles ran on hydrogen verses helium and if it were to ever to catch on fire there would be pedestrians everywhere below that would be in grave danger. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" Because the dirigible would be docked so high with little back control, the fierce winds would be a huge issue. ""The winds on top of the building were constantly shifting due to violent air currents."" If a dirigible were to dock there it would also be breaking laws. ""...was an existing law against airships flying too low over urban areas."" The builders a lot more obstacles dealing with the docking of dirigibles than just architectural." 3 3 3 +15112 6 "The obstacles that builders faced in attempting to allow dirigibles dock there was they had to build a higher taller building. They also had trouble building it so the workers had to back up the dates. Another obstacle that they had trouble with is the mast. ""The mooring mast of the empire state building was destined to never fulfill its purpose. The workers were also not planning on having these many obstacles they just wanted to do the job." 1 0 1 +15113 6 The obstacles the builders of the empire state face was trying to make sure the building don't fall down. 0 0 0 +15114 6 Some problems that the builders faced building the mast on the top of the building was that the builders couldn't just drop the mast on top of the building's flat roof because then the wind would cause stress to the frame because the blimps could hanging there. The steel frame of the building would have to be modified and strengthened to make the mast. The cost for these modifications were another problem for them two. 2 2 2 +15115 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. The main obstacle was that the builders couldn't @CAPS1 put the mooring mast on the Empire State Building, because it had a flat roof. The mooring mast would put pressure on the building's fram. To overcome this obstacle the architects had to modify and strengthen the frame. More than sixty thousand dollars' went into the modifications of the framework. The greatest obstacle though was nature, and there was nothing the builders could do about that. The violent air currents caused winds on the top of the building to constantly shift. In open fields dirigibles could be weighted down in the back using led weights, but with pedestrians around it wouldn't be practical nor safe. Without being weighted down the dirigibles would swivel around." 3 3 3 +15116 6 "In constructing the Empire State Building, builders faced multiple obstacles in attempting to allow dirigibles to dock atop the @CAPS1. One obstacle that constructors faced was modifications, ""The stress of the dirigibles load and wind pressure would have to be transmitted all the way to the foundation."" With this obstacale contractors would need to reinforce the @CAPS1 of the frame and the foundation. And the obstacle as stated from the excerpt is ""most dirigibles from outside the United States use hydrogen rather than helium, which is flammable."" @CAPS2 that hydrogen is flammable it would not be good if a dirigible exploded over the streets of New York. Those are the obstacles contractors faced during the construction of the Empire State Building." 3 2 3 +15117 6 "In the excerpt the builders of the Empire State Building faced many obstacles. The reason why the builders faced obstacles was because ""architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" An example is ""A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's frame."" The stress of the dirigible moor would make the buildings frame bend and become weak. That is just one obstacle that the builders faced, but there is many more." 1 1 1 +15118 6 "The builders faced many obstacles by building the Empire State Building.One obstacle was that Al Smith had competition with the Chrysler building. Which was forty-six feet taller, than the Empire State. Which led to Smith making the State Building reach the height of 1,250 feet. This leads to another obstacle, he wanted to add a mooring mast at its top for docking the new airships. This didn't work due to lack of landing space. A thousand-foot dirigible moored at the top of the building held by a single cable tether, would cause stress to the buildings frame.In conclusion I just explained the obstacles of the Empire State Building." 1 1 1 +15119 6 "While building the Empire State Building the architects were faced with many obsticles when the decision was made to use the Empire State Building to talk, load, and refule dirigibles. How to dock a dirigible to the side of a building was one of the biggest concerns, but the amount of stress this would cause was an even bigger worry. But the greatest obsticle to this project was the wind, nature itself. The fear was that the wind would blow the dirigible into a neighboring building, and tethering the dirigible was not an option for safety reasons. Due to the architect's inability to overcome these obsticles the Empire State Building was never used for it's original purpose." 2 2 2 +15120 6 "The first obstacle was their expanded use in New York City was the lake of suitable landing area. Because some were as long as one thousand feet, the same length as four blocks in New York City.The second was that there dirigibles had hydrogen in it and hydrogen was highly flammable. And the realized how much worst accident could have been if it had taken place in New York because this is where they were located. They had to re-think about they're plan. And another one was that the winds on top of the building were constantly shifting due to violent air currents." 2 2 2 +15121 6 "Builders of the empire state building faced challenging obstacles in their attempt to allow dirigibles to dock their ""The greatest obstacle was nature itself"" This was a huge problem for the mooring masts because they could not get close enough to the building to land. The winds were too strong. Secondly, there was an ""existing law against airships flying too low over urban areas."" meaning that because there were so many people in a small area of downtown New York it was too dangerous for dirigibles and other aircrafts to be that low. Lastly dirigibles from outside of the state used hydrogen rather then helium ""hydrogen is highly flameable"" After the German Hindenburg had an accident with fire it was clear that taking the risk of an accident like that happen above the heads of thousands of pedestrians was a bad idea. The obstacles, which were noticed too late; before the construction, is why the dirigables are not allowed to land on the Empire State building to this day." 3 4 4 +15122 6 "The obstacles that needed to be overcame, to create the idea of a docking platform on top of what was going to be announced as ""The tallest building,"" was going to be tough. The steps taken to make this idea come to life, began with consulting with experts. They took tours of the equipment and mooring operations at the @ORGANIZATION1 in New Jersey. When it was time to start constructing, the issue of the stress the building would intake from the mass of the Dirigibles became a problem. They modified the buildings frame to accommodate the new situation. They also designed a stainless steel tower with a stepped back design that imitated the overall shape of the building. over sixty thousand dollars worth of modifications were made to achieve the goal of ""The Mooring Mast""" 2 3 3 +15123 6 "There was many obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. One obstacle was that a lot of dirigibles outside the @LOCATION4 use hydrogen over helium. The problem was hydrogen is highly flammable, ""when the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State building realized how much worse that accident could have been if it had taken place above a densley populated area such as downtown New York City."" @CAPS1 can only imagine how tragic and chaotic that would have been. Another obstacle the builders faced was nature. ""The winds on top of the building were constantly shifting do to violent air currents. That would've meant that these dirigibles could just have got swept back. In conclusion there was several obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there." 3 2 3 +15124 6 "In paragraph @NUM1 it states, ""The mooring mast of the Empire State Building was destined to never fulfill it's purpose, for reasons that should have been apparent before it was ever constructed."" These reasons are one that is due to flamable gases, a second is due to nature itself, and the last is an already existing law. As said in paragraph @NUM1, ""Most dirigibles from outside of the united States used hydrogen rather than helium."" @CAPS1 how Flammable hydrogen is they didn't want that above a highly populated area. Paragraph @NUM3 now states, ""The winds on top of the building were constantly shifting."" @CAPS2 the dirigible would not be stable enough. Finally I said in paragraph @NUM4. ""There was an existing law against airships flying too low over urban areas. This law would make it illegal to ever tie up to the building or even approach the area."" @CAPS3 there was never a chance of a dirigible being able to dock there, as stated above." 3 3 3 +15125 6 "The builders of the Empire state building faced many obstacles when attempting to allow dirigibles to dock there. The builders had to be cautious about safety, which played a big role with the dirigibles. Many dirigibles from outside of the United States used hydrogen instead of helium. Because hydrogen is highly flammable they wouldn't want the city to be destroyed and at risk of a massive fire. Another problem was nature itself. There were violent air currents above the building and not be a danger to the local pedestrians of New York. The final obstacle builders faced when trying to pursue the dirigible idea was a law that prohibited airships flying too low over urban areas. They would be breaking the law to even allow it within the area of the building, with so many issues occurring in the development of the dirigible plan, the idea of using them quietly disappeared." 3 3 3 +15126 6 Some obstacles the builders of the Empire State Building faced was. how to build the morring mast. how to atach the mooring mast to the frame of the Empire @CAPS1 Building. 1 1 1 +15127 6 "In the excerpt ""The Mooring Mast"", builders of the Empire State Building face obstacles in attempting to allow dirigible's to dock there. The main obstacle was the lack of a suitable landing area. Dirigibles need a large area to land. Al Smith said to add a mooring mast to the top of the building and that would allowed a dirigible to land for several hours. During the time of land the dirigible may get ""refueling or service, and to let passengers on and off."" Passengers could get off and on the dirigible safely by walking down a gangplank to the open platform. Architects had trouble putting a mooring mast on the top of the Empire State Building's flat roof because they were afraid that the load of the dirigible and the wind pressure would have to be transmitted. Dirigibles had trouble with saftly, most of dirigibles use hydroge instead of helium, but hydrogen was highly flammable. The greatest obstacle of mooring mast was nature itself, wind were high due to violent air currents, and it would not be safe for dirigibles. The practical reason why dirigibles weren't allow to moor at @ORGANIZATION2 was law agaist airship flying too low. The idea of dirigible was given away to airplanes. The obstacles the builders of @ORGANIZATION3 faced in attempting to allow dirigibles to dock there was solved." 3 4 4 +15128 6 "Based on the excerpt, the workers faced a lot of obstacles in attempting to allow the dirigibles to dock there. In paragraph @NUM1 the architects say that ""they could not simply drop a mooring mast on the top of the Empire State building."" The reason for this is because the top of the roof is held together by just one cable tether. The effect of landing something so heavy on the roof would add stress the the buildings frame. In order to allow the dirigibles there they would need to strengthen and modifi the buildings framework, this would cost at least over @MONEY1. Rather than doing that the architects designed a glass, chrome and stainless steel tower that was @CAPS1 from inside. This would ""rise a conical roof that would house the mooring arm."" -paragraph @NUM2. Elevators would also be inside to help the passengers board the dirigibles." 3 2 3 +15129 6 The builders of the Empire State building faced many obstacles while building it One obstacle they hit was the dirigibles couldnt dock there because of no mooring mast When the architects and engineers built the building they put a flat roof which the Mooring Mast could not be placed on. They said that the frame of the Empire State building would have to be modified and strengthened to fix the situation. Another obstacle was they couldnt have a Rope holding the Mooring Mast up because the dirigibles wouldnt hold it up. Those are some obstacles the architechs went threw. 2 1 2 +15130 6 "Some obstacles the builders of the Empire State Building faced in attempting to allow dirigible to dock was that the winds at that height were alway changing and difficult to land a dirigible with. Also the dirigible are highly flammable because the used hydrogen rather than helium. ""The winds on top of the building were constantly shifting due to violent air currents."" The project was a bad idea from the start. ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" They even attempt to try it before they gave up. ""In December 1930, the @ORGANIZATION2 dirigible Los Angeles approached the mooring mast but couldn't get close enough to tie up because of forceful winds."" It just wasn't made do that job so it wouldn't work." 3 2 3 +15131 6 "The obstacles faced by the builders of the Empire State Building by attempting dirigibles to dock there were to many to predicte. The obstacles faced by dirigibles to dock there were because of many variables such as climite, Buildings and most of all the dirigibles them selfs.The climite as said in paragraph @NUM1 consisted with dangerouse and uncontraiable winds and the reason was because of the Empire State building itself. The urban areas around consited of sharp hull breaching spires and due to the winds it made a hull breach @NUM2 times more likely.Finaly there constrousion. Dirigibles were made with steel fram wrapped in cotton and filled with hydrogen to make it lighter unfortuntly the hydrogen with highly flamable." 2 2 2 +15132 6 "In order to let dirigibles dock at the Empire State Building, many changes had to made. The builders and planners both faced many obstacles. First of all, to even consider the idea, they had to ""consult with experts"" which meant taking tours and doing research. They had to find a ""safe way of mooring airships to this mast."" The next obstacle is in paragraph @NUM1. Docking a dirigible to the building would put ""stress"" on the building's frame. The builders had to ""modify and strengthen"" the frame. One of the last obstacles they had to face was designing the tower. The builders eventually decided on a rocket shaped mast with four wings at the corners to house the mooring arm. They had to house the machinery to winch the derigible, too. Overall, the builders had to make drastic changes, spend a lot of money, all for something that wasn't even safe in the end." 3 3 3 +15133 6 "While constructing the top of the Empire State Building, the builders faced many obstacles. According to the excerpt the architects couldn't just drop the mooring mast on top of the Empire State Building's roof. Also having a thousand-foot dirigible at the top of the building while being held by a single cable would add too much stress on the frame of The building. In order to maintain the dirigible in place it would cost them money. Quoating the article, ""The stress of The The The dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation... the Empire State Building would have to be modified and strengthened... sixty thousand dollars' worth of modifications."" The technical and financial issues made it difficult for architects to build a mooring mast on the top of the Empire State Building" 2 2 2 +15134 6 "The builders faced a few problem on letting it dock there. One problem was that ""Most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly flammable"" said on page @NUM1. The were all so lead weights to lower the dirigibles down but this could also set risk for people said on page @NUM1." 2 2 2 +15135 6 "In the the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in the attempt to allow dirigibles to dock there. The architects had to acomidate a lot of thing to allow dirigibles to dock at The mooring mast. For example In @CAPS1 @NUM1 it says ""The steelframe of the Empire State Building would have to modify and strengthen to accommodate this new situation"". Also in @CAPS1 @NUM2 it says ""The greatest obstacle to the successful use of the mooring mast was natur itself. The winds on top of the building were constantly shifting due to violent air currents"". These factores and many more where the reason the mooring mast was never poot to use do to the feer of safty and law." 2 3 3 +15136 6 "In the excerpt from ""The Mooring Mast"" by Marcia Amidon Lsted, their were many obstacles the builders faced in attempting to allow dirigibles to dock there. One reason was the safety. Paragraph @NUM1 from the excerpts explains that, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" It shows us that if an accident was to happen on the mast above a densely populated area like downtown New York, then the accident could get ugly. Another reason why was nature itself. Paragraph @NUM2 explains that the, ""winds on top of the building were constantly shifting due to violent air currents."" This was another safety issue because the dirigibles would be dangling high above pedestrians on the street. A third obstacle was that there was an existing law against airships flying too low over urban areas. As you can see those were some obstacles builders faced." 3 3 3 +15137 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock their. An obstacle dealt with if the dirigibles were fit to dock in the Empire State Building. Another obstacle dealt with the mast. These obstacles made this construction a failure such as the author who says, ""The mooring mast of the Empire State Building was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed"" in @CAPS1 thirteen.First of, @CAPS1 five states the dirigibles were actually enormous steel-framed balloons, with envelopes of cotton fabric filled with hydrogen and helium to make some lighter in the air."" @CAPS1 six states that, ""Some were as long as one thousand feet."" @CAPS2 how may a blimp of that size ever managed to land on the Empire State Building. Also @CAPS1 nine says ""A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" This @CAPS1 also states that ""The stress the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below.""These were just a few of the obstacles the builders had to face. The fate of the mast such as in @CAPS1 @NUM1 says ""was neither practical nor safe."" The architects were blind to the potential problems of the mast. In the end the mast was a great attempt, but indeed a failure." 1 2 2 +15138 6 "The architect of the new building had three large problems with allowing dirigibles to moor at the top. The first problem was the harsh wind that high up made it extremely difficult to dock the dirigible, ""Fearing that the wind would blow the Dirigible onto the sharp spires of other buildings in the area, which would puncture the dirigible's shell, the captain could not even take his hands off the levers"". Second The back of the dirigible would not be tied down. This problem would lead to safety hazards with people getting off of it, ""The winds on the top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" This effect would also make a challenging and dangerous to take off. The last reason would be that it is illegal to fly aircraft sso low over the city already eliminating the possibility of allowing dirigibles to moor on top. Overall, this idea was not thought out well and was hurried so it would be the first building in the world to have a dirigible mooring mast" 3 3 3 +15139 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted, the builders faced many obstacles when attempting to build the Empire State Building for use of dirigibles to dock there. One obstacle that the architects and engineers faced was that ""most dirigibles from outside of the United States used hydrogen rather than helium"" (@NUM1) this was very dangerous because hydrogen is highly flammable. Another obstacle that was faced was that ""the winds at the top of the building were constantly shifting due to violent air currents."" (@NUM2) even though the dirigible would be tied down to the mooring mast ""the back of the ship would swivel around and around the mooring mast"" (@NUM2) Another problem due to the winds would be that ""the wind would blow the dirigible onto the sharp spires of other buildings in the area, which would puncture the dirigible's shell"" (@NUM4) A last example of an obstacle would be that there is a law stating that all ""airships flying too low over urban areas"" (@NUM4) was illegal. Even if there wasn't a law making it ""illegal for a ship to ever tie up to the building or even approach the area"" (@NUM4) the attemption of even trying would be very dangerous to the people around and below it, and the building itself." 4 3 4 +15140 6 "The obstacles the @CAPS1 of the Empire State Building faced while attempting to allow dirigibles to dock there was the safety of the people below. Also As it says in @CAPS2 @NUM1 ""existing law against airships flying to low over urban areas."" Another main reason is in @CAPS2 @NUM2. The wind currents were violently shifting." 2 2 2 +15141 6 "The obsticles The empire state building were The baloons being made out of flammable material, The wind blowing The dirigible around" 1 1 1 +15142 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. in the excerpt ""The Mooring Mask"" by @PERSON1. The architects and engineers of the Empire State Building were all very competitive for the Building to be very tall and they did not have a very great plan that they used. They wanted the building to have a great top and wanted it to also be useful, so they wanted dirigibles to dock there They figured out after that it wasn't such a good idea when they looked into the history of how many accidents happened. If any accident happened in New York like that then it would be a very big deal because there are so many people that live there. ""The winds on top of the building were constantly shifting due to violent air currents."" The back of the ship would swivel around and around the mooring mask. They felt it would be unsafe for many reasons. This is the reason why the builders went through many obstacles" 2 2 2 +15143 6 Acording to the @CAPS1 both the @CAPS2 and the architects came across several obsticles when it came too building an Area Where Blimps could land that made this @CAPS3 unfesable. One of the @CAPS4 Reasons that this @CAPS3 @CAPS5 was due to the Air laws that made it illegal to fly too low in urban Areas. An additional conflict was fact was that @CAPS6 winds could push the tale of the blimp into sharp spires of neighboring buildings that would pop the dirigible as if it where a balloon. 2 2 2 +15144 6 In the excerpt The Mooring Mast I have seen how the builders of the empire State building ran into obstacles trying to allow dirigibles to dock there. The empire State building was already standing in the architects decided to renovate and make a dock for dirigibles. The architects working on this project had to strengthen the buildings frame. They also had to have wenches and control machinery for the dirigible mooring. The architects also needed to install housed elevators and stairs bring passengers down to the base floor and back up. After the renovations were done to be empire state building it had 102 floors. After the building was done the owners found out that they could not let dirigibles on to the building. They would break the law of airships flying to low in urban areas. So the empire state building was finished but you could not use it for dirigible's. 3 2 3 +15145 6 "Al Smith announced that the Empire State Building would reach the new height of 1,250 ft on December 11, 1929. His plan was to build a mooring mast, at the top of the building to make it equiped for modern travel. The bulders faced three main obstacles, when trying to allow dirigibles to dock there. The first obstacle was safety. Most dirigibles from outside the @LOCATION2 used hydrogen, which is highly flamable. When Hindenburg was destroyed in a fire, the owners of the Empire State Building became worried that a much worse accident would occur in New York.The second and greatest obstacle was nature. The winds was at the top of the building constantly shifted, which would cause the back of the dirigible swivel around the mast. The only way to solve this problem was with lead weights. This was not practical or safe.The final obstacle was the law against airships flying too low over urban areas. This made it illegal for the dirigibles to tie up to the building.In conclusion, the three main obstacles that the builders faced were safety, nature, and the law." 3 3 3 +15146 6 The obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were that there wasn't a lot of room for them to land. The length of them was the same as four blocks in New York City. They also needed to consult with experts and take tours of the equipment. They did lots of experiments and tests on dirigibles. It was also dangerous to have them land there. It was also bad for the enviroment because hydrogen is used and it's is highly flammable. Dirigibles can't dock there because it wasn't stable and that makes it not safe for people. 2 3 3 +15147 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was getting the mooring mast on top of the building. ""The architects could not simply drop a mooring mast on top of the Empire State building's flat roof. A thousand foot dirigible mounted at the top of the building... would add stress to the building's frame."" The architects solve this problem by modifying the building's framework. Another problem was wind. ""The winds on top of the building were constantly shifting due to violent air currents."" @CAPS1 there was one wire connected to the front, the dirigible would go round and round due to the back being exposed to the winds. This problem was never fixed. The builders of the Empire State Building faced many obstacles and while some were overcome, the rest weren't, resulting in the ultimate failure of the mooring mast." 3 2 3 +15148 6 "Al Smith had a great idea. When he thought he was going to have a dirigible station dock on top of the world's tallest building. He had great creativity and wanted to use his building to full potential. Although there were many problems to this idea. One was the urban area below, many people lived in downtown New York City and it would be against the law to have zeppelins flying above the populated area. Another important problem was the intense winds that were harsh and made it very hard to dock on the building. There were many obstacles in the way of fulfilling Al Smith's dream for the Empire State Building to dock dirigibles on the top of the building." 2 2 2 +15149 6 "Some of the things they faced were safety hazards. Like when they said in @CAPS1 @NUM1 when the Hindenburg was destroyed they said ""The owners of the empire state building realized how much worse that accident could of been if it was over new york."" Another obstacle they faced as they said in @CAPS1 @NUM2 was ""Nature itself."" The winds would make a airship @CAPS3 around like crazy. The last problem was the law stating airships can @CAPS3 that low above urban cities." 2 2 2 +15150 6 "In the @DATE1's dirigibles were considered the transportation of the future. Trying to make New York the forefront of modern travel, the architects and builders of the Empire State building rushed to the challenge of building a mooring mast failling to recognize the obstacles that lay ahead. As the architects designed the mast they quickly realized the frame of the building was not equipped to handle the weight on top of its flat roof. Making those adjustments had cost builders more time and New York City more money. In addition workers had not considered wind currents. In this excerpt the writer says ""the U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds."" @CAPS1 workers should have considered possible obstacles before building something as big a project as a mooring mast." 3 2 3 +15151 6 "Al Smith, four-term governor of New York and a leader of the Empire State Building's construction, had a vision. His vision was to create a two-hundred fifty foot mooring mast at the top of the Empire State Building, not only making it the world's tallest building, but also to dock passengers and deliver goods through the use of dirigibles or blimps. Unfortunately, there were many @CAPS1 facing the builders of the Empire State Building regarding the allowance of docking dirigibles on its mast. The main concerns the builders faced were the materials that dirigibles are made out of, mother nature, and airship laws. The first obstacle the builders of the Empire State Building faced concerning the docking of dirigibles on its mast was the materials dirigibles are made from. According to the article, ""The Mooring Mast"" by @ORGANIZATION2, ""Most dirigibles... used hydrogen... highly flammable..."" The builders realized this posed as a huge safety threat, especially over a densely populated city. The second obstacle the builders faced regarding the docking of dirigibles on its mast was mother nature herself. The article states, ""The winds on top of the building were constantly shifting due to violent air currents... neither practical nor @NUM1). The construction workers realized that having passengers moving on and off the mast, could be very dangerous in harsh weather conditions. The final obstacle the construction workers faced was an overlooked airship law. The story says, ""... an existing law against airships flying too low over urban areas,"" (@ORGANIZATION2). The workers realized that it was against the law to even tie up an airship to a building. In conclusion, the three main @CAPS1 the builders of the Empire State Building faced in regards to the allowance of docking dirigibles on its mast were the materials that dirigibles are made of, nature, and airship laws." 4 4 4 +15152 6 "In this project to construct a mooring mast on top of the Empire State Building, there were some problems. The idea of the mooring mast was to be able to dock dirigibles to the top of the Empire State Building + be able to have passengers get on + off the dirigible from + into the building. The big problem that it faced was the wind speeds that high up in the air. At nearly @NUM1 feet in the air the wind would be whiping around even a massive, steel, docked dirigible. When New York governor, Al Smith put forth ideas to construct this mast nobody realized untill after that it was a somewhat rediculous task. In paragraph @NUM2, it states, ""The mooring mast of the Empire State Building was destined to never fulfill it purpose, for reasons that should have been apparent before it was ever constructed."" After it was ruled impossible, people started to realize that everyone was just caught up in the new modern travel idea to be down to reality." 2 1 2 +15153 6 "In the excerpt, it talks about making the empire state building the tallest in new york. It was the tallest building until archetectures built the chrysler building. The chrysler building stood 1,046 feet, 46 feet taller than the empire state building. So Al Smith realized he was gonna loose his tittle for having the tallest building. Then he came up with the idea of adding a top or a hat to the building.The idea Al Smith came up with was adding a landing spot for blimps or dirigibles. Al Smith knew it wasnt gonna be easy so he thought of possible reasons why it wouldnt work. He had to design another figure that would be able to hold the mass of the blimps. He also had to think about how passangers would get on and off the blimp. He also remembered most blimps use hydrogen instead of hellium which hydrogen is highly flammable. For example the German blimp hindenburg was destroyed by fire in lake hurst." 2 2 2 +15154 6 "The builders of the Empire State Building faced several problems in attempting to allow dirig ibles to dock there. One problem was strengthening the building's frame. This was necessary because the added pressure of the dirigible's load and wind needed to be transmitted all the way down to the foundation. The existing skeleton of the building had to be edited. In fact, these edits cost over sixty thousand dollars. Another problem builders faced was constructing the mast itself. To give it a unique look, architects made the tower out of glass and chrome-nickel stainless steel. They had to place the machinery at the base of this tower. The builders also had to make sure it was accessible to passengers; they made sure luggage and people could go to and from the aircraft. These are two of the challenges builders faced is constructing the Empire State Building. Despite the mast being unused in the present day, the design makes this building one of the most well-known buildings in the world." 2 1 2 +15155 6 "The builders of the Empire State Building faced many obstacles when they attempted to allow dirigibles to dock there. One obstacle the builders faced was the harsh winds. The Empire State Building is so tall that the winds were very fast and it would constantly change direction due to violent air currents. This made it very hard to dock the Dirigibles. Also another obstacle was the pedestrians and other buildings around. Most ballons were filled with hydrogen which is highly flammable. If a dirigible got caught on fire or crashed, a lot of damage would be done to the city and its people. The structure of the building also proved to be an obstacle. The dirigibles were so large that the buildings structure was at danger of failing and destroying the building. The final obstacle the building faced was the law that made it illegal for a ship to ever tie to a building or even fly that low in an urban area. Although there were a few attempts, the Empire State Building never was able to have dirigibles to dock on it." 4 3 4 +15156 6 "In the excerpt, there where many obstacles the builders of the empire state building faced in attempting to allow dirigibles to dock there. The problems where that the dirigible being ""held by a single cable tether, would add stress to the building's frame"", and the wind pressure wouldn't help either, as stated in @CAPS1 @NUM1. Another issue was that, as said in @CAPS1 @NUM2, ""most dirigibles from outside of the united states used hydrogen rather than helium"",... ""hydrogen is highly flammable"", Also in the @CAPS1 @NUM2, ""The owners of the empire state building realized how much worse,"" a accident could be ""if it had taken place above a densely populated area such as down town New York. These are the problems the builders faced." 3 3 3 +15157 6 "In the excerpt The Mooring Mast, written by Marcia Amidon Lsted, the builders of the Empire State Building faced many problems with their ideas. The builders thought they would be able to make a successful landing dock for dirigibles. Everything they did was all planned right but when it came time to test it, it didn't work. There were quit a few problems with there idea of using the Empire State Building is a landing dock for dirigibles.One reason that this one not successful was because the dirigibles wern't able to get close enough to attach the building In order for the dirigible to be ankered would be for a rope to be tied to some thing. But the balloons wern't able to get to close to the building because the point at the top of the building was making it too hard. If it got to close to the point, it could puncture the balloon which would not be could because the gas that holds it up would come out and the balloon would fall. There is one more major reason they're plan did not work.The other major reason would be because of the wind. the wind would get so wild the back of the blimp would sway back and forth, making it dangerous for passengers. They wouldn't be able to weigh it down with weights would be dangerous for the pedestrians down in the city @CAPS1 of the major reasons why the plan to dock dirigibles at the empire state building would not work." 3 3 3 +15158 6 "The builders of the @ORGANIZATION1 many obstacles in order to allow dirigibles to dock there. To start off, there was a lack of suitable landing area. This was a tough obstacle because the builders needed to think of a place that extremely large dirigibles could land while in a crowded place like New York City. Next, was figuring out a safe way of getting the mooring mast on top of the Empire State Building. This was another tough obstacle because if the mast was just placed on the top of the building, it would add stress to the building's Frame, which is dangerous. Lastly, and most importantly, was the problem of nature. At the top of the building there were constantly shifting wings due to violent air currents. This was an extremely dangerous obstacle because the winds could cause the dirigibles to be constantly moving and shaking. Also, if they were weighted down by lead weights to prevent them from being affected by the wind, the weights would be dangling above pedestrians on the street. To allow dirigibles to dock on the Empire State Building, the builders @ORGANIZATION1 many different obstacles." 3 4 4 +15159 6 "Based on the excerpt, builders faced many problems in allowing dirigibles to dock on the Empire State Building. First, safety would be a large problem. Back then, most dirigibles used hydrogen (which is highly flammable) instead of helium to power them. This means that if there was a malfunction such as a fire, not only with the dirigible burst into flames, but the Empire State Building could too. Another obstacle builders had to confront was mother nature. According to paragraph @NUM1 of the reading, the location of the Empire State building has ""violent air currents"" with shifting winds. This problem would cause the dirigible to not stay stable. Although solutions like lead weights being hung from the back of the dirigible were offered, this only lead to more problems. If the lead weight fell, where would it land? The answer would be in the streets of @ORGANIZATION2 where pedestrians could be harmed. The final obstacle builders would have had to get through if they continued their plans for the dirigibles would be a law. The law stated (according to the reading) that airships could not fly too low over urban areas. So in theory, all of the plans the builders of this concoction had to be put to rest due to the governments law. In conclusion, many problems arose as building, and plans to make the ""Dirigible dock"" were made." 3 3 3 +15160 6 "Based on the excerpt, the obstacles that the builders of the Empire State building faced in attempting to allow dirigibles to dock there would be that the architects could not simply drop a mooring mast on top of the Empire State Building's flat roof because a thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame. The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below. Over sixty thousand dollars worth of modifications on the framewor The greatest obstace of the mooring mast was nature itself. The winds on the top of the building were constantly shifting due to violent air current. The back of the ship would swivel around and around the mooring mast." 2 3 3 +15161 6 "The builders of the Empire State Building faced many obstacles in attempting dirigibles to dock there. First the stress of ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether,"" was a problem. So the steel frame of the building had to be modified and strengthened to accommodate the dirigibles. Next, they faced the fact that dirigibles from outside the United States used hydrogen rather than helium. Hydrogen is highly flammable and ""when the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the Owners of the Empire State Building realized how much worse the accident could have been if it had taken place above a densely populated area such as downtown New York."" @CAPS1, the greatest obstacle was the winds on top of the building that changed due to violent air currents. If you had a dirigible moored and weighted down with lead weights above pedestrians, it could lead to disaster. In attempting to allow dirigibles to dock at the Empire State Building, builders realized too many obstacles interfered and it could never happen." 4 4 4 +15162 6 "In the excerpt ""the Mooring Mast"", the author @ORGANIZATION2 explains some of the obstacles that the builders had to face in their attemp of allowing dirigibles dock on the mast of the Empire State Building.First of all, the dirigibles were big and heavy and needed space to land. @ORGANIZATION2 stated that ""some were... the same length as four blocks in New York City."" If the builders wanted to @CAPS1 dirigibles on top of the building, they would need a lot of space to build a big landing platform for a safe landing.Secondly, the decided that they could not land dirigibles on a flat roof and decided to tie it with a cable tether. The authors says ""the architects could not simply drop the mooring mast on top of the... flat roof."" They realized that the weight of the dirigible would deform the buildings structure and that the strong winds could cause damages down to the foundation of the building.In conclusion, the workers faced many obstacles in order for them to @CAPS1 dirigibles on top of the State holding." 1 2 2 +15163 6 "The builders of the Empire State Building faced many obstacles, while trying to build a dock for dirigible. One problem was safety. While American dirigibles used helium, other countries filled their dirigibles with highly flamable helium. If a dirigible were to ignite in a heavily populated area like New York City, the result would be deadly. Nature also caused problems with the mooring mast. The winds above the building were too strong and ever-changing, and could potentially destroy the dirigibles. Finally, federal laws stated that an air craft could not dock that close to a building. These three factors made it impossible for dirigibles to dock on the Empire State Building." 3 3 3 +15164 6 "Throughout the process of building the Empire State Building with dirigibles dock there were many complications. At @CAPS1 the building was unable to simply put a mooring mast on top of the building. The roof was flat, therefore the dirigible would add stress to the building. They would need over @MONEY1 to modify the building framework. Then they realized that most dirigibles used hydrogen rather than helium, hydrogen is highly flammable which would be unsafe. They ran into a problem with nature itself. At the top of the Empire State Building the winds constantly shifted because of the violent air currents. Even if they were to tether the mooring mast, the back of the ship would spin around and around the mooring mast. Therefore with people all over the streets in @CAPS2 this was neither possibly or safe. There was also an exisisting law against flying airships too low over urban areas. All this gave way to airplanes, so even though dirigibles didn't work it helped." 3 3 3 +15165 6 "The builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was that countries other than the United States used hydrogen rather than helium. Hydrogen is highly flamable, if it caught fire above a city, the results would be diasastrous. Another obstacle was that at such a hieght, the winds would blow the back of the dirigible around. Perhaps the most obvious obstacle in allowing dirigibles to dock on the Empire State Building was the law that airships could not fly below a certain hieght over cities. All of these obstacles combined to make the project impractical and impossible" 3 3 3 +15166 6 "Back in the roaring @NUM1's and @NUM2's, New York City was a popular place which needed to adapt to the ways of modernizing travel. A new and fashionable form of travel was the blimp, or the dirigible. These @ORGANIZATION2 balloons had nowhere to dock in the @ORGANIZATION2, and solving that solution was harder than expected.Al Smith, architect of the Empire State Building decided that he could use the top of the tower as a mooring mast for these dirigibles. After adapting the entire building for the change, Smith ran into a few problems.The first @ORGANIZATION2 issue surfaced when a German dirigible exploded in New Jersey. This let Smith know that it would be a bad idea to allow any @CAPS1 blimps near as most non-American crafts were filled with ""hydrogen [which] is highly flammable,"" leaving possibility for catastrophe. Another snag was the ""winds on top of the building... shifting due to... air currents"" which would cause the dirigibles to freely and dangerously sway in the wind. With the wind, they could crash into towers and ""would be dangling above pedestrians."" @CAPS2 valves also came into play as there was a preexisting law against airships flying too low over urban areas"" which would make any dirigible activity with the Empire State Building downright illegal." 4 3 4 +15167 6 "The builders of the Empire State building faced many obstacles in building a mooring mast for airships to dock at the top building. The stress and preasure of a thousand foot dirigible docked at the top of the building was too great for the buildings original frame work to support, so they had to reinforce and strengthen the framework and base so the preasure would be transmitted to the buildings foundation. Another obstacle was most dirigibles from outside the @LOCATION2 were filled with hydrogen instead of helium. Hydrogen was much more flamible and the hydrogen dirigibles like the German dirigible Hindenburg was destroyed in fire and they didn't want that to happen over New york's population. The final obstacle was the violent and shifting air currents over the building. Even if the front of the dirigible or ""mast"" was tied to the mooring mast the back would swivel around the mooring mast. The many unseen obstacles of the mooring mast made it in unpracticle docking point for dirigibles. In the 1930s after airplanes, and dirigibles had disappeared the ticketing & bagging rooms were turned into tourist and site seers areas." 3 3 3 +15168 6 "When the builders of the Empire State Building were in the process of building the docking station they ran into many @CAPS2. One of these @CAPS2 being the air currents at the top of the building. The dirigible would be unable to stay still and safely let off its passengers. Evidence to support this claim comes from the article itself when it says, ""The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents."" Another obstacle the builders faced was the law. This law prohibited airships from flying low in a populated area. Therefore an airship trying to dock at the Empire State Building would be breaking the law. This was explained in paragraph fifteen of the article when it said, ""This law would make it illegal for a ship to ever tie up to the building or even approach the area..."" @CAPS1, it became very dangerous to dock these dirigibles in a populated area or near a building because there was the threat of them bursting into flame. Such as the dirigible Hindenburg in 1937. The article explains that the builders realized this new threat, ""... the owners of the Empire State Building realized how much worse the accident could have been..."" @CAPS2 plagued the construction of the docks." 4 4 4 +15169 6 "The builders of the Empire State Building faced numerous obstacles in attempting to allow dirigibles to dock there. The unforeseen safety issues lead to the downfall of the creative use for the building. ""The greatest reason was one of safety. Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (@CAPS1). They saw some of the dangerous affect of hydrogen when the German dirigible the Hindenburg was destroyed in a fire. ""Owners of the Empire State Building realized how much worse the accident could have been if it had taken place above a densely populated area such as downtown New York"" (@CAPS1). Other problems that the builders of the building faced were those of mother nature. ""The winds on top of the building were constantly shifting due to violent air currents"" (@CAPS1). This made it hard for the dirigible to dock to the mast safely. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"" (@CAPS1). Not only was nature playing against the builders, but the law was also. This is almost negligence on the builders part to not realize that they would be breaking a law by constructing this mooring mast. ""This law would make it illegal for a ship to ever tie up to the building or even approach the area"" (@CAPS1). Although the idea for a dirigible mooring mast on top of the empire State building seemed innovative and practical, it was irrelevant due to the many obstacles that obstructed the builders of the Empire State Building." 4 4 4 +15170 6 "By attempting to construct a mast on the Empire State Building, builders encountered all sorts of problems. The purpose of this mast was to allow dirigibles, or blimps, to dock. Many of these problems however, were the effect of the dirigible itself. In paragraph thirteen, line @NUM1, the author talks about some of the dangers of the dirigible, ""Most dirigibles... used hydrogen rather than helium, and hydrogen is highly flammable."" Another obstacle is location. It was thought to be very unsafe because if a blimp caught fire it would land in the middle of New York City, not some remote cornfield And finally, the winds changed frequently that high up. It was an unwise decision to dock at this area if the dirigible would be blown around the building." 2 3 3 +15171 6 "Al Smith was a guy who had an idea of making the world tallest building, and he didn't give up. In December 11, 1929, he announced that the Empire State building, goal height would reach 1,250 feet. He also wanted transportation to involve.The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there, was the lack of landing area. Al Smith thought he could add a mooring mast to the top of the building and allow dirigibles to anchor there for several hours for refueling or service, and let passengers on and off.One of the greatest obstacle to let the dirigibles docked there, was the weather. The dirigibles moored in open landing fields could weigh down, where it could dangle high above pedestrians on the street. It was also an existing. law against airships, flying too low over urban areas." 2 2 2 +15172 6 "Through life many people plan to make or build an amazing object but have to acomplish amazing feats in order to do this. In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, @ORGANIZATION1 plans on building the tallest building in the world, but in order to do this he has to defeat many obstacles that you and I may never even think of. On December 11, 1929 the Empire State building was announced the world's tallest building. In making this huge building there were many obstacles. One of the obstacles was allowing dirigibles to dock on the building. ""The greatest obstacle was nature itself. The winds on the top of the building were constantly shifting due to violent air currents."" This quote shows that it may be unsafe to allow dirigibles to dock due to the winds. Another quote that shows an obstacle of having dirigibles docking at the empire state building is, ""an existing law against airships flying to low over urban areas"". This quote shows that it might be illegal to allow dirigibles to dock on the empire state building. In life we defeat great obstacles but sometimes we cannot defeat the obstacles we face." 2 2 2 +15173 6 "In The Mooring Mast by Marcia Amidon Lsted, it describes the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. In paragraph @NUM1 they described the greatest reason was one of the safety because most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable.In paragraph @NUM2 they also describe another obstacle was the nature itself because the winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. Even dirigles moored in open landing fields could be weighed down in the back with lead weights, this could be dangerous for pedestrians. In paragraph @NUM3 they describe another reason why dirigles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas. This law made it illegal for a ship to ever tie up to the building or even approach the area. These are some examples of the obstacles the builders of the Empire State Building faced in allowing dirigibles docking there." 4 4 4 +15174 6 "The Empire State Building faced obstacles in attempting to allow dirigibles to dock there. Some obstacles serverely affected the building attemp of the dirigible dock. For instance, The Empire State building is located in a very dense urban location. At the time most dirigibles outside the United States used Hydrogen insted of Helium. The main difference between the two was that Hydrogen is more flamable then Helium. So if the Hydrogen from the dirigible was to ignit then a castistrophic fire would arise. The effects could be as devistating as the Hindenburg which ignited over Lakehurst, New Jersey on May 6, 1937. The result of the Hindenburg accident forced the architectures and enginners to look for a safer, alternate solution. Explosive gases were not the only problem though. Strong, gustful winds were present at the top of the Empire State Building. If winds were to blow a docking dirigible offcourse then the outcome would be deadly. If the dirigibles caught fire or were blown offcourse will docking then the pedistrians on the ground level could be injured." 2 3 3 +15175 6 "Dirigibles, or blimps, were seen as the transportation of the future. In order to add height and yet serve a purpose, architects of the Empire state Building decided to build a mooring mast upon the building to accommodate ""aviation pioneers."" @CAPS1 the mast was built and gave the building its desired height, the usage of it as a docking station for dirigibles would never be fulfilled. The obstacles that builders had in attempting to allow dirigibles to dock included the height of the building, wind speeds, and the safety of civilians. The height of the building was 1,250 feet, thus having violent shifts in air currents. ""The wind s on top of the building were constantly shifting due to violent air currents. Even if the dirigibles were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Dirigibles also used hydrogen for fuel and lead weights to be weighed down; however, by using the mast, hydrogen and the use of lead weights provided a safety hazard to civilians below. Builders had created the mooring mast to dock dirigibles, but the idea caused problems and was never fulfilled." 2 2 2 +15176 6 "There were many obstacles in attempting to allow dirigibles to dock on the Empire State Building. One of the reasons was that the dirigible hanging by one cable tether, would add stress to the buildings frame. This stress would cause the buildings foundation to crack. This obstacle caused the architects to have to strengthen the foundation, this cost them over sixty thousand dollars in modifications. Another obstacle was they had to make another floor which would be used for passengers and would let elevators bring the passengers to the eighty-sixth floor, where their baggage and ticket area would be located. These observation areas were to double as the boarding area for dirigible passengers. Once this was done, they then had complete the roof before the framing for the mooring mast could take place. Another obstacle was nature itself, the winds at the top of the building were always shifting and the dirigibles, that usually land in open fields, could be weighted down with lead weights, but could not be used at the Empire State Building, where they would be hanging over pedestrians on the streets. Another obstacle was that there was a law against airships flying too low over urban areas. This would make it illegal for dirigible to tie up or even approach the Empire State Building. All these many obstacles led to the ideas of dirigibles and mooring mast, for the dirigibles had dissapeared." 3 4 4 +15177 6 "The builders of the empire state building attempt to allow dirigibles to dock there was a fuetle effort. The tried a numerous amount of different ways to approach this idea. There were a few different theorie's on what would be best, and how to develope the Mooring Mast by Al Smith and John Tauranac. Each man had a different thought on how the whole structure would turn out. The architects designed a new glass and chrome-nickel stainless steel tower that ranged from the bottom to the top of the empire state Building. This structure helped support the mooring are, where the dirigibles were docked. But the fate of the Mast was not to bright. ""The Mooring Mast of the Empire state building was Never destined to fulfill its purpose, for reasons that should have been apparent before it was ever constructed."" This statement is utterly true. And shows the work of the architects was never fully planned and over looked for the Mast to be durable." 1 0 1 +15178 6 "Based on the excerpt the obstacles that the builders of the Empire State Building faced in atteptin to allow dirigible to dock there were the fallowings. One obstacle to their expanded use in New York City was the lack of a suitable landing area. The greater obstacle to the successful use of the mooring mast was nature itself, the winds on top of the building were constantly shifting due to violent air currents. The dirigible couldn't do anything even if tethered it to the mooring mast, the back of the ship would swivel around and around the mooring mast." 2 2 2 +15179 6 "The installation of a mooring mass on top of the Empire State building would have made the building, as well as the city of New York, incredibly important to modern travel in the 1930s. Alas, many difficult obstacles made the mast impossible to complete. First, to get the mast to the top, the buildings frame had to be strengthened and reinforced, which was painstaking and expensive. Second, the builders had to deal with the possibility of the blimps exploding. Another obstacle the builders faced was nature. With constantly shifting, violent winds at the top of the building, the zeppelin would sway and swivel around the mast, making it difficult and dangerous to unload passengers. With high winds, the zeppelin could even detach from its mooring and fall onto the city below, potentially killing hundreds. Lastly, the builders failed to take into account the law that forbade dirigibles to fly too close to urban areas. This law made it illegal for any blimp to get near the Empire State Building, let alone dock on it. The thought of a mooring mast on the Empire State Building was a fantastic idea, albeit one destined to fail from the beginning." 4 4 4 +15180 6 "The Mooring Mast by @ORGANIZATION2 is mainly about builders and architects attempting to put a mooring mast on the top of the Empire State Building in New York. At first, the main idea of the mooring mast was to allow dirigibles to dock at the mooring mast to drop off and bring on passengers. The mooring mast was needed because ""The architects could not simply drop a mooring mast on top of the @ORGANIZATION1 flat roof. A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame. The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation."" (paragraph @NUM1). One reason why this plan did not work out was because it was not safe, because the hydrogen that dirigibles use is highly flamable (and this could cause a serious fire). Also, if it was a windy day, the dirigibles could get pushed around by the winds. To stop this, they have lead weights to weight them down, but they cannot use these with all of the people and other buildings around. Also, dirigibles could not fly too low over these kinds of areas. Although the plan did not work, it was better to have everyone be safe." 4 4 4 +15181 6 "Builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there, both during construction and after. During The creation of the mooring mast, the architects had to figure out how to place it on top of the building, because the stress of the load and wind pressure would add stress to the building's frame; instead, they had to transmit the load and pressure to the foundation, modifying and strengthening the steel frame of the building. Builders also wantd the mast to be aesthetically pleasing, needing to make the tower of shiny glass and chrome-nickel stainless steel, rising to a conical roof and illuminated from inside. After the creation Of the mooring mast, more difficulties arose. The safety of the mast was an issue, as the hydrogen-using blimps outside the U.S. were highly flammable, and the German dirigible Hindenburg caught fire as a result. The winds at the top of the building, too, created danger, for they constantly shifted from the violent air currents. Dirigibles would swivel around the mooring mast Another obstacle was the law forbidding airships from flying too low over urban areas. It would be illegal, therefore, for a dirigible to tie up to the building Or even fly too close to the area." 3 4 4 +15182 6 "In ""The Mooring Mast"", by @ORGANIZATION2 it revealed many problems with docking dirigibles on top of the Empire State Building. Al Smith, the Architect working on the Empire State Building thought the mooring mast would go up with no problems. Architects soon realized that the mooring mast would add stress to the buildings frame work and cost @MONEY1 in modifications. After seeing what happened to the German dirigible ""Hindenburg"" in Lakehurst, Architects soon realized that having dirigibles filled with highly-flamable hydrogen over the densely populated New York City wasn't a good idea. Nature itself would not allow the mooring mass to be built.There was such violent air currents at the one thousand and fifty foot tall @ORGANIZATION1 altitude that made Architects aware that this idea couldn't be upheld. The dirigible would swivel around because it couldn't be weighed down like in open landing fields. They couldnt use these weights because having weights suspended over pedestrians heads was neither practical nor safe. There is also a law against airships flying too low over urban areas. This would make it illegal to try and dock a dirigible on top of the Empire State Building. In the end, the idea of having dirigibles dock on the Empire State Building and become the new way of modern transportation was soon abolished." 3 4 4 +15183 6 "while attempting to let dirigibles dock at the Empire State Building, the builders faced many obstacles. For one thing, there wasn't a whole lot of landing room in New York City for them which ultimately made things tougher. Also, they were forced to put more work into the building by strengthening and modifying the steel frame of it to accommodate the new situation. A lot of money was spent on these new renevations, over sixty thousand dollars. This was done mainly to reduce stress on the building's frame. But overall they managed to get it all done, and make their way through these tricky obstacles." 2 2 2 +15184 6 "Al Smith had an ambitious plan to put his Empire State Building on top of New York. He envisioned the skyscraper as a dirigible port and a future transport hub. Techical limitations eventually proved insurmountable though. First, dirigibles had to deal with docking in an urban area. Dirigibles normally dropped lead weights to secure there landings, but this would be impractical when people were on the streets below. Wind was also a major problem because it made the blimp difficult to stabilize in the air. The wind would be ever more problematic in the city as if a Dirigible hit a building it would puncture and fall into New York city. Neither of the Dirigibles that tried to moor could because of wind and other buildings. As stylish as landing in the middle of @LOCATION1 would have been, safety problem could not be fixed and there were too many people around to risk it." 3 2 3 +15185 6 the obstacles the builder of the empire state Building faced were... When the were planning to build a mask for the Dirigibles. When they first tried to build it they figured out that the structure of the Empire State building could not hold the mask. The Empire State building had to souport both the mask and the Dirigibles. Then at the end of the story the figured out there was no way to do it. That was one of the obsticals. 1 1 1 +15186 6 "Whenever architectural work is put in act, thoughts of the potential consequences should be thought out beforehand. In ""The Mooring Mast,"" the builders of the Empire State Building faced several obstacles in attempting to allow dirigibles to dock there. The blimps consist of dangerous chemicals and, ""most dirigibles from outside the United States used hydrogen rather than helium,"" and hydrogen is extremely flammable. A possibility of flames could result in a ruined building, and even worse, a destroyed city. Although fires were a problem to consider, ""the greatest obstacle to the successful use of the mooring mast was nature itself."" This building is extremely high in the sky, therefore the winds get quite brutal. If a blimp was tied to the mast, the back of the ship continuously swivel and ruin the fabric of the aircraft. A mooring mast was just not a bright idea for a large city like New York. The population was too large, and the area was too crowded. The obstacles the architects faced were serious, and they helped the team to kill the idea of allowing dirigibles to dock at the Empire State Building." 3 4 4 +15187 6 "Many obstacles were faced by the builders of the Empire State Building as stated in the article ""The Mooring Mast"" by @ORGANIZATION2. These obstacles included safety and availability. The idea of being able to dock a dirigible to a building in the middle of a densely populated city such as New York was extremely unsafe between the explosive tendencies of Hydrogen and the unmanageable winds. With the winds the dirigible would continuesly move around the mast creating an extremely unsafe environment for all. Availability would also be put into question, in paragraph fifteen @ORGANIZATION2 tells about the U.S. Navy dirigible Los Angeles @CAPS1 to dock due to the unavailable route of save entirence. This unavailability made traveling to the mooring mast almost impossible. The obstacles in the mooring mast include availability and safety." 3 2 3 +15188 6 "There are many obstacles with the docking of the dirigibes, for example in the text it talked about if the accident had taken place over @CAPS1 it would of been alot worse because New York is A populated city another obstacle was the height as mention in the text and any thing could happen at that height so those are some obsticles in the way of the docking of the dirigibes." 1 1 1 +15189 6 "In the article, The Mooring Mast by @ORGANIZATION1 was determined to make the Empire State Building the tallest building. To make the Empire State Building taller than the Chrysler building, Smith decided to create a ""mooring mast"" where dirigibles could land and become ""transportation of the future."" However, the dirigibles never landed, because there were many obstacles in landing a dirigible on the Empire State Building. Many Dirigibles that are from outside the United States use hydrogen rather than helium. Hydrogen is highly flammable, and because the Empire State Building is in New York City, it would be hazardous for a hydrogen filled dirigible to land, in a densely populated area, like New York City. Another obstacle faced is the weather at the top of the Empire State Building. The winds are much stronger than down the streets. If the dirigible were able to land, the winds would be blowing the dirigible all around and out of control. Finally, it is illegal to have a airships flying too low to the ground and near people. By having a dirigible land on the mast, it would break the law. There were too many obstacles for Al Smith's idea to become reality." 4 4 4 +15190 6 "The builders of the Empire State Building faced several challenges in building a dock for dirigibles They would not be able to simply place of mooring mast on the flat roof of the Empire State Building. The thousand-foot dirigible held by a single cable would make the frame very unsturdy. With the weight of the dirigible and the wind pressure it would have to get transmitted to eleven hundred feet, where the foundation is. The would need to make the frame stronger to with stand the stress which would cost over sixty thousand dollars. In the end the mooring mast never was made because of safety, unpredictable nature and of the law itself. It was unsafe due to the highly flammable dirigibles putting the high populated region in danger. The winds would shift to constantly and violently and be to very difficult to control the dirigible. Also, the law that airships flying too low over urban areas would have made it illegal. Ships would not be able to ever tie up to the building or even approach the area. Overall, there were too many obstacles that made it impossible for the engineers to build a mooring mast." 3 4 4 +15191 6 "The builders of the Empire State Building faced a number of different obstacles in attempting to allow dirigibles to land there, the most difficult of which were the urban location, money, and the weather. The urban location was an obstacle for the builders because there are laws against airships flying too low over a density populated area and you can't weight the airship down like you could if it was on the ground because the weights would be dangling over the city. The second obstacle was money because it was becoming increasingly expensive to pay for all of the modifications to make the mooring mast the reality. The third and most dangerous obstacle was the weather because wind and other various kinds of storms can control the airship and make it difficult for it to dock at the Empire State Building. Therefore, the obstacles of the urban location, money, and the weather made it virtually impossible for the mooring mast to be constructed." 3 3 3 +15192 6 "The dirigibles were not able to dock on the mast of the Empire State Building for obvious reasons. When the construction workers were building the mast, they didn't realize how dangerous it was having a dirigible landing on the top of the building. There were a few cautions that the workers realized. First off, if the dirigible catches on fire like the one in Lakehurst, New Jersey, then a lot of people would be at risk because it is such a big city with massive amounts of people. Another reason they realized after was that it was too dangerous for the dirigible to land there due to the high swirling winds. If they tried landing there, but the violent winds wouldn't let them, then it would not be the least bit safe. This is how the workers of the Empire State building faced obstacles in allowing dirigibles to dock there." 2 2 2 +15193 6 "There Are @CAPS1 things that Are worry Some About dirigibles docking there. One of them was the fact that ""The dirigibles would sway in the wind As the passengers walked down A Gangplank"". This would be unsafe because As it sways, it could knock the passengers off the plank and cause them to fall." 2 0 1 +15194 6 The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were: The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible was tethered to the mooring mast the back of the ship would swivel around the mooring mast. United States used hydrogen rather than helium and hydrogen is highly flammable. 2 2 2 +15195 6 "the obstacles the builders of the empire state @CAPS1 face. was that their expanded use in @LOCATION1 was the lack of a suitable landing erea. Al Smith saw an opportunity for his empire state Building.A mooring mast added to the top of the building would allow dirigibles to anchor there for several hours for refueling or service, and to let passangers off and on. Dirigibles were docked by means of an electric winch, which hauled in a line from the front of the ship and then tied it to a mast." 1 1 1 +15196 6 "The main obstacle in allowing dirigibles to dock at the Empire State building's Mooring Mast was safety. ""Most dirigibles... used hydrogen... and hydrogen is highly flammable."" ""The owners... realized how much worse that accident could have been if it had taken place above downtown New York."" If an accident were to happen with a dirigible it would be putting hundreds of people's lives at risk. That is why this idea was unpractical and unsafe.Another obstacle in allowing dirigibles to moor at the Empire State Building's mast was nature itself. ""The winds on top were constantly shifting due to violent air currents."" This would cause the back of the ship to swivel around the mast. Lead weights could be used, but that was neither practical nor safe where they would be dangling high above pedestrians." 3 3 3 +15197 6 "In the excerpt, The Mooring Mast by @ORGANIZATION2, the was obstacles the builders of the Empire State Building faced in attempting to allow derigibles to dock there. One obsacle was that dirigibles from outside of the United States used hydrogen rather than helium. This was a problem because as it says in paragraph @NUM1, line four, ""hydrogen is highly flammable."" The geatest obstacle for builders of the Empire State Building faced in attempting to allow dirigible to dock was nature itself. Nature itself would be an obstacle because ""dirigibles moored in open fields could be weighted down in the back with lead weighths, but using the at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe."" This were some of the obstacles the builders of the Empire State Building faced in attempting to allow derigibles to dock there." 2 3 3 +15198 6 "Based on the excerpt the builders faced many obstacles trying to attempt dirigibes to be allowed to dock on the Empire State building. The builders faced obstacles like the lack of land area in New York as said in @CAPS1 6. In @CAPS1 @NUM1 it says that a big problem they faced was they could just land right on the flat roof and some other problems they faced in this @CAPS1 was the cable at the top of the building added stress to the building eleven hundred feet below the building and some of this work cost over sixty Thousand dollars. Problems with safety is the lead wieght be dangling high above pedestrians on the street which was niether practical or safe. And another unsafe thing is in @CAPS1 @NUM2, they said that Hydrogen in these dirigibles was highly flammable which is very unsafe. In @NUM3 it says that there was an existing law against flying airship above urban areas." 2 3 3 +15199 6 "The Empire State Building was an incredible building without the idea of the attempting to allow dirigibles to dock there. But with this idea of this mooring mast it braught up many obstacles like the safety of the public. Lsted states ""Most dirigibles outside of the United States used hydrogen rather than helium, and hydrogen is highly flamable."" (@CAPS1 @NUM1) This statement proves that if the dirigible were catch fire like the accident in Lakehurst, New Jersey, then the citizens of New York's lives would be at stake. This safety hazard is one of the builder's problems. These archatets faced many challenges with this mooring mast idea. Including the dangerous factor of nature. Lsted states ""The winds on top of the building were constantly shifting due to violent air currents."" This is extremely dangerous because the dirigibles start to move around the building while docked causing hazardous menuvers and putting pedestrian's lives at risk. For this mooring idea, it is too dangerous for the public and the city of New York." 3 3 3 +15200 6 "In the process of building the dock for dirigibles, builders faced some obstacles. The first obstacle builders faced, was the lack of suitable landing area. If there wasn't area to land, there was no reason or way to build it. Also, the builders would have to remodel the whole building. After the building was framed to the 85th floor, they couldn't build the mast until the roof was done, so it took even longer.The greatest obstacle the mast dealt with was nature itself, because the winds on the tops of the buildings were constantly shifting, so there was no way for a dirigible to land or stay in place without crashing. The final obstacle builders faced was a law against airships flying too low to the urban areas, which made it illegal for a ship to ever tie up or even approach the building.As you can see, there were many obstacles, and the mast wasn't useful. It was a great idea. But in my opinion it was a waste of time and money." 3 4 4 +15201 6 The obstacles the builders of the Empire State building in attempting to allow dirigibles to dock there were one it was very windy so it was hard for the dirigibles to hook up to the gear. Anouther was the dirigibles very flamable so they were a danger to the city if the caught on fire. One other reason was it is illegal for a ship to ever tie up to the building or even approach the area 2 3 3 +15202 6 The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. One obstacle was safety because outside the U.S dirigibles were using hydrogen instead of helium which is highly flammable. The greatest obstacle to the successful use of the mooring mast was nature. The winds on top of the building were constantly shifting because of violent air currents. One more obstacle was an existing law against airships flying too low over urban areas. The law said it was illegal for a ship to approach or even be tied up to a building. 3 2 3 +15203 6 "In the excerpt from ""the mooring Mast""by @ORGANIZATION1, the builders faced many obstacles in attempting to allow dirigibles to dock on the Empire State building. First, they risk having the dirigibles from places outside the U.S cause a fire. @ORGANIZATION1 states ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (@CAPS1. @NUM1). This would become a big issue because they will run the risk of having other dirigibles pass our highly densed air and cause a fire inadvertently. By building a loading dock they are potentially harming the area of downtown New York. Second another obstacle that would get in the way of building the dock is nature. Builders say ""The wind on top of the building were constantly shifting due to violent air currents"" (@CAPS1. @NUM2). Even if they attempt to tie down the dirigibles there is a chance that the back will move around. the idea that the winds would be too much to handle they brought up alternatives like lead weights, but it will become a hazard for pedestrians. Finally there was a law that prevented any airships to fly too low. The article reads ""This law would make it ilegal for a ship to ever tie up to the building or even approach the area"" (@CAPS1. @NUM3). the law made it extremely hard for the builders. The overall idea was to make the airship to land on the building, and this obstacle made it a bigger problem. The idea of a dock vanished, it was too much of a risk to do it. Nevertheless the excerpt by @ORGANIZATION1, ""The Mooring Mast"", describes the challenges put upon builders to build a dock." 3 4 4 +15204 6 "The obstacles of getting the dirigibles to be able to dock at the empire state building was, they couldn't put the fuell on top of the building. Putting mooring mast on top of the roof would make it very unstable and putt a lot of Pressure on it. For this to happen they had to modify the structure of the roof, which ended up costing over @MONEY1. After succefully building that they had another obstacle. It was trying to figure out how the dirigibles wouldn't move around with so much wind currents. They never figured out how and the idea just disappeared." 1 2 2 +15205 6 "From the excerpt, ""The Mooring Mast,"" by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attenting to allow dirigibles to dock there. First, the designing as well as the cost of this project could encounter problems. Such as, ""add stress to the building's frame."" If the mass interfered with the frame of the building, then changing the material of the building could cost ""over sixty thousand dollars!"" In addition, safety was a major component when trying to construct the mooring mast. For example, ""Most dirigibles from outside the United States used hydrogen...and hydrogen is highly flammable."" New York is a very populated area, which means when building a mooring mast, safety must be considered into perspective. Lastly, their were restrictions on airships flying too close to cities. As it states in the excerpt, ""an existing law against airships flying too low over urban areas."" Overall, when constructing the mooring mast, many builders were blind to the potential problems, making the project unsuccessful." 3 3 3 +15206 6 "One of the obstacles they faced were the strong winds. Because of the violent air currents the winds were constantly shifting. The dirigible would constantly be moving around. They couldn't even weigh it down, because there would be people far below them, and they could fall. A second obstacle they faced were the laws against it. There were existing laws about airships flying too low over the city. It was illegal for the airships to even come into the city. Those two obstacles stop them using the dock for dirigibles." 3 3 2 +15207 6 "Based on the article ""The Mooring Mast"" by Marcia Amidon Lsted the obstacles the builders of the Empire State Building faced to allow dirigibles to dock there were, the strong wind currents, the fact that dirigibles were very flammable, and that they were very large and hard to keep still. In paragraph @NUM1 it states that the use of hydrogen rather than helium should have stopped the project. Also in paragraph @NUM2 it states that the biggest obstacle was nature itself. For the reasons above those are some of the obstacles builders faced in attempting to have dirigibles dock there." 2 2 2 +15208 6 "During the attempt to allow dirigibles to dock at the Empire State Building, builders faced many obstacles. One obstacle builders faced was the building's @CAPS1. ""A thousand-foot dirigible moored at the top of the [Empire State Building] held by a single cable tether, would add stress to the building's Frame."" Another obstacle in the way was nature itself. The reason was that the winds on top of the Empire State Building was always changing because of violent air currents. This was dangerous because ""Even if the dirigible were tethered to the mast, the back of the ship would swivel around and around the mooring mast."" @CAPS2, there is a law in the United States against airships Flying too low over urban areas."" This would make it illegal for a ship to ever tie up to the [Empire State Building] or even approach the area. Many more obstacles were faced during the attempt to allow dirigibles to dock at the Empire State @CAPS3, but that didn't stop the workers from doing their job." 3 3 3 +15209 6 "The builders of the Empire State Building faced many obstacles while attempting to allow dirigibles to dock there. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" (@NUM1) the winds at the top of the building were constantly shifting due to violent air currents causing the dirigible's back to swivel around the mooring mast. ""Most dirigibles from outside of the United States used hydrogen... hydrogen is highly flammable."" (@NUM2) @CAPS1 the Hindenburg which blew up, if a Blimp blew up over downtown New York, tons of lives would be lost, a huge risk to the mooring mast. ""Was an existing law against airships flying too low over urban areas."" (@NUM3) This law would prevent dirigibles from docking at the mooring mast legally. All of those obstacles contributed to the mooring mast being used only for show and contributing to the world's tallest building." 3 3 3 +15210 6 "In the excerpt the @CAPS1 were faced with multiple issues on their theory. It took lots of time for people to begin realizing reality. For example, Airships had a law preventing them from getting to low to urban areas. Also they realized major would play a negative role. Wind would cause the @CAPS2 to swing around all Docked. They thought to way down the rear of the ship, but soon realized that is unsafe over many people below. They had heard of a @CAPS2 in New Jersey was Destroyed by fire, Due to its hydrogen, Also unsafe in New York with such a @ORGANIZATION1 population. Overall they began to realize saftey issues and how unpractical it was to do all of this." 3 3 3 +15211 6 "The idea of allowing dirigibles to dock on top of the Empire State building was unrealistic because there was a lack of identification of possible flaws in this plan. As a new form of transportation, dirigbles were not safe. This was proven true when the German dirigble, ""Hindenburg"", exploded in 1937. In addition, a more significant obstacle that was not adressed when the plan was created was the problem with its location. In the crowded streets of New York City, suspending flamable dirigibles above population is unsafe. This location is also an obstacle because of the equipment needed to land the dirigible: lead weights. The use of lead weights to way down the dirigibles is unimaginable with the possible dangerous situations it could create. The creators of this idea solely designed this system on top of the Empire State building to incorporate a futuristic form of transportation to make the building more unique. The Empire State building builders and encountered many obstacles in attempting to allow dirigibles to dock their because the concept was far past the capabilities of their age." 2 2 2 +15212 6 "Some of the obstacles the builders of the Empire State Building faced are dirigibles use hydrogen to float. Hydrogen is a highly flammable gas and if it was ignited it was cause a lot of property damage. Also at 1,250 ft there is a lot of wind. The dirigible would blow around the building causing unnatural stress to the building. It would be very difficult to allow dirigibles to dock on the Empire State Building." 1 2 2 +15213 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there.In designing the mast, the steel frame of the State Building would have to be modified and strengthened to accommodate this new siteation, @MONEY1' worth of modifications were made to the buildings framework, Rather than building a utilitarian mast without any ornamentation, the architects designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from inside, with a stepped-back design that imitated the overall shape of the building itself.The mooring mast failed. Most dirigibles from outside of the @ORGANIZATION2 used hydrogen rather than helium and hydrogen is highly flammable. Weather, such as violent air currents, were the greatest obstacle to the successful use of the mast." 3 3 3 +15214 6 The obstacles the builders of the Empire State Building faced is that the architects made the Empire State Building more dirigibles. The architects put the thousand-foot dirigible at the top of the building that is held by the cable tether. The dirigible's have to go through the wind pressure which was about eleven hundred feet below. The frame of the Empire State Building have to be strong and it cost more than sixty thousand dollars of modification to made the building's framework. The architects changed the design and made something new. The architects have a difficult obstacles of building the Empire State Building is to make it dirigibles. 1 1 1 +15215 6 "During the construction of the dirigible dock at the Empire State Building, architects and builders were faced with many obstacles. Before the mooring mast was installed at the top of the building, it became evident that ""the stress of the dirigible's load... would have been transmitted all the way to the building's foundation"" (paragraph @NUM1). This meant that changes would need to be made in the framework in order to support the weight. In addition, safety, weather, and legal issues were at hand. Filled with flamable gas, there was always a risk of a dirigible catching fire, and in an urban area the damage would be extremely bad. Winds at the top of the building were also dangerous. Air currents were ""violent"" and ""even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around"" (paragraph @NUM2). Normally, the ships would be weighted down, but, again, this was not possible in a city. The last issue builders faced was the law ""against airships flying too low over urban areas"" (paragraph @NUM3). Although there was a law clearly against it, two dirigibles attempted to dock. Both attempts were failures and it became clear that the Empire State Building would not be able to serve as a dirigible landing." 3 4 4 +15216 6 "The builders of the Empire State building faced many obstacles in allowing dirigibles to dock. For example the building had to be reframed because its original frame could not support the weight of a dirigible on top it. Also the materials inside dirigibles are highly flammable so an accident above an urban area thats highly popuated would have been costly/fatal. Another obstacle was the wind, since the winds on top of the building were constantly shifting due to violent air currents the dirigible would be swiveling around and unstable, thus making the idea for docking dirigibles on top of the empire state building unpractical and unsafe." 3 3 3 +15217 6 "The dirigibles faced some problems when they tried to dock them. The frist reason would be that flying an airship that low over a urban area is against the law. Even though it is against the law they tried it anyways and faced more problems, such as, the winds. The one time that they tried they couldn't dock it because the winds are too strong." 2 2 2 +15218 6 The architects and builders of the Empire State Building ran into a few problems when searching for a way to allow dirigibles to dock there. The architects knew they couldn't simply drop a mooring mast on the @ORGANIZATION1 roof because it would be able to support it. The architects also knew that if they attached the dirigible to the mooring mast with a single cable tether would only add stress to the frame. To fix this problem the @ORGANIZATION1 steel frame would need to be modified and strengthened to support the mooring mast and dirigible. 2 2 2 +15219 6 "Based on the excerpt to the dirigibles were not ever able to dock atop the Empire State building because @CAPS1 it was a question of safty. The passage reads that most dirigibles from outside the United States are fulled with hydrogen which is flamible. This caused the Hindenburg a German made vessel to burst into flames in New Jersey, and when this happened the owners of the empire state building realized how much worse the accident could have been if it had happend in the densly populated New York City. Also this was a question of safty because the winds on the top of the building would blow the dirigible all around. Lastly there is a law prohibiting the flight of airships in low urban aeras so the ships could not fly in New York City" 3 3 3 +15220 6 "In the article, The Mooring Mast, by Marcia Amidon Lsted, the author talks about the many obstacles builders faced in attempting to allow dirigibles to dock at the Empire State building. The first obstacle they faced involved dropping the mast onto the buildings flat roof. This task would be easy because using a single cable to lower the mast would add a great deal of stress to the buildings frame. Another problem they faced was nature. The violent winds would cause the dirigible to swivel around the mast. The greatest obstacle involved safety. Lots of blimps outside of the @LOCATION2 use highly flammable helium, rather than hydrogen. Helium makes the dirigibles more likely to cause an explosion, and risk many lives of the people of New York. Lastly, existing laws in New York @CAPS1 the balloons to dock. Airships were flying dangerously close over urban areas. Many obstacles were faced in attempting to allow dirigibles to dock at the Empire State Building that were mentioned in the article, The Mooring Mast, by Marcia Amidon Lsted." 2 3 3 +15221 6 "The idea of dirigibles being able to dock at such an altitude to begin with was foolish. First off trying to tie a thousand-foot dirigible to a building by a single tether adds huge stress to the building's frame. They were able to fix that problem, but the main issue they couldn't fix was mother nature. The wind speed at that height is incredibly violent and would cause the ship to swivel around and around the mooring mast. Overall the project was just doomed to fail from the start." 2 2 2 +15222 6 "The builders of the Empire State Building faced a multitude of obstacles while attempting to allow dirigibles to dock there. One problem was nature itself. According to the text, ""The winds on top of the building were constantly shifting due to violent air currents."" The wind would make it difficult for the dirigible to get close enough to the mooring mast to get tied up, and even after it is tied up the wind would cause it to keep moving around the mooring mast making it impossible for passengers to exit. Another obstacle in the way of allowing dirigibles to dock on the Empire State Building is a pre-existing law against airships flying too low over urban areas. In the text it states, ""This law would make it illegal for a ship to ever tie up to the building or even approach the area,"". This is a very black and white problem against allowing dirigibles to dock on the Empire State Building. A final, and perhaps greatest obstacle against allowing dirigibles to dock on the Empire State Building is safety. In the excerpt it states, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" This creates safety hazards not only passengers and employee's of the dirigible but also the densely populated area below, that is downtown New York." 4 3 4 +15223 6 "In The Mooring Mast by Marcia Amidon Lsted, it describes many ways the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. It was hard enough for the builders to build the Empire State Building but on top of that they must make a mooring mast at the top. Four term governor of New York Al Smith said it best, ""One set of engineers here in New York is trying to dope out a practical, workable arrangement and the Government people in Washington are figuring out some safe way of mooring airships to this mast."" Another obstacle builders faced was having a thousand-foot dirigible moored at the top of the building, only held by a single cable tether, was simply not safe. With this being said, the steel frame of the Empire State Building would have to be modified and strengthened, costing over sixty thousand dollars worth of modifications. No matter how the builders built the Empire State Building they still face nature as an obstacle. These are examples builders faced in attempting to allow dirigibles to dock there." 3 2 3 +15224 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, there were many obstacles in attempting to allow dirigibles to dock on the Empire State Building. Some of these obstacles include, poor designing, nature, and lack of landing area.Due to the poor designing of Al Smith the Age of Dirigibles had a concern on where to land them. Nature itself was a big obstacle as well. ""The winds on top of the building were constantly shifting due to violent air currents."" The wind made this hard for the dirigibles to land. The last obstacle was the lack of landing area for these enormous balloons. Once Al Smith saw the opportunity to land the dirigibles on the Empire State Building, he took it." 2 2 2 +15225 6 "Allowing a dirigibles to dock upon the top of the Empire State Building, would leave architects faced with challenging sinerio's. Adding a thousand foot dirigible onto the top of the building would add stress to the frame. A single cable tether to the blimp would not help the stress. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation."" (Lsted. @NUM1) The frame of the Building would have to be modified to accommodate this new situation. The greatest reason why it was never fully constructed was Because of safety. Most dirigibles outside the U. S used hydrogen rather than helium. ""When the German dirigible Hindenburg was destroyed by fire... The owners realized how much worse have it been taking place above a densely populated area."" (Lsted. @NUM2). This makes travel out side the @LOCATION1 with dirigibles more difficult. Nature itself was a great obstacle to the successful use of the mooring mast. The back of the ship will swivel around and around the mast cause of winds. ""The winds on top of the building shifts due to violent air currents."" (Lsted, @NUM3). This wasn't practical nor safe. These obstacles leaves builders faced with unrealized challenges to over come." 4 3 4 +15226 6 "Builders of the empire state building faced many obstacles when trying to dock dirigibles. One obstacle in docking dirigibles was the framework of the building. ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework."" This shows the amount of work that needed to be done just on the structure of the building. Another hardship was that most dirigibles outside of the United States were filled with highly flamable hydrogen rather than helium. ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst on May 6, 1937, the owners of the empire State Building realized how much worse the accident could have been if it had taken place above a densely populated area."" @CAPS1 how dangerous the hydrogen could be. Lastly, dirigibles could be weighed down by led weights. ""using these at the Empire State Building, would be dangling over pedestrians on the street, was neither practical nor safe."" @CAPS2 if the lead weights dropped they could kill someone. Many hardships were brought about trying to dock dirigibles at the empire state building" 4 4 4 +15227 6 "And the builders of the Empire State building faced numerous challenges in order to add the mast to the building. They needed to consult with experts and learn all they could about how dirigibles themselves worked. It took engineers in New York and government workers all the way in Washington to piece together a plan on how to make it work. Just adding the mast would never work. Keeping it tethered by one cable would add a ton of stress to the framework, so all of the steel frame needed to be strengthened. Making the mast appealing to look at to took resources. Ultimately though, all the plans fell through. Nature had been the biggest problem. When currents are violent up in the air around the mast, which would cause the blimp the swing around dangerously. Had a ship crashed, hundreds of people in the urban New York would be crushed. The project had to be scrapped, with the mast becoming a purely decorative addition." 3 3 3 +15228 6 "There were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. According to the author, ""... was destined to never fulfill its purpose [Empire State building being a dock for dirigibles], for reasons that should have been apparent before it was ever constructed."" As the author points out, there were many problems with this idea. The reasons were: safety, strong winds, and laws prohibiting this to happen. The safety issue was that the dirigibles used hydrogen which was highly flammable. In fact the Hindenburg was destroyed by a fire. If a dirigibles burst into flames while near the Empire State Building, it would be very harmful to the many people in the city around the building. Strong winds were another problem because the Empire State Building is so high, the winds at the mooring station would be violent and unpredicting. This would make it difficult to land at the mooring station and if it successfully did attach, the back end of the dirigibles would be blown around by the wind. The final problem was that there was a law forbidding aircraft to be a certain distance from a city. This law was trying to prevent aircraft from crashing into city. With all of these problems, it is clear that this plan could never have worked effectively." 3 4 4 +15229 6 The builders of the Empire State building faced many challenges in attempting to allow dirigibles to dock there. One problem was that putting the mast on the empire state building then having a giant dirigible moor on to it would cause stress on the building and could pull the mast right off causing it to weigh the dirigible down to the people and buildings it could cause death and destruction. Another obstacle was timing the construction right. They dont want the mast to be done when the whole building is only on floor @NUM1 out of 102. 1 2 2 +15230 6 "Not everyone can invent new ways of transportation for the future. Al Smith learned that the hard way when he hired a team of builders to install landing docks for dirigibles on the Empire State Building. The team ran into numerous obstacles that caused problems and derailed there progress. One problem that arised was that the weight of the dirigible would add stress to the buildings frame, which was only reenforced by steel. Another issue was safety. Dirigibles from outside the United States ran on hydrogen instead of helium, which is highly flammable. The most important problem was nature. Wind made maneuvering difficult, and violent current could be potentially fatal to passengers and pedestrians. They also cannot fly too close to the ground in urban, populated areas. Although the idea of the Empire State Building being used as an airdock was innovative, it was not practical or well thought out." 4 3 4 +15231 6 "One obstacle that the builders faced when attempting to allow dirigibles to dock at the Empire State Building was, ""the lack of a suitable landing area."" New York City is full of buildings and there is not a lot a flat ground to land a dirigible. The builders second obstacle was that they couldn't find a way to get the mooring mast on top of the building. The builders would need to make a stronger building frame so the mast could safely be on the top of the building without adding stress to the frame. Another obstacle that the builders faced was nature. The wind at the top of the building was very unpredictable and strong at times. The back of the dirigible would move from the wind, even if it was tied to the building. The last reason was that there was a law that wouldn't allow the dirigibles to fly that low over an urban area. Therefore, the dirigibles couldn't dock at the Empire State Building." 3 4 4 +15232 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted the builder of the Empire State Building faced obstacles in attempting to allow dirigible to dock there. For example ""the stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below,"" which describes that the problem that the builders would have to face if they applied the mast and with the load of the dirigible and the wind pressure would mess up the foundation of the building. So the builders needed to find a way to not ruin the foundation of the Empire State Building. Another example is ""The steal frame of the Empire State Building would have to be modified and strengthened."" This evidence explains that if the mast was to be place the builders would have to strengthen the entire building so there would be no problems with the mast" 1 1 1 +15233 6 "Based on the excerpt, The Mooring Mast, the building of the Empire State Building had many obstacles the builders had to overcome. Some practical obstacles in building this landmark was the law against airships flying low, the complete dirigible mooring equipment wasn't installed, and greatest obstacle of all was nature surrounding the Empire State Building.The first obstacle builders had to overcome is the law against airships flying too low over urban areas. The problem with flying too low is the dirigibles couldn't even try to attempt to reach the building. In December 1930, one dirigable approached the mast, but couldn't get close enough fearing the forceful winds would cause it to run into the sharp spires. As if that wasn't a problem, the dirigible mooring equipment wasn't even installed which meant the newspapers being delivered would have to be caught by dangling ropes from the dirigable, which could get tiring. The greatest obstacle of all was nature. Winds at the top of the building were really strong due to the violent wind currents, which could cause the dirigable to keep moving, even when tied up to the mast.Overall, the nature of weather was the huge obstacle." 3 3 3 +15234 6 "There were many obstacles that the builders of the Empire State Building faced when they were attempting to allow dirigibles to dock there. The first obstacle was the safety of the people. The author states, ""Most dirigibles outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" This would have been a major problem. Another obstacle was the violent air currents that made it hard to land. In this essay it says, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" This quote shows why landing would be dangerous. Finally, it was illegal to fly airships too low over urban areas. The text explains, ""This law would make it illegal for a ship to ever tie up to the building, or even approach the area."" this shows how even if everything worked, they wouldn't be able to do it These are just three of the obstacles that prevented the builders of the Empire State Building from docking dirigibles." 4 3 4 +15235 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The Empire State Building is located in the densely populated New York City. Therefore, if the dirigible dangled high in the air above those people, it would surely be unsafe In addition to the safety aspect, one of the greatest obstacles was nature. The violent winds on top of the building are always shifting due to the air currents, therefore, it would cause the dirigibles to swivel around the mast. Lastly, there was a law against airships flying too low over urban areas, thus making it illegal for dirigibles to ever fly up to the building." 3 1 2 +15236 6 "The builders of the Empire State Building faced a few obstacles while trying to build the mast. One problem was that there was a lot of pressure and stress that would be put on the building if a dirigible was to dock there. This was because of the high wind speeds and of the sheer size of the dirigible. The designers had to make over sixty thousand dollars worth of modifications to the building's framework to account for the pressure. Another obstacle was that there is a law against airships flying too low over urban areas. This meant that the dirigibles would not be allowed to even get close to the building, let alone dock on it. Eventually, these obstacles and other safety issues, such as hydrogen inside, the blimp being highly flammable, caused the idea to dissappear." 3 2 3 +15237 6 "The builders of the Empire State Building faced many obstacles in order to try to @CAPS1 dirgibles there. One of the challenges they faced was how to make sure the building wouldn't collapse if the docked a @NUM1 foot dirgigible on the top. They had to make about @NUM2 dollars worth of changes to the building's frame to be able to @CAPS1 a @CAPS2. Another obstacle they faced was how to @CAPS1 dirigible at the top of the building without endangering the densiley populated area of down town New York. ""Most dirgibles outside of the united states used hydrogen rather than helium, and hydrogen is highly flammable"". The builder faced many obstacles by trying to beable to @CAPS1 a @CAPS2 but was impossible from the @CAPS3." 2 2 2 +15238 6 Obstacles the builders had to try and over come were the extra preshure on the frame of the @CAPS1 and the diffuclt docking process also the high speed winds that made it basicly impossiBle to do. 1 1 1 +15239 6 "Based on The Mooring Mast article, by @PERSON1, the builders of the Empire State Building face numerous obstacles in attempting to allow dirigibles to dock there. Their dream put New York on the forefront of modern travel never was fulfilled. First, over sixty thousand dollars' worth of modifications had to be made to the buildings framework because of the stress of the dirigible's load and wind pressure, which would add stress to the frame. However, one of the greatest obstacles the builders encountered was safety. Most dirigibles use hydrogen, which is highly flammable and could be very dangerous, especially in highly populated areas such as New York. Also, the violent winds on top of the building made it impossible to keep the dirigibles stable and not swiveling around the mast. Lead weights could be used to weigh down dirigibles that moored in the field, but this would be unsafe dangling from a building. Finally the idea violated a law against airships flying too low over urban areas. All of the contributing obstacles the builders faced made their dream of using the mooring mast for dirigibles unsuccessful." 4 4 4 +15240 6 "Some of the troubles builders came into play with while constructing the empire state buildings mooring mast, were structure, how it would be built, and how it could physically hold a blimp without being ripped out. One problem was figuring out how to reinforce the mast so that the lead could transfer to the foundation instead of ripping off the top half of the building." 1 1 1 +15241 6 "The concept of a docking mast for the Empire State Building met with failure because of a variety of reasons. One of the major problems was that it was directly over the downtown area of New York City which is very densely populated. After the Hindenburg fire in New Jersey, ""the owners... realized how much worse the accident could have been if it had taken place over a densely populated area.""The second major obstacle was controlling a dirigible in the often violent winds at the top of the tower. It was the practice at the time to control the back of the dirigible with lead weights but over a civilian area this was ""neither practical nor safe.""Another important reason why the builders faced obstacles was the already existing law that prohibited low-flying aircraft over cities. Despite the two dirigibles that approached the mooring mast, neither managed to allow passengers to disembark, and the idea was ""quietly dropped"" as it should have been. There were too many obstacles for it to succeed." 3 3 3 +15242 6 "The builders of the Empire State Building attempted to create a mast where dirigibles could dock. At first I thought it was a great idea, then realized there were obstacles. First obstacle discovered was ""most dirigibles from outside the United States used hydrogen rather than helium"" (Lsted). This was an issue because hydrogen is very flammable and if it were to catch on fire in New York, thousands of people would be hurt/killed. The greatest obstacle was the wind. The amount of wind changed constantly and even if the dirigible was attached properly, the back would continue to move around, which would lead to danger on the streets. The dirigible would be dangling over the pedastrians (Lsted). One other reason was a legal reason. It was illegal to fly a dirigible too low over urban areas, therefore the dirigible was not allowed to get low enough to land on the building Two tried and neither of them were successful. The constructors of the mooring mast were oblivious to these issues at the beginning, than realized them after. The Empire State Building could not be used to land dirigible due to the fact that non-U.S dirigibles used Hydrogen, the current of the wind changes frequently, and it was illegal to fly the dirigible low enough to attach." 4 3 4 +15243 6 "The architects of the mooring mast faced many problems when building the mast itself. One of the problems was that most dirigibles outside of the country use hydrogen, which was highly flammable, rather than helium to make the blimps buoyant. If one of those blimps ever caught fire like the German dirigible, the Hindenburg, in New Jersey, then it would put many citizens in jeopardy. This densely populated area would be much more hazardous than a rural area in New Jersey.The last problem they faced was the law that prohibited airships flying too low over urban areas. This law made ""it illegal for a ship to ever tie up to the building or even approach the area."" @CAPS1 no foreign dirigible could dock and refuel there because of the type of gas keeping it afloat, while no @CAPS2 dirigible could dock and refuel because of the law prohibiting it, the idea of a mooring mast quickly diminished from the citizens imaginations and they looked to modern transportation such as airplanes." 3 3 3 +15244 6 "Besides The facts That docking dirigibles on a mooring mast on The empire State building would cost over @MONEY1 and add a lot of Stress to the buildings frame, Smith wanted to pursue his dream.Unfortunatly, he couldn't do that. There are @NUM1 big reasons. in paragraph @NUM2 it says most dirigibles are too flammable. That's because they use hydrogen rather than helium. Just like the German dirigible Hindenburg, which was destroyed in fire in New Jersey. paragraph @NUM2 says docking The dirigibles is plain dangerous because The Wind would cause them to @CAPS1 all over, Rather than being docked on The ground and being weighed down. Lastly, It wasn't legal. Paragraph @NUM4 states ""... an existing law against airships flying too low over urban areas. was another practical reason."" The dirigibles would not be high enough in The air to be legal, and it was highly dangerous because pedestrians below." 3 3 3 +15245 6 "The builders of the Empire State Building faced obstacles as an attempt to allow dirigible to dock there. In paragraph @NUM1 it shows an obstacle the builders spaced. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" This is because the wind. The wind would shift due to violent air currents." 1 1 1 +15246 6 "In the Mooring Mast, by @ORGANIZATION2, the builders of the Empire State Building faced numerous obstacles in attempting to allow dirigibles to dock on it. To dock, a moor mast was necessary. One could not simply Place one on the empire state building because it would add stress to the buildings frame. Also, the stress of the dirigible's load and the wind pressure would add stress, which would force more modifications to the frame costing upwards of sixty thousand dollars. The mooring mast was not completed mainly because of safety. After the combustion of the Hindenburg, owners of the Empire State Building realized a disaster it would cause if it hapened in New York. Nature was also an obstacle, with constantly changing violent air currents threatening to move the dirigible, which could not be anchored down as it could be in a field. It was a risk not worth taking. Lastly, a law passed earlier prevented dirigibles from even approaching buildings on such elevation over urban areas. These were the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there." 3 4 4 +15247 6 "The builders of the Empire State Building faced many problems in attempting to allow dirigibles to dock there. When it says in the passage, ""could not simply drop a mooring mast on top of the Empire State building's flat roof,"" this means that the architects would have to modify and strengthen the building for a ""thousand-foot dirigible"" to land there. Over @MONEY1 of changes had to be made for this. Safety was another problem. Dirigibles from other countries used hydrogen instead of helium. Because hydrogen is highly flammable, downtown New York could have been destroyed by a large fire if a dirigible caught fire there. Nature itself was also a problem. ""Winds on top of the building were constantly shifting."" This would cause the dirigible to swivel around, which would be dangerous. The architects came in contact with many problems." 3 3 3 +15248 6 "The obstacles that the builders of the Empire State building faced in attempting to allow dirt dribbles to dock there was, if they dropped the mooring mast on the top of the building they would have strengthened the frame because of the wind pressure, and pressure from the single cable. Also most dirigibles from out of state were highly flammable because they used hydrogen rather than helium. Another problem was that New York is a highly populated city and they did not want to take the risk of having something fall from the top of the building on to citizens down below. The greatest obstacle to the successful use of the mooring mast was nature. The violent winds were constantly shifting due to the violent currents. Even if that could get the dirigibles tied down the back would be flying around. They also suggest using lead weights to hold it down, but if they fell the pedestrians on the street would be in great danger. The last obstacle faced with the fact that there was a law about airships flying to low over urban areas." 3 3 3 +15249 6 "When the builders of the @ORGANIZATION2 took on the difficult task of building a mooring mast at the top of the structure for dirigibles to dock at, they faced various obstacles that made it difficult for them to carry out their plan. One of the first obstacles they were faced with was the fact that they couldn't just slap a long mooring mast on the building's flat roof. The huge dirigible that would be held by one cable tether would add an immense amount of stress to the building's frame and fandation. The builders responded by constructing an even stronger frame for the building. The main problem the builders faced when trying to allow dirigibles to dock at the top of the structure were the safety issues. Dirigibles (aside from the @LOCATION1) mostly used hydrogen instead of helium. Hydrogen is extremely flammable and increases the risk of fire. Since the blimps would be above thousands of pedestrians of the city, the risk of a blimp catching fire was much too high. On top of that, the winds at the top of the Empire State Building were always Shifting due to the violent air currents, causing the blimp to swivel around the mooring mast. Although Al Smith had a great vision for docking blimps at the top of his building, the reality was that it was unrealistic, and the bulders were faced with too many obstacles for it to work." 3 3 3 +15250 6 "While builders attempted to create a landing area for dirigibles to dock on the Empire State Building, they ran into many problems. Al @CAPS1 idea sounded unrealistic but with enough motivation they were set on trying to make it happen. After so much renovation, work, and ideas they had finally realized all the potential problems.What's being built all the problems became apparent. The main reason they never used the dock is because they realized it could possibly catch fire, like it had in New Jersey... ""The owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area..."". Also they warned about the intense winds on top of the tower. They feared it would continuously blow around the dirigible without a way to weigh it down. Another reason is it is against the law to fly airships to low over urban areas. The builders faced many obsticles in attempting to allow dirigibles to dock on the Empire State building." 3 3 3 +15251 6 The obstacles the builders faced were very dangerous and unsafe. They were the difference between them failing or succeeding. One of the problems was violent air currents. The passage said that winds towards the top of the building were always shifting and they easily could have been able to swivel the dirigible. If this happened then they never would have been able to land.The next obstacle they faced was hovering over pedestrians. It just wasn't an option after the safety of the pedestrians was in danger. I was also a law that airships weren't allowed to fly that low over urban areas. So it made it illegal for them to tie up to the building or even come close to the area. It was just too dangerous to attempt. 3 3 3 +15252 6 "Many of the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were issues that should have been thought about before construction began. At such a height their whirlwind issues that could push the derigible in undesired directions. ""The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air current."" (@CAPS1 @NUM1). After the Hindenburg exploded the concerns for the same thing happening was a large safety concern. ""The owners of the Empire State building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" (@CAPS1 @NUM2 Line 6)" 2 2 2 +15253 6 "There were several obstacles that prevented dirigibles from docking at the Empire State Building. First, if a dirigible was ""moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" The framework was not strong enough for this. But the main reason was safety. It was known that most foreign dirigibles used ""hydrogen rather than helium"", which is highly flammable. Things wouldn't go well if there was an incident in a populated place like New York. Also, the winds causing the ship to swivel around, and lead couldn't be used to weigh it down for safety reasons. Finally, there was ""an existing law against airships flying too low over urban areas"" which makes it illegal for any dirigible to even come close to a building. All of these reasons contributed to why docking dirigibles would come with many obstacles." 3 3 3 +15254 6 "Most dirigibles from outside of U.S. used hydrogen rather than helium, and hydrogen is highly flammable. When the German dirigible Hindenburg was destroyed by fire in @LOCATION1, New jersey, On May 6, 1937, the ownes of the Empire state Building realized how much worse that accident could have been if it had taken above a densely populated area such as downtown New york." 2 1 2 +15255 6 "From the story the Mooring Mast by Marcia Amidon Lsted, the builders faced huge problems when they tried to make it accessable for dirigibles to land. One major factor was the winds at such high altitude, ""The winds on top of building were constantly shifting due to violent air currents."" The builders not only had to think of a way for the ships to be secure and not low around, but also needed a way to support the weight of the dirigible because of the already heavy building. These are only some of the great problems the builders needed to deal with." 2 2 2 +15256 6 "After reading the excerpt from ""The Mooring Mast"" by @ORGANIZATION2, it easy to see that this project faces numerous obstacles to overcome. The builders of the Empire State Building have a lot on their plate in order to allow dirigibles to dock their. For example, the builders have to modify and strengthen the @ORGANIZATION1 frame and also construct a mast to which dirigibles could dock.If there was to be ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether,... (@NUM1) it would add an enormous amount of stress to the entire building This is why the steel frame of the Empire State Building has to be strengthened, and ""Over sixty thousand dollars worth of modifications had to be made to the building's framework"" (@NUM1). The builders of the Empire State Building also have to construct a mast for the dirigibles. In the end, ""...the architects who designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from the inside, with a step-back design that imitated the overall shape of the building itself"" (@NUM3). This idea of adding a mast for dirigibles to the Empire State Building creates much work for the builders.This excerpt from ""The Mooring Mast"" by @ORGANIZATION2 easily illustrates the obstacles the builders of the Empire State Building have to overcome. From modifying the frame to constructing the mast, these builders sure do you have a greatly increased workload." 2 2 2 +15257 6 "Many things went wrong while trying to allow dirigibles to dock ontop of the Empire State Building. First, allowing this dirigible to dock on top of the Empire State Building ""would add stress to the buildings frame"". -@CAPS1 @NUM1. These Dirigibles are highly flamable and over a very populated place like New York City could be very dangerous. The winds at the top of the building were ""constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast.""-@CAPS2 @NUM2. If lead weights were used they could fall from dirigible and kill civilians. The biggest obstacle was that a law against airships flying too low over urban areas. This seemed to be a good idea on paper but when actually attempted it was too unrealistic." 3 3 3 +15258 6 "The builders of the Empire State building faced many obstecles in attemping to allow dirigibles to dock there. The one obstacle to their expanded use in New York City was the lack of suitable landing area. to solve this problem, Al Smith built a mooring mast. This would allow dirigibles to anchor their for several hours to refuel." 1 1 1 +15259 6 "the builders of the Empire State Building faced various obstacles and challenges in allowing dirigibles to dock there, including how to attach the mast and how to move people between the dirigible and the building. In order to attach the mast where the dirigibles would land, the builders could not simply fasten it with the cable teather to the top of the building. This would ""add stress to the building's frame"" with the combined pressure of the dirigibles load and the wind pressure. Therefore, the builders had to get the pressure down into the ground by strengthening and altering the building's steel frame.Another obstacle the builder's faced was the challenge of transporting people and luggage from the building to a dirigible floating in the air. The dirigibles would only be tethered by their front ends, but gondola, where the passengers rode, was located underneath the dirigible. this meant the construction of ""a gangplank to an open observation platform"" from which the people and luggage had to be moved @NUM1 floor by a special elevator. Although the builders of the Empire State Building faced various obstacles in building the mast, the one they really should have considered was the dager and impracticalness of docking dirigibles @NUM2 stories over New York City." 2 2 2 +15260 6 There are many problems the dirigibles had with docking. The one problem there was is a lack of suitable landing space. There was also the problem of winds. The wind would cause a major problem for if they could dock. The wind could cause it to spin around the building causing injuries to people or the dirigible.If it's swong around an hit the building it could cause structural damage. The dirigible could also explode into flames if a spark is caused from it hitn the building. It could end up like the hindenburge. 2 2 2 +15261 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. By building a mooring mast, they had to make changes to the existing plans for the building's skeleton. ""The steel frame of the building had been modified and strengthened"" in order for the mast to fit properly and remain stable and safe. Another obstacle faced by the builders was creating a design that would allow dirigibles to dock on the mast. They were to tie the front of the aircraft to the building, however this didn't work out, because, as the author states, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" All in all, the builders of the Empire State Building faced many obstacles in attempt to let dirigibles dock there." 3 2 3 +15262 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles (Blimps) to dock there was that there were way too many risks that were being taken to make this mast and it was just too dangerous.I think that the mast opposed too many risks because for one it would be flying too low and two, if it caught on fire or was hit by lightning it would explode and people would get seriously hurt, OR the mast could snap off!As @PERSON1 said, ""The as yet unsolved problems of mooring air ships to a fixed mast at such a height made it desirable to postpone to a later date the final installation of the landing gear.""@CAPS1 @PERSON1 Clavan means is that the fact that there are so many problems with mooring air ships to this ""mast"" that it just isn't safe to go through with right now!" 1 3 1 +15263 6 "Al Smith faced some obstacles while attempting to allow dirigibles dock on the mast on top of the Empire State building. The first problem him and the architects faced was they couldnt just put the mast on top of the building's flat roof. The mast would add stress to the buildings frame. Also, the dirigibles load and the wind would add stress. Another reason was safety. Most dirigibles used Hydrogen which was highly flammable. Also, the winds at the top of the building had violent currents. The winds were always shifting which would cause the back of the ship to move. Lastely, the dirigibles couldnt fly near the building because there was a law against air crafts flying to low over urban areas which made it illegal for dirigibles to tie to the mast anyways." 3 3 3 +15264 6 "In the excerpt from ""The Mooring Mast"", by Marcia Amidon Lsted, the builders of the Empire State Building faced obstacles in allowing dirigibles to dock their. First, the expectations of the project were unrealistic because there ""was an existing law against airships flying too low over urban areas."" @CAPS1 even if they found a safe way to land dirigibles they would be breaking the law. Second, there were ""violent air currents."" When they tried to dock the dirigible on the building, it could not get close enough to it to land because of the wind. Lastly, it was a huge safety hazard. Most dirigibles ""used hydrogen rather than helium,"" and hydrogen is very Flammable. In a densely populated area. ""the owners of the Empire State Building realized how [bad an] accident could have been. As a result, dirigibles never fulfilled the expectations of the transportation of the future and they did not dock on the Empire State Building." 4 3 4 +15265 6 "Based on the excerpt, the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there, because they had to come up with a way for a mooring mast to land on the Building's roof, because a thousand-foot dirigible moored at the top of the building held by a single cable can add stress to the building's frame. The Building's frame would have to be modified and strengthened to accommodate the situation. That wasnt the only obstacles money was one of the problems as well, ""Over sixty thousand dollar's worth of modifications had to be made to the buildings framework."" That's a lot of money that is being used just for a frame of a building. Safety was an obstacle as well, ""The greatest rason was one of safety Most dirigibles from outside the united states used hydrogen rather than helium, and hydrogen is highly flammable."" I think safety was the greatest obstacles they had, because what if a hydrogen dirigible was to blow up on top of the Empire Building. think of all the people that could get hurt because they dont call New York the city that never sleeps because people stay up at night in there house. They call it the city that never sleep's because it's alway's moving, there's alway's people on the streets and downtown New York is alway's full of people." 2 3 3 +15266 6 "When building the Empire State Building, the builders had to overcome many obsticles. One obsticle, for example, was a lack of suitable landing area. The dirigibles were very large, some spanding @NUM1 feet, therefore in a city of buildings, there were not many suitable areas to land. Another obsticle they had overcome was the fact that the city did not allow the dirigibles to be that close to rural areas. Although these reasons are plenty enough, the article mentions that perhaps the greatest obsticle was nature itself. ""The winds on top of the building were constantly shifting due to violent air currents"" (pg. @NUM2-paragraph @NUM3). All in all, the idea to land dirigibles in this place was too unrealistic." 2 3 3 +15267 6 "The plan to allow dirigibles to dock on the Empire State Building encountered problems from its introduction until its conclusion. The first problem was the original design of the building. The original design did not include a dirigible docking station. When plans for the station were introduced, the building was not strong enough to carry the heavy load of a spire and a dirigible. To adjust, an additional @MONEY1 were spent in order to ensure the building would be structurally sound during a dirigible docking. The next problem became imminent after the Hindenburg's fire: any hydrogen-filled dirigible that caught fire at the Empire State Building which cause significant damage. Moreover, because many dirigibles used hydrogen, the safety risk was significant. Wind proved to be another obstacle. The force of a dirigible being blown around by heavy winds could prove to be too much for the structure of the building. Moreover, because any dirigible docking at the building would be one thousand feet off the ground, there was no way to anchor the dirigibles. The fact that many tall spires lined the @LOCATION1 skyline presented an imminent danger to any dirigible trying to dock. Finally, one of the most significant problems of building a dirigible docking station was the fact that law prohibited low flying aircraft in urban areas." 4 4 4 +15268 6 The problems that the Building had to face the could not unsolve the problem of mooring air ships to fixed mast at such a height made it desirable to postpone to a later date the installation of the landing gear. 0 0 0 +15269 6 The obstacles that the builders of the Empire state building faced attempting to make the dock for dirigibles.The architects desgned a shiny glass and chrome-nickel stainless steel tower. They would have to make the Empire State Building strong enough to have the wind blowing around up on top. In the late run they would have to face the law. These are the obstacles that the builders had to face. 2 2 2 +15270 6 "Obstacles that the builders of the Empire state building were, They had planned for dirigibles to tie to the mast could not because the way of the height of the building was @CAPS1 high dirigibles would not be able to keep @CAPS2 while unloading. For example in paragraph @NUM1 it says ""the goodyear blim columbia, attempted a publicity stunt Where it would it tie up and deliever a bundle of newspapers"", ""Because the complete dirigible mooring equipment had Never been installed, a worker atop the mooring mast would have to catch the bundle of newspapers on a rope dangling from the blimp"". other obstacles were, that dirigibles outside the united states had hydrogen in them Instead of helium, and hydrogen was very flammable." 2 2 2 +15271 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were two practical obstacles. Nature itself. Even if the dirigible was tethered up to the mooring mast, the back of the ship would swivel around the mooring mast. Another thing was that it was illegal for airships to fly over too low over urban areas. Although two dirigibles attempted but failed, by the late 1930s, the idea of using the mooring mast for dirigibles and their passengers had quietly disappeared." 2 2 2 +15272 6 "The builders of the Empire State Building faced many obstacles while attempting to allow dirigibles to dock there. The first problem was the stress on the building's frame, the building required over sixty thousand dollars worth of modifications to fix this. Also the back end of the dirigible would swing freely in the strong wind, this is usualy fixed by attaching a lead weight to the back in the fields where they usualy land but dangling that over a city is a very dangerous. Anothe problem is the law stating no aircraft flying to low over urban areas. Finaly dirigibles never caught on. So the builders of the Empire State Building faced many obstacles In their attemt to make a dirigible docking station." 3 3 3 +15273 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. First of all, the architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame. To prevent this, the steel frame of the Empire State Building would have to be modified in strengthened and to accommodate this new situation. Secondly, most dirigibles from outside of the @LOCATION3 used hydrogen rather than helium, and hydrogen is highly flammable. The owners realized that if one of the hydrogen dirigibles were to catch fire just like the Hindenburg did in Lakehurst, @LOCATION4, the accident could be much worse if it had taken place above a densely populated areas such as downtown New York. The greatest obstacle that the builders were faced with was violent air currents while the dirigible was tethered. The back of the ship would swivel around the mooring mast due to winds in using lead weights to weight the back down, where they would be dangling above pedestrians would neither be practical nor safe. The mooring mast of the Empire State Building was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed." 4 3 4 +15274 6 "By attempting to allow dirigibles to dock on the Empire State Building, the builders faced many obstacles. One of the obstacles that they faced was the re-desgning of the building. ""A thousand-foot dirigible moored at the top of the building, held by single cable tether, would add stress to the building's frame"" that meant that they had to make modifications (over @MONEY1 worth). Another obstacle that they faced was that most of the dirigibles from outside of the United States use hydrogen rather than helium. Hydrogen is highly flammable. And the greatest obstacle that the builders had was nature itself. ""The winds on top of the building were constantly shifting due to violent air currents."" Even if the Dirigible got parked, the winds would shake its tail too much and that wasnt safe." 3 3 3 +15275 6 "Based on this excerpt, the architects had to go through a lot of obstacles in order to allow dirigibles to dock on the Empire State Building. First they had to redesign the building's frameworks because the weight of the dirigible would add stress to it. Then they added two more floors to the top of the building. They were to be the boarding area for the passengers. Two months after they finally reframed the building, they put the American flag at the top of the mooring mast. Soon after, they realized proceeding with these designs were foolish because it was unsafe and not practical. Those are obstacles that the architects had to go through in order to allow dirigibles to dock at the top of the Empire State Building." 2 2 2 +15276 6 "There were many obstacles that the builders of the Empire State Building faced. One of the obstacles faced was when trying to dock on top of the building. Since it was so tall, there were very harsh winds that the dirigibles could be controlled. When the Los Angeles tried to dock there, it couldn't, because ""[it] could not get close enough to tie up because of forceful winds."" Also, ""the @CAPS1. could not even take his hands off the control levers."" because the dirigible might bump into other buildings if he did. Another obstacle they faced was that New York was densely populated and the mooring mast was surrounded by other buildings. If it caught on fire like the Hindenburg it could be a huge problem. ""... how much worse that accident could have been if it had taken place above a densely populated area."" The third huge obstacle they faced was that there was an actual law against anything flying that low in cities. There was, ""an existing law against airships flying too low over urban areas."" This meant that the dirigibles couldn't even get close enough to tie up since they were allowed to fly down to it. Since there were so many apparent obstacles and flaws in the plan, the builders should've caught it before and never built the mooring mast above the Empire State Building" 3 3 3 +15277 6 "In the excerpt from ""The Mooring Mast,"" by @ORGANIZATION2, the builders faced many problems in attempting to allow dirigibles to dock there. One main problem was that, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" This could be a serious problem if the dirigible burst into flames and fire rained down on, ""a densely populated area such as downtown New York."" Another obstacle to the creation of the mooring mast was the wind, which, ""were constantly shifting due to violent air currents."" The dirigibles would have to be, ""weighted down with lead weights... where they would be dangling high above pedestrians on the street."" This would be, ""neither practical nor safe."" because the weights could fall and kill people. The final obstacle for building a mooring mast on top of the Empire State Building, ""was an existing law against airships flying too low over urban areas. This would make it illegal for a ship to ever tie up to the building or even approach the area."" The builders of the mooring mast faced many problems, ""that should have been apparent before it was ever constructed.""" 4 3 4 +15278 6 The builders faced many obstacles in trying to allow dirigibles to dock on it. One problem is the docking a dirigible to the roof would add too much stress on the frame. Another is having all the flammable gases above a highly populated area. Also there was already a law that prohibited dirigibles from flying low over urban areas. Lastly the wind constantly changing direction would make the ship to unstable. 2 2 2 +15279 6 "In the excerpt there were obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock their. Al Smith saw an opportunity by adding a mooring mast to the top of the building allowing dirigibles to ancher there for several hours for refueling or service, and to let passengers on and off. With this idea the architects and engineers of the Empire State Building had to consult with experts, by taking tours of the equipment and mooring operations at the U.S. Naval Air Station. The architects also met with the president of a recently formed airship transport company that planned to offer dirigible service across the pacific Ocean. Now as you can see the builders of the Empire State Building faced many obstacles to allow dirigibles to dock there." 2 1 2 +15280 6 "The @CAPS1 of the Empire State Building in attempting to allow dirigibles to dock there was a lot of work. They had to spend a whole lot of money and it wasn't a easy job. They spended over sixty thousand dollars on just modifications. I know this because in paragraph @NUM1 it said ""over sixty thousand dollars worth of modifications had to be made to the building frame work. @CAPS2 you can see they spended a lot of money on the mooring mast.Also it wasn't a easy job to make everything work there was a lot of things they had to worrie about like safety issues. I know it wasn't a easy job because in paragraph @NUM1 it also said ""The architects could not simply drop a mooring mast on the top of the Empire State buildings flat roof."" @CAPS2 you can see they struggled to make the mooring mast accomplish." 1 2 2 +15281 6 "While attempting to allow dirigibles to dock at the Empire State building the workers faced many obstacles. One of the obstacles was safety. While the dirigible, or zeppelin, was docked its body would sway in the breeze. This lead to a question of safety for the passengers getting on and off. Also there was no safe way to weigh the dirigible down, like when the dirigible lands in a field. Any weights used would be hanging over pedestrians. Another obstacle was the law prohibiting airships flying low over urban areas This law made it illegal for dirigibles to dock or approach the area The main obstacle was nature itself. There are very violent winds at the top of the Empire State Building which would cause the dirigible to sway. Docking at the Empire State Building was too complicated for the idea to be completed." 3 3 3 +15282 6 "In some cases builders of the Empire State Building faced obstacles such as safety. As stated in the reading. ""The greatest reason was one of safety: dirigibles outside @LOCATION1 used hydrogen, which is highly flammable."" If a dirigible was to catch fire on top of that building it could do a lot of damage. The next reason is there are ""laws against airships flying too low over urban areas."" The Empire State building was built in the middle of downtown, if something was to go wrong the dirigibles could harm a lot of people. Another reason is because of nature. The author stated, ""The winds on top of the building were constantly shifting due to violent air currents."" This put the dirigibles at risk of hitting that building or another. The last reason is because ""the complete dirigible mooring equipment had never been installed."" If the law and safety hadn't been a problem there would be no way to land a dirigible because they didn't have the things needed to land it. The obstacles made happened because they failed to fully look over their plan." 4 4 4 +15283 6 "The obsticles the builders of the @ORGANIZATION1 in attempting to allow dirigibles to dock there where the weather, and the Building Frame. The @CAPS1 obsticle was the wind because the winds at the top of the building were constantly shifting due to violant air currents. The wind was an obsticle because of a big gust of wind came it could not building materials or even workers off the building. A second obsticle was the building Frame because the dirigible was so big that at the top of the building being held by a single cable, that would add stress to the frame and would make the building unsteady. These are two examples of the obstacles the builders working on the empire state building @ORGANIZATION1 in attempting to allow dirigibles to dock there." 2 2 2 +15284 6 "The mooring mast was a failure from the start. The builders and architects were not looking at the problems that would be present but only at how to build the most. The first main problem the building workers faced when attempting to allow these dirigible's to land was actually building a mast atop the highest building in the world. Then came the necessary modifications needed to improve upon the buildings framework to support the zepplins weight putting stress on the building after being pushed around by winds 1, 250 ft above the ground. Perhaps the most important aspect of bringing these large zepplins over heavily crowded areas was safety. The aspect of safety for pedestrians below would have been almost non-existent had the idea been carried out. For example, some of those zepplins use hydrogen to stay a loft, and if a hydrogen filled blimp combusted over a city, it would seem pretty immenent people below would be harmed. This project seems to present far too many obstables for these architects to overcome for docking a single blimp." 2 3 3 +15285 6 "The Mooring Mast, by @ORGANIZATION2 describes the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The Empire State Building was competing with the Chrysler Building in being the tallest building. Al Smith, the governor at that time, didn't want to be beat. Being the governor of New York, Smith added more floors to the building developing it into a dirigible dock.As time went on, the building ran into more problems. Tying a thousand-foot dirigable to the building, would add stress to the frame. ""The steal frame of the Empire State Building would have to be modified and strengthened to be accomadate this new situation"" The frame around the building wasn't durable enough to hold a ""blimp"" The building would collapse while taking other buildings down. sixty-thousand dollars went into re-fining the frame but in the end, the building still failedAfter the frame was stable enough, more problems ocured. ""The greatest reason was one of safety Dirigibles used hydrogen, meaning it flammable."" Not only did the reason of safety of people went aganist the Building so did the law ""The other practical reason why dirigibles could not more at the Empire State Building was an existing law against airships flying too low over urban areas."" once Al Smith realized even the law forbidded this, all plans that rose into action stoped, and the Empire State Building remained the same." 3 3 3 +15286 6 "When the Empire State Building was created it was supposed to be a ""pit stop"" for dirigibles, known today as blimps. It was meant to be the modern way of travel, but many problems surfaced changing the plans. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. This was a major safety hazard! Another problem presented itself ""[A] law against airships flying too low over urban areas."" If anything were to go wrong with the ship many people would be put in danger. The harsh wind nature would provide the risk of puncturing the blimp against buildings; also endangering the people below it." 3 3 3 +15287 6 "The obstacles builders faced in attempting to allow dirigibles to dock at the Empire were saefty, nature, and U.S law. Saefty was a major obstacle because, ""Most dirigibles from outside the United states used hydrogen rather than helium and hydrogen is highly flammable"" (@CAPS1 @NUM1 lin @NUM2). Nature itself was another obstacle faced in allowing dirigibles to dock at the empire state building. ""The Winds on top of the building were constantly shifting due to violent air currents"" (@CAPS1 @NUM3 line @NUM4). One final obstacle that would hault the docking of dirigibles at the Empire State building was U.S law. The law was agaist airships flying too low over urban areas. This law would make it illeagle for a ship to ever tie up to the building or even approch the area"" (@CAPS1 @NUM5 line @NUM6)." 3 3 3 +15288 6 "In the excerpt ""The mooring mast"" by marcia Amidon Lsted. The @CAPS1 faced many obstacles. one of the obstacles was that the Back of the ship would swivel around and around the mooring mast. Another obstacles was that the winds on top of the building were constantly shifting due to violent air currents. These were some of the obstacels the @CAPS1 faced." 1 1 1 +15289 6 "The builders of the Empire States Building faced many obstacles when attempting to allow dirigibles to dock there. Paragraph fourteen said, ""the greatest obstacle to the successful use of the mooring mast was nature itself."" @CAPS1 planning for the mast, builders did not account for the high winds. ""The winds on top of the building were constantly shifting due to violent air currents."" The greatest reason the mooring mast of the Empire State Building never fulfilled its purpose was because of safety issues. ""Most dirigibles from outside the United States use hydrogen rather than helium, and hydrogen is highly flammable."" On May 6, 1937, the German Zeppelin, Hindenburg, was destroyed by a fire in Lakehurst, New Jersey. Owners of the Empire State Building than recognized that if the same incident was to take place in New York, more lives would be lost. Builders of the Empire State Building failed to recognize the dangers of the mooring mast." 4 3 4 +15290 6 "The builders of the Empire State Building faced a couple of obstacles while attempting to allow dirigibles to dock there. One of the obstacles the builders had was with the stress of the dirigibles load as said in the excerpt in paragraph @NUM1. Another obstacle they had with landing the dirigibles to dock was that they had to modify and strengthened the steel frame of the Empire State Building. They needed to do that so it can accommodate this new situation, which is to get dirigibles to dock on the Empire State Building." 2 2 2 +15291 6 "In the excerpt of ""The Mooring Mast"" the people attempting to make dirigible docks had ended up with big obstacles in reaching that goal. Before even adding the mooring mast on top of the Empire State building, the workers had to modify the frame or otherwise ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" The mooring mast goal was really starting to be dowstable when one problem wasn't realized. Safty, as most of the dirigibles from outside of the United States use hydrogen instead of oxygen, for example ""a German dirigible named Hindenburg was destroyed by fire in lakehurst, New Jersey, since hydrogen is very flamable. Because of realizing this, the situation could've been ""how much worse that accident could have been if it had taken place about a densely populated area such as downtown New York."" Also ""nature itself"", was the greatest obstacle, as Shifting winds would cause the dirigible to swivel around, even if it makes it to the mooring mast. The dirigibles could use weights, but using them at the Empire State building, ""while they would be dangling high above pedestrians on the Street, was neither practical nor Safe""." 3 3 3 +15292 6 "The obsticles the @CAPS1 faced In attempting to Allow dirigibles to @CAPS2 is that they needed a @CAPS3 enough cable so It cold @CAPS4 the Blimp, the passengers and any @CAPS5 weight. Another obstacles was How could they @CAPS6 that with the power of the wind that High up In the Air. Another reason is If @CAPS7 @CAPS8 there would Be padestrans At the @CAPS9. another reason Is the Building @CAPS10 would Have to @CAPS4 UP." 1 1 1 +15293 6 "In the story The Mooring Mast by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock. One of the obstacles faced was that putting a thousand foot dirigible moored at the top of the building would add stress to the building's frame. This made the builders have to modify the frame. Another obstacle the builders faced was safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is flamable."" This would put great danger to the people of New York. That was a huge problem the builders faced. The builders at the Empire state Building faced many obstacles but safety and reconstruction were just some of those problems." 2 2 2 +15294 6 "The builders of the Empire State Building faced many obstacles in attempting to allow the dirigibles to land there. The most prominent obstacle was that posed by nature, which was that there was always a constant change in wind direction, so the dirigibles would not be able to land safely. The architects thought that heavy weights could be put onto the ends of the blimps, but they then realized that that would not be safe for pedestrians walking below Also, the building had to be a ceetain number of feet high, in order for the airship height rule to be eliminated. If it was not an something exploded, the heavily populated city of New York would be in grave danger. In theory, the mast for dirigibles was a revolutionary idea, but in reality it just wouldn't work." 2 3 3 +15295 6 "There were many obstacles that builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One of the obstacles were that architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. This is because as it says on paragraph @NUM1, ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" Another obstacles were making the mooring mast of the Empire State Building to fulfill its purpose. It was very hard to make the mooring mast fulfill its purpose because the successful use of the mooring mast was nature itself. In paragraph @NUM2 it states that, ""The winds on top of the building were constantly shifting due to violent air currents."" These are the reasons why the builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock on top of the building." 2 3 3 +15296 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted, it describes many obstacles the builders of the Empire State Building had to face in order to allow dirigibles to dock there. The first obstacle they had to face was the constant change in nature and how it could affect the dirigibles. The dirigibles would ""swivel around"" because of the winds on top of the building were constantly shifting due to violent air currents."" This could put pedestrians on the street in danger because the ship is on top moving and could be unstable. Another obstacle is safety. Outside the United States the dirigibles ""used hydrogen rather than helium, and hydrogen is highly flammable."" Other countries ships could set on fire in the United States and put people in danger. Also the fact that the loading dock was more than 1,250 feet and loading off could be unstable because of the winds. The last obstacle faced was the ""existing law against airships flying too low over urban areas"". Therefore it was illegal to get the dirigibles close enough to the buildings safely. All these obstacles faced made the workers and planners realize this idea could not be achieved without harming anyone or putting people in danger." 3 3 3 +15297 6 "The builders of the Empire State Building obstacles can be described in the following ways. First of all, the main obstacle was the nature of the mast. They described it as, ""The winds on top of the building were constantly shifting due to violent air currents"" (paragraph @NUM1). Secondly, the dirigibles would dangle on top of the building, which wasn't safe for pedestrians. Lastly, there was a law for airships that couldn't fly too low or too high. The above explains the obstacles of the Empire State Building for dirigibles." 2 2 2 +15298 6 "When the architects and builders were planning on how to build the mast onto the Empire State Building, they faced many obstacles. An example of an obstacle they faced was they had to construct the mast so it wouldnt fall off when a dirigible docked. They couldnt use cable. tether to hold the mast down because it put to much stress on the building's frame and foundation. Another obstacle the builders had to face was how to strengthen the Empire State Building's frame. In order to get the Empire State Building's frame strong enough to hold the mast, it would cost over sixty thousand dollars. Those are some examples of obstacles builders had to face." 1 2 2 +15299 6 "In the building of @ORGANIZATION1 gets very competitive. He wants to construct the biggest building in New York City. When the construction was going on he wanted to add a top or hat so that the mast would be able to drop off people directly into the building. But then there was a problem they had to consult it to allow it. Irving then let Al know that the building wasn't going to be done on time, because of the mast. That's what the Empire State building faced during its contraction." 0 1 1 +15300 6 "Throughout the designing and construction stages of the Empire State building's mooring mast, builders and engineers confronted many issues including, the distribution of building stress, fire hazards and the constant shifting caused by winds. During the planning stages of engineers, they confronted an issue, how to alliviate stress on the Empire State Building's frame. According to engineers making the ""thousand foot dirigible moored at at the top of the building held by a single cable tether would add stress to the building's frame..."" @CAPS1, the building would require ""over sixty thousand dollars"" in redesigning and modifying the current building's foundation and framework. Secondly, engineers and builders never considered the fire hazards, which they were confronted with after the completion of the mooring mast. The American dirigibles were filled with hydrogen rather than helium, making that gaseous-filled transportation highly flammable."" An example of this safety violation occurred with the burning of a dirigible in Lakehurst, New Jersey, causing builders to reflect on the possible severity of this possible accident in the heavily populated area of New York. Thirdly, New York had ""violent air currents"" which could cause the rear of the dirigibles to swivel and shift. The only possible solution was to way down the back with lead blocks, but this would be ""neither practical nor safe."" Engineers and builders of the Empire State Building were confronted with many problems and concerns sometimes only addressed by irrational solutions." 4 4 4 +15301 6 "The builders of the Empire State building faced many obstacles while attempting to allow dirigibles to dock there. One obstacle they faced was that if a dirigible was moored by a single tether, ""the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below"" Another obstacle was that most foreign dirigibles used hydrogen, which was highly flammable, and when the Hindenburg was destroyed, builders realized that accident would have been much worse if it had happened ove a densely populated area like New York City. A third obstacle was violent wind currents that would cause the back of the ship to swivel around, and the back of the dirigible couldn't be weighted down like in open landing fields because that would cause the weights to dangle dangerously above that pedestrians on the street. These were major obstacles, and they are the reasons that the mast on top of the Empire State Building was never used dock blimps." 4 4 4 +15302 6 "Based on the excerpt, there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. For example, the safety of the city and dirigibles were a concern. In paragraph thirteen, it states ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable. When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York"". In addition, the greatest of obstacles was truly nature itself. ""The winds on top of the building were constantly shifting due to violent air currents."" As a dirigible attempted to succesfully use the mooring mast, the back end of the blimp would swivel around and around the mooring mast"". There additionally was a law which dated airships cannot fly that low over an urban area. Thus, the multiple obstacles which were faced through this ""architectural breakthrough"" destroyed any hope of the building's true purpose." 4 3 4 +15303 6 "Constructing anything is always a difficult taksk, but trying to construct the worlds tallest building and have dirigibles being able to dock there is even harder. The workers who were modifing the Empire State Building had nemerous obstacles that stood in their way when attempting to allow dirigibles to dock at the Empire State Building. The obstacle they could not controll was nature herself. The winds were said to be ""constantly shifting due to violent air currents,"" according to the excerpt wich made it difficult for dirigibles to dock there, and dangerous. Also another factor that was an obsticle for the constructors was the building itself. The structure of the building would have to be modified because the dirigible ""would add stress to the building's frame,"" so constructors wolud have to make the building support this tremendous stress. Another obsticle was safty because some dirigibles were filled with hydrogen which was extremely flamable and dangerous for the massive population on the ground. These are a few of the many obstacles faced when modifing the Empire State Building." 4 4 4 +15304 6 "The Empire State Building was and is the tallest building to ever be built. To make it the tallest building Architects had to design the Mooring Mast. In building this mast there were many obstacles to overcome, but even with those obstacles it was still finished.The Mooring Mast was needed because without it the Empire State Building would not be the tallest in the world. To make the Mooring Mast work the builders had to overcome some obstacles. One of the main obstacles was to add on the Mast they would have to attach steal from the Mast all the way down to the foundation. Another was After designing the Mast they had to change the original plans for the building." 1 1 1 +15305 6 "Builders faced many obstacles in attempting to allow Dirigibles to dock on the Empire State Building. Between @CAPS1, saftey, and nature, there was no way this idea could ever work. Although the idea was good it was very impracticle. Saftey was a major problem with this idea. Most Dirigibles used hydrogen rather than helium which is more flammable. If the Dirigibles ever broke out into flames over New York City it would burn the whole place down and kill thousands. Nature was another big problem. The winds on top of the Empire State Building were shifting all the time. The ship would swivel around the moorings mast. The Dirigibles usually moored in fields and used black lead weights to weigh them down. The weights dangling above peoples heads was very dangerous. Building the mooring mast was very dangerous and impracticle. It never happened due to saftey and now serves as a tea and soda area for use of sight seers." 3 3 3 +15306 6 "On @DATE1, The Empire State Building was announced to reach the height of 1,250 feet. Al Smith, the architect of the building mentioned that the top would be more than ornamental. It was said that this amazing dream would come true for aviation pioneers. The building was going to have a mooring mast at its top for docking these new airships called dirigibles, otherwise known as blimps. This was thought out to be a great idea. Things didn't quite turn out as originally planned, and Fate struck. As fate struck, things should have been more apparent before it was ever constructed. Resons being; Most blimbs from outside the states run on hydrogen rather than helium, and hydrogen is more flammable. Winds on top of the building were constantly shifting, causing the dirigible to swivel, and it would be a disaster for anything to happen to New York City and the pedestrians it holds. Another law was the law of how close airships can be to the building. Thus, still leaving the Empire State Building at 1,250 feet, but never completing the original goal." 3 3 3 +15307 6 "The builders faced many obstacles when trying to build the empire state building. First of all for it to be a @NUM1 ft building it would have to have a very strong base to support it and they had to reinforce the base too to be able to mount the mooring mast on top. They also faced issues with the strong air currents that flowed above New York. None of the dirigibles were able to dock because of the high current. The mooring mast also placed stress on the frame. ""A thousand foot dirigible moored at the top of the building held by a single cable tether, would add stress to the buildings frame."" this proves proves how much difficulty the builders were going to have with the construction of the Empire state building." 3 3 3 +15308 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted the builders of the Empire State Building faced obstacles in attempt to allow dirigibles to dock there. Dirigibles are enormous steel-framed ballons they can travel for long periods at time of seventy miles per hour. Thoogh dirigibles seemed great for attracting people by ways of travelin modernation, the builders faced a complex obstacle. There was no area of suitable landing for dirigibles. In attempting to allow dirigibles to dock there many thoughout changes in the building needed to be considered. The load being transported off the dirigible would add stress to the building frame, as would the wind pressure. To suit the buildings with accommodating the dirigible, the price for modifications to the building would cost @MONEY1. Many obstacles were scientifically proven why the dirigible could not dock at the Empire State Building. The issue of safety involving the hydrogen gasses being highly flammable were to much of a risk in the high populated are of New York. Also nature was a large obstacle that was faced due to the wind at such a tall altitude. The law implying that airships couldn't fly too low was a practical reason why the dirigibles could not dock at the building. ""One set of engineers here in New York is trying to dope out a practical, workable arrangement and the Government people in Washington are figuring on some safe way of mooring airships to this mast."" A quote by Al Smith. The obstacles involving the moderate transportation idea were too impractical in using the mooring mast for dirigibles on the empire state Building" 3 3 3 +15309 6 "The builders of the Empire State Building faced many obstacles in their efforts to make it possible for dirigibles to dock on the mast. One problem was safety. Some dirigibles were filled with hydrogen, which is, according to the article, ""highly flammable."" @CAPS1 a dirigible catch fire right over a very populated area would be dangerous. Nature was another factor. ""Violent air currents"" made it difficult to maneuver a dirigible and bring it close enough to the mast to dock. Yet even if these frustrating conditions were not extant, it would still have been impossible for a dirigible to moor on the mast, because it was illegal. A law prohibited ""airships [from] flying too low over urban areas,"" which included dirigibles. These obstacles were overlooked in the plans to create the Empire State Building." 3 4 4 +15310 6 "In ""The Mooring Mast"" by @ORGANIZATION2, it focuses on the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. Laws made it impossible for the original purpose of the mast, ""An existing law against airships flying too low over urban areas. This law made it illegal for a ship to ever tie up to the building or even approach the area..."". Some dirigibles did try, but due to wind and safety reasons the idea was dropped. The safety of all human beings took part in the construction, ""When the German dirigible Hindenburg was destroyed by fire...the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area..."". When dealing with other countries you have to take into account that they may not use the safest things. Mother Nature can be a funny thing, ""The winds on top of the building were constely shifting..."". With the wind changing at a moment's notice it can be hard for a ship to land. When building something always be prepared for obstacles." 3 3 3 +15311 6 "The builders of the Empire State Building faced obstacles when trying to allow dirigibles to dock on it. The architects could not just drop a mooring mast on the top. If they did, the whole building's foundation would have to be changed. Nature was also a major reason to stop the project. The wind currant were always changing and the blimp would swirl around. Safety was the greatest reason to shut down the job. Hydrogen is very flammable and if the blimp, which would be over New York was to burst into flames many people would be killed. In conclusion, these obstacles are why the builder stopped and didn't complete the project for the Empire State Building." 3 3 3 +15312 6 "The Empire State Building faced numerous problems in allowing dirigibles to dock there. The most important reason was the safety of the people. Most dirigibles used hydrogen instead of helium to power their dirigibles and hydrogen is extremely flammable The death toll would be astronaumical over a dense population as downtown New York. Another obstacle faced in this creation was nature. The winds at the top of the Empire State Building were constantly shifting and the idea of a dirigible dangling high above pedestrians was not safe. The last reason that the dirigibles were not safe was the existing law in the U.S. At the time of the building of the Empire State Building, a law existed that prohibited airships from flying too low over urban areas. Therefore, the dirigible was to close to the ground and was not allowed to dock. The idea of dirigibles docking at the Empire State Building is a phenomenal idea, however, there are to many obstacles prohibiting it." 3 3 3 +15313 6 "When the builders of the Empire State Building envisioned leading dirigibles moor at the top, there were some critical flaws. For one thing, a thousand foot dirigible moored to such a small focal point with the wind pressure and its own load would exert enormous pressure on the building's frame (p. @NUM1). This could potentially lead to the building's collapse is due to the strain. Another reason was at such high altitudes, the wind is quite violent and would sway the back of the dirigible over thousands of pedestrians below, which is neither ""... practical nor safe."" (p. @NUM2). If something went wrong, the dirigible could take out another building or worse: fall. A more practical, legal obstacle was a law against the presence of airships over cities. A dirigible mooring to a mast, even at that height, was illegal (p. @NUM3). Therefore, with so many obstacles it was deemed impractical to use the Empire State Building as a high-altitude dock." 3 4 4 +15314 6 "There are many problems with trying to dock dirigibles to the Empire State Building. First, there was a German dirigible called the Hindenburg that caught fire due to the hydrogen. Having a dirigible go up in flames over dense New York would result in many lives lost. Second, the wind 1,250 feet in the air is very strong and unpredictable. There was no way to be sure that the dirigibles could even dock or be controlled once docked. Lastly, there is a law against airships flying too low over urban areas. It would almost certainly be against the law for a dirigible to be so close to a building with so many people in it. Since these problems all could result in deaths, the idea was thrown out." 3 3 3 +15315 6 "The builders of the @ORGANIZATION1 many obstacles in attempting to allow dirigibles to dock there. In the beginning preparation., The builders thought it would be a great idea to let dirigibles (also known as blimps) to dock there. They didn't take into account the obstacles and struggles that they would soon face. The builder's didn't take into account the wind pressure and what the stress of the blimp's load would do to the building. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's Foundation, which was nearly eleven hundered feet below."" This was a huge problem the architects and over @MONEY1 worth of modifications had to be made to the building's framework. ""Safety was also another big issue."" Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. If a fire had broken out over a highly populated area such as downtown New York, the results could have been disastrous. The winds also were problem. Even if the blimp was tied down to the mooring mast, the back of the ship would swing around and could result in a dangerous accident. There was also laws against low flying ships. The architects For the Empire State Building should have thought it through." 4 4 4 +15316 6 "In order for the dirigibles to dock on the Empire State Building the builders had to fulfill many expectations and make sure everything was right, but while doing that they faced many obstacles. The one obstacle to their expanded use in New York City was the lack of a suitable landing area. Another obstacle the builders faced was most dirigibles from outside of the U.S. used hydrogen instead of helium. Hydrogen is highly flameable. They realized how much worse it could be especially with a more populated area like downtown New York. The greatest obstacle to the successful use of the mooring mast was nature itself. The winds were constantly shifting due to violent air currents. With all of These obstacles the builders realized that this would not work." 3 2 3 +15317 6 "The empire State building builders faced a couple of Problems of docking dirigibles to the mooring mast. Some, I don't even know, @CAPS5 I'll just buildup from here & @CAPS1 what @NUM1. The dirigible. Now I never learned about the @CAPS2 of a zeppelin, but I do know one thing. Do @CAPS7 get out from the front, or sides? I @NUM2. The mast itself. This thing was a failure from the @CAPS3. (don't question why I chose Something else for one of the multi-@CAPS4 questions). The reason why is that @CAPS5 many things could go wrong. This thing can @ORGANIZATION1, & @CAPS6 fall off unless @CAPS7 do something really special for forging a building this high.Overall, it's been a long while, anyways these problems, & Several others that I forgot to mention for obvious reasons are @CAPS6 the reason why we don't use zeppelins as much anymore..." 1 0 1 +15318 6 "In the article ""The Mooring Mast,"" Marcia Amidon @CAPS1 describes how safety, laws, and nature are the three main obstacles builders of the Empire State Building faced in attempting to allow dirigibles to dock there. Safety was the greatest reason that dirigibles could not be docked in @ORGANIZATION2. The biggest safety hazard was that many countries outside of the @LOCATION2 use hydrogen in their dirigibles instead of helium. A German dirigible had recently been destroyed in a fire in New Jersey because, ""hydrogen is highly flammable"" (@CAPS1, @NUM1). The builders of the Empire State building realized that the accident would have been far worse if it had occurred, ""above a densely populated area such as downtown New York"" (@CAPS1 @NUM1) and by docking dirigibles there, they run the risk that it could happen. Nature was another big obstacle that hindered the success of a mooring mast. Violent air currents at the top of the Empire State Building were always causing winds to change, so because only the front of the dirigibles was tethered to the mooring mast, ""the back of the ship would swivel around"" (@CAPS1, @NUM1). They could not use lead weights to weigh down the back like they used in open fields because having weights hanging above pedestrians on the street, ""was neither practical nor safe"" (@CAPS1, @NUM1). Nature was a major obstacle because it could not be changed and there was no easy way to fix the issues it caused. The last obstacle was an existing law which prevented airships from, ""flying too low over urban areas"" (@CAPS1, @NUM5). This law made it illegal for the ship to both approach the area and tie up to the building, which was a huge obstacle that was impossible to get around. The obstacles of safety, laws, and nature that the builders of the Empire State Building faced made it impossible to dock dirigibles to the moore mast on the building." 4 4 4 +15319 6 The building had a steel framed body up to @NUM1 floors the glass windows to the 102nd floor. They had to also had to upgrade the building because the stress that gets put on from the blimps. 1 1 1 +15320 6 "In the excerpt The Mooring Mast by @ORGANIZATION2, the builders of the Empire State Building are faced with several obstacles on they attempt to allow dirigibles to dock there. The first obstacle they encountered was designing a mooring mast that could with hold the stress of the dirigible's load. In stanza @NUM1 the author writes, ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame."" @CAPS1, the steel frame of the Empire state building would have to be modified and strengthened to ameliorate this problem. Next, the greatest obstacle they faced was the strong winds on top of the building. In stanza @NUM2, it say, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" This arrived as a huge problem as the architects could not weigh down the back of the ship because it could endanger pedestrians. Lastly, in stanza @NUM3 it states there is ""an existing law against airships flying too low over urban areas."" @CAPS1, it would be illegal for the dirigibles to tie up to the empire state building or even come close to the area. Due to these three obstacles the plan of using a mooring mast became an idea of the past." 4 4 4 +15321 6 "The builders of the Empire State Building faced lots of obstacles in attempting to allow dirigibles to dock there. The first problem or obsacle they faced was putting a mooring mast on top of the building. They could not just drop a mooring mast on top, because it would cause stress towards the building that would spread to the foundation. The building's steel frame would have to be modified for the building to be able to withstand the mooring mast alone. Then the builders noticed that a great amount of dirigibles, from outside of the United States, were filled with hydrogen and not helium. The problem was that hydrogen is highly flammable. This was shown in Lakehurst, New Jersey where a German dirigible got into an accident and was destroyed by fire, on May 6, 1937. The builders went back and thought about how New York is a highly populated place and what kind of bad effect it would have made on the civilians. The greatest obstacle that the builders faced was the nature of it. There were strong winds with a mooring mast would be so the dirigibles would be force to swivel and move in every direction. When the air crafts were moored in open fields they were weighed down with lead weights, but on the Empire State building they would be dangling high above civilians and pedestrians on the street which caused great a harm for the public." 4 4 4 +15322 6 "The excerpt of The Mooring Mast by Marcia Amidon Lsted reveals that the architects of the Empire State faced a number of obstacles. Not only was the construction of the building now competive, but its expectations were unrealistic. The idea for such a masterpiece of a building held a number of potential problems that its architects not very competitive. As the work-in-progress of the Chrysler building grew, the Empire State Building strived to be taller. In order to achieve greater heights, its architects suggested and addition of a mooring mast, to not only make the building the tallest, but to add to its purpose. The addition of a mooring mast would require a lot of planning, though. If a giant steel framed balloon were to dock at the top of the building as is, it could dangerously shake the foundation of the building, so the frame of the building had to be rebuilt much stronger. Also, the architects didn't realized the danger of docking dirigibles. Dirigibles, or blimps, were fueled by hydrogen, which is very flammable, and proved a threat to the thousands of people living below." 2 2 2 +15323 6 "In the excerpt The Mooring Mast by @ORGANIZATION1, the builders of the Empire State Building faced obsticles attempting to allow dirigibles also known as blimps to dock there. some of these obstacles faced by the builders were that the architecs could not drop a mooring mast on the flat roof of the Empire State Building. Attaching a thousand-foot dirigible to the top of the building's frame ""would add stress to the building's frame."" @CAPS1 in paragraph @NUM1. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly @NUM2 feet below"". Also it was very unsafe allowing the highly flamable dirigible to coast over a highly populated area. Lastly the article states ""the greatest obsticle to the successful use of the mooring mast was nature itself."" The ship would ""swivel"" around the mooring mast. Dirigibles should be landing in open fields, where they could not dangle above pedestrians." 3 3 3 +15324 6 There were plenty of obstacles the builder faced it trying to allow the dirigibles to dock here are some. First having something this big land on a @NUM1 foot building would add lots of stress to the buildings frame. All of this stress have to be distributed throughout the eleven hundred foot building which was unthoughtof. In order to make the building suitable for all this weight it would cost over sixty thousand dollars and that was alot concidering every thing elsethat they were doing. Those were @CAPS1 a few obstacles they had trying to allow dirigibles to dock on top of the empire state building. 2 2 2 +15325 6 "The builders of the Empire State building ran into some obstacles when attempting to allow dirigibles to dock there. Because of all the modifications they would need to make in order to have a mooring mast would cost over sixty thousand dollars. It was such an expensive modification because they ""could not simply drop a mooring mast on the top of the"" flat roof on the Empire State Building. The stress a thousand-foot dirigible would put on the building's frame would be too much, this was their obstacle. The builders needed to strengthen and modify the steel frame of the Empire State Building in order to hold the dirigibles as desired." 1 2 2 +15326 6 "The builders of the empire state building faced a lot of obstacles in attempting to allow dirigibles to dock on the building. Mainly the idea was just not practicle. Having an up to @NUM1 foot blimp is full of flamable nitrogen hovering over a densely populated area was an extreme danger. One accident and tons of lives would be at stake. Especially after the German blimp the Hindenburg crashed, workers knew, had that happened in New York their death tolls would be huge.Along with the extreme perels that the builders knew would be at stake, mother nature would also not make it easy for dirigible to dock at the empire state building. The winds atop the building were constantly shifting. The air currents were too violent and posed to many threats for danger. Even when the ship was anchored, the back of the ship would swivel as if attached to a hinge. Lead tools can be used to weigh down the blimp, but hanging above tons of people this would not be a safe idea.Overall the idea of having a dirigible connected to the empire state building is just not safe and not worth what could be lost." 3 3 3 +15327 6 "The builders of the Empire State building faced many obstacles when attempting to allow dirigibles to dock there @CAPS1 was the actual design of the mooring and modifications that would have to be made to the building. Due to the stress of the wind pressure and the load of the dirigible, structure of the building had to be made stronger. The mast would also have to withstand holding down the dirigible just one cable tether, which would put a lot of stress on the mast and building. Another issue faced by the builders was the fact that dirigibles from outside the United States most the used hydrogen, not helium, in the balloon, which made it more flammable and dangerous. If one ever caught on fire above New York City, it would be disastrous. Finally, there was already a law in place that airships could not fly to low over urban areas. This law made it so that it was illegal for a ship to ever tie up to, or even approach the Empire State Building. In conclusion, the obstacles faced by the builders of the Empire State Building faced many challenges, most too great to overcome. When it came to trying to allow dirigibles to dock on the spire of the building." 4 3 4 +15328 6 "There are afew obstacles the builders had. to face in this project. One of them was was building the Empire State Building taller than the Chrysler building. The architect building of the Chrysler building made it 46 ft taller. When this was done the builder needed to make the Empire State building taller, but make it something ""as mundane as a water tank"" (@NUM1 Al Smith) Another example was trying to make it a stop for dirigibles. These things could go up two @NUM2 miles per hour. They were as long a 1 thousand ft. That would take up @NUM3 blocks New York City. They didn't have good landing area. A third obstacle they faced was nature. The wind was always blowing. No matter what they need hangin dirigibles over a city of innocent people was very dangerous." 2 1 2 +15329 6 "While planning this architectural masterpiece, builders faced many obstacles. This plan to have a mooring mast at the top of the Empire State Building definitely did not fulfill expectations. The first big problem was the large amounts of stress to the framework of the building when the zepplins would be moored to the top, also the amount of pull would impact the foundation as well. The second problem was the cost to modify the skyscraper to meet the needs to not stress the framework. Safety was a huge issue as well; most blimps are filled with hydrogen which is a highly flammable gas, also if it were to explode it is floating over one of the largest cities in the country. With New @CAPS1 geographical positioning the wind is very strong off the ocean, these violent air currents constantly shift directions which could cause the zepplin to crash into the building. The final obstacle was the law against airships, they could not fly to low over highly populated urban cities." 4 3 4 +15330 6 "four main obstacles prevented dirigibles from ever docking at the Empire State Building. The first was that a much more complex mooring mast would have to be installed on top of the Empire State Building, a very different mast than the regular masts found in open field docking areas. When a dirigible would dock on the mast cause great stress to the building's frame, a problem that could be solved by increasing the strength of the steel frame. Another problem was that a dirigible was made of hydrogen and could easily catch fire and explode. Engineers saw this would cause large problems over a densly populated area like, New York City. Once the mast was built a new problem arised, even if the dirigible could dock the intense winds could make the back end of the dirigible move violently, or cause an airship to be unable to dock, like the inncodent with the Los Angeles. Nor could they use lead weights to weigh down the ballon since they would be a danger to civilians. Lastly, a law against airships flying too low over urban areas could have prevented docking. These reasons made it impossible for a ship to ever moor on top of the Empire state Building, although two ships got very close." 4 4 4 +15331 6 "Basically this excerpt is talking about the ""The Mooring Mast"". It is all about the construction. One of the obstacle the builders of the Empire State Building faced to is the safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" This quote reveals that the dirigibles they made is highly flammable and it's dangerous for people's lifes. Pretend that the dirigible is on fire while it's flying up high to sky, it causes lifes. The other obstacle the builders faced to is that it against the law. ""The other reason practical reason why dirigibles could not moor at the Empire State Building was existing law against airships flying too low over urban areas."" Even though the building is the tallest building in New York. But it is still too low for the laws. Airship can not fly that low over the urban area, it causes accidents. The Empire State Building is over 1,250 feet, which means on the top of the build has strong and forceful winds and the like dirigibles couldn't stop and get close to the top of the building. ""In December 1930, the U.S Navy dirigible @CAPS1 Angeles approached the mooring mast could not get close enough to tie up because of forceful wind.""" 4 3 4 +15332 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One such obstacle was the amount of modifications that needed to be made to the building's framework, as stated in paragraph @NUM1. The other obstacle they faced was the fact that most countries outside the United States used hydrogen rather than helium, and hydrogen is highly flammable, this made it impossible for dirigibles to stop in a densely populated area such as downtown New York, as stated in paragraph @NUM2. A last obstacle they faced was existing law against airships flying too low over urban areas, making it illegal for a ship to ever tie up to the building or even approach the area. These are the obstacles faced by the builders of the Empire State Building." 3 3 3 +15333 6 "The builders of the Empire State building faced obstacles in allowing dirigibles to dock there. Wind caused a great problem in the docking of the dirigibles ""The body of the dirigible could swing in the breeze"" (para 6). The swinging of the dirigibles body would cause pulling on the building that the building's current frame wouldn't be able to support. ""The stress of the dirigible's load and wind pressure would have to be transmitted all the way to the buildings foundation, which was nearly eleven hundred feet below"" (para @NUM1). The builders of the Empire State Building now had to strengthen and modify the building's frame to suit the stress of the dirigibles' loads Another obstacle that the builders of the building faced was the framing of the mast. The roof had to be completed before the mast's framing could take place. The workers had to work for another two monts after the building was already complete due to Al Smith's idea of allowing dirigibles to dock on the Empire State Building. The builders worked hard to suit the new building for the docking of dirigibles. Unfortunately their work was for nothing." 3 3 3 +15334 6 "Attempting to allow dirigibles to dock on the Empire State Building created many obstacles for its builders. Some of which weren't even discovered until finally attempting to do it.The first of the builders problems started with trying to prepare the actual building for the added stress that would be applied when having dirigibles try to dock. They spent @MONEY1 on modifications to reinforce the framework of the building. Then ""Rather than building a utilitarian mast without any ornamentation, the architects designed a shiny glass and chrome-nickel stainless steel tower..."" This created lots of unnecessary work for the workers, as well as made obstacles.There was also a lot of danger associated with docking dirigibles that the builders had to deal with. The violent changing air currents would require them to make the mast as sturdy as possible and account for the movement of the dirigibles. Finally the builders find out the biggest obstacle which is that it is legal for airships to fly that low over urban areas, so technically they weren't even allowed to do what they did. Thinking back on it, it is obvious to see that ""The mooring mast of the Empire State Building was destined to never fulfill its purpose...""" 3 3 3 +15335 6 "There were some obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle was the violent wind currents that made the dirigibles rear swivel, ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible was tethered to the mooring mast, the back of the ship would swivel around."" A second obstacle was a law preventing airships from flying too low over urban areas, which made the mast nearly useless. A third obstacle was that foreign dirigibles used hydrogen which is highly flammable. After the dirigible called ""The Hindenburg"" was destroyed, ""the owners realized how much worse the accident could have been if it had taken place above a densely populated area such as New York. Those are the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there." 4 3 4 +15336 6 "Based on the excerpt The mooring Mast by @ORGANIZATION2, the @CAPS1 the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were fire, wind, and the laws against airships flying to low over urban areas.If they let the dirigibles dock there they would risk the dirigibles @CAPS2 on fire because dirigibles from outside the U.S. used hydrogen instead of helium. and the Hydrogen is highly flammable. Another Obstacle would be the Wind, the winds were Shifting because of violent air currents. The back of the ship would swivel around, and if they put weights on the back it would not be safe for pedestrians on the street. And the last obstacle would be the law against airships flying to low over urban area, I would make it illegal for a Ship to tie to the building. Those were the @CAPS1 they faced." 4 3 4 +15337 6 "The expectation for dirigibles to dock on the Empire State Building was very high. The men who built the massive structure should've realized that these expectations were urealistic. Al Smith had planned for dirigibles to refuel and to drop off/pick up passengers while docked at the @ORGANIZATION1. These plans would never manifest because; for in dirigibles were powered by hydrogen and it is highly flammable which could result in disaster, the winds atop the Empire State Building were much too strong, and there was a law permitting aircraft's from flying so low over urban areas.In one incident in Lakehurst, New Jersey the German dirigible Hindenburg was destroyed by fire. The owners of the @ORGANIZATION1 saw ""How much worse that accident could have been [in New York City]. ""The greatest obstacle to use of the mooring mass was nature itself"" because the wind was so strong. Dirigibles couldn't even get close enough to dock. The law on the altitude of airships wouldn't allow dirigibles to even get close to the @ORGANIZATION1. The plans for the Empire State Building were never realistic and could never be fullfilled." 3 3 3 +15338 6 "The wind was a huge issue when building the empire state building. The building was so high off the ground that the top was not as stable. If they used dirigibles on the Empire State building it would be dangerous because the weights would be dangling high in the air over all of the pedestrians heads. That plan was not smart or safe. The purpose to build it higher was just so it could be the tallest building, there was really no good reasons for it." 1 2 2 +15339 6 "Elders of the Empire State Building faced many complications Safety was a major concern. Battling with the harsh winds would also be a problem.When the idea of the mast was created, not many realized the reality of the concept. To put an extremely heavy object and attach it to just a tether, was not safe enough. The combination of combustible gases also suggested pulling down town New York at risk.To land on such a small roof would be difficult due to strong winds. Guiding the dirigible to such a delicate landing would prove to be hazardous with the strong winds.The builders of the Empire State Building faced many obsticles when constructing the mooring mast." 3 3 3 +15340 6 "In ""The Mooring Mast"" by Marcia Amidon Lsted there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. First the building had a flat roof and a dirigible moored to the top, only held by a single cable tether would add stress to the buildings frame. Modifications to the building would cost over sixty thousand dollars. Other problems the building faced had to do with safety. Some dirigibles used hydrogen which is highly flammable and if an accident were to happen in New York it would be disastrous. The greatest obstacle was nature itself. The winds were constantly shifting and even tethered to the mooring mast, the ship would not be secured. This was also very unsafe. The Empire State Building never succeeded it's purpose." 3 3 3 +15341 6 "The main problem in the original design of the mooring mast was that ""the architects could'nt just drop a mooring mast on top of the Empire State Building's flat roof. A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame. The stress of the dirigible's load & the wind pressure would have to be transmitted all the way to the buildings foundation."" Another obstacle the builders faced with the construction of the mast could be another example of the German dirigible ""Hindenburg"". With some dirigibles using the highly flammable hydrogen instead of helium another ""Hindenburg accident"" could prove to be fatal in a ""highly populated area such as downtown New York."" @CAPS1 perhaps the greatest obstacle would be ""nature itself."" The high force winds on top of the empire state building would cause the dirigible to swivel around the mooring mast. Although the dirigibles could be weighted down, the weights would be hanging over pedestrians, which ""was neither practical nor safe.""" 4 3 4 +15342 6 "The obstacles the builder of the Empire State Building faced in attempting to allow dirigibles to dock there were a lot. They had trouble with the area thing where they were going to do their job. ""The one obstacle in their expanded used in New York City was the lack of a suitable landing area."" Another obtacle that they had was with the mooring mast. ""the greatest obstacle to the successful of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Then there was an existing law against airships flying too low over urban areas. and if they did it it would become illegal to the ship that pass tie up to the building or even approach the area." 3 3 3 +15343 6 "the mooring mast of the Empire State Building was destined to never fulfill its purpose, for reason that should have been apparent before it was even constructed. the greats reason was one of the safety: most dirigible from out sit the united @CAPS1 used hydrogen rather then helium, and and hydrogen is highly flammable." 1 1 1 +15344 6 "In the 1930's, the idea to have a mooring mast mounted on the top of the Empire State Building for dirigibles to dock was a very popular theory. However, there were many obstacles the builders of the Empire State Building faced, such as existing laws concerning airships, flammable, hydrogen dirigibles, strong winds, and the stress a moored dirigible would add to the buildings frame. Existing ""air traffic laws would make it illegal for a ship to tie up to the Empire State Building or even fly near it, since airships couldn't fly too low over urban areas (paragraph @NUM1). The destruction of the Hindenburg, a hydrogen dirigible, helped the owners of the Empire State building realize how dangerous dirigibles could be, especially if they combusted over downtown New York City (paragraph @NUM2). Strong winds also would be hazardous to dirigibles moored to the empire state building, seeing as the aircrafts couldn't be way down in the air (paragraph @NUM3). The steel frame of the building would also have to be modified to accommodate the stress added by a moored dirigible. All in all, it was very unrealistic to more dirigibles to the Empire State Building, as it would be unsafe." 3 3 3 +15345 6 "Builders faced many obstacles such as safety, nature, flammability and law in attempting to allow dirigibles to dock at the mast. The first problem is ""the mooring mast of the Empire State Building was destined to never fulfill it's purpose."" The dirigibles also, use hydrogen not helium, which is very flammable. The Hindenburg, a German dirigible was destroyed by fire in New Jersey and, ""the owners of the Empire State Building realized how much worse [it] could have been if it [happened] over densely populated area such as New York. The violent air currents also played a role, the back of the ship would swivel around and around. When dirigibles moored in landing fields they would be weighted down with lead weights, which would be dangerous for pedestrians on the street. Also, there was a law against airships flying too low over urban areas. There was no way dirigibles would be able to dock at the mast" 3 3 3 +15346 6 "The builders of the Empire State Building in New York faced many obstacles while attempting to allowed dirigibles to dock. One obstacle of the builders was creating the Empire State Building with the strength to hold the dirigible, swaying in the wind, without the building falling over. The weight of the dirigible would have to be transferred to the bottom of the building which was almost eleven hundred feet below. The largest obstacle, however, was holding the dirigible in place while it was docked atop the building. The winds were ""constantly shifting due to violent air currents"" and would make the dirigible fly wildly around the top of the building (@CAPS1 paragraph @NUM1). The building would never be used for its transportational all purpose because of the dangers and obstacles of the mooring mast and dirigibles." 3 2 3 +15347 6 "While designing and building the mooring mast atop the Empire State building, the engineers seem to have ignored some seemingly useful information. As with any vehicle in the air or at sea, wind is either your enemy, or your friend. The engineers should have taken into greater consideration that changing wind speeds and direction 1,250 feet in the air are huge threats. Your dirigible will have a hard time getting close enough to the mast to moor, never mind to stay steady enough for passengers to exit, and board safely. Also if the law itsself prevented you from floating your blimp at such low altitudes, then its game over. Why even bother if its illegal? Although it seems like a futuristic sci-fi, and not to mention downright cool way to land a blimp, to many things prevented the idea from prevailing." 2 2 2 +15348 6 "There were many obstacles that the Empire State buildings owner faced. One obstacle was not having enough room for the dirigible to land. To help solve this problem, the architect added mooring mast to increase the buildings height. Another obstacle was that the steel frame of the Empire State building would have to be expanded in order for there to be more height added to the building. Altogether this would cost over @MONEY1. The main reason, and obstacle was safety. The owner had to make sure that the dirigible was not flammable, in which it was. Wind and nature also played a big part in deciding to go through with the idea. The strong winds would make the dirigible swing and constantly shift. This would make the dirigible hang over people on the streets of New York, which was not safe. The idea that landing dirigibles on top of the empire state building was neither safe or practical, and there were just too many struggles and obstacles for a plan like this to ever follow through." 3 3 3 +15349 6 "The builders faced many obstacles while building the mooring mast on the Empire State Building. One thing was just simply the building would not have been strong enough to hold the dirigibles weight. Due to that fact that, they had to strengthen all the framework on the entire building. They had to put in sixty thousand dollars' worth of modifications to its framework. Also having the right equipment on the dirigibles served as a problem. The dirigibles didn't have the right docking tools to dock on this newly built mooring mast. The back of the dirigibles could also be swung back and forth when docked which also served as a issue When it came to docking. Another problem was most dirigibles outside of the United States used hydrogen which was highly flammable and they didn't want something that could easily catch fire near the building like that" 3 3 3 +15350 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibels to dock there. The main reason the diriibles couldn't dock there was because the dirigbles load. The load would cause stress. The wind pressure also is another reason dirigbles couldn't dock there. ""The wind pressure would have to be transmitted all the way to the building's foundation."" The dirigbles were docked by means of an electric winch. The electric winch was fine but, it also says ""the dirigible could swing in the breeze"" this could have been a safety concern also." 2 3 3 +15351 6 "In ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. For example, one was safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" (@NUM1) This shows that docking dirigibles can be harmful as some buildings and many people can be negatively affected. The large business district is too densely populated to allow such a thing. ""The winds on top of the building were constantly shifting due to violent air currents."" (@NUM2) This obstacle builders faced brought up that lives are yet again in danger, not to mention very expensive damage that allowing dirigibles can cause. Another obstacle builders faced was ""an existing law against airships flying too low over urban areas."" (@NUM3) All of these obstacles that the builders faced were very important and paved the way for the idea of dirigibles to be docked attop of the Empire State Building to be disarmed. The dangers involved were too significance and the top of the building now much safer purposes." 3 3 3 +15352 6 "There were many problems with the designing of the dirigible docking system. The first of these problems comes from the practicality of the consept. The winds created by the updrafts in the cities are violent and making landing a blimp too risky, ""The winds on top of the building were constantly shifting due to violent air currents."" Another obsticale that was faced was the strutural design. The Empire State Building was not originally designed to moor blimps, and modifying the building to do so was expensive, ""over @NUM1 doolars' worth of modifications,"" The final obsticale was the fact that there were laws in place stopping airships from flying too low over buildings, ""... an existing law against airships flying too low over urban areas."" These impracticalities prooved to be challenging obsticales" 3 3 3 +15353 6 "The builders of the Empire State Building planned to use the building to make New York the leader in modern travel. They built a mooring mast which they planned to use to dock dirigibles. Unfortunately, there were some unexpected difficulties and this goal was never accomplished.When the architects first decided to add the mast to the Empire State Building, they realized that they would have to redesign the entire building's support structure because of the pressure that a docked dirigible would put on the building. Even after this problem was solved, there were numerous obsticles keeping the goal from being reached.The architects had failed to see many of the potential problems with the mast. Not until after the mast was built did they realized that most dirigibles from outside the U.S. used hydrogen rather than helium to stay afloat. Hydrogen, being highly flammable was not a risk that the builders wanted to take over the densely populated city. The architects also realized that the unpredictable high winds at the top of the mast would be too dangerous to dock a dirigible.Once these obsticles appeared, it became evident that the Empire State Building would never dock a dirigible." 3 3 3 +15354 6 "Builders of the Empire State Building encountered many obstacles during construction, according to the article The Mooring Mast by Marcia Amidon Lsted. The biggest obstacle of allowing dirigibles, or blimps, to dock their where the forces of nature, such as wind and gravity. As in the article, the ""winds on top of the building were constantly shifting due to violent air currents."" It was unsafe for both passengers of the dirigible and pedestrians below to be close to the blimp and the turbulent air. Also, the flammability of the hydrogen in the blimp caused a problem; it was very unsafe to have a possible fire hazard that was @NUM1 feet long, floating close over a very populated place such as New York City. In addition to that, laws that airships could not fly too close over urban areas prohibited dirigibles even coming close to the mooring mast over the Empire State Building. A test run with the U.S. navy dirigible Los Angeles proved that it was too dangerous and impractical; the dirigible could not even get close enough to tie up. All in all, the mooring mast over the Empire State Building was a genius idea, but too many obstacles sprung up for it to be in use." 4 4 4 +15355 6 "Architects had to face many problems in attempting to allow dirigibles to dock on the empire State building. The very first problem architects faced was adding a mooring mast to the building because they could not Simply just drop one on, they had to go back and re-support the whole skeleton of the building. Another problem is if the dirigible were to fail like the hindenburg it would plument in a ball of fire to a very populated city down below. The greatest problems architects had to face was nature itself There were violent winds constantly if a dirigible had been tethered down it would move violently and go @CAPS1 down on pedestrians down below, which is too much of a risk for the architects to take." 3 2 3 +15356 6 "When attempting to add a mooring mask to the Empire State Building, the people who were adding it faced several impediments. Right away, the builders took the size of a dirigible into account. If there were something that large at the top of the building, the frame would be warped. To solve this problem, they had to spend over sixty thousand dollars to change the original framework, to a more suitable one. Another obsticle faced by the builders of the mast, was that they had made sharp edges on the building that could damage a drigible attempting to dock. Also, they realized that the mast was above a large urban area, so if there would be an accident, bad situations would take place. There was also a law about aircraft traveling too low over a City. The drigible mooring dock atop the Empire State Building was not meant to be." 3 3 3 +15357 6 "There were many obstacles the Empire State Building faced in attempting to allow dirigibles to dock there. Dirigibles were docked by means of an electric winch, The greatest obstacle of the mooring mast was nature. The winds on top of the building were shifting because of violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around the mooring mast. Dirigibles moored in open landing fields could be weighted down in the back with lead weights, was neither practical nor safe. The one obstacle to their use in New York City was the lack of a suitable landing area. A morning mast added to the top of the building would allow dirigibles to anchor there for several hours for refueling or service, and to let passengers off and on." 2 2 2 +15358 6 "There were many different obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. For example, an existing law made it so that airships could not fly too low over urban areas, which meant that a dirigible could not tie up to the building or approach the area. Another problem was making the mast strong enough to support a dirigible. For example, in paragraph @NUM1, ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" This shows that improvements had to be made to the mast. One of the biggest problems of building the mast was the issue of the dirigibles being filled with hydrogen, a highly flammable gas. The owners of the building remembered the German dirigible Hindenburg, which was destroyed by fire in 1937, and how much worse the accident would have been if it had taken place in a densely populated area." 4 3 4 +15359 6 "There were a few obstacles builders of the Empire State Building faced in attempting to allow dirigibles to dock there. A dirigible is a blimp, giant steel balloons that are filled with hydrogen and helium. Dirigibles had a lack of suitable landing area in New York. Al Smith was a four-term governor of New York. He came up with the idea that a mooring mast being added to the Empire State building would allow dirigibles to anchor there, fuel up and passengers could safely get on and off the dirigible. The architects and builders had to consult with experts so they took workers at the @ORGANIZATION2, tested the mass and met with president of a recently formed airship transport company. After all those obstacles they could finally build the mooring mast" 2 1 2 +15360 6 "The Mooring Mast by Marcia Amidon Lsted describes the building of the mast of the Empire State Building. The mast was originally added to add height to the thousand foot building. However Al Smith, one of the builders, wanted the mast to ""serve the higher calling"" of providing a docking station for dirigibles. This idea proved to be very challenging. First, the builders had to change the structure of the tower to make it strong enough to support the weight of the dirigible swaying in the wind. Lsted writes, ""The stress of the dirigible's load... Would have to be transmitted all the way to the building's foundation..."" When the mast was finally built, the builders faced the problem of having the dirigibles ""dangling high above pedestrians on the street."" If one ever fell, hundreds of people will be killed. Finally, there was a law that prevented ""airships flying too low over urban areas."" By docking at the Empire State Building, the dirigibles would be breaking that law. Although it was a good idea, ""The Mooring Mast"" shows that it would not be possible for dirigibles to dock atop the Empire State Building." 3 3 3 +15361 6 "The-builders of the Empire State Building faced many obstacles in allowing dirigibles to dock there. Safety was the biggest concern at each stage. The recent explosion of the Hindenburg showed potential problems in docking these aircraft. If a blimp was to explode in downtown New York, it could be a disaster. Another obstacle that would be faced is nature. The winds on the top of the building were constantly changing. The unpredictable wind atop the building made the idea of mooring a zeppelin very illogical. At this time, laws against flying low in urban areas were coming around. These would make for docking the airships to be illegal. The idea for making the Empire State Building a mooring post was an engineering feat but the actual usage of it was not practical." 3 3 3 +15362 6 "The obstacles the builders faced in attempting to allow dirigibles to dock is that a thousand-foot dirigibe moored at the top of the building would add stress to the building's frame. Also the stress of the dirigibe's load and the wind pressure would have to be transmitted. It would need to transmitted to the buildings foundation, which was nearly eleven hundred feet below. The steel frame would have to be modified and strengthened this would be over sixty thousand dollars." 2 2 2 +15363 6 The obstacles that the builders of the empire State building was really difficult. The worker had to make sure that the building was'nt so tall that it would so tilt. The workers also faced competition They needed there building to be the biggest and they didn't give up until there building was in fooy the tallest building in @CAPS1. 0 0 0 +15364 6 "Builders trying to allow dirigibles to dock ontop of the empire state building faced problems. The dirigibles waight and the wind pressure would add stress to the Building. Wich @CAPS1 to be transmitted more then @NUM1 ft down to the buildings foundation. Construction wasn't the only problem. Most @CAPS2-American dirigibles are held afloat by hellium wich is extremely flammable and if it was @CAPS3 over busy + crowded New York streets many people could have been killed. Nature added to the problems. Wind currents had the pottential to push dirigibles Into @CAPS4 buildings, causing them to pop. The finall problem was @CAPS5 already implace wich didn''t allow low flying aircrafts. Builders faced Problems with Nature, @CAPS5, safety, and construction wich lead to the demise of the use of the mooring system." 3 3 3 +15365 6 "The builders of the Empire State Building faced tremendous obstacles in attempting to allow dirigibles to dock there. First, new friends would have to include more money. Anything done so top of a building so large would have to be balanced by strengthening the foundation. According to paragraph @NUM1, ""over sixty thousand dollars' worth of modifications had to be made to the building's framework."" Another large obstacle the builders would have to deal with was finding a way to neutralize the violent wind currents atop the @DATE1 ft. building. Even if the front of the dirigible was anchored to the mooring, the back would be left to sway in the wind, Any accident or damage done to a dirigible over such a highly populated area such as downtown New York would have devastating results. In conclusion, the risks of allowing dirigibles to dock atop the Empire State Building outweighed the rewards. When dirigible travel became less practical, the plan was scrapped completely." 3 2 3 +15366 6 "many obstacles were taken while trying to get the Empire State Building to allow dirigibles to dock there. This was a long, hard and thought out process. Workers couldn't just drop a mooring mast on top of the building's roof. A one thousand-foot dirigible moored at the top of the building. It was being held by a single cable tether, which added stress to the buildings frame. The architects also had to build a shiny glass and chrome-nickel stainless steel tower that would illuminated from inside, with a stepped-back design that imitated the overall shape of the building. Later on they realized dirigibles could not moor a the Empire State building. One reason being a law against airships flying to low over urban areas. Architects went through many obstacles in building masts. " 2 2 2 +15367 6 "Problems the builders of the Empire State Building cam across were some tricky, life threatening ones. The first being as mentioned in paragraph @NUM1. When it explains that if a dirigible was to try and dock and something went wrong and it caught on fire, their would be serious damage done to the people below on the streets. Another obstacle the builders had to deal with was the ""greatest obstacle"" in paragraph @NUM2. the fact that the wind a top of the tower would be whipping the dirigible around with just a cable holding it to the mooring mast. Not making it safe for anyone around the building or in the blimp. One other reason the builders had to figure out when building the mast, was that no airships flying low could enter the area as mentioned in paragraph @NUM3. Those are some of the problems the builders had to face if they wished to dock dirigibles on the building." 3 3 3 +15368 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted explains the Empire State buildings past construction which led it to be the tallest building in the United States. Although the buider Al Smith had many obstacles, they faced of the hardest one when attempting to allow dirigibles to dock there. One of the obstacles is allowing dirigibles to anchor their for several hours for refueling or service, and to let passengers off and on. Another obstacle is letting dirigibles dock because of they need a place to tie up to a mast. It is stated, ""Dirigibles were docked by means of an electric winch, which haulled in a line from the front of the ship and then tied it to a mast"" (Lsted @NUM1) This can be a problem because the body of the mast could swing in alot of breeze. Although there were many obstacles Al Smith worked his way around them and procceded to finish the Empire State building with corage to take on all obstacles." 1 2 2 +15369 6 "In this excerpt from ""The Mooring Mast"", @ORGANIZATION2 describes the architectural, chemical, and legal challenges that prevented the construction of a mooring dock for dirigibles on the top of the Empire State Building. Despite the readiness of then- @CAPS1 Al Smith, who publicly announced the plan, and of John Tauranac, who reported that the top of the Empire State Building ""would serve a higher calling [than] to add a desired few feet,"" @ORGANIZATION2 contends that the failure of the mast ""should have been apparent before it was ever constructed"".According to the article, the mast, and a moored dirigible, ""would add stress to the building's frame."" More than sixty thousand dollars was spent to accommodate the pressure. Foreign dirigibles also contained hydrogen, which was more flammable than American-used helium. An explosion above the Empire State Building would be devastating to the city. An existing law prevented dirigibles from ""even approach[ing]"" the building. @ORGANIZATION2 uses these reasons to detail the unrealistic nature of the mooring mast." 2 3 3 +15370 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there where difficult. One of the obstecles they faced was fixing the Empire State Building and the cost was high. For example in the excerpt it said ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate the new situation over sixty thousand dollars' worth of modifications had to be made to the building's framework."" The plan never fully went thru because safety was an issue. Fire and people getting hurt on the streets was a big risk they could not make. It was also illegal for airships to fly too low over urban areas. The obstacles that the builders had to face made the idea impossible to happen." 2 3 3 +15371 6 "The architects had few problems. As said in @LOCATION1, stress from the Dirigibles Load was too much for The building. They would @CAPS1 over sixty thousand Dollars of modifications. Other Then That They @CAPS2 had to redesign And then make it." 1 2 2 +15372 6 "In the short story, ""The Mooring Mast,"" there were obstacles the builders of the Empire State Building faced in attempting to allow dirigibles dock there. One problem was that the dirigible's load and the wind pressure on the building's foundation. ""The stress of the dirigible's load into the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below. The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" @CAPS1, this was a big obstacle for the landing process of the dirigibles.Another problem they had was that dirigibles use hydrogen, and hydrogen is highly flammable. If it had caught fire, it would not have been good for a populated city. ""The Mooring Mast of the Empire State Building was destined never to fulfill it's purpose. Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" If the dirigible caught the building on fire, many people's lives would be in complete danger. In conclusion, the Mooring Mast did not work out for many reasons, but safety and the dirigible's load and wind pressure on the building's foundation were two big obstacles for allowing dirigibles to dock." 3 4 4 +15373 6 "The obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were numerous, but the main obstacles consisted of the danger that dirigibles posed, nature, and an existing law against letting airships fly too low over the suburban areas. According to the reading, the danger that dirigibles posed was that ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is considered highly flammable"". This danger was emphasized by the German dirigible Hindenburg when it was destroyed by fire in Lakehurst, New Jersey. Nature was also a great obstacle because of the ""winds on top of the building"" that ""were constantly shifting due to violent air currents"". Because of these winds, it was almost impossible to dock a dirigible on the mooring mast without it moving around crazily. The last obstacle, the law, ""would make it illegal for ship to ever tie up to the building or even approach the area. Unless the law was revoked, the mooring mast would never be able to work. However, the obstacle that the builders faced when designing the actual mast itself were that ""the steel frame of the Empire State Building would have to be modified and strengthened"" because ""the stress of the dirigible's load and wind pressure would have to be transmitted all the way to building's foundation"" which turned out to be ""over sixty thousand dollars worth modifications.""" 3 4 4 +15374 6 During the construction of the Empire State Building the builders had to face many @CAPS1 in attempting to allow driggibles to dock there. In the reading selection The Mooring Mast by Marcia Amidon Lsted it discusses many of the @CAPS1 that were faced. For an example an obstacle they had to face was finding a landing area because there was a huge lack of suitable landing area in New York City. The second @CAPS1 they faced was how to make dirigible's global so they had a meeting with the president of a formed airship transport company would use the dirigable's service across the pacific ocean. The architects had meetings with the government about safeways of mooring airships to this mast. The builders went through many @CAPS1 to use the dirigibles but eventually it wasn't enough to Put the Plan into affect. 1 1 1 +15375 6 "One obstacle the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was how to do it safetly. According to the reading, it says that ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" Another obstacle was nature itself. This sentence, ""the winds on top of the building were constantly shifting due to violent air currents,"" located at the beginning of paragraph @NUM1, proves that docking dirigibles at the mooring mast on top of the Empire State Building was unsafe. Last but not @CAPS1, another reason why dirigibles could not dock was because it was illegal. There was ""an existing law against airships flying to low over urban areas."" Because of that law, it would make it illegal for dirigibles to even approach the area. Therefor it would be impossible for a ship to land there." 4 3 4 +15376 6 "The builders of the Empire States Building faced many obstacles in attempting to allow dirigibles to dock there. For instance, in paragraph @NUM1, the author mentions that they had to consider the Hindenburg incident that took place on May 6, 1937, ""The owners of the Empire State building realized how much worse the accident could have been if it had taken place above a densely populated area such as downtown New York,"" says the author. They realized that the safety of the people has to come first in all scenarios. Also, another obstacle that Al Smith and the builders faced was docking the dirigible when people are down below. In paragraph @NUM2, The author says: ""The greatest obstacle to the successful use of the mooring mast was nature itself."" @CAPS1 dirigibles are often docked in open fields, weights to hold down the back of the ship could be used safely. But above a highly populated area was out of the question because lead weights dangling high above pedestrians is a safety violation. The builders had many obstacles in designing the use of the mooring mast." 4 3 4 +15377 6 "There were many obstacles the builders of the Empire state building faced in attempting to allow dirigibles to dock there. The thousand foot dirigible on top the Empire state building could add stress to the building's frame. The stress from the Dirigible was way too much to carry, and the frame of the building would have to have been modified and strengthened to be able to hold the dirigible. There were many risks taken by landing a dirigible atop the empire state building." 2 2 2 +15378 6 "The builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. One of the problems was that a thousand-foot dirigible held by a single cable tether would add stress to the frame. The obstacle they went through was to make the frame stronger. In paragraph @NUM1 it states the obstacle they went through to make the building stronger. ""the architects designed a shiny glass and chrome-nickel stainless steel tower."" and ""The rocket-shaped mast would have four wings at its corners.""Other obstacles they went through was making sure the mooring mast was tall enough, and in paragraph @NUM2 Smith says, ""people in Washington are figuring on some safe way of mooring airships to this mast.""" 2 2 2 +15379 6 "The builders from this excerpt faced quite a few challenges in trying to let dirigibles dock there. First off, the whole structure of the Empire State Building would need to be altered. Having a mooring mast atop the building with a dirigible attached would put great amounts of stress on the building's frame. The stainless steel in the structure's frame would need to be modified to be made stronger, however this is very costly. The excerpt says, ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame"" (paragraph @NUM1). Another challenge the builders faced was trying to deal with existing laws that had already been in place. The government did not want aircrafts flying too low over buildings. The excerpt says, ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against aircrafts flying too low over urban areas."" (paragraph @NUM2). The excerpt also says that this law would make it illegal for an aircraft to ever tie up to a building or even approach it." 3 3 3 +15380 6 "There were three main obstacles in building a dock for dirigibles on top of the Empire State Building. The first problem was safety. Most dirigibles from outside of the U.S. were flammable because they ""used hydrogen rather than helium, and hydrogen is highly flammable."" When the Hindenburg was destroyed, they realized that it would have been much worse over a highly populated city. Another problem was nature. Winds were ""constantly shifting due to violent air currents,"" and the back of the dirigible would ""swivel around and around the mooring mast."" The third problem was that there was a law in place. As Lsted says, ""[there] was an existing law against airships flying too low over urban areas.""the building would have to be much taller in order for the ships to even approach it." 3 3 3 +15381 6 "Building a big piece of work is not easy. You have to fix the negatives and do everything correctly. You never know at times you have to tear things down for hard work to be completed right. When looking at you did right things to prevent bad things from occurring.You may face a whole bunch of things when building. The Empire faced attemps one allowed to dock when building the dirigibles to the dock was not performed or built right. Even though said, swinging to climb on as build pressure by.Although, Building things is hard. You get the beauty and hardship out of it. It helps you reminded of your wells done correctly." 0 0 0 +15382 6 "The builders of the empire state building faced many problems in attempting the dirigibles to dock there. Some of the most apparant reasons were because of what the dirigibles were made out of, weather conditions, and existing laws about airships flying over urban areas. Dirigibles were not made out of the safest materials, most were made with hydrogen, which is extremely flamible. This would make the docking Station unsafe if the dirigible ever caught on fire. If the dirigible were to ever get caught on fire, the accident would be very severe, since the Station would be over a densely populated area. In paragraph @NUM1, it says ""the greatest obstacle to the successful use of the mooring mast was nature itself."" Due to the violent air currents atop the empire state building, the ship would swivel around the mooring mast, making it unsafe to dock there. If something happened to the dirigible, it would be unsafe for the many pedestrians below it. The last reason for the docking station not being built is in paragraph @NUM2 because of ""an existing law against airships flying too low over urban areas."" It would be illegal for a dirigible to tie up to the docking station because of this law. This law is because of the high winds, fearing that they would blow the dirigible onto other buildings. The docking station was unable to be built because of safty reasons and existing laws." 4 3 4 +15383 6 "The builders of the Empire State building faced a @CAPS1 of @CAPS2 as they attempted to allow dirigibles to dock there. The largest problems the builders encountered were due to safety and actually mooring the dirigible itself. The hydrogen used within the dirigible was unsafe, as hydrogen is very flammable. If the hydrogen caught on fire, especially over a place as densely populated as New York City, many people would be harmed. Additionally, the builders were faced with the task of mooring the dirigible. Dirigibles were normally anchored with heavy lead weights. However, if one used those weights to anchor the dirigible above city streets, pedestrians below could potentially be injured. Actually allowing the dirigible to dock brought up another problem for the builders to address: if the dirigible was tethered to the mast on top of the Empire State Building, the dirigible would swings around and around the mast to wind. Ultimately, the builders were unable to address these issues and the Empire @CAPS3 Building is now used mainly as an observation deck and building." 3 2 3 +15384 6 "Docking a dirigible on top of the Empire State Building is a feat that will most likely never be accomplished. The main overall concern with allowing this is safety. In @CAPS1 @NUM1 the author discusses the infamous destruction of the Hindenburg, and the architects realized the accident would have been even more catastrophic, had it taken place over a city like New York. Nature also played a role in this struggle over making this mast work. ""The winds on top of the building were constantly shifting due to violent air currents"" (@CAPS1 @NUM2). The author then discusses how the dirigible would swing around the mast. And trying to weigh it down ""was neither practical nor safe"" (@CAPS1 @NUM2). The final and most obvious reason this mast could not work, was that a law was passed; a law that prohibited dirigibles from flying too low to an urban area. This meant that a dirigible could not legally approach the mast. These architects had very little working for them and almost everything working against them." 3 3 3 +15385 6 "In the excerpt, The Mooring @CAPS1 by Marcia Amidon Lsted, the builders of the Empire State Building had a hard task on their hands. They were building the tallest building in the world and when Al Smith, the head in the construction of the building, said to make it taller things got even more difficult. Mainly because they wanted this newfound height to be used as a dock for dirigibles. What they didn't know is that it is a little more difficult than just tying up a blimp to a building. They had many obstacles at hand. The architects would have to modify the building because a thousand-foot dirigible moored on the building would add stress to the building. Dirigibles used hydrogen which is extremely flamable, if it were to catch on fire in downtown New York it would be desasterous. Nature poses a threat as well, the winds on top of the building would cause the dirigible to swivle around. The final obstacle is there is a law that prohibits airships to fly to low in urban areas. In the end the plan failed." 3 3 3 +15386 6 They @CAPS1 A alot problem with people @CAPS2 about Airship on @CAPS3 @CAPS4 with the @ORGANIZATION1 1 1 1 +15387 6 "Al Smith and the engineers faced many obsticles attempting to allow dirigibles to dock on the Empire State Building. One obsticle that they faced was that most of the dirigibles used hydrogen, hydrogen is a very flammable chemical, this could have led to the Empire State Building burning down and killing millions. Another obsticle they faced was mother nature, In a height like 1,250 ft, theire are incredible winds blowing, and someone even unexpected, they can blow the dirigible into the building, causing it to be fatal. Findly, the law prohibites the dirigible to be ""flying too low over urban areas."" therefore doing this would be illegal. the building faced many obstacle, it got through most of them, but in the end it would be extremly unsafe to go on with mast." 3 3 3 +15388 6 "In the excerpt, The Mooring Mast, by the author @ORGANIZATION1, the obstacles that the builders of the Empire State building @CAPS1 in attempting to allow dirigibles to dock there was the architects could not simply drop a mooring mast on top of the Empire State buildings flat roof. They were going to attach a single cable tether, but it would add stress to the buildings frame. They had to make the frame of the building stronger, which the desinged a shiny glass and chrome-nickel stainless stell tower that would illuminated from inside. When they tried it the wind was to strong, constantly shifting due to violent air currents. The back of the ship would swivel around the mooring mast. They also couldnt due it because there was a law that airships flying to low over urban areas." 3 3 3 +15389 6 "There were several obstacles that the builders of the Empire State Building faced in allowing dirigibles to dock there One problem is that if they were to tie a single cable tether to the building & the blimp then it would add stress to the buildings frame. The stress of the blimps load, and wind pressure had to have been sent all the way to the base of the building which was @DATE1 ft. below. Another problem that aroused later was that other blimps outside the United States were made w/hydrogen rather than helium, hydrogen is highly flamable. Now since the German blimp, the Hindenburg, blew up by fire over @CAPS1, New Jersey, architectes are now worried that it will be a bad idea to do this b/c if it happened over @LOCATION3 city then many more lives would be in danger. Also yet another obstacle came up due to nature itself. The winds @ the top of the building were constantly changing due to violent wind currents. Even if the blimp was tethered to the mooring mast, the rear end of the blimp would be all over the place. Thats why now, blimps dock on the ground and are held down by weights on @NUM1 sides. One other reason that this is a problem is that docking a blimp @ the Empire State Building would be illegal due to the case that it is flying to low to the ground. This law also makes it illegal for the blimp to dock on to the building." 4 4 4 +15390 6 There were many obstacles the builders had to take. One obstacle was the steel frame of the Empire State building would have to be modified because the dirigible's load and wind pressure would have been transmitted all the way to the buildings foundation. they had to pay ove sixty thousand dollars worth of modificautions in to the buildings framework. 1 2 2 +15391 6 "Based on the excerpt, the builders of the Empire State Building had to overcome many obstacles in order for dirigibles to dock there. The builders had to figure out a way for the dirigibles to attach to the Empire State Building, in order for ""refueling or service, and to let passengers on and off"" ( 6). The builders also had to figure out a way to securly attach the mooring mast to the top of the building. According to the text, with a dirigible attached by only a single wire to the building, more stress would be added to the building's frame so they could not simply drop the mooring mast on top of the building Also because of this, the builders had to edit the foundation, so it would not collapes if a durigible was attached. Finally the builders needed to overcome the simple nature they did not the winds on top of the building were shifting constantly and they are in a densely populated city so if things went wrong, many people could be harmed" 2 2 2 +15392 6 "On the excerpt ""The Mooring Mast"" written by @ORGANIZATION2, the obstacles that the builders of the Empire State Building faced was very difficult, in my understanding it wasn't successful.Architects and engineers of the Empire State Building consulted with experts of the @PERSON1 air station, the navy leader offered it's dirigible to be used in testing the mast. And in figuring out if it's okay for the mast to be used architects couldn't simply drop a mooring mast because it would cause stress to the building's frame. Also the mooring mast of the Empire State Building was destined to never fulfill its purpose. It wasn't safe enough and because those dirigible that come from outside the @LOCATION2 don't always use helium they use hydrogen which is highly flammable which is a bad idea to have in the @CAPS1 of downtown New York." 3 3 3 +15393 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted, The builders had to face many obstacles in an attempt to allow dirigibles to dock at the top of the Empire State Building. Though this idea was not successful, it took them a long time to realize the causes and effects of docking dirigibles. over sixty thousand dallors were spent on modifications for the building. after fixing the structure of the building the builders found out the weather had interfered. Because of the high winds the dirigibles were constantly shift. There wasn't a safe way to control shifting. Their was also a law against airships flying too low over populated cities. another reason was, dirigibles were very dangerous and highly flammable. Trying to build a mooring mast was not a good idea." 3 3 3 +15394 6 "The architects of late 1920s and 1930s New York had plans to revolutionize @CAPS1, and put New York at the forefront of modern travel. However there wild ideas fell short to reality. In an attempt to outstrip the Chrysler Building, architect Al Smith added an unsecure mast to the top of the Empire State Building. The place where blimps, or dirigibles, could let on and off passengers and refule, had more hype than study. The biggest obstacle the builders faced was safety. Since most blimps outside the United States used hydrogen rather than helium, they were very flammable. If the German blimp ""Hindenburg"" had blown up above a more densely populated area than New Jersey, such as New York, the results would have been far more devastating. As paragraph @NUM1 states, if the mast were a success, the weather would prove to be fatal. Even if the ship were tethered to the mast, it would still swivel around. The U.S. Navy tried to tie up next to the mast-before a law was passed not allowing aircraft the fly so low-but the wind may their efforts futile. The architects of the 1920s and 1930s were thinking big, but some obstacles were too big to leap." 3 3 3 +15395 6 "When the idea of creating a moring post for dirigibles on top of the empire state building there were several problems engeneers failed to reconize. The first was the problem of using highly flamable hydrogen to fill the dirigibles. The Hindenburg accident showed how horible it is one one of these explodes. The situation would have been much worse had it been over @NUM1 stories in the air. Secondly violent wind gusts would have made it imposible to dock the dirigible atop the building, especially when the use of custimary lead weights would be both unsafe and not pratical. Lastly there was a law imposed before this project was ever a thought making it unlawful to fly any airship that low to an urban area." 3 3 3 +15396 6 "Based on the excerpt, ""The Mooring Mast"", it is clear the architects were blind to the problems of the mast. Al Smith was becoming competitive to build the tallest building, and that was blinding him to potential risks. The people wanted to progress transportation of their time had not fully analized the future complications. In designing the mast, paragraph nine quotes, ""a thousand foot dirigible moored at the top of a building... would add stress to the building's frame"". Even in early progression of the mast, it was clear this may not work. Two months later the building was reframed and the mast was added. May 6, 1937, owers of the building realized that if an accident like the destruction of 'Hindenburg' occurred atop the building, it would be devastation to happen above the densly populated Downtown New York (paragraph @NUM1). Another obstacle, as said in paragraph @NUM2, is nature itself. Winds at such high elevations were often unpredictable and would be extremely dangerous to have a tethered dirigible to swivel around and around the mast. Therefore the mooring mast atop the Empire State Building never fufilled it's destiny, but is now a site tourists flock to. By the end of the 1930's, the idea of dirigibles as future transportation was replaced by airplanes." 3 3 3 +15397 6 "The builders - designers of the empire state building faced many obsticles in allowing dirigibles to dock at the top. The first, and most apparent one was the frame of the building. The article says, ""the architects could not simply drop a mooring mast on the top of the @ORGANIZATION1 flat roof"" (@NUM1). The thousand foot tower would add extra strain on the building's frame. Next was the question of safety. Most international dirigibles were filled with hydrogen, a very dangerous gas, and if set on fire will make a huge explosion, as an example with the German dirigible the Hindenburg. If that same accident took place over New York City, many pedestrians would be hurt or killed. Also, the wind played a huge obsticle. The winds ""were constantly shifting due to violent air currents"" (@NUM2) and therefore the back of the ship would ""swivel around and around the mooring mast"" which would be extremly unsafe. Lastly, and most simply, the law didn't allow for an airship to fly that low over urban areas. All of these obsticles put together caused the idea of using the building as a docking tower to fail." 4 3 4 +15398 6 "There would have been many obstacles the builders of the @ORGANIZATION1 would have had to face if the decided to allow dirigibles (blimps) to dock there. ""Most dirigibles from out side the United States used hydrogen rather than helium, and hydrogen is highly flammable."" On @DATE1, the German dirigible Hindenburg was destroyed by fire in @LOCATION3, New Jersey. the owners realized how much worse it would have been is a place such as New York City.Another big obstacle would have been nature itself. ""The winds on top of the @ORGANIZATION1 were constantly shifting due to violent air currents."" If the dirigible was tied to the mooring mast the back of the ship would move around, making it hard for pedestrians to get on and off. If they had weighed it down with a lead wieght then there would be a heavy piece of lead hanging over the pedestrians of New York City.The final obstacle that biulders of the empire state @ORGANIZATION1 would have had to face ""was an existing law against airships flying too low over urban areas"". This law would not allow the dirigibles to dock on top of the @ORGANIZATION1. They would not even be allowed to approach the @ORGANIZATION1." 4 4 4 +15399 6 "The Empire State building is one of the tallest buildings ever built. It way because of this, that it was impossible for a blimp to dock on the mooring mast. The article by @ORGANIZATION1 titled ""The Mooring Mast"" describes well the problem blimps may have encountered. ""The greatest obstacle to the successful use of the mooring mast was nature itself. The wins on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" It's true, should a blimp try to moor there it would do nothing but twirl around the mooring mast. It could also crash into other buildings. It could tear up the mooring mast. There was so much the builders didn't look into." 2 2 2 +15400 6 "The builders of the Empire State Building faced a few obstacles when trying to allow dirigibles to dock on top of the very huge building. The first obstacle realized was the safety issues. Most dirigibles used hydrogen rather than helium, which is extremely flammable. Another tough obstacle that would be hard to avoid, was nature in general, like the author mentioned. The winds currents at the top of the building were sporadic, and that could be a huge problem the dirigibles trying to dock. However, the biggest obstacle that builders never realized, was that it was even illegal. The height of the empire State Building was too low for an aircraft of any sort dock on. It could be a danger to the urban areas underneath. Those were the main obstacles which caused the mooring mast, to fail." 3 3 3 +15401 6 "The builders didn't have a suitable landing area for the Dirigible, and if the Dirigible were to land on the Empire State Building's flat roof would add stress to the building. Money was one of the big issues the builders faced. In paragraph @NUM1 its saying that the greatest obstact was nature, The heavy winds on top of the building were shifting due to the violent air current. for the Dirigible itself would be swivel around the mooring mast, and for the safety of the people as well. Another obsticle was the law, that flying too low over urban areas were not allowed." 3 2 3 +15402 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were to build a structure with a stable enough top to be able to hold a dirigible. Once the Chrysler Building became taller than the Empire State Building, however, the idea of dirigibles slowly faded away, unnoticed. For example, in paragraph @NUM1, Al Smith said he would put a top or hat on the building to make it taller. The only problem is that instead of dirigibles docking there, they would just sit next to the point of the building. If Smith wasnt so competitive, the blimps would have a nice platform to dock on." 0 1 1 +15403 6 "In constructing and building the empire State building to make it allowable for dirigables to dock there took alot of thinking on the builders' part. First they had to see what the building could handle and try to calculate what it held so it wouldn't fall. Then they had to figure out the safety of the passengers and pedestrians, a way to get in and out as safe and easy as possible. Despite all the work the builders' put into crafting Al Smith's idea, the chances just weren't realistic at all to the public and the plan had to be shut down. Although it makes a good story and is a crutial learning block for constructers to be." 1 1 1 +15404 6 "Based on the excerpt, ""The Mooring Mast,"" by Marcia Amidon @CAPS1 the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One of the first problems they faced was not being able to land. ""The one obstacle to their expanded use in New York was the lack of suitable landing area."" (@CAPS1 6). This was a major problem because they had nowhere to land this object; this cannot modernize their traveling.Another problem that the builders faced was safety. ""Most dirigibles from outside of the united states used hydrogen rather than helium, and hydrogen is highly flammable."" (@CAPS1 @NUM1) This caused a problem because how were dirigibles from other countries visit us if they caused a threat to the safety of the people. They were not going to take that risk.A third problem was nature and the weather. ""The winds on top of the building were constantly shifting due to violent air currents."" (@CAPS1 @NUM2) The blimps had a very unsteady landing The winds would thrash them around. This was very unsafe @CAPS5 thats why it became an obsticale for the builders." 3 3 3 +15405 6 "The obstacles that builders faced at the empire State Building in attempting to allow dirigibles dock there are. The possible dangers of having something fall on them. The hydrogen is highley flamable so the dirigible could blow up and ingor any one aroud it. The empire state building may not be strong enough to withstand the the moving of the @CAPS1 the back side moveing so much from the dangorouse winds, so the @CAPS1 could possibly pull off part of the building and could @CAPS2 nearby pedastrians." 2 1 2 +15406 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock. Is that when the Empire State Building was conceived, it was Planned as the world's. Then the new Chrysler Building that was being constructed at forty-second Street. and @CAPS1 Avenue in new york. Before the Empire State began construction, and Al Smith was determined to outstrip. this dirigibles or zeppelin and the @ORGANIZATION2 was going to have a mooring mast at its top for docking." 0 1 1 +15407 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock. One of those obstacles was that there was a lack of suitable landing area in New York City. Another obstacle was that the architects couldn't drop a mooring mast on top of the Empire State Building's flat roof. A dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame. However, the greatest obstacle was nature. Wind on top of the building shift constantly caused by violent air currents. The back of the ship with swivel around the mooring mast while it was tethered." 2 2 2 +15408 6 "Throughout the construction of the Empire State Building the builders faced many obstacles in attempting to allow dirigibles to dock at the building: one obstacle the builders encountered was the fact that when a dirigible was attached to the building by a single cable, it would add to much stress to the buildings framework because of a combination of the dirigibles load and the wind pressure atop the massive @DATE1 foot structure. To solve this, the build had to do over sixty thousand dollars worth of modifications to the frame of the building. Another obstacle encountered was the safety of docking the dirigible. One problem is that many dirigibles out of the United States used hydrogen, a highly flammable gas, instead of helium. This made the owners realize how much worse an accident, but what happened to the Hindenburg, could be over such a densely populated area. Another safety problem was the high wind speeds. even when a dirigible would be docked to the mooring mast, the back of the ship would violently swing around because of the strong winds at @DATE1 feet. Also, usually dirigibles would be able to be weighted down in a field with lead weights to prevent movement, but ""using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe."" @CAPS1 with these two reasons, there was already a law against airships height in urban areas and by talking a dirigible at the building would break it. As seen by this paragraph there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there." 3 4 4 +15409 6 "In the excerpt ""The Mooring Mast"", by @PERSON1, the builders of the @ORGANIZATION1 obstacles in attempting to allow dirigibles, or blimps, to dock there. First of all, they needed a suitable landing area, which was a Mooring Mast. But before building the mast, ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" Workers framed to the building all the way up to the 85th floor, But before the framing for the mast could take place, the roof had to be completed. Before advancing to the next stage of the project, the architects suddenly realized how dangerous and disasterous the result of it all could be. The ""Hindenburg"" set a good example on why they couldn't do it. The area around the building was too densely populated. The dirigible had a strong chance of resulting in a disaster over New York City, considering the violent air currents. The project was simply too risky, but was a great idea involving future transportation." 3 3 3 +15410 6 "Based on the excerpt, the builders of the Empire State Building faced many obstacles to allow dirigibles to dock there. The main problem was safety. When the front was masted to the building the back would move around. Another big problem was that the dirigibles were filled with hydrogen, which is highly flammable. Also, it was illegal for airships to fly that low over urban areas. Another obstacle was that the dirigible could not get close enough to the building because of wind." 3 2 3 +15411 6 "In attempting to allow dirigibles to dock at the Empire State Building, the builders encountered major obstacles. The first puzzle posed to the builders concerned the structure. They realized that, ""the stress of the dirigible's load and wind pressure would have to be transmitted... to the building's foundation."" This reality caused builders to spend over @MONEY1 modifying the building. Although the builders were able to rectify the framework of the building, the later obstacles were unable to be conquered. After the Hindenburg accident in 1937 ""the owners of the Empire @CAPS1 Building realized how much worse that accident could have been"" if the dirigible had exploded over New York City. The safety of the city became a concern. Until the blimps were less flammable, it wasn't plausible to take the risk of housing them in densely populated areas. The final obstacle of the success of the mooring mast was ""nature itself."" The violent winds that whipped around the 101st and 102nd floors would spin the dirigibles around the mooring mast. This was ""neither practical or safe."" Overall, the obstacles the builders faced proved to be fatal to the success of the mooring mast." 3 4 4 +15412 6 The architects could not simply drop a mooring mast on top of the Empire State Building's roof because it would add stressing to the building's frames. So they had to modify the building's frames to strengthen them. Also most dirigibles rather use hydrogen which is highly flammable and destroy a population of New York. The greatest obstacle was nature itself. The winds constantly shifted and the back of the dirigible would swivel around and around the mooring mast making it unsafe for the pedestrians below. Finally another reason why dirigibles could not moor at the building was because there was a law against airships flying too low over urban areas. 3 3 3 +15413 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted the @CAPS1 face huge obstacles when attempting to allow dirigibles to dock at the Empire State building. First ""The greatest obstacle to the successful use of the mooring mast was nature itself"" The Reason for that is because the ""winds atop the building were allways changing due to the violet air currents"" ""Even if the dirigible were tethered it would swivil around"" ""Also it would be dangling high above pedestrians on the street it was not practical nor safe"" It would be really dangerase if they proceed in docking atop of the building. Those are the obstacles the buidiers faced." 2 3 3 +15414 6 "In the excerpt the builders of the Empire State building faced many obstacles to allow dirigibles to dock there. One obstacles was that the building with a mooring mast on the top of it attached by one cable to a dirigible ""would add stress to the buildings frame."" Another obstacle was to fix the buildings structure so it could with stand the mast." 2 1 2 +15415 6 "In the excerpt ""The Mooring Mast"" by @ORGANIZATION2, the author described the obstacles the builders of the empire state Building faced in attempting to allow dirigibles to dock there. An architect named Al Smith was a four-term governor of New York who headed efforts to construct the Empire State Building after his years in office. He imagined the top of the Building to be a ""higher Calling"". He pictured it to be equipped for an age of transportation that was then the only dream of avation pioneers. It seemed possible in his eyes, till the obstacles turned up. The first obstacle that struck, was the lack of suitable area in New York City. They would have to clear about four blocks in the bussy city! The architects and engineers of the Empire State Building consulted with experts, but it didn't plan out too well. Over sixty thousand dollars worth of modifications had to be made to the buildings framework. The building would now be 102 floors, with a glassed-in observation area on the 101st floor. In the end, The greatest Obstacle was just nature itself." 2 1 2 +15416 6 "A @CAPS1-@CAPS2 @CAPS3 idea of docking a dirigible to the top of the empire state building didn't seem so @CAPS1-@CAPS2 in 1929. Upon carrying out the idea to place a mooring mast atop the thousand foot building, problems quickly presented themselves The first problem architecs ran into was the construction of the building itself. The empire state building was never built to be able to hold a thousand-foot dirigible. The added weight would stress the frame of the building. As a solution to this issue, Al Smith, the four term governor of New York, put a ""quick fix"" in place. Smith invested sixty thousand dollars into strengthening the buildings support. Even with the strengthened frame, safety was still a main conflict that put the idea to rest. Along with the structural danger, hydrogen was a main source of weight reduction for dirigibles. Unlike helium, hydrogen is highly flammable was the Idea worth putting thousands of lives at stake through the dirigible blowing up? The people of New York did not wish to relive the Hindenburg fiasco right over their heads. The last major conflict in Smith's idea was nature itself. Air currents are a uncontrolable force of nature, especially when a thousand feet off the ground. Even if tethered, a dirigible would swivel @CAPS1 too much to be considered safe. The idea presented itself to be inconceivable. A mast was put atop the Empire State building, and the 102nd floor does, in fact, exist. Both of these building's features are out of use, proving to be unsafe to the public." 4 4 4 +15417 6 "During the attempt to allow dirigibles to dock on top of the Empire State Building, the builders faced many obstacles. Often times something is predicted to work out a whole lot easier than it actually does, which is exactly what happened in this situation. As stated in the excerpt ""the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below. The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" For the builders, this was quite a project and took an extreme amount of time and effort. Also, the builders eventually realized that there were huge safety issues with this new design. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. This was a huge obstacle that stood in the way of their plan. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" Shifting winds due to violent air currents were also a huge issue. All of these things contributed to the mooring mast not ever becoming successful." 3 3 3 +15418 6 "There were many obstacles which the builders of the Empire State Building faced in attempting to construct a mast for docking dirigibles. One of the main reasons that the mast was never built was due to safety. Most of the foreign dirigibles ran on hydrogen and the builders did not want to risk another Hindenburg accident in the highly populated New York City. Nature also restricted the building of a dock. The winds on top of the Empire State Building were constantly changing because of violent air currents, another threat that the builders did not want to risk. Finally, there was a law that prohibited airships from flying too low over urban areas. There were many reasons why the mast was never constructed including safety issues, nature, and an existing law that prohibited low air travel over the city. In the end however, the building of a dirigible mast was neither practical nor safe, and the project was eventually dropped." 3 2 3 +15419 6 "Mooring dirigibles would not be good at all if they were being moored on top of the Empire State Building. One of the reasons that mooring a dirigible on the top of the building is most dirigibles that would come to this dock from outside the U.S. used hydrogen instead of helium. The hydrogen is extremely flammable and after the Hindenburg exploded, it would be to unsafe to have a hydrogen filled dirigibles in a highly populated area such as New York City.Another obstacle that was being faced was a climate problem. This was the biggest problem. ""The winds on top of the building were constantly shifting due to violent air currents,"" (paragraph @NUM1). If the winds were this rapid the back of the dirigible would be swinging around freely. This could potentially cause danger if the back was to hit a building near by or start swinging out of control and break loose from the building.The last problem that was faced based on the story is that docking a dirigibles would be against the law. The exsisting law stated that an airship couldn't fly to low over urban areas. If the dirigible was able to dock at the Empire State Building, it would be too low over an urban area. This made it impossible for the Empire State Building to have a dock for dirigibles." 3 3 4 +15420 6 "The obstacles of the builders of the Empire State Building faced were hard because they couldn't just drop a mooring mast on top of the Empire State Building do to the frame work Also the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation. Which was nearly eleven hundred feet below. The steel frame of the Empire State Building would also have to be modified and strengthened to accommodate this new situation. And over sixty thousand dollars' worth of modifications have to be made to the building's framework The architects designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from sides, with a steps-back design that imitated over all shape of the building itself capital rocket-shape mast would have four wings at its corners, of shiny-aluminum, and would rise to a conical roof that would house the mooring arm." 1 2 2 +15421 6 "In the excerpt, the builders of the Empire state building faced many obstacles while attempting to allow dirigibles to dock there. According to the excerpt, the author says ""The greatest reason was one of safety"". The dirigible used hydrogen that was highly flameable and they could not risk it in such a densely populated area. Another obstacle was the wind and nature itself. In the excerpt it said ""The winds on the top of the building were constantly shifting do to violent air currents"" This created another safety problem. The wind would sway the dirigible back and forth, and if they used weights to weigh the back down, it would be dangerous hanging above pedestrians. The author explained how ""The mooring mast of the Empire State Building was destined to never fulfill its purpose."" This being because it was just not practical nor safe." 3 3 3 +15422 6 "The problems the builders had in attempting to build the Empire State Building were first of all, the dirigible would have to be tied to the mast and the single cable tether would ""stress the buildings frame."" In paragraph @NUM1, the author says that the wind pressure and the weight of the dirigible could not be supported by the current foundation and so the frame would have to be made stronger and changed. The final problem was when ""Columbia"" delivered newspaper to the Empire State building. The mooring equipment was not installed because of previous problems with the design, laws and common sense used when making this building. The rest of the problems had to do with the obliviousness of reality due to the actual effectivness of the building." 2 2 2 +15423 6 "In The Mooring Mast by Marcia Amidon Lsted there are many obstacles faced for the builders of the Empire State Building. One of the obstacles builders came across was safety because they were trying to build a mooring mast on the very top of the building for blimps to stop and refuel and such. If builders proceeded with that, it would have been a safety concern. Marcia Lsted writes ""most dirigibles from outside the U.S.A used hydrogen rather than helium, and hydrogen is highly flammable."" That could be a huge problem if it was to explode in New York, many lives would be endangered. Another obstacle builders faced was strength, because since the mooring mast was going to be used for blimps, ""a single cable tether, would add stress to the building's frame"". That stress of the blimps load would add stress to the building's frame so steel frame of the Empire State Building had to be modified and strengthened." 2 3 3 +15424 6 "The @CAPS1 who made the Mooring mast faced many obstacals when trying to get dirigibles to dock. Some were safty, nature its self, and pre existing laws. ""Most dirigibles from outside the United states used hydrogen rather than helium, and hydrogen is highly flammable."" The greatest obstacal was nature. Winds at the top were always changing and could make the dirigibles crash to the mast. An existing law prevented airships to fly too low in urban cities. For all the work the @CAPS1 put into the mast it could never live up to its potential." 1 2 2 +15425 6 "The Empire State building was not a good place to attach a blimp to. One reason why it never worked out was because of safety issues. In every country except the @PERSON1, dirigibles used hydrogen instead of helium. Hydrogen is very flammable and shouldn't be flown over a densely populated area. Another obstacle the architects would have to face is the wind speeds at that height. The constantly changing winds would make the blimp need to be tied down on the front and back. Next they would need to make sure the mooring mast was high enough to surpass the law against low-flying over urban areas. The biggest issue was how they never finished their plans. Even after @NUM1 dollars worth of modifications the building was not finished." 2 3 3 +15426 6 "The @CAPS1 that the builders of the Empire State Building faced in attempting to all dirigible to dock there is that they @CAPS2 can't through on a top part to the building, they have to put it on piece by piece, or the building will become stressed to the point where it might collapse." 1 1 1 +15427 6 "The builder's of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock on the mast. For example, when the builder's decided to construct the mast they knew that it could not just be placed on the roof. It had to be somehow attatched to the foundation of the building because the dirigible, ""would add stress to the building's frame."" Also, after the Hindenburg disaster the builders realized that the hydrogen inside the dirigible ""is highly flammable."" If a dirigible were to explode over New York City it would not only kill the people in the dirigible, but on the ground as well. Finally, the biggest obstacle of the mooring mast ""was nature itself."" The wind at the top of the building are very strong and would have swiveled around the mast. The many obstacles faced by the builders of the Empire State Building never allowed any dirigibles to land there." 3 3 3 +15428 6 "When building a great task, many obstacles need to be faced. For the builders of the Empire State Building it was ones concerning the docking of dirigibles, or blimps. One was safety. The builders had to make sure it was safe to dock on and off the blimp, and it was safe to fly. ""Most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly flammable."" People wouldn't be safe on a blimp that could expload at any moment. Another obsticle the builders had to face was building the mooring mast itself for docking. ""The winds on top of the building were constantly shifting due to violent air currents."" The blimp wouldn't be able to hold correctaly to the mast and it would move around too much. It wasn't safe or practical for anyone. These are some obsticales many builders have to face, but the ones of the Empire State Building overcame them well." 3 3 3 +15429 6 "The builders of the Empire State Building planned to mount a mooring mast to the top of the Empire State Building, but they overlooked the potential problems in there design. A very big problem they faced was safety. After the Hindenburg, a German dirigible, blew up in flames in New Jersey, they realized it could have been a bigger problem if it blew up in New York. Nature also posed a problem. Air currents could violently sway the dirigible, on top of the building. And finally, they could not attempt this because it illegal. Ships were not allowed to fly too low over urban areas due to an existing law. These all made it much harder to put a mast on the Empire State Building." 3 2 3 +15430 6 "The builders of the Empire State Building were challenged the obstacles of construction, safety, and nature that did not allow dirigibles to dock there. These dirigibles or blimps were large balloons that were capable of carrying passengers but needed a great landing area. In order for dirigibles to be used as transportation, architects needed to design a suitable mooring mast. However, the weight and pressure of a blimp on a mast would cause a large amount of stress to the building's frame. The builders of the Empire State building were faced with producing ""over sixty thousand dollars' worth of modifications"" to the building's framework. Not only was attempting blimps to dock there a lot of work and very costly, builders were challenge with safety issues. As experienced to the German blimp ""Hindenburg,"" dirigibles that use hydrogen are ""highly flammable."" If any incident occurred over the Empire State building in New York, involving a dirigible, it would affect the enormous population in the area by killing so many lives. Flying too low over the city was another challenge to safety that a law would make illegal and unsuccessful for blimps to be used. Lastly, nature was an obstacle the builders faced in docking dirigibles. At mast times, the ""forceful winds"" would cause the back of the ship swivel which could lead to it hitting the sharp spires and be punctured. Lead weights were also not safe when dangling over pedestrians. These obstacles made it difficult to create gear that would allow dirigibles to dock on the building." 4 4 4 +15431 6 "Based on the excerpt, The Mooring Mast by @ORGANIZATION1, there were many challenges the builders of the Empire State building faced while they had high hopes in creating the world's tallest building. They added on hundreds of feet allowing dirigibles to dock there. Competing with the Chrysler building, Al Smith announced that the Empire State building would reach 1,250 feet beating the Chrysler Building by @NUM1 feet. Al Smith was desprite to do whatever he could to construct the world's tallest building, even to create a landing spot for dirigibles. @ORGANIZATION2's idea didn't work out as planned. Instead, the @CAPS1 assigned to dirigible passengers was made into the world's highest soda fountain and tea garden." 0 0 0 +15432 6 "The excerpt ""The Mooring Mast"" by @ORGANIZATION2 is a story that takes the reader through the obstacles and attempts builders faced when trying to allow dirigibles to dock at the top of the Empire State Building. Al Smith, four-term governor of New York, planned to construct the Empire State Building after he was in office.Smith was competitive and realized that the building was close to earning the title of world's tallest building. So in 1929 he announced that the building would be 1,250 feet and he would do this by adding a top or hat to the building which would be distinctive. The idea was to add a mooring mass and observation decks to the top and have it be able to dock dirigibles, or blimps. Architects later realized that a thousand-foot dirigible moored at the top of the building held by one cable tether would add stress to the building's frame. The stress of a dirigible's load with the pressure of wind would go all the way to the building's foundation. The plans that have builders working so hard on frame work and observation decks failed. It was not practical to dock a dirigible, it wouldn't be safe. By the late 1930s, the idea was given up on, but the Empire State Building is still open to one of the observation decks and is a very popular attraction in New York." 2 1 2 +15433 6 "During the times of the Empire State Building and it's claim to fame with height, it's @CAPS1 Al Smith, faced more than one obstacle with accomplishing the mooring mast's completion. From the very beginning of it's construction, the mooring mast was not properly thought out and did not have the proper design. Al Smith realized this even before he finalized the process of building. Once he finally did complete the mooring mast, he faced obstacles. The dirigibles had problems with docking, due to the wind and the elements, the dirigibles had a hard time staying stationary once docked. Another obstacle was fuel, due to the recent Hindenburg crash, dirigibles needed to be fueled with helium rather than the more flammable hydrogen. Finally, the laws that were in place about airships not being allowed to fly low over urban areas caused the mooring mast to fail. Eventually airplanes took the dirigibles position and the mooring mast was retired. Due to these obstacles, Al Smith gave up with the mooring mast but still helped the record for the highest building." 3 3 3 +15434 6 One obstacle the builders had to face was the amount of wind that was blowing that high in the air. The dirigibles were so big that the wind had a lot of resistance on them and made them sway from the back.Another obstacle was that the dirigibles were filled with hydrogen which is highly flamable Being filled up with such a flamable gas it could easily turn into a disaster. Especially with all the people who were so close to it on the ground. 2 2 2 +15435 6 "During the construction of the mooring mast a top of the Empire State Building, the builders faced some obstacles. One obstacle that they faced was that they couldn't just ""drop a mooring mast on top of the Empire State Building."" @CAPS1, they had to do some work on the building, so it could support it. As the @CAPS2 said, ""the steel frame of the Empire State Building would have to be modified and strengthened to accommodate the new situation"". Another obstacle the builders faced was that if there was an accident, like the Hindenburg, it would be much more dangerous, because there would be many more people nearby, who could get hurt by the fire. ""The greatest obstacle of the successful use of the mooring mast was nature itself,"" said the @CAPS2. The wind currents above the building shifted due to ""violent air currents."" Also, dirigibles need to have weights attached at the back of them, but at the Empire State Building, these weights would be dangling high above pedestrians... neither practicle nor safe"". The other obstacle was that blimps couldn't get close enough to the mast, due to the wind, like the Los angeles. Due to all of these obstacles, the mooring mast hasn't been used since." 3 4 4 +15436 6 "The empire state building's construction workers attempted to build a dirigible dock on top of the world's tallest building but many problems occured during the process. In order to have a dirigible dock on the top of the building the building would have to withstand its weight. ""The steel frame of the empire state building would have to be modified and strengthened to accommodate this situation. over sixty thousand dollars' worth of modifications had to be made to the buildings framework."" (@CAPS2 @NUM1)"" The 102 story floor building was predicted to be a success and predicted to become the new age of aviation travel. Another obsitcle that the workers faced was realizing that dirigibles outside the @CAPS1 were highly flammable because they contain hydrogen. It would be disastrous if one caught on fire on the top of the building in New York City. ""The greatest obsticale to the successful use of the mooring mast was nature its self."" (@CAPS2 @NUM2)."" There are very strong and violent winds at the top of the building, the blimp could become a hazard if it was blown out of control A blimp hovering over hundreds of pedestrians in the city of New York is a definite hazard. There is also a law forbidding aircraft flying to low over populated areas. Having a mooring dock was a good idea but it was never really practicol or safe, many bad things could of happened if it was actually working." 4 4 4 +15437 6 "The builders had to face many obstacles in attempting to allow dirgibles to dock at the empire state building but there were a couple main ones. The first main obstacle was that a thousand - foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame. So with that they could not put the mooring mast on top of the building yet until they did some major adjustments. With that big problem the builders next obstacle was to design and build a shiny glass and chrome-nickel stainless stell tower that would be illuminated from inside, with a stepped back design that imitated the overall shape of the building itself. The last little obstacle the builders had to face was that the mast also had a skeleton of steel and was clad in stainless steel with glass windows that had to be built and put up. Those were some of the obstacles the builders had to face while trying to put a mooring mast on to of the Empire State building." 2 1 2 +15438 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were the docking itself, nature and the overall construction of these dirigibles. There was all so an existing law against these air ships.Docking the dirigibles to the top off the Empire State Building would add a great amount of stress to the building. The builders would have to spend sixty thousand dollars' worth of modifications to the building overall. The greatest safety issue was the construction of these balloons from outside the United States. They used hydrogen which was highly flammable, there was one incident on May 6, 1937 where the German dirigibles caught on fire. This was known as the Hindenburg's accident. Builders knew this can risk to the densely populated area of New York. But the greatest obstacle was nature itself. When the dirigibles would dock violent air currents would cause the back of the airship to swivel round and round the Mooring Mast. The law against airships were they were not allowed to fly low around urban areas." 3 3 3 +15439 6 When building the Empire State Building the @CAPS1 wanted to keep it the tallest in New York. They modified the buildings that it would not be succeeded by the chrystler building. It's original property was not to be a mooring mast. The empire state building had to be refraimed then the government banned aircraft too low then commercial airliners took over the avaiting industry. It was too dangerious for dirigibles to dock because the strong currents can blow them out of place causing accidents similar to the hindinburg. 1 2 2 +15440 6 "In the excerpt, The Mooring Mast, by Marcia Amidon Lsted, there are many obstacles the builders are faced with, while in the process of building a dirigibles dock on top of the Empire State Building. One obstacle was the hight of the building. That ment more frame work, more material, more safety hazards, all because of the buildings hight. Another obstacle was @ORGANIZATION3 safety. After already building a more secure building, the workers realized that, ""A densely populated area such as downtown New York"", wouldn't be the best place to be if there ever was a accident, ""The greatest obstacle to the successful use of the mooring mast was nature itself"". Nature played a great part in a obstacle because it would always be unpredictable. The winds would also wip the backend of the dirigible so it would be unsafe and unsturdy for passengers. These are some of the obstacles builders had to face while building the famous mooring mast." 2 2 2 +15441 6 While building the Empire state building people had to go through some obstacle to have it the way they want. They wanted Dirigibles to be able land/bord on the Empire state building. One of there obstacles was the use in New York City and a lack of suitable landing area. The other obstacle was a good one. The use of Dirigibles for the mooring mast was successful. 1 1 1 +15442 6 "Based on the article The Mooring Mast, the builders of the Empire State Building faced challenges in attempting to allow dirigibles to dock there, such as the lack of landing area, being practical, and ensuring safety. The lack of landing area was of the the challenges. ""The one obstacle to their expanded use in New York City was the lack of a suitable landing area"". Since no dirigible could land on the Empire State Building without some fish and landing space this was a challenge the builders of the building faced. Another challenge was making the dock practical, ""one set of engineers here in New York is trying to dope out a practical, workable arrangement.."". This shows that a practical arrangement of the talking has yet been made, and therefore it was another challenge the builders faced. Lastly, the builders of the Empire State Building faced safety issues, "".... are figuring on some safe way of mooring airships to this mast""-this informs that the safety of docking dirigibles has not been unsured yet, that it was still a challenge the builders faced area altogether, the builders of the Empire State Building faced challenges such as the lack of landing areas, being practical, and ensuring safety." 2 4 2 +15443 6 "Even though allowing dirigibles to dock at the top of the Empire State Building sounds like a good idea, it wasnt. There are many obstacles that prevent it from happening. With ""a @DATE1 ft dirigible moored at the top of the building held by a single cable tether, would add stress to the buildings frame"" (paragraph @NUM1). Also one of the greatest obstacles as the violent winds that constantly change due to violent air currents. Also, the dirigible would be dangling above pedestrians on the street which isn't safe. The biggest obstacle was the fact that it's illegal for airships of flying low over urban areas which would also make it illegal for the dirigible to tie itself up to the building or even get close to it. This sounds like a great idea and a great way to get more tourists, but there are too many obstacles to make it realistic." 3 3 3 +15444 6 "According to ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced three main obstacles in attempting to allow dirigibles to dock. The first obstacle was concern of public safety. Dirigibles from outside the U.S used hydrogen, which is a highly flammable element. An accident in a densely populated area like New York could be catastrophic. The second obstacle were the violent winds on top of the building. Using lead weights to tie down dirigibles was not practical, because they would be dangling high above pedestrians on the street. A mishap would send those heavy weights flying down and causing destruction. The third obstacle was an existing law against airships flying too low over urban areas. This law made the idea of allowing dirigibles to dock at the Empire State Building illegal and out of question" 3 3 3 +15445 6 "Based on the excerpt the builders faced many obstacles in allowing dirigibles to dock at the Empire State Building. As in paragraph @NUM1 ""the greatest reason was safety."" The most important issue was the blimps used hydrogen which was highly flamibale. An accident would of been tragic because of the heavily populated downtown @CAPS1. Also nature proposed a big obstacle as well ""The winds on the top of the building were constantly shifting due to violent air currents."" @CAPS2 there was an existing law against flying airships to low over urban areas." 2 2 2 +15446 6 "In the excerpt of ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building faced many obstacles when trying to allow dirigibles to dock there. One obstacle that prevented the docking of dirigibles at the Empire State Building was the use of Hydrogen rather than helium in dirigibles from out of the United States. This was a problem because hydrogen is very flammable. When the german dirigible was destroyed in New Jersey the architects of the Empire State Building realized how dangerous it was. Another obstacle faced by the builders was the weather. The weather affected the use of the mooring mast because ""The winds on the top of the building were constantly shifting due to violent air currents."" A practical reason why the mooring mast could not dock dirigibles At the Empire State Building was because of the law against airships. The law said that airships could not fly too low over urban areas making it illegal for a ship to ever tie up to a building. These are a Few of the many obstacles faced by the builders of the Empire State Building which prevented the use of the mooring mast." 4 4 4 +15447 6 "In theory, the idea of creating a mooring mast on the top of the Empire State building was a great idea. However in reality, it didn't turn out so well. There are many reasons why a dirgible could not be docked to the Empire State Building. For example: ""Most dirgibles from outside of the United States used hydrogen instead of Helium"" (paragraph @NUM1) This was dangerous because hydrogen is extremely flammable, and if for some reason an accident occurred, it could be catastrophic over a densely populated city like New York. Possibly the most dangerous obstacle was the climate around the Empire State Building. There is a constant powerful wind that shifts a lot due to all the different air currents the building creates. If a dirigible docked there, it would be blowing all over the place, if it could even dock at all. Most dirigibles that were moored in open fields were weighted down with lead weights in the back, but this would be too dangerous to try over a city teeming with people. Lastly, there ""was an existing law against airships flying too low over urban areas... this would make it illegal for a ship to ever tie up to the building or even approach the area."" (paragraph @NUM2)." 4 3 4 +15448 6 "The mooring mast of the Empire State Building was destined to never fulfill its purpose. In the short excerpt of ""The Mooring Mast by @ORGANIZATION2, many obstacles were clearly stated to why the mast was not a good idea. The building of the mast was rushed. Al Smith had realized that he was close to losing the title of the worlds tallest building and quickly put the mast to mind. Problems quickly arose The first problem that had arose was the lack of a suitable landing area. Al Smith stated that passengers could safely swing in the breeze. This problem was ignored and soon other problems arose as the building of the mast continued. The greatest problem that should have been thought about before building the mast was nature itself The winds were horrible at the height of the building and architects soon realized that landing would be a major issue. The mast was still questioned and architects and engineers were doing all they could to make it work until something was brought upon them, a law. It is illegal for airships to fly too low over an urban area. The law that was realized marked the end of Al Smith's idea and by the late 1930's, the idea of using the mooring mast for dirigibles and their passengers have quietly disappeared." 3 2 3 +15449 6 "The Empire State Building faced many obstacles trying to allow dirigibles to dock there. Dirigibles are blimps. The first obstacle for the Empire State Building with just the size. The Empire State building was very competive with the Chrysler Building. Some oppinions were ""The mooring mast of the Empire State Building was destined to never fulfill its purpast, for reasons that should have been apparent before it was ever constructed. There was also the obstacle to their expanded use in New York City was the lack of a suitable landing area. They added a mooring mast. There was many trials and tribulates making the Empire State building." 1 1 1 +15450 6 "The builders of the Empire State Building faced many obstacles that prevented dirigibles from docking there. One obstacle was the original design of the Empire State Building. It needed to be changed entirely to accommodate landing dirigibles: ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below. The steelframe of the Empire State Building would have to be modified and strengthened to accommodate this new situation"" (@NUM1). Over sixty thousand dollars was spent on the renovations for the redesigned, chrome-nickel stainless steel tower. Another obstacle that the builders faced was the level of safety. Thousands of lives could have been lost if a dirigible accident occurred in New York City: ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York"" (@NUM2). The biggest obstacle by far was the elements. Dirigibles were easily swayed in times of bad weather: ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"" (@NUM3). This was very unsafe because of the dense population of people in New York City. If a dirigible swiveled around the mooring mast too much, it could hit another building or crash. The people behind the construction of the Empire State Building faced many difficulties, therefore the mooring mast was never used." 4 3 4 +15451 6 "When building the Empire State Building, the architects and engineers faced many problems. The first problem was reconstructing the buildings framework. This had to be done in order for the building to be able to undergo great amounts of wind pressure and stress from the dirigible. The next problem the workers encountered was the wind currents. The wind was so strong at the tip of the building, if a dirigible were to be docked to the mooring mast, it would be rotating around it depending on the wind currents. The final problem the architects faced was a law against a dirigible's height. There was an already existing law that stated airships could not fly too low over urban areas. These obstacles were but some of the many faced by the building team of the Empire State Building." 3 3 3 +15452 6 In the excerpt the builders of the empire state building faced many obstacles. The builders did not think of what would happen to the dirigibles if something went wrong. Also on how tall they are makeing the empire state building.The first obstacle the builder faced in building the empire state building was what if something happened to the dirigibles. For example what if the dirigibles are highly flamible like the Hindenburg. The second obsticle the builders faced was on how tall they made it because of how tall it was the wind current was very strong.In the excerpt the builders of the empire state building faced many obstacles. They tried to over come them but there were to many. 2 2 2 +15453 6 "The obstacles that builders of the Empire State Building faced in attempting to allow dirigibles to dock had some consequences. One of the obstacles to there expanded use in New York City was the lack of a suitable landing area. Also, the Architects could not simply drop a mooring mast on top of the Empire state buildings flat roof because a thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame. The greatest obstacle to successful use of the mooring mast was nature itself. The winds on the top of the building were constantly shifting due to violent air currents. The last obstacle why dirigibles could not moor at the Empire State building was an existing law against airships flying too low over urban areas. The U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds" 3 4 4 +15454 6 "The architects and builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. Some of their problems included, the structure of the building, the wind and weather conditions, and the safety of their passengers. The stell frame of the Empire State Building would have to be modified and strengthened to accommodate the new situation. The building now consisted of 102 floors and contained a stainless steel skeleton. The winds on top of the building were constantly shifting due to violent air currents. The back of the ship would swivel around and would need lead weights to hold it down. This was clearly considered unsafe. Finally the safety of the passengers, was at stake because the complete dirigible mooring equipment was never installed. Also, There was an existing law against airships flying too low over urban areas. These are the reasons why dirigibles never moored on the Empire State Building due to the many obstacles." 3 3 3 +15455 6 "The builders of the Empire State Building faced many problems with their idea of docking dirigibles on the top of the empire state building. One major impediment was the laws based around aircrafts. one law @CAPS1 air crafts from flying too low over urban areas. another problem the builders faced was the safety risks to docking dirigibles. Dirigibles were filled with hydrogen, an extremely flamable gas, and after the accident with the German dirigible Hindenburg explosion the builders realized the risk of accidents. Mother nature @CAPS2 the largest obstacle through, the height of the Empire State Building causes high speed winds which would fling the end of any dirigible around the mooring like a rag doll. The builders then realized all the risks to docking dirigibles and abandoned the idea." 3 3 3 +15456 6 "The empire state building was the building designed to be the world's tallest building. With this the governor Al Smith wanted the building to be more than ornamental as he says in his comments in paragraph three.Al Smith wanted the Empire State building to be equipped for an age of transportation. He wanted to create the latest attraction for the dirigibles. Which was to allow dirigibles to dock there. yet allowing this, little did they know that builders would face obstacles.With the idea of the Dirigibles, Al Smith Saw a great opportunity. When he was asked about the Mooring Mast idea AL Smith Said, ""It's on the Level, all right. No kidding. were working on the thing now."" Although the Mooring Mast of the empire State Building was destined to never fulfill its purpose, as explained on paragraph thirdteen." 0 0 0 +15457 6 "In the excerpt from ""The Mooring Mast"", by Marcia Amidon Lsted, the author describes many challenges the architects faced while attempting to allow dirigibles to dock there. The architects had new challenges that would almost seem impossible to prevent at times. The height of the building, the weight of the dirigible against the building, and the fact that dirigibles are highly flammable, adds to the many obstacles the architects were faced with. The height of the building was a major problem for the architects. It was very difficult for pilots to safely maneuver around buildings, especially in a city with many buildings. The unpredictable winds meant the dirigibles could be blown into a building at any point. There was even a law against it that ""would make it illegal for a ship to ever tie up to the building or even approach the area"" (para @NUM1). Another problem the architects encountered was the high flammability of the dirigibles. The dirigibles made in most other countries were made with hydrogen rather than helium. After another dirigible caught on fire people realized how much worse ""that accident could have been if it had taken place above a densely populated area such as downtown New York"" (para @NUM2). The biggest problem of all was the weight of the dirigibles on the massive height of the building. The architects saw that, ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings' foundation"" (para @NUM3). They knew this was very unsafe for the passangers unloading and for the people in the building. Overall, the problems and challenges the architects faced were too strong for them to overcome." 4 4 3 +15458 6 "The engineers and constructors of the Empire State Building definitely faced some large and overwhelming complications when trying to build it to allow the dockings of dirigibles, or blimps. First off, from their original plan, right off the bat, they had to modify the building because they found the actual height of another building was taller. so they had to come up with something fast to fix that. Secondly, after the Hindenburg disaster, @LOCATION1 had realized how dangerous it was for zeppelins to fly over urban areas, so they put a law against it, so the whole idea was basically tossed. And to make matters worse, the violent gusts of air and updrafts wouldn't make docking on the Empire State Building very safe for passengers." 2 2 2 +15459 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The excerpt ""The Mooring @CAPS1"" by Marcia Amidon Lsted explains some problems architect Al Smith experienced when constructing the world's tallest building in the 1920s. For example, ""The greasest issues was one of safety."" Safety was a major obstacle because most dirigibles outside the United States used hydrogen rather than helium, and hydrogen is highly flammable. If a dirigible was to explode high above this densely populated area many people would be killed or seriously injured. Another obstacle faced in this attempt was ""nature itself."" Nature was one of many major problems to allow a dirigible to dock. For example, ""The winds on top of the building were constantly shifting due to violent air currents."" The winds would shift the ship and it would be very difficult to land on the mooring mast. The other practical problem builders faced was ""a law against airships flying too low over urban areas."" The entire idea was eventually dropped by the late 1930s. Builders of the Empire State Building faced many obstacles in the creation of ""The Mooring Mast.""" 4 3 4 +15460 6 "When constructing a mooring mast, @CAPS1 ran into many problems. Safety was the main problem/concern they ran into. Since most blimps outside of the @LOCATION1 were hydrogen not helium, they were very flammable. After Hindenburg blimp was destroyed by a fire, people in @CAPS1 feared that would happen by the empire state building. Another problem they ran into was the law. At that time, it was the law that you couldn't fly an airship that low over urban areas. When tested, some blimps couldnt get close enough because of the heavy winds. This made it impossible to tie blimps up and let people off It also made people fear that the wind would blow the blimp onto sharp parts of other building which would put a hole in the blimp It was a good idea, but there were just to many obstacles they had to go around to make the blimp docking station and mooring mast successful." 3 4 4 +15461 6 "The builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. One issue was the violent air currents that were at the top of the building. Even if the dirigibles successfully docked at the top of the building the back end of it would be thrashing around from the wind. If this happened and the blimp became uncontrollable it could crash into another building and fall to the ground where all the downtown New @CAPS1 walk. Putting weights on the end of the blimp would help that situation but as @CAPS2 says, ""dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using these at the Empire State building, where they would be dangling high above pedestrians on the street, was neither practical nor safe."" Another issue the builders faced was the fact that dirigibles were highly flammable. They learned their lesson and got it into their heads that their idea might not be so good after when the German blimp, the Hindenburg, was destroyed. " 3 3 3 +15462 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted the builders of the empire state building had to deal with many obsticles while trying to allow dirigibles to dock there. The author tells us the readers that dirigibles were actually enormous steelframed balloons. with envelopes of cotton fabric filled with hydrogen and helium to make them lighter than air. While the builders were trying to droop a mooring mast on top of the empire state building's flat roof. In the excerpt tells us the reader that ""a thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building frame. The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building foundation, which was nearly eleven hundred feet below. All though the dirigible is as light as the air it could mess up the frame of the building. Another obsticle the buildors had to face was when the German dirigible Hindenburg was destroyed by fire in @LOCATION1, New jersey on May 6, 1937. The owner of the empire state building realized how much worse it would have been the accident happened in New York such as a populated are as downtown. ""Most dirigibles from outside of the united states used hydrogen rather than helium, and hydrogen is highly flammable"". Even though the empire state building didn't get to put moors on top of the building it still became the world's tallest building." 3 3 3 +15463 6 "There were many obstacles the builders faced when trying to allow Dirigibles to dock on the Empire State Building. One of the obstacles was nature. The winds at the top of the Empire State building were always shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around. Another obstacle builders faced was a law not allowing airships to fly too low over urban areas. This law would make it illegal for a ""ship to ever tie up to the building or even approach it." 2 2 2 +15464 6 "From the excerpt 'The Mooring Mast' by @ORGANIZATION2 we find that the builders of the Empire State Building encountered many obstacles. Their first obstacle was to figure out how to transfer ""the stress of the dirigible's load and windpressurs"" to the buildings foundation. Another was to modify the steel frame of Building and strengthen it to accommodate the situation of adding the mooring mast. And so the builders did modify the building and assigned a mooring mast, but when construction was completed builder came upon another obstacle. ""most dirigibles outside the U.S. used hydrogen instead of helium, and hydrogen is highly flammable, which is a danger if any would go up in flames above New York. The greatest obstacle with the winds. They were constantly shifting making it difficult for any dirigibles to even get close to the mast even if the could get to the mast the back of the dirigibles would swivel around the mast where in open fields dirigibles would be weighed down with lead weights. at the Empire state building they would be dangling higabove pedestrians, this was niether practical or safe. Because of all the obstacles the Mooring Mast would never be used" 4 4 4 +15465 6 "The main obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there stemmed from the bad location. The dirigibles would be docking 1,250 feet above one of the busiest cities in the world. This would create three problems for the docking of the dirigibles. The first problem is hydrogen is what was used in dirigibles and it is extremely flammable. If a dirigible were to explode above downtown New York many people would be killed. This means not many people are going to want the dirigibles docking there. If the Empire State Building had not been above such a densely populated area they may have not had this problem. The next difficulty would be the fact that at that altitude in New York City there are violent wind currents that are always changing. This makes it hard for the conductors to dock the dirigible and it also could possibly cause the dirigible to hit something and pop. So again the dirigible is falling into downtown New York and killing many people. This is another reason it was a bad location. It needed to be in a place where there were more stable wind currents. The final obstacle was there was an existing law against airships flying too low over urban areas. This meant that even if the other to factor disappear there was a law the builders should have known about that forbade their plans. Like the author said the Empire State Building was destined to never fulfill its purpose." 3 3 3 +15466 6 "The builders of the Empire State Building faced multiple obstacles when attempting to allow dirigibles to dock there. If they were to succeed, they would have become a major aviation accommidation for transatlantic routes and new routes that were yet to come. In order to allow dirigibles to dock at the top of the building, the mooring mast needed to be constructed and put on to the top of the building. Simply adding the masts to the building was no easily reached task. The Empire State Building's frame needed to be modified so it could withstand the stress from the dirigible mounted onto the mooring mast. Over sixty thousand dollars worth of modifications were made to adjust the building's framework. Once the framework was adjusted, architects designed a shiny glass and chrome-nickel stainless steel tower that was illuminated from the inside. This tower served as a mast for the building to come. Before the mooring mast could be constructed, the roof of the building had to be completed. Once the roof was constructed, the mooring mast was added with its own skeleton of steel. Once the entire project was finished, the owners of the Empire State Building realized that docking dirigibles would be much too dangerous. After all the rigorous work put into the mooring mast was completed, it became clear that it would never be used for its original purpose." 2 2 2 +15467 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. For example, one of the obstacles they faced were that ""most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable."" This is significant because it would be dangerous for foreign dirigibles to dock on the Empire State Building, especially in a densely populated area such as downtown New York. Another obstacle they faced was nature. ""The winds on top of the building were constantly shifting due violent air currents."" This suggests that a dirigible would swivel around and around and they could be weighted down with lead weights, using these at the Empire State Building, high above pedestrians on the street, would be impractical and unsafe. Next, there was also ""an existing law against airships flying too low over urban areas."" This is important because it is another obstacle that would ultimately make it illegal for a ship to ever tie up to the building or even approach the area. Also, ""in December 1930, the U.S Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds."" This shows that another obstacle they may have faced was losing confidence and directly observing that their plan would not work. The various obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there show that it would have been a difficult task to complete." 3 4 4 +15468 6 "The builders of the Empire State Building faced obstacles attempting to allow dirigibles to dock there. One of the main obstacles was, the lack of a good landing area. Dirigibles were pretty big and there wasn't a great spot for it. ""Some were as long as one thousand feet, the same length as flour blocks in New York City""- paragraph 6. therefore caused problems to the builders to figure out where to put it." 2 1 2 +15469 6 "Based on the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, there were many factors in the way of dirigibles docking at the mooring mast. When the German dirigible ""Hindenburg"" went up in flames in New Jersey the owners of the Empire State building realized quote how much worse the accident could have been if it had taken place about a densely populated area such as downtown New York."" (paragraph @NUM1). Another obstacle was the existing law against low-flying airships in urban areas. This law makes is so that it is ""illegal for a ship to ever tie up to the building or even approach the area"" (paragraph @NUM2). The greatest obstacle of all however, was mother nature. The winds that high in the sky were ""constantly shifting due to violent air currents."" This would cause the back of the ship to swivel around and would be unsafe to passengers and pedestrians on the street below. All of these factors contributed to the project never being fulfilled in New York." 4 3 4 +15470 6 "In a competition with architect building the Chrysler Building, Al Smith wanted to construct a taller building with a purpose. That purpose would be to dock dirigibles on a mooring mast. This seemed like a good idea, taking a mode of transportation very popular and new and allowing it to run in New York City. Then their were problems, in the beginning the architects knew that ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame"". So, with the time thay had, they assumed that they fixed the problem, but when it was finished the architects knew that ""The mooring mast of the Empire State Building was destined to fufil it's purpose..."" Most of the problems didn't arise from the building but the practicality of having a dirigible land in a big crowded city, such as the highly flamable hydrogen that fills most dirigibles or the closeness of the other buildings to the blimps could cause them to burn. Overall the idea was good in theory, but could never be excuted. Only two dirigibles ever docked their and it has never been used since" 3 3 3 +15471 6 "Although the builders tried hard to make their dream become a reality, there were a few obstacles that prevented that. The main obstacles builders faced were weather, the law, and safety concerns.The weather at the top of the building was very windy, and strong winds would cause major issues for the dirigibles landing. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Another problem they faced was that there was a law effect preventing aircraft from flying too low over urban areas. Since New York is an urban area, no dirigibles would even be allowed to fly anywhere near the Empire State Building. The other main obstacle was a concern for safety. Hydrogen, which is extremely flammable, was used in many foreign dirigibles. It could cause a catastrophe if one ever exploded over New York, and there had already been an accident where ""the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937...""These obstacles were not just ones that the builders could ignore, and they ultimately prevented the intended use altogether." 3 3 3 +15472 6 The obstacles faced by the Empire State building builders were. one was the existing law against airships flying to low over urban areas. Stated in @CAPS1 @NUM1. Another obstacle was nature. The winds on top of the building were constantly shifting due to violent air currents. With the dirigible moored at the top of the building held by a cable tether would have put stress on the building therefore they would have had to make the structure of the building stronger 3 2 3 +15473 6 "The obstacles that the builders were faced with in attempting to allow dirigibles to dock on the Empire State Building was that they could not simply drop a mooring mast on top of the Empire State Building. Is because it would have added to much stress to the frame of the Empire State Building, which could have caused the collapse over a period of time. So the steel frame of the Empire State Building had to be ""modified and strengthened to accomade this new situation"", as said in the excerpt. After the builders completed framing the Empire State Building up to the eighty-fifth floor, it was now time to do the framing of the rooftop to create an area where the mooring mast would be placed. After the workers completed the framing of the rooftop, they build the mooring mast on to it, now the builders faced the challenge of framing the mooring mass. The builders framed the mooring mast with a skeleton of steel. The builders faced these challenges in the attempt to allow derilibles to dock on the Empire State Building." 2 1 2 +15474 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The first obstacle they had to overcome was that if a dirigibles, which could reach up to a thousand feet in length, was moored to the tops of the building it would add stress to the building's frame. This meant the steel frame of the building had to be strengthened and modified to deal with the added stress. The cost of the modifications was over sixty thousand dollars. The next challenge was discovered after the building was finished. This was the fact that having dirigibles moor at the Empire State Building was unsafe. This first reason why it is unsafe is that most dirigibles, not from the United States, used hydrogen into helium and hydrogen is highly flammable. This meant an accident like that of the Hindenburg could happen above the highly populated downtown area of New York. Another problem that arose after the construction was that the shifting winds on top of the building were too violent for the dirigible, which would swivel around the mooring mast. All these challenges along with an existing law they did not allow airships to fly too low over urban areas were the obstacles faced by the builders of the Empire State Building and is why only one dirigible was ever moored there." 4 4 4 +15475 6 "Challenges can be faced when radical ideas are put into action. When faced with task of docking dirigibles, or zeppelins, atop the Empire State Building, the builders ran into challenges that are natural to come along with new thoughts. One challenge included was the fact of the wind from such an altitude as the Empire State Building made situations perilous for blimps and people on the ground. ""Even if the dirigible wer tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"". (@CAPS1 @NUM1). Another obstacle faced by builders was difficulties with the laws of the United States government. ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" (@NUM2) These were some of the difficulties dealt with by builders in the construction of the Empire State Building's mast." 2 2 2 +15476 6 "Based on the excerpt, the builders of the Empire State Building faced many obsticles and attempting to allow dirigibles to dock there. One obsticle was the fact that dirigibles were dangerous when not handled correctly. If so, many people could die because it was within a densely populated area. In paragraph @NUM1, the author states, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" @CAPS1 was also an issue in allowing dirigibles to dock there; the wind at that height was very forcefull, and would become a problem. In paragraph @NUM2, the author states in relation to the wind, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Another obsticle was the laws against airships flying too low over urban areas. Paragraph @NUM3 states, ""This law would make it illegal for a ship to tie up to the building or even a produced area..."" @CAPS2, all of these obsticles made it impossible in the end for dirigibles to dock at the Empire State Building." 4 3 4 +15477 6 "The builders of the mooring mast plan the construction well, but did not consider the potential risks of the mast. One reason that the mast's fate was sealed was because of safety issues. Most dirigibles, or blimps, used hydrogen rather than helium. If one of these blimps were to fall from the sky, many people below would be killed. New York has many people that walk everywhere. The builders also needed to considered the violent winds at such a high altitude. These winds could blow the dirigibles around, making it difficult to keep them in one spot for passengers to board, and to refuel. The winds are constantly shifting. They could blow the blimps onto the spires on the Empire State Building, causing them to burst and fall to the ground below. Unfortunately, there is a law that prevents airships from flying too low over urban areas. ""This would make it illegal for a ship to ever tie up to the building or even approach the area"". I think that Al Smith was more focused on keeping his height record, more than the potential dangers of the mast." 3 3 3 +15478 6 "In ""The Mooring Mast,"" by Marcia Amidon Lsted, the Empire State Building is familiar to many people throughout the world, but not many know that the original purpose of the mast was to serve as a landing spot for dirigibles, also known as blimps. Do to the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there, they eventually shelved the idea. One of the obsticles the builders realized that if a forign dirigibles were to dock and have an accident with any heat or a spark, they would explode and fall to the ground, killing many men, women, and children, due to the chemicals that are used on forign dirigibles. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" @CAPS1, another obsticle they faced violent winds, that would knock the dirigibles around. ""Winds on the top of the building were constantly shifting due to violent air currents."" All in all the obsticles the builders of the Empire State Building faced in attempting to allow dirgibles to dock eventually shelved the idea." 2 2 2 +15479 6 In the story construction workers faced a problem. The idea of having a dirigible's dock ontop of the empire State Building was comming to an end. When thinking about the idea the architecture Never put thought in legal persasures as in air crafts cant fly low on urban areas. Also the heavy wind that picks up from the building making the air craft hard to controll. Another was the dangers they could inflict to civilians. If not @CAPS1 right the air craft can get loose and dingle down to urban areas or like the german dirigible catch on fire and Blow up. Even though they had a prototype that work they discontinued the project giving air planes the better way to travel in the air. 3 2 3 +15480 6 There's more than one obstacle the builders of the Empire State Building faced in attempting to allow blimps to dock there. The biggest obstacle was nature. The winds on top of the building were constantly shifting due to violent air currents. The other practical reason why blimps could not moor on the Empire State Building was an existing law against airships flying too low over urban areas. 2 2 2 +15481 6 "The builders of the Empire State Building faced many obstacles when they attempted to allow dirigibles (blimps) to dock there. The greatest obsticle was nature itself. With violent changing winds and climate, it made it extremely hard to tie dirigibles down to the mooring mast. The other main reason why dirigibles could not moor on the Empire State Building was the existing law against airships flying too low over urban areas. The dirigibles will never be tied down to the moor because it would break the law. Safety was also a big reason why the dirigibles could not be tied down to the moor. Dirigibles outside of the @LOCATION2 used hydrogen rather than helium to fill their dirigibles. The hydrogen is very flammable so people feared if it were to catch fire over a busy city like New York, all hell would let loose. These were a few examples of the struggles faced by the builders of the Empire State Building." 3 3 3 +15482 6 "In the article The Mooring Mast by Marcia Amidon Lsted the architects of the empire state building faced multiple obsticals in attempting to allow dirigibles to dock there. First there was the obvious concern, safety, a dirigible dangling over New York City does not seem very safe. And it @CAPS1 wasn't a reasonable thing to build, the empire state building was already tall enough, why build a mast that probably won't get much use anyway." 1 1 1 +15483 6 "The builders of the Empire State building faced many obstacles while attempting to allow dirigibles to dock there. The builders wanted to add a mooring mast top of the building, to allow dirigibles to anchor there for several hours for refueling, or service, they couldn't do that because ""a thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's frame."" Al Smith didn't get to allow the dirigibles to land on the building because of how skinny the top was." 1 1 1 +15484 6 "In a desperate attempt to revolutionize the way people traveled, the idea of the mooring was not thought over as well as it should have been. The number of problems and obstacles mounted higher and higher with the idea of mooring airships to a new mast atop the Empire State Building. One of these main obstacles was, while an airship was tethered to the building it would add stress, ""The stress of dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation"". Another obstacle faced with the mooring mast was one of safety. Dirigibles not from the United States used hydrogen rather than helium, which is Highly flammable. Another obstacle to the construction was nature itself, with high, shifting winds due to violent air currents, a dirigible tethered to the mast would swivel around and around the Empire State Building, the only way to prevent this would be to tie the lead weights to the rear end, but massive dangling weights, hanging over one thousand feet above the public, was not the safest idea. A last obstacle that was faced with the fact that there was an existing law that prevented airships from flying too low over urban areas. These were all obstacles that should have been thought through and realized before construction for the Empire State building's mooring mast ever begin." 3 4 4 +15485 6 "In ""The Mooring Mast"" by @PERSON1 there are many reasons that a proper, working Mast was impossible. there were natural reasons and mechanical reasons. As well as time and safety. Nature played a key role in this project. The winds around the building ""were constantly shifting"" because of the location of the building. When the to blimps attempted to go near to test it out One was too unstable to dock and the other through paper down a rope ""after this stunt the idea of the mooring mast was shelved."" @CAPS1 replaced the blimps over time and blimps wher flammable and dangerouse. Also, flying at that hight is illegal." 2 2 2 +15486 6 "When the builders were almost ready to place the mooring mast on top of the Empire State Building, big problems became apparent to them that caused complications in docking dirigibles. One factor was that by law, dirigibles couldn't be that low above the city, as they could accidently crash into a building and fall onto the crowds below. Another factor was the air currents around the tall buildings, especially the Empire State Building at a height of 1,250 feet. Even if the dirigible was tethered to the mooring mast, the winds would violently rock it, and could crash against the building and fall to the streets below. A recent factor arose when the Hindenburg dirigible burst into flames from the hydrogen in it when it flew over New Jersey on May 6, 1937. Nobody wanted to risk that happening over New York City, either. So because of flammable hydrogen, violent air currents, and by law, the builders had complications when building the mooring mast to allow dirigibles to land there." 3 4 4 +15487 6 Some obstacles were that there was many sharp rods on surrounding buildings and so if it touched one it could pop. Another is if the wind is blowing it was hard/unsafe for the dirigibles to be tied to the building. 1 2 2 +15488 6 "There were many obstacles that the builders of the empire state building had to face. One obstacle being constructing a strong enough frame for the building so that a thousand foot derigible could be held by the single tether cable. Another obstacle that builders of the empire state building faced was safety how most derigibles from outside the U.S at the time used hydrogen rather than helium, which made it very dangerous since hydrogen is very flammable. This made the constructors have to find a way of creating a landing field where the blimp would not touch any of the sharp spires above the empire state building. These were @NUM1 of the many obstacles that the builders of the empire state were faced with." 3 3 3 +15489 6 "@ORGANIZATION2's article "The Mooring Mast", explains the many problems with using the peak of the Empire State Building to dock dirigibles. First of all, dirigibles that travelled internationally were filled with Hydrogen, a very flammable gas. Having another Hindenburg-style disaster over New York City would be very dagerous. Also, the winds at the top of the spire are rapidly changing and unpredictable, making an approach dangerous. It would normally be okay for a blimp to land in a windy area, because lead weights could be fastened to ropes holding the blimp down. Without landing on the ground, such as just attaching to the spire, there was no way to weigh down the blimp to stabilize it. Finally, a law existed against airships flying too low over urban areas, making a docking at the Empire state illegal. Many practical reasons crushed the dream of having dirigibles dock at the Empire State." 3 3 3 +15490 6 "Many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was the architect could not simply drop a mooring on top of the building's Flat roof. Like it @CAPS2 in @CAPS1 @NUM1. Also ""rather than building a utilitarian mast without any ornamentation, the architects designed a shiny glass and chrome-nickel stainless stell tower that would be eliminated from inside. With a step-back to imitate the overall shape of the building itself."" It @CAPS2 in @CAPS1 @NUM2." 1 1 1 +15491 6 "Based on the excerpt ""The @CAPS1 Mast"" by Marcia Amidon Lsted, There were many obstacles the builders of the @ORGANIZATION1. To allow dirigibles to dock their. One of their main obstacles the builders @ORGANIZATION1 was the frame work. They had to design it so the building could bear the stress of the dirigible. ""The stress of the dirigible's load and wind Pressure would have to be transmitted all the way to the building's foundation"". In order to make it work they would use diffrent Steel. Another obstacle the builder @ORGANIZATION1 would be safety. Winds and hydrogen were main focuses. ""Most dirigibles from outside the United States used hydrogen, hydrogen is highly flammable, The winds on top of the building were. Constantly Shifting due to violent air currents."" They would also be careful of pedestrians ""they would be dangling high above pedestrians on the street"". Those are just two examples of what the builders of the Empire State Building @ORGANIZATION1." 4 2 3 +15492 6 "There were a handful of problems that came along with the idea of docking dirigibles on the Empire State Building. This idea was hardly practical, for safety reasons mostly. If a dirigible docked there on one cable, extreme tension would be put on the building. Also, if an international dirigible were to dock filled with very flammable hydrogen and catch fire, the results would be catostrophic.The task of actually docking would be a problem as well. With such a high altitude, winds were very strong. Nothing could prevent the dirigibles from swinging around the building. In other situations, dirigibles would be weighted down with lead weights. However, if these were to fall, they would land in the busy city streets of New York. Lastly, there was a law against low flying air ships, completely dismissing the idea of docking dirigibles on the Empire State Building." 3 3 3 +15493 6 "In trying to build dock at the top of the Empire State Building for dirigibles, the workers faced many obstacles. One reason is because ""the architects could not simply drop a mooring mast on top of the Empire State Building's flat roof"" (@CAPS1 @NUM1) because it would only be held by ""a single cable tether"" (@CAPS1. @NUM1) which would add stress to the building. And the only way to fix would be to spend ""over sixty thousand dollars worth of modifications"" to strengthen it. Another obsticle was ""nature itself"" (@CAPS1. @NUM3). This is because the winds would be ""constantly shifting due to violent air currents"" (@CAPS1. @NUM3). And the one way to solve it would be to put lead weights to weigh down the back, but its not ""practical nor safe."" (@CAPS1. @NUM3) The last reason why is because of the ""law against airships flying too low over urban areas"" so it would ""Make it illegal for a ship to ever tie to the building.""" 4 3 4 +15494 6 "In an attempt to allow dirigibles, otherwise known as zeppelins or blimps to dock on the Empire State Building, the builders faced many obstacles along the way. Al Smith stated ""... engineers here in New York [are] trying to dope out a practical, workable arrangement"" (paragraph @NUM1). First, they would not drop a mooring mast on top of the building's flat roof. This would add too much stress to the frame and it would have to be modified to accommodate this new situation"" (paragraph @NUM2). Another obstacle was that most dirigibles outside of the @LOCATION2 use hydrogen, which is very flammable. When the ""Hindenburg"" was destroyed by fire, ""the owners... realized how much worse that could have been if it had taken place above a densly populated area such as downtown New York"" (paragraph @NUM3). The most significant obstacle was ""nature itself"" (paragraph @NUM4). Due to violent air currents, ""the winds on the top of the building were constantly shifting"" (paragraph @NUM4) in open areas, dirigibles could be weighted down by lead weights, but this poses a threat to pedestrians on the street, as the weights would be dangling above them. Lastly, there was ""an existing law against airships flying too low over urban areas"" (paragraph @NUM6). This law makes docking at the Empire State building illegal The builders of the Empire State Building faced many obstacles in an attempt to allow dirigibles to dock there." 4 4 4 +15495 6 "The builders of the Empire State building faced four main problems in attempting to allow dirigibles to dock there. One of these problems was solved, the other three were not. The first obstacle was that since each dirigible would be connected to the top of the building by a single cable, enormous stress would be put on the frame of the building. This was solved by simply reinforcing the frame of the Empire State Building, but it cost over sixty thousand dollars to make the modifications. The second obstacle was not so easily solved. Dirigibles from other countries use hydrogen to stay afloat. Hydrogen is highly flammable, and the example of the Hindenburg blimp that burst into flame alerted the owners and builders of the Empire State Building to how dangerous an accident like that, especially in densely populated New York City, could be. The third obstacle also proved impossible to solve - because of the high speed of the winds at the top of the building, there would be no way for a dirigible to @CAPS1 safely. During the only test, the Los Angeles navy dirigible could not get close enough to @CAPS1 because of the high winds. It would have been all too easy for the dirigible to spin out of control and hit a spire on a nearby building. Lastly, there was already a law in place that prevented dirigibles from flying too close to urban areas, which would make it illegal to @CAPS1 or fly a ship in New York City." 4 4 4 +15496 6 "In the excerpt The Mooring Mast by @ORGANIZATION2, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. First, the wind was to fast for the builders at that altitude. This shows that they didn't want any dirigibles to fall on any stores below. Second, they didn't finish the building because the building couldn't hold all the weight that they wanted to put on top of it. Third, hydrogen is highly flammable and could catch on fire easily. In brief, there were many problems that made the Empire State Building a bad idea to dock a dirigible." 2 2 2 +15497 6 "Durining the @DATE1 and the 1930s, there was a fierce competition arising over constructing the largest building. To set the Empire State Building apart from the @ORGANIZATION1 decided to put a mooring mask for dirigibles. This would have both meaning and make the Empire State Building the worlds largest building. The mooring mask was certin to fail for a few reasons. For one, forign dirigibles used hydrogen instead of helium. Hydrogen is very flamable and would cause a huge fire @CAPS1. Another reason is above the Empire State Building there are strong winds and currents that are constantely shifting. This would make it very difficult to control the dirigible. Pilots unable to control the dirigible would have great difficulty @CAPS2 their dirigible. Lastly the mooring dock failed because of the law. This law stated that it is illegal to fly air ships to low over urban areas. On 1931 @CAPS3 Clavan @CAPS4 the @CAPS5 of the mooring mask. By the late 1930's the Idea was dead." 3 3 3 +15498 6 "The builders of the Empire state building faced alot of obstacles in attempting to allow dirigibles to dock there. One obstacle was the lack of suitable landing areas. They usually land in open fields, where they are weighed down with lead weights. In New York they would be dangling above pedestrians on the street. Another obstacle was safety. Most dirigibles use hydrogen, which is highly flammable. They worried an accident like the Hindenburg could happen, only this time it would be above a densely populated area. Another obstacle was an existing law against airships flying too low in urban areas, so it would be illegal for a ship to ever tie up to the building. The Final obstacle was Forceful winds. They could blow the dirigible onto the Sharp spires of other buildings and puncture the Shell, the captain couldn't take his hands off the control levers. All in all the mooring mast was not a very well thoughtout idea and it would not have been safe at all." 3 3 3 +15499 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were mainly due to structeral and safty issues. According to paragraph @NUM1, ""A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" This problem required over sixty thousand dollares' worth of modifications to the buildings framework. Although structural issues were a problem, the safety of the pidestrians created a even bigger obstacle for the builders.Most dirigibles from outside the United States used hydrogen instead of helium which created huge fire hazzards ""When the German dirigible Hindenburg was destroyed by a fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area, such as downtown New York"" (paragraph @NUM2). Even though the exsisting law against airships flying too low over urban areas prevented dirigibles from mooring at the Empire State Building, the biggest obstacle of them all was nature itself. The dirigibles shells could be punctured by the winds constantly shifting due to violent air currents." 4 3 4 +15500 6 "The builders have faced many obstacles, from laws to future disasters. There were several problems with the design and location of the mooring mast One problem was that ""the winds on top of the building, were constantly shifting."" Even though the architects adjusted the design of the mast, it was still too dangerous to land a blimp.Another major problem, was the dirigibles themselves They were filled with combustable hydrogen. If a blimp was to catch fire, like the Hindenburg, the debris would fall on the pedestrians' below. The last problem was a law that prevented ""airships flying too low over urban areas.""In conclusion, due to laws, the dirigibles and nature, the mooring mast was not used." 2 3 3 +15501 6 "The first obstacle is being able to get the passengers on and off due to the height they are already at. Also as stated in paragraph @NUM1 ""the U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds."" @CAPS1 therefore the power of the wind is a huge obstacle. Another obstacle stated in paragraph @NUM1 ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against air ships flying too low over urban areas. This law would make it illegal for a ship to tie up to the building or even approach the area."" @CAPS1 the law was another obstacle they had to face." 3 3 3 +15502 6 "The architects who built the mooring mast on the top of the Empire State Building had many problems with actually docking any dirigibles there. When they @CAPS1 building the idea of being able to dock blimps on the top of a building was revolutionary and ideal. But they had many issues with safety, weather and laws. One issue with safety was that the gas inside the dirigibles, hydrogen, is highly flammable. One accident could harm hundreds of people in New York's streets. The wind on top of the building was also very strong. Making it difficult for any blimp to get in close enough. the last difficulty that the builders had was laws. There were certain laws not allowing air ships to fly too low over high populated urban areas. While their mooring mast seemed like a good idea to start out with, sadly it never got much use." 3 3 3 +15503 6 "Based on the information given in the excerpt, the obsticals that the builders of the Empire State Building had to face were critical to the usage of the dock. Not only is it a challenge to build 102 story building but when factoring in wind and other weather conditions it is not an easy task: In order for the builders of the Empire State Building to create and hoist the dock the top they needed to first reinforce the skeleton of the building itself. ""The Architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. A thousand-foot dirigible moored at the top of the building, held by single cable tether, would add stress to the building's frame."" (paragraph @NUM1) @CAPS1 constructing the mooring mast the builders had to think about the violent wind speeds and the structure of the building to support itself. There were many obsticals that the builders of the Empire State Building had to work through to complete their project." 2 2 2 +15504 6 "THE OBSTACLES IS ""TO THE SUCCESSFUL USE OF THE MORNING MAST WAS NATURE ITSELF. THE WINDS ON TOP OF THE BUILDING WERE CONSTANTLY SHIFTING DUE TO VIOLENT AIR CURRENTS.""" 1 1 1 +15505 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The obstacle wer't successful using the mooring mast and the nature itself. But after the celebrating they were disappointed because the dirigibles wasn't able to dock there. After that another dirigible the @CAPS1 year blimp Columbia, attempted a Publicity stunt where it would fly up and deliver a bundle of news papers to the Empire State Building. when the stunt wan't success the blimp could be use for transportation in the Future." 1 1 1 +15506 6 "The were many obstacle's the builder's of the Empire State Building had to face in attempt to allow the docking of dirigible's. There was no way architects could drop a mooring mast on top of the building's smooth roof. If a thousand foot dirigible overshadowed the top of the building with only one cable tether, stress the building's frame would be added instantly. Stress of the dirigible's load and wind pressure would need to be transmitted all the way down to the building's foundation. Another obstacle for the builder's was that the building's steel frame would have to be strengthened to accommodate with this new design. The greatest obstacle in launching this new design was nature. Architects would needed to consider the constant shifting of winds due to violent air currents. Even if the dirigible was tied to the mooring mast, the back of the ship would be unsturdy. The fact that this design would be dangling above the pedestrians on the street, would worry the architects concern of the population. Architects also had to deal with the law against airships traveling too low above urban areas. This law would state the forbidden right of one to tether a large ship to a bulding, or even approach the area. Although there were attempts of dirigible's to reach a bulding, the entire idea was dropped, much to the architects despite." 3 3 3 +15507 6 "The builders of the Empire State Building faced many obstacles when attempting to allow dirigibles to dock there. One obstacle was the fact that dirigibles contain highly flammable gases. If the blimp was docked over a large city like New York City, it would be very dangerous if a blimp did catch on fire. Another obstacle was that the docking system would not work as well as planned, nor would it be safe. These airships are at the mercy of the winds and weather. In normal cases of docking dirigibles on open landing fields, they are weighted down on the front and back. If the blimps were to stay in place on the Empire State Building, they would need to have a weight on the back as well as the front, which would end up dangling over the city. Without the weight on the back, the blimp would spin around the mooring mast. Finally, the height at which the dirigibles would have to be would not be safe. If the blimp were to the blown by the wind, the blimp would crash into the pointy tops of nearby buildings. These are the obstacles the builders faced when trying to allow dirigibles to dock on the Empire State Building." 3 3 3 +15508 6 "The builders of the empire state building faced many obstacles in attempting to allow dirigibles to dock there. The first obstacle the builders faced was that the building itself would need to be modified. The architects in charge of adding the mooring mast realized that if they were to add the mast as-is, and start mooring dirigibles to it, then there would be too much stress put on the empire state buildings frame. For this reason they first had to make @MONEY1 worth of changes to the building in order to sufficiently strengthen it's frame (paragraph @NUM1). The second obstacle which builders faced in trying to make it possible to more dirigibles to a mast on the empire state building was just general safety. After the hindenburg disaster of 1937 took place, it became clear to the architect in charge of the project how truly catastrophic an accident like that would of been if it occurred over as highly populated a place as @CAPS1 (paragraph @NUM2). It wasn't just possibility of catastrophic disaster which added to the worry about safety though. Considering the constant violent wind gusts which happen at the height of the mast, architects realized that any dirigible moored up there would be constantly swinging rapidly around the mast. The way this problem is solved when mooring dirigibles on ground is through the hanging of weights on it's back, yet this would present yet another safety issue because of the weight was to fall on the people below it could easily kill somebody (paragraph @NUM3). The final obstacle architects faced was a law outlawing a dirigible flying so low near urban areas in the first place. In the end, the fact that there was so many obstacles prevented the idea of mooring dirigibles there from ever becoming reality at all." 3 4 4 +15509 6 "There were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock on the mast. One obstacle they faced was nature itself. It says in the exerpt that ""the winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around."" This could have led to major accidents if the dirigibles were allowed to dock here. Another obstacle they faced was that these dirigibles could not fly to low over urban cities. It says in the excerpt that ""these was an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area."" But before the idea was even dropped, two dirigibles attempted to reach the building. The first one could not reach the building because of forceful winds. The second airship attempted a stunt to drop off a bundle of news papers. They didn't have the right equipment so they had to have a worker catch the bundle of papers that were attached by a rope. These obstacles were very important to be construction of the mast because it's probably saved the lifes not only the aviators but the people that lived in urban cities below." 3 3 3 +15510 6 "In the @DATE1's, dirigibles were known as the transportation of the future. After the Empire State Building was built, the builder's attempted to allow dirigibles to dock there. There were three main reasons that prevented the builders from attempting to allow dirigibles to dock, at the top of the Empire State Building. ""The one obstacle to there expanded use in New York City was the lack of a suitable landing area."" Al Smith thought that if a mooring mast was added to the top of the building, it would allow dirigibles to anchor there for hours. But it was not easy for the architects to drop a mooring mast on top of the Empire State Building's flat roof. ""The greatest obstacle to the successful use of the moorin Mast was nature itself."" The violent air currents from the wind, would caused the back of the ship to Swivel around the moorin mast. ""The other practical reason why dirigibles could not moor at the Empire state Building was an existing law against airships flying too low over urban areas."" In the end two dirigibles attempted it, but it did'nt work." 4 3 2 +15511 6 Their were many obstacles builder face while attempting to allow dirigibles to dock at the top of the Empire State building. The first problem they faced was safety. Alot of dirigible especialy those from out side the unitestates used hydrogen which is highly @CAPS1. So this was not safe in a place with a big number of population like down town New York to have a dirigible fly that low. It is not safe because In case of an accident there could be a large amount of deaths. The second ob stacle the builders faced was that the winds on the top were constantly blowing and could not allow the dirigible to stable in one place. Instead it would just go around and around the mast. The third and last obstacle that the builders faced was the law. There was a law that did not allow air ships to fly too low over urban areas. So It was illegal for a ship to be tied on the Empire state building. 3 2 3 +15512 6 "On December 11, 1929, Al Smith Announced that the Empire State building would be reaching the height of 1,250 feet; taller then the previous largest building, the Chrysler Building. Smith made the building taller by adding a top or a hat. John @CAPS1 described this as ""[The top of the empire State Building] would be more than an ornament... The empire state building would be equipped for an age of transportation that was then only the dream of a few aviation pioneers"" (pg 1). This dream consisted of having a mooring mass at the top of the building to dock dirigible, or blimbs. However, many obsticles emerged the more they began to plan this, such as the amount of stress it would add to the buildings frame, the use of hydrogen opposed to helium, and simply nature itself. ""A thousand-foot drigible held by a single cable tether, would add stress to the buildings frame... The Empire State building would have to... [have] over @MONEY1 worth of modifications (pg @NUM1). ""Most diribles from outside of the U.S used hydrogen... and hydrogen is highly flammable (pg @NUM1)"". ""The winds on top of the building were constantly shifting due to violent air currents... they would be dangling high above pedestrians... that was neither safe nor practical""" 3 2 3 +15513 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there because dirigibles had a top speed of eighty miles per hour. The one obstacle to their expanded use in New York City was the lack of a suitable landing area. Dirigibles were docked by means of an electric winch, which hauled in a line from the front of the ship and then tied it to a mass. Also the body of the dirigibles they could swing in the breeze, and yet passengers could safely get on and off." 0 1 1 +15514 6 The builders faced many obstacles while building a mast for dirigibles on the Empire State building. One was that the had to strengthen the foundation so that all the stress on the buildings structure wouldn't tear it apart. Also the fact it was impractical for a dirigible mast because shifting currents and winds would either make it impossible to land or would circle the blimp around and hit buildings. The workers faced these obstacles and finally realized that they couldn't do it. 2 2 2 +15515 6 "The Mooring Mast by @ORGANIZATION2 outlines the problems architects had when attempting to allow dirigibles to dock at the top of the Empire State Building. The idea was impractical, mainly because of safety reasons. Most dirigibles used hydrogen instead of helium, which is highly flammable. If an accident were to occur, the dirigible would crash into the thousands of pedestrians in New York City. Nature was another reason why this idea was impractical. In New York City, there was constantly shifting winds that swiveled the dirigible out of control, even when docked. Some dirigibles used lead weights to prevent the back from swiveling, but in New York City ""they would be dangling above pedestrians on the street... neither practical nor safe."" @CAPS1, air laws prevented the dirigible docks from becoming a reality. It was illegal for the dirigibles to even approach the area because of how low they would have to fly. Mooring masts were impractical and ""never fulfilled its purpose, for reasons that should have been apparent before it was ever constructed.""" 3 4 4 +15516 6 "In the excerpt ""The Mooring Mast"" by Marcia amidon @CAPS1 there was a few obstacles while trying to build a dock for the Empire State Building.The first obstacle was the little room they had for a landing spot. New York has alot of people in it and alot of buildings. ""The one obstacle to there expanded use in New York City was the lack of a suitable landing area."" They were very big so they needed enough room not to hit anything else.Secondly was safety. They had to think about all the people and how close it would be to the building. ""The winds on top of the building were constantly shifting due to violent air currents."" If the wind blew to hard it could swing it back into the building.Lastly the danger of the weights being over a whole bunch of peoples heads is pretty serious. ""... using these at the Empire State Building, where they would be dangling high above pedestrians on the street..."" If one was ever to fail it would probly kill someone. No one would ever get over what happened." 2 3 3 +15517 6 "Some obstacles that the Empire State builders had to face when attempting to allow dirigibles to dock there were that a thousand-foot dirigible moored at the top of the building, held by a single cable tether, added stress to the building's frame. The steel frame of the empire state Building had to be modified and strengthened to accomodate it with the new situation, which the cost was going to be over sixty thousand dollars. Another obstacle to allow dirigibles was the mast; an obstacle of the mast was nature itself. The winds were constantly shifting due to violent air currents. When the dirigibles were going to land the back of the ship was going to swivel around the mase causing it to not be safe." 3 3 3 +15518 6 "Builders of the Empire State Building faced many challenges while attempting to allow dirigibles to dock there. One of them was not being able to just drop a mooring mast on top of the Empire State Building's flat roof. A dirigible attached the top of the building, held by a single cable tether, would stress the building frame. Its weight and air pressure would weaken the foundation of the Empire State Building. They had to make sixty thousand dollars worth modifications to the frame work so it could be strong enough to with stand the weight of the dirigibles. Another problem the mooring mast not fulfilling its purpose, which should have been thought about before it was built; safety. Many countries outside the U.S used hydrogen instead of helium, hydrogen is really flammable. There was an inccident where a blimp was destroyed in a fire due to hydrogen in their balloon. The biggest challenge was the wind above the building. The wind was constantly shifting because of violent air currents. If the blimp was tethered to the mooring mast, the back would turn on the mooring mast. Blimps use weights to land in open fields but couldn't over the Building because weights dangling over pedstrians wasn't safe. Builders had troubles attempting to allow blimps to dock there." 3 3 3 +15519 6 "During the attemp in building a docking station for dirigibles on top of the Empire State Building there were many obstacles that made this idea less and less possible. One huge problem was due to the building's foundation. A swinging blimp, which can be up to a thousand feet in length, on top of the building would add a huge amount of stress. This meant extra money would need to be dumped into the strengthening of the foundation and framework, in order to support a huge zeppelin on the mooring mast. Since the building tops out at 1,250 feet in altitude, fierce air currents rip through the top of the building. This caused impossible docking conditions because the blimp could hit the building and pop. Due to the flammability of hydrogen this dangerous eruption could wreck havoc on the densely populated city below. Refering to the Hindenburg explosion in Lakehurst, @CAPS1 1937, ""The owners of the Empire State Building realized how much worse that accident could have been if taken place above a densely populated area."" Due to the mainly safety reasons the Docking station for dirigibles was never built." 3 3 4 +15520 6 "There were numerous obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One big problem they faced was the wind. The way the mooring station was built meant that the wind could catch the tail of the dirigible, causing it to spin around the building. Also, when the mooring station was completed, the wind made it unsafe for dirigibles to get close to the building. Another problem they faced was the stability and support of the building. ""Over sixty thousand dollars' worth of modifications had to be made to the building's Framework."" (@CAPS1 @NUM1) This was so a blimp wouldn't pull the mooring station off the building. One final problem they faced was the safety of the people. It is said that most @CAPS2 dirigibles use flamible gasses to fly. If there was an accident like the Hindenburg over the busy New York streets it would be terrible. There were many problems faced by the building crew of the Empire state building, wind, stability, and safety are just a few." 3 3 3 +15521 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. One of the very important obstacles they had to face was the thousand-foot dirigible adding stress to the buildings frame. Therefore, ""... have to be modified and strengthened to accommodate this new situation."" (@NUM1) @CAPS1, the builders face the obstacle of safety. Dirigibles used hydrogen, ""... rather than helium, and hydrogen is highly flammable."" (@NUM2. line @NUM3) The greatest obstacle faced by the builders was nature. As the winds were shifting at the top of the building, the back of the dirigibles swiveled around the mast. Previous solutions; ""dirigibles moored in open landing fields could be weighed down in the back with lead weights..."" (@NUM4. line @NUM3-5) were not safe with the mooring mast on the Empire State Building. Lastly, an obstacle they faced was that there was a ""law against airships flying too low over urban areas."" (@NUM6. line @NUM7) this made it so the dirigibles could not even approach this area. There were several obstacles faced when the builders were trying to make the Empire State building a docking station." 3 4 4 +15522 6 "The builders of the Empire State Building faced many obstacle while building it, some of those obstacles being saftey, the technology they had, and, the planning that they put into building the mooring mast. There problems with the safety of the mooring mast was that, dirigibles that were from countries other than the @LOCATION1 use hydrogen instead of helium. Hidrogen is very flammable so the risk of a fire in the dirigible was very great. Also another problem the builders faced with safety was that the winds on top of the building would be much too great to succesfully land a dirigible. The problems that the builders faced with technology was that they didn't have the technology to succesfully land a @DATE1 ft dirigible at the top of a tower using a single cable because it would add stress to the buildings frame, and the stress from the wind pressure would be hazardous to the buildings frame. The obstacles that the builders faced with the planning of the mooring mast was that they didn't plan well enough and that they should have seen that the mast would be a failure from the start." 3 3 3 +15523 6 "Based on the excerpt ""The Mooring Mast"" by @ORGANIZATION2. The builders of the Empire State Building faced certain obstacles in attempting to prohibit dirigibles to dock. The three main obstacles the builders faced were their concern was safety, nature itself, and the existing laws of airships. Safety is a major factor when constructing. The builders had the chance of using hydrogen rather than helium. Risking the fact of how highly flammable hydrogen is. Later realizing how bad it could of been if what happened to the German dirigible ""Hindenburg"" on May 6, 1937. Could of happened to them taking place above a ""densely populated"" area like New York City. Nature itself was also an obstacle, because the winds on top were shifting constantly. This could potentially cause the back of the dirigible to ""swivel"" around, aswell around the mooring mast. The final obatoce was that of the ""existing laws against aircrafts flying too low over urban areas."" They feared that the winds would blow the dirigibles into sharp spires of other structures, and puncture the dirigible's shell. In two failed attemps they desided to cancel the construction of the ""Mooring Mast"" due to ""the unsolved problems of mooring airships to a fixed mast at such a height that made it desirable to postpone to a later date the final installation of the landing gear.""" 4 4 4 +15524 6 "The builders faced many problems in their attempts to allow a dirigible to land at the Empire State Building. One of the main reasons was safety, ""most dirigibles outside the United States used hydrogen rather than helium, and hydrogen is highly flammable."" I would have been to large of a risk to allow such a dirigible over New York. Another problem was the air currents, ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" A final problem was a law ""against airships flying too low over urban areas."" This law would forever prohibit any airship to dock with the mast, or even approach the city to attempt to dock." 3 3 3 +15525 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The obstacles were safety, nature, and laws.Most foreign dirigibles used hydrogen which is highly flammable instead of helium. If a dirigible were to catch on fire above a very populated the city the outcome would be bad.The winds that high were very violent. There was no way to keep a dirigible still, even though the front is hooked to the building the back would swing. It was not safe.There was a law prohibiting airships from flying too low over urban areas. It was illegal to fly close to the building or to dock at it.The builders of the Empire state Building faced many obstacles in trying to allow dirigibles to dock there." 3 3 3 +15526 6 "The building of the Empire State building was a project which faced many obstacles. Due to the additional plan of building a mooring mast at the top of the building, A series of challenges and possibilities were forced to be taken into consideration. Firstly, the addition of a mooring mast to the top of the building, would significantly weigh down the building, adding stress to its frame. Because of this, over @MONEY1 worth modifications would have to be made to enforc the building's frame and stabilize it is a whole. Laws and regulations about how high airships could hoover over urban areas also restricted the use of the mast as because the building was located in the middle of a city, a densely populated area with thousands of pedestrians below, it was clearly neither practical, nor safe. Furthermore, Nature itself was the greatest obstacle to the success of the mast as because many foreign dirigibles used hydrogen instead of helium, this risked a fire hazzard. Lastly, strong winds and violent air currents all in all prevented the construction of the mast, as using the top of the building as a dock for airships maybe just a bit far fetched." 4 4 4 +15527 6 There were many obstacles that the workers had to overcome to succeed in the process of the mast. They had to figure out how they were going to land the big aircraft on the small framed building. Also the workers needed to figure out a way to safely get the passengers on and off the aircraft while the tail was whipping around in the air. They needed to talk and consult with the U.S. Naval Air station because they were leaders in research of the dirigibles. Another obstacle the workers had to overcome was the law against low flying aircraft in @ORGANIZATION3. So those are some obstacles that the constructors of the mast had to overcome to build the mast upon the Empire State building in @LOCATION1 2 2 2 +15528 6 "Being an architect and construction worker is one of the hardest jobs in the world, especially at an elevation of @NUM1 feet. Building the Empire State building was no easy task. An even more challenging task was building a mooring mast, a docking area for dirigibles, on top of the Empire State Building. Since the building had a flat roof, ""architects could not simply drop a mooring mast on top of the Empire State building."" Architects had to build an extension in the shape of a rocket jutting out from the flat roof. The Architects also realized that having a single cable at the top of the extension to hook onto the dirigible, would add tremendous stress to the building. They had to find a way to ease the stress to the building's foundation. Although the architects faced challenges they did overcome them and planned to put their ideas into action." 1 2 2 +15529 6 "In attempting to allow dirigibles to dock at the top of the Empire State Building, the builders faced many obstacles. One obstacle being to much stress on the buildings frame. The dirigible would somehow have to be connected to the frame, which was @NUM1 feet below. Another problem the builders faced was safty. The workers wanted to use hydrogen to keep the dirigibles afloat, but realized hydrogen is flamable. Other problems where nature and law. Nature's winds would complicate the dirigibles from staying still. Law stated that the dirigibles would be flying to low for urban areas. The builders of the Empire State Building faced many problems that led to a plan failed." 3 3 3 +15530 6 "Many years ago, people sought a new and more practical mode of transportation. Upon being introduced to the dirigible (or blimp), it was believed that this small aircraft could be the transportation of the future. Plans were made for a mast to be constructed atop the Empire State building located in New York City. The project was soon underway, but not without obstacles along the way. Hazards in nature, construction of the Empire State Building, and differences between American and @CAPS1 dirigibles hindered the success of the mooring mast. It is a well-known fact that nature can be unpredictable and incredibly harsh. This makes all transportation, especially transportation by air, difficult and dangerous. In the construction of the mooring mast, violent wind currents were noted. It would be nearly impossible to allow a dirigible to dock atop the Empire State Building on a very windy day because only the front portion of the aircraft would be secure. This endangers pedestrians. Secondly, it was noted that the Empire State Building's roof required improvements in order for dirigibles to dock there. Upon being secured by one cable tether, the weight of the dirigible would press on the building. This could potentially be hazardous, and cost about @MONEY1 to fix. Lastly, dirigibles from other countries would not be able to fly to the United States. American dirigibles are filled with helium, which made it very light and easy to fly. @CAPS1 models used hydrogen, which happens to be incredibly flammable. After a German dirigible was damaged beyond repair by fire, it was determined that these models could not be used. Ultimately, the dangers associated with using dirigibles for travel outweighed the benefits. It was determined that too many accidents could because by dirigibles, so the Empire State Building had to be used another way." 4 4 4 +15531 6 "The obstacles the builders had to go through to allow dirigibles to dock there was by a electrical winch. By tying it to the mast, The wind pressure. Need to be in a open field and weighed down in the back with lead wieghts. Try to tie the building but it was illiogal so they coun't do it. Because of the force ful winds the also couldn't tie it on to the building. The dirilage mooring equiment was never stalled in either. Dirilgables and their passengers had quietly dissappeared and didn't become transportantion instead had given away to airplanes." 2 1 2 +15532 6 "Some problems the designers faced, were the violent air currents that form in urban areas, this would be a problem because the dirigible would be tossed around due to it's light weight. Another problem, is the fact that it would be too dangerous to land a dirigible over a densely populated area like New York City." 1 1 1 +15533 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock were very difficult. The builders had to modify and strengthen the building. The modifications were very expensive. ""Over sixty thousand dollars"". Another obstacle the builders faced were the winds on the top of the building. The winds on the top of the building were constantly shifting due to violent air currents. Even if the dirigible was tethered to the mooring mast the back of the ship would swivel around. Also, They faced the safety. Builders were affraid that a @CAPS1 would happen because the dirigibles refill of hydrogen is very flammable. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" @CAPS2, Another reason was that the law against airships flying too low over urban areas. This law made it clear that the dock would never happen. Even though they were pretty high of the ground it was still effective. They couldnt even tied it up and secure it so it won't fall because it was still against the law This law made it illegal for a ship to ever tie up to the building or even approach the area." 4 3 4 +15534 6 "In the short story of ""The Mooring Mast."" by Marcia Amidon Lsted describes three obstacles of the builders of the Empire State Building faced for the attemption to allow dirigibles to dock there. Two resons were safty. The first ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"". A flammable ship above a ""densely populated area such as dowtown New York could result in desistiar. The second safty reson was due to ""The winds on top of the building were constantly shifing due to Violent air currents."" Dirigibles ""dangling high above pedestrians on the street, was neither Practical nor safe."" The final obstacl the Empire State Building faced was Law. ""An existing law against airships flying too low over urban areas."" ""This Law would make it illegal for a ship to ever tie up to the buildings or even approach the area."" The Law and to safty obstacles the builders of the Empire' State Building faced would not allow any attempts for dirigibles to dock there." 3 3 3 +15535 6 "According to the excerpt from @ORGANIZATION2's ""The Mooring Mast"", the builders of the Empire State Building faced obstacles while attempting to allow dirigibles to dock there. When Al Smith was first planning the structure and use of the mass, he seems to be overambitious. In paragraph @NUM1, the reader gets the sense of how competitive Smith was, which is a quality that can get in the way of practicality. Smith's determination to have the Empire State Building be the tallest was an obstacle because it was what first initiated the idea of the mooring mast. Although it is made clear to the section ""Designing the Mast"" that a lot of planning went into the building of the mast, the extra effort needed for this was an obstacle as well. The mast delayed completing the whole building and as @PERSON1 says in paragraph @NUM2, the mast caused unsolved problems and postponements. A significant reason to the failure of the mast was the issue of safety because the dirigibles were highly flammable. As it also says in paragraph @NUM3, ""the greatest obstacle to the successful use of the mooring mast was nature itself."" These both show the impracticality of the installment of a dirigible dock, revealing the largest obstacles the builders faced. Because ambition was more important than practicality in the building of the mooring mast, the builders of the Empire State Building faced obstacles and failed." 3 1 2 +15536 6 The @CAPS1 the builders of the Empire State building faced in attempting to allow dirigibles to dock there was the lack of a suitable land area. Another Obstacle they faced was that the winds on the top of the building were constantly shifting due to violent air currents. They also had to make shore that No sharp objects would punkener the dirigibles. These are the @CAPS1 the builders of the Empire state building faced. 1 2 2 +15537 6 "From what seemed to be a very possible way to make the Empire State Building famous to relizing how hard it was going to be the builders of the Empire State Building faced several obsticals in allowing dirigibles to dock. These problems included added Stress to the buildings frame. Therefore the foundation would have to be motified and Strengthened to accomodate this added stress."" Not only did the builders have to worry about structural but the winds. ""The winds on top of the building were constantly shifting due to violet air currents"" After all of the obsticlas the builders finally realized that this ""dream"" was impossible to overcome" 2 2 2 +15538 6 "The builders of the Empire State building were having many problems in attempting to allow dirigibles to dock there. Their first problem was that they could not drop a mooring mast on top of the Empire state building. Mainly because it's only held by a single tether, and because it would add stress to the buildings frame. Another @CAPS1 is that the wind speeds were so much greater in the top of the building that it pushed the dirigibles away from the docking station. Also, most dirigibles from outside the @LOCATION2 used hydrogen rather than helium to stay aloft, and hydrogen is extremely flammable. For the creators of the building, The idea just seemed unpractical, a dirigible would be to hard to keep in one place dangling @NUM1 feet in the air above New York City." 3 2 3 +15539 6 "Based on the excerpt, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was that United States dirigibles used hydrogen rather than helium, and hydrogen is highly flammable. If the dirigible was ever destroyed by fire above a densely populated area like downtown New York the accident could be very dangerous. One of the grestest obstacle of using the mooring mast was nature itself. The author says ""The winds on top of building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Dangling lead weights to weigh it down over pedestrians on the streets was niether practical nor safe. The Mooring Mast by @ORGANIZATION2 tells a few obstacles the builders had to face to allow dirigibles to dock the Empire State Building." 3 3 3 +15540 6 "In The Mooring Mast by Marcia Amidon Lsted, she describes the obstacles the builders of the Empire State Building faced when attempting to allow dirigibles to dock there. In paragraph Four it says, ""The one obstacle to their expanded use in New York City was the lack of a suitable landing area."" This would mean that there was not much room for the dirigibles when it was not in year. In paragraph sixteen it says, ""The U.S Navy dirigible Los Angeles approach to the mooring mast but could not get close enough to tie up because of forceful winds"". This means that weather could make traveling dirigibles very dangerous." 2 1 2 +15541 6 "In attempting to allow dirigibles to dock at the Empire State Building some obastacles they faced were challenging. One name they called the dirigibles in the @DATE1's was ""Transportation of the Future"". There was also an existing law against airships flying to low over open areas. The builders had to make lots of changes to make this perfect and get it the way they want it. Safty was the most important, most dirigibles from outside the United States used hydrogen instead of using helium. Although hydrogen is highly flammable, they still used it. In addition ""The highest open observation deck, Intended for disembarking passengers, has never been open to the public"". And to this day is not open for the public to use." 2 2 2 +15542 6 "The three insurmountable obstacles that the builders faced in attempting to allow dirigibles to dock at the Empire State building were all a matter of public safety. They should have reallized that ""most dirigibles from outside the United States used hydrogen"" and that they were thus prone to exploding. In an urban city like New York, a thousand foot dirigible that would cover four blocks would cause immense casualties. Secondly, violent air currents cause the winds at the top of the Empire State Building to be constantly shifting. The mooring mast would not work in that environment unless the back of the dirigible were weighted down with lead weights. The lead weights ""dangling high above pedestrians on the street [would be] neither practical nor safe"". Thirdly the importance of public safety from aircraft had already been reallized in the form of a law banning airships from flying too low over urban areas. ""This law would make it illegal for a ship to ever tie up to the building or even approach the area"". Docking in an urban setting proved too dangerous to risk." 3 3 3 +15543 6 "Although the purpose of the mooring mast was to help dock passengers safely from the dirigible, there were many difficulties that could have endangered many. ""When the German dirigible '@CAPS1' was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State building realized how much worse that accident could have been if it taken place above a densely populated area such as downtown New York."" (paragraph @NUM1) This shows that if an accident like a dirigibles flaming up above New York, there would be many serious injuries. ""In December 1930, the U.S. dirigible Los Angeles approached the mooring mass could not get close enough to tie up because of forceful winds."" (paragraph @NUM2) The toughest obstacle was to tie up the dirigible while the wind was extremely blowing at it. The idea of using the mooring mast atop of the Empire State Building was then, dropped." 2 3 3 +15544 6 "In the excerpt from ""The Mooring Mast"" by Marcia Amidon Lsted the were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle the builders faced was finding a way to have a dirigible moored on top of the Empire State building without adding stress to the buildings frame. ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame"" (Lsted). Another obstacle that was face was money. they needed to make more than sixty thousand dollars' worth of modifications. ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework"" (Lsted). The biggist obstacle the builders had to face was nature, the winds would shift the dirigible to much. ""The greatest obstacle to the success of the mooring mast was nature itself"" (Lsted). As you can see there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there." 2 2 2 +15545 6 "Although they made a valiant effort to make a seemingly ingenious idea into reality, the obstacles faced by the constructors of the Empire State Building in creating a dock for dirigibles proved to be insurmountable. One of the challenges faced by the builders was the tumutuous winds at the top of the Empire State Building. These forceful gales made it virtually impossible to manuever a dirigable at that elevation, much less dock it to a building. Another barrier that the architects faced was the fact that there was a law saying that airships were forbidden from flying too close to the ground above urban areas. This meant that it would be even illegal for any dirigable even come close to the Empire State Building. Finally, the creators of the Empire State Building faced the challenge of safety: @CAPS1 are filled with highly flammable hydrogen, and an airship explosion over a density populated urban area would have horrific results." 3 3 3 +15546 6 "The builders faced many problems attempting to allow dirigibles to dock on the empire state building. First of all, tying a dirigible with one cable would add tremendous weight to the frame of the building. In order for this to be possible, the steel frame of the Empire state building would have to be strengthened which would add an additional cost of @MONEY1. After the mast was built, the Empire state building faced new problems as well. Most dirigibles used hydrogen which was highly flammable. After what happened to the Hindenburg, the architects knew that the results would have been much worse in a densely populated area such as New York City. Another problem was that it was too risky to have a big dirigible hanging above pedestrians a few thousand feet in the air. The law also hindered Al Smith's idea. The law stated that airships were prohibited from flying too low over urban areas. When the dirigible Los Angeles attempted a trial, builders found that the wind blew too high for the dirigible and they feared it would fly into nearby buildings. The idea of dirigibles was soon forgotten and gave way to airplanes." 3 3 3 +15547 6 "In the excerpt, ' The Mooring Mast' I Marcia Amidon Lsted, the constructors of the empire state building faced many obstacles while trying to create a docking place on such a tall building. Obstacles a law against airships flying to low and nature itself made it hard to create such a place in paragraph @NUM1, it says ' The other practical Reason why dirigibles could not more at the Empire State Building was an existing law against airships flying to low over urban areas."" There was alReady a strong argument on building the mast but Al Smith ignored it. This law made it illigal for ship to ever tie up to the building. In paragraph @NUM2, the author tells why nature was a problem she says ""The winds on top of the building were constantly shifting due to violent air currents"" Already the @CAPS1 is showing signs of the danger ahead if they pursued the idea any farther. Drigibles moored in open landing fields and could be weighed down by lead weights. However, using these in the Empire State Building where they would be dangling in the air wasn't practical nor safe. All those Reasons contribute to the Reason why docking wasn't allowed." 2 3 3 +15548 6 "The builders of the Empire State Building faced several obstacles in attempting to allow dirigibles to dock there. The greatest one being violent winds so high up. The back of the zeppelin would swivel around the mooring mast. There was also the fear of it blowing into the sharp spires of nearby buildings, causing it to burst. They couldn't use lead weights to hold it in place, because it wouldn't be safe to have them dangling above the streets. There was, at the time, a law against airships flying too low over urban areas, for simelar reasons. This would have made it illegal for a zeppelin to dock there anyway. These are some obvious problems, overlooked in the design of the mooring mast." 3 3 3 +15549 6 "In the nonfiction excerpt ""The Mooring Mast"" by @PERSON1, the architects faced many obstacles in attempting to allow dirigibles to dock there. The first obstacle the architects faced was the lack of a suitable landing area. There was nowhere to land the blimps. ""A mooring mast added to the top of the building would allow dirigibles to anchor there for several hours for refuling or service, and to let passengers on and off."" This quote is saying that they needed to build a mooring mass to overcome the obstacle. The second obstacle they faced was the architects couldnt just drop a mooring mass on top of the building. ""A thousand-foot dirigible moored at the top of the building, held by single cable wether, would add stress to the buildings frame."" This quote is saying the stress of the load and the wind pressure would have to be transmitted and the still frame of the building would have to modified and strengthened to accommodate the new situation. The third obstacle which was the greatest obstacle was the successful use of the mooring mast. ""The winds on top of the building were constantly shifting due to violent air currents."" This quote is saying the nature of the mooring mass itself was dangerous because the back of the ship would swevel around the mooring mass. This made the mass unsafe. Those three obstacles were what the architects faced in order to build the mooring mass, in which to compete having the highest building in the world." 3 3 3 +15550 6 "There were several obstacles to the success of the construction. Perhaps the main obstacle, the obstacle that nothing could be done about, was the wind itself. On paragraph @NUM1 it mentions how the winds on top of the building were constantly shifting due to violent air currents. These giant- balloon like machines would constantly swivel around the mooring mast even if they were tied down. The Hindenburg disaster in May 6, 1937 also proved how dangerous it would be to have blimps filled with highly flammable hydrogen gas over a densely populated area, like downtown New York. The project was also held back by existing laws about flight in an urban area. ""It was illegal for a ship to ever tie up to the building or even approach the area"" -says the author on paragraph @NUM2. Incoming blimps would simply be flying too low against law for this to work." 3 3 3 +15551 6 "The empire State Building builders faced different obstacles in attempting to allow dirigibles to dock there. The builders first had to learn about the mooring lines. They ""consulted with experts, taking tours of the equipment and mooring operations ""to learn more about them first hand. The builders also had to worry about the frame of the Empire State Building. The frame ""would have to be modified and strengthened to accomodate this new situation."" This meant the builders would have to go back and work on the frame again. Attempting to allow dirigibles to dock on the Empire State Building caused the builders to face different obstacles." 3 1 1 +15552 6 "In the excerpt The Mooring Mast by @ORGANIZATION2, the architects went through many obstacles in allowing dirigibles to dock at the Empire State Building.The engineers had to go through different expirences and consult with experts, and take tours of the equipment that would be used on the project. The architects had to realize they couldn't @CAPS1 drop a mooring mast on top of the Empire State Building, they had to realize the consequences and danger, like the wind pressure. Also, fires if a firework you happen many people would get hurt or killed due to New York's population The architects faced many obstacles but then taught them the danger and outcome if building the mooring Mast." 2 3 3 +15553 6 "There were many obstacles that the architects working on the mooring mast of the Empire State building had to face. The first was the fact that derigibles were not becoming the next transportation craze. Without derigibles to use the mast, it would serve no purpose. Another obstacle was the laws in place that prevented derigibles from flying too low over urban areas. So no dirigibles could have legally docked at the mast anyway. A final obstacle was nature. Fierce winds at the top of the building could spin the dirigibles around, making docking dangerous and impractical." 2 2 2 +15554 6 "When building the Empire State Building, builders faced many obstacles attempting to allow dirigibles to dock there. From the reading excerpt The Mooring Mast by Marcia Amidon Lsted stated that dirigibles were as long as one thousand feet, tha't four blocks in New York City. This brought up the first obstacle, which is they have no where to land this thing. They couldn't put it above new york because of an existing law against airships flying too low over urban areas. Architects also had to find a way to redesign the building so that it support the weight of the dirigible. The biggest obstecle, they faced was nature. The winds at the top of the building were constantly changing and although it would be tied down to the building the back of it would still be swirling, they didn't have a way to fix that, because usually dirigibles were weighed down with cylinder blocks in an open field and it would be to risky to do that over a populated area." 2 3 3 +15555 6 "In the excerpt, ""The Mooring Mast"" by @ORGANIZATION1 wanted to allow dirigibles to dock on the Empire State building for refueling and services and to let passengers off and on. However, the builders of the Empire State Building went through many obstacles to allow this to happen. ""The architects and engineers of the Empire State Building consulted with experts, taking tours of the equipment and mooring operations at the @ORGANIZATION3 in Lakehurst, New Jersey"" (@NUM1). They had to meet with experts and analyze if that was going to be a successful idea. ""The mooring mast of the Empire State Building was destined to never fulfill it's purpose, for reasons that should have been apparent before it was ever constructed....the greatest obstacle to the successful use of the mooring mast was nature itself"" ('s @NUM2 & @NUM3). Another obstacle that the builders had to deal with was nature. the winds up there were very strong, therefore the idea of docking dirigibles on the Empire State Building was not successful." 2 2 2 +15556 6 "Based on the excerpt, the builders of the Empire State building faced many obstacles durring construction. While designing the mast the architects realized they couldn't just drop the mooring mast on to the Empire State building as this would add stress to the buildings fram. So the building would have to be modified and strengthened to withhold these conditions. Then the builders ran into a problem with safety, the winds on top of the building were violent and constantly shifting. This would cause the dirigible to swivel around the mast. They the decided to add lead weights to weigh the dirigible down but, having those dangling high above pedestrians on the street was neither practical nor safe. Lastley, existing laws against airships flying low over urban areas made it illegal to complete their goal. Overall the planning of the empire state building had many difficulties." 3 3 3 +15557 6 "When building the mooring mast of the Empire State Building, architects faced many obstacles, such as spontaneous combustion, nature, and airship related laws. The first issue faced by builders was spontaneous combustion. Due to the accidental fire on the Hindenburg, the owners of the Empire State building realized that if a dirigible lit up on their building, the results would be even worse, for debris would fall on the busy New York streets. A second issue builders faced was mother nature herself. Because of violent air currents, the winds above the building were constantly changing. Is would mean that even if docked and tethered, the back of the ship would still spin. Normally, lead weights held down dirigibles in fields, but over New York City would be dangerous for they could snap off and fall to the pedestrians below. Finally, there were laws set in place regulating airship flight that held back construction. These laws set a limit on heights above urban areas, making a dock to the Empire State building, or even just approaching it, illegal. Builders of the mast on the Empire State building faced many obstacles during construction, such as fires, nature, and the law." 3 3 3 +15558 6 "The builders of the @CAPS1 state building faced many problems in attempting to allow dirigables to dock there. Their first problem was that it would add lots of stress to the building. This means if they had a dirigible tied up to the building in the wind it would put weigh on the building or pull it around. ""Nature was their greatest obstacle"" and it was very unsafe to have something like that hanging over the crowded streets of New York. In an atemp to make the building stronger the builders had to spend over ""sixty thousand dollars"" on the improvement of the skeleton or frame. There were also laws in place that did not allow large aircraft to fly low over a crowded city. This tells us that even if they did build the mast it would be illegal for the dirigibles to land there. There were many problems and the landing of a dirigible on the empire state building never happened." 3 3 3 +15559 6 The builders of the Empire state building faced countless problems in attempting to allow dirigibles to dock there. One main problem is safety. Even though the dirigibles was going to be hooked on top of the building the wind could potentially whip the dirigible to crash into the building. Also after the crash of the Hindenburg the builders realized how much damage could be done if that were to happen in New York. Another problem they faced is the laws. The law prohibited any aircraft flying too low over urban areas. These problems caused this idea to disappear. 3 2 3 +15560 6 "From the idea of building the Empire State Building to attempting to allow dirigibles to dock there, the builders faced different obstacles while attempting to allow dirigibles to dock there. Al Smith thought it was a good idea to add a mooring mast so dirigibles could dock there for several hours. However, in order to allow dirigibles to dock there, builders had to transmit all the stress of the dirigible's load and wind pressure to the building's foundation because a thousand-foot dirigible moored at the top of the building could add stress to the frame of the building. One of the greatest obstacle builders faced was the wind or nature. The strength of the wind were constantly shifting due to violent air currents. For safety reason, most dirigibles weren't safe because they mostly used hydrogen and hydrogen is flammable. Another obstacle they faced was an existing law that didn't allow airships to fly too low over urban areas. Irving Clavan said, ""The as yet unsolved problems of mooring air ships to a fixed mast at such a height made it desirable to postpone to a later date the final installation of the landing gear."" Due to the obstacles the builders faced, the idea of using the mooring mast for dirigibles disappeared." 4 3 4 +15561 6 "In the excerpt from ""The Mooring Mast"" by Marcia Amidon Lsted, Lsted addresses many of the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. They had to make many adjustments to the building's framework, the safety of the dirigibles was dangerous, and nature itself posed as a huge obstacle for the builders.First, the architects realized that they could not drop a mooring mast to the top of the Empire State Building because of the stress it would add to the building's framework. As Lsted states, ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" The architects then had to make adjustments which would strengthen the building to allow the docking of the dirigibles. These improvements cost the architects @MONEY1!The second obstacle faced by the builders was the safety of the dirigibles. At the time most of the dirigibles were filled with hydrogen which was highly flammable. The architects saw how dangerous this could be when they witnessed the destruction of the German Hindenburg blimp. If the same thing was to happening in New York, which is a densely populated area, it could cause serious damage.Another obstacle the builders faced when trying to dock the dirigibles on the Empire State Building was nature. The winds at the top of the Empire State Building were constantly shifting which would cause the blimp to be very unstable. The blimp is usually weighted down by lead weights but in New York this would not be safe he cause they would be dangling above pedestrians. The many obstacles faced by the architects caused the docking of the blimps to be unsuccessful." 3 4 4 +15562 6 "Based on the excerpt ""The Mooring Mast"", by Marcia Amidon Lsted, the builders of the Empire State building faced many obstacles and allowing dirigibles to dock there. Some of these obstacles included the fact that there was a law against airships flying too low over urban areas. This made it impossible for a ship to be tied to the building because it would be illegal. Also, in line three of paragraph thirteen, it is stated that it would have been unsafe because many dirigibles from other countries used hydrogen instead of helium, and hydrogen, being very flammable would put people not only inside of the dirigibles, but everyone near and around it, in great danger. Another obstacle mentioned in the excerpt, perhaps the largest one, was the violent air currents causing wind at the top of the building to always be shifting, making it nearly impossible and unsafe for them to land there. Overall, the excerpt has made it clear that the only sensible way for dirigibles to land would be in an open field." 4 3 4 +15563 6 "To allow dirigibles to dock at the Empire State Building was difficult. For example, the mast was really hard to build it. The engineers and architects needed to think about how to do it. And made sure passengers' safety. First of all, dirigibles is heavy. Hydrogen might be make it broken. Nobody know what will be happen when dirigibles fly on the sky. The body of the dirigible could swing in the wind. Perhaps out off controll.Which floor can we put the mast is also really important. I think no one like to work under the huge heavy dirigibles." 1 1 1 +15564 6 "Right now I going to tell us Some of the obtacles the builders of the Empire state building faced in attempting to allow dirigibles to dock there. First, In paragraph @NUM1, the architects were blind to the potential problems of the mast because Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. Second, in paragraph @NUM2 the greatest obstacle to this successful use of the mooring mast was nature itself. the winds on top of the building were constantly shifting due to violent air currents. Third, in paragraph @NUM3, the other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas. This is why never was completed the mooring mast (dirigible) for this serious obstacles to put this in the Empire state building." 3 3 3 +15565 6 The builders had many obstacles to face in attempting to allow dirigibles to dock there. During the @DATE1's dirigibles were a big thing in transportation. The problem was that there wasn't many landing areas for the dirigibles to land because they were so big. So Al Smith came up with an idea to make a landing dock on top of the Empire State Building for the dirigibles. The government had to go over Al Smith's plan to make sure it was safe and would work. Al Smith's plan was to have the dirigibles hang onto the building by a single tether wire. It wouldnt be alowed because the dirigibles hanging from the wire would cause to much stress to the building. It was also not possible to have dirigibles to land on the Empire State building because the hydrogen and the dirigibles would be a safety hazard. The hydrogen in the dirigibles could catch on fire and burn the Empire State building down. 3 2 3 +15566 6 "The owners of the Empire State Building faced quite a few obstacles while attempting to allow dirigibles to dock at the mooring mast. One of the first obsticles they faced was having to modify and strengthen the steal frame.This was essential in order for the building to be able to support the mooring mast where the dirigibles were supposed to dock. Another great concern was safety, they feared an accident similar to the Hindenburg and thought of ""how much worse the accident could have been (paragraph @NUM1) if it had occurred in a city like New York. The greatest obstacle they faced however was nature. The violent air currents caused the wind to constantly shift which would cause the docked aircrafts to ""swivel around and around the mooring mast"" (paragraph @NUM2). A law which prevented airships from flying too low also made this dream a great fear to overcome. This prohibited them from not only docking there, but even approaching the area. Although this dream may have seemed possible to begin with, the builders should have realized the many obstacles making their dreams quite impossible." 4 4 4 +15567 6 "Obstacles builders faced in constructing the Empire State Building to allow the attempt of a dirigible to dock were blind. The tuge and pull of the unforecast wind made the dock dangers for passangers and the buildings foundation. However, making such attemps were eleagl for dirigibles to fly over urban areas, incase of failer. Spires as well made the drop impossible for them to approach also in case of puncher. Spending sixty thousand on modification to moor mast on the @ORGANIZATION2 for the safe dock of dirigibles. The idea was lost to the creation of the mordern new airplane." 2 3 3 +15568 6 "Based on the excerpt, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were. The used of hydrogen rather than helium because hydrogen is highly flammable. The obstacles of it was nature itself. There's always strong and dangerous winds on top of the building. So it makes it possible for the dirigible to swivel around which is dangerous. Dirigibles moored in the open landing fields could be weighed down but, using these at the Empire State Building can dangling high above pedestrians which is not safe. Another reason is the existing law against airships flying too low over urban areas. If the dirigible blows the sharp spires of the building can puncture the dirigible's shell. These are the reasons and obstacles why its hard to attempt the dock of the dirigibles." 4 3 4 +15569 6 "In the excerpt The Mooring Mast by Marcia Amidon @CAPS1 the obstacles the builders of the Empire State Building faced to allow dirigibles to dock there. One example is one paragraph @NUM1 ""existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area." 1 1 1 +15570 6 The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was a mooring mast would add to much stress to the building's frame. The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. The winds on top of the building were constantly shifting due to violent air currents. There was an existing law against airships flying too low over urban areas 3 2 3 +15571 6 They had problems with the dirigibles trying to land it thyre. The dirigible could have caught fire and it would have been worse. It was dangerous to attach piece to the part.The high wind was a problem.The dirigible could burn up fall down and people would die below. 1 2 2 +15572 6 "The builders of the empire state building face a lot of problems on trying to make a dock for dirigibles. The builders could not just simply drop a mooring mast on top of the Empire State Building's flat roof. They had to think about how the dirigible @LOCATION2 fair, they had to strengten the foundation of the building and a landing area for the dirigible. Dirigibles were able to dock him by means of an electric winch The problem with this is they were in Downtown New York and New York city was a densely populated area. A dirigible floating in the middle of a largely populated area would be very unsafe. Also a dirigible is made of hydrogen and helium and hydrogen is very flammable. So if an accident happens and a dirigible was destroyed, people below would be dead. Another obstacle was the law, Airships cannot fly too low over urban areas. The greatest obsticle of them all though was nature itself The winds on top of the building were constantly shifting due to violent air currents. This idea sounded great at first, but too many things could go wrong." 4 4 4 +15573 6 "When the Empire State Building was being constructed, the main idea was to create a mooring mast for dirigibles (blimps) to dock there. However, being the first of its kind, this idea came with many obstacles. Before constructing the mast, they had to stabilize the building with steel framework and other modifications as stated in paragraph nine. Dirigibles are very long, and the previous structure would not be enough to support it with the high blowing winds. Safety was also an issue with adding the mooring mast. Blimps from outside the United States were filled with hydrogen, which is extremely flammable, instead of helium. If something were to happen, and the blimp caught fire, that could threaten the safety of cilvians. After the mast was constructed, the high speed winds were an obstacle yet again, and they wouldn't even allow dirigibles to come close to the building. Despite how unique the idea of letting dirigibles dock on the Empire State Building was, there were many obstacles getting in the way of making the idea successful." 3 3 3 +15574 6 "While in the process of building the @ORGANIZATION1 encountered many obstacles. His first obstacle was the threat of title for worlds tallest building being taken away by the Chrysler Building. When the architect added a 185 foot spiral to the top of the building. Al Smith had to come up with an innovative way to add height to the building. This is when the idea of adding a mooring mast to the top of the building was composed and the real problems arose. When building this mooring mast, the docking of dirigibles would add intense stress to the framework of the building. ""The steel frame of the Empire State building would have to be modified and strengthened to accommodate this new situation. (paragraph @NUM1) ""The architecs would add @NUM2 dollers worth of modifications to the framework to allow it to be stable. After the building was able to accomodate dirigibles saftey issues would be encountered. First off, dirigibles are filled with hydrogen which is extremely flammable. After the disaster in New Jersey they did not want to take a chance. Next, with the wind above the building the air currents would cause violent shifts of the dirigibles. The addition of weights, used in other situations, was out of the question because they would be dangling high above pedestrians. Lastly their is an existing that airships cannot fly too low over urban areas. Which this would clearly violat. With all these obstacles to overcome the idea of docking dirigibles on this mast was shortly discarded." 4 3 4 +15575 6 "The builders of the Empire State Building were faced with a multitude of problems in attempting to allow dirigibles to dock there. First, the building frame had to be strengthened. The weight of ""the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation."" This meant that the building's frame had to be modified, which costed @NUM1 dollars. Next, it proved to dangerous to dock dirigibles to the sumputous sky-scraper. After the Hindenburg caught fire, ""the owners of the @ORGANIZATION2 realized how much worse that accident could have been if it had taken place above a densely populated area."" In accordance with this danger, there was a lot existing at the time which prohibited dirigibles from flying low over urban areas. Lastly, the largest obstacle engineers try to overcome was simply nature itself. Winds at the top of the building made dirigibles almost impossible to land. Both the Columbia and the Los Angeles tried to dock to the mast but could not battle the wind. In conclusion, the builders of the Empire State Building could not get a dirigible to dock at their tower." 4 4 4 +15576 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The first problem they encountered was that when moored at the top of the building the dirigible would add stress to the buildings frame. The builders would then have to ""modify and strengthen the empire state building to this new situation."" Another obstacle the builders would have to face is that since a dirigible used hydrogen it would be highly flammable. The builders didnt want an ""accident to take place above a densely populated area such as downtown New York. Lastly builders would have to face the obstacle of Nature. With winds so strong up top the building the dirigibles would need to be weighted down in back with lead weights which would be neither safe nor practical dangling high above pedestrians in New York City. In conclusion ""The Mooring Mast"" by @ORGANIZATION2 the builders go through many obstacles in building the empire state building." 4 4 4 +15577 6 "The obstacles the builder of the Empire State Building faced in attempting to allow dirigibles to dock there was dificult. The builder met with experts to better understand the way the dirigibles work. He also was told that architects couldn't put a mooring mast on top because of the buildings flat roof. Paragraph nine States a thousand-foot dirigible- held by a single cable tether would add stress to the buildings frame."" The stress would then be passed all the way down to the buildings foundation, nearly eleven hundred feet below. The builder put over sixty thousand dollars' worth of changes into the building. After all that time and money he was told that the plan would have to fall through. The dirigibles greatest obstacle was the wind, if it moved in the air that could be a problem. Although this plan didnt work, its still 1,250 ft and taller than the Chrysler building." 3 3 3 +15578 6 "In ""The Mooring Mast,"" a historical article by Marcia Amidon Lsted, it is made clear that there were at least three obstacles that the builders of the Empire State Building faced in an attempt to allow dirigibles to dock there. These issues were the building's pre-existing frame, fire safety, and nature itself. The plans for the Empire State Building had not intended a mooring mast to be dropped on the roof of the building. As a result, architects had to change their entire plan: ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation,"" (par. @NUM1). This was a significant difficulty. Also a concern for foreign dirigibles was that the gas the use made fire safety and issue: ""... the owners... realized how much worse that accident could have been if it had taken place above a densely populated area,"" (par. @NUM2). Getting around the fire hazard would be impossible. Finally, as stated in the article, nature was the mast's greatest obstacle. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast,"" (par. @NUM3). The violent winds kept much from happening with the mast. With the three aforementioned obstacles, the fate of the Empire State Building's mooring mast was grim. It would never do what Al Smith had intended for it." 3 3 3 +15579 6 "The lack of the landing area. Also the body of the dirigible can Swing Is another obstacle that the Empire State Building faced. The other obstacle they faced, ""The winds on top of the building were constantly shifting due to violent air currents."" The dirigibles were flying to low over the urban areas and that is a law against airships. The @ORGANIZATION2 from Los Angeles could not get close enuff to tie up the dirigible do to the wind. Alot went wrong with transportation of Passengers so they stoped doing that." 2 3 3 +15580 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. In paragraph @NUM1 the author States ""The architects could not simply drop a mooring mast on top of the @ORGANIZATION2 ing's flat roof."" This was true because it would ""add stress to the buildings frame. Also paragraph @NUM2 states ""The greatest obstacle to the successful use of the mooring mast was nature itself."" There were violent air currents, and landing techniques weren't promising. The builders had to use much caution because the idea of having a dirigible land at that height was neither practicle or safe." 2 2 2 +15581 6 "In the excerpt ""The Mooring Mast"" the builders faced many obstacles. The main issue that was not noticed till the end; was that it was an enormous safety problem. The builders wanted to make the mooring mast a docking point for dirigibles, blimps, and zeppelins from the country and from other countries, but other countries used hydrogen, rather than helium; and hydrogen is extremely flammable. A fire over a metropolis such as New York would be catastrophic! Also, dirigibles used large lead weights to weigh them down. Using them in a city dangling over pedestrians would be neither practical, nor safe." 2 2 2 +15582 6 "The invention of the mass on top of the Empire State Building was an undeveloped idea that created created a new means of transportation but arrive with numerous flaws. One obstacle the engineers faced was resting a one thousand foot dirigible over a twelve hundred fifty foot building because with combined wind pressure this would put stress on the building's structure and allow it to collapse. This transportation was also extremely dangerous to the public because many foreign dirigibles ""used hydrogen rather than helium, and hydrogen is highly flammable (paragraph @NUM1)."" Not only this, if builders ever allowed dirigible's to dock on the building, the back of the airship would spin around the mooring mast due to shifting violent air currents as stated in paragraph @NUM2. In paragraph @NUM3, it says that an existing law would prohibit airships flying too low over urban areas. This law made docking dirigibles atop of the Empire State Building illegal because dirigibles would be above the people which was against the laws. All of these obstacles made the transportations a failure and as a result the use of the mast had disappeared." 3 3 3 +15583 6 "The builders of the Empire State Building went through many difficult obstacles trying to allow dirigibles to dock there. One of the difficult obstacles the builders went through is that the winds on top of the building were always shifting. ""The winds on top of the building were constantly shifting do to violent air currents."" This quote is describing how bad the winds were and how it made it difficult for the builders to work. To solve that problem, the builders could have weighed weighed down the back with lead; but that would cause it to be dangling high above pedestrians on the street which isn't safe. ""But using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was not safe."" This quote is explaining how using lead would not be safe. Another problem is that it is illegal for airships to fly too low to urban areas. ""@CAPS1 an existing law against airships flying to low over urban areas."" This quote explains the law about airships. Clearly, the builders had many difficult obstacles." 3 3 3 +15584 6 "The builders of the Empire State Building faced many obstacles in their attempts to allow dirigibles to dock there. One obstacle was installing the mooring mast, the architects couldn't simply drop a mooring mast on top of the Empire State Building's flat roof because the weight of the blimp moored at the top held by a single cable tether would add stress to the frame. The stress of the dirigibles load and wind pressure would transmit all the way to the building's foundation. The builders would have to modify and strengthen to build to accommodate the new situation. Another obstacle they faced was the cost, because it would take over sixty thousand dollar's to make the proper modifications to the building's framework. Also safety was another major obstacle, they would have to make people were going to be safe, because Most dirigible from other countrie's used hydrogen rather than helium, and hydrogen is highly flammable. The area's were densely populated an accident over the city would be much worse. The greatest obstacle was nature itself, but winds on the building were constantly shifting due to the violent air currents even if the dirigible were tethered to the mooring mast the back would swivel around. Dirigibles moored in open landing fields could be weighted down by weights, but using these would be dangerous dangling that high above pedestrians. Many obstacles were practical reasons why they couldn't moor at the Empire State Building. There was an existing law against airships flying too low over urban areas and make it illegal for ships to tie up to the building. So long these obstacles were faced in attempting to allow docking." 3 4 4 +15585 6 "Based ON this excerpt the builders faced A few problems when building the Empire State Building. One problem was actually docking the Zeppelin's or dirigibles. The wind was vicious at @NUM1 ft in the Air. Another problem the buiders faced with saftey. Since most dirigibles from outside the U.S. used hydrogen rather than helium it was A fire saftey issue. This occurred After the German dirigible Hindenburg was destroyed by a Fire in Lakehurst, New Jersey, ON may 6, 1937." 2 2 2 +15586 6 "In the story ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. The builders needed more support for the building's framework. They had to use over sixtey thousand dollars to buy correct modification. Lack of a suitable landing area. There are alot of obstacles for the dirigibles.The builders needed more support for the building's framework. ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame"" (@ORGANIZATION2, para @NUM1). They had to use over sixty thousand dollars to buy modifications for the stressed frame. ""Over sixty-thousand dollars worth of modifications had to be made to the building's framework"" (@ORGANIZATION2, para @NUM1). There was a lack of suitable landing area. ""The one obstacle to their expanded use in New York City was the lack of a suitable landing area"" (@ORGANIZATION2, para 6).In the story ""The Mooring Mast"" by @ORGANIZATION2, this is how the builders of the Empire State building faced obstacles in attempting to allow dirigibles to dock there." 2 2 2 +15587 6 "In the excerpt from @ORGANIZATION2's The Mooring Mast, the builders of the Empire State Building faced many obstacles in allowing dirigibles to dock there. For example, ""the lack of a suitable landing area."" Architects cannot just drop a mooring mast on top of the Empire State Building's roof. The building would have had an extreme amount of pressure on it. In addition, along with the pressure, the dirigibles would ""add stress to the building's frame."" The builders needed to modify and strengthen the steel frame of the Empire State Building. This also cost a great deal of money. Furthermore, ""the greatest reason was safety."" The slightest mistake in building the mast, could affect every person in the building. In order to allow dirigibles to dock there, the builders needed to be aware of all the citizens surrounding the building. All in all, these obstacles determined the fate of the mast." 3 2 3 +15588 6 "The builders of the empire state building faced many obstacles in attempting to allow dirigibles to dock there. First it was illegal to have an aircraft flying too close to a city ""was an existing law against airships flying too low over urban areas"". Another obstacle was the buildings structure if the blimp had docked there would be stress on the building ""would add stress to the buildings Frame"". The last obstacle was the wind would push the blimp around every which way when docked on the tower ""The winds on top of the building were constantly shifting due to violent air currents""" 3 3 3 +15589 6 "The mooring mast on the Empire State Building was intentionally built for dirigible docking. Although the problem with allowing that to happen was not questioned at the time of the mast's construction, safety issues were a major concern. Most dirigibles from outside the U.S. used hydrogen gas, which is extremely flamable. The news of the German dirigible Hindenburg being destroyed in flames greatly concerned the owners of the Empire State Building. They imagined how much more worse that would be if a dirigible combusted on the building and in a dense population of Downtown New York. This caused the builders of the Empire State Building to reconsider allowing dirigibles dock at it's mooring mast." 2 2 2 +15590 6 "Throughout the story workers of the Empire State Building faced many obstacles in trying to allow dirigibles to dock there. The first obstacles they faced was trying to ge a thousend foot drigible mooring at the top of the building. This was held together by a single cable tether and that would add stress to the buildings frame. All the dirigible's load and wind pressure had to be transmitted all the way to the buildings foundation, but that was eleven hundred feet below. Another obstacle is that hydrogen in the dirigible was highly flammable. If a dirigible was ever destroyed it would kill a lot of people because the Empire State Building is in downtown New York. The greatest obstacle was that the winds at the top of the building were constantly changing so would be very difficult to land. The last obstacle was it was against the law for airships to fly too low in urban areas." 3 3 3 +15591 6 "The obstacles the builders of the Empire State Building faced in attempting to allow drigibles to dock there was that he realized that he was close to losing the title of world's tallest building, also Some of his opinions were proven wrong because of facts. Another obstacle was trying to accomplish everything he says he was going to do On time. He needed to react more realistic than what he was thinking Of doing. Most obstacles had to do with ""nature itself."" Such as the wind which would make it swivel around." 1 1 1 +15592 6 "In ""The Mooring Mast"" by @ORGANIZATION2, it explains how the developing idea of landing a dirigible on the Empire State Building was eventually rejected due to many obstacles. The first design flaw that the engineers @CAPS2 was the stress the dirigible would add to the building's frame. A mass that size attached to the building by a single cable tether would be @CAPS1 in the building's foundation. The greatest obstacle the engineers @CAPS2 in allowing dirigibles to dock was safety. With the use of hydrogen, the dirigibles are highly flammable. This would have created a dangerous situation ove a ""densely populated area such as downtown New York"". The final obstacle the builders @CAPS2 was the wind. The winds at that height were extremely strong. Chapter @NUM1 it says, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" This would create a dangerous situation for the ship's passengers. In ""The Mooring Mast"", it described how it would be nearly impossible to land dirigibles atop the Empire State Building." 4 3 4 +15593 6 "The Mooring Mast, authored by @PERSON1, presents two main obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock. The first problem was the uncontrollable factor of mother nature. With high speed air currents would cause ""the back of the ship to swivel around and around the mooring mast."" If the dirigible was unable to dock correctly, the dangers would be the fact it was ""dangling high above pedestrians on the street, (which) was neither practical nor safe."" Another problem the builders encountered was the already existing law that made sure airships don't fly too low over cities. The author notes, ""This law would make it illegal for a ship to ever tie up to the building or even approach the area."" Because of mother nature and pre-existing legislature, the builders of the Empire State Building had to overcome enigmatic problems." 3 3 3 +15594 6 Based on excerpt there were a few obstacles the builders of the Empire State Building faced. One of the obstacles were that there was a lack of suitable landing area. The second obstacle was that in order to have a thousand-foot dirigible moored at the top of the building they would have to spend sixty thousand dollars just to accommodate the new station. Another obstacle being dirigibles could not moor or at the Empire State Building due to the existing law against airships flying too low over urban areas. There is three obstacles that made it hard for dirigibles to take over the future. That is why we now have air planes. 3 3 3 +15595 6 "There were many obstacles facing the builders attempting to allow dirgibles to dock on the mast of the Empire State Building. One reason was that attaching a humongous blimp to the peak of the building would add excessive strain to it. Lusted explains: ""A thousand-foot dirgible moored at the top of the building... would add stress to the building's frame."" @CAPS1, much revision to the structure's frame was needed. Another obstacle was nature. Wind currents would push the dirigible around and it would be very unsafe. ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirgible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" This would make it unsafe for passengers to get on or off the blimp. There was also a law in effect that prevented ""airships flying too low over urban areas."" These obstacles prevented the builders from safely devising a way to dock the dirigibles." 3 3 3 +15596 6 "Allowing dirigibles stock at the Empire State Building was never possible because of the obstacles that the architects faced. First, nature was against the builders. The strong winds on the top of the building were constantly shifting, which proved a hazard to dirigibles. Mooring dirigibles would lead weights was out of the question because they were a danger to pedestrians. Another obstacle was an already existing law that prohibited dirigibles from flying low over urban areas. This law made it illegal for a dirigible to dock at the Empire State Building. The final obstacle was that a dirigible could be accidentally ignited and fall on New York. The destruction of the Hindenburg made clear that it was not possible to have a dirigible dock at the Empire State Building." 3 3 3 +15597 6 "Architects for the Empire State Building faced many problems trying install the landing gear on the mooring mast. There were many safety issues to get around landing a dirigible or blimp on the building. People in a populated area such as New York City, is not the safest place to land a blimp, ""when the German dirigible Hindenburg was destroyed by fire on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as dowtown New York."" They could not take this risk. So, the competion for landing gear was called off. Another main cause was the wind current on top of the Empire State Building. It proved very difficult to keep a blimp level at high altitudes, ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" This could potentially result in the blimp detaching and hitting other buildings. This is why landing blimps on the Empire State building would be dangerous and difficult." 3 3 3 +15598 6 "In this excerpt ""The Mooring Mast"", by @ORGANIZATION1, workers and builders try to make a docking area for Dirigibles (blimps). In the process in doing so they @CAPS1 many obstacles. First, obstacle was the lack of a suitable landing area. They really should've thought to make it bigger in the first place. Workers did work but was not enuff. The greatest obstacle was nature itself. If they were good builders and knew what they were doing and then they would know that wind up higher gets ruffer. Bacicaly should have thought things through a little more; lastly, was the law against airships flying to low over urban areas. Should have checked if there were ney laws which there was; Also, all that work for nothing. All these obstacles that the workers and builders @CAPS2 were things that could have been prevented, so money and time did not have went to waste." 3 2 3 +15599 6 "In the excerpt 'The Mooring Mast' by @ORGANIZATION2, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock here. One example of this is ""The Obstacle to their expanded use into New York City was lack of a suitable landing area"". This shows that the mooring mast is going to be a problem because its lacked of a suitable landing area, meaning it's to difficult for landing, it's not ment for docking. Another example is 'A thousand foot dirigible moored at the top of the building held by a single cable tether would add stress to the building frame.' This shows that the building is not stable enough for landing for a final example ""The greatest obstacles to the successful use of a mooring mast was nature itself.' This shows that the weather can change, and it will affect its landing. These examples show how in the excerpt 'The Mooring Mast' by @ORGANIZATION2, the obstacles that the builders faced." 2 2 2 +15600 6 "The use of the mast on the empire state building for dirigibles faced many obstacles. Violent winds, the amount of structural support and anti low-flying aircraft laws made it impossible to use. The high winds would spin the back of the aircraft and therefore the entire dirigible around the spire, and the structural support of such was extremely risky. The main interfering point however was an, ""existing law against airships flying to low over urban areas. This would make it illegal for a ship to ever tie up to the building or even approach the area"". These things inevitably lead to the mast not being put to use." 2 2 2 +15601 6 "The obstacle the builders had in attempting to allow dirigibles or ""blimps"" to dock on the Empire State Building were nature itself. The reason nature is the obstacle for blimps to dock on the building is because the wind currents moving the end of the blimp. If the blimp is moving by the wind while passangers are leaving or getting in, it would be very easy to fall off. Another obstacle the builders had with docking the blimps is the lead weights dangling from the end of the blimps. Those weights were used to keep the blimp from shifting directions due to the wind currents but it was a concern for the safety of the Street Pedestrians. On @CAPS1 @NUM1 of ""The Mooring Mast"" by Marcia Amidon Lsted, it quotes that ""... that using these at the Empire State Building, where they would be dangling high above Pedestrians on the Street, was neither practical nor safe"". This quote proves that putting weights on the back of the blimp would be dangerous. If they some how fall off then someone could get really hurt on the streets." 3 3 3 +15602 6 Building docks for dirigibles to land on the Empire State Building was a real challenge for Al Smith. The Steel frame of the Empire State Building had to be strengthened because the dirigible's load and wind pressure would put too much stress on the building's frame. The dirigibles were highly flammable and that put a huge risk in safety for the workers in the building and the people on the street. The dirigible's movements could not be monitored due to violent air currents at the top of the building. The main reason why the docks for dirigibles did not work was because of the law against airships. The law did not allow airships fly low over urban areas. The invention of docks for dirigibles on the Empire State Building was unrealistic and unsafe. 3 3 3 +15603 6 "In ""The @CAPS1 Mast"" by Marcia Amidon Lsted the builders of the empire state building faced many obstacles while attempting to allow dirigibles to dock there. Which made it very difficult to make this project workable.The workers faced safety problems due to chemicals and certain gasses ""Most durigibles from outside of the united states used hydrogen rather than helium, and hydrogen is highly flammable."" (Amidon Lsted @NUM1 lines @NUM2 + @NUM3) ""The owners of the Empire state Building realised how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" (Amidon Lsted @NUM1 lines @NUM5). The greatest obstacle to their successful use of the mooring mast was nature itself. ""The winds on top of the building were constantly shifting due to the violent air currents.In the excerpt ""The @CAPS1 Mast"" by Marcia Amidon Lsted the builders of the Empire State Building faced many obstacles in which they could not control." 2 2 2 +15604 6 "Some obstacles that the empire state builders had while creating the Empire state building is having to deal with all fast winds. This reason being is because the giant needle that was build on top of the building was waving back an forth. which mad it harder to keep in place.Another obstacle would be, @CAPS1 bringing the dirigible or blimps towards the giant needle. It would pouncher the blimp. There was only made of cotton fabric." 1 1 1 +15605 6 "Based on the excerpt there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle the builders faced was the dirigibles were too big and could be dangerous. ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame."" This shows that it will be harder to build the mast than expected. Another obstacle the builders ran into was that the building would have to be modified. ""The steel frame of the Empire State building would have to be modified and strengthened to accommodate this new situation."" The biggest obstacle the builders faced is that it wasn't safe. ""Most dirigibles from outside the @LOCATION1 used hydrogen rather than helium, and hydrogen is highly flammable"" @CAPS1 some of the obstacles the builders ran into" 2 3 3 +15606 6 "In the short story ""The Mooring Mast"" by @ORGANIZATION2, The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. For example they needed a suitable landing area which they could not do very easily. They needed to put a mooring mast on top of the Empire State Building, but the architects could not do that with no problem. It took a lot of work. The @CAPS1 says ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" @CAPS2 they had an idea to add to make it work, would add stress to the building and take it down. The wind pressure had a great deal on that also. The winds were making it hard to keep the Dirigibles stable. They wanted to add weights to hold it down but that wouldn't be good for the people below. The @CAPS1 says ""Could be weighted down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe. They faced way to many problems." 3 2 3 +15607 6 "This dream of the aviation pioneers was travel by dirigible was a dream that would be hard-to-reach. The architects and engineers that attempted to establish a mooring mast had high hopes, including meeting with the president. ""Held by a single cable tether"" would not be stable enough to mount the dirigible because the building frame would be stress to too much. What if they were to do this, the Empire State Building have to be modified and strengthened to adapt to the new placement of the dirigible. But instead the architects assigned a ""shiny glass and chrome-nickel stainless steel tower"" and then designed the mooring mast. However, before the mooring mast could be complete, the roof had to be completed before the mooring mast could fit in its position most of portly the main problem with the mooring mast was nature. Nature could easily mess up the mooring mast, due to winds, which would cause the shifting of the dirigible. Also due to a ""law against airships flying too low"" the dirigible would break that law as well. The whole attempt to make a mooring mast slowly deteriorated because of all the obstacles." 3 4 4 +15608 6 "The builders of the Empire State Building had a lot of struggles in attempting to allow dirigibles to dock there. First, they had to consult with experts to see if the equipment was safe enough. They took tours of the equipment and mooring operations at the @ORGANIZATION2 at Lakehurst, New Jersey. Next, they had a hard time dropping the mooring mast on top of the Empire State Building's flat roof. They would have to us @MONEY1 worth of modifications to strengthen the building's framework. They were never going to have this happen in the first place, because of the safety issue, the hydrogen gas in the dirigible is highly flammable. The biggest issue though, was nature. The winds on top of the building made it very hard to work, and it got very violent." 3 2 3 +15609 6 The builders had many obstacles in their way to accomplish their Idea of docking dirigibles. One main problem was that most dirigibles around the world used hydrogen gas which is highly flammable which can make things very dangerous at such an altitude. The greatest obstacle to it's success was nature itself. The winds where the docking would occur were constantly shifting and this would make the stability of the dirigible very difficult with the back end stretching so far away from the tower. Another reason this wouldn't work was because of an already existing law against air ships flying so low over urban areas. 3 3 3 +15610 6 "The obstacles that the builders of the Empire State Building faced were all due to the addition of the mooring mast. First, the architects had to modify the steel frame of the Empire state building. The architects knew that the large mooring mass could not be simply placed on the building flat roof. Marcia Amidon Lsted explains tha ""A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building frame"". (@CAPS1 @NUM1). Because, the building needed to adapt to the situation, they spent over @MONEY1 to modify the framework. Another obstacle that the builders of the Empire State Building had to face were the safety issues of the new mooring mast. These concerns about the safety arrose from an incident when the Hindenburg, a German dirigible was destroyed by fir at Lakehurst, New Jersey. Because, the U.S. used hydrogen rather than helium the risks were higher. Helium is more flammable. Lsted writes ""the owners of the Empire State realized how much worse the accident could have been if it had taken place above a densely populated area such as downtown New York."" (Lsted @NUM2). The Empire State Building was just an impractical location for an airship dock. Finally by the late 1930s it was certain that the mooring mass would not fulfill its purpose because dirigibles had now given way to airplanes." 4 4 4 +15611 6 "The builders that constructed The Empire State Building faced many obstacles when they attempted to allow dirigibles to dock there. Most importantly they could not just simply drop a mooring mast atop the building and hope for the best. The mast would add a large amount of stress to the framework, also factor in the stress of the dirigibles load and wind pressure, and the framework would need to be modified and strengthened. Safety was also a key problem the builders ran into. Most dirigibles were highly flammable, and to have them fly over such a populated city as New York would be impractical. As well as their flammable characteristic there was also a law against airships flying too low over urban areas. So therefore it was illegal to tie up, or even approach the building. The last obstacle the builders ran into was the wind. The winds at that height were constantly shifting due to the violent currents. There was also the fear that the wind would blow the ships into the sharp spires of another building. Including the obstacles and the loss of interest in dirigibles was the result in the discontinuation of the project." 3 4 4 +15612 6 "New technology, especially in aviation,requires work to be done, thus causing many obstacles to overcome. In order to make this mooring mast on the Empire State building a success, the builders would need to know how to keep the dirigible hooked to the building and able to set passengers on and off. A quote from the text supporting this would be ""A mooring mast added to the top of the building would allow dirigibles to anchor there for several hours for refueling or service, and to let passengers off and on"". (6). But the passengers were not the only obstacle the builders had to surpass. The stress a dirigible would put on the building would be too great, meaning they also had to remodel the actual building. The text supports this with, ""the steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" (@NUM1). Even with all these modifications, however, the mooring mast was doomed to failure for reasons the builders could not fix." 2 2 2 +15613 6 "Based on the excerpt, The Mooring Mast, obstacles for the builders of the Empire State Building were presented because dirigibles were to dock there. The first obstacle was safety because most dirigibles from outside of the @LOCATION3 were filled with hydrogen which is very flammable compared to helium. The builders were concerned because on May 6, 1937 the German dirigible Hindenburg was destroyed by fire, since it was filled by hydrogen, in Lakehurst, New Jersey. The second obstacle was nature: ""The winds... were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around the mooring mast"" (paragraph @NUM1). This meant that passengers could not get off safely and the dirigible could hit anything in the vicinity if swung a wrong way. The last obstacle was an existing law against airships fly too low over urban areas which means that it was illegal for a ship to tie up to a building or approach the area. Therefore, the builders of the Empire State Building who attempted to allow dirigibles to dock there were presented many obsticles as shown by the excerpt, The Mooring Mast." 3 3 3 +15614 6 "Some obstacles the builders of the Empire State Building faced to allow dirigibles to moor there were, the framing of the building and the height of the building and where passengers would land and dock. The frame of the building was important because if a thousand feet dirigible were to moor at the top of the building, it could add stress to the building's structure and frame and transfer it all down to the building's foundation. Wind pressure and directional change would also push the dirigible according adding more stress *** to the building.The building was at first designed to be @NUM1 floors, but to allow a dirigible to dock there and the load and unload passengers it needed more room and more height The building needed an observation room and a boarding area. When the building was redesigned the building reached to 102 floors and on the 101st floor it was an observation room doubled as a boarding area.The builders of the Empire State Building had many obstacles for the design of the attempt to allow dirigibles to moor on the roof including adding height to the building. The foremost problem though, was the framing of the building. It needed to be strengthened and in doing so it would allow a dirigible to moor on the top with no issues to the structure of the building." 2 1 2 +15615 6 "Competitive architect Al Smith wanted the Empire State Building to be the tallest most unique building. ""Their top, they said, would serve a higher calling"" (@NUM1). The Building was supporting the age of transportation by dirigible. Al Smith commented ""It's on the level, all right. No kidding. We're working on the thing now"" (@NUM2). In reality the architects were blind to the potential problems of the mast. There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One great reason was safety. If any dirigibles from outside the United States used to the mast it could be highly flammable due to using hydrogen rather helium. Another reason was nature itself. Shifting winds due to violent air currents made it dangerous as the back of the ship would twist around the mooring mast. Most importantly an existing law against airships flying too low over urban areas. That law would then make it illegal for a ship to ever tied to a building. By the late 1930s dirigibles, instead of becoming the transportation of the future, had given way to airplanes." 3 3 3 +15616 6 "Based on the excerpt the builders faced many hard tasks The builders had to make sure that the mooring mast was stable enough to dock there. They also had to add on more floors on the Empire State building because the original Chrysler building added another 46 feet to still be the tallest building. Now the architects had to had the 85th floor plus the mooring mast, this brought the Empire State building to a total of 1,250 feet. The reason that a mooring mast failed was because the dirigible highly flamable and in a highly populated area like New York it would be tragic. Also nature itself with the wind were violent air current. This would cause the back of the dirigible to move around the mooring mast." 2 2 2 +15617 6 "Based on the excerpt, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle being the safety of the people below on the streets. In the excerpt in paragraph @NUM1 it clearly states that it was dangerous because of the dirigible caught fire it would be ""Much worse if it had taken place above a densely populated area."" Another obstacle would be that there is a law that is stated in paragraph @NUM2 that says that there is ""An existing law against air ships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area. The greatest obstacle though was nature itself as stated in paragraph @NUM3. ""The winds on top of the building were constantly shifting due to violent air currents."" @CAPS1 the wind would make the dirigible swivel around and around the mooring mast. An idea came into plan that said ""Dirigibles moored in open landing fields could be weighted down in the back with lead weights,"" @CAPS1 why not at the Empire State Building? Safety is the reason because the weight on the building would be dangling above people on the street which would be unsafe. Then flyers who approached the building would fear that the wind would blow the dirigible on to the sharp spires of other buildings in the area which would be unsafe." 4 4 4 +15618 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there are that dirigible use different gases to stay aloft. As stated in paragraph 6, The first obstacle the builders faced in attempting to allow dirigibles to dock at the Empire State Building is ""To their expanded use in New York City was the lack of a suitable landing area."" From paragraph @NUM1 it states that if a mooring mast was to be droped to the roof of the building and a single cable tether would add stress to the building and pressure would cause them having to modify the building and framework, which cost over sixty thousand dollars. In other words most dirigibles outside the United States used hydrogen rather than helium, and hydrogen is highly flammable. Also from paragraph @NUM2 the mooring mast was nature itself. The winds would cause constantly shifting from air current. ""The mooring mast of the Empire State Building was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed." 2 3 3 +15619 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock at the top of the building. The architects could not just put the mooring mast on top of the building's flat roof. ""A dirigible would be held to the building by a single cable tether, which would add stress to the buildings frame."" (Lsted @NUM1) The stress from the dirigible's load and wind pressure would have to be transmitted down to the foundation. ""The building's steel frame would have to be modified and strengthened to accommodate this new situation."" (Lsted @NUM1) ""Over sixty thousand dollars of modifications would have to be made."" (Lsted @NUM1) The building was based entirely around the mooring mast. New modifications were only used to support the blimp itself and not other factors like nature winds." 3 4 3 +15620 6 "Based on the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the constructors of the Empire State building faced many dificulties while attempting to allow dirigibles to dock there. In every building or project there must the certainty that it is safe for everyone and that there is no risk of harm. ""The greatest reason was one of safety. Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" Dirigibles, or blimps, were not safe in general at the time. If one burned down in the middle of the country, the death toll and cost to repair what was damaged wouldn't be as much as if it burned down in downtown New York City. One, if not the greatest, challenge the constructors of the Empire State was that landing flamable blimps over the middle of a city was a safety hazard which could potentially kill many people as well as destroy parts of the city." 3 2 3 +15621 6 "In the excerpt ""The Mooring Mast"" written by @ORGANIZATION2, the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. In paragraph @NUM1 under ""The Fate of the Mast"", the first line says ""The greatest obstacle to the successful use of the mooring mast was nature itself. Strong winds due to violent air currents would make it impossible to dock a dirigible on the Empire State Building. The wind would blow the dirigible off the mast into New York City. In paragraph @NUM2 under ""The Fate of the Mast"", a line states ""The other practical reason why dirigibles could not moor at the Empire State building was an existing law against airships flying too low over urban areas."" This law made it illegal for dirigibles and other aircraft to even fly in such and urban area like New York. One final obstacle is safety precautions. In paragraph @NUM3 a line states, ""Most dirigibles from outside of the United States used hydrogen rather than helium."" If a dirigible were to crash and it had this highly flammable gas it would create a massive disaster. Violent winds, laws, and safety precautions are all against the docking of dirigibles at the mooring mast." 4 3 4 +15622 6 "When designing the mooring mast on top of the Empire State Building to dock dirigibles, the builders came across a few obstacles. A dirigible is a blimp filled with hydrogen and/or helium to keep it lightly in the air. What the builders did not realize ahead of time was that hydrogen is a highly flammable gas. If it is docked on top of a building around movement it could easily catch on fire creating the whole building itself to blow up. Another obstacle that the builders noticed would occurred was the forceful winds. With a dirigible dock so high up in the air, it creates an unstable way for people to get off of it. The vicious winds would make the back of the dirigible to swivel around the mooring mast because only the front would be weighed down. The last obstacle that was found with docking a dirigible, was that it would be too low to an urban area. The dirigible would be too close to walking pedestrians, creating an un-safe enviroment if something was too go wrong. Without taking that chance, it was agreed that there were too many obstacles; therefore, the idea of docking a dirigible on top of the Empire State Building was cancelled." 3 3 3 +15623 6 "In the construction of the Empire State Building, the builders faced many obstacles in attempting to allow dirigibles to dock there. One of the obstacles they faced was having to make changes to the steel frame of the building in order to have the strength to ""accommodate the new situation. In paragraph @NUM1 it @CAPS2 that ""Over sixty thousand dollars' worth of modifications had to be made to the buildings framework"", @CAPS1 this was a costly project as well. The excerpt also @CAPS2 that there were problems with getting the dirigible to stay in place without moving. The dirigible would be in a very windy area, and there was only one chord attached to the building which would leave the back moving around all over the place." 3 2 3 +15624 6 "In the excerpt from ""The Mooring Mast"" the builders faced the obstacles of safety, nature, and law in attempting to dock dirigibles atop the empire state building. First, it would not be safe. In the excerpt it stated, ""Most dirigibles from outside of the United States used hydrogen, rather than helium, and hydrogen is highly flammable."" In a densely populated area such as New York, they couldn't risk having a dirigible burst into the flames and cause massive chaos. Second, nature would not agree. In the excerpt it stated, ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Because of the winds in New York, the dirigible would not be secured well, and many dirigibles would be destroyed instead of held in place. Lastly, there was the reason of the law. It the excerpt it explained that, ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" This was the most important reason of all. They could've taken risks on the other theories, but on this one they had no choice. They wouldn't be able to fight the law to allow dirigibles to fly that low. To conclude, the obstacles faced by the builders of safety, nature, and law could not be overcome to get the mast up and working." 4 3 4 +15625 6 "The builders of the Empire State Building faced many challenges with docking airships one of the most obveouse reasons was the danger of docking at such high altitudes. If an accident accured like a fire, the entire area would be in danger. The modifications made to the building itself were big enough, without needing any more additional work done. The most import reason would be manoverability. The strong winds made it difficult and almost impossable to control the blimp, never less dock it. The @ORGANIZATION2 law even banned aircraft of any type flying so low." 2 2 2 +15626 6 "The builders of the Empire State Building where faced with some obstacles in order to allow dirigibles to dock there. Saftey was the main focus because New York is a densly populated area and many dirigibles where filled with highly flameable hydrogen.One problem was that the builders relized the dirigible would be hanging by a single cable teather wich would add stress to the frame so they would need to adjust the building and strengthen the the frame. This costed over sixty thousand dollars to adjust. After that was taken care of the builders still had other problems.Another problem the builders faced was that since the building was in a highly populated area many pedestrians walk, below where the dirigibles would be docked. The winds at the top would cause the dirigible to blow around and lead weights could not be used because of the dangers of them falling" 3 3 3 +15627 6 "In the excerpt ""The Mooring Mast"", by @ORGANIZATION1, the builders of the empire state building faced obstacles in attempting to allow Dirigibles to dock there. One obstacle was when al Smith realized that he was close to Not winning the world's tallest building. It talks about it in paragraph @NUM1. Then he annonced that the building would reach 1,250 feet. That's an obstacle because without the building he cant make the dirigible, and he always wanted compitition so his building had to be the winning one and he had to build the dirigible." 0 0 0 +15628 6 "The builders of the Empire State building faced Problems to allow dirigibles to dock there. Some Problems were that most dirigibles from other countries are filled with hydrogen which is highly flammable, also The winds at the top of the building were constantly Shifting due to violent air currents and could cause the dirigible to wrap around the building. Another @CAPS1 the builders faced was a existing law against airships flying to low in urban areas, this law would make it illegal for the dirigible to even come near the building. They also had to spend @MONEY1 to upgrade the framework so it does not put to much strain on the top of the building." 2 3 3 +15629 6 "In The Mooring Mast by Marcia Amidon Lsted, the architect and builders have to overcome very big obstacles while trying to make this plan of docking dirigibles work. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. A thousand-foot dirigible moored at the top of this building, held by a single cable tether, would add stress to the building's frame."" With this enormous dirigible in the air and the wind blowing around would hurt the buildings structure."" The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" With all of the wind the dirigible would be tugging back and forth on the building. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. Over sixty thousand dollars' worth of modifications had to be made to the building's framework."" @CAPS1 to build a docking station the architects would have to transform the whole construction of the building." 3 3 3 +15630 6 Allowing dirigibles to dock at the Empire State building came with a lot of obstacles to make it work. One obstacle is their expanded use in New York City was the lack of a suitable landing area. Some dirigibles were as long ase one thousand feet long which is equal to four blocks in New York City. Another obstacle is they could not drop a mooring mast on top of the Empire State building's flat roof. This would add stress to the buildings frame and to dirigibles moored up their. 2 2 2 +15631 6 "The workers on the Empire @CAPS1 Building ran into many obstacles in allowing dirigibles to dock there. The workers ran into large problems with the safety of docking over a large city. Also, the reality of the construction and location was a future problem for the workers. The process was a troubling challenge overall.It was not very safe to have a large aircraft with passengers hanging over a large city. One percaution that was of great concern was that other dirigibles used hydrogen, ""and hydrogen is highly flammable."" The potential of having a fire over a city was a risk that they could not face. The dirigibles were not even allowed by law to get close enough to the Empire State Building to dock. The workers had to face reality when it came to the construction and location. The mast was so high up that dirigibles would not be able to dock because of ""violent air currents."" Some blimps did not even have the proper ""mooring equipment installed."" The project al ltogether was unrealistic so therefor it was a great challenge for workers docking dirigibles." 3 3 3 +15632 6 "The builders had a tough obstacle Because They in @CAPS1 were tryn to @CAPS2 A overall @CAPS3 Building. And were tryn to compete. The Dirigibles were A @CAPS3 part in Building The empire State Building Because They were faced with obstacles That were hard like @CAPS5, @CAPS6, Height and ext. These were the @CAPS7. On Dirigibles to @CAPS8 There were The Dirigibles were not heavy @CAPS9 They @CAPS10't @CAPS8 as well And It was made with light mater ials. These are The reasons why This happens." 0 1 1 +15633 6 "The obstacles that the builders of the Empire State Building faced were nature and safety. Safety played a large role in the building of the Empire State Building. Two main safety conserns were getting passengers safely on and off dirigibles and the substances they were filled with. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable,"" (paragraph @NUM1). The next obstacle the builders faced was nature. The wind speeds would shift due to violent air currents, causing the dirigibles to swivel around. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast,"" (paragraph @NUM2). Due to nature and safety issues, the builders of the Empire State Building faced obstacles allowing dirigibles to dock there." 3 2 3 +15634 6 "When attempting to allow dirigibles to dock attop the Empire state building, the builders were faced with obsticles. One obsticle they faced was the strong wind current. As said in paragraph @NUM1, ""the winds on top of the building were constantly shifting due to violent air currents."" This would cause the back of the ship to swivel around the mast. Another obsticle was the added stress that would be put on the foundation of the building. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate..."" as stated in paragraph @NUM2. A third obsticle the builders faced in this matter was the dangers of fire, as well as the chances of endangering those down below, which is discussed in paragraph @NUM3. One last obsticle faced by the builders was ""an existing law against airships flying too low over urban areas"" (paragraph @NUM4). Those are just some of the many major obsticles faced by builders, attempting to dock dirigibles on the top of the then tallest building in the world." 3 4 4 +15635 6 "The builders of the Empire State Building attempting to allow dirigibles to dock there. However, this task was not so easy. The builders of the Empire State Building could not just drop a mooring mast on its flat roof because they had to consider how the size of the dirigibles were affected. ""The architects could not simile drop a mooring mast on top of the Empire State Building's flat roof. A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame"" (paragraph @NUM1). Also, it would be difficult to transmit the stress of the dirigible's load and the wind pressure."" The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below. The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation"" (paragraph @NUM1). The cost to improve the building's framework was also an obstacle. ""Over sixty thousand dollars worth of modifications had to be made to the building's framework"" (paragraph @NUM1)." 3 3 3 +15636 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there is that they had to make the Empire State Building taller. The builders added a mooring mast to the top of the building to allow dirigibles to anchor the for several hours for refueling or service, and to allow the passengers on or off the dirigible. The dirigibles were docked which meant that the electric winch, in which hauled in a line from the front of the ship and then tied to the mast. The architects designed a shiny glass and chrome-nickel stainless tower that would be illuminated from the inside. The roof had to be completed before the framing for the mooring mast could take place. Everything went as planned as the builders wanted tpo." 1 0 1 +15637 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. Such as there was a law preventing airships to fly too low over urban areas. Also they could not ancor down the back of the blimp, and due to the shifting winds that high it would not be safe for passangers to get on and off. The building also had to be rebuilt to be able to come close to staying stable with the dirigible attached. And last was the differences In gases used to keep the blimps afloat. most dirigibles from outside of the @LOCATION1 used hydrogen rather than helium. hydrogen is highly flamable making in very unsafe. These are some of the obstacles builders of the Empire State Building faced to allow dirigibles to dock there." 3 3 3 +15638 6 They faced challanges such as how to get the dirigibles to anchor on the building. There was really no safe way to do it. They also sayed the gas that keeps it floating is highly flamable. So it was like one big safty concern.In reality they ended up realizing its too dangerouse for them to do. If they took the chance and something went wrong innocent people could die. 2 1 2 +15639 6 "The dirigibles had @NUM1 obstacles to face, They had posidletys of fire, poping, and law troudle. They feared the dirigible would get on fire for it has hydrogen, that is rather highly flammable. They do not want to relate to the acsident that happened in lakehurst, New Jersey in May 6, 1937. also withe the fear of pops rase more concens. for the wind might blow it of chores into another building with a sharpe top that could possibley puncher the baloon. The feared this happening in downtown New York were it is highly populated. another reson prodley the biggest was that Empire State Building wanted a law for air crafts flying low over urban areas, so that ment there was no chance they could do what they were planing on doing." 2 3 3 +15640 6 "The biggest obstacle the builders of the Empire State Building faced in attempting to allow dirigibles to dock. It was ""The winds on top of the building were contently shifting due to violent air currents."" Due to the wind currents dirigibles would not be able for to stay still to allow the passengers to get off of the dirigiblel. They once tryed this. ""In December 1930, the @ORGANIZATION2 dirigible los Angeles approached the moorning mast but could not get close enouh to tie up bacase of forceful winds."" If the winds blue strong eneogh it could @CAPS1 the dirigible into a sharp object. After this atempd there was an; ""The building was an existing low against airships flying too low over urban areas."" ""It would make it illegal for a ship to ever tie up to the building."" @CAPS2 any dirigibles could never tie up the the building because of this new law. The biggest obstacle was the winds. The winds were because it's put tremondos stress on the building." 3 3 3 +15641 6 "The builders of the Empire State Building faced more problems than expected to. One of the first problems they faced was the building's frame could not support an enormous dirigible. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation... over sixty thousand dollars' worth of modifications had to be made to the buildings framework"" (@NUM1). The builders were forced to modify the framework which cost a large amount of money, and proved to be a primary obstacle. Another obstacle the builders faced was the wind caused by nature. ""The winds on top of the building were constantly shifting due to violent air currents."" (@NUM1). These winds could potentially make the back of the blimps swivel around the mooring mast, making it incredibly difficult or dangerous to get on or off of the dirigibles. Finally, the builders faced the problem of laws against airships flying too low over urban areas. ""This law would make it illegal for a ship to ever tie up to the building or even approach the area"" (@NUM3). If ships could not even legally approach the building, the builders realized, the obstacles were too great for the mooring mast to work. After realizing all the problems and dangers associated with this idea, they decided the mooring mast would never be successful." 4 4 4 +15642 6 "Dirigibles were being hailed as the transportation of the future. They were much better than the balloons. In new York City, there was a lack of suitable landing areas for the dirigibles. Now this would be a good idea for the Empire State Building. Landing on the building would allow dirigibles to anchor there for several hours for refueling or other services. The architects could not just drop a mooring mast on top of the building. The dirigible is thousand-foot long. It would add stress to the building's frame. Engineers soon designed a shiny glass and chrome-nickel stainless steel tower. The mast had four wings at its corners. The building is now 102 floors. Floors @NUM1 and 102 were for the observation area to double as the boarding area for the dirigible passengers. Workers celebrate framing the entire building after two months. Now people lost their hope. It's because the mooring mast of the Empire State Building was never to fulfill its purpose. It was never safe nor practical. The buiders faces so many obstacles." 1 1 1 +15643 6 "Turning the mast on the Empire State Building into a dock for dirigibles had many obstacles. There were obstacles like flamable gas in the dirigibles, dangerous to be near a densely populated area, the wind were constantly shifting due to air currents, and it would be dangling high above pedestrians. These obstacles were very difficult to solve. In the dirigibles, there are filled with hydrogen, and hydrogen is highly flamable if the dirigibles caught on fire. It is also dangerous to be above a very densely populated area because if the dirigible ever failed, it would fall on inocent bystanders. It also is dangerous because the winds shift a lot, and it can get popped by other objects or buildings around the dirigible. Thus, why it is difficult to turn the mast into a loading dock for dirigibles. Turning the mast on the Empire State Building into a loading dock for dirigibles is very difficult to do because it is not safe." 3 3 3 +15644 6 "In attempting to allow dirigibles to dock there, the builders of the Empire State Building faced many obstacles. Safety was a huge issue. Foreign derigibles often used hydrogen gas to stay aloft, which is highly flammable. A fire posed a dangerous threat in such a densely populated area as New York City. Another great obstacle was the turbulent wind at the elevation of the mooring mast, which would have prevented the dirigible from staying in one place. This would make it extremely difficult for passengers to safely board or exit the zeppelin. One way to solve this problem would be to weigh down the blimp with lead weights, but this was also a dangerous practice, because the weights could fall to the ground and crush those passing by. Although a mooring mast was in theory, a useful idea, it was neither safe nor practical." 3 3 3 +15645 6 "The builders of the Empire State Building faced many obstacles while attempting to allow dirigibles to dock there. ""The architects could not simply drop a mooring mast on top of the Empire State building's flat roof."" A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame. As stated, modifications had to be made to the building's framework strengthen and accommodate the new situation. Another great obstacle to the successful use of the mooring mast was nature itself. ""The winds on top of the building were consulate shifting due to violent air currents."" This would leave the dirigibles swiveling any air above pedestrians which was neither practical or safe. The builders of the Empire State Building faced many obstacles during the project which unfortunately led to the known fact that the Empire State Building was never going to fulfill its purpose." 2 3 3 +15646 6 Some of the obstacles the builders of the Empire State Building faced on attempting to allow dirigibles to dock there were That architects cannot simply drop a mooring mast on top of the Empire State Building. They would also have modifie and strengthened the steel frame of the Empire State uilding and all this was going to be worth sixty thousand dollars of modifications. Theese engineers had to try to dope out a Practical workable arrangement and also the government People in washington were figuring on some safe way of mooring airships to the mast. This idea of doing this was neither practical nor safe because all this things would be dang ling high above Pedestrians on the street. This could have never happened either because there was an existing law against airships flying to low over urban areas. Theese were some of the obstacles the builders faced on attempting to allow dirigibles to dock over the Empire State Building. 3 3 3 +15647 6 "The builders and architects faced several different obstacles & dilemnas that intefered with the construction of the Empire State Building. One of them being the funds necessary in order to produce such a large structure. They found themselves constructing and reconstructing the frame of the structure time and time again, all in a feeble attempt to reach the desired perfection. Another obstacle occurred when their entire concept shattered by the fact that not every dirigible intended to land on the mast was fueled by helium. The text reads, ""Most digribles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (@CAPS1 @NUM1). This displays the severity of the idea, where risks like that just could not be taken, so they abandoned the idea of the mooring mast." 1 1 1 +15648 6 "In the excerpt ""The Mooring Mast"" it shows that it was not easy making the dirigibles a safe docking station.A struggle that was faced during this time was that dirigibles from other countries were made with hydrogen which is highly flammable. This meant that if it was exposed to fire it would instantly catch on fire over the world's most populated city.Another problem that was faced with the amount of wind at the top of the Empire building. With all this wind it was hard for pilots of dirigibles to steer. The wind would toss them around, pilots couldnt take their hands off the geers.These were just two of the many struggles pilots and architects had to face when docking a dirigibles at a mast." 2 2 2 +15649 6 The builders of the Empire State building @CAPS1 threw many obstacles. They consulted with experts taking tours of the equipment and mooring operations at the U.S. Naval Air Station. The builders also had to meet with the president of a formed airship transport company. 1 1 1 +15650 6 "The builders of the Empire State Building faced a few obstacles when having dirigibles to dock there. One obstacle for example was landing. New York lacked a suitable landing area for a dirigible. Architects couldn't just drop a mooring mast on top of the Empire State Building's flat roof. Also, safety was a problem. A German dirigible was destroyed by fire. The owners of the Empire State Building realized how the accident could've been worse, especially in New York. Even nature was an obstacle. Winds were constantly shifting on top of the building. So lead weights were used for the dirigible which wasn't safe, because they were dangling over pedestrians. There was a law that airships couldn't fly too low over urban areas." 3 2 3 +15651 6 "Based on the article ""The Mooring Mast"" written by @ORGANIZATION2, the Empire State Building faced many obstacles. There are three main reasons why the @CAPS1. S.B. was not used for the purpose it was constructed for. The point of the @CAPS1.S.B. was so that dirigibles can stop and refuel. Dirigibles is an old word for Blimps. The obstacle the @CAPS1.S.B. had to over come were modifications, nature, and the law. They had to pay @MONEY1 in modifications on the @CAPS1.S.B. for the framework. The second was nature, the winds would make the back of the Dirigibles move around, they wanted to put weights on the back of them but that was not safe. Last but not least the law, the dirigibles cant be as low as the @CAPS1.S.B. because its too low and they cant fly low over urban areas." 3 3 3 +15652 6 "Based on the article, ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there, including the overall structure of the building being affeted by stress from the dirigible, safety issues, and the impact of nature. To start off, the dirigible's weight plus the wind pressure around the building, caused too much stress to the building's frame. The steel frame of the building would have to be strengthened and modified in order for the dirigible to be docked onto it. This modification and strengthening of the building process would call for an investment of over sixty thousand dollars. Next, the safety issue arose after being neglected before the building process began. Most dirigibles there were used outside of the United States contained hydrogen, which is a highly flammable gas, as opposed to using helium. This was a serious problem for a German dirigible named Hindenburg, when it was destroyed by fire in New Jersey in 1937. @ORGANIZATION2 writes ""the owners of the Empire State Building realized how much worse the accident could have been if it had taken place above a densely populated area such as downtown New York"" (@ORGANIZATION2 @NUM1). This was a major obstacle along with the wind factor. The winds at the top of the building were constantly shifting and no lead weights could be placed on the dirigible to stop it from shifting because it was a serious threat to pedestrians below. In conclusion, the builders of the Empire State Building faced many obstacles that prevented them from becoming a big landing spot for dirigibles." 4 4 4 +15653 6 "While designing a dirigible docked at the top of the Empire State building, the architects and engineers encountered many obstacles. Being such an immense project, these obstacles came naturally. The first obstacle was purely architectural. ""A thousand-foot dirigible moored at the top of the building... would add stress to the building's frame."" The architects would have to redesign the building frame in order for the building to last. The two other obstacles should have been clear from the start; the first, being nature. ""The winds on top of the building were constantly shifting due to violent air currents."" Now, the dock not only would be hard to reach, but extremely unsafe. The last obstacle couldn't have been overcome by the architects or engineers if they tried, not legally anyway. ""... existing law against airships flying too low over urban areas"" would also restrict the project, and actually stop it alltogether. Clearly, some large deciding factors had been overlooked while designing the moor. @ORGANIZATION2's competitive attitude made this so, but ""The Mooring Mast... was never destined to fulfill its purpose.""" 3 3 3 +15654 6 "In the excerpt The Mooring Mast by @ORGANIZATION1 building faced obstacles in attempts to allow dirigibles to dock there. One obstacle was that it would add stress to the building's frame. To accommodate the stress sixty thousand dollars worth of modifications, and strengthening would have to be done. Another obstacle was that dirigibles from outside the United States used hydrogen rather than helium and hydrogen is flammable. if something like the German Hindenburg being destroyed by fire was to happened in New York the consequences would be much worse. Also, the wind would be an obstacle as well. It would cause the back of the ship to swivel all around the mooring mast. One of the most overlooked obstacles was that of the law against airships flying too low over urban areas, and it was illegal for the ship to even tie up to the building. Clearly many obstacles to place in the attempts to allow dirigible to dock on the Empire State Building." 4 4 4 +15655 6 "The builders of the Empire State building face many obstacles in attempting to allow dirigibles to dock there. One obstacle was overcoming the extra stress that a dock dirigible would add. In the excerpt The Mooring Mast author Marcia Amidon Lsted states ""the stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the buildings foundation..."" Another obstacle the builders faced was the violent weather at the top of the building. Lsted says ""Even if the dirigibles was tethered to the mooring mast, the back of the ship would swivel around and break the mooring mast."" This was a problem because it would make it unsafe for passengers to exit the dirigibles and walk down a gangplank connected to the Empire State building. The wind also made it difficult for a dirigible to navigate to the mooring mast without being blown into other buildings in the area. One of the greatest obstacles was making the mooring mast safe. Lnden states ""most dirigibles from outside the U.S use hydrogn rather than helium, and hydrogen is highly flammable."" If a dirigibles were to catch fire over a heavily populated area like New York the casualties would be numerous. These were some of the many obstacles builders faced when attempting to construct a mooring mast on the Empire State Building." 4 4 4 +15656 6 "The builders of the empire state building faced alot of trouble and confusion in the attempt to let allow dirigibles to dock there. This had never been done before @CAPS1 they didnt know what to expect, except for a mooring mast. At first Al smith and his builders thought this was an amazing idea, technology of the future, but things werent that easy. They faced complications with the @ORGANIZATION1 with there research on dirigibles. It was a complicated process because it was @CAPS1 high up in the air, and there was alot of practicing involved. Next was the alterations made to the building, the building wasnt strong enough to hold the dirigible @CAPS1 they make @MONEY1 worth of changes. They finally realized this was an unsafe idea, and it wouldnt be good with the highly flamable hielium, @CAPS1 they were back to square 1. Then the government gave them a law that said no airships flying to low at or over urban areas, wich would make it illegal for the dirigibles to tie up to the empire state building. And the top floors were turned into soda fountain." 3 3 3 +15657 6 "The builders of the Empire State Building faced many promblems when attempting to allow dirigibles to dock there. Most of there problem they encountered when designing the mast. They found that they could not just drop a mooring mast on top of the building at a thousand feet. The building was not strong enough, so they had to strengthen the building with a new steel frame. Then the builders also faced safety issues. At a thousand feet the air currents were extremely violant. By the end of the construction it was quickly noticed that dirigibles could not land on the Empire State Building." 3 2 3 +15658 6 "The builders of the Empire State Building faced many problems that prevented dirigibles from landing there. It was too dangerous to tether dirigibles to the mast of the building for four main reasons. The first was that a dirigible moored to the mast of the building ""would add stress to the building's frame"". This problem was soon solved, however, as the steel frame was changed and it became strong enough to endure the added stress. Another reason that dirigibles could not be attached to the Empire State building is that dirigibles are highly flammable when they use hydrogen gas. It became apparent that if a dirigible were to catch fire in downtown New York it would be too terrible to risk. Dirigibles also couldn't be attached to the mast because the winds on top of the building would cause the back of the ship to ""swivel around and around the mooring mast"" and this would not be safe. Finally, dirigibles could not be moored to the Empire State building because ""the sharp spires of other buildings in the area [could] puncture the dirigible's shell"". The dirigibles could not fly so low without posing a risk to the people. Dirigibles could not land at the Empire State Building because there were too many dangers." 3 4 4 +15659 6 "The obstacles the builders of the Empire State Building faced constructing a correct mooring mast for the zepplins, and concerning the safety of the people in the city. They also had to account for the weather and how it may have affected the blimps. The builders had to add on more floors to the building and strengthen it's base so that the mast could work properly and stay stable. then they ruled out using weights to anchor the blimps in place because the people on the street below. Also the chemicals in the blimp were highly flamable and put people around at risk. Sometimes the winds were too strong for the blimps to get close enough without being punctured. The builders were faced with impossible obstacles to overcome" 3 3 3 +15660 6 "Based on the excerpt, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was a huge challenge for them to face. For example, mother nature itself was one of they're huge challenges they would mostly face. At the top of the Empire State Building, winds were constantly shifting and shifting due to violent air currents. As soon as an dirigible would hook up to the building, workers would have to find a way to keep they're airship from crashing into the building from the rusty winds at the top of the building. Therefore, if a dirigible- crashed anywhere on the ground it would burst into an inferno because the inside of a dirigible is filled with hydrogen and helium, so if it did crashed it will involve heat and fire that would be coming from the sparks it prevents as it crashes on the ground." 2 2 2 +15661 6 "The obstacles the builders of the empire State Building faced, was the lack of a suitable landing area. They will ""allow dirigibles to anchor there for several hours for refuel, or service, and to let passengers off and on"". Also ""Dirigibles were docked by which means of an winch, @CAPS1 thats what they did and faced to dock there." 1 0 1 +15662 6 "In the @ORGANIZATION1 there where many problems that where faced durring the build. The Way that this all @CAPS1 was when the archetect Al Smith wanted to make a building like no other, A building that was taller than the new chrysler building and one that was futureistic. The first problem that they ran into was, what was a building of this size going to be used for? There where many differen't ideas but the one that came to Al @CAPS2 @CAPS3 was transportation. This building could be used for a new kind of transportation where people could board a Dirigible ""also known as a blimp"" at the very top of the building. the next problem was if this would be safe to do because they couldn't have a big problem in the middle of New York. The idea went to Washington to be reviewed and ended up not being safe enough. Al Smith didn't care, His building was the tallest." 0 1 1 +15663 6 The obstacles the builders of the Empire State Building was nature itself. 1 1 1 +15664 6 "The builders of the Empire State Building faced several obstacles in their attempts to allow dirigibles to dock there. The first problem they faced was the issue of safety. Most dirigibles were fueled by hydrogen, which was highly flammable. This danger was shown by the Hindenburg disaster in New Jersey, and the owners of the building did not want to face a similar accident in a place as densely populated as New York. Another obstacle that arose was the fact that the violent wind at such an altitude would toss the back of the ship back and forth. This would not only be a technical hassle as it would also make it nearly impossible to get passengers in and out of the dirigible, and make it a frightening experience for anyone inside the ship as well. In addition, the ships could not be weighed down with lead weights as it would be too risky to have them dangling high above pedestrians. A final implication was that if dirigibles moored at the Empire State building, it would violate an existing law against airships flying too low over urban areas. Because of this, docking a ship there would be illegal which obviously way not helpful to the project. In the end, these obstacles were the key reasons that the endeavor failed. " 4 4 4 +15665 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One of these obstacles was that they would have to modify the entire building's steel frame so that it could withstand the extra stress and pressure of having a dirigible moored to its top. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. Over sixty thousand dollars' worth of modifications had to made to the building's framework."" Another obstacle the builders of the Empire State Building faced was that dirigibles were highly flammable because they were filled with hydrogen. The owners realized it may be a bad idea when the Hindenburg burst into flames. If that had happened at the Empire State Building it would have had extremely drastic results. ""When the German dirigible Hindenburg was destroyed by fire... The owners of the Empire State The building realized how much worse that accident could of been if it had taken place above a densely populated area such as downtown New York."" The biggest obstacle though was nature itself; ""The winds on top of the building were constantly shifting due to violent air currents... The back of the ship would swivel around and around the mooring mast."" @CAPS1 were just three of the obstacles that the builders of the Empire State Building faced in trying to allow dirigibles to dock there." 4 3 4 +15666 6 "During construction of the mooring mast atop the Empire State Building, the builders @CAPS1 many challenges. If they had just put a spire on top of the building. the weight of a dirigible could destroy it. The construction team needed to go back and reinforce the entire framework of the building. other obstacles in their way included low-flying aircraft laws, difficult weather conditions, and safety (if the derigible crashed over New York). For all these reasons the mooring mast was doomed from the start." 2 2 2 +15667 6 "In the passage ""The Mooring Mast"" by Marcia Amidon Lsted, she talked about the obstacles facest when trying to allow dirigibles to dock on the Empire State Building. The three main obstacles was the safety, mother nature and existing laws. One of the greatest obstacle was because of safety. Lsted states, ""... Never fulfilled its purpose... The greatest reason was one safety: Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable."" Because hydrogen is highly flammable there would be no way that would be safe. The building could catch of fire and be a danger for all. Secondly, nature itself would have an affect on the dirigibles. Lsted states, ""The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents."" The violent air currents couldnt allow dirigibles to be on the Empire State Building because you can't have dirigibles with violent air currents. It isnt safe. Lastly, laws was an obstacle the builders had to face: Lsted's knowledge is, ""The other practical lesson why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" The law was a huge obstacle for the builders building the dirigibles. Because you can't build something with it being against the law. Because of safety, mother nature and laws, thats what stop the builders from building the dirigibles." 3 3 3 +15668 6 The @CAPS1 the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were the high winds and the building struggled to stay up. The builders had difficulty getting the building to how they want it. They kept adding to the building and making it taller. The dirigibles needed it to be bigger so they could see it. The problem was that it kept on breaking or something would go wrong. They kept working on the building to try and get it right but continued to fail. They had to make their plans realistic and that was there major problem. 1 1 1 +15669 6 "Based on the excerpt, some obstacles the builders of the Empire State Building faced on letting things dock there was the law against air ships, safety and nature. There was a law that said that air craft's weren't allowed to fly that low. ""This law would make it illegal for a ship to ever tie up to the building."" Also it was unsafe due to the hydrogen in the dirigibles. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable."" Nature was a factor because of the high winds. ""The winds on top of the building were constantly shifting due to violent air currents."" Due to the obstacles that the engineers never thought of, the Empire wtate building never became a dirigible landing." 3 3 3 +15670 6 "Builders of the Empire State Building faced many obstactles in allowing drigibles to dock there. One obstacle was the safety of New York people. They could have used hydrogen and the dirigible could have caught on fire and landed somewhere bad. As said in paragraph @NUM1, ""The greatest obstacle to the succesful use of the mooring mast was nature itself."" Winds on top of the building were constantly shifting because of violent air currents. Even if they were tethered to the mast, the back of the ship would swivel around the mast Another was there is a law against airships flying too low over urban areas. The idea of using the mooring mast had quietly disappeared." 3 2 3 +15671 6 "The builders faced many obstacles while trying to add a mooring mast on top of the Empire State Building. As stated in paragraph fourteen, nature was the biggest obstacle the builders faced. The ""violent air currents"" would cause dirigibles to move around the mooring mast, even if it was tethered. Another obstacle faced, was that the architects couldn't just add a mooring mast to the top of the building; over sixty thousand dollars worth of modifications were made to the building's framework. Lastly, as stated in paragraph thirteen, most dirigibles from outside the @LOCATION1 used hydrogen rather than helium, even though it was flammable. When the German dirigible, Hindenburg, went up in flames, the owners of the building realized the dangers of this." 4 3 4 +15672 6 The buiders faced many obstacles. They could not simply drop a mooring mast on top of the Empire State building's flat surface it took alot of stress and hard work. The dirigible was held by a single cable tether and the dirigible was about a thousand feet. That made the builders very stressed and made them think clearly and carefully about the wind pressure and also the dirigibles load. 1 2 2 +15673 6 "There were a few problems with the dirigibles docking on the empire state Building. One problem would be the foundation. If dirigibles were to land on the building it would cause tension on the buildings foundation, @CAPS1 squishing it down. The architects would need to have made adjustments to the Foundation in order for a dirigible to land. Another problem was the way the ship would be docked. when the ship would be docked, it would be a hazard because it would sway back and forth around the mast. Either causing damage or injury to people of New York." 2 2 2 +15674 6 " There were many obstacles faced when trying to allow dirigibles to dock at the Empire State building.One of these obstacles was the wind currents atop the building. They were uncontrolable, forceful and unexpected. In @CAPS1 @NUM1 it explains how a U.S. Navy dirigible attempted to dock but could not due to the winds, ""U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds"" (Lsted) @CAPS2 the winds were an issue. Another problem was a law against airships that flew to low to the ground in urban areas. Not only was the idea dangerous, but it was also illegal. On May 6, 1937, a German dirigible called Hindenburg exploded in Lakehurst, New Jersey. This was due to the flammable hydrogen that was used to lift the dirigible. Since all dirigibles at this time obtained hydrogen another threat was introduced. This was the chance of it exploding while trying to dock on the Empire State Building. If it exploded while above numerous citizens, many lives would be in @CAPS3. The mooring mast idea, was now non-sense." 4 3 4 +15675 6 "Dirigibles, blimps, were being hailed as the transportation of the future in the 1920s. They had a top speed of eighty miles per hour, and they could cruise at seventy miles per hour for thousands of miles without needing refueling.One obstacle the builders faced was the lack of a suitable landing area. Al Smith spotted the opportunity for his Empire State building. He was to add a mooring mast to the top of the building, thus allowing dirigibles to anchor there for several hours for refueling or service. Also, it would let people off and on.The problem with this was that the builders couldn't just set the mooring mast on top of the Empire State building's flat roof if a thousand foot dirigible moored at the top of the structure, held by a single cable tether, it would add stress to the buildings frame." 1 2 2 +15676 6 "In @DATE1, the Empire State Building was constructed and would be used to house a new form of travel. The mooring mast, constructed at the top of the building would be used to dock one-thousand foot dirigibles; the future of travel. In theory, the blimp would be docked at the mast, using an electric winch, but in reality, there was no safe way of doing so at such a high altitude. Another challenge faced was the highly flammable gas, hydrogen, which was used. One lit match could send the steel frame plummeting to the earth below. The soft fabric which covered the steel frame could easily be punctured, which was unsuitable for an urban area.The men constructing the blimp either looked over, or forgot the elements of nature which restricted this project. At the peak of the building, winds reached high velocities, and shifted directions rapidly which would have rapped the dirigible around the mast. The greatest obstacle was the law, restricting airships from flying too low over New York's growing urban civilization. In the Empire State Building's history, one blimp has attempted to simulated dock, and another has performed a newspaper stunt. Any man his right mind would see that this project was doomed before it had begun." 3 3 3 +15677 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. They consulted with experts, taking tours equipment and mooring operations in New Jersey.The architects couldn't just drop the mooring mast on top of the building, if it did it would add stress to the building's frame. The Stress of the load and would have been transmitted all the way to the building's foundation. The steel frame would have to be modified and strengthened.The greatest obstacle was nature. The winds on top of the building were constantly Shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would around and around the mooring mast. You could weigh it down but that would be dangling high above pedestrians on the Street, which was neither practical or safe.There was also a law against airships flying too low over urban areas. And When they tried delivering newspapers they noticed it wasn't going to work" 3 3 3 +15678 6 The builders had to face alot. They had to rebuild the whole top again so the dirigibles could dock there. Architects couldent just drop a mooring mast on top of the Empire State. A Dirigible on top of a building held by a single cable tether would add alot of stress to the buildings frame. The steel frame of the Empire State building would have to be upgraded and strengthened. Also all of these modifications would cost over sixty thousand dollars to make the buildings framework better. 2 1 2 +15679 6 "To have a building built Over @NUM1 ft. tall and expect dirigibles/blimbs be able to dock there is dangerous and has many obstacles around it. First, the weather is not always nice. If you have a windy day the blimb is going to sway back and forth over thousands of pedestrians in New York. Putting lead blocks in the back would be very dangerous. you have lead in the back swaying with thousands of people underneath you. Secondly, most blimbs outside of the U.S. used hydrogen rather than helium. Hydrogen is very flammabe, and could destroy a whole building if the fire spread... Finally, blimbs could not moor at the Empire State building if it is against the law for an airship to hover to low to urban areas. Those are many reasons why blimps could not moor at the Empire State building." 3 3 3 +15680 6 "The builders of the Empire State Building faced many problems in attempting to allow dirigibles to dock there. A @NUM1 foot dirigible would add stress to the buildings Frame. Most dirigibles out of the United States used hydrogen rather than helium. Hydrogen is highly flammable. The acciedent of Hindenburg also raised alarm. Hindenburg set fire on Lakehurst in New Jersey. This showed the builders how much worse the acciedent could have been if it had happened over a densely populated area, such as New York. Another factor were the wind currents. They were constantly @CAPS1. This would cause the back Of the dirigible to sway and move about. There was also a preexisting law stating that airships could not fly too low over urban areas. These are some of the reasons obstacles the builders fased in attempting to allow dirigibles to dock on the Empire State Building." 3 3 3 +15681 6 "Based on the excerpt, there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The first obstacle is described in paragraph @NUM1, ""A thousand foot dirigible moored at the top of the building, held by a single cable tether, would and stress to the building's frame."" This means that they would need to strength the whole building. If they didn't the building would maybe fall over. The next obstacle is described in paragraph @NUM2, ""The greatest obstacle to the successful use of the mooring mast was nature itself."" This means that the wind is so strong up there, it would take a while to land safely. Also, that the wind could cause the dirigible to fly away. The @CAPS1 obstacle is described in paragraph @NUM3, ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas. ""This means they could be a target to destroy the building. Another thing, is that if it ever fell it would kill a lot of people. These obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were not overcome and the project was cancelled." 3 3 3 +15682 6 "There are many obstacles that the builders faced in order to allow dirigibles to dock atop the Empire State Building. One obstacle was safety. Foreign countries used highly flammable gases to fill their dirigibles with. According to the passage ""when the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey on May 6, 1937, the owners of the Empire state building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" Another obstacle was whether. The winds on top of the building were always shifting because of the violent air currents. For example, U.S. Navy dirigible, Los Angeles couldn't tie up to the mast because of the wind, which might have resulted in a puncture in the shell of the dirigible. One more obstacle was the law banning airships from flying too low over urban areas. According to the passage ""This law would make it illegal to ever tie up to the building or even approach the area""... Because of the many obstacles that the builders faced, the Empire State building was unable to fulfill its original purpose, but is still considered a worldwide landmark today." 3 4 4 +15683 6 "In the article 'The Mooring Mast' by @ORGANIZATION2, @CAPS1 describes of several problems the builders of the Empire State Building faced in trying to allow dirigibles dock there.For example, most blimps (dirigibles) out side of the United states used hydrogen, rather than helium. Since hydrogen is highly flammable, and since downtown New York is so populated, if anything were to go wrong it could impact the people of New York, resulting in injuries as well as deaths.Another reason is an existing law against flying airships too low over urban areas. This law making it illegal for ship to even approach the area. Overall, the builders of the Empire State Building faced many obstacles that could have been noticed before building." 3 3 3 +15684 6 "When building the empire state Building, the workers faced a few problems. One was how to make it @CAPS1, because the architect building the chrysler building had raised the total height, making it the largest building in the world. Al Smith, former governor of new york, said they were going to beat it by putting a mooring mast for the dirigibles. Another obstacle was @CAPS2 the mast to the top of the frame. It could not be dropped on, so sixty thousand dollars worth of maintenance had to be done to the frame. A third problem they had was tying up the dirigibles, violent winds could turn the Blimp around, possibly puncturing it. After the Hindenburg atrocity, the people in charge would not let blimps dock at the Building, for fear of endangering the Public. Thus, the mast was never used." 3 3 3 +15685 6 "People involved in the design and construction of the Empire State Building were faced with a few major obstacles in attempting to transform the idea of docking dirigibles to reality. One of the biggest complications was that if a massive dirigible was tied to the building by a ""cable tether"" then stress would be put on the building's frame. The builders and architects had to find a way to allow the stress to travel down the foundation of the building. They spent over @MONEY1 modifying the framework (From paragraph @NUM1). In paragraph @NUM2 we read that the architects and builders worked through the obstacle of storage by putting the winches and control machinery in the base of the shaft of the ""conical roof""." 2 2 2 +15686 6 "Although the builders dream of using the Empire State Building as a dock for dirigibles was a brilliant one, the builders came across many problems. One problem was the law against flying too low over urban areas like New York City. Also, nature played a huge part in why their plan didnt work. The violent wind currents throughout the city affected the plan. Most dirigibles landed in open fields where their back end could be weighted down. This would be impossible docked to the building causing the dirigible to sway around possibly hitting other buildings. The builders didn't take into consideration how densely populated New York City is. If anything ever happened to a docked dirigible like the Hindenburg many people would be affected. This is why the idea always stayed a dream." 2 3 3 +15687 6 "The obstical's the builder's took on Were difficult, and time @CAPS1. In Way's Such as the onley benefit's the Empire State building relly passed Was being the tallest building in the world. They also attempted to @CAPS2 a dirigible's docking base for future transportation @CAPS3 filed to do @CAPS4 during certain law's and technicall difficulties. @CAPS4 obsticles such as adding extra body work to the building's structure was not even neccarasary.Those are the obsticle's the builder's faced and as well as @CAPS5 time and @CAPS6." 1 1 1 +15688 6 "Based on the excerpt the builders of the Empire State building faced many obstacles attempting to allow dirigibles to dock there. One obstacle was that a ""thousand-foot dirigible moored at the top of the building held by single cable tether would add stress to the buildings frame."" This is a very important obstacle because of the frame becomes to stressed by excess wait of the dirigible the building might collapse. another obstacle is wind. ""The winds on top of the building were constantly shifting due to violent air currents"". This is also a major obtacle because the dirigibles were very light lighter than air so the violent winds would swing it arond that high in the air is not a safe thing especially considering that downtown @CAPS1 is below were there are thousands of people. And a third obstacle was the Law against airships flying to low over urban areas. This made it illegal to fly that low, to be able to tie the blimp up to the building." 3 3 3 +15689 6 "Based on the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, builders of the Empire State Building were faced with obstacles in attempting to allow dirigibles to dock there. The author writes, ""the greatest obstacle to the successful use of the mooring mas was nature itself."" (Lsted, paragraph @NUM1) It was reported that the winds on top of the building were constantly changing because of violent air currents. A dirigible on the building would not be able to land properly or be weighted down with lead weights like those in open landing fields. It would not be practical to dangle weight over the heads of hundreds of people walking in the streets below. In addition to nature itself, safety was another great obstacle that the builders were faced with. It is written that, ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (Lsted, paragraph @NUM2). Since hydrogen is highly flammable, an accident could be extreme in a densely populated area like downtown New York where the Empire State Building was located. An accident had already occurred with a German dirigible by fire in Lakehurst, New Jersey. When all is said and done, nature and safety were two obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there." 3 4 4 +15690 6 "What the builders are faced with while trying to allow dirigibles to dock on the Empire State Building, one of them was nature. The winds at the top of the building were always shifting cause of violent air currents. Even if they were able to tie the front of the dirigibles to the building the cable that is holding it will cause pressure to the building. They only way you could have the building not have pressure on it was to modify the building so it can get stronger that would cost over sixty thousand dollars. Even if they were able to get around all these obstacles there is a law against airships flying to low over the city. So either way it would not have been able to happen." 3 3 3 +15691 6 "A dirigible is not like a plane or a hot air balloon, it is filled with flamable gases, and to try to dock something that big on top of the worlds tallest building would be extremely dangerous too the urban town below and extremely dangerous for the workers." 1 1 1 +15692 6 "In the excerpt ""The Mooring Mast"" author Marcia Amidon Lsted speaks of the obsticles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. First, the frame of the Building had not been built to withstand a thousand foot long blimp docking to it. Therefore, changes would have to be made to make the building stronger. As the excerpt says, ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework"". Also, having dirigibles dock to the building would be unsafe for many reasons. For example, dirigibles were often filled with hydrogen rather than helium, and as the excerpt points out ""hydrogen is highly flammable"" thus, the owners of the building realized that it could cause tragedy if a blimp were to crash while flying above New York's busy streets. Also, strong winds at the top of the building made it difficult and dangerous for blimps to dock at the mooring mast, because they would cause the back of the ship to constantly move. Finally, there were laws preventing aircrafts to fly so low over the city. There were many obsticles in allowing dirigibles to dock to the building." 4 4 4 +15693 6 The builders of the empire state building @CAPS3 many different obstacles in trying to allow dirigibles to dock there. The @CAPS1 @CAPS2 was to be able to design the mast without having to reconstruct a big part of the building. Also a big aspect of it was that they had to face was to be able to make it safe. These big dirigibles can be very flammable and having something that major in a very populated city like new york would be very risky and unsafe. The last problem they @CAPS3 was nature. Of course you canot change nature so this was a problem was there since the beggining but was probably overlooked or never even thought about. So this really never would of been able to suscesfuly work without any problems. 2 2 2 +15694 6 The problems That The empire state building faced was alot of things for one example it was Never @CAPS1 out clearly because They didn't know about The law That aircrafts could Not come @CAPS2 any suburb areas and They really saw what could of happened when The hindenburg burned to the ground. Anthor great obstacles They faced was Nature becuse The winds on top of the building were always shifting because of violent air currents and This would cause The dirigble To swivel around the mooring mast. one last obstacle That was faced was The structure of the dirigble becuse if it kept on landing on Top of The building it would keep on destroying The building's sturcture. These are some of The obsacles that were faced. 3 2 3 +15695 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigible to dock there. The dirigibles also called blimps were very big, this was a problem because they were to large and could not get to the building and ""most dirigible outside the United States used hydrogen rather than helium and hydrogen is highly flammable"" (par. @NUM1) This is bad because an accident could occur and the blimp could explode right over the city and hurt thousands of people The winds above the building were sometimes violent and it was hard for dirigibles to reach it, ""Even if the dirigible tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" (par. @NUM2) It was difficult attempting to allow dirigibles dock the Empire State Building. The purpose in which the top of the building was created could not be used because it was to dangerous." 3 3 3 +15696 6 "In the making of the Empire Building the builders faced some problems. All of these problems or negative for what they actually wanted to do. Some of these problems were because of what the balloon was made of. Most balloons used hydrogen instead of helium. In the excerpt they say ""hydrogen is highly flammable"" which could cause many deaths. Also another was strong winds that could carry the balloon and be hard to handle. Last situation would be that there is a law about low-flying vehicles and the balloon flys low. In conclusion the problems they had could not be fixed, so the plan was ruined." 2 2 2 +15697 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was the law. There was ""an existing law against airships flying too low over urban areas"" ( @NUM1). Although at first the builders looked past this, there were many other non-legal obstacles that they faced. There was also a safety issue with docking dirigibles, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"" ( @NUM2). One last obstacle the builders faced was the wind. ""The winds on top of the building were constantly shifting due to violent air currents"" ( @NUM3). With all of these obstacles it would not only be improbable, but close to impossible to dock dirigibles on the mast of the Empire State Building." 3 4 4 +15698 6 "When Al Smith wanted to make a dock on the Empire State Building he wasnt really thinking straight. That was a horrible idea. Passengers would risk their lifes going on and off the dirigibles. He probably wasnt thinking about safety things and just was going for looks. The obstacles he would encounter words death from idiots that would go up there, weather, and @CAPS1. The weather was a huge factor because if it were to be windy it could through the dirigibles to go off course and crash. The @CAPS1 to make this landing pad would be crazy too because they would have to buy all the floats and make a landing station. @ORGANIZATION2 wasnt in a smart guy for letting dirigibles for landing." 2 1 2 +15699 6 "The biggest and most obvious obstacles of attempting to allow dirigibles to dock on the Empire State Building were the factors of safety, nature and the city's law concerning low-flying airships. According to the article The Mooring Mast by @PERSON1 the greatest safety risk was that most blimps made/operated outside the U.S ""used hydrogen rather than helium, and hydrogen is highly flammable."" (paragraph @NUM1) @CAPS1 a hydrogen filled dirigible to float above densely populated @ORGANIZATION2 would have been to dangerous of a risk. In 1937 a hydrogen blimp did catch fire, and the outcome was disastrous; owners of the Empire State knew another accident like that above New York would have been much worse. In higher altitudes winds increase, and the winds atop the Empire State would cause the blimp's tail end to spend about. Normally the tail end would be weighted down, but weights hanging above the city isn't safe either. During one of the two failed attempt: at docking of the building the winds were too fierce for the dirigible to even get close to the building. The capitan of the blimp feared ""... that the wind would blow with the dirigible onto the sharp spires of other buildings in the area..."" (paragraph @NUM2) and that could put a hole in the blimp. Lastly, a law in New York City states that airships can't fly below a specific altitude, thus making the docking of a dirigible on top of the Empire State illegal. Many apparent obstacles were over looked in the planning of the Empire State Building's blimp dock." 4 4 4 +15700 6 "While constructing the mast to docs dirigibles to the Empire State Building, there were many obstacles that led to the end of this project. An inevitable obstacle was that most dirigibles were filled with extremely flamable hydrogen, that could be detrimental to the condensed New York City streets as well as the Empire State Building, if exploded. Also, wind on top of the building was out of there control, and with the violent wind currents, docking would be highly dangerous. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" Although it would be possible to strap lead weights to the back end of the blimp, it would be unpractical and highly dangerous to the public. Dirigibles could not moor at the Empire State Building even if the docking station was completed because of an existing law that forbids airships flying too low over urban areas. ""The as yet unsolved problems of mooring airships to a fixed mast at such a height made it desirable to postpone to a later date the final installation of the landing gear. The obstacles that stood before the Empire State Building's mast were to great to optimistically believe the project could be finished. It was postponed and became obsolete with the invention of airplanes." 4 3 4 +15701 6 "The obstacles the builders of the empire state building faced in attempting to allow dirigibles to dock there is the winds on top on the building were always shifting because of the violent air currents. Also the dirigibles use Hydrogen, which is highly flammable. So if it blows up, there gonna be a lot of bad things going on in New york. Also there was a law against airships flying too low over Urban areas. The building would have to be modified and strengthened before the dirigibles could go there." 3 2 3 +15702 6 "@ORGANIZATION1 on the excerpt from The Mooring mast by Marcia Amidon Lüsted there were many obsticles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The first obsticle the builders faced was safety. Paragraph @NUM1 states, "most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable "The owners of the Empire State Building realized how horrible an accident could be if it takes place in a highly populated area. The greatest obsticle the builders faced was nature itself. "The winds on top of the building were constantly shifting due to violent wind currents" paragraph @NUM2 states. They could have weighted it down with lead weights, but using these where they would be hanging above pedestrians was not safe. The last obsticle the builder faced was the law was against airships flying too low over urban areas. This law would make it illegal for any ship to dock at the @ORGANIZATION1 on the excerpt from The Mooring Mast, there were many obsticles builders faced to allow dirigibles to dock there" 4 3 4 +15703 6 "While attempting to allow dirigibles to dock on top of the Empire State Building, the architects faced many obstacles. Usually, when given an obstacle, you either succeed it or fail it. In this case, these men didn't overcome the obstacle.In the reading, it mentioned that dirigibles from outside the U. S. contained hydrogen rather than helium. Hydrogen is highly flammable and it could cause a lot of damage. Not only to the building itself, but the area of downtown New York as well. Winds at the top of the building were shifting due to air currents. This could cause the dirigibles to circle the mast when even tied down. The architects also had to think about the existing law against airships flying too low over urban areas. The builders didn't realize how complicated the process of even tying down a dirigible would be because of the high winds. Even the process of dropping off newspapers was difficult, and took up too much time. Who would want in enormous steel framed balloons dangling over them anyways?" 4 3 4 +15704 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there is that it was strictly hard for architects to drop a mooring mast on top of the Empire Building, held by a single cable tether, would add stress to the buildings frame. Many dilemmas and complications the builders faced. Over sixty thousand dollars worth of modifications had to be made to the buildings frame work." 2 2 2 +15705 6 "The builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. The first initial issue that they faced was the stress the blimp would put on the building As the article states here, ""the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation...the building would have to be modified and strengthened to accomodate the situation."", the stress prompted the need for further improvements on the building itself; which obviously costs time and money. Another problem they faced was the impracticality of the dirigibles themselves. The dirigibles require hydrogen, which is highly flammable. As a result of the Hindenburg disaster, ""the owners of the empire state building realized how much worse that accident would have been over a densely populated area such as downtown @LOCATION1"" Another great issue that presented itself was the inconsistent violent air currents, which made safe docking for the blimps difficult. This problem could be combated with lead weights, but they ""were neither practical nor safe."" And lastly, there was already ""an existing law against airships flying too low over urban areas."" This law prevented the blimps from being able to fly as low as the building, let alone land there. In conclusion, the builders of the mooring mast at the @CAPS1.S.B. faced many obstacles in its construction which questioned its safety and prevented it from being practical." 4 4 4 +15706 6 "The builders of the Empire State building faced many problems in attempting to allow dirigibles to dock there. Starting with putting a mooring mast on the top of the Empire State building. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof"" (paragraph @NUM1). They had to modify the steel frame of the building. They had to do this all the way from the building's foundation, ""which was nearly eleven hundred feet below."" (paragraph @NUM1). This would cost more than sixty thousand dollars. Once the mooring mast was built the builders still encountered more problems. Dirigibles coming in from outside the @LOCATION2 ""used hydrogen rather than helium, and hydrogen is highly flammable"" (paragraph @NUM3). So the flammable dirigibles were too dangerous to fly over such a populated place as New York City. Also the winds at the top of the Empire State Building were too strong. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"" (paragraph @NUM4). In the end the problems the builders faced were too many, and unfixable, so the docking of dirigibles in the Empire State Building was no more." 3 4 4 +15707 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The first obstacle was that it was very dangerous to have a hydrogen (highly flammable) filled dirigible dock over one of the most densely populated areas at the time. They could not let the accident that had happened in Lakehurst, New Jersey happen in New York: ""..., The owners of the Empire State building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" The greatest obstacle was due to natural causes: ""The winds on top of the building were consular shifting due to violent air currents."" The dirigible would not be able to stay steady for docking or unloading. Other ideas to solve this problem like weights were, ""neither practical or safe."" The final obtacle was the law. ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas"". As shown, It was simply impossible for dirigibles to dock at the Empire State building because of natural causes, danger, and the law itself." 3 4 4 +15708 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The first problem was the structure of the building, after the mast was designed they needed a building that could withstand the stress of the mast. ""Rather than building a utilitarian mast without any ornametation, the architects designed a shiny glass and chrome-nickel stainless steel tower. They were able to overcome that obstacle. Another obstacle was safety. ""Most dirigibles from outside the United States used hydrogen rather than helium"" @CAPS1 obstacles did that bring? Well, hydrogen is highly flammable. When a German dirigible was destroyed by a fire in New Jersey, the owners of the ""Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area. The obstable brought upon another obstacle of practicality. Dirigibles customarily landed in open fields. ""The greatest obstacle to successful use of the mooring mast was nature itself. The winds on top of the building made it unsafe the only solution would be tethering the dirigible and weighing down the back with lead weights but using these at the building ""dangling high over pedestrians on the street was neither practical nor safe"". Architects faced many obstacles." 4 3 4 +15709 6 "The builders of the Empire State Building faced many obstacles in attempt to allow dirigibles to dock at the Building. One of the greatest reasons was saftey, most dirigibles outside the United States used hydrogen rather than helium. Hydrogen is also highly flammable. Another obstacle that arose was nature, the winds on top of the building were constantly shifting due to violent air currents. If the dirigible were tethered to the mooring mast, the back of the ship would sway violently with the wind. Other dirigibles moored in open fields added lead wights on the back of them so they could not move. But there is no where for those weights to be attached to at the top of the Empire State Building. A practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas. This law made it illegal for a ship to ever tie up to the building. Builders of the Empire State Building faced many obstacles in attempt to moor a dirigible" 4 4 4 +15710 6 "The builder of the Empire State Building faced many obstacles in the attempt to allow dirigibles to dock there. One of these problems, (that was noticed after building of the Mooring Mast), was how difficult it would be to keep a blimp steady and attached to something without pulling the building over on itself. Another issue was safety and one thing that was unsafe about it was that most dirigibles from other countries use hydrogen instead of helium, which is very flammable. One more reason was because of high air currents that would blow the back part of the ship around uncontrollably." 2 2 2 +15711 6 "In the excerpt 'The Mooring Mast"" by Marcia Amidon Lsted the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. First of all, if a thousand-foot dirigible held by a single cable tether was moored at the top of the building, it would add stress to the frame. The workers had to transmit the stress ""All the way to the building's foundation, which was nearly eleven hundred feet below."" They had to modify & strengthen the frame, which would cost over sixty thousand dollars. They also had to design an ornamental mast with four wings to house the mooring arm. What the builders did not realize was that their mooring mast not only had problems the frame work, but the dirigible would swivel around without being able to use lead weights to hold it down. There was nothing they could do to prevent this, flammability, or existing laws." 2 2 2 +15712 6 "There were three main reasons as to why the Empire State Building would not serve well as a mooring mast for the dirigibles. For one, it was unsafe. Most of dirigibles were filled with highly flammable hydrogen and the fear of a Hindenburg repeat was to great. Especially over a highly populated city. Two, violent air currents were present in and around New York City. Docking a dirigible would be too difficult and if it were docked, the wind would make it unsafe. Lastly, a law was passed that made it illegal for airships to fly too low over urban areas. This made it impossible for dirigibles to dock at the Empire State Building. These three obstacles were all contributing factors as to why the Empire State Building could not serve as a dirigible mooring mast." 3 4 4 +15713 6 "Marcia Amidon Lsted, in her excerpt ""The Mooring Mast"", describes the obstacles the builders of the Empire State Building faced in attempting to allow dirigables to dock there. One obstacle they would have to faced was realized during the designing of the mast that would be put on top of the building for docking. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" ( @NUM1) They found that a dirigible docked on top of the building would add too much stress to the building's fram. Therefore, their first obstacle was to make modifications that would strengthen the building's framework. However, as Lsted points out in paragraph @NUM2, ""The greatest obstacle to the successful use of the mooring mast was nature itself."" Due to rough air currents at the top of the building, the winds would constantly be shifting making even a dirigible tethered to the mast sway around. Another issue was the question of how to weight the dirigables down. In open landing fields, they would weight dirigables down with lead weights. Using extremely heavy weights while being above hundreds of people on the streets would not be acceptable. In conclusion, as one can see, the builders of the Empire State building faced many obstacles in trying to allow dirigables to dock there." 3 3 3 +15714 6 "When builders attempted building a structure to allow dirigibles, or blimps, to dock on the Empire State Building in New York, they did not realize how many problems they would encounter. Upon designing the mast on top of the building, designers realized that if a dirigible was docked on to the building, it would add stress to the frame, and therefore, would have to modify the Empire State building's structure. To do this, sixty thousand dollars was needed, as well as more hours of labor. Another obstacle encountered was the fact that nature got in the way, and ""the winds on top of the building were constantly shifting due to violent air currents"" (line @NUM1). It would be difficult to dock it to the building, because the dirigible would be constantly swaying due to wind, and passengers could not get on the blimp. Furthermore, blimps usually were moored in open fields, with the aid of lead weights to help weigh them down. If lead weights were introduced in New York City, where it was very populated, they could potentially fall while dangling in the air, endangering pedestrians. In conclusion, builders faced many obstacles while trying to achieve docking capability for dirigibles on the Empire State Building." 4 4 4 +15715 6 "There were many obstacles that the @CAPS1 of the Empire State Building faced one of them were redesigning some parts of the Empire State Building. The @CAPS1 job was to create the mast for docking new airships called dirigible or blimps. This plan came with great difficulty, they couldn't drop on mooring mass on top of the Empire State buildings flat roof. They came to figure out that a ""thousand-foot dirigible moored held by a single cable tether, would add stress to the buildings frame"" (paragraph @NUM1). This stress would have to be transmitted to the buildings foundation. The @CAPS1 had to modified and strengthened the steelframe in order to accommodate the situation of the stress on the building frame Also creating the rocket shaped mass the @CAPS1 had to work on many different parts. The winches and control machinery for the dirigible mooring. This had to be done presisely in order for everything towork This were the obstacles the @CAPS1 face in attempting to allow dirigibles to dock in the Empire State building." 2 2 2 +15716 6 "The main problem they had with the docking of the dirigibles was it would have to be really safe. To hold the aircraft down they would have to use lead weights. I weights fell from the top of the building in such a dense, populated area it would be very dangerous. Also when the owners of the Empire State got notice of the hindenburg blowing up they felt uneasy. Even if the aircraft was floating moored to the top of the building the wind would whip it around making it even more unsafe. The idea was good but not probable to be safe." 2 2 2 +15717 6 "When building the Empire State Building, there was obstacles faced in attempting to allow dirigibles to dock there. For example the architects could not simply drop a mooring mast on top of the empire state building flat roof. A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building frame. So the architects have to motify it and stregthen the building. Spending over sixty thousand dollars on the new motification. The building will turn from @NUM1 floors to 102. From there dirigible passenger will board from there. In conclusion when building the Empire State Building there was obstacles faced in attempting to allow dirigibles to dock there." 2 2 2 +15718 6 "There were many issues that made it impossible to use the Mast of the Empire State Building as a dock for dirigibles. One was that many foreign dirigibles were filled with hydrogen a very flammable gas. If one caught fire like the Hindenburg, it would cause many trageties because it would be above people's homes. For the same reason, there was a law against dirigibles flying too low over cities.""This law would make it illegal for a ship to ever tie up to the building or even approach the area.""@CAPS1 the safety risks for people below, there was the wind causing a problem that the blimp could not even dock correctly. ""Even if the dirigible were tethered to the mooring mast, the back of the ship with swivel around."" One of the attempts proved that it would be tricky to land. The Los Angeles attempted to reach the building, but retired the thought because of the wind. The captain feared he could fly into one of the spires of a tall building and the dirigible could be punctured. ""[He] could not even take his hands off the control lever.""" 3 3 3 +15719 6 "In the article The Mooring Mast by @PERSON1 @CAPS1, she describes the difficulties of designing the Mast for Dirigibles to dock on top of the Empire State building. Al Smith the mayor of New York City at the time of construction of the Empire State building came up with the idea to add a mooring mast to the top of the building. He wanted to make New York city a technologically advanced city. After the mast was proposed desingners discovered problems with mast being installed. They discovered that they would have to modify the steel frame because if a thousand- foot dirigible moored at the top of the building would transimite stress all the way down the frame to the foundation. due to the load and wind pressure. The wind speeds on the top of the building would blow the dirigible around in the wind, this is very unsafe being close to a building." 2 2 2 +15720 6 "In The Mooring Mast by Marcia Amidon Lsted, alot of problems were faced in allowing the dirigibles to dock there. The obstacles that were faced would put peoples safety at risk. One of the problems was the tail of the dirigibles would swirvle because of how high up it was the wind would be violent. Another problem that was stated in paragraph @NUM1 was forgeign dirigibles were made with hydrogen instead of helium so they were flamable." 2 2 2 +15721 6 "Builders of the Empire State Building faceD many obstacles in attempting to allow dirigibles to dock there. When designing the mast, they didn't realize that the mast ""would add stress to the building's frame"" and in order to fix this problem, they would have to pay ""over sixty thousand Dollars' worth"" for modifications for the building's framework. Another problem they encountereD, besides the fact that there was ""an existing law against airships flying too low over urban areas,"" ""the winds on the top of the building were constantly shifting."" This did not allow dirigibles to be able to get close enough to dock, in fear that the ""wind would blow the dirigible onto sharp spires,"" which would damage the dirigible's shell. An alternate problems faceD by builders was realized when the Hindenburg was destroyeD in New Jersey, due to the fact that ""hydrogen is extremely flammable."" They realized how unsafe it be to have an accident like that ""above a densely populateD area."" AnD so, builders were forceD to stop their work." 4 3 4 +15722 6 "The builders of the empire State Building faced many problems atempting to dock dirigibles. Most of these problems were safety concerns. One issue was the use of hydrogen, which is highly flamable and explosive gas. A fire acident would be catastrophic, since down town newyork is densely populated. Another problem was that the tail of the dirigible could not be weighted down as it usualy is, because then thered be massive weighs dangling over the streets. With the winds blowing and the blimp not securely tethered, and not weighted, Dirigibles would have swayed and moved around. That creates the risk of the blimp getting punctured by sharp edges on other buildings. Also if the blimp ever successfully moored it would create tremendous stress on the building. Besides the technical issues there were some obvious obstacles that oddly never got considered or addressed. The first being a law prohibiting low-altitude flights of airships over urban centers. That makes it illegal to even attempt to land, meaning there was never any remote chance of the mooring mast functioning. The second promblem was, the proper mooring equipment were never installed. That meant no attempt could ever succeed. The builders faced many obstacles building the mast but they're biggest obstacle was lack of preparation, failure to address obvious problems." 4 3 3 +15723 6 The builders of the Empire State Building faced two obstacles in attempting to allow dirigibles to dock there. The first obstacle was the forceful winds. The winds on top of the building were constantly shifting due to violent air currents. Even tethering the dirigible to the mooring mast would cause the back of the ship to swivel dangerously around the mooring mast. The second obstacle was due to an existing law against airships flying too low over urban areas. This law made it illegal for a ship to tie up to the building or even approach the area. 2 3 3 +15724 6 "The obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were @CAPS1. In @CAPS2 @NUM1 it reads that ""Over sixty thousand dollars' worth of modifications had to be made to building's frame work."" This @CAPS3 that the designings of the Mast was going to take some time. Another obstacle almost called the end of the mooring mast. In @CAPS2 @NUM2 Architects @CAPS5 that, "" The mooring mast of the Empire State Building was destined to never fulfill its @CAPS6 pose, for reasons that a pparent befrore it was even constructed.' The greates reason was one safety: Most dirigibles from outside the @LOCATION3 used hydrogen rather than helium, and hydrogen is highly flamable."" @CAPS7 this was such a huge @CAPS8 the owners thought of the densely populated area of New York and how People could get hurt." 3 3 3 +15725 6 "The obstacles that builders faced while building the Empire State Building was, first the buildings structure was not strong enough, the winds were too strong, and the law. The buildings structure could not hold a @NUM1 foot dirigible. The winds would make the dirigible move, which could also ruin the frame of the building. Also the law said that the airships could not fly too low over a city. That was some of the obstacles that the workers faced while building the Empire State Building." 2 2 2 +15726 6 "Upon taking up the task of building a mast for dirigibles to dock at, the architects encountered many obstacles which made the idea of a mooring mast unplausable. One obstacle they ran into was the violent nature of the wind currents above the city. If the dirigibles were to dock at the building with a tether, then the back would be free to swing and sway. Another factor they had to consider is that dirigibles are full of the flamable gas hydrogen which imposed the risk of a serious fire hazzard about New York City. Even if the engineers and architects managed to work out all of the kinks of building the mast, they still would face another obstacle. It was illegal to fly dirigibles to low over urban areas. These are the reasons why the idea of a dock for dirigibles could never work out." 3 3 3 +15727 6 "The @CAPS1 of the Empire State Building faced many obstacles. By allowing the dirigibles to dock there, They had to build @CAPS2 planfronts on the side of the building, which means that they would be putting there life's in danger. They also had to deal with the electrical problems within and without the building. The @CAPS1 on the outsides of the building would have to deal with the strong wind currents. They also have to make sure that the electrical system was working properly. If there were to be a stark of any sort of Fire, the hydrogen and helium were extremely flameable, and if a wire were too short, it could like the whole dirigible aflame and it would blow up." 1 2 2 +15728 6 The Empire State Building faced @CAPS1 difficulties to have the dirigibles to dock there. Wind pressure from the dirigibles messed up the buildings frame work. To accommodate the situation they paid Over Sixty thousand dollars to strengthen the buildings framework. 1 1 1 +15729 6 "Based on the excerpt the builders of the Empire State Building were faced with many obstacles in attempting to allow dirigibles to dock there. Some of the obstacles were safty factors and nature its self.Safty was a big obstacle in this plan for a morning mast because the dirigibles use hydrogen to float these big ships. Hydrogen is highly flammable and the owners of the Empire State Building relized how bad it would be if the dirigibles were to cech of fire over a highly populated city like New York. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable. When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, May 6, 1937, the owners relized how much worse that accident could have been in New York.""The greatest obstacle was nature. Humans couldn't control wind and ontop of the building they were constantly changeing makeing it hard to dock. ""The winds ontop of the building were constantly shifting due to violent air currents."" The mooring mast couldn't be done." 3 3 3 +15730 6 "Mooring mast was added to the top of the building where it would allow dirigibles to anchor there for several hours for refueling or service, and to let passengers on and off. Dirigibles were docked by an electric winch. The body of the dirigibles swang in the breeze. One set of engineers in New York tried to dope out a practical. They worked really hard. The Government people in Washington were figuring on some @ORGANIZATION1 of mooring airships to the mast. They eventually were successful on what they were trying to accomplish by building a mooring mast so that the dirigibles would have a place to land for fuel and service." 1 2 2 +15731 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles docked there. Based on excerpt, one of these obstacles were the lack of suitable landing area. The dirigibles were as long as one thousand feet, the same length as four blocks in New York City. Another obstacle was an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area. The U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds. If they got close enough to tie up, the captain could not even take his hands off the control levers because of the fear that the wind would blow the dirigible onto the sharp spires of other buildings in the area, which would puncture the dirigibles shell. Also, for the dirigible to be added, over sixty thousand dollars worth of modifications had to be made to the buildings framework." 2 3 3 +15732 6 "In the excerpt, ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock on the building. First they had to make sure that the mast wasn't too heavy to put on top of the building and when they realized it was they made @MONEY1 of modifications to the building so that it could support the mast. They also had to make sure it would be safe, transporting people through this dirigible. It depended on the wind and climate. They also had to make the building taller than the Chrysler building. They wanted to transform New @CAPS1 transportation. In the end, they realized that docking on the building was not possible if they wanted to keep everything safe to the public." 2 2 2 +15733 6 "In the passage ""The Mooring Mast"" The excerpt went through @CAPS1 obstacles Such as @CAPS2. If the men were not trying to compete the buildings would probably have been okay. If you take your time and real try to reach your goal you can." 0 0 0 +15734 6 "In the article ""The mooring mast"" by Marcia Amidon Lsted. The obstacle the builders of the empire state building faced in @CAPS1 to Allow dirigible to dock there because people they was not gonna be safety. ""The owner of the empire state building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown new york"". Another example why the builder faced in @CAPS1 to Allow dirigibles to dock there because ""open landing field could be weighted dow in in the back with lead weight, dangling high above pedestrians on the street was neither practical nor safe"". The empire states was not very safe. This is why the builders of the empire state building faced in @CAPS1 to allow dirigible to dock there." 2 1 2 +15735 6 "In the @DATE1's people did not have technology like we had today, they didnt know what they were really even doing. when the architecks were builing The @CAPS1 state builing they had many problems. First they couldnt just drop a mast on there because as they said in the story the roof was not flat. Next it said a thousand foot drop would add stress to the frame and last they had to change the frame from steel to glass and they also had to change the roof. All in all men in the @DATE1's had a lot of work to do while building the Empire State Building." 1 1 1 +15736 6 "The mooring mast of the Empire State Building was destined to never fulfill its purpose for reasons such as, safety, nature, and the laws. The greatest reason was safety because most dirigibles from outside of the United States used hydrogen rather than helium. Hydrogen is very flammable. The German dirigible, Hindenburg, was destroyed by Fire in Lakehurst, New Jersey, on May 6, 1937. This accident could have been much worse if it happened in a densely populated area like downtown New York. Nature was the biggest obsticle to get around because of the winds on top of the building were constantly shifting due to violent air currents. This would cause the back of the ship to swivel around. This is not good because it would be dangling high above pedestrians on the street. Finally, there are laws against airships flying too low over urban areas. That law would make it illegal for a ship to ever tie up to the building or even approach the area. In conclusion, because of these three major reasons, the mooring mast of the Empire State Building was destined to never fulfill its purpose." 3 3 3 +15737 6 "The obstacles the builder of the Empire State building faced in attempting to allow dirigibles to dock there, was noticing that the dirigibles would be unsafly dangling high above pedestrians on the Street. There were many risk when landing the huge dirigibles and also a law against airships flying too low over urban areas. This law made it illegal for a ship to even approach the area. Famous and important dirigibles had lots of trouble with their landing like for example on December 1930, the U.S Navy dirigible Los Angeles approached the mooring mask but could not get close enough because of forceful winds. The dirigible could move uncontrolably and crash into the Sharp Spires on other buildings around it. In @CAPS1 of becoming the of transportation of the future, dirigibles had given way to airplanes." 3 3 3 +15738 6 "The obstacles the builders of the Empire State Building faced in allowing dirigibles to dock there are many, mainly it is a safety concern. ""The winds on top of the building were constantly shifting due to violent air currents"", stated the article. ""They would be dangling high above pedestrians on the street [which] was neither practical nor safe."" This shows the dirigibles are inpractable and a danger to both the people in it and the people on the street below." 1 2 1 +15739 6 "The greatest obstacles the builder of the Empire State Building faced in attempting to allow dirigibles to dock there was one of safety. Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey on May 6, 1937 the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated areas such as downtown New York. The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents. The other practical reason why dirigibles could not more at the Empire State Building was an existing law against airships flying too low over your ring areas. The wind would blow the dirigible onto the sharp spires of other buildings in the area, which would puncture the dirigible's shell, the captain could not even take his hands off the control levers." 2 3 3 +15740 6 "In the story ""The Mooring Mast"" by Marcia Amidon Lsted, There were many problems to face to allow dirigibles to dock ontop of the empire state building. These obstacles composed of the dirigibles themselves, natures winds, and laws that prevent dirigibles being allowed to dock. Some dirigibles from outside the state used hydrogen, a flammable gas, and could cause mass destruction to New York City due to being about the same length as four blocks, in New York City."" Wind caused the dirigibles to swivel around even after being tied down. Since there ""was an existing law against airships flying too low over urban areas."", doing so could cause the captain of the dirigible to be arrested." 2 3 3 +15741 6 "The obstacles the builders faced in building the Empire State Building were nature. ""The winds on top of the building were constantly shifting due to violent air currents."" ""Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe."" The size was a problem along with how high they were in the sky. ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" @CAPS1 were the obstacles." 2 3 3 +15742 6 "In this excerpt, The Mooring Mast by Marcia Amidon Lsted, there were many obstacles the builders of the empire state building faced, in attempting dirigibles to dock there. One obstacle they faced, was that they lacked a suitable landing area. Because of this, they came up with the idea of having the passengers get on and off the dirigible by walking down a gangplank to an open observation platform. Another obstacle they faced, was that ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" Another main obstacle that the builders faced was that ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" In the end, the idea of the mooring mast, was a failure. The builders didnt think about potential problems that could occur. For example, nature itself, the law against airships flying too low over urban areas, and even fires, due to the gas (hydrogen) used in some dirigibles." 3 3 3 +15743 6 "If the Empire State Building were to dock dirigibles, there would be many problems in the way. They had a lack of landing area for an almost one-thousand foot blimp. This dirigible being held by a single tether to the Empire State Building would put a large amount of stress on the building's structure risking a possible collapse if continued. If they were to use the Empire State Building, They would have to modifiy it and use thousands of dollars in the process. Even then if the dirigible held onto the Building, the back of the blimp would sway with the high winds and that might risk the safety of the passengers. All in all the idea of landing a dirigible on a gigantic building is just a bad idea" 3 3 3 +15744 6 "Dirigible docking would have been a great addition to the Empire State Building. There were many obsticles the architects had to go through to complete this goal. The building wasn't strong enough. If they had tied a dirigible to the top of the original Empire state bilding, it would have pulled the building untill it feel over. The architects had to upgrade the frame so it was safe. Now that the frame was safe they had to worry about the dirigible itself. If only one end of the dirigible was tied to the mast the other end would blow in the wind. This would make unloding cargo and people very hard. Also dirigibles could catch fire, which wasn't safe. for the people on the ground. In the and it just wasn't safe to dock a dirigible at the Empire State Building." 2 3 3 +15745 6 "While the Empire State Building was being built the builders faced many obstacles. Al Smith, the one in charge of this project, had a goal to build the tallest building. Right of the bat, the first problem occurred. The Chrysler Building had a secret 185-foot spire inside, and made this building now @DATE2, 46 ft taller then the Empire State Building. The first sign of hope shinned apon Al when he saw an opportunity for Empire State Building. Dirigibles needed a landing area. and the mooring mast does the trick. The mast, added to the top of the building, allows dirigibles to anchor For awhile to refuel and to have service done. This design took a while to develop + soon became bad. Saftey was a factor. Most dirigibles, from outside of the @LOCATION2. were run on hydrogen rather than helium. Hydrogen is very flammable and can cause tragic accedents. For example on May 6, 1937 German dirigible was destroyed by fire in New Jersey. If something like that would happen in a heavily populated area like @CAPS1 then there would be a problem. These were a couple of the many obstacles faced while building the Empire State Building." 2 2 2 +15746 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. The obstacles included safety issues, nature and the law. Safety issues was a problem because in the excerpt it says, ""Most dirigibles from outside United States used hydrogen rather than helium, and hydrogen is highly flammable."" This explains why they couldn't do it because of one of the dirigibles would explode in downtown New York it would cause severe damage and losses of life because it's a populated area. Another obstacle was nature. Nature played it's role because ""the winds on top of the building were constantly changing due to violent air currents."" This would have made the back of the dirigibles swivel around which was either practical or safe. The last obstacle was that there was a law about airships flying to low over urban areas. This would have made it illegal to tie a ship to the Empire State Building. These obstacles had made the builders face problems to allow dirigibles to land on the Empire State Building." 3 3 3 +15747 6 "The builders of the Empire State building faced obstacles attempting to allow dirigibles to dock there. The first big obstacle was designing the mast. Architects couldn't just drop a mooring mast on the top of the Empire State building; it had a flat roof. If a dirigible was moored it would add additional stress to the frame, and wind pressure would be a factor as well. The mooring mast was never destined to fulfill the purpose of landing dirigibles, because it isn't safe, nature (dirigible with swivel in back) it could possibly be weighed down by lead in back but that cant be hung above pedestrians on the street. A practical reason why they could not moor was a particular law already in place against air ships flying to low. Although, this had happened two dirigibles had attempted to moor there the first turned back due to bad weather conditions and the second one was as a publicity stunt had dropped off newspapers before the landing gear could be installed so they had to use a wire to recieve them. In result the idea was shelved." 3 3 3 +15748 6 "The obstacles the builders faced was mainly safety. Safety was important because of how many people there are in New York. Another problem was the dirigibles outside the United States were hydrogen instead of helium. At such a high height the wind is very strong and the blimps are only being held by the front while the back would swing uncontrolably. A blimp can easily be blown into a close building's sharp spires and pop because of winds. There are alot of things that could go wrong at any time, so I think the right decision was to stop the idea of the mooring mast." 2 2 2 +15749 6 "The obstacles the builders of the Empire State Building faced is dirigibles were docked by means of an electric winch, which hauled in a line from the front of the ship and then tied it to a mast." 1 0 1 +15750 6 Well the dirigibles were airships flying to low over the city and over urban areas. Also the U.S @ORGANIZATION2 approached the mooring mast to tie up but the winds were to forceful. also a Goodyear Blimp Columbia. Attempted a publicity stunt where it tied up and deliver a bundle of newspapers. 1 1 1 +15751 6 "The builders of the empire state building faced many obstacles when trying to make it safe for dirigibles to dock there. Three main issues they faced were adding stress to the building, safety, and urban laws. The Empire state building was already huge & fragile so adding a lot of way to it, would not have helped, ""a @DATE1 foot dirigible moored at the top of the building held by a single cable tether would add stress to the building's frame."" The architects could not want this, they had to make changes. Before they made the changes, they also realized that it was extremely windy up there, ""winds on top of the building were constantly shifting due to violent air currents."" @CAPS1, it would be safe to be up there, never knowing how bad the winds would be. So they decided to make the building shorter. After all the work they put in, it still wasn't good enough because there was a law that was ""against airships flying to low over urban areas"". After all the time and hard work they put in, there was, in the end, no way to have this idea be successful." 3 3 3 +15752 6 "The builders of the Empire State Building had obstacles in their way. There were Dirigibles that were one thousand feet long and they had an obstacle which was that they did not have much space in New York to land. Al Smith decided that was a good idea to let dirigibles anchor on top of his building for some hours for ""refueling or service, and to let passengers off and on."" But the dirigibles were docked by an electric winch that tied the ship to the mast. The dirigibles would swing and people would still get on and off safely. Architects and engineers of the Empire State Building worked/talked with experts and got equipment ""and mooring operations oat the U.S. Naval Air Station"". which the navy was the leader in the development of dirigibles in the U.S. and knew everything. The Navy offered its dirigibles to be used for testing the mast. Also the architect met with president of an airship transport company that offered a dirigibles service across the Pacific ocean. so the builders had many obstacles and attempts to allow dirigibles to dock at the Empire State Building." 3 2 3 +15753 6 The obstacles the builders of the @ORGANIZATION1 people faced in attempting to allow dirigibles to dock there is they would have to have different make new Routes that was yet to get made and existing transatlantic Routes. 0 0 0 +15754 6 "In the excerpt, ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was trying to moor a dirigible at the top without stressing the building too much. It says, ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings foundation."" This means they planned to deal with this problem by spreading this stress all the way to the foundation of the building. Another obstacle that was faced was trying to keep the dirigibles from moving and swaying too much, once they were moored. It says, ""The winds on top of the building were constantly shifting due to violent air currents."" It was impossible to keep the dirigibles from moving because the wind was so violent. The last problem was that even if they could get a dirigible to moor to the building, it was illegal to fly the airships that low in an urban area. ""This law would make it illegal for a ship to ever tie up to the building."" In conclusion, all of these obstacles that the builders faced led to the final result of being unsuccessful." 4 3 4 +15755 6 The Empire State Building faced alot promblems before it came out as an @ORGANIZATION1. They scared that other people will destroy this Building. So the reduced the dirigibles to dock there. They wanted their city to become a famous city and get more money. And other problem the some people didn't care and postpone to later. 0 0 0 +15756 6 "The idea of docking a one thousand feet long dirigible to a mast eleven-hundred feet above the ground never seemed possible. From the factual evidence provided in paragraphs @NUM1 and @NUM2, the theory is proven failure. ""Dirigibles outside of the United States used hydrogen which is highly flammable."" If a dirigible caught fire trying to dock at the Empire State building, the accident would quickly turn into a catastrophe. ""The greatest obstacle was nature itself."" The high-speed and shifting winds atop the Empire State building would cause mooring dirigibles to branish around the mast. Another obstacle the builders of the Empire State building faced was the law forbidding air vessels of flying too low over urban areas. A problem that would condemn the theory from the start." 3 3 3 +15757 6 "The builders of the empire state building faced many obstacles with allowing dirigibles to dock there. For one thing, they were mainly ""hydrogen rather than helium, and hydrogen is highly flamable"". A fire in one of these would be devastating being over an enormous city like New York. The wind currents would also make it impossible to dock there. ""The ship would swivel around the mooring mask"", and could even potentially puncture the frame. The whole idea was dangerous and risky. In fact, it would of been illegal for flying ""too low over urban areas"". Not only was it dangerous, but aganst the law too. Overall, these were the obstacles that workers faced, and the obstacles that won out in the long run." 3 2 3 +15758 6 "In building the empire state building, the builders faced many obstacles in the process of letting dirigibles moor at the mooring mast. In the article ""The Mooring Mast"" by Marcia Amidon @CAPS1 the author gives us examples as to what was difficult. One obstacle in the docking of dirigibles to the mast was safety for the people inside. The article says, ""The greatest reason was one of safety."" It then goes on to say ""Most dirigibles from out of the U.S used Hydrogen, Hydrogen is highly flammable."" another reason was nature. The author states ""The winds on top of the building were constantly shifting due to violent air currents."" This would lead to unscure departure of passengers. The article also says ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel"" which shows unsafe air conditions. These are two obstacles that made landing at the mooring mast very difficult and soon made it impossible. " 2 3 3 +15759 6 "The builders of the Empire State Building faced many obstacles. The dirigibles weren't safe in a city like New York because of violent wind currents at the top of the building that would make the dirigibles ""swivel around and around the mooring mast."" Also many blimps from outside the United States were filled with hydrogen, which is highly flammable. If there was an accident like the Hindenburg in New York, more than just the passengers would be harmed. Another obstacle was that there was a law forbidding airships to fly too low over urban areas. This law made it illegal for ships to even go near the Empire State Building." 3 3 3 +15760 6 "Based on the excerpt the builders of the Empire State Building faced problems such as to much wind movement, to much weight, and to many safty risks. when they attempted to allow dirigibles to dock there.The wind movement would move the dirigibles around when trying to dock so they would have troubles with that. They would also have weight problems because they didn't have a stable enough frame around the building. They would have to pay alot of money to fix this problem.The last problem was a safety problem. After the German dirigible Hindenburg blew up they realized that it was way to dangerous to have blimps landing over crowded cities It was also a flying law of airships not being able to go that low over a city.This is why the builders had faced so many problems." 3 3 3 +15761 6 "Based on the excerpt, ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State building faced the obstacles of the use of hydrogen in dirigibles in which is highly flammable, nature itself, and an existing law in attempting to allow dirigibles to dock there.It stated in paragraph @NUM1 of the excerpt, most dirigibles outside the united state used hydrogen, which is very flammable. Realizing that this kind of happening above an outrageously populated area such as New York City would be extremely dangerous. To explicate. ""when the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident would have been if it had taken place above a densely populated area such as downtown New York"".However, the greatest obstale was nature itself. At the top of the building, the winds were constantly shifting. which was certainly not safe. For example, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" The builders soon realized that this issue could unfortunately, not be resolved.Lastly, a more apparent obsticle that the builders faced was an existing law against airships flying too low over urban areas. This would make it illegal for the ships to even approach the area.The obstacles of the use of hydrogen, nature itself, and an existing law, made it impossible for Al Smith's plan to become realistic." 3 3 3 +15762 6 "Builders of the Empire State Building faced many obstacles well attempting to allow dirigibles to dock there. One obstacle was the ""violent air-currents."" Due to these currents, it became very hard to be able to allow a dirigible to dock at the top of the empire state building, without blowing away. Another obstacle was safety. The dirigibles were filled with hydrogen, instead of helium. Hydrogen is a very flammable object and if an accident were to happen, a flaming balloon flying over a highly populated area of New York could become very dangerous. Although the idea of making docking stations for dirigibles is a good idea, there are too many obstacles and hazards preventing it from ever happening." 2 2 2 +15763 6 "The builders faced many obstacles in attempting to ensure that dirigibles could dock at the Empire State Building. For example, the first problem that arose was construction of the mast atop the building. According to the excerpt, ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" From this you immediately know that the frame of the Empire State Building would have to be properly modified in order for the dirigible to safely and successfully dock at the mast. Another minor issue was making the whole construction look decorative. ""... the architects designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from inside..."" @CAPS1, ""The greatest obstacle to the successful use of the mooring mast was nature itself."" @CAPS2, the winds at that altitude would have been to unstable for a dirigible to dock. The problem is that the winds could potentially ""swing"" the rear of the dirigible around the mast, which is extremely dangerous and risky." 2 3 3 +15764 6 "During the construction of the empire state building builders faced many obstacles with attempting to allow a dirigible to dock there. These problems consisted of safety and practical isshues. one safety isshue was that most dirigibles outside the United States used hydrogen rather than helium. hydrogen was more flammable than helium. This led to the hindenburg a german airship to be destroyed by fire. ""most dirigibels from outside the United States uses hydrogen rather that helium, and hydrogen is highly flammable."" The builders also had practical isshues such as it was illegal to fly a airship to low low over a city. ""the other practical reason why dirigibles could not moor at the empire state building was an existing law against airships flying to low over urban areas. This made it illegal for a ship to even tie up to the building."" These obstacles stopped the hops landing on a building." 2 3 3 +15765 6 "Based on the excerpt, the builders of the Empire State Building faced many obstacles in attempting to let the dirigibles dock there. One obstacle the builders faced was the ""lack of a suitable landing area."" (paragraph six) A second obstacle is the amount of stress a dirigible would put onto the building. As the author states in paragraph nine, ""the stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the buildings foundation."" The author also states that in order for the invention to work out, the Empire State building's steel frame would have to have more strength to it and it would have to be modified to accommodate the new idea. The greatest obsticle faced was due to the nature of where the building was located. Because of the location, the winds were so strong and the wind shifted constantly. The last obsticle the builders faced was ""a law against airships flying too low over urban areas."" By the late nineteen thirtie's, the idea landing dirigibles on the Empire State Building disappeared. Instead, the idea of air transportation was given to airplanes." 3 3 3 +15766 6 "The obstacles the builders of the Empire State Building faced made it hard to build the Mooring. One problem they faced was that most of the dirigibles made outside of the @PERSON1 Used hydrogen rather than helium. In paragraph @NUM1 it says ""when the German dirigible Hindenburg was destroyed by fire, the owners of the Empire state building realized how much worse it would be if that happened in New York city which is highly populated."" @CAPS1 obstacle was mother Nature. Winds at the topof the building were constantly changing. In paragraph @NUM2 the author states ""the greatest obstacle to the successful use of the mooring mast was nature itself."" The last obstacle was laws against airships flying too low over urban areas. In paragraph @NUM3 the author states ""this law would make it illegal for a ship to ever tie up to the building or even approach the area""." 3 3 3 +15767 6 "Obstacles such as nature, safety issues, and weight as well as length of the dirigible were obstacles that the builders of the Empire State building faced in trying to allow dirigibles to dock on it. They were very hopeful in the idea of having the Empire State building, ""equipped for an age of transportation that was then only the dream of aviation pioneers,"" until they saw the risks. First was nature itself, winds were constantly shifting due to violent air currents. This means that the dirigible, which was made to be, ""lighter than air,"" would swivel around the mooring mass. and have no weight support to keep it down. Sometimes, the winds might even prevent the dirigible to get close enough like in @DATE1 when a U.S. Navy dirigible named Los Angeles approached the mooring mass but couldn't get close enough. Another issue with safety. It was stated that outside of the U.S., most dirigibles use hydrogen instead of helium, which was used in the U.S. Hydrogen is highly flammable which is a very dangerous asset when there are millions of people down below. When the owners of the Empire State Building heard about the German dirigible the Hindenburg that was destroyed by fire, they imagined that situation over New York which was highly populated. Lastly was the size and weight of the dirigible itself. The dirigible (@NUM1 ft) held by single cable would add stress to the building's frame. In order to prevent this, they would have to modify the frame. These obstacles plus many more showed that that this idea was, ""destined to never fulfill its purpose.""" 3 4 4 +15768 6 "The builders of the Empire State building face a couple challenges in trying to build a dock for dirigibles on it. One main problem was that it was clearly unsafe because dirigibles from outside the United States use hydrogen instead of helium. Hydrogen is very flammable and they didn't want to have another accident like the Hindenburg. They realized that if an accident like that had happened in a densely populated area such as New York, it would have been a thousand times worse." 2 1 2 +15769 6 "How safe is it to have a large dirigible @CAPS1 above thousands of civilians? The builders had many problems to face will attempting to allow the dirigibles to dock at the empire state building. For one thing the mast was not yet even said to be ready in this excerpt ""to fix a mast at such a height made it desireable to postponed to a later date."" The landing gear was also not yet ready or sure to work. The idea of using dirigibles over such a crowded area was not even said to be relevantly smart." 1 1 1 +15770 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. One obstacle was that most dirigibles from Outside of the United States used hydrogen instead of helium, and hydrogen is highly flammable. When a German dirigible was destroyed by fire in New Jersey, the owners of the Empire State Building realized it would be much more dangerous in a crowded area. A second obstacle was that the dirigible with be swivelling around the mast because of violent air currents. The dirigible would be dangling high above pedestrians on the street, which is definitely not safe. A third obstacle was that there was an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area. Thankfully, by the late 1930s, the idea of using the mooring mast for dirigibles had quickly disappeared, and the builders had no more obstacles to face." 4 4 4 +15771 6 "The idea of Hindenburg sized air ships landing on top of the Empire State Building sounds propostorous in today's day in age. However in the 1920s this was a dream of many. Unfortunaetly this dream never came to be due to multiple obstacles faced by the builders. The first obstacle faced by the builders concerned what was in the air ship itself, hydrogen. This would be a problem because the vast majority of blimps visiting ""used hydrogen rather than helium, and hydrogen is highly flammable"". So if an accident ""had taken place above a densely populated area such as downtown New York"" it could be disastorous. Another major problem were the winds. They were ""constantly shifting due to violent air currents"" and so the ships could swing into other buildings. These two points aside, there was a ""existing law against airships flying too low over urban areas"" anyways. So regardless of the wind or the hydrogen it wasn't legal. These three obstacles combined made the dream of airships landing in New York stay a dream and not a reality." 3 3 3 +15772 6 "In the story ""The Mooring Mast"" by Marcia Amidon Lsted, the builder's of the Empire State Building had many obstacles in the attempt of allowing dirigibles to dock. The huge balloon caused tension and stress due to its ginormous size. ""A thousand-foot dirigible moored at the top of abuilding, held by a single cable tether, would add stress to the building's frame"". The stress of the dirigible, can cause crucial damage on the buildings frame. Also, it was not only the size the contents of some of the planes caused a crisis aswell. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable"". The worrys of the balloon catching on fire was too much to risk. Along with all, is the power of nature itself. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" The winds on top of the building were very violent compared to the ones in the ground causing a scare. It looked all good until everything was looked at carefully, obstacles came from all different ways." 4 3 4 +15773 6 "In the excerpt, The Mooring Mast by @ORGANIZATION2, there were obstacles that the builders of the Empire state Building faced in attempting to allow dirigibles to dock there. The majestic spire of the Empire State Building is familiar to many people throughout the world, but not many know that the original purpose of the mast was to serve as a landing spot For dirigibles also known as blimps. The builders of the Empire State building faced a myriad of obstacles. It is proven when it says ""The architects could not simply drop a mooring mast on top of the Empire State Building Flat Roof... A Thousand foot dirigible moored at the top of the building held by a single cable Tether, would add stress to the Buildings frame"". They took a risk in having the dirigibles tied to the Empire State building, which can cause pressure to the building which soon might clasp. Another @CAPS1 that proves that the builders Empire State faced, ""The greatest obstacle to the successful use of the mooring mast was nature its self"" The winds on top of the building made it dangerous. clearly there were obstacles that the builders of the Empire State Building faced." 2 2 2 +15774 6 "In the excerpt from The Mooring Mast by @ORGANIZATION2 builders must faced many obstacles in the attempt to allow the dirigibles to dock on the Empire State Building. In paragraph @NUM1 of the excerpt it states, ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" The stress of the wind and dirigible's weight would have to be transmitted to the foundation of the building, about eleven hundred feet below. In paragraph @NUM2 of the excerpt it states, ""most dirigibles... used hydrogen rather than helium, and the hydrogen is highly flammable."" If another disaster happened like the Hindenburg (which was destroyed by fire) in an area heavily populated like New York, above a large building with many people, it would be a thousand times worse. The winds above the Empire State Building were constantly changing because of violent air currents. This left the designers to deal with the problem of a dirigible swinging around the mooring mast. In the excerpt from The Mooring Mast by Marcia Amidon @ORGANIZATION2 the builders faced so many obstacles that they eventually abandoned the project." 3 3 3 +15775 6 "On December 11, 1929, Al Smith had the idea to make the Empire State Building the tallest building in the U.S.. He wanted to out-do the Chrysler Building, Smith wanted it to be 1,250 feet. His idea was to add a mooring mast. However, issues got in the way such as how highly flamable blimps were, how densely populated the city was, and the violent shifting winds.Blimps are highly flammable because they contain both hydrogen and hellium. on May 6, 1937, German dirigible was destroyed by fire in Lakehurst, New Jersey. New York City has millions of tourists a day, in such a populated area what if something went horribly wrong. The greatest issue was nature. ""The winds on top of the building were constantly shifting due to violent air currents... the back of the ship would Swivel around the mooring mast."" (@CAPS1, @NUM1).On May 6, 1937 owners of the building concluded that efforts to make the Empire State Building the tallest building was neither practical nor safe." 2 3 3 +15776 6 "During the attempt to allow dirigibles to dock in the Empire State Building, builders faced many obstacles. One of these obstacles was to modify the whole frame of the building. ""A thousand- foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame... The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" This quote from the excerpt cleary shows that the builders would have to move around this to complete their job, which would entirely make this situation an obstacle. Another obstacle faced by the workers was nature itself. ""The winds on top of the building were constantly shifting due to violent air currents."" This quote shows another obstacle because builders could not find a practical way to get the passengers off, and putting lead in the back would only endanger the pedestrians below. The final obstacle the builders faced was the safety of everyone. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" This quote shows a very big obstacle, which actually happened to the German dirigible Hindenburg. Those were the obstacles that were faced by the workers during the time of attempting to dock dirigibles on the Empire State Building." 4 4 4 +15777 6 "Many obstacles occured for the builers of the Empire State building and allowing dirigibles to dock there. One of these obstacles was the mooring mast itself. The winds on top of the Empire State Building were constantly shifting and if the dirigible was tied to the mooring mass it would swivel around the mooring mast. Another obstacle the builders experienced during this process was the already existing law not allowing airships to fly too low over urban areas. Due to the fact that the Empire State building was in New York, an urban area, the dirigable idea would have most likely never worked. The dirigable was unable to fulfill its destiny and the obstacles the builders faced were the main reasons." 3 3 3 +15778 6 There are some obstacles the builders face during this time while building the Empire State Building. One of the issues was the unsolved problems of mooring airships to fix a mast at a height desirable to postpone installation to a later date. The Empire State Building wasn't destined to ever fulfill its purpose. For reasons it should have been apparent before it was constructed. And another obstactle was the lack of a suitable landing area. 1 1 1 +15779 6 "There were Several obsticles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One reason was one of sefty. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" If an accident would occur above a densely populated area, such as New York, it would be catastrophic. Another obsticle was nature itself. ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigibles were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Another obsticle the builders had was an existing law against airships flying too low over urban areas." 3 2 3 +15780 6 "The builders of the Empire State building faced obstacles such as weather, chemistry, and construction issues in their attempt to allow dirigibles to dock there. For example, the height of the building meant that, ""the winds at the top of the building were constantly shifting due to violent air currents"". Due to the violent wind currents, the backs of the dirigibles would constantly orbit around the mast. Another problem that the builders of the Empire State Building faced was the gases that most dirigibles were made of. Most of the dirigibles from outside the country were made out of the gas hydrogen: an incredibly flammable gas. This problem was exhibited by the German dirigible Hindenburg that was destroyed by a fire. With this misfortune, the owners of the Empire State building noticed ""how much worse that accident could have been if it had taken place above a densely populated area such as a downtown New York"". With this realization, the builders of the Empire State Building finally came to realize that a dirigible dangling high above the street was not safe or a practical idea. Lastly, the construction of the building itself posed a problem the obstacles of the attempt to allow dirigibles to dock there. The stress of the dirigibles load and the wind pressure would put stress upon the frame of the building and would be incredibly expensive to modify. However, the builders fixed this problem at the cost of sixty thousand dollars. Unfortunately, the other problems with the construction were too great." 4 4 4 +15781 6 "Complex. A building is a complex structure that cannot be easily tampered with, and still be considered safe. That is the major problem the builders had. It isn't easy you ""could not simply drop a mooring mast on top of the Empire State Building's flat roof"" (@CAPS1 @NUM1). They had to strengthen the structure and that took ""sixty thousand dollars' worth of modifications"" ( @NUM1). Plus the builders had to design a nice plan for the mast, to make it look nice. They even had to use glass which is a harder material to work with. Although the greatest obstacle the builders had was allowing the dirigible to dock. One it was filled with hydrogen which is highly flammable, and if it ever blew up it would have killed a lot of people in the city. However ""the greatest obstacle to successful use of the mooring mast was nature itself"" (@NUM3). This was mentioned in @CAPS1 @NUM3 and is the main reason why the idea failed. The winds were always constantly shifting, which caused the back to swivel and become unsafe. Weights on the back would have made it even more dangerous, because they could fall. Lastly laws prevented flight so close to the ground. But even so many other blimps tried, like ""Columbia"" and ""Los Angeles"", and found it was too hard to fly that close to building and dock as well. The idea had many holes in it. " 4 4 4 +15782 6 "In the excerpt, they tell some reasons why it would be difficult for dirigibles to dock on top of the Empire State building. In paragraph 6, it says, ""Dirigibles were docked by means of electric winch, which hauled in a line from the front of the ship and tied to a mast. The body of the dirigible could swing in the breeze, and yet passengers could safely get on and off the dirigible by walking down a gangplank of the observation deck."" This shows how it could be potentially dangerous for the passengers of the dirigible to get off. Another reason was that dirigibles were losing passengers in the late 1930s due to the airplane. As it is stated in paragraph @NUM1, ""By the late 1930s, the idea of using mooring mast for dirigibles and their passengers had quietly disappeared. Dirigibles, instead of becoming the transportation of the future, had given way to airplanes."" That quote shows had dirigibles were losing popularity due to the airplane." 3 2 3 +15783 6 "The builders of the Empire State building faced many obstacles when they tried to build a mast to allow dirigibles to dock there. First of all, some dirigibles were highly flamable because they use hydrogen instead of helium. A German dirigible named Hindenburg was destroyed due to a fire and once the Empire State Building noticed how much worse it could've been in a higher populated place like New York, their hopes went down a little bit. Another obstacle was one that couldnt be fixed, because it was caused by nature. It was the violent winds. The excerpt stated ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" The only solution was to put lead weights in the back, but then they would be hanging over pedestrians, which is definatly not safe. The last thing that stopped them was a law that was against any airships the flew too low in urban areas. All in all, the builders faced too many obstacles to build a mast for dirigibles" 4 4 4 +15784 6 "Builders had many obstacles to overcome when attempting to allow dirigibles to dock on the Empire State Building. One obstacle was the lack of suitable landing area. This obstacle did not stop Al Smith, he saw this as an oppertunity to add a mooring mast at the top of the building so dirigibles could anchor there. This idea caused another obstacle, a mooring mast could not possibley be dropped on top of the roof of the building. The stress of the load and the wind pressure would have to be transmitted all the way to the buildings foundation. With this the steel frame of the building would have to be modified and strengthened costing @MONEY1 just to change the framework. In the end this mooring mast to dock dirigibles never came through and archetects should have seen the potential problems in the beginning." 2 3 3 +15785 6 "In the Mooring Mast, Marcia explains how Al Smith attempts to put a mooring mast on top of the Empire State Building, to allow dirigibles (blimps) to station their for several hours. The architects faced many obstacles in trying to adding mast onto the design of the Empire State Building. One of these obstacles were remodifing the building, so the weight of the blimp wouldn't stress the foundation. ""A Thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" ( @NUM1) A different obstacle that delayed the progression of blimps being dock at the top of the Empire State Building, was because of safety issues. Most blimps outside of the U.S. used hydrogen, which was highly flammable, rather than helium. And because New York was highly populated, there was no doubt that there would be frequent fires. Even the owners of the Empire State Building realized that this danger, on May 6, 1937." 3 3 3 +15786 6 "The builders of the Empire State building, who wished to place a mooring mast at the top of the building, faced many obstacles in their attempts to allow dirigibles to dock there. One such obstacle was safety. Most dirigibles at the time used highly flammable hydrogen, and should a single spark enter the balloon, the entire dirigible would catch fire. Eventually, the owners of the Empire State Building realized how [harmful an] accident could [be] if it [took] place above a densely populated area such as downtown New York,"" and halted construction of the mooring mast. Another obstacle was that ""the winds on top of the building were constantly shifting due to violent air currents,"" which would cause the dirigible to ""swivel around and around the mooring mast."" A third reason was that, even should there be some way of holding the dirigible still against all that air pressure, all the stress of holding that dirigible still ""would have to be transmitted all the way to the building's foundation."" All these problems contributed to the mooring mast's fate disuse." 3 3 3 +15787 6 "The first main obsticale that the builders faced was the fact that blimps even though they have propellers and rudders are still at the mercy of the wind. And since the wind on top of the building was described as ""Constantly shifting due to violen air currents"" ( @NUM1) it would be impossible to keep the blimps stable while it was moored on the Empire state building. Just docking the blimp onto the building was an impossible feet, the only blimp that even tried to dock onto the Empire state building, the naval dirigible Los Angeles could not get close enough to the building to get the mooring lines on because they where ""Fearing that the wind would blow the dirigible onto the sharp spires of the othe building in the area, which would puncture the dirigible's shell."" ( @NUM2) causing the dirigible to fall onto the city.The second main obsticale was the public safety aspect of trying to moore a dirigible on the Empire State building There were too many things that could go wrong. The blimp could explode like the Hindenburg, or could run into one of the spires on the surrounding buildings and plumet to the ground potentially killing or severely injuring hundreds of people. That is why trying to dock a dirigible on the Empire State building was an impractical idea." 4 4 4 +15788 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the empire state building faced many obstacles in attempting to allow dirigibles to dock there. Those obstacles were safety reasons against it, laws that made it illegal, and nature (weather). In order to allow dirigibles to dock on the building, all aspects of the project had to be safe - but they weren't. ""Most dirigibles from outside the U.S. used hydrogen rather than helium, and hydrogen is highly flammable"" ( @NUM1). A German dirigible had caught fire in New Jersey and the Empire State building owners realized how bad a fire could be in downtown New York, which is densely populated. Secondly, there ""was an existing law against airships flying too low over urban area"" ( @NUM2), which would make even trying to approach the building illegal. Lastly, nature was not going to change and suddenly cooperate for one project and it was unpredictable when or if the weather would permit docking. ""The winds on top of the building were constantly shifting due to violent air currents... The back of the ship would swivel around... dangling high above pedestrians on the street"" ( @NUM3). Sounds safe, or practical? Definitely not. In the end, all of the obstacles the builders of the Empire State building faced were too great to overcome and the top of the building never became a mooring mast for dirigibles." 4 3 4 +15789 6 "The worker faced many obsticals while building the Empire State Building. Sence Al Smith was trying to compete with the Chrysler Building for the tallest building he kept adding on to the Empire State Building. To make his building the tallest in the world he added the mooring mast. This mast would make the Empire State building 1,250 feet tall. The builders had to redesine the entier buildings sceleton. They had to make sure the Empire State Building could hold up the mast. The mast was made so that Dirigibles could land thire and people could get on and off it. ""The steel frame of the Empire State Building would have to be modified and strengthened."" The builders fixed the steel fram of the building with in two months. The building went on as planned. After awhile the people begin to see that the mas couldn't be used for dirigibles because of the violent wind currents at the top of the building." 2 2 2 +15790 6 "When builders were building the Empire State Building they came across many obstacles. One problem was lack of suitable landing area in @CAPS1 (paragraph 6). Al Smith came up with the idea to put a mooring mast to the top of the building to allow dirigibles to land there, but there was many problems with this mooring mast. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame."" (paragraph @NUM1) architects had to strengthen the building's foundation. Over sixty thousand dollars was spent to try and modify the buildings framework. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" (paragraph @NUM2) The winds were shifting and the back of the ship would swivel around, which was not safe. Another reason is that airships flew too low over urban areas. Having a mooring mast for dirigibles to land was dangerous, going against some laws, and a lot of work." 4 4 4 +15791 6 "In this excerpt there were obstacles the builders of the Empire State Building. The obstacles they face were the dirigible and the sucess of the mooring mast. The dirigible were enormous steel framed balloons, with envelopes of cotton fabric. filled with hydrogen and helium to make it lighter than air. unlike the balloon, a dirigible could be maneuvered by the use of propellers and rudders. like a gandala. Another obstacle is the sucessful use of the mooring mast. The winds on top of the building were constantly shifting due to violent air current. It could also weight down and dangle above the pedestrians wasn't safe. All in all these were the obstacles they had to face." 1 1 1 +15792 6 "The builders of the Empire State Building faced many problems when attempting to allow dirigibles to dock there. One problem they faced was that the dirigibles moored to the top of the building would add stress to the buildings frame, so the stress of the dirigibles load would have to be transmitted all the way to the foundation. Another problem they faced was that most dirigibles outside the U.S. used highly flammable hydrogen so it would be very bad if one was destroyed by fire above densely populated downtown New York. Also there was already a law against airships flying too low over urban areas, so it would be illegal for a ship to even approach the area." 3 2 2 +15793 6 "The obstacles that the builder's faced were @CAPS1 avoidable. The first obsticle they faced was the @CAPS2 landing space they had. If they had thought a little bit longer they most likey could of figured out a way to overcome that problem. Now a @CAPS3 a couple of obsticles to talked about the fate of the Mast. Everybody including Al Smith should have thought about the safty, it Should have been a first priority. The builder's Should have seen a problem like this coming, with a poor plan to build Something @CAPS4 has everdone before." 1 1 1 +15794 6 "In the beginning, all the plans made for the Empire State Building seemed perfectly plausible. Dirigibles would tie up to the mast on top of the building and dock there while the passengers got off; easier said then done. Soon enough they began to realize all the flaws in this plan, there were @NUM1 main @NUM2.) After seeing how easily the ""Hindenburg was destroyed by fire"" they realize it was too dangerous having dirigibles fly over such a ""densely populated area such as downtown New @NUM3.) When the Navy dirigible Los Angeles tried to dock, it ""could not get close enough to tie up because of forceful winds."" It was far to windy for the light dirigibles to stay in @NUM4.) @CAPS1 with the wind problem, if somehow a dirigible was able to be tied down ""the back of the ship would swivel around and around the mooring mast. ""@CAPS2, unlike dirigible landing fields it was far too risky to dangle weights above the city of @CAPS3 just to hold the back of the dirigibles down.@NUM1.) Unlike previously thought, dirigibles were not the way of the future, airplanes became the newer more efficient way in the late 1930's.A good idea, but as they said: ""destined to never fulfill its purpose.""" 3 3 3 +15795 6 "The @CAPS1 of the @ORGANIZATION1 many obstacles in attempting to allow dirigibles to dock there. One problem was the law. There was a law in place preventing airships flying too low over urban cities. This made it illegal for airships to tie up to the building or even come close to the area. Another isue they had was that dirigibles were filled with hydrogen, not helium Hydrogen is extremely flammable and it would be catastrophic if a dirigible blew up over New York City. The last problem they @ORGANIZATION1 was the wind. At the top of the building the winds shifted due to violent air currents. Even if the dirigibles were tied up the back end would move around. They got the idea to use lead weights on the back but it would not be safe over all those people." 3 3 3 +15796 6 "The builders of the Empire State building had a grand idea of including a mooring mast where dirigibles, also known as zeppelins or blimps, could dock themselves. Though the idea was good, it provided the builders with many obstacles. For example, when the framework was being built, the mast was going to have to be added to the top. The mast couldn't just be dropped on, however because if a dirigibles were to the moored there, it would put too much stress on the building's framework. This revelation caused them to have to modify the entire framework to make it stronger which was very expensive.Another difficulty the builder's faced, after construction was completed, in allowing dirigibles to dock there was nature. The building was 1,250 feet tall, so the winds up at the top were constantly changing and dangerous, making it difficult for the dirigible remain stationary when moored. Also, something the builders didn't foresee was the laws against blimps flying to low over urban areas. These two challenges ended up making the use of the mooring mast impossible" 3 3 3 +15797 6 "One obstacle that the builders faced was that havin dirigibles hanging over a heavy populated area was extremely dangerous, because May 6, 1937 the german's dirigible was destroyed by fire, another obstacle was that it was illegal to have blimps flying to low over heavy populaded areas. So Al Smith had to let go of that plan." 2 2 2 +15798 6 "Trying to allow dirigibles dock on the Empire State building caused way to many obsticals for the builders. Dirigibles were up too one thousand feet long, this would make it realistically impossible for it to dock because the size of it would add stress to the buildings frame builders would have to reconstruct and make the frame stronger. Most non-@CAPS1 dirigibles are filled with hydrogen and not hellium which I highly flamable if cought fire pedestrians could be seriously hurt. Finding out later they an existing law about airships flying to low which would make it illegal for a dirigible to even fly near the Empire State building" 3 2 3 +15799 6 "In the excerpt ""The Mooring Mast,"" by Marcia Amidon Lsted, the builders of the Empire State Building were faced with many obstacles to allow dirigible's to dock there. What these builders were facing was a thousand foot derigible moored at the top of the building, the height of the Empire State Building is 1,250 ft. Adding the single cable tether would add to much stress to the buildings frame, the workers would need to modify and strengthen the buildings frame. Another problem they didn't realize at first was the wind, from violent air currents. With all these problems that were not easily fixed, eventually the idea of a dirigible at the top of the Empire State Building dissapeared." 2 2 2 +15800 6 "In the excerpt from ""The Mooring Mast"" By Marcia Amidon Lsted, the builders of the empire state building faced several obstacles in the attempt to allow dirigibles to dock there. One of the obstacles they faced was the fact that there was a lack of suitable landing area. The dirigibles were thought to be able to anchor on the mooring mast for refueling or service, however, another obstacle was in the way; nature. That was the greatest obstacle. The wind at the top of the building were always shifting because of violent air currents. The builders were afraid that the back of the ship would ""swivel around and around the mooring mast"" With that said, they came to a conclusion that they would be ""dangling high above pedestrians on the street [which] was neither practical or safe. In order for it to be safe, they came to another obstacle. The entire building would have to be modified and strengthened with over @NUM1 dollars worth of investment. Lastly, there already stood a law against airships flying too low over urban areas. With all obstacles faced, it was never opened to the public." 3 3 3 +15801 6 "The main problem the builders of the Empire State Building faced in attempting to let dirigibles to dock were the wind conditions and how close dirigibles were to the building. The wind conditions made it hard for the builders to figure out how dirigibles would dock there. The winds near the top of the building were, ""constantly shifting due to violent air currents."" (@CAPS1 @NUM1) The other problem the builders faced was how close dirigibles came to the building. In one case, as a test run, the Los Angeles tried to approach the mast but it, ""could not get close enough to tie up..."". Even though the building was not what it was suppose to be it is still one of the greatest of all time." 3 3 3 +15802 6 The builders of the Empire state building faced a lot of obstacles attempting dirigibles to dock their. One of the first obstacle the builders faced was realizing that the dirigible moored at the top of the building would add stress to the building's frame. The builder's realized that the wind pressure could make the dirigible swivel which would not be suitable for the foundation of the building. strengthening the building's structure would cost over sixty thousand dollars. The workers also realize that the dirigibles are flamable and if something were to go wrong it would cause a devestation to a such populated area. These obstacles put and end to the dream of having mooring mast on top of the Empire state building. 3 3 3 +15803 6 "Throughout the excerpt, on trying to build the empire state building; the builders faced a lot of hard attempts trying to build the dock for the dirigibles. One major problem is that the dirigible was not able to land on the buildings flat roof. This was stated in paragraph @NUM1 of the excerpt. Another problem is that they had to design elevators and stairs for the passengers to travel to the top of the building to be able to get on the dirigible. Along with designing stairs they had to be able to build 102 floors just for the area where the blimp would land. This can be supported in paragraph 11 and @NUM2 of the reading. After trying to build the big building, the builders ran into major safety concers towards the end of the making. The builders did not think they would run into any problems or think of the safety." 1 1 1 +15804 6 "The builders of the Empire State Building faced many obstacles while attempting to allow dirigibles to dock there. One of these obstacles was that the ""stress of the dirigible's load and wind pressure would have to be transmitted all the way to the building's foundation."" This meant that they would have to spend over @MONEY1 to create a frame that would be able to stand that amount of pressure. Another obstacle they were facing was that most dirigibles had hydrogen in them, which is very flammable. They were afraid that if the balloon caught on fire, it would fall down to densely populated city below. And there was nothing that they could do to change this. A third obstacle they were facing was that ""the winds on top of the building were constantly shifting due to violent air currents."" This meant that the dirigible be constantly moving around while passangers tried to get on and off, which would not be safe. These are some of the obstacles the builders of the Empire State building faced." 3 4 4 +15805 6 "The builders' expectations were set too high and they faced many obstacles they had not foreseen. Safety was a big issue in allowing dirigibles to dock there. The dirigibles ""used hydrogen rather than helium, and hydrogen is highly flamable."" With a highly populated city like New York, it would have been easy for a fire to begin. Another obstacle of allowing dirigibles to dock was nature. The wind at times could be too powerful. As said the reading, ""the winds on top of the building were constantly shifting due to violent air currents."" These threatening winds would have made it impossible for the dirigibles to land and serve as safe transportation.The last obstacle was that it was illegal. The had @CAPS1 been a law against it. The reading states, ""this law would make it illegal for a ship to ever tie up to the building."" With this law, there was not even a glimpse of hope that this plan could be successful." 3 4 4 +15806 6 "The builders faced many obstacles when trying to make it possible to allow dirigibles to dock at the top of the Empire State Building. They could not add an all steel mooring mast on top of the building because it would add too much stress to the frame and foundation of the building. If they were going to add a mooring mast, they needed to modify and strengthen the building's frame.The other problem the builders faced was safety. They had to consider the fact that may dirigibles from outside of the United States used hydrogen, which was highly flammable. The Building was in a densely populated area in downtown New York City. The last obstacle the builders faced was nature. The winds on top of the building were very strong and the air currents frequently shifted. This would have made the dirigibles swivel around the mast." 3 3 3 +15807 6 "The Empire state building was facing of with Chrysler building that was being constructed. Chrysler building had a trick up his sleeve by constructing 185 foot spire inside the building and the shocked the public. Bring it to a hieght of @DATE1 feet, 46 feet taller than the originally announced hieght of the Empire State building. Soon to be the tallest building. The empire state building was destined to neve fulfill it's purpose" 0 0 0 +15808 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. When a dirigible was docked, it was held by a single cable tether, adding stress to the biuldings frame. The steel frame of the bilding from top to bottom would have to be modified and strengthened to adress this new situation more than @MONEY1 was spent for modifications on the buildings framework.When the owners of the Empire State building found out about the Hindenburg was destroyed by fire, they realized how much worse it could of bin if it happened right over down town New York. If there was a docking accident and the dirigible was filled with hydrogen then that would be bad for the workers and anyone ealse around the building." 3 2 3 +15809 6 "The builders of the Empire State Building faced obstacles when attempting to allow dirigibles to dock there. One obstacle was that most dirigibles outside the U.S. used hydrogen, which is highly flammable. With downtown New York being a densely populated area, that wouldn't be such a great idea.Another obstacle they had to face was the weather itself. The Empire State Building was very high so it got really windy. The winds on the top of the building were constantly changing due to violent air currents.They also weren't thinking about the government when they were building the mooring mast. There was a law stateing that airships couldn't fly to low to urban areas. It would be illegal if a ship even tried using the mooring mast." 2 3 3 +15810 6 "The @CAPS1 of the Empire State Building faced the @CAPS2 of purfictle placing a thousand foot dirigible on top of the Building which would of not worket out Because of the wind and there was no wait in the back that would of kept the dirigible in place in which now ment that the dirigible would have been swinging back and fort and gave the riesct of the dirigible poking a sharp point on the corner of the Empire State Building and exploding, the dirigible above New York City and putting thousand of life at dinger. The @CAPS1 also faced the @CAPS2 of getting to micheenery that was needed to @CAPS4 the mooring mast. Another obstacle @CAPS1 had to face was getting aprover do to safety hasits because what had happing to the hindenburg in lakehurst, New Jersey." 3 3 3 +15811 6 "The builders faced many obstacles in building a moor to dock dirigibles. It was unsafe for a dirigible to be so close to the ground, especially in New York. The air currents from high above made the machine harder to operate near buildings. Another factor that contributed to the danger was that dirigibles are highly flammable due to the hydrogen which made most of them stay afloat then. Many blimps attempted to dock at the Empire State building, none of which were successful." 2 2 2 +15812 6 "The obstacles that the builders of the empire state building aced in attempting to allow dirigibles to dock there were, structural problems, breaking laws, and keeping the dirigible safe in the air. The structural problems this would have caused was the pressure on the buildings foundation from being pulled by the dirigibles. The builders were also breaking The Law because there is a law saying how low an airship can fly over an urban area, the dirigibles would be way too low. The final obstacle for the builders was to keep the dirigible safe in the air. This is due to the high winds the airship would be swinging around and could break off. Another issue would be if it blew up the pieces would fall onto downtown New York City." 3 3 3 +15813 6 "Architects designing the Empire State Building with the intent of docking zeppelins to it at heights of over @NUM1 feet no doubt had a lot to go through. According to ""The Mooring Mast"" by @ORGANIZATION2, obstacles included adding stress to the buildings frame with a blimp attached, and the design of the mooring mast itself. The article says that ""the stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation"" in order to make docking safe. The mooring mast was composed mostly of steel. Other problems facing architects was the wind factor, and keeping zeppelins immobile in the ""constantly shifting"" and ""violent air currents"" at @NUM2 feet. Safety hazards also came into account, because architects realized that should another accident like the Hindenburg's occur again in New York City, results could be disastrous. As such, the Empire State Building's mooring mast for zeppelins never went into operation." 3 3 3 +15814 6 "Based on the excerpt, ""The Mooring Mast,"" various obstacles were faced in the challenge of docking dirigibles atop the Empire State Building's mooring mast. The first challenge the builders faced was that of nature. ""The greatest obstacle ...was nature itself."" (@NUM1) The violent winds that high up would cause the dirigible to swing unpredictably, making it unsafe. Another problem arose when the ""Hindenburg"" caught fire in New Jersey. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable."" (@NUM2) If a hydrogen-filled dirigible would catch fire while at the Empire State Building, it could be very dangerous for both the building and the pedestrians below. The last obstacle was a law. ""...existing law against airships flying too low over urban areas."" (@NUM3) This law made it illegal for any aircraft to fly even remotely close to the Empire State Building. In the excerpt, ""The Mooring Mast,"" the builders faced many obstacles when attempting to allow dirigibles to dock at the top of the Empire State Building." 3 4 4 +15815 6 "In the excerp ""The Mooring Mast"" by @ORGANIZATION1, the builders of the Empire state building faced many problems when constructing the dirigibles dock. One is the winds and the safety of the building and people. ""The winds on top of the building were constantly shifting due to the violent air currents... using the Empire state building was neither practical nor safe."" Another obstacle that the builders faced was that there was a law that prohibited airships to fly too low over urban areas. ""This law would make it illegle for the ship to even tie up to the building or even approach the area."" There was also another problem. It was the building's structure and the foundation. The builders made over sixty thousand dollars of modifications to the building structure in order to construct the mast." 3 3 3 +15816 6 "Based on the excerpt, The Mooring Mast, the obsticles the builders of the Empire State Building faced in attempt to allow dirigibles to dock there was how would they be able to have thousand foot dirigible moored at the top of the building, without ""adding stress to the building framework."" They couldn't just add the mooring mast on top of the Empire State Building's flat roof because ""the dirigible's load and the wind pressure would have been transmitted all the way to the building's foundation, which was nearly eleven thousand feet below."" @CAPS1 they had to find a solution, which was to modify and strengthen the steel frame of the Empire State Building. Costing over sixty thousand dollars' worth modifications to the building's framework. Also ""rather than building a utilitarian mast with any ornamentation, they built a shiny glass and chrome-nickel stainless steel tower that would be illuminated from inside,"" make the 101st floor a glassed-in observation area and the @NUM1 floor an open observation platform." 3 2 3 +15817 6 "Although the plans for the mooring mast were optimistic, there were many obstacles that kept that plan from becoming a reality. The first reason why builders difficulty allowing dirigibles to dock was because of safety. The helium that filled the balloons was highly flammable. If one were to catch fire, it would be a danger to all of New York City. Secondly, the high winds made it unsafe for the dirigibles. Paragraph @NUM1 states, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around..."". Lastly, the builders faced the obstacle of pre- existing laws when trying to allow dirigibles to dock on the mooring mast. An existing law stated that aircraft couldn't fly too low over urban areas. These three main obstacles were face by the builders of the Empire State Building. The mooring mast never became a reality because of these obstacles." 3 3 3 +15818 6 "In the excerpt, some obstacles they faced were that the building was the tallest in the world at 1,250 ft. like it says in paragraph @NUM1. Another problem they encountered was the dirigibles were unsafe. The Hindenburg, an event where a helium filled dirigible had caught fire, occured during construction. What if one of their dirigibles caught fire over New York. The whole idea of dirigibles was thought of as dangerous. Finally, there were laws saying that no aircraft could be that close to the city. The whole idea of the ""future of travel"" was very unliked and impractical." 2 2 2 +15819 6 "The obstacles builders faced were weather, hight of the structure, stability of the structure, and worriying about the highly flamable gases from the dirigible. The weather affected having the dirigible dock there because the winds could whip it around, knocking it into nearby buildings. The structure needs to be stable at it's hight so the dirigible doesn't knock over the empire state building. The author Marcia Amidon @CAPS1 states, ""The steel frame of the Empire State building would have to be modified and strengthened to accommodate this new situation,"" this was nessisary so the dirigible wouldn't knock over the Empire State Building, wiping out a lot of New York. The highly flammable gases would need to be under intense supervision, because if they caught of fire the Empire State Building and pedestrians, and downtown New York would catch of fire. These reasons are the obstacles they faced and why a mooring mast was never completed and used." 3 3 3 +15820 6 "One of the big problems facing docking dirigibles is the government and the law. It is illegal to have such a low-flying aircraft. It says, ""... an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area..."" (@CAPS1 @NUM1). Another obstacle would be safety. Dirigibles are FLAMMABLE and could easily injure and kill people if an accident happened. Is to dangerous, ""Most dirigibles... used hydrogen... hydrogen is highly flammable"" (@CAPS2. @NUM2) Another problem is nature and weather. The winds up there are extremely high and powerful. A big danger to dirigibles, ""... violent air currents... back of the ship would swivel around... high above pedestrians,"" (@CAPS2. @NUM3)." 4 3 4 +15821 6 "@ORGANIZATION3 writes in her excerpt "The Mooring Mast" of the obstacles the builders of the Empire State Building faced in attempting to create a dock for dirigibles. In late 1929 Al Smith was confident of the height and use the building would achieve. Those working on the project of the mooring mast consulted with experts from the U.S. Naval Air Station but eventually found the project too much to handle.The mast never fulfilled its intended use due to the numerous issues they faced, the main one of which being nature itself. Docking a dirigible at the high altitude of the building's peak through proved practically impossible. The danger of the project to civilians of New York was a flaw as well due to the inability to keep a dirigible controlled in wind and the high flammability of the vehicles. Legally speaking there was another issue concerning a law that would not allow a dirigible to fly at the altitude required to dock.The idea of the mooring mast was an interesting and had it been realized dirigibles may have become significantly more popular. However the mooring mast was impractical and obstacles it posed overcame the ambition used to design it." 3 3 3 +15822 6 "The empire state building was high in the air, (@NUM1 ft) the problems were is that the building moves while it's in the air, and if you have something that is weighting around the heavy fifty-thousand pounds maybe more than the building might rip off if there is a big windstorm. The dock sounded like a good idea but you would need a winch and you would have to put some big clamps on the building to secure the balloon or dirigible to dock and refuel. In paragraph @NUM2, @PERSON1 of the building's architectural office said ""The as yet unsolved problems of mooring airships to a fixed mast at such a height made it desirable to postpone to a later date the final installation of the landing gear."" If Irving ever decides to put a blimp up and make an air station then make new technology. Who know's in the future we could have cars that fly through air, why not have balloons attached to buildings." 1 1 1 +15823 6 "They could not put a thousand - foot dirigible moored at the top of the building held by a single cable tether, it would add stress to the building's frame." 1 1 1 +15824 6 "The idea of using a mooring mast in order to allow dirigibles to dock at the top of the Empire State Building was never a practical one. This is due to the many struggles that were faced when Al Smith's team was attempting to create a mooring mast that would serve the purpose of docking dirigibles. such obstacles included; the pressure a docked dirigible would have on the building itself, the hazards of high winds causing the dirigible to be shaken violently, the chance of the dirigible catching on fire due to the flamibility of the hydrogen if in it, and the close proximity the dirigible would have to other buildings in the area The first problem faced during the development of the mooring mast was the stress of the heavyweight of the dirigible would put on the building. ""The steel frame of the [building] would have to be modified and strengthened to accommodate [the added pressure from the dirigible]."" The dirigible's weight was not the only thing that put stress on the building, the wind pressure would also. The wind made it difficult for creating a mooring mast's structure because it would not only add pressure to the building because the dirrigible itself to not be able to stay in one place ""Even if the dirrigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" An accident that could occur would be a fire due to possible flamibility. And since the dirrigible is so close to people, such as tourist on the building's observation deck, the dirrigible catching on fire (if it's filled with hydrogen instead of helium) could be more disastrous than if it landed in an open field. Lastly, the dirigibleis so close to urban areas that it is illegal for such airships to dock or even fly at such proximity. For example, when the Los Angeles tested the docking process to the mooring mast of the Empire State Building it ""could not get close enough to tie up because of forceful winds."" All of these were major obstacles to the building process of the Empire State Building and it's mooring mast for docking dirigibles. These are also the reasons why the architects of the Empire State Building came to the conclusion that such a structure would not be practical to construct." 4 3 4 +15825 6 "In the excerpt from ""The Mooring Mast"", by @ORGANIZATION2, the builders of the Empire State Building faced very difficult obstacles in attempting to allow dirigibles to dock there. One of the most difficult obstacles was ""nature itself"". There were very strong winds that ""were constantly shifting due to violent air currents."" The back of the dirigible would move around and around even if it were ""tethered to the mooring mast"". Also, dirigibles usually landed in open landing fields and would be weighted down with lead weights. However, weighting down dirigibles with lead weights at a height of about 1,250 feet in a place as densely populated as New York City would be ""neither practical nor safe"". Lastly, there ""was an existing law against airships flying too low over urban areas"", meaning the idea of a mooring mast on the Empire State Building was simply unpractical." 3 3 3 +15826 6 "When designing the mooring mast for the Empire State Building there were many challenges architects and builders had to over come. First were the basic problems of any transportation hub, how to move people and baggage around the terminal. Another more complicated problem was how the compensates for the added stress on the building's frame from the dirigible's load and the wind pressure. This problem was solve by @MONEY1 redesign of the Empire State Building frame. Also mored dirigibles would be constantly swing around due to the violent wind currents at the top of the Empire State Building. Weights could not be used to hold the airship in place because it would be a danger to people on the streets below. The architects could not design a way to hold it drigible in place. Eventually the idea of a mooring mast for dirigibles at the top of the Empire State Building was scrapped." 3 3 3 +15827 6 "Although there were great hopes for the attempt to allow dirigibles to dock on the Empire State Building, many obstacles were faced while trying to reach this dream. One obstacle noticed while designing the mast to dock on, was that the height and weight of a dirigible would greatly add stress to the building's frame. This would then be transmitted to the building's foundation as well. This clearly possessed a problem bigger than the Empire State Building could withstand. Another reason that builders faced an obstruction in the hopes of allowing dirigibles to dock was safety reasons. One of the most apparent problems, was that most dirigibles outside of the @LOCATION2 were fueled by hydrogen gas, opposed to helium gas. This posed a threat, for hydrogen is highly flammable. Putting a densely populated area such as downtown New York at risk consequently came as an obstacle for builders. The nature itself came as one of the last problems for such a dream. Winds that were constantly shifting due to extreme air currents, at the top of the building could easily cause the back of the dirigible to spin around the mooring mast. Again putting thousands of people below the building, was neither practical nor safe."" As quoted by the passage, ""the mooring mast of the Empire State Building was never destined to fulfill its purpose..."", clearly posing many obstacles in allowing to dock dirigibles on such a building." 3 4 4 +15828 6 "well, since this one obstacle in their expanded use in New York City was the lack of landing area For the dirigibles. So, Al Smith decided to add a mooring mast on top of the Empire State building to allow these dirigibles to anchor there to get gas for several hours and also service. And to let the passengers on and off there also. The Dirigibles were docked by an electric winch, which hauled in a line From the front of ship then tied to the Mast. But, then yet the electric winch cable would cause stress to the building frame. The stress of these Dirigibles load and the wind pressure would transmitte all the way to the building's Foundation. The steel Frame of the building should be strengthened or modified to accommodate this new situation." 3 2 3 +15829 6 "The builders faced many challenging obstacles to allow dirigibles to dock at the top of the empire state building. The builders first talked about such as Al Smith to try to make the Empire State building the tallest building in the state, so it would be a great forefront for travelers, and they got it up high to @NUM1 feet. But now there obstacle was to have a dirigible reach the top point of the empire state building. Al Smith wanted for the top of the empire state building to be a landing area, where they could go refueling for hours, or service, and to let passengers on or off the dirigible. So that was one of the obstacles that the builders had to face, to make it work." 0 1 1 +15830 6 In building the mast and docking to the empire state building the constructers faced major problems. The Idea of a dock for dirigibles was a good idea at the time but faced both structrial and social problems. Architects and stated that over time the dock for the dirigible and climatic change would cause strain on the framework of the building. This led to more reconstruction and economic spendings. Another problem the builders faced was the location of the building itself. Newly built dirigibles had hydrogen rather than helium which led to flamibility. The Hindenburg was destroyed in a fire which led the builders to consider what would happened if it had taken place above a densely populated area such as downtown New York. Docking of dirigibles led to many obstacles which ultimately led to the project shutting down. What was thought as the future is now the past. 3 2 3 +15831 6 The Empire state building faced different stage. They @CAPS1 to make it to be fixed a little bit. Because it was the tallest building at the time and they so @CAPS1 it a more famous. 0 0 0 +15832 6 "Based on the expert, the builders had many obstacles that the builders had to face, from attemting to allow the dirigibles to dock on the Empire State Building. One obstacle the builders had to face was the steel frame of the Empire State Building had to be modified and strengthened to accommidate the situation. The builders also had a problem with the wind because ""... the dirigible onto the sharp spires of other buildings in the area, wich would puncture the dirigibles shell." 2 2 2 +15833 6 "In the reading comprehension ""The Mooring Mast"" by Marcia Amidon Lsted, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock because they wanted to add the mooring mast on the top of the Empire State Building's flat roof and the dirigibles would be able to take the mooring mast up to the top of the building. The architects found out that if they put the mooring mast on the top of the building its gonna bring stress to the building's foundation." 1 1 1 +15834 6 "Architects of the Empire State Building faced a tremendous amount of obstacles when they attempted to allow dirigibles to dock there. Al Smith, the man who wanted to construct the tallest building, stated on December 11, 1929, that the Empire State would be 1,250 feet tall. It was decided that the building would have a mooring mast at the top for docking airships like the dirigibles. The blimps, however, was very spacey. Some were as long as one thousand feet in length. So a mooring mast sounds fitting. It would allow dirigibles/blimps to anchor there to refuel as well as letting the passengers off and on.Presently, the purpose of the mooring mast was never carried out. Problems that faced it was that most dirigibles outside of the United States used hydrogen instead of helium. Hydrogen is highly flammable and the German dirigible Hindenburg incident caused the Empire S Building's owners to realize how bad it would be if it happened above such a densely populated area like New York. The winds on top of the building is always changing. A dirigible tethered to the mooring mast would have the back of the ship swivel around and around. Weights couldn't be added to weigh down the back because the blimp would be right above people walking on the streets. Another practical reason was the law against airships flying too low over urban areas. This law made it illegal for the blimp to even approach the building.On December 1930, U.S. Navy dirigible reached the mooring mast. However, it could not get close enough to tie the blimp in place due to forceful winds. The captain couldn't even take his hands off the controls in fear. In the late 1930's, the idea disappeared to be replaced by airplanes." 4 3 4 +15835 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles dock there. These obstacles included having to redesign and modify the building structure, the dangers of a dirigible catching fire, the swirling winds, and state law. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof"" (@NUM1) This was because the building was not originally built to have that capability. This meant, in order to do this meant over sixty thousand dollars in modification had to be spent. Another obstacle faced was the natural dangers of a dirigible. Dirigibles have a likely chance of catching fire, as displayed by the Hindenburg. If that same accident were to happen over the densely populated area of New @CAPS1 it would be a catastrophe. Another obstacle was that the winds up above the building are always swirling rapidly. ""Even if the dirigible were tethered to the mooring mast, the back the ship would swiveled around, and around the mooring mast"" (@NUM2) This would just be dangerous to have something that large spinning round and round. The last obstacle faced by builders was that state law @CAPS2 aircraft flying as low as the mooring mast. This would make it illegal for the mooring mast to be used. This probably should have been considered. Overall poor planning created very many obstacles for builders in letting dirigibles dock there." 3 4 4 +15836 6 "Architects struggled with obstacles as they were constructing the Empire State Building. A @NUM1 ft. dirigible moored at the top of the building, held by a single cable tether, which would add stress to the building's frame. The Architects could not simply drop a mooring mast on top of the building's flat roof. The observation area was to double as the boarding area for dirigible passengers. Once the building had been framed, the roof had to be completed before the framing of the mooring mast could take place. The mast had a skeleton of steel and was clad in stainless steel with glass windows. The mooring mast of the Empire State Building was destined to never fulfill it's purpose, for reasons that should have been apparent before it was ever constructed." 1 1 1 +15837 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted the builders had obstacles they had to overcome in building the dock for the dirigibles. The builders had to think about how the mast would work. It said in paragraph nine ""the architects could not simply drop a morning mast on top of the @ORGANIZATION1 flat roof. A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the buildings frame"". The buiders had to modify the building. ""As it said in paragraph ten ""Rather than building a utilitarian mast with out any ornamentation, the architects designed a shinny glass and chrome-nickle stainless steel tower that would be illinated frome inside, with a stepped-back design that imitated the over all shape of the building itself."" The obstacles the builders overcame let them use the mast efectly." 1 1 1 +15838 6 "The architects of the Empire State building ran into many problems attempting to allow dirigibles to dock their. One of the main causes was nature. Winds/air current was a big risk. ""Fearing that the wind would blow the dirigible on to the sharp spires of other buildings in the area, which would puncture the dirigibles shall..."" (@CAPS1 @NUM1). This was a problem that no one could fix, no one can controll wind. Another big impact in the bunch of the mooring mast was law. ""The other practical reason why the dirigibles could not moor at the Empire State building was an existing law against airships flying too low over urban areas"" (@CAPS1 @NUM1). This law would make it impossible to ever make it a full use of transportation. These obstacles architects couldn't overcome, and the original idea for the project was soon forgotten." 2 2 2 +15839 6 "The builders of the Empire State Building faced some problems allowing the dirigibles to dock there. One of the problems was that they didn't really have landing gear. It was very hard to land a dirigibles on the ground, but in mid air it was almost impossible. Another reason was it was very unsafe. The pilot of the dirigibles would have to land it about @NUM1 feet in the sky and if they messed up they could potentially die. Another reason was that there was a law against airships from from flying low over urban areas. This law made it illegal for people to land it up there. The builders of the Empire State Building faced many problems when trying to make a dock for dirigibles." 2 2 2 +15840 6 "There were many obstacles workers face when building the Empire State Building: making the structure of the tallest in the world, making it serve a greater purpose than being just a building and most of all it had to be stable.Designing and building the tallest structure in the world was quite the @CAPS2 for architect Al Smith, his building had to be taller than the 1,046 foot tall Chrysler Building. The Chrysler building was originally only @NUM1 feet and the Empire State building was planned to be @NUM2 feet. But when the architect of the Chrysler Building revealed a spire that was to be placed on top, the Chrysler Building's height shot up to 1,046 feet, just 46 feet taller than the Empire State. The competition had begun.When Al Smith was constructing a piece to fit on top of the sky-scraping building, he wanted to be ""more than a spire or dome or pyramid put there to add a desired a few feet"" (paragraph @NUM3), he wanted something that would truly awe people. With the popularity of blimps, or dirigibles, on the rise, Smith decided he would create a docking station for them on top of his building. Although, a great deal of effort and frustration proved the task impossible. The main reason being that there was too much margin for error and that chance did not want to be taken with a crowded city of @ORGANIZATION3 below. The tip still being added though, put the Empire State Building at 1,250 feet, @NUM4 feet taller then the Chrysler Building.The @CAPS1 @CAPS2 that the building seems to face was the elements. The monstrous structure had to withstand very high winds. Most of the building was weather proof, the only problem being the top. It was designed to look almost like a rocketship, with four wings at it's base. Lined with steel, th structure still holds today. Most of the challenges faced by the crew building this magnificent structure seemed impossible, but they created the building they set out to build. And it is still the tallest in the world to this day." 1 2 2 +15841 6 "There were three main @CAPS1 that the builders faced: safety, Nature and THE LAW.The first obstacle that they faced was safety. Many blimps used Hydrogen instead of Helium. While Helium is a @CAPS2 gas, Hydrogen is a @CAPS3 which are combustible.The second obstacle they faced was Nature. The @CAPS4 winds blew the Blimps off target and because they weren't aero dynamic, it was @CAPS5 to manever them.The third obstacle was a law that stated that Blimps can't fly too low, so if the other @CAPS1 didn't exist, it would still be illegal.IN conclusion, they Should Have built a @CAPS6 because @CAPS7 are simply better than Blimps." 3 3 3 +15842 6 "Some obstacles the builders faced during the construction of the Empire State Building's mooring mast was that the building was not stable enough to be able to moor an airship. They solved this easily by creating a stronger exoskeleton. Another obstacle that they faced was the high speed winds and being able to get passengers off and on. They never did solve this problem, and so the mooring project was shut down. The obstacles the builders faced were too many and this project soon became impossible to finish and it never was." 1 2 2 +15843 6 "In Downtown New York, Al Smith and his builders faced many obstacles in building and docking his dirigible on top of the mooring mast which had come to a failure by the end. The reason he planned to dock in New York because that's where most passengers would be at the location, where Smith would see it would be a success. The dirigibles are made ""with enormous steel-framed balloon with envelopes of cotton fabric filled with hydrogen and helium"" (paragraph @NUM1), at the time that Smith wasn't thinking, ""hydrogen is highly flammable"" (paragraph @NUM2) as well as the cotton fabric would catch on fire also; it is a dangerous hazard if any incident would have been in a ""densely populated area."" Another obstacle they dealed with was the ""dirigibles could not more at the Empire State Building was an existing law against airships flying too low over urban areas"" (paragraph @NUM3) since it was illegal to dock the dirigibles in low areas, it couldn't happen for Smith, and the size of the dirigible, it's too long to not able to crash into one of the other buildings. Not only that but ""the mooring mast could not get close enough to tie up because of forceful winds. Fearing that the wind would blow the dirigible onto sharp spires of the building in the area"" (paragraph @NUM3) and it would most likely to happen since there are many buildings closely to one another in New York. With all these problems that they had faced through; failed; the dirigibles wasn't the future transportation by Al Smith, all of his plan's failed by the end." 3 3 3 +15844 6 "The builders of the Empire state building faced a few obstacles during there attempt to allow dirigibles to dock there. One of the obstacles were the structure of the building. A thousand-foot dirigible moored at the top of the building held by a single cable tether. This would add stress to the building's frame. The stress of the dirigible's load and the wind pressure would, ""have to be transmitted all the way to the building's foundation"", which was nearly eleven hundred feet below. The Steel frame of the empire state building would have to be modified and strengthened to accommodate this new Situation." 2 2 2 +15845 6 "In the excerpt called ""The Mooring Mast"" by @ORGANIZATION1, there were obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. One obstacle was nature. That is because the wind at the top of the Empire State were changing a lot due to bad weather. The blimp would be moving around even if it was tied down the other challenge was safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"". That is not safe because if a blimp caught on fire at the building there are 102 floors that could burn down. Also because downtown New York is a very densely populated place. That is the obstacles the Empire State building faced in creating a docking area for blimps." 3 2 3 +15846 6 "The mooring mast atop the empire state buildings problems should have been foreseeable before its construction. The workers building it were certainly against the odds during its construction. The top of the Empire State Building was in a constant weather crisis, ""Winds were constantly shifting due to violent air currents"". This meant that a dirigible that would attach to the mooring mast would be swaying in the wind. On land, dirigibles have lead dead weights that weighted the back so it didn't sway but that just wasn't practical hanging over crowded city streets. Also, the building could not support a dirigible without transferring its energy back down to the foundation. This meant that the entire building had to be reinforced to move the energy. It was also illegal for dirigibles to fly that low over urban areas, and since most @CAPS1 blimps were using hydrogen, a highly flammable substance, the safety of the project was questioned. After the Hindenburg, people seemed more reluctant to support such a project and even the owners of the Empire State Building realized how catastrophic an accident over a place like downtown New York could be. Overall, the theory of a mooring mast atop the Empire State Building would remain a theory due to predictable obstacles." 4 4 4 +15847 6 "In the excerpt ""The Mooring Mast"", the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock. For one just letting a thousand foot drigibles land on the top of a building was a huge obstacle.. By having the dirigible on the building held on by one cable tether was bad. So the builder had to work on the steel frame of the building so that the dirigible wouldn't add so much stress to the building. That was a huge obstacles the builders of the Empire State building had to face." 2 1 2 +15848 6 "The engineers involved in the creation of the Empire State Building were forced to confront reality when an array of obstacles presented themselves during the time in which the were trying to dock dirigibles. The primary problem was the usefulness of this dock creation. Though this idea was innovative, it was not practical, as dirigibles were never destined to be a popular source of transport. The malfunction in the creation of the idea was its focus. This is because the goal in this work was not to create a successful dock, but to add footage to the building. If the focus had been different, the outcome may have been more rewarding. Technical problems also arose. Based on laws, safety, and practicality it could not function. ""Most dirigibles from outside the United States used hydrogen,"" creating an extreme fire hazard in a highly populated place that would transform into a deathtrap. The anchor for the blimp would only secure it at one point allowing the blimp the spin around, dangerously in the wind. Lead weights, the only solution to this, would disrupt pedestrians. There was also an ""existing law against airships flying too low over urban areas,"" making the project completely unpractical. Both attempts at reaching the building failed, displaying the reality of the flaws. Winds and other complications were preventative. All in all, the builders were destined to be unsuccessful with the plethora of flaws in this project." 3 3 3 +15849 6 Builders faced many obstacles in attempting to allow dirigibles to dock on the Empire State Building. One obstacle was finding a way to terner the end of the blimp without it blowing in the wind or putting the people below in danger. Another obstacle was laws against airships flying too low over urban areas. One final obstacle was the danger of hydrogen dirigibles in general. These obstacles proved far to many to outweigh the practicality of the mooring mast. 2 1 2 +15850 6 one of the obstacles that had to face was they had to make it taller because it was sapoosed to be the tallest building. They also had problems with it so they had to keep fixing it. 0 0 0 +15851 6 There was one major problem with the dirigibles docking on the Empire State Building. This major problem was that the mooring mast is so high up in the air and downtown New York where The Empire State Building is located is such a crowded area. If something goes wrong it will affect a huge area because New York is such an urban area. It is a good idea but Al Smith did not take all the precautions that he needed to. Because if something does go wrong a lot will go wrong because downtown New York is such a crowded area. Thats the main obstacle that the builders had to overcome with letting dirigibles dock on the mooring mast of the Empire State Building. 2 1 2 +15852 6 "The builders of the Empire State Building had many obstacles in attempting to allow dirigibles to dock there. The number one obstacle was safety. The builders thought to themselves, How are we going to safetly land a dirigible thousands of feet above the ground, while its freely floating in midair? Plus when you attempt this you are above crowded New York streets. If there was ever a malfunction or error while docking then thousands of people may lose their lives. Its much easier lending dirigibles in an open field than in mid-air because you have much more room, your planting the dirigible on secure ground, and you can weigh it down so it doesnt move around. Yet landing in open fields is dangerous because on @DATE1 in @LOCATION2, New Jersey the German dirigible Hindenburg was destroyed by a fire. This example shows how that if that were to happen in mid-air over a crowded New York City street or block then many more casualties would have been recorded. These obstacles were real and these are some of the reasons why the idea of landing a dirigible in mid-air slowly went away, because it wasnt the most logical idea." 1 2 2 +15853 6 The obsticals that the builders face in attempting to allow dirigibles dock at the Empire State Building are the law to fly that low to buildings. They also face structural problems in the building to be able to hold a dirigible. They also could not keep the dirigibles from moving because of the wind. They faced safty ishuse because of some dirigibles are filled with hydrogen and it is highly flamable. They did not want to have a fire over a densely populated area. They did not want what happen to the German dirigible Hindenburg in New Jersey to happen in down town New York. Dirigible have never dock there and never will because it is unsafe. 3 2 3 +15854 6 "The excerpt ""The Mooring Mast"" by @ORGANIZATION2 describes the creation of The Mooring Mast, and its purpose to extending the height of the Empire State Building. Although during the 1930's the concern of the Mooring Mast serving as a docking area for drigibles, also known as today as blimps. After the 85th floor frame was built and the skeleton of the mast of steel and stainless steel glass windows, issues concerning the landing drigibles arose within the public.There were @NUM1 major reasons why the Mooring Mast of the Empire State Building was never really completed. One reason was because of safety. The excerpt explains how dirigibles from outside of U.S used hydrogen instead of helium. And, using hydrogen is extremely flammable. They used the example of the German diriglie Hindenburg being destroyed b/c it was on fire in @LOCATION1.Second reason was the problem of wind currents. Winds were extremely violent. Dirigibles would move and sway alot b/c of the strong winds. And the moving dirigibles being that they were at least @DATE2 ft long dangled high above urban areas which wasn't safe at all for people walking under it.Thirdly was the issue of it being against the law for airships to fly too low over urban areas was also a safety hazard for people. It would be illegal for dirigibles to be tied up on mooring mast above cities filled w/people risking that it might fall onto people." 3 4 4 +15855 6 "Based on the excerpt from The Mooring Mast, the builders of the Empire State Building faced quite a few obstacles in attempting to allow dirigibles to dock there. First, Al Smith, the four-term governor of New York, was determined to create the tallest building in the world; even taller than the Chrysler building being @NUM1 feet tall. He also wanted the building to be aesthetically pleasing, and nothing ordinary. His determination led him to the idea of the mooring mast, which in itself came with additional obstacles. ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation"". This meant that the frame would have to be modified and strengthened. Other obstacles included the fact that dirigibles were highly flammable, and could have caused a giant chaotic mess if over a densely populated area such as downtown New York. Also, ""the winds on top of the building were constantly shifting due to violent air currents"" meaning that even if the dirigible was tethered to the mooring mast, the back of the ship would swivel everywhere, which was ""neither practical nor safe.""" 3 4 4 +15856 6 "The builders of the Empire State building faced several obstacles while attempting to let dirigibles dock on it. The first obstacle the builders encountered was the dirigible ability to dock on the building due to the building's structure. ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the frame"" (@NUM1). The frame of the building had to be modified and strengthened for the project to work. The next problem was the use of hydrogen in dirigibles, which is highly flamable. Anyone under the dirigible while it was docked could be in danger if the blimp was destroyed by fire. The biggest problem the builders encountered was the violent air currents. The back of the dirigibles would constantly swivel around while docked due to the constantly changing winds. The mooring mast was not a safe idea that could never have worked." 3 3 3 +15857 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock their. The builders couldn't just let the dirigible land that the step of the Empire State building. It would put to much pressure on the building. According to paragraph @NUM1 it says ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" It would have cost sixty thousand dollars worth of modification had to be made to the framework. Another obstacle they feared was they noticed how much worse it would be if the dirigible caught on fire on top of the Empire State Building. It would destroy part of the population because it would be in downtown New York. In paragraph @NUM2 the greatest obstacle to the successful use of the mooring mast was nature itself. It says even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using the State building, where they would dangle above pedestrians was not safe." 3 3 3 +15858 6 One of the obstacles the builders of the Empire State Building was faced with in attempting to allow dirigibles to dock there was the change in structure and extra cost and time in the completion of the building the building originally was going to have a flat roof but in order to dock blimps they had to construct a rocket-shaped mooring mast.Another problem the builders faced was the building and their idea of docking dirigibles being approved by experts. The @ORGANIZATION1 had to take tours of the equipment and mooring operations. The safety of the passengers of the derigible was very important and a huge obstacle for the construction of the Empire State Building. Two floors would be designated to passengers. Experts had to build a door strong enough to carry people and fight the blimps from swaying in the harsh winds. 2 3 3 +15859 6 "When building the Empire State Building, the builders had to think about the Safety of allowing the dirigibles and their passengers dock there. They had to think about the winds at the top of the building. The wind currents change violently at the top of the building and because they wouldn't be able to weigh the back of the ship down, the dirigible would spin around and around the mooring mast. They also had to think about dirigibles from other countries. These dirigibles used hydrogen which is more flammable then the helium ships." 2 3 3 +15860 6 "In the excerpt ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building faced some obstacles in attempting to allow dirigibles to dock there.Although this sounded like a great idea and seemed possible at first, it was not. The idea of the mooring mast of the @CAPS1 State Building was neither practical nor safe. In paragraph fourteen, Marcia states why this dirigible idea wasn't so safe. ""The winds on top of the building were constantly shifting due to violent air currents. In the last sentence of paragraph fourteen, the author states another reason the idea wasnt safe nor practical. ""they would be dangling high above pedestrians on the street,""" 1 1 1 +15861 6 "The builders of the Empire State Building faced many problems in attempting to dock dirigibles on the mast. One major problem was that the original Empire State Building, ""...could not simply drop a mooring mast,"" on the top of the building because the ""...single cable tether, would add stress to the building's frame. The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation..."" Over sixty thousand dollars' worth of modifications had to be made to the building's frame work. One reason dirigibles were never docked on the mooring mast was due to ""The winds on top of the building were constantly shifting due to violent air current."" This makes it impossible for dirigibles to even approach the mass without being impaled by other buildings. There was also, ""...an existing law against airships flying too low over urban areas."" This made it illegal to even dock airships on top of the Empire State Building. Dirigibles contain hydrogen which is ""highly flammable."" If the Hindenburg incident had taken place in New York, the accident would have been ""much worse."" These reasons contributed to the builders' problems, and explain why the mooring mast was never used." 4 4 4 +15862 6 "The builders of the empire state building could not build the moor mast for the dirigibles on top of the building because it is too high and the roof of Empire state building was to flat. Building the mooring mast takes a lot of efforts because they have to care about wind pressure and holding cable on top of the building. They design the @NUM1 floor with glass to make observation area and boarding area for dirigible passengers. However it has a lot of problems the building. At first the helium is flammenble so it is too dangerous and the accident can be worse. They think greatest obstacle to successful use of the mooring mast is nature because winds on top of the building are constantly shifting due to violent air current, so it can pratact from worst accident but it is still not safe." 2 2 2 +15863 6 "Intended uses for buildings often are met with challenges. In the article ""The Mooring @CAPS1"" by @PERSON1, the obstacles faced in allowing dirigibles to dock at the Empire State Building are discussed. The first obstacle faced is stated in paragraph @NUM1, when to build a dock on top of the building the entire building would have to be inforced. This was an obstacle because it would be at a cost of @MONEY1. Another obstacle faced was the weather. Above the building violent air currents rage. These currents would cause the ship to swivel around and around the mooring. The final obstacle in allowing dirigibles to dock was the law. According to the article, ""an existing law against airships flying too low over urban areas... Would make it illegal for a ship to ever tie up to the building."" The cost of reinforcing the building, the weather, and the laws were three obstacles faced in docking blimps to the Empire State building." 3 3 3 +15864 6 "The workers' constructing the Empire State Building faced many problems while building a dockable mooring mast for dirigibles, two of which were that the winds at that height were unpredictable and foriegn dirigibles using hydrogen instead of helium. ""The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to Violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" (@CAPS1 @NUM1) This quote shows how unsafe it could be for dirigibles to dock up that high. The high winds could cause loosening of the dirigible which could cause it to go flying off, which is unsafe to the pedestrians. Also, ""Most dirigibles from out side of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" (@CAPS1 @NUM2) This shows yet another safety hazard the workers ran into. If something were to go wrong the dirigible could catch ablaze and come plummeting down to a large amount of pedestrians. These two are reasons or problem workers ran in to when deciding whether to not it would be safe or easy for dirigibles to dock at the mooring mast uptop the Empire State Building." 3 2 3 +15865 6 "The builders of the Empire State Building faced many problems when realizing the idea of letting dirigibles dock there. First off @CAPS1 is a major concern many Blimps were filled with Hydrogen which is extremely explosive. Second off the winds at the top of the tower were very strong, making docking terribly difficult if not impossible. Lastly, it was illegal; in New York there was a law forbidding @CAPS2 from flying to low, and to dock on the building it would fly in illegal airspace. The main obstecals the builders faced were @CAPS1 concerns, high winds and the illegality of thier project." 3 1 2 +15866 6 "Based on the excerpt from The Mooring Mast by @ORGANIZATION2, the builders of the @ORGANIZATION1 obstacles in attempting to allow dirigibles to dock there. Paragraph @NUM1 states that ""A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame."" The architect on the building had to redesign the whole building so that it could accomodate these dirigibles. ""The mooring mast of the Empire State Building was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed"" ( @NUM2). This is a monumental obstacle because safety and other issues would prohibit the mast from fulfilling its duties. ""The greatest obstacle to the successful use of the mooring mast was nature itself"" ( @NUM3). Heavy winds, pouring rains, and beating heat could all end in disaster for the urban area. These are the obstacles the builders of the Empire State Building @ORGANIZATION1 in attempting to allow dirigibles to dock there." 3 2 3 +15867 6 "Based on the excerpt ""The Mooring Mast"" by @PERSON1, the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. Nature itself was one of the greatest obstacles they faced. ""The winds on top of the building were constantly shifting due to violent air currents."" Also the ""Dirigibles moored in open landing fields, could be weighted down in the back with lead weights, but using those at the Empire State Building, where they would be dangling high above pedestrians on the street was neither practical nor safe. Another reason dirigibles could not dock there was because of the law against airships flying too low to urban areas. Overall, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there." 2 2 2 +15868 6 "In the excerpt ""The Mooring Mast"" by @PERSON1 @CAPS1 the obstacles the builders of the Empire State Building face in attempting to allow dirigibles to dock there are in many ways. In my own opinion I think the Empire State Building is familiar to different people but not many knows the purpose to serve a landing spot for dirigibles. For an example ""The greatest reason was one of safety: Most States use hydrogen rather than helium, and hydrogen is highly flammable."" In conclusion that is one way how they faced the obstacles.In another way how the obstacles and builders of the Empire State Building faced to attemting to all dirigibles to dock there is by transportation. In my own opinion transportation allows people to go to one place to another, For an a example ""By the @DATE1's dirigibles were being hailed as the transportation of the future. The quote that I have just stated means that it allows passengers to go places where they want to. In conclusion, those are two examples the describes the obstacles and that allow dirigibles to dock there." 1 1 1 +15869 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigible to dock there are lack of a suitable landing area. In the excerpt they said ""The one obstacle was their expanded use in New York City was the lack of a suitable landing area"". Another obstacle was the climate like wind pressure. For example they said ""The stress of the dirigibles load and wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below"". The next obstacle is dirigibles from outside of the United States. The dirigibles German's use hydrogen which is flammable. They said ""Most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly flammable. Thats obstacles the builders of the Empire State Building faced in attempting to allow dirigible to dock." 3 3 3 +15870 6 "Based on the article, ""the Mooring Mast"" by @ORGANIZATION2, there are many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. @ORGANIZATION2 states in paragraph @NUM1, ""The mooring mast of the Empire State Building was destined to never fulfill its purpose, for reasons have been aparent before it was ever constructed."" One reason was safety. The dirigibles that were made outside of @LOCATION1 contained hydrogen instead of helium, thats wrong because hydrogen is highly flammable. Another reason was because of the winds. They constantly change, they are violent air currents, and they moved the dirigible. The other reason and most important reason is because dirigibles could not moor at the Empire State Building because its illegal. There is a law against airships fly too low over urban areas and for a ship to ever tie up to the building or even approach it was illegal. There were many obstacles the builders went through." 3 3 3 +15871 6 "Just like in life there are many obstacles. When you're trying to build a new invention that can't be easy. So there were many obstacles when building a docking area for drigibles on the Empire State building.One obstacle was the wind. People cannot control the wind or anything in the wind. So when it was really windy the back of the dirigibles would swing back and forth. When the Navy tried to tie up the dirigibles they couldn't get it close to the mooring mast because the winds were strong. That's one obstacle of building docking areas.Another obstacle is safety. The dirigibles used gas instead of helium, so it was very flammable. Also they don't have a lot of control over them. If the dirigible ever came crashing down it would kill a lot of pedestrians.If the Navy could fix these obstacles then the dirigible would be a good idea. They are hard to fix but probably possible. The better idea though is to just get rid of them." 2 3 3 +15872 6 "The builders faced a lot of obstacles when building the empire state Building. They had to build it higher than any other building, but make sure its stable at the same time. They also had to make the top of the building perfectly or else the dirigibles would not be able to land. Eventually it was safe enough for the dirigibles to land and the people could get off and take a tour of the top part of the building." 1 1 1 +15873 6 "While building the mast for dirigibles to be able to dock their, the architects neglected to see many flaws that were waiting to happen. First off it was against the law to have air craft fly that low to the ground. Most of the dirigibles were mainly composed of hydrogen, which is highly flammable, so having that fly above a heavily populated area would not be to safe. The wind currents at the top of the building were also very strong, therefore the dirigible could be pushed into the side of a building and get punctured by a sharp object. In conclusion the entire idea of having dirigibles landing on the empire state building was an accident waiting to happen." 3 3 3 +15874 6 "The architects of the Empire State Building faced too many challenges when trying to create a dock for dirigibles. First, there was the matter of safety. If a hydrogen zeppelin were to catch fire over New York City, it would be disastrous. It could start a huge city fire. Also, the wind was capricious up there, and would make it extremely difficult to dock and stay docked. The Navy tried to, but was unsuccessful, because the wind did not allow for them to even get close to the mast. Third, there were laws preventing airships from flying too low over cities, which really put an end to the whole idea. The plan was dangerous from the start, albeit a really awesome one." 2 3 3 +15875 6 "Based on the excerpt, the obstacles the builders of the empire state building faced attempting to allow derigibles to dock there are the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings foundation which was eleven hundred feet below. But the greatest obstacle was the wind, which would constantly shift, due to violent air currents." 2 2 2 +15876 6 "From the excerpt ""The Mooring Mast"" by Marcia Amidon @ORGANIZATION1 the builders faced obstacles to allow dirigible to dock on the empire State building. One obstacle that the builders faced is the lack of suitable landing area on the roof. For that reasoning they needed more room to dock the dirigible. Later they had to put a steel needle on top of the empire State building so the balloons could dock up and let people out. Next obstacle that they faced was that ""outside the U.S. used hydrogen rather than helium, and hydrogen is highly flammable. Therefore it was a risk to take to place a dirigible on top of the building if it blown up the building. Another reasing of an obstacle is that it was against the law for airships flying too low over urban areas for it can tie up and forceful winds will blow it in different directions. For that reasoning the winds could force the balloon to go in different directions and hit other building if the winds are strong. Those are obstacles the builders faced in the excerpt ""The Mooring Mast"" by @ORGANIZATION1." 3 3 3 +15877 6 "The success of the mooring mast of the Empire State Building was prevented by many obstacles. Safety was one of the greatest reasons because ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen was flammable."" @CAPS1 starting in a densely populated city like New York could damage a lot of people. Nature also proved to be an obstacle because ""winds on top of the building were constantly shifting due to violent air currents."" This would cause the dirigible to ""swivel around and around the mooring mast"" that was neither practical nor safe. It would also be difficult to control the dirigible once it is tied to the mast because of the violent motion that the dirigible is in. There was also an existing law ""against airships flying too low over urban areas"". This law made it illegal for any dirigible to even get near the mooring mast or tie to it. All of these obstacles were faced by the builders of the mooring mast, which eventually led to the disregarding of the idea of using the mooring mast for ships." 3 3 3 +15878 6 "Based on the exerpt, the obsticles the builders of the Empire State Building faced were all for nothing. They spent extra money to restruture things but there was no need. Even if they found some way to get the dirigibles to dock, it was already illegal for aircraft to fly that close to cities." 1 1 1 +15879 6 "Though the idea to allow dirigibles to dock at the Empire State building was seriously considered, safety and reality made in an unrealistic feat. In order for the mooring mast to successfully hold a dirigible, over @MONEY1 worth of modifications had to be made to the framework of the building. Still @CAPS1 got in the way, the greatest being safety. Most dirigibles from outside the @LOCATION2 used hydrogen gas rather than helium, which is highly flammable. The owners of the Empire State building realized how bad a dirigible fire would be, and more so if it took place over the densely populated city of New York. Wind also was a serious factor that disassembled the idea. If the dirigible were to be tied to the mast, the back of the ship which swing around, and lead weights were out of the question. Blocks of lead hanging above pedestrians in the streets of New York was neither a practical nor safe idea. An additional obstacle was the existing law that would not allowed airships to fly low, or too close to urban areas. Even if it was attempted, ships would have a hard time docking because of forceful winds. These @CAPS1 were all stumbled across in attempting to allow dirigibles to dock at the building, an idea that is no longer considered." 4 4 4 +15880 6 "Builders of the Empire State Building faced a few obstacles when trying to allow dirigibles to dock there such as safety, weather, and policies. One of most obvious issues was the safety of the docking. Blimps run on hydrogen, which is highly flammable. If something were to happen while refueling the dirigible, it could potentially cause extreme harm to the densely populated area underneath it. Another stumping factor was the weather at such high altitudes. At 1,250 feet above the ground, the wind is constantly changing directions because of the ""violent air currents"" so high up. Also, it proved to be difficult to tie the blimp because since the winds were so strong, the dirigible could not get close enough to the building. One last obstacle that was apparent was the law that was made stating that airships could not fly low over urban areas. This made the mooring dock illegal if used and made captains of the blimps aware that being so low and close to many buildings makes it challenging and dangerous to dock the dirigibles." 3 3 3 +15881 6 "In the excerpt The Mooring Mast, by Marcia Amidon Lsted, we are informed of the many obstacles standing in the way of landing a dirigible at the top of the Empire State Building. One obstacle can be found in paragraph @NUM1 it says, ""Most dirigibles from outside of the United States used hydrogen rather than hellium, and hydrogen is highly flammable."" As you can see the use of hydrogen would provide a great hazard to New York City as a dirigible was landing on the top of the building. It is a highly populated spot and could be potentially very dangerous. Another example of an obstacle can be seen in paragraph @NUM2. It stated that ""the greatest obstacle to the successful use of the mooring mast was nature itself."" @CAPS1 to the wind. Lsted informs us of the terrible hazard of the air currents at the top of the Empire State Building. All in all, many obstacles stood in the way for allowing dirigibles to dock, and in the end that is why it wasn't successful." 2 2 2 +15882 6 "The Empire State Building was meant to be great The tallest building in the world. Although they did achieve there goal of height, the true purpose of the building was never used.The building was supposed to serve as a holding dock for these new air Ships called dirigibles. However this was not the case. There were reasons that were apparent before it was ever builtOne of the greatest obstacles was nature itself The winds at the top of the building were too strong for the dirigible to be safetly secure. The back of the ship would swivel around the mooring mast, and trying to weigh it down with bricks was impractical. Another problem that was faced was the law that would make it illegal for a ship to ever tie up to the building or even approach the area. But two ships did try to land. The U.S. Navy dirigible Los Angeles failed in landing because it was too dangerous. In the end, the Empire State Building never served as a station for dirigibles." 3 2 2 +15883 6 "In the excerpt The Mooring Mast by Marcia Amidon @CAPS1 the builders of the Empire State Building some obstacles when attempting to allow dirigibles to dock there. These obstacles included the added, stress to the buildings frame, The excerpt states in paragraph nine ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether would add stress to the building's frame."" This obstacle would could cause the whole building structure to collapse which could cause death and alot of destruction. Another obstacle included nature. The excerpt states in paragraph fourteen ""The winds on top of the building were constantly shifting due to violent air currents."" These violent air current could cause the dirigibles to lose control and hit the building and other buildings around it. The stress being added to the Empire State building and nature itself were the two main obstacles for the builders." 3 3 3 +15884 6 "The builders of the empire state building had to face alot of obsticles to try to get dirgibles to land there. One of those obsticles was making ""changes to existing Plans for the building's stelfame"". Another thing was nature the winds would not let a blimp land there. But the greatest reason was safety: ""Most dirigables from outside the United States used hydrogen rather than helium, and hydrogen is highly flamable""." 2 2 2 +15885 6 "In the excerpt, ""The Mooring Mast,"" by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was in paragraph 6, the excerpt says, ""one obstacle to their expanded use in New York City was the lack of a suitable landing area."" This means that the architects needed to build enough area to land the dirigibles, precisely and carefully. Another obstacle was in paragraph @NUM1, which said, ""the greatest obstacle to the successful use of the mooring mast was nature itself."" This is explaining that the outcome of nature can be predicted, but it cannot be controlled. The amount of ""violent air currents"" can disturb the landing of dirigibles and it is ""neither practical nor safe"" for the dirigibles to dangle high above the pedestrians that are on the street. Unfortunately, Al Smith's plan to able the dirigibles to moor at the Empire State Building was unsuccessful. There was a law stated in paragraph @NUM2, that made ""it illegal for a ship to ever tie up to the building or even approached the area"". Instead of using the mooring mast, the dirigibles gave way to airplanes." 3 3 3 +15886 6 "The builders of the dirigibles faced many obstacles trying to allow them to dock. One obstacle was there was a it was illegal for ""airships to fly to low"" over urban areas. It was illegal for it to ""tie up to the building. ""The purpose of the dirigibles was to be able to dock at the mast. If it couldn't fly up to the mast and dock there was no purpose in the mast or dirigibles. If they were to be able to dock they would need to be weighted down by lead weights. The problem with the weights was they would dangle above pedestrians. That was ""neither practical nor safe"" for the pedestrians on the street. If the dirigible docked at the top of the building, they would be held by a single cable. All the pressure on the cable would stress out the buildings frame. If that were to happen they would then have to strengthen and modify the buildings foundation. Overall the major obstacle they faced was not thinking through their plan of the dirigible. If they had thought it through these obstacles could have been prevented." 3 3 3 +15887 6 "The builders of the Empire State building faced many obstacles in attempting to dock tere. Many foriegn dirigibles used hydrogen instead of helium to keep it a float. Hydrogen is extremely flammable, and has proven to be. on @DATE1 a German dirigible Hindenburg was destroyed in a fire caused from hydrogen, in New jersey. When the owners of the Empire State building the severity of this happening they were turned off.Nature if anything was the biggest obstacle of them all. Considering the building was so tall, ""the winds on top of the building were constantly shifting due to violent wind currents"". The law if anything was pretty important to get approved, and tere was a law against airships flying too low over urban areas. So it would make it illegal for the dirigible ships to ever tie up to the building or to even approach the area." 3 3 3 +15888 6 "The builders of the Empire State Building faced a lot of obstacles in attempting to allow dirigibles to dock there. A few of these problems included designing the mast and making sure that it was safe enough for dirigible to dock on. According to the excerpt, ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" This meant that the builders would have to change the plan of how the building could be built to be able to hold the dirigibles. After they constructed a new layout for the building the conflict of safety came into play. Stated in paragraph @NUM1, ""The greatest reason was one of safety: Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly inflammable."" Another big safety issue was ""nature itself."" ""The winds on top of the building were constantly shifting due to violent air currents."" The air currents made it so that they had to tie down the dirigible, but even then it is dangerous because it would be dangling over pedestrians on the street. The design and safety of the building both were big obstacles that the builders faced in attempting to allow dirigibles to dock there." 3 3 3 +15889 6 "they haD to worry aBoat the. Saftey for the pepole, to keep it still as they DockeD. How they woaD @CAPS1 it anD the posible out comes if something DiD @CAPS2 wrong." 1 1 1 +15890 6 "When the builders of the Empire state Building were constructing the mooring mast for the dirigibles, they faced obsticles that could have jeopardized the project. There were two aspects that the builders had to pay extra attention to, structural integrity, and design. Since ""the architects could not simply drop a mooring mast on top of the Building's flat roof,"" The builders had to modify the building's frame. These modifications cost over @MONEY1. The other aspect that posed an obsticle was design. The architect, John Tauranac, described the plan to make the mast ""more than ornamental,"" and ""more than something as mundane as a water tank. So, to fufill the architect's high aspirations, the builders constructed a ""shiny glass and chrome-nickel stainless steel tower that would be illuminated from the inside. This required a lot of extra work for the builders. Dispite the obsticles, the boilders got the job done." 3 1 2 +15891 6 "In the excerpt, The Mooring Mast, there were numerous obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle being that the architects could not have a mooring mast on top of the building because the dirigible would be, ""... held by a single cable tether, would add stress to the building's frame"" (@CAPS1 @NUM1). This would cause the building to have to weak of a frame from the dirigible's load, as well as the wind pressure. Then the stress would be transmitted down to the foundation of the building. As a result, the building's frame was modified, costing ""Over sixty thousand dollars'"" (@CAPS1 @NUM1). Another obstacle was designing the mooring mast, so passengers could be brought, ""... down to the eighty-sixth floor, where baggage and ticket areas would be located"" (@CAPS1 @NUM3). In order for this to be completed, builders had to complete the roof. Lastly, ""The greatest obstacle to the successful use of the moor mast was nature itself"" (@CAPS1 @NUM4). When the winds came into action at the top of the building, the dirigible would swivel around the mast. This would cause a safety hazard for pedestrians on the street. The Mooring Mast, supported many reasons as to the obstacles builders had to face in attempting to allow dirigible to dock at the Empire State Building." 4 4 4 +15892 6 "In the excerpt, The Mooring Mast,, by @PERSON1, the author describes many obstacles builders faceded, to allow dirigibles to dock. The first problemb was the modifications that had to made to the buildings framework. ""Over sixty thousand dollars worth of modifications had to be made,"" showing how expensive this product was going to be. A second potential problemb was that, ""The winds on top of the building were constantly shifting."" This could cause many different complications. One of which would be how ""the wind would blow the dirigible onto sharp spires,"" a consiquence feared by the piolet of Los Angeles. Another problemb brought up by the winds shifting, would be the ship spinnig, potentialy resulting in catastrophe. They acomidated for the use with unpractical things, eventualy leading to the downfall of the mooring mast." 3 3 3 +15893 6 "In the excerpt, the builders and architects building the Empire State Building had numerous problems trying to build the mast on the top of the building. One reason was that they built it before even considering the problems it may cause. The biggest problem was safety: ""the hydrogen used in the dirigibles was highly flammable."" Another problem was wind: ""they would never be able to use the mooring mast because of the violent winds shifting at that height."" If the dirigible was ever tied to the building, ""it's back end would swivel around and around the mooring mast."" The derigibles moored in fields could be held down with lead weights but using those @NUM1 feet above downtown New York would not be safe at all. The final problem was a law against airships flying that low over cities and pedestrians. So, neadless to say, it wouldn't work out." 3 3 3 +15894 6 "The obstacles the builders of the Empire State Building faced were many. The architects could not simply drop the mooring mast on top of the Empire State Building that was only held by a single cable tether. This would add stress to the buildings frame. To be able to handle the dirigible's load the steel frame of the Empire State building would have to be modified and Strengthened, which was over sixty thosand dollars 'worth. Another obstacle was nature. The winds on top of the building were always shifting which could lead to the back of the ship swiveling around and around the mooring mast." 2 2 2 +15895 6 "The builders of the Empire State Building faced several obstacles in attempting to allow dirigibles to dock there. One obstacle that the architects faced was the stress the cable tether would put onto the building's foundation. In paragraph @NUM1, Lsted mentions, ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation."" A very expensive problem to fix. Another challenge the builders faced in attempting to allow dirigibles to dock their was the lack of safety. Dirigibles from outside of the United States used Hydrogen, a highly flammable gas. In paragraph @NUM2 Lsted says, ""The owners of the Empire State Building realized how much worse [an] accident could [be] if it had taken place above a densely populated area such as downtown New York."" The number 1 obstacle builders faced was nature itself. The violent winds on top of the building were constantly shifting. In paragraph @NUM3 Lsted reasons. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" This would be neither practical nor safe. The obstacles the builders faced were to egregious, so the idea had quietly disappeared" 3 4 4 +15896 6 "From the excerpt ""The Mooring Mast"" by @ORGANIZATION2, it describes many obstacles that the builders of the Empire State Building in attempting to allow dirigibles to dock. The mooring Mast of the building was destined to never fulfill its purpose. One example is most dirigibles from the outside the United States used hydrogen. The united States mainly used helium, witch is not flamable like hydrogen. Luckily the owners of the Empire State Building understood that there could have been a terrible accident if hydrogen dirigibles were used at the Empire State Building. Another obstacle to the builders was nature. the winds on top of the building were constantly shifting because of the violent air currents. This made it unsafe for the pedestrians down below. these are the obstacles the builders had when attempting to allow dirigibles to dock." 3 2 3 +15897 6 "Marcia @CAPS1's article ""The Mooring Mast"" explains the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock. Nobody involved realized the building wouldn't be sturdy enough to allow a thousand-foot dirigible to be docked there. This pressure, and the wind pressure, would be ""transmitted to the building's foundation."" The Steel frame would also need to be reinforced, costing over sixty thousand dollars. Several other problems arose due to pedestrian safety issues: most foreign dirigibles used highly-flammable hydrogen fuel instead of helium. Everyone involved in the project realized that should the hydrogen cause a fire, the many people living in downtown New York could lose there lives @CAPS2 the dirigible would be dangling 1,250 feet over crowded @CAPS3, endangering countless pedestrians. @CAPS2 there was a law banning airships from flying too low over urban areas, making it ""illegal for a ship to ever tie up to the building or even approach the area."" Although the Empire State Building never got to fulfill it's purpose, it is an international landmark in the heart of New York." 3 3 3 +15898 6 "In their attempts to allow dirigibles to dock on the Empire State Building the builders ran into obstacles that in the end prevented the whole idea from moving on. ""The winds on top of the building were constantly shifting due to violent air currents"" (@NUM1 line @NUM2) because of the changing winds atop the building there would be no safe way to moor a, lighter then air, dirigible on top of a high building. The wind also posed another problem because if the captin let go of the controls the dirigible might spear itself atop another pointy sparer, thus leading to the other high buildings to be an obstacle. The Law of the day also became an obstacle ""an existing law against airships flying to low over urban areas"" (@NUM3 line 1) the building itself was high up but even at the top it wasn't legal for any airship to moor due to hieght restrictions. These attempts at building a mooring dock atop the Empire State building would have sent to New York spirling up ward to being in the land inovation but the obsticles were to great to surpass." 3 3 3 +15899 6 "There were some great obstacles for the dirigibles to be able to land and dock on the Empire State Building. At first the idea was great and staggering people's mind, but when the mast was being built the people realized it would not work. The first problem for the dirigble the law for airships to be so low over urban areas which makes it illegal for the ship to even be that close The second problem was ""the winds on top of the building were constantly shifting due to violent air currents (paragraph @NUM1)"" which means it would be very dangerous for the passengers to be comming on and off board of the dirigible. The last problem is that foreign dirigibles use hydrogen which is flammable and to put it over a dencely populated area could cause horrific damage. These precautions would have to be taken which were obstacles for The Empire State Building." 2 3 3 +15900 6 "The builders of the Empire State Building faced three main challenges while attempting to make the mooring mast accessible to derigibles. Most foreign derigibles still used hydrogen; a highly flammable gas. A fire on the streets of New York would be disastrous. There were also fierce, ever changing wind currents above the building. These winds would make the back of the dirigible ""swivel around and around the mooring mast."" @CAPS1, there was a law in place preventing dirigibles from flying too low when over urban areas. This law made it illegal for dirigibles to tether to the building or even approach it. Those three factors made the mooring mast ""neither practical nor safe.""" 3 3 3 +15901 6 "There were many obstacles the builders faced in attempting to allow dirigibles to dock on the empire State building. One obstacle they faced is the safety of the passengers when the dirigibles would dock and the frame work of the building wouldn't collapse. I know this because in between paragraph @NUM1 and @NUM2 the excerpt says, ""'One set of egineers are here in New York is trying to dope out a practical, workable arrangement and the government people in Washington are figuring on some safe way of mooring airships to this mast.'"" The mast weighs alot so they're afraid it will put too much pressure on the empire state building. The egineers were also afraid of the dirigibles blowing up because the dirigibles use hydrogen. Hydrogen is way more flammable than helium. I know this because in between paragraph @NUM3 and @NUM4 it says, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. These were a few of many obstacles the workers faced" 3 2 3 +15902 6 "In this excerpt the Architect/Workers had to face several obstacles while trying to construct a docking area on the Empire State Building for dirigibles. They had to find away for this huge mast not to kill the building frame The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. A thousand foot dirigible moored the top of the building, held by a single cable tether, would add stress to the buildings frame."" They had to find away to make the load less bearing on the building. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" To fix this Architects and Workers must modifie the steel frame because of the new situation. After this was built and done they had to face the facts that this was imposible to do or not allowed. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable. When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" The Architects and worker went through so many obsticales to then find out its dangerous and the law not to fly so close to urban area's." 3 3 3 +15903 6 "In attempting to allow dirigibles to dock at the Empire State Building, the builders went through many obstacles. Dirigibles are steel frames balloons, with envelopes or cotton fabric filled with hydrogen and helium to make them lighter than air. Dirigibles could be maneuvered by the use of propellers and rodders and passengers could ride in the gondola, under the balloon.A dirigible moored at the top of the building held by a single cable tether, would add stress to the buildings frame. The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building foundation, which was nearly eleven hundred feet below. over @MONEY1 worth of modifications had to be made to the buildings framework. Also the law against airships flying to low over urban areas. This law would make it illegal for a ship to ever tie up to the building." 2 3 3 +15904 6 "The obstacles that the builders of The Empire State builduing faced in attempting to allow dirigibles to dock there were they had to allow the dirigibles to anchor there for several hours for refueling or service, and to let passengers on or off. The dirigibles were docked by means of electric Winch, Which hauled in a line from the front of the Ship and then tied it to a mast. The body of the dirigibles Could Swing in the breeze, and yet passengers Could Safely get on and off the dirigible by walking down a gangplank to an open observation platform. They had to go through all these obstacles in order to build The Empire State builduing." 1 0 1 +15905 6 "Al Smith, a former governor of New York, led the way in constructing the Empire state building. This building was being constructed to be the tallest building, taller than the Chrysler building which stood at @NUM1 feet tall. In order to make the Empire State building taller than the Chrysler building, Al Smith wanted to add a mooring mast to the top for docking dirigibles. This idea faced many obstacles. First, the passage states that ""The steel frame of the Empire State building would have to be modified and strengthen to accommodate this new situation."" This would cost a large amount of money to construct. Also, ""Most dirigibles from outside the United States use hydrogen rather than helium, and hydrogen is highly flammable."" @CAPS1, the passage states the issue that ""The winds on top of the building were constantly shifting due to violent air currents."" The builders realized many problems after the mooring mast was constructed. The builders should have thought of each situation before building the mast which cost a lot of money. Although the mast was no longer used, the Empire State building still stood at the height of @NUM2 feet, the tallest building built." 3 3 3 +15906 6 "Builders of the Empire State Building never achieved their goal. They had failed to predict the potential problems that they would face. First of all, they couldn't proceed to attempt to land the dirigible on the Mooring Mast because it would be dangerous. Indeed, ""Most dirigibles from outside the United States used Hydrogen rather than helium, and hydrogen is highly flammable"" (paragraph @NUM1). They realized the complications it would imply if there were to be an incident like the one in New Jersey. Also, nature was an obstacle to the project; ""The winds on top of the building were constantly changing due to violent air currents"" (paragraph @NUM2). Consequently, due to the winds, the back of the dirigible would be swinging around the mooring mast, which would be a huge danger to the streets. As a final point, dirigibles wouldn't be able to moor at the Empire State Building because there was a pre-existing law concerning how low airships could fly over urban areas." 3 3 3 +15907 6 "The architects didn't realize how many potential problems the mooring mast would bring until it had failed. The greatest reason why the dirigibles couldn't land was purely safety complications. Many dirigibles at the time used hydrogen rather than helium, which is highly flammable. Another main reason was nature itself. The winds on top of the building were very violent and could easily push a dirigible in the wrong direction. Before these problems, there was an already existing law against the flying of airships too low over urban areas. Dirigibles could not dock at the Empire State building because it was unsafe and illegal." 3 3 3 +15908 6 "In the excerpt the builders of the Empire State Building had many obsticales to deal with. They had to make sure the dirigiles good go high enough and be safe for passengers to board and get off safely. The builders had to deal with alot.""The architects could not simply drop a mooring mast on top of @ORGANIZATION1 roof."" Because of the buildings hight they were uable to make things work. The dirigible was too much and it added stress to the buildings frame, to unload things it was to difficult the floor it needed to be on was too low.""The as yet unsolved problems of mooring airships to a fixed mast at such a height made it desirable to postpone to a later date the Final the final instalation of the landing gear."" The project was so difficult that they had to quit the task and expand at another time. The workers were devistated." 1 2 2 +15909 6 "There were many problems to over come in the construction of the mooring mast on the Empire State Building. The first problem to over come was the stress a thousand foot long dirigible would add to the buildings frame. This was solved by spending over @MONEY1 in modifying the building's frame work. Another problem was a law against airships flying too low around urban environments, brought up in paragraph @NUM1. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" @CAPS1 is writing about the wind. At 1,250 feet high the wind is violent, and would swing a dirigible around to much to be safe, and ends could not be weighed down for fear of injuring a pedestrian. Those were three signifigant reasons the mooring mast failed." 3 3 3 +15910 6 "In attempting to let dirigibles dock at the Empire State Building the builders faced many problems. The first problem was the fact that most dirigibles from outside of the U.S. used hydrogen instead of helium. The problem with hydrogen is that it is highly flamable and would be a huge risk to have a hydrogen dirigible over a city full of pedestrians because it could catch on fire and hurt them.Secondly, the wins at the height of the Empire State Building were always shifting which presented great risk to pilots. If their dirigible got blown off course it could collide with other tall buildings in the city. The U.S. Navy dirigible Los Angeles got blown off course by the strong winds and the pilot could not take his hands off the controls in fear of hitting other buildings.Lastly, there was a pre-existing law that would have made it illegal for a dirigible to have entered the airspace around the Empire State Building." 3 3 3 +15911 6 It @CAPS1 like a veryhard test for them because there trying to make an age of transportation with the thoughts of the pioneers. But once the architects designed the mooring mast and made changes for the building skeleton. They have framed the 85th floor the roof had to be completed before the framing. 1 1 1 +15912 6 "During 1929 when Al Smith announced that he was going to make a docking port for blimps at the top of the Empire State Building there were many obstacles in the way of the architects building design. Building a dock for blimps at the top of the worlds tallest building is no easy task. They should have realized previous to the project that this was a lost cause, but they tried it anyways.The architects on the project had to devise a plan that would strengthen the main support beams of the building while still being able to control the movements of the back of the dirigibles due to uncontrolable wind conditions. Unfortunatly they never found a way to successfully complete this task and because of that the Empire State Building could never dock blimps. " 1 1 1 +15913 6 In the 1930's this would have been a difficult obstacle to face. the idea altogether was doubted by many People. the first @CAPS1 was comparing in height with the chrysler building. and the mooring mast wold have worked in theory but in reality had to many Problems. It was a potentially dangerous attempt. 0 0 0 +15914 6 "When the empire state building was constructed it ran into many problems attempting to dock dirigibles there. One problem they ran into is that most overseas blimps were still filled with hydrogen, which is a very flammable gas. The constructors did not want to re-create the Hindenburg accident over a densely populated area such as New York City. The greatest obstacle to the mooring mast was nature itself. The wind currents atop the building were violent and always shifting. Docking a Dirigible there in those conditions would cause it to swivel around the building and become unsafe for passengers. That is why the mooring mast never fulfilled it's purpose." 3 2 3 +15915 6 "The building of the mooring mast on top of the empire state building was very poorly thought out. This is the reason why they faced so many obstacles. From the very start Al Smith never thought about the safety of the people. ""When other countries used hydrogen rather than helium this was a cause for very flammible possibilities. If this happened in New Jersey how bad would it be in a densely populated place like New York City. I could never imagine walking down the street and a lead weight being dropped on my head. In New York there was violent air currents and when the dirigibles would be tied up they would sway. The idea was to hold them in place by lead weights. This was not practical or safe. The one thing that should have been thought of before it was ever constructed was the law. It was illegal for a airship to fly low over urban areas or even to tie up to buildings. In conclusion everything should have been thought out before making hype about something that was not safe, and that was illegal." 3 3 3 +15916 6 "By reading the passage ""The Mooring Mast"" by Marcia Amidon Lsted it is easy to see the many complications with landing a dirigible on top of a 1,250 ft. building. For one there is the natural effect of wind. ""The winds on top of the building were constantly shifting due to violent air currents."" @CAPS1 winds would make it difficult to land any floating aircraft anywhere if the back wasn't able to be weighted down. Another obstacle the builders faced was that the frame had to be strong enough to hold a @NUM1 ft. long dirigible. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation."" The worker's then had to spend over @MONEY1 to remodel the framework of the Empire State Building. Another issue is that anchoring the blimps would be illegal. According to ""an existing law against airships flying too low over urban areas."" All these safety troubles and violations would all together make the ""mooring"" an impossible feat." 3 4 4 +15917 6 "The architects and builders faced large problems in the construction of the docking platform, even though they had not notice them at first. The builders did not notice any large problem untill after the dirigible Hindenburg crashed in Lakehurst. The building's owners became greatly concerned for the safety of the people inside and below the building if a blimp fell into the same situation as the Hindenburg." 1 1 1 +15918 6 "When Al Smith first came up with the plan to use the Empire State Building is a mooring mast, he had no idea how obstacles they would face in a attempting to allow dirigibles to dock there. One large obstacle was safety. ""Most dirigibles from outside the United States use hydrogen rather than helium, and hydrogen is highly flammable."" (@CAPS1 @NUM1) The reason this is so unsafe is because if the gas inside ever happened to catch on fire, the entire craft would exploded in flames. This is a hazard to those in the ship, as well as those in the streets below. Another obstacle was the high winds at the top of the building. ""The winds on top of the building were constantly shifting due to violent air currents."" (@CAPS1 @NUM2) This was a problem because it would cause to the dirigible to move all over the place. The idea of using lead weights to weigh it down was proposed, but they would be a danger to pedestrians below. A third and final obstacle they faced was the stress a dirigible would cause on the building's frame. The building's design was not capable of handling the stress of a dirigible tied to its mast, without changing the design, the dirigible would probable tear the building apart. The only solution was to strengthen the building ""Over sixty thousand dollars' worth of modifications had to be made to the buildings framework,"" (@CAPS1 @NUM3). That is a ridiculous amount of money they had to spend just to make it possible for the dirigible to dock. It is easy to see how difficult the project was based on the many obstacles the builders had to face." 4 4 4 +15919 6 "The builders of the Empire State building faced not so many but difficult obstacles. one of the obstacles were the crowded @CAPS1 they had for the dirigible. crowded @CAPS1 can cause the dirigible to hit or bump into another building if not pop the thing. The wind could also make the dirigible sway and hit another building. Another obstacle was the stress the building was having because the dirigible was tied to it. If the wind blew hard, the dirigible would put alot of tension on the building and something could go wrong." 2 4 2 +15920 6 "While attempting to allow dirigibles to dock on the Empire State Building, the builders faced many obstacles. The first obstacle they dealt with was the fact that mooring such heavy blimps would add stress to the building. In fact, 'the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation.' Another obstacle they endured was the fact that the hydrogen gas used in the dirigible was very flammable. As bad as the Hindenburg explosion was, it could have been much worse, 'if it had taken place above a densely populated area such as downtown New York.' It was also very dangerous that the blimps would fly so low over an urban area. Lastly, the strong winds would making mooring difficult. Winds that high up on a building are, 'constantly shifting due to violent air currents.' The workers clearly had many problems in building the mast and it just couldn't be completed." 3 3 3 +15921 6 "From the excerpt ""The Mooring Mast"", There were multiple obstacles the builders of the Empire State Building faced. In attempting to allow dirigibles to dock there. One of the obstacles the builders faced was the agianst airships flying too low over urban areas. The law would make it illegal for ship to ever tie up to the building or ever approach the area. Another obstacle the builders faced was forceful winds. ""The U.S. Navy dirigible Los Angeles approached The mooring mast but could not get close enough To tie up because of forceful winds."" The greatest obstacle was the winds on top of the building were constantly shifting due to the violent air currents. The back of the ship would swivel around and around the mooring mast. The last obstacle was the dirigible wasn't safe to have dangling high about pedestrians." 3 3 3 +15922 6 "In the excert The Mooring Mast by @ORGANIZATION1, The builders of the empire state building faced many obstacles in attempting to allow dirigibles to dock there. For example One big problem they faced was the architects could not simply drop a mooring mast on top of the empire state building's flat roof."" This operation would not be possible because ""A thousand foot dirigible moored at the top of the building held by a single cable tether, would add stress to the buildings foundation, wich is nearly 11 hundred feet below."" the steel frame of the empire state building would have to be modified and strengthened to accommodate this new sittoation. One big obstacle they faced was a big Safety problem. ""Most dirigibles from outside the @CAPS1 used @CAPS2 drogen rather than @CAPS3 lium, and @CAPS2 drogen is very flammable. the biggest obstacle to face was nature itself. ""The winds on top of the building were constantly shifting due to the violent air currents. Dirigibles moored in open landing fields could be weighted down in the back with lead weights but using them at the empire state building, were they would be hanging on top of padestrans on the street was neither practical nor safe. These are the obstacles the empire stat building faced." 3 3 3 +15923 6 "There were many obstacles the builder's of the Empire State Building faced in attempting to allow dirigibles to dock there. Some obstacles were the lack of a suitable landing area. Another obstacle was they could not simply drop a mooring mast on top of the buildings flat roof, a thousand foot dirigible moored at the top of the building, held by single cable tether, would add stress to the building's frame. Also if they wanted to do this, it would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below. The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constatly shifting due to violent air currents. To reduce this dirigibles moored in open landing fields could be weighted down with lead weights, but the obstacle to this is having weights dangling high above pedestrians was neither practical nor safe. All these obstacles, yet these people were still able to build the Empire State building with a mooring mast." 4 3 4 +15924 6 "In the excerpt, ""The Mooring Mast"" by @ORGANIZATION1, the builders of the Empire State building faced many obstacles. As stated in paragraph 1 of the excerpt, the Empire State building was planned to be the tallest building in the world in the @DATE2's. The architect of the Chrysler building constructed the building to be 46 ft taller then the Empire State building. Governor of New York, Al Smith did not want loose the tittle of the tallest building. In paragraph 6 it tells you Smith's idea: A mooring mast was added to the top of the building would allow dirigibles to anchor there for several hours for refueling or service. And to let passengers on & off.Safety issues did not allow the mooring mast of the Empire State building to fulfill its person, said in paragraph @NUM1. Most dirigibles from outside the @PERSON2 used hydrogen instead of helium. Hydrogen is highly flamable. Because of pointy buildings this was extremely dangerous. As stated in paragraph @NUM2; the greatest obstacle was nature. On top of the Empire State building, the winds on top of the building were constantly shifting due to violent air currents. Also, the law to fly too low. By the late 1930's the mooring mast plan disappeared." 3 3 3 +15925 6 "Builders of the Empire State Building faced several obstacles while attempting to allow dirigibles to dock there. First, there was the problem of having a large dirigible moored to the top of the building help by a single cable tether which would add stress to the frame of the building, all the way to its foundation. To fix this, the frame of the Empire state building would need to be strengthened. Another problem was the safety of the citizens on the streets below. Dirigibles using hydrogen could burst into flames. Also high winds would make it hard for the dirigible to tether to the mooring mast. The dirigible could not be weighed down since the weights would dangle over pedestrians on the streets. The effectiveness of these winds was shown when the U.S. Navy dirigible Los Angeles attempted to dock. During this attempt the winds were very strong and the captain of the dirigible feared that it could be punctured by other buildings sharp spires. Those are several examples of what builders of the Empire State building had to face." 3 3 3 +15926 6 Some obstacles the builders faced were too much stress to the buildings frame. It would have to transmit all the weight and pressure all the way to the building's foundation. Also there would only be one cable holding it in place. The cable was called a tether. Another obstacle would be an existing law saying that you cant moor your ship there because you are flying to low. In December 1930 the @ORGANIZATION1 dirigible tried parking there but they were affraid of the wind knocking it into another building. Therefor they went threw a few hard obstacles but in the end they fixed it and made it happen. 2 2 2 +15927 6 "Derigibles, modernly called blimps were widely regarded in the @DATE1's as the latest and greatest form of transportation there was. These derigibles needed quick means of refueling and unloading passenger both eficiently and with safety. At the very time these derigibles became popular modern day skyscrapers such as the Empire State Building and the Chrysler Building were dominating the skyline in New York City. Al Smith, a former governor of New York who was heading efforts to construct the Empire State Building came up with the idea of building a mooring mast on the top of his building which would help dirigibles dock, refuel and unload cargo quickly and efficiently. Although, at the time this idea was thought of as both ""practical"" and ""workable"" it was never put to use because of safety concerns found later by Architects. These safety concerns included fear of the ""constantly shifting"" winds ""due to violent air currents"" as well as air space restricting laws that prohibited ""airships from flying too low over urban areas."" Although this idea seemed revolutionary at the time, many obstacles stood in its path to glory." 2 3 3 +15928 6 The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there ware extrem to over come.one obstacles for the builders was trying to make it so the building its self could handle the stress of the dirigibles tied to the to the building with wind pulling at it and swaying back and forth as wind direction changes.Also it is to low for a dirigibles to be flying because of the other buildings. The most important is the gases inside the dirigible is flamible and would be devistation to the people below in New York City. 3 2 3 +15929 6 Diregible Hindenburg was destroyed by fire in @LOCATION1 on @DATE1 The owners of the Empire state building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York In The MOORING MAST Dirigibles had a top speed of eighty mile per hour and they could cruise at seventy miles per hour for thousands of miles without needing refueling some were as longht as four blocks in New york city The one obstacle to their expanded us in New york city was the lack of a Suitable landing area 1 1 1 +15930 6 "In the @DATE1's Al Smith hoped to build the world's largest dirigible dock in New York. However, during construction, the Empire State Building's mooring system ran into many problems One obstacle was the harsh winds high above New York. In paragraph @NUM1, the author says, ""The winds on top of the building were constantly shifting due to violent air currents."" These wins caused the dirigibles tail end to move around while docked, causing unsafe landings and take-offsAnother obstacle faced was a law that prohibited airships from flying low over urban areas. This was feared because of the Hindenburg crash in 1937. The building officials feared if that crash were to happen in New York then the damage would have been catastrophic. The final obstacle faced by the Empire State Building's mooring system was that many blimps from overseas used hydrogen instead of helium to fly. Hydrogen is extremely flammable and had a crash occurred over New York, the damage would have devastated the city and would have caused a tremendous amount of casualties" 3 4 4 +15931 6 "Based on ""The Mooring Mast"" written by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. Constructed in the 1930s the Empire State Building was originally built to exceed the height of the Chrysler Building; it was going to stand at a whopping 1,250 feet tall. What added to this building's height was its great mooring mast that stood atop the building Dirigibles, very similar to balloons, were gaining popularity in the aviation world. However, there were many issues that held back the progress of this project. Most of these issues were safety problems. One practical reason why dirigibles could not moor at the Empire State Building was because of an existing law against airships flying too low to urban areas Another reason was the flammibility of these ships. Most of them ran on hydrogen rather than helium. Hydrogen is very flammable and if the ship exploded many civilians and passengers would be killed. In summation, because of safety risks, the mast of the Empire State Building could and was never used for its original purpose." 2 3 2 +15932 6 "The builders of the Empire State Building faced several obstacles. ""... the lack of suitable landing area."" (@CAPS1 6). This means it was difficult to land the Dirigibles. Another problem they faced was nature. The wind and weather could make a landing the dirigibles very dangerous. ""Dirigibles were docked by means of an electric winch, which called in a line from the front of the ship, and tied it to the mast."" (@CAPS1 6). This means if the wind blows in the wrong direction, or competes with the electric winch, it would be difficult and dangerous to land the dirigible. Another obstacle was the expenses. ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework."" (@CAPS1 @NUM1). This means they had to pay a lot of money, which is an easy. That was definitely an obstacle they had to face." 3 3 3 +15933 6 "The builders of the @ORGANIZATION1 thought that they had a great idea and that they were pioneers. They soon realized that there were some problems with their ideas. One major problem was safety. As noted in paragraph @NUM1, most @LOCATION3 dirigibles used hydrogen, which was highly flammable. New York is one of the biggest cities in the United States, and it was far too densely populated to take that risk. Another problem was wind. At those heights, the wind currents were unpredictable and winds reached high speed. If the dirigible were to be blown around while in the downtown area and were to hit a spire of the building, there would certainly be quite a few casualties. After the risks and rewards were balanced, they realized it just wasn't worth it." 2 3 3 +15934 6 The obstacles that the architects of the Empire State Building faced was harsh. They had to figure out how they were going to get the dirigibles to land on the mooring mast. A another problem was that the government was getting unpaticent. What made thing worse was Al smith was being sneaky and unturful. He lied about how high the actulty hieght is. He lied about how he will fix the problems the was with the mooring mast. They were also afraid that a dirigible will blowup on the mooring mast like the @CAPS1. So they just put it aside and made over time the world's highest soda fountain and tea garden for the use by the sightseers. 1 1 1 +15935 6 "One problem that the builders has was that they had to make the mast big enough. Some dirigibles would be @NUM1 feet long. If the just dropped a mast on top of the Empire State Building becaus the stress of a thousand-foot dirigible held to the Empire State Building by just one cable tether, there would be a lot of stress put on the building's frame. If they did the weight of the dirigible and the wind all of that stress and pressure would be put on the buildings foundation that was nearly eleven hundred feet below which was not safe at all. They had to go through all of the different possibilities and they also had to make sure that it was going to be safe. While designing the mast they had to consider the winds at the top of the building, the winds were constantly shifting due to the violent air currents. If they did design a good mast the dirigible would be dangling above pedestrians, which was not safe." 3 3 3 +15936 6 "There were three main obstacles the builders of the Empire State building faced when they attempted to allow dirigibles to dock at the mooring mast. The first obstacle was ""nature itself"", meaning that the air currents at the top of the Empire State building were so powerful that the wind was constantly changing directions. This meant that if a dirigible could somehow fly through the winds and could be tied to the mast it would ""swivel around and around"" and would end up ""dangling over pedestrians"" which ""was neither practical nor safe."" @CAPS1, A dirigible is not leagally allowed to dock at the mooring mast because it would be ""flying too low over urban areas"" Which there is an ""existing law"" against. This is a problem for the builders because no matter how hard they attempted to allow dirigibles to dock, they would not be leagally allowed to dock dirigibles at the Mooring Mast. Lastly, many dirigibles used hydrogen gas as a feul. Hydrogen gas is ""highly flammable"" and a dirigible using hydrogen gas is therefore also highly flammable and could potentially pose a disaster to the ""densely populated area such as downtown New York."" Because of potential fires, city laws, and air currents, the builders of the Empire State Building were faced with obstacles when they tried to allow dirigibles to dock at the mooring mast" 4 3 4 +15937 6 "Based on the excerpt, ""The Mooring Mast"" by @ORGANIZATION3 the builders of the Empire State Building faced several obstacles in an attempt to allow dirigibles, or blimps, to dock there. One reason that it was difficult to allow dirigibles to dock on the Empire State building was safety issues. According to Marcia Amidon Lsted, ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" With New York City and its dense population that is a risk that cannot be taken. Another obstacle faced by the architects of the Empire State Building was nature itself. The start of paragraph @NUM1 states, ""The winds on top of the building were constantly shifting due to violent air currents."" With high winds the dirigible, even tethered to the mast, would swivel around the mooring mast. Another difficulty in docking the dirigibles was according to the excerpt in paragraph @NUM2, ""an existing law against airships flying too low over urban areas."" Due to this law it would make it illegal for a ship to ever tie up to the building or even approach the area. A final obstacle the builders faced was the advancement with airplanes and that made it difficult for dirigibles to be the prime source of aeronautical transportation. Even though the builders spent a lot of time and effort in making the Empire State Building a national @CAPS1, which it is, they neglected many potential problems with the mooring mast which led to it never accomplish its full potential." 3 4 4 +15938 6 "In the excerpt ""The Mooring Mast"" written by Marcia Amidon lsted she explained the challenges dirigibles faced when trying to dock to the Empire state building. The @CAPS1 had to take into account the obstacles of the make up of dirigibles, the building structure and weather conditions when attempting to create a landing area for dirigibles. A mooring mast on the top of the Empire State Building could never be functional. Dirigibles must be lighter than air to fly. Gases such as helium and hydrogen are used to make blimps less dense. Being highly flamable, hydrogen could easily create a massive fire. The owners of the Empire State Building, decided if the blimp ever caught on fire it would be a much larger disaster over an area with a large population. Another factor that halted the docking of dirigibles was the building structure. The docking of a dirigible adds extra stress to the Empire State Building. The @CAPS1 were forced to design the framework of the building so it was strong enough to not collapse under the extra pressure. This took time and ""over sixty thousand dollars' worth of modifications hat to be made to the buildings frame work"". Lastly weather conditions tested the @CAPS1, on the top of the Empire State Buildings the winds are quite unpredictabled. They often shift because of ""violent air current"". No matter how the builder tie the dirigible to the mast the blimp will be unsafe. Due to winds, and structure of the building as well as blimp, the @CAPS1 couldn't create a docking area for dirigibles on the Empire State Building." 3 3 3 +15939 6 work face many problems with building docks for dirigibles to land on docks attched to the Empire State building. In paragraph @NUM1 it states that dirigibles disappeared and did become the transportation of the future. The Empire State building Never got to forfill its purposes for dirigibles. 1 0 1 +15940 6 "When Al Smith first had his idea to build a mast on which to dock dirigibles, it started out as friendly competition. However, nobody predicted the obstacles that would be encountered while trying to execute the plan. One of these obstacles was simply that it was unsafe. Dirigibles used hydrogen, which is very flammable. If there was an accident the results would be devastating in places populated as New York City. Another obstacle was the wind. The wind currents at the top of the building shifted constantly, making the dirigible swing from side to side, which was dangerous for passengers. One more obstacle was the fact that there was a law that prohibited airships from flying below a certain height in cities. Clearly, many obstacles were encountered, and the mast never ended up serving its intended purpose." 3 3 3 +15941 6 "Based on the excerpt, obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was that the steel frame of the Empire State Building would have to be modified and strengthened to accommodate the mooring mast, and rather than building a utilitarian mast without any ornamentation, the architect designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from inside, with a stepped-back design that imitated the overall shape of the building itself." 1 1 1 +15942 6 "Based on the @CAPS1 ""The Mooring Mast"" by @ORGANIZATION1, The builders of the Empire State building faced many obsticals in attempting to allow dirigibles to dock there. Many obsticals came forth with building the Empire State building with Al Smith constructing the whole building. With Al Smith constructing the whole building, he was determined to outstrip the height. Al Smith secretly constructed a 185 foot spire inside the building, the shocked the media and public by hoisting it up to the top of the Chrysler building. Another obstical that was faced during the building of the Empire State building was the idea of having dirigibles being able to dock at the very top of the building. The idea of having the dirigibles being docked at the top of the Empire State building, the dirigibles would only be held by a single cable tether, which would add amounts of stress to the buildings frame. The greatest obstical that came to building the Empire State building with the idea of docking dirigibles at the top was safety. Most dirigibles from outside the U. S. Used hydrogen rather than helium, & hydrogen is very flammable and if anything to happen it could destroy New York. These are the reasons why the builders of the Empire State building faced my obsticals in the @CAPS1 ""The Mooring Mast"" by @ORGANIZATION1." 2 2 2 +15943 6 The builders of the Empire State building faced several challenges in the completion of the landing dock for dirigibles. The first problem was the frame of the building. The frame was not strong enough to support the dirigibles when docked so the had to reinforce the frame to withstand the strain the dirigibles would present. The next problem was lack of a suitable landing area They decided to put an anchor on the top of the building to secure the dirigibles when docked. The anchor was a winch at the top of the building but the violent winds at the top of the building would not allow the pilot of the dirigible to get close enough to the ancor because of fear that the dirigible might be speard by a nearby building. Another reason why the dirigibles could not be docked on the top of the Empire State building is because of a law against airships flying too low over urban areas. A couple of attempts have been made but to this day nobody has successfully docked a dirigible on top of the Empire State building. 3 3 3 +15944 6 "The Empire State Building is known for its great size & distinctive shape in New York City's @CAPS1, but what most people probably do not know is that the tower on top is actually a mooring mast for dirigibles. This is probably a little known fact because it could never actually be used to dock blimps for numerous reasons: safety, nature, & the law.The mast would have revolutionized travel in New York if international dirigibles could stop there after long Transatlantic flights, however, because of the gas used by foreign blimps, safety would have been a huge issue. In paragraph @NUM1, the author states, ""most dirigibles from outside the U.S used hydrogen rather than helium, & hydrogen is highly flammable."" There was even an accident with the German Hindenburg, & if a blimp caught fire over densely populated @CAPS2 this would be an even greater problem of safety. Nature was also a matter of safety that needed to be considered. At such a great height there are strong, unpredictable winds, & ""even if the dirigibles were tethered to the mooring mast, the back of the ship would swivel around & around the mooring mast"" (paragraph @NUM2). There were no means of anchoring the back of the blimp because heavy weights such as those which would be used in open field landings would pose a serious threat hanging off the back of a blimp from over @NUM3 feet with pedestrians below There was simply no practical way to combat the nature that prevented the possibility of blimp stocking.Finally, it would have been illegal for a dirigible to dock at the mooring mass on the Empire State building. It was against the law for ""airships flying too low over urban areas"" ( @NUM4). The law ended up being the final obstacle that could not be overcome, so the Empire State Building never became a docking post for blimps, but it is still an incredible architectural feat." 4 4 4 +15945 6 "The builders of the Empire State Building faced many obstacles and attempting to allow dirigibles to dock there. One was that they had to add over sixty thousand dollars' worth of changes to the buildings framework because docking a dirigibles on the building would put a lot of stress on the framework and foundation of the building. Another problem was that most dirigibles outside the U.S. used hydrogen which was highly flammable and an accident at this building would be very dangerous because it such a densely populated area. Nature was said to be the biggest obstacle ""The winds on top of the building were constantly shifting due to violent air currents."" (line @NUM1) This would cause the dirigible to sway back and forth uncontrollably. This would endager pedestrians below and passengers on the dirigible. Lastly, a law was in place against airships flying too low in urban areas. All of these obstacles made docking a dirigible here impossible." 4 3 4 +15946 6 "In the excerpt ""The Mooring Mast"" the builders found many obstacles on the way to allow dirigibles to dock on top of the empire state building Some of those obstacles were as follow. The main concern was the safety of the passenger boarding and unboarding as well as the people below The concern for the people below was how the dirigible sometimes was floating with hydrogen instead of helium. Hydrogen is highly flammable. So they didn't want chances of the dirigible blowing up. Another main concern was there was an ""exsiting law over airships flying to low over urban areas"" (par @NUM1) The dirigible floated with the air and being as long as @NUM2 ft. the back of the dirigible where it wasn't securely fastened would circle around the mooring from the high wind currents. The winds were shifting all the time so it was a very big safety issue. Another obstacle was the dirigible docking, was mainly put into place because of jealousy. The man was jealous because his competition Al Smith was catching up with him before the idea of dirigible came to mind." 3 2 3 +15947 6 "Base on the excerpt the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. They not going to do it because it might hit other building or fly into other self. ""Could not get close enough to tie up because of forceful winds."" (@CAPS1 @NUM1 lines @NUM2). That mean it wasn't safe." 1 1 1 +15948 6 "In the excerpt ""The Mooring Mast"" by @PERSON1, the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. One of the obstacles they faced was figuring a practical and safe way to dock the dirigibles. Practicity and safety were an obstacle because the builders of the Empire State building were the first to attempt a docking dirigibles on air, @CAPS1 they had no past trials to refer to. In this project practicity and safety worked together. For example ""..engineers [had] to dope out a practical, workable arrangement..."" @CAPS1 that the airships could be moored to the mast easily and secure. This would assure the passengers safety as well as stability to the building.The second obstacle the builders faced was distributing the stress added to the building as the dirigible docked. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation."" @CAPS2 all of this stress to the foundation was a challenge because the foundation ""... was nearly eleven hundred feet below."" Another challenge that arose was that, to accommodate this situation ""the steelframe [of the building had] to be modified and strengthened..."" The modification to the buildings framework was worth ""over sixty thousand dollars..."" In conclucion, the builders of the Empire State Building faced many obstacles and attempting to dock dirigibles in their building." 3 4 4 +15949 6 "Al Smith and other workers are working on Empire State Building. They been having a few obstales with the project like they can't have it has high as they wanted it. They had to fix the mast skeleton if they wanted to do more. The Dirigibles for example. ""Most dirigibles from outside of the United States used hydrogen than helium, and hydrogen is highly flammable. When the german dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey on @DATE1. This explains they had gotten a law after this from happening so they can't have things near the Urban areas. This proves that there were @CAPS1 with Empire State building that they worked around" 2 3 3 +15950 6 "The obstacles that were faced by the Empire State Building builders were numerous. First of all, if they had carried out their plans for the mooring mast without taking into account the weight of the dirigible, the building would surely have way too much stress forced on the foundation when it docked. Next, the fact that the dirigible weighs even less than air is both a negative and a positive. The negative side to it is the fierce winds that would take control of the back of the dirigible. Above the many pedestrians in the city, this idea was quickly ruled unsafe. Lastly, it was filled with hydrogen, which, naturally, is highly flammable. The use of hydrogen was very dangerous, and only added to the negative side of the project." 3 3 3 +15951 6 "They were many obstacles the @ORGANIZATION2 of the Empire State Building faced in attempting to allow dirigibles to dock there. One of those obstacles was the stress of the dirigibles's load and the wind pressure didn't allow to be transmitted all the way to the buildings foundation, in which was nearly @NUM1 feet below. Another things that was an obstancle for the @ORGANIZATION2 was it was alot of money it was over sixty thousand dollar's worth of modifications had to be made to the building's framework. Also the architects could not simply drop a mooring mast on top of the @ORGANIZATION1 flat roof. The last obstacle was it safety. Most of the dirigibles from outside of the United States uses hydrogen rather then helim, which hydrogen is highly flamable. This let to a accident on May 6, 1937, the Empire State Building realized how much worse that accident could have been if it happened in dowtown New York. This are some obtecles the @ORGANIZATION2 of @ORGANIZATION2 faced." 3 3 3 +15952 6 "In, The Mooring Mast, by @ORGANIZATION2, there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One problem was that the architects could not drop the mooring mast on top of the Empire State building's flat roof. A thousand-foot dirigible would add stress to the building's frame. This means the still frame would have to be modified and strengthened. Another setback was that most blimps from outside the United States used hydrogen and hydrogen is highly flammable.Nature itself was the greatest obstacle. The winds on top on the building were always shifting due to the violent air current. If the dirigible were tethered to the mooring mast, the back of the ship would swivel around. Lead weights were an option, but using these, where they would be dangling above pedestrians on the street, was not safe. The other practical reason why blimps could not more at the Empire State building was a law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building." 4 3 4 +15953 6 "There was many different obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle faced was to their expanded use in New York City was the lack of a suitable landing area. Another obstacle was that most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. Those were some of the different obstacles they faced which caused the lack of success." 2 1 2 +15954 6 "On December 11, 1929 a man named Al Smith announced he was building the world's tallest building at 1,250 feet This building was the Empire state building in New York, that would be used for a dirigible mooring But, there would be a few obstacles to face, that would cause the dirigible mooring to not successfully be used.Al Smith announced he was building this mooring mast but did not announce potential obstacles the builders of the Empire State Building would face when trying to allow dirigibles to dock there. One of the largest obstacles would be the wind factor, causing the dirigible's back end to sway. Another issue, would be having the foreign dirigibles full of flammable gases to be moored too close to a densely populated area. Also, before any dirigibles could be moored, constructors had to spend extra time and money to make the building much more sturdy, to hold the dirigibles." 2 2 2 +15955 6 "There were many obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. One was the architects couldn't drop a mooring mast on top of the Empire State building's flat roof. The thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's frame. The second problem was the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings foundation. The third problem was the steel frame of the Empire State Building would have to be modified and strengthened to accommodate the new situation. It was over sixty thousand dollars worth to make the buildings framework. But unfortunately all the problems were unsolved and the height made it desirable to postpon to a later date but instead of becoming the transportation of the future, they had been given away to airplanes." 3 2 3 +15956 6 "When the architects first looked at creating a safe landing zone for the dirigibles they over looked several key factors. The Empire State building is over @NUM1 feet tall, at those heights the winds become very powerful and would blow the diridible all over the place. This was proved in paragraph @NUM2. The Goodyear blimp called the ""Columbia"" attempted to reach the mooring mast although they had a skillful pilot he could not get the Steel framed balloon close enough to dock on the Spire. Another factor the architects did not weigh in to the equation was that most diridibles were filled with hydrogen which is very flammable. If a zeppelin did catch on Fire then that would be on massive ball of fire coming down on the streets of downtown New York. The ""Hindenburg"" gave us the example which was all we needed to see to change our mind about wanting a massive flammable balloon hoovering over the streets of New York City." 2 3 3 +15957 6 "Based on the excerpt, there were a few obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One reason was that ""most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable."" The owners of the Empire State building realized that if a dirigible was destroyed by fire over a density populated area like New York, there could have been a huge acadent One of the greatest obstacles however was nature itself. ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" When the dirigibles would try to dock, they sometimes could not even get close to the building because of the strong winds By having the dirigibles hanging over pedestrians on the streets of New York, it was considered unpractical and unsafe. Due to mother nature and safety reasons, the builders of the Empire State building faced a few problems in allowing dirigibles to dock there" 4 3 3 +15958 6 "In paragraph 6 it said ""New York City was the lack of a suitable Landing space"" Another obstanke in paragraph @NUM1 was the Nature it self the winds was push the dirigible around in the back of it. The other obstakle was in paragraph @NUM2 the existing law against airships flying too low over urban areas. These are the problem that the Empire builders faced" 2 2 2 +15959 6 "The builders and engineers involved in allowing The Empire State Building to dock dirigibles on a mooring mast around one thousand two hundred and fifty feet in the air faced many obstacles. In the excerpt ""The Mooring Mast"" by @ORGANIZATION2, taken from The Empire State Building, the reader is taken through the journey in allowing dirigibles, or blimps, to refuel and transport passengers atop the Empire State Building. This was not an easy task; in fact it was never achieved. Some reasons for this are the very building itself. The mooring mast was to be on top of the building, and its height and weight and wind pressure on the building was dangerous. In paragraph nine it is stated that: ""Over sixty thousand dollars worth of modifications had to be made to the building's framework."" But even more than just the building itself, the location of the Empire State Building in densely populated downtown New York created a few major obstacles. First, most international blimps used Hydrogen rather than helium-which is highly Flammable. A fire or explosion in the location that the mooring mast was to be located would be devastating to the city. Secondly, there were shifting winds ""due to violent air currents"" atop the building. They caused the backend of the dirigible to swerve. Weights could not be used on the blimp, though, because of the people below and the height at which everything took place. Finally, there were laws in place against airships flying too low over urban areas. So essentially, the objective of this project could not be reached ed unless legislation was changed. All of these obstacles made it very hard to dock dirigibles on top of the mooring mast on the Empire State Building, However to blimps did attempt to land there. The U.S. Navy dirigible ""Los Angeles"" and the Goodyear Blimp ""Columbia"" both were unsuccessful in landing due to intense winds and sharp spires of nearby buildings. This project is an example of a beneficial idea which was nearly impossible to execute." 4 4 4 +15960 6 "Based on the excerpt, I dont think they should have attempted to allow dirigibles to dock there. According to the excerpt, I think this because something really bad could of happened and something probably has happend, But back then they really had no choice except for balloons." 0 0 0 +15961 6 "There were obstacles the builders of the Empire State Building faced in attempting to allow derigibles to dock there. In the excerpt the author states nature is one of the biggest problems for the mast. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" The author explains that the wind on top of the buildings are dangerous for the dirigible. ""The winds on top of the buildings were constantly shifting due to violent air currents"". The author also describes what the dirigible would do as an affect of the wind. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. Those were obstacles the builders of the Empire State Building faced in attempting to allow derigibles to dock there." 2 2 2 +15962 6 "The obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to adopt there was very hard for them. A dirigible having to dock on the Empire State Building is probably not easy. A mooring mast added to the top of the building. Would allow dirigibles to anchor there for several hours for refueling. The obstacles were that Al Smith demanded the builders to make the Empire State Building more tall. Also to make it more ornamental, and to put in like a pyramid at the top. The workers were exhausted. The one obstacle that the builders did was to expand their use in New York City was the lack of a suitable landing area. The other obstacles were that the architects and the builders of the Empire State Building consulted with experts, taking tours of the equipment and mooring operations. The greatest obstacle to the successful use of the mooring mast was by nature itself." 2 1 2 +15963 6 "This project towards ""transportation of the future"" for the Empire State Building was no easy task. One of the major obstacles was the ""stress to the building's frame"". The workers had to make over sixty thousand dollars worth of modifications to accommodate the dirigibles. This would strengthen the frame of the building so that the wind pressure would be ""transmitted all the way to the building's foundation"". Another issue with this mooring mast was the ""violent air currents"" that were ""constantly shifting"" the winds on the roof. This would cause the dirigible to swing around the building while it was docked. Allowing these giant aircrafts to ""dangle high above pedestrians on the street"" was ""neither practical nor safe. These obstacles caused the workers and architects to postpone the build." 3 2 3 +15964 6 "One of the original purposes of the Empire State Building was to be a loading dock for dirigibles or blimps. This was meant to help New York be a leader in modern traveling. Yet there were many obstacles that eventually put an end to the idea of a mooring mast. A major problem was nature itself. The wind on top of the building was constantly changing because of the air currents. This would cause the dirigible to swing around the mast. The idea of weighting the back was immediately ruled out because of the danger imposed on the pedestrians on the street. Also there was a law that stated airships could not fly too low over urban areas, which would make it illegal for and dirigible to tie up or even approach the area." 3 3 3 +15965 6 "The builders of the Empire State Building faced multiple obstacles when trying to obstruct dirigibles to dock on the top of there building. They faced obstacles like laws, saftay problems, and also natural problems when trying to successed this gutsey idea. They firsted faced the problems of law, ""An existing law aginst airships flying too low over urban areas. This law posed an obstacle for the builders because they would have to dock the blimp without flying in this restricted fly zone. The Second problem was dealing with saftey, ""when dirigible Hindenburg was destroyed... Owners of the Empire State building relized how much worse that accident could have been over downtown New York."" After blimps were proven to be highly flamable the builders saw that an accident over highly populated New York City would be worse than a rural area. Finally the builders face problems with nature, ""dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds."" The builders relized that the drastic change in @LOCATION2 at the top of the building where not apperate for a blimp. These designers had more than a mundane idea but it was shot down with the multiple obstacles that a-rose." 3 4 4 +15966 6 "There were many obstacles the builders of the Empire State Building had to face. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below"". This is stating that the stress of the dirigibles and its shiftyness will put stress on the buildings foundation and they don't want that stress to topal over the building. Also they say ""The winds on the top of the biulding were consistantly shifting due to the violant air current"". this says that they are worried that the wind might take the balloon away from the building causing it to injure people these are only a few obsticals the builders had to face." 3 3 3 +15967 6 "The builders faced several obstacles in attempting to allow dirigibles to dock on the Empire State Building. One of the biggest and hard obstacle to over come is saftey for everyone. The builders had to worry about the safty of the people coming in and out of the dirigible, the people on the near by streets and to the people in the side of the building. Saftey was one of the main reasons why the dock never was completed.Another huge obstacle that faced the builders was nature. This is true because winds at the top of the tall buildings were always changing and this would make it hard to land the dirigible on it. Like the excerpt states in paragraph @NUM1, Dirigibles were weighted down in the back by lead weights and this would cause a problem with pedestrians walking under in the streets." 2 3 2 +15968 6 "There are a couple of obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. One of these obstacles is that it would add stress to the building's Frame. For example, in paragraph @NUM1 it says, ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame"". Another obstacle was that the steel would have to be modified. ""The steel of the Empire State building would have to be modified and strengthened to accommodate this new situation."" These are some obstacles the builders of the Empire State Building faced in attempting to alow dirigibles to dock there." 2 2 2 +15969 6 "The idea was kind of unrealistic in the first place. When these dirigables would try to dock to this building, the structure of the building wouldn't be able to handle the violent winds and the zeppelin. It caused many problems. What if the dirigible attempted to dock and the heavy winds blew it's tail end around to hit a building. The Hindenburg, another zeppelin, was destroyed by fire in Lakehurst, @ORGANIZATION1. If a disaster like this occurred in such a heavily populated place, it would be chaos. Impractical and unsafe, this plan wouldn't work. They would need something more stable. The plans of this weren't completely thought through. All these problems, combined, would cause them to postpone the building of the landing gear. These plans for the ""new"" age of transportation with dirigibles would never happen. Airplanes were a safer and more efficient new way to travel." 3 2 3 +15970 6 "The builders of the Empire state building encountered many obstacles that prevented dirigibles from docking there. A main concern was safety, after Hindenburg, a German dirigible, was destroyed by fire over New Jersey. This prompted the realization that had such a disaster occurred over New York, a highly populated urban area, it could have been far worse. Another obstacle that was encountered was bad weather conditions. The winds on the top of the Empire State Building were consistently shifting, making it impossible for a dirigible to stay unmoving. If the dirigible was so unsteady, it would be very unsafe for it to be floating above millions of people. Lastly, it was illegal for a dirigible to tie up to the mast or even approach the area due to a law that prevented all airships from flying too low over urban areas. Due to all the obstacles faced by the builders of the Empire State Building, it is apparent that dirigibles were simply not meant to dock there." 3 4 4 +15971 6 "The idea of the dirigibles docking on the mooring mast was very smart and could've been great. However, the builders of the Empire State Building faced problems when trying to achieve that goal. One problem was the wind forces were two strong to allow a dirigible to dock at the mast. ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast the back of the ship would swivel around and around the mooring mast"" ( @NUM1). Another reason is the safety of the people. Not all dirigibles were made the same. In other countries, dirigibles had different kinds of gases in them ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"" ( @NUM2). Since hydrogen is highly flammable, the builders had to take in to consideration how safe people would be flying in a dirigible. Lastly, there was a law against aircraft flying too close to a populated area. ""... was an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area..."" ( @NUM3). The docking at the Empire State Building was a great idea but there were too many challenges that faced the builders." 4 3 4 +15972 6 "Dirigibles had a top speed of eighty miles. Some were as long as one thousand feet, the same length as four blocks in New York City. So the one obstacle to their expanded use in New York City was the lack of a suitable landing area. Al Smith saw an opportunity for his Empire State Building. He said a mooring mast added to the top of the building would allow dirigibles to anchor there for several hours for refueling or service, and to let passengers off and on. Dirigibles were docked by means of an electric winch, which hauled in a line from the ship and then tied it to a mast so by swinging the body the passengers could safely get on and off." 0 2 0 +15973 6 The problems that the workers had to face in letting the dirigibles dock at the empire state Building were crusal & @CAPS1 Because first if they would of tried to Put Mooring Mast on the top of the Building Roof And then have A thousand pound Dirigible on top of It holdn @CAPS2 would be to Much for it to hold. And the stress of the dirigible's weight and wind pressure will need to be transmitted to the Buildings foundation which was 11 hundred feet Below The frame of the Building would have to be stronger Modified @CAPS3 it could work But it would be Over @MONEY1 to Put into the Building frame work in order for it to succeed But the Most Reason why it was difficult for the workers is Because of the winds And if landed they would need weights to weigh it down but it would be dangling high above Pedestrians witch wasn't Practical or Safe. 2 3 3 +15974 6 "While building the Empire State Building many obstacles had occurred. During the process of planning the @CAPS1 of the building architects started to realize that there could be many complications.Several complicostions occurred during the process. Architects noticed that the building itself was not made to add additional parts. As an architect said ""it could not simply drop a mooring mast on the top of the Empire State Building's flat roof."" Wind was another harsh factor for the construction of the Empire State Building itself. If ""held by a single cable tether, it would add Stress to the buildings frame. The engineers will also muched with the building's issues."" the Steel frame of the Empire State building would have to be modified and strengthened to accommodate this new situation.Safety and nature also had a big play in the obstacles of the building of the Empire State Building. Architects planned out to maintain the dirigibles very high up. wanting to do this could be very dangerous. ""dangling high above pedestrians on the Street, was neither practical or safe. Building the dirigible would have caused many accidents, injuries, and deaths if made. Nature would also be inroled in this plan. ""open landing fields could be weighed down in the back with lead weights. If anyday had very fierce winds this object could have came down and caused serious danger." 2 3 3 +15975 6 "Although the builders of the Empire State Building managed some of the obstacles with allowing dirigibles to dock there, many of the issues were left unsolved. When designing the mast to accommodate the blimp, the architects realized the pressure this would put on the building's frame. In order to support the weight of the dirigible they needed to make ""over sixty thousand dollars worth of modifications"" (paragraph @NUM1) to the structure of the building. Also, the builders had to develop a way to tether the dirigible to the building to allow passengers and supplies to unboard. Therefore, the architects designed a ""rocket-shaped mast... of shiny aluminum... which also housed elevators and stairs"" (paragraph @NUM2). However, the builders forgot to incorporate the winds at the top of the building. Once the front of the dirigible was docked, the back of the blimp would swivel around irradically. Furthermore, the builders disregarded existing laws that banned dirigibles from flying low over cities, as it states in paragraph @NUM3. This precaution was due to the safety hazard that these dirigibles posed since they were highly flammable from the hydrogen used. These imposing obstacles made the use of the Empire State Building is a dock unrealistic." 3 3 3 +15976 6 "In the excerpt of the @CAPS1 @CAPS2 by Marcia Amidon Lsted the builders went through many obstacles in the attempt to allow dringibles dock on the Empire State Building. At first Al Smith wanted this newly designed building to be the tallest one in the world. Now this 1,250 foot building would reach new heights by adding a top hat to the building and allowing drigible to dock there. Passengers to get off and on the blimp, along with the conductor refuling its engine. Although this was a great idea there were many issues that the constructor did not see, This is because the thousand foot dirigible would add stress to the buildings frame. The wind would also add thousands of dollars in damage, to ensure that no damage or harm would be put on the building or residents of New York the steel frame of the Empire State building would have to be strengthened. This cost the city of New York over @MONEY1 in the hopes of putting it on the map for modern travel." 2 2 2 +15977 6 "The obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock on the building were lack of area, populated area, and hydrogen is highly flammable. ""Also known today as blimps, dirigibles were actually enormous steel framed balloons, with envelopes of cotton fabric filled with hydrogen and helium to make them lighter than air."" Hydrogen is very dangerous and it's flammable and Empire State Building is located in a populated area, so it's dangerous to risk. Also as German dirigible ""Hindenburg"" was destroyed by fire in Lakehurst, New Jersey, it proved to the owners of Empire State Building that it's more dangerous than it looks. Other reason why dirigibles couldn't moor at the top of the building was the existing law agains all airships flying too low over populated areas." 2 3 3 +15978 6 "In the excerp ""The Mooring Mast"", by @ORGANIZATION1, the builders of the empire state building faced many obstacles while attempting to allow dirigibles to dock there. They had to come up with a safe plan which included building designs and figure out problems they failed to see from the begginning.The first obstacle was meeting with the navy and other experts to come up with a safe and practical plan. They had to find a way to land the dirigibles without adding stress to the buildings frame and without spending @MONEY1 to strengthen it. The builders came up with a plan that included what the mast would have to be made of and what wold be on each floor. They even had to finish the roor before the mooring mast cold take place.The largest obstacle was one they failed to see from the beginning. In building the mooring mast, they would have to face obstacles that nature brought, which was simply impossible. Safety was the main problem. if a fire occurred, there would be a disaster. The winds were too strong due to violent air currents and there was a law prohibiting airships from flying too low. After all this work, they couldn't get passed the obstacles, and the mooring mast was never built." 3 3 3 +15979 6 "the obstecles the builders faced was many of them. one of the things they faced was that they dident No if they wanted to build the tower in the first place. And the other reason were ""most dirigibles from outside of the United States use hydrogen rather then helium. And hydrogen is highly flammable. And one of the greater obstacles was mooring mast was nature its self." 1 2 2 +15980 6 "Based on the excerpt ""The Mooring Mast"" by @PERSON1, builders of the Empire State building faced many problems. Their first problem was; ""[t]he architects could not simply drop a mooring mast on top of... the flat roof"". The weight of the mast would make the framework crumble, so the builders had to modifie and strengthen the steel frame of the empire state building. Secondly, most foreign dirigibles were highly flamable making it highly dangerous for on two moor overapopulated New York city. Also nature itself was a problem. The winds at the top of the building were just so strong it'd be dangerous to moor there. And finally, the law against dirigibles flying too low over urban areas. The mooring mast atop of the Empire State building was a good idea but it was very dangerous, highly unlikely and against the law." 3 3 3 +15981 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. One obstacle they faced was they couldnot simply drop a mooring mast on top of the Empire State Building's flat roof. ""The thousand foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's frame"" (paragraph @NUM1). The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings foundation which was nearly eleven hundred feet below. The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. The second obstacle of allowing dirigibles to dock there was ""The winds on top of the building were constantly shifting due to violent air currents"" (paragraph @NUM2). Another obstacle they faced was the ""existing law against airships flying too low over urban areas."" (paragraph @NUM3). This law would make it illegal for a ship to ever tie up to the building or even approach the area." 4 3 4 +15982 6 "The Empire State Building was built as the tallest building in the World and even today still remains one of the tallest. It had design plans with more of a purpose then just being the tallest building, however. It was supposed to serve as a passenger exchange and a refueling dock for dirigibles. Most people do not know this though because there were many complications involved with the architectural designs of this plan for the mast. Architects knew it would not be easy to build such a creation and that they ""could not simply drop a mooring mast on top of the Empire State Building."" They knew, for example that the building needed to be modified to accommodate for the added stress from the mast and the height of the building would need to be increased. They made the necessary changes to the building but the realities of the progect soon set in, and the mast was never built, ""the greatest reason being for safety."" The hydrogen used to power the dirigibles was highly flamable and endangered the citizens of New York Also, according to the aricle, ""the greatest obstacle to the successful use of the mooring mast was nature itself."" There are powerful winds at that high of an altitude that would blow and make it difficult as for the dirigibles to be properly controlled and navigated." 3 3 3 +15983 6 "Based on ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced multiple obstacles in their attempts to allow dirigibles to anchor at the top of the building. A dirigible moored at the top of the building held by a single cable tether adds stress to the buildings frame, the architects needed to find a way to transmit the stress of the wind pressure and dirigibles load to the @ORGANIZATION1 foundation. Safety had played a major role in the fate of the mooring mast. Outside the United States most dirigibles used hydrogen rather than helium, hydrogen is highly flammable. If a dirigible was to catch fire above a densely populated area there would be disaster. The greatest obstacle to the use of the mooring mast was nature. Above the Empire State Building the wind was constantly shifting due to violent air currents, even if a dirigible was tethered to the mooring mast the back of the shape would still be unstable to land." 4 4 4 +15984 6 "In the excerpt written by Marcia Amidon Lsted, she describes the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. In the excerpt the author told the readers that after building the Empire State Building the builders had to reconstruct the entire building having to make is stronger to support the top. ""The steel frame of the Empire State Building would have to be modified and strengthened to accomodate this new situation"" (paragraph @NUM1). The workers of the building also had to be working at a height of 1,250 feet. They not only had to rebuild the foundation and strength of the building, but also the top. ""Two months after the workers celebrated framing the entire building, they were back to raise an American flag again - this time at the top of the frame for the mooring mast."" These are just some of the many hardships the workers had to face." 2 2 2 +15985 6 "Obstacles the builders haded to face with the empire state building was that they did not had the enough technology to land a dirigible on the mooring mast. February 1931 @CAPS1 clavan of the building's architectural office said ""The as yet unsolved problems of mooring airships to a fixed mast at such a heigh made it desirable to postpone to a later date the final installation of the landing gear"" After @CAPS1 clavan said that the using of the dirigibles had dissappeared. by the late 1930s, the dirigibles had been given away to Airplanes. Also builder haded to construct electric winch and gang plank the electric winch is hauled in a line from the front of the ship and then tied to the mast, and gang plank to a open observation plataform. " 1 0 1 +15986 6 "It was once said ""were there is a will there is a way"". How ever they didn't include the part about the obstacles you will have to go through. For instance how the was a will & way for the docking of dirigibles on the Empire state building, the architects just didn't work out all the possible problems of their idea. Like the fact that only American dirigibles used helium instead of hydrogen. Also that the wind currents have a stronger force that high up in the air than to regular life level. Also the un-ideal place they were trying to use. They should've taken heed to the businessman's slogan ""@CAPS1, @CAPS1, @CAPS1.""" 1 2 2 +15987 6 "At sporting events, people have gotten used to seeing the @CAPS1 blimp or the Goodyear blimp. Now they are used for advertising but not many people know that they were once thought of as transportation. The excerpt ""The Mooring Mast,"" by @ORGANIZATION2, shows not only the original purpose for the mast of the Empire State building was for mooring blimps, but also shows the many problems faced with blimp travel. Safty was a big issue because the blimps, or dirigibles, were filled with Hydrogen, which is highly flamable. It would be a huge disaster if one of them exploaded over New York City. Another problem was that the winds were always changing and there was no way to keep the dirigibles from moving in the wind and it could be dangerous. There was, also, a law about how low you can fly over urban areas and in order to land correctly, you would be breaking that law, and flying that low would risk wind pusing the dirigible into the top of the building and puncturing it. Al Smith had a good idea for the Empire State Building's mast, however their were to many problems to make it a reality." 3 3 3 +15988 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The man who came up with the plan was Al Smith, who saw the opportunity to add a mooring mast to the top of the building. Which this would allow dirigibles to anchor there for several hours for refueling or service, and to let passengers on or off. But with this came lots of work. And they couldn't simply drop a mooring mast on top of the building. The architects had to make plans on how they were going to set up the mooring mast. In the story it says ""Once the architects had designed the mooring mast and made changes to the existing plans for the building's skeleton, construction proceeded as planned. When the building had been framed to the 85th floor, the roof had to be completed before the framing for the mooring mast could take place. The mast also had a skeleton of steel and was clad in stainless steel with glass windows.""" 1 1 1 +15989 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted the builders faced obsticals in attempting to allow dirigibles to dock on the Empire State Building. An @CAPS1 the faced was A thosand-foot dirigible moored at the top of the building held by a single cable tether, this added stress to the buildings frame. the stress of the blimps load add plus wind pressure would have to be transmitted all the way to the buildings foundation. the steel frame of the Empire state building had to be strengthened to accommodate this." 1 1 1 +15990 6 They had to build the tower just right or els there would be landing problems if they added the sight seeing thing People would pay any price but the price of keeping it stable was not worth the effort. In the end the people were like going to make this a very popular thing but it was not up to them if it was or wasnot popular Wind and Landing always stood in there way so they paid alot-o-money to restableise the building. This ended up being a profit and ride of a lifetime 1 1 1 +15991 6 "During the construction of the Empire State Building, there were several obstacles the builders faced to have the dirigibles be able to dock on the Empire State Building. The first obstacle the builders faced was figuring out how to modify and strengthen steel frame of the Empire State building to accommodate the mooring mast on top of the building. These modifications would cost over sixty thousand dollars, which was a lot of money back in the @DATE1's. Once the builders finished framing the entire building, the greatest obstacle to constructing the mooring mast came to be. This obstacle was nature itself. violent air currents would have the back of the blimps swivel around and around the mast. The blimp would need weights to hold it steady, but these weights would be hanging over people on the street and this was neither practical nor safe." 2 3 3 +15992 6 "The builders of the Empire state building encoutered obstacles when attempting to allow dirigibles to dock there. Dirigibles were said to be hailed as the transportation of the future, however in New York City there was lack of a suitable landing area. The speed at which dirigibles traveled and the area and heights wind speed became unquestionable. The dirigible plan became more and more unreasonable with an accident occurring in @LOCATION2. For the height, wind, speed, and location, using dirigibles was no longer a good idea" 2 1 2 +15993 6 "In ""The mooring Mast"" by Marcia Amidon Lsted, the obstacles the builders of the empire state building faced was having to try and make it perfect, especially for the designers. They went through alot of work, effort, and time. They tried to make different arrangements for the government people. The dirigibles were always near the mooring mast. They were afraid that it would knock over one day. They also, wanted them to become the transportation of the future. The transportation was to the airplanes. The dirigibles became the world's highest soda fountain and tea garden for the sightseers. So, their plans didn't quite work out as planned, but everything else seemed to work out okay." 1 1 1 +15994 6 "The builders of the Empire State Building faced a lot of obstacles in trying to dock dirigibles there, but they had to figure a way around. The architects believed that the mooring mast would work and they started building. Soon enough, problems evolved that could not be fixed. An example of one of their problems is that dirigibles use more hydrogen than helium, which makes it very flammable. If the dirigible had an accident over New York many people would be hurt. Another factor that goes with this is the wind currents. The wind is too strong that the dirigible would be swirling around even if it was tied up. However, they could use lead weights to keep it still but if they fell it would hurt some pedestrians walking by. Furthermore, the state law made it illegal for airships to fly too low which made it impossible for dirigibles to be tied to the mooring mast on the Empire State Building. After all these problems, the architects never added the landing gear to the mooring mast because they knew that it would not be used as it was intended to." 3 3 3 +15995 6 "In the exerpt ""The Mooring Mast"" by @ORGANIZATION2, the builders faced obstacles in an attempt as to allowing dirigibles to dock. One example of an obstacle that the builders had to face was how to attach the mooring mast on top of the building. In paragraph nine it says, ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" They had to come up with a safe way to attach it. Another example of an obstacle was that they had to strength and modified the building because in paragraph nine it stated that ""A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" The last example was in paragraph nine when they explained that ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundren feet below."" The Stress might be so much for the building that it could cause the building to collapse. In the excerpt ""The Mooring Mast"" by Marcia Amidon @ORGANIZATION2 the builders faced many obstacles as to allowing dirigibles to dock on the Empire State Building in New York City." 3 2 3 +15996 6 "In the excerpt ""The Mooring Mast"" the builders of the empire state building would of faced many consequences in attempting to allow dirigibles to dock there. A regular sized diriglbe where made of ""enormous steel framed ballons."" They went as fast as ""eighty miles per hour, and could cruise at seventy per hour. The Empire State Building's would of faced the ""building dangling high above pedestrians on the street, was neither practical nor safe"". And even if the dirigibe landed their the ship would ""swivel around and around"" which would of made the building more move-able. Even if the ship would land their it was ""illegal for a ship to ever tie up the building or even approach the area." 2 2 2 +15997 6 "Other than making ammendments to building plans, the builders of the empire state building faced obstacles in safety, practicality, and legality. The hydrogen used in most foreign dirigibles is highly flammable, posing as an extreme safety hazard ""above a densely populated area such as downtown New York."" Also, due to natural, violent wind currents at the altitude of the mooring mast, it would be more difficult, and dangerous, to weigh down docking dirigibles. Lastly, the building plans for the Empire State building did not correspond to existing laws. Laws forbade airships from traveling at low altitudes over urban areas; therefore the use of the mooring mast would be illegal. Before the builders were able to finish the Empire state building, they had to carefully consider each of these obstacles." 3 3 3 +15998 6 "The builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. Originally, the greatest problem builders faced was strengthening the building's foundational base in order to support the stress of the dirigibles load and the wind pressure. To combat this, @MONEY1 of modifications had to made to the building's framework. Unfortunately, most of the complications of the mooring mast were not considered until after it was built. A most important one was safety, in that that many foreign dirigibles to use helium to float which is highly flammable. A disaster like the Hindenburg disaster over New York City is too dangerous to risk. Another preventer of the mast were the winds at the top of the building that were constantly changing due to the violent air currents. The swaying dirigible could not be secured with hanging weights due to the danger of dropping one over a very populated New York City. A huge complication of making the dream a reality was a law preventing airships from flying too low over urban areas. This would make it illegal for a docking to ever take place. The many obstacles that face the builders of the Empire State building attempting to allow dirigibles to dock there, eventually led to the dropping of the idea all together." 4 4 4 +15999 6 "The empire state builders faced obstacles in attempting to allow dirigibles to dock there. Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flamable. when the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been above a densely populated area such as down town newyork. The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. Another obstical the builders faced was a law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building, or even approach the area, although two dirigibles did attempt to reach the building before the entire idea was dropped." 3 4 4 +16000 6 "It is stated in the article that ""[t]he mooring mast of the Empire State Building was destined to never fulfill it purpose,"" and that proves to be true. The builders of the Empire State Building faced numerous obstacles in trying to have dirigibles dock at the building. For example, one obstacle that is faced is that most dirigibles are filled with hydrogen which is an extremely flammable gas, and if a dirigible is destroyed by fire like the Hindenburg it could cause a terrible accident in a heavily populated area like New York. Therefore the builders face an obstacle of a safety issue with the dirigibles if one catches on fire in New York. Another important obstacle is that strong wind currents at the top of the Empire State Building causes the dirigibles to swivel around the mooring mast, which causes the dirigibles to not get close enough to the mooring mass. Also the wind creates a risk that a dirigible could be blown onto a sharp spire of another building, ""and the dirigible could be punctured which causes a dangerous situation for the captain. To weigh down the dirigible so that it does not swivel as much in the wind, the controllers would have to use lead weights. Though the lead weights lessen the swiveling it is not practical or safe because lead weights would be hanging above pedestrians on the street, and if a lead weight fell it could be fatal. Lastly, if the dirigible to moor at the Empire State Building it would be breaking an existing law. This law states that airships can not fly to low over urban areas, so it is clear that it is illegal to moor on the Empire State Building. Before this project was started the builders should have researched or accounted for all the obstacles they were going to face." 4 4 4 +16001 6 "The builders of the Empire State Building faced obstacles such as structural support issues, shifting winds, and administrative interference. One major problem arose when they realized the force of holding the blimp in place ""would have to be transmitted all the way to the building's foundation"" (par. @NUM1). This meant builders had to make changes to the support system of the building itself before being able to begin construction on the mooring device. Once the mast and reconstruction work completed, builders realize that ""the winds on top of the building were constantly shifting due to violent air currents"" (par. @NUM2), which would make docking almost impossible. Attempts to moor became even moor difficult as ""complete dirigible mooring equipment had never been installed"" (par. @NUM3). This shows how builders struggled with bureaucracy in their attempts to build the mooring mast. In conclusion, the shortsightedness of the project caused builders to struggle with the building's structure, weather, and the owners' vision, before ultimately abandoning the mast." 3 2 3 +16002 6 The obstacles the buliders had to go through was preety hard. It was hard because the building was so high up in the air. They needed special gear to do it. Al Smith had to wait for an answer before building the mast because it was dangerous. Over sixty thousand dollars had to be made to the building framwork. The other obsticals were to drop and let passengers on. Also to refull your dirigibles if you had one. And it was just to make the building bigger. 1 2 2 +16003 6 "The builders faced many obstacles when attempting to allow the dirigibles to dock. The first was that they couldn't just put the mast on top of the building, it would have put too much stress on the buildings frame. They had to transmite the stress all the way down to the foundation of the building. They did over @MONEY1 worth of framework to the building.Their next obstacle was to find a safe way to dock and unload the ships, which was impossible. First off the ship couldn't even reach the building because the violent ever-changing winds were too much to control the ship in. But even if they did dock the back of the ship would have been pushed around and around the mast.Another obstacle was a law that prevented airships from flying that low over urban areas. So now the ships couldn't ever approach the building to tie off to the mast." 4 4 4 +16004 6 "Although the problems with docking a dirigible were not considered in the beginning, the builders of the Empire State building faced these obstacles eventually. Their ""greatest reason was one of safety"" for the passengers and pedestrians below in the city. Many countries ""used hydrogen rather than helium"" in their dirigibles, and ""hydrogen is highly flammable"" which could have caused several problems in the future. A German dirigible called Hindenburg was destroyed in Lakehurst, @CAPS1 because of fire, and it was after that incident that the owners of the Empire State building realized that an accident like that could not take place ""above a densely populated area such as downtown New York,"" because too many people could be injured. Even though safety was a large problem, ""the greatest obstacle... was nature itself."" when a dirigible was ""tethered to the mooring mast,"" the violent air currents at the top of the building would cause the ""back of the ship [to] swivel around and around."" The air currents not only made it hard to hold the dirigible steady, it made it extremely challenging to even reach the mooring mast. The idea of using lead weights to hold down the end of the blimps was not used because dangleing weights above @CAPS2 ""was neither practical nor safe."" one last obstacles the builders faced was the existing ""law against airships flying too low over urban areas."" This law prevented any dirigibles from being tied to or even approach the building. However, two blimbs (Los Angeles from U.S. Navy and the @LOCATION4 from Goodyear) did try to reach the building but were stopped due to the wind speeds. The several obstacles that presented themselves to the builders of the Empire State Building prevented the mooring mast from being used for the future of transportation." 4 4 4 +16005 6 "In the @CAPS1 The @CAPS2 Mast by @ORGANIZATION2, the builders of the Empire State Building faced numerous obstacles. The largest obstacle they faced was safety, most dirigibles who were comming from outside the United States used hydrogen rather than helium, and hydrogen is very flammable. Another obstacle was just nature itself. Winds were constantly shiffting caused by violent air currents. Another obstacle was there was a law against airships flying to low over urban areas. The builders should have relized all the hazards. They were facing, and just dropped the idea of using the moorning mast for dirigibles and their passengers." 3 2 3 +16006 6 "In this short passage, it discusses how architects want to build a mooring mast on the Empire State Building in the state of New York. This mast would dock dirigibles, which in modern day they're called blimps. The mooring mast is a skinny tower at the top of the Empire State Building to dock the Dirigibles. Empire State Building stands @NUM1 feet tall without the mooring mast at peak.The stress of a dirigible on a mooring mast at @NUM2 feet is a lot of weight at that high of a structure. They put @MONEY1 of modifications into this deal for the base area of the building.An important downfall about the dirigibles are that with helium in them, they're very flammable and could cost several millions in damage. If the zeppelin caught on flame over such a densely populated land area, that could take a large amount of lives.I think the mooring mast was a great idea and it helped the building be the tallest building at one time. They should still use the mooring mast today." 2 3 3 +16007 6 "Due to the architects being blind to the potential problems of the mast, the builders of the Empire State building faced many obsticles in attempting to allow dirigibles to dock there. There was a law saying that airships could not fly too low over urban areas. This made it illegal for ship to even go near the building. But say a ship got tethered to the mooring mast, the back end of the ship would swivel around the mass due to constant shifting winds because of violent air currents. Dirigibles are normally moored in open fields which allows the backs to be weighted down with lead weights. This was dangerous for many reasons but mainly because the weights would be hanging over downtown New York. Without the dirigible being held down the violent winds would push the ship into sharp spires that would rip the shell. With the wind pressure and the dirigibles load itself there would be too much stress being added to the buildings frame. The buildings steel frame, over sixty thousand dollars in modifications would have to be made so the stress would be able to be transmitted nearly eleven hundred feet down to the foundation. Most of the dirigibles that were made out of the united states used hydrogen rather than helium. Hydrogen is more flamable so the owners of the Empire state building realized how worse the accident could have been if it were over downtown New York. With all of these obsticles in their way the owners and builders of the Empire state building voted to postpone the installation of the landing gear." 4 4 4 +16008 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted the builders went through many obstacles to get their @CAPS1 done.The builders thought they had every all set and under controll. when they had made their plans they had planed for the mist to be a big pice. when they had made the mist it just wasn't right. ""The mooring mast of the Empire State Building was destined to never fulfill its purpose."" Then they had more problems because a law was p being passed that the ships could not tie them self to the buildings they wouldn't have anyone visit the building. But they solved that problem by haveing the airplanes bring the passengers. Even though the builders went through many obsticle they still managed to get passed them." 1 2 2 +16009 6 "In the excerpt, The Mooring Mast by Marcia Amidon @CAPS1 the reader learns about many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The most important obstacle to overcome was safety. The United States used hydrogen rather than helium to power the dirigibles. As said in @CAPS2 @NUM1, after the Hindenburg was destroyed, the owners of the Empire State Building realized how catastrophic the accident would be if it was over a densely populated area such as New York. Another obstacle faced was the brutal winds which occur at such a high altitude. ""The winds on top of the building were constantly shifting due to violent air currents"" (@CAPS2 @NUM2). The final obstacle the builders faced was that there was a law, ""against airships flying too low over urban areas."" (@CAPS2 @NUM3) which made it illegal to tie a dirigible to a building. In conclusion the builders of the Empire State Building faced many obstacles yet in the end, ""Dirigibles, instead of becoming the transportation of the future, had given way to airplanes"" (@CAPS2 @NUM4)" 3 3 3 +16010 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One clear obstacle was the law that had existed at the time making it against the law for airships to fly too low over urban areas. (paragraph @NUM1). Also, another obstacle in attempting to allow dirigibles to dock on the Empire State Building was that most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flamable. For example on May 6, 1937 the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey. The owners of the Empire State Building realized how much worse the accident could have been it had taken place in downtown New York. (paragraph @NUM2). The greatest obstacle was nature itself. The winds on top of the building were constantly shifting due to violent air currents. If the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast (paragraph @NUM3). The obstacles the builders of the Empire State Building faced were too much to allow dirigibles to dock on the mooring mast." 4 4 4 +16011 6 "Throughout the excerpt, obstacles the builders faced were difficult. Many fell under being able to let dirigibles dock there. Some difficulties the faced were that outside from the states, more dirigibles were being made, but with ""hydrogen rather than helium"". they stated, ""hydrogen is highly flamable"". There was fear for the people, since New York was so densely populated. There were also whether problems. Winds were constantly shifting. ""Ship would swival around and around"". Realizing the danger, all they could do was shut it down." 2 2 2 +16012 6 "In the construction of the Empire State building the @CAPS1 faced plenty of problems before and after the making of the mast. There were laws preventing the docking of the dirigibles, incidents that had occured, and flaws in safety. The first problem they should have turned their attention to was the law against low-flying aircraft over urban areas. It is said that ""this law would make it illegal for a ship to ever tie up or even approach the area."" Another problem faced was the burning of the Hindenburg. The U.S. used helium to keep their dirigibles afloat while other countries were using highly-flammable hydrogen. This posed a big threat and @CAPS1 eiven started to wonder ""how much worse that incident would be if it had taken place above a densely populated area like downtown New York. The final problem was how un-safe it was to have a dirigible swaying in the intense winds near the building. The cargo would send the dirigible out of control in these winds. The mast on the Empire State Building had too many problems for the @CAPS1 to solve. It would never make it from the start." 3 3 3 +16013 6 "To allow dirigibles to dock at the Empire State Building, the @CAPS1 had many obstacles to face. Some of the obstacles were there a morning mast could not be simply dropped and a thousand foot dirigible moored at the top. would add stress to the buildings frame."" The architechs couldn not simply drop a mooring mast on top of the Empire State Building's flat roof."" The greatest obstacle to the mooring mast was nature itself. The @CAPS1 of the Empire State Building had obstacles to face." 1 1 1 +16014 6 "In the excerpt the builders had faced many obstacles in ader for dirigibles to dock there. They had faced many challenges. One of the main concerns were safety. Al Smith had commented saying ""They were trying to figure some safe way of mooring airships to this mast."" among any other safety issues. " 1 1 1 +16015 6 "The obstacles the builders of the Empire State Building faced by attempting to allow dirigibles to dock there were harsh. The builders, in theory, thought everything would work perfectly. They had to face that they did not do enough to see if there would be any problems with having the dirigibles dock there. As I read I noticed the building never fulfilled it's purpose. This was because most dirigibles from outside of the united states used hydrogen, not helium, hydrogen is very flammable. On May 6, 1937, the owners of the Empire State Building realized how much worse a fire could have been if it were to happen above a densely populated area such as downtown New York. So in reality this idea was not safe and the builders had to go through building it, having it all done. Then realizing the idea was not pursuable." 1 2 2 +16016 6 The builders of the Empire State Building were so determined to make sure everything would work out fine. The building just wasnt ment for dirigibles to dock there. 0 0 0 +16017 6 "When the builders of the Empire State Building attempted to construct a mooring mast for dirigibles, they were faced with several obstacles that would ultimately defeat them. The first and most obvious obstacle was the danger of crashing. When the Hindenburg crashed in New Jersey, the builders realized how much worse the horrific crash would have been in downtown New York. Another more present obstacle was the wind at the top of the tower. As said in paragraph @NUM1 ""The winds on top of the building were constantly shifting due to violent air currents."" That coupled with the lightweight nature of dirigibles would make mooring much more difficult than on an open field. The last obstacle faced by builders was the existing laws that made it illegal. There were laws that prohibited airships from flying too low over urban areas like New York City, though they were largely ignored. All those obstacles eventually lead to the realization that the mooring mast on top of the Empire State Building was not practical or feasible." 3 3 3 +16018 6 "Based on the information I just read the obstacles the builders had of the empire building, was to find a way to allow the dirigibles to dock there. There are rooms that have been never opened to public and is the highest observation desk. They had to make room for a dock but they didnt know how to. The builders faced was the city didnt want ""dirigibles to moor at the empire state building because the law agianst airships flying to low over urban areas. They also had complications the captain of the dirigibles shell could not let go of the control levers. The sharp spires of other buildings could pop the dirigibles. The wind was also a problem as it could take the dirigibles a different dirrection." 3 2 3 +16019 6 "The obstacles that the builders of the Empire State Building faced when attempting to allow dirigibles to dock there include: hydrogen gas being highly flammable, high winds and wind shifts at the top of the building, laws that airships could not fly too low over cities such as New York City.The problem of hydrogen gas came to them when a blimp blew up in New Jersey, then the owners realized how bad it could've been in the city. When it comes to high winds the excerpt says, ""... if the dirigible were tethered to the mooring mast, the back of the ship would swivel around..."" Also, the law mentioned would have made it illegal for blimps to come close to the Empire State Building" 2 3 3 +16020 6 "The builders had many troubles with the building of the Empire State building. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. This is one trouble they had because if the dirigibles ever was an acident abuve New York City it would be bad because New York is so poluted.Another problem was"",they could not simply drop a moorning mast on top of the empire State building's Flat roof."" This was a big problem because now they had to fix their desing. lastly another problem was the compotition, ""Al Smith relized that he was close to loosing the title of the worlds talest building. Al Smith was so caught up in his desing he did not relize the compotition. So when he found out he knew had to make his taller." 2 2 2 +16021 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock their. One obstacle was that a dirigible moored at the top of the building held by single cable, would add stress to the buildings frame. The still frame of the building would have to be modified and strengthened to withstand the stress of the dirigibles load and wind pressure. The greatest obstacle to the successful use of the mooring mast was nature itself. The winds were constantly shifting due to violent air currents, causing the ship to swivel around and around the mooring mast. Another major obstacle was that there was an existing law against airships flying to low over urban areas. This would make it illegal for the ships to ever tie up or even approached the building. The last obstacles the builders had to get around was the issue with safety. Most dirigibles used either helium or hydrogen, both highly flammable gases. When the Hindenburg was destroyed by fire, the builders realized how dangers that could be over a populated area. These are just some of the many obstacles the builders of the Empire State Building had to take into consideration when attempting to allow dirigible to dock their." 4 3 4 +16022 6 "The obstacles builders of the Empire State Building faced in attempting to allow dirigibles to dock they are making sure they dont bump into other buildings, and they use rope to drop down the papers. They are trying to make sure that the dirigibles do not pop if it touches the buildings. It is also trying to keep the dirigibles away so they don't get to close and thats why they are droping the papers down with ropes @CAPS1 if they built a little tunnel so the dirigibles can go in they won't have to worry about them getting popped if they touch a building." 2 0 1 +16023 6 "In this excerpt, the builders of the Empire State Building faced a few obstacles in the attemp to allow dirigibles to dock at the mooring mast. One of the greatest obstacle was one of safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" An accident where the German dirigible caught fire and was destroyed, shocked the builders, but they realized it could have been worse. Nature itself was also a problem. ""Winds on top of the building were constantly shifting due to violent air currents."" The back of the ship would ""swivel"" around even if it was tethered. Also there was a law against airships flying too low over urban areas. All of these examples would cause the builders to face obstacles." 3 3 3 +16024 6 "Many problems faced the construction workers of the Empire State building, @CAPS1 in allowing dirigibles to dock. To begin, construction for dirigibles on the Empire State building was dangerouse. Dirigibles couldn't do many basic things to dock at the building. For example ""dirigibles could not moor at the Empire State Building."" (@CAPS2 @NUM1) Mooring was impossible because it was against ""an existing law against airships flying too low over urban areas."" (@CAPS2 @NUM1) This made it illegal for a ship to tie to the Empire State Building. Also, the greatest threat to dirigibles was nature. ""The winds on top of the building were constantly shifting due to violent air currents."" (@CAPS2 @NUM3) Because of this and be fact that construction on such a high building at the time was unpractable, dirigibles never touched the Empire State building. So to close, the difficulty of building dirigible landing gear and of landing dirigibles ultimately ened the Empire State Building docks." 3 3 3 +16025 6 "In their attempt to build a docking mast on the top of the Empire State Building, the builders came up on structural, safety, and practicality obstacles. In order to have the mast on top of the building the builders had to strengthen the steel, ""Over sixty thousand dollars worth of modifications"". Also, they had safety concerns about letting a dirigible dock in a city, on a skyscraper. One of these concerns was the use of the flamable gas hydrogen that was used in non-American dirigibles. If a dirigible caught fire over the city the effects of it would be bad. Furthermore, the tether system of the mooring mast was at the will of nature. ""The winds on top of the building were constantly shifting, this meant the dirigible on the mast could then swivel around, making it danger to citizens. The mast was also in-practical, due to a law that prohibits airships from flying too low over urban areas. And finally, in later years dirigibles had ""given way to airplanes,"" thus making the mooring mast for dirigibles useless. The builders of the Empire State Building never succeeded in their attempt of putting an active mooring mast on top of the building, because of structural, safety, and practicality obstacles that they stumbled upon." 3 4 4 +16026 6 "When the builders of the Empire State Building attempted to allow dirigibles to dock there, they came across many issues. One is the stress on the building from the added mast. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all they way down to the building's foundation, which was nearly eleven hundred feet below."" @CAPS1 how the stress factors on the building troubled its construction. Another obstacle to its construction was that ""the winds on top of the building were constantly shifting due to violent air currents"". When building the dock, constructors ran into issues which eventually overcame them and led to its uselessness." 2 2 2 +16027 6 "In attempting to allow dirigibles to dock on the Empire State Building, the builders faced a few problems. First, they had to figure out a practical way this could be done. When they decided to construct a ""rocket-shaped mast"" that the dirigible could attach to, they realized that the roof had to be built first. After the building of the mast was completed, saftey became an issue. ""Most dirigibles from outside of the United states used hydrogen rather than helium, and hydrogen is highly flammable."" (paragraph @NUM1) If there were ever an accident with a foreign dirigible, the safety of New York City would be at risk. Also, the dirigibles could not be tied down with weights like they can in an open field. This would also be unsafe for the people of New York. The main obstacle the builders faced with saftey, which is a big issue. Therefore, the dirigibles could not dock on the Empire State Building." 3 3 3 +16028 6 "In the excerpt The Mooring Mast by @ORGANIZATION1, the builders faced one giant obstacle. They faced the risk of blowing up the building. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (@CAPS1 @NUM1) This is one example from the excerpt that could turn into the biggest obstacle. If one were to explode above this building then the building would die. Also a lot of people would die from it too. That is one of the biggest obstacles they faced." 1 1 1 +16029 6 "The builders of the Empire State Building and encountered numerous obstacles while trying to set up the mooring mast for dirigibles including a weakened framework, nature and weather, potential fire hazards, and U.S. laws. Because the building was not originally designed to hold down dirigibles, the frame was not sturdy enough to survive the pulling and moving of the blimp in the air. The dirigibles would also be vacillating in the high and unpredictable winds at the top of the building, which was 102 storeys. Aside from pulling loose or damaging the building itself, the dirigibles were in danger of being punctured by another building's spire. Damage to the dirigible in any way was a very dangerous possibility, as the area in New York City around the Empire State Building is densely populated. If the dirigible were to catch fire and blowup, such as the case with the German Hindenburg blimp, many pedestrians or other structures could be seriously damaged. This kind of catastrophe was also probable because of the flammable gases like hydrogen used to keep the blimps afloat. Finally, the builders of the Empire State Building faced problems with the U.S. government, whose laws forbid airships to come that close to urban areas like @ORGANIZATION2. It would be illegal for a dirigible to fly near enough to the building to moor to it. In conclusion, many issues surfaced for the builders as they attempted to transform the Empire State Building into a docking station for dirigibles." 4 4 4 +16030 6 The obstacles the builders of the Empire @CAPS1 Building faced in attempting to allow dirigibles to dock there. So people can get off and unload or load up their ship. 0 0 0 +16031 6 The Problems @CAPS1 face with Building dirigibles to dock there was a lack of Suitable land area and the mooring mast could not Be Simply Drop on the empire state Building flat roof and on top of that A dirigible A thousand feet up held By a cable tether would add a lot of stress to the @CAPS2 frame the stress of the dirigible load and the wind pressure would have to be transmitted all the way down to the @CAPS2 foundation. And the other Reason was a safety Reason most dirigibles from outside of the United States used hydrogen rather than helium and hydrogen which is highly flammable. 2 3 3 +16032 6 "Builders of the Empire State Building were faced with many obstacles of construction, especially in regards to allowing dirigibles, or blimps, to dock there. From the beginning, builders were faced with obstacles of very high expectations. Expectations including the desired title of ""world's Tallest Building"". With this desired title came many underlying obstacles like frame and support. Another obstacle also arose: being ""equipped for an age of transportation,"" as said by John Tauranac.With the desire to now be a dock for what was known at the time as the ""transportation of the future"", came even greater obstacles. These obstacles included the responsibility of getting passengers safely off the dirigibles. One of the biggest obstacles was constantly shifting winds and violent air currents. This problem normally solved in open fields using dangling weight belts, was nearly impossible to fix in populated @CAPS1.Y.C. The final obstacle that really led to the operation's demise, was the law against airships flying too low in urban areas." 2 2 2 +16033 6 "The obstacles the builders of the @ORGANIZATION1 in attempting to allow dirigibles to dock there were the lack of land area, the currents of the wind, and the gas used to make dirigibles float.The lack of land area was a problem because ""...some [dirigibles] were as long as @NUM1 ft., The same length as four blocks in @ORGANIZATION2."" This could be a problem because in a densely populated area like New York, people could be in danger of having large objects flying to and fro, so close to the ground. It would also obscure light. The wind currents were a factor because 102 floors above the ground, the wind would buffet large dirigibles around, which would be a danger to the buildings frame. ""...the wind pressure would have to be transmitted to the buildings foundation."" The final obstacle would be the gas used in many foreign dirigibles of the time, which was hydrogen, a highly flammable and dangerous gas to have in densely populated areas like @ORGANIZATION2. ""When the German dirigible Hindenburg was destroyed by fire in New Jersey, [they] realized how much worse the accident could have been in New York.""" 3 4 4 +16034 6 "There were many obstacles that got in the way of landing dirigibles on the Empire State Building. Most of these had to do with the framework of the building and safety. Workers encountered obstacles with the new plan of mooring blimps even before they started constructing. To be able to support the air crafts, the frame of the building would have to be ""modified and strengthened,"" or else there was no way the building would stay standing. Safety was the main issue with fulfilling the plan to moor blimps to the Empire State Building. After everything was built and finished, it was soon realized that the ""mooring mast was destined to never fulfill its purpose"". Some reasons for this were because foreign dirigibles were made mostly of hydrogen, which is highly flammable and extremely unsafe. Also, just attaching a dirigible to the mast would be dangerous due to winds that were ""constantly shifting due to violent air currents"". Not only was unsafe to moor dirigibles to the tallest building in the world, but it was also illegal. Airships were not allowed to fly to low over populated areas. After the construction of the mooring mast, it was soon realized that would never be used." 3 3 3 +16035 6 "In the story The Mooring Mast by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. The @NUM1 main obstacles the builders faced where, hydrogen being highly flammable. The second main reason was winds from nature itself. The last reason was the law against airships.The first main obstacle the builders were faced with was there was hydrogen and helium in the balloon and the hydrogen was highly flammable, so the builders needed to make a safe place for the dirigibles to dock. The second main obstacle the builders were faced with was nature itself. The winds from on top of the building were constantly shifting due to violent air currents. The last obstacle the builders were faced with was the existing law against airships flying too low over urban areas. This law made it illegal for ships to ever tie up or approach a building in that area.The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there, but in the end Dirigibles, instead of becoming the transportation of the future, had given way to airplanes..." 3 3 3 +16036 6 "The obstacles the builders of the empire state Building faced in attempting to allow dirigibles to dock there was the lack of a suitable landing area. Also A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame. To do that they would need a lot of money like sixty thousand dollars.Another reason was safety because most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. But the greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents." 3 2 3 +16037 6 "The builders of the Empire State Building faced alot of problems in attempting to allow dirigibles. One is that in the story it says that dirigibles use hydrogen rather than helium, and hydrogen is highly flammable. If it got a hole in it then it would catch on fire. Another problem was nature itself. The winds on top of the building were constantly shifting due to violent air currents. The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships lying too low over urban areas. Those are some obstacles the builders faced." 3 2 3 +16038 6 "Their were many obstacles the builders of the empire state building faced in attempting to allow dirigibles to dock there. Most dirigibles outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mass. Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street was neither practical nor safe. Those are some obstacles the builders of the empire state building faced in attempting to allow dirigibles to dock there." 3 2 3 +16039 6 The builders of the Empire state building faced many obstacles in attempting to allow dirigibles to dock there. One of the greatest obstacles they had to face were the winds at the top of the building because the winds were constantly Shifting due to violent air currents. It also was'nt safe having the dirigibles weighed down with lead weights so it wont swivel around the mooring mast. Also sixty thousand dollars worth of modifications had to be made to the buildings frameworK. They were scared that weighing the ship down with lead weights would be dangerous because of all the people below in the city. It must have been very hard to construct the mooring mast. 3 2 3 +16040 6 "The Mooring Mast On December 11, 1929, Al Smith released to the public the the Empire State Building would reach a towering 1,250 feet, the world's tallest building. To do this they were going to add a mooring mast to the top of the building to dock Dirigibles. The builders were unaware of the obstacles to come. They were faced with many architectural, @CAPS1 and nature based dilemmas. When designing the mast, they realized they could not just place the mast on top. The wind pressure mixed with all the stress of the dirigible being held by one cable would send the stress throughout the building, and even down to the foundation. (paragraph @NUM1) To do this it would cost over @NUM2$ to make the frame work strong enough to hold the stress. Another obstacle that came into play was @CAPS1. In the @LOCATION2 hydrogen is used to fuel the dirigibles. Hydrogen is highly flammable so if anything ever happened over downtown New York. It would be a catastrophe. The greatest obstacle was said to be nature itself. The violent air currents are unpredictible and the dirigible would be shifting around even if weighted down. But it is not practical or safe to weigh the balloon dow with pedestrians below. Overall the outcome of the mast was a fail due to the blindly seen and the blindly predicted obstacles of nature, architecture @CAPS1." 4 4 4 +16041 6 "The builders of the empire state building faced many obstacles in attemply to allow dirigibles to dock there. In the reading they talk about how there is not much landing area in @ORGANIZATION2 but, although adding space for landing The height of the mast would be dangerous, not only for passengers but for those who were on ground level. Also, the thousand plus pound craft would add stress to the building's frame; so the frame would have to be modified and strengthened to accommodate the @LOCATION2. -(Which would cost over @MONEY1) the Idea proved to be unsafe when the German dirigible blew up at a @ORGANIZATION1 - they realized how dangerous that could be above densely populated area like New York City." 2 2 2 +16042 6 "Based on the excerpt to The Mooring Mast, the builders who constructed the Empire State Building had faced many obstacles in attempting to allow dirigibles to dock on the building. One of many obstacles was nature itself. The winds that are on top of the building were always shifting, because of the violent air currents. If the dirigible were tethered to the mooring mast, the back of it would swivel around & around the mooring mast, as said in paragraph @NUM1. Another obstacle was that the dirigibles from outside of the U.S. used hydrogen rather than helium, & hydrogen is highly flammible. as you can see there are quite a few of obstacles the builders of the Empire State Building had to face when attempting to allow dirigibles to dock on this building." 3 2 2 +16043 6 "Based on the excerpt it is evident that the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there.One of the reasons for the ideas failure was the fact that there was already a law in place making it illegal for a dirigible to even approach the area, as it states in paragraph @NUM1. Also, it could've of been an extreme fire hazard if a blimp had ever reached the Empire State Building. This is proved in paragraph @NUM2, where it states, ""the German dirigible Hindenburg was destroyed by fire..."" which caused the owners to realize, ""how much worse that accident could have been in New York."" On top of all this, weather proposed an even bigger problem. Violent air currents made the idea of a mooring mast was ""neither practical nor safe."" I believe the most important reason that the idea failed was because technology was simply advancing beyond predictions. In paragraph @NUM3, it says, ""Dirigibles instead of becoming the transportation of the future, had given way to airplanes.""" 3 3 3 +16044 6 "In the passage, The Mooring Mast, Marcia Amidon Lsted discusses several adversities and obstacles the builders of the Empire State Building faced when attempting to allow dirigibles to dock there. One of their many obstacles they faced, was ""the lack of a suitable landing area. Dirigibles moored in open landing fields could be weighed down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was niether practical nor safe."" However before thinking of landing dirigibles, architects had to figure out a way to get the mooring mast on top of the building. They ""could not simply drop a mooring mast on top of the building's flat roof."" @CAPS1 ""the steel frame of the building would have to be modified and strengthened."" Most of the problems were avoidable, except for that ""the winds on the top of the building were constantly shifting due to violent air currents.""" 3 3 3 +16045 6 "There were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle was the fact that most diribles from outside the United States used hydrogen in their blimps instead of helium, and hydrogen is highly flammable. The builders of the Empire State building did not realize that this was a problem until on May 6, 1937, the German dirigible Hindenburg caught on fire in New Jersey (paragraph @NUM1). It was only then that they understood how bad matters would be if a dirigible caught fire right over the masses of people in New York. Another obstacle was nature. The winds on the top of the building were always violently changing, making the dirigible swivel around over the heads of the @LOCATION2. As stated in paragraph @NUM2, such a problem could be easily solved by weighting down the dirigible with lead weights. However, using lead weights that could accidentally fall on the people below was an unsafe way to keep the dirigible still. Lastly, as written in the beginning of paragraph @NUM3, there was an ""existing law against airships flying too low over urban areas."" By law, the whole idea of using the Empire State Building as a docking area for dirigibles was illegal, and rightfully so. There were too many complications, and one spark or strong breeze could jeopardize countless of lives. These reasons are why by the 1930s the plan to create a mooring mass for the dirigibles on the Empire State Building was dropped." 4 4 4 +16046 6 "Governer Al Smith of New York had a vision. He wanted to have a building constructed that would surpass the current tallest building in the world, The Chrysler Building. He succeeded in doing so. The Empire State Building was now the tallest building in the world at 1,250 feet. But there were more plans for this building. At the time, aviation pioneers had dreamed of travel by dirigible, and now a mooring mast was to be built at the top of the building for docking these airships. But what should have been a cautious project, turned out to be a dangerous one. There should have been a lot more precaution going into this project. Dirigibles could be very dangerous in a widely populated area like New York City. If the dirigible were to catch fire and explode, people could get hurt. And at such a high altitude, it is likely. People were just starting to understand the dangers of this project halfway into it, which is why it was called off do to lack of safety." 1 1 1 +16047 6 "The obstacles that the builder faced is making sure that the building was stable enough. The architects knew that they could not just drop a mooring mast on the Empire State Building. Al Smith commented and said that the mooring mask was on a okay level and how they were working on things. A set of engineers are working finding a workable and faster arrangements. While, the government is trying to find out a safe way for the mooring airships to mast. ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame (@NUM1). The obstacles that the builders went through was if a big dirigible was to go on top of the building it was add stress by weighing it down. Also, it would get to the point where it would reach the frame of the building. They had to use a steel frame in order for things to work out. But, at the top of the building the winds cause violent shifting out to air currents. Having a dirigible dangling over pedestrians is very unsafe or even good. The builder of the Empire State building faced many significant challenges to allow the dirigibles to dock there." 3 2 3 +16048 6 "The Empire State Building was always very famous and well-known, but did want more attention. Governor of New York, Al Smith, tried to allow dirigibles to dock on the building for transportation. He was encouraged it would work and actually went through with building it. The builders went through many obstacles trying to make it possible.To make this dream possible the builders would have to modify and strengthen the building. This would not be cheap, ""over sixty thousand dollars worth of modifications had to be made to the building's framework."" It would be very expensive. The builders designed a ""shiny glass and chrome-nickel stainless steel tower."" Also the mast would have four wings of all all corners. The builders designed observation areas and even elevators and baggage areas. They had it all planned out and raised an American flag at the top. Unfortunately, nobody considered all the dangers of docking dirigibles. All the builders work never went through. They tried to dock two but it did not work out. The building turned into the world's highest soda fountain and tea garden for sightseers." 1 2 1 +16049 6 "When building the mooring mast on top of the Empire State Building, the architects experienced many obstacles. These obstacles lead the designers to never effectively use the mooring mast like they had hoped to. The first problem they had, was that a thousand ton dirigible would add stress to the buildings frame. The designers had to spend @MONEY1 to reinforce the building's frameworks. This first obstacle already put doubt into the builders minds, that this was not going to happen easily. The next thing they realized, was that with hydrogen dirigibles is that they were extremely flamable. If a huge dirigible were to catch fire and fall onto New York City it would be cataustrophic. This also leasoned their enthusiasm about the work, knowing about how great a risk this would be. The wind above the building were constantly Shifting due to air currents, and this would toss and turn the dirigible tethered to the mast. The designers relized this would be neither practical or safe being over pedestrians on the ground. The last obstacle of all, that really killed their mooring idea, was airship laws. The law states that the dirigibles cannot fly that low over urban areas, so that puts an illegal mark on their plans. The designers of the mooring mast had to face many obstacles in their design, and it was these obstacles that led to the never useing of their mast." 3 4 4 +16050 6 "There were many obstacles that the architects never realized while building the docking station for the dirigibles. One of these obstacles they faced was height, and the lack of safety that arose from it. In @DATE1, the German dirigible ""Hindenburg"", which use a highly flammable hydrogen, caught fire in New Jersey as described in paragraph thirteen. Should this have happened to a dirigible docked high over New York City, the airship would plummet to to the ground where many New @CAPS1 would be going about about their day. The largest obstacle they faced though was nature. Air currents and storms would cause the dirigible, only teathered to the mooring mast by a rope, to ""swivel around and around the mooring mast... dangling high above pedestrians on the street."" As pointed out in paragraph fourteen, this was neither practical, nor say if. The third obstacle they faced with a pre-existing law against airships flying too low over urbanized areas. Even as tall as the Empire State Building is, it was still impossible to legally dock at the new mooring mast. Al Smith's idea finally had to be abandoned due to safety, nature, and state law." 3 4 4 +16051 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle was the weight of the dirigible ""or blimp"", lust wind pressure, caused too much stress on the building's frame. The architects easily overcame this obstacle. They strengthened to iron frame of the building so it could withstand the added stress. Unfortunately, the other obstacles were not overcome, and led to the abandonment of the use of the mast for docking dirigibles. The biggest problem a safety. Many blimps used hydrogen rather than helium to keep it afloat, which is highly flammable. There was too much of a risk of the blimp catching fire and falling onto the city. Nature was also an enormous obstacle. Wind would blow the blimp into surrounding buildings, and since it was floating in the air, weights couldn't keep it down. Finally, there was an existing law stating aircraft could not fly too low around urban areas." 3 4 4 +16052 6 "The problems that were faced was that the ships could get blown by the wind a hit buildings. Than they thought of putting weighos on the shp, but than they could fall off and hit people on the ground." 1 1 1 +16053 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, many obstacles were described that got in the way of allowing dirigibles to dock on The Empire State Building. One obstacle was that the Empire State Building had a flat roof and the framework of the building would have to be made stronger to put the mooring mast on there. The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" It cost more than @MONEY1 to modify the framework. Another obstacle was the law. ""flying to low over urban areas"" was illegall so it would be impossible for a dirigible to even go near the Empire State Building. Lastly, the biggest obstacle was safety. Blimps that were being flown around New York were made using hydrogen, which is flamable. Also, ""The winds on top of the building were constantly shifting due to violent air currents."" It wouldn't be safe to hook a blimp up in those winds where it would be shifting all around. Ofcourse, it was also a safety hazard because thousands of pedestrians would be walking on the road below, ""Where [the dirigibles] would be dangling high above pedestrians on the street,"" it would be terrible if one fell. It should have been obvious that hooking dirigibles to a mast on the Empire State Building was not going to work." 4 3 4 +16054 6 "On the excerpt there were a lot of obstacles on the atempt of Building the Empire State Building and making it safe to dock dirigibles. The first obstacle to building the Empire State building was that the engeier Al Smith wanted to make the Empire State building, ""the world's tallest building."" ""When the Empire State building was conceived, it was planed as the world's tallest building, taller even then the new Chrysler building that was being constructed."" (@CAPS1 1) the proble was that the architector of the Chrysler Building put a 185 ft spire inside the building. Al Smith got an idea that would make the Empire State Building taler and beater. His idea would be more than a ""ornament"" ""their top, the said, would selrve a higher calling. The Empire State building would be equipped for an age of transportation that was then only the dream of aviation pioneers."" He believed that he could use the building as a dock for dirigible, so people could get on and off. The proble was that that the frame would not work. ""The mooring mast of the Empire State building was destined to never fulfill its purpose."" (@CAPS1 @NUM1) They attempted to land dirigibles @NUM2 times but they weren't able to do it at the end. ""In December 1930, the U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough."" (@CAPS1 @NUM3) They could not fix the problem." 0 1 1 +16055 6 "The Empire State Building started out as a huge sky-skraper. Then Al Smith had to get all competitive and put his crew to full work. The crew had many obsticles to fufil. First off, they had to modify and strengthen the building's steel frame, costing over sixty thousand dollars. Second the men made a shiny glass and chrome-nickle stainless steel tower, illuminated inside. next they had to add four wings or shiny aluminum to rise a conical roof for housing the mooring arm. Fourth the crew has to add stairs and elevators to accomidate the ""blimps"" passengers. And lastly they would add a couple of observation rooms to the @NUM1 and 102 floors. Smith's men worked hard and over came many obsticles attempting to allow dirigibles to dock the Empire State Building" 2 1 2 +16056 6 "Architects and builders faced several obstacles when attempting to build the empire state building and allow dirigibles to dock there. One obstacle they faced was S keeping a safe environment. Dirigibles that are fueled by hydrogen are prone to be destroyed by fire. One example of this is in paragraph @NUM1, ""the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey."" Another major obstacle was high wind speeds and violent air currents. These made dangerous because the back of the ship would be swung around the mooring mast. Lastly, another obstacle that they faced was a law. In paragraph @NUM2, it says, ""an existing law against airships flying too low over urban areas."" This law would keep dirigibles from being able to ever dock there or even fly in the general area. All of these obstacles could not be overcome so in the end the mooring mast was not successful." 3 3 3 +16057 6 "There were a lot of obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. For instance, they wanted to add more hight to the Empire State Building so it can be, ""equipped for an age of transportation that was then only the dream of aviation dream"" @PERSON1 said. Next, Al Smith wanted to add a mooring mast at the top of the Empire State Building so it can allow dirigibles to anchor there for several hours for refueling or service, and to let passengers off and on. ""Over sixty thousand dollar's worth of modifications had to be made to the building's framework."" Then they, ""designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from inside, with a stepped-back design that imitated the overall shape of the building itself."" Also, ""the rocket-shaped mast would have four wings at it's corners, of shiny aluminum, and would rise to a conical roof that would house the mooring arms"". The roof had to be completed before the mask can take place. The greatest obstacle to the successful use of mooring mast was nature itself. In conclusion, those were the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there." 2 2 2 +16058 6 "It is within our obligations as human beings to have dreams and want to convert them into reality. Al Smith's dream of having dirigibles land on the empire state building is one I'd consider to be rather erratic. There were many obstacles that proved from early on, the fate of this project was failure. It is apparent from very early into the constructions that this was surreal because ""the one obstacle to their expanded life in New York City was the lack of a suitable landing area"" (paragraph 6). Having dirigibles cruising through a large city should have been perceivably impossible to Al Smith, even before the construction of the building occurred. Safety was also something to be seriously taken into consideration since ""most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable"" which also intertwined with the laws of objects flying too low over an urban area (paragraph @NUM1)." 2 2 2 +16059 6 The firsts obstacles was to make the Empire State building the worlds tallest building by adding a top or a hat to make the building a little more taller. And second obstacle was to drop people from the mooring mast to the Empire State building's flat roof. 1 1 1 +16060 6 "The obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock on the building were quite aparent. One obstacle was that of nature, winds atop the building were at high speeds and always changing, this would make the dirigible unstable and difficult to dock. Another obstacle they faced was that of the passangers and bystanders safety. The dirigible could become uncontrollable putting many lives in danger. The last obstacle the builders faced was that of a law against flying airships too low over urban areas, it would make it illegal for a dirigible to dock on the Empire State building. The many obstacles that the builders faced blocked the completion of having a dirigible dock atop the Empire State building." 2 2 2 +16061 6 "The obstacles the builders would have to face would be things such as structural @CAPS1, and worrying about future technological advances. Even if they found out how to land a dirigible on the platform, what about advances on them or new transportation methods. The structural @CAPS1 was a quick fix, by reinforcing the supports to the building itself." 1 1 1 +16062 6 "There were many obstacles faced by the builders in the creation of the mast. One obstacle was the building's flat roof. A dirigible that was moored to the building by a single cable, would cause stress for the building's frame to be stressed. Due to this the builders had to modify and strengthen the frame to solve this obstacle. Another problem was that other countries still used hydrogen and an explosion over New York would be devastating.One of the greatest obstacles was ""nature itself."" Winds at the top were constantly changing. The back of the ship would move around the mooring mast. They had to solve this in a safe manner. In fields the back of a dirigible would be weighed down by lead, but this could not be done. It would be unsafe to allow the lead to dangle over civilians' heads. On top of all these obstacles, there was a law against airships flying too low over urban areas. In the end the mooring mast was a failure because not all these obstacles could be solved and fixed." 3 3 3 +16063 6 The first obstical came when the @PERSON1 builing had changed its height. They created the mooring mast and made the empire state builbing @NUM1 ft. higher. Then they figured out that the mast would add stress to the buildings frame. Then with the new laws and the hindenburg that the mooring mast would not work-out. So the gave up trying to make it useful. 1 1 1 +16064 6 "First, there was no way to anchor any dirigibles. They couldn't make the back stable, only if they added lead weights; that wasn't a good idea above a crowded street. Second, there were laws in place stating that a dirigible couldn't fly that close to buildings. Also, when the German blimp Hindenburg was destroyed by fire near a New Jersey naval base, people thought ""... how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" @CAPS1, the wind that high up was too fierce and strong for a blimp to even get close to the building. All in all it was a bad idea." 2 3 3 +16065 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle that was faced was the buildings foundation. ""The stress of the dirigible's load and the wind pressure will have to be transmitted, nearly eleven hundred feet below."" This became an obstacle because the building had already been built, so they'd have to work around the existing foundation. Another obstacle that was faced was a law. The law stated ""no airships are allowed to fly low over urban areas."" This became an obstacle because they had to convince government people it was safe. Finally the greatest obstacle was nature itself. ""The winds on top of the building were constantly shifting due to violent air currents."" This was an obstacle because winds could get so bad that the dirigible tied up could rip the roof off and hurt the people below. In conclusion, that is how the builders in the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, faced many obstacles in attempting to allow dirigibles to dock on the Empire State Building." 4 3 4 +16066 6 "The task of allowing dirigibles to dock on The Empire State Building was met with many obstacles. The fist one to come into play was the support of the building. The dirigible's load and the wind pressure would greatly reduse the stability of the building. Over sixty thousand dollars' went into modifications of the building's framework.Another problem was the dirigibles themselfs. Most dirigibles coming from outside of the United States were filled with hydrogen. As seen in the tragic Hindenburg inncodent, hydrogen is highly flammable. The owners of the Empire State Building concluded that an accadent such as this would be even more devastaing over a densly populated area. After being faced with all these obstacles, the idea of dirigibles docking atop the Empire State Building was put to rest for the safety of the people." 2 3 3 +16067 6 "When constructing the mooring mast on top of the empire state building it seemed as if the engineers looked past all of its flaws. Safety was probaly one of the biggest issue for the mooring mast. It was said most dirigibles outside the United States used hydrogen of helium. Thus causing a higher risk to explode. After the events of the Hindenburg in Lakehurst, New Jersey, they were very afraid what would happen if it occured above downtown Nature was belived to be its biggest obstacle. Winds at the top of the air awalys shifted violently due to air currents. The back of the ships would swivel around and around the mooring mast @CAPS1 were another major reason. Dirigibles were not allowed to fly a certain height over Urban areas. Making it illegal to even approach the area where the building was. Al Smith really should have done some more studying about what could have gone wrong with his mooring mast." 3 3 3 +16068 6 "The builders of the Empire state Building faced numerous technical and safety problems in creating the building's dirigible mooring mast. First off, a dirigible moored to the mast by just one cable would put enormous stress to the frame of the building The building's frame had to be strengthened first to allow such a project. When the mast was finished, several other problems prevented its use. The mast was designed to make the building a center of travel, but most dirigibles from other countries used hydrogen to fly, instead of helium. Earlier, the German blimp Hindenburg had been destroyed because hydrogen was so flammable. It was realized that such a disaster would be much more catastrophic should it happen over a densely populated city like New York. Also, blimps moored to the mast would be blown around by violent winds, possibly pushing them into nearby buildings. The lead weights normally used to prevent this would have had to be left dangling over pedestrians, a major safety issue- @CAPS1, there was a law prohibiting dirigibles from flying too low over urban settlements, making use of the mast illegal. These problems doomed the mooring mast project from the start." 4 4 4 +16069 6 "The fact that these dirigibles are so big and filled with hydrogen and helium the point at the top would have poped it. Also the Winds were always too high so they would never be able to connect the blimp to the building. Lastly the fact that the German dirigible, Hindenburg burned like that they were afraid for that to happen. Especially in a crowded area such as New York." 2 2 2 +16070 6 "The builders of the Empire State Building were faced with many problems when attempting to make a mooring mast for Dirigibles. The frist major problem they came across was the biulding its self. It said ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the biuldings foundation."" The biulding being the tallest in the world could not take the pressure. They could possible made it strong but at high cost to something so @CAPS1 already. The architects next obstienle was saftey expessally in a highly populated area such as down town New York. They found the Dirigibles to be to dangerous and uncontroble in a city of towers. The normal processes of docking a Dirigible would have to complete change to acumulate. the mooring mast, soon laws were given to have airships stay away from areas of popurtion after the Hindenburg insodent. Yet some still dared to try and dock at the mast such as the Los Angeles and Columbia but the mast was never put to good use and shows the Problems with inovating things already @CAPS1 as the Empire State building." 3 3 3 +16071 6 "The builders of the Empire State Building faced a lot of obstacles when trying to allow dirigibles to dock there. A big problem with safety: most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. Another reason was when dirigibles moored in open landing fields, they could be weighted down in the back with lead weights, but using these at the Empire State Building would not work out due to the highly populated New York and dangling over pedestrians.Another reason was the law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even aproach the area. Even if it could, there was worries that the dirigible would be punctured by other obstacles on surrounding buildings." 3 3 3 +16072 6 "Architects and builders working on building a docking platform on top of the Empire State Building for dirigibles faced many obstacles. The first problem builders came across was the possibility that the building's framework was not potentially strong enough to support a dirigible's weight. It was said in paragraph nine that ""the stress of the dirigible's load and the wind pressure would have to be transmitted all the way down to the building's foundation, and that was too risky. Another obstacle that builder's came across ""was nature itself."" @CAPS1 some dirigibles used hydrogen rather than helium, it was feared that the winds on top of the building would be too intensely violent and be destroyed by flammable gas. The next obstacle builders faced was public safety. There was an existing law against airships flying too low over urban areas."" @CAPS2 dirigibles could not approach the dock over the area for sake of the citizens of New York. All of these problems eventually led to ""the idea of using the mooring mast [to be] shelved.""" 3 3 3 +16073 6 "After reading excerpt, there were many obstacles the builders faced in attempting to dock dirigibles on top of the Empire State Building. Firstly, the lack of a suitable landing area. The builders knew they had to add a mooring mast to the top of it so it could safely land and passengers could board and exit off. Another problem they faced was placing a thousand-foot dirigible at the top of the building, which would at stress to the buildings frame. This pressure along with the wind pressure would have to be converted all the way to the buildings foundation. Lastly, the biggest obstacle was nature. The winds on top of the building were constantly shifting because of violent air currents, allowing the back of the ship to swivel around the mooring mast. Although was a bright idea to improve transportation, this product never worked and was not thought out properly." 2 3 3 +16074 6 "Based on the excerpt given, the idea for allowing dirigibles to land on a mooring mast on top of the Empire State Building in New York City was not practical. One obstacle that proves this point is that most dirigibles are filled with hydrogen a highly flamable gas rather than helium like a balloon. This raises safety issues for the urban city. Another obstacle that prevented this idea from being practical was that certain laws were passed stating that dirigibles and airships could only fly so low over urban areas due to violent winds and the risk of destruction. The mooring mast was and isn't practical for the landing of airships and is mainly useful for tourist attraction." 3 2 3 +16075 6 "The architects of the Empire State building faced several obstacles when constructing the mooring mast. One of which would be that the purpose which it was suppose to serve (docking dirigibles), the original design of the building could not handle it. In paragraph @NUM1, it says ""A thousand foot dirigibles would add stress to the buildings frame."" Because of this realization, they had to make ""sixty-thousand dollars worth of modifications"" (paragraph @NUM1)Another obstacle they would have to face would be the additions of new floors. They originlly designed the building to be about @NUM3 floors, but with the addition of the mooring mast, the builders had to make an extra top and do it with such detail so that it could be both an observatory and a boarding dock.These first two obstacles, although they were difficult, nevertheless they were solvable. Some of the obstacles the builders had to face were not fixable. The first was that dirigible's from @LOCATION2 were filled with hydrogen (which is highly flamable). Due to the location of the Empire State building (downtown New York), a little accident could cause huge problems in the city. Also, thwy did not take in consideration the winds at the top of the building. The Empire State building would be at such a high altitude that there would be very high winds. These winds would cause for the dirigibles to be unstable which was also not safe. With these last two obstacles, the mooring mast was still built, but served as a design instead of a dock." 3 3 3 +16076 6 "In the excerpt the obstacles the @CAPS1 of the Empire State Building face in attempting to allow dirigibles to dock there was the ""lack of a suitable landing area"". (p. @NUM1) @CAPS1 were trying to attempt a suitable landing area to allow dirigibles to anchor there for several hours for refueling or service, and let passengers off and on. @CAPS1 try to attempt an electric winch. This ""would swing in the breeze and yet passengers could safely get on and off the dirigible by walking gangplank to an open observation platform."" The biggest obstacle, @CAPS1 of the Empire State building was to ""nature itself"" which meant that dirigibles moored in open landing fields, where they would be high above pedestrians on the street where it was neither practical nor safe. @CAPS1 of the Empire State attempted these causes to allow dirigibles to enter on the property of the Empire State Building!" 2 3 3 +16077 6 "In this excerpt ""The Mooring Mast"" by @ORGANIZATION2, there were many obstacles the builders of the Empire State Building faced. The safety of the people were at stake, nature was also a great obstacle, the other reason was that dirigibles could not moor at the Empire State building because it was against the law.First of all, the builders obstacle that they completely forgot about was the safety of the people. Most of the blimps from outside of the @LOCATION2 used hydrogen other than helium, and hydrogen is very flammable. And they did not want to risk anyone getting hurt in a densely populated area. Also, another big obstacle was @CAPS1 nature itself. At times the winds would be violent and it would go back and forth. And if a blimp was attached, it would be dangling violently over citizens had not nearly safe. Lastly, it was illegal to have airships flying close to urban areas and New York was highly dense. And the reason for this law is for nothing bad to happen to the citizens. In conclusion, there were many obstacles the builders had gone through, and they were blinded by the project and they wanted to get it done they forgot about safety." 3 4 4 +16078 6 There would have been multiple obstacles when allowing a dirigibles to dock a the top of the empire state building. One it may get very densely populated with taller buildings. Since they had never made one before something could go wrong And last like the Hindenburg another disaster like that could happen but This time in a densly populated city 1 1 1 +16079 6 "While building the Empire State Building, builders faced many obstacles in attempting to allow dirigibles to dock there. One of the greatest obstacles was safety. They would need to find a way to dock the dirigibles to the mast with out having it swing in the wind. ""Even if the dirigibles were tethered to the mooring mast, the back of the ship swivel around and around the mooring mast"" (@NUM1). Another obstacle in attempting to allow dirigibles to dock the Empire State Building was designing the mast. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof"" (@NUM2). The Empire State Building's steel frame had to be strengthened in order to withstand to weight of the mast." 2 2 3 +16080 6 "The builders of the empire State building faced many obstacles in the making of the mast. The first obstacle was that of the buildings stability. The excerpt states ""The steel frame of the empire State building would have to be modified and strengthened"". This shows that in order for the mast to even be built the structure of the entire building would need to be altered to accomidate the use of the mast. The second obstacle they faced, in the actual use of the mast, was nature. In hopes of docking the dirigibles to the mast, mother nature would not allow it, as it @CAPS1 in the excerpt, ""The winds on top of the building were constantly shifting due to violent air currents."" They also warned that with those air currents the passengers would not make it off of th dirigible safely due to the end of the dirigible floating rapidly undocked. They feared that if they docked the end it would be unsafe to the pedestrians below just as the helium in the dirigible would of as well." 3 3 3 +16081 6 "The builders faced several obstacles in attempting to allow dirigibles to dock on the mast of the Empire State Building, until finally they called it quits. According to the excerpt, The Mooring Mast by Marcia Amidon Lsted, the Chrysler building in New York City was about to be the height of the not-built Empire state. The weight and strength of a dirigible could damage the entire building so it would have to be strengthened and modified in order for the blimp to be able to land. The engineers also had to find a way to control the flammability that dirigibles tend to have. In paragraph @NUM1, Lsted describes a dirigible that exploded in New Jersey not long ago, and that constructing a landing pad over the densely populated New York City, could be detrimental. The constructors of the mooring mast finally came to the conclusion that the plan was ""neither practical nor safe"" (@NUM2). The blimps are held down with lead weights and this could have a negative effect on pedestrians if something were to ever go wrong. The builders of the Empire State building had a lot to think about in regards to constructing the dirigible dock, and in the end, it was for the better that they decided against it." 3 3 3 +16082 6 "In the excerpt from, ""The Mooring Mast"", the author, Marcia Amidon Lsted, explains how the spire of the Empire State Building was originally meant to be used as a mooring mast. This purpose of the spire was never to be fulfilled because of the numerous problems and obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. Some of the biggest problems that the builders faced were unpredictable and violent winds, the use of hydrogen in dirigibles, and air laws. The winds posed to be a problem because even though the front of the dirigible would be tethered to the mast belonged back side would be allowed to swing freely in the wind which could cause it to crash into another moored dirigible. The winds also would make just getting to the Empire a hazardous job. The use of hydrogen was a problem because hydrogen is a volatile gas in the sense that it explodes, which would be very dangerous over a densely populated area. Lastly, the air laws were a problem because the United States has a law that prohibits airships from flying too low over urban areas, which would make a mooring at the Empire State Building illegal." 4 3 4 +16083 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced obstacles such as the use of hydrogen, air currents, and existing laws, in attempting to allow dirigibles to dock at the building. The first obstacle the builders had encountered was the use of hydrogen in most dirigibles outside the United States. Hydrogen is considered highly flammable, a big safety issue. A German dirigible was destroyed by fire in Lakehurst, New Jersey. ""The owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as down town New York."" (@NUM1) If this had occurred in New York the damage could of been a lot worse.Another obstacle the builders faced was the violent air currents. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" (@NUM1) this is very dangerous because of pedestrians on the street.The final obstacle was an already existing law that prohibits airships flying low over urban areas. ""The law would make it illegal for a ship to ever tie up to a building."" (@NUM3) this law would not allow dirigible to approach New York. In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the owners of the Empire State Building faced obstacles such as the use of hydrogen, air currents and existing laws in attempting to allow dirigible dock at the building" 3 4 4 +16084 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigables to dock there was that the stress of the dirigables load and wind pressure could have caused problems to the buildings foundation. A thousand-foot dirigble, held by a single cable tether. would add stress to the buildings frame.Safety was another issue, most dirigbles outside the United States used hydrogen, instead of helium. This is a problem because hydro gen is highly flammable. On May 6, 1937, the German dirigble Hindenburg was destroyed by fire in New Jersey. the accident would have been more dangerous in New York because the city is densely populated.Another reason why they faced problems to allow dirigables to dock is because there was an existing law against airships flying too close over urban areas. In December 1930, the @ORGANIZATION2 dirigble did attempt to reach the mooring mast but could not reach because of the winds, fearing that it may blow the dirigble onto sharp spires of other buildings. This would puncture the dirigbles shell." 3 4 4 +16085 6 "Without a doubt, the builders of the mooring mast that was to rest at the top of the Empire State Building were highly innovative and ambitious. However, it is also clear that they faced many difficulties that they both overcame and were overcome by. One major difficulty that they faced was that a one thousand foot long dirigible being tethered to a 1,250 foot tall building with extreme wind currents around the top would put a great deal of stress onto the building, ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation... Over sixty thousand dollars' worth of modifications had to be made to the buildings framework."" @CAPS1, the builders were over to overcome this problem. After the building however, the mooring mast was not able to be used for it's full purpose because of more challenges that it faced. After the tragic accident with the Hindenburg, ""the owners realized how much worse that accident could have been if it had taken place above a density populated area such as downtown New York."" Another concern was that with such strong winds and only being able to tie the front of the dirigible to the moor, the back would swing around. ""Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical or safe."" The final challenge facing the mooring mast was the prexisting law against low-flying aircraft. This put an end to Al Smith's dreams." 4 4 4 +16086 6 "Base on the excerpt, the obstacles the builder of the Empire State Building faced in attempting to allow dirigibles to dock there. My prodiction is he doesn't want it around because the Empire State Building is way to high and the blimps is like floating Right above it. Something may have, thats what I think Al Smith is worried about. My backup answer is the statement he said ""it's on the level, all right. ""No kidding"". We're on the thing now. One set of engineer here in New York is trying to dope out a practical, workable arrangement and the Government people in Washington are figuring on some safe way of mooring airships to this mast"" it seems like hes confused about the whole situation." 0 0 0 +16087 6 "There were many obstacles builders of the Empire State building faced in attempting to allow dirigibles to dock there. The first obstacle they faced was that some dirigibles were @NUM1 feet long which was four blocks in New York City. This was an obstacle because it would add stress to the buildings' frame when it was attached by single tether. In order for this to happen the steel frame of the Empire State Building would have to be strengthened and modified. The next obstacle they faced was nature itself. The winds on top of the building were constantly shifting due to violent air currents. For example, in the excerpt it said that the U.S. navy dirigible Los @CAPS1 approached the mooring mast but could not get close enough to tie up because of the forceful winds. Also the captain could not even take his hands off the lever. The next obstacle they faced was the safety issue. The builders of said the dirigibles are weighted down by lead but if they did that it would be a safety issue. It would be a safety issue since the dirigible would be dangling high above pedestrians on the street. The last obstacle they faced was the law against flying to low over urban areas. It would make it illegal for a ship to tie up to the building or even approach the area." 4 4 4 +16088 6 "The builders of the Empire State Building faced many obstacles when attempting to allow dirigibles to dock on its mooring mast. The first obstacle they had was the extreme winds. The winds were constantly shifting, so the dirigibles would be violently blowing through the air. Another obstacle was that the foreign dirigibles used hydrogen, instead of helium, which is extremely flammable. The last obstacle the builders faced was the law that it did not allow airships to fly too low over urban areas. The builders of the Empire State Building dealt with a number of reasons when they attempted to dock dirigibles on the building's mast." 2 3 3 +16089 6 "Many obstacles were confronted when attempting to dock dirigibles on the Empire State Building. Such as the danger of the non-U.S dirigibles docking. The problem with that is they used hydrogen instead of helium, causing them to be highly flammable. They thought about when the German dirigible crashed and realized how much worse it would be if it happened in downtown New York. Another issue being nature's wind force. The wind on top of the Empire State Building was always aggresively shifting. Plus using lead weights like they do when landing in the fields would be hazard for the people below. Finally the law was a issue. The law stated that it was illegal to fly this low over urban areas. Though two dirigibles attempted they both experienced first hand the dangers of it." 3 3 3 +16090 6 "Based on the expert, builders of the Empire State Building faced many obstacles and attempting to allow dirigibles to dock there. Allowing a dirigible to dock on top of the Empire State Building was never thought of an easy task to accomplish. As it was mentioned in the article the idea of the dirigible was ""destined to never fulfill its purposes."" One obstacle in which builders would face is safety. Since most of the dirigibles from outside U.S.A uses hydrogen rather than helium, hydrogen is much more flammable. This is a very dangerous obstacle to builders because fire itself is really dangerous. The greatest obstacle was nature itself, however. If the winds are shifting violently, the dirigibles could be way down and be dangling high above the pedestrians. This would not be safe to the people or the builders because it could hurt them. Another obstacle builders would face is that there was a law against air ships flying too low over urban areas. It would make illegal for a ship to ever tie up or get close to the area. This made it harder for builders to accomplish because it's against the law." 3 3 3 +16091 6 "In ""The Mooring Mast"" by @ORGANIZATION1, there were many obstacles the builders of the Empire State building were faced with in attempting to allow dirigibles to dock there. There were obstacles such as the fact that if a dirigible were tied to the building by a single tether it would ""add stress to the building's frame."" To fix the problem, over sixty thousand dollars' worth of modifications had to be made to the building. Another problem was that some dirigibles used hydrogen rather than helium. Hydrogen is highly flammable which would be very dangerous to have over a densely populated area. The ""greatest obstacle to the successful use of the mooring mast was nature itself."" By this, Lsted means that there are many violent air currents at the top of the building, meaning that the ship would swivel around and around. To make sure this would not happen, lead wieghts would have to be used which would not be practical or safe to have ""dangling high above pedestrians."" In the end, people realized there were far too many problems involved in the use of a mooring mast at the top of the Empire State building." 3 3 3 +16092 6 "To start off, the builders of the Empire State Building had faced many obstacles in attempting to allow dirigibles to dock there. Many of the obstacles had delt with the dirigible itself. For example, the dirigible was highly unsafe and flammable by the 1930s. ""When the German dirigible was destroyed by fire, New Jersey, on May 6, 1937 realized how much worse that accident could have been if it had taken place above a densely populated area, such as downtown New York."" Another obstacle that the builders had faced was nature itself. The winds were constantly shifting due to violent air currents. It would be highley dangerous for a dirigible to fly that close to a mooring mast with winds like that. Also, dirigibles could not fly near the Empire State Building, due to an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or approach the area. Al Smith's dream was to make the Empire State Building suitable for transportation, but sometimes dreams don't always go threw." 4 4 4 +16093 6 "The experts faced a few major obstacles in the building of the Empire State building. One of those major obstacles was the frame work. When your going to build a 1,250 foot building and have a air craft land on it, you need a good and well designed frame. What they did was add a stainless steal and chrome-nickle windows to cut down on pressure. They spent over sixty thousand dollars on modifications to the skeleton of the Empire State building. The other main issue was the air currents. You can not strapp a dirigible and believe the back of it swaying back and worth. When your almost a 11 @NUM1 ft in the air, the wind can be very violent at that height. If the dirigible ever came off or unhooked before they were done refueling, the dirigible would crash and burn, hundreds of pedestrian on the ground below. Al Smith had a great idea but he did not realize all the problems." 2 2 2 +16094 6 "The builders of the Empire State Building faced many obstacles when attempting to allow dirigibles to dock there. They had to consider the stress of the building, and adding more to the top of the building would increase the stress. The steel frame would have to be modified and strengthened to meet the needs. Also it would be over @MONEY1' worth of modifications. The builders also faced the obstacle of safety. Most dirigibles used hydrogen instead of helium, and hydrogen is flammable, so it wouldn't be safe. ""... an existing law against airships flying too low over urban areas."" There was also a law that was in their way. Facing all these obstacles, caused the builders to not go through with this idea." 3 3 3 +16095 6 "The builders of the Empire State Building faced numerous obsticles in attempting to allow dirigibles to dock there. One main concern was the dirigibles themselves because they use hydrogen rather than helium. Hydrogen is very flammable. If a dirigible were to explode above a densely populated area it would be desasterous. The greatest obstacle to the successful use of the building's mooring mast was nature. A mooring mast is used for docking airships such as a dirigible or a zeppelin. With these large air crafts, docking them on top of a building where winds are violently shifting is very dangerous. the back of the ship would swivel around the mooring mast, posing as a @CAPS1 threat. Dirigibles moored in open land feilds where they could be weighed down with lead weights. With a dirigible moored over the Empire State Building, it would dangle high above pedestrians, this is neither @CAPS2 nor practicle. Constructing the Empire State Building had @CAPS3 more challenges and obsticles than its architects would have hoped for." 3 3 3 +16096 6 "The builders of the Empire State Building had various problems to @CAPS1 in allowing dirigibles to dock there. The nature of the ships, added stress to the building and safety were all against the ludicrous idea of landing blimps on the Empire State Building.The nature of the ships would cause the body to sway in the wind. One problem that comes from this is tangling the mooring cable. To combat this captains would have to use lead counterweights. These were highly impractical to use because they would hanging over crowded streets.Another problem was added stress to the buildings Foundation. Since the building was not ordinarily designed for this role, modifications would have to be made to its foundation. The cost of these renovations was over sixty thousand dollars.The most obvious problem was safety. These airships were filled with highly flammable hydrogen. The area surrounding the building had other buildings with sharp spires on top. If a ship hit one of these, there was no stopping the disaster." 3 3 3 +16097 6 "Based on the excerpt ""The Mooring Mast"" by Marcia Amidon @CAPS1 the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. These obstacles include the weather, safety, previous dirigible tragety, and the law.The wind at the top of the Empire State building was a huge safty hazard because even if the dirigible was secured the back would swing a cause a potential hazzard due to the unpredictable winds. To fly a dirigible they are filled with hydrogen instead of helium, this is also dangerous because hydrogen is very flammable. On May, 6, 1937 the hindenburg was destroyed by fire in Lakehurst, @LOCATION3, so the owners took into consideration this could have been much worse if the accident had taken place above a densely populated area such as New York. Dirigibles are very unsafe so this created many obsticles for the builders of the Empire State Building to allow dirigible to dock there." 3 3 3 +16098 6 "The obstacles that the builders faced are flying blimps too low in the area and making the Empire State building taller than its actually supposed to be. Like in @CAPS1 three Al Smith realized that he's in danger of losing his title for world's tallest building. On December 11, 1929, he announced that the Empire State building would reach a height of 1,250 ft. All he had to do is add a top or a hat to the building and that would make it even taller than any other building in the city. Anothe obstacle they faced was a law about airships flying too low above urban areas. They made this law so no airship would ever tie up with a building. Flying too low is a huge safety hazard; it could take the lives of hundreds of people." 1 2 2 +16099 6 "In the excerpt there were multiple obstacles the builders faced when allowing dirigibles to dock on the empire state building. First was making the steel frame of the building stronger. The builders also had to make the empire state building 102 stories tall, and make the 101st story an observatory. The last obstacle the faced was building the empire state building. Those are the obstacles that the builders faced when construction the empire state building." 1 1 1 +16100 6 "in the excerpt The Mooring Mast by Marcia Amidon Lsted there were many obstacles that builders of the Empire State Building faced in attempting to allow dirigibles to dock there One of the problems was that a huge dirigible held the top of the building held by a single cable would have stressed to the rest of the building. in order to make the tower half of the building more stable they would have to spend sixty thousand dollars on modifications @CAPS1 nature was a key issue the winds were unpredictable because of violent air currents and even if the dirigibles were tied to the mast, the back would swivel around @CAPS2 large dirigibles dangling above pedestrians was not safe. Another reason as to why dirigibles could not be docked at the top of the Empire State Building was because there was a law not allowing airships to fly so low over urban areas. This law would make it illegal to ever dock ships there. overall, these were some of the obstacles faced well building the Empire State Building" 3 4 4 +16101 6 "Coming from ""The Mooring Mast,"" by Marcia Amidon Lsted, the Empire State building was to be so much more. The hazards of the gases in some of the Dirigibles was a huge risk because some were flammable. Having the mooring mast in the huge city served potential threats to the safety of the city and population as well. As well is the safety threat; the winds were uncontrollable too. Because the mast would be so high up it was impossible to predict the ever-changing winds. With the winds, the dirigibles would not be able to stay in one place, which was another safety issue the architects had over looked. After all the safety issues and weather problems, there was still the fact that a law forbid the idea. Making the mast idea out of the question. With all the risky and dangerous tasks they would of had to dealt with, the mast was never built, and very unfortunate that after all the planning, there was absolutely no way the dirigibles could ever land there." 2 3 3 +16102 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon @ORGANIZATION2 the architects faced many reasons in attempting to allow dirigibles to dock there. The architects couldn't put a mooring mast at first because it will add stress to the buildings frame. The architects had to modify and strengthen the steel frame of the building to accomplish the new situation they are doing. Before putting the mooring mast the architects designed a shiny glass, chrome-nickel stainless steel tower to have the overall shape of the building. Even before constructing the mooring mast on top of the building the roof had to be completed. when putting the mooring mast on top of the Empire State Building; it didn't work out. When they tested it the dirigible didn't get close enough to tie it up. So in the future ""The Mooring Mast"" by @ORGANIZATION2 did not work out." 2 1 2 +16103 6 the obstacles the builders of the Empire State Building was that they develop they hope to get greater and espectaculer. 0 0 0 +16104 6 "The builders of the Empire State Building had great plans to allow dirigibles, also known as blimps, to dock there. Although they kept their expectations high, they faced many obstacles while trying to make this happen. The first problem they ran into was the fact that the steel frame of the building would have to be strengthened due to the stress of the dirigible's load. So, the architects had to make changes to the building's skeleton. Safety was also an issue because hydrogen made the blimps flammable, which could cause a destruction by fire. There was also an existing law stating ""airships can't fly to low over urban areas."" @CAPS1, dirigibles wouldn't be allowed to tie up to the building, let alone even reach that area. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" Due to heavy winds, the dirigibles would swivel around too much, and the area was not open enough to weigh down the back with lead weights. So, the architects of the Empire State Building faced too many obstacles while attempting to allow dirigibles to successfully dock there." 3 4 4 +16105 6 "When the Empire State Building was @NUM1 conceived, it was planned to be the tallest building. However not many know that the original purpose of the mast was to serve as a landing spot for dirigibles, also known as blimps. In the @DATE1's, dirigibles were being hailed as the transportation of the future. The Empire State Building was going to have a mooring mast at its top for docking these new airships. However in trying to do this the builders faced many obstacles in attempting to allow dirigibles to dock there. Some of these dirigibles were as long as one thousand feet, & this is where the first obstacle they faced comes into play. Since the dirigibles were so long the first obstacle to their expanded use in New York City was the lack of a suitable landing area. Also the architects could not simply drop a mooring mask on top of the Empire State Building's roof. That plus a @NUM2 ft dirigible moored at the top, we had stressed to the building's fram. This would be another obstacle the workers encountered. The mooring mask was destined to never fulfill its purpose, do to the safety of many people. This was yet another obstacle the workers faced. The final obstacle and the practical reason why dirigibles couldn't moor at the building, was an existing law against airships flying to low over urban areas. These are the many obstacles the builders faced in attempting to dock dirigibles on the Empire State Building." 2 3 3 +16106 6 "The builders of the Empire State Building faced many obstacles to allowing dirgibles to dock there. One obstacle was the wind at the top of the building. The winds there were ""constantly shifting due to violent air currents"". This made it dangerous for a dirigible to stop there. Another obstacle was a law against flying dirigibles over cities. The law made it ""illegal for a ship to ever tie up to the building or even approach the area"". Since they were banned from doing this, no pilot would ever more there. A third obstacle was the decreasing use of dirigibles. With the Hindenburg incident on May 6, 1937 and the increasing use of airplanes, not many people few on airships anymore. In conclusion, several obstacles prevented the docking of dirgibles to the Empire State Building." 3 3 3 +16107 6 "In attempting to allow dirigibles to dock on the Empire State Building, the builders faced many obsticles. In order for the dirigibles to anchor there, a mooring mast must be added. The architects then had to find a way to add ""a thousand-foot dirigible moored at the top of the building"" without adding stress to the buildings frame. ""The greatest obstacle to the successful use of the mooring mast was the nature itself"". Architects knew that they could not control the weather, and this worried them. Another obsticle the builders faced was the ""law against airships flying too low over urban areas"". If dirigibles were able to reach the building something could go wrong. Builders ""feared that the wind would blow the dirigible onto the sharp spires of other buildings in the area"". The obsticles the builders faced soon became pointless when ""the idea of using the mooring mast for dirigibles and their passengers had quietly disappeared""." 3 4 4 +16108 6 "In attempting to build a working mooring dock for dirigibles on the Empire State Building the works set themselves a hard task. First they had to make sixty thousand dollars worth of modifications so that the building would withstand the weight and added wind pressure of a moored dirigible. Also, a prexisting law made it immpossible for dirigibles to come as low to the city as they needed to be to dock. Finally constant changes in wind current and other weather made a safe docking at the Empire State Building nearly impossible because the dirigible might get blown into the sharp roofs of nearby buidings and instead of being weighted down by lead like they would when they landed in fields as they normally would, they would be tied up, dangling over pedestrians." 3 2 3 +16109 6 "The obstacles the builders of the Empire State building faced were comprehended to late. First they had to figure out a way to go about this, but they also needed government officials to agree that it's a safe way to execute Al's plan. The roof couldn't be flat, so they had to create something else for it to land on. But the dirigible being held on by one cable ""would add stress to the buildings frame"" and would be sent down all the way to it's foundation, which means they would have to modify their model of what the Empire State building was going to be. But one of the worst obstacles the builders had to face was the fact that dirigibles are highly flammable. And their are many people and other building in @CAPS1 that could be put in danger. Also the weather takes a toll on how the dirigibles going to act in the air, if it's rough it could cause major safety problems. There was and has been a law restricting airships from ""flying too low over urban areas."" @CAPS2 much, this idea was over from the start, but no one took the time to realize." 2 4 3 +16110 6 "The obstacles of The @CAPS1 of Them Empire state building were some big ones which led to some Problems. for @CAPS2, There was a lack of a, Landing area for the Dirigible. But the @CAPS3 reason was the lack of saftey there for This dream could Not be accomplished." 2 1 2 +16111 6 "Based on the exerpt, the obstacles the builders of the Empire Building faced in attempting to allow dirigibles to dock there is as follows. The first challenge was to find ""a practical, workable arrangement"" for the engineers to be able to work well and safely. Another problem the builders faced was how to put a ""thousand-foot dirigible moored"" into a building that was 1,046 feet tall. The main obsticle they faced was the fact that the dirigible moored ""would add stress to the building's frame"" which may cause it to fall due to its weight. For the builders to overcome the challenge, they would have to modify and give more strength to the ""steel frame of the Empire State Building."" @CAPS1, the builders went through a lot of obstacles to allow dirigibles to dock at the top of the building, but in the end it was all worth their hard work to make Al Smith keep his winning title." 2 2 2 +16112 6 "When attempting to allow dirigibles to dock on the Empire State Building, the builders faced obstacles regarding laws, safety, and even the nature of the mast itself. There was a law at the time prohibiting aircraft from flying low over cities. In paragraph @NUM1, the narrator says, ""This law would make it illegal for a ship to ever tie up to the building or even approach the area"". This did not stop some dirigibles from attempting it, but it was too dangerous around other buildings. The next obstacle was about safety. From the excerpt, ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammible"". An incident like that with the Hindenburg over a city like New York would be devastating. The third obstacle was that the mast was simply not suited for holding a dirigible. The narrator points out, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"". There was no practical way to hold the back end of the dirigible. In light of all these issues, builders were forced to admit that the mooring mast on the Empire State Building was indeed destined to fail." 3 2 3 +16113 6 "In the excerpt called ""The Mooring Mast, by Marcia Amidon Lsted on pages 1, @NUM1, @NUM2, @NUM3. She is basicly explainning the obstacles of the builders of the Empire State Building and how it faced in attempting to allow dirigibles to dock there. Examples are on page 1. ""They said that the empire State Building would be more than ornamental, more than a spire or dome or a pyramid put there to add a desired few feet to the height of the building or to mask something as mundane as a water tank." 0 0 0 +16114 6 "While dirigibles were being invented in the early 1930's. Many workers and financial men and women faced problems when trying to dock dirigibles. A dirigible was a live propeller that passengers who boarded the dirigible could ride. It was a closed compartment under the balloon. Getting back to the point of these inventions. Dirigibles were a dangerous device from what the passage says. From outside the United states they used hydrogen, not helium. The cause affect in using hydrogen is that it is highly flammable. The German dirigible... named Hindenburg, exploded by the cause of fire on May 6, 1937 in Lakehurst, New Jersey. Dirigibles was a very dangerous device back used in the 1930's. So then by the late 1930's, the idea of wing transportational diribles faded away. Later on they took passengers baggage of dirigible and made it into the world's largest soda fountain and tea garden." 1 1 1 +16115 6 "The obstacles the builder's of the Empire state Building faced when attempting to allow dirigibles to dock there was safety, nature itself and the law.Safety because dirigibles used hydrogen rather than helium and hydrogen is highly flammable and accident could happen like ""German dirigible Hindenburg"" was destroyed by fire in Lakehurst, New Jersey.""nature being the second problem because violent air currents could shift the dirigible and cause damage and hurt pedestrians.Law being the last reason because there was a law against air ships flying too low over urban areas. The statement in the excerpt says ""This law would make it illegal for ships to ever tie up to the building."" Which makes it quite pointless to have even built it in the first place." 3 3 3 +16116 6 "In this excerpt of ""The Mooring Mast"" by @ORGANIZATION2, we learn about how the spire on top of the Empire State Building was actually meant to be a landing spot for dirigibles. However, it could never actually have a dirigible dock there, for various reasons. The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to tie up at the mooring mast. First, they could not because they were mostly made of hydrogen, which is very flammable. This is an especially big problem since the dirigible would possibly catch fire about New York City. Next, there was the problem of winds. The wind at the top of the mast is extremely violent and the back of the dirigible would constantly be swinging around. Using lead weights to hold it down were a possibility, ""but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe."" The last problem, and possibly the most obvious, is that there was a law that prohibited airships, like dirigibles, from flying too low over densely populated areas. Therefore, this ""would make it illegal for a ship to ever tie up to the building or even approach the area."" @CAPS1 this excerpt of ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building faced many obstacles, though they should've seen them coming, in trying to get dirigibles to dock at the mooring mast." 3 4 4 +16117 6 "Construction always has challenges. In the excerpt from The Mooring Mask by Marcia Amidon Lsted, there are many challenges for the builders of the Empire State Building faced in attempting to land dirigibles there. Some of the obstacles the builders faced included the enormous size of the dirigibles, the frame would need to be modified, the cost, and nature itself.landing the dirigibles would be a hard task. For one, the dirigibles are enormous, they are ""a thousand-foot"" long flying devices. This would make it extremely difficult to land just because of its weight. The stress of the dirigible's load and wind pressure would have to be transmitted all the way to the building's foundation."" This is a struggle because the ""steel frame of the Empire State Building would have to be modified."" This modification would take lots of effort and planning. Plus, modification also brings up the problem of cost. There would have to be ""over sixty thousand dollars worth of modifications."" That cost is mindblowing and would create challenges of how to get that money. In addition nature itself was an obstacle. Winds at the top of the building were ""constantly shifting due to violent air currents."" Nature would bring up many challenges for the builders to have to work around. Overall, the builders of the Empire State Building faced many obstacles in attempt to allow dirigibles to dock there." 4 3 4 +16118 6 "The @CAPS1 @CAPS2 ""The Mooring Mast"" by Marcia Amidon Lsted, talks about the height of the buildings, the Empire State Building and the Chrysler Building. The architecture who built the Chrysler Building was secretly hiding something. The secret was that he constructed a 185-foot spire inside the building, it shocked many people and the media by hoisting it up to the top of the Chrysler Building. Now it's a height of 1,046 feet, which is 46 feet taller than the height of the Empire State Building. One obstacle to their expand use in New York city was the lack of a suitable landing area. Al Smith thought that a mooring mast added to the top of the building would allow dirigibles to anchor there for several hours for refueling or service to let passengers on and off. The mooring mast couldn't just simply drop a mooring mast on top or the building. Adding a mooring mast to a cable tether could add stress to the buildings frame. They finally build the mooring mast and they raised the American flag again." 1 2 2 +16119 6 "The builders of the Empire State Building faced several problems in the attempt to allow dirigibles to dock there. Safety was an issue for the builders. The dirigibles made outside of the United States were used with hydrogen. This became a safety issue because ""hydrogen is highly flammable"". On top of the building, the wind is always shifting because of ""violent air currents"". The shifting winds would be a problem because they would cause the end of the ship to ""swivel around and around the mooring mast."" Another problem the builders faced was the ""law against airships flying too low of urban areas""; making it illegal to dock the dirigibles. The builders also feared that the high winds could ""blow the dirigible onto the sharp spires of other buildings in the area"", causing danger to the city. There are many obstacles the builders faced that made it impossible for the dirigibles to dock on top of the Empire State Building." 4 3 4 +16120 6 "The obstacles the builders of the Empire State Building faced in attempting dirigibles to dock there include wind, weather, and especially safety issues. The excerpt states ""The winds on top of the building were constantly shifting due to violent air currents"". This states that nature was a great obstacle for the plan of dirigibles to dock at the Empire State Building. The other largest obstacle was safety. The excerpt says, ""Most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly flamable."" Another main safety concern was that the use of lead weights to anchor the dirigible was neither practical nor safe above the city of pedestrians." 3 3 3 +16121 6 "Allowing dirigibles to dock to the Empire State Building was never a safe idea. ""The mooring mast of the Empire State Building was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed."" @CAPS1 obstacles arose once the idea got thrown around.Builders soon realized that docking the dirigibles to the Empire State Building would cause stress to the building; ""Over sixty thousand dollars worth of modifications had to be made to the building's framework."" Safety was a major obstacle because dirigibles from outside the @PERSON1 used hydrogen that was highly flammable. Then the obstacle of wind came and played. Usually they would weigh them down but that was not ideal being so close to other buildings and hovering over thousands of people. ""The other practical reason why dirigibles could not more at the Empire State Building was an existing law against airships flying too low over urban areas."" The idea was never successful due to the obstacles presented." 3 2 3 +16122 6 "Some obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was the law, and the spires that were on other buildings. Another problem was making the mooring mast. this was a problem because it whould add alot of stress to the building, And safety was an issue. I said that the law restricted this Because you can't Put a Blimp over urban areas because if some thing goes wrong alot of pedestrians will be killed. Putting up the mooring mast was no easy task it was very hard to make it to support a Blimp Because there will be to much pressure on the building. lastly safety there were Blimps that caught fire because of the gases they worked with. If that were to happen in New York alot of innocent lives will be gone." 3 3 3 +16123 6 "The builders faced many different obstacles in their attempt to allowing Blimps to dock there. There were two major obstacles. ""The greatest reason was one of safety: Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly @CAPS1"" (@NUM1). If a blimp had an accident like the Hindenburg, not only would the Empire State building go down, it would affect other buildings and people too because of the city's population. Lastly the other large effect on the building was the weather. ""The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building were constantly shifting due to violent air currents"" (@NUM2). The winds could have easily knock it over with a blimp attatched to it for this reason: ""the back of the ship would swivel around and around the mooring mast"" (@NUM2). As result to this the blimb would be so close to the mast that if a strong enoungh wind was blowing, the blimps weight you take the mast with it. All in all weather and hydrogen blimps with the builders' two major obstacles." 3 3 3 +16124 6 "Al Smith's plan to add two hundred and fifty feet of height onto the Empire State Building by attaching a resting stop for traveling blimps was plaussible in theory, but as it was put in motion the workers had to face multiple obstacles that ultimately made the attempt unsuccessful. The easiest and the only fixable obstacle was the issue of the added stress the blimp put on the building's frame. The whole building had to be strengthed to adjust to the pressure, but the workers eventually got the construction done. However, the biggest thing that hindered the mooring mast from being successful was nature itself. The winds that high in the air were constantly shifting violently, so even if the dirigible had been attached to the mast, the back of it would swivel around uncontrollably. Unfortunately because they would have landed high in the air, using lead weights the control the back of the aircraft was impractical. The prevention of natures problems is not possible, and similarly nothing could have been done to fix the issue of unsafety. Most blimps outside of the @LOCATION2 used a more flammable gas inside of them, and landing a dirigible that could catch on fire high above New York City was an extremely dangerous idea. There was nothing the workers could have done to solve other countrie's blimp composition. Finally, if nothing else, there were solid laws that made it illegal to ever have anything tied up so low over and urban area. Obviously, this obstacle couldn't have been overcome without waiting years and a lot of legal business. Placing the mooring mast on the Empire State Building with hope to land dirigibles seemed good, but during the actual process many obstacles were presented, most of which had no solution. In the end, the hope to ""equipp [the building] for an age of transportation,"" had to be given up." 4 4 4 +16125 6 The problems that the builders of the empire state building faced in attempting to allow dirigibles to dock there were the issues of safety. As said in paragraph @NUM1 the winds on top of the building were constantly shifting due to violent air currents. Also said in paragraph @NUM1 there would be lead weights dangling above pedestrians on the street. one other problem they faced were the existing law against airships flying too low over urban areas. 3 2 3 +16126 6 "The obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there, would be things such as the different usage of air. A sentence I found to follow this reason would be in paragraph @NUM1 when said, ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" This would cause many problems and face many obstacles. Another reasoning I found was wind. A reason I found would be as stated in paragraph @NUM2, ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation."" This would be something difficult to fix. As other obstacles I found such as the size and density, I find these two to be the best reasoning." 2 2 2 +16127 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were that the most dirigibles from outside of the United States used hydrogen rather than helium, and the hydrogen is highly flammable. The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. When the German dirigible Hindenburg was destroyed, the owners of the Empire State Building realized how much worse the accident could have been if it had taken place above a densely populated area, for example downtown New York. The greatest obstacle was nature itself, the winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship with swivel around and around the mooring mast. Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe." 4 3 4 +16128 6 "Based on the excerpt, there were a few main obsticles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One problem was the architects could not simply drop a mooring mast on top of the Empire State building's flat roof. It would add unwanted stress to the building frame. Another issue was the gas used to fill the dirigibles. Hydrogen, being very flamable, could cause a dangerous fire above a densley populated area, downtown New York. Towards the top of the building, violent air currents caused another problem. Even if the dirigible was tethered to the mooring mast, the back of the ship would swivel around and around the mast. A final delema was an existing law that prohibited airships flying to low over urban areas, such as New York. Due to these obsticles, the ability to dock a dirigible to the top of the Empire State Building was destined to @CAPS1." 4 3 4 +16129 6 "The builders of the Empire State building faced many problems trying to make dirigibles able to dock there. One problem was that the blimps use hydrogen instead of helium to fly. ""Most dirigibles outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" The blimps were unable to be used because they were a major safety issue for the people being transported. Another obstacle was that the air currents were very rough at the top of the Empire State building. ""Even if the dirigible were tethered to the mooring asked, the back of the ship which swivel around and around the mooring mast."" Dirigibles are usually put down in open fields with the back ends can be put down with lead weights; the blimps dangling high above pedestrians was nether practical nor safe. The builders for the empire state building faced many obstacles." 2 3 3 +16130 6 "In the excerpt The Mooring Mast the builders of the empire state building had to go through many obstacles to get there job done. I paragraph @NUM1 it states that al smith announces that the empire state building will reach a height of @NUM2 feet, this would be a big obstacle for the builders because they have to risk their lives being that high up just to construct this building. Another obstacle for the workers would be working next to the dirigibles because in the exerpt it state that the dirigible a extreamely flammable so if it touches fire the workers could get seriously hurt." 1 1 1 +16131 6 "In the @CAPS1 @CAPS2 ""The Mooring MASt"" by @ORGANIZATION2, The builders of the empire state building faced many obstacles to allow dirigibles to dock there. One obstacle to their expanded use in new york city was the lack of a suitable landing area. Another obstacle was getin the passengers on and off the dirigbles safley. In conclusion I have showend the obstacles that the builders have faced on the @ORGANIZATION1." 2 2 2 +16132 6 "The Mooring Mast by Marcia Amidon Lsted describes the problems that the builders of the Empire State Building faced like the amount of stress that the dirigibles would add to the frame of the building. safety issues and laws, and the winds around the mast. Any dirigible would add on tremendous stress to the already constructed frame of the building and builders had to complete ""over sixty thousand dollars worth of modifications."" These changes were quickly made, but safety concerns such as a potential fire or ""flying too low over urban areas"", (which was actually illegal), still prevailed. The ""greatest obstacle"" of building the mast was the violent winds that surrounded the Empire State Building. These winds were ""constantly shifting"", making it virtually impossible to stay in one spot without swiveling around the building. In a city as densely populated as New York, it also wasn't even an option to weigh down dirigibles for landing. This list of obstacles is a clear sign that the mooring mast was not properly thought about before construction started. The builders should have focused more on what they had done instead of trying to outdo the expectations of all and do something as ""a higher calling.""" 3 4 4 +16133 6 "There were many obstacles builders needed to face to make it possible for dirigibles to dock at the Empire State Building. First was the stress that would be put on the entire building if a dirigible was attached to a mast at the top. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way through to the building's foundation, which was nearly eleven hundred feet below."" (@NUM1) This problem was easily solved by strengthening the frame of the building. Another major problem was the wind 1,250 feet in the air the wind blows very hard and violently. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" (@NUM2) The wind combined with the fact that a dirigible was filled with hydrogen made a bad combination. Hyrogen is a very combustible gas and if a dirigible ran into the building and there was a spark the entire mass of the ship would be enflamed." 3 3 3 +16134 6 "The obstacles that the builders of the empire state building faced in attempting to allow blimps to dock there was the height of the building. For instance in paragraph @NUM1 it states ""the steel frame of the building would have to be modified, over six thousand dollars worth of modifications"" This proves that the height of the empire was its height because the city had to pay modification fees. Also, because the building is so tall the mast is not that stable so that was the main obstacle stated in paragraph @NUM2 ""the winds on top of the building were constantly shifting due to violent air currents"" This demonstrates that mast in those currents and not being stable enough could be very dangerous for downtown New York. Lastly, even state laws became an obstacle for the dirigibles such as in paragraph @NUM3 it states ""this law would make it illegal for a ship to ever tie up to the building"" This justifies that this was also an obstacle that the builders faced" 3 3 3 +16135 6 The obstacles the builders had to face were very big obstacles. One of them being the Mooring Mast it's self. The building which wasn't strong enough to hold an airship with it's original design. So the building had to be Modified and Strengthened to accommodate this situation. They would add a rocket shaped tower built out shiny glass and chrome-nickel Stainless steel. This tower would illuminate from the inside. Which would bump the building from @NUM1 floors to 102 floors . I got all this information from paragraphs @NUM2. 1 2 2 +16136 6 "Based on the excerpt some obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there included the laws @CAPS1 plane height, the fact that some dirigibles used hydrogen fuel instead of helium, and lastly at such great heights the strong wind currents were a problem as well. The restriction of plane height was that plaes could not fly to low above cities without being a safety hazard. ""An existing law against airships flying too low over urban areas"". (The MOORING MAST). Another obstacle related to the fact that some outside the U.S dirigibles used hydrogen fuel in place of helium which could cause a problem because hydrogen is highly flammable. ""From outside of the United States used hydrogen rather than helium"". (The Mooring Mast). Lastly, strong winds were an obstacle as well, the high wind currents would blow the dirigibles all around as the attempted to dock at the Empire State Building which would pose as a problem. ""Winds on top of the building were constantly shifting due to violent air currents"". (The Mooring Mast). In conclusion, the builders of the Empire State building faced many obstacles when attempting to allow dirigibles to dock there." 4 4 4 +16137 6 There was many obsticles the builders of the Empire State Building faced to allow the dirigibles to dock. One was the weight. The architects could not just place the mooring mast or it would rush the building. So they had to add over sixty thousands of dollars into the framework. Another problem was safty issues. Other countries used Hydrogen as their dirigibles gass. Hydrogen is highly flameable so that catching on fire above New York was dangerous. Another problem was the violent weather at the top of the building. The dirigibles would sway in the back due to harsh weather so geting pasengers on and off board would be extremly dangerous to them. Also there is a law in New York prohibiting low flying vehecales so the dirigibles could not had dock their in the first place. 3 3 3 +16138 6 The builders of the Empire State Building faced many challenges trying to allow dirigibles to dock there. The challenges ranged from nature itself to laws against it. They didn't take into consideration the constantly shifting air atop the building. At such heights as the moring mast violent air currents would cause the dirigible to swivel around the mooring mast. This was also due to the fact that the blimp would only be tethered in the front. Not only were those large factors coming into play but laws also came in the way of dirigibles mooring at the Empire State. They didn't think about the existing law. It stated that air ships flying to low or over urban areas was against the law. So many factors came into play with building such a project. Overall it was too far fetch of an idea. 2 3 3 +16139 6 "There were a few obstacals to making this idea work. one of the obstacals was to make the mast and the frame of the building strong enough to support a dirigible swaying in the wind. There was over @MONEY1 spent on modification to the building. Also, they had to Add a few floors to the building for a total of 102 floors." 2 1 2 +16140 6 "Based on the excerpt 'The Mooring Mast' by Marcia Amidon Lsted, there are many varied obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One main reason would be the safety issues of the dirigible. Most dirigibles used hydrogen to be lighter than air. Hydrogen is a very flammable gas that could easily catch fire, just like the Hindenburg. If an accident like the Hindenburg were to happen over downtown New York, the outcome would not be good. Also dirigibles moored in open fields and would need to be anchored with big lead weights. These weights would niether be practical nor safe dangling above people and a small moring on the top of a building is no open field. One last obstacle is the sixty thousand dollars needed to just make the frame suitable for mooring dirigibles. ""A thousand-foot dirigible moored at the top of a building held by a single cable tether would add stress to the buildings frame."" With out a doubt, just to make a mooring for dirigibles at the top of the tallest building in the world would come with many different obstacles the builders would have to face." 3 4 4 +16141 6 "The builders of the Empire State Building faced a few obstacle attempts to allow dirigible to dock there. First the Empire State Building was destined to never fulfill it's purpose because the builders didn't notice all the problems it had. One attempt was the Goodyear blimp Columbia, attempted a publicity stunt where it would tie up and deliver a bundle of newspapers to the Empire State Building, as stated in paragraph @NUM1. In paragraph @NUM2 it states that the greatest obstacle to the successful use of mooring mast was nature itself. The builders had a lot of work to do to actually try and fix the problems but there was just to many. In conclusion the builders of the Empire State Building faced a few obstacle attempts to allow dirigible to dock there." 1 1 1 +16142 6 "The obstacles that the builders of the empire State building @CAPS1 in attempting to allow dirigibles to dock there work, there wasn't enough room, they weren't supposed to have aircraft near the city." 1 1 1 +16143 6 "Despite the pricey investments of sixty thousand dollars that needed to be put into the building for this project to become a reality, there were many more obstacles the builders of the empire state building faced in attempting to allow dirigibles to dock there. The greatest obstacle they faced was the safety of people; a dirigibles dangleing nearly @NUM1 feet above ground with the possibility of explosion and pedestrians below doesn't seem like the smartest idea. Another problem they faced was the stress that the dirigible-held on by only a single cable-would put on the buildings frame. With the wind blowing the dirigible around the load and pressure of it would have to be sent all the way to the base of the building about @NUM1 feet down. In order for this to work the builders would have to strengthen the steel frame of the building. Maybe the most difficult obstacle they faced was nature itself, strong wind streams above the building would have caused the dirigible to swing around once it was docked, as well as running the risk of being blown of course and into another building. And if they ever wanted this idea to work in the first place they should have checked the laws first; aircrafts were not allowed to fly that low over urban areas. Builders of this landing dock and the empire state building just faced too many obstacles." 4 3 4 +16144 6 "Based on the excerpt, the obstacles the builders of the empire State building faced in attempting to allow dirigibles to dock there were mostly due to the dangers of violent winds at such an altitude that may cause the aircraft to crash either into the building or down to the ground. For example two blimps attempted the docking and one of them could not come close to the building because of winds. The other was able to deliver a bundle of newspapers hoisted down by a rope. In conclusion, the main problem was the unstability of the aircraft being docked." 1 2 2 +16145 6 "The builders of the Empire State Building faced many obstacles in attempting to dock dirigibles there. One of the obstacles they faced was safety, because the dirigibles were filled with hydrogen. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable"" ( @NUM1). If the dirigible burst into flames in New York, a lot of people would die. Another obstacle was nature itself. The winds were violent on top of the building. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"" ( @NUM2). This would have been very dangerous. A third obstacle was the law, which was impossible to get around. There ""was an existing law against airships flying too low over urban areas"" ( @NUM3). Although this was broken twice, it was still illegal to dock dirigibles at that low height. As a cause of all these obstacles, the idea to dock dirigibles at the Empire State Building was scrapped." 3 4 4 +16146 6 the builder of the empire State Building faced obstacles in attempting to allow dirigibles to dock there because they had to plan out how it would what they would need to use for it to dock there. What kinds of material would be needed in this project and how it would work. Before actually putting it all together. 0 0 0 +16147 6 "The builders of the empire state building ran into a lot of problems involving the dirigibles. One problem is that there was no easy way to make such a suitable docking station at such a great height, while making it look good. The other, most main reason/problem with the mast for mooring the dirigibles was just a safety issue. But a big one. Most dirigibles used hydrogen instead of helium and hydrogen is extremely flammable. So, if something were to go wrong with docking the dirigible could catch fire and explode & go down in a densely populated area. There were a lot of safety and structure issues but they were eventually resolved, (like the fact that large lead weights needed to dangle over the streets to weigh down the back of the dirigible" 1 2 2 +16148 6 "In attempting to allow dirigibles to dock on the Empire State Building @CAPS1 had to face many obsticals. Alot of obsticals were straightforward and not ecnoliged By the @CAPS1 for example ON page three @CAPS2 @NUM1 and @NUM2 and it says that is was ""unsafe Because the dirigibles were filled with Hydrogen"" wich is Highly flammable. there were @CAPS3 in the @CAPS4 Because of them Being flammable the german Dirigible Hindenburg was Destroyed By fire. there was also violent air currents and a law against air ships flying too low over urban areas" 2 2 2 +16149 6 "The builders of the Empire State Building faced many obstacles and attempting to allow dirigibles to dock there. The first issue faced was that ""most of dirigibles outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" This was an issue because if the dirigible would catch fire or explode over it highly populated city like New York, many people would be put at risk of being injured or killed. The second issue the builders had to face was that ""the winds on top of the building were constantly shifting due to violent air currents."" These winds would cause the airship to swivel, even when tethered to the mooring mast, making it impossible to board. This would also be dangerous for anyone aboard the airship. The third issue was that there ""... was an existing law against airships flying too low over urban areas."" With New York City certainly being an urban area this law made it impossible for airships to even approach the Empire State Building to moor. Overall, there were many obstacles faced by builders in trying to allow dirigibles to dock at the Empire State Building. Due to these reasons, the Empire State Building was never an effective place for dirigibles to dock." 4 4 4 +16150 6 "Trying to construct the Empire State Building in a way to allow dirigibles to dock on top of the building, brought up many challenges for the builders. There was a huge saftey issue having the blimps so close to the city. In paragraph @NUM1, the fear of winds that could blow the blimp into other buildings, wrecking them, scared people. The second concern was the fact that the blimp is full of highly flamable gas and if they blimp was ever to burst into flames above a city, much damage would be done to the blimp and New York City. The last major concern is located in paragraph nine. The problem would be the amount of stress the building would take on by having a blimp tied to the top of it. The whole building would have to be reconstructed to help the Empire State Building not take on that stress; In fact, basically every part of the building and blimp would have to be remodeled in order to keep New York City, and the passengers of the dirigible safe." 3 3 3 +16151 6 "One of the obstacles builder's faced was nature itself. The @CAPS1 States ""The winds on top of the building were constantly shifting due to violent air currents."" Another obstacle the buillders faced was that ""there was an existing law against airships flying too low over urban areas."" The @CAPS1 states ""This law will make it illegal for a ship to ever be tied up to the building.""" 3 2 3 +16152 6 "The builders of the Empire State Building had a few obstacles to face when attempting to allow dirigibles to dock there, as written by Marcia Amidon Lsted in the,The Mooring Mast. Al Smith, the architect of the Empire State Building, didn't want his masterpiece to be only for show, so he gave it purpose; a dock for dirigibles. By adding a comma ""thousand-foot dirigible moored at the top of the building, held by a single cable tether,"" the buildings frame would be under much stress; ultimately making the structure unsafe. To alter the frame and wind pressure, over @MONEY1 would need to be accumulated. If an accident were to take place, like in Lakehurst, New Jersey, the densely populated city would be in grave danger. Although these obstacles can be overcome, the obstacle of mother nature herself, cannot." 2 3 3 +16153 6 "As it was the idea of a dirigibles dock was quite far fetched THe first problem thay encountered was that having a thousand foot long dirigible attached to the empire state building would cause a great strain on the buildings framework, @CAPS1 they would have to change the structure of the entire building to strengthen its framework. The largest problem was a matter of safety. Dirigibles use hydrogen which is extremely flammable, also the author states ""the winds on top of the building were constantly shifting due to violent air currents"" making the idea of a dirigibles dock extremly to risky. They should have been spotted before so much money was put into making this dock." 3 3 3 +16154 6 "Builders faced multiple obstacles in attempting to allow dirigibles to dock on the Empire State Building. One obstacle was that the dirigible would add too much stress to the frame of the building if it landed there. The building would have to be modified costing over sixty thousand dollars more.Another obstacle faced was the gas inside the dirigible. Some used hydrogen which is extremely flammable. Since New York is highly populated, if something were to go wrong, it would be unsafe. Also, the winds at the top of the building were very strong. The back of the dirigible would be ""swivelling around the mooring mast.""The last obstacle would be that it is ""illegal for a ship to ever tie up or approach of building."" The attempt to allow dirigibles to dock on the Empire State Building failed. There were too many obstacles." 4 3 4 +16155 6 "In ""The Mooring Mast"" by Marcia Amidon @CAPS1 the builders of the Empire @CAPS2 building faced many obstacles to allow the dirigibles to dock there. For @CAPS3, the author said ""the stress of the dirigible's load and the wind pressure would have to be transnitted all the way to the building's foundation. This shows that not only did they have to designed to take the load of the building but also the dirigible. Moreover the author stated that, ""A thousand-foot dirigible moored at the top by a single cable tether. The engineers would have to think of a way to safely dock the dirigible without anyone getting hurt In all the engineers that designed the Empire State building had to over come many obstacles to allow the dirigibles to dock there." 2 2 2 +16156 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. For example, ""A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame."" The builders could not simply ""drop a mooring mast on top of the Empire State Building's flat roof."" The builders now had to find a way to add this mooring mast for dirigibles without putting too much pressure on the building. In addition, ""The steel frame of the Empire State building would have to be modified and strengthened to accommodate this new situation."" They now had to add ""over sixty thousand dollars"" worth of modifications to the building. In conclusion, ""Architects designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from the inside, with a step-back design that imitated the overall shape of the building itself."" @CAPS1 the architects went through much work not only to make the mooring mast for dirigibles successful, but beautiful. The excerpt ""The Mooring Mast"", @ORGANIZATION2 shows the many obstacles architects faced while attempting to allow dirigibles to dock there." 2 2 2 +16157 6 "The builders of the Empire State Building faced several obstacles in their attempts to allow dirigibles to dock there. The builders ""main obstacle were the wind currents the dirigibles had to face in trying to dock nearly eleven hundred feet in the air. The harsh winds at the top of the building were constantly changing because of the air currents. The U.S. Navy dirigible Los Angeles could not even get close enough to tie up to the mast. ""The captain could not even take his hands off the control levers"" (Lsted @NUM1) in fear the outer shell would be punctured by the mast. Additionally, if a dirigible was tied to the mast, it would moving all around the mast based on the unpredictable air currents. However, safety was also a major factor. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (Lsted @NUM2). Therefore, attempting to tie dirigibles to the mast of the Empire State Building was very unsafe, as the obstacles the builders faced were simply too much to overcome." 3 2 3 +16158 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles, also known as blimps, to dock there. The initial problem was that the blimp couldn't land on a flat surface. So the builders made a ""mooring mast"" so blimps could be connected by electrical winch to the building. But this caused problems too. They couldn't just drop the mooring mast on top of the building or it would be unstable. But most importantly since the winds kept changing it would never stay still. The problem of foreign blimps using hydrogen rather than helium made it to dangerouse to the public. In conclusion The builders of the Empire State Building faced many challenges in trying to let blimps dock." 3 3 3 +16159 6 "There were obstacles that the builders of the empire state building faced in attempting to allow dirigibles to dock there. One of the many obstacles the dirigibles had to face was the lack of a suitable landing area, which I found on paragraph six. Another obstacle would be on paragraph @NUM1 where it says ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable."" Nature itself would be another obstacle for the dirigibles, because ""the winds on top of the building were constantly shifting due to violent air currents."" @CAPS1 but not least, there was an existing law against airships flying too low over urban areas. Which means it is illegal for a ship to ever tie up to the building or even go near the area. In conclusion these were some out of the many obstacles a dirigible had to face." 4 3 4 +16160 6 "the builders of the Empire State Building bit off more than they could chew when constructing a mooring mast there. The first of several problems was that the presence of a thousand-foot long Dirigible would a tremendous amount of stress to the frame of the building, and @MONEY1 of modifications would have to be added. Safety was another pressing issue. In 1937, the crash of the hindenburg made the owners of the building realize how bad it would be if a zeppelin crashed over densely-populated New York. Not only was there an existing law that forbid airships to fly too low over urban areas. the factor of nature made the mooring mast Idea completely @CAPS1. Winds on top of the building are always shifting due to Violent air currents, even the capitain of the U.S. Navy ship Los Angeles could not land the dirigible. At this point It was apparent that the mooring mast idea would not work. And dirigibles were abandoned when airplanes, the method of aviation of the future, had arrived." 4 3 4 +16161 6 "While attempting to allow dirigibles to dock at the top of the Empire State building the builders faced many obstacles. The first obstacle was modifying the frame of the building to acommodate for the stress that the mooring mast would put on the building. The load of the dirigible and wind pressure would have to be transmitted all the way to the foundation of the building which was eleven-hundred feet below. Over sixty thousand dollars worth of modifications had to be made in altering the frame of the building. It was costly. Another obstacle the builders face was the gas used inside the dirigible, hydrogen. Most dirigibles outside of the United States use hydrogen. Hydrogen is highly flammable and if a dirigible were to go up in flames above such a densely populated area such as downtown New York the results of the accident would be catastrophic. Nature was also another obstacle itself. The winds at the top of the building were constantly changing due to violent air currents. The dirigible would be swiveling around and around the mast. While lead weights were used in open landing fields, this was impractical to do above pedestrians on the street. Above all else an existing law prohibited airships from flying too low over urban areas. This made it illegal for a dirigible to even approach the mast. These obstacles had made it impractical for a dirigible to ever dock on the mooring mast of the Empire State Building." 4 4 4 +16162 6 "The builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. The hydrogen in the dirigibles was highly flammable, winds shifted a lot, and existing laws made it illegal to dock in such an area. Most dirigibles during that time. Were floating by hydrogen rather than helium. With the builders found out was hydrogen is very flammable and too risky to land dirigibles that could catch on fire above a whole city. The excerpt also explained that nature was a huge issue. Air currents as high as those a top the buildings were vicious and shifted rapidly which would make it dangling dirigibles from that high up very risky. Lastly, was the obstacle of breaking the law! The law against airships flying to low over urban areas. With all these obstacles that would be too difficult for the builders face, this unreal dream would yet remain a dream." 3 3 3 +16163 6 "The builders of the Empire State Building faced many problems trying to allow dirigibles to dock on it. One problem was designing the building to be able to withstand the stress from a thousand-foot dirigible swinging around it in the wind. The builders needed to find a way to distribute the wind pressure all the way to the foundation. Another problem was the strong winds surrounding the building; when the navy tried to dock a dirigible on it, it kept being tossed about by the strong winds, this problem was never solved. A third problem was finding a way to actually dock the dirigible, this was quickly solved with a winch. A final problem was the fact that the dirigibles were so dangerous, and couldnt safly dock, as well as a law that prevented dirigibles from flying close to buildings, which was created for that reason." 3 3 3 +16164 6 "During this time period, dirigibles were seen as the transportation of the future, and everybody thought that this was plausible. There were problems, however, that nobody saw through. For example, the dirigibles were seen to be the next big thing in transportation, but there was no evidence to support this. They spent all of their time, effort, and resources to construct something for a purpose that never worked. There were other problems that were overlooked as well, such as the wind speed at that height, and even if they could get close enough to the mast, they would need someone to stand on the very top and tie it down, which would be too hard for one person. As the excerpt shows, Al Smith and his architects jumped into this problem too quickly and with insufficient information." 2 1 2 +16165 6 "In The Mooring Mast by Marcia Amidon Lsted, two architects play ""battleship"" with each of their dirigibles, competing for most height. However, when building these ""enormously steel-framed balloons"", the architects didn't realize the obstacles that they would have to face during this process. The biggest reason was for safety precautions. Since most dirigibles were made of hydrogen, they were highly flammable. This, they said, could have been worse than the German Hindenburg, which was demolished by fire in New Jersey in 1937. However, the best obstacle to use of the mast was nature. The winds caused the mast's to be clanging above human beings, which was not practical or safe." 2 2 2 +16166 6 "In their quest to allow dirigibles to dock, the architects and builders of the Empire State Building ran into many problems. One of the more obvious issues was that of the make-up of the dirigibles themselves. At the time, they consisted of hydrogen, which, although allowed for a lower density, was highly flammable. This concept was proven and brought to light by the 1937 crash of the ""Hindenburg"", a famous dirigible. If a dirigible were to catch fire while docking at the Empire State Building, it would surely crash onto the civilians below. Another topic of debate for the architects of the Empire State Building was the issue of high winds at the estimated 1,250 foot altitude of the mooring mast. Such winds could easily cause a lack of stability for a dirigible which could in turn place added stress on the building itself. Another problem caused by winds is the fact that the dirigible might crash into other buildings, causing, the fabric containing the hydrogen gas to be punctured, and the dirigible to crash. In the end, it was a project deemed too risky to continue." 3 3 3 +16167 6 "The builders of the Empire State Building were faced with many obstacles in attempting to allow dirigibles to dock there. The first major problem was they weren't sure if the structure of the building could hold up to a swaying dirigible. As said in paragraph @NUM1. Also the builders knew that since the dirigible would be hooked to the mast by a single cable, the air currents would make the back of the ship swivel around the mooring mast. As said in paragraph @NUM2. There also was a law enforcement against airships flying too lower over urban areas. That would make it illegal for a ship to tie up to the building. Those are some of the obstacles that the builders were faced with" 2 3 3 +16168 6 "The Empire State Building was designed to be the tallest building in the World. Al Smith's plans were to make it taller than the new Chrysler Building, but when a @NUM1-foot tall spire was added to the top, the Empire State Building was going to come in second. To overcome this first obstace in building the tower, Smith decided to change the idea for the tower and add his own spire: a mooring mast for dirigibles. Using the tower as an anchor for dirigible balloons, or zeppelins, Smith added another 250 feet to the tower. But to continue with the plan, Smith had to face the obstacle of supporting a floating blimp more than @NUM2 feet above the ground. Smith had the entire building frame modified and strengthened before the building was finished. Smith's final obstacle was one he couldn't control: the weather. The winds at the top of the building were too harsh, so the dirigible idea was scrapped, but Al Smith's tower had made it to the world's tallest building." 2 2 2 +16169 6 "Throughout the process of construction the Empire State Building contractors faced couple of obstacles in their quest to dock dirigibles on it. First off, safety was a huge factor of the quest. ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse the accident could have been if taken place above a densely populated areas such as downtown New York."" @CAPS1 a baloon and dirigible may have the same appearance the two are completely structured differently. Helium causes a balloon to rise a dirigible uses hydrogen to fly which is highly flamable. Secondly there was already a law put into effect for air trafficking. ""... could not get close enough to tie up because of forceful winds. Fearing the wind would blow the dirigibles onto the sharp spires of other buildings in the area, which would puncture the shell."" If the dirigible was to ever get punctured it could collaps into the streets of New York causing mass destruction. Thus concluding a few of many obstacles in the way of landing dirigibles on the Empire State Building." 2 3 3 +16170 6 The emire state building faced alot of obstacles and challenges while it was being built. The builders built a rocket shaped mast so the dirigible could be housed in the shaft itself. Which also had elevators so people could go down to the lobby. The building would now be 102 floors. The glassed observation room would be on the 101st floor. 0 0 0 +16171 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One obstacle that they faced concerned safety. Many dirigibles from outside the United States were filled with hydrogen rather than helium. Hydrogen is very flammable and if it were to catch fire of New York City the results could be horrific. Another obstacle the builders faced concerned nature. Due to the height of the Empire State Building the wind became a major factor. Wind currents were constantly shifting and if a dirigible was attached to it, it would be unsafe. The stress of the wind pressure and the load of the dirigible would have to be transmitted to the foundation of the building. This meant that the frame of the building would have to be strengthened. Another obstacle concerned law. There is a law that states that airships can not fly too low over urban areas. This would make it illegal to tie a ship up to the Empire State Building. The builders of the Empire State Building had to face many obstacles in an attempt to allow dirigibles to dock there." 4 3 4 +16172 6 "The mooring mast seems like a great idea. A landing dock for dirigibles would have jumped travel into the future. As it turns out, however, architect Al Smith bit off more than he could chew. First of all, the fate of the Hindenburg put worry over the owners heads. ""the owners of the Empire State Building realized how much worse that (Hindenburg) accident could have been if it had taken place above a densely populated area such as downtown New York"". The second problem is that there is an existing law against airships flying too low in urban areas. As stated in paragraph @NUM1, ""This law would make it illegal for the ship to tie up to the building or even approch the area"", The final and most problematic part of the mooring mast was actually revealed to be nature itself. As it turns out, the wind on top of the building were too violent and unpredictable. Even if the dirigible was tethered, ""the back of the ship would swivel around and around the mooring mast"". Overall, it seems like this was a great idea gone bad." 3 3 3 +16173 6 "The builders of the Empire State Building had hopes of making this building a dock for dirigibles but were faced with several obstacles. Starting in paragraph @NUM1 the aspiration of the mast on the Empire State Building made the plan seem well put together and it would soon become a reality. As the project progressed many details went looked over and when the dirigibles were ready to take action the plan was not something forageable. Stated in paragraph @NUM2, safety was a huge issue for the dirigibles made outside of the United States, because they contained the flamable gas hydrogen. This is a problem because of the fear of an accident occuring in a highly populated area. Another obsticle dirigibles faced while trying to have a dock on the Empire State Building was nature itself as presented in paragraph @NUM3. The winds on the top of the building had violent currents that were constantly shifting. The problem with the air would have the dirigibles constantly spinning around the building by its back end. This made it unsafe for passengers to get on and of and also the cargo. The greatest obstacle for dirigibles trying to dock on the Empire State Building is the existing law against flying too low over urban areas, which is found in paragraph @NUM4. By a dirigible docking it would be directly breaking the law." 3 4 4 +16174 6 "There were multiple obstacles that made the idea of docking dirigibles foolhardy from the start. ""When the German dirigible Hindenburg was destroyed by fire..."" (@CAPS1 @NUM1) the idea of such a volatile object over the population became far more of a threat than a luxury. Lead weights needed to support the craft could not be supplied, and would also prove to be hazardous. Given the Empire State Building's nature, the modifications became hasselsome and added unnecessary difficulty. The winds at that altitude would also provide docking issues and instability. Finally, the airplane overtook the blimp, because it could travel faster and hold the same, if not more, number of people in a small area. Blimps became dangerous and cumbersome, and would not benefit New York as Al Smith had hoped." 2 2 2 +16175 6 "Based on the excerpt, ""The Mooring Mast"" by Marcia Amidon Lsted,to obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock where nature and the law against airships flying too low over urban areas. The greatest obstacle builders faced was nature. ""The winds of the top of the building constantly shifting due to violent air currents."" Also the back of the ships would force the dirigible to spin around from the forceful winds. Then using lead weights in the Empire State Building, they would be dangling high above people on the streets below and it is not safe. The next obstacle is that a law existed against airships flying too low over urban areas. This made dirigibles illegal to fly over to the building." 2 2 2 +16176 6 "The Empire State Building was built with great potential, but it would never reach it fully. The Empire State Building was supposed to reach @NUM1 feet, being just inches taller than the Chrysler Building, when the architect who designed the @CAPS1 Building snuck up and stuck a 46 foot pole on top. Of course the Empire State Building had to be taller, so they set a new goal and reached 1,250 feet on December 11, 1929. Al Smith, @CAPS2 of New York and Architect, decided that the Empire State Building needed a cherry on top, so he decided to put a mooring mast for zeppelins on top. This plan was destined for disaster: the foundation wasn't stable enough for zeppelins, they could easily be blown out of control and onto the sharp tip of the Building, and also, since zeppelins had hydrogen in them, they could explode and fall onto the densely populated @LOCATION1. All in all, the mooring mast at the top of the Empire State Building was built for disaster" 2 2 2 +16177 6 "There are many obstacles the builders had to face while attempting to allow the docking of dirigibles. One obstacle they had to overcome was paying over sixty thousand dollars' to the worth of modifications for the building's framework. In paragraph @NUM1, it stated that a thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame. The stress of the dirigible's load, and wind pressure would have to be transmitted all the way to the buildings foundation, which was nearly hundred feet below. As a result of this issue, the frame of the entire building had to change to accommodate the new situation. More obstacles flooded in after the new modifications. When the building had been framed to the 85th floor, the roof had to be completed before the framing for the mooring mast could take place. The mast also had to have a skeleton of steel, stated in paragraph @NUM2," 2 2 2 +16178 6 "It is clear that there were problems in trying to dock dirigibles on the Empire state Building. The first reason's that, the law against flying airships to low over the Empire State Building made it hard to do so. Next is that the thoughtes in being unsafe because some dirigibles use hydrogen instead of helium and hydrogen is flammable A big reason is when the german dirigible got destryed by fire in Lakehurst, New Jersey, the owners of the Empire State Building then realized how much more worse the accident could have been if it had happened on such a densely populated area suched as downtown New York City. The last reason was the thought that they would use lead weights to hold the dirigibles down, but they realized that it wasn't practical nor was it safe. It was clear that there were problems in the docking of dirigibles on the Empire State building; but it is probably a much safer choice for both the residents/citizens of New York and all of the people who ever work(ed) on it such as architects, engineers and the aviation pioners." 3 3 3 +16179 6 "THE BUILDERS OBSTACLE IN LETTING DIRIGIBLES DOCK AT THE EMPIRE STATE BUILDING WAS ALOT. FOR ONE THE MOORING MAST WOULD ADD STRESS TO THE BUILDINGS FRAME, THE WEIGHT OF THE DIRIGIBLES AND WIND PRESSURE WOULD BE TRANSMITTED TO THE BUILDINGS FOUNDATION. ""WINDS WERE SHIFTING DUE TO VIOLENT AIR CURRENTS"". ""EVEN IF THE DIRIGIBLES WERE TETHERED TO THE MAST THE BACK OF THE SHIPS WOULD SWIVEL AROUND."" AND ALSO THE LAW THAT AIR SHIPS CANT FLY LOW IN URBAN AREAS. " 3 2 3 +16180 6 "Acording to the excerpt from The Mooring Mast by Marcia Amidon @CAPS1 the builders of the Empire State Building faced obsticles in attempting to attache a dirigible mooring unit to the top of the building. In paragraph @NUM1, @CAPS1 says ""The greatest obstacle to the successful use of the mooring mast was nature itself."" and Then describes how harsh winds could render the mast unstable. Another obsticle in the making of the mast was a law stating derigibles could not fly under a certain altitude, The set altitude was higher then the building was tall. The last obsticle was safety, in paragraph @NUM2 @CAPS1 talks about how some blimps are filled with hydrogen, which is highly flammable. The effect of a blimp fire over a vastly populated area would be devistating. The mooring mast on the Empire State building was an ingeniose idea, but had to many obsticles to make it work." 3 3 3 +16181 6 "Based on the excerpt, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was one of safety. Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above the densely populated areas such as downtown New York. The greatest obstacle to the use of the mooring mast was nature itself. The dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. Dirigibles moored in open landing fields could be weighted down in the back with lead weights. The other practical reason why dirigibles could not moor at the Empire State Building was existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area." 4 3 4 +16182 6 "The builders of the Empire State Building faced many obstacles. There were two main ones: Safety and Nature.The builders should have realized that the idea wasn't safe, before building. Most dirigibles from other countries use hydrogen instead of helium, which was highly flammable. An accident over densely populated New York would be bad.The biggest obstacle was nature. There were violent air currents that caused constantly shifting winds at the top of the building. This would cause the back of the ship to swivel around the mooring mast.There was also an existing law against airships flying too low over urban areas. This means it would be illegal to tie a dirigible up to the building, anyway." 3 3 3 +16183 6 "In the excerpt ""The mooring mast"" by Marcia Amidon Lsted, the builders of the Empire State building faced many obstacles. Their goal was to build a moor on top of the building in order for dirigibles, or blimps, to dock. In the end they were not successful. One obstacle was ""lack of a suitable landing area."" Without this, the dock would not work. Another main obstacle is the safety reason. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly fammable."" They could easily catch on fire and harm many innocent people. Which leads to two other reasons. ""Nature itself."" That could easily start a fire with the wind. ""Existing law against airships flying too low over urban areas."" The dirigibles could harm innocent people. Many other obstacles were found so this plan failed." 3 4 4 +16184 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. For example, someone attempted a publicity stunt where they would tie up and deliver a bundle of newspapers to the Empire State Building. The workers moring equipment had never been installed because, putting the workers having to catch the bundle of papers on a rope dangling from the blimp in great danger. Also, the wind at the top of the building put workers at great risk of falling off, or dying" 1 2 2 +16185 6 "The builders of the Empire State building faced many problems when tempting to let dirigbles dock there. There were @NUM1 major problems of why it was so hard to dock them at the Empire State building. These obstacles were what was in the dirigbles, the ""nature"" of winds around New York, and a new law passed on restrictions of airships. Dirigbles unlike balloons, which are made up of Helium, dirigbles are made up of hydrogen. Hydrogen is highly flamible. This coud have resulted in terrible way if anything caught on fire since New York is so highly densed. Another problem they faced were the high winds of New York. They were constantly shifting, so they thought to tie the dirigibles down with lead but this would be a bad idea because if the lead ever fell it would injure many people. Lastly, they recently passed a law against airships flying too low over urban cities. If this law was very strict than the dirigibles wouldnt be allowed to dock there because it might be too close to the city. In, conclusion there were many obstacles that the archtects dont think about before constructing." 4 3 4 +16186 6 "The builders of the Empire State Building faced many obstacles in attempting to allow diigibles to dock there. The builders were in a compition to become the tallest building in the world. This made them rush and really @CAPS1 for this. The archetes had to find a way to build this mast. ""over sixty thousand dollars' worth of modification had to be made to the building's framework"". They had to fix the framework of the building so the wind woldent affect the rest of the building. ""The stress of the dirigibles' load and the wind Pressure would have to be transmitted all the way to the building's fundation."" The builder and archetes had to overcome the reality to. It was not safe and dirigibles are highly flammable. It wald be a terrible accident if one eliminated in the city. Also many laws @CAPS2 airships flying low in urban areas. The builders had to face many Problems while trying to build the tallest building." 3 3 3 +16187 6 "The main obstical was to be the tallest building in the world. That all changed to being able to have a mooring mast so blimps can land on it to drop-off/pick up passengers and refule. They had ""@NUM1 thousand dollars"" in renovations to sturdy the structure of the tower. they couldnt make the foundations sturdy enough to hold the weight of an @NUM2 foot ship + cargo." 2 2 2 +16188 6 "In the excerpt from ""The Mooring Mast"" by Marcia Amidon Lsted the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. ""The stress of the dirigibles load into the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below"" is understood in paragraph nine. This was the biggest obstacle the builders had to face. The builders developed a plan of ""Rather than building a utilitarian mast without any ornamentation, the architects designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from the inside, with a stepped-back design that imitated the overall shape of the building itself. Although the mast was finished due to @CAPS1 Nature a new law no dirigibles has ever docked at the Empire State Building." 2 2 2 +16189 6 "As a result of the idea to build a mooring mast, the builder faced a few obstacles in construction the mast. The first problem was structural, the weight of the dirigible tied it with a single tie would put great stress on the building. It was said between the dirigible's load and wind pressure the stress would be distributed all the way to foundation of the building. Another obstacle was the safety. Many dirigibles outside the United States used Hydrogen instead of Helium which is highly flamable. The owners realized the ""Hindenburg"" incident and realized the effects it could of had on downtown New York. The final obstacle was nature because the winds shifted at the top of the building. The problem discussed on this was despite the dirigibles being tied, it could swivel around the mast. The many obstacles faced led to the mooring mast not being constructed to its full purpose and blimps were less commodly used." 3 3 3 +16190 6 "The obstacles that the builders faced in attempting to allow dirigibles to dock there were the strength of the buildings frame, Nature, and certain laws against it. A big problem with building a landing for the dirigibles on the empire state building was the strength of the base. ""A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame.""(paragraph @NUM1). Another obstacle that the builders of the landing needed to get past was the element of nature. The winds at the top of the Empire state building were always changing due to violent air currents. A dirigible tethered to a mooring mast had the potential of wrapping around the mooring mast in the unpredictable winds. The workers could not trust the dirigibles to not fall off the mooring mast and risk the dirigible going right down where thousands of pedestrians were walking. The last obstacle that the workers had to get past was an existing law that prevented airships from flying to low over urban areas. ""This law would make it illegal for a ship to ever tie up to the building..."" (paragraph @NUM2). All of these obstacles proved to be too much for the workers to handle as the mooring mast on top of the empire State building was never created." 3 4 4 +16191 6 "The Empire state building is one of the greatest symbols of the United States. With the world trade center destroyed, it stands as the city's highest building. Many are familiar with its famous spire at its summit, but few actually know why it's there. The truth is that it was meant to be a mooring dock for dirigibles, or zeppelins, balloons lined with steel that were equipped with propellers for steering. The sad truth is that it never happened. According to the article ""The Mooring Mast"", the environmental conditions as well as safety condition, were too poor to accommodate. Apprently, the wind currents at such a high altitude are fears, and if a blimp were to be tethered to the top, quite a great deal of strain would be placed on the building frame. This is time-consuming and costly to fix. Also, there would be no practical way to weigh down the baloon without the risk of the falling on civilians. Not only that, but having air ships that low over urban areas was illegal. In short, the whole idea was wishful thinking, because it couldn't have happened." 3 3 3 +16192 6 "The builders of the Empire State Building faced many obstacles to allow dirigibles to dock there. For instance, in paragraph @NUM1 it talks about the Hindenburg bursting into flames over New Jersey + how much dangerous it would of been over a highly- populated areas such as New York." 2 1 2 +16193 6 "During any type of construction, the builders face some type of obstacles, as do the builders of the Empire State Building. One obstacle the builders faced in attempting to let dirigibles dock on the Empire State building is the high flammability they have. A German dirigible was destroyed by fire in New Jersey and if this would have happened in New York, with a more densely populated area, the accident would have been much worse. Another obstacle they faced, their greatest obstacle, was the power of nature. Air currents were violent, so the winds were constantly shifting and this would cause the dirigible to swivel around the mooring mast, even if it was tethered to it. One last obstacle they faced was an existing law that prevented airships to fly too low over urban areas, like New York. Seeing the obstacles they faced, the builders realized that being able to moor a dirigible to the mast on top of the Empire State Building just was not meant to be." 3 3 3 +16194 6 "In ""The mooring mast"" by Marcia lusted builders who tried to make it possible for dirigibles or ""blimps"" to tie up to the mooring mast of the Empire State Building faced some problems they didn't account for. These were variations of blimps they didn't plan for, safety issues and also laws they would have to violate to have a dirigible land. The builders when making the mast didn't think deeply about any of these things.The problems the builders would face would appear right after the mast went up. To start the differences in blimps between countries was a factor, because blimps in the @LOCATION2 used helium to keep the dirigible flying but in places outside the states they used hydrogen which is flammable. This is a major issue for a place like New York that is densely populated. Another safety issue that they can't control was nature, the high winds atop the building would move the back of the blimp around and also when landing the window may push the blimp into the mast which would puncture the dome. Both these safety reasons were why blimps are landed on the ground. However even without both of these reasons there was a legal issue, a law that stated that airships can't fly too low over urban areas. This would make it illegal to dock on the building.Having not considered all these things the builders put up the mast but unfortunately they would later have to face the differences in blimps, safety issues and legal troubles they didn't account for." 3 4 4 +16195 6 "The Empire State building was built to compete with the Chrysler building and to compete they created a mooring mast. The obstacles that restricted the dirigibles was: nature, the wind changes on top of the building were drastic, and some dirigibles had a large amount of hydrogen which is highly flammable. Another reason why was because it's illegal for aircrafts to fly low over urban areas. The examples above were all complications that restricted the derigibles to moor at the Empire State building." 2 2 2 +16196 6 "In the excerpt from ""The Mooring Mast"" by Marcia Amidon @CAPS1 the challenges of creating a Mooring mast on top of a 1,250 foot tall building are discusted. In the @DATE1's Al Smith, the govener at the time had the idea of makeng the empire state building equipted with its own landing dock for Dirigibles. Throughout the process the builders were faced with many obstacles in there attempt to allow dirigibles to dock on the empire state building. The first obstacle was getting the mast on top of the building. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" (@CAPS1 @NUM1). If the builders did do that it would cause too much stress to the building. The problem was solved after spending over @MONEY1 on a steal frame to support the mast.However, most of the builders problems were not able to be solved. Safety was a major issue, most dirigibles were built with hydrogen rather than helium, and hydrogen is highly flamible. It would be a huge problem if a fire occured over a densely populated area. Also the dirigibles would be too high up to be tied down. Also if the dirigibles did land there it would in violation of an existing law. Therefore the builders were faced with so many obsticles they were unable to build the mast." 3 4 4 +16197 6 "In the excerpt ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building face obstacles in attempting to allow dirigibles to land there. One major obstacle was safety, mainly because when foreign dirigibles flew in, they most likely contained hydrogen (highly flammable). After the Hindenburg crash they were more wary if something like that happened in a densely populated area. An unstoppable obstacle to the builders was nature; with the vicious winds getting tied up in releasing passengers would be hard enough. According to the article lead weights were used to land dirigibles in open land on crappy weather, but the builders didn't use them, so there was no chance of it falling and hitting someone. Through all this trouble the builders still had the most practical problem; ""law against airships flying too low over urban areas."" With this issue it was illegal to have a dirigible tied up on the Empire State Building so close to the ground. In conclusion, even though the mooring mast never worked out as planned, the builders went through looking at obstacles just for the thought." 3 3 3 +16198 6 "The competitive spirit of Al Smith, governor of New York, drove him and his architects to build a docking site for dirigibles atop the Empire State Building. Instead of seeing the daunting task which lay ahead, they saw the opportunity to become the epitome of modern travel. When deciding to build a mooring on top of the Empire State Building, the architects knew they'd face multiple obstacles. The first obstacle they faced with how to adjust the frame of the building to support the docking site. The architects knew that the building ""would have to be modified and strengthened to accommodate this new situation"" (par. @NUM1). They were able to overcome this obstacle but many more loomed up ahead. The wind and weather needed to be taken into consideration as well. ""The winds on top of the building were constantly shifting"" (par. @NUM2). Reluctantly the builders admitted to the inevitable obstacle posed by nature. The builders seems to realize how unrealistic this dream was. Two more obstacles lay ahead, and these would lay the mooring dock to rest forever. A floating dirigible above a densley populated city was an all around dangerous idea. It was noticed that hydrogen was highly flammable (par. @NUM3) and a fire would be detrimental to both the building and the city. The last obstacle they faced was the law, and they were unable to conquer this. They realized that there ""was an existing law against airships flying too low over urban areas"" (par @NUM4). The impossibility of the plan was realized for there were too many obstacles to face. The builders gave up hope but the moorings still looms atop the Empire State Building as a reminder of what could have been." 3 4 4 +16199 6 "The early @DATE1's was a time where everyone was out to find and build the next best thing. In @CAPS1, two tycoons were competing to build the tallest building in the world. Al Smith, the man creating the Empire State building, had an idea to make his building taller and more popular; build a mooring mast for dirigibles on the top of his building. Though a good and creative idea, the obstacles his architects would face would turn out to be more than they bargained for.first off, putting a mooring mast on top of the Empire State building was very unpractible without changing the whole design."" The steel frame of the Empire State Building would have to be modified and Strengthened to accommodate this new situation"", (@CAPS2 @NUM1). Also, the dirigible would put so much stress on the foundation of the building. ""The Stress of the dirigible's load and wind pressure would have to be transmitted all the way to the buildings foundation...,"" (@CAPS2 @NUM1). Nature was also a giant obsitacl these architects faced while building this. ""The greatest obstical to the suceessful use of the mooring mast was nature itself"", (@CAPS2 @NUM3)As you can see, these architects faced many challenges while building this mast, that saddly never paid off in the end." 3 3 3 +16200 6 "The obstacles the builder of the Empire State Building faced in attempting to allow dirigibles to dock there are, The govenment people in Washington was think about some safe way of mooring airships of the mast. He never wanted to reach the top cause he don't want an accident to happen and than something happen. The wind on top of the building were constantly shifting due to violent air currents. The weights of the build, it would be dangling high above pedestrian on the street, it was neither practical nor safe. It was also a law." 1 2 2 +16201 6 "In order to dock these dirigibles, the builders would face many serious problem. These problems in which builders would be forced to deal with is when, a city, and framework. First off, the building frame was too weak to tied to a dirigible. This is because it ""would add stress"" to the frame which could ""be transmitted all the way to the building's foundation."" Due to this they would be forced to spend ""over sixty thousand dollars"" to strengthen the frame. A second issue the were faced with is that it is in a city. Laws had prohibited ""flying too low over urban areas"", let alone ""tie up to the building"". Due to this fact, they would be forced to design a way for it to dock. Finally, ""violent air currents"" would cause more issues. The builders would have to deal with building a piece mooring equipment that could with stan the wrath of ""nature itself"". All in all, this plan would force many issues on the builders, in order to function" 3 4 4 +16202 6 "Right from the start, the Empire State Building had architectural demands that posed several obstacles for the builders of it, especially when it came to building the mooring mast for dirigibles. Initially, the Empire State Building was built only for inside use, so the mast would add stress to the buildings frame and possibly damage it. Secondly, the Empire State Building was built in a very densely populated area so if any malfunctions were to occur such as the Hindenburg in 1937, many people could be killed down below. Another problem posed to the mooring mast was nature itself. Winds on top of the building were constantly shifting, and they were very strong as well so any dirigible mounting on the building was threatened by swiveling and flying off when landing. The masters in the architectural era had made a true mistake when they planned the construction of the Empire State Building, and it never could have reached its potential for many obvious reasons." 3 3 3 +16203 6 "The builders of the Empire State Building faced many obstacles while trying to make a for dirigibles. The first obstacle was creating the mooring mast. In @CAPS1 four it says, ""This dream of the aviation pioneers was travel by dirigible, or zepplin, and the Empire State Building was going to have a mooring mast at its top for docking these new airships."" The Empire State Building's frame wasn't strong enough for the mooring mast, so the builders had to modify it. In @CAPS1 nine they say, ""The steel frame of the Empire state Building would have to be modified and strengthened to accommodate this new situation."" An obstacle that stopped the use of the mooring mast was the wind. In @CAPS1 fifthteen they were not able to dock, ""the U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds. another obstacle they faced was safty. In @CAPS1 @NUM1 they describe that, ""most dirigibles from outside of the united states used hydrogen rather than helium, and hydrogen is highly flammable. There are problems that the builders could fix and could'nt fix." 3 3 3 +16204 6 The builders faced some problems such as weather conditions. The winds were violent from changing wind currents. Another was the law of how close an aircraft could be to a building. Another problem was the building had to be strong enough to hold a blimp in place. The builders would have to strengthen the buildings skeleton in order for it to work. This they did. Another problem is some foreign Blimps are made with hydrogen. This makes them highly flamable. With others made of helium. The hydrogen could catch fire and fall onto pedestrians. These are the problems they faced. 3 2 3 +16205 6 some of the obstacles that the builders faced while allowing dirigibles to dock there would be that they had a lack of suitable landing area. one of the main obstacles that occurred would be nature. the shifting of the Air Currents were constanily shifting. the back of the ship was constanily shifting. 2 2 2 +16206 6 The builders of the empire state building made it possible for dirigibles to dock on the top of the building because it made the building A lot bigger than it was. It lost its position As the biggest and then got it back by creating the dock for dirigibles (Blimps) 1 0 1 +16207 6 "In The Mooring Mask by Marcia Amidon @CAPS1 the builders of the Empire State building faced Problems trying to dock the dirigibles. One big obstacle is that the dirigibles were a safety hazard. For example ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" If a dirigible had caught on fire while docked in such a highly populated area many people could have been killed. Another issue was nature, ""The winds on top of the building were constantly shifting due to violent air currents."" This would cause the back of the dirigible to swivel around, making it unsafe. The builders faced many obstacles and unfortunately could never dock a dirigible at the Empire State building" 3 3 3 +16208 6 "In the building of the mast that was to be used to dock and refuel dirigibles the builders and arcitect @CAPS2 many daunting problems For one thing a simple mooring mast could not be placed on the roof of the Empire State Building. The mast would add to much stress to the buildings frame work and cause it to colapse, along with the imense wind power. Another problem was that ""most dirigibles from outside of the United States used hydrogen rather then helium to inflate there dirigibles. Unlike helium, hydrogen is highly Flammable. There was also a law that stated that airships could not @CAPS1 too low over urban areas One of the Final and most important reasons builders @CAPS2 obstacles was the constantly shifting wind due to violent air current. Even with the dirigibles tethered to the mooring mast the back end would swivel around the mast along with the wind." 4 3 4 +16209 6 "There are many obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. one issue was the stress the dirigible would add to the building. over sixty thousand dollars modifications had to be made to the buildings framework. Also, most dirigibles contained hydrogen which is highly flammable and dangerouss. Another dangerous aspect is that this huge piece of material would be dangling high above pedestrians, as opposed to there much safer usual landing of open fields. Lastly, there was an existing law against airships flying too low over urban areas, which would also cause docking issues." 3 3 3 +16210 6 "The biggest obsticle was safely. The foriegn dirigibles use Hydrogen (@NUM1) gas as a means to fly but hydrogen gas is highly flamable. The owners of the Empire State Building were consernd because of what happened to the German dirigible, Hindenburg, over Lakehurst, @LOCATION2. The Hindenburg bursted into flames and in less than one minute there was no dirigible, just some charred scrap metal. If this incident were to happen in a highly populated area like downtown New York City it would create a high number of casualties and fatalities." 1 1 1 +16211 6 "The builders of the Empire State building faced obstacles in attempting to allow dirigibles to dock there because of ""nature itself"" and the past problems that happened.An obstacle that the builders faced was providing safety. After the fire in Lakehurst, @LOCATION3, the builders were worried about the issues that might occur, especially when it takes place in downtown New York.Another obstacle was ""nature itself."" Because of the mooring mast being on top of the building, the builders were frightened because of the violent air currents.The last obstacle was that it was a law that airships could not fly too low over urban areas. So it was illegal for an airship to be tied on a building.The builders faced three main obstacles - ""Nature itself,"" a past accident, and the law. Unfortunetly, they were unable to continue their work because the obstacles were just too strong." 3 3 3 +16212 6 "Allowing dirigibles to dock at the Empire State Building would have been completely different from anything before, but never continued because of obstacles. The builders faced issues such as safety issues, harnessing nature, and the law itself. The dirigibles presented safety issues including fire, which occurred and builders ""realized how much worse that accident could have been"" ( @NUM1) Another safety issue was keeping the blimps stabilized, which would have needed free hanging weights over the city. Yet another obstacle was the power of nature; it would have been nearly impossible to keep the dirigible in place. Because of the wind ""the back of the ship would swivel around... the mooring mast"" ( @NUM2). The new idea was a good one but the law also was against it, because of how low the blimp would be. As stated, ""This law would make it illegal for a ship to ever tie up to the building..."" ( @NUM3). The masting moor of the Empire State Building caused too many obstacles for the project to be completed. Although it would have opened new doors for means of travel there were too many safety violation for it to be worth while." 4 3 4 +16213 6 "While attempting to build a mooring dock on top of the Empire State building, the builders had some problems to overcome. The winds in New York City were too strong to fly a dirigible in, one driver said ""the captain could not take his hands off the control levers."" @CAPS1 so close to buildings in a dirigible was illegal for fear of crashing into ""sharp spires of other buildings in the area."" The only way to prevent the dirigible from swinging violently was to put large lead weights on it, but that would not be practical over New York. In conclusion, docking a drigible on the Empire State Building was too difficult and it never happened." 2 1 2 +16214 6 "The builders had many obstacles while building the Empire State building. They had competition with the Chrysler building because of it's height. Al Smith, the constructor of the Empire State wanted to build the tallet and most famous building in the world. He made the buildings seem invincable. He even put a mooring mast on it so things could land on it. But it was never suppost to surve that purpouse, It was only created for publicity. Because about the mooring mast the building would have failed to become popular. Al Smith did everything to make that building what it is today and it is still standing in New York city today." 0 0 0 +16215 6 "There were many obstacles the builders of the Empire State Building faced when trying to allow dirigibles to land there. One is that the weight of the zeppelin, when tied down to the building, would put immense pressure on the framework and the pressure even would have reached the foundation. The cost of reworking the frame work to make it safer would have been @MONEY1. Another obstacle was public expectations. The Building was supposed to change how we travel forever, all while being a beautiful, magnificent structure. Surely the pressure to build the tallest tower in the world got to them. These expectations were so unreal because most people didn't know enough to understand the safety risk involved." 1 2 2 +16216 6 "The obstacles the builders of the Empire State Building was not easy. They had to draw out the plan for the mooring mast. The builders had to think about the thousand-foot dirigible that would be mooring at the top of the Empire State Building. They had to think about the wind pressure and of the load of the dirigible. The builders had to come up with brilliant ideas. The ideas were ""a shiny glass and chrome-nickel stainless steel tower"" (@CAPS1 paragraph @NUM1) on top of the building. Builders had to build and think of the elevators and stairs to bring the passengers of the dirigible to the eighty-sixth floor. The eighty-sixth floor had baggage and tickets. They would come from the one hundred second floor. The builders had a hard job because they had to think of ideas on how to build the mooring mast of the building They also had to think about, how to bring the passengers in and out of the dirigible. The builders faced obstacles as the construction of the building was in process." 1 3 1 +16217 6 "The Empire State Building at the time it was being built was designed to be the tallest building in the world. However this was not an easy task. The workers had one especially difficult obstacle overcome, @CAPS1 dirigibles, or blimps, to dock there. The plan was to build a mooring mast on top of the building which would allow dirigibles to dock. If this could be achieved it was said to make the Empire State Building, ""equipped for an age of transportation..."" However many problems occurred. The dirigibles weight would have to be able to be held safely. The architects knew the weight would put stress on the buildings frame. The workers had to modify and strengthen the buildings framework. The workers also built the mast out of a strong, shiny, chrome-nickel. Another obstacle was faced when the mast was taken in consideration. The framework was originally stopped at the eighty-fifth floor. The workers had to finish the roof before the mast could be framed. Although the workers succeeded on making a safe mast, the ""Aviation Pioneers Dream"" never came to be." 2 3 3 +16218 6 "Al Smith saw an opportunity for his Empire State Building. He wanted to add a mooring mast to the top of the building so that dirigibles could anchor there for refueling or service and let people on and off. In order to do this, the steel frame of the Empire State Building would have to be ""modified and strengthened to accommodate this new situation."" They would have to spend over sixty thousand dollars in modifications of the framework. Builders had to make it 102 floors and also create a glassed-in observation area along with an open observation platform, furthermore, they had to complete the roof and then move on to building the steel mast with glass windows. After all that time and money spent in re-creating the building, the dirigibles couldn't dock there. The wind was so strong that the back of the ship would always be moving. Also, there is a law that airships cant fly too low over urban areas. It wasn't worth it in the end." 2 3 3 +16219 6 "Due to Several factors the Empire State Building faced many obstacles trying to allow dirigibles to dock there. One serious obstacle was that the dirigible moored at the top of the build held only by a tether would stress the buildings frame. In paragraph nine it says ""the Empire State Building would have to be modified and strengthened to accommodate this new situation. Over sixty thousand dollars worth of modifications had to be made to the framework.""Another complication was nature itself. Above the city were strong winds which were constantly shifting due to air currents. This made it impossible to dock. As well as nature working against the mooring mast so was the law. In paragraph fifteen it says ""on existing law against airships flying too low over low urban areas."" Which made it illegal for an airship to ever tie up the the Empire State Building." 3 3 3 +16220 6 "The Empire State Building face a lot of obstacles like in paragraph @NUM1, ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" This was one of the many trouble there was for dirigibles to land on the Empire State building. In paragraph @NUM2, They @CAPS1 to realize that the mooring mast of the @ORGANIZATION1n't of been build, because it wouldn't work."" The Mooring mast of the Empire State Building was destined to never fulfil it's purpose, for reason that should have been apperent before it was ever constructed. The reason that mooring mast was because of nature. As you will see on paragraph @NUM3, ""the Wind were shifting due to violent air currents."" The mooring mast had a lot of problems scinc the beginning when Al Smith put a top to the building making it 1,250. It was unsafe for planes. When they wanted to make the Dirigibles land on top of the building. Dirigibles that came from another countries had hydrogen, which is highly flammable. The problem that worked anginst the mooring mast being buit was wind on top of the building @CAPS2. Because of the air currents. These are the reasons why the mooring mast was unsuccessful on the Empire State Building" 3 3 3 +16221 6 "The obstacles the builders of the empire state building faced in attempting to allow dirigibles to dock there were ""The architects could not simply drop a mooring mast on top of the empire state building's flat roof. A thousand-foot dirigble moored at the top of the building help by a single cable tether would have stressed to the building's frame. The stress of the dirigible's load and the wind pressure would have to be transmitted All the way to the building's foundation which was nearly eleven hundred feet below"" @CAPS1 are the main obstacles the builders of the empire state building faced in attempting to allow dirigibles to dock" 2 2 2 +16222 6 "When the Empire State Building was built, new ideas came into the heads of the architects. Unfortunately, the vision that they had of making it into @NUM1 dock for limps proved to be unrealistic.The first challenge that they came across was how to attach a dock for a blimp to the building without creating such stress to the building's framework. The building could potentially collapse with the added weight unless sixty thousand dollars' worth of framework strengthening was made.Another obstacle that the architects faced was nature. At the top of the Empire State Building, winds were so strong that the blimps would be swaying too violently to allow for the pilots to dock them safely. The last reason that blimps could not be docked at the Empire State Building was that there were laws against aircraft's flying that low. It was actually consitered illigal to dock the blimp there because it would have to be flying low enough to approach the building. Due to these factors, the Empire State Building was unable to become a dock to support blimps." 3 3 3 +16223 6 "From my reading, I understand that the difficulties of building a mooring dock atop such a structure as the Empire state building were numerous. an obvious one was structural stability throughout the entire building. Paraphrased from the passage, the tension from the dirigible pulling on the tether would cause stress on the building's frame. another was controll of the dirigible during docking. The passage explained that the winds above the empire state building would shift violently and frequently. Safety as well as an issue, especially after the Hindenburg accident in New Jersey, when a German zeplin caught fire and exploded. " 2 3 3 +16224 6 "The obstacles the builders faced in attempting to allow dirigibles to dock on top of the Empire State Building were building a mast, dirigibles docking on top of the building, and a law for dirigibles. The architects and builders spend a lot of time building the mooring mast on top of the Empire State Building. Dirigibles were trying to figure out how to dock to the building yet most dirigibles failed. A law the dirigibles were unable to dock on urban areas in case of a problem within the dirigibles. These were the obstacles the builders faced in an attempt to create a mast and allowing dirigibles to dock on top of the Empire State Building." 2 2 2 +16225 6 "The obstacles the builders faced building the Empire State Building were; the safety, the time.The safety of building the top the Empire State Building got in the way because, it was so tall that it would be hard to lift up the glass and steel parts to the top. Another reason why it was unsafe because if some of the glass or steel part got pushed off the people down be low. Another reason is the blinps flying to close to the buildings and hitting one of them. Also the passengers going on and off of the blinp; they needed to find away that the passengers wouldn't get hurt.The time that they had to build the top of the Empire State Building was not long enough. ""it's on the level, all right. No Kidding. We're working on the thing now.""" 1 1 1 +16226 6 "The builders of the Empire State Building faced many @CAPS2 in trying to allow dirigibles to dock there. The builders had a real hard time with this construction of the morning mast. They had to deal with the frame work of the building. A big obstacle they had was that they didn't have a suitable landing area for the dirigibles. They didn't just have to deal with man made @CAPS2, but nature's @CAPS2 as well. The wind on the top of the building made it nearly impassible to land safely. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation"" (@CAPS1 @NUM1). The constructors of the building realized that to make this plan possible they would have to redo the frame of the building. The building wasn't even designed to be able to allow dirigibles to land on the top of the building. The workers were blind to see all the possible problems with the design of the moorning mast. The @CAPS2 the workers had to go through were to much and the landing of the dirigibles never worked." 3 3 3 +16227 6 "to allow Dirigibles to @CAPS1 on the empire state @CAPS2 builders would have to face tough obstacles. One obstacle would be that technology was growing in the 1930's by the time they were @CAPS3 with the @ORGANIZATION1 and planes were invented. ""the as yet unsolved problem of mooring airships to a fixed mast at such a height made it Desirable to Postpone to a later date the finel installation of the landing gear."" this @CAPS4 proves that they already made technology to land Dirigibles Safely but, @CAPS5 to see if the mast really worked. This @CAPS6 that technology was invented @CAPS7 than the builders could even make the mast at the top of the empire State building. Later on the figured that a dirigible would be unsafe At the top of a mast becuse the wind would blow it arond and crash into the Building. It was @CAPS8 to begin with." 1 1 1 +16228 6 "In the excerpt The Mooring Mast by Marcia Amidon @CAPS1 the builders of the Empire State Building had to face a lot of obstacles to allow dirigibles to dock there. One obstacle that the builders had to face was when they were building the mooring mast to hold the dirigibles. The single cable tether that would hold the dirigibles would add stress to the buildings frame. The builders had to come up with a new idea that would not put stress on the Building. Another obstacle the builders had to face is it would be safe for the passengers. Since the building is so high up the fear of falling out of the dirigible made them worry. One last obstacle that the builders had to face is the ""existing law against airships flying too low over urban areas,"" it made it illegal for a ship to ever tie up to the building. The builders faced many obstacles while building the mooring mast." 4 1 2 +16229 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock at the top of the building. The first obstacle was that the steel frame of the Empire State Building would have to be modified. The excerpt says, ""over sixty thousand dollars' worth of modifications had to be made to the building's framework."" Another obstacle was safety. After the German dirigible Hindenburg caught on fire, builders realized how bad the devastation would be if that happened over densely populated New York City. Nature was also a large obstacle. Shifting air currents at the top of the building would make the dirigible very unstable. It would be dangerous to have an unstable dirigible hanging above crowded city streets. Finally, at the time there was an ""existing law against airships flying too low over urban areas."" These obstacles are were the architects of the Empire State Building from attempting to allow dirigibles to dock there." 4 3 4 +16230 6 "Builders of the Empire State Building faced a few problems when attempting to allow dirigibles to dock there One problem was that a large dirigible moored at the top of the building, held by one single cable tether would add stress to the frame of the building. The stress of the dirigible and the wind pressure would have to be transmitted almost eleven hundred feet below, to the building's foundation. This in turn means that the builders would have to go back and modify the frame of the Empire State Building in order for it to be strong enough to accommodate the dirigibles. Over sixty thousand dollars' worth of modifications would have to be made. As construction proceeded, once the framing had been complete up to the 85th floor, the roof had to be completed before the framing for the mooring mast could take place." 3 3 3 +16231 6 "Some of the obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there were safety, nature and the law. One of the greatest obstacle was safety. Since blimps needed to be lighter than air, most are filled with helium or hydrogen. ""Most dirigibles from outside the @LOCATION1 used hydrogen rather than helium and hydrogen is highly flammable."" This is a big obstacle because if the blimp is high off the ground of @CAPS1 and then catches on fire, that could end badly another obstacle was nature; due to violent air currents' which made buildings sway. This is also bad because if the blimp moves or the building sways into the building than one or the other could break. The last obstacle was the law, which was against 'airships flying too low over urban areas'. So if they did build the mast, it would be even illegal to get a dirigible close. So those are some obstacles builders faced in building the Empire State building to dock blimps." 3 3 3 +16232 6 "There were many obstacles the builders went through in trying to dock the dirigibles at the top of the Empire State Building. One to be exact would be the wind, although they would be tying the dirigible down the back was not and the wind would blow @ORGANIZATION2 decide. Which would affect the building. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" With this discovery they had to make some changes to the building, which would cost them more money. Other obstacles they went through were actually being able to have it dock, because it's a law that you can't do that with some he people below. ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" @CAPS1 are just a few of the obstacles that the architects went through out trying to dock dirigibles." 3 3 3 +16233 6 "First of all the Empire State Building wasn't made for landing dirigibles on top of it. The architects had to redesign the whole top of the building. When they did that they never bothered to put proper landing gear down for the dirigibles. It was a bad day out, weatherwise, then it would be very difficult to land a dirigible without the proper landing gear. The dirigible is over @NUM1 feet long, without a very large landing service, it would be dangerous for the people in the dirigible, the people on the ground, and the people helping land the dirigible." 1 2 2 +16234 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. A problem they faced was having to build the mooring mast because without it the derigible would add stress to the building's Frame. In paragraph @NUM1 it says ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings Frame."" Even though the builders made the mooring mass it was to unsafe to moore dirigibles from the building. ""The greatest reason was one of safety: Most dirigibles From outside of the United States used hydrogen rather than helium, and hydrogen is very flammable."" In all the builders were faced with to many obstacles and could not manage to moore the dirigibles to the building." 2 3 3 +16235 6 "Based on the excerpt, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were safety, existing laws, and the changes in air currents. Many of the dirigibles ""from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (@NUM1). The owners of the Empire State Building realized that a much worse situation would happen it were to catch on fire ""above a densely populated area"" (@NUM1). Another practical reason why dirigibles cald not moor at the top of the building was that there was ""an existing law against airships flying too low over urban areas"" (@NUM3). The airship would be ""dangling high above pedestrians on the streets"", which is pretty unsafe (@NUM4). The last obstacle that the builders faced was the shift in air currents on top of the building. If the dirigibles were tied to the mooring mast, ""the back of the ship would swivel around and around""(@NUM4). This could be dangerous for pedestrians on the street, as well as passengers coming on and of the dirigildes. These practical reasons called for the idea of the mooring mast to be diminish." 3 3 3 +16236 6 "The obstacles that the Empire State Building faced were alot. So that the dirigibles; blimps could dock there.One obstacle was building more floors. They had to build more floors so that the people on the dirigibles could have somewere to load and unload on the ship.Another obstacle was building steel frames from the 85th floor to the 102nd floor. This costed them over @MONEY1 worth of modifications, that had to be done to the buildings framework" 1 1 1 +16237 6 "@CAPS2 on the excerpt, there were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle was that the architects "could not simply drop a mooring mast on top of the Empire State Building's flat roof." This would cause stress on the building, so the "steel frame of the Empire State Building would have to be modified and strengthened." Another obstacle the architects faced was a concern of safety. In the excerpt it says, "Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable." @CAPS1 the greatest obstacle was "nature itself." On the top of the building, the winds were constantly shifting because of the violent air currents. In the excerpt it states, "the back of the ship would swivel around and around the mooring mast." @CAPS2 on the excerpt, these are the many obstacles faced by the architects." 3 2 3 +16238 6 "the Empire State building faced many problems.To dock a dirigible, It needed a good/safe dock site. Also, the wind so high up would make it nearly impossible for a dirigible to stay docked. Finally, the dirigible would be very hazardous to the people below because It was extremely Flammable." 2 2 2 +16239 6 "In this fascinating story ""The Mooring Mast"" written by author Marcia Amidon Lsted tell about the Empire State building, & it's enormousity. Although constructing this building took workers time and strength they didn't exactly get the purpose of the mooring mast. There were many reasons why they faced conflicts in attempting to let the dirigibles dock in the mooring mast. For example the dirigible was made up of helium rather than hydrogen, & hydrogen is highly flammable, so if they were to dock in downtown New York City it would have been a complete tragedy. Another reason is because dirigibles were moored in open landing fields, so it could weighted down. Author Marcia writes ""but using these at the empire State building, where they would be dangling high above pedestrians on the streets was neither practical nor safe."" That's how & there's many more reasons why workers have trouble building the mooring mast." 3 2 3 +16240 6 "In the excerpt, The Mooring Mast by Marcia Amidon Lsted, the Empire State Building faced some obstacles while attempting to allow dirigibles to dock there. To begin with, one of the greatest obstacle was the act of nature. ""The winds on top of the building were constantly shifting due to violent air currents"", this made it hard for the dirigible to have a safer landing. The other obstacle was that there was a law, that went against airships flying low over urban areas. In conclusion, the mooring mast of the Empire State Building was not use for landing airship such as the dirigible because it was to dangireous. In addition, they used the mooring mast for other safe purpuses." 2 2 2 +16241 6 "In the beginning the use of dirigibles seemed like a good idea. They could be the new form of transportation and appeared to have no flaws. As the development of dirigibles progressed it showed signs of problems. The engineers planned on mooring the dirigible to the mast of the Empire State Building, but that would have added a lot of stress to the building's frame. They next found that safety was an issue. Most dirigibles used hydrogen instead of helium which was flamable. Also they would have to use lead weights to hold down the dirigible when it was being moored. It would be very dangerous to have lead weights dangling over pedestrians on the street. With out the lead weights the dirigible would simply swivel in the air with a possibility of puncturing its shell. Finally there was a law against airships flying too low over urban areas. This made it illegal for the ship to even approach the building. There was high hopes for the use of dirigibles, but in the end they had more cons then pros." 3 3 3 +16242 6 "In an attempt to build a dirigble destination, in the Empire State Building, the architects had to deal with @CAPS3 problems like a dirigble mishap or simply nature itself.@CAPS3 problems like a blimp crash would be costly, lives would be lost in the densely populated city and the explosion could destroy buildings around and to the Empire State Building itself. To prevent this from happening the Government had already made a law that banned flying aircraft from going to close to urban areas. To build this @CAPS1 the architects would have to break laws or bend rules. Another conflicting idea, that disrupted, plans for a dirigble docking station would be nature, harsh winds could easily sway a blimp, and swaying could cause the blimp to punture on a nearby building, ""Even if the dirigble were tethered to the mooring mast, the back of the ship would still swivel around the mooring mast."" (@CAPS2 @NUM1) The swiveling as mentioned earlier could hit near by building and harm civilians. The @CAPS3 problems and laws that kept the Mast from being created should have been realized before, the idea will never be possible." 2 3 3 +16243 6 "The Empire State building is known as the worlds tallest building. The building is located in New York. Al Smith the head of building the Empire State building, added a top or a hat to the building, that made the building be even more distinctive than any other building in the city. The Empire State building was equipped for transportation. The transportation was dirigible, or zeppelin. The Empire State building had a mooring mast at its top for docking the new airships. An obstacle that the Building faced was New York's lack of a suitable landing area. Al seen an opportunity to get people to and from the Empire state building. Al seen it as something creative and new. The mooring mast of the Empire State Building was never fulfilled. No thought of safety was thought about before constructing the idea either. The greatest reason was most dirigibles from outside of the United States used hydrogen rather than helium which is a higher @CAPS1 for flames. Also nature itself was a big problem the idea had safety problems and couldnt @CAPS1 flames in Downtown New York" 2 3 3 +16244 6 Based on the excerpt the obstacles that the builders faced. was that they had to go to the base of the building to make it taller. This is The obstacles that they faced. 0 0 0 +16245 6 "Many obstacles presented themselves while builders attempted to build a landing dock for dirigibles on top of the Empire State Building. The obstacles included the publics safety, @CAPS1 that were already put in place, and the unpredictable weather.Many dirigibles use hydrogen gas which is very flammable. After the German Hindenburg went down it became apparent that the publics safety would be in danger from the vessels bursting into flame over crowded streets. At the time there were also @CAPS1 forbidding aircrafts from traveling too low over urban areas and the landing dock was too low. The final problem was the unpredictable weather. Piolets were worried the strong winds would blow the tethered vessel into another building or into sharp spires that would ruin the vessel and put the people below in danger. Many obstacles hindered the loading dock on the Empire State Building." 3 3 3 +16246 6 "Based on the excerpt, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were high wind currents, and an already existing law that was against airships flying too low over urban areas.The first reason dirigibles couldn't dock was because of overly powered wind currents on top of the Empire State Building. It was mentioned in paragraph @NUM1 that ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigibles were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. Dirigibles moored in open landing fields be weighted down in the back with lead weights, but using these at the Empire State Building where they would be dangling high above pedestrians on the street was neither practical nor safe."" @CAPS1 was being said here was that it would be unsafe for people if the dirigibles were going to dock near the Empire State during violent air currents.The other reason why dirigibles couldn't dock was because of the law saying they were against airships flying to low over urban areas. @CAPS1 this law made it illegal for the ships to tie up to the building and even get to close to the area. It was said in paragraph @NUM2 that dirigibles did try to reach the building."" In December 1930 the U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds. Fearing that the wind would blow the dirigible onto the sharp spires of other buildings in the area which would puncture the dirigible's shell, the captain could not even take his hands off the control levers. Since the dirigible was @CAPS1 big it couldn't get close enough because of sharp objects on other buildings.It is clear that the builders of the Empire State Building went through challenging obstacles in attempting to allow dirigibles to dock there. All because of very violent wind or air currents and the already existing law against airships flying to low over urban areas." 3 3 3 +16247 6 "The builders of the Empire State Building faced many different obstacles to allow dirigibles to dock there. The major obstacle to allow dirigibles to dock there was the lack of a suitable landing area. To allow dirigibles to anchor at empire state building for several hours a mooring mast had to be added to the top of the building. The architects could not simply drop a mooring mast on top of the empire buildings flat roof, so rather than building a utilitarian mast without any ornamentation, the architects designed a shiny glass and chrome nickel stainless steel tower that would be illuminated from inside. Once architects had designed the mooring mast it could be complete and useful. The greatest obstacle to the successful use of mooring mast was nature itself. Those are some of the obstacles the builders had to face to allow dirigibles to dock on the empire State building." 2 2 2 +16248 6 "After planning and building the mooring mast on top of the empire state building, the developers found many problems that were not thought of earlier. They hadn't thought about the flammability of the gases inside of the dirigibles. Nor had they remembered the ""law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to a building"" (lines @NUM1). Also, the heavy winds that would be found that high above the ground would certainly prove to be a danger to all the airships. If they had hit a neiboring building the results could be disastrous." 2 3 3 +16249 6 "The builders of the Empire State Building faced many obstacles in their attempt to allow dirigibles to dock there. One problem the builders faced was that a dirigible being moored to the top of the building would add stress to its frame. In paragraph @NUM1 it says ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly @NUM2 feet below."" The builders had to make sixty thousand dollars worth of modifications to strengthen the frame of the building. Another major problem they faced was safety. ""Most dirigibles from outside of the United States use hydrogen rather than helium."" Hydrogen is extremely flammable and after an incident with a German dirigible being destroyed, they realized how dangerous it would be over a densely populated area. Another reason was nature. In paragraph @NUM3 it says ""The winds on top of the building were constantly moving."" This made it hard to tie up and keep the aircraft steady for passengers to get off safely. Even a navy pilot ""could not get close enough to tie up because of forceful winds."" There was even a law against airships flying too low over urban areas. The mooring on top of the Empire State building was destined to fail because of all the obstacles that the builders faced." 4 4 4 +16250 6 "In the excerpt, ""The Mooring Mast"" by Marcia Amidon Lsted, the builders went through obstacles to allow the dirigibles to dock in the @ORGANIZATION1, the builders had to redesign the top of the Empire State Building. They had to make it taller and more suitable for the dirigibles to land. They went through problems because they were not sure if the dirigibles would fit. Second, the had to design the mast. The builders had to design a whole other part for the dirigible. The builders also had to spend sixty thousand dollars into building the mast. The builders faced that big obstacle. Third, the builders also made a stainless steel tower for the docking of the dirigibles. This was an obstacle because the had glass and chrome-nickel stainless steal on the tower. The builders went through many obstacles for the dirigibles to dock, when in the end the dirigibles never did get a chance to dock The builders should ""Take a bow, because it's over now""" 2 2 2 +16251 6 "The builders of the Empire State Building faced many obstacles and allowing dirigibles to dock there like safety, nature, and existing law. In the excerpt the author tells how many dirigibles use hydrogen which is very flammable. That makes it very dangerous to dock them on the Empire State Building because they could get in an accident, and since New York is so densely populated it would probably harm many people. People's lives shouldn't be risked just to land a dirigible. Another problem builders face was nature. In paragraph @NUM1 the excerpt states ""The winds on top of the building were constantly shifting due to violent air currents."" This would mean the dirigible would just be dangling way above New York and winds could get dangerous very fast because it was so unpredictable. According to the excerpt this was neither practical nor safe. To add to all of these obstacles builders didn't consider an already existing law that is against airships flying too low over urban areas. So that meant it would be illegal to dock a dirigible on the Empire State Building. Builders faced so many obstacles about allowing derigibles to dock on the Empire State Building it just wasn't meant to be." 4 4 4 +16252 6 "While builders tried to figure out a way for dirigibles to dock at the Empire State Building, there were some obstacles faced. If a dirigible was held by a single cable, this would add stress to the building's frame. The dirigible would have to be cabled at the top which was also difficult because of the Empire State's flat roof. Also weather was a huge obstacle. ""The winds on top of the building were constantly shifting due to violent air currents."" (@CAPS1 @NUM1, line @NUM2) The wind would cause the dirigible to sway and not be very stable. Builders had to also keep in mind that using the building could be harmful to pedestrians as well, the dirigibles would be too close to the ground. The planning of where these aircrafts to land and re-fill was not an easy task for the builders." 3 2 3 +16253 6 "In the excerpt, The Mooring Mast by Marcia Amidon Lsted, nature, unsafe docking conditions and pre-existing laws against dirigibles were just a few obstacles the builders of the Empire State Building faced. The main obstacle ""to the successful use of the mooring mast was nature itself"". On the top of a building so high the wind is always switching directions which would cause the dirigible to ""swivel around"". Blimps or dirigibles always landed in open fields and could be weighted down with lead weights, but using this technique ""where they would be dangling high above pedestrians... was neither practical nor safe"". The builders of the Empire State Building also came across ""an existing law against airships flying to low over urban areas"". Now this law made it illegal for any airship to dock or tie up to the building. Attempting to allow dirigibles to dock at the Empire State Building was neither safe, practical or legal." 3 3 3 +16254 6 "The builders of the Empire State Building had many obstacles they had to face in order to fulfill the @ORGANIZATION1. The Empire State Building is @NUM1 feet tall which made for some problems. Lsted stated, ""The greatest obstacle to the successful use of the Mooring Mast was nature itself. The winds on the top of the building were constantly shifting due to violent air currents."" The wind speed on the top of the Empire State building would be terrible because the Dirigible's tail is basically weightless and it would move around violently which could make the support beams give out, or could put people's life in danger below. Lsted said, ""But using these at the Empire State Building; where they would be dangling high above pedestrians on the street is neither practical nor safe."" Another reason as to why the Mooring Mast can not be constructed is the law against airships flying too low over urban areas. Lsted stated, ""This law would make it illegal for a ship to ever tie up to a building or even approach the area."" It is not legal for the Dirigible to even be in the viscinity of the building which makes it impossible to do." 3 3 3 +16255 6 "The future of transportation is a matter that any architect has discussed at one point. Whether reality is taken into account, that is another subject. Al Smith had the challenge of make the dream of docking dirigibles, into a reality. Although Smith had high hopes for the project, many obstacles stood in the way of the construction of the dock. One problem is stated in paragraph fourteen, ""the greatest obstacle to a sucsesful use of the mooring mast was nature itself."" Wind power was not taken into account at the time, and neither was the fact that thousands of people in downtown New York are put in danger. In conclusion, dirigibles soon became much more useless with the spark of the airplane and soon died along with the dreams of the mooring mast.Another problem that stood in the way was a law stating, that airships cannot fly to close to urban areas. This destroyed any plans of the mast because not only was it risky to build, but it was also illegal. What was once a glimphs of the future soon turned into nothing as @PERSON1 finally confronted the public in saying that the construction will be post-poned. The future of transportation took a sharp blow, but with the new succession of the airplane, anything seemed possible." 3 2 3 +16256 6 "The Empire State Building was in construction the building passed for many obstacles. First, because they wanted to do the biggest build in the world and they had to work hard. The State building was destined to never fulfill its purpose for reason that should have been apparent before it was ever constructed" 0 0 0 +16257 6 "Despite all hope and anticipation surrounding the construction of the mooring mast atop the Empire State Building, the project was never destined to be a success. In ""The Mooring Mast"" by Marcia Amidon Lsted, there are many obstacles described that the builders faced as they attempted to allow dirigibles to dock on the mast. The first major obstacle that the builders came upon was that when a dirigible was mounted onto the mooring ""the stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation"". This obstacle caused the need for an abundance of extra support on the frame needed to maintain sturdiness of the building. The other, and arguably greatest obstacle that the builders faced were the rapid wind currents that surrounded the building. The winds caused problems for the dirigible because ""even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"". This caused a major design flaw for the builders in the way that they would have to maintain control and safety of the dirigible as it was docked by the mooring. As much as the plan dwarfed others of its time, it was short-lived. The plan had far too many obstacles to overcome and serves better today as a memorable characteristic of the Empire State building." 3 3 3 +16258 6 "Obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were problems such as strong winds a weak structure and public safety. The strong winds would almost make it imposible to hold it steady at the top while the weak structure would almost make it imposible to hold saflley at the top. with all of these hazards it is compleatly unsafe for people to ride, dock, and board these massive dirigibles at the top of the Empire State Building." 3 2 3 +16259 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The first, it says the building's foundation will be more stress with a thousand-foot dirigible docking. For example ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame. The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation."" The second, it says that it's really dangerous if they take place above the building. For example, ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York. ""@CAPS1, it says the winds on the top of the building are so strong. For example ""The winds on the top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" In conclusion, they still face to many obstacles, so the idea which let the dirigibles dock on the top of the building is hardly become true. " 3 3 3 +16260 6 "In the excerpt from ""The Mooring Mast"", the author, Marcia Amidon Lsted, is informant on the structural and natural obstacles faced by the builders of the Empire State Building. One obstacle faced by the builders was involved with the structure of the building. The issue was that a moored dirigible, or blimp, would add a significant amount of stress to the building's frame. To fix this problem, the ""frame of the Empire State Building would have to be modified and strengthened."" Another obstacle faced by the builders involved nature. The winds on top of the building were violent and often shifted directions. This hindered the ability of a dirigible to moor on top of the building and remained a problem. The final obstacle faced was a restriction on the flight of airships over urban areas. This restriction made it impossible for dirigibles to moor on top of the Empire State Building. The excerpt explains the structural and natural obstacles faced by the builders." 4 3 4 +16261 6 "During the process of building the Empire State Building, the builders had to go through obstacles in attempting to allow dirigibles to dock on it. Some of these obstacles were changing the design of the building, thinking about the safety of people, and the material the dirigibles were made of. Since a thousand-foot dirigible that moored at the top of the building would add stress to the building's frame, the steel frame of the building would have to be modified and strengthened. Over sixty thousand dollars work of modifications had to be spent. A dirigible was a steel framed balloon with envelopes of cotton fabric filled with hydrogen and helium. This was a safety issue; Most dirigibles used hydrogen, rather than helium, and hydrogen is very flammable. A German dirigible was destroyed by fire, and the owners of the Empire State Building realzed how bad an accident like that could be over downtown New York. During construction of the Empire State Building, builders had to go through many obstacles just to attempt to allow dirigible to dock there." 3 2 3 +16262 6 "The builders of the @ORGANIZATION1 many obstacals when attempting to allow dirigibles to dock. A thousand-foot dirigible at the top of the building, held by a single cable tether would put stress on the buildings fam. The steel frame of the building would have to be modified and strengthened to accommodate this new situation. Over sixty thousand dollars' worth of modifications had to be made to the building's framework. Theese are the obstacals they had to @ORGANIZATION1." 2 1 2 +16263 6 The obstacles the builders of the Empire State Building faced passengers on existing transatlantic routes and new routes that were yet to come. 0 0 0 +16264 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. Some minor obstacles were the frame and strength of the building. Other obstacles were major such as nature which cannot be controlled. In paragraph nine the author explains that if a thousand-foot dirigibles were to be moored to the top of the Empire State Building it would add stress to the building's frame. Also with wind pressure the building's foundation would be affected. In order to allow dirigibles to dock, the frame of the building would have to be modified and strengthened. As nature as a great affect on the use of the mooring mast it would be almost impossible for dirigibles to be tethered onto the building. The wind would send the dirigibles swiveling around the mooring mast as the author describes in paragraph fourteen. Other obstacles the builders faced were most dirigibles from outside the U.S used hydrogen rather than helium, most landing fields weighed down the back of the blimps would lead weight (which wouldn't be safe to have dangling over pedestrians), the last problem was there was an existing law againts airships flying low over urban areas. Though the builders of the Empire State building faced obstacles in allowing blimps to dock it still became a well known building in @LOCATION1." 4 3 4 +16265 6 "Some of the obstacles the builders of the Empire State Building faced were that inside the dirigibles were hydrogen, which is highly flammable. The builders did not want to risk any lives or damage any buildings. They realized how much worse an accident could be if it took place in down town New York.The greatest obstacle was the wind on top of the building. The winds were constantly shifting due to air currents. Also dirigibles would be dangling over pedestrians on the streets below.The last reason is because their was a law against airships flying too low over urban areas. This law made it illegal for them to tie it up to the building or even approach it." 3 2 3 +16266 6 "When the architects behind the mooring Mast of the Empire State Building first began there work in designing it, they did not take into account the @CAPS1 that they would have to overcome to dock a dirigible. In the excerpt it States that the mooring mast was not originally part of the design structure for the Empire State Building: however the stresses it would cause in docking a dirigible ""would have to be transmitted all the way to the buildings foundation."" This means that the builders would need to design Some way of doing this when the building was already begun. Other @CAPS1 included those of safety. The exerpt tells that ""most dirigibles from outside the U.S. used hydrogen"" which is more flammable than helium. This combined with the fact that there really was no way of securing the tale of a dirigible moored at the mast could cause an accident @CAPS2 to that of the Hindenburg over a ""densely populated area Such as downtown New York""" 2 3 3 +16267 6 "Based on the excerpt It shows in some way's there were obstacles that the builders faced in attempting to allow dirigibles or Blimps to dock there. One of those examles were found in paragraph @NUM1. It said ""The mooring mast of the empire State building was designed to never fulfill its purpose."" Another One was Also in paragraph @NUM1 when they said ""The greatest reason was one of safty: Most dirigibles from outside of the united States used hydrogen rather than helium, and hydrogen is highly flammable. When the german dirigible Hindenburg was destroyed by a fire in lakehurst, New, Jersey, the owners of the empire state building relized how much worse that accident could have been if it had taken above a densely populated Area such as downtown New York. Also in paragraph @NUM3 it says that nature was a big obsticle for the success of the mooring mast. The winds on the tops of the building were constantly shifting due to violent air currents. Another reason was because of existing laws was airships flying too low over populated or urban areas." 3 3 3 +16268 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted There were important obstacles The builders of the Empire State Building faced for the dirigibles to dock and becomes stationary there. The dirigible was highly flammable, struchure was unsafe laws and it was @CAPS4 prmitting for them to dock There.One, The dirigibles are highly flammable to have have near a building that has so much importance to its @CAPS1. ""Today These dirigibles are camo. fabric filled with hydrogen and helium to have lighter in the air."" These dirigibles in the U.S only have hydrogen which is the ultimate firestarter.Second, the structure never passed for a human passenger to get on The structure and ride The blimp. The law states ""aircraft flying low to urban areas is @CAPS2."" @CAPS3 why it never could happen.Third, @CAPS4 can never always be right twenty-four seven. The problem is ""winds on top of the building were constantly shifting violent air currents."" This Put lives in @CAPS5, these were obstacles in The dirigibles docking." 3 3 3 +16269 6 "Builders of the Empire State building faced numerous obstacles in attempting to allow dirigibles to dock there. A mooring mast, for docking drigibles, would add stress to the buildings frame and ""could not simply be dropped atop the Empire State Building. The building needed to be ""modified and strengthened"" to accommodate this situation. Most dirigibles from outside of the United States used hydrogen, which is extremely flamable. Owners of the building realized if an accident like the Hindenburg were to take place above a densely populated city or area such as downtown New York, results would have been far worst. Builders greatest obstacle would be nature itself. Winds atop the building were constantly shifting due to violent air currents. Even if the air ship could tether to the mast, the back of the ship would swivel around the mooring mast. In addition, due to an existing law against airships flying too low, dirigibles could not legally moor at the Empire State Building. ""The mooring mast of the Empire State Building was destined to never fulfill its purpose.""" 4 4 4 +16270 6 "In the excerpt, ""the mooring Mast"" by Marcia Amidon Lsted, the builders of the empire State building faced some obsticles in attempting to allow dirigibles to dock there. One obsticle was that in order to build it for docking dirigibles, they had to spend over sixty thousand dollars' worth of modifications had to be made to the buildings framework. Also, another obsticle was because of the safety. Dirigibles were not that safe, they were flameable and would be over an area with many other buildings and people around. Those are a few obsticles that the builders of the empire State building faced in attempting to allow the docking of dirigibles." 2 2 2 +16271 6 "In the excerpt ""The Mooring Mast"" by author @ORGANIZATION2, the builders of the Empire State Building faced some obstacles in attempting to allow dirigibles to dock there. A first obstacle the builders faced was the concern of the building collapein over time with ""all the weight of the dirigibles. They would have to spend more money and time to create a frame for the Empire State Building to support the dirigibles."" @CAPS1 @NUM1 supports that obstacle ""a thousand foot dirigible moored at the top of the building would add stress to the buildings frame"". A second obstacle builders of the Empire State Building came upon on attempting to allow dirigibles to dock at the building was the concerns of the thousands of citizen just below the tall building. After german dirigible was on fire in Jersey they realized how serious they situation can become. ""Owners of the Empire State Building realized how much worse it that accident could have been if it had taken place above a densely populated area such as downtown New York."" These were two of the obstacles the builders of the Empire State Building faced." 3 3 3 +16272 6 "In the excerpt, The Mooring Mast by, Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigible to dock there. One of these obstacles being stress. Yes, stress. This is because when you have a thousand-foot dirigible moored at the top of the Empire State building, only by which is held by a single cable tether, it adds stress to the frame of the building. Another obstacle the builders faced was safety. Seeing as most dirigibles have been known to use hydrogen rather than helium, you would think hydrogen is the one to go with. Unfortunately, hydrogen is a fire caution because it is extremely flamable. So safety was definitely another obstacle in attempting to allow dirigibles to dock at the top of the empire state building. A final obstacle the builders faced was nature itself. This is simply because the back of the ship would swivel around and around the mooring mast, on repeat because violent currents would constantly shifting the winds on the top of the building. There would be no solution, even if the dirigible were tethered to the mooring mast. These are the obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there, in the informative excerpt, The Mooring Mast by, Marcia Amidon Lsted." 3 4 4 +16273 6 When the empire state building was faced with @CAPS1 a dirigible docking station they encountered many Problems. The first @CAPS2 the @CAPS3 encountered was the wind. The wind over a thousand feet in the air is never going to be @CAPS4. Once they got the dirigible @CAPS5 to the tower there would be no way they Could keep it still enough to refule and let passangers on or off the dirigible. The Second @CAPS2 they ran into was helium is flammable. If somehow that helium @CAPS7 fire it would be @CAPS8 in such a Place as downtown New York. The third and final reason is it is illegal to have an aircraft that low in a city. There was no way this was going to work out so they stopped moving forward on this @CAPS9. 3 3 3 +16274 6 "The @ORGANIZATION1 spire was originally built to be more than just visibly stimulating. The spire was actually a mooring mast to be used for docking dirigibles. Dirigibles, or blimps, were thought to be the transportation of the future, but the mast had many obstacles it had to overcome. Al Smith saw an opportunity to make the Empire State Building and all of New York on the fore front of modern travel. The mast would have to support and withstand a dirigibles weight so, ""over sixty thousand dollars' worth of modifications had to be made to the building's framework."" The constant threat of wind made the plans too dangerous as well. ""The winds on top of the building were constantly shifting due to violent air currents. Finally, most dirigibles were highly flammable and couldn't be safely docked with at endangering the public. A disaster like that would have been much worse..."" if it had taken place above a densely populated area such as downtown New York."" Building a mooring mast on the empire state building and many obstacles involved." 3 3 3 +16275 6 "In the excerpt, ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building encountered many obstacles when attempting to allow dirigibles to dock there. These issues included safety, nature and an existing law. Safety was the greatest obstacle. These dirigibles ""used hydrogen rather than helium, and hydrogen is highly flammable."" @CAPS1 the buildings in downtown New York stand so close together, one building such as the Empire State Building catching on fire could have devastating effects. The hardest problem to overcome would have been nature. ""The winds on top of the building were constantly shifting due to violent air currents."" It would have been impossible to keep the back of a dirigible from swiveling around. Also, the dirigibles would be hanging high above cars and people on the streets below. The last reason the dirigibles should not be moored at the Empire State building was because of a law that prohibited ""airships flying flying too low over urban areas."" This made the entire plan illegal, and although it was a good plan, it was not well thought out." 4 3 4 +16276 6 The builders faced many problems trying to allow the dirigibles to dock. The biggest obstacle the had was the wind. At that elevation the was constantly shifting. If the dirigibles was tethered the back would swivel. Another problem was that they could not weigh it down. Sence it was elevated if the dirigible was weighted down it would fall. Those are some of the obstacle the builder faced. 2 1 2 +16277 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock on the mooring mast. One obstacle they faced was the lack of a suitable landing area. They would have to design a mast for the dirigibles. Another obstacle was the dirigibles was held by a single cable tether and that would add stress to the building's frame. Next, New York City would have to spend over sixty thousand dollars' worth of modifications had to be made to the building's framework. Then the greatest reason of safety came upon them. That was, most dirigibles from outside of the United States used hydrogen rather than helium. And hydrogen is highly flammable. On @DATE1 a German dirigible ""Hindenburg"" was destroyed by fire in Lakehurst, New Jersey. The owners of the Empire state building realized if that happened to New York and how big of a problem that would cause. The final and greatest obstacle they faced to the successful use of the mooring mast was nature itself. From all the violent wind and air currents would be hard to tether the dirigibles to the mast. In conclusion, those were the obstacles the builders of the Empire state Building faced in attempting to allow dirigibles to land there." 4 4 4 +16278 6 "There were several major obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One such problem was that, ""the stress of the dirigibles load and the wind pressure would have been transmitted all the way to the building's foundation..."". It cost over @MONEY1 to make the modifications nesescary to do this. Also, the, ""roof had to be completed before the framing of the mooring mast could take place."" @CAPS1, they did not solve several other obstacles. Forein dirigibles normally ""used hydrogen rather than helium..."" And this would cause vast damage if they crashed in ""a densely populated area such as downtown New York."" In addition, being so high, the dirigible could not be weighted down in the back and thus would swivll around the mast. There was also a law prohibiting ""airships flying too low over urban areas. In the end there were too many obstacles so the dirigible docking plan was scrapped." 4 3 4 +16279 6 "There were many obstacles that the builders faced in attempting to allow dirigibles to dock there. one of the obstacles that had to be faced was dealing with the hydrogen from dirigibles outside of the united states. The hydrogen was very flamable and the would not be able to stand a fire in such a high populated area. Another obstacle was nature itself. The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were teathered to the mooring mast, the back of the ship would swivel around and around the mooring mast. The winds from nature would make it hard to control the dirigible so people were afraid of the dirigible crashing into the building. Those were some of the obstacles that were faced." 3 2 3 +16280 6 "There were many obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there. Since the German dirigible the Hindenburg was destroyed in New Jersey it would have been more dangerous over a densey populated area like New York where the Empire State building was. the greatest obstacle to the success of the use of the mooring mast was nature itself. The winds on top of the building were shifting due to air currents. Dirigibles would not be safe dangling high above pedestrians on the street. The major problem architect faced was that dirigibles could not moor at the Empire State building because it has a law against airships flying to low over urban areas. Even though it seemed like a good idea at the time, it was not practical or safe." 3 3 3 +16281 6 "Obstacles the builders of the empire State building faced in attempting to allow dirigibles to dock there, were not easy to overcome. Most dirigible were massive, @CAPS1 by in this quote dealing with them was no easy task. ""@CAPS2 as long as one thousand feet, the same length as four blocks in New York."" In this quote it tells of their massive size and proves how difficult it would be to control and land them safetly.Another obstacle the workers had to face is modifying the already set structure of the empire state building, also money spent as @CAPS1 by in this quote. ""The Steel frame of the empire State building would have to be modified and strengthened to accommodate this new situation. Over Sixty thousand dollars' worth of modifications had to be made to the buildings framework."" This quote proves that the addition of the mooring mast would be not only tirering for the workers, but also alot of money would be spent on a failed project. They got their tall building, but were unable to achieve mooring mast." 2 2 2 +16282 6 The builders of the Empire State Building faced many obstacles. The greatest obstacle to the successful use of the mooring mast was nature itself. Because The winds on top of the building were constantly shifting due to violent air currents. Also because the Empire State Building have's an existing law against airships flying too low over urban areas. 2 2 2 +16283 6 "The builders were Building about @NUM1 ft high Above surface, so Safety is an issue. Then a @NUM2 ft @CAPS2 would moore, at the top of Building, held by a single cable tether would add stress to the building (@CAPS2 load would). Also, The Wind pressure would have to be transmitted @NUM3 ft below to the foundation. So its a @CAPS1 that could affect @CAPS3. The @CAPS2 could catch on fire on top of Downtown New York hurting @CAPS3 And its costing a lot of money @NUM4 Dollars." 2 3 3 +16284 6 "Allowing the dirigibles to dock at the Empire State Building took some obstacles. First, there was a lack of suitable landing area in New York City. To solve this, Al Smith added a mooring mast to the top of the Empire State Building. This would allow the dirigibles to anchor there for several hours for refueling, service, and to let passengers off and on.Another obstacle for allowing dirigibles to dock at the Empire State Building was the stress being added to the building's frame because of a one thousand-foot dirigible moored at the top of a building held by a single cable tether. To accommodate the situation, the steel frame of the Empire State building would have to be strengthened and modified. Over Sixty thousand dollars' worth of modifications had to be made to the building's framework. The final and greatest obstacle for successful use of the mooring mast was nature. The winds at the top of the building were constantly shifting due to violent air currents. Lead weights would be used to weight down dirigibles landed in open fields. But losing the lead weights at the Empire State building where they would be dangling high above pedestrians on the street was not very safe at all." 3 3 3 +16285 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock thousands of feet above the New York streets. One of their many problems was the sheer size of the dirigibles, somewhere as long as one-thousand feet. Another problem they faced was keeping the back of the ship from swiveling around the mooring mast. Usually, the backs of these blimp-like structure's were anchored down by lead weights, but to have lead weights dangling high above the streets was way to risky not to mention unpractical." 2 2 2 +16286 6 "There were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle was the fact that they needed a mooring mast so that the dirigibles could anchor, but they couldn't drop a mooring mast on the flat surface of the Empire State Building's roof. It would put too much stress to the building. This problem cost over sixty thousand dollars. Another obstacle was safety precautions. The dirigibles were mostly filled with highly flammable hydrogen. If a dirigible was to catch on fire, then the whole Empire State Building would be destroyed, including everyone in it. It also wasn't safe because strong, violent winds could blow and detach the dirigible, causing danger to pedestrians below. One other obstacle that the builders faced was the existing law against airships flying too low over urban areas. If they tried to anchor a dirigible on the Empire State Building, it would be illegal. Due to all of these obstacles not getting results, the whole idea has disappeared." 4 3 4 +16287 6 "The architects, engineers, and workers or the builders of the Empire State Building faced many obstacles when attempting to attach a dirigible dock the top of the building. The first troubling encounter for the builders was they ""could not simply drop a mooring mast on top of the empire state building."" The engineers and architects needed to make @NUM1 dollars worth of repairs to strengthen the buildings frame work. Mother nature herself was also a problem. The constantly shifting winds would make it hard to stay landed unless they were weighed down. Even weighing down the zeppelins proposed a threat of a weight falling and killing an innocent person. lastly a law prevented dirigibles from flying to low over a city. If a spike from another building hit and popped the ballon, there would be an absolute disaster. Overall there were many obstacles preventing the idea of a dirigible dock to ever become true." 3 3 3 +16288 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted the builders faced quite a few problems. They faced on constructing the building. They didn't know if they could built it all. They also faced a bad climate, and faced on how much did the dirigibles weighted and if they can hold it. On paragraph fourteen it says ""Dirigibles moored in open landing fields could be weighted down in the back with lead weights."" These are a few things that the workers had to face" 1 1 1 +16289 6 The obstacals he had was that the problems where never really solved and that had caused problems with the wind. 0 1 1 +16290 6 "The builders of the Empire State Building faced numerous problems dealing with the mooring mast. First of all, I would say safety was the number one issue. If the dirigible were to catch on fire, it could land on the main streets of New York City, posing a hazard to hundreds of pedestrians. Also, the weather was another factor. If it were too windy to fly all the time, then the mast would be a waste. When I read that they had to spend <@NUM1 to modify the building's framework,"" I started thinking of all the other things a town could do with @MONEY1. There was also an existing law that made it illegal for any airships to be even remotely close to the Empire State Building. Overall, the idea of the mooring mast was just a very poorly planned the idea." 2 3 3 +16291 6 The @CAPS1 of the Empire State Building faced many obstacles in the attempt to allow dirigibles to dock there. One problem was the @CAPS1 had to fix the frame of the building in order to transmit the stress of the dirigible to the bottom of the building. Another obstacle the @CAPS1 faced was the @CAPS1 had to complete the roof before the framing of the mooring mast could take place. The @CAPS1 of the Empire State Building also had to make sure that the mast's skeleton was made out of steel so that the mast looked like the rest of the empire State building and not stick out. 2 1 2 +16292 6 "There were many problems and obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there, such as nature itself. At @NUM1 ft. the winds were just too strong and unpredictable to get close to and dock a dirigible. On top of nature, laws prevented the landing. Airships could not fly low over urban areas so even attempting to approach the area would be illegal. This idea still posed a great deal of potential danger even if there were no laws against it and wind didn't exist. Many dirigibles were made using hydrogen, which is highly flammable. In such a highly populated area as New York City if one were to catch fire the damage would be horrifying. I hope Al Smith was willing to pay thousands of dollars for the title of world's tallest building because he didn't get his mast" 3 3 3 +16293 6 "Constructing a building was hard, but attempting to build the world's tallest building was intense. The mast a top the Empire State Building caused many obstacles for the builders such as having to strengthen the frame work of the whole building. ""A thousand-foot dirigible moored at the top of the Empire State building held by a single cable tether, would add stress to the building's framework."" The architects also wanted to make the mooring mast ornamental, or decorative. ""Rather than building a utilitarian mast without any ornamentation, the architects design is shiny glass and chrome-nickel stainless steel tower that would be illuminated from inside-."" @CAPS1, the building had to have two extra floors added one ""open observation platform"" and a ""boarding area for dirigidle passengers. Even though the mast was doomed to never fulfill its purpose, the building was still hailed the world's tallest building." 2 2 3 +16294 6 "In the excerpt, ""The Mooring Mast,"" by @ORGANIZATION2, certain obstacles such as foundation support, nature, and safety challenged the building of the docking station for dirigibles. The first problem the architects faced was the docked dirigibles placing too much stress on the building. To combat this problem, drastic changes to the building would have to be made. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" (@CAPS1 @NUM1, @CAPS2 @NUM2) This change was stated to cost over sixty thousand dollars. Another obstacle the builders faced upon constructing the mooring mast, was nature. At this height, the wind currents are violent and unpredictable. Despite being tethered to the building, the dirigibles would spin and twist around the mass, an unsecure and dangerous aspect. Lastly, as the except claims the greatest reason for not being successful, the safety violations of the mast were too great. ""Most dirigibles from outside of the United States used hydrogen... and hydrogen is highly flammable. When the German dirigible Hindenburg was destroyed by fire... the owners of the Empire State Building realized how much worse that accident would have been...above a densely populated area such as downtown New York."" (@CAPS1 @NUM3, @CAPS2 @NUM4) The moor provided severe risk to the safety of the people of New York. This problem served as a serious problem, thus serving as an obstacle for the builders of the mooring mass. The building's foundations, nature, and safety violations all served as problems for the builders creating the mooring mass." 4 4 4 +16295 6 "The builders of the Empire State building faced many obstacles in attempting to allow drigibles to dock at the building. Drigibles are enormous steel framed balloons filled with hydrogen and helium maneuvered by the use of propellers and rudders. Al Smith wanted to add a mooring mast to the top of the building would let drigibles to anchor for several hours for refueling or service. But, the stress of the drigible's load and the wind pressure would have to be sent all the way to the buildings Foundation. This cost over @MONEY1 worth of modifications to be made to the framework. In May 6, 1937 when the Hindenburg was destroyed by fire in Lakehurst, New Jersey the builders realized how catastrofick it would have been taken place above the densely populated area of downtown New York. The winds at the top of the building would constantly shift due to harsh and violent air currents and the back of the ship would constantly swing around. Also, the existing law against airships flying too low over cities and urban areas would make drigibles not allowed to moor at the Empire State Building. All in all, the builders of the Empire State Building faced many obstacles in attempting to allow drigibles to dock at the building." 4 3 4 +16296 6 "In the excerpt, The Mooring Mast by Marcia Amidon Lsted some obstacles the Empire State Building faced in attempting to allow dirigibles to dock there are the winds were too strong and most used hydrogen instead of helium which is very flammable. The way that the dirigibles would dock to the building was by a cord attached to the mast. The dirigibles would then be ""dangling high above pedestrians in the street."" (@NUM1). This was ""neither practical nor safe"" (@NUM1) This would not only endanger the pedestrians below but also the people on the dirigibles. The wind was so strong that it could throw it into a building. Most dirigibles fuel on hydrogen rather than helium, hydrogen is much more flammable. ""The German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey."" (@NUM3) The owners of the Empire State building saw this as another huge problem because of how much worse it would be if one caught fire in densely populated New York." 3 3 3 +16297 6 ". The Empire State Building during it's construction was being planned to serve as a mast, in which dirigibles could be attached to. The builders of the building did not realize the severity of the obstacles preventing them from safely accomplishing this feat. Most of the problems presented for the most part were concerning safety. Due to safety issues the mast was considered to lucrative and idea, and posed too much of a danger. There were simply too many possible opportunities for something to go wrong. One of these issues was that dirigibles contain dangerous flamable gases, that if something went wrong a flamming dirible coming down on down town New York City would cause major damage. Another obstacle preventing this idea from becoming reality was that the dirible tethered to the mast would be ""constantly shifting due to the violent air currents (para @NUM1). Another reason why it couldn't be done ""was an existing law against airships flying too low over urban areas"" (para @NUM2). All of the problems that could not be solved plausibly were the reason why, the mast was unrealistic." 3 3 3 +16298 6 "In The mooring mast by Marcia Amidon Lsted the reason for the tall spire was revealed as a mooring mast for zeppelins to land. there were many difficultys faced by the builders of the Empire state building in attempt for zeppelins to actually land there. on difficulty was the stress added by the weight of the dirigible ""over @NUM1 $ of work was done to the foundation. This was difficult because it could think adding that much steel to a beautiful building couldn't be easy. anouther difficulty addition involved ""the mast... would to a conical head this would house a mooring arm"" think about how easy it is to take a ornate @NUM2 foot spire @NUM3 feet to the top, not easy. Last ""the winds at top were constantly shifting due to violent air currents"" this means all the framing workers went through hell to make the building." 2 2 2 +16299 6 "There were many obstacles the builders of the Empire Building faced in attempting to allow dirigibles to dock there. One obstacle was how much stress would be put on the buildings frame. Lsted says, ""A thousand-foot dirigible moored at the top of the building's frame. The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings foundation, which was nearly eleven feet below. The steel frame of the Empire State building would have to be modified and strengthened to accommodate this new situation. If the Empire state building was going to make this happen they would have to change the frame of it. This was a top obstacle to overcome. Also an obstacle they would have to face was peoples safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. If they were to make this happen there would always be the risk of someone catching on fire. Making the Empire State building a dock would have many obstacles to overcome if they wanted to make this happen." 3 3 3 +16300 6 "Many obstacles faced the builders of Empire State Building. The biggest problem is The fact that it was illegal for a dirigible to fly that low in Urban areas, stated in paragraph @NUM1. Another problem was that most of the @ORGANIZATION2's dirigibles used hydrogen, which is very flamable. So if what happened to the Hindenburg happened at the empire state building then the accident would of been much worse. Especially with people walking the streets below, stated in paragraph @NUM2. Another problem was nature. The winds were ferocious at the top of he building and were always shifting. So if a dirigible was docked to the mask and the lead weights that keep the dirigible from floating away, like anchors, would be dangling over pedestrians ready to fall in an instant, stated in paragraph @NUM3. Also fears of the sharp edges and forceful winds would cause the dirigible to get punctured and pop." 3 4 4 +16301 6 "During the @DATE1's Dirigibles were being hailed as the transportation of the future. Dirigibles had a top speed of eighty miles per hour, and cruise at about seventy miles per hour for thousands of miles. The main obstacle that the Dirigibles would face in landing in New York City was the lack of suitable landing area. Another obstacle the architects and empire state builders faced was designing a mast that could allow the Dirigible to dock to the building, and also allowing people in and out of vehicle. Architects knew that they couldn't simply drop a mooring mast on top of the Empire State building's flat roof. ""An A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" so architects had to reconstruct the building's foundation to strengthen the structure of the building. The greatest obstacle that the Empire State builders faced was nature itself. ""The winds on top of the building were constantly shifting due to violent air currents."" The violent air currents at the top of the empire state building would make it dangerous and unsafe for Dirigibles to dock with the building." 3 3 3 +16302 6 "In this excerpt Al Smith had many obstacals to over come when he wanted Dirigibles to dock on the empire state building. The smallest obstacal was building this top so Dirigibles could moor at the building. ""The top would have cost Over @ORGANIZATION1 for the needed modifications on the Frame work"". Another obstacal faced was the fact that there was an existing law in place @CAPS1 this. ""The other practical reason Dirigibles could not more at the empire State building was an existing law against low flying air ships."" The issue of safety was a tricky obstacle. ""Most dirigibles from outside the @LOCATION1 used hydrogen rather than helium and hydrogen is very @CAPS2. The Greatest obstacle was nature. ""The winds on top of the building were constantly shifting Due to violent air currents."" In this excerpt The obstacals For Al Smith and his team were to great and they could not over come them." 2 3 3 +16303 6 "On December 11, 1929, Al Smith, the four-term governor of New York, annanced that the Empire State Building would reach the height of 1,250 feet. At the time it would be the world's tallest building, but the builders faced obstacles with the more distinctive part; allowing dirigibles to dock there. First, it would be difficult to build a suitable landing area. As described in paragraph @NUM1 of the excerpt, a dirigible held by a single cable would add stress to the building's frame. Therefore, the steel frame would have to be modified and strengthened so that the added stress would be transmitted all the way down to the building's foundation. Also, safety is a huge issue. In paragraph @NUM2, it stated that ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" The builders came to realize that if one of the dirigibles were to catch fire, like the German Hindenburg in New Jersey, it would cause huge problems due to the fact that New York is densely populated. Lastly, nature itself is an obstacle for the builders. The winds on top of the building are constantly shifting do to violent air current. As described in paragraph @NUM3, the back of the ship would swivle around and the lead weights would be dangerous for the pedestrians down below. Overall, the construction of the mast was difficult, and unfortunately is never to be used." 3 4 4 +16304 6 "The builders of the Empire State Building faced many obstacles in the attempt to allow dirigibles to dock there. The first problem, according to the excerpt, is that ""A thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the frame."" They would need to spend over @MONEY1 in order to modify the building's framework. Another issue, ofcourse, was the safety of the mast. Most of the zeppelins from places besides the U.S., did not use helium. Instead, those limbs used hydrogen which is highly flamable and would have caused disaster if ignited above a densely populated area such as downtown New York. The excerpt also states that, ""The greatest obstacle to the successful use of the mooring mast was nature itself. The winds on top of the building constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" @CAPS1, there was already a law in place preventing airships from flying too low over urban areas, There fore, it would be illegal for a blimp to attach to or even go near the Empire State Building. For the reasons stated, builders were not able to build a mooring mast a top the Empire State Building." 4 4 4 +16305 6 "The builders of the Empire state building faced many problems in trying to allow dirigibles to dock at the top @CAPS1 ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" @CAPS2 the designers had to find a way for the dirigible to dock at the top of the building. Even if they did find a way for it to dock though, ""a thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" This set the builders back again because even if they did find a way to dock the dirigible the Empire state building would need ""over sixty thousand dollars' worth of modifications."" Even though that's possible there ""was an existing law against airships flying too low over urban areas."" The builders faced many obstacles that set them back but they made a valiant attempt to see their dream come true." 2 3 3 +16306 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One example is that by adding the dirigible, it would add stress to the building. The frame of the Empire State Building would have to be changed due to the pressure that would be put on the building. All of the changes that would have to be made would add up to over sixty thousand dollars. Now, there would also be 102 floors. The top floor would be the boarding area as well as an observation area. One more thing they had done for the mooring masts was raise an American flag on top. All of these accommodations were made for the help of dirigibles docking on top of the Empire State building." 1 2 2 +16307 6 "The designers of the Empire State Building faced many challenges in the attempt to allow dirigibles to dock on it's peak. ""The greatest reason was safety"" (para @NUM1). The dirigibles were dangerous. Strong winds could blow them in different directions, possibly hitting the building. And if there was a crash, the debris would rain upon New York City. Since there was wind, they would have to use lead weights to hold a dirigible in place. However above the city this would be ""neither practical nor safe"" (para @NUM2). Finally, there was a law prohibiting airships from flying low over urban areas. This would cause the docking to be illegal. For these reasons, the builders of the Empire State building faced challenges allowing blimps, or dirigibles, to dock on the building." 3 3 3 +16308 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. An example would be from the excerpt when the author writes in paragraph 6 ""The one obstacle to their expanded use in New York City was the lack of suitable landing area."" This quote means the builders were faced with the challenge of space to land the dirigibles because New York City was a relatively crowded area. Another example would be in paragraph @NUM1, when the author tells about the safety hazards. Many dirigibles used hydrogen insted of helium, which is extremely flammable. A last example would be in paragraph @NUM2 when the author describes the safety hazards. The builders had to consider the violent winds on the top of the building. Many obstacles came upon the builders." 2 2 2 +16309 6 "There were many obstacles for the builders of the mast attempting to allow dirigibles to dock, such as laws, nature, and overlooked detail. Laws were an obstacle because of safety risks of having a dirigible over a densely populated area, such as the Hindenburg accident. Nature was a problem because of the violent winds at the top of the mast, which would make the ship unsteady. The last obstacle was that the builders of the mast overlooked all the other obstacles, and safety risks." 2 2 2 +16310 6 "the mooring mast of the empire state Building was destined to never fulfill its purpose, for reasons that should have apparent before it was ever constructed the greatest reason was one of safety must dirigibles From outside of the united states used hydrogen. hydrogen rather Building realized how much worse that accident could have been if it had taken Place above densely populated area such as downtown New York" 2 1 2 +16311 6 "There are many obstacles the builders of the Empire State Building faced attempting to allow dirigibles to dock there. One obstacle the builders had to face was they had ""over sixty thousand dollars worth of modifications to be made to the building's framework."" Another obstacle the builders faced was meeting the president of a airship transport company and the plan to offer dirigible service across the Pacific Ocean. That is just two of the many obstacles the builders faced while building the Empire State Building." 1 1 1 +16312 6 Some of the obstacles the builders of the empire State building faced in attempting to allow dirigibles to dock there- are The Steel frame of the empire State building would have to be modified and strengthened to accommodate this new situation. over sixty thousand dollars' worth of modifications had to be made to the buildings frame work. Another obstacle that they faced is that dirigibles could not moor at the Empire State Building was an existing law against airships flying to low over suburban areas. The greatest obstacle is the violent air currents would make the back of the Ship swivel around the mooring mast. 3 3 3 +16313 6 I think the builders main problem they faced was making sure people would be able to safely get off the dirigibles and onto the actual building.They would also need to make sure that the blimp wouldn't burst into flames if it came close or crashed into the Empire State Building. 1 1 1 +16314 6 "Based on ""The Mooring Mast"" there were several obstacles the builders faced in attempting to allow dirigibles to dock there. First of all, they couldn't just put a mast a top the building because it would put too much pressure on the building's frame. Also the stress would be transmitted all the way to the foundation of the building, which was 11 hundred feet below the mast. So before they could build anything, they had to re-inforce the entire structure of the empire state building. Finally these obstacles were fixed, but those were the obstacles the builders fixed." 2 2 2 +16315 6 "The obstacles the builders of the Empire State Building face in attempting to allow dirigibles to dock there are: @CAPS1 they choose dirigible instead of balloon, because the fabric used in dirigibles is lighter. Second, their extended use in New York City was the lack of a suitable landing area and think about the safety of passengers get in or get off" 0 1 1 +16316 6 The first obstacle that the builders of the Empire state faced was the lack of suitable landing area. The second obstacle that the builders of the Empire State faced was that the architects could not simply drop a mooring mast on the top of the Empire State Building's flat roof. The greatest obstacle to the succesful use of the mooring mast was nature itself. The winds on the top of the building were constantly shifting due to violent air currents. 2 2 2 +16317 6 "The obstacles that the builders of the Empire State Building faced in attempting to allow the dirigibles to dock were very difficult. difficult. One difficulty that they had was that the mooring mast nature it self. When the dirigibles would come to the building, the winds on the top of the building were constantly shifting due to violent air current, and the only way that they could moor is if the weighted down the back, and using them at the Empire State Building won't be practical or safe, with pedestrians below you.Another obstacle that the builders had was an existing law. the law was against airships flying to low over urban areas. This law would make it illegal for a ship to ever tie up to the building, or even approach the area. this was an obstacle because they didn't have much to do about this since it's a government thing holding them back.These are just some obstacles that the builders of the Empire State Building faced in attempting to allow the dirigibles to dock." 3 3 3 +16318 6 "In the 1920s, dirigibles were considered to be the future of transportation. Although useful, dirigibles had an issue, there was not enough landing area in New York City. With this in mind, Al Smith saw an opportunity for his Empire State Building, he would construct a mooring mast on the top of the building. This would allow dirigibles to anchor there for several hours, refuel, and also allow passengers go on and off. Adding a mooring mast seemed full proof at the time but this new construction plan endured on many obstacles.The first obstacle was how to add a mooring mast without adding stress to the building's frame. Architects detected that the stress of the dirigible's load and wind pressure would have to be transmitted all the way to the building's foundation which was nearly eleven hundred feet below. This led to the second obstacle which was modifying and strengthening the the steel frame of the Empire State Building to accommodate the first obstacle. Finally the third obstacle, which was the expense. Modifying the building's new frame work would cost over sixty thousand dollars.Consequently, Al Smith saw a great oppertunity for the Empire State Building but he was faced with many obstacles." 3 3 3 +16319 6 "In the excerpt @ORGANIZATION2, written by @ORGANIZATION1, The builders of the empire State building face obstacles in attempting to allow dirigibles to dock There, ""one obstacle to their expanded use in New York City was the lack of suitable landing areas."" (paragraph 6). If the Dirigibles can't lead it could cause destruction and could be very dangerous to people. In paragraph @NUM1 Al Smith says, It's on level all right no kidding wer'e working on the thing right now."" This shows the readers that the way he words things sounds almost unreliable. When constructing the idea of Dirigibles a mooring mast had to be added to the top of the building to allow passengers on and off. However This idea was unsafe. ""Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using Empire State building, where they would be dangling high above pedestrians on street was neither practical nor safe."" (paragraph @NUM2). This unsafe why would the build something harmful to others. In the excerpt The Mooring Mast written by @ORGANIZATION1. The builders have a hard time constructing the dirigibles." 2 2 2 +16320 6 "There were many obstacles that the builders of the Empire state Building faced in attempting to allow dirigibles to dock there. The most influentiel obstacle was nature. According to the passage, ""the Winds at the top of the building were constantly Shifting."" This would make it hard for dirigibles to dock in the first place. If they even succeeded in docking then the back of the dirigibles would shift and float around. The only way to solve that would be to add weights to the back of the dirigibles. Then weights would be floating high above the heads of pedestrians, which ""was neither practical or safe.""Another huge obstacle in attempting to allow dirigibles to dock was the law. At that time there was a law against any kind of aircraft to ""fly too low over urban areas."" As the passage clarifies ""This law would make it illegal for a ship took even tie up to the building or even approach the area."" @CAPS1, the mooring mast idea was dropped." 3 3 3 +16321 6 "The builders of the Empire State Building faced many obstacles in the attempted to allow dirigibles to dock there, ""The architect could not simply drop a mooring mast on top of the Empire State Building's flat roof"". A thousand-foot diriglble tethed by a single caple would add to much stress to the building's frame. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation. If not the Empire State Building might fall over. For the Empire State Building to take the extra load the architect would have to modify and strengthen the building's existing framework. Also the ornate mast would be difficult to raise on top of the Empire State build due to the high winds. ""The winds on top of the building were constantly shifting due to violent air currents"". If the dirigible was tethered to the mooring mast, the back of the dirigible would swivel around and around the mooring mast. If this happened the dirigible would crash into the Empire State Building or other building. This would be bad for the people on the street. Where dirigible's usually land are in open fields. The dirigible could be weighted down in the back with a lead weight. But on top of the Empire State Building dangling weights above pedestrians was neither practical nor safe. Also laws were passed restricting a dirigible from getting to close to a building." 3 3 3 +16322 6 "In the excerpt Mooring Mast by Marcia Amidon Lsted, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock their. One obstacle was, many modifications had to be made to the buildings framework. the dirigible's load and wind pressure would have to be transmitted to buildings foundation. Another reason builders face many obstacles is, most dirigibles used hydrogen rather than helium. This would be very dangerous if a fire occured especilly in a highly populated area. Another reason is due to violent air currents the back of a dirigible would swivel around the mooring mast. As it says on page @NUM1, paragraph @NUM2 the dirigible would dangel above pedestrians on the street which isnt practical or safe. Lastly, an existing law against airships flying to low over urban areas and it is illegal for dirigibles to tie up to the building or even approach the building. In conclusion builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock their." 4 3 4 +16323 6 "The builders @CAPS1 many problems when attempting to build a dirigible dock on the Empire State Building which ranged from legal, to structural, to logistical problems. Firstly there was a law in place which restricted airships From ""flying too low over urban area's"" as explained in paragraph @NUM1. In addition to this legal problem, the builders @CAPS1 the structural problem of putting a mooring mast on top of a skyscraper. According to the article the stress of the dirigible load along with wind pressure would have to be transmited over eleven hundred feet to the foundation. Because of this added weigh over sixty thousand dollars worth of modifications were made to the building as cited in paragraph @NUM2. Also the logistics of docking a dirigible at such an altitude were quite challenging. In fact half of the attempted dirigible landings at the Empire State Building were aborted due to high winds. Although a dirigible landing mast would have put the Empire State Building on the forefront of modern travel, it could not be done due to legal, structural and logistical problems." 3 3 3 +16324 6 "The builders faced multiple obsticles in attempting to allow dirigibles to dock on top of the Empire State Building. If the thousand-foot dirigible tried to land on top of the Empire State Building, it ""would add stress to the building's frame"" (paragraph @NUM1). The building would then have to be modified to meet these needs. Nature played as a big obsticle, as well. ""The winds on top of the building were constantly shifting due to violent air currents"" (paragraph @NUM2). If the dirigible tried to land, the back of it would swivel around and around the landing zone, creating an unsafe enviroment. Finally, the government also prevented dirigibles from docking on the building. There was, ""an existing law against airships flying too low over urban areas"" (paragraph @NUM3). These three main reasons prevented dirigibles from landing on top of The Empire State Building." 3 2 3 +16325 6 "The builders of the empire state building faced @NUM1 major obstacles. One major problem was that they used hydrogen which is highly flammable and they were in a highly populated area. Another problem had to do with laws, because aircrafts aren't allowed to fly to low over urban areas. Also the strong winds at that height made it impposible to land. Many problems are faced in the building of the empire state building." 2 2 2 +16326 6 "They get good idea to make that building, but the problems were always big, make plan, design. That was so difficult to make that building." 0 0 0 +16327 6 "Many obstacles were established for the workers, in allowing dirigibles dock on the Empire State Building. At first they thought they knew what they were doing, they were wrong. The workers first obstacle was to make docking at the Empire State building safe. However it was hard to make that happen because it was above civilians and if it ever dropped the resolt would be extremely serious. The second obstacle that got in their way was the wind pressure. It would of caused an un reliable support of the mast which would screw up the docking of the dirigible. Finally the dirigible is the last peice to the puzzle with disaster. In the section The Fate of The Mast it gives that the dirigible is run on hydrogen which is extremely flammable. Just that sentence alone establishes that it is not safe for the enviroment. By far many obstacles got in the way of the process of the mast. But docking was a whole different idea. Many obstacles had gotten in the way of the builders in attempting dirigibles to dock there." 3 2 3 +16328 6 The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. They had to face being up in the air for so long They also had to face trying to dock the dirigible on top of the roof while still stay saft themselfs 0 1 1 +16329 6 "To the Empire State building did have a flat roof but they cannot just drop the mooring mast on top of the roof because it would add stressed to the frame. To build a mooring mast the cost would be more than sixty thousand dollars. Building a mooring mast would not be easy because the wind on top of the Empire state building would constantly change direction; therefore the dirigibles would be swirling around."" Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using these Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe"". Then there was a law that air craft should not fly too low over urban areas. ""The other practical reason why dirigibles could not more at the Empire State Building was an existing law against airships flying too low over urban areas."" For dirigibles to land on top of the Empire State Building had many obstacles." 3 3 3 +16330 6 "In the article ""The Mooring Mast"" by Marcia Amidon Lsted, obstacles builders faced building a mast for dirigibles to dock there are detailed One obstacle builders faced was how to go about attaching it. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. A thousand-foot dirigible moored at the top of the building held by a single cable tether would add stress to the buildings frame."" Another obstacle would be the accumulated cost of the renevisions due to the first problem. ""Over sixty thousand dollars' worth of modifications had to be made to the buildings frame work."" These obstacles prevented the mast for ever being used its intended purpose." 2 2 2 +16331 6 "The construction of the mast was intentionally a good idea, but the people who where constructing it never actually realized the true dangers of the whole idea.Although they should have known, they should have realized that because the ship was attahed to the mast in one area, the ship was bound to swing around when it comes to a windy day because of the lack of weight. The builders also had to keep in mind that because the idea was huge, they had to make it perfect. They had to realize that many other builder are going to try this con cept which means they have to lead by example. If not then the other builders would have major problems people would be in danger.The builders and men who thought about using weights to balence off the weight of the ship. They needed to find a safe way accomplish this and unforunantly they could not. If they went through with it, one accident could have killed many people.The Dirigible was a great idea but they should have thought out the ideas before they went ahead and built it." 2 2 2 +16332 6 "In the excerpt ""The Mooring Mast"" by @ORGANIZATION1, @CAPS1 faced @CAPS2 of problems. One problem they had was the ""dirigible's load and the wind pressure would have to be transmitted All the way to the Buildings foundation"" (@CAPS3. @NUM1). The @CAPS1 Had to modify and strengthen the building to Accommodate the new situation. The dirigible was @CAPS8 big that they could not even ancker the Back of it to the roof. The @CAPS1 Had A @CAPS6 time trying to figure out How the dirigibles would land Because the wind was @CAPS7 @CAPS8 @CAPS6 the pilot could not even controll the dirigible. The @CAPS1 Had to put another Sixty thousand Dollars into it because of the modifications. Al Smith was the one who thought of this Idea. then He realized it wouldn't work. @CAPS8 in the the @CAPS1 finish constructing it But the Dirigibles could not dock there." 2 3 3 +16333 6 "Many obstacles faced the builders of the Empire State Building in their attempts to dock dirigibles or zeppelins. First and foremost, a mooring mast would have to be added to the building. However, according to @ORGANIZATION2, ""over sixty thousand dollar's worth of modifications had to be made to the building's framework"" before a dirigible could be moored to the mast. Secondly, outside of the United States, most dirigibles used highly flammable hydrogen gas, rather than helium, as shown in @ORGANIZATION2 @NUM1. The owners realized that it would be quite dangerous to have a dirigible moored over downtown New York, after the German ""Hindenburg"" ""was destroyed by fire in @LOCATION1."" (@ORGANIZATION2 @NUM1). In accordance with @ORGANIZATION2 @NUM3, ""the greatest obstacle to the successful use of the mooring mast was nature itself."" Violent winds, caused by air currents at the top of the building would cause a moored dirigible to swivel, and using lead weights to counter this would be dangerous over such a densely populated area. The U.S. Navy dirigible Los @CAPS1 could not even dock in December 1930 due to winds. Lastly, an existing law that prevented airships from flying too low over urban areas made it illegal for a ship to tie up to the mast anyway. (p @NUM4)" 4 4 4 +16334 6 "In the story ""The Mooring Mast"" by Marcia Amidon @CAPS1 the builders of the Empire State Building faced an obstacle in building a dock for dirigibles. One of the problems they faced was that the did not have suitable landing area. In paragraph six it said that it would only allow dirigibles to anchor there for several hours. Also they had realized that most dirigibles from outside the country used hydrogen insted of helium which was more highly flammable. In paragraph thirteen they said that an accident could have been worse if it had taken place above a densely populated area such as downtown New York." 2 2 2 +16335 6 "The @CAPS1 had many obstacles Building the Empire State Building and also allowing Dirigibles to @CAPS2 there. one of the obstacles was the expanded use in New York City. As said on page @NUM1 paragraph 6 ""The one obstacle to their expanded use in New York City was the Lack of a suitable Landing Area"". Another obstacle was use of mooring mast was Nature itself. Also said on pg @NUM2 paragraph @NUM3. ""The greatest obstacle to the successful use of the mooring mast was Nature itself"". The @CAPS3 Obstacle was weather for an example On page @NUM4 paragraph @NUM5 ""The @ORGANIZATION2 dirigible Los Angeles approached the mooring mast But could not get close enough to tie up because of the forceful winds."" @CAPS4 are @NUM2 concluding examples of obstacles faced in allowing dirigibles to @CAPS2 near Empire State Building." 3 1 3 +16336 6 "There were many obstacles the builders of the Empire state building faced in attempting to allow dirigibles to dock there. A couple of those obstacles are one, the stress of the dirigible's load and the wind pressure. This is happening because ""the wind pressure would have to be transmitted all the way to the buildings foundation"" Which means they would have to go nearly eleven hundred feet below. Another obstacle is They figured out that ""the mooring mast of the empire state building was destined to never fulfill its purpose."" The reasons for this is because it should have been apparent before was ever constructed. Those are just a couple of many obstacles the builders of the empire state building faced." 1 2 2 +16337 6 "The obstacles builders of the Empire State Building faced was many things surrounding safety and money issues. Successfully docking the dirigible would mean spending over @MONEY1 more, to make arrangements to the building. Also, there were many safety problems such as the gas the dirigible carried, the danger of people below in the city, and it was against the law for airships to be flying so low." 2 2 2 +16338 6 "The Empire State building faced hardships while trying to dock their dirigibles. The builders tried to build a docking station for the dirigibles, but the only problem they had was safely docking in thousands of feet in the air. The one obstacle to their expanded use in New York City was the lack of a suitable landing area. Winds in New York would also make it difficult to land. Another reason why dirigibles could not moor at the Empire State Building was the laws about airships flying too low over urban areas. Not only was it illegal, but also unsafe. Most dirigibles from out of the United States were made with a highly flammable gas called hydrogen. A German dirigible was destroyed by fire in Lakehurst, New Jersey. The owners of the Empire State building relized how bad it could've been in a highly populated area such as New York." 3 3 3 +16339 6 "The idea of the Empire State building being used to dock dirigibles may seem ridiculous now, but upon its construction, this was the original purpose of the mast at the top. Of course, there are several reasons as to why this plan didn't come to fruition. First of all, there was ""an existing law against airships flying too low over urban areas"", which would make it impossible to tie a dirigible to a building legally. Also, the high powered air currents atop the building would cause a docked dirigible to sway uncontrollably, making it a safety hazard. Finally, many non-U.S. dirigibles used hydrogen to fly instead of helium, and if a dirigible were to explode like the Hindenburg over the city, it would be incredibly dangerous for civilians. These reasons give credibility to the idea that the Empire State Building would not make a safe dirigible docking bay." 3 3 3 +16340 6 "Based on the excerpt, the obstacles the builders of the Empire State Building faced in attempting to dock dirigibles at their building were that foreign dirigibles used highly flammable hydrogen over helium, the winds at the top of the building violently changed, and it was illegal to fly too low over urban areas.First of all, foreign blimps using hydrogen are very dangerous due to the high risk that they will burst into flames. This only occurred to the builders when a German blimp Hindenburg caught on fire on May 6, 1937. After this tragedy, they ""realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" If the incident happened over New York City, many more lives would have been lost. More people would die, which would cause a bigger fiasco.Also, the winds above the building change constantly, which would make the blimp unstable. The article explains this effect by stating, ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" The changing winds would be torture on the back of the ship. The front would be secured due to its tethering, but the back would be left free to sway and swing in the wind. Pedestrians below would be at a high risk of danger, making this idea impractical.Finally, the law made it illegal to even approach the building, nevermind dock on it. The article tells this by saying, ""... an existing law against airships flying too low over urban areas... Would make it illegal for ship to ever tie up to the building or even approach the area..."" The builders simply could not use the dock unless the law changed. The law was made to protect pedestrians and innocent bystanders, and flying the craft to the Empire State Building would violate said law.In conclusion, the three obstacles stopping the use of the Empire State Building were the hydrogen gas used in foreign blimps, the unpredictable winds making the craft swivel, and the law prohibiting aircrafts from flying too low over urban areas." 4 4 4 +16341 6 "Although the mooring mast due to hoist at the top of the Empire State Building was a well thought out plan, it provided some obstacles for builders. The biggest problem was safety. Most dirigibles used hydrogen rather than helium, and hydrogen is a highly flammable product. If an accident, such as fire, occurred at the Empire State mooring mast it wouldn't be safe to take place around millions of people such as New York City. Another factor affecting building was nature. The winds above were constantly shifting due to currents. The only way to tie down the dirigibles would be to use weights, but that would also be extremely unsafe to be hanging above a city of people. The last issue was an existing law that prevented airships from flying to low in urban areas. This law makes it illegal for ships to even attempt to tie to the building, therefore it made it nearly impossible for builders to work." 3 3 3 +16342 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon @CAPS1 the builders of the Empire State Building were faced with some big obstacles. One obstacle was they had to make sure that the Dirigibles could dock safely. They had to be sure that the passengers could get off and on safely. Lastly they had to be sure the building would not collapse when they made the mooring mast. These examples shows that the builders were faced with many obstacles when building the Empire State Building." 1 2 2 +16343 6 "The building wasn't designed to carry the extra weight of having a dirigible attach to the top. And the dirigibles had to have weights drop from the back to keep it in place, that wouldnt be very safe have lead weights dangle over @NUM1 feet in the air. The mast was built out of Glass which could have been dangerous if a dirigible couldnt stop and went straight into the tower. Also the electronic winching stations didn't seem like they would work to well." 2 2 2 +16344 6 "The obstacles The @CAPS1 of the Empire State building faced was a law That was against airships flying low over urban areas. The other problems the @CAPS1 of the Empire state building, faced was when The U.S. Navy driigble los Angeles approached The mooring mast but could not get close enough to tie up because of force ful winds. The first obstacle the @CAPS1 had faced in attempting to allow drigibles dock was an ""existing law against airships flying too low over urban areas"". This law would make it illegal for a ship to ever fly up to a building The second Reason why the builder faced ob stacles in attempting to allow dirigible to dock was in ""1930 U.S Navy drigible Los Angeles approached the mooring mast but could not get close enough to tie up because forceful winds They @CAPS3 wind would blow dirigible to sharp spires. These are the obstacles the @CAPS1 of Empire State building faced to allow dockin." 3 3 3 +16345 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. Al Smith (four-term governor of New York who headed efforts to construct the Empire State Building) was determined to outstrip the height of the Chrysler Building ""The architect building the Chrysler Building however had a trick up his sleeve."" He built a 185-foot spire and hoisted it to the top of the @ORGANIZATION1 was determined to outstrip the height by placing a mooring mast at the top of the building. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" The winds would be constantly shifting the mast. ""But using these at the @ORGANIZATION3, where they would be clanging high above pedestrians on the street was neither practical nor safe."" Dirigibles couldn't dock at the Empire State Building also due to a law against airships flying too low over urban areas. This made it illegal for ships to ever tie up to the building. In conclusion, builders of the Empire State bulding faced obstacles when allowing dirigibles to dock there." 2 2 2 +16346 6 "The builders of the Empire State Building encountered obstacles in trying to allow dirigibles to dock at the mooring mast on top of the building. The main problem was perhaps that foreign dirigibles don't use helium, they use hydrogen. Using hydrogen was a huge problem because hydrogen is extremely flammable. If a problem did occur, hypothetically, that a dirigible caught fire it would cause a threat to New York City which is highly populated. If the dirigible blew up the people of New York would not have enough time to get away from the blast. Another problem was winds. Winds can easily blow the dirigible off its course of worse into a spire on top of a building and puncture it. This problem was discovered when the U.S navy dirigible ""Los Angeles"" Was attempting to reach the mooring mast. The captain couldn't get anywhere near the mast. These obstacles and dangers suggest the mooring mast is a bad idea. Which the constructers later came to realize." 3 3 3 +16347 6 The Empire State Building faced in attempting to build the highest Building in New york Because they wanted to be so big and they have been working on it for so menny years. 0 0 0 +16348 6 "In the artical ""The Mooring Mast by Marcia Amidon @CAPS1 the obstacles the builders of the empire Building faced in attempting to allow dirigibles to dock there, One set of engineers here in New York is trying to dope out a practical workable arrangement and the government people in washington are figuring on some safe way of mooring airships to this mast. The architects couldnot simply drop a mooring mast on top of the Empire State buildings flat roof. A thousand- foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's frames. The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings foundation, which was nearly eleven hundred feet below. The steel frame of the Empire State building would have to be modified and strengthened to accommodate this new situation. Over Sixty thousand dollars worth of modifications had to be made to the building's framework." 1 1 1 +16349 6 "Based on the excerpt there are three reason's why there were obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. These reason's were, one it was to close to the city and not high up (short). The second reason is because the wind spun the blimp around the mast. And the third reason is because German blimps were filled with hydrogen, if next to heat it would blow up. And @LOCATION1 blimps were filled with helium." 2 2 2 +16350 6 "During the construction of the Empire State Building's dirigible dock there were three major obstacles: the wind, the structure, and the safety. The wind was the most obvious flaw in the landing dock because of the rough wind currents at the top of the building. Landing perfectly on the dock was one thing, but staying there was impossible because you would have been whipped around. ""[@ORGANIZATION2 dirigible Los Angeles] feared that the wind would blow the dirigible on to the sharp spires of other buildings of the area, which would puncture the shell."" (paragraph @NUM1)The problem of structuring the mast to hold the balloon would also become a structural obstical because ""[they] couldn't simply drop a mooring mast on top of the Empire State Building's flat roof"" (paragraph @NUM2) To get the structure sound enough to land a dirigible they would have to do sixty thousand dollars worth of modifications to the framework.Lastly, landing a huge metal balloon ontop of the largest skyscraper, over millions of citydwellers, even when they knew the balloons were highly flamable, was one of the reasons the mooring mast didn't work out. Although there were two attempts of landing, neither succeeded, and now the mast is there only for decoration." 3 3 3 +16351 6 "The builders and the architects faced many issues in making this project of extending the Empire State Building to 1,250 feet height. Though they planned their steps into making the mooring mast on top was unrealistic. It was unrealistic because this was never done before on top of a building. Another obstacle they faced was safety of the passengers and in general, because most dirigibles outside the United States used hydrogen rather than helium, which was highly flammable. Another obstacle they faced was with the weather, because landing a dirigible on top of the building with fast winds due to the violent air currents was also dangerous for the people on the dirigibles and could've possibly hit other building by swiveling around in the air from the winds. The last obstacle the builders faced, was that their project was illegal, against the federal law because the dirigibles would be flying to close to urban areas such as New York City, so therefore be impossible to accomplish, as shown in paragraph @NUM1. In this paragraph it states ""The mooring mast of the Empire State Building was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed. This shows prof of the project's incapability to be built." 3 3 3 +16352 6 "Ultimately, it is evident that the entire concept of Al @ORGANIZATION1 on the Empire State building was strategically flawed. It was Al Smith's dream, but dream is not always reality. In theory, the Mooring @ORGANIZATION3 would be constructed to dock drigibles. However, it was eventually revealed that a docking station on the Empire State building would never be possible. The reason Al Smith's dream could never prove to be reality is because Smith and the builders hit many obstacles. One obstacle faced with the construction of the @ORGANIZATION3 was the location. When a landing zone is 1,250 ft above ground level, it is extremely tough to test and complete a perfect landing zone, much tougher then if it was on ground level. Also, with location is the safety of having such high wind speeds at such an altitude. It is that the higher altitude @CAPS1 get the higher the air pressure and the ""violent air currents"" (@CAPS2 @NUM1) @CAPS1 will have, making a very unsafe environment. Next, another aspect of the location was the fact it was in densely populated New York City, if there were any mistakes a great number of casualties would be expected. Lastly, a large obstacle Smith and the builders faced was technology, in the @DATE1's and 1930's the amount of technology and engineering was certainly unparallel to the technology prevalent in today's society." 3 1 3 +16353 6 "The obstacles, the builders of the Empire State building faced in attempting to allow dirigibles to dock there is that Al Smith constructed 185 foot spire inside the building to make it taller. By @DATE1's the new airships called dirigibles was hailed as transportation for the future. They was like blimps but was filled with hydrogen and helium to make them lighter. In New york city they had a lack of Suitable landing area for dirigibles. Al smith add a mooring mast to the top of the building so they could tie the line from infront of the ship." 1 1 1 +16354 6 "The @CAPS1 of the Empire State building faced many obstacles when they attempted to allow dirigibles to dock there. One obstacle was that a law stating that airships couldn't fly too low over cities, meaning they couldn't dock at the Empire State building. Another obstacle was that foreign blimps used hydrogen instead of helium to fly, and hydrogen is very flammable, so using hydrogen blimps in @LOCATION1 would create public safety issues. Finally, nature would prove to be the greatest obstacle because of wind, which could get quite violent and cause the blimps to possibly get untied from the building or fall. In conclusion, there were many obstacles that the @CAPS1 of the Empire State building faced when trying to allow dirigibles to dock there." 2 3 3 +16355 6 "The workers faced many obstacles in the process of building the mooring mast. The first reason was because of the High Winds. The winds blew the dirigibles two-and-frow. It would be cotastrophic if an accident occurred. Secondly, The Law stood in the way of this idea. A law in New York was passed, that prevented dirigibles from flying over urban areas. The reasoning behind the law was because of a german dirigible accident in New Jersey. Lastly, and probably the simpilest, There was no clear way to land! The landing gear had not been invented yet, so it was too risky to even attempt landing. In conclusion, this idea was way ahead of its time, which is both good and bad in most ways." 2 3 3 +16356 6 "The builders of the @ORGANIZATION2 many obstacles. Al smith realized that he was close to losing the title of the world's tallest building. The one obstacle to their expanded use in New York City was the lack of a suitable landing area. A mooring mast was added to the top of the building would allow dirigibles to anchor there for several hours for refueling. Dirigibles were docked by means of an electric whinch. The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof. A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's frame. The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. Over sixty thousand dollars' worth of modifications had to be made to the building's framework. The greatest obstacle to the successful use of the mooring mast was nature itself. Dirigibles moored in open landing fields could be weighted down in back with lead weights. This law would make it illegal for a ship to ever tie up to the building or even approach the area, all though two dirigibles did attempt to reach the building before the entire idea was dropped. Fearing that the wind blow the dirigible onto" 3 4 4 +16357 6 "The dream of the aviation pioneers of docking their dirigibles on the Empire State Building, created obstacles for the builders to face. The mooring mast of the building ""was destined to never fulfill its purpose,"" the author implying that the building should not have been built, because of all these obscured obstacles. One obstacle they faced was the violent winds on top of the building, due to air currents. It was difficult for the dirigibles to dock. The ""four-blocks"" length blimp, filled with helium and hydrogen, would be dangling high above, which was not safe for the millions of people on the streets. In December 1930, the dirigible Los Angeles could not get close enough to the mooring mast because of forceful winds. Another obstacle the builders faced was the law against airships flying too low over urban areas. The Columbia blimp tried to deliver bundles of newspapers to the building, ending up with papers dangling on the rope from the blimp, because the dirigible mooring equipment was never installed. Therefore it was ""desirable to postpone to a later date that the final installation of the landing gear"" that gave airplanes the title of ""transportation of the future.""" 3 3 3 +16358 6 "The builders of the Empire State Building came upon some problems when putting in the dock for dirigibles. First, the sheer height of the building makes catching the dirigibles dangerous because of the tower's structure @CAPS1, If the dirigible was to crash, it would be falling onto a big citie's streets. Finally, most dirigibles were filled with hydrogen and that is highly flammable. That is why the mooring mast was dangerous." 1 2 2 +16359 6 The Mooring Mast has two obstacles @CAPS1 the winds on top of the building are constantly shifting due to violent air currents. The other reason dirigibles could not moor at the @ORGANIZATION1 law against airship flying too low over urban area. They try to get close but they can't because of forceful winds. In nineteen thirty the @ORGANIZATION3 dirigible Los Angeles approched the mooring but not get close. So they stablish a low to a securit for a urban Area. 2 2 2 +16360 6 "Based on the excerpt, there were many obsticles the builders faced in attempting to allow dirigibles to dock there. One obsticle is that ""most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly flammable."" This could be a big threat to The nearby pedestrians. Furthermore, an additional obsticle is ""nature itself"". The winds are constantly changing which is dangerous for the dirigibles. One last example of an obsticle is ""an existing law against airships flying too low over urban areas."" This would be dangerous if the dirigible lost control and harmed a pedestrian. These are @CAPS1 some examples In the article of how there were many obsticles the builders faced in attempting to allow dirigibles to dock there." 3 3 3 +16361 6 "Builders in The Mooring @CAPS1 by @ORGANIZATION2 face many obstacles when working to allow dirigibles to dock on the Empire State Building. In order to ensure safety and eliminate problems involving the stress load and pressure of the dirigible on the building, the building would need ""to be modified and strengthened to accommodate"" the blimps, and these modification would cost up to sixty thousand dollars. Many of the blimps were filled with hydrogen, an extremly flammable substance that could put the building and the City of New York in great danger if a dirigible was to blow up. Because winds ""on the top of the building are constantly shifting due to violent air currents,"" there was difficulty controling dirigibles and keeping blimps still to keep passengers safe. There was also a law against the height of airships in urban areas. Using the mooring mast on top of the Empire State Building would result in breaking the law since the Mast was too low. These difficult obstacles proved too difficult to overcome. as the mast is not seriously used by dirigibles." 3 3 3 +16362 6 "It was very difficult for the builders of the Empire State Building to allow dirigibles to dock there. They had to face many obstacles along the way. One obstacle was that they kept trying to make the building higher. Al Smith was very competitive with the architect who was constructing the Chrysler Building which was also in New York City. Smith wanted it larger and by extending it, it became more dangerous and difficult to allow docks up there. Another obstacle was the weather at the top of the building. The winds at that height were very rigorous and with a highly populated area, they did not want an accident to occur. Allowing docs up on the Empire State Building was very dangerous." 1 2 2 +16363 6 "New York is said to be, ""the city that never sleeps."" The people of New York are always awake, rushing about in the streets. When four-term governor, Al Smith, wanted to put up a mooring mast on top of the Empire State Building, these people of New York had many concerns. Along with the people whom were constructing the building. These concerns consisted of laws, saftey and construction.If a mooring mast was built, a law they'd have to worry about would be flying airships too low over urban areas. This law would make it illegal for a ship to ever tie up the building or even come close to the area. Another major worry was safety. These dirigibles contained highly flammable hydrogen. If a dirigible had caught fire above New York City, the damage could be tragic. The construction of the mast was out of the question because they never had planned on making it prior to starting the projectOverall, the mooring mast on top of the Empire State Building was never really destined to have been created. Too many factors and obstacles were in the way after the idea of creating the mooring mast began." 3 2 3 +16364 6 "The builders faced many obstacles in attempting to allow dirigibles to dock on the Empire State Building. They had to find a way to keep the dirigibles from spining around the top of the tower. ""The winds on top of the building were constantly shifting due to violent air currents."" This meant the dirigibles, would swivel around the mast unless tied down. The next problem or obstacle was making the buildings structure strong enough to withstand the tension caused by the dirigibles. ""Over sixty thousand dollars worth of modifications had to be made to the buildings framework. The next challenge was to create a safe enviroment for the pedestrians below. That was not possible because the city was already made below. The drigibles ""would be dangling high above pedestrians on the street was neither practical nor safe. Clearly the builders faced obstacles in attempting to allow dirigibles to dock on the building." 3 3 3 +16365 6 "The builders, faced" 0 0 0 +16366 6 "Al Smith and his workers, went through quite a bit while working on this building. As an example, while building it they had to transmitt the stress of the dirigibles load all the way to the buildings foundation, which was around eleven hundred feet below. After that they would have to modify and strengthen the frame of the building to accommodate the new situation. The greatest obstacle throughout the whole process though was the nature itself. Due to violent air currents the winds on top of the building were constantly shifting. Safety was a major obstacle Smith had to face while building this building. Smith thought a dirigible would be okay to use on the building but little did he know how dangerous using one could be. Due to the fact most dirigibles from outside the @LOCATION1 used hydrogen rather than helium, using hydrogen, meant HIGHLY flammable." 3 3 3 +16367 6 "In the novel the @CAPS1 of the Empire State Building faced in attempting to allow dirigibles to dock there, Because in the novel it said ""A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's frame."" This quote said that the dirigible would add stress to the building and @CAPS2 risk of colapsing." 1 1 1 +16368 6 "They faced many problems when trying to dock there. It should never have been made in the first place. To many things were predictable. They had no landing gear, The wind was too great a factore, and the Ships couldent get close enough to The mast to dock.The people creating This over looked the possibility of it not working and only looked torde building it. They had no landing gears what so ever so it was hard to steady it and dock it. The wind was unpredictable and swung the balloon around. The biggest thing was when they slowed it down and had no wind it still couldent get close enough to dock. Those are The @CAPS1 problems they faced." 2 2 2 +16369 6 "There were many obstacles the builders of the Empire State Building had to face in attempting to allow dirigibles to dock there. The dirigible's weight was held by a single cable tether that ""have to be transmitted all the way to the building's foundation,"" which was far below. If the cable tether were to ever break, passengers in the dirigible and civilians of New York would be in grave danger. This cable tether would be too risky to use. The builders could not possibly overcome nature and its ""violent air currents"" for the winds they the top of the building. These currents would cause docking to potentially be too time-consuming and dangerous. The builders and architects try to reverse this obstacle by weighing down ""the back with lead weights."" This was ""neither practical or safe,"" because of the potential danger of the weights falling and hitting New York pedestrians. The builders and architects of this grand project had to quarrel with many gargantuan obstacles in order to dock at the Empire State Building." 3 3 3 +16370 6 "some of the obstacles the builders went throw was that they had to make many changes, such as they could not just drop a mast on top of the Buildings flat roof. The blimp would give the building stress held by a single cable. the blimps load and pressure from the wind would have to be transmitted all the way to the buildings foundation. The @CAPS1 could have to be strengthened to accommodate this new situation. over sixty thousands of dollars for the new frame work." 2 2 2 +16371 6 "Creating a mooring mast to sit atop the Empire State Building that would function and allow dirigibles to dock there was an incredibly challenging task for those who built the Empire State Building. Because the building was not originally designed to support the extra weight and size of a mooring mast, architects had to work to redesign the frame of the whole building. The architects modified plans to strengthen the steel frame of the building enough so that it could handle the added stress of a mooring mast. While builders were able to fix this problem, many obstacles remained that could not be avoided. One of these was the danger of attempting to control a dirigible. Dirigibles were often inflated with highly flammable hydrogen which would threaten the safety of the citizens of highly populated New York City. Also, dirigibles were traditionally weighed down with lead while docked to keep the blimb from floating around in the wind. This could not be done on the Empire State Building because it would mean lead bricks would be dangling over pedestrians constantly. Besides all these practical obstacles, it was against the law for aircrafts to fly over urban areas, and that was the final obstacle that kept the mooring mast from being used." 3 4 4 +16372 6 "There were many obsticles in the process of building the process to build a mooring mast. The designers had to think they're way around them.It was easily known you couldn't just go up to the top and start construction. There were acomidations to be made. The exerpt describes, ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings foundation..."" (@CAPS1). Just adding it on would upset the buildings structure and foundation.Safety was a concern. People realized it was a bad idea to have something as highly flammable as the dirigible. ""Most dirigibles from outside the United States used hydrogen rather than helium..."" (@CAPS1). After recent fires, it was noticed now dangerous this idea was.Control was an issue in the city; rather than an open feild. ""... the back of the ship would swivle around the mooring mast"" (@CAPS1). That wasn't going to'fly' with most people, It would be almost imposible to keep it @CAPS4 for people loading. Designers face a lot of problems in constructing buildings but in this case, the mooring mast just wasn't ment to be." 3 2 3 +16373 6 "The Empire state building was destined to reach new limits that had never been met or even thought of in the world of architecture as described in ""The Mooring Mast"" by @ORGANIZATION1 was determined efforts in building a mast not only set the Empire State building at the tallest building, at @NUM1 ft., though to also serve a useful purpose, was a radical dream supported with intuitive design and high goals. Unfortunately the reality in successfully completing this far reached destination was slim as problems gradually arose. The largest obstacle was ""... one of safety: most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is flammable."" This along with the fact that violent air currents at such great heights required that lead weights weighted dirigible down to prevent from extreme movement, served as serious caution the safety of the highly populated New York City surrounding the Empire State building. As practicality in the hopeful moore mast diminished it became... ""desirable to post to a later date the final installation of the landing gear."" The use of the moore mast ""quietly disappeared"", concluding the radical dreams." 2 2 2 +16374 6 "Al Smith had a vision; to create a site for modern travel. Smith faced many obstacles and persisted with hard efforts in attempt to bring his vision to life. The stress of a thousand foot dirigible would have been to much pressure for the original framework of the Empire State Building. Over @MONEY1 worth of changes had to be made to strengthen the buildings framework. In addition the builders had designed a mast the would be rocket-shaped, made with aluminum, which could accomadate the mooring arm, and the control machienery would be in the shaft; housing elevators and stairs for passengers on the dirigible. Another obstacle they had to face was the lack of floors that would serve as a boarding area for the passengers. They had begun to build additinoal floors with a glassed-in observation area and a boarding area. Although the mooring mast for the dirigibles was a fiasco, Al Smith and many architects tried to make all the modifications they could have to fulfill Smith's vision for what he thought was the Empire State Building's destiny" 2 2 2 +16375 6 "The builders of the empire state Building faced many obstacles in attempting to allow dirigibles to dock there according to the excerpt The Mooring Mast by Marcia Amidon Lsted. First obstacle they had to make the mooring mast safe for passengers to board on and off. The Architects had engineers and such working on it. Another obstacle the Architects had to work with was putting the mooring mast up on the building. So, then they had to add over sixty thousand dollars' added to the framework of the building so that it would be sturdy for the mooring mast. Once the mooring mast was set up and they ""celebrated framing the entire building,"" just another problem occurred ""The greatest obstacle to the successful use of the mooring mast was nature itself,"" the winds were constantly shifting and caused the dirigible to swivel around the mooring mast. Finally they fixed all of their problems for this building to be in use then the biggest obstacle occurred, dirigibles became illegal and air planes became the new transportation. The builders of the Empire State building had just too many obstacles and failed" 2 3 3 +16376 6 "As the builder's dream for the Empire State building grew larger, so did the modifications they needed to make. To begin, they needed to research and engineer a safe and practical way for the dirigible to dock. This was soon done with the help of navy and government research. The next struggle was the structure of the building. Adding a mast with the added weight of the dirigibles and an engine room at the top of the sky scraper would effect the frame. In order for the building to be structurely sound, the frame was modified to withstand the added stress. Even with research and modifications, the docking system was never put in place. The strong and shifting winds above the Empire State Building would not allow for a blimp to actually dock safely, and so the idea was soon let go. Safety and wind were the two challenges that the builders could not over come." 2 2 2 +16377 6 "The builders of the Empire state building faced many obstacles in the course of bringing Al Smith's plans to life. One of them was ""air ships flying too low over Urban areas"" is illegal. If breaking the law wasn't a large enough obstacle, then the issue of New York citizen's safety also came into play. Most dirigibles were dangerous due to their flamability. So one wrong move could have killed many ""if it had [exploded] above a densley populated area""Another huge obstacle the came into play was the lightness of the dirigibles, that would allow it's rear to ""swivel around and around the mooring mast."" The only way to stop that would to again, put the citizens in danger." 2 3 3 +16378 6 "The obstacles the buildes of the empire state building faced were that they had to make it strong. Also they had to be sure that the dirigibles wouldn't destroy the building when it landed. they also had to care ful that the dirigbles would crash in to the building when it was droping off the papers. An other obstacle for the workes was that the driagbles would not be able to land easily. Finally, they would have to make sure that nothing is out of place and working." 1 1 1 +16379 6 "The builders of the Empire States Building encoutered many obstacles in the attempt to allow blimps to dock on the building. The engineers realized from the start that even if they could get a blimp docked, it would put additional stress on the buildings structure. to fix this, they had to reinforce the entire building. In addition to this, the docking of a blimp was dangerous in itself. It could easily be destroyed like the Hindenburg" 2 2 2 +16380 6 "The builders of the Empire State Building faced many obstacles especially with the construction of the mooring mast due to the height of the building. First, due to the alleged, projected height of the mast there were concerns on how to evenly distribute the dirigible's weight. The structure of the dirigible and the fact that it was lighter than air was crucial to understand. Taking this into account, the builders had to figure out how to have the whole building support the dirigible's weight and not just the top mast. Had the dirigible be supported by only the mast itself, the dirigible's weight would probably pulled the mast right out of the building. Another obstacle the builders faced was the delicate nature of the mooring mast. The mast was not made in a business fashion, but more of an extravagant manner, with much of it made out of glass because of many windows. This made the mast's installation a lot more harder because they had to watch the mast be installed from all areas. The builders faced many obstacles in making sure that the Empire State Building was acceptable for dirigible docking." 2 2 2 +16381 6 "When faced with the prospect of building the tallest building in the world, Al Smith refused to give up. In order to achieve his goal, he decided to build a Dirigible docking mast atop his new creation. But with this genius idea came obstacle after obstacle, preventing the idea from ever taking flight. One obstacle faced by Al Smith, and by far the greatest, was safety. Most non-American Dirigibles used hydrogen within their Dirigibles, which is highly flammable. The owners of the empire state building realized how bad it would have been if a fiery explosion happened ""above a densely populated area such as downtown New York"". Another great obstacle was nature itself. ""the winds on top of the building were constantly shifting due to violent air currents"". This made it impossible for the Dirigible to be tethered without the back of ship swireling around the mooring mast." 3 2 3 +16382 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were safety issues, nature itself, and the law. Safety was a big issue when it came to dirigibles docking over a populated areas such as New York City. ""Most dirigibles from outside the United States used Hydrogen rather than helium, and Hydrogen is highly flammable."" After an accident in New Jersey the owners of the Empire State Building realized this accident would have been much worse if it were it New York City. Nature causes lots of obstacles inlife, like wind which made it very hard to dock a big dirigible. ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were teathered to the mooring mast, the back of ship would swivil around."" They would be dangling high above people which would not be safe. There is a law against airships flying too low over urban areas. ""This law would make it illegal for a ship to ever tie up to the building."" Two dirigibles attempted to reach the building before the law was dropped. Saftey, nature, and the law kept Al @CAPS1 dream from coming true. These obstacles were the ones the builders faced when trying to allow dirigibles to dock on the Empire State Building." 3 3 3 +16383 6 "The architects could not simply drop a mooring mast on top of the Empire State building flat roof. When they tryed to build it there was not enough space so they tried to force it but that @CAPS1 mess everything up. ""A thousand-foot dirgible moored at the top of the building held by a single cable tether, without strees to the building's frame."" At times when they try to add things that made the building only heavyer and more likely to fall. They try to add more things to only make it look better but what they didn't know is that it was only gain to fall more." 1 2 2 +16384 6 The greatest obstacle to the Successful use or the mooring mast was nature itself. The-winds on top of the building were constantly Shifting due to violent air currents. law against airships flying to low over urban areas. 1 1 1 +16385 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. ""The Mooring Mast"" by Marcia Amidon Lsted shares some of the obstacles that were dealt with when trying to make it possible for blimps to land atop the Empire State Building. Lsted discusses the obstacles of nature, safety, laws, and construction in ""The Mooring Mast"". Nature presented a huge setback in terms of docking dirigibles. As Lsted writes, ""even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"". The safety of docking blimps on the Empire State Building also became issue. ""The owners of the Empire State Building realized how much worse ""an accident could be if it happened above downtown New York, instead of in a field. The laws in affect of the time made it illegal for airships to fly too low over urban areas. This law makes docking a dirigible impossible in New York City. The construction alone of accommodating a mooring mast required ""over @NUM1 dollars worth of modifications"" and a lot of time and planning. As Lsted says, ""The mooring mast of The Empire State Building was destined to never fufill its purpose"". The obstacles presented in attempting to allow dirigibles to dock on the Empire State Building were too great and too many. The laws, safety, construction, and nature of the time were too big a setback for this endeavor." 3 3 3 +16386 6 "There are a few obstacles the builders of the Empire State Building face in attempting to allow dirigibles to dock there. One obstacle would be the building of the mooring mast to be added to the top of the building. Although it was a good idea, it was very complicated. Another Reason consists of law @CAPS1. There was an existing law against airships flying too low over urban areas. New York is defanitley not the City for this idea just because there is alot of people walking around the @CAPS2 and there is many buildings around. This idea of docking dirigibles on the Empire State Building would @CAPS3 to be over with the invention of airplanes. The idea @CAPS4 disappeared." 2 1 2 +16387 6 Al Smith's idea of making the Empire State Building bigger was a very difficult task. Also tying to make the top of the building a docking area for new airships was difficult. One obstacles the builders faced attempting to create a dock for dirigibles was preventing stress to the buildings frame. If the builders wanted to fix that it will invole the the building's foundation which was eleven hundred feet below. The framework of the building will cost too much money. The stress of the building will come from the dirigibles's load and wind pressure. Another Obstacle that the builders were faced with was the wind. The violent air current would cause the building to constinously shift. They didnt wand to use lead weights because it was to dangerous. because they were dangling high over predestrains. A law that builders had to think about while building this was the law that went against airships flying too low They had many obstacles that the builders had to keep in mind while building the dock. 3 3 3 +16388 6 "The main obstacles that the builders of the Empire State Building had to face were mainly safety and nature itself. safety was most important, and because they were aiming at having dirigibles land on top of the building, they needed to make sure it was completely safe In the reading it states that ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is flameable."" @CAPS1 it is flameable, the builders realized how much danger it could cause especially in a high populated area like New York City. Now besides safety, one of the biggest obstacles was nature. With having the mooring mask at a steep height on top of the Empire State Building came with many difficulties that revolved around the weather and atmosphere The winds on the top of the building were always shifting, which would make it hard to land dirigibles. Because of the unsustainable air currents, nothing could be done about the dirigibles. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" Due to the roughness of the wind and the unidealistic design of the dirigible, safety and nature were main obstacles in the creation of the Empire State Building." 3 2 3 +16389 6 "Builders faced many problems with @CAPS1 dirigibles to dock on the empire state building. The first problem they faced was the wind at the top of the building. When the Navy dirigible Los Angeles tried to dock at the building, the wind wouldn't allow it to get close enough without moving out of control like hitting another building. This made it impossible for the dirigible to dock and so the Los Angeles gave up. Another reason builders faced a problem with with @CAPS1 dirigibles to dock on the empire state building, was that there was a law that said airships were not @CAPS2 to fly low over urban areas. This law would prevent any and all dirigibles from coming near the building and therefore they wouldn't be able to dock." 2 2 2 +16390 6 "In The Mooring Mast by @ORGANIZATION1, many contractors were exceedingly determined to construct a mast on the Empire State building to sanction the use of dirigibles, or blimps, to be the way of air travel for the future. There were great amounts of obstacles in the way of making this a reality. Allowing dirigibles to dock on the Empire State building was a fantastic idea, but at the same time, proved to be just an impossible theory.The first problem was the weight of the blimp with the combined malicious winds, to eventually shatter the beautiful framework of the building. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" Architects soon fixed that problem when they impulsively spent over sixty thousand dollars on changes to the building to support this flaw, but this was not the only problem. The second major concern was the hydrogen that would be filling these blimps. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable."" Hydrogen can easily create fires, which is a top concern in a densely populated city such as New York City. The most immense obstacle was mother nature. ""The winds on top of buildings were constantly shifting due to violent air currents."" With dirigible flying above thousands of civilians, an uncontrolled aircraft due to high winds is not safe. The last impractical reason why this idea was not realistic was because of the law that forbade airships to fly too low in urban areas. All of those obstacles made building a mast on The Empire State building only a dream.Al Smith, the architect of The Empire State building, came up with fascinating ideas. Although they were great, they did not work. Between the environment, winds, hydrogen use, and safety laws, his dream was just a hoax. These obstacles made it impossible to proceed construction. Al Smith had amazing imagination with bad luck." 4 4 4 +16391 6 "In the article ""The Mooring Mast"" by Marcia Amidon Lsted, the builders of the mooring mast had to face obstacles that hindered the success of the docking of the dirigibles. First, the architects had to design the mast. They knew that the frame of the Empire state building would have to be strengthened to carry the load and wind pressure of the dirigible. Therefore, they ""designed the mooring mast and made changes to the existing plans for the buildings skeleton"" and planned for the reconstruction of the building and mast. Workers were excited with their plans and ready to watch the launch of a revolutionary moment. However, once they realized the many problems with their construction plan, they faced many roadblocks that prevented the plan to follow through. ""Most dirigibles... used hydrogen rather than helium, and hydrogen is highly flammable,"" proving that the mooring mast was unsafe and could lead to potential accidents. Also, ""the winds on top of the building were constantly shifting due to violent air currents"". Showing the physical insecurity of the ship on the dirigible. Lastly, the law states restrictions on airships flying too low, and the dirigibles would be breaking that law. Even though builders wanted to provide a launching pad for the dirigibles and had an ideal design, there were too many faults that made the mooring mast impossible to bring to reality. Clearly, the builders faced many problems that could not have been solved in trying to allow the dirigibles to dock" 4 4 4 +16392 6 "The idea of a mooring mast atop the Empire State Building seemed like a grand idea at the time of construction, but it had many obstacles to overcome The builders first had to make ""over sixty thousand dollars' worth of modifications"" to the buildings steel frame. this would reinforce the building against the pressure a dock dirigible would create. Adding a mooring mast would not be as simple as placing one atop the building. So the builders constructed a huge stainless steel enclosure to house passengers. this enclosure also had an elevator and stairs to bring passengers to the eighty fifth floor. Lastly, the builders had to complete the roof before framing the mast in steel. The concept of a mooring mast was ingenious although the practicality was soon found to be extremely low. Not to mention the fact builders were a thousand feet high. this idea presented many challenges." 1 2 2 +16393 6 "The Empire State Building wanted to allow dirigibles to dock on top. To do this the would need to build a mast on top so that the dirigibles could hook on to and refuel. They ran into a lot of problem right off the bat and kept running into them. The first problem, of many, was that they could not just plop a mast on the top because it would be to unstable and cause to much stress to the structure. To prevent that what they ended up doing was modifying and strengthening the structure as a whole costing over sixty thousand dollars. Once they figured out how to equal out all of the wind pressure, they had to think of how to bring the dirigibles in, the answer was simple electrical winches. The next problem was safty, dirigibles outside of the @LOCATION1 used highly flammable hydrogen and if that blew up it would not be good for the densely populated city below. Another safety issue was nature's violently shifting winds and to solve the problem on the ground they would waive the back down with lead weights to keep it from sweying, but doing that in the air over a lot of people could be unsafe. The final nail in the coffin to this plan was that there is a law for bidding airships to fly too low over urban areas." 3 4 4 +16394 6 "The obstacle that the builders of the Empire State Building face in attempting to allow dirigibles to dock there were the winds on top of the Empire State Building. This is because in paragraph @NUM1 it states that ""the building were constantly shifting due to violent air currents."" This promblem would make the dirigibles Swivel around in the air. Another obstacle is that the dirigibles had is that it uses hydrogen and Helium which is highly flammable." 2 2 2 +16395 6 "There were many obstacles the builders of the Empire State Building faced such as the high winds, and how they could dock the dirigibles when it is against the law to fly an aircraft to low near urban areas. one obstacle the builders faced was the safety of the dirigibles anchoring above busy streets filled with people and high winds. Most dirigibles out of the United States used hydrogen rather then helium, and hydrogen is highly flamable, so any foreign dirigible that was anchored at the Empire State building would cause a safety issue because the high winds at the top of the building could cause an accident to occur causing the dirigible to blow up and potentially endanger pedestrians. Another obstacle the builders faced is the law that made it illegal for dirigibles to ever dock at building because it was illegal for aircrafts to fly to low near urban areas and it would have been a long process to ever get the government to let them." 3 3 3 +16396 6 "The builders faced so many obstacles to dirigibles on the Empire State Building. One of the greatest obstacle's was nature itself, like winds on top of the building was shifting due to dangerious air currents. The back of the dirigible would swivel around and around the mooring mast. The dirigibles would be dangling high above pedetrians on the streets, was neither practical nor safe. There was an existing law against airships flying too low over urban areas. There were so many obstacles to moor dirigibles on the Empire State Building." 2 2 2 +16397 6 "The builders of the Empire State Building faced many obstacles with trying to build a docking station for dirigibles. They first needed to make @MONEY1 worth of modifications to strengthen the building to ""accommodate this new situation."" This however, was an obstacle they were able to overcome. The next problem was that most dirigibles used hydrogen rather than helium. Hydrogen is flammable, and after the fire of the Hindenburg, people realized how potentially dangerous this docking idea was. Another problem was the weather. High winds could cause problems when the dirigibles are trying to dock. To top off, this list of problems is the fact that there is a ""law against airships flying too low over urban areas."" @CAPS1, there were just too many obstacles for the builders to overcome, and the mooring mast was never successful." 3 4 4 +16398 6 "The obstacles the builders faced in attempting to allow dirigibles to dock on the Empire State Building were severe. The greatest and most important obstacle they faced was safety. If a plan is not completely safe, it shouldn't happen. The Empire State Building would not have been stable enough with the winds being so powerful. Also, most dirigibles or blimps used hydrogen not helium which would be extremely dangerous if the blimp caught on fire. Especially in a place as crowded as New York. This was another problem with landing a dirigible on the Empire State Building. Another obstacle was the wind. A dirigible could not land unless it was weighted down with lead weights which also was not a bit safe for people walking freely in New York City. These problems are the reasons why the dirigibles could not land on the Empire State Building" 3 4 4 +16399 6 "In attempt to make the Empire State Building higher than the Chrysler Building, the builders ran through a few obstacles trying to allow dirigibles to dock there.One obstacle was because of safety reasons. Dirigibles from outside the United States used hydrogen, not helium. Hydrogen was more flammable, causing the builders to realize if an accident like when the German dirigible was destroyed by a fire in New Jersey it would be more worse if it was to happen in a populated area such as downtown New York. Known as one of the greatest obstacles attempting to use the mooring mast was through nature. If the dirigible was tethered to the mooring mast, the back of it would move around and around due to the winds on top of the building.The practical obstacle the builders faced was by law. An existing law against airships flying too low over urban areas. Having to tie up the dirigible to the building would be illegal. But as years passed on the idea of using the mooring mast died out leaving there to be no more obstacles to face." 3 3 3 +16400 6 "The builders of the Empire State Building faced many obstacles in allowing dirigibles to dock there. The author stated, ""The greatest reason was one of safety."" Dirigibles used hydrogen more often than helium, and hydrogen is highly flammable. If a dirigible were to catch fire or crash, it would be very dangerous over a populated area.Another obstacle was nature. The author wrote, ""the winds on top of the building were constantly shifting due to violent air currents."" The wind would be too much for a dirigible to handle.A final reason stating why they couldnt dock was because it was against the law. The story stated, ""... was an existing law against airships flying too low over urban areas."" This law made it illegal to dock.The dirigibles faced many obstacles that didnt allow them to dock at the Empire State Building." 3 3 3 +16401 6 "Dirigibles had a top speed of Eighty milles per hour, and they could Cruise at Seventy milles per hoor for thousands of milles witout needing refueling. Some were as long as one thousand feet the same length as four bloks in New York City. The one obstacole to their expanded use in New York was the lak of a suitable landing area. The greatest obstacle to the sucsessful use of the mooring mast was nature it salf a window on the top were Constantly @CAPS1 due to biolent air corents." 2 2 2 +16402 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, workers building the Empire State Building faced many obstacles in attempting to allow dirigibles, or blimps to dock there. At first Al Smith, who headed efforts to construct the Empire State Building, was really trying to win ""... the title of world's tallest building..."" against the architect building the Chrysler Building. Then Al Smith had an idea that would make his building over @NUM1 taller than the Chrysler building. Al Smith decided he would add a to the building to serve as a mooring mast for derigibles. ""The Empire State Building would have to be modified and strengthened to accommodate this new situation."" ""over sixty thousand dollars' worth of modifications had to be made..."". ""The architects and engineers of the Empire State Building consulted with the experts..."" to make sure everything would be safe and in check. The builders went through such trouble and ""The mooring mast of the Empire State Building was destined to never fufill its purpose..."". After so much work and effort the mooring mast never got put to use because ""Dirigibles moored... at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe.""" 2 2 2 +16403 6 "In building the Empire State Building, builders had to deal with numerous obstacles to allow dirigibles to dock there. The first obstacle was what the dirigibles would attach to. Builders thought that by adding a mooring mast it would make docking easy, although they disregarded the building's foundation. The builders realized that the foundation was not nearly strong enough to accommodate dirigibles, so over an additional sixty thousand dollars was spent to make it stronger. Builders then had to brainstorm how passengers would board, along with a place for baggage and ticketing. To resolve this, a glassed-in observation area and open observation platform were constructed. Another obstacle was the existing airship law for how low they could fly. The dirigibles clearly went against this law and the idea for using the mast for docking. After failed attempts at docking the idea went away, and builders realized the plan would never work." 2 3 3 +16404 6 "The idea of making the top of the Empire State Building into a dirigible @CAPS1 had been a good idea, and would have helped with the problem of there was no area large enough for the dirigible to land. However there were flaws in the idea that were not discovered till the construction of the building was completed. One flaw was the violent air currents that would keep the winds around the building constantly moving and would the move back of the dirigible around and around till eventuly the back of the dirigible would hit the building. The other flaw Was that most of the dirigibles was filled with a highly flamable gas known as hydrogen. If the dirigible had exploded and burst into flames like the Hindenburg in Lakehurst, New Jersey on May 6, 1937 then the flaming shell would fall down on the people around the building. Even if the flaws had been fixed, there was already a law that went against the airships flying too low over urban areas and if the airships managed to land on the Empire States Building it would be considered illegal." 3 3 3 +16405 6 "While building the Empire State building, the builders faced many obstacles in allowing dirigibles to dock there. The original problem was figuring out how to get the dirigible onto the building. After consulting with the Navy as well as meeting with the president of newly formed ""airship transport company."" After this they thought they were past the rough of it, but there were many obstacles to come. Next, as they began constructing the mass, they realised with the height of the building, dirigibles landing would ""add stress to the building's frame."" The frame of the building would have to be modified to help fix this problems, and it cost over @MONEY1 to make these modifications. The prior two obstacles had been resolved, but the next bunch of obstacles caused the attempt, of dirigibles to dock, to stop in its tracks. Many safety problems posed as obstacles for the building team. It could be very dangerous, as some gases used in dirigibles are extremely flameable. Another obstacle is the ability to safely dock, at such high altitudes, with ""constantly shifting"" air currents. All of these problems were amplified because it was even more unsafe for these problems to exist in such a populated area. The build team was able to overcome some obstacles, but some caused too many potential problems to be fixed." 4 4 4 +16406 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. First of all, a lot of stress would be put on the building's frame with a thousand foot dirigible held to it, so the builders would have to make many modifications to the building's framework. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" @CAPS1, safety was a paramount reason as to why dirigibles weren't allowed to dock there because of the highly flammable gas, Hydrogen that is used in most dirigibles. ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" @CAPS2, nature was the greatest obstacle to the successful use of the mooring mast. Violent air currents caused shifting winds, making the dirigible swivel around the mooring mast, which wasn't safe for the pedestrians on the streets below. In conclusion, these obstacles made it impossible for the mooring mast of the Empire State Building to fulfill its purpose." 3 4 4 +16407 6 "The obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was nature itself. The winds on the top of the building were constantly shifting due to violent air currents. Another obstacle would have to be that the builders didn't check the laws of the city because an aircraft can fly that low over urban areas such as New York City so this law prevented and made it illegal for a ship to ever tie up to the building or even approach the area. The last obstacle that the builders of the Empire State Building faced with public safety and this was the greatest reason. This project with the public in danger because if a dirigible went down in flames over a highly populated city like New York city it would be catastrophic! For example the German dirigible the Hindenburg did in lakehurst, New Jersey then the accident would be much worse & many people would die." 3 3 3 +16408 6 "While building the mooring Mast, the builders of the Empire State Building struggled through many difficulties and issues. First they had to make sure the dirigible wouldn't tear down the framework of the building. Because the dirigible was so large and heavy the dirigible added with the wind would ""be transmitted all the way to the building's foundation"" which was at the bottom. This had to be addressed, or the building would have been destroyed. Even before this, workers had to learn how dirigibles worked and how they could be docked on the buildings. They ""consulted with experts, taking tours of the equipment"" just in order to learn how a dirigible flies and how it would be docked. Probably the most important thing the workers had to keep in mind was the safety of the public. This was very difficult to do, and unfortunately, it wasn't possible to build this mast so it would be safe for the public. This eventually led to the mast never being used as a docking station." 3 2 3 +16409 6 "The Greatest Obstacle the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was nature itself. The wings on top of the building were constantly shifting due to violent air currents. Even if the dirigibles were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast. Dirigibles moored in open landing fields could be weighted down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical or safe. (@CAPS1 @NUM1)" 2 2 2 +16410 6 "In the excerpt from ""The Mooring Mast"" by Marcia Amidon Lsted the builders had to face many obstacles while constructing the Empire State building to be able to allow drigibles to dock there. The builders had to face many obstacles such as laws @CAPS1 Changes and the building @CAPS2, that was not thought about while the idea was accumulating. After creating the plan to add a mast on the top of the empire State building a docking for Dirigibles, the new airships they finally decided to look at the defaults of the already developed plan. While the mask was being designed architects realized that you ""could not simply drop a moorning mast on top of the Empire States building's flat roof."" ""A thousand-foot drigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame"". When the builders were constructing their plan they didnt consider the fact that the load of the dirigibles would add stress to the entire building. ""The greatest obstacle to a successful use of the mooring mast was nature itself."" The builders realize that the winds on top of the building were constantly shifting due to violent air currents and since the law was against airships flying too low over urban areas the dirigibles idea wouldnt be as easy to fulfill with all of the obstacles to over come. The obstacles the builders had to face When attempting to dock dirigibles on the empire state building were safety laws, weather and the building @CAPS2." 3 3 3 +16411 6 "The excerpt from ""The Mooring Mast,"" by Marcia Amidon Lsted, describes the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. For example, after the German dirigible Hindenburg was destroyed by fire, the fear of such an accident occurring in a densely populated areas such as New York posed a problem, because most international dirigibles used flammable hydrogen instead of helium. Another obstacle was the nature of the mooring mast, and the violent air currents that cause shifts in wind. Having a dirigible moored to the top of the Empire State Building, ""dangling high above the pedestrians on the street was neither practical nor safe"" (paragraph @NUM1). Also, there was an existing laws that prohibited airships from flying too low over urban areas, therefore making ""it illegal for ship to ever tie up to the building or even approach the area"" (paragraph @NUM2). The architects of the project were so excited by the novelty of the idea that they were blind to these potential difficulties. These obstacles and unsolved problems contributed to the unsuccess of the mass, and the idea disappeared and was forgotten" 4 3 4 +16412 6 "The builders faced a lot of issues to allow drigibles to land place on the Empire State Building. The builders had to be very cautious or carefull on building the platform to allow drigibles to dock. The drigibles (Blimp) were very big transportation machines that were made out of Steel and Cotton Fabric that was filled with hydrogen and helium. Hydrogen is a flamable substance which the builders had to be carefull with power and electricity supplies. To allow a blimp to dock above @NUM1 feet in the air on the Empire State Building, they need to work on the framing of the building so it there is any bad weather condition, the building would not collapse, and would be stable. Because of all these problems the procautions the builders had to make, makeing the mast was a failuer and left for the future transportations to plains." 2 2 2 +16413 6 "The builders of the Empire State Building faced many obstacles when attempting to allow dirigibles to dock there. One obstacle they faced was they to reconstruct the building to add the mast. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommidate this new situation."" @CAPS1 the mast was an obstacle they had to face. Also, the had to face all of the safety requirements. ""Was destined to never fulfill its purpose, for reasons that should have been apparent before it was ever constructed."" After they figured out what could go wrong if they docked dirigibles the original purpose of the mast was not able to be fulfilled. Another obstacle they had to face was testing there plan to dock dirigibles. ""U.S. Navy dirigible Los Angeles approached the mooring mast but could not get close enough to tie up."" The dirigible failed in their attempt and the idea of docking dirigibles disappeared in the late 1930's. The builders of the Empire State Building faced many obstacles. " 2 1 2 +16414 6 "The architects of the Empire State Building faced many safety & practical obstacles in allowing dirigibles to dock on top of it. For example, dirigibles outside of the @LOCATION2 were filled with hydrogen, rather than helium, gas. Hydrogen gas is highly flammable. Therefore, the German dirigible the ""Hindenburg"" was destroyed by a fire in 1937. The architects of the Empire State Building foresaw that this could have been a much more tragic event if it had taken place above a densely populated area such as downtown New York. Furthermore, anchoring a @NUM1 foot dirigible to the top of a building with a single tether would add stress to the building's frame. In order to solve this problem, the architects would have to make @MONEY1 in modifications to the building's steel frame. Additionally, there are violent & unpredictable winds above the Empire State Building. If a dirigible were tethered to the mast, it would swivel around the top of the building with the wind currents. When moored in open fields, dirigibles can be anchored with weights. However, dangling weighted anchors above the heads of pedestrians could be potentially dangerous. In 1930, the @ORGANIZATION2 dirigible ""Los Angeles"" tried to moor the Empire State Building, but couldn't get close enough to the spire to tie itself up because of sharp winds. The pilot had to maneuver around other spires as well, for fear of puncturing the dirigible. Clearly, there were practical & safety reasons why the dirigible moor was unable to be completed at the top of the Empire State Building." 4 4 4 +16415 6 "Al Smith and his group of architects encountered many problems when they attempted to build a mooring mast atop the Empire State Building in order to dock dirigibles. Before they began building, the architects realized that they could not land a dirigible on the buildings flat roof. They had to make over sixty thousand dollars' worth of modifications to the framework before they could think of docking dirigibles there. After they finished building the conical top of the Empire State Building, the team working on the project realized that dirigibles could never be docked at the Empire State Building for several reasons. First, landing dirigibles was dangerous to the people of the city. Dirigibles contained hydrogen, which is highly flammable, and if there was an accident like the Hindenburg in New York City, the damage would be devastating. Nature also prevented dirigibles from docking at the Empire State Building; air currents were too powerful, and if the ship did land, it would swivel around the spire of the building. It was possible to prevent this by putting lead weights into the back of the dirigible, but this was also unsafe for the people that lived underneath. The last obstacle the architects faced was an existing law that prevented airships from flying too low over urban areas. Although the architects had a great idea, they never realized why it would not work until after building." 4 4 4 +16416 6 "The builders of the Empire State Building faced many obstacles in attempting to allow drigibles to dock there. For one, most drigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable, so it could explode. For instance, on May 6, 1937 the German drigible Hindenburg was destroyed by fire in Lakehurst, New Jersey. There is no predicting that that could never happen again. The greatest obstacle in attempting drigibles to dock there was nature itself. The winds on the top of the building were constantly shifting due to violent air currents and even if it was tethered to the mooring mast, the back of the ship would swivel around the mooring mast. Drigibles moored in open landing fields could be weighted down in the back with lead weights, but using them at the Empire State Building, where they would be dangling high above pedestrians on the streets wasn't practical and not safe. Another reason is because there was a law against airships flying too low over urban areas, due to fear over the wind, blowing the drigible in to other buildings in the area which would puncture the drigible's shell and cause a lot of damage." 3 4 4 +16417 6 "In the passage The Mooring Mast by Marcia Amidon @ORGANIZATION2 t buiders of the Empire State Building faced with obstacles in attempting to allow dirigibles to dock there. One example is ""The architects could not simply drop a mooring mast on top of the empire state building flat roof. This is saying that you need to have a solid amount of support to hold a dirigible. Another is ""Most dirigibles from outside the United States use hydrogen not Helium, and hydrogen is highly flammable. So if that were to catch fire in the middle of New York City That would not be good. Another is the changing wind speeds would cause the dirigible to sway in the air. This could cause issues with stability. So in this passage The Mooring Mast by @ORGANIZATION2 had to overcome obstacles and attempting to allow dirigibles to dock there." 3 2 3 +16418 6 "When something is getting invented or built, many obstacles are faced. The number one obstacle was safety. The wind at the top of the empire state building was another problem. The actual building was a problem too. All these problems and the architects tried to work around them, and failed.Safety is important, if one person dies per trip nobody is going to go on the ballon. Safety is important, no safety means no bussiniss. The wind was a huge problem. If the balloon won't stay still while unloading it is very unsafe. The skeleton of the building would have to change and that is an expensive fix. These are some of the major obstacles the architects faced. Maybe one day they will fix it." 2 2 2 +16419 6 "In The Mooring @CAPS1 by Marcia Amidon Lsted, the builders of the Empire State building faced obstacles in attempt to allow dirigibles to dock there. one of the main problems was nature. ""The winds on top of the building were constantly shifting due to violent air currents,"" which made it dangerous for dirigible to be turning around the building above pedestrians.Another obstacle that the builders raced was that the dirigibles used hydrogen, rather than helium. Hydrogen is highly flammable, and the owners of the Empire State building did not want a dirigible to catch fire above a ""densely populated area such as downtown New York.""The last obstacle faced in attempt to allow dirigibles to dock on the Empire State Building was the law against airships flying too low over urban areas. This law made ""it illegal for ship to ever tie up to the building or even approach the area.""" 3 4 4 +16420 6 "There were many problems the builders of the Empire state building faced when it came to dirigibles.They faced problems with ""... Violent air currents"" That flow above the building. These would constantly be pushing the ships as they tried to dock, and sway the back end while they were docked. Another problem was that there was an ""... existing law against airships flying too low over urban areas."" This would make it basically illegal to dock an airship on the Empire State building. These obstacles described in ""The Mooring Mast"" by Marcia Lsted show why the spire at the top of the Empire State building was never used to dock dirigibles." 3 2 3 +16421 6 "There were many obstacles that stood in the way of the of allowing dirigibles to dock there. The layout of how the mast would be used was not carefully thought out. One reason is because must dirigibles used hydrogen rather than helium, which was highly flammable. Due to the fact the dirigible would be relatively in close proximity with the pedestrians and other buildings, it would be unwise to use the mast. In addition there was an existing law stating that the dirigible could not fly low in urban areas, which it would do just that if it attached to the mast. Also, the force of the wind could spin the back of the dirigible, causing it to go around and around the mast. The solution would be to put heavy blocks in the back that could cause it to fall on top of the pedestrians. Overall, there were many reasons why it was unreasonable to allow dirigibles to dock there." 3 3 3 +16422 6 "The obstacles which the builders of the empire state building faced to allow dirigibles to dock there were numerous for this project. The first problem was that, other dirigibles from outside of the United States used hydrogen. Hydrogen is a much more flammable substance than helium, which is what dirigibles in the United States used. The owners didn't want anything to occur similar to the German dirigible the Hindenburg, which would be worse in downtown New York instead of Lakehurst, New Jersey. Another practical reason why dirigibles faced problems docking at the Empire State building was that an existing law prevented dirigibles from flying too low over urban areas. For example a @ORGANIZATION1 dirigible named the Los Angeles, could not get close enough to tie up due to forceful winds. These problems go to show that owners of the Empire State building faced numerous obstacles in allowing dirigibles to dock there." 3 3 3 +16423 6 "The builders of the Empire State built two floors just for the passengers to drop off their luggage. They had a view in those floors, and was the idea didn't work, they wasted money on those extra rooms.They started working on the build and attempt to make dirigibles dock on the top, but they wasted alot of time and money, and it was just a waste altogether." 0 1 1 +16424 6 "The Empire State Building was designed to become the world tallest buiding, with a few tricks up its sleave. The building was originally planned to also function as a Mooring mast for dirigibles. Unfortunately many problems lay in the way interning this theory into reality. One obstacle the constructors of the Empire State Building faced was the use of dangerous gases in the balloons. ""Most Dirigibles from outside the @LOCATION2 used hydrogen rather than helium, and hydrogen is highly flamable. ""The use of hydrogen posed a dangerous threat to the safty of civilians in New York City. Another problem which was encountered with the building was the wind."" the back of the ship would swivel around the mooring mast... (the dirigibles) dangling high above pedestrians on the street, was neither practical nor safe. A third problem the builders had was the leaglity of the issue of mooring ships the buildings. There was an existing law against air ships flying to low over urban areas. ""With this law in place it would have been impossible for ships to moor. Although the builders had good intentions, they failed to realize the reality of the situation." 3 3 3 +16425 6 "The builders of the Empire State Building faced multiple obstacles in attempting to allow dirigibles to dock there. For example, as mentioned in paragraph @NUM1, ""a thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" The difficulty in having stress from the dirigible's load and the wind pressure is that it would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below. Wind was another obstacle that the builders had to overcome. The winds on top of the building were constantly shifting due to violent air currents. And even if the dirigible were to be tethered to the mooring mast, the back of the ship would swivel around the mooring mast. Dirigibles moored in open fields could be weighted down in the back with lead weights, but using the led weights at the Empire State Building would not be safe, as they would dangle high above pedestrians on the street." 3 3 3 +16426 6 "Building the Mooring Mast was not an easy task, creating this futureistic design carried alot of problems beside it. Some problems that these builders faced were that Dirigibles can be up to one thousand feet long so they are very heavy and sway in the wind dangerously, it was also against the law for airships to fly at a low level over urban areas, and there were also a great danger of the Dirigible crashing, or catching fire over the densely populated area of New York.Even though these problems almost seem impossible to pass, they were able to fix up some things to make the project seem more realistic. The steel frame of the Empire State building was modified and strengthened so it could support the Dirigibles and wind pressure, but nature had no mercy and would sway the Dirigibles vigourously which was not safe nor practical. They were able to bypass the law and attempt to dock once which didnt end up working out after all. There had already been cases of Dirigibles crashing such as the Hindenburg. But and accident over a densely populated area would be horrific and not practical. Because of these problems and more, the thought of using a Mooring Mast to dock Dirigibles was quitely retired." 3 3 3 +16427 6 "When the idea of a mooring dock for dirigibles first @CAPS1 about it seemed like a brilliant idea But as time and construction went on, the surmounting obstacles that arose made the idea of a Mooring dock stayed just an idea. When the mooring mast was finished, the obvious safety hazards stopped it from fulfilling it purpose. The greatest @CAPS2 hazard was the nature of the mast itself. The Winds at that height were strong, violent and constantly Shifting. Even if the dirigible was tethered down, the back of the ship would be swireled around the mooring mast.Another hazard was that most dirigiples from outside the United States used hydrogen rather than helium, and hydrogen is extremely flammable. After the German dirigible Hindenburg was destroyed by fire in 1937, the owners of the Empire State Building realized that they could not take that @CAPS3. A final obstacle that arose was a law that was against Airships flying too low over urban areas. this law made it illegal for a ship to even come near the building." 3 3 3 +16428 6 "The obstacles the engineers faced were that Of Any @CAPS1 builder. You have to to think About how high is to high wind conditions, sturdiness of the frame, @CAPS2 And payroll for the engineers. Although Al Smith did not run into the @CAPS2 Problems he did have to rethink on the Mooring Mast on if it was agood idea. Putting An @CAPS3 Thousand foot @CAPS4 Dangling from a Building 1,250 feet in the air. Al Smith @CAPS5 a landmark for the U.S. But @CAPS6 Should'nt have put a non-usable Mooring Mast At the top." 1 1 1 +16429 6 "The builders of the Empire State Building faced a myriad of obstacles in attempting to allow dirigibles to dock there.""Most dirigibles from outside the @LOCATION1 used hydrogen rather than helium, and hydrogen is highly flammable."" This means that any little spark inside the dirigible would send it up in flames. ""The winds on top of the building were constantly shifting due to the violent air currents.' This proves that having the dirigible docked up there would be very dangerous and would call for weights to be used to anchor the back of the dirigible. ""The other practical reason why dirigibles could not moor at the empire State building was an existing law against airships flying too low over urban areas."" This symbolizes that it is against the law to have an airship that close to a highly populated area. The idea of docking dirigibles at the empire state building were ignored." 4 3 3 +16430 6 "The builders of the Empire State Building faced many natural oposition in attempting to allow derigibles to dock in the building. Nature forces were a total threat to the idea of the dirigibles landing on the Empire State building: ""The winds on top of the building were constantly shifting due to violent air currents,"" which wouldn't be safe for the people getting in and off the dirigible because the ship would swivel around and around the morning mast. Other oposition to the idea was that most dirigibles that came from outside the U.S didn't use helium, but hydrogen which is highly flamable and risked the life of the people who lived around the Empire State building. Also the law was against this idea. There was a law that prohibet airships to fly too low over the urban areas. This law made the docking of the ships in the Empire State building illegal. The builders of the Empire State building confronted both natural and social oposition to the landing of the ships in the Empire State building." 4 3 4 +16431 6 "The obstacles the builders of the Empire state Building faced in attempting to allow dirigibles to dock there was that the had to be modified and strengthened. This cost them over @MONEY1 worth of modifications. They had to make these modifications so the dirigible can dock. All in All, these are the obstacles the builders of the Empire state building face in attempting to allow dirigible to dock." 1 2 2 +16432 6 The builders had many obstacles to allow the dirigibles to dock there. One obstacle was they had to make sure the building was high enough. They also had to make sure the building was durable enough. Those are some of the obstacle they had to allow the dirigibles to dock there. 1 1 1 +16433 6 "When allowing dirigibles to dock of the empire state building they were faced with many obstacles. One of the many obstacles the builders were faced with was the empire state building was not well structured to hold a dirigible of @NUM1 ft and the buildings structure would need to be modified to altleast sisty thousand dollars more. Another obstacle the builders had faced was the dirigibles used hydrogen instead of helium so hydrogen was very flamable This ment they didnt want something bad to take place above the building and in a ""populated area like downtown new york"". The last main obstacle they had to face was the mooring mast was always differer by the nature around it and the dirigibles would wear on its causing danger to people in the town of new york. Those were the few obstacles the builders had on allowing drigibles to dock near the empire state building" 3 2 3 +16434 6 The builders of the Empire State building had alot of problems in biulding the @CAPS1. How Would they be able to allow dirigables to @CAPS1 there? High Winds and laws stood in the biulders way. The fram of the building had to be renforced so it would not fall to the ground. The landing gear date had to be postponed due to building scedual's. Whe a dirigible did try to land it couldnt. The air streems were too much for it. In the end the idea was unrealistic. High winds and laws prevented the @CAPS1 from ever being used. 2 2 2 +16435 6 "The builders of the Empire state Building faced obsticles in attempting to allow dirigibles to dock there. The greatest obsticle was safety for pedestrians and the building itself. Most of the dirigibles used hydrogen rather than helium, and hydrogen is very flammable. They didnt want the dirigible to explode and fall over pedestrians and catch the whole building on fire. Safety is the main obsticles the builders of the Empire State Building faced when trying to let dirigibles dock there." 2 1 2 +16436 6 "In the excerpt ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock at the Empire state building. @PERSON1 says in the excerpt ""The one obstacle to their expanded use in New York City was the lack of a suitable landing area."" This shows that in order for the dirigibles to dock on the top of the Empire State Building, there must be enough landing space. If a mooring mast was added to the top of the building it would only allow dirigibles to anchor there for several hours, for refueling or service, and to let passengers off and on. One of the others practical reason why dirigibles could not moore at the Empire State building was an existing law against airships flying too low over urban areas. The architects could also not simply drop a mooring mast on top of the building's flat roof. A thousand-foot dirigible moored at the top of the building, held by a single cable tether, could add stress to the building's frame. So the builders of the Empire State Building did not allow the dirigibles to dock on top of thier building. Also because of everything that could happen to the building." 2 3 2 +16437 6 "According to the excerpt, the builders of the Empire State Building faced many obsticles when attempting to allow dirigibles to dock on its mooring mast. A large dirigible moored at the top of the building would add tremendous stress to the building, and ""over sixty thousand dollars worth of modifications"" had to be made to accommodate the stress. Even if the dirigible were tethered to the mooring mast, winds would cause the back of the ship to swivel around the mast. According to the article, dirigibles could be weighted down to prevent this, but it is to unsafe for pedestrians. There was also the issue with docking dirigibles that use hydrogen, a highly flammable gas. In May 6, 1937, a hydrogen dirigible was destroyed by fire and according to the excerpt, the owners of the Empire State Building realized that if the accident was at downtown New York, it would have made the densely populated area to unsafe. The mooring mast of the Empire State Building was destined to never fulfill its purpose, for there were too many obsticles for such an accomplishment to be made." 4 4 4 +16438 6 "The Mooring @CAPS1 the excerpt The Mooring Mast by @ORGANIZATION2, the builders of the Empire State Building faced many obstacles to allow dirigibles to dock there. Building a mast is more complicated than you would think, they had to take alot of things into consideration like the dirigible's load and the wind pressure. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation. Over sixty thousand dollars' worth of modifications had to be made to the building's framework"". Just when the builders thought they were done Al Smith adds a 250 foot Mooring Mast to the top of the Empire State building. The builders had to go through alot of obstacles and challenges to complete this project, but they did." 2 2 2 +16439 6 Obstacles the builders of the empire state building faced in attempting to allow dirigibles to dock there was nature itself. Winds on top of the building were constantly shifting due to violent air currents. The back of the ship would swivel around and around the mooring mast. 1 2 2 +16440 6 "The workers that were building the extravagant Empire State Building they went through several obstacle courses. One of the obstacle courses having the blimp sit on top of building. Since the blimp was only held by one cable cord it was appling stress to the build because the blimp was pretty heavy. Another obstacle was nature. Since the Empire State Building was so high up the wind was excrushiating. The last obstacle they had to over come was the gas they used inside the blimps. If they used hydrogen which is a highly flammable substance, like the German blimbs it could of been bad." 2 3 3 +16441 6 The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was a existing law. In paragraph @NUM1 saying the reason why dirigibles could not moor at the empire state Building cause of an existing law against airship flying too low under urban area and the law would make it illegal for a ship to even tie or even approach the mooring mast. 1 2 2 +16442 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. One problem was ""the fact that the winds on top of the building were constantly shifting due to violent air currents."" (@CAPS1 @NUM1) That would make it hard for the dirigibles to be tethered to the mast. Annother problem they faced was the ""existing laws against airships flying too low over urban areas"" (@CAPS1 @NUM2) Also the equipment used to to dock the airships haden't even been installed." 2 2 2 +16443 6 "There were many obstacles the builders of the Empire State Building faced in an attempt to allow dirigibles to dock there in the @NUM1.The first obstacle was ""the architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" If the builders had decided to that than the dirigible moored at the top of the building would add stress to the building's frame which could also jeopardize the lives of all the tourists who visited and everyone who worked there.There was also the fact that ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" Which meant the frame of the Empire State Building would have to be modified and strengthened, something like that didn't come cheap, in fact ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework.""In all the attempt to allow dirigibles to dock at the Empire State Building was a failure. The most obvious being safety since most dirigibles outside the United States used hydrogen instead of helium, and hydrogen is highly flammable. The end result is, today the rooms that were set aside for baggage are now the world's highest soda fountain and tea garden. And the highest observation deck has never been open to the public." 3 3 3 +16444 6 "The builders of the Empire State building faced obstacles in attempting to allow dirigibles to dock there. One obstacle that faced the builders was that the dirigibles could not simply land on top of the building. The thousand foot dirigible would add stress to the frame of the building. They would have to ""transmit"" the load and the wind pressure to the foundation which was nearly eleven hundred feet below. The builders had to make over @MONEY1 worth of modifications. Another reason was nature. As stated in paragraph @NUM1, ""The winds on top of the building were constantly shifting"". The dirigible could not be teathered down because the lead weights would be dangling above pedestrians. A final obstacle was an already existing law. The law was against airships flying too low over urban areas. This made it illegal for a ship to ever tie up to the building. These obstacles destined the mooring mast to never fulfill its purpose." 3 3 3 +16445 6 "In attempting to dock dirigibles at the Empire State Building, many problems were faced. One problem faced was in paragraph nine where it says, ""A thousand foot dirigible at the top of the building, held by a single cable tether, would add stress to the building's frame."" If the did build the dirigible dock, the would have to reinforce the whole building so it would not collapse. Another problem faced was, most dirigibles used hydrogen, not helium. Therefore since hydrogen is Flammable they could not take the risk of a dirigible blowing up over a heavily populated area. A more ******* problem was the weather, specifically the wind, at @NUM1 feet. The air currents were so violent, that the dirigible would swivel around the mooring mast. Dirigibles usually land in an open field where they could be anchored by lead. According to the excerpt, dangling high above pedestrians on the street, was neither practical nor safe. Lastly, the most major problem was the law against airships flying too low over urban areas. In paragraph @NUM2, the law made it illegal for a ship to ever tie up to the building or even approach the area. Even through the dirigible dock was a great idea, too many problems were in conflict with the mooring mast for it to go in full effect. On the brighter side, it made the Empire State building the tallest in the world." 3 3 3 +16446 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles dock there. One problem was that they had to strengthen the rest of the building in order to put the mast at the top. This process would be very costly, the author says ""over sixty thousand dollars' worth of modifications had to be made to the building's framework."" Another problem in the attempt of allowing dirigibles to dock there was the winds at the top of the building. The air currents were very violent that high up. ""Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast,"" therefore it would not be safe for people on the streets of the city. Finally, the laws of the city interfered with the plan for the mooring mast. The law said that it was illegal for an airship to fly too low over urban areas. If the dirigible was able to dock on the mooring mast, it would be breaking this law. The builders of the Empire State Building faced many problems, and their plan never actually followed through." 3 3 3 +16447 6 "The Empire State Building faced various obstacles in attempting to allow dirigibles to dock there. Most importantly was the danger involved in this ambitious plan. Blimps from outside the @LOCATION3 commonly used hydrogen, a highly flammable gas, instead of helium. After a German dirigible destroyed in a fire, owners of the Empire State Building saw the true danagers of an accident like this in downtown New York. Successful use of the mooring mast was another obstacle. The winds at such a high altitude made it difficult to dock. Once docked the dirigibles would have to dangle above pedestrians, which was ""neither pratical or safe"". The existing law against airships flying to low in urban areas create further probles. After the Los Angeles failed to reach the mooring mast because of the high winds the owners started to see the unsolved problems. By the late 1930's the idea had ""quietly disappeared""." 4 3 4 +16448 6 "Based on the excerpt, The Mooring Mast, by Marcia Amidon Lsted, building a mooring mast on the Empire State Building was hindered by many obstacles the builders had to face. Firstly, the stress of the dirigible's load and the wind pressure would hurt the building's frame. Builders fix this problem by making ""over sixty thousand dollars' worth of modifications... to the building's framework"" (page @NUM1 paragraph @NUM2). After the mast's construction, two more obstacles arose. Firstly, most dirigibles used hydrogen, which is very flammable. After the German dirigible Hindenburg was destroyed by fire, the builders realize the danger in letting that same accident happen in densely populated New York City. The mast's greatest obstacle was ""nature itself"". Since the winds on top of the building were away shifting due to air currents, the back of the dirigible would swivel around the mast. Builders thought of using lead weights to fix this problem, but dangling weights high above pedestrians on the street ""was neither practical nor safe"". The last and most obvious obstacle was an existing law against airships flying too low over urban areas. Though the builders and owners were able to overcome the first obstacle given from the construction of the mooring mast on the Empire state Building, future obstacles prevented the mooring mast from fulfilling its purpose." 4 4 4 +16449 6 "The people who built the Empire State Building had many problems building it. The one obstacle to their expanded use in New York was the of a suitable landing area. The Empire State Building was going to have a mooring mast at it's top for docking these new airships, which would accommodate passengers on already existing transatlantic routes and new routes that were yet to come." 2 1 2 +16450 6 "Some of the @CAPS1 the builders of the Empire State Building faced in attempting to allow dirigibles to dock there are that they were docked by means of an electric winch, wihich houlad in a line from the front of the ship and then tied into the mast. Also the dirigibles body could swing in the breeze, and yet passengers could safely get on and get off the dirigible by walking down a gangplank to an open oservation platform. Finally the architects and engineers of the Empire State Building consulted with experts, taking tours of the equiment and mooring operations at the U.S. Naval air Station in Lakehurst, New Jersey." 1 1 1 +16451 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was cost, and saftey. The steel frame of the building would have to be modified, strengthened to fix this new situation and it would cost over @MONEY1. Another obstacle was that most of the countries outside the u.s. use hydrogen which is highly flammable. Another obsacle was ""The winds on top of the building where constantly shifting due to violent air currents."" this made it unsafe. These where some of the mayjor obstacles they had to go through" 3 3 3 +16452 6 "In order to build the Empire State building, some Of the workers endured problems while constructing it. The engeineeres and architects consulted first with the experts. The obstacles the builders had to face were, one the height. It was a thousand feet and it was putting stress on the buildings frame. Wind pressure also added stress to the one thousand foot building. Another big obstacle was nature itself. The winds were constantly shifting to the violent air currents. Even when the mooring mast was tethered or tied up the back part of the ship would sway from the wind. In the end the author says or implies that it was never meant to be built because of all the problems that came with it." 2 1 2 +16453 6 "The future of allowing dirigibles to dock on the top of the Empire State Building became unrealistic when issues of safty came forward and when test runs did not go as planned. Some dirigibles used hydrogen rather than hellium which could be flamable. ""the owners of the Empire State building realized how much worse than accident could have been if it had taken place above a densely populated area."" By placing a dock in the heart of New York City its risking the lives of too @CAPS1 passengers and citizens.When the dock was in place at the top of the Empire state building two dirigibles tried landing but both times it was a failure. There were @CAPS1 problems and landing, one being the wind. ""dirigible Los Angeles approached the mooring mast but could not get close enough to tie up because of forceful winds."" @CAPS1 dangers stop this plan to happen." 2 2 2 +16454 6 "The builders of the Empire State building faced a few main obstacles in attempt to allow dirigibles to dock there atop the building. These three main obstacles where the designing of the mast and the building modifications, safety, and existing laws about aircrafts. The designing of the mast was an obstacle because a dirigible moored to the mast would add stress to the building's frame. The load and pressure had to be transmitted to the base of the building and they faced ""over sixty thousand dollar's worth of modifications"" to do so. One of the other problems was, most importantly, safety. The article states that most countries used hydrogen in their balloons to stay afloat, unlike the United States who used helium. This was dangerous for hydrogen is flammable, and the building owners did not want a repeat of the Hindenburg accident when a German dirigible was destroyed by fire. Also, a dirigible had to be weighted down or it'd spin around the mast and the commonly used lead weights were a hazard for pedestrians below. The last main obstacle of the Empire State building's builders was the existing law banning airships from flying low above urban areas. It would be illegal for a dirigible to approach the area let alone tether to the building. These are three of the main obstacles which the builders faced in building the Empire State building and its mast. Design, safety, and legal issues all were obstacles which got the better of the builders." 4 4 4 +16455 6 The builders of the Empire State Building had to deal with multiple problems involving safety. Because Al Smith wanted to build a building larger than the Chrysler Building he decided to put a mooring mast for dirigibles on top of his. The building's frame had to be modified before the construction of the mooring mast could begin because just putting on top would stress the frame and bring it down. Another issue was the landing of the dirigibles themselves. They could be weighed down when on flat land but not on top of a building there would be many people below who could be injured if something went wrong. There was even a law against dirigibles flying too low over urban areasThe builders had to work their way around. The biggest obstacle seemed to be safety for the people. 3 3 3 +16456 6 "In the process of building the empire state building the architects had many obstacles. One main obstacle was making the foundation strong enough. Another was the wind factor. They had many problems in the building of the Empire state building.In order for the dirigibles to dock on the Empire state Building they had to streghten, the whale foundation. If a dirigible docked before the whale building would twist and sway. Another problem was the wind. the wind coming off of other building would spin the dirigibles at high rates of speed.Even though they faced many obstacles they successfully completed the Empire State Building" 2 2 2 +16457 6 "The builders of the Empire State Building faced many obstacles when attempting to add a dirigible docking station at the top of the building. As it says in paragraph @NUM1, ""The greatest obstacle to the successful use of the mooring mast was nature itself."" Wind could cause a serious saftey hazard by spinning the back of the docked dirigible around. Also dirigibles are highly flammable. If an explosion such as the Hindenburg took place at the top of the Empire State Building it would have been catastrophic. Attempting to moor a dirigible at the top of the building was not only dangerous: It was illegal. There ""was an existing law against airships flying too low over urban areas."" (paragraph @NUM2)The fact that mooring a dirigible was illegal and extreemely dangerous, was not the only obstacle that builders faced. It was also a daunting task. Builders would have to learn new technologies for operating the system at the U.S. Naval Air Station. After researching, builders reliezed that they would have to strenghen the frame. ""Over sixty thousand dollars' worth of modifications had to be made to the building's framework."" (paragraph @NUM3) The obstacles the builders faced, proved to be enough reason to never use the mooring." 4 4 4 +16458 6 "In their attempts to try and build a platform for dirigibles to dock at, the builders of the Empire State Building failed to note a few difficulties. One would be the way passengers got one and off of dirigibles. While anchoring to refuel and allowing passengers to get on and off, the rear of the blimp would constantly swivel which could endanger the passengers and could possibly cause the dirigible to get damaged or destroyed. Another difficulty was the way the mast was built. It had a design similar to that of a rocket, so it was not possible for dirigibles to completely land. If it had a platform-like design, so instead of hovering dirigibles could land, which allowed for more stability." 2 1 2 +16459 6 "The builders of the Empire State Building faced many obstacles in their attempt to allow dirigibles to dock on the mooring mast. The builders had to consult with experts and take tours of the equipment used in building mooring masts, land dirigibles service and a workable arrangement, and modify the building for support of the mast.In preparation to the construction of the mast the architects first took tours of the equipment at the @ORGANIZATION1. The builders also met with the president of an airship transport company that offered their services across the Pacific Ocean. A workable arrangement had to be created. It was difficult and tedious to figure, ""on some safe way of mooring ships to this mast."" The foundation of the building had to be considered as well because, ""the architects could not simply dropping mooring mast on top of the Empire State Building's flat roof."" Over @MONEY1 in modifications to the frame and foundation of the building had to be performed. All of these were obstacles in the way of architects building a mooring mast on top of the Empire State Building." 2 3 3 +16460 6 "The builders of the Empire State building faced many obstacles while attempting to allow dirigibles to dock there. One obstacle the architects faced was the building's frame. They needed to design the landing area so that if a dirigible landed there, it wouldn't add too much stress to the building's frame. Another problem was the stress of the load, and wind pressure. In paragraph @NUM1, the author says ""The stress of dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below,"" and that is why the dirigible's load, and the wind's pressure are a significant problem. Finally, after the builders figured out that they needed to make various adjustments, also to strengthen the building's steel frame, ""over sixty thousand dollars' worth of modifications had to be made,"" which is a lot of money! Those are the obstacles that the architects of the Empire State Building faced while trying to allow dirigibles to dock there." 3 2 3 +16461 6 "The builders of the Empire State Building had to overcome many obstacles so the dirigibles could safely dock at the top to refuel or repair. People were thrilled for this idea, yet they knew how difficult this task would be. First of all, the building plan had to be redone due to the Chrysler building's builders tactic about sneaking around to make the building taller than the Empire State Building. Al Smith was not going to let that happen so he decided to make the @CAPS1.S.B. even taller. (1,250 ft.) secondly, the builders had to come up with a way to build the dock on a stable platform because it was unstable on the flat roof. This served as and obsticle because at such a height, construction is hard to do. Al Smith was more than determined though which enlightened the workers stated in paragraph @NUM1, ""over sixty thousand dollars"" worth of modifications had to be made to the buildings framework (Lsted, @NUM1). Also, the dock or landing dock, could not be used weather permitting. The dirigibles so close to the city, building, and civilians was dangerous when swaying around. The author says, ""some were as long as one thousand feet, the same length as four blocks in New York City"" (6). There were violent wind currents that could make the dirigibles sway around the mooring mast. Last of all, an existing law against airships flying that low over urban areas was in place. This is a major contributor to the failed attempt. Being prohibited and breaking the law would get many in trouble. All and all, the attempt made by the architects of the Empire State Building proved dedication and good intentions, but their ideas were too irrational for the dock to become successful in society." 3 3 3 +16462 6 "In the excerpt from, ""The @CAPS1 Mast"", by Marcia Amidon Lsted, it was mentioned that architects faced challenges when attempting when allowing dirigibles to dock on the Empire State Building One obstical they faced was the fact that they used hydrogen instead of helium. In the excerpt it said that hydrogen is highly flammable @CAPS2 if something went wrong it could be a huge problem in a highly populated area like New York. The main problem they faced was the nature itall. It said ""The winds on top of the building were constantly shifting due to violent air currents"" The dirigible has the potential to swivle around the mast and with all the pedestrians below that is very dangerous. These challenges are what led to the fate of the mooring mast not being used as originaly planned" 3 3 3 +16463 6 "It was unfortunate that such a great idea was never able to succeed. The builders of the Empire State building faced with many difficulties when trying to allow dirigibles to dock on the building. First they had to design the Mask which sounds like a long and complicated process. Everything seemed as if it was going to work out. Builders started construction. After two months of construction, the mooring mast was not able to fulfill its purpose for several reasons. hydrogen is highly flammible and to dangerous to use in such a highly populated area. Things such as wind and nature itself would have made this wonderful idea impossible. There were laws that would have never allowed for this to happen anyway. If builders and planners had done better research they would have found this project to have been impossible before going through all the intense construction." 3 3 3 +16464 6 "The first obstacle that the can builders faced was the fact that the idea of the empire State building being the tallest construct in New York City had been shattered. This led them to subsequently face more obstacles as their plan expanded. When the design to make the construct of the plan was complete they begin to face more potential problems. The first being it was not logical or probable to ""drop a mooring mast on top of the Empire State Building's flat roof"" (line @NUM1) For, in dang this the amount of stress it would induce on to the frame would be monstrous, hence, it was concluded the stress would have to be transmitted through the building's foundation, which to the builders dismay was 11 hundred ft. below. This resulted in @MONEY1 worth of modifications to the foundation. Another obstacle that was faced was the wind pressure. ""Los Angeles approached the mooring mass but could not get close engough to tie up because of forceful winds"" (line @NUM2)" 2 2 2 +16465 6 "While constructing the Empire State Building the builders were faced with many obstacles in attempting to allow dirigibles to dock. To begin, the dangers of allowing dirigibles that were made outside of the United States. May non-American dirigibles were made up of hydrogen which is much more flammable compared to the United States helium balloons. To avoid a repeat of the explosion of a dirigible Lsted states, ""the owners of the Empire State Building realized how much worse the accident could have been if it had taken place above.. Downtown New York."" @CAPS1, the winds at the top of the building were to wild to attach a dirigible safely to the top. The author clarifies, ""Even if the dirigibles were thethered to the mooring mast, the back of the ship would swivel around... the back could be weighted down with lead weights, but using these was neither practical nor safe."" This shows that in order to have the ship still enough to be able to moor it was dangerous. Lastly, a law was passed making it impossible to fly close enough to the building to be able to moor. Marcia Amidon Lsted says, ""An existing law against airships flying too low over urban areas."" This makes the possibility of landing a dirigibles on the Empire State Building illegal." 3 3 3 +16466 6 "One of the obvious reasons is the height of all this taking place. The strong, always changing winds, the winds were a problem because it would make the back of the blimp sway from side to side. Another problem was trying to stop the swaying of the ship, they consulted putting lead weights, but hanging weights above pedestrians is not safe at all. Another reason was, it was against the law to fly aircrafts to low to the ground. These are just some of the reasons why this wasn't gonna to work." 3 2 3 +16467 6 Even beginning to build the dock of the empire state building was A mistake. What first appeared to be a worthwhile And realistic idea ended up being potentially horrific if it failed. One obsticle the builders faced in Attempt to Allow dirigibles to dock there was the law that did not Allow airships flying low over urban areas. It would be even illegal to continuously have ships closely over pedestrians. Another obstacle they fased where the unsafeness of it All. The winds A that height Are constantly different And could cause the Dirigibles to move Around. Having Airships dock at the empire state building was potentially dangerous As well As illegal. 2 2 2 +16468 6 The builders of the empire State building faced alot of obstacles. One problem they had was when & if they landed getting an area for the people to get on and off. they had to make the platform bigger also. When the dirigibles landed it was because they needed more fuel @CAPS1 it would only be a couple hours they were stopped. 1 0 1 +16469 6 "During the construction of the Empire State Building the builders experience many obstacles when trying to allow dirigibles to dock there. One obstacle was that the builders cannot just drop a mooring mast on the top of the Empire State building. ""A thousand foot dirigible moored at the top of the building, held by a single cable teather, would add stress to the buildings frame."" Another problem the workers faced is they would have to change the entire design of the building to meet the accommodations of the mooring dock. The largest reason why the dock didn't work out was safety. The author writes ""most dirigibles from outside the United States used hydrogen rather than helium..."" This means that the dirigibles are highly flameable and if one exploded over the densely packed New York it would have serious reprocusions. All of these reasons are why the mooring dock never came to life on top of the Empire State building." 3 3 3 +16470 6 "The builders of the Empire State Building faced many obsticles in attempting to allow dirigibles to dock there. One of those obsticles was that many dirigibles from outside of the United States use hydrogen instead of helium. This was a problem because, ""hydrogen is highly flammable"" (para. @NUM1). Docking dirigibles that use hydrogen not helium had been proven dangerous by the German Hindenburg when it was destroyed in a fire, and if anything like that occurred over New York the results would be horrible. A second obsticle faced in allowing dirigibles to dock at the Empire State Building was another safety consern. The point was brought up that ""winds on top of the building were constantly shifting due to violent air currents"" (para. @NUM2). This would make it unsafe for the passengers on board the dirigible. A third obsticle faced is the fact that there was a law against airships flying too low over areas such as New York. That law made it illegal for a ship to ever tie up to the building or even approach the area."" (para. @NUM3). Those are three obsticles the builders faced when attempting to allow dirigibles to dock at the Empire State Building." 4 3 4 +16471 6 "When designing the Empire State Building, architect Al Smith had the idea of futuristic Dirigible travel in mind. However, he faced many obstacles in attempting to allow dirigibles to dock at this giant building, as described in The Mooring Mast. Mooring a dirigible to the top of it ""... would add stress to the building's frame."" In order to allow dirigibles to dock, Smith had to modify the buildings frame: transmitting pressure all the way down to the foundation. Smith also faced the issue of foreign balloons; most of which used the highly flammable hydrogen, Instead of helium. A fire caused by a dirigible docked to the Empire State Building would rapidy spread to the city. Smith found that nature caused problems as well. Due to the changing winds atop the building, ""... the back of the ship would swivel around and around the mooring mast,"" @CAPS1 pedestrians. Because of all these obstacles, the idea of a dirigible mooring was given up, but the mast remains today. " 3 3 3 +16472 6 "The obstaclesthat the builders of the Empire state building faced were those of: 1) it was at a height of @NUM1 feet, @NUM2) how would the passengers be able to get on and off, @NUM3) takes a long time to slow down and @NUM4) the building is said to be 102 floors high with an observation deck on the 101st floor and a boarding/observation deck on the 102nd floor for the blimp passengers. some more major obstacles that the builders of the Empire state building had faced were some so intense they are hard to explain those major obstacles were: 1) how to dock the blimps and @NUM2) how many blimps could dock there at one time." 2 0 0 +16473 6 "In the excerpt, ""The @CAPS1 Mast,"" by @PERSON1, the architects of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there.One of the problems the builders encountered was that the dirigible didn't have a suitable landing area. The architechs concluded that they couldn't just drop a @CAPS1 mast on top of their building, because it would add stress to its frame, so they had to strengthen, and modify it to make it work.Another obstacle. was the fact that most dirigibles ran on hydrogen, which is highly flamable. The builders realized how dangerous that could be, especially above a densely populated area such as downtown New York. They also realized that nature itself was their biggest obstace. Winds were constatly shifting due to violent air currents and they knew that this idea was neither practical nor safe. Lastly, There was a law against airships flying too low over urban areas, which would make their idea illegal and unsuccessful." 3 3 3 +16474 6 "@CAPS1 were thought of as the future of transportation Also known as blimps @CAPS1 were like ballons except they were steel and had rubbers and propellers to keep control. These steel balloons can ride eighty miles per hour. The main reason why the empire state building couldn't dock these was because most @CAPS1 from outside the united states use hydrogen instead of hellium. Hydrogen is highly flammable and causes accidents." 1 1 1 +16475 6 "When the construction of the Mooring Mast on the Empire State Building was completed the builders began to face problems that should have been apparent from the begining. Some of the problems faced was there is a law in the U.S. that doesnt let aircraft fly close to or around cities and buildings. This meant they wouldn't be able to have the blimps tethered to the mast anyway. The highly violent and constantly changing weather and wind also posed a problem because it would be blowing the blimp everywhere, and its could not be weighed down with lead blocks like on land because it wouldn't be safe having them hang over the city. With the winds being crazy the blimp (most of them filled with hydrogen) could be punctured and set ablaze following towards the people on the ground. With those @CAPS1 being some of the most obvious problems some would think they wouldn't have attempted it but those obsticles were never overcome and the mooring mast still sits unused." 3 2 3 +16476 6 "The Mooring Mast by @ORGANIZATION2 is about the Empire State Building and the expectations that people had for it. In @DATE1 it was announced that the Empire State Building would reach the height of 1,250 feet. The point of the selection is to show that there was another idea that the Empire State building builders were trying to make a reality. The builders came across some obstacles while trying to allow dirigibles to dock there, such as the building not being stable enough to support the dirigibles, having to add frame work, and the possible dangers of making this idea a reality. ""The stress of the dirigible's load and the wind pressure would add too much stress to the buildings frame."". Because of this added stress ""the steel frame of the Empire State building would have to be modified and strengthened."" Then when a dirigible was destroyed, the owners of the Empire State building realized how much worse it could of been it happened in a place such as downtown @CAPS1"". It is a good thing they did not do the idea." 2 2 2 +16477 6 "In The Mooring Mast, by Marcia Amidon Lsted, the builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. The Mast was doomed to fail before it began. The greatest reason the mast never worked was because of safety. The hydrogen, in most dirigibles, is highly flammable. If an accident were to occur, it would happen over down town New York. ""The owners of the Empire State building realized how much worse that accident could have been if it taken place above a densely populated area."" (@CAPS1 @NUM1) Nature itself was one of the greatest obstacles to the successful use of the Mast. Violent air currents and horse winds made it difficult to fly a dirigible near the building. ""The winds on top of the building were constantly shifting due to violent air currents."" (@CAPS1 @NUM2) The Mooring Mast was doomed to fail before they began building it. The greatest reasons for its failure were air currents and safety. The dirigibles were never able to land there." 2 3 3 +16478 6 "While they were attempting to allow the dirigibles to dock on the Empire State Building, the builders faced many obstacles. One obstacle they faced was the lack of a suitable landing area. Al Smith thought if a mooring mast was added to the top of the building, then the dirigibles would be able to anchor there to refuel and let passengers off and on.Another obstacle that was faced was that dirigibles from outside the United States used hydrogen rather than helium which was extremely flammable. The owners of the Empire State Building felt that it wouldn't be safe if the dirigible set on fire with a densely populated area right below it.The greatest obstacle that was faced was the use of the mooring mast with nature itself. ""The winds on top of the building were constantly shifting due to violent air currents."" The owners of the Empire State building believed that if something went wrong then the dirigible would be dangling above pedestrians on the street. This was very unsafe." 2 3 3 +16479 6 "Many obstacles took place while builders of the Empire State building attempted to allow dirigibles to dock there. The stress of the blimps docking on the building would be too much. ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation"". Another problem was that dirigibles were highly flameable and in such a highly populated area of New York it ""was neither practical nor safe"". Laws against airships flying too low over urban areas worked against the idea but two dirigibles did attempt to reach the building before the entire idea was dropped." 2 3 3 +16480 6 "The construction workers faced many obstacles in building the Empire State building. One of those obstacles was hieght. Since they wanted to make the building the tallest building in the world they had to make sure there was enough technology to do so. Also they had to add an extra seventeen flores to the building making it 102 floors instead of its original @NUM1 floors. Another obstacle was its safety issues. The construction workers never checked into problems with building the mooring mast. In paragraph @NUM2 the author States, ""The as yet unsolved problems of mooring air ships to afixed mass at such a height made it describable to post pone to a later date the final installation of the landing gear."" the author is trying to say that when designing the production of the mooring mass; ""they overlooked certain issues that make them set back the final date. Due to these obstacles, the construction team managed to succeed in Building the tallest building, The Empire State building." 1 3 1 +16481 6 "The Empire State Building faced obstacles while attempting to allow dirigibles, ""enormous steel framed balloons"" commonly called blimps, dock there. One of the main issues was the pressure on the building caused by the dirigibles. As said in the excerpt The @CAPS1 @CAPS2, by @ORGANIZATION2, ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the buildings foundation, which was nearly eleven hundred feet below."" (paragraph @NUM1). Over @MONEY1 worth of modifications were made to strengthen and accommodate for this new situation of dirigibles." 2 1 2 +16482 6 "One obstacle the builders of the Empire state Building in attempt to allow dirigibles was, the stress from the mass & the dirigible and wind pressure would all be transmitted to the buildings foundation. The frame of the building would have to be strengthened to accommodate the new situation. There were also safety reasons. Since most states used hydrogen in stead of helium and hydrogen is flammable. If something were to happen and the dirigible was to catch fire. The fire could destroy New York City since it's so densely populated. The biggest obstacle was nature itself. The winds on top of the building were constantly shifting due to violent air currents. It the dirigible was tethered to the mooring mast, the back of the ship would swivel around the mooring mast. Plus it" 3 3 3 +16483 6 "The builders of the Empire State Building faced numerous obstacles in attempting to allow dirigibles to dock there. While designing the mast, the architects faced problems including wind pressure, safety, and practicality. The frame was not strong enough to undergo the stress and wind pressure from the load of the dirigible. The foundation of the building, which was approximately @NUM1 feet below, would have had to be strengthened and modified if it was going to be able to handle the movement of the dirigible attached by a single cable tether. Safety was the greatest obstacle that the builders faced most dirigibles used hydrogen to make them lighter than the air. However, this hydrogen was highly flammable causing many dangers. Since New York City is such a thickly settled area, the risk of a fire was too dangerous to take. Finally, instead of dirigibles landing in open fields they would have to dock eleven hundred feet above the ground in the words of Marcia Amidon Lsted, ""using these (dirigibles) at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe.""" 4 3 4 +16484 6 "There was three main obstacles the builders of the Empire State building faced in attempting to allow dirigibles to dock there, the densely populated area, the violent air currents, and the existing law against airships. First, most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. Since the dock would be above downtown New York, there is a higher risk of the dock blowing up due to the density. Secondly, nature was a great obstacle. There were many winds on top of the building and the wind currents were constantly changing violently, there was a gigantic fear of the dirigible swiveling around and hitting another building. Finally, the dock could never allow a ship to be tied up legally due to the existing law of airships flying too low over urban areas. The dirigible would not be safe, and the entire idea will drop. For these reasons or obstacles, many builders of the Empire state building faced while attempting to allow blimps to dock there." 3 3 3 +16485 6 "The architects had their hands full when building the addition to the Empire State Building. There were @CAPS1 obstacles that needed to be overcome when they started building such as making sure the dirigibles were safe enough also taking in consideration the winds that are constantly changing. These problems were part of why the plans were put to a hault.Certain weather conditions were a big part of the safety procedures that took place. ""The greatest obstacle to the successful use of the mooring mast was nature itself."" The winds would make the ship sway back and forth which would be extremely dangerous. Another problem was that @CAPS1 foreign ships ran on hydrogen which is flamable and that would be a high risk. ""@CAPS1 dirigibles outside the United States used hydrogen rather than helium, and hydrogen is highly flamable." 2 2 2 +16486 6 The builders had to go through many obstacles to @CAPS1 to allow the dirigible to dock on the @ORGANIZATION2. The first thing that was a problem with geting it to the top of the Empire State Building. They said the wind made it really hard to get the dirigible up there with out it poping. There was also the safty of it being up there. There was already a fire from another dirigible catching on fire. The gases inside are really flamable and that would make a really big problem. The last thing that they had to conider was if Airships were to Low. The dirigible would pop. for all those reason they had to concider them to @CAPS1 to allow the dirigible on the Empire State Building. 2 2 2 +16487 6 "Having the empire state building dock and hold dirigibles brought up so hefty problems for the builders. Most of the problems resided among the idea of a mast, Al Smith knew that the mass would put to much pressure on the building frame, another was the baloon it's self, besides the U.S. most dirigibles were made of hydrogen rather than helium. The hydrogen made it much more dangerous to have in the crowded down town New York area, because hydrogen was much more flamable. a third obstacl was the winds as said ""the winds on top of the building were constantley shifting due to violent air currents."" It was also illegal to fly/hold or dock a air craft so close to the ground. The docking and holding of the dirigibles at the Empire State building brought many issues and delemas making it hard to carry out such a idea for such a tall building." 3 3 3 +16488 6 "The builders of the Empire State Building were challenged with significant obstacles in attempting to allow dirigibles to dock there. One example, was the architects had to address the potential problem of the ""existing law against airships flying too low over urban areas."" This law clearly would prohibit and make it ""illegal for a ship to ever tie up to the building or even approach the area"". Dirigibles were designed to be ""moored in open landing fields"" and ""could be weighted down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street was neither practical nor safe."" Another example, of an obstacle that the builders of the Empire State Building faced was the potential risk to passengers and resident safety. The reason the landing of dirigibles were a potential threat to the entire population of New York City was that ""most dirigibles from outside United States use hydrogen rather than helium, and hydrogen is highly flammable."" The owners of the Empire State Building saw these potential risks ""when the German dirigible ""Hindenburg"" was destroyed by fire in Lakehurst, New Jersey."" Also, another obstacle of placing a mooring mast among one of the world's tallest buildings was ""the winds on top of the building were constantly shifting due to violent air currents."" Due to the unpredictable winds the dirigible could sway and ""swivel around and around the mooring mast"". The architects of the Empire State Building were threatened by the possible obstacles of constructing a mooring mast atop the building." 4 4 4 +16489 6 "Throughout the short story The Mooring Mast, the builders faced many obstacles to complete their vision. For example the workers had to design a mast that would take ""the stress of the dirigible's load"" (@NUM1). The cable at the top was stated to not be able to maintain the stress the dirigible would produce, so the engineers had to develope a new solution to distribute the weight of the dirigible evenly. This cost them time and money due to the massive hight of the empire state building. the architects also had to do extra research to develope the mast. The workers took tours of the U.S. Naval Air Station and met with the president of the airship transport company just so they could be sure the dirigibles would land in a safe secure way. These obsticles had to be faced in order to produce their unrealistic dream." 3 3 3 +16490 6 "The builders of the empire state building had many @CAPS1. One of these @CAPS1 was trying to get the frame of the building to support dirigible, ""The stress of dirigibles load and wind pressure would have to be transmitted to the frame."" Another problem faced by the builders was that there was a law against aircraft going that low, this was stated @CAPS2 @NUM1 ""The other practical reason why dirigibles could not moor at the empire state building was an existing law against airships flying too low in urban areas."" The biggest obstacle was nature itself. The violent winds that high up would have caused the dirigibles to be unable to moor, ""Even if the dirigible were tethered to the mooring mast the back of the ship would swivel around and around the mast."" These were the @CAPS1 the builders faced." 4 3 4 +16491 6 "The Empire State Building was to be the tallest building ever made. At the top, was to be an accesable docking station for dirigibles called mooring masts. The idea of haveing a mooring mast on top of the Empire State Building caused the whole building to be modified. It costed over sixty thousand dollars in modifications to accommodate the mooring mast. This project was the first of its kind and had many obsticles like the modifications. Some of those obsticles included the violent air currents and constant change in wind direction on top of the building. With the wind changes, the dirigible could swing around and hit the building or other buildings and fall on the densely populated New York City below. The solution to this was to tie lead bricks to the tail of the dirigible like what is used in the feilds when they land. Although the bricks keep the tail from moveing around, having them hang over a thousand feet above pedestrians was not save. In the end the idea of docking dirigibles on the Empire State Building was disbanded due to many problems that could arise." 3 3 3 +16492 6 "The builders of the Empire State Building faced many obstacles in the attempt to allow dirigibles to dock there and those obstacles include: the lack of a suitable landing area in @LOCATION1, a mooring mast was needed to the top of the building so dirigibles or blimps could anchor there for several hours for fuel, services, and to let passengers on and off, The steel frame of the Empire State Building had to be modified and strengthened because a thousand-foot blimp mooring at the top of the building held by a cable tether would cause stress to the building frame. The blimps load and the wind pressure would have to be transmitted all through the buildings foundation which was somewhere about eleven hundred feet below. The last obstacle in the allowing blimps to dock at the Empire State Building was a law against airships flying too low over urban areas which would make it illegal for a dirigible to ever tie up to the building or even approach the area." 3 3 3 +16493 6 "The builders of the Empire State Building faced @CAPS1 obstacles in allowing Dirigibles to dock. The most blatant one was the height at which they would dock. Al Smith states ""The Empire State would reach the height of @NUM1 feet,"" @CAPS1 Dirigibles from outside the U.S. Were extremly Flammable. If one caught fire while moored to the top of the Empire state building the results would have been catastrophic because it would happen over a densly populated area. Another obstacle was wind. If the ship was tethered to the mast the back of it would constantly Swivel around. USing led weights to secure the back would not be safe or practical. The last one was a law that made flying a dirigible too low over a urban area illegal. No Ship would be allowed to fly over downtown New York." 3 3 3 +16494 6 "Al Smith faced many obstacles in designing and building a mooring mast on top of the Empire State building. Most of the obstacles should have been realized before the mast was even built.One of the obvious obstacles was the constant change in wind. The back of the blimp would not be tied down therefore swinging around in the sky. Another, obstacle would be the design of the mast. This was important because if designed wrong the mast would put stress on the building and could cause a lot of damage. Their was also a law about airships flying too low in urban areas, New York being an urban area. One of the most dangerous reasons was that some blimps were filled with hydrogen which is highly flammable.Al Smith and his architects should have realized and discussed these issues before constructing an unusable structure. If this was discussed a lot of time and money would have been saved." 3 3 3 +16495 6 "In this excerpt The Mooring Mast by, Marcia Amidon Lsted, the builders of the Empire State building faced many obstacles in attempting to allow dirigibles to dock there. The first obstical was to make the building taller than the Chrysler Building, but they overcame that with the desion to add a top or a hat to the building. They then had to accomidate with the new situation that new modifications had to be done so that the dirigible would not add stress to the buildings frame, since the steel frame of the building could not with stand the load and wind pressure that would transmitt nearly @NUM1 feet below. The biggest obstacles that led to the fate of the mast was the fact of, since most dirigibles outside of the United States used hydrogen which was very flammable, and they could not have any accidents taking place above downtown New York. Nature itself was the greatest obstacle though because, of the constant shifing winds. The dirigibles could be weighted down in the back with lead weights but with them dangling high above pedestrians on the street was not safe or practical. There was also a law against airships flying too low over urban areas. These are the obsticals that builders faced in the attempt to allow dirigibles to dock at the Empire State building." 3 3 4 +16496 6 "Marcia Amidon Lsted, author of ""The Mooring Mast,"" highlights not only the safety hazards that the Empire State Building builders encountered while attempting to allow dirigibles to dock there, but also a factual aspect dealing with laws and violations that solidified the failure of such transportation. Normally dirigibles would moore in open landing fields and then weighted down to ensure that they would @CAPS1 motionless on the ground, but since the builders of the Empire @CAPS1 Building are tempted to dock dirigibles @NUM1 feet in the air, nature and airspace laws come in to play. The Empire State Building rising 102 floors high was a feat in and of itself; the vision of dirigibles docking at such height by builders was maimed by both the forces of actual nature and legal disputes. The fact that dirigibles would have to dock at the top of the Empire State Building was not approved by nature. the winds in the airspace @NUM1 feet in the air were not only strong but constantly shifting due to violent air currents so forceful that even ""the U.S. Navy dirigible Los Angeles... could not get close enough to tie up. It was too much of a safety hazard and gamble to more a dirigible with winds not cooperating. The most factual and practical problem builders faced with the idea of docking dirigibles atop the Empire State building dealt with a violation of an airspace law. The existing law banned ""air ships from flying too low over urban areas,"" meaning that legally it was a potential safety hazard to direct and dock a dirigible that high in the air. Without certainty for success, the operation of docking dirigibles on the Empire State Building was halted in the late 1930s. Although the builders of the great Empire State Building could build at @NUM1 foot sky scraper the attempt to dock dirigibles upon the building failed mainly because of safety hazards." 3 3 3 +16497 6 "In the excerpt, ""The Mooring Mast,"" by. Marcia Amidon Lsted, the Al Smith wanted to make the tallest building in New York. He had made the building very tall, 1,046 feet tall to be exact, but then, the Empire State Building was made taller, 1,250 feet. It was basically a competition to see who was to have the tallest building in New York. A mooring mast was put on top of each building for more height. Although, the builders did not account the balloons, or dirigibles that pass in the air. Dirigibles are highly flammable, and if they so happen come in contact with a mooring mast, it could be destroyed, just like before, ""the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937,""... The mast could have caused huge chaos to New York if it did damage upon a dirigible passing in the air." 2 1 2 +16498 6 The greatest reason was one of safty: most dirigibles from outside of the United States used hydrogen rather than helium and hydrogen is highly flammable. The greatest obstacle use of the mooring mast was nature itself. The on top of the building were constantly shifting due to violen air currents 2 2 2 +16499 6 "The builders of the Empire State Building faced several problems in attempting to allow dirigibles to dock there. To begin, the architects were unable to just drop the mooring mast on top of the building's flat roof. This was due to the fact that a dirigible held by a cable would add stress to the building's frame. Though this was an obstacle, the architects spent over @MONEY1 on modifications to the frame to remedy the problem.Another major problem with the idea of the mooring mast was general safety. First off, most foreign dirigibles use hydrogen, as compared to helium, to stay aloft. This problem lay within the fact that hydrogen was highly flammable, and after the Hindenburg catastrophe in 1937, architects became concerned that the same accident could occur over downtown @LOCATION1.In addition, the mast idea proved unsafe due to violent wind currents. To keep from blowing around, dirigibles needed lead weights, which couldn't be allowed to dangle over busy city streets. In conclusion, a final obstacle was a law that prevented airships from flying too low over urban a city. This made it legal for all airships to tie up or ******** this area. Those were the obstacles facing the architects." 4 4 4 +16500 6 "When building the dock for dirigibles. Al Smith was only able to think of a few obstacles that would come up. As it turns out, there were more obstecles than expected. One that was expected was the building could be pulled over by the dirigibles as stated in paragraph @NUM1, third sentence. An obstacle that was unknown until after the mast was built was the violen shift in wind would cause the dirigibles to wrap itself around the mast and to dang weights off the back of it to prevent the wrapping was considered unsafe as stated in paragraph fourteen, second sentence to the fourth. Another untold issue was the ""existing law against airships flying too low over urban areas"" (paragraph @NUM2, first sentence) along with the fact that ""most dirigibles outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. (paragraph @NUM3, second sentence). The whole idea of a docking mast was not well thought out." 3 3 3 +16501 6 "During the time of the @DATE1's many obstacles came into play to the architects building a dirigible dock for them to land on top of the Empire State building. The builders had to face situations with weather conditions of this dock. The Empire State building was so high ""The winds on the top of the building were constantly shifting due to violent air currents"". The weather conditions that were occurring high above of this 1,250 ft building made it difficult for dirigibles to dock themselves making the outcome unsafe. Builders also had to face the reality of ""an existing law against airships flying too low over urban areas"". with this law taking its action it made it illegal for a dirigible to even attempt a landing on these docks. The main concern of obstacles these builders constructing this landing dock would be the strong winds that would occur. The winds were so powerfull and strong that the blimp would face ""the sharp spires of other buildings in the area, which would puncture the dirigible's shell."" This obstacle of weather was a huge struggle to these architects making the dock of these dirigibles unsuccessful. The obstacles that were faced in constructed this dock came to the outcome of dirigibles being ""given away to airplanes""." 4 3 4 +16502 6 "Based on the excerpt, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there were, the one obstacle to thier expanded use in New York City was the lack of a suitable landing area, also saw a opportunity for his Empire State Building to have a mooring mast added to the top of the building that would allow dirigibles to anchor there for several hours for refueling or service, or to let passengers off and on. Also dirigibles were docked by means of an electric winch, which hauled in a line from the front of the ship and then tied it to a mast. In conclusion, these are the obstacles which the builders of the Empire State Building faced, to allow dirigibles to be docked." 1 1 1 +16503 6 "In the excerpt ""The Mooring Mast"" by @ORGANIZATION2, there were many challenging obstacles that the builders of the @ORGANIZATION1 as they were attempting to allow dirigibles to dock there. Al Smith, the four-term governor of New York was determined to outstrip the Chrysler building by making the Empire State Building much taller. He had goals where the building ""would be equipped For an age of transportation that was then only the dream of aviation pioneers"". The first obstacle involved their expanded use in New York City, which was the lack of a suitable landing area. Al Smith, however, saw it as an opportunity to have a a mooring mast added to the top of the building would allow dirigibles to anchor there For several hours for refueling or service, and to let passengers off and on"". Al Smith's ambitions to enhance the building's height encouraged him to overcome this obstacle. Another problem with this however, was actually constructing the mast which led to a new obstacle. Over sixty thousand dollars' worth of modifications were done to the Empire State Building because they couldn't have a thousand- foot dirigible moored at the top of the building. If the dirigible was held by a single cable tether, it would add stress to the building's frame. Even though this was an obstacle, the modifications to the building had adjusted this problem, and the builders were able to create the mast. As the progress of the Empire State continued, more difficulties kept arising which made the goas for Al Smith much farther away.Not knowing the fate of the mooring mast on the Empire State Building, the builders realized afterwards that the mast's purpose became obsolete. The issue here was mainly safety which was that ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"". They noticed after the mast's construction that it could have been a tragedy to have a dirigible go in flames above the densely populated city. Another important obstacle that interfered in attempting to dock dirigibles above the Empire State was nature itself. It was stated that ""the winds on top of the building were constantly shifting due to violent air currents"". The builders knew that weighing down the back of a dirigible would be unsafe because of the pedestrians below. Even with all these obstacles, the builders of the Empire State Building continued to try to allow dirigibles to dock there, but over time the idea had faded away and they basically gave up on the project. Al Smith's goals were left uncomplete because of the challenging obstacles, but in the end, he did manage to establish the Empire State Building as the tallest in @ORGANIZATION5." 4 4 4 +16504 6 "from the excerpt The mooring mast there where many obstacles the builders of the Empire state building faced in attempting to allow dirigibles to dock there. The first thing was safety. And that states used hydrogen rather than helium, and hydrogen is highly flammable. The greatest obstacle the @CAPS1 use of the mooring mast was nature itself. the back of the ship would swivel around and around the mooring mast. They would be dangling high above pedestrians on the street, was neither practical nor safe." 2 2 2 +16505 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there included issues in safety, nature problems, and a dilemma with a law. Safety was a major concern as many dirigibles used hydrogen, which was highly flammable. An example of such a dirigible was the German Hindenburg, which went up in flames in Lakehurst, New Jersey. As the article ""The Mooring Mast,"" by Marcia Amidon Lsted, states, ""the owners of the Empire State Building realized how much worse the accident could have been if it taken place above a densely populated areas such as downtown New York City."" @CAPS1, nature was a big obstacle the owners faced, as the winds on top of the building constantly shifted. According to Lsted, this would have caused the back of the dirigibles to ""swivel around the mooring mast,"" which would not have been ""practical nor safe."" @CAPS2, there were legal issues the builders faced. There was a law at the time restricting airships from flying too low over populated areas. As the article notes, ""This law would make it illegal for shipped ever tie up to the building or even approach the area."" The builders of the Empire State Building faced issues with safety, nature, and the law." 4 3 4 +16506 6 "In the excerpt ""The Mooring Mast"" by @ORGANIZATION1 faced many problems with the attempt to allow blimps to dock their. One problem was that the already constructed frame was not strong enough for a new mooring mast for blimps. A second problem is shown in the quote ""The winds on top of the building were constantly shifting due to violent air currents..."" (Lsted para. @NUM1). The weather at the height of the Empire State building would throw and move blimps in violent ways when trying to dock. The push of the winds even caused the threat of blimp being blown into a spire on a surrounding building, the threat is shown in the quote ""which would puncture the dirigibles shell"" (Lsted para @NUM2). That is what could happen if a blimp tried to tether to the building. The builders also faced the laws about flying that low over an urban area. All in all the builders of the Empire state building did face a many problems while trying to allow blimps access to the building." 3 3 3 +16507 6 "The builders of the Empire State building had to face many obstacles in attempting to allow dirigibles to dock there. The first obstacle they faced was placing the mooring mast on the building. Lsted states, ""The architects could not simply place a mooring mast on top of the Empire State building's flat roof"" (Lsted @NUM1). This meant that they would have to build another structure to be able to place the mooring mast. The second obstacle they faced was preparing the building to dock dirigibles. Lsted claims, ""A thousand-foot dirigible moored at the top... held by a single tether would add stress to the buildings frame (Lsted @NUM1). The dirigibles would weigh the building down so they would have to find a way to prevent damaging the building. The architect would have ""The steelframe modified and strengthed"" in order for any dirigible to dock there. These are the obstacles the builders of the Empire State building faced when attempting to allow dirigibles to dock." 3 2 3 +16508 6 "The men who were constructing the building did not put enough thought in to the practicality of the new form. One major issue with the dirigibles landing there to fuel up is the fact that they could explode. There had been blimp accident before and it wasn't in a heavily populated area like New York is. ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" (@CAPS1 @NUM1).The winds at the top of the building would also blow the back end of the blimp around, and it isn't safe to have lead weights hanging over pedestrians, and the Blimp would be to low. ""The winds on top of the building were constantly shifting due to violent air currents."" ( @NUM2) ""-the back of the ship would swivel around and around-"" ( @NUM2) ""Dirigibles moored in open landing fields could be weighted down in the back lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the street, was neither practical nor safe."" ( @NUM2) the architects should've thought their plan through better." 3 3 3 +16509 6 "There were many obsticles the builders faced when attempting to dock dirigibles on the Empire State Building. First off, there was a great safety concern. Many dirigibles from foriegn countries used helium instead of hydrogen; while helium is very flamlable, therefore the dirigible might explode. Second, the wind made it very challenging to dock the dirigibles. The winds were always changing because the violent air currents. Finally, there was already a law in place against airships flying to low over urban areas. So even if they fixed the other problems it would still be illegal to dock the dirigibles. Those are some problems the builders faced when attempting to dock dirigibles." 2 3 3 +16510 6 "In this excerpt the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. The architects had trouble with putting the moor mast on top of the building. ""The architects could not simply drop a mooring mast on top of the Empire State Building's flat roof."" The mooring mast would have stressed the building. Because of the stress from the dirigible's load and wind pressure would have to strengthen and modify the whole building which cost over sixty thousand dollars. So they build a shiny glass and chrome-nickel stainless steel tower. Those were the obstacles in making a moor mast." 2 2 2 +16511 6 "The obstacles the builders went through lallow dirigibles to dock there was that they wanted to put a mooring mast on the top of the Empire State buildings flat roof, but the problem was that the stress of the dirigible's load also the heavy wind pressure had to be transmitted to the buildings foundation, in which was about @NUM1 ft below. And since they had to do that The steel frame of the Empire State building would have to be modified and strengthened to accommodate the situation" 2 1 2 +16512 6 "Some of the obstacles facing the builders was if they were to add on the mooring mast they would have to strengthen the building integrity. This is necessary because once the mast goes the wind, pressure would have been transmitted all the way down to its foundation. More floors would have to be added to house elevators and stairs to a ticket and laggage area. They had to find a way to attach the mooring mast to the foundation, which is nearly @NUM1 feet below." 1 2 2 +16513 6 "In the excerpt, The Mooring Mast, written by Marcia Amidon Lsted, the builders faced obsticles in attempting to allow dirigible to dock at the Empire State Building. One obsticle the builders faced was that they had to modify the buildings framework in order to install the mooring mast. The builders had to modify the building because ""a thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame. ""The stress of the dirigibles load and the wind pressure wood have to be transmitted all the way to the buildings foundation, which was eleven hundred feet below."" That was another obsticle the builders faced. Also, the mooring mast never fulfilled its purpose because of safety. Hydrogen is highly flammable. The biggest obsticle was nature. The winds were constantly shifting due to violent air currents. The idea was neither practicle nor safe." 2 3 3 +16514 6 "Based on the excerpt, the builders of the Empire State Building faced many problems while trying to allow dirigibles to dock on the mask. One obstacle involved dropping ""A mooring mask on top of the Empire State Building's flat roof"" (paragraph @NUM1). If they had done this, the mask would have added a great amount of stress to the building's foundation. As a result, the steel frame of the Empire State Building would have to be modified and strengthened but this was too costly. Another obstacle the use of hydrogen rather than helium in foreign dirigibles. Hydrogen is a highly flammable gas and if a dirigible had accidently caught on fire, a great amount of damage could be caused. However, the greatest obstacle involved the harsh wind current on top of the Empire State Building. Even if the dirigible was ""Tethered to the mooring mast, the back of the ship would swivel around and around"" (paragraph @NUM2). The use of lead weights to anchor the dirigible down while ""dangling high above pedestrians on the street was neither practical nor safe"" (paragraph @NUM2). In conclusion, while building the mast on the Empire State Building, the architects and builders faced many obstacles." 4 3 4 +16515 6 "In the excerpt, the builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock on it. When building the Empire State Building the architects had to take the height.. of the building and mooring mast into account. They simply could not drop a large glass and chrome mooring mast on top of the buildings flat roof. Also the wind currents over one thousand feet high our rapidly changing. An extremely large dirigible board at the top of the building would ""add stress to the buildings frame"". (@NUM1) The architects would have to modify and strengthen its steel frame for the safety of the building. These changes would cost over sixty thousand dollars. But alas, the mooring mast of the empire state building never fufilled its destiny due to these obstacles." 2 3 3 +16516 6 The obstacles the builders faced with the mooring mast was the winds and the gases used in non-@CAPS1 dirigibles. The wind was a problem because that high up the dirigibles' back would swivle around the mooring mast. The gases used was a problem because out of country zeppelins used hydrogen which was highly flammable which would be bad if the zeppelin went up in flames over the densely populated New York. 2 2 2 +16517 6 1.) dirigibles were being hailed as the transportation of the @NUM1.) they had a top speed of @NUM2 miles plus cruise at @NUM3 miles per @NUM4.) Some were as long as @NUM5 feet. 0 0 0 +16518 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, the author describes the obstacles the builders of the Empire State Building faced in attempting to allow dirigible (blimps) to dock there. The original purpose of the mast was to serve as a landing spot for dirigibles, also known as blimps. In paragraph 6 the author states ""The one obstacle to their expanded use in New York City was the lack of a suitable landing area. Al Smith saw an opportunity for his Empire State Building: A mooring mast added to the top of the building would allow dirigibles to anchor there for several hours for refuling or service, and let passengers off and on."" That's one obstacle of his company. In paragraph @NUM1 it says ""the mooring mast and made changes to the existing plans for the buildings skeleton, construction proceeded as planned."" The buildings structure didn't really help the dirigibles much." 1 1 1 +16519 6 "The Mooring Mast by @ORGANIZATION1, the builders of the Empire State building faced many obstacles in the attempts of allowing dirigibles, the transportation of the future in the @DATE1's, also known as blimps to dock at the building. The biggest problem was figuring out how to make the mast work.The main obstacle to the use of the mooring mast was nature, since the winds on top of the building were constantly shifting because of strong, violent air currents, the back of the dirigible would turn around and around the mast even when it'll be tied to the mast. It is said in the excerpt that dirigibles moored in open landing fields can be weighted down with the use of lead weights. Because these would be dangling high above people below it would be dangerous, just in case it falls. Also, builders cannot control nature making this the most difficult.Another obstacle was the stress the body frame at the building will receive if the dirigible was held by a single cable tether. The wind pressure and stress would have been too much for the building's foundation. This was solved by modifying the steel frame of the Building to be stronger to keep the building from collapsing.The attempts at allowing dirigibles to more at the building had many obstacles but in the end it was all for nothing because there is a law that is against airships flying too low over urban areas." 3 3 3 +16520 6 "The Empire State building had to face the problem of how to have mast for the huelium balloon that was lighter then a blowing up balloon. The tip of the building was too long, some of the problem couldn't be solved by architects." 0 0 0 +16521 6 "The @CAPS1 faced arguments,confusment, tufe Time Building it." 0 0 0 +16522 6 "There were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacle was the stress on the building from the dirigible. The stress of the dirigibles load and the wind pressure would have had to be transmitted all the way to the buildings foundation which was @NUM1 feet below. So the steel frame of the Empire State Building would have to be modified and strengthened Another obstacle was that most dirigibles from outside the U.S use hydrogen rather than helium, and hydrogen is highly flammable. The third obstacle was the winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible was tethered to the mooring mast, the back of the ship would move around uncontrollably. Lastly, the last obstacle with the existing law against airships flying too low over urban areas. This would make it illegal for a ship to ever tie up to the building or even approach the area. These are the many obstacles that builders of the Empire State Building faced in attempting to allow dirigibles to dock their" 3 3 3 +16523 6 The builders of the Empire State building faced many problems and obstacles while attempting to allow blimps to dock there. One of their obstacles was that foreign blimps used hydrogen Not helium to stay in the air. If it blew up over New York the damage and death rate would be catastrophic. A second obstacle that they faced was that the elevation of the building was @CAPS1 high that there were strong wind currents. Making it difficult for the Navy's blimp the Los Angeles to come @CAPS2 the docking station at the mooring mast. Their final obstacle that they faced was the fear of the blimps going @CAPS2 another buildings Spire bursting a hole in the blimp: causing it to crash.The builders faced many obstacles such as the danger and high risk of a foreign blimp trying to dock and ends up blowing up since They are filled with hydrogen and not helium. Also since it is at such a high elevation the heavy wind currents make it difficult for the blimps to get close enough to be able to dock. Finally the fear of the blimp going @CAPS2 another buildings Spire puncturing a hole in the blimp causing it to crash. 3 3 3 +16524 6 "In the excerpt from ""The Mooring Mast"", the builders of the Empire State Building were faced with obstacles when attempting to allow dirigibles to dock there. The designers had such big plans for the building that reality was far off. One challenged they encountered was the safety of everyone. In the excerpt they talk about how, ""most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (paragraph @NUM1). The risk of the dirigible being caught on fire was very high. If it did catch on fire not only would it harm the blimp, but also the buildings and people of New York. Another obstacle that was in the way was mother nature herself. No one could predict the weather, and ""the winds on top of the building were constantly shifting due to violent air currents"" (paragraph @NUM2). Blimps would not be able to fly close enough without the wind pushing it. The winds could make the aircraft fly into buildings, which could damage the design of the dirigible. All in all, the challenges the designers had to build such a great building, were only a practical dream that reality soon crushed." 3 3 3 +16525 6 "In the excerpt the builders had many obstacles on how they could dock dirigibles on top of the Empire State Building. The first problem they had was because of the high winds. ""The winds on top of the building were constantly shifting due to violent air currents"" (@NUM1). This was a problem because the winds could cause the dirigibles to crash into the building releasing it's gases. The second obstacle they faced was making the building structure strong enough to tie down the dirigibles. ""The steel frame of the Empire State Building would have to be modifyed and strengthened to accommodate this new situation"" (@NUM2). This was a problem because if they did not strengthen the steel the dirigibles would weaken the building's structure. Those are the main two obstacles that the builders faced when building the Empire State Building @CAPS1 they could dock dirigibles." 3 3 3 +16526 6 "In the excerpt ""The @CAPS1 Mast"" by Marcia Amidon Lsted the builders faced many obstacles. They were trying to get Dirigibles to land on the empire state building. They faced many problems while trying to accomplish this feat. If they were going to have Dirigibles land atop the building they would have to add floors to the building. Another one is ""The steel frame of the Empire State building would have to be modified and strengthened to accommodate the new situation."" Which means they would have to waste even more money. Then something they found out later is they couldn't even do this, in the first place due to legal matters. If they did that then they would be getting themselves in trouble with the legal system. Once they realized that I think that they realize the project was a failure and told the world ""The as yet unsolved problems of mooring air ships to a fixed mast at such a height made it desirable to postone too a later date the final installation of the landing gear.""" 3 3 3 +16527 6 "Engineering a docking station was supposed to be a great accomplishment for the city of New York. Unfortunately, builders faced many obstacles in trying to make this incredible plan flourish. Many engineers did not think of the hazards and for ""reasons that should have been apparent before it was even constructed"" (@CAPS1 @NUM1).The greatest issue was safety. Dirigibles used a highly flammable gas, hydrogen, and if an incident like the Hindenburg were to occur again, it would be an immense danger to the densely populated city.Another obstacle were the winds at the top of the Empire State Building. The winds were constantly shifting and the backs of dirigibles would swing around and around.There was also a law against low flying aircraft over urban areas. so it was illegal for a ship to ever even approach the area. The idea for a docking station was great, however, many obstacles were not brought up in the early @CAPS2 of planning, so the Empire State Building never came to be a dock." 4 3 4 +16528 6 "The obstacles the builders of the empire State building faced was that the wind, the climate was always a risk and the height of the building was also a chalange for the builders of the empire State building. " 1 1 1 +16529 6 "Based on excerpt The Mooring Mast, by Marcia Amidon @CAPS1 the obstacles the builders of the Empire State Building in attempting to allow dirigibles to dock were, to get it to work. For many reasons the builders would never get dirigibles to dock at the Empire State Building.One reason this idea could never happen was because the dirigibles themselves were highly flammable. The hydrogen gas most places used to fuel there dirigibles made them highly flammable. In a highly populated areas such as New York this would be a problem.Another issue would be money. The builders would need more money to strengthen the building for the weight of the dirigibles. With a one thousand foot dirigible moored to the top of a building by a single cable tether there will be a lot of stress on the building.Finally the last reason would be safety. Violent winds would make dirigibles unstable When docked to the building. There is also an existing law against airships flying too low over Urban areas.In @CAPS2 based on excerpt The Mooring Mast; by Marcia Amidon @CAPS1 the obstacles builders of the Empire State Building faced in attempting to allow dirigibles to dock were the flammability, money issues, and safety reasons." 4 4 4 +16530 6 "The builders of the Empire State Building faced many challenges with dirigibles. The first being that with the large size of the aircrafts it would put much stress on the building and so a new frame was created to accomadate the @NUM1 ft dirigibles. Sixty thousand dollars was needed for modifications. Another problem was safety. A lot of dirigibles out of the United States used hydrogen which is highly flammable and different accident like in New Jersey, where the blimp caught fire, were to happen in the heavely populated New York a lot of injuries and deaths would occur. A third reason is nature. Since the building stood so tall, wind speeds and pressure was very unpredictable, especially with the violent air currents. In open fields weights were used to stabilize dirigibles, but having lead weights ""dangling high above pedestrians... was neither practical nor safe."" @CAPS1, there were laws against flying at certain altitudes in urban areas. The Empire State Building being at the height it was, was still illegal to have a dirigible or other craft tie up to it. Those are obstacles the builders faced when building the Empire State Building." 4 4 4 +16531 6 "The builders of the Empire State Building had to suffer through many hardships in building the Mooring mast and trying to dock Dirigibles on it. Some of the obstacles that the builders had to over come where the weather, ""The greatest obstacle to the successful use of the mooring mast was nature itself,"" (paragraph @NUM1). The winds at the top of the Empire State Building shifted a lot to do to the violent air currents, even if the Dirigible was tied to the mast the wind would push the back all the way around the mast. Another obstacle that the builders had to overcome was that they feared that the lead weights that held the Dirigible down would be dangling over the edge of the building, leaving it unsafe for pedestrians and for the pilot and passengers on the blimp." 2 2 2 +16532 6 "In the excerpt of the @CAPS1 ""The Mooring Mast"", by Marcia Amidon Lsted, the builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. Dirigibles, also known as blimps, where at the time of the construction of the Empire State Building, and the most advanced form of @CAPS2. The Empire State building was erected to tether dirigibles and allow them to unload and reload passengers and refuel. While building constructors realized, ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the buildings Foundation... eleven hundred feet below,"" (para. @NUM1). Plans needed to be made to support the building and blimps. The nature also was conflict to the project. Lead weights would be used to land dirigibles ""where they would be dangling high above Pedestrians on the street, was neither practical or safe."" (para @NUM2). Due to violent winds at the elevation these weights would waver the blimp and its weights. The aircrafts so were also at risk of landing on ""sharp spires of other buildings."" (para @NUM3). In addition a law for bid @CAPS2 from ""flying low in urban areas (para @NUM3). For these reasons the Empire State Building was never used for the docking of dirigibles." 3 4 4 +16533 6 "During the construction of the Empire State Building, the world thought that they knew the future of air travel: dirigibles. In an attempt to keep up with The modern world, Al Smith, lead architect of the Empire State Building, decided top the building with the dirigible docking station. Unfortunatlley, during the building process, the architects faced many obstacles that stopped them from completing the mooring mast. One of these problems with the sixty thousand dollars they would have to spend on modifications to the building. Another was the flamibility of hydrogen the gas used in inflating the ship. But the biggest obstacle was nature. The winds that the dirigible would be facing were very strong, and pedestrians on the sidewalk were put at risk by the possibility that the ship would tear off the tether it was tied to and crash. A final reason for the end of the mooring mast plan was a law that stated that airships couldnt fly too low over urban areas. Although the mooring mast seemed like a great idea at the time, many obstacles stopped it from having success." 3 3 3 +16534 6 "The builders of the Empire State building went through many obstacles. I feel bad for them because of how dangerous it was, and how long they had to work. At the same time I would have been happy to be apart of something like that. The builders could have died doing there job. Building it so high up, it must have been hot. I dont think it had to be that high they could have done the same thing but lower. Those are some of the obstacles I think the builders went through." 0 0 0 +16535 6 "There were a few challenges that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. The mast couldn't just be dropped on the top of the building. ""A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the building's frame."" All this stress would be transmitted to the foundation of the building. Another obstacle was the builders had to modify the whole building. The architects had designed the mooring mast and made changes to existing plans for the building's skeleton."" The builders already had the building done but in order to dock the dirigibles, they needed to change the building. These architects worked hard to build something that could never be used because of the violent air currents. ""Even if the dirigibles were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast."" The architects put all their hard work into remodeling the building for nothing." 3 2 2 +16536 6 "In the excerpt from The Mooring Mast by @PERSON1, there were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there.Their biggest concerne was safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable""(Lsted, paragraph @NUM1). The excerpt mentions the German dirigible, the Hindenburg which was destroyed in a fire. ""... the owners of the Empire State Building realized how much worse the accident could have been if it had taken place above a densely populated area such as downtown New York"" (Lsted, paragraph @NUM1).Another obstacle was nature itself. ""The winds on top of the building were constantly shifting due to violent air currents"" (Lsted, paragraph @NUM3). The unpredictable winds made it impossible to safely dock people onto and off the dirigibles.Finally, there were laws put in place restricting airships flying too low over populated areas. ""This law would make it illegal for a ship to ever tie up to the building or even approach the area"" (Lsted, paragraph @NUM4)." 3 4 4 +16537 6 "Although adding a mooring mast to the top of the Empire State building is a very clever idea, there are multiple problems and concerns that accommodate this new feature. For example, even if the cable were fastened strong enough to the one thousand-foot dirigible, it would add stress to the buildings frame, causing the building to grow weaker much quicker than without it. In addition, to alter the dirigibles large effect on the building, it would be neccssary to have the dirigible's weight and the wind pressure ""to be transmitted all the way to the building's foundation,"" which was nearly impossible considering this distance was over @NUM1 feet @CAPS1, @CAPS2 was a large factor in building this futuristic structure; over Sixty thousand dollars had to be collected to see better support the building's structure" 2 2 2 +16538 6 "While attempting to allow dirigibles to dock at the Empire State Building, the builders ran into a few obstacles. One obstacle was a previously existing law about airships flying too low over urban areas like downtown New York. Another problem the builders ran into was high winds causing the back end of the dirigible to swing in the wind, making it unsafe for passengers unloading. Unlike dirigibles moored in open fields, lead weights could not be used to weigh the back of the dirigible down because they would be dangerous for pedestrians on the street. Another safety issue was most balloons outside the United States filled dirigibles with hydrogen which is much more flammable than helium. Dirigibles filled with hydrogen could cause a disaster if it ever caught on fire. Although the idea seemed great at first, the builders at the Empire State Building realized it was not practical or safe." 3 3 3 +16539 6 "There were many obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. A huge obstacle was that some dirigibles were as long as @NUM1 feet, the same length as four blocks in New York. Another obstacle was the expanded use. New York was the lack of suitable landing area they would have. With this Al Smith saw opportunity for his building. He would add a morning mast to the top of the building that would allow passengers on and off, which would then become a spot for refueling or service. But with this new idea there would have to be lots of planing." 1 1 1 +16540 6 "Architects constructing the Empire State Building encountered many obstacles for the mooring mast. During the 1920s dirigibles were being hailed as the transportation of the future. The idea of making a mast wasnt so farfetched at first. As construction neared completion many concerns arose. Many dirigibles outside the United States use the highly flammable gas known as hydrogen. Another problem was the docking of the blimps, winds on the Empire State Building constantly shifted which forced the rear of the dirigibles to rotate around the mooring mast. Lastly a law was formed to restrict airships from entering an urban area at low altitudes. When all the problems came together the idea of mooring dirigibles quietly disappeared." 3 2 3 +16541 6 "In The Mooring Mast by @ORGANIZATION2, the builders of the Empire State Building faced many obstacles to allow dirigibles to dock there. One big obstacle they had to overcome is when the dirigibles dock it would leave stress on the foundation of the building. ""Over sixty thousand dollars' worth of modifications had to be made to the buildings framework."" Another obstacle the builders would have to overcome was the winds at the top of the building constantly shifting directions. They thought about putting weights on the dirigibles but then that would not be safe having them hang a thousand feet up over people. There was also a law stating that airships could not fly too low over urban areas. Therefore the builders of the Empire State Building had many obstacles to overcome." 3 3 3 +16542 6 "A mooring mast could just be put on top of the Empire State Building. If thousand-foot dirigible more debt the top of the building, held by a cable tether, then it would add stress to the building's frame. The stress of the dirigible's load and the wind pressure have to be transmitted to the bottom of the building, which was eleven hundred feet below. The frame would have to be strengthened and modified, and this would cost over sixty thousand dollars. Nature itself was the greatest obstacle to the successful use of the mooring mast. The winds were shifting because of violent air currents on the top of the building. The back of a dirigible would swivel around and around the mooring mast. Lead weights weighted down dirigibles, but they wouldn't be safe at the Empire State Building because there are pedestrians below. These weights were used for open landing fields." 3 3 3 +16543 6 "When the Empire State building was built they came accross some problems with letting the dirigibles dock there. Some reasons are when the dirigibles were made they werent made to go high. So when the Empire State building went up the dirigible had a slight problem. Most dirigibles that are made out of the United States used hydrogen rather than helium. But, hydrogen is highly flameable." 1 1 1 +16544 6 "When builders of the Empire State Building attempted to allow dirigibles to dock there, they faced multiple obstacles. The most important was the issue of safety because the dirigible would cause chaos if it caught on fire. Hydrogen would be too dangerous to use in the dirigible if it could catch fire at any moment.Another obstacle was the speed of the wind at the top of the Empire State Building. There were violent air currents, and these would shift the position of the dirigible if it was docked at the mooring mast. Since the back of the dirigible could not be weighted down because of safety issues, it would swivel around the mooring mast.The last issue was an existing law about airships. They were not allowed to fly at this height, for it was too close to an urban area. This made it illegal to try and dock at the Empire State Building. In fact, they couldn't even approach the area except for the Los Angeles and the Columbia, who were allowed to try before the idea was ruined. Neither could successfully dock, and the idea was finished." 4 3 3 +16545 6 "Based on the excerpt from @PERSON1's book ""The Empire State Building"", there seems to be two main problems with the docking of dirigibles in New York City. Firsty, is the problem of nature itself. The area around the Empire State Building, and all of @LOCATION3, is just too windy to have a safe docking procedure. The Naval @CAPS1 the Los Angeles attempted to dock, but the operator pulled away for fear of puncturing the zeppelin on the spire of another building. The second problem, though slightly easier to rectify was the law that prohibited any aircraft near the buildings of New York City. This basically made even attempting to dock in illegal. There are many reasons why the idea of zeppelins didn't get off the ground worldwide, and this excerpt about New York was a prime example of the obsticles that couldn't be safely tackled." 3 3 3 +16546 6 "In their attempts to allow dirigibles to dock on the Empire State Building, the builders faced many obstacles. Firstly, the frame of the Empire State building was too weak to take on the extra stress of dirigible's load. Builders sat out to strengthen the building frame, a sixty-thousand dollar feat. Secondly, builders struggled with high, shifting winds. These winds made docking a dirigible nearly impossible, because ""the back of the ship would swivel around and around the mooring mast."" Another obstacle builders faced were safety issues. The insides of many dirigibles were filled with hydrogen, a highly flammable gas that allowed the dirigible to float. After a dirigible fire in New Jersey, builders realized the dangers of dirigibles and what would happen if a dirigible caught on fire above New York City. Finally, builders also faced the laws regarding air traffic. The laws prevented airships from flying ""too low over urban areas."" in the end, the obstacles prevented builders from letting dirigibles dock on the Empire State Building." 3 3 3 +16547 6 "Based on the excerpt, it is clear that the builders of the mooring mast atop of the Empire State Building faced multiple problems. To begin, the excerpt states that dirigibles from other countries were often filled with hydrogen, which is extremely flammable. The danger of hydrogen was demonstrated when the German dirigible ""Hindenburg"" burst into flames. The Hindenburg incident could have been far worse if it had happened in a densely populated area, such as New York City. Aside from the Fire @CAPS1 the mooring mast would create, there was also a ban on low flying aircraft so in densely populated areas. According to the excerpt though, the greatest obstacle was ""Nature itself."" This was a reference to the powerful winds and violent gusts found at the peak of the Empire State Building. With those winds, it would be outstandingly difficult to control a dirigible safely. After realizing all of these complications and obstacles, it was decided that the mooring mast would not be built." 3 3 3 +16548 6 "From the knowledge I gained reading the excerpt, ""The Mooring Mast"" I lerned that there were many obstacles in making a place for dirigibles to dock. The most important reason is safety. Since most dirigibles used hydrogen instead of helium, the dirigibles were highly flammable. If the dirigibles were to ever catch on fire over New York, many lives could be in danger. Another obstacle was the climate. The empire State buildings top where they were going to build the Mooring Mast, had such a bad climate it was nerly impossible to dock a dirigible on it. These are some of the many obstacles the architects had to face when designing the mooring mast." 2 2 2 +16549 6 "Some of the obstacles that builders of the Empire State Building faced in attempting to allow dirigables to dock there Were things such as how to dock a dirigible to a bulding, feuling and Service, how to get passengers on and off as safe as possible, they also Should have thought about @CAPS1 a thousand foot dirigible @CAPS2 from the top of the building might do to its structure.The architects and engineers of the empire State building consulted with expert, letting people from the U.S. naval air station take a tour of the equipment and the mooring mast. (Which is the anchor for the dirigible) The passengers of the dirigible could get on and off by walking down a gang plank to an open observation platform.In all, over sixty thousand dollers worth of modifications had to be made to the builings foundation. And some dirigibles couldnt even dock" 1 1 1 +16550 6 "In the excerpt The Mooring Mast by Marcia Amidon Lsted, the builders faced many obstacles in attempting to allow dirigibles to dock over the Empire State Building. If the builder's would want to dock the dirigibles they couldnt because there was no right area to land them. ""... in New York City was the lack of a suitable landing area"". Another obstacle was they would have to know the kind of weather because nature it's self can take control. ""The winds on top of the building were constantly shifting due to violent air currents."" The dirigibles if landed on the Empire State Building would be weighed down because in the back would lead weights so, it would weight it down. Another reason that it was an obstacle was because dirigibles used a gas of hydrogen rather than helium and the gas hydrogen is a highly flammable gas that can do a lot of harm if there are passengers present in the dirigibles and could be very dangerous for the Empire State Building." 2 2 2 +16551 6 "The dream for the Empire State Building was to allow dirigibles to dock On the top of it. It sounded like a great idea but the builders faced many obstacles trying to reach the goal of having them dock there. The first problem they faced was that dirigible's load and the wind pressure would have to be transmitted to the buildings foundation so it wouldn't stress the building's frame. To do this over sixty thousand dollars worth of modifications had been made. A glass and chrome nickel steel tower was made with a illuminated inside. The building was now 102 floors. Even though all the hard work the building was never used for docking purposes because of safety. One of the safety obstacles was that dirigibles wer highly flamable, after one caught on fire in New Jersey the owners of the Empire State building didn't want the same to happy in the highly populated New York City. Also another big obstacle was caused by the terrible winds. Even though there was a landing sight the dirigible could never be tied down so the passengers could get off. Also there was a law that stated the air craft's can't fly to low to urban areas. Through all the money and obstacles the builders had to go through to make this dream possible was never achieved." 4 4 4 +16552 6 "While in the process of building the Empire State Building the workers overcome countless obstacles. Al Smith, the governor of New York, wants to build ""the world's tallest building"" (1). At the same time the Empire State building is being designer the @ORGANIZATION2 building, also in New York, is finishing construction The @ORGANIZATION2 building workers decide they want to challenge the designers of the Empire State Building by secretly building a 185-foot spire and making their building 46 feet taller. This begins a competition between the designers to see who will win the title of the tallest building. Later on, after the Empire State building is built and wins the title of the tallest building, the workers are trying to make it work as a mast for dirigibles the land on. The designers forgot to factor in the safety of landing a dirigible in the middle of a city and the fact that wind is a huge factor in landing the aircraft safely. The idea of the building for acting as a landing for dirigibles is dropped. The Empire State Building *************** " 1 2 2 +16553 6 "The builders of the Empire State Building faced obstacles in attempting to allow dirigibles to dock there. One of the obstacles faced was making sure that the people below would not get hurt. If something happened to fall, someone could get hurt. Another obstacle faced was the law against airships flying too low over urban areas. That's the obstacles that the builders of the Empire State Building faced in attempting to allow dirigibles to dock there." 1 1 1 +16554 6 "Builders of the Empire State building faced many obstacles in attempting durables be able to dock there. Some of these obstacles weren't caused by the building it self, nature took part of it due to the forceful winds at the height of 1,250 feet it was hard for the pilots of the dirigibles to steer the ship close enough to tie it up. This situation occurred to the @ORGANIZATION2 dirigible ""Los Angeles"" fearing the wind would blow the ship onto Sharp edges or other buildings in the area. Witch would cause the shell to get punctured leading to a disaster the captain failed to attempt to reach the building on december 1930. Another obstacle builders faced was that an existing law against airships flying to low over urban areas witch would put civilians on the street at risk. Another obstacle was not a large enough dirible would put stress on the buildings frame." 3 3 3 +16555 6 "The builders of the Empire State Building faced many obstacles in attempting to allow dirigibles to dock there. For one, having dirigibles dangling high above pedestrians on the street was neither practical nor safe. There was also ""an existing law against airships flying too low over urban areas."" In addition to these obvious set-backs, ""a thousand-foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the building's frame."" However, it is safely said that mother nature herself proposed the biggest obstacle for the builders. ""The winds on top of the building were constantly shifting due to violent air currents,"" making it extremely difficult to keep the dirigibles securely and safely hoisted to the building. The obstacles for the builders also became much more dangerous as they began to realize the science of the dirigibles. ""Most dirigibles from outside the United States used hydrogen rather than helium, and hydrogen is highly flammable."" When the German dirigible ""Hindenburg"", caught fire on May 6, 1937 in Lakehurst, New Jersey the owners and builders of the Empire State Building realized that the accident could have been much worse if it happened on top of one of the most populated cities in the world." 4 3 4 +16556 6 It show that in the Future the @CAPS1 Building was never fufill it Purpose to use.and that it is the @CAPS2 Building in new york. 0 0 0 +16557 6 "The people who were attempting to allow dirigibles to dock at the Empire State went through many obstacles. They would first have to modify and strengthened the buildings frame to accommodate this new situation. The architects designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from inside, with a stepped-back design that imitated the overall shape of the building itself. After doing all of that work they then found out that the mast of the Empire State building would never work. The greatest reason was saftey. Most dirigibles from outside of the United States used Hydrogen rather than helium, and hydrogen is highly flammable. The biggest obstacle was nature itself. The winds on top of the building were constantly shifting due to violent air currents. The other practical reason why dirigibles could not moor at the empire state building was an existing law against airships flying too low over urban areas. The law made it illegal for a ship to ever tie up to the building or even approach the area. By the late 1930's the idea of using the mooring mast for dirigibles and their passengers had quietly disappeared. Dirigibles instead of becoming the transportation of the future, had given way to airplanes." 3 3 3 +16558 6 "Many problems arised with the docking of dirigibles at the Empire State Building for that the engineers did not account. While the architects were designing the mast, they realized that the building was not built to withstand the stress of dirigibles and the wind. ""... modifications had to be made"" (paragraph @NUM1). Though this obstacles was able to be overcome, many others were not. Since most dirigibles outside of the @PERSON1 used hydrogen, a very flammable gas, a dirigibles could go down in flames similar to the German Hindenburg, and ""owners... realized how much worse that accident could have been... above... New York"" (paragraph @NUM2). Another obstacle was a problem with a ""law against airships flying too low over urban areas"" (paragraph @NUM3). No dirigible would be allowed even close to the building; however, two still tried but neither could tether safely to the building. The thought of the transportation of the future moved on to airplanes and the Empire State Building's top floors are now a public tourist spot." 3 4 4 +16559 6 "The obstacles the builders of the Empire state Building faced in attempting to allow dirigles to dock there was because the dirigibles were docked by means of an electric winch, which hauled in a line from the front of the ship and then tied it to a mast. the architects could not simply drop a mooring mast on top of the Empire State Building's flat roof." 1 1 1 +16560 6 "There was many obstacles in the way of adding a mooring dock to the top of the Empire State Building. First was that new many modifications would have to be added to the frame of the building. This is because the previous frame could not hold the extra weight of a @NUM1 dirigible hanging from 1 cable. These additions would take ""1 over sixty thousand dollars"" plus extra time and effort,. Another huge problem was saftey. Winds around New York were ""constantly shifting due to violent air currents."" This would lead to the blimb wraping around the tower and possibly break off or worse. Not to mention that all around was a densely populated city and any accident could cause much more destruction than normal. Forgein dirigibles also used mass amounts of hydrogen, which proven at Hindenburg, could explode into a massive flaming dunk of steel. This chance would be magnified with the weather and any accident would have high human and property costs. Finally, It was illegal for blimbs to fly low near a city, making the whole project illegal. As you can see there is many problems with having a blimb docking center on the Empire State Building." 4 3 4 +16561 6 "Obstacles are faced everyday, but the builders of the Empire State Building had even harder challenges in attempting to allow dirigibles to dock on the building. The reasons as to why dirigible could not dock there were obvious. Most dirigibles use hydrogen, a very flammable elements, to float. If a dirigible caught fire above a densely populated area, like downtown New York, a very serious problem would develope. Another obstacle, being faced, was nature. The winds were constantly shifting because of violent air currents causing the back of the ship to swivel around the mooring mast. Lead weights could be used to weigh down the back of the ship, but dangeling these weights above pedestrians is very dangerous. Also, there is a law preventing airships from flying too low over urban areas, making it illegal for a dirigible to ever tie up to the building. The idea for making a mooring mast on the Empire State Building was a clever idea, but evidently it was impossible." 3 3 3 +16562 6 "In the article "" The Mooring Mast,"" by Marcia Amidon Lsted it is apparent that the builders of the Empire State Building faced many challenges, during the attempt of trying to dock dirigibles. The dirigibles themselves could be a hazard. ""... Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable. ""In likes of what had happened to the German airship Hindenburg, officials didn't want a similar disaster to occur in downtown New York. Also, the dirigibles light mass would make it a target to high, forceful winds."" The winds on top of the building were constantly shifting due to violent air currets."" This reality caused fear that a zeppelin could potentially be blown into a spire of some sort on another building, causing it to suffer a hole in its fragile lining. The law also caused obstacles for docking dirigibles on the Empire State Building ""... dirigibles could not more at the Empire State Building was an existing law against airships flying too low over urban areas."" This law thwarted many of the would-be attempts of mooring these. Mooring dirigibles was a dream talked about in, ""The Mooring Mast,"" however that soon never had the chance to come true." 4 4 4 +16563 6 "The obstacles the builders of the Empire State building faced were that first, the mast designed to go ontop of the Empire State Building was thought up just to make it the worlds tallest building, not because it was necessary, so alot of problems ar ose. This mast was designed to be a dirigible docking station, which, at the time, blimps were very unsafe, and lacked a suitable landing area so this was thought to be a great opportunity to give them a place anchor for a few hours for refueling, service, and to let passengers on and off. A mooring mast couldn't be simply dropped on top, as it would add stress to the building's frame, so the steel frame had to be modified, and took over sixty thousand dollars' to do so. After Construction took place, it was then decided if an incident, such as the Hindenburg occurred again, it would be much worse over a densely populated area such as downtown New York. But the largest obstacle was nature itself, the winds on top of the building were constantly shifting, due to violent air currents, and although tethered to the mast, the back of the ship would swivel around, the usage of lead weights could solve this problem, but because they would be dangling high above pedestrians on the street, it was neither practical nor safe. There was also an existing law against air ships flying too low over urban areas." 3 3 3 +16564 6 "Although constructing a mooring mast on the top of the Empire State Building seemed like a good idea, a number of obstacles prevented this theory from becoming reality. The builders and architects had to change the frame of the building completely to accommodate the weight of the mast, and this costed over sixty thousand dollars. Another problem was that most dirigibles outside the @LOCATION1 use hydrogen over helium, which was very flammable, and if a dirigible suffered the same fate as the Hindenburg, it would cause a much greater accident at ground level. The greatest challenge that the mast faced was constanly shifting winds from violent air currents. This caused the back of the ship swivel around the mast, even when tied to it, which caused a problem. Most importantly there was already an existing law that prevented dirigibles from flying too low over urban areas, so it would be illegal for the dirigible to approach the building, let alone tie up to it. Although the mooring mast at the top of the Empire State Building seemed like a good idea, this feat couldn't be accomplished due to the obstacles." 4 4 4 +16565 6 "The @CAPS1 of the empire state building had to cross many obstacles in order to have a dirigible dock on the Empire State Building. They needed to build a mooring mast for the dirigible to dock on the Building. This presented another problem however because if dirigible docked on the building its weight would be to much for the building. They overcame this obstacle by rienforcing the building's supports. The largest obstacle and the one that defeated this idea of docking a dirigible on the Empire State Building was simply the elements. The violent air currents and high winds made it impossible for a dirigible to safely tether itself to the top of the empire building. For example when the @ORGANIZATION2 dirigible Los @CAPS2 tried to get in range of the mooring mast but was unable to, do to the fiercely forceful winds. In the end the @CAPS1 of the Empire State Building could not overcome the obstacles." 3 2 3 +16566 6 "Architects based in New York tried very hard to build a successful mooring mast on top of the Empire State Building, to dock dirigibles for several hours for refueling or service purposes and to allow passengers on and off the blimp. While building, Architects faced some challenging obstacles that destroyed the chances of the mooring mast to open and become usable. A dirigible moored at the top of the Empire State Building only held by one cable tether would cause tension on the building's frame. The weight and wind pressure would need to be transferred to the buildings foundation. About over @MONEY1 of modifications would need to be made to the buildings framework. Another obstacle was the roof. ""When the building had been framed to the 85th floor, the roof had to be completed before the framing for the mooring mast could take place,"" wrote @PERSON1 in her article 'The Mooring Mast.' The greatest obstacle however was nature itself. Violent air currents caused the winds to change nonstop causeing the blimp to swivel around the mooring mast. The only solution would be to weigh down the back of the craft with lead weights, but the risk was to much. Last but not least there was a line New York against airships flying to low over urban areas. The law made it illegal for a blimp to even approach the Empire State building. As a result of not being able to use the mooring mast for dirigibles to station, the rooms set aside were turned into the world's highest soda fountain and a tea garden for tourist and sightseers. By the late 1930s dirigibles had become transportation of the past, and airplanes had made their way to the front of the crowd." 3 4 4 +16567 6 "Building just a building alone is a tremendous job for builders, then adding on a docking mast for dirigibles makes it significantly more difficult. The architects and builders had to consult with experts as to how this construction should take place and whether it was safe or not. The architects and builders had to tour equipment and mooring operations at the U.S. Naval Air Station in Lakehurst, @CAPS1 and also had to meet with the president of an airship transport company. Perfusive planning and many meetings later they would begin building this mooring mast.As for the building the construction workers could not just drop a mooring mast onto the flat roof of the Empire State Building they had to find another way, they did not want to put stress on the buildings frame. They came to the conclusion that the frame of the building must be modified requiring over sixty thousand dollars. Workers got to add the mast and then construction was haulted due to danger of pedestrians, all that work for nothing." 2 2 2 +16568 6 "The builders of the Empire State Building were @CAPS1 with immediate problems when attempting to allow dirigibles to dock there. The media hardship that they @CAPS1 was placing a mooring mast on top of an already completed building. ""A thousand foot dirigible... would add stress to the building's frame."" ( @NUM1) Not to mention that a large dirigible would also have placed stress on the building. Completing such a project would be extremely difficult because the building was not designed for docking dirigibles. This means the roof and the top floors would need to be converted to accommodate passengers and travel operations. Nature was also an obstacle that builders @CAPS1. High winds could cause the dirigible to violently sway. Weights used to tether the dirigibles could also be a safety hazard in a densley populated area such as @LOCATION1. Fire was another safety concern for the builders. The gases used to keep the dirigibles airborne were highly flammable and would again cause serious concern for safety in a city of millions. Ultimately all of these factors caused the creation of a mooring mast on the Empire State Building to fail." 3 4 4 +16569 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there. One obstacal the builders faced was the winds on top of the building. The winds were constantly shifting due to violent air currents. Even though the dirigible were tyed dow to the mass, the ship would swivle around the mooring mass. This would make it unsafe for pedestrians. Another issue with landing the dirigibles on the Empire State Building was safety. Most dirigibles outside the United States used hydrogen instead of helium. Hydrogen is highly Flammable. When a German dirigible Hindenburg was destroyed by a fire in Lakehurst, @LOCATION3 owners of the Empire State Building relized that accident would be much worse in down town New York." 3 3 3 +16570 6 "While building the Empire State Building, the builders faced many obstacles. One of the first obstacles faced was competition. Al Smith, the governor of New York was determined to have the tallest building in the world, beating the Chrysler building which was also being constructed. This created an obstacle because it put pressure on Al Smith and the builders to makes such a miraculous, tall building.A second obstacle faced by the builders was having to create a successful mooring mast on top of the building that wouldn't harm the structure of the building itself. ""A thousand-foot dirigible moored at the top of the building held by a single cable tether, would add stress to the buildings frame."" Over @MONEY1 worth of changes had to be made to the framework.The last obstacle was all the work put into the mooring mast for it to even be able to work. It was dangerous for diringibles to land there. The diringibles were highly flammable. Winds were harsh and unsafe, and there was a law prohibitting the aircraft flying so low." 2 2 2 +16571 6 The builders of the Empire State faced alot of obstacles well trying to build it. Some of these obstacles was that a thousand-foot dirigible moored at the top of the building held by a single table would add stress to the base of the fame. Also the wind on top of the building were constantly shifting due to violent air currents. This would make the back of the ship swivel around. There was alway the thought about how dangerous using hydrogen and helium that were extremely flammable. Those are some of the obstacles the builder face well trying to make Empire State taller. 2 2 2 +16572 6 "The empire State building had to face dangerous condition every day like @CAPS1 winds, heavy lifting, High heights." 1 1 1 +16573 6 "After reading The mooring mast, by Marcia Amidon Lsted, the obstacles the builders of the Empire State Building are faced with in attempting to allow dirigibles to dock there are evident. The number one reason is because it is not safe. First, most dirigibles used hydrogen, which is highly flamable. The chance of a fire starting is especially not good because its a highly populated area. Also, ""The greatest obstacle to the successful use of the mooring mast was nature itself"" (@NUM1). With the building being so high,"" winds were constantly shifting due to violent air currents"" (@NUM1). The conclusion has been made the dirigibles land in landing fields because they can be weighted down in the back with lead weights. This method would not be safe if used on the Empire State Building. Clearly, the builders of the Empire State Building are faced with too many obstacles to allow dirigibles to dock there." 3 2 3 +16574 6 "The builders of the Empire State Building faced a few problems in attempting to allow dirigibles to dock there. The @CAPS1 problem was the issue of safety. Most dirigibles @CAPS2 using highly Flammable gases such as hydrogen. This could be a detrimental problem if the dirigible ever caught fire above New York's public. Another problem was working with nature. There were violent air currents constantly shifting atop the building, causing the back of ships to swivel around the mooring mast. The dirigibles couldn't simply be weighed down in the back, because that would be a safety hazard. The last problem builders faced was the law. At the time, there was an existing law against airships flying too low over cities. To tie up a ship to the Empire State Building would be considered illegal." 3 3 3 +16575 6 "The builders of the Empire State Building faced many difficulties and obstacles during the process of creating the great building. The creators had planned for it to be the tallest building in existance, but they were thwarted by the engineer of the Chrysler Building. They put a new top onto the building, making it forty-six feet taller than the Empire State. To match these men, Al Smith decided to add a crown of his own to the building. He built a mooring at the 102nd floor that would accommodate dirigible travel. Once it was put in place he needed to make it compatible with the dirigibles. Six thousand dollars were spent to remodel the frame of the building. The also needed to finds safe ways to dock the blimps. They were unable to find ways to extend an electric winch. Balloons were powered by flammable gases too, a safety hazard in a big city. Plus, weights could not be hanging over city streets in order to way down the ship. These problems made the dirigible popularity drop quite alot, so the mooring was never used to its full potential." 3 2 3 +16576 6 "In the passage, The Mooring Mast by @ORGANIZATION2, the obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there are out lined. These obstacles were safety, nature, and law, Safety was an obstacle because the passengers on the dirigibles would be put in danger. This is evident in the line, ""...dirigibles from outside of the @LOCATION1 used hydrogen rather than helium, and hydrogen is highly flammable."" The dirigibles could have blown up, as many have in the past. Nature was an obstacle because the dirigibles could have a hard time attaching to the mast if the weather is un desirable. This is supported in the quotation, ""...winds on top of the building were constantly shifting due to violent air currents."" The wind could cause the dirigibles to move around uncontrollably, which wouldn't be very safe for anyone. There was a law against airships in urban areas that was an obstacle. This law is explained in the quotation, ""this law would make it illegal for a ship to ever tie up to the building or even approach the area."" This law made it unnecessary to have the mooring mast, as it could not be legally used. The obstacles outlined in the passage The Mooring Mast by @ORGANIZATION2, allowed the architects to avoid wasting funds on something that wouldn't be profitable." 4 3 4 +16577 6 "In the process of building the Empire State Building, there were many obstacles for the builders. Al Smith, who was the one who designed the building, wanted to make the building taller. He did this by attempting to allow dirigibles to dock on a mooring mast at the top of the building, reaching 1,250 feet high. There was obstacles in the way of attaining this goal. Safety was the greatest reason why it was never used as a docking station. Hydrogen was used in the dirigibles, which was highly flammable. An accident had already occurred having to do with a dirigible, called Hindenburg, in New Jersey. As popular as New York is they couldn't take the risk of putting harmful, dangerous gases in a densely populated area. Another problem that occurred to stop this building from being used as a mooring mast was the powerful wind currents that constantly shifted. The dirigible would be dangling high over pedestrians swivelling around because of the wind, this made it very unsafe and not even practical. One last reason the Empire State Building would not be able to have a mooring mast in which dirigibles could land was because there was a law which stated airships were not allowed too low over urban areas. These were some of the obstacles the builders of the @ORGANIZATION1." 3 4 4 +16578 6 "In this excerpt the builders of the empire State building were faced with many problem's trying to build a dock for dirigibles. The first problem they were faced with was how could they put this much stress on the building's structure, As mentioned in paragraph @NUM1. Another problem the workers faced was the safety of the city people below. What if the dirigible caught on fire like the Hindenburg and all the pedestrians below would be in danger. Also the building around it would in harms way too. As stated in paragraph @NUM2 the dock was never really ment for use. I think They just wanted a reason to make the building taller than the Chrysler building." 2 2 2 +16579 6 "Everyone would like to jump in a dirigible and transport from one location to the next. Although, there are many challenges the builders faced in attempt to doing so. One of these challenges included the amount of stress the single cable tether from the dirigible would add to the building. Also, wind pressure is a dangerous factor which needed to be taken into consideration, because the dirigible is so heavy, that it could easily fly off and hit someone. The building would also have to be strengthened to hold the dirigible which would cost over sixty thousand dollars. One of the most important reasons against allowing the dirigible to dock there is because it could easily catch on fire."" The greatest reason was one of safety: Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is very flammable."" (para @NUM1) Overall, due to the dangerous factors in allowing the dririgible to dock there, these will always override the pros, and maybe one day technology can create a safe way to do so." 3 3 3 +16580 6 "Based on the excerpt, ""The Mooring Mast"" by Marcia Amidon Lsted. One of the obstacles that the builders of the Empire State Building faced was that the airship couldn't moor at the Empire State Building because the winds on top of the building were constantly changing due to violent air currents. Another obstacle but the builders faced was that there was an existing law against airships flying too low over urban areas. This law would make it illegal for airships if they ever try to approach the area." 2 2 2 +16581 6 "The builders of the Empire State Building faced multiple obstacles and they attempted to allow dirigibles to dock. The first problem was the overall safety. Dirigibles that were built outside the U. S required the use of hydrogen. Hydrogen is an extremely flammable gas that poses great danger. An example of this was when the Hindenburg was destroyed on May 6, 1937 in Lakehurst, New Jersey. It finally occurred, that if a dirigible was destroyed over a densely populated area, it could potentially hurt a lot more people. A second obstacle that builders had to face was nature itself. At that altitude, there were violent air currents causing winds to constantly shift. This was a danger to the landing of dirigibles too. Even if a dirigible was tethered to the mooring mast, the back would keep swaying. It would be harder to dock passengers, and allow for inspections. Also, dirigibles would typically weighted down with lead weights. However, because it was so high up, this was not practical or safe. The last obstacle these builders had to face were laws. One specific law did not allow airships to fly too low over urban areas. It was also illegal for the airship to tie up or even aproach the building. Overall, these obstacles denied the potential of the mooring mast." 3 4 4 +16582 6 "The builders of the Empire State building faced many challenges by attempting to allow dirigibles to dock there.The first problem, presented in paragraph nine, was that they hadn't originally designed the building to hold a one thousand foot dirigible with a single rope."" A thousand - foot dirigible moored at the top of the building.... Would add stress to the buildings frame."" @CAPS1 had to reinforce the building to handle this new stress.The second problem, introduced in paragraph thirteen, was that the dirigibles are made out of a dangerous element, ""Hydrogen is very flammable."" The Empire State building builders did not want to take their chances over such a populated area.In paragraph fourteen, the reader learns that wind speed at the top of the building far surpassed wind speed in other places that dirigibles could be docked. This was a problem because when they normally tied down the back end of the dirigible with a rope & led, they could no longer do because of the location that they desire to dock it. The builders of the empire state building atempted to fight architectural flaws, dirigibles safety flaws, and the flaws of nature allow dirigibles to dock there which ultimately didn't work out." 3 3 3 +16583 6 "Al Smith had incredible vision with his plans for the Empire State Building. However, his excitement about dirigibles being allowed to dock at the top of the building, blinded him to the obvious obstacles in the way. Dirigibles themselves, were not safe modes of transportation. Hydrogen is very flammable, and would not be safe near large crowds of people, like in an urban area like New York. From a practical viewpoint the mooring mast would not work either, because of the high elevation. The height of the building would have violent winds @CAPS1 it difficult for dirigibles to land for passengers to disembark. The final major problem was that there was a law stating that airships were not to fly too low over urban areas. Irvan Clavan summed it up when he said ""The as yet unsolved problems of mooring airships to a fixed mast at such a height made it desirable to postpone to a later date the final installation of the landing gear."" However, technology soon made dirigibles outdated." 3 2 3 +16584 6 "The main problem of dirigibles landing by the Empire State Building was saftey. For one reason dirigibles were huge; ""Some were as long as one thousand feet, the same length as four blocks in New York City."" The Empire State building is @NUM1 ft tall. ""The winds on top of the building were constantly shifting due to violent air currents."" If a dirigible was going to land on a very windy day it had the potential of crashing into other buildings which would cut through the dirigibles materials. Also on the tethering to the mooring mast, would... ""weigh down in the back with lead weights..."" the idea was dangerous. To hold the dirigible to the building there would be lead weights, ""dangling high above pedestrians on the street, was neither practical nor safe."" Due to all these problems the dirigible would never be safe to land on the mooring mast was the problems that the builders faced." 3 3 3 +16585 6 "There were many reasons that the mooring mast couldn't be used. The first reason is wind speeds. In fact ""in 1930, the @ORGANIZATION1 dirigible, Los Angeles, approached the mooring mast but could not get close enough to tie because of forceful winds."" @CAPS1 the dirigibles could not even get close enough to dock. Another reason was safety. In 1937 the German dirigible, Hindenburg, went down because of a fire. That situation could've been a lot worse if they dirigible went down on heavily populated areas, in which thousands of people might die. The last reason is that there is a law prohibiting airships flying too low over urban are urban areas. Therefore it would be illegal for a dirigible to get close enough to dock." 3 3 3 +16586 6 "The builders of the Empire State building faced several obstacles throughout the building procedure. First, many of the dirigibles were filled with hydrogen gas rather than helium and ""hydrogen is highly flammable."" @CAPS1 following the German dirigle Hindenburg, Empire State Building owners ""realize how much worse the accident could have been,"" and this resulted in the decision not to utilize the mast as a docking area. Also, when Al Smith decided to build the additional mooring mast onto the top of the building, due to the weight of the docking blimps, the architects had to invest ""over @MONEY1"" to modify the building's framework and enable it to support the weight of a dangling blimp @CAPS2, due to violent winds, the docking dirigibles could not properly land and ""were constantly shifting."" Lead weights couldn't be used because of the dangers and impracticalities the idea could set on the @LOCATION1 below. Finally, it seems that the overall safety and practicality of the mooring mast weren't easily attainable. Al Smith states himself that the engineers are ""trying to dope out a practical, workable arrangement. Hence, the builders of the Empire State experienced many obstacles in attempting to allow dirigibles to dock on the building." 4 3 4 +16587 6 "The ability to dock dirigibles atop the Empire State Building, while initially lucrative, had major obstacles. The problems facing the development of the mooring mast would be cost, flammability of dirigibles, and weather over @NUM1 feet in the air. The structural and cost problems facing Al Smith was that ""The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below."" In order to overcome this obstacle, ""The steel frame of the Empire State Building would have to be modified and... over sixty thousand dollars worth of modifications would have to be made."" This is problematic because Al Smith now must spend more time and money than originally planned. Furthermore, another problem is that ""Most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly flammable."" This is a huge obstacle because a fire or explosion ""above a densely populated areas such as downtown New York"", would be catastrophic and could put thousands of people in harms way. Finally the weather at the top of the Empire State building is unsuitable for docking dirigibles: ""The winds on top of the building were constantly shifting... the back of the ship would swivel around and around the mooring mast."" This is dangerous to the structure of the building, surrounding buildings, and people close by. Due to these problems, Al Smith and the engineers could not complete the Mooring Mast." 4 3 4 +16588 6 "In ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State Building faced obstacles when trying to allow dirigibles to dock on it. These obstacles took precaution of safety, nature itself, and the law. The first obstacle was one of safety. ""Most dirigibles from outside of the United States use hydrogen rather than helium, and hydrogen is highly flammable."" Owners of the Empire State Building realized that if a dirigible was destroyed by fire, it would cause a huge accident. Also, this accident would be devastating because it'd take place over the densely populated area of downtown New York. In addition, ""the winds on top of the building were constantly shifting due to violent air currents."" These would cause the back of the ship to swivel around the mooring mast. Dirigibles that are moored in open fields use weights to be weighed down. Yet, these can't be used on top of the Empire State Building because they'd be dangling about walking pedestrians which is dangerous. Lastly, a major obstacle faced when attempting to allow dirigibles to dock on the building was the ""existing law against airships to fly too low over urban areas."" @CAPS1, this would make it illegal for a ship to tie to the building or even approach the area. Overall, the obstacles faced when trying to allow dirigibles to dock on the Empire State Building lead to the disappearance of this idea altogether." 4 4 4 +16589 6 Builders of the empire state building faced many different things while trying to build a dock for the dirigibles. The builders had to make sure it was safe to walk on the platform to get off the blimps. Also the dock had to be high so the owner could still keep the world's highest building record. But with a little hat added wasn't going to do much so building a dock was a better idea. 1 1 1 +16590 6 "The builders of the Empire stat building encountered both man made problems and problems from nature while attempting to allow dirigibles to dock there. One main problem was the buildings strength. The building's steel was not nearly strong inef to ""transmite pressure from the dirigibe's load to the buildings foundation."" Also ""the winds at the top of the building were always moving and full of violent air currents,"" which would shove the Zeppelin into the edges of the building. It was prohibited for airships to fly too low over urban areas, and so making it illegal for a ship to even dock to the building. Price was also a factor, along with the buildings cost an additional sixty thousand dollars worth of modifications had to be made to the buildings framework just to make the building strong inuf to accommodate an airship. Through all of those problems the builders encountered no wonder dirigibles docking at the mooring mast was not possible." 4 3 4 +16591 6 "Based on the excerpt, the morning mast there were @CAPS1 obstacals builders faced attempting to allow dirigibles to @CAPS2 on the empile state Building. Building a @NUM1 ft tall building was hard adding a Mast Would be even harder. Allowing a dirigible land and on the empire State building would be dangerous. The german dirigible the @CAPS3 Was destroyed causeing @CAPS4 of damage. ""The owners of the empire State building realized how much worse that accident could have been If It had taken Place above a densely Populated area Such as down town"". There fore The mast was Put up but never was used as a dirigible @CAPS2." 2 1 2 +16592 6 "In the excerpt ""The Mooring Mast"" by Marcia Amidon Lsted, there are many obstacles the builders of the Empire State Building faced. The task of the building something on the Empire State Building that would allow dirigibles to dock there was a daring and dangerous job.There were many obstacles the builders faced. One obstacle was the winds. ""The winds on top of the building were constantly shifting due to violent air currents."" This would make building very difficult because everything would get blown around. Another obstacle was that ""The steel frame of the Empire State Building would have to be modified and strengthened to accommodate this new situation."" That means the builders first had to make the building strong enough to hold the docking place before they could start building the docking place.These two obstacles that the builders faced made building the docking place much harder. It took much longer because they first had to make the frame of the building stronger. Also they had to watch the wind so that they would not get hurt." 3 2 3 +16593 6 The obsticals that the @CAPS1 had with docking the Dirigibles were that even though they would be tied up in the front. The back end would still swivel in the wind. They couldn't put little waits on the back because if they ever fell they would @CAPS2 podestriens. And there was a law past ships couldnt dock on Building or even come close to rural areas. That is some of the obsticals the workers faced. 1 2 2 +16594 6 Technology was not caught up to the dirigibles. they could not dock because neither the building nor the dirigible had the righ equipment and that was one of the obstacle that the builders of the Empire State building faced. For @CAPS1: when they have to delivery the newspaper. 0 0 0 +16595 6 "One of the obstacles in attempting to allow dirigibles to dock at the Empire State Building was to strengthen the frame of the building. ""The stress of the dirigible's load and the wind pressure would have to be transmitted all the way to the building's foundation, which was nearly eleven hundred feet below (paragraph @NUM1)."" If the building was not strengthen, all that stress and force would collapse the building. Another obstacle faced to the perfection of docking dirigibles was modifying it's safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable (paragraph @NUM2)."" If a dirigible were to be destroyed by fire in downtown New York, I guarantee a really serious hazardous accident. Downtown New York is densely populated, a destroyed dirigible in downtown New York puts in danger the passengers of the dirigible and the pedestrians of downtown. Other than the two obstacles explained above, nature is another obstacle to the Empire State Building. Strong winds can affect the Building or even the dirigible. ""The winds on Top of the building were constantly shifting due to violent air currents (paragraph @NUM3)."" Violent winds could force the back of the dirigible to swivel around the mooring mast. A swiveling ship above pedestrians is no where close to safe. The law enforces that airships could not fly too low over urban areas. Flying too low over urban areas, once again, puts both pedestrians and passengers in state of danger. The dirigible could be blown by the wind and blow onto a sharp spire of other buildings in the area. These are the obstacles faced in docking a dirigible successfully." 4 4 4 +16596 6 "The architects of the mooring mast were blind to the amount of problems that could have arisen. Balloons are not very strong and if they didn't already know, it's windy on the top of the empire state building. The wind Could drive the drigible right into its spikey doom. They had no real way of keeping the drigible contained because usually lead blocks held it down. From 102 stories in the air, that wasn't the safest plan. Also, most non-@CAPS1 dirigibles used hydrogen instead of helium. In a crowded New York City, a fireball like that would be devastating due to hydrogen being highly flammable. The builders really should have planned this out better." 3 3 3 +16597 6 "The builders of the Empire State Building (@ORGANIZATION2) had many obstacles to face when building the mooring mast for dirigibles to dock. Top winds, the flammability of the foreign ships, and airspace laws all hindered the production of the blimp dock.Very high up in New York, the winds are dangerous. If a blimp tried to dock there, the back would be whipped around and could end up harming someone. Being that high up, that's dangerous.Many foreign dirigibles were filled with hydrogen, which is extremely flammable as witnessed with the Hindenburg. When that happened, the owners of the @ORGANIZATION2 thought it was too risky having those things flying over highly populated areas.There were laws made prohibiting low aircrafts over densely populated urban areas, so there could be no docking or they'd be breaking the law every time they did. That wasn't a risk the owner's wanted to take.The idea of the mooring mast was a very under- thought idea. Builders forgot the wind, flammability of Ships, and airspace laws would all end up stopping the mast's success. Now the @ORGANIZATION2 just has a long, useless pole on top of it." 4 3 4 +16598 6 "The weight was an obstacle they faced. ""A thousand-foot dirigible moored at the to of the building, held by single cable tether, would add stress to the building's Frame. The stress of the dirigible's load and wind pressure would have to be transmitted all the way to the building's Foundation, which was nearly eleven hundred feet below. The steel frame of the Empire State building would have to be modified & strengthened to accommodate this new situation."" The weight of the dirigible would be to heavy for the frame because the frame wasn't made for that much weight. Some dirigible were highly flammable ""Most dirigibles from outside of the united states used hydrogen rather than helium, and hydrogen is highly flammable."" They felt that it was to dangerous because it was located in a densely populated area. The air pressure was another obstacle that was faced. ""Fearing the winds would blow the dirigible onto the sharp spires of other building in the area, which would puncture the dirigibles shell...."" The last obstacle was the law. ""The other particle reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying to low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area..."" This law wouldn't allow dirigible to land at the Empire State Building due to its location." 4 4 4 +16599 6 "Based on the excerpt, the builders of the Empire State Building faced many obstacles in attempting to allow drigibles to dock there. ""The architects could not simply drop a mooring mast on top of the Empire State building's flat roof."" That was struggle number one, a thousand-foot drigible would add too much stress to the frame. ""The stress of the drigibles load and as the wind pressure would have to be transmitted all the way to the building's foundation."" That was another obstacle the builder's had to overcome considering the foundation was eleven hundred feet below. The Empire State building then had to be strengthened and modified in order to build a stronger foundation for the mooring of a drigible upon the Empire State Building. Those were some of the many obstacles the builder's went through in designing the mast." 3 3 3 +16600 6 "In the excerpt ""The Mooring Mast"" there were some obsticales that the builders faced. Some of the obsticales that were faced had to do with the strength of the frame. The architects could not simply drop a mooring mast to top the the buildings flat roof because it would stress the frame to much. So over sixty thousand dollars' worth of modifications had been made to the buildings frame work. Anothe obsticae the mooring mast was never destined to fulfill its purpose." 1 1 1 +16601 6 "The architects building the Empire State Building incountered a big problem when trying to put the mooring mast on the very top. The second sentence in paragraph @CAPS1 states, ""A thousand-foot dirigible moored at the top of the building held by single cable tether, would add stress to the buildings frame."" Although the architects faced many problems this was the biggest. This ment that they would have to change the buildings structure in order to make it work. It says in the bottom of paragraph @CAPS1 that over sixty thousand dollars worth of modifications had to be made." 1 2 2 +16602 6 "In the excerpt ""The Mooring Mast"" by @ORGANIZATION2, the builders of the Empire State building face a good amount of obstacles in attempting to allow dirigibles to dock upon it's mast.The wind proved to be a very big problem for the blimps. Not only would they swing about dangerously when tethered to the mast, that on the few occasions that a dirigible actually approached the Empire state building, they couldn't manuver close enough due to the wind. ""The winds on top of the building were constantly shifting due to violent air currents."" Another thing that stood in the way of the Empire State Building's dock being used was the danger it presented to the buildings and people below. The gas, hydrogen, that dirigibles used to float is highly flammable. ""When the German dirigible was destroyed by fire,... the owners... realized how much worse the accident would have been... above a densely populated area."" The third and final obstacle they faced was the law against airships flying too low over urban areas. ""This law would make it illegal for a ship to ever tie up to the building."" With all that potential danger and to discouragement, it's no wonder the Empire State building was never used for docking dirigibles." 4 3 4 +16603 6 "The obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there was a thousand-foot dirigible moored at the top of the building. Because it was held by a Single Cable tether that would add Stress to the buildings frame. Another obstacle was that dirigible's load and the wind pressure would have to be transmitted to the Building's foundation, which was nearly eleven hundred feet below. Even though, the steel frame of the Empire State Building had to be modified and Strengthened to accommodate this new Situation. Overall, this cost over sixty thousand dollars' worth of modifications." 2 1 2 +16604 6 "The builders of the Empire State Building faced quite a few obstacles in making a dirigible docking stations. One of the main things was that there was a law in place that banned the use of low flying aircrafts in urban areas, like New York City. Another reason is that it was just not safe to dock these massive blimps that high. Almost @NUM1 hundred feet up the winds would have been very violent, and with the tailend of the dirigible not being fastened down, it was very likely that it could get spun around and end up tangled with the mast. Also it was not safe because many foreign blimps were filled with hydrogen which was highly flamable, and if an- accident similar to the Hindenburg with fire occurred over in urban place like New York City it could have been very tragic. Lastly in order to build the mast builders had to re inforce the frame of the building so that it could bear the stress that such a station would put on the structure." 3 4 4 +16605 6 "In the attempt to allow dirigibles to dock at the top of the Empire State building, builders were faced with several different obstacles. One obstacle the builders faced was how they were going to modify the building to be able to support a ""thousand-foot dirigible moored at the top of the building, held by a single cable tether,"" because it would add too much stress to the buildings frame. Another obsticle along with the modifications to the buildings' frame was the money. Building this new structure would cost, ""over sixty thousand dollars' worth of modifications"". One of the most important obsticles however was safety. Although most blimps in the united states use helium, outside countries mainly use hydrogen. Hydrogen, being highly flamable, was absolutely out of the question to be in a city as highly and densely populated as New York. The other safety hazards included the winds which were, ""constantly shifting due to violent air currents"" because the back of the blimp could not be weighed down and also ""an existing law against airships flying too low over urban areas"" which would make their attempts not only dangerous, but illegal. In the end, the mooring mast was never completed." 4 4 4 +16606 6 "Based on the excerpt ""The Mooring mast"" by Marcia Amidon Lsted, the builders of the Empire State Building faced a few obstacles. One of those obstacles was making sure that blimps and other air born transportations didnt interfer with the building. Also another obstacle the builders had to deal with was making sure the docking areas were safe. Because if a blimp go to close to an urban city like @CAPS1.Y and have all thos flamable fuels leak out. It would be a big disaster. These are the obstacles the builders faced." 1 1 1 +16607 6 "In The ""Mooring Mast"" by @ORGANIZATION1 many problems with the mast of the Empire State building are explained. One of the many problems was that the large deregible tied to the building mast would add stress to the building which could cause the building to collapse. But this problem was fixed by strengthening the building's foundation. A second problem with docking a dirigible at the Empire State building was the highly flammable gases the dirigible used to become lighter than air. If the dirigible were to catch fire its metal frame could fall to the ground endangering citizens below. The last danger would be that while the dirigible was docked strong air currents coming off of the building could cause the dirigible's tail to spin around on the mast. One way to fix this would be to Place lead weights on the back of the ship. But if one of these weights fell off of the dirigible it could potentially harm pedestrians below. Because of these problems the mast could never be used." 3 3 3 +16608 6 When Designing the dock for dirigibles on the top of the empire state Building there were @CAPS1 oBstacles that the @CAPS2 and the @CAPS3 were faced with. One proBlem was they couldent @CAPS4 drop the mooring mast on top of the empire state Building Because it was too @CAPS5 for the frane of the Building. So Because of that proBlem The @CAPS2 and @CAPS3 had to come up with a way to modifey the frame of the Building so that the Building could put up with the added stress of the mooring mast. Another problem that they were faced with was that it was @CAPS4 too dangerous. I was deemed dangerous Because most dirigibles were filled with Hydrogen which was extremely flammable and they couldent @CAPS8 having @CAPS9 happend to the Hindenburg happen 102 floors aBove city streets that were crowded with people. So those Were @CAPS4 a few oBsticals that @CAPS2 were faced with when building the mooring mast on top of the empire state Building 3 2 3 +16609 6 The @CAPS1 says the greatest obstacle would be nature itself. The wind would blow the blimps on to the Sharp spires of other buildings. 1 1 1 +16610 6 The builders faced many problems that should have been foreseen. Perhaps the greatest reason was because @CAPS1 dirigibles used hydrogen instead of helium as their gas choice. Because hydrogen is highly flammable it would have spelled doom for New York if exploded. The weather also created a great risk. If a dirigible dock there the violent air currents would shifted constantly. The use of lead weights would put pedestrians at risk. That idea was neither safe or practical. Probably one of the most obvious risks was the law. There was a law that stated that airships can fly to low over urban areas. Because of these reasons it made making the Empire State Building a landing area unsafe. 3 3 3 +16611 6 "After finishing the @ORGANIZATION1, architects want to start mooring dirigibles right away. However, due to three potential problems the architect had never realized before, they never could moor any dirigibles. One problem was the most @CAPS1 dirigibles used hydrogen instead of helium. This was a problem because hydrogen is extremely flammable, ad after the Hindenburg @CAPS2 up in @ORGANIZATION2, architects feared a similar catastrophe could happen in @CAPS3, but many more would die. Another problem was high winds. Because it was so windy at the top of the building, it was almost impossible to hold the dirigibles steady. Also, the dirigible would have swiveled while tied to the building because there was nothing holding down the front and back. the third issue was that there was a law against flying dirigibles at the height that was necessary to moor on the Empire State Building. That's why no dirigibles ever successfully moored on the Empire State Building." 3 3 3 +16612 6 "There were many obstacles the builder of the Empire State Building faced in attempting to allow dirigibles to dock there. First off as stated in para graph @NUM1, ""A thousand-foot drigible moored at the top of the building... would add stress to the buildings frame."" This shows an obstacle because in order to enable this to happen, over @MONEY1 of funds would be needed. The funds leading to the stregthing and modification of the steel frame. Thus needing to redo the fundamental building blocks of the operation. Second the greatest concern was safety. This is brought to hand because most drigibles are very flammable. They consist of Helium, which is a extremly flammable gas. Also if the drigible were to mount to the top of the Empire State Building, the back of it would be swaying around and around. This possibly having a chance of dis-mounting and it crashing into a densly populated area of people. These are some reasons that the obstacles of attempting to allow drigibles to dock on the top of the empire state building." 3 3 3 +16613 6 "While constructing the Empire State Building, the builders were faced with many obstacles in attempting to allow dirigibles to dock there One such obstacle that the builders had overcome was the law that prevented airships (i.e. plains or dirigibles) from flying too low over urban areas. In paragraph @NUM1, we learn that ""[this law] would make it illegal for a ship to ever tie up to the building or even approach the area."" Another obstacle the building crew of the Empire State Building was faced with when constructing the mooring mast was nature itself. Because of the violent wind currents near the top of the building, the way the wind blew constantly changed, causing a great difficulty for any dirigible to connect to the mast properly. In paragraph @NUM2, we are told about how if it were possible to connect the mast to a dirigible that the back would swing. ""Dirigibles moored in open landing fields could be weighed down in the back with lead weights, but using these at the Empire State Building, where they would be dangling high above pedestrians on the Street, was neither practical or safe."" Because there were too many obstacles with not enough safe options, the mooring mast project were shut down; proving that during its construction its builders were faced with too many obstacles." 3 3 3 +16614 6 "To design a mast for the dirigibles to land was no easy matter architects could not just plop a mooring mast on top of the @ORGANIZATION1 flat roof The stress from a thousand foot dirigible would transmit weight and wind pressure all the way to the foundation. To be able to create this mast the Empire State building would have to be modified and strengthend. First, the architects ""designed a shiny glass and chrome-nickel stainless steel tower that would be illuminated from inside, with a steeped-back design that imitated the overall shapp of the building itself."" This rocket shapped mast would have four wings at its corners of aluminum and would rise to a conical roof that would house the mooring arm. For the winches and control machinery for the dirigible mooring, they would be placed in the back of the machinery. Finnally, when this was all completed the existing plans for the building were to be put in place." 1 1 1 +16615 6 "There were many obstacles which the builders of the mooring mast had to face. They thought it was going to be an easy task to accomplish as shown in paragraph eight where Al Smith was asked about the mooring mast and he responded ""[It's] on the level, all right. No kidding. We're working on the thing now."" This shows how truly sure Smith was about the goal's simplicity.Although determination was a great factor in the building of this world wide known monument, problems kept standing in the way of success. For example in paragraph @NUM1 the author describes how the Empire State building would not be able to fulfill it's purpose, even though workers should've known better. She states ""When the German dirigible Hindenburg was destroyed by fire in Lakehurst, New Jersey, on May 6, 1937, the owners of the Empire State Building realized how much worse that accident could have been if it had taken place above a densely populated area such as downtown New York."" @CAPS1 kept pooring down, one of them being nature.Finally the workers gave up after the project was postpone due to mainly safety reasons. By the late 1930's, the idea of the mooring mast had almost disappeared. All that really matters is that they tried, and all it took was just one dream." 2 2 2 +16616 6 "In the excerpt, ""The Mooring Mast"", by Marcia Amidon Lsted, the builders of the Empire State building faced a few problems in attempting to allow dirigibles to dock there. one of the first problems they faced was safety. ""Most dirigibles from outside of the United States used hydrogen rather than helium, and hydrogen is highly flammable"" (Lsted, @NUM1). The builders would have to keep this in mind. The next obstacle they faced was nature and its winds. ""The winds on top of the building were constantly shifting due to the violent air currents,"" (@NUM2). The winds would be a major problem that the builders would have to face because it is so unpredictable. Lastly, the builders had to worry about the law pertaining to airships flying too low over urban areas ""This law would make it illegal for a ship to ever tie up to the building or even approach the area,"" (@NUM3). The builders of the Empire State Building had to face the difficulties of safety, nature, and the law in attempting to allow dirigibles to dock at the Empire State Building." 4 3 4 +16617 6 "The builders of the Empire State Building faced obstacles such as safety, nature, and law in their attempt to allow dirigibles to dock there. The issue of safety became apparent because most dirigibles made outside of the @LOCATION1 were made with highly flammable hydrogen rather than helium. To risk the destruction of one atop such a bustling city would be devastating. Nature too became a problem in the futile attempt of the builders. With such ""Violent air currents"" ( @NUM1), the dirigible would swivel around even if it were tied up to the mooring mast. Finally, law was an obstacle to the builders. Existing legislation banned airships from ""flying too low over urban areas"" ( @NUM2), meaning the dirigibles would have no way of landing atop the urban building. obstacles such as safety, nature, and law hindered be attempt of allowing dirigibles to land on the Empire State Building." 3 3 3 +16618 6 "In the @CAPS1, the docking of dirigibles had many issues. One, boarding passengers would be very difficult as the dirigible will @CAPS2 from a gust of wind. Second, the gases used to make afloat are highly flammable, and explode quite easily." 1 1 1 +16619 6 "The builders of the empire state building faced many obstacles to have dirigibles dock there. First off, it was a huge safety issue; ""most dirigibles from outside the United States used hydrogen... hydrogen is highly flamible"" (paragraph @NUM1) if an accident happened (lets say to the magnitude of the Hindenburg) over New York City, thousands of people could die because of this highly flamible substance. Secondly a very large problem was to successfully use the mooring mast. ""The winds at the top of the building work constantly shifting due to air currents"" (paragraph @NUM2). If the wind was out of controll and the dirigible wasn't tied down right, the harsh winds could be dangerously dangeling over the people of New York. Amongst many other reasons and the use of common sense, it is clear that the construction of this mooring mast should never have ever been thought of as a reality." 2 2 2 +16620 6 "In The Mooring Mast by Marcia Amidon Lsted you learn about the plans for the Empire State Building but, you also learn why the Mooring Mast cannot be used for it's original purpose. The Mooring Mast was planned to be used as a docking station for dirigibles, or blimps. One reason why the Mooring Mast could not dock these is because places outside of the U.S. used hydrogen instead of helium. The excerpt states ""Most dirigibles outside of the U.S. used hydrogen rather than helium, which is highly flammable."" ( @NUM1) @CAPS1 they did not a huge fire in a highly populated area. Another reason why it would not work was violent air currents. The excerpt states ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would be wirled around the mooring mast."" ( @NUM2) @CAPS1 with that problem they would have to worry about the mast being taken out. The last reason is because of a law. The excerpt states ""an existing law against airships flying too lower over urban areas"" ( @NUM3) The building mast was to close to humans to let them dock there. @CAPS1 while the mast was a brilliant idea it could not be done now it is only a dream." 4 3 4 +16621 6 "The builders and architects of the Empire State Building faced many problems trying to dock dirigibles at the top. The first problem was that there were very strong winds near the top of the building, which made it extremely hard for a captain to control their ship. When anchored to the mast by a single tether, the dirigible would be twisted around the spire by the winds, making it nearly impossible to transfer passengers. Another important issue that builders could not overcome was the fact that the streets below the Empire State Building were densely populated. This meant that a disaster similar to the Hindenburg tragedy in New Jersey could cause many more casualties in New York City. Lastly, one of the most obvious obstacles that the builders could not get past was the existing law against airships flying over urban areas. This law made it illegal to fly a dirigible at a height that would be necessary for docking on the mast of the Empire State Building. With these obstacles in their way, the builders of the Empire State Building could most likely never accomplished their dream of docking dirigibles on the mast. " 2 3 3 +16622 6 "An obstacle the builders of the Empire State building @CAPS1 was weight. If the story it says ""A thousand foot dirigible moored at the top of the building, held by a single cable tether, would add stress to the buildings frame. The stress of the dirigibles load and the wind pressure would have to be transmitted all the way to the buildings foundation, which was nearly @NUM1 feet below."" Another obstacle was nature. The story says ""The greatest obstacle to the successful use of the mooring mast was Nature itself. The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast.""" 2 3 3 +16623 6 "The architects had to go through many obstacles such as having to rebuild the whole frame of the Empire State building. In paragraph nine it says ""The architects could not simply drop a mooring mast on top of the Empire State building's flat roof."" @CAPS1 they had to modify and strengthened the whole thing to accommodate the new situation. Another obstacle they had to face, was that hydrogen was highly flammable. When a German dirigible was destroyed by fire in Lakehurst, New Jersey, the owners of the Empire State Building realized that an accident like that could be worse in the crowded streets of New York. Another obstacle was nature itself. In paragraph @NUM1 it says ""The winds on top of the building were constantly shifting due to violent air currents."" The back of the ship would swivel around, but could be held down with lead weights, but like paragraph @NUM1 says ""using these at the Empire State Building, where they would be dangling, is neither practical nor safe."" / Time" 4 3 4 +16624 6 "The @CAPS1 of the Empire State Building faced many obstacles in attempting to allow dirigibles dock there. for example it would have been almost impossible to dock with the violent winds blowing at that height. ""The winds on top of the building were constantly shifting due to violent air currents. Even if the dirigible were tethered to the mooring mast, the back of the ship would swivel around and around the mooring mast"". It would not have been @CAPS2 to land a dirigible there because the text is saying the winds at that height were not stable and that the ship would be tossing and turning in the air. Another obstacle the @CAPS1 faced was the law of airships flying to low to the ground. ""The other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area."" That's saying that even if a dirigible could moor at the Empire State Building, It's illegal because all airships have to fly a certain height over urban area. The workers building the Empire State Building faced many obstacles in allowing dirigibles to dock there. The obstacles were just to great to overcome. Thus no dirigibles have successfully docked there, and none ever will." 3 3 3 +16625 6 "The builders of the Empire State Building were faced with many obstacles. Allowing dirigibles to dock on the mast would be too complex, which the builders did not realize at first. The most complex obstacle was how the builders were going to securely tie the blimp down without it not only spinning around, but from ripping the building out of its foundation. The constructors also had to worry about if it was safe or not and if it was permitted. Another major obstacle was that not only were the dirigibles too low to the ground to dock, but they were mostly made up of hydrogen instead of helium, which was very flammable. After all the hard work to be successful. Al Smith and his peers had to look out for the best interests of the people of New York." 2 2 2 +16626 6 "Dirigibles are large steel-frame balloons enclosed by cotton and filled with hydrogen and helium. In the early 1930's, the new idea came about that the dirigibles would dock at the top of the Empire State Building in New York. After reading The Mooring Mast by Marcia Amidon Lsted, we have learned of the obstacles the builders were faced with. The author notes, ""the greatest obstacle to the successful use of the mooring mast was nature itself. The wings on top of the building were constantly shifting due to violent air currents"". The dirigibles would constantly be moving and shifting. The author also states, ""the other practical reason why dirigibles could not moor at the Empire State Building was an existing law against airships flying too low over urban areas."" This law was set in place for safety reasons. Due to the two main obstacles; nature and law, builders, wern't able to allow dirigibles to dock at the Empire State Building." 3 2 2 +16627 6 "The builders of the Empire State building had numerous obstacles in their way if they planned on allowing dirigibles to dock there. The first and most serious problem was the safety of the passengers as well as pedestrians on the street below. Dirigibles are filled with hydrogen which is highly flammable. In 1937 in New Jersey the dirigible Hindenburg was destroyed by a fire. This catastrophe would have been worse if it were take place over the heads of people in New York city.Nature also posed a huge threat to the completion of the docking mast. Due to the air currents on the top of the building the blimp (dirigible) would constantly be shifting. The only way to control the swaying of the blimp would be to use weights to hold the blimp down, which would again put the public at risk.Along with natural hazards it would have been illegal for the blimps to dock at the Empire State building because of an existing law. The idea to allow dirigibles to dock at a mooring mast atop the Empire State Building is completely impractical." 4 3 3 +16628 6 "There were many obstacles the builders of the Empire State Building faced in attempting to allow dirigibles to dock there like nature, law, and of the sharp spire. Nature was proably the biggest problem because you can't control wind. The wind at the top of the Empire State Building were so strong cause ""... the back of the ship would swivel around and around..."" This would make it hard to land and unland the dirigibles. Law was also a problem. There was a law that prevented ""... airships flying too low over urban areas."" The spire at the top of the building was sharp enough to pop the dirigibles that flew over it. If a dirigible was to hit it it would pop the dirigible and kill many people below." 3 3 3 +16629 6 "The one obstacle the builders had when trying to build this building was not away for the dirigibels landing to be convinient for all. The dirigibels have a very fast speed of eight miles per hour, and they were as big as four blocks of New York City, paragraph @NUM1. This was a problem for the builders because the dirigibels were very big, and the building it self as well. The siz was a problem because the enormouse dirigibels woud not be landing in the right space. Having lack of time was always a problem because the building would not be completed on time. The builders always had to hold back because ""engineers consulted with experts... architects met with presidents"" paragraph @NUM2. Holding back on the making of the buiding to meet with thouse people took away time. When there is something very high, and wide in the way there will be a problem." 2 0 0 +16630 6 "Some of the problems with the constructing of docking dirigibles were that, natural causes like high winds said in 6. The dirigibles were highly flammable due to the use of hydrogen gases that made the dirigibles fly. Also another important factor was that this project was being taken place in a highly populated area, which meant harm could be done civilians if anything ever went wrong." 1 2 2 +16631 6 "The builders of the Empire State building faced some obstacles in there attempt to allow dirigibles to dock there. A problem they had was the violent winds blowing the blimp around at a high altitude, with people onboard, ""The winds on top of the building were constantly shifting,"". Another set back was it being illegal to fly an aircraft that low, it was ""illegal for ship to tie up to a building,"". Also it was dangerous for dirigibles that ran on hydrogen to dock because hydrogen is highly flammable. The Mooring Mask of the Empire State Building became nothing More than an attraction for sightseers." 2 3 3 +16632 6 "The obstacles the builders of the Empire State Building is that they Could not more at the Empire State Building was an existing law agains airships flying too low over Urban areas. This law would make it illegal for a ship to ever tie up to the building or even approach the area, although two dirigibles did attempt to reach the building before the entire idea was dropped." 2 1 2 +16633 6 "You want me to tell you what they had to go through in attempt to allow dirigibles dock there?! Well to tell you the truth they had to go thourgh a lot, like ""one obstacle the lack of a suitable landing area"", also another ""obstacle I would have to say is nature""! let me tell you why I picked these to obstacles. Keep reading! They want to dock the dirigibles at the empire state building. I say want because there plan did not work to many things was wrong. like the fact that they said ""one obstacle was the lack of a suitable landing"" they couldnt find a good landing area for the dirigibles with out something bad happening. another ""obstacle they had was nature"" I say nature because if the wind blew it can blow away some people. So those are my main obstacles that they had to go through @CAPS1 to allow the dirigibles dock there." 2 2 2 +17834 7 "Patience is when your waiting .I was patience when in line waiting for lunch .I didnt c ut any one to eat .I was standing and waiting for my turn .Patience ,some people dont have it .Lots of people just cut or yell at you because they dont have any patience. Sometimes people will push you out of their way .They only do that because they dont have patience at all. Patience is what people need .People need patience because lots o f feelings get hurt .Everyone should have patience." 8 7 15 1 2 2 3 1 2 2 2 +17836 7 "I am not a patience person, like I cant sit in a sit for more than five minutes, but there was one time I was patience and i bet very alse was to that right riding a bike where out training wheels. When I was five learned how to ride a bike I just keeped falling of at one piont my bike flip and I allmost broke my jaw but i didnt. Finally after @NUM1 weeks of onstint falling I rode for @NUM2 minutes without falling and finally learn how to riken a bike." 6 7 13 1 1 2 2 2 2 2 1 +17837 7 One day I was at basketball practice and I was running has with my team when I was getting really really thirsty do after we did are suicides (a running exercise)I asked coach if we could go get some drinks coach said after are double drible down and back exercise @CAPS1 I did the exercise and we all rushed to the drinking fountain and I was at the end of an @NUM1 girl line .I waited and waited until finally there I was faced with that drinking fountain when one girl says can I have a drink thank you and all I could do if be stunned..Thats were I heard a bright ladys lets go! I was @CAPS1 mad but I quickly took a @NUM2 second drink of water and rushed over to coach and now Im the fisst one alot and I take long drunks do my teammates call me a fish! 7 8 15 1 2 2 2 2 2 2 2 +17838 7 "I going to write about a time when I went to the @ORGANIZATION1 fair, we had fun, we saw a ride we wanted to get on, so we got in line. Suddenly, we noticed that we were at the end of the line. So my mother said. @CAPS1 get on another ride then. We already tried the other rides, my father said. So we stayed at the end of the line until it was our turn, and said that was the last ride, soon there were people behind us complaining, their younger children was getting mad, and parents was hollering. We just stood there, and kept being patient. That didnt desterb us. since we were raised to be patient, and wait our turn at things. I feel being patient is very important, because if you act up in line, you might make people think theyre holding you up, but its the line moving slow. Advice: when you are waiting at the end of the line, dont shout, scream, holler, or yell at anyone, it only creates trouble. Just dont think about all of the people ahead of you, talk to someone, just take your mind off of it for a while, then youll notice, the line is moving quicker than you expected. P.S. We enjoyed the ride." 8 9 17 2 2 2 2 2 2 2 3 +17839 7 "It can be very hard for somebody to be patient. If you are patient, then you are understanding and tolerant. You have to be patient sometimes. When you go to the dentist or doctors office, you need to be very patient. There was a girl who had to go to the dentist. She hated the dentist. It was always so boring. First, youd sit there while your parents did a whole bunch of paperwork. You have to just sit there for like @NUM1 minutes before you even go in. Then, when you finally go in, they start working on your teeth for like ten minutes, then youd sit there for another fifteen minutes. Finally, When you are done getting your teeth cleaned youd sit there for another ten minutes while your parents talk to the dentist. So, you need to be patient sometimes, even when you are just dying of boredome." 7 6 13 1 2 2 2 1 2 1 2 +17840 7 "There was a girl name @PERSON1. She loved spending time with her mom. Every weekend they would either @CAPS3 the movies, amusement or water park, or just stay home. This time was different though. @PERSON1 was even a little scared about @CAPS1 was about @CAPS3 happen. Today was a @DATE1 and @PERSON1 and her mom was watching videos of her mom when she was young. After the video, @PERSON1 and her mom looked at each other and laughed. Once they settled down, @PERSON1s mom looked sad. @CAPS1s wrong mom? @PERSON1 asked. I have @CAPS3 go. I have @CAPS3 go somewhere for work and cant take you with me, mom replied. @CAPS2 not? asked @PERSON1. I dont know, but I need you @CAPS3 wait here with your father. Ill be back soon, the mom said calmly. With that @PERSON1s mom left and drove away. @PERSON1 stood there confused and wishing her mom didnt have @CAPS3 go. Then she went @CAPS3 the phone and called her dad. An hour later, @PERSON1s dad came @CAPS3 her house. He calmed @PERSON1 down, who had been crying because she missed her mom. @PERSON1 went @CAPS3 her room and began @CAPS3 wait patiently for her mom. Weeks past and @PERSON1s mom still hasnt returned. Every night now @PERSON1 cried hoping her mom would come. During the day she would wait watching for her mom. @PERSON1 wanted her mom more than ever now. Though see never complained @CAPS3 her father and understands that her mom left for an important reason, but still she missed her mom. Two years have passed since @PERSON1s mom had left. @PERSON1 didnt cry as much but still waited. Waited for her mother @CAPS3 come back. One day @PERSON1 heard a knock on the door, she answered it and there stood her mother. They stood on the porch for a moment, then hugged each other. They both cried and her mom whispered Im sorry. @CAPS3 @PERSON1. Now @PERSON1 and her were unseperatable. They never left each others side again." 11 12 23 2 3 3 3 3 3 3 3 +17841 7 Un Patience @CAPS1. My name is @CAPS2 and I have a very hipper non patience horse named @CAPS1. @CAPS1 is a chestnut quarter horse with a white star on his forehead who is very un patient. He is always hipper and ready to go. For example when we are getting ready to go on a horse ride in our back trains he dose not stand still when I am tacking him up at the post. And when we are on the ride he always is so far up ahead that I have to stop him to wait for the group. And thats when he gets unpatient. No matter what he will not stand still and wait for the group so I have to spin him around and walk back to the group. Meany times I have tried training him to be patient but I have always failed. I guess he just always has to be doing something. But I will always love him no matter how un patience he is. 8 8 16 2 2 2 2 2 2 2 2 +17842 7 "A time when I was patient was when I preordered a videogame called @CAPS1 @CAPS2 I preordered it a month before it came out and I couldnt wait for it to come out. I mostly wanted it because @ORGANIZATION1 is the company that makes it and this is the last game @ORGANIZATION1 was making because some other company bought the @CAPS1 series from @ORGANIZATION1. When the game finally came out on @DATE1 fourteenth two thousand ten, I bought with my friends and the game is amazing. I would give it four of five stars. Im not absessed with it through. I play it only about two hours a day which is all my parensts let me play any way. Hala @CAPS2 is my very favorite game." 9 9 18 2 2 2 3 2 2 2 3 +17843 7 "One time I was patience it was when I wanted a phone I didnt get a phone I knew I was gonna get one someday .The day finally came to get my phone @DATE1 it was my @NUM1 birthday .I was opening presents and I didnt know what I was getting but the last and find big present was a cell phone .So I called my friend on it and she said whose phone are you calling from I said my .I couldnt believe I could be so patience for such a long time .I was so happy that I could be so patience for so long. I did not know someone could be so patience for so long .Once I got my phone I wasnt patience for waiting for a texted message to come back to me .After all I got patience and just waited until I got the text message back . I wish I could be patience everyday but cant do that .Im happy that I have a phone so I can call my mom after all my activitys and then I know she is on her way and I will be patience with her: could I ever be more patience . Some days I never patience with anything .one day I will teach someone to be patience to me and I will be happy to do that .But some day and every day after that I will be to patience for everybody .I wish everybody will be patience some day, Patience means you will just wait for that day or moment of live .This a time when I was patience and when I want other people to be patience .I hope someday everybody in the world will be patience with everybody. Will you please help other people to be patient and then they could teach someone new every day .I will be patience or trie to be patience and wait for another thing to happen in life .I hope you are patience at times too. Thanks for reading the time I was patience and times when I want to be patience .Hope you enjoyed his story." 8 4 12 2 2 2 2 1 1 1 1 +17844 7 "I think patience is a time when you have to be calm. It is also a time of wateing. For some people being patient is extremely hard. But for me its easy. At times I can be inpatient, but everyone can be. Being patient is kinda new racking, but I manage. A lot of times I get mad if I have to be too patient. I think @PERCENT1 of people in the world dont like to be patient. with patience comes a reward is you are really patient!" 4 6 10 0 1 1 2 1 1 2 2 +17845 7 You know that life is so much harder when you dont have the patients. If you dont then Im going to tell you why. There was a time that found out I was going to @LOCATION1 now thats the good part but when I ask how are we getting there? we had to fly and right then and there I knew I was going to have to be very patient and I thought I didnt have enough patients to fly to @LOCATION1. Although I got through it. Now the worst thing was when I got to @LOCATION1 it was very hot out. We had to stand outside to wait for the bus. It got so hot that I lost all my patients and got so angry at everyone that I thought I was going to blow up! Only because I didnt want to wait for the ride anymore. Haha I came to my sences and I start out it was why easier to wait and the bus eventaly showed up and I already felt way better. 8 8 16 2 2 2 2 2 2 2 2 +17846 7 "One nice sunny day I was traped in a doctors office with no air conditioning. this doctors office had @NUM1 chairs in the dirty waiting room. I was already cramed in the room with about @NUM2 people for @NUM3 minutes. I was trying to be patient but the patience was wearing off. Sweat dripped of of my face on to my black @PERSON1 short-@CAPS1 shirt. I was starting to get hot and mad, but I kept my patience. I know if I was going to get mad even more, it wouldnt help or make the time faster. Then all of a sudden, creeeeeck, the door opened. A tall white woman with green schrubs on said, @CAPS2." 9 10 19 2 2 3 2 2 2 3 3 +17847 7 "A time I was patient was @DATE1, when I was in line to ride the dragster in @CAPS1 point. I was super hot day, I was at @CAPS1 point with my best friend and we were geting ready to get on the dragster. The line is about an hour long and the sun is beating down on you so to me it felt like forever. Just as we were about to go on the ride they steped us because the ride wasent working right. So we had to wait another @NUM1 mins. Luckly my best firend and I had good patients unlike some of the other people who stormed out of there in the first five minutes. We waited and got on the ride and it was one of the most fun experences of my life. Im so happy we waited said @PERSON1 my best firend. Some people have patient like @PERSON1 and I, and some dont like the the people who ran of there. Im glade we waited or that would not have happened. In this case patient was a great thing for @PERSON1 and I." 9 8 17 2 2 2 3 2 2 2 2 +17849 7 "One day, my soccer team was in the chamionchip game in we facing the lions. At the start of the game I was on the bench I was the worst on my team. After the @DATE1 we were up @NUM1 but my coach still put me on the bench and I just sat there and cheered for my. The next to quarters went by and it was tie game @NUM2. Half way through the @DATE2 are star player got hurt so coach put me in. I had no due what do I was just chassing the ball. With one minute left I was standing by their goalie and one of my team mates shot the ball zinged through the air and hit me in the foot. The ball redirected into the goal my team started to cheer we were up @NUM3. After the @DATE2 minute was done and horned went off and every one cheered again and lifted me up. Thats how patience helped me." 6 8 14 1 2 2 1 2 2 2 2 +17850 7 "This is about a story I was patient I was on an @LOCATION1 @LOCATION1, so this is what happen on the @LOCATION1. I was standing in line on ordered some sausages, eggs, pancakes atia syrup, has browns and orange jucie and take my cool derille sitting a man with a steak for his head and order something and sits down, and I get mad a little the Im still patient okay but then Im really mad because geating steak head gets his before mine and walked in here first. So then I cool down because a nice cute girl walks in orders and comes and sits down where I were sitting then a old think there goding and hip, they and they order sit down. Finally, the girl and I finally get a food and show the old people hip is we challenged them to surf contest but the main in to sit and wait and be patient even through it @NUM1 in the @TIME1." 5 7 12 2 1 1 1 2 2 1 2 +17851 7 "Tick, tock, tick, tock. Being patient is hard for some people but easy for others. Im not a very patient person. Ill tell about a time when I was patient. (the only time) One time me my mom and my sister we went to the docter because my sister had a docters appointment. I asked my mom how long it was gonna be and she said about @NUM1 min. @CAPS1 I said ok. @CAPS1 we arrived and she asked if I wanted to come inside and I said no Ill wait in the car. @CAPS1 I was inside of the car waiting and I got boare and turned the music on and this was ??? about @NUM2 or @NUM3 in. About @NUM4 later I got tired of listening to music. @CAPS1 I tried to fall asleep. That didnt work @CAPS1 I went outside to stretch because my arms and legs were tight. It was @NUM5 and my mom and sister come walking. Thats a time I was patient." 8 8 16 2 2 2 2 2 2 2 2 +17852 7 "One day @CAPS1 went to school pretty earlie in the @TIME1. He went is just ?? if it were a normal day, and goes to his star class in the @NUM1 grade. He chated with his friends all star and then class was over. Then he goes to @NUM2 hour science and there is a lab with partners. @CAPS3 him and @PERSON2 decide to be partners. Half way through the lab they dont know what to do. @CAPS3 @CAPS1 goes up to the teacher and interupts her and another student. @CAPS3 the teacher says ill be with you in a moment, but he continues to bug her. @CAPS3 he got a step. Then later that day he was in @CAPS2 and was working on a work sheet but the teacher was writing with the principal. @CAPS3 he decided to wait for her to be done @CAPS3 he wouldnt get in trouble, but it was taking much longer than expected @CAPS3 he noved th next problems. then the teach comes back and he got her help. @CAPS3 in conclusion @PERSON1 learned two lesson that day. One that you can get in trouble for being impatient and get a step. Two that if you are pollite and courtaeous in class and be patiet you can get the reward of getting a letter citizenship grade. Wich @PERSON1 did that day." 9 8 17 2 3 2 2 2 2 2 2 +17853 7 I recall once a famous madican named @PERSON1 was prefering a stunt that took enourmous amounts of pateints and courage it was named @CAPS1 In Time. The madichian had to stay in a block of ice for @NUM1 days or @NUM2 hours! The great madichian had only a sweater. He had the consiled ice open to public as the magnificent madichian said I could bearly hear anything. He waited hours on and like falling down on abyiss or bottomless pit. Until the final seconds ended. The madichian as finally free. And alive 8 8 16 2 2 2 2 2 2 2 2 +17854 7 "One day, a few years ago, I woke up and my mom said we were going to my grandmas house. So started to get ready. After I was done getting dressed I looked on. My dresser and grabbed my @MONEY2 @MONEY3 that I was saving up to buy something just incase we went to the store When we got there I saw my cousins dad @CAPS1 walking a puppy. I walked up to him and asked about the dog, he said it was his brothers dog and he was selling it. My mom said I could get a dog so I asked him how much did he coast. @CAPS1 said @MONEY1. I got really excited because I had @MONEY2 and could get @MONEY3 from my granding. So I called my mom but she was busy somewhere else but she told me that she wanted to see the dog before I buy him. So @CAPS1 waited their for hours but my mom took forever. Then finally I got impatience and bought him. But my wow wasnt mad because she ended up liking him" 10 11 21 2 3 2 3 3 3 2 3 +17856 7 "The time that I was patient was not long ago. It was a day of boredom and waiting. I went to a candy store to buy some candy, I wanted a lorry pop. The man told me to hold on when he was getting my candy. It was @NUM1 minutes until he brought me my candy. I was patient enough to wait for my candy. There was another day like that. It was at the cernical, I was at the end of the line waiting to get on a ride. There was a man who was arguing at the life gaurd instructer for not letting him on the ride. He was arguing for an half an hour. S was patient waiting for him to stop. I did not complane or argue about the man who was wasting our time." 6 8 14 1 1 2 2 1 2 2 3 +17857 7 One day I was patient was when I tried out for volleyball. I had to be patient because the two coaches had to pick who was going to be on a team and if so which team. My friends and I waited patiently in the gum as the coaches told kids privately in the hallway. They had to do it privately because there are two teams the A team and the @CAPS1 team. Finally there was about @NUM1 other girls still waiting I chose to go last because I thought I could handle the challenge of patience but I was wrong. The thrill of finding out was @CAPS2! At last it was my turn I walked out into the hall and found out I was on the @CAPS1 team. Although it wasnt the A team I was still happy I didnt get out. That was a day I had to be very patient. 9 9 18 2 2 2 3 2 2 2 3 +17858 7 "A time that I was patient was last year at cheer competition. In the beginning of the day I was patient getting in line to get ready to perform. Once we were ready we were waiting to go to perform. After, we perfomed we went to watch the rest of the teams. The other teams were really good. Then are team went and had lunch while some of the teams were still performing. We had to wait til all the teams were done. Once the teams were done they called all the squads to the mat it was award time. All the teams sat down on the mat. My team members were waiting patiently to see if we worn in cheer or in dance. We waited and waited and waited till finally he called are name. The junior varsity cheer leader! We took first in dance and fourth in cheer. That day was a good day for me and I was very patient and being patient can turn out right or not the way you wanted it to be. You never now till it happens. That is a time when I was patient at cheer competition." 12 12 24 3 3 3 3 3 3 3 3 +17859 7 "Im writing about the time I was patient at a @ORGANIZATION1 game. It was my birthday and my dad took me, to go to watch the @LOCATION1 vs. the @LOCATION2 huggets in @LOCATION1. We were in a huge traffic jam. The jam was caused by a wreck a couple miles ahead and everyone was trying to get to the game before it started. I was patient with the whole trip because the trip was about a @NUM1 hours long. My dad, uncle, aunt and me were all kind of frustrated that it was taking so long, but I kept my cool and was able to make it through the @NUM1 hour drive. When we got to the arena the @LOCATION1 and @CAPS1 were warming up and the game was about to begin. At the end of the day the @LOCATION1 ended up winning. That was the most best birthday ive ever had. Now I dont think I could ever keep my cool like that again because I have a very short fuse now that in order. I will never forget that birthday again." 9 8 17 2 2 2 3 2 2 2 2 +17860 7 Being patient? Being patient is very hard for me because I am bipolar and I have savere anger issues. My experience with being patient is when I lived with my foster family!!! They had grandkids that really annoyed me!!! My foster family had a different religion than me I am atheist. They are @CAPS1 and they would constantly tell me I am wrong!!! It made me very upset but I didnt say nothing because I was being patient. And I hate it. With my anger problems im very surprised I didnt go off on them? But yes patience does take practice lots and lots of practice. Because not everyone in this world is patient!!! Tolerance twords children I dont like kids to much but where I wed to live there were tons of little kids that were the grand kids of my foster family and I sued those kids are annoying but I had to tolerate them. Kids are very hard to tolerate and so are guardian parents they are the worst they tell you what to do and they aint even youre parents but I tolerated it. 8 8 16 2 2 2 2 2 2 2 2 +17861 7 One when I was patient was when we were going of north. We had to pack but I was already done because I had packed the work before my family was packing still & I went to sit in the car because I was already ready I had nothing else to do when I went back inside the house they were almost done packing so I went to the bathroom when I got out they were finished packing. When we got going I had to wait for over @NUM1 hours to get where we were going but when we got there we had fun. The reason I used this as my example is because it took a lot of patience to get to mackinoc city from nbly. That day I learned a lot on how it is important to be patient. 8 8 16 2 2 2 2 2 2 2 2 +17862 7 Patients is verey important. But I m not verey good with my patients. And when I am and I wait my turn I end up forgetting what I going to say. I guess I m not verey patient because my family is not verey patient. My family is not verey patient because we just want to say what were gona say before we forget it. Are family it also verey forgetful. That is probably another reason why we arnt patient. Patients is im portant because it helps you be more calm and it helps you wait turn. Thats all I know about patients. 5 4 9 1 1 1 2 1 1 1 1 +17863 7 "Patience is when you can take your time at something. When your able to wait, not in a hurry pushing shuvinig an rushing like some thing bad happen. Being patient also means that you are understanding when it come to tolerents and it when you are calm, cool, peace an love!!!" 3 3 6 0 1 1 1 0 1 1 1 +17864 7 When I was patient. Was when I go down the river with my dad and my two sisters (@CAPS1 @MONEY1).The only way I'm patient is when my dad says we are going from north to @LOCATION1. So I have no chose to be patient because it is a two houre trip. But there is a train track brige that my dad least use @CAPS2 off of and tack a brake and eat some lunch and the brige is about one houre ride down the river if you realy all the way but whe just me and my dad go we just slot the hole way. 6 4 10 2 2 1 1 1 1 1 1 +17865 7 "Patience? I am not a patient type of person. I am a @PERSON1 @CAPS1. He played in a @CAPS11 called @CAPS2 which l really wanted to @CAPS10. Which came out @DATE1. That l havent even seen yet until One day l was sitting in my porch where l asked my mom to @CAPS19 to @CAPS9 and @CAPS10 @CAPS2 that @DATE2 when she said ""wlc"" l was really upset because l wanted to @CAPS10 it really really bad. I was being very patient at the time. I had called my @CAPS4's, @CAPS5's, sister's and brother's to fave me. @CAPS14 they said they were busy so l cried myself to sleep. The next @NUM1 days my mom and dad was talking about going to the movies and out to dinner. I walked in screaming and yelling ""@CAPS6 ARE @CAPS7 @CAPS8 @CAPS9 AND @CAPS10 A @CAPS11 AND @CAPS12 @CAPS13 @CAPS14 @CAPS7 @CAPS16'@CAPS17 @CAPS9 @CAPS19 @CAPS7 OWN @CAPS21"" @CAPS22 I left out the room. The very next day my brother and his girlfriend went to @CAPS9 @CAPS10 it knowing l wanted to @CAPS9. They came home reasing me saying @CAPS6 good the @CAPS11 was. So that night l went down stairs to demand to @CAPS9 @CAPS10 ""@CAPS2"" saying "" I am being very patient with you all about taking me to @CAPS10 @CAPS2 @CAPS14 you all are pushing my buttons so l demand to @CAPS9 tomarrow"" @CAPS22 I waited @NUM2 second @CAPS22 she said that l could @CAPS9 this @DATE2. That was the very @NUM3 time that l was patient, and I'm proud of myself, I @CAPS16'@CAPS17 wait to @CAPS10 my @CAPS25 @PERSON1 @CAPS26""" 9 8 17 2 3 2 2 2 2 2 2 +17867 7 "I am not a patient person at all. But sometimes I have to be like my birthday for instance, I would love it if my birthday came at least every month. But of course, I only have @NUM1 birthday a year, so I have to wait. I would like to be a patient person. Its just not in the cards for me. My father on the other hand is more patient than anyone. I know he will tell me to clean the car @DATE1 I told him I didnt do it yet so he says he will give me more time. I couldnt be that patient with my kids. I would tell them to clean it now or they would be grounded. I wouldnt force them to or anything but Im not gonna wait a whole month before I get my car cleaned! I guess I could try to be as patient with my father but that would be really hard. Although if Im patient, Im sure I will be able to do it!" 8 8 16 2 2 2 2 2 2 2 2 +17868 7 "Patience is when you are waiting for something to happen and you experience difficulties but you do not complain. My friend @PERSON2 is a patient person. Her and her brother are both very patient. Their dad has been gone for most of their lives fighting for our country. This is the story of the time @PERSON2 and her brother @PERSON1 were patient. When @PERSON1 was born his dad was @NUM1 years old. @PERSON1 dad had already applied fro the army. His dad has been their most of his life. Two years later @CAPS1 sister, my best friend was born. Their dad was with them til @CAPS2 exie was about @NUM2 I believe, but he left that year. @PERSON1 new why his dad was gone, but @PERSON2 is about a year behind because she has really bad A.D.H.D. so doesnt know why she didnt see or talk to her dad for about three years. When she turned about six years old she knew her dad was gone and that was the time @PERSON1 became to be in the in the army and also it was the time their dad was in the leg by a machete. When their came back for about a year, they spent a lot of time with him, and @PERSON2 is very fragile and he would try play with her and tickle her and it hurt @PERSON2 and she would scream @CAPS3! @CAPS3! but it didnt work he would just keep going and acting like he didnt hear her. @PERSON1 isnt fragile at all, he loves his dad and so does she but she doesnt like him as a person. She likes my dad more than hers because she sees him more and she thinks hes nicer. In conclusion I think @PERSON2 and @PERSON1 are very patient because they dont know if theyll ever see him again after he gets on that plane, and Ive asked their mom and she says they never complain about missing their dad." 8 7 15 2 2 2 2 2 1 2 2 +17869 7 Patience is an important thing. Patience is when you are understanding and tolerant. I have been patient many times. For instance when my mom uses the phone late till she gets of to talk to her. Before events like plays or movies you have to be patient until the movie are play begins. I am most patient during tests. Like this one the mean patience is very important. If you dont have patience to some people that is anrcoying. If i didnt have patience I would be a completely???person people would mind me very amount and every they would @CAPS1 get along with me so inside of bothering someone @CAPS2-stop be patient. 6 5 11 1 1 2 2 0 1 2 2 +17870 7 "Long ago in the land of @LOCATION1 their was a young boy named @CAPS1.@CAPS1 wanted to become a ninja like the rest of the older boys but he was to young, he was only six the years old.One day @CAPS1 came running home,he wasnt just running he was fliping, twirling @CAPS1 was acting like fire work, @CAPS1 came bursting threw the door, and said mama mama im @CAPS2 old enough to be a ninga said @CAPS1, and kins mom said well, sorry you cant ninja training isnt till another six yearssaid kins mother, why now when I @CAPS2 turn twelve. @CAPS1 replied well the sensai in still on his training, so youll have to be patient so @CAPS1 waited six long years and @CAPS2 became a ninja" 12 7 19 3 3 3 3 1 2 2 2 +17871 7 "One in a land called @CAPS1 bokane there was a young named @PERSON2. In the land of @CAPS2, all the people lived off the land. They believed that everything had a spirit, and when you died the spirit of judging decides what you will be in the next life. To the people of @CAPS2 honor was everythbing, and no person valued @CAPS6 more than the hunter @PERSON2. One day @PERSON2 and his friend @PERSON1 went into the sacred forest to hunt danes, a deer-like animal. As they approached the hunting grounds, both men nocked their bows, and shimied up the trunk of an ancient oak. Both @PERSON2 and @PERSON1 waited for several hours before seeing a dane , and when they did, @PERSON1 had no arrow ready,@CAPS4 of this @PERSON2 got to kill @CAPS6. The dane looked at @PERSON2. @CAPS6 stared at him. Unblinking pupils dialated. Snorting blue mist from its nose. Yet @PERSON2 did not take the shot. Instead the the dane fled into the treeline. @CAPS5 did you not take the shot? whispered @PERSON1. @CAPS6 was to far away my friend. I was not sure one arrow would kill @CAPS6 wiithout pain. @PERSON2 replied simply.The next day the pain returned to the woods and again a dane appeared. This time though @PERSON1 had an arrow ready,but @PERSON2 had rites to this dane as @CAPS6 was the same one from the day before. The danes rear was toward the pair, and again @CAPS6 was stai ring at @PERSON2. @PERSON2 simply steped back. Soon @PERSON1 took the shot since @PERSON2 would not. The arrow flew high and impaled the obsidian tip into an ash tree. @CAPS5 did you not take the shot? whispered @PERSON1. @CAPS6 is not honorable to take the life of a beast with @CAPS6s back turned. @PERSON2 whispered back. On the third day the same dane stalked through the hunting grove of @PERSON2 and @LOCATION1. The dane walks through the grove from the left this time giving @PERSON2 a clear shot at its right flank.This shot @PERSON2 takes. The arrow flies tree and pierces the animals lungs and heart. @CAPS9 the spirit judge @CAPS10 will be pleased. @PERSON2 states as he corries his kill from the woods. In the end , patience rewards better than impatience. No matter the circumstances." 12 12 24 3 3 3 3 3 3 3 3 +17872 7 "One time when I was patient was when me and my family, went on a fishing trip to @LOCATION1, @CAPS1. Once we got on the boat it took @NUM1 minutes to go through the river. Then at @NUM2 we just waited, trolling through the water. Rocking side to side like a baby in its crib. Setting up all the poles and tures. Then around @NUM3 we got our first hit. My dad rushed over to get the pole and started reaching as fast as he could. Eventually he got it in it was a, @ORGANIZATION1 at @MONEY1. Then around @NUM4, another pole got a hit I rushed over grabbed the pole and started realing it in. With some help my fish turned out to be a king @ORGANIZATION1 that came in at @NUM5. and @NUM6 inches tall. That is why it always helps to be patient. You never know whats going to happen if you are patient." 10 8 18 2 2 3 3 2 2 2 2 +17873 7 "A long time ago me and my family were going to a cottage we owned. It was about a four hour drive. It is the funniest place to go to. I was so happy I couldnt wait until we got there. I new I had to be patient. But I wanted to get there so bad. But if I would complain a lot I knew I would get in trouble. I know that because I had to learn the way. About a couple weeks before that we had to visit my grandma, she lived about two hours away. I kept complaining that it was taking to long. Then when we got home later on that hight I got my phone taken away for a week, so after that I knew not to complain ever again about something taking to long. So on our way to my grandmas cottage I didnt complain. Not complaining is smart to do. If you are unpatient dont go on long trips. Its good to be patient since I was patient the whole ride to my grandmas my mom was happy with me. If you are patient people will know that you are a very tolerant person." 9 7 16 2 2 2 3 1 1 2 3 +17874 7 "One time I went in the @CAPS1 and I had to sit in the visiting room/ area for about @NUM1 min- @NUM2 mins. I really didnt care, because I had to go to school after I was done you could tell any me in was not very happy because your only sapose to be waiting for @NUM3 minutes. I finally got in and went to sit in the chair and they took my rubber bands off and I had to sit there and wait for about @NUM4 minutes. I was still being patient, because I didnt want to go to school. I dont like coming in the middle of class, because everybody stares at you. The doctor finaly came to check on me then I got different color rubber bands on. Also the doctor came to see me and see if my bracese were all right. I finaly got out of the @CAPS1 oficce and it was about @NUM5 so I got to go home and I was happy." 11 9 20 3 3 2 3 2 2 2 3 +17875 7 Their was a time when I was patient when I went to the barber shop and my family and I was going on a trip and I had to get my haircut the day before we left. I went to the barber shop was packed so the guy that cut my hair told me I was next in the chair. So then more and more people started coming in and he let those people jump in front of me so I just sat there and waitted. After those people were done he never call me up so he got on his phone and went outside. Then he told me wait until he came out the restroom then five more people came in so thats when my mom called my phone and asked me was I done because I been up their from @NUM1 to @NUM2 and she said go to some one else chair because was was about to go somewhere. I still needed to pick my stuff will be leaving at @NUM3 a.m the next morning. 7 5 12 2 2 2 1 1 1 1 2 +17876 7 "One @DATE1 week a couple of years ago my grandparents were over. We went to my @ORGANIZATION1s sisters house and my @ORGANIZATION1 and aunt (my @ORGANIZATION1s sister) were going to teach me hoe to tie my shoes because I was going into kindergarten and the teacher wouldnt do it for you. They said if I learned to tie my shoes I would get to pick something out at the dollar store so that got me all excited! When we got their after I had lunch they began teaching me. The tirck they taught me went like this: after you have the first crossover step you make the bop(tree) and you put the other string around it (the bunny loving around the tree. @CAPS1 you put it through (the bunny darling in its hole.) @CAPS1 youre bond. After many tries was starting to get the hang of it. Later we went back to my house and my @ORGANIZATION1 kept helping me. Finally one afternoon I got it, my @ORGANIZATION1 was happy and she kept telling me good job. Later we went to the store and picked something out! My @ORGANIZATION1 had to be patient with me. She wasnt getting all mad when I kept messing up she just kept being encouraging and patient. My @ORGANIZATION1 was patient and it helped me learn faster." 8 11 19 2 2 2 2 3 3 2 3 +17878 7 "Patience. Being patient means that you needs to make and dor one' thing constantly to make one????understand. That is patience. My mom is patient. When I dart understand a problem, she will explain @CAPS1 to me, never in rush. She don't yell a t me when I don't understand, unlike my dad, who is very impatient. He would yell, and possiblely cursed at me in chinease. That happens nearly every time I don't understand something. But my mom will contune explain to me until I understand what @CAPS1 means. Some people @MONTH1 be impatient because of triats or because that he or she has high blood pressure. Patience is something my people have, but @CAPS1 seems like even move people lacks @CAPS1." 4 6 10 0 1 1 2 0 2 2 2 +17879 7 "I am patient every year @CAPS1 one specil day to come. My birthday ??? ??? @NUM1 was a specil day @CAPS1 my mom and dad, @NUM2 boy my mom ever had @NUM3 boy my dad had. I am still wating @CAPS1 my brithday to come again." 4 3 7 1 1 1 1 0 1 1 1 +17880 7 "Swimming is a lot of fun. I enjoy feeling the cool water all around me. Patience is an important part of the swimming you have to be patient when waiting to start practice, stretching, waiting for instruction when learning a new stroke learning a new way to turn at the wall, ect. On the first day of swim team this year the coaches went through safety rules, regulations, and what we were going to do this year. For all the people who knew this stuff already, like me it wasn't very easy to be patient. But I personally think the entire team did a good job listening. Patience is important." 8 8 16 2 2 2 2 2 2 2 2 +17881 7 Patience what is it really? Do any of us have it? I think if we think about it we could all be patient. One time when I was in @LOCATION1 we went to @ORGANIZATION1 and we rod no wait for any of the rides. The next time we went there we had to be patient because the lines were really long. I could wait but it seemed like a lot of the little kids had a hard time standing still. Another example about patences is when the miners got stated in the mine in @LOCATION2 for @NUM1 days they had to be patient and wait for someone to rescue them. They also had to be patient when the were coming up from the mine in that little elevator thingy magig. One last example on patence is when you are walking in a group with other people you have to be patient and listen to there ideas and let them do some of the work. These I think are just some examples of why you have to be patient or when you have to be patient. 6 6 12 1 1 2 2 1 1 2 2 +17882 7 "d time I was patient was when we where going to disocy w orkerd for the first time and l was very excited ! We only bad one week left to wait to go .But I couldnt wait that long l thought l waited long enough to, and I wanted to go at moment. Even thought I had to wait still bad a fon time a disrey word I juss had to be patient!" 6 6 12 1 1 2 2 1 2 1 2 +17883 7 "I will be writing about patience in my own mix up way even thow you are adults. Once their was a littel silck warm getting ready to change in to a butter fly month. But this silck worm had a problem he was still to skiny to change he had to be nice & fat like a fat pratle stick cut in half. He crold going bush to bush eating any green leave he could find. But heres where a nether problem kicked in to please. It was becoming winter cut side, so every leave he found was brown & nasty. In the grass was changing to. But he wanted to change in to a moath so bad that he had chose but to eat the die leave & grass. In he was very patient about it to. But then he got trained at eating die leaves & grass so he grow more & more unpatient because he wanted to change so bad that he explaed. But he wack up in seen that he was in a white silck wrapping so he repped out of it. In seen he was a moath after all but then he remeinder he was eating nice green leave together. In wrapped his ??? up in want to sleep. And thats how he had that strange dream." 8 12 20 2 2 2 2 3 3 3 3 +17884 7 "I have lived in a lot of different. Places through out my life. They are @ORGANIZATION1, @PERSON1, @CAPS1, @LOCATION2, @LOCATION1 and @CAPS2. That's @CAPS3 different place. @CAPS6 was and still is land to about to @CAPS6 @CAPS4 somewhere along that long road in @LOCATION2 my parents got devased. My dad moved to @CAPS5 and eventually @PERSON2. We moved to @LOCATION1 with my mom (my sister and me). @CAPS6 was fun there because @CAPS6 hadn't seen my cousin, my aunt, my uncle, and my grandma for about six years. @CAPS4 I hadn't seen my dad in almost @NUM1 months. My grandma says to not to moving and till see him soon. By soon @CAPS6 didn't think like meant @NUM2 months. In those @NUM2 months we wanted a house neat to a patch of works and a fresh water @DATE1. My mom even got a boyfriend that she later broke up with. Then later she started and still is dating the guy we are renting awe house from. When my dad called and said that he was coming, @CAPS6 made me. So happy. @CAPS6 @CAPS7 didn't that @CAPS6 could make @CAPS6 @NUM4 months without seeing my dad. @CAPS4 @CAPS6 did @CAPS6. Now that he's settled in a see him once a match for one weekend. With better than @NUM4 months or not at all." 12 12 24 3 3 3 3 3 3 3 3 +17885 7 "I was patient on the trip to @LOCATION1 it took two days to get down there I got hungery and had to go to the bathroom when ever I was hungery I had to what until next stop when we got gas so when it was on full I had to be patient with out complaining. So, I had to be patient until the gas tank was empty thats when we got gas and I could eat something or I had to be patient until there was a @CAPS1 on the right hand or a test area because the have a vending machine there and bathrooms there too. On the right hand side because we can get off on get back on the high way. Thats when I had to be patient." 4 5 9 1 1 1 1 2 2 1 0 +17886 7 When I was patient. I was patient once or twice. One time was when I had to use the phone but my mom was on it. So I waited an hour and a half to use the phone. Another time was when I wanted to go to @ORGANIZATION1 to get some pop. So I was patient while my mom got everybody ready to go to @ORGANIZATION1. 4 5 9 1 1 1 1 1 1 1 2 +17887 7 "It was my first camping trip! Well, we went camping when I was one but I dont remenber a lot. I was super excited! So, Im sorry if I couldnt help but wonder @CAPS1 the ? are we going! My patience was not very good. While I was waiting for my dad to hook the camper up to his truck I sat there very bored. I kept saying when are you going to be done? Or,when are we leaving? Everytime I got, just be patient hunny. So, I tried it wasnt really working.We finally left, it was an hour drive and when your seven thats a very long time. I had nothing to do, I was bored out of my mind! So, I said daddy when are we gonna be there? I got later, just be patient. So I followed demands and went along with his idea. Once we got there the first thing I wanted to do was swim. So as my mom was getting her swimsut on. I was so impatient I looked like I had ants in my pots. I was going to go knock of the bathroom door but, I didnt I took what I had learnt earier and did it. I sat down and patiently waited for my mom. So throughout this I learned a big lesson on patience. If you are patient things will happen much faster. I still use this lesson today. But every one in a while everyone is a little impatient." 10 10 20 3 3 2 2 3 3 2 2 +17888 7 A time of when I was patient was when me & my siblings were waiting to see if they were going to alow us to get our first puppy. We waited & waited for about an hour while my parent were discussing if we should or shouldnt. When finally they called us down to the basement. At first they said no & we were devastated. My mom really wanted the puppy but it was my dads decision. My sister then made a face my dad couldnt resist. So he then said yes. I then had to be patient. We were going out of town in two days so we couldnt get him the next day. The next day came & my dad was at work. So my mom decided to surprise my dad by bring the puppy home today (@CAPS1). We went & got him from the store (shaggy @CAPS2) because my aunt who lived in a different state gave us permission that we could bring @CAPS1 down with us to her house. He was surprised and over joyed to see us playing with @CAPS1 outside. we all fell love with @CAPS1 & he is all of ours new snuggle buddy! 8 8 16 2 2 2 2 2 2 2 2 +17889 7 "You have to be paceint when you are cooking some cookies. It takes a long time to cook cookies. You have to be pacient when you are waiting to play a game. And you have to be pacint in the watting room until they call your name. You have to be pacint when you get out in a game you have to be pacint to get @CAPS1 in. When you get a home run you have to be pacint when they try to get the ball. For exaple the game of the sorry you have to be pacint to get the card @NUM1, @NUM2 if you get a one then you can get out of the house. if you get a to then you get out and get anouther turn." 4 4 8 0 1 1 2 0 1 1 2 +17890 7 "My sister is very patient unlik my brothers and me. Well my sibling and me had are proggress reports coming and I was so excited to see what I got, and my brothers were anxious and we work always both a mom saying when are they coming did you them. But my sister was always calm and patient. Then the day they arrived we then got nervous except @PERSON1. The reason why she is patient is because she trys to keep off her mind by sleeping or reading. But back to report cards we opened them and then everyone was happy even @CAPS1 because we got good grades. Then after that my brothers and me learned from my sister and now we all have patience." 7 8 15 2 2 1 2 2 2 2 2 +17891 7 "It had been about one??? after I got my ipod touch and I really wanted to get this certain??? no it was a movie. The movie was I @CAPS1 @CAPS2. I had already seen it once from my cousins ipod but it was so cool, I had to watch it again. It had so much action in it. And zombies??? attack. Multiple words @CAPS3" 12 8 20 3 3 3 3 2 2 2 2 +17892 7 "I know I can I said to myself as I was getting ready to do a back walkover for the first time by myself. I bent backwards tried kicking over and feel! Errg! I stood back up and asked @PERSON1 my coach, @CAPS1 my shoulders right? @CAPS2 @CAPS1 your shoulder the kick over. @CAPS3 got it I said. As I bent backwards again I slowly raised my left leg to kick over, then I pushed my shoulders forward and I did it! I finally did it by myself! Later that night I showed my mom I could do it. So I did the same exact thing I did at practice. I did it again! But this time at home. The look on my mom face could never be replaced @CAPS4 was so proud of me. Then I @CAPS4 ran over and gave me a high five, then a big bear hug! So I said thank you for being so patient. @CAPS4 said @CAPS5 for you baby." 9 8 17 2 3 2 2 2 2 2 2 +17893 7 "@NUM1 years ago on my birthday the only thing I wanted was an I-pad touch. Well everybody got to the party we ate cake and ice cream then I opend presants. I got @NUM2 but none was the @CAPS1 toach. I was sad then I opend birthday cards and I got @MONEY1 I told mom since I didn’t get the @CAPS1 I can go buy it. But I had too wait till everybody was gone to go get it. and @NUM3 hours of being patient I finally went and got it." 8 10 18 2 2 2 2 3 3 2 2 +17894 7 A time I was patient is when my little brother kept messing with me. He kept doing dump stuff like pulling the curtins down or playing with the stove. I wanted to hit him. I didnt hit him because he was just being bad. 7 6 13 2 2 1 2 1 1 2 2 +17896 7 "I have been patient lots of time at the @ORGANIZATION1. @CAPS3 @CAPS1, @CAPS3 sister, @CAPS3 brother, and @CAPS3 mom and dad we all had to wait on the @ORGANIZATION1 to get all of the shots ready for @CAPS3 brethe, sister, and me. @CAPS4 took forever at about two hours for the @ORGANIZATION1 to get the shots ready to be used end paragraph start @CAPS2. One time me and @CAPS3 dad had to wait an hour to two hours that way I could sign up for football. We had to wait to weigh get the @PERSON3 size helmet and pats, we also had to wait for @CAPS3 pad punts and @CAPS3 mouth gairfi @CAPS3 dad and I one time had to wait a long time in duannms because @CAPS3 mom bought @CAPS3 dad a @NUM1 gun. @CAPS3 dad had to set the gun put in his name end paragraph start @NUM2. For basket ball sign up when I lived in @CAPS3 pleasant @CAPS4 took a long time to sign up for basket ball because we had to get @CAPS3 number put on the @PERSON3 size of shirt for me and @CAPS3 last name I also had to get basket ball shorts @CAPS3 size. When I player soccer for the @PERSON4 soccer team. @CAPS4 took one-hour because there was so many kinds that wanted to play soccer like @CAPS5, @PERSON1, @PERSON2, @CAPS6 and me. When @CAPS3 mom took me to the sign ups year @CAPS4 took almost three hours @CAPS7 to sign up and set pictures taken end paragraph @NUM3. Every school day @CAPS3 friends and I wait like twenty @NUM4 thirty mines @CAPS7 to get a lunch or a kecreoml soriss roles ,zebra cars ,or gaanola bars. @CAPS4 takes alons time before we can @NUM5 out site to play football, soccer, volleyball, and kick ball. The end" 6 6 12 1 1 2 2 1 1 2 2 +17897 7 "I was patient when my mom was giving birth to my baby brother. We had to sit in the waiting room. My sister and I for @NUM1 hours I slept @NUM2 times and a lot because my dad was hungry so he got @CAPS1 food also.The first hour I was excited and couldnt wait. The second hour I was coloring with the crayons and paper the nurse brought to @CAPS1.The third hour I watched tv. The fourth hour I slept till about @TIME1 thats what my sister said. My dad came out with plastic looking dress on with the matching head/shower cover and slippers, and he said the next time he comes out my sister and I were gonna be sister to a baby boy . @CAPS1 and sister were so happy. So an hour later my dad came out and said do you want to see @PERSON1 , @CAPS1 and my sister screamed yes When we seen him we were so happy to think he was all ours ." 10 10 20 2 2 3 3 3 2 2 3 +17898 7 "If you could ask for one thing, would you ask for patients or motivation? In this situation I would ask for patients. I remember when I was about four or five years old. My two sister and I boreded @CAPS1 to florda. It seemed like we were sitting on the @CAPS1 for hours befor it actually took off. After about ten minutes, I asked if we would be there soon. My sister said no, and that we were only up in the air for about ten minutes. I watched all at the people just sitting there some were on laptops and listening to @CAPS2 players. I looked up at my sister and wondered how she could be so patient. After I asked if we were almost there for the second time, my sister did not answer me. I just sat there doing nothing. I had nothing to entertain myself with. I did not say a word for two hours then I eventually fell asleep. If you could ask for one thing, would you ask for patients or motivation? I am still not very patient, but I am more patient than I was back then." 8 8 16 2 2 2 2 2 2 2 2 +17899 7 "@CAPS1! Look out! @CAPS2 squealed. The sound of crunching metal was deaffening. There was no way out. My eyes seemed sealed shut, but they were as wide as could be. T he eery silence frightened me. I felt arms grab me, pulling me to @CAPS9 they concidered safety. In no way, was this to be concidered safety, for this was the beginning of one living-nightmare. The living nightmare of my life. Heres a picture of @CAPS9 I saw: @CAPS3 cars, twisted, tangled and smushed so close together, they seemed as if they were one object. Lying beside me was a small boy. That boy was my brother, @ORGANIZATION1. His chest expands slowly, but as it does, excruciating sounds radiate from him. Blood triddes out from his many cuts. Its unbearable to watch. Ambulences sirens wail as they approach. My father I have yet to see. And thats @CAPS9 scares me most. II still have nightmares of that night. The night everything changed. Not only had I lost my father and brother, but in someways, Id lost my mother as @CAPS6. @CAPS5d never understand the pain of watching your little brother die, all because of something you desired. If I hadnt made my father turn around to get my forgotten notebook, Id still have a @CAPS1 and little @ORGANIZATION1. Ever since the funeral, I could feel my mother and I pulling apart. Nothing with us has been the same since. We fight constently, never listening to @CAPS9 the other has to say. Maybe its just the life of a typical teen and her @CAPS8. I wouldnt know because in no way we we typical. When we arent fighting about who- knows- @CAPS9, we just keep our distance. Sometimes, though, the silence is scarier, more heart pounding, than the shouting. Silence is just so freaking loud! My mother is beginning to attempt the seemingly impossible. @CAPS5 begins to try and understand my strange ways. @CAPS4, @CAPS5 starts, I know I havent been patient with you lately, and for that Im sorry. I will try to be, starting now. I only ask you of one thing. I give her a questioning, gaze, so @CAPS5 continues, I would like you to tell me why you blame yourself? @CAPS5 didnt have to explain any farther. @CAPS6, I made @CAPS1 turn around, my voice caught in my throat, just to get my stupid notebook. A single tear weaved its way down my face. @CAPS7, hunny! my mother teared up as @CAPS6. That doesnt make it your fault! You had no idea it would end that way! I knew my patience had been worn through for a long time, but I refused to snap at my mother now. @CAPS5 was only trying to help. I fought my annoyed tone, which was battling its way out. But I was to win that fight. @CAPS8, I said, regaining composure, thats how I feel about the issue. I wish I could just take your word for it, and maybe overtime I will, but right now, I just need my @CAPS8. @CAPS9 shocked me most was the smile that formed on my mothers lips. I will wait then. And then @CAPS5 hugged me. @CAPS5 hugged me as @CAPS5 had when I was four and broke my leg. Tight and unhesitantly. I could feel the beginning of a new found relationship with my mother. Maybe not as strong as it had been, but definately there. With patience and time, it has bloomed into a healthy relationship, in which we both can enjoy and respect." 12 12 24 3 3 3 3 3 3 3 3 +17900 7 "There was one time I was patient when my little brothers play station wasnt working so it took a while to get use to it. It was an @TIME1 and my little brother had jus finished eating and he wanted to play his @CAPS1 but he was having a hard time turning it on but the problem was that some of his games were scratched up. But the next day we bought him a lot of other games that were brand new. So as he tried the games he still couldn`t do it. So than he asked me if I can help him so I helped him but it still didn`t work until I cleared up the play station than we had to wait patiently and than finaly at??? but my little brother and I say work, work, work, work until it went on. Then this day we still say that for the @CAPS1 can work." 8 8 16 2 2 2 2 2 2 2 2 +17901 7 "Patience. I was patience when I had to baby sit. I rock him and play with him. I fed him, and walk him. He fell to sleep. My mom still is not home from work. I am going to be late to the movise with my cuzins. I play the game for @CAPS1. I look out the window walk out side and sat on the steps.mom still not there. My cuzins were out side. Ask that to stay a little on gen. now hear came mom .I can go now." 6 4 10 2 2 1 1 1 1 1 1 +17902 7 "There are many times when lve been patient but here are just a few. It was a late afternoon my family & I were supposed to go to a big function that day. Like always I didnt know what I was going to wear, about an hour later I found what I was going to wear. I went down stairs to the soon no one was ready & we only had @NUM1 1/@NUM1 an hour left. I was frustrated told everyone to go get ready, but nobody listened to me. But I didnt care so I went up to fore a shower right when was as out to go in my mom come and told me I had to wait ??? She took a shower. Then one by one everyone took a shower except for me. I was loosing my patients. I still waited because I didnt want to start a commotion. Finally I went into take a shower. We were all dressed & ready to go. At the last minutes when we all got in the car, my sister for got her bag & jacket so we had to wait till she got it. We finally made it to the party, not on time but at least we made it. In conclusion, a few exam pies of me showing patients is when I waited to take a or over when in waited for my sister to got her lay a jacket." 8 9 17 2 2 2 2 2 3 2 2 +17903 7 The time I was patient was when I was wait on my mom to have her @CAPS2. The reason why is becaus she was being a pain to me. She was mean and every thing. So I was lik oh my @CAPS1 she need to have this @CAPS2 so all this can be over and done with. This was when she was oly @NUM1 months so I know that I had to be so patient with her antill the @NUM2 months was over. 5 7 12 1 1 1 2 2 1 2 2 +17904 7 "One day @CAPS1 ??? baseball ??? , when she signed up ??? speech on ??? trophy baseball correctly, spark ??? and other things. Her friend @CAPS2 walked out of the room because he didnt have patience, so when he came into the room again the sign-up already went around, so after the conference @CAPS2 had to talk to some people and sign-up but he had to sit in a longer ??? from his dad. When it came to playing baseball @CAPS2 quit because he was a ??? he was at the bottom of the batting line up and he only played out feild so when ??? hit a homerun over his head he dropped his miton he field and walked of." 8 9 17 2 2 2 2 2 2 2 3 +17905 7 I was patience wen I wanted my thot @NUM1 and I hod to wait to my b-day to get it I was patience to get my new fone but I had to be good and school and that was hard for me because I use to all ways be bad and staff like that I use to want everything but I use to have to be patience and I use to always be good to get it. 4 4 8 1 1 1 1 1 1 1 1 +17906 7 "@CAPS1 Patient! @CAPS2 @CAPS10 yelled as I was almost bouncing of the walls waiting for @CAPS2 friend to get to @CAPS2 house. I get @CAPS3 I just cant wait! @CAPS10 its @CAPS2 first time what do you expect! I told @CAPS2 @CAPS10. DING @CAPS4! The door bell rang and I sprinted to the door. @CAPS5! @CAPS6! @CAPS5 exclaimed. @CAPS8 you guys need to go wait in the garage for @CAPS18 @CAPS9. @CAPS10 said. @CAPS11! we said in harmony. We out the door and @CAPS3 was pitch dark. I cant see, hold me! I screamed in terror. All we saw was head lights and we knew @CAPS3 was @CAPS2 @CAPS18 @CAPS9. Are you guys ready its almost @CAPS13 @CAPS14 and we gotta leave or we want make @CAPS3 to @CAPS15 @CAPS16! @CAPS2 @CAPS18 @CAPS9 was excited. Just hearing that word, @CAPS15 @CAPS21 was the @CAPS22 to getting there @CAPS23 thing was great but at @CAPS15 @CAPS16 You gotta have a lot of @CAPS21." 10 12 22 2 2 3 3 3 3 3 3 +17908 7 "One of the greatest ways for a person to have patience is when you are being hunted down in a game of paintball. I have had experience once, and I hope it never happens again. I was playing paintball with a lot of my friends, and if I was not patient, I would have ended up getting shot in the head with paint. I was in a small forest, breathing hard after a close encounter, and I was behind a really thin tree. I had eliminated everyone except for one.I started breathing harder, because he was right by the tree I was leaning against. I decided I would come close to sacrificing myself if I just stood there, so I climbed up the tree.I was lucky I had a camoflage shirt on, because if I didnt blend in, I would get shot. I was deep in the tree, but it wouldnt have mattered, because I was too heavy for any of the branches. I fell out of the tree, but as I was falling, I shot the enemy in the leg. I had won! That is how patience rewards you." 12 12 24 3 3 3 3 3 3 3 3 +17909 7 "I was patient a few years ago with my brother @PERSON1. It was almost his birthday, and he was very excited. He was excited because he wanted a flying toy helicopter he had seen while watching television, the helicopter was very expensive, and I did not know if he was getting it for his birth day or not .He wanted me to tell him if he was getting it so he kept bugging me. I wanted to yell at him or hit him, he was so annoying .I did not, because I knew if I did I would get in trouble. So I made up a game to play with him so he would forget about the helicopter and stop asking me. It didnt work, because he kept on asking me any way. I made up another game where you have to jump on the trampoline and spin your arms like a helicopter and not fall over. Finally he stopped asking me about the helicopter and after we ate cake, we actually had to remind him about it. When he opened his presents, he did get a helicopter. We spent the rest of the day trying to make it fly." 10 11 21 3 3 2 2 3 3 2 3 +17910 7 "One night when I got home from cheer I was starving, and the dinner wasnt even on the grill. We were having steak, brown rice, and mack and chees. To past time I went upstairs to take a shower I took ten minutes to take a shower and it still wasnt ready. So I did some homework. I did math, reading, and I study for a test. The mack and chees was ready the steak was almost ready and the brown rice wasnt even close to being ready. I was so hungry and tried, but I keeped my patient. Oh my gosh the food smelt so yummy. I wanted to eat right then. I was so hungry that I had to put gum into my mouth to keep my mouth busy. Two minutes later the steak was ready mack and chees was ready but we are still waiting for the brown rice. My sister and I set the table and pourd our drinks I still had my patient. Five minutes later the food was ready. All four of us sat down at the dinner table and ate. Oh my gosh it was so yummy. I had two little pieces of steak, three scoups of rice, I love rice, and a tiny piece of mack and chees. The dinner was awesome. After that dinner I went strait up to bed." 8 11 19 3 2 2 1 3 3 3 2 +17911 7 "One time I was very patient. We were on a train going to @LOCATION1. I didn't have my game or music player. It fit live it would never spend, @CAPS2 I didn't complane.I sat in the seat for what felt like forever. Then when we got off the train I said ""@CAPS1. I'm done.""@CAPS2 then there was the bus ride to the musem of science one histry. Not as in thout to myself. Once agin stop after stop we went. Untill finally we got their. It was amazing, there were tons of interesting things like amiten that made tops or @CAPS3. @CAPS2 then patience are ?? when we went to the history. It was the train allover agin. Dad had to see everything and anything ??? Then we had to take the bus back to the train. Next the trained agin. @CAPS2 this time I had a top by that got boring so I still didn't complain. @CAPS2 dad said it has to long and I would be able to bring my os next time. That is my example of pacience." 8 11 19 2 2 2 2 3 3 2 3 +17912 7 "I want to say I found her, tex right away but I didnt. I learned something though yeah it took @ORGANIZATION1 and all the other @CAPS1 (@CAPS2 intelligence) for me to piece it together. But love is, love is patient if you rtun to it it probably wont stay with you but if wait and are patient maybe, just maybe itll come to you. I just have make sure Im somewhere she can find me. said church. @NUM1 year later. @CAPS3 whats thhhiiis. @CAPS4 said I know what this is can I just shut the door for the night? @CAPS5 @PERSON1. @CAPS6, Patience @PERSON1 were waiting for @CAPS7. @CAPS8 replied. @CAPS3 here he comes now @CAPS10, @CAPS10. @CAPS11 what I found I church. @CAPS6 @CAPS4 you found the @CAPS1. Capture wait hes in. do you think we have to wait for it to unlock. When will it do that unlocky openy thing. I dont know we will have to wait and see. That is if it will open." 4 8 12 1 1 1 1 2 2 2 2 +17913 7 "One time my friend @PERSON1 was at my house and we were playing halo. We were having a very good time. We ate popcorn, drank alot of pop and ate alot of candy. Then @PERSON1 had to go to the bathroom. He was there for a wile and suddenly I had to go the bathroom. Iwaited and waited and had to go very bad. I was very polite and patient because I never yelled at him or knocked on the door telling him to hurry up, I did ask him once if was ok and said yes after that I just waited, then he came out and @CAPS1 a very big realife" 8 8 16 2 2 2 2 1 2 2 3 +17914 7 "Patience, what do you think when you hear that word? When I was little I always thought it would be simply impossible to have a thing like that, but after I badly hurt my ankle and was pat in a cast and on crutches for four months, I really got the hang of it. My mom would always say patience is vertue, have you ever wondered what it takes to have patience? Well its really just the ability to control your self, you have to be able to get through tough situations and still be controlling yourself, and you really have to control yourself when people annoy you of things take awhile" 6 6 12 0 1 3 2 0 2 2 2 +17915 7 At the doctor their were a lot of people se we decided to stay and wait. Also my mom and my dad went with me and my sister to the doctor. Furthermore my sister and I wanted to go outside and play but my parents said no so we watch tv my mom was reading magazine and my dad is reading newspaper. Finally their were a little ??? left so after the person go to the doctor call out my name and my sister so my dad and mom went with us. So my sister dont get scared they just did check ups after that my dad paid and we left home that how we were being patience. 8 7 15 2 2 2 2 2 2 2 1 +17916 7 One day I had to wait in a line for @NUM1 hours just to get on a roler coaster @CAPS1 hot very paicent so I just fell asleep while standing with my eyes open. My mom had to have paicents so i just fell asleep while standing with my eyes open. My mom had to have patient when we were in traffic to get to the camping grounds. We had to wait @NUM2 hours just to get out of traffic but mom didnt freek out or anything. 5 4 9 1 1 1 2 1 1 1 1 +17917 7 One time his years is seem a lay that was at the front of the lunch line and he was just about to go in but he had to go to the in because he wasn't all the way in the line. As he got sent to the in he had got mad but he went to the in but he was patient she didn't advice and next thing the new he was at the front of the line. I think that being patience mean when you are calm and you don't rush things and next thing you no you would be the next one 3 5 8 1 1 0 1 2 1 1 1 +17918 7 "Patience is about waiting for something for a long time. If you have patience that is good for you here is a time where i had patience. Last year in @DATE1 after school my dad and I went hunting for deer in @CAPS1. He went to this homeguards blind that we found sat in chair waiting for a deer to come along. You have to have patience while going hunting . We didnt see anything but then a deer came along and my dad he got ready and he said cover your ear then he shot but we didnt see any sign of deer blood so he must have missed,then we packed up and went home.That is the time i had patience to go hunting with my dad but we didnt get anything though." 8 6 14 2 2 2 2 2 1 1 2 +17919 7 A time that I was patient is when I broke my foot. It was a @DATE1 when I was at the park. I was climbing a pole to ring the bell when I slide. My little brother came running over their and I told him to go and get help. He had no idea where to go so I lied on the ground with a broken foot for over @NUM1. when my brother returned he asked where do I go? And I told him to go to the gas station across the street and ask to use the telephone I was trying to be patient when he got back he had my mom. My mom said that I was really patient. She picked me up and we drove to the emergency room. When we got there it was packed. They got us in as soon as they could but it felt like along time to me. When he called my name my mom picked me up and she went toward the doctor. He asked what brings you here? we told him the news and he took into the room. The doctor moved my foot around. Ten minutes later he came back in with the x-rays and annoced to us that my foot was broken. He gave me a cast and crushes and then we left. I told my brother thank you and gave him really big hug. The next day everyone at school said that I was brave and very patient and I said thank you! 12 11 23 3 3 3 3 3 3 2 3 +17920 7 "One time I was patient when I was in @LOCATION1 getting on a ride called ""@CAPS1 @CAPS2 parents @CAPS3."" @CAPS4 was a @CAPS5 long line and I'm usually saying ""@CAPS6 on!"" Or sometimes ""@CAPS7's go!"" @CAPS8, I was being @CAPS5 patient in the line. I was proud of my self and so was my mom. That was the time I was being patient." 6 8 14 1 1 2 2 2 2 2 2 +17921 7 "Tic tak times tiking I was patient one time it was in the doctors office my oppment was at two and I had to wait and wait and wait and wait I sat there until it was @NUM1 and they finnly called me in. Once again I had to wait and wait again. So I was trying so hard to be patient and trust me it is not easy for me at least because I cant even sit there for @NUM2 minitues and stay still I have to move aroud so it was hard to sit there lisening to the sound tik tok for a while. And that was the time I was pacient it was hard to belive but I did it. The hardest part was when you here one off those tiker clocks go tik tok and I was stinn there for a while now you absolutely now that for some people incuding me. It is sometime hard for you to be pacient some times its ok to be pocient and sometimes its so hard to be pacit and sit there and oh absolutely noting, so that is my story arbout the time I was pacient and was not inpocit sitting there doning noting not conplaning wating to and @CAPS1 mazines." 5 5 10 1 1 2 1 1 1 2 1 +17922 7 "One time when I was patient was when there was a twenty two hour corride to florida. It was me, my cousin, my two sisters, and my parents. It was very boring. I was sitting in the back with my sister, and we kept fighting for foot space. Around five hours in, I was feeling cramped. We stopped off for dinner, then were on the road again. When it started to become night, the road froze and we stopped off and slept in the car. We woke up during sunrise and went to cracker barrel for breakfest. It was delicious. Then we got back into the car and drove the rest of the way to florida. It @MONTH1 have been a long drive, but it was worth it." 9 8 17 2 2 2 3 2 2 2 2 +17923 7 "Some people say that if somebodys trying to annoy you and you are patient then they will stop, but thats not always true. One day my brother was down loading new ringtones, which I thought was no big dig deal until he downloaded the mosquito tone. The mosquito tone is a loud highpitched noise that only people under a certain age can hear. Its really funny if you the one playing it but if your listening to it. it hurts your ears and gives you a headache. So one day my brother has this idea. the one only a jerk could have. he decides hes going to follow me around playing it as loud as it goes. It was terrible, it made my blood curtle. After thirty minutes I decided to call my but it didnt really help. Then I listened to music, so he turned it up. Then I had this amazing idea. I stole his battery. The next day I made a deal with him. If he would stop playing that ringtone I would give him back his battery. Of cource he said yes so I didnt have to the tone anymore. So now you know why patience doesnt always work." 12 9 21 3 3 3 3 2 2 2 3 +17924 7 "I was patient for a whole @DATE1. Although, that was only because @CAPS2 mother had promised to purchase me a brand new video game system. This new video game system was the wii. For @CAPS5 had just come and had me interested the first time I saw @CAPS5. @CAPS5 was comoletely doctor and had advanced graphics. I had informed @CAPS2 mother about this system immediately. ""@CAPS1, I will buy @CAPS5 for you, considering your report card was exceptional."" @CAPS2 mother had guarenteed me. ""@CAPS3! Thanc you mother,"" I had exclaimed excitedly. Now I was getting @CAPS2 hopes up and expecting @CAPS5 within @CAPS6 weeks. Although I had done that only to later on dissapoint myself. @CAPS2 mother had informed us that I was to get @CAPS5 in between the time period of one to the months. ""@CAPS4 @CAPS5"" I had shouted. "" @CAPS6 months?"" ""@CAPS3 @CAPS6 months I don't have enough time to thank about that stuff, there are more important things to consider,"" @CAPS2 mother explained. So that is what started the longest period of patiently waiting in @CAPS2 entire life. After appioximontly one and a half months of waiting, @CAPS2 mother had finally and, ""@CAPS9 are going to @CAPS10 today to buy your wii"""". At that very moment. I led nearly exploded from happiness. ""@CAPS3! "" @CAPS12 I had started in do a dance that no one understood not even me. So when @CAPS9 pulled up to @CAPS2 favorite video game retail store, I was so excited I couldn't sit still. ""@CAPS13 down! Geez, @CAPS5's just a video game system!"" I @CAPS12 stopped immediatly. ""That's what you @CAPS14."" I mumbled to myself. When @CAPS9 had returned home, I had kept playing until @TIME1. So that is when I learned @CAPS5 pays off when your patient." 12 12 24 3 3 3 3 3 3 3 3 +17926 7 "Patience is hard for me because I have almost no patients for anything! So you can imagine how hard it was for me and anyone else who has no patience waiting in lines at disneyland. First of all the drive- it was horrible and long. We were in the car for what seemed like forever before we finally got there. I tried my best to be patient and I wa s. I didnt complain at all. When we got to disneyland the firs day the lines were terrible! Some of the waits were up t @NUM1 hours long! Well i didnt complain,but it was hard not to!My little brother wanted to go on all these kid rides that the lines were huge for , but i held my patients not wanting to get anyone upset. Since I like everything to get done fast and not waste my time waiting i felt like i was going to explode at dinner. Dinner was a this seafood resteraunt wich was bad anyway because i hate seafood!while all this waiting was happening I kept my patience even when it took an hour to get our meals! Even worse was waiting for the disney busses to get back to your hotel. My mom and dad said they were very proud of me keeping my patients through all of the waiting. I learned all lot of things there. One disneyland is not a good place for people like me who are not very patient. Second patients is one of the hardest things in life, but some of the best things in life require you to have patience. So,thats @NUM2 time I had to have a lot of patients, but i realized patients is a good thing to have." 10 11 21 2 3 2 3 3 3 2 3 +17927 7 "Tick and tock went the second of my watch and I went on, the fifet te oct far and it was wait people come in a out of the nir or with presnt and box give tree candy. Cote qinges dont fill up lot and lot of people. On a bolt the airpant I weat to the wid no and list to the ride like a hout latebile celove. And the most faist think happiy let my bag. At deivent soa wauly. I went back to the air prot and I went home. In contemns I was patience. In conteing I was patience I the cathiner and at air port and nevier and what is patience is all about." 3 3 6 1 1 1 0 1 1 1 0 +17928 7 One day I went to a concert at @ORGANIZATION1 and there was a very long line. While I was in the line there was this girl who had no patient cause we had to wait in line for @NUM1 1/@NUM1 hours when that time past we all went to get our spots and before we had did that there was this long line again but even longer but it was ok cause I had patients. With all this patients it reminded me of my mom when she went to the doctors office for @NUM3 hours and I had to wait in his waiting room. And also I went to my living room with my mom and she just started talking on the phone and she told me to hold on but my sister kept on interrupting her and I told her you need to hold on and let mom finish talking on the phone so she ran up the stair and she said your stupid punk so I said I dont care. 6 6 12 1 1 2 2 1 2 2 1 +17930 7 I remember the time I was patient with my parents. It started when I saw this game I wanted at the store. Kindly I asked my dad to get it for so he said he would get it for on the following weekend. So I had to be patient and wait for the weekend to come. I was so excited about getting the new game that I mentioned it a lot not remembering my dad telling me not to tell my mom. Well the weekend finally came and when I asked my dad was he ready to go he said no. When I asked my dad why not he said it was because I didnt keep my mouth shut so my mom didnt want me to have it at the moment. Now I was angry of course because my mom always says nor has something to say to my dad and me when I get a game. Just then my dad walked in the room and said maybe tomorrow that so happened to be @DATE1 he said. I could borrow money from my grandma and get it then. Thats exactly what I did and I got my game. Later my dad gave her back her money and we were all happy. The point is that it took a lot patience to get my reward. 9 12 21 2 2 2 3 3 3 3 3 +17931 7 "Being patient as a kid is never really easy. I know lur lne being patient is like taking a baby's lollipop away from mom il just not pretty. But one time l really had to use my patience. Now it wasn't easy at all waiting in line at kings' island @NUM1 hours just to go on illegible. Socio. We waited about another @NUM2 minutes maybe @NUM3 minutes and yes! It started working again. So many people had left us was nicor because me line shortned some, but it was still probably going to be a long wait. It was nice when we got in the building because it was nice and air-conditioned. We sat around warning and waiting debating on wheiner or not. We wanted to stay or leave we ended up staying and waiting for which seemed like forever! Until we stepped into the space snottle. There was another room we had to go through to get to the ride. Finally. The out was over! Using my patience and waiting inline forever really payed off in the end. It was a great ride." 12 12 24 3 3 3 3 3 3 3 3 +17932 7 "@PERSON1, this is boring! I want to try my backflip! I whined. "@CAPS1, you're not ready yet, just wait. If you wait and practice more, it will be easier," said @PERSON1, as she spotted one of the other gymnasts in their back-hard-spring. We had been working on our back-hard-springs for weeks and I was the best at them, in the class. We had to wait another two weeks until we started on our back flips, but I really wanted to try it out. I rolled my eyes at @ORGANIZATION1's answer, and continued to practice my back-hard-springs. I was doing them down the wedge, and in the middle of each one, I'd do a little roll for fun. Someone called @PERSON1 so she walked out of the gym to talk to them. Just because she was my coach, didn't mean that she should tell me when I should, or shouldn't do my back flip. I really wanted to try it, and @PERSON1 was out of the room, so it was my chance. I took a deep breath and lunged into my backflip. As I glided through the air, the thought that I never learned how to land my flip crossed my mind, and I landed on my ankle. "@CAPS2!" I yelled. I tried to stand up, but I couldn't; my ankle hurt so bad! @PERSON1 ran into the gym as I fell, after attempting to stand up. "@CAPS3 happened?" "I tried my back flip." "I told you not to! If you were patient, and waited till I showed you how to do one, this wouldn't have happened!" "@CAPS4…" "I'll go get an ice pack." @CAPS5 since that day, I have had problems with my ankle. If I had been patient, I wouldn't have gotten hurt, and I would still be in gymnastics, @CAPS6 then on, I've known that being patient is the right thing to do." 12 12 24 3 3 3 3 3 3 3 3 +17933 7 "@CAPS1 story of patient One time I was patient was when I went to the @CAPS2 for a check-up. Me and @CAPS1 dad have wait in the lobby for ?? time, after every ?? went in for the appointments. I couldnt take it no more, but he made me stay. So I kept quiet. Well, most of the time really I wanted to say something really bad but instead I held it in. So finally we went in I was so happy. It was like I was the happiest man on earth. Thats @CAPS1 story about patience." 7 8 15 1 2 2 2 2 2 2 2 +17935 7 A time when I was patient was when my mom took my sisters shoping. My dad was at work and my mom took me and my older sisters shoping it was boring but it was kind of full because some of clothes in the store had boys on one side and girls on the other. One store only had girl clothes which I hated. But I didn't say anything after that since I was so patient my my asked me where to you want to go? I said to best buy I got a game it was colloge football oq. When you have patient's it can pay off in the end and always have patiens where ever you go or are always have patients. 8 6 14 2 2 2 2 2 2 1 1 +17936 7 I am patent i always have to wait for somthing or earn it. I go to my grouping with my parents but I have to wat. I have to wait to go to my aunts. The worst time to wat is going to @CAPS1/a up @LOCATION1 and camping. 3 6 9 0 1 1 1 1 1 2 2 +17937 7 "One time I was patient for the doctors and I had a great time. Another time I was patient, I was at the dentest. My therd time I was patient when I was going to @ORGANIZATION1 and it was boring waiting but I was patient. Last but not least I was patient to go on the tower of terror. It was the funest ride there." 5 4 9 1 1 1 2 1 1 1 1 +17938 7 "Patience is important in life. Something when you dont have patience things tend to go wrong and thats not always a good thing so here are somethings when you do not have patience. If you dont have patience you can get into trouble. For example if you were in a long line for something and you couldnt talk because if you did talk you would get in trouble. So if you didnt have any patience you would probably say @CAPS1 my gosh this is taking forever. Then you would get in trouble for talking. Here is another reason why you should have patience. You should have patience for an example if you didnt you would need patience if you were sick and you went to the doctors office and there was a really long line you would probably say for get it and then go home. So if you went home you would get even more sick and that would get even more sick and that would be bad. Finally, another reason on if you didnt have patience. For example say you wanted to go the mall and bye a new pair of shoes. You went into the store and you found a pair that you liked and they fit just right. But when you went to go check out the cash regaster didnt work so they had to call maitnence, to come and fix it and they told you that it would be an hour. So you sat and waited for twenty minutes but you did not have any patience so you said for get it and you left and didnt get the shoes. Those were some people who didnt have patience. But if they did that wouldnt of happened to them because they would of waited or needed. Having patience is a good thing but not having it is not." 5 4 9 0 1 2 2 0 1 1 2 +17939 7 "I sat there, staring off into the distance waiting for something to happen. I casually leaned back to my chair and propped my head toward the ceiling. I tried my best to clear my head and be paitient. But when I opened them, I was sitting on some bars in line for celar paints @ORGANIZATION1. The voices of many people ran through my ears as laughter, happiness, and danger. The line was estimates at a two hour wait, but my friend @PERSON1 and I wanted to ride the ride. We started up at the roller coaster while the sun beat down taunting us. @CAPS1 is this taking so long?! I said impatiently. @CAPS2 next time we should go during the week. Do you want to leave? @CAPS3. I fought with myself to be patient for the ride. The line slowly scooted forth. Beads of sweat formed on my forehead. I wanted to remain patient, so I pulled out my music player and thought of my music. I became more willing to wait. But before I knew it, people were yelling at us to move forward. Embarrassed, I jammed my music player in my pocket. But the line moved a tremendous amount. It had been about an hour and forty minutes when we were in the place to get on. I was proud of being patient. We looked at the ride and hopped on. Patience really pays off. I learned to be patient with all sorts of things." 10 12 22 2 2 3 3 3 3 3 3 +17940 7 I am all way patient wen I hunt and fish. I always go hunting I find a spot and setor clmeit in a tree. I waet for along time for deer and trukey and @CAPS1. Some times you dont see anything at all. The key is get out early and be patient. The most of the time I usely see @NUM1 deer wen its deer sesson wen I go out . How I see them alot is being patient a lot. 4 4 8 1 1 1 1 1 1 1 1 +17941 7 "One time when I was patient was when I was waiting for my fitted, mirror, league hats to come in the mail. They so, dit would only take @NUM1 ??? days so, I said ok thats not to so days flew by and hats were supposed to come in the mail that day so when us truck came by I was so exited but there was a box for my mom.@CAPS1. I said I was really, so planted but I thought to myself they i.e. come tomorrow and??? the didnt come so I as stil patient but close to not being two more days past so I just gave up then one day when I got home from my friends house they were there yes, finally all my patients payed off and thats the time I had patients." 7 8 15 2 2 2 1 2 2 2 2 +17942 7 "A time when I was patient was when my favorit @ORGANIZATION1 of the year comes, the @ORGANIZATION1. I had waited patiently all year counting down the days till @DATE1 reading books and homework where almost done with for another year. You could smell the tension in the air as everyone watched the clock spin on the last @ORGANIZATION1 of school. As the hours went by @ORGANIZATION1, seconds, @CAPS1 , @ORGANIZATION2, every one grew restless, but I was patient; I sat, I waited, I listened, I read, but nothing compared to hot final moment where the bell round and the students cheered. A smile on everyones faces as they left the door for the final time that year." 9 11 20 2 2 3 2 2 3 3 3 +17943 7 "Ok, ink to start o yeah this is the good one once mom no no one day no ok some years some time back I had to be patient for my phone and it was my first phone I how to be good. It was band new phone it just came out and I had to have if I nid a lot around the house and school to my mom said I can get it next week and I was dertmined to get it so the next week @NUM1 im so happy but she said next week @DATE1. Im just doing what I was doin what I was saposd to be doin and on that @DATE1 I was so happy I got in trouble and I still got paid for doin my house work did not have at some did some help with the next door people and got some more and got the phone that take a long time but that. That is my patient story." 4 6 10 1 1 1 1 2 2 1 1 +17944 7 "One day alex was bothering be. Ao I decided to be patient. But he kept on, on, on, on, on, on, on, on, on, on, on, on, on, so I decided to tell him to shut up. So again he didnt listen to me so I told @PERSON2, alex did not stop yet so I said nothing and was going to try to be patient with the @CAPS1. Talks a lot and @PERSON1. And eventually it did work and alex finally stoped. So I was happy. But he (alex) started again so I told him to stop on I would tell the teacher again. So he just shrugged his shoulders and kept right on doing all of the stupid noises. So I told the teachers and said alex you better stop this instinse. So alex you better stoped and began resibling with his pencil all over his peace of paper." 8 10 18 2 2 2 2 3 3 2 2 +17945 7 "A @DATE2 ago my @CAPS1 was brought into the @ORGANIZATION1 because of her incision from a previous operation panste open. Because of @DATE2 physical coller coaster, I have missed three days @DATE1 and one day @DATE2 of school so far because I was gone visiting her. Now I'm back and trying to catch up with all my classes. So far I've achieved that goal with @CAPS2 and social @CAPS3, but have yet to catch up in the other subjects. Although students are only allowed one day to make up what they missed per day they were gone, my other teachers have been extremely patient and helpful to me and willing to hold off grading me until and the time catch up in their class I think I'll make it." 10 8 18 3 3 2 2 0 2 3 3 +17946 7 I am writing about a time when I was patient. Me myself @CAPS1 not a patient person. One time I had no choice but to be patient because my mother made me. We were waiting on the bus to come but I was very angry because it seemed like it took forever to come. So my mother said @CAPS2 stop complanning and be patient @CAPS1 serious! so as soon as I sat down the bus came! 6 8 14 1 2 1 2 2 2 2 2 +17947 7 "@CAPS1 @CAPS8! Really? it was a @DATE1 @TIME1 at @LOCATION1 pritz. The forcast was @CAPS8. @CAPS8 and @CAPS1 @CAPS8. The tigers were play the @CAPS2 @CAPS3 @CAPS4. @PERSON1 was pitching for the @CAPS4 and justin @CAPS6 for the tigers. My dad + my mom and my brother and I were just two rows from the front row. It was the bottom of the first and I feel a huge drop of @CAPS8 touch my head. Then I feel another than another. @CAPS7 upstairs for shelter! my dad yelled. As soon as we got up in the selter area complete down poor. Thats all I have to say. The players went into the dugduts. My mom called my grand pa to see what the forecast is. @CAPS8. @CAPS9 said. My mom took her sweatshirt off and gave it to me and my brother and said its gonna be a long @TIME1 so rest up now at first I didnt understand. But after she explained to me I knew it was indeed gonna be long. At the time of this I was only @NUM1 or @NUM2 so waiting is not really my thing. An hour past by it was still raining. @NUM3 hours, than, @NUM4, than finally 41/@NUM3 hours past by. It was @NUM6 at @TIME1! The game still wasnt starting. My mom called my grandpa again. @CAPS9 said we still have another good hour of @CAPS8 left. We sat there for ever! Me and my family were so bored. But my mom said patience will pay off. @NUM7 hours later. It cleared up. They wiped down the seats for us. We were ready to watch a game at @NUM8 am! My dad bought all of us ice cream for being so patiente. The game ended at @NUM9! we only stayed till @NUM4.00 though because of the drive. In the end I got to see an awesome baseball game (and get ice cream.) I learned patience pays off!" 12 11 23 3 3 3 3 3 3 2 3 +17949 7 Patience is to be quiet in lines wate to do some thing or going some were suntiel to be ??? and not ??? like ??? the wall and going crazy about wating for some thing wait to get a ??? game our wait to get a ticiket to go the the show to see a movie theis are way you could be pantient while do different thing in life. Like a day I was waint to get a game in line but it took so long to get it but I stay in line and used paintion. 3 3 6 0 1 1 1 0 1 1 1 +17950 7 "Being patience is hard to do, @CAPS1 I do remember a time when I was patient. This was at @CITY1. Me and my group had to wait for everyone to get back to the bus. We were the first ones to the bus so it took a while before they came. @CAPS1 before they did I was as calm and patient as can be." 6 5 11 1 1 2 2 1 1 1 2 +17951 7 "One time I was patient is when I was going skating. And I was waiting for my mother to come pick me up from @CAPS1 @CAPS2 I told my friends ""yu ll need a ride"" and I made a mistake and told my mother the wrong time period it was @NUM1 and I told my mom @NUM2 and had to wait a whole @NUM3 hour." 5 4 9 1 1 1 2 1 1 1 1 +17952 7 "That is the time I was to be patient. Hope you enjoyed I am not a very patient person very rarely have I been patient. But, there is sometimes I was. I still remember three years ago when I was in @NUM1 grade my whole day was full of patience. That day I was getting picked up early. I was getting picked up early from school because that night I was going to the @ORGANIZATION2 and @ORGANIZATION1. When I woke up I was so excited! I had been waiting for that day for a whole four months! I was so happy it was finally the day; when I got to school I had to tell everyone the news. My friend went a few days before and said it was a good @ORGANIZATION1. When it was getting close to the end of the day the speaker in my classroom went @CAPS1 then the lady and I had ?????????? for an early ?? mission I had been waiting for the moment! After I got picked up we went and picked my cousins up from school too! Then we went to there house got ready and we were off to a day we had all been waiting for." 10 11 21 2 3 2 3 2 3 3 3 +17953 7 "The time when I was patient was when we went to the mall to go get my customized hat. This is the only time when I was patient. I went to the store called lio's. I picked out my hat and everything. So I said I wanted saad on their he did everything then I asked how long he said @NUM1 mineuts. We went around the mall and went back to the store that took like @NUM2 to @NUM3 mineuts. So I asked the guy is it done he said ""not yet"" I was watching him doing another guys hat. So he stopped the other guys hat, I didn't wanna make a scene and yell at the guy so I'm waiting and waiting until he's finally done with the hat that took about an hour. So I thanked the guy and left the store with my new hat & I was happy." 8 8 16 2 2 2 2 2 2 2 2 +17954 7 "Come on I need some help. Sir please sit down. I will be writing about a time my @CAPS4 took a suit to a tailor for a conference. Can you please find my suit. Sir we are trying our best, we might have given it to someone else on accident. I need that suit to go to my conference. Well sir what we can do is have you pick out another suit and we will have the tailor start imediently on your suit o.k. I like this one. What needs to be done asked the tailor pants are to be long. I will have it done in no time, @CAPS1 me about two and a half hours thats when my plane leave for @CAPS2. I will have it done in @NUM1 minutes. I will be back here in @NUM1 minutes for waiting I will even @CAPS3 in a free tie. At the end my @CAPS4 ended up with his suit." 7 4 11 2 2 1 2 1 1 1 1 +17955 7 "A time when I someone I know was patient was when my mom heard that my aunt @PERSON1 was going to get married and @CAPS1 was helping plan it. @CAPS1 was patient because during the time of helping plan a wedding, @CAPS1 was going to @ORGANIZATION1 and was two months away from graduting from a @ORGANIZATION1 called @CAPS2s @ORGANIZATION1, while taking care of a seven month old baby boy with the help of my dad and myself. Also, @CAPS1 was trying to get her parents here from @LOCATION2 , @LOCATION1 with a lot of other staff to do. After, two months of planning a wedding, taking excellent care of a new eight month baby boy, studying for a test, helping her parents, came here, and graduting. @CAPS1 was able to help plan a beautifullwedding on @DATE1. This is a time when someone I know was patient" 12 8 20 3 3 3 3 1 1 3 3 +17957 7 "This is my way of patience: patience is power without patience where would you be in the time of waiting on your house to be built? Yaid probalay be going crazy because you dont want to be living in a trashy trailer, camper or even a house! What about if your in a doctors office for @NUM1 hours! Yes your going to be agitated! But, see if you have patience your going to be able to wait patience is power!" 3 5 8 0 1 1 1 0 1 2 2 +17959 7 "Patient is very hard when your waiting for something you want. Very hard when your waiting in a line that is very loud or when you order something on the internet and you have to wait only two or three days. If your not a patient person that cant wait for the simplest thing that will only take a while then your a very impatient person that cant wait. If you are a impatient person then you are selfish, mad, and evidently not patient." 4 3 7 0 1 1 2 0 1 1 1 +17961 7 "When I was at the mall one time with @PERSON1 we whent to flee and bought malching hats and skirts. Then we went to the chineze stand and there was a bag like ???. We wated for like a half and hour to get other food. We wated patiently and we got other food and we sat down at a table and that was the last table. Then a family of for was loocking for a seat and @CAPS1 we got up and gave them our table. Then we went to the movies and we waited in line and @PERSON1 was being impatient @CAPS1 we had him save our spot. Then I took @PERSON1 across the walk way and got @PERSON1 a show thick. Now @PERSON1 was upto pay @CAPS1 we walked back to the movie theater and we bought @NUM1 bags of popcorn, and then we paenently wated in line to get our seats. That is one of my stories of being pachent with my friends." 8 9 17 2 2 2 2 2 2 2 3 +17962 7 "Hunting is one of my favorite hobbies. Hunting requires what you will think of as a lot of patience. When you are sitting in a tree blind you @MONTH1 experience one of the most boreing @NUM1 minutes of your life, which definetly requires a lot of patience. After you settle in and are being quite the wood come alive all around you. I have to admit, I dont have a lot of patience, but hunting requires a different kind of patience. Hunting is something that many might think as just sitting around doing nothing. But if you are patient enough and quite you are rewarded with whatever you are hunting. This is one thing that I definetly think requires a lot of patience, but it is not the kind of patience that you would think of its an entertaining patience. That is why I think everyone should be more patient." 7 7 14 0 2 2 3 0 2 2 3 +17963 7 "Once upon a time there was a preeteen name lola @CAPS1 lived in a land called wounder land and lola was a single queen @CAPS1 had lots of money and food and @CAPS1 had a big house but there was one thing that lola was missing @CAPS3 was a preteen prince there were lots of boys thowing themselves at her but not one of the cute strong preteen boys was the one for her. So one day @CAPS1 wanted to go to the village and see all her people and they were very happy to see her they yelling her name llola lolal and telling her that is was the best queen they ever had. Then after they stop yelling her name @CAPS1 saw a cute and strong preteen prince and has name was @PERSON2 and @CAPS1 fell in love and went over there and said hello and he said @CAPS4. Then @CAPS1 said do you want to come to my place and have diner and he said yes. Were do you live and @CAPS1 said in the big place he said ok see you at six. He did not know @CAPS1 was a queen so he went to the place and they at carb legs then after diner they played veido games afer that they started to like each other. Then a month later the were boyfriend and girlfriend everything was going good. @CAPS1 wanted him to ask her to marrie her but @CAPS1 had to wait patiently and @CAPS1 did @CAPS1 waited a year and he still did not ask her to marrie him. @CAPS1 new that if @CAPS1 ask him @CAPS3 would not work out so @CAPS1 wait and @CAPS1 waited some more and he tell didnt ask her so the next day @CAPS1 went out with her friends @PERSON1, @LOCATION1, feanne and @CAPS5 and they went to the @CAPS6 and they sat in the mud bath and they were talking about how @LOCATION2 and @PERSON2 were doing and @LOCATION2 said they were doing good. @CAPS3 is just wont ask me to marrie him I dont think he wants to ask me but we liveing together. The next day @CAPS1 @CAPS1 came home and all her friend and family were in her house and in front of everyone he ask her to marrie him and @CAPS1 said yes and everyone was happy for her and he said I was going to ask you I just wanted @CAPS3 be one you will never forget and @CAPS1 ask her friends if they knew and they said yes everyone knew we just couldnt tell you. A year they had a big wedding @CAPS3 was so perty and @CAPS3 was the wedding of the village and everyone was there and they partyed all night. The @CAPS7." 11 11 22 3 3 3 2 3 3 3 2 +17964 7 "There once was a soldier named @CAPS7 connor. He is a private first class. His bestfriend named @PERSON1, he was also a private. I cant believe we have to wait six months before we actually get to deploy. @CAPS1 @CAPS7. @CAPS2 thats how its like man, @CAPS1 @PERSON1. They both @CAPS1 walking to the firing range. Ping! Went the target as the bullet struck it. @CAPS3 shot!, @CAPS1 @PERSON1. @CAPS5. @CAPS6 @CAPS7. Right in the center was the hole were the bullet struck. @CAPS7 had great aim but he still had to wait. Patience, @CAPS1 @PERSON1. @CAPS7 was patient and all but he wanted to go so bad. Finally his time came deployment. He was so excited to go. One day on patrol his convoy was hit hard by mortors, he was killed in an instanct. In this story patience is the key to everything remember about patience next time you have to wait." 9 12 21 2 2 2 3 3 3 3 3 +17965 7 "In your own way about patience. How do you show patience you dont be rude and you just stand there and wait until your turn. To me patience means you stand or sit there quiet and with no rude comments. For example one time my mom friend was patience for her because she had to wait for her as my mom exchange my brother helment. When I was in the store my cousin was patience out an outfit and I was taking a long time. When my brother and I was in the shore he was buying a pair of shoes. I was patience. I didnt get mad or made rude comments. One time me and my nephew was in the store, and I was ordering some food and he made rude comments but he was impatience. Thy choice of patience is you have to be patience and wait your turn to go. The whole purpose of this writing is you have to be patience in life." 6 6 12 1 2 1 2 1 1 2 2 +17966 7 "One time when my family went to @LOCATION1 @CAPS1, we had to wait in line for the one roller causter I sayed witch one it was. Well I wasnt as patient as my sister, but I was pretty patient. After the ride I had forgotten how long it took to get to go on the ride. My parents remember they thought we had left the park and drove off to somewhere. Well there are many other times I have been patient like the time my friend took two days to put music on my @CAPS2. She had just gotten her @CAPS2 touch and she wanted to put music on it. So she asked me if I wanted more music on my @CAPS2 too. Well I said yes. Even though I know I cant spend a day without using or just looking at my @CAPS2. But the only thing I could do was be patient. Ok after two days she finally gave it back. I thanked her and asked what took so long. She said that the composer was taking forever and her infer were on it like forever." 8 10 18 2 2 2 2 2 3 2 3 +17967 7 "@CAPS14 can I go over @CAPS1 house after school to day” asked @CAPS2. “I’ll call and tell the school, okay?” answered her @CAPS14. You are problely worried who is @CAPS1 is. @CAPS10 she is @CAPS2 best friend in the world they have been friends sease the were in dapiers. Do you know how old they are now? @CAPS10 they are thriteen years old now. Now lets talk about @CAPS2 for a minute now. @CAPS2 is a family of five, her @CAPS14, dad, brother, and her @CAPS14 has a baby on the way. @CAPS2 is so exstice for the new baby she always want a little brother or @CAPS16. At first I school @CAPS2 got the message saying that she can go. So @PERSON1 and her start to walk to @PERSON1’s house, when they got there @PERSON1 and @CAPS2 had a sanck. “@CAPS6 @CAPS2 what do you want your @CAPS14 to have a boy or girl?” asked @CAPS1. “I really dones’t matter to me me, @CAPS13 if I had to choose a would want a @CAPS16. I have already.” answer @CAPS2 “@CAPS10 be patience you will get what you want “said @CAPS1. O” @CAPS12’s a girl”that was what the doctor sad when my @CAPS14 gave birth to my new baby @CAPS16 on @MONTH1 @NUM1, I was so happy I want to just holder her ,@CAPS13 every time I ase @CAPS12 was ??she to young or no not right now,@CAPS12 was getting truedong so I gave up.@CAPS13 fannlliy one day my @CAPS14 came in to my room in’ here can you watch your @CAPS16 so I can take a @CAPS15?” That was the happest of my life. So me and my @CAPS16 grew up to be the best of friend just like one and @PERSON1. That’s what happned when one bw a little patient" 8 4 12 2 2 2 2 1 1 1 1 +17968 7 "@CAPS1 @CAPS2 my teacher said @CAPS3 we are starting the meap test! uhhh the @CAPS2 sighed exactly at the same time. After teache passed out our booklets we filled in information, wrote our names and begain. As the test dragged on I @CAPS4 @CAPS5 finished! But there were slow workers who were very slow. I was bored! Nothing to do but sit down. I wanted to complain but I decided not to for the sake of my @CAPS2, finally part @NUM1 was finished. Time for part @NUM2 @CAPS2! exlamed teacher. oh youve got to be kidding me I said to myself. Part @NUM2 was short, but it took one kid @NUM4 mins! At the end of the day teacher was very proud of me for being patient. Later that year my meap results came in and they were fantastic!" 10 9 19 2 2 3 3 2 2 2 3 +17969 7 "One time I was patient was when I was going to @LOCATION1 because the car ride was @NUM1 hours long. I was hungery, bored, and really needed to use the bathroom. I didnt tell nobody because I knew we could not stop. I looked out the window but got bored. We were going to @LOCATION3, I was happy we stop and eat in @LOCATION3, I know that from @LOCATION2 to @LOCATION3 is not a long way but hey I eat at @NUM2 and is like noon. We finally eat like having and hour in @LOCATION3. I did really good being paitent, because when I am unpaitent I get really mood and people dont want to be with me when Im mood." 8 8 16 2 2 2 2 2 2 2 2 +17970 7 Patience perso is someone that deal with difficulties without complaining. Like when your waiting in the docters office fora checkup. Or in the eye doctors maybe a dentist. When your in the doctors office it all quiet then there a phone ringing! Then the doctor walks in or dentist all there is is waiting and waiting. 6 5 11 1 2 1 2 0 1 2 2 +17971 7 "Time to go outside!the teacher said happy that @CAPS2 would get a breake soon. All the kids rall outside to @NUM1 come play with us were playing jump rope! one of the girls said sweetly as @CAPS2 swung the jump rope around, the little girl smacked he little flat shoes on the cement just light enough for @PERSON1 to her.Im waitingsaid the little girl un-patiently.@CAPS1 on.@CAPS2 said with an upset tone!fine!the little girl said as @CAPS2 crossed aims and swayed bark and forth. One of the love came upto @PERSON1 to! @PERSON1 do want to play tag, or hide and seek.@CAPS3,@CAPS2 said sweetly with he arims folded nicely in he lap as @CAPS2 ran away waving his arms around. @PERSON1 laughed at him and then thought @CAPS4 I play with him then my other friend will be mad. But @CAPS2 was being mean to! The little boy particularly waiting for @ORGANIZATION1s mind to be made up hopped about like a bunny trying to make her laugh again. @PERSON1!!!The little girl said and jumping up and down, making her little. plastic shoes as they hit the ground.I dont have to play with @NUM2 said ,but I am your best friend.@CAPS2 said getting a fare that only her mom would fogive.@CAPS6 eyes dont work on me! @PERSON1 said fine! @CAPS2 said again and the lit he girl ran offI can play with you know@CAPS2 said@CAPS7 lets play tag?@CAPS2 said laughing then @NUM3 said.Thanks for playing with me,the little boy said." 9 9 18 2 3 2 2 2 2 3 2 +17973 7 "Last @DATE1 I went to @CAPS1 @CAPS2. And we drove for hours! O my go she butt hort! We got there and there were no packing spots, so we went to the back back lot! but then I was excited we were walking towards the park I was the wicked twister and surprised my @CAPS3 asked me to pick the first ride I said the wicked twister so we got in and I looked at the line for the wicked twister and guess what it took @NUM1 minutes to get on the ride I was so patient that day and then we cut the corner and there was like @NUM2 more people! So that day I rode almost all the rides in the park and ate a whole @NUM3 pound burgers fries and a shake! So theres my story about my patience!" 7 8 15 2 2 1 2 2 2 2 2 +17974 7 "Crash. Boom! Oh no theres a accident. @CAPS1 @CAPS1 traffic stops. we cant stop. not now, yells my younger sister. I m gonna be late for dance class. Oh @PERSON1 just be patient this traffic will be moving before you know it. I said. As minutes passed @PERSON1 has to go to the bathroom. My mom tells her she has to go to the bathroom. My mom tells her she has to wait but she replies, I dont want to wait. I sat and look out the window silently because thats all I really could do. @PERSON1 screams, I have to go to the bathroom. @PERSON1, I said please just be patient. I gave her a candy that just only shut her up for a couple of minutes. @NUM1 minutes passed and sister is fast asleep .I asked mom when does she think the traffic is going to blow over. She told me she have no @NUM2 minutes later the traffic starts to move but stops then starts to move again. Finally we arrived to our exit and my sister makes it to the dance class. She got out of the car dashed into the studio .That was a time I was patient." 8 9 17 2 2 2 2 2 2 2 3 +17975 7 "About three years ago, my family and I spent a weekend at @ORGANIZATION1 @ORGANIZATION1 sun dusky, @LOCATION1. It was a perfect weekend except driving four hours in car with older & younger siblings in the car. It was lould, there was crying, there was all of that annoying junk, but I was patient. When my family & I arrived at @ORGANIZATION1 @ORGANIZATION1 it was crowded! Like jam pack crowded. My mom took little sister & brother on the kiddy rides & my dad took my brother and I. My group went on all of the big scary rides. I went on about every single scary ride that day except for the @CAPS1 @CAPS2 @CAPS3!!! This ride was the biggest one of all time. I was dying to go on it. My group got in line & relize their line was about half a mile long & there park was going to clothes soon. Twenty minutes later I was being so patient in this line. We were in the quarter of a mile range in the line. My dad decided it wasnt worth it. So my group met up with the rest of my family & we sadly left @ORGANIZATION1. It was one of the most sadest ride move ever. So maybe next time I should be more patient." 8 8 16 2 2 2 2 2 2 2 2 +17976 7 "Have you ever waited for something or someone without complaining? If so, you are being patient. Patience isnt just waiting a long time, its being respectfull and not complaining about waiting. In order to be patient, you have to be respectfull and quiet unless they ask you something. It takes hard work to be patient. If your at school and need to go to the bathroom wait till the teachers are done talking to someone, or if he/she is on powerschool. Do not interrupt teachers during a meeting or when their talking. People will like you a little more if your patient. So remember, when your waiting for someone or something, remember the word patience." 5 4 9 0 1 2 2 0 1 1 2 +17977 7 When I was in third grade I hoped one of my friends who had some disabilities but I had to learn to be patient with him. When it comes to dedating with someone like him patience plays a great part in friend ship with him. Ever though he had his days I would say to my self ''you have him and have patience '' and to this day him and I are still friends. 8 8 16 2 2 2 2 2 2 2 2 +17978 7 I will tell you about when I was patience. For a long time it was hope you will read. I was going to @LOCATION1 to go quisney world .It to ke forever! It toke three days of driving. We play game like I spy or game boy. We very rare toke break for peeing or eating. I will didnt lik the trip. But when we finally got there it was worth it. We had some fun. 4 5 9 1 1 1 1 1 1 2 1 +17979 7 "One day I was at home and I was getting ready to go and to eat and there was a very long line so I was on the phone with @LOCATION1 and @PERSON1 we were talking about the @CAPS1 test so then I said @CAPS2 why is this taking forever so they told me to be patient and until its time to order, so I said what does patient means they said it means to understand and be tolerant and do not complain so I said I might try that and then before I knew it I was sitting at a table eating and on the phone at red hobster. So now I know whenever I go somewhere with long lines all I have to do is be a lot more patient and dont complaine." 10 7 17 2 3 2 3 2 2 2 1 +17980 7 "This is a story about when I was patient. My family was planning a camping trip to go up @LOCATION1.There was a huge camp ground were you can reserve an area and camp there.The bad part was that it was about @NUM1 hours away. So i packed a magazine, some paper my @CAPS1 and decided the best of it. Me and my sister @PERSON1 were playing aganist each other in @LOCATION2 for about an hour but as @CAPS4 played all i thought about was the camp. Later I was looking at a magazine about camping I didnt know it was about camping at first so that made me more exicited. Then i drew pictures for about an half an hour, that was fun.I ended up takeing up a nap for another half hour. When I woke up I just starred at the road wide eyed constantly thinking about camp. Finally @CAPS2 said @CAPS4 are here kids! @CAPS3! @CAPS4 all @CAPS5. @CAPS4 set up camp, played on the play ground,went swimming,and had a bonfire. All that waiting was worth it. But the ride home seemed alot quicker. Tthat is the story of a time I was patient" 12 12 24 3 3 3 3 3 3 3 3 +17981 7 "Hi, im writing about the topic patience. I think patience is very important to the world. Because if no one had patience everyone would be running crazy like banshees and getting mad al the time. It is important to have patients because In life its not always fair and you have to wait your turn. For example when I go to get my allergy shots I have to be patient. Because other people got @CAPS1 first and act to get served first. I also have to be patient at my football games because everyone has to play, and I can play in @CAPS1 spot the whole game. Lots of people that arent patient make other people not patient. Another term for not patient is inpatient. Everyone needs to have some sort of patience. That is what this world need, a little more patience. THE @CAPS2." 6 5 11 0 2 2 2 1 1 1 2 +17982 7 This is a story about one time I when my mom was patient. One time me and my mom was at the clinic ?? to get my medicin. We where one of the first people there. Then a lot more people started to come. My mom thought we where the first people to get called we werent @NUM1 groups where called then @NUM1 more groups got called. @NUM3 more groups got called. Then me and my mom finally got called and that was story of the time when my mom was patient. 5 4 9 1 2 1 1 1 1 1 1 +17983 7 "Have you ever learn spritarnt just one turns in your life. I have let ??? you about it. One day I was at home watching too .all of a sudden I had to use the bathroom really bad. Unfortunately they my momma and my sisters had to go. My momma went first and my sister was going next. My momma didnt take very long but my sister was in there while and I was getting mad but l still was waiting patiently. It was holding it in but I knew eventually I new that it was going to come out eventually, but just waiting. I was doing all I can to get in the bathroom. I was banging on the door trying to just the back and I wait in the bathroom and handled my business. In conclusion, this is a time that I was patient." 8 10 18 2 2 2 2 3 3 2 2 +17984 7 "Patience is a virture. Its something that we all need in life. Without it we cant do anything that patience. People would get boring because they have no patience. Now, heres a time I was patient. After @DATE1, I decided to buy on ipod touch. Since no stores were open, I had only one other option. Online shopping. I used omazon to get it. I couldnt wait to yet it! Unfortunetly I had to wait like a week to get it. It was boring waiting for it, but I had other things to occupy my mind. When it finally come, I was so happy! I was glad I waited. From the patience, I learned you cant get everything rite away, I learned that people who wait, good things will come to them.Also I was better at waiting for everything. Thats how I was patient and have bin better at being patient." 9 9 18 2 2 2 3 2 2 2 3 +17985 7 "Over the @DATE2, on the @DATE1 to be exact me and my family want to see fireworks at a local park. It was a time for me and my brother to visit all my friends, we were so excited ?? ?? me than an hour to get there. I was so patient because I knew if l wasn't my mom would not be in a happy mood. ""Are wether yet?"" my brother mouned. ""@CAPS1 my @CAPS2, @PERSON1 we just got in the car."" I said my brother has always been important, I of course didn't say a word on the way there and everything he said something the ride felt longer." 5 9 14 1 1 2 1 2 2 2 3 +17986 7 "Patience is very important in life. I have been patient many times in days. I'm going to tell you about a time that I was patient and it paid of. It was @DATE1, exactly two mounts before my birthday. I went to my mom and asked her if I could get a phone. She said I was to young, and that she didn't get a phone till she was in college. I told her that everyone else had a cell phone but me, this was partly true. She told me she would about it, and that if I bugged her about it again she wouldn't get me a phone. It was @DATE3 now, just @NUM1 more days till my birthday. I thought about what kind of phone I wanted, I thought about what color case I would get for it. I thought about that phone for weeks. Then the day came, it was @DATE2, my birthday. I woke up in the morning to the smell of pancakes. After we ate we went to my grandma's house, because it was also thanksgiving. After dinner we went back to my house for my birthday supprise. I opened my pressants from aunts, uncles, grandparents, and then the last box. I opend it, it was my phone. I was so excited, I called all my friends on my new phone. That was the best birthday ever. It is a good thing to be patient, because I was patient I got the phone I wanted. Thats why you should always be patient, and wait. By; @PERSON1." 8 9 17 2 2 2 2 2 2 2 3 +17987 7 "One day when I was home alone I felt nobody was with me. I was home alone because my uncle was very sick and my and parents went to go visit him. I was very scared and I felt @CAPS1 had left me. So I prayed and prayed but I fell or heard nothing back. So I fell asleep and I heard @CAPS2 voice, he was talking to me! I was running in a field will grass. I saw a man dressed in where dating walking through and, and when he came out of the mud there was no sitting or did anymore on him. I ran up to him and asked man who are you? he replied and said little child of @CAPS1 why do you look so lonely? I am your angel one I have come to tell you what your father has said, he talked to me for a long time, and I did not feel scared or lonely anymore, there was one cloud in the sky, he said he had to go but that he was my gurdian angle. After that he rose into the deol. I will never forget him, he is my angle. And that was the time I needed to have patience to hear @CAPS4 voice." 10 8 18 2 2 3 3 2 2 2 2 +17988 7 The time when i was patient was when christmas came aroud. At first i just wanted christmas to get here. But my mom told me I had to just wait and that it will come soon. So I waited and waited because I really wanted a wii consle and the sims @NUM1. So finally when christmass came i got what i wonna and some. Usually @CAPS1 not that patient but the reason I was is becaused my mom told me that it will come soon. I learned that when you really want something or really want to do something the more patient you are the faster it will come. 8 7 15 2 2 2 2 1 2 2 2 +17989 7 Every day I have this kid sit by me on the bus. He is annoying every day but I listen to him anyway. We usely et a long but we debated about things sometime. He tells out rages story about @CAPS1 and snipers. Hes not really my friend but he come one to talk to. I think if I listen and talk to this kid is a god sent mission because he doesnt have many friends. 7 6 13 2 1 2 2 2 1 2 1 +17990 7 "Have you ever been patience ? I believe we should be patience .I think patience is something weall need in the futher .You can be patience while at the fair ,in the lunch line ,and when your teaching a dog tricks .Im going to talk about patience at fair .You should be patience at the fair .When your in line for rides ,you need to be patience .When your getting tickets or a bradet ,you need to patience .That is one way you need to be patience .Now the lunch line .You need to be patience .We all are going to eat so we should wait .I, have people at me all time ,they didnt have patience .Thats another way we should have patience .Now teaching your dog tricks .@CAPS1 one you need a lot of patience .You cant just expect a dog to know tricks @CAPS1 is working progress .You need to be slow and patience .That is why you need to be patient .You need patience at the fair ,in the lunch line ,and teaching a dog tricks .At the fair you need to be patient .At school you need patience .At home you need patience .That is why patience is important ." 5 6 11 1 1 1 2 0 1 2 3 +17991 7 "Patience is something that people don't have sometimes. I know I did once. And I 'm gonna tell you about it. It was a bright sunny day. All my family members were outside. My dad making hot dogs and hamburgers in the grill. My mom setting up the table. And me and my sibling playing catch with a football. All of us knew how to throw and catch a football but not my little brother. Considering the fact that all of us were chose to teach my little brother. We tried once, we tried twice, but he just wouldn't get the hang of it. Finally all my sisters got tired of explaining him the object of the game, so they gave up. Me, on the other side said it over and over until he understood it. I myself got tired of telling him over and what to do. But then I thought 'hey give the kid a chance he might just get it 'so I just kept on helping him. ""@CAPS1 is ready! Come inside"", my mom had called out. ""Time for @CAPS1 lets go inside"" I said to my little brother. ""@CAPS2! Just one last time, I promise I will get it!"" he exclaimed. ""@CAPS3, but just one time"" I responded. Even tho he had been saying that the past few hundred times he'd tried, I thought it wouldn't hurt to do it once more. As I released the ball from hands my brother ran up to it and caught it! After he caught it he shouted ""I did it"" and I looked at him proudly and said ""good job"" he ran inside to tell my parents that he finally caught it. I was really alod that I had token the time to help him. I knew he could do it @CAPS2 matter how many times I tried or he tried. I knew he would get it soon. And he did! And that was the time I was patient." 12 12 24 3 3 3 3 3 3 3 3 +17992 7 To me when some one is being patient they are in line or waiting for something and they're being very calm. Where they aren't rushed and are very quiet. 3 4 7 0 1 1 1 0 1 1 2 +17993 7 "My brothers checkup was today, why did I come? All I did was sit patiently for @NUM1, there was nothing I could do @CAPS1 I kept my cool. Waiting there in a dark room was hard, I picked up a near car magazine and started flipping through it, @CAPS1 the interesting thing was a article about a new @CAPS2 coming out. I read that in @NUM2 I went to the bathroom, and really soon was back in the wasteland of darkness. I whipped out my phone and texted a couple people. Five minutes passed and answer no I close my eyes and layed my head back so I waited and waited. Right when I was about bash my head on a brick wall my brother enters the room and says Thats it .And then I got a text by two people, it would have been better while I was board out of my mind!" 9 8 17 3 3 2 1 2 2 2 2 +17996 7 "The time I was patience was when I snowbling with my family .Because my dad and I h ave to get them wormed and get them off the trailar and start them and he has to ride one around and get us a track and I ride be hind him on the other sled and I muc to get the snow geon on and that is not ,we go to my aunt and house in @LOCATION1 ,Ive been to a lot of places on the sleds ." 7 4 11 2 2 2 1 1 1 1 1 +17997 7 "This is the time when I was patient to my friend @PERSON1. @PERSON1 and me live in the same apartment building, so we hang out all the time. One day I had an @CAPS1 to go to the carnival. I noticed she wasnt liking the @CAPS1 than she said she was scared of rollercoasters, but I told her it wont be a big deal, we will not go on big rides. The day of the carnival, came I was exsited so was @PERSON1, as we got there she was really scared to go on the on therides,so I told her we could go on the smallest ride. After we went oh a few she wasnt scared as much. Than wall, we were walking she saw a ride, one of the bigest rides there, she said we should go on that so than I told her if she wonted to I we could go on it, and she was sure, after that ride we kept going on differnt bigger rides, wall we were walking she said thanks for having patience and that I was a good friend. In summary that was the time I had patience for a friend." 6 10 16 2 2 1 1 2 3 2 3 +17998 7 "There have been times in my life where I had to be patient. My friends and I that day had decided to go to @LOCATION1 @CAPS1. I love roller coasters, but I hate the lines that come with. When we got there we had to wait a half an hour to get in. When we made the decision to go on the @CAPS2 ride first. Next, we had to wait another @NUM1 minutes to get on the ride. Other rides we want on too had a long wait. So throughout the day there was quite a bit of waiting. Even when we got food we had to wait with all this waiting it took a lot of patience. My friend and I had to be understanding and tolerant of the waiting and long lines. By the end of the day all of us had gotten used to using our patience. That trip to @LOCATION1 @CAPS3 taught me to be a more patient person." 9 8 17 2 2 2 3 2 2 2 2 +18000 7 "The patience, the engines roared, the propellers spun, the plane moved foward, toward the runway. Everyone cheered. Then we heard a loud crack and the plane stopped. We sat there for over an hour. Finally the piolt got on the intercom and told us to get our luggage, exit the plane and go back to the @LOCATION2. At that time I was about to lose my patience but I kept it. Why? Well, it all started at the @LOCATION2. I never really liked planes. However, when I heard we were going all the way to @LOCATION1, @LOCATION3 from @LOCATION4, I gladly took the plane rather than a long car ride. We boarded the plane at @LOCATION2 through gate @NUM1. The plane took off fast and we were flying. I was a little confused when we landed @NUM2 minutes later in @LOCATION5. I thought we were going to @LOCATION3! It turns out we had a two hour layover in @LOCATION5. I had to sit and be patient for two hours. I was really excited to go to @LOCATION3 and I hate sitting and waiting. Two hours later, we found out that our flight was delayed an hour. We sat and waited until we finally boarded the plane. As we started moving forward the planes wing tip caught on the side of the building and broke off. The flight attendents helped us unload the plane. I noticed all the grumpy faces of the people who wanted to get on with the flight. I a reed with them but I tried to be patient. After three hours of intense waiting, the plane was fixed and we were off. I knew if I had not been patient I would not have made it on the long journey to @LOCATION3." 10 12 22 2 2 3 3 3 3 3 3 +18001 7 "One time I got sent to my room, also I have sit on my bed and I could @CAPS1 do eny thing. I ask one time to get out and he aded more time. So forl about an hour and a half I has to sit in my room. I took a nap for about twenty minits. I was so bord and then he finily let meat." 8 4 12 2 2 2 2 1 1 1 1 +18002 7 "Once, I was @NUM1 old and I was so eager about getting a new bike I didn't have no patience at all, so that day I asked my dad can I get a new bike ""he said not now"" ""I said pleaseee"" he said later then, after that day my dad was getting dressed I said yes!! That's for my bike so. I went to my dad and I told him I'm ready ""he said what"" were are you going I said with you then he said no not now, I got so angry and went and sat down. After an hour has been gone my dad showed up, so I ran so fast and said can we go now he said ali be patient, I said why you said we are going to go, so my dad parked the car and went downstairs and ate lunch. So I started to get angry I went to the couch and sat their and watched @CAPS1 while my dad was eating. After he was done he said ali lets go!! I said where, to? buy you a bike I ran so fast and hugged my dad and went and got dressed. After I got my new bike and I was patient." 5 7 12 1 1 2 1 2 2 2 1 +18004 7 "This is a story when I was patient. I believed in aIeons. So I went in a field and sat and waited for them. I was about @NUM1 years old. So I thot to go out there, I am out there waiting and waiting. Then I saw something, my gosh its just a shotting star. I was so existed but is wasent one. All of a sudden I saw a deer and it was running rite after me. So I shot it. Then I was waiting I was waiting. I was bored so I made up a song. I am waiting for the aIeons yes I am waiting yes I am. When it got dark out I saw something. It was the aIcons. the space craft stop in the field. The aIeons walk out and shot all of them. Then took them home and showed them to the hole town. They didnt believe me the I told them to go to the field and look at the space craft and they all fainted. Thats a time I was patient." 8 8 16 2 2 2 2 2 2 2 2 +18005 7 "Patient ; When arriving to ceader point their was one ride it wated to go on, that is the @CAPS1. The only problem is that it is a @NUM1 hour wait. Standing there in the blazing hot sun on @NUM2 @CAPS2 days I was having second thoughts. Looking up and seeing the light and @CAPS3 difficult shades of green truck if the??? I knew it was worth it. After @NUM3 minutes @PERSON1 my brother was all ready board. So we played @NUM4 @CAPS4 to pass the time. I wore every time. Almost an hour later we get to the first pop and struck mageen. I get three pop and about @NUM5 cany bars @PERSON1 got double the around of me. Two hours later we got to the elevator was mouse bring us up it the??? At the top they strap us in to the frount row seat! What our luck. Crank! Crank! Crank! Went the roller as to slowly truged up the hill. Then own cart dipled down and we were @CAPS2 going @NUM5 miles per hour we whent up, down, side, to side, me up site down??? three minutes. When we final pulled back into the station @PERSON1 had puched @NUM1 times and??? Meating my group back the car we began the @NUM8 hour car ride home and I turned to my brother and said it is another, so own game of @NUM4 @CAPS5 began." 11 9 20 3 3 3 2 2 3 2 2 +18006 7 "When I was ten years old my mom promised me a phone. But then she I had to wait until @CAPS1. That got me mad because @CAPS1 wasn't until next month. I couldn't wait because this phone was a touchsreen with a key board. But I tried to be as patient as I could. The next day I kept seeing these commercials of the phone I wanted. It was very hard to be patient but I tried my best. So everyday I had to try to keep my mind on something besides the phone. Also a couple of my other friends had a phone and I really wanted to text them. Before I knew it it was only a week until @CAPS1 so I was excited, even though I had to pay for phone bill. I just wished the time would fly, but it didn't. So all I decided to do was wait. After six day past, tomorrow was already @CAPS1! My days of miserable waiting paid off! So I woke up the next day and opened my present and it was a brand new phone! My heart started beating of excitement. I was so happy then I thanked my mom. So being patient will eventually pay off." 8 8 16 2 2 2 2 2 2 2 2 +18008 7 When I was in fourth grade and I was going to a concert and I had to be very patient. I was waiting in a long line to get in. While I was in line I started talking to my friends we played games and walked a few steps up every a minutes. I sat there and walked up with my mom and sat down again and it was just seemed like the line wasnt moving at all! Finally we got up to the front and me and my friends were so excited. Being patient payed off because if I would have bothered my mom too much she might have gotten mat at me. I had a lot of fun after I got into then concert. That was a time that I was patient. 8 7 15 2 2 2 2 2 2 1 2 +18011 7 "Patience is used when people are not in a hurry to gett were they are going. Like checking out at a store or at work, some people can be rood and not use their patience at school and work you should always use your patience, like for an example, use my patience at kinchat school because there are over one handred @NUM1, graders, and half of them are bushy when its lunch time and the other half gets hurt and they @CAPS1 dont know what to do." 5 3 8 0 1 2 2 0 1 1 1 +18012 7 "A time I was patient is when I took @CAPS19 @CAPS1. @CAPS7 @CAPS2 test. It took two days to take the @CAPS3. @CAPS19 @CAPS3 was on @DATE1 and @DATE2, @CAPS5 @NUM1 to about @NUM2 pm. I passed @CAPS19 @CAPS6! I then had to wait (patiently) until @DATE3 the @CAPS7 @CAPS2 @CAPS9, @CAPS10 I received @CAPS19 @CAPS11 @CAPS7 @PERSON1 level one. That is/was @CAPS19 greatest accomplishments in @CAPS19 whole life so far it wasnt easy. I started when I was five, and I am now twelve. I had to perform @NUM3 @CAPS13 I knew at the time, and about @NUM4 stances, @CAPS14, @CAPS15, @CAPS16, and blacks. @NUM5 minutes of sporring ,also called kumite (kun @NUM6 minutes of practicle self @ORGANIZATION1. I also needed to make a poster, aparent recemendation, and teacher recamendation, @NUM7 written report, and a written @CAPS6. I needed to perform a @CAPS13 and show self @ORGANIZATION1 application and do @CAPS17 weapon skit and practicle self @ORGANIZATION1 skit and send in a progress report and/or most current report and card. Inconlusion I had to @CAPS18 @CAPS19 @CAPS7 @CAPS2 ,[@CAPS22 @CAPS23 or person were hormed in the making of this incredible martial artist/@CAPS24] (@CAPS25 life story )" 9 8 17 3 2 2 2 2 1 2 3 +18013 7 One time I went to cetar point and I was rideing in the car. And we were about @NUM1 hour away from the cetar point park. And I was talking with my sister @DATE1 and @ORGANIZATION1 and I fell asleep. And the we were there I was so excited and that I couldnt wait to go on the @CAPS1. And I was walking in the park with sisters mom& dad into the park and all I could hear was people scream on the rollercoaster and the we were in line for the @CAPS1 and I was in the back of the line and I was to unpatience and I was like in my mind comon comon and I was in like feeling like I didnt want to on it anymore and I was time to ride the @CAPS1 and I went on it and I was off the ride in matters of @NUM2 sec. and that was my story of patiences. 6 7 13 2 1 2 1 2 2 1 2 +18014 7 "Patience is a virtue I have always wanted. Sometimes I lose my patience when something take too long. In @ORGANIZATION1 seriously there was an event called @CAPS1. It was raising and many people wanted to see if @CAPS2 would close down. The rain inocaculously did stop but I had to wait until @TIME1. It was only six for! So in other words my family and I had to stand and wait for two hours and thirty minutes. The two hours seemed to take forever. It was a unbelievable torture! My brother kept on annoying us with queued squeaky noises. My brother had to be reprimanded three times before he stopped! Finally they let us in at @TIME2, and we got pop and hotdogs. We found our seats and began to watch. Man, Im glad I was patient enough. The show was worth the wait." 12 8 20 3 3 3 3 2 2 2 2 +18015 7 "One day when I was going to @LOCATION1 we drove for @NUM1 whole day because we went in the wrong direaction and my mom got made at night we were trying to find a hotel about @NUM1:30am I was the only one aware because my three brothers @PERSON1, @LOCATION2, caman were sleping in the back of the van my sister @CAPS1 and me were in the front and I got really angry because a guy. Look the last room they had but I was really angry patient and really we a room the next day we went to the @ORGANIZATION1 to stay we were going to the water park/musment park there was a new ride"" the scoping tail butt we had to wait for @NUM1 hour to go on that ride and I was really patient but my mom was getting tired and mad because it took so long then the next day it rained and rained so we went to the indoor fool at our hotel but we couldnt go in because there were in many people so we had to wait but I wasnt patient because I wanted to go swimming the almost a halve hour we got to go swimming then the next day we had to leave and this time it took almost two days to get us back home the time & we got there was at @TIME1 I was patient enough to help my parents get all the stuff in our house then we finally got to go to bed I was so happy." 7 7 14 2 2 2 1 2 2 2 1 +18016 7 "@CAPS1 kids. Today @CAPS10 are going to look into our microscopes. I will pick your partners. @CAPS5 @PERSON1. @PERSON1 picked @CAPS2 to be my partner. I think she is really smart. @CAPS10 were assigned to microscope The teacher told us @CAPS10 had to draw everything @CAPS10 see in our notebooks. @CAPS2 looked into the microscope, and saw blue lines scattered everywhere. @CAPS3, can I see? I asked. @CAPS4 I have to draw it in my notebook. @CAPS5 @CAPS2. @CAPS1, @CAPS17 hurry up. I @CAPS5, not noticing I was being impatient. @CAPS8, who can accept @PERSON3 in their group? He needs a partner. @CAPS5 @PERSON1. @CAPS2 looked up from the microscope and raised her hand. @CAPS10 can! @CAPS5 @CAPS2. @CAPS12! Really @CAPS2? I complained. @PERSON2, dont be rude. You know he is new to our @CAPS8. @CAPS5 @PERSON1. @PERSON3 walked over, got a chair and sat down right in front of me. He was patiently waiting for @CAPS2 to draw what she saw in her notebook. @CAPS2, can you go any slower? I shouted. @CAPS17, can you yell any louder? she shouted back. Finally it was @PERSON3s turn. He looked at the microscope and started drawing. I tried to peek at @CAPS2s paper. She noticed, and I quickly glanced back. @PERSON2, you really need to @CAPS4 your turn and be patient. @CAPS10 will all get a chance to look through it. @CAPS2 @CAPS5 to me. Youre right. Thanks @CAPS2. Im sorry I was acting like that. I @CAPS5. its alright, I act like that too, @CAPS3, maybe @CAPS10 should all sit together at lunch. @CAPS5 @CAPS2. That would be cool. @CAPS5 @PERSON3." 12 12 24 3 3 3 3 3 3 3 3 +18017 7 "Being patient is sometimes hard but sometimes you dont care. There are many times I was patient. Sometimes I have to wait an hour or @NUM1 minutes. There is a time when I had to wait an hour. The one time when I was patient was at dance. My mom danced me off at @NUM2. I waited five minutes because I was a little yearly. After I waited five minutes I had worried that maybe they were in a different class but no they werent. After waiting thirdy minutes I was really bored and remembered that dance started at @TIME1. I could of called home but I didnt have my phone. Then when five more minutes went by I went in the playset. Me and myself swinging alone. When I was @TIME1 my mom came to pick me up from dance but I told her, it starts at @TIME1. So I have to leave. She kept asking me why I didnt call and I kept telling her I didnt have my phone. Then she left and I went to dance for two hours. Being patient that long is humble to me. I can go fifteen minutes but I cant go an hour. Thats one of the horrible times I was patient." 8 9 17 2 2 2 2 2 2 2 3 +18018 7 I was patient when I had to witch @NUM1 little bad girls at my sisters house. My sister asked if I wanted to spend the @TIME1. I did then her god kids came over. That @TIME1 sister rembend she had to go some were. So that morning she left me with the kids for @NUM2 hours. So I had to wait patiently for her to come back. Finaly she did. 5 7 12 1 2 1 1 1 2 2 2 +18019 7 "One day I had to wait about @NUM1 hours which seemed like a year, but I didnt complain. I sat in the doctors office waiting to get called, I sat there and waited with my mom. I sat and read a magazine while my mom terted her freind. About three people got called in fourty- five minutes. But I sat and looked at the magazine. They called a kid whos name was @PERSON1, and I thought it was me because my names @PERSON2. I finished my magazine and went on to the next one. I thought I would like it because it had war on the front of the cover, but its just a cover nothing cool inside except a floating tranlula trick. About one hour passed and only five people were called. I finnally finished all the magazines and I was bored. I watched people get called and called finnally there were only my mom and I and another group, and of course they got called before us. It was about three hours till we were called, and when we did we had to wait even longer because they had technical difficulties with there machines. When we did get in we had to wait a half and hour for the doctor. But we got in, he made my knee twitch and then made me hop on one foot, why I dont know. But he did the regular put the thing that goes in my ear and the thermometer that goes on my tongue. But we finnally got out and went home. My mom asked me how could I be that patient, and I said, I have not a clue." 12 8 20 3 3 3 3 2 2 2 2 +18020 7 When I was going to the doctor I had to be patient I went there because my auntie driveway had a crack. And I was riding my scooter. I must wasnt paying no attention because my scooter. Had hit the crack so I sprang my knee. So my dad camed out the house to pick me up. I had to get in a wheel chair. And wait because there wasnt no more curtains left. I waited for a hour then I got my turn. And they checked my knee. Then they gave me chounces to walk with. It was pretty hard to go up my house stairs. 7 6 13 2 2 2 1 2 2 1 1 +18021 7 "I was patient when I was on my way to @LOCATION1 to see my @CAPS1. I was patient because I didnt want to get really excited about @CAPS2 .When I get excited about things we have a change in plans, and we would have to cancel. So I stayed call and we was in the car in a little over an hear then my brother forgot something and we had to go back and got @CAPS2 and I was patience about @CAPS2, ??? we was quiet the whole way there I had is the story when I was very patient about going to @LOCATION1." 8 8 16 2 2 2 2 2 2 2 2 +18022 7 "Has your parents or you ever sent an application for a job? Well my uncle did and was very patient about it. He wanted that job more than a kid wanted ice cream. One day my uncle typed up an application for the job he wanted. When he was done he copied and paste it for an email. When he pressed send he hurried and grabbed his phone hoping for the job. He looked at his phone right when he got up making sure there were no missed calls or messages. He knew he had to be patient. He was still waiting for the call @CAPS2 still nothing. It was one week and he was thinking about calling the place @CAPS2 he didnt. Then he got a phone call that afternoon so he quickly ran like a cheetah to get his phone. I was just my mom asking if he got the job @CAPS2 all he said was no with a sigh. I felt bad for the poor guy for not knowing yet until one day. The next morning he got a call and he picked it up screaming, @CAPS1 do you want! @CAPS2 not knowing it was the boss for the job. So he apologized and also got the job. He was so happy knowing he waited forever sort of patiently and got the job he wanted. When he went to work at his new job he really loved how he got it and now knew you always knew to be patient and everything will work out great. So now knowing always be patient no matter @CAPS1 the deal is. My uncle @MONTH1 not be an expert @CAPS2 he should be now. Again remember to always be patient and good things will come your way." 8 10 18 2 2 2 2 2 3 2 3 +18023 7 "Supper beast patience I was coming here from school are day on the going bus so @CAPS1 what felt live @CAPS2 I finals got have I ran inside I saw my high school bro with a box of pop I asked blare here did you set the mong for that is allows need mong . You wouldnt ques what he said I took it out of ur walles .I yelled what I have ben holding that in there so I could go to the movies. As I thought with ma ??? @NUM1 sade was friends. So I ren aut vumpt in the arr purched him right in the nose .It starts bleding .I try to run he grass ???. He could real me at each time. But he said Ill pay back when he let me so. I thought now he is so patient with me, he could of killed me and he didnt??? next week he save me ??? back and he last hit me sence ." 4 8 12 1 1 1 1 2 2 2 2 +18025 7 "When are they gonna be here! When are they gonna be here! I was in @CAPS1 visiting my family and my cousins were gooing to be coming in from @LOCATION1. I was so exited and very impatient I couldnt wait until they pulled up in their black car and I could give them a hug that would knock the daylights out of them. It was around lunch time and i was watching out the window while eating cold pizza. I kept on counting down from ten say they are gonning to be here in @NUM1 but they were never their. Soon i realized it was about @NUM2 p.m and knew i wouldnt see them untill tomorrow and i will be patient so i dont waste the whole entire day thinking about it. After a good nights rest i got up are breakfast, and then watched some @CAPS2. @PERSON1! @PERSON1! Honk!Honk! could it really be no it couldnt it was uncle @CAPS3 and his big motorcycle. A few hours later i heard @PERSON1 again and said uncle @CAPS3 is probably leaving but then i herd my cousins @ORGANIZATION1 and @CAPS5 flew up out of the chair and totally gave them a hug that knocked the daylights out of them. I guess patience really is the key." 11 10 21 3 3 3 2 2 2 3 3 +18026 7 A time that someone has been patient with me is when I was younger and my sister taught me now to braid. It took a long time and my small hands didnt always correct things. But my sister always helped me when she had time. I thought I would never do it right. And thats when she told me these words practice makes perfect she let me choose from her best string selection. And she slowly went over how to do it. And before I knew it I was braiding just as well as her. I am so happy that she encouraged me to keep trying and that she was patient with me the whole time. And that is an example of one time someone was patient with me. 8 11 19 2 2 2 2 3 3 2 3 +18028 7 "One time it was hard to wait, but I was patient and in the end it was @CAPS1. One time my family and I were going to @CAPS2 world. The morning I woke up I was so excited because I really wanted to get the air port and go to @CAPS2 world @CAPS4 we packed to car we drove to the airport. In the car my brother and I were talking about how excited we were. Once we got to the airport we got supper excited! When we got to the area were you wait for your plane the workers told every one waiting for the same plane as us that the plane to @LOCATION1 was gonna be around one hour late. My whole family and I really wanted to get to @ORGANIZATION1 world as soon as we could, but we would just have to wait, we walked around the air port and, and got something to eat. Then @CAPS4 that we only had to wait twenty more minutes! My family and I just set down and talked and before we knew it we were getting on the plane. Being patient can really help the soutition." 11 12 23 3 3 2 3 3 3 3 3 +18029 7 "On @DATE1 it was my birthday I was just turning @NUM1. I was so happy!!! Well while I was being happy and my big sisters were getting thing together for my party my mom was at work. We had everything at the party thing such as juice, pop, food, candy, chips, icecream, but no cake. My mom was suppose to pick it up when she got of work. Then it was time to open the gifts. After we opened all my gifts, it was time for cake and icecream. We had the icecream but no cake, but I didnt cry and scream like a baby, my sister did but she was still @NUM2 and I was @NUM1 and I had to act as a @NUM1 year old. My mom called and told us she was running a little late and she would be here after she get my cake. When my mom got home we cut the cake and when I took the first bite I said to myself it was worth the wait! I was happy I waited like a big kid, but I was even more happier I was @NUM1!" 9 8 17 2 3 2 2 2 2 2 2 +18030 7 "I am normally always patient, but the time I had to be the most patient was when I baby sat @DATE1. I was babysitting with older cousin @PERSON2. We were babysitting twin four-months old baby girls for eight hours! Let me tell you babies are a lot of work and you need a lot of patience with them. One time during the day that you needed to be patient with them was when they cried. These babies cries a lot and for a long time so it took a while to calm them down. Like when I sat one twin down it fell asleep, it would start screaming and I used patience to take time and calm them down. Another event during that day that I used patient was to fell them asleep. The baby I mainly took care of took a while to fall asleep. So I was patient while walking around the house and bouncing her up and down it my arms. Of course, eventually they both fell asleep. A third time I used patience was feeding them. See they were very small twins, so they took a long time to eat. Also when I fed the baby I took care of, natalic, I had to use patience to not freak out when she spit up all over my shirt. @PERSON2, my cousin also used her patience when her baby, @PERSON3, spit up on her too. That day took a lot of patience, but it was still very fun: and you can see that @LOCATION2 and @PERSON1 were lots of work, but patience definitely got me and @LOCATION1, through it." 10 11 21 3 2 2 3 3 3 2 3 +18031 7 "Patience is a very long task @CAPS2 the rewards out weigh the time you waited for the thing you were waiting for. From waiting for a computer to start up to a line to a rollar coaster, your patience will be rewarded. However many people are not very patient. (@CAPS1 me) @CAPS2 they can learn over time to be as patient as monks. In short, be @CAPS1 a trile and lots of patience." 4 5 9 1 1 1 1 0 1 2 2 +18032 7 "One time when I was little we were going to the dentist in ann- @CAPS1 and the was a lot of traffic and me my sister and my brother were in the car (we ended up waiting for @NUM1 hours) I was really unhappy so my mom told me to be patient. I didn't know what it meant at the time, but now I know. It means to wait and be calm. When I got to the dentist and sat down. I found out I was late so we had to go back home and do it again tomorrow." 7 8 15 2 2 2 1 2 2 2 2 +18033 7 A time when I was patient was when I went to sedar point. We drove from @LOCATION1 to @LOCATION2 and it was a long ride. When we got there it was a long line to get in. My mom said all right guies time to be patient. Once we got in we went to the first rid we seen. It also had a long line. Mom said we are going to have to be patient all day if we want to ride all the rides. 5 7 12 1 1 1 2 1 2 2 2 +18034 7 "Have you ever had to be patient? I had to be patient when my older brother broke his finger. This happened at his friends house on a trapoline one hot @DATE1 day. When my brother broke his finger it seemed like he was @PERSON1. My mom wanted to see his hand and his knuckles and all that stuff that moms always do. It seemed like it took so long to ask my mom a question if she was in the same room as my brother. My mom called the doctor's office during the third day of the accident and got an apointment for my brother. I thought okay what ever I'll stay at home while he goes to the doctor but there was one person in the way of that and her is mom. She said that I had to go to the doctor with her and my brother even though I didn't want to. After that day I kept selling my mom excuses why I couldn't go but she wasn't buying them. So after a very short car ride that seemed to be a long car ride of torture, we were in the waiting room waiting. In that waiting room we were waiting, waiting, waiting and guess what else if you said waiting then you are right. In the waiting second got confused with minutes and minute got confused with hours. Those ''hours'' of torture made the car ride look like a kitty ride. There was no entertainment of anything that could distract those cruel minutes from going so slow. If have ever soon a snail go imagine that six times slower and you'll start to understand how slow the time went by. Finally after all of the time we've been waiting the doctor comes in the room and asks for my brother. The only problem with the doctor is that she is even more boring. The doctor sat and talked forever using word so long it make the @CAPS1 look small. I was so tired that I stoped caring. Finally I was time to go hot no one was happy except for me. I was so happy to leave the doctor. Let's review. I had to be patient when my brother broke his finger. My brother turned into @PERSON1 and had to go to doctor. The doctor's office was exstremely boring. I was patient and finally I got to leave the doctors office. Some times being patient has rewards. My reward was being able to leave the doctor's office." 12 12 24 3 3 3 3 3 3 3 3 +18035 7 One time at the @CAPS1 @CAPS2 I was getting some arrows but no one was there to ring up my arrows. So instead of ringing the bell a hundred times I just waited there quitley and patiently. I was waiting for about @NUM1 min for some to come and when some one did come they said thank you for being so patienet and ringed me up so I could leave. That was a time I was patient. 7 9 16 1 1 2 3 2 3 2 2 +18036 7 A time I was pacent was I was wating in line for lunch. I was pacent becous thair where lots of other people in line and people where letting other people cut tham so the line was getting longer. That is the story of one of the times I was pacent. 4 4 8 1 1 1 1 1 1 1 1 +18037 7 "One time I was patient??? was my dad was going to sent me a @CAPS1 present. I was just waiting and waiting for it. While I was waiting I just and my??? day I sleep, are, play games invites class a lot, and watch tv, after two week I only got it, it was @ORGANIZATION1 dangs game and one houndred dolar, I call my dad and said, thank you after he played my game all night and save my hundred dollar until my birthday. That was the time I was patint" 7 6 13 1 2 2 2 2 2 1 1 +18038 7 As I walked down the lane looking for the perfect gift I saw the day before. I find out it was sold out. Today was my moms birthday and I find the gift. The perfect gift a precious moment figurine. I asked the manager if fact had any in the back sadly they didnt. He said The new shipment should be arriving at five. I didnt think I could wait another three hours. My dad drove me home. I was pacing back and forth thinking it would occupies sadly it didnt. Finally I realized I needed to relax and be patient before. I know if the time was five and my dad and I went back at the store in no time and there was the perfect gift right there in front of me. I picked it up and give it to the clerk to scan. I hand her the money and head strait home. When mom get home I hand mom the gift and realize patient come in handy when it comes to waiting. 12 9 21 3 3 3 3 2 3 2 2 +18039 7 "One day we were driving to @ORGANIZATION1 for a very special event to see the president of the united states of @LOCATION1, @PERSON1 when we got to the park where we going to see him there were cars parked a mile away! When we finally parked the car we started walking it was a long walk but when we finally got to the gate I was excited! after we got through security we though we would never get there. Me and my parents stood in that I think for about two hours until finally everybody spread out and look their places sang the national anthem the president stepped up to the podium and gave along speech. It was the longest line I ever stood in and I was very patient." 8 8 16 2 2 2 2 2 2 2 2 +18040 7 "One day I was at a baseball game in @LOCATION1 and the line was huge it stretch out for half a mile and we were at the end. So it took us about an hour to get up there so I had to be very very patient or else my dad wouldve gone crazy, so thats my story about patience." 5 4 9 1 1 1 2 1 1 1 1 +18041 7 "There was only @NUM1 minutes of class left and I had @CAPS1 to do. So I watched the clock tick down over so slowly. @NUM1 minutes left @NUM3 @NUM4 at @NUM5, the teacher asked, what are you doing? I said, @CAPS1. I have @CAPS1 to do why dont you put your headdown? I was losing my patience and was going to snap, but didnt. I put my head down and next thing I know, its time to go. I kept my patience and didnt get in trouble." 8 9 17 2 2 2 2 2 2 2 3 +18042 7 "Did you know that patients are one of the key to happiness. For an example I was walking and @CAPS1 this guy walked up. To and started talking to me about his family (just remember I wasnt very patient at the time.) @CAPS1 he kept going on and on until I snaped and said do you know to shut up! badly he said yes @CAPS1 ran home., crying. @CAPS1 I went home and when I got home I felt sad for the guy, @CAPS1 said sorry.! And for some reason he said got you I said what I was so mad but I was happy when it was over. But that taught me a lesson though, always be patient because you don`t know who watching, literally." 8 8 16 2 2 2 2 2 2 2 2 +18043 7 "I am always patient with my family, my mom and @CAPS1 do a lot of me and fan always patient if they take some where. Sometimes, for hockey my mom and @CAPS1 take me. Hockey. My @CAPS1 usally takes but on @DATE1 my mom takes me and I patient. For homework, I am always patient, if I go to @PERSON1s golfland my mom, saids she will take and Im always patient." 3 4 7 0 1 1 1 1 1 1 1 +18044 7 "Patience. My cousin ??? most patient person I have ever met. @LOCATION1 is studying to be a doctor, he must go through eight years of college. Eight years of termanology, teaching cells, learning human anology he has to be patient. My cousin goes to @ORGANIZATION1 which is pretty close to where I live and where my aunt lives. Romeo comes home a lot and never complain about homework or school or anything has got the highest patient ??? trust me. He is the perfect role model. Romeo is on his fifth year of college which means four down four to go. He doesnt have a certain way of taking stress out besides the fact he squeezes his??? Its not easy being motivated and relaxed ??? does that. Before he left for @ORGANIZATION1 he told me patience is half the process and half the reward. Romeo is patient." 8 8 16 2 2 2 2 2 2 2 2 +18045 7 "Here is a story, about patience, in my own way called @CAPS1s @CAPS2 @CAPS3. @CAPS4, hurry up and find my shoes ?????? And I do not want to be late for school again. I hollered at my @CAPS4 @CAPS1, @CAPS4 said in a hustled voice, you asked me a second ago, it doesnt take a second to find some lost shoes, you just have to be patient. I know, I know, I sighed but I still dont want to be late I know but remember, being patient will get you far. @CAPS6 I agreed. So that @CAPS3 at school @CAPS1 remembered her moms words and was very patient all @CAPS3. She didnt whine with her friends about the bus being so slow to get to school, she didnt cut her friends in the lunch line to get her food faster. At gym, she didnt grab the volleyball when someone had it the their shoe so she wouldnt be boared instead she stood there. During the end of the @CAPS3 @LOCATION1 friends started acting like her too. Their teacher noticed how very patient they were when they raised their hand instead of blabbing out the answer. At the end of that class period they all got some candy. The other students noticed and wondered how they could get candy. Then in @LOCATION1 next class she could feel everyones eyes on her but she knew it was for a good reason. Every one learned to raise their hands and not push when they left the classroom. Prity soon every one started getting candy and the teachers were so happy! When I got home that @CAPS3 I huged my @CAPS4 so hard then I told her what happened at school. I then learned to be patient from then on." 11 8 19 3 3 2 3 2 2 2 2 +18046 7 The day I stand for some free @CAPS1 of lays chips. When I was at @ORGANIZATION1 they was givein out free @CAPS1 of chip I was number @NUM1 @CAPS2 time I got to the front @CAPS3 @NUM2 frend @NUM3 The was have a give away day we got done @CAPS4 laye. I was reel patient I watet four @NUM4 hour and @NUM5 min we had chaw we got one chip and left the we got in liaret geme we was very tire we was going to @LOCATION1 the was the worst patient I @CAPS5 in. @PERSON1 4 4 8 1 1 1 1 1 1 1 1 +18047 7 "@CAPS1 was a beautifal morning, sky was blue, birds were singing, and my sister was going skydiving. Her and her boyfriend zone, were playing to go sky diving so me, my friend,, and my parents taged along to watch. We had a couple people in front of them so we had to wait for an hour or so. Then another hour passes. Still not even close to being there turn. We were starting to get hungrey so we went into town and order some breakfast, we got our drinks and were about to get our food when we got a call that they were going soon. We had to cancle our meal and hurry back to the place. We got there, still not there turn. I don't really know how but something happened to wide we had sit and wait in the middle of the field for almost four more hours! Finally there turn, they got in the plane and flew up. They circled the field for a while and then @CAPS1 looked like a little dot fell out of the plane, then another followed. They sailed down to a succes. @CAPS1 turns out that we sat there for eight hours befor they jumped. Not including the hour and a half drive there .I think that I was pretty patient that day." 12 10 22 3 3 3 3 3 3 2 2 +18048 7 "left! Right! High kick left, roundhouse sight! The boys arms are moving so fast you can barely see them. His legs striking the bag with tremendous power! @CAPS1! the old man yells my boy. @CAPS2 says you are lacking patience. The old man named @ORGANIZATION1 puts a blind fold on the boy named @CAPS3 and lets jolbs sand bags during at him. The first one hits him in the head, but the boy kicks the second one and busts it open. @CAPS2 grabs the third one and uses it to block the fourth one. The boy learned to be patient and wait for the enemy to strike first." 11 7 18 2 3 3 3 2 1 2 2 +18049 7 "One time I was patient when @PERSON1 @CAPS1 would not work every body sat down and was quet. It took up the hole hour there was a little, chitt chatt her and there but mostly every body was quiet for her while a capo of sudents helped her. We going to watch a movie about @NUM1 themes of @CAPS2, but when she tryed to play the movie, it wouldnt come on you could hear it but couldnt see it, the at the end of the hour you could see it but you couldnt hear it, but it worked for all the other the classes @PERSON1 said the next day she gave us fruits snacks for being so patient and she got the movie to work first it was in just gray and white the she jiggled a card then it showed color but the day that I was patient was the @NUM2 time. I was patient with a teacher she was proud of me and I was proud of myself I cant believe what I did for @PERSON1 then it happend again this time she let every body just chill in our chair and talk with our friend but I just watten her fix her @CAPS1 but the next day she didnt give us a treat because our treat was just chilling in our chairs and talking with our friends. That was a time when my classmates and I were patient." 10 8 18 3 3 2 2 2 2 2 2 +18050 7 When I was patien we had to wait in a line for a @CAPS1 coster I was scared of some kids in line were unpaitent and wanted to get on the @CAPS2 fast I was patient and waited util we got on I was verry scared when I were on When I got off I had a smile on my face I was glad I was patient 4 4 8 1 1 1 1 1 1 1 1 +18051 7 "You being patient is important. People should always be patient ¬ rush anything. All you have to do is take your time & wait. People need to understand that it you are not patient then particular things want happen to you. If you ever wanted something, then you have to be patient. One day at @ORGANIZATION1, my cousin, shayna was not being patient because she wanted on get on the dance box. But, she could`nt because a lil girl named @ORGANIZATION2, was on the dance box & shayna was not happy. And you know us girls when you we get our attitudes. Shayna got mad & started to cry & roll her eyes at @ORGANIZATION2. @CAPS1 she now up to me & said, she want let me get on, @CAPS1 I said, @PERSON1`@CAPS2 , you have to be patient & wait your turn because she was on it first & that would be rude and unfair to make her get off. @CAPS1 @PERSON1`@CAPS2 apologized & they both took turns on the dance box. But last, @PERSON1`@CAPS2 was happy & she learned her lesson." 10 8 18 2 3 2 3 2 2 2 2 +18052 7 "A time when I was patient was when my mom broke her hip. When my mom broke her hip ,she moved slower than my grandpa you are probally asking yourself hour does this make her patient ,@CAPS1 @CAPS2 had to follow her every where she went if @CAPS2 wasnt patient I think my mother would be in worse condition than what she was in @CAPS2 mean @CAPS2 took here almost fifteen minutes to walk to her bedroom . Normally Im not a patient person at all ,but when this happened I had to be patient .Im glad @DATE1 that I was patient because now I am more patient then I was before .My mom is proud of my behavior ,because I actually grew up for a few days to help her out when she needed @CAPS2 .Being patient is a good thing, you look at life different .now I can imagine me being patient.i mean Im not glad my mum get hurt but Im glad of my consequence of the problem .After the big accident hapend I have learned that everyone needs a little bit of patience like me that is one example about how I thought of I small were here away ever been patience ,without my mom." 9 8 17 2 2 2 3 2 2 2 2 +18053 7 "I know a girl, shes my friend, and her name is @PERSON1. @PERSON1 is a very good person. She eats all her veggies, does all her-home work, and has straigt As. @PERSON1 only has one problem. She is not patient. One day @PERSON1 and I went to the movie theater. We went on a saterday night so it was quite busy. There was a long line to @CAPS2 the tickets. @PERSON1 looked at me and groaned. I told her, @CAPS1 patient @PERSON1, it will only take like ten minutes. @PERSON1 groaned again and crossed her arms. @CAPS2 over it you potato sak, I told her. After about two minutes we were only five people behind the ticket counter. @PERSON1 was pacing around like she was in the worst case senerio. She started pulling her hair as I stared blankly at her. She ran to me and said, @PERSON2, we gotta @CAPS2 to that counter before I explode! I looked at her with my, why dont you just shut-up, eyes. Then she nodded. I stayed patient with @PERSON1 through out the night making sure she didnt go crazy. I made sure that I kept my cool so I could make sure we didnt @CAPS2 kicked out. You should always @CAPS1 patient or things @MONTH1 turn out bad." 12 12 24 3 3 3 3 3 3 3 3 +18054 7 "Today I am talking about patents. Patents means to take something easy or to handle something with comaness. Like for example I went to an @CAPS1 machean and I wanted to get money, @CAPS2 I put the card and the pen, then I wanted @NUM1 dolors @CAPS2 @CAPS3 gave me only the receipt @CAPS4 cash @CAPS4 cards @CAPS2 I dident brack @CAPS3 I just called the company and I got the mony and the card. New this is the main story I vent to the mall to get a shoe @CAPS3 vas one hundred and ten @CAPS3 was on sale one hundred dollors, @CAPS2 I wanted to buyit the casher man sad one hundred and ten dollars please @CAPS2 I told him @CAPS3 was on sale, he sad get out of my store @CAPS2 I told him I came to buy a shoe. @CAPS2 I returnd @CAPS3 and vent out. Theats atime when I was patient." 8 4 12 2 2 2 2 1 1 1 1 +18055 7 "A time I was patient when I went to @ORGANIZATION1 of @LOCATION1 with @CAPS4 grandma @CAPS1, grandpa @PERSON1, and @CAPS4 brother @ORGANIZATION2. We were all just walking around and we saw a guy drawing cartoon pictured of people. I said grandma @CAPS1 cant we do that please.@CAPS3 said yes. @CAPS4 brother got to got first. I was just waiting for his to be done. Then his picture was done we looked at it and we all laughed. I was next I sat on the seat the sun was right on me. I got very hot and I did not just want to sit their but I was patient. I didnt say a word just sat their and smiled. A picture that took about @NUM1 to draw felt like a half hour. Then I was done. I looked at the picture laughed and smiled I liked it. I was patient and I got what I wanted. A time I was patient at @ORGANIZATION1." 8 8 16 2 2 2 2 2 2 2 2 +18056 7 "I patience is a privilege I generally don't have, @CAPS1, I made an exception, though. @CAPS3 brother, @PERSON1 ran out to the car running from the pouring rain that described the mood @CAPS6 that day. @CAPS14 opened the car door, and the first thing out of his mouth was,"" @CAPS2 need to talk."" @CAPS3 @CAPS5 responded."" @CAPS4 about at @NUM1?"" I knew @CAPS5 didn't want to talk about what happened to @PERSON1, @CAPS4 @CAPS14 got an in-school suspension, around me. If @CAPS3 brother hadn't of cared about me hearing, I don't think I would've put up a fight. This was not the time. @PERSON1 divulged into his story causing tension in the air. ""@CAPS6, some guys who I realized aren't really very friend poured water purposely on @CAPS3 sweatshirt, @CAPS12 I went to tell the principle, @CAPS3 @LOCATION1"" ""@CAPS8. That's what you're supposed to do,"" @CAPS3 @CAPS15 interrupted. "" @CAPS9. @CAPS12 the person, who did it, @PERSON2, got in trouble and went into timeout. When @CAPS14 came out, @CAPS14 started to follow me, and I felt threatened."" I held @CAPS3 breath, looking straight ahead of me. Tension was what I was breathing, not @CAPS10. ""@CAPS3 @CAPS5 filled in the next part, ""@CAPS12 you. Started punching him?"" ""@CAPS13, yes."" @CAPS14 admitted miserably. ""@PERSON1, you need to find constructive ways to release your anger. There are going to be a lot of jerks out there. You can't start punching them,""@CAPS15 scolded. ""I know, I know now. I 'm sorry,"" @CAPS3 brother shuttered in his very annoying fashion. I timidly asked @PERSON1, ""would you like a hot dog when @CAPS2 get home?"" ""@CAPS16""I bit back any rude response to the mean tone @CAPS14 was using. I understood that @CAPS14 had a bad day. @CAPS1, I realized that being patient and understanding with @CAPS3 brother was the best thing I could do. I think I gained a little more patience that day." 12 10 22 3 3 3 3 3 2 3 2 +18057 7 "The place I was paitent it was at my moms doctor appointment. It was a little healthcare place at @LOCATION1 road and it was small and I had to wait out at the lobby and it was boring. I first started watching chanel @NUM1 news it got intrusting. Then I went at the front counter got a blue pen plank piece of paper then begun drawing when I finish drawing it look like a car that look as, it was a far car; and then I began looking something to do. I begaing finding and finding and then ther was a car magazine and there was cool cars low riders, exotic, costome, and more.When my mom was done I was patient and then we left home" 8 6 14 2 2 2 2 2 2 1 1 +18058 7 "One time I was patient was when I was standing in a line at the petting zoo. The animal I was waiting in line to see, was a donkey. It was a hot @DATE1 day around three in the afternoon of course a donkey was the crowds favorite animal. There only a couple people observing the other animals. In the donkey line, there were hundreds. I was around the middle of the line. I was getting tired but I had see to this donkey! I was being very patient waiting and waiting and waiting. Finally only a couple people were in front of me! I could get a slight view of the donkey. A couple minutes passed old I was petting the donkey: @CAPS1 was that patience worth it or what? I thought to myself. I left the petting zoo, happy. I had never been that patient in my life! I gave myself a bat on the back." 9 9 18 2 2 2 3 2 2 2 3 +18060 7 One thime i was in the doctors office and there was alot of people there and I was just getting there and my dad was telling me we should go because there are so many people and I said lets be puctiont and wait and he did so person after person and my dad was pactiont so it was @NUM1: hours till they caled are name and we went in and I got my five and vaxsene shots and we left and we went home and ate diner we not taco saled for dinner. 4 4 8 1 1 1 1 1 1 1 1 +18061 7 "Im really not a patient person but one day last. Years at the end of the school year. My older sister @PERSON2 was having a baby. And I wanted to go because that was my first nephew. So I went and so did my grandma, mom, my other sister my # @CAPS1 and my sister @CAPS2 the one who is having the baby. Boyfriend. There whe lots of people the and not all of use could go in at the same time I was to young to see the baby born but I didnt want to. My sister got mad because she couldnt go in there either so she left but I stayed it was boring. But I stayed I went in the room to visit it took @NUM1 hours for the baby to be born we went at nine the baby was barn around @NUM2 I went home to sleep at @NUM3 and went back ve there at @NUM2:00 we seen the baby at @NUM5 his name was @CAPS3 he is so cute and Im so glad to be his @CAPS4. Right now he is six months old and I love when I see him. And when he is older he will no that I was the whole time waiting for him to be born. Love @PERSON1." 8 7 15 2 2 2 2 2 2 2 1 +18062 7 "A time where someone I know was impatient was in my science class during a lab project. It was actually to me, a very funny way of impatience. My classmates and I were divided into groups at differents areas of the lab. We were doing a project on plant classification identifying the differen characteristics. So everyone was trying to quickly finish up their projects be taping their plants on their poster. After fighting for the tape from another group hogging it. Our group finally had the tape. So our group was just done, and two people from another group came to get tape. One of them tried to take some pieces and I guess to the other one he was taking too long. So the one waiting says, @CAPS1 @CAPS2! as a sign of impatience. It was hilarious!" 9 8 17 2 2 2 3 2 2 2 2 +18064 7 "When I was patient. I was @NUM1 yrs old when I got a as. I ordered it online and waited. @NUM2 days went by and still nothing, a week went by and a ups truck stopped at our house dropped off the package and left. I was so happy that I didnt even noticed that it was for ma mom. I opened it to find pampered chef stuff in it. I was really angry! @NUM3 weeks went by and nothing I was upset that I didnt really didnt know it I was gonna get about it. But a ups truck came and didnt see it and guess what in the package was my as! I didnt even realize it till @DATE1 I was so happy that I got it. That I forgot to order a game with it. And that was the time I was patient see ya." 9 8 17 2 3 2 2 2 2 2 2 +18065 7 "Being patient means waiting, when one of my brothers was patience. We were there for six hours just to bail out my brother, we had to go to four different prisons to take my brother out. I was scared but I knew ther if I was patient everything would come out good. So we were waiting we had to bail him at before @NUM1 oclock. We were theire since @NUM2 in the @TIME1. My mom was very nervous. I told her many time to calm down everything was going to be alright. So he and my cousin went in we asked if we could bail my brother out. They told us they werent bailing out at that time that maybe around @NUM3. So we went to get something to eat. We went again and they told us we had to sign a paper. So we did. Then it was @NUM4 o clock. They gave us something we had to cook. We went to @NUM1 different stores and they said we couldnt cash it. So we went to the chase bank and we cashed it and we took out my brother." 8 6 14 2 2 2 2 2 2 1 1 +18066 7 "One day it was a cool new game that came out. It was a kid that had volume @NUM1, @NUM2, @NUM3, and @DATE1, but they said this is the hot volume. The kid asked his mom for @PERCENT1 @CAPS2 said what for? @CAPS1 said so I can buy this cool new game. @CAPS2 said @CAPS3 your father and I have to pay bills and buy food. @CAPS1 said @CAPS4 I understand, in a dissaponting voice. @CAPS8, when the boys hard working father walked through the door. The boy said @CAPS5, could I please get @NUM4 ???, so I can buy this game. The father said @CAPS6, I know how much you want this game, but Im sorry I need to help your mother pay bills. The @CAPS6 said @CAPS4 I understand. @CAPS8 the boys grandmother called and said I need someone to cut my law for @NUM5. The boy grinned and said Ill be right over there. @CAPS1 mowed the lawn with excitement. When @CAPS1 got the @NUM5??? @CAPS1 went right to the game store and when @CAPS1 arrived the line was @DATE1 blocks long. His grandmother said well you gatto have patience. @CAPS10 as the boy was next in the line. To be continued" 11 12 23 3 3 2 3 3 3 3 3 +18067 7 "One day we went @CAPS8 the mall me. Sharae. Reynal. Me and @PERSON1 wanted @CAPS8 @CAPS9 @CAPS8 @CAPS1 @CAPS2 but sharae wanted @CAPS8 @CAPS9 @CAPS8 pac sun so we were patient and let her @CAPS9 @CAPS8 that store. Then me & reynal wanted @CAPS8 @CAPS9 @CAPS8 @CAPS3 but sharae wanted @CAPS8 @CAPS9 @CAPS8 @CAPS4 so we were patient & let her @CAPS9. Then me & reynal wanted @CAPS8 @CAPS9 @CAPS8 @CAPS11 but sharae wanted @CAPS8 @CAPS9 @CAPS8 @ORGANIZATION1 until @CAPS5 we said..ENOUGH @CAPS6. WE @CAPS7 @CAPS8 @CAPS9 @CAPS8 @CAPS11!!! She said ok, ok, ok but can I just, no. Please, no, please. NO! Alright @CAPS12 well @CAPS9 @CAPS8 @CAPS11, I was just gonna ask @CAPS8 @CAPS9 @CAPS8 the bathroom." 10 7 17 2 3 2 3 1 2 2 2 +18068 7 "Patience a helpful trait to get you through life. Being patient, waiting calmly or being content. A patient; A person usually waiting to see a doctor. There are many types of patient. Patient, a patient, or patience. Out there? Im going to talk about two kinds. Probably not the two you would think. I am going to discuss a patient and being patient. Although there is no pun intended, I feel that they both remind me of a story. One cold, dreary morning I had to take a trip. Not a field trip, nor a vacation. A trip to the doctors office. Why did I need to? To get my yearly vaccine, thats why. The morning probably wasnt really cold. I was just nervous, when we arrived at the doctors office ,(which seemed like it was even far away) the office man even called me and my dad up to the front window. He said I have an appointment for my son. And the lady at the front window said the @NUM1 appointment? @CAPS1 thats the one said my dad . Your son looks to be scheduled for, tetns vaccined @CAPS2 then told us to have a seat. I waited patiently, reading my book. After a while I started to feel uncased. I was quite bored, finding myself playing with my fingers in my pockets. My dad likes making funny statements, so he told me you know what? Youre a patient patient! I laughed. My laughing was cut out by the doctor opening the door. Before knew it, I was getting a needle in my arm. After that, I was all good. But what I learnt was that being a patient patient, helped me stay calm while getting my vaccine. If I wasnt so patient , it mightve hurt. I learned an important lesson that day." 12 12 24 3 3 3 3 3 3 3 3 +18070 7 "This story is about chicken hand the fox and a time he had to be patient. Let me set the scene, clung the scourge sends chicken hound and his mother, @PERSON1, to be boiled. They were both supposed be killed and thrown in the ditch. But chicken hound had only blached out. When he awoke he realized his situation and knew that he would have to wait until dark to get to @CAPS1 wall and waited although insects had snowded on him. Finally when the cover of night came he rolled in the mud to prevent any further blood loss and began his journey. That is when chicken hound had to be patient." 9 11 20 2 1 3 3 2 3 3 3 +18071 7 "I have used patience many times. I use my patience when @ORGANIZATION1 on the bus, at home and at school. The first time when used patiencewas when I was fishing. I was to at the time I had my tweety @CAPS1 fishing in one hand and a bag of salt and viniger in the other. And while I was waiting for a fish, I met my friend bubbles a norweigian goose he was also out maybe a week old. When I met him I fed him some of my bait and I guessed he liked warms so I gave him all my bait put down pole. And as soon as I grabed my chips I had a bite! I turned out to be a very small sun fish. But still to this day I see bubble once a year (he lives near my favorite fishing spot). And this year he had some side kicks two ducks I named them @CAPS2 and @PERSON1. There are very friendly and love skittles. @CAPS2 is kind of shy around other ducks and @PERSON1 is very content just sitting next to me or a bench. And bubbles loves cheeses and cuddling with his duck buddies and with me in the calm @DATE1 grass. And this story is true. The @CAPS3." 8 8 16 2 2 2 2 2 2 2 2 +18072 7 "My family and I were going to @LOCATION1 for @DATE1 break one year I was really excited to get there, but we had to take two long flights untill we finally arrived. My family and I got up super early to drive to the airport. It was about @NUM1 hours untill we got there. Then we checked are bags went throug securely, and went to go and find our plane. Then we found out our plane had gotten delayed. We sat in the airport for a few hours untill the plane came. Then we got off that plane we went to go find the next one. That plane was delayed to! So we had to wait a few hours again untill the plane came. Then we had to sit through another plane ride untill we finally got to @LOCATION1. This trip took a lot of patience because I was so anxious to get there." 7 8 15 1 2 2 2 2 2 2 2 +18073 7 "Write in your own say about patience. @PERSON2 and his mom are on their way to @CAPS1 @CAPS2 @CAPS3. @PERSON2 been waiting his whole life to go there. Bills mom gets a call from cousins, @PERSON3, bob and @PERSON1, his cousins ask can they go? @PERSON2s mom say sure. @PERSON2 is patient boy so he just lets it go. Still patient. Once @PERSON2s mom gets his cousins, his mom gets another call from his five friends. They all ask the same question his cousins ask. His mom says yes.They each live in a different place far apart, so it will take twenty minutes to get to each house. Finaly there. @PERSON2 is so mad but is still patient.When his mom gets another call @PERSON2 says who is it now !?! Its his dad calling to say. Im at the @CAPS3 with @PERSON2s brother and sister, where are you? @PERSON2s mom responded, I palling in now @CAPS4 is my story about patients." 10 8 18 2 3 2 3 2 2 2 2 +18074 7 Hi my name is @CAPS1 @CAPS2 and I am in school doing the meat testing ritte now as we speak well! What do you went to take about well lets take aBout we I had very very patient well I was going to see ecllpce the twilight saga. We got tikes ealy about a month ealy so I have to @CAPS3 very very patient so I wait and wait and @NUM1 has gone @CAPS4 so slowy and I start to think what if I stop thinking about it mite come faster. well I ask if I could got to a friends house and she was going to see the the move to so the month went @CAPS4 and it came the night @CAPS6 I get to go and see the move and my firend call me. She said she cant spleep she so exided I stade up all night thing and thing what was goting to happen in the move well I did know what going to happen a it dreved me cazy @CAPS7 knowing what was going to happen well I findy feel aslpeel and gase what I wak up and @NUM2 more areas and I will @CAPS3 getting reade to wache ecllpce and I area went @CAPS4 and I waz ready to go as so as I wach up I well it finly came we were on are way to see it: we got heare and we sat down in are sites and wache. The move it was hare but was patient!! Thats the time I had to @CAPS3 patient 7 10 17 2 2 2 1 2 3 3 2 +18075 7 "@PERSON2 and her twin brother, @PERSON1 waited excitingly in line for a concert. @PERSON1 hated going place with his sister, she was @CAPS6 weird. “@CAPS1,” @CAPS2 whined. “@CAPS3, @PERSON1@NUM1 asked take an earbud out of her car. “@CAPS4 did I have @CAPS8 come?” @CAPS2 asked impatiently. “@CAPS6 you could learn how @CAPS8 be patient, smart one,” @PERSON2 said looking @CAPS8 see how many people were in line now. @PERSON2 put her ear bud back in her car and blasted ‘@CAPS7 @CAPS8 The @CAPS9 Of @CAPS10 @CAPS11’ by allstar weekend. Allstar weekend the awesome band they would see in concert. @PERSON2 had always been the patient twin in fact that @CAPS3 everyone called her. @CAPS2 was the complete oppisite of her, the impatient twin. @PERSON2 almost enjoyed waiting it made her more excited for things.When then time finally came @CAPS8 see the concert @PERSON2 was glad she was patient; she was ten time more excited then anyone else there." 8 8 16 2 2 2 2 2 2 2 2 +18076 7 "There was a time when I was patience and I was waiting for a long time me my cousin, @PERSON1 was walking around town and we was looking for silly bans ok first we went to the @DATE1 store but when we got there they was closed so we started walking again and then we saw my brother and my other cousin @CAPS1 they was on bikes and we walk so then @CAPS1 said its a @PERSON2 store down there so walk down there. Then @CAPS1 and my brother told us to get on the bike and they walk. So we went to @ORGANIZATION1 and see how much they casy and they coats @MONEY1 and some of them coat @MONEY2 so we went to @PERSON2 tree and they was a @MONEY3 but we didnt get them because @PERSON1 didnt like the ones they had so we went all over the when we found them she didnt want them. So we went to my grandma house and she asked me where we was all day and I said we was out looking for some dom silly bans. And my grandma said dont go where @PERSON1 want to go. If your mama tell you to come over here come over here and I was trying to be patience by not trying to yell at @LOCATION1." 6 7 13 2 2 1 1 2 2 2 1 +18077 7 "Time my friend was patient! one day it was @DATE1@NUM1.and that day was when report cards came out. My grades were good I had @NUM2. But my friend @PERSON1, was failing. maths, she had an @CAPS1, and she knew if her mom see,s it she would get in trouble. @PERSON1 tryed to cross it out and put an good grade but she knew her mom will find out. so she told her mom report cards didnt come out yet. And her mom believed her. So then she tried re printing it. She called me and tried to get my opinion and I told her my honest thought and I said @CAPS2. but if you dant wanna get in trouble then yeah And she said. When her mom asked her did the report cards come out. She said yeah then her mom found out its not a real report card. So her mom called the teachers and it was a fake grade. Then she got introuble and she was patient about it and she said the truth. Her mom went to the office and got the real grades and my friend @PERSON1 was patient while she said the truth. Thats a time were my friend @PERSON1 was patient about her grades. Even though she lied and tried to change her grade.She still was honest, and patient about it. I know that it was wrong for me two tell her yeah, but she begged me so she wont get in trouble." 10 8 18 1 3 3 3 2 2 2 2 +18078 7 "Have you ever been patient? I have and I have to say it was rewarding. I was sitting in the waiting room at the @ORGANIZATION1s @CAPS1 @CAPS2. I planned to got my @CAPS1 washed, deep-condioned, and flat-ironed. The lady at the front desk called me up. Im sorry but @PERSON1 wont be here today. @CAPS3 there anyone else that youd like to do your @CAPS1? A perplexed expression spread across my face. @CAPS3 @CAPS4 here? I asked. yes, but she has a client right now. She can take you tomorrow at three oclock. she suggested. thats fine. I said. My feelings were kind of upset, but that all changed when I walked outside. It was raining. So I guess it was a good thing that I didnt get my @CAPS1 done. It was a good thing that I was patient. Being patient has its advantages." 11 8 19 3 3 2 3 2 2 2 2 +18079 7 "A time when I was patient was at @CAPS1 the largest indoor water park I was waiting to go on the turbo twin racers. @CAPS2 time @NUM1our @CAPS3 said in a robotic voice but it was only @NUM2 that means I have to be in the car for another two hours almost three, thats not fair I thought to my self but I knew if I wanted to make it to @CAPS1 I had to be patient and wait it out. I have to go to the bathroom I said in a moaning vice. well cant you hold it? my mother asked Im about to explode and your asking me if I can hold it? I thought to myelf. ok pull over here, but its gonna add to to our @CAPS2 time. I @CAPS4t core! I yelled back to my mom as I was running out of the car door. When I got back in the car I heard our robotic @CAPS3 say @CAPS2 time @NUM3. @CAPS6 man that means no more bathroom breaks I m gonna have to hold it if I have to go again. A hour or two went by when I heard the @CAPS3 say arive on destinaton on left @CAPS8! I schreeched out. I rushed out the door to the main entrance to @CAPS1 but then I saw a sign that water park closed! when suddenly I felt my dads hand hit my shoulder and he said sorry sport maybe it will be open tommorow. @CAPS9 out it wasnt open the next day it was still closed because they were working on to many rides that it was dangerous to go into the park, so I had to be patient for that whole day, but I couldnt we were leaving tommrow! Yhe next day it was closed again til five but we were expected to check out at @TIME1. So at @TIME1 the park was still closed and we were checked out I guess we can stay for the rest of the day. ll go send one more night my dad said. @CAPS8. I get to go in the park! And that was the time I was patient." 12 10 22 3 3 3 3 3 3 2 2 +18080 7 "I think patience means when your calm and you don't care what somebody @CAPS1 @CAPS2 doing, @CAPS3 @CAPS4 of patience @CAPS2 when your mom @CAPS2 shopping for a long time and you want to go to the video game store and you stay there that a good sill of patience a bad sign of patience @CAPS2 when you throw a bit of the store, @CAPS6 good sign of patience @CAPS2 when your at @CAPS3 amusement park and theres a @CAPS7 long line And you don't complain that's a very good sign of patience . A bad sign of patience In that situation @CAPS2 that you complian the whole time. . @CAPS6 good sign of patience @CAPS2 when you are waiting for your big sister to get out of the bathroom and you just wait until she gets out. A bad sign of patience @CAPS2 when you brake down the door and you have to pay for @CAPS9. Asked @CAPS6 good sign of patience. @CAPS2 when your locked out and for go to your friends house." 5 3 8 0 1 2 2 0 1 1 1 +18081 7 "I was patiEnt wen I saw a huge bass jump out from at my cottage. I waited and ate break fast and then went fishing. My little brother wanted to go fishing too. So I was patient enough to wait for him to get a new bait tie it and come out. So we get out front and he catchs a small bass so I unhooked it and brought him over to show mum and dad wat he had caught but little did I realize that a huge @NUM1 pound bass was rooming around out there. So as soon as I got out there first cast @CAPS1! A huge bass take my bate. At first I thought I caught a carp. but wen I saw that @NUM1 pound bass jumip with my bait in its mouth I shaking with exeitment! When I showed that fish to my dad he about fainted and the same with me, my mom and my little brother cody. And right now that fish is at the tax adermy." 11 12 23 3 3 3 2 3 3 3 3 +18082 7 "One day on my way to school I went to pick up my friend he told me that he had this new game called call of duty world at war he just kept on talking about it and what he dose online then last class of the day he sat by me and said I cant wait to go home and play my new game then I said cool then he said start complaining but I have to wait one more hour. I told him just be patient and wait then he said your right its not like its going anywhere I can play it anytime then he told me wana come over and play then we both went to his house and prayed the game, I told his remember to always be patent till the time is here." 7 7 14 2 2 2 1 2 2 2 1 +18083 7 "The one time I was patient was when I was waiting for the new game kill zone @NUM1. I had to come up with @NUM2 bucks. @NUM3 lt for the game and @NUM4 to put it on hold for me I got it the minute the store hade it in the shelvs. The maneger was poking them out so I grabed one and bought it. I went home ploged in my pss and started playing online. I now have @NUM1,190. Merged all together, the game is realy hard a day one or there was store manegers there one in the back. I do not suggest the game for all are under @NUM6." 9 5 14 2 2 2 3 1 1 1 2 +18084 7 "One day my family and me where going to @PERSON1 to see jimmy, because he was out on a job in @LOCATION2 fixing a belt line. After me and my brother got home from school we left to go to @LOCATION2 as we where travelling we seen a lot of things like the city of @LOCATION4 and all the buildings there . Then we seen a sign that says you are how leaving @LOCATION3 and another sign that said you are how entering @LOCATION1 and thats when it happened the traffic jam. We where going through @LOCATION5 at @NUM1.m how smart was that not very but the worst part was the waiting I t lasted for hours just sitting there but we found ways to away ourselves. Like watch the sea @PERSON2s ,waves, and look at the buildings there. Thats my example of patience." 7 8 15 2 2 1 2 2 2 2 2 +18086 7 "Time when I was patient was at the doctor appointment I was standing there, calm quiet. When the doctor called, me I wasnt nervous. So when the doctor gave me @NUM1 which, @CAPS1 didnt have at. Then, me and my mom went home happy. Got some hwigese and watch @CAPS2. Then , we had some spaghetti and went to had early for school. Then, I had a good day in school in the @NUM2 grade when I was in land. Then, I went home, do my homework, clean up the house, watch. @CAPS2, eat dinner, then went to led has a early start" 8 7 15 2 2 2 2 1 2 2 2 +18087 7 "A time when I had to be patient was on my birthday, about a week before my birthday, me and my dad ordered me an @CAPS1 girl doll. I was super excited because it was my first doll. The shipping was a problem, though. The week of my birthday. I kept waiting for the @ORGANIZATION1 @CAPS2 truck to come. I was dissapointed, because the shipped it from @LOCATION1 and it doesnt take that long to get there. Another week passed and still not here. I had to be extra patient. I could track it online, but I still wasnt happy. The reason why it took so long to get here was because when it was already here, they kept it in the post office. Then finally my mom go ahed to ask when theyre going to send it and the lady said, its on the way. A couple minutes later, the doorbell rang. I screamed when I opened her up. It was worth the wait." 9 10 19 2 2 2 3 2 3 2 3 +18088 7 Patience what can I say it dont have none of personally like things to go quickly I also dont like it when people do things slow. 3 3 6 0 1 1 1 0 1 1 1 +18089 7 "Patience is not a natural thing, it's something you have to learn. Taking a three hour carride is a perfect example of patience. Exactly like what I experienced. As we packed our suitcases for @CAPS1 city, I @CAPS2't contain myself. I was already packed up but mom and dad were standing. ""@CAPS3 you please finish packing see I really want to go! "", I exclaimed ""You'll just have to wait a minute, ""Do ?? But I @CAPS2't wait, so I grabed??, threw them in the trunk of our car, and walked to our kitchen to finish reading a book while they packed. After they finished cooking dad was carrying the last of the bags @CAPS4 their bedroom to the complain he notice me, setting patiently at the look. He thanked me, saying ""@CAPS5 for being so patient, and just for that, mom and have surprise. For you. He set down the sultans, and briskly walked over to a white plastic had the suddenly pulled at a rectangular favor it was the some in the @CAPS6 @CAPS7?????? it wash ? you????????. Kind you so much man ? Replied. This just goes to show that prince really says off. Only if you don't complain of course. !" 11 10 21 3 3 2 3 2 3 2 3 +18090 7 The time I was patience was when I was @NUM1 years old when I was @NUM1 years old my mom said I had to go to the dentist @DATE2 it was @DATE1 so @DATE2 it was @DATE1 so @DATE2 my mom waked me up then I said yes Im going to sleep she said wake up its time for you to go to the dentist I popped up in and started screaming she was like be quiet because other people in this house is tring to go to sleep I said ok mom she was like go grab you some clothes I like ok so when we had both put on some clothes I was just saying stuff I was like Im going to the dentist to get some stickers I just keep saying that so when she pulled up in she parking bf I stopped in and said we here then she parked the car I opened the door in then she parked the car. I opened the door in then my mom signed us in then we sat down it was a lot of people there so when we sat down @NUM3 mins later they called us I was about to yell but then they came so the dentist lady took me to the room in told me to lift my head up for she can put the thing on the so the move doctor came in he was like we are about to clean your teeth. I was crying cause I thought it was gonna hurt so I was crying talking about its gonna hurt so they put the thing on my teeth they said set it dont hurt then they was done @NUM4 mins later so the female lady dentist was like you pick @NUM5 tickers I was so happy because I finally got some stickers so when we left we got in the car on then I went to sleep. that was the day I was patience. 10 6 16 2 3 2 3 2 2 1 1 +18091 7 "One day I had to be pachent it all started when I raket some leves and I was going to get paid for my work, well I was going to get it the day @CAPS1 I whanted it that vary second @CAPS2 I had to be pachionto." 3 4 7 0 1 1 1 1 1 1 1 +18092 7 "One of my storys of being patient is this one time was at my uncles nonse and I wanted to play the tboy @NUM1. Well the was like five other kids to and I asked him if I could play and he said I had to be patient. So I sat there and waited like for a hour or two atleast it felt like it and I didnt say a word about it the whole time, then I finally got to play. Thats my story about being patient." 9 7 16 2 3 2 2 1 2 2 2 +18093 7 "I was @PERSON1 when l was about to have an allgen l sat and wait for @NUM1 hours. I had played my @CAPS1 @CAPS2. For an hour, then l watched tv l got before so l started to pace my parents had to stop me from leaving @NUM2 times l almost left the floor the sixth time. Then l came time for me to go down to the angeo room. It was a fight cause l wanted to walk and they said no. but they won. Then after the angeo l had to lay flat for @NUM2 hours. Then I got to go home" 8 6 14 2 2 2 2 2 2 1 1 +18094 7 "@NUM1 years ago our immigration limit had ran out. We needed green cards to become @CAPS1 @CAPS2. So we went to an immigration center in deproit. We walked up to the front desk and told the lady we were here. She told us to go sit it in the waiting erea. There was about @NUM2 people there! I knew we were going to be here a while that point forward. We went to the waiting erea. I had no way of amusing myself. It stricktley said in the front, no gaming devices, no musical devices. All phones must be switched off. It was tourcher. After about an hour and a half they called our name. I was so pleased. After we got our finger prints and everything completed and we walked out to the car, my mom said she was very pleased of the way I behaved in that office." 9 8 17 2 2 2 3 2 2 2 2 +18095 7 "I remember a time when I was patient. I use to be able to wait for anything.one time I was so patient I asked my mom for a game and she said, tomorrow and she got the game the day I asked her. At one time I thought I was the most patient person In my whole family. I am so patient I can wait a month just before I go to cedar point. You have to be burn with patient. Some of my friends are patient but they cant wait as long as I can. Some of them even ask me to teach them how to be patient. I say the same thing to them what I say to everybody who asked me about being patient. You have to be born with patient. Its not something you learn over the years. I could want three week without getting paid from my dad. As some people get older there grow lesser. That doesnt work on everybody. But sometime soon I know my patient will be like everyone else when I get older. Who knows maybe somebody might be more patient than me I the world." 6 9 15 0 1 2 3 0 3 3 3 +18096 7 I have used patience a lot of times but I think the most patience Ive had was hunting. You just have to sit there not talk and stay still. I was hunting out behind my house with my uncle @PERSON1 and we got out there at six-o-clock am and the waited there until nine oclock at night. The dear finally started to come in and one dear got close enough for me to shoot. I drew my bow and shot at it but it was so dark I could hardly see and I missed it. My uncle didnt even see it until the last second and when I pulled the trigger of the release I knew straight away that it was going to miss. All you could hear was the dear running away and the arrow crashing through all the leaves. So later that nigh we went home really hungry. 8 8 16 2 2 2 2 2 2 2 2 +18097 7 "A time when I was patient was when I ordered a @CAPS1 in the mail. It was a cool @DATE1 @TIME1, and I was ordering a @CAPS1 online. When I got to the shipping, I paid it, and went to the check-out screen. I saw the time of how long it would take to get to my house. It said @NUM1 weeks.@CAPS3?!I exclaimed.Thats a long time.@CAPS4 it was decided. I had to make through @NUM1 weeks. I was ready. @CAPS4 I waited. And waited. And waited some more. Until one @DATE2 I saw a @CAPS1. The address said @CAPS6 @CAPS7! I was @CAPS4 happy! This incident taught me to always be patient, because chances are, youll get @CAPS3 yar wanting in the end." 9 8 17 2 2 2 3 2 2 2 2 +18098 7 "That warm tear running down my cheek, the hot wind blowing my blond hair out of my face. The only thing I could think about was why god had to take her so soon. Lets go back a week ago. We had just got the news my grandmother was going up to heven with the angels very soon. As soon as the next day we were on a plane heading to @LOCATION1. This was my dads mother; he was calm at the time but we all had to be patient with him because he was the closest with her out of the @NUM1 children. When we finaly took off we were in turbulence the whole @NUM2 hour flight. Which ment we couldnt get up, @CAPS1 food, @CAPS1 @CAPS3 and also the queezy feeling in your stomach. It was the @CAPS4! Flying experience Ive ever had. I flew all the time, just this time it was horrible! We had to take @NUM3 stops till we got to the @LOCATION1. Then another @NUM4 minutes till our bags came in. I was so happy to get out of that death trap! When we got to the house, I had my last time with my grandmother. Its a : memory I will never forget. The stuborn little smerk on her face when we walked in was priceless. One thing I will never forget was my nickname from her chicken little." 11 11 22 2 3 3 3 3 3 3 2 +18099 7 "@CAPS1! @CAPS1! @CAPS1! @PERSON2 said, I wanna go first! @CAPS2 the time in cheerleading this girl named @PERSON2 thought she was the first to do everything. Oh yeah my name is @PERSON3. Im always a fiuter along with @PERSON2. Im always patient and wait my turn because I dont wanna complain or be a poor spot. @CAPS3 set! @NUM1, @NUM2 down up @NUM3, @NUM4, @NUM5, @NUM6 the two bases and backspots yell. They pop @CAPS4 out and up thenscream @CAPS5! @CAPS6 job. @CAPS7 says. @CAPS8, its my turn, @PERSON3, you can do this your better then her. I thought to myself @CAPS9 we can do this. One of are bases @PERSON1 said. I get @CAPS3. Hand on shoulders @CAPS3 to get poped up into the air. Are other base @CAPS10 says @NUM1, @NUM2 down up! Okay, @NUM3,@NUM4,@NUM5,@NUM6- @CAPS5! @CAPS6 job @CAPS12! @CAPS13 cheers but loss. I was so excited, I just did a pop @CAPS5 without messing up my @CAPS5. I thought with excitement. Being patient might be @CAPS6 after @CAPS2. From that day on Ive always be patient. It can really help you out so you know what you have to work on or work less on." 8 9 17 2 2 2 2 2 2 2 3 +18100 7 "Are you good with being patient? Sometimes I am but sometimes @CAPS1 not @CAPS2 going to tell you a story when I was patient when @CAPS1 normally not patient in situations like this. I had want to school with my mom so she can take a test @CAPS4 drop me at the mall to meet my friends up there. While I was waiting I was texting and on the internet, @CAPS4 my stomach started to rumble, I was hungry. I wanted to text my mom and make her rush so I can get something to eat as I was texting I stopped and thought about what was I about to do. I knew @CAPS5 hard long she had studied for that test. I didn`t want her to get a bad grade so I just sat there. I texted people. People called me so my mind was off food. After my mom finished her test she came out the room. I asked her @CAPS5 did it go? she looked at me smiled and said I felt confident, but know @CAPS1 hungry I shouted out me to we got in the car and went to subway. I had got the forest now meal. With cooking, chips, and a drink it was delicious. My mom had dropped me off at the mall I told my friends what happened. We laughed for some reason. @CAPS4 we went @ORGANIZATION1, charlete, @CAPS7, @PERSON1 and others places as well. After I thought about it I never want to do that again. I was starting and my but started to hurt. I sat there for @NUM1 hours with nothing to do never again will I do that. At least I had bounding rime with my mom. Thats one bright side." 8 10 18 2 2 2 2 2 3 2 3 +18102 7 A time when I was patient was when I was at school. I was waiting for my sience teacher to call on me to get ready to go. I was siting down in my seat. She was calling people to stand by the door to get ready to go to their next class. 5 8 13 1 1 1 2 1 2 2 3 +18103 7 "Patient @PERSON2.Hay, when is are food going to be her (said @PERSON1) you half to be patient, said @PERSON2, wall in so @CAPS1, said @PERSON1. Well you will have to unit ok; @CAPS2 hears your food (yes @PERSON1 shouts patience is all ways the??? @PERSON2 Im done ending lets go said hides hold on how do finish my food hurry patience, fine) Im done. Wow that??? ??? ??? @CAPS3 patience is the ???.you ready yup, off we go,??? Success lala- whait you poist it and @PERSON1 all right btd an, @CAPS3 hurry patience, @CAPS3 said @PERSON1, fine Ill just go slower and @PERSON2, @CAPS4 Ill have patience. Where here ???@NUM1 min.??? this is a good new that was a good right ??? I @CAPS3 right Im dad you have @CAPS3 ??? now and soo thanks. Hay @PERSON2 look at that dymp talking down strands us, where @PERSON2 replied the @NUM2 story building @CAPS4 wach out said @PERSON2, patience @PERSON1 said, you dont need patience yes I do just i.k I tolsplat @CAPS3 if only I wasnt a patient." 6 5 11 2 1 2 1 1 1 2 1 +18105 7 Have you ever had tot waiting @NUM1 hour line? this is what it was like for me and @CAPS1. We were at ceder point waiting to ride too thrill dragster. We had just got there the first thing we decided to do was ride the top thrill dragseter but the line was about a three hour wait we went anyway. We had just fineshed our first hour of waiting but it felt like three. I knew I had to be patient and relaxe but it just felt like forever. after anthor hour my stomach started to growl I checked my watch it was @NUM2 we had got here at @NUM3 I was starving and tiered but I stayed finaly an hour later it was our turn when I got off I knew it had been worth it to be patient. In conclusion I learned that patience is something you half to have for a lot of thing in life. 8 9 17 2 2 2 2 2 3 2 2 +18106 7 "Don't you ever whis ever one in the world would be patience, @CAPS4 if you don't I do. Lucky for me one time I was a not so good girl and I did something I was not suppos to do, but since I have such grate parent they were trying there best to be patience with me, like all parent they had to give me a lecksore about what I did, but they did not let me got out of the hock that easy. ""@CAPS1 @CAPS2 please come down to the office"" I herd on the anoament, @CAPS6 I was walking down one hallway I was really??? ""what have I done"" I ask myself, I was thinking really hard. By no time I was at the office ""yes"" I said to the person that was there ""Do you now why your hear"" @CAPS3 said ""no"" I replayed. ""@CAPS4 I been having some complain from these girl"" @CAPS3 had told me ""@CAPS4 oo ya"" I said ""@CAPS4 ya what"" @CAPS3 said ""was the only reason why I was bing mean was because they were bing mean and they were bing so suck up they would tell my friends that the only reason I hanged out with them was because they had money wich was not true"" I said ""ok I get were your comeing from, let me call them down"" @CAPS3 said."" @CAPS5 and alesay come down to the office please."" @CAPS6 they came down the hallway I could hear there foot step. I really did not want to talk to them to be contined." 8 8 16 2 2 2 2 2 2 2 2 +18107 7 "One thing I am not very at ient with is the meap. The reason I am not patient with the meap because it is very boring you can not talk and it is dull. I hate the meap it is very difficult, you dont see tenn see or @CAPS1 doing the meap. The meap expect you to do to much work the meap is one of the reason I dislike michgan. The meap asking you questions and words you never saw or herd before. In my opinion @CAPS2 we are going to do meap I wou ld prefer them to ask question and words that we know. Another thing I dont like about it is that they grade our writing on opinion they grade of what they think of it. To mi the meap is stupid @CAPS2 I had a choice I would chose not to do it. Since the meap is important I do it for my grade. These are the reason why I am very inpatient with the meap." 8 5 13 2 2 2 2 0 1 2 2 +18108 7 When I was little I was pasent I would always sit and what for derection my mom always liked it that way @CAPS5 now sence @CAPS1 bigger she think's @CAPS1 inpasent @CAPS5 your what @CAPS1 not I am pasent I get along I am not ancey I m not the type when they say (when are we going yu gu) That is I when was @CAPS4 learning how to speak @CAPS5 I geuss that is how it gose and @TIME1 I was pagent because my mom and dad were having a talk and I was not about to here it it was gurorope talk. 5 6 11 1 1 2 1 1 2 1 2 +18109 7 My mom patient because I use her phone a lot to text and to my girlfriend and to text and call friends she tells me when i get a text or a call when she needs to use it. 4 4 8 1 1 1 1 1 1 1 1 +18110 7 "A time when I was patient was @NUM1 for @CAPS1. My mom told my she was getting me a @ORGANIZATION1 fo @CAPS1 I was so happy then when @CAPS1 come and I was opening my presents there was no @ORGANIZATION1. So I asked her about it she said she would get it @DATE1 when taxes came so I had to be patient and wait for @NUM2 months and a couple of days. I was mad cause I thought she had it. So I just had to go to school and wait and wait until @DATE1 came. It seemed like the days got longer and longer. I was getting mader and mader that was the longest @NUM2 months ever I didnt even know it could feel so long like that I though a year went by. Ater @DATE2 went by it was finally @DATE1 but I didnt get it to like the end of the month that just crushed my little heart so bodly to wait for some thing that long that I wanted so bad. When I got it was so fuh to play with all the games and apps and the conqurors is it was amazing.If something was to happen to it I would be destroyed. A @ORGANIZATION1 is expensive, but once you get it you have to take care of it. Thats why is keeping in a special place away from little kids. I dont even let them play with it at all and if I feel hide they might can play with my supervision thats the only time they can play. That thing cost to much money to get lost or broken. Specially after all that time I had to wait. My little sister is getting some thing like it but its some kind educational one. My little brother is getting, a ds..Im happy they getting some thing they can stop asking for my stuff. My mom is getting me some games to it for my birthday I had one but my little brother or sister lost it I was so angry how they cant play it at all. That was defenitly some thing to wait and be patient about. Thats why??? can play it because Im saved of il getting lost or broke. If it does my mom wont get another one." 8 12 20 2 2 2 2 3 3 3 3 +18112 7 "The first time I baby sat was with @NUM1 little girls. A toddler named @PERSON1 and a baby named @CAPS1. After their parents left, everything was fine. That is, @CAPS4 @CAPS1 started crying like crazy. At first, I thought she was saying, @CAPS3, @CAPS3! @CAPS4 I realized she was saying, @CAPS5, @CAPS5!. Her @CAPS5 is a blanket and when I handed it to her, she stopped immeadiently! Now I realize how patient I was with her. Im glad I figured out what she wanted. Hopefully, next time Ill be just as patient." 8 9 17 2 2 2 2 2 2 2 3 +18114 7 When I had to @CAPS1 patient one of my most memorable time when. I had to @CAPS1 patient was when I ordered my first cleric guitar I ordered my guitar of of areputibal guitar website that my guitar teacher @CAPS2 I waited and I waited tell finially I got my guitar I took it out of the @CAPS3 and it was chipied. I was extremly angry. We sent the guitar @CAPS4 for a new one about @DATE2 I got another guitar a so I though opened it up. It was the same guitar I had sent @CAPS4 I was even more angry. So again we sent the guitar @CAPS4 hoping that we would finally get the wright one. It was @DATE1 and I got my guitar. I was so happy and this time it was not angry I was so happy when my guitar will come and will @CAPS1 @DATE3 ice wich is my birthday. 10 8 18 3 3 2 2 2 2 2 2 +18115 7 Patience is a special skill for some people and some its very hard. When I was a little girl I was never had any patience and even now. I do not have any either but my friend was always patient for me yah she would tell me to hurry up or lll leave but I would just start laughing and come down right away. She waited for me to pick up a stray cat and jekc it to the pound thats what she would always do to. Patience I will probebly never lean till @CAPS1 like older but I know I will learn it someday. One time my friend waited for @NUM1 hours just to learn about history I would have never learned that my but then again she did get ??? ???? on her @CAPS2 homework. so her patience for that was like really cool and she told me that patience is a number one priority. his was one time my friend had patience. 8 7 15 2 2 2 2 2 1 2 2 +18116 7 "It was a bright sunny day and there was a long line outside the airport. People were waiting for their flight to @LOCATION1. It has been three hours and everyone was getting impatient, but there was a young little boy in the group that didnt seem to complain, he was very patient. Now it has to be five hours, their flight has been delayed, the sun went down, and there was a riot going on, but still the little young boy was still waiting patiently. It has now been twelve hours, people begain to leave, it was midnight, and yet the boy was still waiting there and has not yet move. Now there was only fifteen people left, it was dusk, and yet the boy waited there patiently. There flight has arrived and only there was three people there. They went in the plane. The other people that left saw the plane ready to take off and ran towared it. But they were too late and the only people who made it to @LOCATION1 was the two girls and the patient boy. The end." 9 11 20 2 3 2 2 3 3 3 2 +18117 7 Patience is difficult to do. Waiting in line for something or waiting for a letter to come in the mail. A time when I had to use patiences was when I thought of a great poem. I heard about a book that you could enter your poem and then might put it in the book. So I worked for a couple of days as hard as I could and I only ended up with @NUM1 lines. I couldnt think of anything else so I entered the poem. It said on their website that the letter will arive in @NUM2 to @NUM3 business days so I waited for a long time. One day @NUM2 months from when I sent the poem in I got an apology letter for it being so long for them to respond. Anyways I kept reading and it said that I used patience. 8 11 19 2 2 2 2 3 3 2 3 +18118 7 This was one day when I had to do something that I didnt want to do and if I didnt do it I couldnt go no were or go to the movies. When I was at my aunt house an I had to clean up her house an I didnt want to do it so she had told me that her house should be clean when she come back home an I was the only one there. When I went to @CAPS1 point everybody went on this scary high in the sky ride an you have to take your shoes of than we got something to eat. The next day when everybody wolk up we heat from the hotel and went home an ate breakfast an than I didnt wont to ride my uncle four wheeler down the hill but he had started it up an push it but I had on knee pads and elbow pads and gloves. When I got to my grandma house. I didnt know that every body was help but I dint want to but my mum made me help so nobody went outside to play football it was a good game cause I look out the window the whole game I didnt patient cause I wasnt in it. Wow a was watching the football game out the window the other childs run out the door an I was not done with the wall 6 4 10 1 1 2 2 1 1 1 1 +18119 7 "The time that I was patient was today when everyone was takeing the @CAPS1.E.A.P. when we all get into the classroom nobody what so ever did not want to take the @CAPS1.E.A.P, when our teacher told us that we had to write on five pages and on @DATE1 we had to finish part two of the writing session, nobody wanted to. So when we got the paket that we had to bubble in our answers we had to fill something out on the front of the paket. Then we had to put our first and last name on it befour we could take a break. When the break was over we needed to get a n free reading book and our teacher had to read all of us the directions to us we ,got started and when everyone was finished she told like five or more people that they could have a bathroom break, when everyone went she read the directions to the other part and when everyone was doing that same people got done really early and they got really board and they didnt want to read so then they all started to talk she would be right back that she had to go to the bathroom so once someone to came in and would wach us then all of the guys would make paper basket balls and started to shot them into into the tiny basket ball hoope and then she came in and told us to get in our seats and that we would be starting the last writing sesson and that after this it would be lunch and it might even go though or lunch and then everyone was freaking out. So that was the time that I was just patient." 8 8 16 2 2 2 2 2 2 2 2 +18120 7 One time when I had to be patient was when I went to my first nascar race. I had to be patient because there wer a lot of people there on I didn`t want to get last. An I had to wait till the people who were in front got in their seats. Second- we finally got our seats an I had to sit by this scary person he was weird so the race was beginning an you could tell because the racers were getting into there cars. The jets went over us and the @ORGANIZATION1 was going. Then the racers were off to race. Finally the race a starts on my favorite racer is in the lead (@PERSON1). The cars were going so fast around like you could feel the bleachers shake. It was a fun exsperense but you had stay close is listen and be patient. 10 8 18 3 3 2 2 2 2 2 2 +18121 7 "I am never paitent, but which I am it is only once and a while. Sitting down and not doing a thing drives me to be insane. When Im doing nothing and it is really quiet. I get really bad headaches. In school for example and Im waiting I get rigily like I tap my foot at tap my pencil and my desk. Tap ???everything things like that. I must do something or I go insane. Waiting in a doctors office, or flying on a plane for a while can get real boring. When I wait to long I feel lazy and tired because Im not moving at all. I get buggy when Im paitent, and waiting for something. It is usually no longer than @NUM1 min (half an hour) before I get real bad. I cant be paitent very long or I get buggy. One way I help myself is playing sports and doing things constantive." 6 8 14 0 1 2 3 2 1 2 3 +18123 7 "Patience is when a being shows the ability to wait and make good desisons fo me, patience is the ability to stay calm, patience is very important because it alows me to ratinoly deel with suituations so that I @MONTH1 not get into trouble: @CAPS1 patience in times of stress is dificult. It is dificult beacause people are giving you greit. without @CAPS1 patience people make bad dessisons, this leads to bad things hapening. Paitence lets me deal with bad ideas like the @CAPS2@CAPS3. by using paitence, I can deal with the problem and then move on @CAPS2@CAPS3 are a very bad idea" 6 6 12 0 2 2 2 0 2 2 2 +18124 7 "It was the night before @CAPS1 eve and I couldnt hardly wait. In @CAPS5 family on @CAPS1 eve we go to @CAPS5 grandparents house. When we are there we talk, eat, and @CAPS5 favorite open presents. As @CAPS5 mom, dad, and I drove up to @CAPS5 grandparents house I couldnt open the car door fast enough. I sprinted up to the front door and rang the door bell a hundred times. @CAPS3 hello there, @CAPS4 @CAPS5 grandpa said. @CAPS6, can we eat fast so I can open @CAPS5 presents? yah, sure. @CAPS7 we were done eating I sprinted down the stairs as fast as I could. I couldnt wait. As I waited patiently until all of @CAPS5 old relatives opened their presents it was finally @CAPS5 turn. I ripped off the wrapping paper and saw what it was a game. Since it was the first present I had to open it fast but from then on I waited paitently until it was @CAPS5 turn." 8 7 15 2 2 2 2 2 1 2 2 +18126 7 I saw someone @CAPS1 patient the got to a rest runt before I did and den I orderd my food and it came. They done sill had no food so I left and finally they got the food now thats what I call patiants. 4 2 6 1 1 1 1 1 0 0 1 +18127 7 "When I was seven I played on a basketball team named the @CAPS1. We where playing against the @CAPS2 for the championship and I wasnt in the game. My coach told me to stay on the bench this game because I was the hard seen @CAPS3 player on my team. Without me playing my team was down by @NUM1 and my coach didnt put me in yard. I knew if I stayed calm and be patient me ??? would have let me play. So when it was the @DATE1 with a minute left in the game and we where down by @NUM2 my coach told me to get in the game and win it for us. So I got in and it was @NUM3 seconds left, I got the ball and started making all my shots. But when it was @NUM1 seconds left and we where down by @NUM5 point I got fouled. I had to take a technical shot which is when you are at the foul line and its just you, the ball and the rim. I made my first shot without a problem but my second shot I didnt know what to do so I thought about what I did to play in the game patients, so as I got ready to shoot I got patient with the shot to think it out and when I shot it I made it so once the other team got the ball to inbound it we stole the ball and won the game. If I wasnt patient in this game we wouldnt have won and I wouldnt have gotten the trophy to take home with me." 8 10 18 2 2 2 2 3 3 2 2 +18128 7 "My mom has very little patience, thats way it surprised me when she had a whole bunch the day my grandma passed away. I was amazed she was sad but took her time carefully and slowly as if every move she made had to be perfect. It was a terrible day and all any of us wanted to do was cry. My mom knew that my grandma would want her to be happy, thats why she watched her every move. As soon as I got there she came right up to me and gave me a huge hug and no matter what my little brother and I did she didnt even mind. That was a very surprising day because I had never in my life seen her that sad but yet so patient." 8 9 17 2 2 2 2 2 2 2 3 +18129 7 "A time that I was patient is when I had my twelth birthday. All of my friends exept one, wanted to keep playing. So we did. We desited to go and walk the dogs, and then have dinner, and then open presints. When we were all done with that, we opend my presints, I was very excited to see them. That is a time that I was patient. I was very proud of myself for doing what my friends wanted to do first. Pluss in the end, I got a lot of exiting stuff and I relized that wating, and doing what my friends wanted to do first was a great idea. Im pretty schure that we all had a great time." 7 6 13 2 2 1 2 2 2 1 1 +18130 7 "@PERSON1 was swinging with her friend all day when she was swinging so high that the chain came loose and @PERSON1 fell, she was screaming in pain. So they waked in the house. When they got to the house @PERSON1 was screaming and crying they all got in the car and drove to the doctors. The nurse said that she had to wait an hour to see the doctor. @PERSON1 wasn’t patient until her and her friend were talking. When the doctor was ready to see her she had forgot all about why she was there, @PERSON1 found out that she broke her arm. Later that day she thanked her mom and then called her friend and thanked her for helping her be patient." 8 9 17 2 2 2 2 2 3 2 2 +18131 7 "I thought that when I got hurt during football and was on a stretcher, everyone was patient. They understood that I could only go a cartair spare and waited for me in the hallways and carried my stud from room to room. An example of someone showing this patience was @CAPS1 @PERSON2 had to hurry to go to the bathroom but walked with me slowly so I wouldn't be alone. Another example of someone being patient with me is @PERSON1. Lauren was patient with me when I asked her.???????????" 7 8 15 1 2 2 2 2 2 2 2 +18132 7 "The I was patient. One day my mom and I went to the eye doctor. It was my first time going there. We went to this lady and wait for the doctor call us. We sat for @NUM1 minutes band then we hear the doctor calling my name. We go inside the doctors room and I sit down he does all this things. Later he yells us that we have to meet one more doctor. We sat down again and we waited. Then we hear my name again so we go. The worst thing was that I saw a medicine on the table and I was really scared. The lady asked me to look up and open my eyes wide. After that she took the medicine and was going through it in my eyes. I was so scared that when she through the medicine in my eyes it burned a little. I didn`t want her to do the other. I wanted to just stand up and run outside, but I couldn`t she did the other eye and told me to now keep my eyes closed until she came back. When she came back she me that was it, and we were done there. I thought to myself, that wasn`t so bad." 8 10 18 2 2 2 2 2 2 3 3 +18133 7 I forget to grab my helmet and ??? pads out of my moms car cause she works until @NUM1 and at @NUM2 that ??? ??? ???. Then my patience showed up. 8 5 13 2 2 2 2 1 1 1 2 +18134 7 Patience can mean a lot of things. It can mean to be understanding or it can mean to be tolerant. Being patient can also mean you dont complain. Like if you ask someone to get you something and they say that they will get it in a certain amount of days. If they dont get it the day they said they would and you were expecting it then you shouldnt get mad. You can also be paitient if you have to wait for something. If you are getting a new pair of shoes but the only way you can get them is they have to be ordered. You should not start to complain if it takes a long time. You should be able to wait without getting angry that you dont have them yet. Being patient can mean all of these things. If you do these things you can tell that you are patient. That is what being patient means. 7 5 12 1 2 2 2 0 1 2 2 +18135 7 "Patient, thats all I am when I go fishing. If there is a spot where you cast it takes sometimes almost fifty casts just to get a bite then you have to wait for it to swallow it sometimes you have to be patient in picking the lure you are going to use. That is because sometimes you have to be patient in picking the lure you are going to use. That is because sometimes you have to count in the water color, amount of weeds, and what the fish eat. Then you have to have patience on the spot you arent too because after the motor runs you have to wait for the fish to come back. So you have to have a lot of patience to go fishing." 4 8 12 1 1 1 1 2 2 2 2 +18136 7 "Anna sat there waiting patiently, come on come on come on! She thought to herself, meets, and was very excited to perform her now improved beam routine. Anna was one of the last gymnasts to go,only making her situation more difficult she took a deep breathe,and sat down patiently, waiting for her chance to shine to the judges" 7 7 14 2 1 2 2 1 2 2 2 +18137 7 "It was the @DATE1 when I went to see the creed consur with my cousents. There must have been @NUM1 or @NUM2 people in front of us. Then I herd and saw people shauing and pushing to get in. About @NUM3 to @NUM1 minuts later my legs started acking but I held on. I keep telling my self, the pain is worth the waite! finaly we got to the security gardes they had to do a metle detecoter on us. When we walked into the consurt I said, that was a wifer worth wating for." 7 8 15 2 1 2 2 2 2 2 2 +18138 7 "A time when I was patient. Two weeks ago @CAPS4 @CAPS2 said her @CAPS1 was coming. @CAPS4 grandma was happy so she bought her sister a bus ticket. Bus tickets cost a lot of money. It is @NUM1 dollar. That was a lot of money. She @CAPS11't miss this bus because I really want to see her. I could not wait. So she was suppose to be coming on @DATE1. She didn't come. I was sick so I called @CAPS4 @CAPS2 at her job. I said, ""@CAPS2 why didn't @CAPS3 come."" @CAPS4 @CAPS2 said,"" @CAPS5 she is coming you just have to be patient."" @CAPS6, I said. Next day was @DATE2. ""@CAPS2 is she here yet"" I said. ""@CAPS8, @CAPS5 be patient she will be here tomorrow."" ""@CAPS6, I understand.""I gave up I thought that she was not coming. So @CAPS4 mom called @CAPS4 godmom. She said it was @CAPS6. So she told me she was going to @ORGANIZATION1. I love @ORGANIZATION1. I so good. I asked @CAPS4 @CAPS2. ""@CAPS11 I have a @CAPS12. @ORGANIZATION2 cheese burger. I said @CAPS13 to @CAPS4 uncle and @CAPS4 mom said she was not coming. I told @CAPS4 mom I was not giving up she was coming. So I said I am hanging up. So I air hustled. @CAPS4 mom said to @CAPS4 uncle @CAPS14 ""should I get her something to eat. I thought she ment @CAPS4 grandmother. So I thought for a while her who is her. So I called back @CAPS4 mom said ohh I get food for uncle @CAPS14 dog. I said, @PERSON1's? For a dog? She said know dog food. So @CAPS4 mom got me from @CAPS4 god mothers house I could not walk because @CAPS4 legs, back, arm and every part that I @CAPS11 move on @CAPS4 body hurt. So @CAPS4 grandmother came to her house because we have a keys. So she said where @CAPS16? @CAPS4 uncle whispered something and I said she here! Ran in @CAPS4 uncle room and hug her I said how are you because when I went for @CAPS4 grandmother birthday. She live in south caroline so yeah. The is @CAPS4 writing. That is when I was patient. So I could wait for @CAPS4 mom's @CAPS1." 7 5 12 2 2 2 1 1 1 1 2 +18140 7 "Two years ago, when the first @CAPS1 came out my step dad paid eight hundred dollars for one. He was so happy all he did was brag to his family and friends about it. During this time my mom had broke her phone and my step dad did not want to let her use his hone. So she was phoneless for aleast three months. She was kind a mad but it was worth being patient for. As the newer and improved one came out in stores my mom was able to buy it. She was so glad, she had more apps then the first @CAPS1 and a webcom. I think that my mom did a good job at being patient because if it was someone else they wouldnt be able to wait that long." 9 9 18 2 2 2 3 2 2 2 3 +18141 7 "When I was about @NUM1 I wanted one thing in the wold. You know how some girl would want a baby ball no not me I want a rex this toy was the bigest and the meanest dinow on the plant well when I was a little it was. It was so cool to me ti could walk, talk it can run he can bit. Ever time I go to the story I would go to the toy part of the story, and find that rex and look at it in the eyes in say you will be mine one day. You know how relly want somthing and mom says chismist is coming up. When it ant comeing in till @NUM2 months. But I wont it now not in @NUM2 months. So I thought what can I do to get the rex befor @NUM2 months? I got it!I will clen up more, walk the bog more, do better in school, and hopefully that will work. So I ask my mom mom if I start doing all this good stof can I get so of my chismast thing in a week @NUM5 she said no you just get more thing on chismis I was so mad I was about to cry. But @NUM2 month was not that long. I was opening my gifts in no time. but I thought that I open all my gifts, I look arond one good time I did! But I dont see the rex I was said even thow I had like @NUM7 or more gifts. I still dont have that rex. So I sidely walk to my room. My mom came in my room with a big box. Could it be! I jumped out of my bed so fast my mono dont see me. I looked in the box it was a lot of babys doll. Then she said go down stars and ther he was rex looking so happy to see me." 7 8 15 2 2 2 1 2 2 2 2 +18142 7 "@NUM1, @NUM2, @NUM3, @NUM4, @NUM5, @NUM6, @NUM7, @NUM8! my poms coach @PERSON1 says as we practice the dance over and over again. I love poms but at times it gets very tiring. We have practice @DATE1, and @DATE3. We also have six girls including me. My coach loves to make us do the dance one time by ourselves .On our first game we had practice right before we left for our very first performance. All of us were so excited we all just wanted to go and perform all day. But the game was at @NUM5:45 pm and they didnt even start until @NUM6:00 pm which was way later than expected. So all my poms team, our coach, and all of our family had to wait patiently on the bleachers for over @NUM11 until we actually, finally got to perform. Finally it was the @DATE2 and the clock bit three, which ment we all went on the track to stretch .We were all so happy but still a little sad that we didnt get to perform earlier. We had a minute on the clock so we walked to the other side. Getting in our formation the clock quickley started to drop from fifty seconds to @NUM12 then quickely we only had @NUM13 seconds until we went on. I couldnt believe it, only @NUM13 seconds until our very first performance. The thrill rushed through my head as the man announced @CAPS1 performing @CAPS2 @CAPS3 @CAPS4 pom pon team then our names over the speakers. The crowed roared as we entered the field. We quickley all reminded our self to smile. Then the music came on and we all danced our hearts out honoring and thanking our coach and our parents. After we finished we were automatically huttled around by friends and family. And waiting and being patient wasnt so bad anymore. It was all worth the wait." 9 12 21 3 2 2 2 3 3 3 3 +18143 7 "When dealing with todlers or the elderly you must have patience. This patience is key when dealing with anyone, but very young and very old need more. Elderly often @MONTH1 become confused, have a hard time hearing you, or just be a bit slower than you. You must practice patience and give them respect. Very young children are confused sometimes too because they are just learning. Toddlers will often become upset and refuse to do what you tell them to is you have no patience with them and start to yell, Patience is also important for mentally or physically challenged persons. If they are challenged, there is no way that they can help it. Mentally challenged people often don't understand or don't want to do things just like toddlers. Be patient with the physically challenged because some tasks @MONTH1 be hard for them to complete. Be patient with everyone because patience is respect. Fear is not respect. That is how I feel about the word patience." 7 6 13 0 2 2 3 0 2 2 2 +18144 7 "A time when I was pacient was when I was babysitting and the kids I was babysitting were acting up. It hard for me to get them to calm down. But , I noticed that if I was pacient then they will too. So, I just sat down and told them to calm down and they wouldn't. So I told them that again and this time they were a bit quieter I noticed that if I ignore them or be pacient then they will settle down and stop because they were trying to get my attention. If I was being pacient then I knew they would be too. It worked they settle down and were being a lot when I was babysitting them the next time too." 8 8 16 2 2 2 2 2 2 2 2 +18146 7 "@CAPS1 back harder on the reighns! my teacher yelled @CAPS2 trying, but hes @CAPS8 not listening! @CAPS3 had to be the most stubborn horse I had @CAPS13 ridden in my life! @CAPS6 did whatever @CAPS6 wanted, whenever @CAPS6 wanted, and payed no attention to me at all. @CAPS4, @CAPS4 @CAPS8 bring him in. @CAPS6 said I slowly walked the horse into the center of the ring. @PERSON1, I really am trying, hes @CAPS8 not listening. I said I know @CAPS6 can be a bit hard-headed but I make you ride him because I believe you can handle him. @CAPS3 horses name was @PERSON3, @CAPS6 was a reddish-brownish color with big glassy brown eyes. @CAPS6 looked like a great horse that listened to its rider. Wrong! @CAPS6 was not nice or sweet and didnt listen at all! @CAPS8 walk him around a couple of times along the perimeter. @PERSON1 said. @CAPS4 fine. I replied. @CAPS8 as I was halfway around the ring, @PERSON3 stopped. Then @CAPS6 turned to his right, walked up to the window and started licking the water that beaded up on it. @PERSON2! What is @CAPS6 doing! @PERSON1 yelled I think @CAPS6 is licking the water off the windows. I said @CAPS10 get him away from there, @CAPS6 could get sick! @CAPS4, as I said earlier, @CAPS3 horse has terrible listening skills! Now I was getting in trouble because of him! @CAPS8 be patient @PERSON2. I guess I did need to calm down, so I relaxed a little and continued riding with no problems. I guess I @CAPS8 needed patience and to relax. Even if so, I am still never getting on that horse @CAPS13 again." 9 12 21 2 2 2 3 3 3 3 3 +18147 7 "On my way to @LOCATION1 to visit my dad. While in the car there is food and I brought along my @ORGANIZATION1 @CAPS1 to keep me busy, I brought my @CAPS1 along because it would be annoying if I ask are we there yet? very @NUM1 minutes, and I knew that a @NUM2 hr drive would need some intertament. Most of the time I would be playing games so time goes by fast, if I dont play games then I eat a snack, play with my baby cusihs, @PERSON1, and sleep. After awhile of that I sit back and relax. The whole trip is @NUM2 hrs but by doing all that it seems to be more like @NUM4 or @NUM5 hrs." 8 8 16 2 2 2 2 2 2 2 2 +18148 7 "Patience is basicly waiting and tolerating it. Every year on @MONTH1 @NUM1 my family become seasonal at a camp ground. There @CAPS1 play and have fan and make many life long friends. Every weekend @CAPS1 go out there and @CAPS1 take are speed boat, ""the glass from. ""@CAPS1 pat it into the the lake and dock it at a dock. Then @CAPS1 go fishing on every part of the lake and sit there for six hours. This is were patience comes in @CAPS1 have to sit and watch oar bobbers float on the smooth glass like lake. @CAPS1 sit there and watch and talk and bake in the sunlight. It is quite peaceful thowe that I'm off school and I @CAPS2 to spend time with my parents. Then in school I have to wait threw out the year and patient so the year can be over. So @CAPS1 sit there until the sudden noise of on of our bobbers sinking into the water. After that theres some yelling and ""@CAPS2 the net ""sayings. The funny. Part is that it is that it is ethier a large bass or a small nor there. And all this takes patience." 10 8 18 2 2 3 3 2 2 2 2 +18149 7 "My dog tedy bear is very impatient because when he comes in from outside he gets a treat, but he has to wait for the other dogs to come in" 4 6 10 1 1 1 1 1 2 1 2 +18150 7 "One @DATE1 @TIME1 I was very patient when I was waiting for my sister in law to tell my brother to tell us we could come in the hospital room and see their brand new baby @CAPS1. My father and mother were waiting with my sister, bother and I, in the waiting room / lobby. At the time it was probably for an hour and a half waiting. I guess that I could say that I was being patient. Also very ten to fifteen minutes I would have to get up and walk around. I was so shaky nervous and jumpy. But it probably didn't help that I drank three cans of pepsi and right before rushed to the time I was being patient." 6 8 14 2 1 1 2 2 2 2 2 +18151 7 Patience to me is a personal thought that turns into action. Ive been patience many times before. I use to go to the store at the corner of my block. I had to stand in a long line that actually went to the halfway point of my block. I went in got my stuff and went to the end of the line. A half hour past and it was five minutes til closing time. I get to the window and pay for my things @NUM1 minute before closing time. I was actually standing in line doing nothing. The owner of the store let me get a total of @NUM2 things for free. I got half of the stuff I wanted and the other half was house hold things. So being patient really pays off and can unlock many different treasures. So start running with patience and leaving impatience behind. 7 9 16 2 1 2 2 2 2 2 3 +18152 7 Well you need patience when your fishing and whe your food is comeing or going to be served to you but also be patient with everybody else. 3 3 6 0 1 1 1 0 1 1 1 +18153 7 "Just as I finished eating my hamburger I noticed an old, crude excuse for a bus parked outside of the restaurant window. @CAPS1s that? I asked through my sgueky seven-year-old voice. My @CAPS3 responded, That bus takes people to the palace across the street, where @PERSON1s playing. @CAPS2t it be cool if we @CAPS4 go? I questioned. I saw my mom whisper something to my brother. It was then that they told me we were going to the show. Excitedly, I climbed into the back seat of our car and we drove across street to the palace of @ORGANIZATION1. It was huge! All I wanted to do was enter the marvelous building, but my @CAPS3 kept telling me we had to wait. About fifteen minutes later the two pepsis I had drinken earlier made it through my system @CAPS3, I have to go to the bathroom, I said over and over again. Finally, my @CAPS3 took me through the front doors. The inside of the building was even more fabulous than the outside! However, a rail of red rope blocked our way. @CAPS4 my son use the bathrooms? my @CAPS3 asked a lady who sat behind the front desk. She gave a cold ro and we were forced to return back to the car. Another fifteen minutes passed. The concert would start soon, so we returned to the building. This time the red rope had gone, but replaced by a line of nearly fifty people who were all waiting to get through the metal detector! It took almost @NUM1 minutes, but we made it to the front of line, we passed through the metal detector and took our seats. That was a true test of my patience, but it all was worth it when I was finally allowed to use the bathroom." 12 12 24 3 3 3 3 3 3 3 3 +18154 7 I was patient when I went to @LOCATION1 @CAPS1. First it started out when I got a can from my friend @PERSON1 he asked me to go. So I said yes. I had to be pation derms the @DATE1. Then he drive it way long but I was pation. When we got to the entrance I felt good for being pation. 8 5 13 2 2 2 2 1 2 1 1 +18156 7 Once apoon a time there was a place called unpaciente land. But on grumpy lane lived a little girl namend @ORGANIZATION1. She was the most patient girl ever. One day @ORGANIZATION1 went to get her hair cut at mtso fast saloon! When @ORGANIZATION1 got there everyone was screaming at @CAPS1 the hair cutter and @ORGANIZATION1 stood up and said hey if you want your hair to look good sit down and be quiet and everybody did. @ORGANIZATION1 went home with a beautiful haircut just like everybody else and then @ORGANIZATION1 because the mayor of unpaciente land renamed it @CAPS2 land from that day forward every body was pacient. 9 9 18 2 3 2 2 2 2 3 2 +18159 7 "A Time when I was Patient A time when I was patient was when I went to the doctor with my step mom & brother. He was getting his knee looked at; @CAPS1 were in that waiting room for like two or three hours! Jody (my step mom) was getting really irritated I told her that the doctor will be out soon. I was very patient, @CAPS2 and @PERSON1 were playing with his phone. That kind of made @CAPS2 relax because usually Im not very patient usually everyone tells @CAPS2 that Im really impatient. For some reason when Im really excited Im fairly patient. I was exulted to see if he could get his knee brace off. Sure enough he did, he was so happy that two hours was worth it! This was a time when I was patient." 9 9 18 2 2 2 3 3 2 2 2 +18160 7 "One time I was patient. It was dec @NUM1 @DATE1 @CAPS1 eve. I was so excited that @CAPS1. On @CAPS1 eve morning I slept till @NUM2 I wanted to?? To come. I was patient so I played video games not thinking about @CAPS1. When I went to the store I seen all the @CAPS1 things. I felt like I couldt wait no longer. That night after dinner I found that I wanted to stay instead of going to sleep early to make @CAPS1 come faster. A little part of me wanted to go to sleep but I also wanted to stay up. I made some more food and went to sleep. When morning came I was so happy I ran into the living room. Sure enough there was the presents. My mom and dad were still sleeping. I decided to watch some to @NUM3 came and I wanted to open them so??? I knew it wouldt be right so I went to sleep??? At noon I woke up and ran to the living room. My mom and dad and my brother were there, I opened my presents like a lion feasting on a gazelle, I was so happy I waited." 12 11 23 3 3 3 3 3 3 3 2 +18161 7 "When I was patient I had no fears no argument but I had a good deal .I had a @CAPS1 @CAPS4 was so good my sister @PERSON1 said @CAPS2 I get some I said @CAPS3 you @CAPS2 @CAPS4 was a miracle so I was driving her car at the gasstation .I went to @ORGANIZATION1 .I said ,@NUM1 @CAPS5 please @CAPS4 was a cousin of mine and she said , @NUM2 days ago I was like wow @PERSON1 called my phone because @CAPS4 was my daddys weekend she said , get down there now I was like wow." 2 2 4 1 0 0 1 0 0 1 1 +18162 7 A time when I had to be patient was on the drive to @LOCATION1 @CAPS1 took a few hours so here is @CAPS2 story. We were leaving the house when I realized I forgot something. I quickly ran inside to get @CAPS2 dog penny [she is real not fake] @CAPS2 dog bitted out the door and I put her in the truck. We stopped at @CAPS2 grandmas and grandpas house and rest. We travelled through lots of roads until we got to the highway. @CAPS1s gonna be a long ride I said. We passed so many cars. Then they passed us. For a second we lost our grandparents car. I looked back and behind about twelve cars I found them. We reached @LOCATION3 in about four hours. I knew @CAPS1 was going to be a long trip so I decided to take a nap. Daring @CAPS2 nap @CAPS2 parents [@CAPS2 mom] took pictures of me. I thought that @CAPS1 wasnt nice. We now have one more state to go through and then were in @LOCATION1. That state was @LOCATION2. By the time we reached @LOCATION2 @CAPS1 was already @NUM1. We decided to get a room like a hotel. In the morning we stopped and ate breakfast. Then on the road again. I had to be patient because we still had a two hour drive to go. Longest five hours even but I was patient so @CAPS1 was fine. We arrived in @LOCATION1 and had no clue where we were going. So @CAPS2 dad turned his gos and we found our way to our cabins. That is a story about a time I had to be patient. 8 11 19 2 2 2 2 3 3 2 3 +18163 7 "Theres many times Ive been patient @CAPS1 this one time, my little sister kept buging me, and I didnt scream at her or hit her. She was asking me to turn on the music and I said no, she through a fit. So I got up and picked her up, and told her to stop before she get hit, in a nice and kind voice. And she stopped. And I told her to sit down and be quiet and watch tv. In closing, that was a time that I was patient with my little sister, by not screaming at her or hitting her when she was desterbing me. I didnt become a mean person at that point. Last but not least that was a time that I was a patient person." 8 8 16 2 2 2 2 2 2 2 2 +18164 7 Patience for me is when im helping others with their problems so in this story im going describe to you what is patience. Patience is when you are willing to sit down and help someone with their own problems. I have a lot of patience cause I sit down all the time and help people with their problem. One day at my old school @PERSON1 this girl she was having very difficult problems at home. When she came to school she was crying. I went to go ask her what was wrong. She was saying the way she doesnt want to be at home because he mom dont let her go nowhere she always had to stay home and watch her two brothers. So I sat down all day with her and let her feel like she had some one to talk to for once in her life. As we sit in talked she seemed to feel much better and she felt like she had a true friend. In conclusion I really felt like I had patience and since that day forward I have sat down and let people tell me about their problems. 11 8 19 3 3 2 3 2 2 2 2 +18165 7 "There was a time I was patient for a whole day! It was @CAPS1 eve and it was about @NUM1, meaning I just woke up, I ate breakfast brush my teeth after I got out of the shower. By now I would have probably ask my mom @NUM2 times if I could open one present, but on this day I hadn@CAPS6 ask he once yet. I was up string playing my play station when my mom called up @CAPS2!!!! I open my door and as usual my cat was right at my door I shut my door hop over my cat get to the stairs then yell food. He sewried down the stairs and right to the canter. As I start walking down the stairs I hear a @CAPS3!! So I start running down the stairs as fast as I could knowing my two @NUM3 year old brothers were coming. They meet @CAPS7 at the counter and ask @CAPS7. @CAPS4 many times have you ask to open a present? @CAPS5 I said. They looked like they had both seen a ghost. After lunch was over I ran over to my friend house across the street to play basketball. About an hour later we finish our game and take a bike ride we got back about @NUM4 for @CAPS2 about @NUM5 minutes later I was done watch @CAPS6.V. take a shower then went to bed. My mom woke @CAPS7 up at @TIME1 and we heat down stairs and as soon as I saw all the present I scream @CAPS7 @CAPS8!!!! And that was the time when I was patient for a whole day." 8 9 17 2 2 2 2 2 2 3 2 +18166 7 "@CAPS1 @CAPS2 said my little sister @PERSON1 @CAPS3 you help me practice kicking a soccer ball we are doing it in gym and I @CAPS6t know how. Of corse I said lets go to the back yard @CAPS4 my way out I grab a ball. I set it down @CAPS4 the ground in the front of me and say @CAPS5 you do is step forward with you left foot and kick with the top of you right. Ill try @CAPS8 say daughtfully. @CAPS8 runs up to the ball an kicks, he misses but thats @CAPS7. @CAPS8 trys againe another miss. @CAPS8 sits down @CAPS4 the ground. I go up to her. @CAPS6t give its only your second try, not everyone is good at soccer try one more time. @CAPS7, one more try. @CAPS8 runs up to ball and kicks. The ball goes sailing into the goal. @CAPS9 you for teaching me @CAPS2. I was my pleasure just try to be patient with yourself and youll be a great soccer player I promes. @CAPS7 but I want to practice some more. @CAPS7." 8 9 17 2 2 2 2 2 3 2 2 +18167 7 "Patient is when your are understanding and tolerant. Many parts of life are achieved with patience, because some things are worth waiting for @CAPS1 is alaways a time and a place for everything, and getting there is achieved with the great virtue patience." 2 5 7 0 0 1 1 0 1 2 2 +18168 7 "We had been patient enough on the plane ride to @ORGANIZATION1. We had been patient checking in. now was time for a true test of patience. We sat down at a table in a restaurant of the hotel. Our waitress came over, ordered our drinks and food, then dissappered. We got our drinks and waited for our meal @NUM1 min, @NUM2 min. @NUM3, @NUM4, @NUM5 min. after an hour we called her over and asked for bread. Lo and behold, she brings bread! We ask her where is our food. She promises to bring it out right away. We wait until weve been waiting for @NUM6 hours. We call the manager over to complain, and he brings out the food a minute later. After @NUM6 hours of patience, we finally got our food." 8 9 17 2 3 1 2 2 2 2 3 +18169 7 A time I was patient was when me and my mom and dad and my big brother were going @CAPS1 @CAPS2. We had to pack up and leave in an hour ? wanted to leave it for a room and tints and ??? packed up and ??? the ??? so then ? during its long ways any ? ? ? I decided to hv my haed down and wait for a hot ? heading my way so dis I dreaming about the lines having no lines so I can get on every ? in a hungry so as im about to get on a ride I felt someone ? ? saving were born as I gained light it was my brother ? ? shaking one I got up ? ? .I knew her as a big old sign says welcome to @CAPS1 @CAPS2 .After all that sleeping it had petied off after all. so as i think there are no lines I was heart broken. The lines was as long as having to @LOCATION1 itself something told me it was going to be a long wait. As I grew in patient I started to draw that somebody grabbed me it was my mom. She said why are you mood I said because these lines are the san just be patient it will be worth the wait thats what I did. Finally our turn so I got on and she was right being patient in line was worth the wait and it was so much funnier to get on. So as I think theer are no lines I was heart broken. The line was as long as having to @LOCATION1 itself something told me it was going to be a long wait. As I grew in patient I started to drawn somebody grabbed me it was my mom. She said why are you I said because these lines are the sant just be patient it will be worth the wait thats what I did. Finally our turn so I got on and she was right being patient in line was worth he wait and it was so much funnier to get on 8 5 13 2 2 2 2 1 2 1 1 +18170 7 "It was @DATE1 when my family and I went to cedar point. It was really exciting and fun. The trip was about three or six hours long. I went to sleep but when I wake up we was at burger king. I ordered we a kids meal and it was good. so as we got back in the car I stayed up the rest of the way there. Then I start seeing water parks and hotels it was really nice. Then I seen this really tall roller coaster I got really excited that I ran to the line, bed they were all long. I had a wait for @NUM1 minutes. When it was my tom in like I was so happy and excited that when I got my stamp I ran to the @CAPS1-@CAPS2 in door roller coaster. So I had to wait an hour in line , so I got really tired, but I kept mouing forward, when I reached the stairs finally I got on the ride. I was binda scared at the sometime because it was dark. then we took off then it got off I was dissy, but I went on another ride and got disser. I got on this ride that rocks side to side. His is the time I was patient." 6 8 14 2 1 1 2 2 2 2 2 +18171 7 "Waiting in the line to @LOCATION1 @CAPS1 I complained,"" @CAPS2! When are we going into the park?"". ""@CAPS3 patient,"" @CAPS9 mother hissed back. ""Being patient is boring!""I complained again ""yeah,"" shouted @CAPS9 sister. ""@CAPS4 so bored! Its not and @CAPS9 feel hurt and- ""@CAPS5!'', shouted @CAPS9 @CAPS2. ""Were almost there!"" @CAPS6 @CAPS8 seemed like hours, we @CAPS7 got to the ticket booth.""@CAPS7!"" I meaned. We went inside the park."" @CAPS8 first?"" I asked @CAPS9 sister pointed to a ride. ""That one!"" @CAPS9 sister yelled night before she ran to a ride. We followed @CAPS9 sister to the ride."" @CAPS10, lets ride @CAPS12. It looks fun."" said @CAPS9 dad as we walked to the line."" @CAPS11! More waiting!"" I shouted"" @CAPS12 is gonna take forever!"" I complained." 8 9 17 2 2 2 2 2 2 2 3 +18172 7 "I showed patience before. I am about to tell you and that time. Two years ago. I worked at my @CAPS1s home to get ???. Working there is tough because he makes you do so much work. I got all of the ??? grass cut at his harn, cut wood and a lot m???. After around seven hours of hard work, I asked my @CAPS1 if I could have my money. He ??? he when I asked why he told me. He gave a bunch of money to my uncle for vacation. My heart sunk. I asked him when I was going to get it. He shook his head like he had no idea. Rage filled in he to at me. One week ??? I went back to ??? house to ask ??? because I really wanted to buy something. He shook his head no. My mind said patience but my body said no patience. I listened to my mind. Waiting really at unk but I knew patience was the right thing to do. Patience bring the an opportunity. Three weeks later. He still hasnt gotten me my money. I heard someone knock in my door. I moved over to it. It was my @CAPS1. He came made with a huge grin on his face. Suddenly he open my hand and gave me twenty dollars! @CAPS1 thats more than double, I said, my heart throbbing. I know but you deserve it. I was shocked to hear my @CAPS1 say that. That day I showed patience. It really did to me good to have patience cause I made so much money. Think about my story the next time you dont wanna show patience, cause it might just pay off." 11 12 23 3 3 2 3 3 3 3 3 +18173 7 "When I was about nine years old. I took my homework home with me. I showed one of my older brothers, my homework. He look at it then he started helping me with it. Then he did a couple of answers. To show me what I had to do because I didnt really know how to do my homework. So he had to do his homework so he told me to do my home work. So I started to do my homework I did all of my questions correct. But it was a realy hard question on it. T wanted to ask my older brother. But instead I didnt do that because he was doing his work. So I did it myself." 6 8 14 1 2 1 2 2 2 2 2 +18174 7 "Middleton middle school, Im one of their students. My name is @CAPS1, Im new here, but you @MONTH1 think that Im a boy. Well if you do you better listen and listen hard @CAPS16 Im not going to say this twice; patience is a vurture. On my first day, I walked into @PERSON1s class I sat next to a girl with wavy blond hair, sparkling blue eyes, and a genuine smile. @CAPS2. @CAPS3 said. my names @CAPS4. @CAPS3 said in a perky voice. @CAPS2. I said back. Im @CAPS6, but you can call me @CAPS1. @CAPS8, uh @CAPS1. @CAPS4 replied. @CAPS11 let me show you around. @CAPS12! I answered back. @CAPS4 and I became fast friends,but when @CAPS3 introduced me to her friends they all made fun of me for having a boys name. @CAPS4 yelled at them, but I said @CAPS13 was @CAPS17. @CAPS4 just wouldent let @CAPS13 go. Finally I said to her, @CAPS13s @CAPS17 @CAPS4! Just let me handle this. @CAPS15? @CAPS3 asked crossing her arms and tapping her foot the way @CAPS3 did when @CAPS3 couldent do same thing. @CAPS16 you just dont have any patience! I said, getting a little angry @CAPS3 couldent understand. @CAPS17 be that way @CAPS1! @CAPS3 said storming out of the room. @CAPS4 wait! I cried but I hat to run after her. @CAPS20, please you dont get @CAPS13. You cant keep getting mad at them for making fun of me. I know your trying to protect me, but its @CAPS17. Have you ever had of patience before? I asked ready to run if @CAPS3 ran from me. @CAPS21. @CAPS3 said, looking down at the scuffed floor. Then, I told her everything I knew about @CAPS13 and we never had a problem again." 12 11 23 3 3 3 3 3 3 3 2 +18175 7 "I was on my way to tennisee with my @CAPS1, @CAPS2, my younger brother, @PERSON1 and my granpa, and granma, who I call @LOCATION1 and @ORGANIZATION1. @CAPS6 where driving in to different cars I was with @CAPS1 and @CAPS2 in @CAPS1 white mersadies. @PERSON1 was with @ORGANIZATION1 and @LOCATION1 in @LOCATION1s gold minny van. The windows were down in our car, and @CAPS1 and I were smelling burning rubber. @CAPS6 were in front of @LOCATION1, as @CAPS6 slowed down @LOCATION1 pulled to the side of us and told us to pull over. @CAPS6 pulled over @CAPS2 got out took one bok, and said @CAPS6re leaking trannie fluid. @CAPS6 drove into town with @LOCATION1 following us. @CAPS6 stopped at an autin shop @CAPS6 were the only people there, the mucanic told us to get everything @CAPS6 needed out of the car. After @CAPS6 cleaned the car out, he pulled the car up onto thue lift and that when I saw the gradge for the first time. It smelled like gas everything was greasy and dirty (including the mucanics). @CAPS7 is going to ruein our trip I said to @CAPS2, @CAPS6 dont know that for sure he replied. It was so hard to sit and be patient. I walked back and forth between the minny van and the gradge for about two hours. Some of the other mocanics came, too, but no one could find out what was wronge with our car. @CAPS2 got on the computer they had there and looked up car parts, it didnt help. The day before @CAPS6 left @CAPS1 had taken her car to @CAPS10 gardge for a tune up. @CAPS6 werent sure. After sitting at the shop for about three hours I got hungry, so did every one else so @CAPS6 went to a restorunt across the street for loneh. @CAPS2 stay at the shop for a little while longer than the rest of us. At lunch @CAPS2 said were going to have to call triple A to come pick up our car. @CAPS6 are going to have to go back home!! I was so upset, after all @CAPS7 waiting @CAPS6 have to go back home. On the way out of the restorant tripped and landed on my rist. I sprained my rist, so @CAPS6 went back across the street and behind the audio shop was a wallmart so @CAPS6 stopped there got a bandage for my wrist, and pick out a book to buy. I got the vampire diaries, @PERSON1 got a starwars book. @CAPS6 read them on the wag home in @CAPS12 car." 10 12 22 3 3 2 2 3 3 3 3 +18177 7 "When I went deer hunting with my dad I was patient. When me and my dad went deer hunting I had to be patint by waiting. The hardest part was being quiet to. I also had to stay still. Being patint is waiting for some thing. I had to be patint because I was waiting for a deer all day. Even now I did not get a deer, I was quiet, still and patint." 5 8 13 1 1 1 2 2 2 2 2 +18178 7 "Finally, all those months of waiting are coming to an end! My mother is going to give me a cell phone! Although it was her old one, it will be new to me, Ill be able to talk to my friends whenever I want. I @MONTH1 not get the services I want, but at least Ill have to stop worrying about being late for appointments. Like I said, the waiting is almost over. Okay, so Im not the most patient person in the world, but this is worth it! You see, Im going into track, cross-country, and choir. Since I ride the bus home and all of these activities end long after the buses leave, I need someone to pick me up. In order for that to happen, I need a cell phone. My mom said that first, I need to be thirteen. Second, she needs to transfer everything to her new phone. Last of all, I need to prove that I am deticated, I can keep my grades up, and that I am responsible enough to have one. I turned thirteen in @DATE1, shes transferred everything, Ive proved Im deticated, Ive kept my grades up, now I just have to prove that I am responsible. In order to do that, Ive been watching the neighbors pets while they are away, mowed their lawns, helped babysit their grandchildren, and Im working on cleaning the house and keeping it clean. So far, Ive been able to persuade my dad and grandmother that I,m responsible. Even my brother and half-sister think I should have a cell phone! But my mum still isnt sure. I think that if I can clean half of the house and keep it clean until @CAPS1, she will finally give me her old cell phone. Ill probably have to clean up the mess after @CAPS1 too though. When I get a cell phone, Ill have to continue everything Im doing now. So, I wont be off the hook or anything, but I will have a little more freedom! I still have a long ways to go but it will all be worth it in the end. I will finally have my own cell phone!" 11 11 22 3 3 2 3 3 3 2 3 +18179 7 Patience is eporten. Becus if you dont haf patience you wont git that far in lif. If you dont haf patience pepol wunt lak you at all. And yeu dont haf patience you wont be abl to fis stuf. 3 2 5 0 1 1 1 0 1 1 0 +18180 7 "@CAPS2 story is about the time @CAPS2 mom ran out of gas. @CAPS2 mom was driving down @LOCATION1 @NUM1 driving home. Soon we started running out of gas. The bad thing is, it was raining. Then we ran out of gas. First she had to get someone to pullover and ask if they had a cell phone. Someone finally did. She asked if they could get gas. Every one said “@CAPS1!” @CAPS2 mom then decided to call @CAPS2 dad and ask him to get gas. He then shows up an hour later with a couple gallons of gas. That was just enough to get @LOCATION1 home. If @CAPS2 mom had @CAPS1 patience she whould of gone crazy." 9 8 17 2 2 2 3 2 2 2 2 +18181 7 "One day when I was out camping with my friend @PERSON1 I asked him if we could climb the dunes and he said we would do it later. So I waited hours and hours and hours and hours then he said acler our lunch. Then I asked him after lunch and he said yes. But when is saw the dunes I knew it was a bad idea for me to climb it but I did. After I got to the top. I fell and @CAPS1 stayed there like, a dead animal. After five minute I was good and climbing to the top dune off because after I got up I ran down the dune and when my friend told me to stop I stop I stoped. But I got seed in my coat pocket. Then I hit a rock and did a front flip. Then I fell, when my friend carte down we both lauphed and @CAPS2 back to our campsite." 9 8 17 3 2 2 2 2 2 2 2 +18182 7 My name is @CAPS1 and Im writing about a time I had be patient. It was a nice @DATE1 @TIME1 in @DATE2 it was the eighteenth and we were going to drive down to @LOCATION1 for a vaction we were going to @CAPS2 land. Everybody was up in the house hold packing every thing into a hammer that we rented for the trip so every one would fite into the car. We had packed all things into the car. My made us a good breakfast. A hearty meal of sasauge pancakes and bacon and scaldded eggs. It was delicouse. After that we got into the car and we were on the highway I had fell a sleep a hour into the drive. By now it was ten acloak at night and I woke back up. My sister was yelling at my brother and then me and my sister got into a urgement my told all of use to be quited and we did but we were all get on each other nerves. And I had to be patient for another two day but we got there and I was glad to be there so overall it was a funture till we had to go back. 8 9 17 2 2 2 2 2 2 3 2 +18183 7 "I was on the farm waiting for my dad to get home so I could ride my for-wheeler. Then later that night he called me saying he will be later than I was expecting. He came home three hours later. That meant I had to ride my four-wheeler tomorrow because nobody was home exept for my grandma, my dad dont want me to ride my four-wheeler when my dad or my uncle @PERSON1 is not their. At that point I was inpatient. The next day my dad called me saying he had to work late again so I could not ride again. I was impatient even more, but then my uncle @PERSON1 showed up and I asked him if I could ride my four-wheeler and he told me I could if my dad said it was @CAPS1. So I called my dad and he said it was @CAPS1 if my uncle @PERSON1 said it was fine with him. Then I could ride my four-wheeler, and I was not impatient anymore." 8 8 16 2 2 2 2 2 2 2 2 +18184 7 Hunting have in patience in it. Hunting you cant go git a deer. You got to wath. Because deers dont come rith to you. Deer dont like people all so deer came smell you. If you not patience you all not git nothing. 3 3 6 0 1 1 1 0 1 1 1 +18185 7 Last year I had to sell my cow because she was sick. I have bell weight in for eight months to get A new calf but I didn't them were I would get one untill I asked my uncle who cases @CAPS1's small cow breed witch nor mail costs @MONEY2 but he gave me a deal on her for @MONEY1. It took me eight month's to fined he. But daring those eight month's I got tenacious and I couldn't sleep very well at high that when I got her home I was happy I had found her when I did. I still wory about her at night because of the cougar that is rooming the cluntury side. 7 6 13 2 2 2 1 2 1 2 1 +18186 7 "Do you ever like waiting in the line at the store? Well, I dont also ??? Well I am going to tell you about a time when I was inpatient and patient. Every morning I have to take the bus to school. I usually get in the bus stop @NUM1 min early, so I can talk with my mother ??? Try I got up to early. I made it to the bus stop early. ??? @NUM2 min later I decided to go back home. By the time I got home I was going to be late. I hurried at the door, but I was too late, the bus was gone. I should have more patient. On day I was going to burger ??? was to get a hamburger with bacon cheese and toaster. When I got their, their where about @NUM3 peace in their, so I decided to wait my turn in line like I had later. I was there people payed from cash regester. I was finally their I ordered my burger when I was done it was worth the wait. In conclusion you have to be patient in everything you do. Sports, school or home and even in public, I hope my story made you relise how important it is to be patient." 6 8 14 1 1 2 2 2 2 2 2 +18187 7 "A time I was patient was in @DATE1 at the @ORGANIZATION1. I was about @NUM1 in the @TIME1 when we claimed our seats right in front of the stage. We waited about @NUM2 minutes till the first @PERSON1 came on stage, the name of their @PERSON1 was @LOCATION2. Their appearance was strange so they looked like a rock @PERSON1. But they were just a regular @PERSON1 that played normal music. They played songs I've never heared of ever but now I hear them more frequently now. The second bad was another one I never heard of. I can't remember their names, but they wern't my taste of music. The next @PERSON1 was one I new lots about; their name is the @PERSON1, they were great. There lead lead singer had a long beared and an afro, it was very funny. They seemed to go the quickest because I enjoyed them so much. Next was another singer I have heard of his name was @PERSON2, he was also great. He even made up a song at the top of his head about @LOCATION1 and never stoped for like four minutes. Then he was done and the time was about @NUM3 @CAPS1 at night by now. And I was getting tired. But right there I saw the @CAPS2 boys getting ready I was really excited, they opened up with a song named @CAPS3. And there was strobe lights and regular lights every were. The staid that was holding the drum even moved. It did @NUM4?, and a @NUM5. It went @NUM2 feet in the air and did flips and everything you can @CAPS4. Their lead singer @PERSON3 and their drummer even had a drum off, that was cool. That went till about @NUM7 it was amazing. I will probly never whiteness something like that ever again!" 12 9 21 3 3 3 3 2 2 2 3 +18189 7 "Being patient is hard sometimes but easy others. Like @CAPS1 for example. I always get up really early on @CAPS1 morning and lay on the couch. Same with my brother. We get up round @NUM1 am and turn on the @CAPS1 tree. Then our eyes light up because we get loose all the presents we get to open. First we lay on the couch and stare at them trying to figure out what we got. Then we find another chair and stare at them at a different angle. We do that until we both end upon the couch again. We get yelled at once or twice to go back to bed. But it does no use because we never do. Then about @NUM2 am we start getting gosy. We go into our bedrooms and try to find something to do to keep our minds off of it, but that never works raither. Then we go back on the couch. About @NUM3 am we go into our kitchen and make coffee for our mom and dad because they say they always need there coffee before we open presents. then we go and wake them up. When they finally crawl out of bed we rush them to drink their coffee so we can see what we got. Finally about @NUM4 min later they finish and let us open our presents. It took so long, but it pays off in the end." 11 11 22 2 3 3 3 3 3 2 3 +18190 7 "When l was patient l was in the car and my mom went to get something at the store and l went whith her. I was patient because l didnt tell her when are we gonna go home or this is @CAPS1 boring. I tried to go whith the flow. I was there for @NUM1 hour but did I care no because l was the one who wanted to come whith and l came. If l would of complained then she would of said then why did you come. @CAPS1 at the end my mom said since you have been patient then you can get a chocolate bar @CAPS1 if your patient, there might be a reward at the end." 6 8 14 2 1 2 1 2 2 2 2 +18191 7 "When I was very patient was the, time I had to get my teeth pulled it had took two hours they would take a break for about @NUM1 minutes every half an hour I had gotten many shots in my mouth. And they had ripped my gum open and took at two teeth. Then my two bottom teeth. I was patentance then. They even said I was one of there best kids cause of every thing I had went thorugh in my mouth and the long time panke. This was the time I got @NUM2 teeth pulled and was very patient." 8 8 16 2 2 2 2 2 2 2 2 +18192 7 "When can I drive? I wined. when the time comes you have to be patient, otherwise you wont yelled my @CAPS1 over the loud, heart warming sound of @CAPS2. Starting up for the @NUM1 time that year. I loved that sound. Its my second favorite sound. The vibrations rattaling my lags as it races away with @PERSON1 driving. I could wait until my turn. After I rides and @NUM2 mins. @CAPS1 said the words I thought hed never say, @CAPS3, your turn. I looked at him then the truck. Wow does he look small next to that truck. I ran as fast as I could down to the pit. I climed onto the tires rim, then to the, top of the tire, and into the cab. @CAPS4 @CAPS5 @CAPS6, gaggag @CAPS7. Oh yeah! This felt right. I couldnt go fast but I almost tipped it over. So thats a good thing. So all in a nat shell, paconts comes a long way." 8 12 20 2 2 2 2 3 3 3 3 +18193 7 "I dont have much patience, but Ill tell you a story about a time that I did. It was a sunny day outside and it was @DATE1 after school and I had no homework. So I invited my friends over and we were going to landslide skate park. We were all at my home but @CAPS1 wasnt. My mom said @CAPS2 hes not here in two minutes we have to go with out him. So I was mad I was writing a note to put on the door that reads @CAPS1, we had to go with out you because you were late! Sorry be on time next time.-@CAPS4. But when I was signing the note he pulled up. That was the story when I had patients." 6 9 15 1 1 2 2 2 3 2 2 +18194 7 "One time in @DATE1, I was taking a test called the @ORGANIZATION1 (@CAPS1). Me, and my friends get down with the @ORGANIZATION1 early. So we had to be patient too. We had alot that we could do, but the choices were limited. Being patient is hard, sometimes it feels like ages have gone by, but really @NUM1 minutes have gone by, sometimes patience requiers a lot of mental peace. One time me, and my dad were going to work in @LOCATION1. The bus was late @NUM2 minutes, but it felt like a few weeks. Sometimes patience is good and bad. Good patience is when a team scores a goal, the audience was patient enough so that the team could score a goal. A bad patience is when youre late to work, and traffic, or the bus was late, or you could wait. Sometimes you can distract yourselves while being patient, texting, calling a friend, or talking or playing a game, with a kid or with yourselves. So you see that patience can be good or bad, also requiers a lot of mental peace. @ORGANIZATION1." 7 6 13 0 2 2 3 1 1 2 2 +18195 7 "When I was around the age @NUM1. I went to @CAPS1 with my grandpa, grandma, and mom, and dad for a family reunen, we stoped so menny times I cant even count. I think it was to but I did not want to stop or be patient because I wanted to get there and see what everything looked like like it was big but the dad post was we hade to leave are dog home for a week, was in patient to get home to because as soon as I got home I was going to sleep. We got up to leave from are house at @TIME1 and we got to the motel at @TIME2 am the after noon I was sick of sitting in the car I did not want to get back in the car to go home because if you think of it that is long ways to white in the car. I was very impatient because if I could of gotten there in a half of a hour or a have would have been a lot better than like, @NUM2 hours of time but it was a lot of fun to see new things that you have never seen befor on your way there because on are way home. I was just sleeping. But I was not very patient I was so board that every stop I would switch cars and I did not have tating at that time but I did have my @CAPS2 until it died then I made my I pod and my cells all I could do was call and play games on that but I was so impatient at the coner to cuzz I rather go to the hotel and sleep than sit there lission to older people talk bout what has happened. I dont know hardly any of them I could not tell you who every one was." 5 4 9 2 1 1 1 1 1 1 1 +18196 7 I was patient this one time while waiting to get on the computers and I told my mom to wake me if she gets oyr the computer and after an hour I fell asleep and I woke up after a little while and my brother was on for three hours reading manag we already have and after three minutes my dad kicked me off to check his email and he said he would be off soon yet he spent the rest of the day a hit more of the next day watching indearath star(for six hours even though he spends eight hours on a connecting at work so that adds @NUM1 to @NUM2 hours on the internet everyday of the year. 3 5 8 1 1 1 0 1 1 2 1 +18197 7 "There was this guy that I liked a lot that I finally had the courage to ask out after @NUM1 years and @NUM2 weeks. He said yes to go to the dance with me but no to going out. So a little while later like a week later I asked him again. He told me give him till the end of the week. So I waited and waited and on and on it seemed like forever. Then my friend just couldnt take it she asked him on @DATE1 and he said yes! A million yes, joy came from his mouth. Then @DATE2, after getting to know me better he broke up with me. We have been fighting ever since, but were still besties!" 8 8 16 2 2 2 2 2 2 2 2 +18198 7 "Being patient is hard and not all people are patient, but patience is an important thing to do. You have to be patient almost everywhere you go, like waiting in line is being patient. You have to be patient with people to, like people who are learning or you are teaching. I was patient in @ORGANIZATION1 which was really hard to do. When I was really little mabey four or five years old, we went to @ORGANIZATION1. My older sister wanted to go on a ride but I couldnt go because I was to short. So my mom stayed with me while my older sister and my @CAPS1 went on the ride. I was so sad but my mom told me to wait and not get antcy. After a while I started asking When is the ride going to be over mama she kept responding I dont know, when ever @PERSON1 and @CAPS1 get off the ride. @CAPS2 I couldnt wait, but when my @CAPS1 and sister got off they told my mom that they wanted to go again. My mom said ok and thats when I got sad then she said to me but because you waited so long and nicely I will take you to get a smoothy. I love smoothys I scream. Patience is important, because I was so patient my mom got me something I love. Patience ia a hard thing to do but once you got it, its a good thing to do." 9 11 20 2 3 2 2 3 3 2 3 +18200 7 "Last year I went to the doctors to get a normal check up wen she tested my vision and hearing and felt the cold too. She put on my chest to see if my heart was @CAPS1.K. After that she checked my neck. I could feel her icy cold fingers on my neck about a minute had passed and she says she will be right back. Another doctor came in and felt it until finally my mom asks ""what's going on here"". They said the glands in my neck were full and they said I needed to have my blood checked to see if I had a theiroid which is glands in your neck that are full which leads to having to take pills for the rest of your life. So a few days later we went to get my blood checked. As we waited I started to get really nervous I had butterflys really bad and then @NUM1 minutes passed which seemed like an hour they called me in and I sat down the nurse said everything will be fine. So i trusted her she took a rubber tube and tied it around my arm it sorta hurt like a pinch then @NUM2 @NUM3 @NUM4 and the needle went in and I seen the blood going into the tube really cool then we went home. It took a week with sleepless nights because I was so anxious and they called my mom which took about a year not really could not tell by her expression then she said no and that was so happy and I was being patient which was what kept me from not wanting to run down there and seeing myself!" 11 8 19 3 3 2 3 2 2 2 2 +18201 7 "When do ve get the xbox! I asked @CAPS1. @CAPS2 hours, he replied. @CAPS3! yes. @CAPS4. @CAPS4. @CAPS2 hours. I thought, this is gonna feel like a week. First, I got on the computer. After ten minutes I got off because nothing was ???. Next I looked at the t.v guide. Nothing. Why am I so tired! I thought. It must be that I did, I was thinking but luckily, I fell asleep. I woke up. Four hours left. Once again I looked at the t.v guide still nothing. I just turned the t.v on. A @PERSON1 just ended. @CAPS7 up next on @CAPS8 land is The @PERSON1, the @CAPS8 commercial said. @CAPS10 see this, I said out loud. It turned out better than I thought. It was a no color @PERSON1 that was about a police official and his son. After watching four hours of the @PERSON1, I heard the goings door open. I heard @CAPS1 come in and say, @CAPS12 got it! @CAPS13 then I said, @CAPS14, and then fell asleep. @CAPS15 wake him up. @CAPS1 whispered." 9 12 21 2 2 2 3 3 3 3 3 +18202 7 "One time my brother @PERSON1 was patient. Patience is being understanding and lisksent through difficultis without complaining. Our family lived in @LOCATION1 and were going to cedar point on vacation. We had fun all day end at @NUM1 we went on @ORGANIZATION1. @PERSON1 went on the blue @ORGANIZATION1 while the rest of the family went on the red. The blue keeps you up at the top for @NUM2 and drops you while the red one shoots you up to @NUM3 feet. The line for the red @ORGANIZATION1 was shorter than the blue one so we got to go on first. Once the ride was over @PERSON1 was already at the top of the blue @ORGANIZATION1. We heard a loud sound that ment the blue @ORGANIZATION1 cast was coming down. But the blue cast wasnt coming down. @PERSON1 was stuck at the top, @NUM4 feet in the air. @PERSON1 got a birds eye of the park. I would have been scared if I were @PERSON1. At @NUM5 the ride lights came on and the cast plummed down. Finally,, he got a ride. Each ride got free season passes to cedar point. This is a time when @PERSON1 needed to show patience." 9 12 21 2 2 2 3 3 3 3 3 +18203 7 On @DATE1 we went to the doller tree I want to go to the game stop. But I was patient then we went to the game stop. 3 4 7 1 1 0 1 1 1 1 1 +18205 7 "In the beginning, I woke up from sleeping and felt real sick, @CAPS1 I took a shower and put on my clothes. I told my dad can I go to the doctor because I feel sick???? @CAPS1 he said we will leave @NUM1 am and it was @NUM2 am. Then, I had to wait on the couch while my brothers, my dad and my mom were talking showers. After that, I wanted to yell and complain because they were going too slow and tried acting @CAPS1 beautiful. @CAPS1 I didnt. When they finished they had to look for the keys until they found it. It was @NUM3 am and my dads favorite music was on @CAPS1 we stayed and watched the whole movie. In the middle, it was @NUM4 am and then we went to the doctor and had to stay waiting for everyone to get there turn until it was @NUM5 which is our turn. We actually made an appointment. They checked what was bothering me and it was nothing. @CAPS1 I left and I still waited until my brothers finished. In the end, I was @CAPS1 pissed off because I had to wait for them to get in the car. My dad said Are you happy? You said that you feel sick and there is nothing wrong with you. @CAPS1 we went home thinking that I had been patient for the whole day. I was saying to myself I learned my lesson and it is if you are patient the day can go fast." 12 8 20 3 3 3 3 2 2 2 2 +18206 7 "Over the @DATE1 I went to @LOCATION1, @LOCATION2 to visit my aunt @CAPS1. @CAPS2 got up early and drove to @LOCATION4 I was the firts time I was going to go on a plane. My dad said I better have patients or else the ride was going to be boring me and my sister got on the plane and flew to @LOCATION3 and it took @NUM1 minutes and that was easy but then @CAPS2 got on another plane and went directly to @PERSON1 and that took @NUM2 hours I was a very long ride but I had patient, but my sister didn't have any patients at all the whole ride she was asking which @CAPS2 were going to get there. And that was the time, I had patients." 8 8 16 2 2 2 2 2 2 2 2 +18207 7 "A time I was patient. @CAPS7 were going to go camping, so @CAPS7 got packed up and loct the car cide was @NUM1 hours long so i had to be patient. I played @CAPS4 ps @NUM2 for a cupul of minutes it was @ORGANIZATION2 @CAPS7 left early so @CAPS7 could Do some thing when @CAPS7 got there. Then I tried to @CAPS1 I was so ticed. But I coulden with @CAPS4 casins @PERSON1 and @PERSON2 screning and yelling, I finally fell asleep. then @CAPS7 hit a @CAPS2 and are @CAPS3 was out of gas lukuly @CAPS7 wace right in ??? of a gas extetion it took @CAPS7 a hour to get it fixed, so @CAPS7 snaked on a @ORGANIZATION1 thing and @CAPS7 lefe. Then @CAPS4 cusims got all excited @CAPS5 The @CAPS6 @CAPS7 are all most thece I was happy I could put up @CAPS4 tent and go to @CAPS13. I saw are camp groung and when @CAPS7 got ther @CAPS7 had to put every thing up I had to be patient to go to @CAPS13 then the kids found a pack and of cores. @CAPS9 wanted to go @CAPS4 mom, wanted me to take them I was so tlead I @CAPS8t want to @CAPS9 ??? ??? ??? So @CAPS7 stayed @CAPS10 @CAPS11 yelled the park was prett close to the camp site me can I ate @CAPS10 as quickly on q ouit if as poses ul and fank is @CAPS4 tant @CAPS3 an went to @CAPS13." 6 6 12 2 2 1 1 2 1 2 1 +18208 7 I was patient when I was going to cedar point. We took a bas it took seven @CAPS1. So my friend @PERSON1 decided in watch movies on the @CAPS2. We watched street dreams and the incredible. We were still a long way from cedar point. We decided to call my mom for a prank call. It was hilerious so we did it again. Then we took turns napping and watching the big open road. Eventually we both fell asleep. When we woke up we were there. This it the time I waited patiently. Because I waited patiently then I don't mind waiting now. I learned to do something else while waiting. Now I can wait now longer. This helped in my future. 8 9 17 2 2 2 2 2 2 2 3 +18209 7 I was patient during the meap. I was patient because I was done early and a lot of people were not done yet. When I get done early I like to draw or do some of my work but I didnt have any work so I new then when every one got done we waited for @NUM1 min then we start the meap again when I got done with that noone else was done so I waited for @NUM2 or @NUM3 min then every one was done then we stretched walked around for @NUM4 min then we sit back down and start the part @NUM5 when we are done we get to do work I am usually the first one done. Then when I get done with the test I get up and walk around so I can get @CAPS1 and @CAPS2 on my tests like meap test because it is so important to get good grades and when you are patient you will find out to get good grades like @CAPS1 and @CAPS2. 8 8 16 2 2 2 2 2 2 2 2 +18210 7 "On my last trip at @CAPS1 point I made a horrible mistake. I waited in line for @NUM1 hours on the mantis. I had to be patient, but it was hard to because the mister fans were having tecinal diffucatties . And how can I be patient when it is @NUM2 degrees outside?! The only good part of the line was the shade. That was @NUM3 way I kept my patience."" I told my self, ""and in no time you will be there."" @CAPS2 I spoke too soon. Half an hour seemed like @NUM4 hours, but I think the heat was just getting to me. Finally, after @NUM5 hours in line the mist fans @DATE1 to lift. Patience can bring luck. I wait for what seems like only ten minutes but accaully was an hour. After I got off the ride, I was releaved. I guess patience in some ways, is the key to success." 10 8 18 3 2 2 3 2 2 2 2 +18211 7 "One day a man named @PERSON1 had a doctors appointment and over slept; when @PERSON1 got out of bed he saw that he was late for his doctors appointment. As @PERSON1 got out of bed he rushed in the bathroom to take a quick shower, as if he had time. @PERSON1 noticed it was grilling later so he didnt get to wash up or brush his teeth, so he grabbed a part of gum on the way out the door. @PERSON1 finally got to the doctors went inside and saw there were millions of people in the waiting room, he went to go check his name in and sat down. He started to get frustrated and tired of waiting, so he calmed down and realized patience. @PERSON1 kept his self busy for two whole hours playing with his phone and many apps he downloaded. @PERSON1 was so busy he didnt realize that he was the last person still waiting. Other people had their check-ups and left and others just left without theirs. Finally, they called in @LOCATION1 for his appointment. As @PERSON1 was going in he put @NUM1, maybe @NUM2 pieces of gum in his mouth and started talking. @PERSON1 was done, zoomed home, flew into his the shower, and brushed his teeth, got back in the bed and went to sleep." 9 8 17 2 2 2 3 2 2 2 2 +18212 7 "Patience is very difficult for me. Having patience is very difficult for me, because I am not patient at all: t cannot wait for things. During school, I am always looking at the clock. I just cant wait for class to be over most of the time. Some times I think I rush things a little bit too much. I wish I was patient, but Im not. Im not patient because I think about what comes after the waiting, I get too curious. For example: in class I get excited for when the day ends. Some day, I want to improve on my waiting style. I dont think that will happen anytime soon." 5 9 14 0 1 2 2 1 2 3 3 +18213 7 "Patience is very important at my house. My mother always says you have to be able to patient to succed in anything. One time I was at home on the computer. I was surfing the web and enjoying it. My mom yelled across the house for me to come see her. I got out of my chair. Walked through the kitchen, through the hallway and into her bedroom. She said that she had to go to @CAPS1 to get some groceries. She was wondering if I wanted to go with her. I said no and asked her if she would make myself a sanawich. She replied yes and left. While she was gone I cleared my room. Folder laundry and watched television. It was about @DATE1 and she still wasnt home. I was very hungry and beginning to become worried about her. I was tempted to call her but then I remembered what she always says be patient to succed. About a half an hour @DATE1 she got home. She had bought me some lunch meat so I could make a sandwich. While I was eating she told me she was proud of me on how patient I was while she was gone. I think patience is very important. I also think everyone could use a little more of it." 11 11 22 3 3 2 3 3 3 2 3 +18215 7 Patients in my way of saying is a person that waits awile if she needed to. The only reason im putting this in my own way is because know one is patient in my family. Pations is s person where if they were stuck in traffic then theyll be able to sit and wait or theres a really long wait or line. Or theyll be able to wait for something they need. Patients is just waiting for my turn I should put it. Its about waiting if I have to or if something runs out and they have to wait for it to come and get it. Thats what patients mean to me in my own way. 4 4 8 1 1 1 1 0 1 1 2 +18217 7 "I am going to tell you about a time I was impatient. I had been working everyday in the @DATE1. I was trying to do the best I could to make make money. I was saving up to by a three hundred dollar bow, a firty dollar target, forty dollar broadbands, and other hunting accessories. I was finding myself to get more impatient everyday. Slowly I was getting tired of working, bored of saving money, and tempted to spend it. Finally I saved up enough money. I bought my stuff. I practiced all day long. Soon I became more accurate. I was ready to go hunting. The first night I was out I passed up a doe at eight yards. I havent had anything close enough to shoot since then." 9 8 17 2 2 2 3 2 2 2 2 +18218 7 "One time when I was patient was when the shot flew was going around. I had to go to this one place to get the flew shots. When we got there we got in line, I had to be patient because the line was really long is??? the line to get through. We brought chairs, hot coce and staff to do to keep us any feet. I had to be patient in tell I got on to the front of the line. The worse part was that most of the tide was outside and it was @CAPS1 eve, so I had to be patient in the cold, when we finally got inside the building I was so happy. Then about @DATE1 we got to the front of the line. Im glad that I never have to wait in line for three hours to get a flew shot again." 8 8 16 2 2 2 2 2 2 2 2 +18219 7 I was patient the my game it take to long got my so I got so my puch my big tr because. Was make me mad then my mom had come up with she hint I ean down the stilts got mom money she buy me trall my huse she take the her way I patient now the end. Im patient to go lunch I got @NUM1 b lunch so I got @NUM2 huse to go to lunch so dont take bep for some guess now @NUM3 hours Ill lunch Im mad to ??? it @NUM4 till lunch now when is doing the test so forgot to ask for some gam over it is @NUM5 we go to lunch it @NUM6 we got to lunch now heard line I got he patient for ??? She me we she made my sleb so good ate Ill of it then dinck my milk then we tried to be patient for ??? my taken mis greetees I was happy than ever. 2 5 7 1 1 0 0 1 1 2 1 +18220 7 "One time I was patient was when I was at basketball practice. It didnt happen until the end. no one knew that this was going to happen. It just happened out of nowhere. I hit the wall. I had an accident. We were running suicides. I was running to fast and I couldnt stop. I went head-first into the wall. It was a brick wall too. I didnt panic because I knew I had to be patient. I had to wait on a lot of things. I had to wait on an ambulance, which took a long time. I had to wait on a doctor to give me stitches which didnt take long. Lastly I had to wait on the doctor to give me the discharge papers. It happened here at @ORGANIZATION1 . We were in the gym for basketball practice. It was in the @DATE1 but I cant remember the exact date. I was also in the sixth grade. It happened because I couldnt stop in time. When I hit my head it didnt hurt. When I got my stitches some parts hurted. When they took them out it didnt hurt. But I had massive headache. I was glad when everything was over." 10 11 21 3 2 2 3 3 3 2 3 +18221 7 "I am a very patient person. An example are games. For some games you have to wait weeks, or months. For others you might have to wait years. I have done this before." 4 4 8 1 1 1 1 0 1 1 2 +18222 7 "I have had to be patient many times in my life. One that I can remember was waiting in a long line for opening of @CAPS1 @CAPS2 @CAPS3 @CAPS6 for this @DATE1. The line must have at least @NUM1 people. This is one of the largest apple orchard in the area I lived in. It was my first time going, but my sister had gone before, countless times. She said that it was one of the scariest things she had ever been to. She brought a friend with her also. Her name is @PERSON1. The opening was going to be at @TIME1, and it was only @NUM2, the line still growing behind us. My heart was pumping faster and faster. I glanced at my watch almost every @NUM3 second. Time seemed to forget to keep ticking. Finally, it was @NUM4. That was when we heard an announcement. Beep! @CAPS4 ladies and gentlemen! I am sad to announce that we will be opening up @CAPS3 @CAPS6 in @NUM3 more minutes. Im sorry. Thanks for your cooperation click. I heard everyone in the line groan. A lot of the people just left to come back tomorrow. Andrew, @PERSON1 and I just sat down to wait it out. Then finally, we heard one last announcement. Beep! @CAPS4 once again! Are you ready for some @CAPS3? Then come on in! Its time for @CAPS3 @CAPS9! That was my story of being patient." 12 12 24 3 3 3 3 3 3 3 3 +18223 7 "Waiting for my child was the longest @NUM1 hours of my life. I had been in the waiting room for nearly the whole time. The nurses kept giving me updates, to calm me, to no avail. So I @CAPS1 out a smoke to ease my nerves. I didnt know if my wife, or our baby would live. Would it live happy? I just @CAPS1 a puff of smoke, and waited for hours I sat, shutting out the rest of the world to shield my own thoughts. Would it be picked on? I sat, ignoring the nurses pleading, trying to reassure me. Would it shut life out? I sat, waiting for my newborn child. My silence was broken, by a baby crying. I rushed over to my wifes room, to find her holding a beutiful baby girl. @CAPS1 you long enough" 10 10 20 3 3 3 1 2 2 3 3 +18225 7 "I time that I had patience is when my fammle wint to @CAPS1 avencher and @CAPS2 are inline to go on shiver me timbers the bigest coster at park. @CAPS2 are in line , I said to a kid that had cut in front of my friend @PERSON1 and I as @CAPS2 wint up the ramp to get on the ride. The kid wint to the back of the line that gust got longer, @CAPS3 and kids sremed. As @CAPS2 got up to the top of the ramp the ride harp masst up so @CAPS2 set there for about a hower, and then they fix it @CAPS2 get in and I tobe off my glasses. The ride stared. They @CAPS2 wint up the digest hill, then smaller then smaller! Then a tren then, the last hill. exsied like a diver going @NUM1 mph the ride was over, That was a time a had patiences" 12 7 19 3 3 3 3 2 2 2 1 +18226 7 "We were driving to @LOCATION1. My uncle lived there so since he always came to our house we were going to his new house. I was excited about going there, but there was one problem, it was over a ten hour drive. My parents woke me up the morning we were leaving and I felt so tired. I looked at the clock and it said six thirty a.m. I knew we weren't bringing a lot of food and things so we went to get packed up and in the van but it took longer that it seemed like it would last. My dad said we would leave around seven thirty but it was an hour more that we planned. We got all packed up and we were onthe road. It was about an hour in I fell asleep in the back seat. We made a stop an hour and @DATE1 and I woke up. After we got back me and my bother watched a movie on our portable dvd player. We kept driving there and I knew it would take a while but I kept my patience and fell asleep most of the time. When we got there @DATE1 it was great. Their house was up in a mountain, I had fan visiting them and we walked around town went into stores. I had fun seeing my uncle and aunt. This was the time I was patient." 11 10 21 3 3 2 3 2 3 2 3 +18227 7 "A time I was patience was when my family went to @CAPS1.I. adventures and we all wanted to go on the leaver water slide. The biggest water slide there. It had the longest line cher, it made a swerl and my family was at the end of the swerl. I was early morning when we had finally get in and went to the leaver water slide. It was huge just about @NUM1 feettall. And we got in line and only an half an hour had gone by when my mom let it. Then another half an hour had gone by when my older brother left. Now it was only my my other brother my sister, and my dad is left in line. When some one got hurt on the ride and the shut it down for two hours. Finally they opened up the ride again so now my other brother and sister did not come with us. So now it is only my dad and me left in the line now. So it was our turn on the ride next when my dad get scard end left so it was me and an old man went on the same little fletch. The old man met his pance and l was so happy to finally get on." 10 8 18 2 3 2 3 2 2 2 2 +18228 7 "Patience is very important, it can help you be successful in many things. In school patience is very important because some things just have to wait. Being patience in the game of chess or checkers is important because while the other persons makes his or her move you can be thinking of what move you will make to counter attack it. Patience is very important when playing games or doing schoolwork. Patience is also about waiting. For example, everyone is excited on @CAPS1 eve and cant wait till morning but they have to be patient and wait till morning. Also on your birthday you dont know what youll get but instead of peeking you have to be patient you can open the presents up. Patience is a very helpful skill to have" 7 5 12 0 2 2 3 0 1 1 3 +18229 7 "@CAPS1! Today is the day we get to go to @CAPS2 point, @CAPS3 @PERSON1 exclaimed. @CAPS4 on @PERSON1, lets get this show at the road. @CAPS5 announced. The @CAPS6 were planning a vacation to go to @CAPS7 point @CAPS22 @DATE1 long and today is the day they got to go. The family got @CAPS22 of their suitcases and piled them in the car. When everything was situated, they took off. @CAPS8 @CAPS11, how long is this drive gonna take? @CAPS9, @PERSON1s older sister, asked. @CAPS10, about six hours sweetie. @CAPS11 replied. The @CAPS6 lived in @LOCATION1, @CAPS21 they had to drive along way to get to @LOCATION2.@CAPS13 @CAPS11!!! I cant survive six hours in a car!!!. @CAPS14 @CAPS9, you wanted to @CAPS4 here, you just have to have patience like @CAPS3 @PERSON1 here. I guess I will not wait. @CAPS15 about three hours in the car @CAPS9 kept repeatedly asking the question Are we there yet? @CAPS16 though the answer was always @CAPS17, she asked it anyways. @CAPS3 @PERSON1 eventually got annoyed of this and shouted stop it! Just have some patience!,@CAPS18, @CAPS18, @CAPS9 replied, I will stop.@CAPS15 about two more hours, they finally arrived. The parents bought the tickets and asked their children what ride they wanted to go on. They both smiled and said The @CAPS20. @CAPS21 they walked up to the line, and waited. They just waited, and waited. Some more. @CAPS15 what seemed like four hours waiting in line, @CAPS9 gave up and shouted I dont want to wait in line anymore! I am leaving! @CAPS21 the family walked back into the car, and drove off. When they got settled, @PERSON1 told @CAPS9, @CAPS22 it takes is some patience and you can have some fun. @CAPS9 didnt respond." 12 12 24 3 3 3 3 3 3 3 3 +18230 7 "One day @PERSON1s mom, @CAPS1 decited to go shoping and @PERSON1 despretly wanted to go. But his mom kept saying @CAPS2. So @PERSON1 begged and begged s his mom finally said, @CAPS3 but you cant complain so @PERSON1 went shoping with his mom. Then @PERSON1 and his mom arrived at the store. Just about @DATE1 @PERSON1 said. Im board can we go now, his mom @CAPS4 @CAPS2 just be patient. @PERSON1 then said, patient you want me to be patient weve been here for like @DATE1 hours, we have only been here for ten @DATE1. I have @CAPS2 more patients said @PERSON1. So so his mom made a deal with @PERSON1 it was, if you be good for @NUM1 more @DATE1 we will go to the ice cream place. The next @NUM1 @DATE1 made his mom go crazy with every second @PERSON1 saying, Im board can we go now and hurry up. Finally @PERSON1 and his mom left. They got in the car and drove right past the ice cream place, @PERSON1 said, wait we past it, his mom said I know. @PERSON1 said we made a deal, remember. It is mom said yup but you broke the deal, so what did you learn. @PERSON1 said that when you make a deal sign a contract, his mom said, @CAPS2 patients is a virtue that you need to learn. So that is my story about patients in my own way." 8 9 17 2 2 2 2 2 3 2 2 +18231 7 "A time when I was patient was when I took the @CAPS1 test in @NUM1 grade. In my class there was only @NUM2 @NUM1 graders while the rest were @NUM4. so we tested in the principal's office. That was the day when we had to take a writing part. They are hard and take a while. When we started some people rushed as fast as they can to get done. I took my time to plan what I was going to write about. We had lots of time so you shoud use the most of your time to make everything good. To do this you have to be patient with yourself. This means that you should look over your answers again and make sure you have it correct. When I done with the writing section, I went over it to make sure I had everything right. I had plenty of time. When I was done correcting my work I waited for everyone else to be done as well by reading. That was the time when I was patient." 11 12 23 3 3 2 3 3 3 3 3 +18232 7 "Patients is everything, ever hear these words! When you waiting in line for a test food restaurant, or when you stuck in a traffic. Youre annoyed and angry, but then those words come to your mind. patient is everything, one time I was waiting in the longer line ever waiting to see the ordering counter! I was in a rush, I had a class I had to get to in five minutes. When I could we the counter I saw the empeloyees rushing around trying tralicly to get all the orders. Then I saw the reason of the holdap. There was an old man at the front of the line trying to despreately order. I didnt blame him, wich all those choices, he didnt know what to pick, the lost of the line wasnt as patient, harry up. One said come on. @CAPS1 another I just waited patiently thinking, the line wasnt really being fair. I suggested a choice for him and he ordered. Sure, I way @NUM1 minutes late for my class but I was patient and understanding towards the old man, what comes around goes around they say, rest of the day I felt good about my good deed" 8 12 20 2 2 2 2 3 3 3 3 +18233 7 "Are you always or even sometimes patient? If not your normal. @CAPS1-@CAPS1. But everyone on @LOCATION1 should be patient. It will help you in the long run. I f you and I were patient our would would be a little bit fasier. Like if your brother for an instint was in your bathroom and you had to use it. you could wait for him to finish. That is saving argueing and its being patient. I say these thing like Im patient! but that would be a lie, because I am far from it! Not saying its easy but we all try." 5 5 10 0 1 2 2 0 1 2 2 +18234 7 "@PERSON1 was a hamster. One day @PERSON1 was out of his cage playing with his owners’ sister hamster @PERSON1. @PERSON1 had just got a brand new hamster toy. @CAPS5 had a bunch of tubes to climb in and a slide and running wheel. @PERSON1 wished he had one, @CAPS1 his owner didn’t have enough money yet. Even when @PERSON1 play in his, he still wanted one. @CAPS5 was very hard for @PERSON1 to wait, especially when @PERSON1 saw @PERSON1 playing in his. This is the story of when @PERSON1 was talking ta @PERSON1, I really wish I had one of those hamster toys” said @PERSON1.” @CAPS1 my owner doesn’t have enough money!” “@CAPS2’t worry “said @PERSON1.” You can play in mine until he does. I hear he’s almost got enough.” “@CAPS3, I guess, that’s close enough. “A few days later, @PERSON1 got the brand new toy, never than @CAPS4, “I guess @CAPS5 was worth waiting!” @CAPS5 was twice as big than @PERSON1’s, so they could shore. And they both lived happily ever after." 9 12 21 2 2 2 3 3 3 3 3 +18235 7 "Im not a very patient person so im going to be wrighting about what patience @CAPS6. Patience @CAPS6 when you dont complain when your board or waiting for somthing. For example (for your convenance I @CAPS1 be wrighting a story about patience, please take to note that this story @CAPS6 completely untrue) @CAPS1 was walking home and saw an elderly woman, she was having trouble with her grocerys. @CAPS1 wanted to help her but all he was thinking about was his cousin @CAPS2 that @CAPS4 be arriving at his house any moment now. @CAPS1 walked up to the woman and asked if she needed help and she replied if you could I live over @CAPS3 she pointed to a large tan house. @CAPS1 carried her things to the door. @CAPS3 you go, he said. @CAPS4 you mind helping me put them away the woman asked. @CAPS1 thought about how his mother never wanted him to go into a strangers house, but @CAPS1 sort of knew her, so he said that he @CAPS4 help the woman smile. @CAPS1 then picked up the bags and said, @CAPS6 your home unlocked @CAPS7 its not she replied, where are your keys @CAPS1 asked, I beleve there lost somwere in the lawn. @CAPS1 searched for about a half hour, then he found them under a bush. He brought the keys to her and said @CAPS3 you go, she opened the door and he helped her with her grocres. When they were all put away @CAPS1 said @CAPS11 I ought to be going. @CAPS11 not without somway I can repay you said the woman @CAPS13 go find my purse. @CAPS1 waited and waited, it had to have been a hour. The woman came out of the kitchin with some change. @CAPS15 its only change, I couldnt find my wallet she said and gave him the change. @CAPS1 left feeling like a good person because he was patient with the woman. @CAPS1 told his mom about his good deed and his cousin @CAPS2 got to stay longer. This was my example of patience, if this ever happens to you make sure your patient and know the person." 10 8 18 3 3 2 2 2 2 2 2 +18236 7 "One day comes home??? movie we were stopped @CAPS1 I train one train . Only the??? was???or so we thought I after the I very large ??? came @CAPS1 , In the car was he & my old ???sat in the car for at leas @NUM1 mints but the train showed an signs of ending. But then suddenly it stopped the train sloped dead in its tracks. We that of turning around. But the @ORGANIZATION1 cars were blades in about @NUM2 mints??? began slowly starting soon after @NUM3 mints were the train ended. After the @CAPS2 went up we started driving but another train was coming. So my dad put the???to the ???and???it out of there we were so patient. Ill??? we spent @NUM4 mints almost in hour of ??? But we were patient and that she longed date ever the end ." 9 11 20 2 2 2 3 3 3 3 2 +18237 7 "When we drive to @CAPS1 I have to be patient. When we are in the car I really have to be patient because it takes @NUM1 hours plus the extra time we spend going to the restroom, out for lunch, plus we stay for the night. But when we are on the road it is so @CAPS2, That is how I need to be patient. I have to bring a car bag to entertain me. I contains a book, ped of paper. My dads laptop also. A big factor is my ipod. Exposcally I dont like that my legs got all??? and the??? ???. ??? ??? hate that felling. But at the end result I love??? you just have to be patient enough to get there and the end factor is the best." 11 7 18 3 3 3 2 2 1 2 2 +18238 7 One day at my school. It was lunch and I was very hungry. The lunch was filled with kids. I could hear my stomach growl I was so hungary. I stood for ten minutes then I started thinking maybe I could cut. But no I didnt. It felt like an hour had gone by. I was still waiting s trying to be as patient as possible. Then I relized the line was moving quicker and quicker. Until I finally got my food and ate. I had only five minutes of recess but I was just happy to eat. Patient is by 8 8 16 2 2 2 2 2 2 2 2 +18239 7 I know someone that was patient. The person was at the doctors she was savifly six and she still waited. They can fix that problem by asking nicely can I go ahead of you plezz. That will solve every thing in a kind and respetful way. That is what I think respectful way. 3 4 7 1 1 1 0 1 1 1 1 +18240 7 "I remmeber a time when I was six I was waiting In the walking clinil @CAPS1 almost @NUM1 hours so l asked them if they could change the @LOCATION1 channel to @ORGANIZATION1, after @CAPS2 got over I @CAPS3 asleep @CAPS2 @CAPS5 like forever @CAPS1 them to say ''@CAPS6 salslory,"" my mom tried wakeing me up she couldn't until I @CAPS7 off the cach seat that they had In the kid's are. I was there at the walking clinic @CAPS1 one reason my athsmua @CAPS2 bad @CAPS1 a while because I'd been sick. Whe they called me dawm my mom said that I was really patient and the nurse evan said I was actually Patient to be patient that long so she gave me a lolly pop, (small one). After all of that was done I went home and went to bed. Thats the time I was Patient @CAPS1 two hours." 8 8 16 2 2 2 2 2 2 2 2 +18241 7 "Someone l know that is patient is my mom. My mom is one of the most patient people l know. Especially on this certain day. Every once and a while my brothers and sister and l are just kind of hard to handle. We where on our way to church when my brother and l started arguing and fighting, for no particular reason, we always bicker and bother each other. My littlest brothe and my sister where frequently screaming and shouting at one another for dumb reasons like he stuck his tongue out at me she pinched me. Then we finally got to church l guess my mom figure it would stop once we got there, but no my three year old brother @PERSON1 repeatedly ran around and threw the church. My oldest brother kept on calling my sister names and l kept talking with my friends. I know l would not be nearly that patient with anyone. So that is why l think my mom is so patient. After church that afternoon all she told us to do was behave, and after we realized how patient she was we just figured on our own that we should listen to her and behave." 8 12 20 2 2 2 2 3 3 3 3 +18242 7 One day at the fair I was patient. I wanted to ride the bumper cars. So I got in line. There where about @NUM1 people in front of me so I knew I had to be patient. So I waited in line until it was my turn. They let @NUM2 people in at a time so it took a while for me to get my turn. Then it was my turn. I wanted to go with my friends so we let some people got in front of us. Then after @NUM3 minutes it was our turn we picked our car and had some fun. That's a time when I was patient. 9 7 16 2 2 2 3 2 2 1 2 +18243 7 "During the @DATE1, my mom broke her wrist while we were riding our bikes down a trail. At the end of the trail mom turned a corner too fast and flipped over her handle bars. I didnt know her had broken her wrist until she stood up and told me. When she told me I froze, no one has ever had a broken bone in my family before so I didnt know what to do. Mom calmly told me we had to walk our bikes to the car, since we got to the trail by car. As we walked our bikes toward the car mom didnt say anything like how much pain she was in or anything. When we got to the car I had to put the bikes in the backseat. Now to those who dont know, bikes are a bit heavy and putting them in a backseat of a car is a bit hard. Also when your mom has a broken bone and is in alot of pain, and the bikes wont go in the backseat the situation can get rather stressful. My mom saw that I was getting upset and told me to calm down and directed me on how to put the bikes in. After that mom told me to get her glasses that we accidentally left on the trail. I ran as fast as I could to get her glasses, but they were broken by the fall. So I ran all the way back to the car and since we had the same eyesight I gave her my glasses. My mom needed glasses because since Im not to yet she had to drive herself to the emergency room, and she did so without complaint. When we got to the emergency room we had to wait a while before anyone would see us. I was freaking out, but mom was actually telling jokes on how she got hurt doing something healthy like exercise. I admire my mom for her patience and calmness in a situation like that. She didnt once complain or whine about the pain she was in. she didnt yell at me when I was taking a while putting the bikes in the car. While I was pretty much about to hyper ventalate right there and then. She was calmly telling me it was okay and helping me move along. It was as if I was the one who got hurt and she was being the mother as always and taking me to the emergency room. I know for a fact that I wouldnt have handled the situation that well if I broke my wrist. I know that I wouldve been crying and wanting someone to just hurry up and help me. Im amazed at my moms understanding and tolerance. I hope I can achieve that too." 12 12 24 3 3 3 3 3 3 3 3 +18244 7 One day when I went to the doctors to get shots my mom said I was very patient. My mom brought me to the doctors so I could get my flue shots like every other year when we got in the car to go I kept saying do we really have to go of course my mom said yes. Once we got there we had to wait a little bit my mom had to get the papers so I just standed there and watched the fish swim around then my mom said lets go in the waiting room. After that she said I had been very patient for waiting except for in the car when I was whinning. So I said thanks and when are we going to get in there. Then when we finally get in there I had to be weighed and be asked all these questions the the nurse came in and gave me these shots in my left arm she said you are like almost the only one of are kid patients that has it been patient. And that is the story of when I was patient. 8 6 14 2 2 2 2 2 2 1 1 +18245 7 "Some people are patient. Others are not. Some have short attention spans. Patience is a person who is understanding and tolerant. They experience difficulties without complaining. Some people have problems sitting still or waiting for something. They are not patient. There is a saying that goes, patience is a virtue. Many have heard of that. Patience is waiting for @NUM1 hours in line to see a movie and not having to move around. Patience isnt pacing back and forth. Being patient in problems is fine." 4 5 9 0 1 1 2 0 1 2 2 +18246 7 "I @DATE1, my family took a trip to @ORGANIZATION1. After @CAPS3 got to the airport @CAPS3 had to wait a long time. So there @CAPS3 are on the airport, about to leave to go to @LOCATION1 when are flight is delayed because a early morning thunderstorm rolled in. @CAPS6 took forever, every minute seemed like an hour, @CAPS1 after half an hour I asked for some money to get some breakfast but of course my mom said, @CAPS2. I was about to lose @CAPS6 when this guy came over the speaker, @CAPS3 will have to delay the flight to @LOCATION2, @LOCATION3 a little longer. @CAPS4 when I rember that I have a @CAPS5 in my bag and I go to turn @CAPS6 on and @CAPS6s dead. Then after an hour the storm stopped and @CAPS3 were able to board the plane. From that day I found out Im not a pacient person." 9 8 17 2 3 2 2 2 2 2 2 +18247 7 "This is a story about patience, one day my friende tells me hey did you ever be patient. I told him no I have never in my life been pacients, well you should he told me. One day my frend is telling my new game is coming out and I just talk why he was talking I can tell that he did not like it at all, so in class I am telling every one that I won him in race. But I had no patients on me so I stoted complaining to him I said I won and he said you have no patienc and it kepted going on and on. Then my other friend said stop it right now! I am sick and tired of this you have no patients and you lost @NUM1 game! Ok some time we all have complained in are life! Just stop fighting please. So the next day I said do you have eny thing to tell me I will listen better now. I learnd that I should listen to what people have to say then talk that will get are friend ship to the next leveal." 4 6 10 1 1 1 1 2 2 1 1 +18248 7 "Patience is the key to life some say. I dont really know if it is or not. Patience is when your quite, you can wait for things. It is when you can do hardstuff with out feeling frustration, anger, or sadness. When you have patience is when you can do things with ease you can do it without difficulties. Patience is self respecting, kind fair and not self seeking. Patience is respect not disrespect, patience has no evil, paticence does not boast. Patience does not lie, it makes things better when they are difficulty. It makes it easier to focus and do things better. It helps to wait for things." 5 6 11 0 1 2 2 0 1 2 3 +18249 7 "When I think of being patient I think about the time I went to southrend @LOCATION1 for hockey, we were on the road for @NUM1 hours! While we were on the way there i didnt say one thing about how much longer or anything, although I was on a claster bus with all my hockey friends wathing a hockey movie. When I think of patients I think of wating without asking @CAPS1 it done yet? or Are we there yet? I myself dont have the best patients. when I want the computer or to role the guard or frarwheeler and someone was on those things I tend to ask when will he be dane! alot. Patients grows with you when you develop, as you get older you will be able to wait longer times without getting stressed out about how everything takes so long even this test takes patients!" 6 7 13 1 1 2 2 1 1 2 3 +18250 7 "It all started on a cold and snowy @DATE1, there was only two days till @CAPS1! @CAPS1 is my favorite time of year because you see all the lights that are the colors of the rainbows. Also people are very happy around this time of year. I always become impatient waiting for @CAPS1 to @CAPS6. This year I was going to be patient. @CAPS4 I started being patient by going with my mom to go buy new light @CAPS1 tree, and to buy presents for my family. While we were shopping there were all kinds of people in the store. @CAPS4 when got to the checkout line there were a lot of people in line. My mom told me too be patient, @CAPS4 I did. When we finally got out of the store we rushed home to start decorating. I put up the blow up @LOCATION1 which was taking a very long time, but I had to be patient. Finally it @CAPS6 to making the cookies, which was the best part. We cut the dough and put them into the oven. It was taking a long time for them to cook. My mom said as patient can. ''@CAPS4 I was patient and the cookies were eventually all fasted with sprinkles on them. With everything made and put up we were ready for @CAPS1. ''@CAPS6 on @CAPS1,'' I said to myself. I need to be patient or @CAPS1 will never @CAPS6. @CAPS4 @CAPS1 @CAPS10 everyone came over and had dinner with us, and got their presents I bought them. As everyone left I walked to my room not remembering that it was @CAPS1 @CAPS10. Then when I woke up late, and everyone was waiting for me I got excited: @CAPS13 I was patient and it payed off." 12 11 23 3 3 3 3 3 3 2 3 +18251 7 "Being patient means that you are understanding and tolerant. I was patien when I whent to @LOCATION1 @CAPS1. When I whent to @LOCATION1 @CAPS1 I had to wait in line. I didnt have to wait for that long but I had for wait , I didnt like it, but I was patein. It was worth the wait. I had to wait in line for food to there was a lot of people in line there. That was worth the wait too. There food was good. That is how I use my lifeskill of patience. Patience is a good life skill to practice." 5 6 11 1 1 1 2 1 1 2 2 +18252 7 One time. My cousin in patient because she was going to the mouie @CAPS1 a party. @CAPS1 it was a lot of kids at her house @CAPS1 she had to clean up the house before her mom come home. Also @CAPS2 that day she called our entire mom but they didnt pick up @CAPS2 she hurry up @CAPS1 tried to clean before he boyfriend came over. Then she hurry up @CAPS1 get in the tub then got out put the the kids @CAPS1 the tub. She still had to clean up then she us what to clean up. @CAPS2 she rush out the @CAPS1 left us there while go get us something to eat @CAPS2 we clean up while. She is gone. Then she called me and said. I m on my way with food I said oh. Next her boyfriend came @CAPS1 he ready to go. She came back the house was clean. Then her mom came home @CAPS2 went in the room in change he clothe s her mom said where a going. She said to the mouie and a party her moma said no you not go clean up the bathroom first she got mad and said moma I been in patien all day I m ready to go. @CAPS2 she wash it go @CAPS1 then they left. 6 8 14 2 2 1 1 2 2 2 2 +18253 7 "Patience is when someone is understanding and tolerant. Well Im going to tell you about someone who is patience. My friend @PERSON1 is very patience person. @PERSON1 is understanding because when someone asks her wait she listens and waits. When her parents were talking, and when she was trying to tell them something they told her to wait because it is rude when you interrupt adults when there talking. @PERSON1 is a very patience person." 8 4 12 1 3 2 2 0 1 1 2 +18254 7 A time when I was patient was when my birthday was coming. I wanted my party to come sooner. But my parents kept saying no. @CAPS1 the party came I got all my presents exept the ones from my parents. They said @CAPS1 everyone left they would give them to me. But no one left till ten. So I fell asleep. When I wook up no one was up. So I still had to wait. (I hate waiting.) @CAPS1 my mum got up I asked if I could open my presents she said wait till your father gets up. @CAPS1 my dad finally got up (@NUM1) I finally got to open my presents. It was worth the wait. 7 10 17 1 2 2 2 2 3 2 3 +18255 7 "I awoke at the sound of the alarm clock on a sort @PERSON1. It was @NUM1 my mom was on time prepare ???. I was in a hurry to get going. Today was the day that the x-box @NUM2 came out and I wanted it. My mom had made a deal with me. If I was patient the whole time when we were running arch I could get it. As an hour past we arrived at the grcery state. I darted inside and grabbed a cart. My mom said again that I have to be patient. So the rest of the time I just followed my mom and never showed any ginks of being impatient. After what see made like hours we were done and the next stop was the library. I couldnt do anything there without getting in trouble, I hated it. But I just sat there on a bench quickly. It was already dark when we finally went to best buy to buy the x-box @NUM2. We went and got it and I was so excited! My mom said I deserve it after being so patient all day." 9 11 20 2 2 2 3 3 3 2 3 +18256 7 "This @DATE1 I went to @LOCATION1, @CAPS1 the part cucry one forgets is the @NUM1 hour plane ride. We were in a group of @NUM2 familis all my friends. When we become the plane we were an exited, @CAPS1 on gate were scattered all over. So I sat with my @NUM3 favorite friends in that trip. We were all loaded with as electicails the enemes. As we foot on I thought @CAPS3 was going to be a breeze, @CAPS1 thought wrong. At first @CAPS3 was fine we talkes and played games in our I pods and sort, @CAPS1 after like @NUM2 hours we started setting itchy and our I pods died. So then we decided to watch a movie as our mind dvd player. @CAPS3 was starling to irn low on battery and the plan was broken. The thing died and we still had like another @NUM2 hours and we only got to watch one movie. On the back of each seat there was a tv so we forced @CAPS3 on, @CAPS1 @CAPS3 was one of @NUM6 of the???did not ???. We started to see really??? and @CAPS3 was getting late. We didn't know what to do @CAPS3 was hopeless .We had to sit and wait if out sit was a true talk of patience. We??? @NUM3 home??? @CAPS3 was the longest @NUM3 horrs ever. We did nothing. @CAPS1 as we wanted we bolted out of our seats and into the air read @CAPS3 was over. We didn't have to be patient no longer." 11 11 22 3 3 2 3 3 3 2 3 +18257 7 "Patients for me is hard but this is a time that I was patient. It was the first day of school, and it was the end of the day. At the end of the day there were volleyball tryouts. I wanted to try out but I didnt have my physical. So while everyone was playing volleyball me and @NUM1 other people were sitting and watching for @NUM2 @DATE1!!!. I wasnt vary patient then but @DATE1 on at the end of the tryouts my mom came to pick me up and we went straight from there to the sports center doctors office thingy, so I could get my physical done. So me and my mom went in and she had to sign and fill out paper work because she didnt make me all appointment. So that took about @NUM3 min. then we waited, and waited, and waited until @NUM4 and @DATE1 if you add that up this @NUM2 @DATE1 waiting there with nothing to do. I was patient but my mom definitely wasnt. So finally they called me in and they took my mom to a room to wait while they took my height and weight. Then they took me to the room my mom was in and we waited for @NUM3 min. then finally they gave us the paper/ physical, and then we left. Practice ended at @NUM7 and we didnt get home until @NUM8!!!. That is a time I was patient." 8 12 20 2 2 2 2 3 3 3 3 +18258 7 "Once I was patient, I want to go they football with my dad but didnt want to. So when he was puting shoe on when I would ask him to come play football he would take his shone off. Then I had to wait two and half hour just for him to get one shone on. When he was putting second shon I didnt say anything so. We faihl when and play football. Thats how I learn if you use your patience on will to be able to do some safe." 4 5 9 1 1 1 1 1 2 1 1 +18259 7 "A time when some one showed patience was my mom when I wrote on the wall she was very mad at me so the my sister said she did it to so my mom had her patients and listen wat we had to say then she said yall are in a lot of trouble because we no better she said but we still had to clean every thing for a week, dut she was very patient with us and thats how someone that I know show patients." 5 4 9 1 1 2 1 1 1 1 1 +18260 7 "Patience @CAPS3 a sense of tolerance. Having the patience means that you can wait, it will come to you if you just wait. like when you gobble your food down thinking its going to he stolen, when really, you could have left it there and yet it would still there. Patience @CAPS3 knowing that everything @CAPS3 going to be ok and you have time. Having patience to do somthing, @CAPS3 to take your time, or go at your own pace believing you will finish. Patience @CAPS3 qenrally how long you can wait to do somthing, or even put up with something. Patience could also mean now long you can put up with somthing, like a bully for instance. He or she makes fun you again and again. But how long, how much patience do you have before your just pushed off the edge and you cant take it any more! THAT@CAPS1 @CAPS2 PATIENCE @CAPS3." 6 7 13 0 1 2 3 0 2 2 3 +18261 7 "@CAPS1 @PERSON1, its @PERSON3 how are u? Im @CAPS5, @CAPS24s upp? @CAPS27, im calling you to ask, if u wanna go to @CAPS2 @CAPS3 with men? @CAPS4 yah! I havent went in a long time! hold on lemme ask. @CAPS5. As I explained to her @CAPS24 is happening . @CAPS5, my grandmas gonna come pick you up? @CAPS7 @CAPS24 time? @CAPS8 @NUM1 oclock! @CAPS5 see yah @CAPS29!bye!!( @CAPS10 come) help us pack the cooler @CAPS5 ( knock & doorbell rings) I fling it open @CAPS12 @CAPS13, I missed you so mutch @CAPS14! @CAPS15 two @NUM2 hours striaght we played guitar .Hepo until we both passed out, @CAPS16 girls time to get ready . @CAPS17 mom were up! We all got ready we got on the free way @PERSON1 & I took goofy pictures, and @CAPS29 fell asleep .With @CAPS12 sleeping on me @CAPS19 my eyes , @CAPS20 it was? I lost stopped so we all can tell @PERSON3 were going to @CAPS2 @CAPS3! I look at my mum, Are you kidding men? @CAPS23, the familys going. The whole family? @CAPS26 just @PERSON2, @PERSON4,you & me are going! @CAPS24 about @CAPS25? @CAPS26, she can go she has to work that really does suck mom Do I know. @CAPS27 when we are going? Were leaving @DATE1 &coming back that day Were not staying the night? @CAPS23, we cant afford it! @CAPS29 how did you get @CAPS2 @CAPS3 ticket? I won them on a radio station @CAPS32, @CAPS5 @CAPS27 am i aloud to bring someone? like who? I @CAPS35 maybe @CAPS12, can I call? ask her if she can come ? @CAPS37 here!! As I scroll through my moms phone, trying to find @CAPS38 @CAPS39s phone number, I hit the send buttons & it dials. @CAPS40? @CAPS41, this is @PERSON3 is @CAPS12 there? @CAPS43 one second (@CAPS44! ) (telephone!) @CAPS40?" 10 10 20 2 2 3 3 3 2 3 2 +18262 7 "The time when I showed patient is when I was having to go down a waterslide. It all started when I was in @LOCATION1. I want to go swimming at a place called @ORGANIZATION1. The place was so big, you could fit @NUM1 people in it. The time I was patient is when I was going up the stairs to the slide when every body rush in front of me just to go down @NUM2 slides. So I waited about @NUM3 minutes just to go on fun slide. The blason it took me so long is because you have to walk up @NUM2 flight or stairs with in ??? So the second time I went up I ran up the stairs so I could be the first one, so I did and I still had to wait because it still people there from last time. So I waited my turn. That is the time I showed patient." 8 6 14 2 2 2 2 2 1 2 1 +18263 7 When I was patient I was in line at gender point for the @CAPS1 we got to cedar point late so we went to the end of the line there was a sign have way through that said your wait will be @NUM1 hour so we stad in line for an hour finally we got to the front I was so exited as I was walking up the stairs I realized I just awaited an hour and @NUM2 minutes to ?? this and then I rode it ??? was ??? 5 6 11 1 1 2 1 2 2 1 1 +18264 7 "A Time I was patient was the time @CAPS1 @CAPS2 and I whent to the @CAPS3 @NUM1 hours early. @CAPS7 we walk up to the front desk panting from ruming because we thought we were late and the @ORGANIZATION2 said ""Are you ok!"" I said ""@CAPS4, am I late for the appointment for foyce""! Wo your @NUM1 hours early "" she said"" @CAPS2 you pulled me. Out @CAPS1 two favorite hours in school to be @NUM1 hours early""! I said ""sorry would you like me to take you back to school"" ""@CAPS6 I'm good "".I said @CAPS7 we waited in the loby and I was fine with it because I had the???west as game @ORGANIZATION1 ball @CAPS8 than chichi @NUM4 for @CAPS9.S! I just played that until I got bored of it then I read some wired adult magazine. By the easy I was only @NUM5 when this happened and now I'm almost @NUM6. Then the @CAPS3 walked out and I got @CAPS1 shots. That was the time I was patient the most ant longest" 8 8 16 2 2 2 2 2 2 2 2 +18265 7 "@DATE1 one, day I was at the store with my sister and my mom thair were people coting, runing in each other and yelling “get out of my way”. That made me mad and every one else but like every one else I was not yelling at the overwellmed people. It was almost christmas I seen why every one was geting so mad. We were all trying to just mind are own bussnie. But for some reson people dust made everyone else mad so that’s when patience came in. After all we got out and when home. That’s why you should have patience." 8 7 15 2 2 2 2 2 2 2 1 +18266 7 "One day me and my brother went hunting at @CAPS1 oaks. It was about a one and a half mile walk. When we got set up the hunt began. We waited but we didnt see anything but we werent going to give up. So after an hour we saw a flok of turkeys wandering around like penguins. Their feathers started to lose their color. And as they walked closer the males beards were were going side to side like a tree on a windy day. After watching them for about @NUM1 minurts they probably caught our sent and ran away. After that we knew the deer would not come out but we were wrong, about @NUM2 minutes later we saw a deer. And we watched it till it came to shoting range. I was looking other places and I told my brother that their were deer surrounding us. So he looked and he saw it to and only one of them were a deer. So we watched them as they came closer like a storm getting closer and closer. So my brother drew back his bow. He held his bow back for over @NUM3 minutes he almost looked like a statue. And my brother waited for it to turn around because his head was faceing the other way and right when it was in perfect view he shot. The arrow shot out like a bulet coming out of a gun. The arrow didnt hit him it went about @NUM4 foot away from the deer. The deer heard the arrow launch and ran. We waited to hope that there were any other deer coming but we didnt see any so my brother and I cleaned up our blind. And we luged everything back to the car. When we got home everybody was waiting at the door. But we told them that we didnt get one. So me and my brother ate dinner then my whole family sat down to watch a movie." 12 9 21 3 3 3 3 3 2 2 2 +18267 7 "Patience can really help you in life some times its the only thing that can keep us sane. Patience is important. Just like how my dog ran away and Im waiting for her to come back. Sometimes you'll get in a sitchation were your waiting for someone but there is always only one choice, to wait or be patient." 6 5 11 0 2 2 2 0 1 2 2 +18268 7 I like bilding a house or a puzzle. Becouse it takes time to do puzzels it takes dedication hard work and patients to complet a house. If you have no patients then it is harder to complet when you just get board of it. 4 4 8 0 1 2 1 0 1 2 1 +18269 7 "My dad is a very patient person. Hes known to be patient. Here is an example, his camera. He waited a whole @NUM1 years just to get one lense for it. Because he was patient. My mom is very patient. My mom is patient too. She waited a whole month just for a pair of slippers, because she was patient. Im proud to have such patient parent. Which means that I know they are very responsible and that is what I think patient is." 9 5 14 2 2 2 3 1 2 1 1 +18271 7 "When my brother, my dad and my two cousins got out of the car from the @NUM1 hour drive from @LOCATION1, we knew would have a blast. I looked up and saw a spectacular view, roller @CAPS1 galore. I saw at cedar point, the amusement park. In the car we talked about the @CAPS1. The maverick, milleniur force, @NUM2, @CAPS2, and the mentis. When I walked in, I knew this way going to be fun. Right as we walked in we saw the @CAPS2, but the line was huge and we decided to go a back later. As the day goes on we go almost of the @CAPS1. As we approach the @CAPS4 we see at least @NUM3 people in line, so there goes our chance to go on the tallest ride. When we arrive at the @CAPS2 the line was bigger then the start of the day. We discussed and decide it's not getting any smaller and go on the ride. About a later a @NUM4 years guy is with his mom. On the back of his shirt is a cool fish, so my cousin asked him what it is. He said it was a tropical fish from @LOCATION3. We ended up talking to them for half an hour until we got on the ride. The ride was amazing and deserved the wait. This is how I was patient and leard waiting leads up to good things." 8 12 20 2 2 2 2 3 3 3 3 +18272 7 One time I was pacient was when I went to @LOCATION1 with my @CAPS1 + cousin. I had to baby sit my cousin @CAPS2 while his room pack up cause they were making back to @LOCATION2. My cousin can be a handful sometimes and always gets his way. But I was pacient and waited til the trip was away. I didnt complain til I got home til my mom. Me and my cousin got in lots of fights on that vacation. But I still love him . I had to be very pacient with my cousin and even maybe do what he wanted but I knew his mom was very proud of me. I remember when we went for a walk to a pond to find alligators. But then @CAPS2 wanted to go to the pack.I knew I had to give in ( considering that hes @NUM1 and immature). But I just went with the flow and we went to the pack. That was a time that I had to be pacient. 6 5 11 1 1 2 2 1 1 1 2 +18273 7 "Patients is something not everybody has. In order for someone to be patient, you have to understand and tolerate things that might be very hard. I m one of those people. Patients is a sort of a gift. It takes time to have patients and you can not always be in a hurry. For example, one time I heard someone talking in my basement. So I went down there to see who was in my house, @CAPS1 I was walking I heard giggling and excitement I kept on walking until I heard the voices coming from behind a door. I went to open it and I saw all kinds of gifts and I saw two people, my mom and my dad. They hurried up and closed the door and told me to go up stairs. So I ran up stairs to tell my brothers what I saw. They were all excited and everything. The next day went by and I could not wait until @CAPS2 the next day. So I waited" 9 9 18 2 2 2 3 2 2 2 3 +18275 7 "@PERSON1 wanted a dog. She really did. She had been asking her @CAPS1 for a while now. Every time she would ask her @CAPS1, would reply “You can’t get a dog until you earn it.” @PERSON1 didn’t know how @CAPS7 earn it, she thought about it for a while she didn’t really know what her @CAPS1 meant, she figured that her @CAPS1 meant that she needed @CAPS7 @CAPS8 her some responsibility. She looked at the clock it said @NUM1, almost time for dinner, she thought her @CAPS1 was probably, working on it, so she walked out @CAPS7 the kitchen & there was her @CAPS1 making dinner. @PERSON1 asked a little more than loud “what’s for dinner?” steak & mashed potatoes. That was @PERSON1’s favorite. She nodded & said “can’t help!” “why not?” her @CAPS1 questioned. @PERSON1 asked her what could she could do & her @CAPS1 said @CAPS7 get the salt & pepper @CAPS7 put on the cooking steak. Her @CAPS1 felt pretty happy that @PERSON1 was willing @CAPS7 help out. @PERSON1 did what she could then went upstairs @CAPS7 her room, she was hoping her @CAPS1 would get the message. She ate dinner with her @CAPS1 then she went @CAPS7 bed. The next day she ran down the stairs @CAPS7 find her @CAPS1 sitting on the coach. She said quickly “what are we doing today?” her @CAPS1 answered “I was thinking we could just hang around the house.” @PERSON1 was getting impatient she wanted a dog & she was trying her @CAPS6 @CAPS7 be good, then finally she last it and shouted “are we ever gonna get a dog???” her @CAPS1 surprised of @PERSON1 said “well……” @PERSON1 interrupted “@CAPS1 I @CAPS2 @CAPS3 ONE AND I @CAPS4 @CAPS5 @CAPS6 @CAPS7 @CAPS8 YOU! “her @CAPS1 answered well if you were more patiet I was gonna say maybe we could go look at anne” @PERSON1 felt bad for veiling & realised things will turn out better if she wailse later that day her & her @CAPS1 went and out a day." 11 9 20 3 2 3 3 3 2 2 2 +18276 7 "The time I was patient was when my sister droped my phone in kool-aid. I was going to get a new one, but it was depending on my behavior. That means I had to be extra good and patient. Everyday for the rest of that week I was good. I still didnt get a new phone so I asked my sister when she was going to buy it. Well since it was her faught, she offered to buy me a new one. She told me that it was coming and I had to be patient. Another week went by, and I was starting to become impatient, but I didnt. The next day my sister took me into the metro pcs store to pick out a new phone. See by being patient I finally got a new phone, and thats the time I was patient." 9 9 18 2 2 2 3 2 2 2 3 +18277 7 A time I had to be patient was when I went to a @ORGANIZATION1. You have to be very patient excepcially when it is all sold out. For example when I was waiting in line for a shirt the line was really long so I had to be patient. This took a lot of patient because the @ORGANIZATION1 was all sold out and their were only three booths with @CAPS1- shirts so I had to wait. At the @ORGANIZATION1 there were many ways we had to be patient like parking getting to our seats. When @ORGANIZATION1 took a @NUM1 min break I went to get a pop and all the lines where long. I was waiting in line for about @NUM2 min waiting to get my pop and my cousin fries and a pop for my sister. I finally got everything and forgot my pop but luckily she gave me a new one just in case that wasn@CAPS1 mine. I went back drank my pop and watched the show. Everything takes patients and when you wait you get everything you need. This is a time I had to be patient. 9 9 18 2 3 2 2 3 1 2 3 +18278 7 Being patient is like a jungle cat hunting its prey. It has to stay perfectly still to get it prey. It has to be patient too. Then after it gets into the wright position it patses. The cat gets its goal by being patient. 7 6 13 1 2 2 2 0 2 2 2 +18279 7 "A time when I had to be patient was at my dance audition. Every year at @ORGANIZATION1 grove college I audition to help pay for my classes. I was ready and pumped to go dance, there were about @NUM1 people in the dance room. I worked very hard when I left the audition. My teachers told me that we would get a letter in the mail telling us how much scholarship money I got. Every day I waited at the mail box hoping my letter would come. A month had passed and I still didnt get anything. I started to get worried and I thought I wouldnt get anything. One day when I gave up all hope a letter came in the mail for me and said that I only got @MONEY3. I was very upset because my classes cost @MONEY1 and @MONEY3 was not a lot of help. I wanted to quit dance but it was a talent I had that I wanted to keep doing. So I waited until dance started and my teacher told me that there was a mistake, I actually got a scholarship for @MONEY2. My mom was very happy and so was I. My teacher apologized for the mix-up and for it taking so long for it to come. I learned a skill that year that was, patience can bring rewards to you but dont give up because it will turn out alright in the end. I also learned that patience is good to learn at an early age, because when I get older a lot of things will get in my way, and I have to be patient so I can overcome all of them." 12 11 23 3 3 3 3 3 3 2 3 +18280 7 "One time I went to the doctors. The docter said to wait in this room with my brother, sister, and mom. She said a nother docter will come in. we waited three hours in that room. My mom was mad, they forgot about us. The docter that was spose to come in went in the wrong room. The worst part was I had to get three shots and I hate shots. In conclusion. I learned my mom is not that patient and I got ice cream after the docters so patience always has a reward." 8 8 16 2 2 2 2 2 2 2 2 +18281 7 "There goes another @NUM1 minutes wasted! I knew I should of got here earlier! Ulg! So many people and so little time! Have you ever had to wait @CAPS1 for food? Three days ago, l though that l should stop at my locker before going to lunch - @CAPS2 @CAPS3! I slammed my grey coated locker and ran for the cafeteria. I sped past a sea of seventh graders urging to get to lunch. I grabbed a tan plate and waited for my @CAPS8 patty, ""what's the hold up?"" I thought. I @CAPS7 reached my destination, @CAPS6 the food was at! I reached out and - wait @CAPS6's the food? The food trays were @CAPS4 @CAPS5! The aroma of pizza enticed my sense and made my poor little stomach growl with anger! I angerly paced, ""@CAPS6 is the food?"" @CAPS7, a lunch lady announced that she would have to make @CAPS8 @CAPS9 on a sub bun. I bailed to the other line. I gripped tongs with disappointment and put chips and cheese on my plate. At least l had some food! I plopped down at my table and another lunch lady came up to me and gave a soft, squishy, warm @CAPS10 @CAPS11 for @CAPS12! She thanked me for my patience ."" l got a cookie! A warm, delicious, @CAPS11"" I thought. Sometimes waiting can get irritating but sometime you @MONTH1 get rewarded!" 12 12 24 3 3 3 3 3 3 3 3 +18282 7 "A time were I was patient was when I had to wait in the waiting room before I got my broken foot. I was waiting for about an hour and a half. It was really boring everybody got to go in front of us. Sometimes it is hard to be patient my mom and I just sat on the chairs for a hour and a half. Finally the nurse said @CAPS1 @CAPS2 so I went in and then we had to wait for the doctor to come in and that took like a good twenty minutes. And all the doctor wanted to know is how I broke my foot. So then we had to wait for the nurse to come back in and put a cast on. And that also took a long time, because first they have to put like five layers of cloth on it then they put like two layers of the cast thing on then I had to wait for it to dry. So having patients can be hard sometimes but everybody can have patients." 10 10 20 3 3 2 2 2 3 2 3 +18283 7 "One day not @CAPS1 very long ago, my brother @PERSON1, had homework troubles. And yes @CAPS2 is a story about patience. My brother comes home with homework every night. Mostly math. One day he needed help. I had said on what. @CAPS1 he said @CAPS2 math homework its just too long and I cant do it. @CAPS3, my brother is in fifth grade, and the homework was only fifteen problems long! I said just do the homework. Around two minutes later, comes another whiney I need help. @CAPS1 I helped him. It took alot of patience, and I was very patient, for him taking an hour long. I check over his work while him and my mom had a fight. Oh, and @PERSON1 took a shower too. It turned out he got um: one, two, three, no two answers right. While I patiently wait for him to get out of the shower, I get a separate piece of paper copied down the problems, answered them, and got them right. When @PERSON1 gets out of the shower I hide the answer sheet. He got mad when I told him that he only got two right. Though with my patient skills I helped him. At student led confereces I seen he got an A. What a happy ending for a patient filled paper." 8 12 20 2 2 2 2 3 3 3 3 +18284 7 "Patience is a lot of things. Patience is used every day. You can be waiting for a check, you could wait for a letter. Sometimes paitents can be fast or be slow. @CAPS2 can be used in school or even a job. If you wait in patience on standing things could happen to you. For a test you can use patience by waiting for an answer to a question by waiting a little longer to get the answer instead of going fast and not getting @CAPS2 right. Patience can be used in @CAPS1 in experiments @CAPS2 could also be used in math to find an answer. When you are building a model you have to use patients so @CAPS2 is right not having patients @CAPS2 will be wrong. That is what patients means to me and everyone has to use @CAPS2 and @CAPS2 is part of your daily life." 5 6 11 0 1 2 2 0 1 2 3 +18285 7 "Patience is a very important value. To sacced you need patience. I have used patience in my life when I got my first horse. I needed patience with her because she was stubborn, self- centered ,and poorly trained. I had to teach her moves at a slow pace so she could remember how she was supposed to do it. I also needed patience for her because she had just moved to the present home and didnt recognize the surroundings. These though, are only some of the ways patience has appeared in my life" 8 8 16 2 2 2 2 2 2 2 2 +18286 7 "Sixty nine days ago @CAPS1-three miners in chile got stuck underground. They were stuck a half mile away from the surface. Now, they are safe and sound at home. However, the question is how are they still alive today? The answer is patience. What is it you ask? Patience is a person or people that are understanding and tolerant. When the miners got stuck they didnt panick or blame each other they waited till someone could help them. Then @DATE2, after they had been found, the miners had been told them they would get out of the hole around @DATE3. Even though @DATE3 was four months away none of the miners complained or yelled. They all understood the difficulty of getting out. Thankfully on @DATE1 all the miners come out safely. This all took patience in order to workout. It took @NUM1 and a half hours to resue all @CAPS1-three miners." 12 8 20 3 3 3 3 2 2 2 2 +18287 7 "On our way to @CAPS1 point ! Im screaming in my head .Its so crazy ! were just derost from on lake erie . I see it ! It was right there within walking distance .Oh my gosh the parking lot we pull up in all the way to the stamp station & we get our stamps & we walk up to the medal bars we stop & the security say no .We found out it only opens at ten so we waited & waited & waited & more & more & more people came ,& soon it got really crowded & more people came & me & my cousins @PERSON1 and @CAPS2 all went to go play phase title and we had wait in line for that to .Finally @NUM1 time to get into the park we all crowded up to the fince & ram out selfs in there we went and got in line for the rapter for @NUM2 min .Man what a line but hey it was so worth it .And yes patience helps a lot " 9 9 18 2 2 2 3 2 2 3 2 +18288 7 "It was @DATE1, @NUM1 my brothers birthday. He turned @NUM2 and he was makeing me mad because he kept asking my mom for stuff and he kept saying no she dont have it. Then he would ask my brother be like you know I got this money for my baby. So he would keep asking people and it was getting on my nerves because when somebody say they dont have it they dont have it. I didnt say nothing I was quiet because it was his birthday but I know how to be patience when its something important or special. So I just was watching him and watching him and then I said here you can have my money it is your birthday so here you go. So I have gave him what he was angry and asking for and he got it I had patience because I didnt go off him because it was his birthday and it gave him what he wanted." 4 6 10 1 1 1 1 2 2 1 1 +18289 7 "A time when I was patient. The day I was patient I had a asma attack. I was veary scared. And worset of all my inhayler was broken. That is not good. So my mom ruched @CAPS2 to the doctors. The doctor gave @CAPS2 a breathing machine and then I was fine: @CAPS1 gave @CAPS2 a perscripsnion and said ""I so these whenever you feel like you cant breathe again."" I said ""ok"" @CAPS2 and my mom went to @ORGANIZATION1 and droped it off we said we would came back in one hour. I went home and fell asleep then my mom woke @CAPS2 up and said use had to go pick that up. So we went to @ORGANIZATION1 and they said ""hold on one moment please"" ""ok"" said my mom. We sat in the car for one note hour waiting and waiting and waiting. I was very payshent my two little sisters were crying because they wanted to go home. That day my mom was un payshent (wich is not good) so she was mad. The worker finily said"" @CAPS3 you go sorry for the ware"" my mom paid font and we left. That day I was very payshent." 9 8 17 2 3 2 2 2 2 2 2 +18290 7 A time I was patient was when my family and I went to west viragna. And we had to wake up early to get on the road show we wouldn have to go in traffic. Show are on the round and when we get they had a nice house. But we had to want in a long line just to get in a resturant . and it took them @NUM1 just to get us in. And we had a happy dinner. that a time when I was patient. 4 6 10 1 1 1 1 2 2 1 1 +18291 7 "What is patience? Patience is the act of thing understanding, tolerate and experiencing difficulties without complaining. I am going to tell you a little story of what every parent has to go through that requires a lot of patience. My baby brother, @PERSON1 was born @DATE1. Since birth my mother has dreaded the day of potty training whom she knew would be coming soon. As you @DATE1 know the price of diapers and pull-ups has gotten pretty expensive so when @PERSON1 turned @NUM1 years started potty training. Potty training requires alot of patience because sometimes the child @DATE1 not go to the potty and @DATE1 go on or herself. My mom knows this but she still gets pretty mad when @PERSON1 decides to use the bathroom on himself. At other times, mom becomes very patient because she knows this is all knew to him and that he is still a small child. My mom is still working on being patient but she knows that soon @PERSON1 will be olde to use the bathroom or the toilet by himself without wearing a pull-up. Many good things can come out of just being patient." 11 11 22 3 3 2 3 3 3 2 3 +18292 7 "Two years ago my dad had surgery on his because he broke it at work .I had to sit in a waiting room for almost ten hours in a very uncomfortable wooden chair with nothing to do .Every two hours my mom ,grandma ,grandpa and I would walk out to the car to stretch .After about four hours I got really tired ,but didnt fall asleep .That was the longest Ive sat in one place my entire life .At first it was hard to believe it was nine hours and a half it only seemed like two ." 8 8 16 2 2 2 2 2 2 2 2 +18293 7 "I am patient in a lot of stof, when I play I am patient. When I take a test I am patient. I am almost patient in everything. Lots of people are patient too. Some people are not patient at all. Just like some of my friends when we play soccer there not patient. They just want to take the ball and score. One time I was playing at the park with my friends I was playing soccer my friend told me to pass the ball. He was not patient at all that day." 5 6 11 1 1 1 2 1 1 2 2 +18294 7 "Patience is the key to tolerating trouble, problems, and helps you to not make tragic mistakes. You need to be patient when you even ??? a challenge in your life. Without patience, nothing would stop you from rushing into a situation with an unfocused mindset. If you try to deal with something without the necessary amount of patience, youre quite likely to make a crucial mistake and/or degrade your chances of succeeding and reaching goal(s). In situations such as sports games arguments, disaster, and many other occurrances, patience will indeed come in handy. When playing sports, being patient will be helpful when youre waiting to get playing time, when your team is behind, and when your teammates arent doing their correct jobs and responsibilities on the team. Having patience, overall, will most likely help your team execute smooth, and by respecting sharing your opinion as well. Ultimately, this will help you sort out the situation a little more smoothly. During a disaster such as a house-fire or when dealing with tornado damage, being patient allows you to sort out all the things that youve lost, and youve enable to think clearly a bait what has just happened Ive experienced a house fire so I know that being patient is a great way to handle and live through such a situation. Overall, I guess what Im trying to say is that when youre patient you experience difficulties without complaining. Right now, you @MONTH1 not think that this applies to you, but honestly, I can guarantee you that life isnt a bundle of roses all the time, so soon or later, youre going to need to use patience. Waiting carefully for things to happen usually isnt human nature but its indeed a necessity in everyday life. So we all need to recognize the fast importance of patience, so we all can live better lives, Im certainly not implying that we need to hurry up and learn this trait, no, we simply need to learn it patiently." 9 7 16 0 3 3 3 0 2 2 3 +18295 7 One day we were in a line at cedar point for the speed racer. We had to wait for what seemed like forever. I was losing my patients so my dad told me to go get something to drink and come back to the same spot. I was standing and someone told and security took us back to the end of the line. We where mad and my dad was losing his patients too. We wait for hours till it was finally our turn. We wait that long and the ride was like a couple minutes long. We said we will never go back to that ride. That was a time l lost my patients. 8 8 16 2 2 2 2 2 2 2 2 +18296 7 The time I was patients with my little brothers! I was baby sitting and they wouldnt lison to me or my other sister and I just relaxed and got on the floor and played with them after that all went well. 4 4 8 1 1 1 1 1 1 1 1 +18297 7 "Do you ever fell like your @CAPS1 is going to expload? Do you ever want to say something but don't because what you said will make things worse than they are? Well that's how l felt in this story! Little brothers and sisters make me so mad, that l want to expload. The story starts at @TIME1pm my brother @LOCATION2 just got off work and has been complaining how he is sick of walking home by hiself so l was going to surprize him by walking home with him l just passed the high school and l heard my name being called so I looked around and l heard my name being called again the voice keep being called so l stoped and my sister @PERSON2, and my friend @LOCATION1 came up from behind me and stopped @PERSON2 said ""I didnt want you to walk to get @LOCATION2 by urself"" so we keep walking and savanah and me keep switching and the scooter got slower, and slower and slower because two people were riding we stoped and pressed the power reset button and began to go again and then we called @LOCATION2 and said we didnt see him and it was already @NUM1 he said hes at his friend house and my mom was coming to get him. We turned around and two minutes later the scooter died we keep holding the power rest button nothing happened so l ran home to get the bike there was sweet running down my face and ?? none stop my legs were numb soon as l got to the house my legs colapest l got up and put shorts on, grabed the bike and ran out the door @PERSON2, and savanah were already at the party store @LOCATION1 questioned me and asked ""@CAPS2 did it take you so long"" I told her what happened as @PERSON2 pushed the @PERSON1 and savanah rode on the handle bars. In my @CAPS1 l was thinking about how long it took me to get there and now mad. l was they came and how l thought l was going to espload because the scooter died we put the bike and scooter away and walked in the door and droped. The lesson learned is dont do something unless your foresure its happening. I learned that the hard way and I'm never going to do it again." 12 9 21 3 3 3 3 2 2 3 2 +18298 7 "When my family went to makiew we had to wait to get on the boat. We were patient because we had to wait toget on the boat. We had to wait at least @NUM1 minutes for the boat. He did not start bering an abnacious @NUM1 year old @CAPS1 he just waited in line. When we got there we rode around the island on a bike. The we did what he wanted to do.While we did that I was patient. @CAPS1 I think that the trip want pretty good, because everybody was patient." 8 8 16 2 2 2 2 2 2 2 2 +18300 7 "I have to be very patient for a while because my sister is going to have her sweet @NUM1 in @DATE1. So it kinda hard for me to be patient about that beacuse my mom and my sister are planning so much at one time. It gets hard for me to relax while they go out and get stuffs for party and on top of that we are taking a trip to @LOCATION1 before her birthday. So we have a lot of planning to do in a month in a half.Its very hard, she has to be patient. Watch my mom?? ?? plan a party and still be able to ?? on the trip to @LOCATION1 with my family. All my life, I have lived ?? being patient but it ?? ?? ?? ?? try to be patient ?? ?? ?/ ?? ?? ?? ?????????" 6 7 13 0 1 2 3 2 1 2 2 +18301 7 My story about patience is when my sister was at the doctors. It was a long day. At first we went in and it it took a hour just for her to get in. and she finally did get in and I was just sitting in the waiting room. I would see people come in and then go out. I see about @NUM1 people do that. I sat and read magazines why I was waiting she finally came out. When she was the day was pretty much over with then. And that was a very patient day. 6 8 14 2 2 1 1 2 2 2 2 +18302 7 "One day when the @ORGANIZATION1 @CAPS1 came out I wanted it so bad so I asked my mom and she said maby for @CAPS2 and guess what @CAPS2 was coming up. It was @DATE1 and I couldnt wait so I went to school and I got it over with every day and I kept coming there and saying Im for sure that I will get a @ORGANIZATION1 just like mom and thats about the handreth time I said that to her and she said you have to be patient or I will probley never even get it for you because you have a little brother around and if he hears you say saying I want this and that hes going to think @LOCATION1 is not real so be patient. Well for the past few days I started being patient and I had to be patient for a while because it was only @DATE2 to and I went to school and of course it was stupid and a waste of time but I didnt care because I was about to get a @ORGANIZATION1 @CAPS3 so I just had to deal with it and be patient at the same time. well I know one thing I am lucky for not asking for a @CAPS3 for the past few days Im being patient I really cant believe it I really never been patient anytime except for now when Im getting something awesome. So now I have only @NUM1 more days antil @CAPS5 so Im really exited. So I was on a @CAPS5 break on the last @NUM1 days antil @CAPS5 so I played video games to save up my time of being patient then the last @NUM3 days Ive been playing outside so that was not a waste of time. Then there whose only @NUM3 more days antil @CAPS5 and I just played outside intel the day was over on those last two days I even played outside with my friends on @CAPS5 eve. Then the day came @CAPS5 finaly I saw my presents and my mom said ya open them sort starred to seen them and once I opened all my present I did not see the @CAPS3, antil my mom gave me one present that she was holding and it was the @CAPS3 and finally I got it so now I dont have to be patient no more, the end" 8 8 16 2 2 2 2 2 2 2 2 +18303 7 "@NUM1 @CAPS1 ago a kid named @CAPS2 was having a problem. This problem is something he would like to keep to himself. He felt like this problem was going to end him. His problem was that he had to go to the dentist!!!@CAPS2 hated the fact that they drill into your teeth. He also hates the smell of dentist office. @CAPS2 had to go in three days and he was even more scared because he's going by himself this time. He then realized that he can't be such a baby so he desited to be patient. He easily waited throw the whole two day and then the day came. He woke up and he road his bike down to the dentists and then he wait a short period of time before he had to go back to the room wear the dentist give you your check up. He desited to close his eyes and be patient. After it was over he went home and was relieft patients was there." 8 10 18 2 2 2 2 3 3 2 2 +18304 7 Do you know anybody who was and still is patient? Everyone was and most likely is till patient. Some people learn how to have a good patience by learning from an elder or some model. Being patient can sometimes be a big pain! You have to know how to have a good attitude even when you are in a very bad mood. Having patience is a good thing to have because you well for sure be good with kids of all ages. Work very good with moody people. Patience also has to work with listening or respect. You might have a child who doesnt listen very well so you have to have some patience with that so they listen. I f someone doesnt have very good respect for people it well take patience to work with them so they can have good respect! In summary patience is one way element to life. 7 6 13 0 2 2 3 0 2 2 2 +18305 7 I rember when I was at luck if steak house and the lady said we have to wait a half hour before we sit down. I thought I was going to die but my mom said to be patient. So about twenty mituens left I was about to scearm but I sat on my chair waiting didn't say a word. But I waited excienley and bould out of my mind. Ten minuets left and I am about to explode I want to eat but I can't but I still didn't do anything did not talk ??? got the bathroom. @NUM1 left I am calming down and about ready to eat still didn't say anything or do any thing. The ??? can kuinly eat and cum so happy then we ordor is mitens later are food comes out and that was the most patient I have ever ben in my life. 10 8 18 3 3 2 2 2 2 2 2 +18306 7 "Patientce is hard for example when you walk in to a @CAPS1s office you must patiently wait your turn to see the @CAPS1. Patience is just another word for wait you have to be wait to see the @CAPS1. But instead most people say cant you patiently wait to see the @CAPS1. But instead most people say cant you @CAPS2 wait to see the @CAPS1. Patience is hard for some people. Many people cannot patiently wait to see a @CAPS1. another example is @CAPS3 when familys go on a road trip you here @CAPS3 say mom when are we gonna get there, and that is my weakness we, well that is a sign of no patience. Whats so ever so what I would say if someone came up to me and said what is patience? I would say wait wait your turn, ??? for the dos, wait for the @CAPS1, and wait for us to get there." 5 5 10 0 1 2 2 1 1 1 2 +18307 7 "A time when I was patient was when I went to the doctors. When I went to the doctors for a checkup, my appointment was at @TIME1 and we didnt get called till @NUM1. I had to wait a long time! Finally when we got into the doctors room the nurse did my blood pressure and then I had to wait another @NUM2 mins for the actuall doctor. By the time the doctor actually came it was about @NUM3. I got my flue shot and the swine flue shot. When I was all done it was @NUM4 I was ready to go home. Thats a time when I was patient." 10 9 19 2 3 2 3 2 2 2 3 +18308 7 "Some people a completely patient. Some people arent patient at all. But me; I sort of stuck somewhere in the middle. When I hear the word patientce, I think of a few things. I think of my cousin @CAPS1 because she not all that patient. I think of my mom because she tries to be really patient. But I mostly think about me. You see, I can be the most patient person in the world, but other times, I have no patience at all. I try my hardest to be patient. If its @CAPS2 @CAPS3, or @CAPS2 I try to be patient. When its my birthday I try to be patient. When were going somewhere special, or Im trying to do my homework, I try to be patient too! Its like a @PERCENT1 chance that I will be patient. I think the main reason I cant always be patient, is that, something I can get irritated very quickly. I guess I just sort of lose my cool. Even though I can lose my cool very easily, I can still be patient at times, when Im cooking dinner, I can be patient, even though Im super hungry and the food is taking too long to cook. I think for some people, patience is something your a natural with. Like singing or dancing. But for other people it doesnt come at all. Overall, I think patience is something that every one should have a little bit of. If you have no patience at all, that means you dont have patience in school. You wont be patient with your boss when you get a job. Dont get me wrong, I know sometimes it might be hard to be patient. Adults and kids/ teenegers arent always patient either. I think we should just try to be patient as we can, all the time!" 6 6 12 1 1 1 3 1 1 2 2 +18309 7 "Patience is not fun butt is sometimes necessary. Im going to tell you how patience is not fun.It was a calm day at school. I was waiting for the well to ring. My friend @CAPS1 was going to finally give me an answer to my question. The question was do you love me? I couldnt stop thinking about it. Ring! Ring ! Ring ! Finally I could see @CAPS1 as excited as I was I rushed out the dorr. I went to his locker and he gave me a note so I read it. It said passibly maybee I like you. I was so happy. Patience is not fun, but I got an answer to my question. Next time you have to be patient just thing good thing come to those who wait." 9 8 17 2 2 2 3 2 2 2 2 +18310 7 In some point you have to be patient. If you are in a line need to be patient. you have to be patient to waiting for a share to part. You have to be patient if something is coming in the mid and you can as wait to what is or you no what it is and you just cant ran to get it. When you go to the store and you see some thing you want and have mom or dad say they will git you for your brithbay then you can no wait for you bathbay then you can no wait for you birthday.Well I have been there . I love crismase because you got almose everything you want; When something you to do something you have been wanting forever you are going there for the first time. All of these thing you have to be patient. 4 3 7 0 1 2 1 0 1 1 1 +18311 7 "This is the story of a boy who became a prince, and a girl who needed one. This is a story of love, of course. Usually those kinds are. My name is @ORGANIZATION1. Everyone calls me @CAPS1, though Im empty on the inside, i goess. Theres gore for a while. Mom died when I was just six years old. And in the ten years since then, my @CAPS2 has wasted away. Hes always there, in her old chair. Sometimes I hear him cry @CAPS7 night. Hes useless now, but Im patient with him. I spend most of my time away from home reading @CAPS7 the park, doing odd jobs for some extra cash, running along the endless sidewalks of our town. I know that its not just @CAPS2 who Im waiting on, love me too. I need somebody. I keep pushing the thought away but the truth is, I spend all of my time waiting. Waiting pays off though, sight. One day in the park a boy walked up to me. He was tall and thin, with short brown hair and bright blue eyes. His name was @CAPS3. He told me hed seen me here before and asked why I read here instead of home. And that day was the first day with @CAPS3, my prince. I wasnt just @CAPS1 anymore, I was @CAPS1 and @CAPS3. @CAPS3, who saved me from myself. @CAPS3, my other half. @CAPS3 , who dis appeased three weeks after I met him. Hes gone hasnt showed up since @CAPS7 night I cry, right there with my @CAPS2. Every day I wait for him in that same park. Im patient with him now, too. This is a story about a boy who is a prince, and a girl who waits for him. I never knew there were so many ways to say goodbye. Holding hands, like when mom passed away. Hearing @CAPS2 cry. A quick kiss with @CAPS3. But I know how to be patient. Im still waiting for a hello." 12 12 24 3 3 3 3 3 3 3 3 +18312 7 "Being patient means that your understanding and tolerant, I have been patient too. When I went fishing I have never caught a fish before. I would sit there and do nothing. Not complaining , not saying anything as others around me caught many fish. I felt like a stupid person but I would sit there and just see as other people caught more fish than I did. As I got older it was still the same. I felt like shooting myself when ever some one caught another fish. I loathed every time a person caught a fish but I was patient. My dad always said I was going to catch a fish and I believed him when I turned nine I went to a friends home for a party. He lived by a lake. Every body except my family brought rods and feels. I didnt have any thing to do, so I asked a boy if I could borrow his pole and fish while he was eating. He said yes so I walked to the lake and threw out the line. I saw something bigs tail come out of the water. All of a sudden a tremendous tag on the line almost threw me into the water. A reeled in the line bit by bit so it wouldnt break. Finilly I held the fish high over my head in a triumghant manner and beamed like the sun. I had finally got a reward for being patient all these years." 9 12 21 2 2 3 2 3 3 3 3 +18314 7 "The four sisters waited in line the second most exciting ride of their days at cedar point. Right behind @CAPS1 @CAPS2 @CAPS3. The roar of the roller coaster and the screams of its riders zoomed by @CAPS14 it started to get quit again. I am soon super, doper excited! @CAPS4 the youngest sister ???. I know me to. The rest said at almost the same time. Eight hard eyes moved at the same time watching the same thing. The @CAPS5! There were twists, torirs, diues, and hills involved with this serious packages deal. @CAPS6. @CAPS10 long has it been?! ??? @PERSON3. @CAPS7 hour. @CAPS8 the oldest, ???, putting her long, dark, curiy hair into a pony tail. @CAPS9 young grasshopper said @PERSON4 has the petteel the side of??? face, @CAPS10 this son has really got to me @CAPS11! agreed @PERSON1 with a look of displeasure on her face. @CAPS12 my ??? guys look! Were almost to the front! exclaimed the second oldest @PERSON2. @CAPS13 me! said a voice coming from??? abuse. @CAPS14 you for being patient, but we are experiencing some difficulty with the ride and it will be fixed as soon as we ran. Thank you. I really hope @CAPS15 finish it soon! said @PERSON3. @CAPS15 all agreed. @CAPS15 waited for about a half @CAPS7 hour @CAPS14 another anouncement came on. @CAPS16 again thank you for being so patient but this problem will not be fixed for another @NUM1 hours. Thank you for choosing cedar point. And the voice shut off and @PERSON1, @PERSON2, @LOCATION1, go ride the grant swings." 12 12 24 3 3 3 3 3 3 3 3 +18317 7 It was the day of central @LOCATION1 and it was after school that I was in the paraid with my football team and the line was going really slow and eventally we have done and it was off the home with my best friend @PERSON1. Well his preparing me and I went to his house and played a little and then we left to go get some food. So when we pulled into @ORGANIZATION1s there were about @NUM1 cars and they were all in the drive through and we sat in the car for about half an hour. But it was lucky because the game didnt start until @NUM2 and it was @NUM3. So we sat there patiently and ordered are food and left to go to the football game. And thats a time when I was patient. 8 8 16 2 2 2 2 2 2 2 2 +18318 7 Patience is hard. You always @CAPS1 it now not later. You must stay calm and be pieceful in patience that they almost forgot what they are whating for but I always @CAPS1 it now too. I can't stand not having something. If theres a test on @DATE1 .I will not be happy if the test changes to @DATE2. I just can't what that long and it gives my tension just knowing whats going to happen. If you have patience it's almost like a gift just like singing and dancing one a gift. 6 8 14 0 2 2 2 2 2 2 2 +18319 7 "its where? The woman asked for the third time. @CAPS1 the hall, to the left of the bathrooms, I said for what had to be the fiftieth time. I grimaced as she walked out of the showroom, she didnt say anything. My dad worked for a small company that produced gift-shop-like knickknacks, like snow globes and the like. @CAPS4 offered me a @DATE1 job after my sixth grade year helping him out at work. Little did I know that what @CAPS4 was saying meant traveling to @LOCATION1, standing in the middle of the hallway at a huge building, and telling people where his showroom was. When working in the manufacturing and trade industry, you often dont meet the smartest, well-educated people. You really need patience if you want to get anywhere. @CAPS2 dollars an hour, @CAPS2 dollars an hour. I muttered to myself as a middle-aged man walked up to me. @CAPS4 read my name tag that had the blue- and- white company logo of youngs incorporated. @CAPS3, youre with youngs? @CAPS4 asked. Do you know where the show room is? I could tell what @CAPS4 was thinking. Why was an adolescent working for a cooporation? @CAPS1 the hall, to the left of the bathrooms. I said in a robotic voice. @CAPS6t you a little young to be doing this kind of work? @CAPS4 asked. You were expecting maybe an intern? I thought hastily, but I instead replied with a complacent @CAPS8, sir. @CAPS9 old are you? @CAPS4 asked quizzically. @CAPS11, sir. I lied. I knew I could pass for a high schooler, so I knew @CAPS4d believe me. I was really wishing that @CAPS4 would move along, because I getting pretty edgy. I was already beginning to imagine what would happen if I grabbed his tie and yanked on it as hard as I could. Doing this all day was @CAPS12 healthy. Are you getting paid? @CAPS12 enough to put up with the likes of you. I thought. I took a deep breath, and answered, yes, sir. But its @CAPS12 a lot. Its more like volunteer work, really. @CAPS13 dont ask any more questions, I thought. @CAPS4 smiled and walked on, thanks son. Youre welcome. I said through partially clenched teeth. I think well both agree that I was patient that day. And I hope that that man bought a boatload of stuff from my dads shop, because if @CAPS4 didnt, I will be very put out. That is the time when I was the most patient." 12 12 24 3 3 3 3 3 3 3 3 +18320 7 "Patience when a person is patient the can wait a thousand years for an answer. Or he/she is understanding of what the problem is when you are stuck. I always think they are a saint when they have the patience to deal with their wife, children, and job at the same time, and keep his cool. That is amazing. Patience is when the person is always their when you need help and he will give you patience by just around him. I think patience is calm, doesnt lose his temper and helps you when you need a little boost of patience" 6 6 12 0 2 2 2 0 2 2 2 +18321 7 "I always have to be patient when I put way model airplanes together. Sometimes I have to ask my dad for help when putting together harder models. Like the @CAPS1- @DATE1 on the @NUM1 bombers. I also have to be patient when hunting for rabbits, squirrels, deer and turkey. If Im not patient I could mist a good shot or a good animal. I sometimes have to patient at school with @CAPS2 and other students." 8 6 14 1 2 2 3 0 1 2 3 +18322 7 "At time when I was patient when I really wanted to go to my favorite store. @CAPS1 I woke up and I told my dad that I wanted to go to my favorite store. @CAPS1 my dad said lets go. @CAPS1 we went to the store and it said that it was closed. @CAPS1 I check the hours and they were going to open in @NUM1 minutes. @CAPS1 my dad and me being patients. Well mostly my dad because he did not say lets go or anything. @CAPS1 @NUM2 mntues past and we had @NUM3 more minutes to wait. Finally @NUM3 minutes past and it was time, but the people that worked there said to wait about @NUM3 minutes cause they had to set up things. @CAPS1 my dad like always nice. He waited @NUM3 more minutes, @CAPS1 we could go in. Now finally @NUM3 minutes past and we got to go inside and I was @CAPS1 happy. Being patient is the best thing ever. No complaining or nothing." 8 9 17 2 2 2 2 2 2 2 3 +18324 7 "It was a nice sunny day outside, in the middle of the @DATE1. It was so hot outside, it was like the sahara desert. honey get your bathing suit on, and some shorts, and get into the car, my mom shouted out the window. @CAPS1 mom, I questioned.its a supriceshe answered. So I did what she told me while wondering where @CAPS9 were going. When @CAPS9 got there, I knew exactly where @CAPS9 were. @STATE1 @CAPS2. I got out of the car with a huge grin on my face. @CAPS3 going to go on @CAPS4 @CAPS5, want to come, I asked my mom. @CAPS6, sounds like fun she replied. When @CAPS9 got to this heart-throbbing roller coaster I looked, and the line was all the way to the end of the sidewalk. @CAPS7, I dont want to wait mom, its too long of a line, I complained. @CAPS8 patient, sweety @CAPS9ll @CAPS8 on the coaster in no time, she replied. One hour later mom its taking forever. I whimpered. @CAPS9 are the next ones in line, she replied still smiling. So when the gates opend i was so excited and nervous, I couldnt believe that I waited an hour to get on one ride. You were very patient, my mom said with her hair sticking straight up. @CAPS6 I was, and @CAPS3 proud of that, I said to myself." 12 12 24 3 3 3 3 3 3 3 3 +18325 7 "One of the most patient time I have ever had was in downtown @LOCATION1 at one of the greatest @CAPS1 places around @CAPS1 poupules! As I my dad and friend waited at our table, @CAPS2 were very hungry. It had been @NUM1 minutes scince @CAPS2 orderd, but I stayed patient as much as I was mad and hungry I stayed indefatigable for my food. Finaly it came and I was satisfied." 8 5 13 2 2 2 2 1 1 1 2 +18326 7 "Honestly, I really don't have a lot of patience. I get angry at the smallest things. I got it all from my dad. Usually. I will get impatient when I'm waiting for my mom to come out to her car. Sometimes we are leaving for dance, sometimes we go to the mall. Whatever it is, though, if we are late, I freak out. Even when I am going to something small like a birthday party, I hate being late for it because everyone is usually there by then and I will feel left out. Sometimes I get impatient because people are annoying me. For example, when someone is making random noises and I tell them to stop and they don't, it really wears out my patience. I also can't stand when someone starts poking me for no reason, that really irritates me. Another thing that makes me very impatient is when my parents are lecturing me about something I already know when I'm getting in trouble and I just want them to finish already. Sometimes, it will be for not cleaning my room and my mom will be lecturing me, saying things she has told me a million times and it bugs so much I just want to scream ""stop talking"". Other times, it will be for not taking my dishes from my room, bathroom, or hook down to the kitchen. It's just a lecture that gets repeated and I already know everything they are saying, so I don't have much patience for that. I can get very impatient sometimes, but I still have some in me, so if you stay on my good side, it won't wear them." 6 5 11 1 1 2 2 0 1 2 2 +18327 7 "I am writing a story about a time that I was patient. One day on my birthday @DATE1 I was over my dads house. My dad asked me were do I want to go for my birthday. I didnt know at first but it came to my head. I told him I wanted to go paint hall shooting. And he said ok. But before we go he said can you cut the grass for me. I said ok. So I cut the grass which took me about @NUM1 hour and @NUM2 minutes so I told him Im done and he said ok, so I took a shower because I smelt like wet grass. And when I got done takns my shower I called my friends and cousins to see if they would to come and they said sure. So I asked my dad when are we going to leave to go pointball shooting. He told me it is going to be at a different day. So I called all of my friends and cousins back to tell them it wasnt going to be today. They were ok with it. And my dad said we were going to go before @DATE2 stars and we have went. And now until this day I am still being patient." 9 8 17 3 2 2 2 2 2 2 2 +18329 7 "There are many time @CAPS1 a persons life when someone was being patient. Patient @CAPS1 a very important trait that could lead to it own rewards. I am a dancer at @ORGANIZATION1 of dance. There @CAPS1 a very wide range in age in each dance class. Sometimes we have some trouble learning something as hard as a switch leap, or something as easy as a pieroette. Everyone who @CAPS1 in the class @CAPS1 so patient when these events happen. It @MONTH1 take fifteen minutes for the teacher to correct a footing position, and yet the other dancers remain seated, waiting over so patiently. Patience also occurs while training a dog. Obviously dogs don't speak @CAPS2, so they are going to have trouble learning. Yelling at the dog @CAPS1 a sign of not being patient which will not help the dog learn. But by praising the dog or correcting her/him gently, @CAPS1 a sign of being under control and patient? Eventually by taking up all that time to teach him/her the rules, you will end up with a great dog, all because you were patient! As you can see, being patient brings happiness and confortability to others. Not to mention, it @CAPS1 what @CAPS1 respectful. Like I said, being patient @CAPS1 a very important lesson to learn and one should never forget it." 5 9 14 0 1 2 2 2 2 2 3 +18330 7 "@PERSON1 is waiting patient when the class is talking. I the class closet at ping she will clap third time until they stop talking or quiet. When they quiet down she would continue teaching then??? @PERSON1 is talking we should be waiting patient and untill she is down talking to us. That is how @PERSON1 be patient." 2 4 6 0 1 0 1 1 1 1 1 +18331 7 PATIENT. One time I had to be very patient over at @CAPS1 barrymores because we went into a line to go on go-karts that yexi had to be at least @NUM1 years old or older to go. I also had to be patient my birthday this year because I knew I was getting cool stuff but I never imagined it would this cool. 6 4 10 1 2 1 2 1 1 1 1 +18332 7 "I remember a time when @CAPS3 sister used to go on and on about @CAPS4 cream sundaes and all that. @CAPS3 mom had to drive me around all day because @CAPS3 dad was sick so that meant the @CAPS4 cream girl had to come along too! @CAPS3 mom knew @CAPS6 was in for a long day. @CAPS5 were in the car and @CAPS5 drove past a @ORGANIZATION1 and thats when @CAPS3 little sister decided out loud Im hungry I want @CAPS1!!!. That is what @CAPS6 said yelling for five minutes straight. Thats when @CAPS3 mom yelled you speak another about @CAPS4 cream you are @CAPS2 getting it!. @CAPS3 sister then had this face that meant @CAPS6 was about to cry, which was even worse!!! @CAPS3 mom gave her a cookie so @CAPS6 would stay content for a while; @CAPS5 started driving home when @CAPS5 heard a song on the radio, @CAPS3 sister loves to put the word @CAPS4 cream in every song so @CAPS6 started squirming while holding her tounge. @CAPS6 stayed that way all afternoon. @CAPS6 didnt speak a word that entire day! So @CAPS5 drove past @ORGANIZATION1 and then @CAPS6 started to cry. @CAPS6 had enough. I want @CAPS4 cream!!. @CAPS5 were messing with her, so @CAPS5 went back to @ORGANIZATION1 and got her the thing @CAPS6 wanted most her @CAPS4 cream. @CAPS6 was patient the entire day, @CAPS6 knew it was hard work. @CAPS3 little sister learned an important lesson that day, that Being patient means good things will come to you." 12 10 22 3 3 3 3 2 3 2 3 +18333 7 "A time I was patient was when I went to get my teath cleaned than ??? that i went to doctors. I waited three (@NUM1 )hours to get my teath cleaned and that was hand so I took a book out to read than when I was on reading the book about @NUM2 times I got called to get my teath cleaned, after that I went to the doctors to get wald, medisan refilled and get some shoes. I had to wait for about two (@NUM3) hours before getting called into the room, but than I waited @NUM4 so they could get the shots ready. So I waited about five hours and five minutes, after all that time I finally went to eat some lunch at @ORGANIZATION1. That was all I did that day." 10 6 16 3 3 2 2 2 2 1 1 +18334 7 "Loyalty is when individuals stand up for, and support something. I think everyone should show loyalty in your ??? because that means that you believed and that you have a reason to be dedicated and driven to have a purpose. Loyalty means to me not backing down showing perserverance. I know a person who is always loyal and stands up for what he believes in. That person is my brother @PERSON1. My brother @PERSON1 is going to get into a arguement with everybody. My brother is loyal to the aliens. I say that because he thinks aliens are ??? and doesnt cares about what anybody else has to say. I tried to confince him millions times there is no physical poof aliens exist. But he keeps saying that @CAPS1 are proof of aliens. @CAPS2 my brother never lies to someone and always will have your back. If anyone says something about that isnt true he will defend you. He says, its not cool when somebody else talks about another person, all that means is that person has insu??? My brother never lets anyone talk about me without saying anything back. One last thing is that my brother stays true to himself. He never tries to be someone hes not. He said, I tried being someone im not and its not me. Im a nerd with street smarts, I mean I still watering carbons. In conclusion, my brother is a loyal person for the simple fact he stands up for whatever he believes. Even if its alien, ??? or himself." 8 8 16 2 2 2 2 2 2 2 2 +18335 7 "This is my story about being patient, I close my hope to be ""write a stay about also you was patient"". My way of that is me at a doctors office and waiting for @NUM1 hours to get a brace for my friend of wrist. First the setting are in waiting room then a office, with there was had to wait for @NUM1 hours. So me and my dad were in this waiting room it was suppose to be. @NUM3 appointment and she told us to sit down, and there are @NUM4 other people lellge. So I said down thinking my mom his going to him ll. Iany seemed first @CAPS1 and it was a till of there waiting because I will very patient. But my dad want he was worried and then fill sleep. As people went by help called to get loss patient, many and make. Them and @CAPS1 hour presnt by, @CAPS1 I ? Said life my for, but that should my child my mom. Since had ""or ion"" I jumped out of my dad and woke my dad up and went to the mom. These up walked out hour, but I was patient. So the adder came in and gave me the brace got resettled in and left. That was a story about he being patient at doctors office and for a @NUM5 minutes thing." 8 8 16 2 2 2 2 2 2 2 2 +18336 7 "Being patient is good because then you respect that your problem will take time but when your impatient, you want to overcome the problem now or soon. I remember when my brother was @CAPS1 impatient. My brother @PERSON1 and I were waiting for a new video game to come out but it comes out in @NUM1 days. So he waited a day, checked the date, @NUM2. Then waited another day @NUM3. He wasted @NUM4 days waiting while I focused on school. His grade drope to a @CAPS2+ and now hes blaming @CAPS3! So I told him hard @NUM5sucsess. He tried harder @CAPS4- he was using his time on grades while his game he wants is @NUM6, hes a lot happier now that hes patient using time wisely while keeping himself occupied." 12 7 19 3 3 3 3 2 1 2 2 +18337 7 "This is the story about the time I was patient. It was a warm day and I was sitting on the grass with the radio on. As my favorite song went off I reached to change the program. But when I heard the man say usher tickets on sell that and then I frozzes to listen, the tickets were going on sell down town. I told my mom and she rushed in the car and got dozen there so fast you wouldnt even see us leave. When I got to the line it was so long it seem like it go on forever. I waited and waited it felt like it only moved on an inch. Ti waited and still waited I beagin to get mad but I stood in line. Which my long wait was over I begain to jump for joy. As I walked to the concer she said sorry we are all sold out. I couldnt believe it I begain to scream my head out. I did all that waiting for nothing it was so unfair. And thats the time I was patient for noting." 11 10 21 3 3 3 2 3 3 2 2 +18338 7 "Being Patient by: @PERSON1 A few years ago, I started to horse back ride. I love it so muc h. About @NUM1 month ago I ordered new riding boots. This is a time when I defien tly had to be patient. Me and my mom went on stake line tack.corn and ordered my new boots. When they arrived, they were too small so, we sent them back. Days and days went by as I waited for my boots. They didnt come. I had to be patient. Another day went by and my mom finally called them. They said when you re-ship something, I goes through fourteen day processing. Both me and my mom had to be patient. Weeks went by and still no boots. My mom have gotten a new credit card that week. Another week went by and my mom and I were getting impatient. She called the company again and they said when we tried to change the shipping to your credit card, it said declined. But @CAPS1 the problem is fixed and Im glad I was patient enough to wait for the boots, @CAPS1 @CAPS2 riding comfortably in my new riding boots." 9 11 20 2 2 2 3 2 3 3 3 +18339 7 A time I was patiet was when I was wating for my mom to pick me up from school at @TIME1. School ends at @NUM1 so I had to wait out side for an hour and a half almost. It was winter at the time so it was about @NUM2 f degrees. It was vary windy too so I used my instrument case to block the wind and snow from my face. But that did not help much becaus I could not feel my face and I saw a clock inside the school and I found I had only been here @NUM3 minutes! The wind and snow was terrible I was counting the number of teachers and people who left the school I was so bored. My face was red as a cherry. So I started reading to pass time but my fingers started getting cold and I was dreaming of all the hot things in the world. First it was hot choclate then @DATE1 then it was florida in @DATE1 on a hot day. But I was staying patient as I could but it was vary hard. I was cold as ice and I dug into my pack to find something warm and I found some gloves to go with my coat and jeans. I read and read with gloves so my fingers did not freeze. Then I see a red car looking like my moms car and then it passed a wave of grief swept over me and I could not take any more! But when I stood up a car pulled in and it was my mom I got my stuff in the car and put the heaters on high and my mom said thanks for being patient. 12 12 24 3 3 3 3 3 3 3 3 +18340 7 "Havening a little bit of patience. Do you have patience or know some one who does well thats exacually what I am going to be talking about in my own way. Once there was a little girl that was very spoiled and wanted what she wanted. There was something about her that nobody knew about. She had patience. Everybody always woundered about her there was something special about her. One day her and her family was going out and she couldnt wait but you know what she had patience. Also she wanted to go get something from the store, @LOCATION1. She wasnt like other children, couldnt wait and always bother her parents she just sat patiently. When they left they went to @CAPS1 but they were rich so they went to @CAPS2s too. She couldnt wait to leave but you know what got her, patience in the store and get that pacific thing she wanted. When they got in the store she finally got what she wanted it was just lips glass five pairs of jeans and shirts to go with it. She was nearly to go then her mom and dad started looking around, but she had patience when they got home she was so tired and she went up to her room and went to sleep. And they lived patiently ever after. I made this story to say we have to be patient and wait, thats how accedents and problems happen and this little girl got every thing she wanted one thing, she had patience." 10 6 16 3 3 2 2 1 1 2 2 +18341 7 "I was at the detrait airport. It was around @NUM1 am,the sky was bright and gloomy but no rain, just a warm breeze blowing in my face. My mom,brother and @CAPS1 through the tall metal doors and saw everything from gift shops to our destiny where we would @NUM2.We got our tickets and headed off into the plane.We went through metal detectors that caught nothing but my leather striped pink and brown belt.I slipped it back and started walking.When we entered the plane we passed alot of people i didnt know.I got the window seat,and there my mom,brother, and i sat in carnined blue chair s waiting in excitment and fear to fly off into the sunshine state" 11 11 22 2 3 3 3 2 3 3 3 +18342 7 "Patience is a very important quality in life. In fact one time I had to be very patience because my little cousin who live in @LOCATION1 had a pisered since birth. It takes her a little longer to ge things because she @MONTH1 where she her own little would but it not reality. So I was going to teach her how to ride a bike with truninig wheels but she tryed and she still know how today shes gotten way better but still has brain problems. So Im taking her from horrible to better to good then to great. Shes improved over the years it takes patience because she has a disorder. So you really dont yell at her cause shes very emotional and sencitive so you have to be quiet, nice, and have patience. So she will always be stuck with the problem but you can be patience and she will @CAPS1." 8 8 16 2 2 2 2 2 2 2 2 +18343 7 "Yester day I went to the orthodontist and waited for my check-up. @CAPS1 took a little while but @CAPS1 was my turn next. When I got home I felt like I was starving. I waited for dinner to be ready, but even though @CAPS1 was only an hour until @CAPS1 would be ready @CAPS1 seemed like @CAPS1 was a life time. The delicoas aroma coming from the kitchen only made my hunger worse, but I sat pationtly and read my book until @CAPS1 was done. After words I was watching ghost hunters when my little brothers came in and started to clean up the mess they made with thier toys. So I had to pause the show because they cant do anything when the @CAPS2 is on. So patiently, I waited for a excruciaing @NUM1 minutes until they were done. So over all I think I was very patient yesterday." 7 6 13 1 1 2 3 1 1 2 2 +18344 7 "This is the time when I was patient about going to the doctor. It was a two days before I had to the doctor. My mom had told me I needed three shots, I never liked shots because they hurt and make you fill sleepy. I usally never have patients but this time I did. I had one more day and then I will be at the doctor. I experience why people should have patient and its easy to do. Today was my doctors appointment and I was scared. When I walked in the clinic I always fill sick and tired. My mom will go sign my name in and I fill more sicker because I will worry about how many shots I will have to get. My doctor had call me and I was terrified my mom always told me that it dont hurt if you dont look at it. So I went back to the doctor office and my doctor told me to get on the scale, I was really he gave me an hearing test and a eye test. I asked if I have to get any shots he said not yet but I might have to. When I got finish with my hearing test, I was finish and I was scared for nothing. When I got home I had learn two lessons one was not to worry about anything and I learn how to have patients. This is when I was patient about going to the doctor." 8 8 16 2 2 2 2 2 2 2 2 +18345 7 "This @DATE1 me, @CAPS1 mom, and @CAPS1 @CAPS2, all went to A @ORGANIZATION1 concert, @CAPS1 mom wasnt very excited, @CAPS1 @CAPS2 was only excited just to see @PERSON1, I was very excited just to be going @CAPS4 we entered the parking lot to the @ORGANIZATION2 music @CAPS5 @CAPS6 was a huge line at the door, it took up half the parking lot! But we had to wait in that line for an hour before we got in. When we got inside and to our seats. It started to rain and of course it was on outdoor concert. So by the time the opening act got done I was soaked. Then people started setting up the stage for The @ORGANIZATION1. We waited another hour and a half for them to finish setting up. @CAPS1 @CAPS2 and @CAPS1 mom were both getting irritated I kept waiting and staying positive. On the bright side it was an amazing concert and @CAPS7 glad I got to have the experience but next time @CAPS7 whering a hat!" 9 10 19 3 2 2 2 3 3 2 2 +18346 7 "A time when I was patient was when my brother, and sister , and I were told we were going to @LOCATION1; which is a big deal to us .My sibling and I were fighting in the kitchen about something stupid of course, when all of a sudden our parents called us out. @CAPS1 great. I thought. As I was thinking about what punishment we were going to get my mom broke my thought and told us we were goig on vacation.@CAPS2 punishment, I asked. what my mom replied. @CAPS3, I told her. We were going on vacation to @LOCATION3 and to @LOCATION2. But we had to wait one whole week. Every day my little brother would ask when are we going on our trip? and every day my mom would say the soar thing. In one week, in four days, in three, days, in two days. @CAPS4 it was the day to go on our vacation and my parents were proud of me for being very patient for a week waiting to go to @LOCATION3. That was a time when I was very patient." 8 9 17 2 2 2 2 2 2 2 3 +18347 7 A time when I was patient was when I was at my dads office. We were there for an hour. And be patient until we left. It was not easy being patient. I had to take an entire hour not saying anying. Until my dad told me too. 6 8 14 2 1 1 2 2 2 2 2 +18348 7 My dad can be very patient sometimes. When hes not angry. 4 1 5 1 1 1 1 0 0 0 1 +18349 7 "A time when I was patient was actually a few days ago. I was standing in line at @ORGANIZATION1 store with my mother so we could return abox that didnt work. This was the third time we have had to return these boxes. I had to stand in line for an half of an hour and watch nothing but angry coustumers. Still @CAPS1 wasnt our turn in line. This one man who was up at the counter was not very patient at all in fact he when he left he slammed the door and mumbled stuff under his breath. Finally @CAPS1 was our turn and my mom was very patient the worker, (even though she didnt want to be) the worker didnt know what was wrong with box so she gave her a new one and we left. Being patient can bring good things just like this quote I have always like @CAPS1 says good things come to those who wait @CAPS1 is very true so remember! Be patient." 10 9 19 3 2 2 3 2 3 2 2 +18350 7 Thompson volleyball playersaka @CAPS1 @CAPS2 lost our tournment. We went on @DATE1 at a @CAPS3 resturant. And you know @PERSON1. She had asked for some chopsticks and the @CAPS1 made us wait for @NUM1 minutes for chopsticks. So @CAPS4 a volley ball player asked and she gave everybody some but the adults! We had so much fun. I had asked for some napkins but we did not get none.I was really made at the waiter but I had fun and the other aris had fun! 4 8 12 1 1 1 1 2 2 2 2 +18352 7 "One important skill you need in the life is patience. With my new, hard cast on my arm, I couldn't do many things. I was a very active child doing soccer, basketball, cross country, and football. But, with my broken arm I had to be patient with my sports. Being patient payed off and my arm healed faster without becoming but even more. Then I played sports after a had my coat cut off. Patience can be rewarding, just if you wait long enough." 8 9 17 2 1 2 3 2 2 2 3 +18353 7 "I was wating for my grand pa to get home. He was gone to an aumish sale to find me a chicken coop for my chickens. I was helping my grand ma can. I the maring. I was so exited for him. To get home. Then I went outside. I was doing work to pass the time. I first cleaned the barn. Then I did the cattle @CAPS1 I fed them walked them then wattered them, then I cleaned chiken coop. Then I did chicken @CAPS1.I collected the eggs. I fed them and I watered them. then I had some fun, I worked on volleyball. Then I practiced hitting and piching for softball. Then I worked on shooting hoops. Then I rods the gator for a little while. Then I went in for @CAPS2. When I came back out I thought what can i do . Then I saw the ??? hill.I know I wuld thrush some ???.So I got out the slasher went to the field @CAPS3 thrashing. I loaded the track to. Then when I got back to put the other tractor out and attached the header to do I went out and worked ground, when I got back I was thinking what am I @CAPS4 to do know, when I hear same and pulling it was my grandpa. We get in the track to town." 7 10 17 2 2 1 2 3 3 2 2 +18354 7 "One time when I was patient I was playing a football game with my friends and the other team was creaning us. But even though we were losing I still managed to stay calm and we ended up beating them, @NUM1" 5 6 11 1 1 2 1 1 1 2 2 +18355 7 Patience is a hard but good thing to have because patience can help you progress in your life such as getting a job. One way you would have to be patient when trying to get a job is when the boss is ??? your ressence aterring his sweet time. You dont want to get impatient and yell at him and tell him to hurry up because that would make you not get the job. So in conclusion patience is a good like skill to have because it can help our progress in life. 4 3 7 0 1 2 1 0 1 1 1 +18356 7 "Just be patient lucie said to @CAPS1. I will be done soon. How soon is soon? Awile. I will be done fileing papers in about an hour then I will take you to the park an hour? that is such a long time. Just go watch tv. but I dont want to leave me alone or when I get done I wont take you to the park ok. So @CAPS1 whent and placed vidow games with his little sister @PERSON1 for awhile, and made some pizza, and then his friend from school come over and asked if he and his sister wanted to go to the park with him and his and his mom. So he asked lucie if he could go to the park with ryan and she said yes just be back by five oclock. and he and @PERSON1 had a great time. and ryans mom got them all ice cream. and he learned that being patient is very very important." 9 8 17 2 3 2 2 2 2 2 2 +18357 7 "Ive been to @LOCATION1 @CAPS1 before, my family and I went about a year ago. Their were so many rides! we were astounded of how many people were their. My family and I decided to go on the little rides first. We went on things like the @CAPS2 trap, @CAPS3 star,. Also many water rides. At the end of the day, my family and I walked in line to the biggest ride their. It was called the @CAPS4 timbers. The track was made out of wood, thats what made most of the ride scary to. Their was line of prolly @NUM1 people. I told my mom I didnt want to wait long. She said you need patience I said ok fine ! It was the ride, it was pretty fun .After we got off I said mom that patience really paid off." 8 8 16 2 2 2 2 2 2 2 2 +18358 7 When I got my bow I was very very very excited. Well I was excited because my older sister @PERSON1 got a bow befor me and I thought that it was unfair. I had to wait @NUM1 whole year till I got my bow at @CAPS1 time. Well my mom and dad hide it in my bedroom in my closet I never noticed it befor. That is the time when I had to be patince when I had to wait to get my bow. Now almost ever day Im outside shoting it. Thanks for listening and reading. 7 8 15 2 2 1 2 2 2 2 2 +18361 7 "Let me get one thing straight Im not patient. I mean, I can be at times but. Mostly Im not. If here is something coming up @CAPS1 my birthday, I will not stop taking or thinking about it. By not being patient I just mean I cant wait. Most of the time @CAPS1 when we are going to a boreing family house, I can wait." 4 5 9 0 1 1 2 0 1 2 2 +18362 7 "Melted @CAPS1 One day @CAPS13 sister and I have just woke up one bright @DATE1 @TIME1. @CAPS5 was at @CAPS13 door. The light shinned through @CAPS13 cartains and @CAPS13 covers. @CAPS5 pushed the door open just a crack and said, @CAPS2 @CAPS3, I got up moaning @CAPS4 me up. Im sleeping. @CAPS5 helped me up and hugged me while I was searching, I went in to the living room. @CAPS5 were in the kitchen and got what I thought was a paper hen, but @CAPS19 was aluminium. Dazed, I turned on the tv when I didnt know @CAPS13 mom was on the coach. @CAPS6, go put the clothes in the diver, called ?? @CAPS7.K. I ??, (@CAPS8 want to come down stairs to. @CAPS9 he exclaimed. @CAPS10 I thought in @CAPS13 head. We walked down stairs in the ??? to the laundry room when we finished putting the clothed in the dryer, I took a deep breath and said Do you smell that? @CAPS5 look frightened and said @CAPS9 Im cooking something. @CAPS13 eyes widened and I ran up the stairs until I reached the landing where the door was. I opened @CAPS19 and @CAPS14 pushed me out side hare coms. @CAPS10 air! we m joined. We were back in and crawled through the kitchen. We paused to stare at the fire; we ran towards @CAPS17 still on the couch sleep. We shook her and shook her but @CAPS5 didnt wake up, so I said cover your ears. Ahhhhhhhhhhhhhhhhhhhhhh!!! @CAPS16 wrong with yall! @CAPS17 yelled. The @CAPS1, fire, @CAPS18 @CAPS19! I screamed. @CAPS5 stood, we ran, @CAPS5 grabbed a cup of water and poured @CAPS19 on the @CAPS1. I need to teach you how to cook better or until you wont set any thing on fire! I said." 12 12 24 3 3 3 3 3 3 3 3 +18363 7 "There are @NUM1 different languages in the world and different??? of these languages, in all that is more than @NUM2 different languages. But in each language patient means the same thing, understanding and tolerant. Everyone had to be patient at one point or another, let me tell you??? one time were I was patient. It was just about one week ago when I got into a fight with my best friend in the world. And later that day I realized that we were both. I sent her e-mails, text messages, and I called her cell phone and home phone at least @NUM3 times @CAPS1 didnt answer or reply. I got even more frustraited the more @CAPS1 ignored me, then I talked to my cousin about it. You have to be patient with her, this is your first fight.@CAPS1 told me in a calm voice. so, I waited by the phone to see if @CAPS1 meassaged me back without using swear words, and I left her alone at school. Finally, one day @CAPS1 talked to me. @CAPS1 said Im sorry too, thanks for being patient with me. Ive missed hanging out with you, how about we sit together at band? Id life that. replayed and finally made up after five days of fighting. After experience I learned that being patient pay off. So wait your turn @NUM3 speak, and understand why people say what they say and mean what they mean. Patience is always the hey." 12 12 24 3 3 3 3 3 3 3 3 +18364 7 The time I was patient is when I was to clean up my house and my mom said I would like me to ??? when she gets back. So I straighting up vaccuming spreading my bed cleaning bathroom taking the dogs outside clean thier raven did the dishes took out the trash did the laundry and once I done with a lot I would watch @CAPS1 play the game or on the computer I waited about the whole day and once she got her she didnt when bring would she said I forgot so we were to get pizza. 8 6 14 2 2 2 2 2 2 1 1 +18365 7 A time when I was patient was when I was at the doctors office. I was waiting for my doctor to come out. But he was taking a really long time to come out and I was ??? to be patient so hard to stay caled andy then the doctor came out and I started to feel better. 8 4 12 2 2 2 2 1 1 1 1 +18366 7 "One day me and my friend @PERSON1 were at @ORGANIZATION2 and we were in the line for the @ORGANIZATION1. We ran up to the line, and we had to wait about a half hour till we got on. But the good thing is that me and @PERSON1 were patient. After the ride we got in line for the @CAPS1! WOW! What a line, I think we were in that line for at least a hour and a half before we got on. But you know, me and @PERSON1 are really patient. The @CAPS2!" 8 8 16 2 2 2 2 2 2 2 2 +18367 7 "One day my dad needed his keys and I had them. His keys were some were in my room so I looked every were. After twenty minutes went by I still could not find them but my dad was still patient: I deystroyed my room looking for his keys, they were not in my dresser, closset, bed, or on my floor. I just had them to unlock the car and now the keys are gone then when I went to tell my dad who was being so patient for a hour I fond them in my pocket." 10 8 18 3 3 2 2 2 2 2 2 +18368 7 Once apani time there were to kids one was name @CAPS1 he wasnt patience at all. The other kid was name @PERSON1 he be was patience. They went for a walk in the woods and get lost @CAPS1 would not stop complaining. @PERSON1 told him stop complaining @CAPS3 @CAPS1 didnt until he say a hunted house @CAPS1 told @PERSON2 want to go inside with him. @CAPS3 @PERSON1 didnt want to go in so @CAPS1 went in and act like he got hurt so @PERSON1 ran in there the dorslamd shut and the door nob feel off. They were scared it was dark. Then the light came on. @CAPS1 said lets get at of here! @PERSON1 said how the door nob fell off. @CAPS1 said I dont know they ran though the house there wore no other door or windows the were terrify then a ghost was coming at them and he said happy @CAPS7 it was there dad he built the house for them and said all you had to do is push the door open. and they all went home. the end 7 8 15 2 2 2 1 2 2 2 2 +18369 7 "Patience. If you are like me, that is nearly impossible. In fact, I can barely wait @NUM1 hours for something. But I still sometimes have patience. Like when I wait for a @CAPS1 party, I can manage. But this story is different. It was a warm day, even though @DATE1 was almost over. I didnt care though because I was focused on one thing- my @CAPS1. Like most kids, I had waited @NUM2 days until I would get a big pile of presents stocked up in front of me. When I woke up that morning, I knew it was still going to be a while to the party started. I plaged some sweet video games. Played outside and just kind of sat on a crouch until @NUM3. I couldnt believe it was only twelve. To me, it had seemed like hours just ticked away. I had to find something else to do. I decided to go to my friend. We played some brutal, tiring football games before I decided to leave, when I got home I dashed to my clock like @CAPS2 in headlights @NUM1:27. How, I do not know. I still had a whole hour until my party! The last hour @MONTH1 have seemed like a whole other year to me, but Im still alive, right? My friends dont know me to have patience and I dont either. And trust me. I will never be that patient again. Ever." 8 12 20 2 2 2 2 3 3 3 3 +18370 7 When I was pashit I was doing my math @CAPS1. I cold it figer out The @DATE1 my ant did it @CAPS2 me at all I @CAPS3 quit at That poit but this time I was pashit and @CAPS4 and I @CAPS5 it. 4 4 8 1 1 1 1 1 1 1 1 +18371 7 "This is a story about a time when I was patient. A time when I was patient is when I was at food store waiting for my food. I ordered my food and they took olday to give it to me . I waited so patient. Other people was ??? in ??? there ??? they still did not give me mine, so I went outside and told my granddad that they were about to give me my food . I told him that because he kept asking me why they are taking so long. So I went back in the food store and asked them why are you taking so long, they said its coming in a second. Then I set down in the food store and I looked and so my friends coming into the food store. So we started talking and waiting patient for are food. Their names are @CAPS1, @CAPS2, @PERSON1. My name is @CAPS3, I was born in @DATE1 , I was raised in the city of @LOCATION1 oit. I was patient because I did not get angry and I waited. So then they called my name and said my food was ready. Then I got my food and told my friends Im about to go home, after that I left. Thats a story about a time when I was patient." 10 8 18 3 3 2 2 2 2 2 2 +18373 7 "One day I was looking at a catalog in a store, and saw a goalkeeper shirt that I really wanted. So I went to my mom and showed her what I wanted. She said it was a bit pricy, but that she would get it. The next week was very long, waiting for the shirt. On @DATE1 it came, pale yellow, red, blue, and purple. I finally had a goalkeeper jersey to wear to games and make great saves." 8 6 14 2 2 2 2 1 2 1 2 +18374 7 A time when I was patient was when I was waiting for my dad to come home. From work so I could oven my package that I got before he left on a three day trip out of state so when he came back I goat to open it. 4 4 8 1 1 1 1 1 1 1 1 +18375 7 A time when I had to be patient was my @NUM1 birthday. Why because I was wait for my phone and mom cep telling that I was going to get it on the frist of @DATE1. But I still didnt belive her and guess what my last present was my brand new cell phone& a case now that is wat I call pacent. 4 4 8 1 1 1 1 1 1 1 1 +18376 7 "Are the here yet? I said as I pased back and forth. Patience, it takes a while to get from the locker from all the way down here, said @CAPS1 @CAPS2! @CAPS6 on the camera! @CAPS3 got him! said @PERSON1 @CAPS4s right behind us. @CAPS5 funny guys! You guys better give me back my clothes or I swearI ll @CAPS6 off the camera! yelled @CAPS7 as @CAPS4 atempted to grab his clothes and missed. @CAPS8! My patience has run out @CAPS7! I said taking another picture @CAPS10 I think @CAPS3 should put this up on the internet. I continued @CAPS11! You can @CAPS5 put this on the internet! so your going to stop picking on us? I asked @CAPS8! @CAPS4 said , @CAPS13, then Ill just zoom in right here. @CAPS13! @CAPS4 screamed as his towel fell off. So to show the little respect @CAPS3 had for him, @CAPS3 gave hime his clothes, turned around, and walked away." 8 5 13 2 2 2 2 1 1 1 2 +18377 7 "Crack I twisted through the air and anded face up with my arm-rapped around me. I felt a throbbing pain @CAPS1 I wobbled to my feat, what just happened? I thought to my self I once again began to feel the nurendous pain shooting through my fore arm. I bit my lip @CAPS1 hard @CAPS1 I could to choke back all of the tears from just pouning out like a water fall. My friends launched toward asking me. if I was ok @CAPS1 soon @CAPS1 I started holding my arm. I think I might have broken it I replied in between jobs they rushed to get an aid @CAPS1 quickly a possible. I soon found myself in the sick room after making a call to my parents to alert them of what had just happened. I sat there for hours waiting for my parents to come pick me up to go get an ex ray at childrens hospital. There were both at work and were not able to come and get me @CAPS1 the day groaned on I became more and more anxious. Finally the bell rang it was @NUM1 at last. bang! the door swung open it was my dad and not for behind him was my mom. @NUM1 is when they get out of work after my mom and dad told be how much there were glad it was nothing more than a broken arm , they immediately rushed me to @LOCATION1. That was my experience of a time I had to patient. And in the end it turned out I had a broken arm. In life there are going to be many situations where your going to have to be patient, lout all you can do is take life @CAPS1 it comes at you." 12 12 24 3 3 3 3 3 3 3 3 +18378 7 "Jenny and @PERSON3 were twins brother and sister every year a carnival was built up next to their house with games, rides and food. One day @PERSON1 and @PERSON1 went to ask their mother @PERSON2 politely for some money to go on the ferris wheel mom, can we each have a dollar to go on the ferris wheel. @CAPS1 @PERSON1,sure @CAPS1 mom and handed them two dollars. @PERSON1 and @PERSON1 were so excited they ran to the line of the ferris wheel. They waited and waited for an hour and it was finally their turn, during this time for man that was in charge of the ferris wheel had watched @PERSON1 and @PERSON1 wait in line. As @PERSON1 were about to step in the cast to mean boys pushed them off to the ground and took their seat. Now mama taught them how to be nice to everyone and they remembered that so they got back up and let them go. When it was their turn again the man in charge of the ferris wheel took notice of what just happened and told them that he was proud of @PERSON1 and @PERSON1 and that they would go around the ferris wheel thrice more for their patients. After the ride, they thanked the man and ran happily home to tell their mom what happened their mama was so proud of them and hug @PERSON1 and @PERSON1." 8 10 18 2 2 2 2 3 3 2 2 +18379 7 I was patient when I am hunting because when you have a bow and you can only shoot so far and you have to have the deer come in to a nice clearing not behind brush. I think you have to be a patient person because when a deer comes close and you get your bow ready and then your mind makes you think like you. It going to come up close and then it walks as slow as possible and you just have to go with it. And when all that patience comes to an end and you get ready to shoot and you got it then it really pays off. 7 4 11 2 2 1 2 0 2 1 1 +18380 7 "A time that I was patient was when I was in @NUM1 grade. It was after my birthday and I had wanted pink @ORGANIZATION1 shoes. My dad in @LOCATION1 said he would get them but he would have to buy them, send them to grandmas house and then have my grandma send them to me and that I would get them sometime after my birthday. So one day he called and told me he sent them and I should get them in one week. So I patiently waited for my shoes and in one week. They were not at my house. I ididnt want to buy my dad and call him every day about them so I just patiently waited. After @NUM2 more week I began to worry and get mad so I called my dad and asked him about the shoes and to my surprise he said that my grandma was bringing my shoes in an hour. So I was patient and waited one hour and my shoes still hadnt come. At this point I just decided they would just come when they came and I would just wait. Finally, I got my shoes the next day and I was estatic. I thanked my dad and I wore my shoes the next day knowing my patience payed off." 9 9 18 2 2 2 3 2 2 2 3 +18381 7 "@CAPS4 I'm patient, and sometime I'm impatient. But no matter how impatient l am, my @CAPS5's even more impatient when it comes to waiting in a big traffic jam. He huffs at the long delay, sighs, and gets very impatient. He says things like, "@CAPS1 on, @CAPS2" "@CAPS1 on!" @CAPS4 it's scary to be with @CAPS5 in traffic jams, or long lines. But after the long line. @CAPS5's himself again which is a great relief on my past!" 12 8 20 3 3 3 3 1 1 3 3 +18383 7 A time that I was patient was when I was fighting my little brother in @LOCATION1 and then he kicked me in the chin and I promised him that I would not tell on him even when I busted my chin open the second time he kicked me and I fell to the ground right in front of everybody else and then I was being swarmed like a bunch of bees around a hive full of honey. That was when I was being patient. 5 6 11 1 2 1 1 1 1 2 2 +18384 7 One time I was told by my big brother that we were going to go to micigman adventure so I was waiting till he would come home is and then my dad told me that I should get ready to go so like to back up my shorts and ??? ??? that so I did that then I just sat there for about ??? was then I called him and he said ??? ??? I 5 8 13 2 1 1 1 2 2 2 2 +18386 7 "@CAPS12's the @CAPS1 of the ninth winning @CAPS2 @CAPS3 up to @CAPS4 full count, @CAPS5 loaded, two out. As the pitcher hurles a @NUM1 fast ball right down the center, @CAPS2 swong and hit his very first grand slam. The crowd exsploded, and @CAPS7 as we were about to leave The anoncer said "dont forget kits to day and today only down on the field the @CAPS8 are singing atographs". I beged and pleaded my dad to let the stay, @CAPS9 @CAPS14 agreed. @CAPS10 the time I got down there these was a huge line. As time slowly ticked @CAPS10 minutes seaming like hours. I could see kids geting ancie. I would have to @CAPS11 my dad had not said "The only way we ran stay is @CAPS11 you are pertiant ". @CAPS12 took forever, all you had to do was look around and you would see kids going nuts The little ones were crying. I could tell I was maby one of the last five people Being patient, even my dad was getting frustcated @CAPS12 took at least two and a @CAPS13 hours to get to the front but @CAPS12 felt like @NUM2 days. I @CAPS14 got the whole trams autograph and I was so happy. I even supriezd myself that day I had no idea that I had @CAPS12 in me to be that patient for two and @CAPS13 hours. On our way home my dad stoped at @CAPS15 and got me a frosty, @CAPS9 said @CAPS12 was for being patient was not so bad @MONTH1 t'll be more patient from now and @CAPS16." 12 11 23 3 3 3 3 3 3 2 3 +18387 7 "One day my mom, my sister, and I was going to the hair salon to get our hair done. It was so many people there talking. It was kind of noisy too. The tv was on, the radio was on, and a bunch of people talking. When we got there my mother signed all three of us in on the sign in sheet then we had to sit and wait. We waited for a long time. I really wanted to leave and come back another day but my mom said we had to wait. I got hungry and I was sleepy. We waited for an hour. I didnt let it bother me, so I turned on my @NUM1 player and listened to it until it was time for us to come next. Then we had to wait another hour, and I got even more hungry but I didnt say anything. So we waited and waited and finally we were up next. And we all got our hair done. Then when we left we went to get some food because we were all hungry. And that was a time I was patient at hair salon." 8 9 17 2 2 2 2 3 2 2 2 +18388 7 "Once upon a time there was a bid named jack. Jack and a little brother named @PERSON1, and was @NUM1 and jack was @NUM2. @CAPS1 since jack was a lot older than @PERSON1 and @CAPS2 was his brother @CAPS2 had to watch him a lot. Jack had a lot of patients since @CAPS2 had to watch him every night because his parents worked late. But @CAPS2 still thought his brother was annoying. But see his parents knew that if they paid him when @CAPS2 would keep watching him so @CAPS2 did. But one day when jacks little brother @PERSON1 would not stop complaining because @CAPS2 did not get his way jack finally got mad and said if you dont stop @CAPS3 than I will not watch you anymore and yea will half to go to day care. @CAPS1 @PERSON1 haited day care so @CAPS2 stoped right away. @CAPS2 was very mad at his brother because @CAPS2 was never like this to him. So @CAPS2 wanted to say @CAPS2 was sorry and @CAPS2 did and his brother for gav him.I sorry that I was making you mad. @CAPS2 said. @CAPS3s ok, his brother said. @CAPS4 try not to let @CAPS3 happen again @CAPS2 said. Then the next day when jack and his little brother were hanging out after school everything went well. Im happy that we are not mad at each other because I dont want to go to daycare, @PERSON1 said to his brother. yah and I dont want you to go because then I will have nothing to do, @CAPS2 said. The @CAPS5" 10 12 22 2 3 2 3 3 3 3 3 +18389 7 "There was a time when I went to @ORGANIZATION1 @ORGANIZATION1. We were driving to @ORGANIZATION1 then there was a long line of traffic so we had to wait. So we waited on a bridge for @NUM1! It was a night more coming true. We got hungry. We really didnt compliments. But we were there for a long time, about @NUM2 we got into the pork. So we were deciding which roller coaster to go on. We decided to go on the @CAPS1. We looked at the line it was a @NUM3 hr wait. We got in line. @PERSON1, @PERSON1, and my brother @PERSON1 were companing a lot. Again it was a nightmare coming true. So my dad and I were fine with the line for the @CAPS2. Actually it didnt take as long as I thought it would. After the wait we got on the roller coaster. We were laughing and scared at the same time. The coaster was over. I was sad. But it was worth the three hour wait. Later that day we rode the @CAPS3 the first ever built standing coaster I was scared again the wait was @NUM4 hours long. And @PERSON1 and my brother @CAPS4 dying from the wait. But the wait only felt like an hour long. I was scared of that coaster. But I loved it. It was a lot of fum to ride roller coasters. We left after a while. It was a long day. The end." 8 9 17 2 2 2 2 2 2 2 3 +18390 7 "In this story I am wating a hut the time when the video game @CAPS1 @CAPS2 was coming at for @CAPS3 @NUM1. The game will be the last game for the comcay bunsie. Ive already have it and he caming. I pretty good, but I dont understand why your mom character stays on a plant called @CAPS2 and is the only comsnap there, and of the entire gone character gets bum-rushed by coughly @NUM2 aliens with swords and they chep up your character it to bue size pieces with there little toy plastic swords. And the first time I went to buy the ones at @CAPS5 @CAPS6 at @NUM3 there parking lot was filled with probally all @NUM4 year olds who live in their moms basement. So we waited and got it about @NUM5 week after its me let cetense. We bought it then we get morecor and it wasnt the fight gave it was some week @PERSON1 game so catemed it in like two minutes so that is no stay on being patient." 8 8 16 2 2 2 2 2 2 2 2 +18391 7 "When I was in fifth grade I wasn't doing so well in math so my @CAPS1 agreed on helping study for my upcoming test. So on @DATE1 I got up really early but my mom was running really late getting home from work, and she was the one driving me there. So my @CAPS1 was being really understanding and patient. So my mom got home drove me and we ended up a hour and a half late but my @CAPS1 was still very patient. So we started to help me and I was completely lost I didn't understand anything she was talking about but she still tried and was very understanding. I got almost every question wrong that she asked me and she still try to her best ability to help me understand it. She had to helping me for about @NUM1 hours but she followed through and really helped me and I actually got a A on that quiz all because of her help and patience with me. I know it must have been hard to work with me for that long without losing her patience with me and I really respect that and I am very grateful to know someone like that." 10 9 19 2 3 2 3 3 2 2 2 +18392 7 "A time I was patient was @DATE1, @NUM1, @NUM2. I was sitting doing my meap test when my stomach started to hurt. For about @NUM3 minutes I sat there moving around. Then I raised my hand to ask call my mom. When I called on me I asked her and @CAPS3 said @CAPS1.S @PERSON1 can you take ??? to the office. And @PERSON1 said ok. Then me and @PERSON1 went to the office and I called my house phone my sister picked up the phone I said to her @CAPS2 me speak to mama. @CAPS3 said hold up. Then my mom said it do. I said mama can you please come pick me up my stomach hurts reel bad. @CAPS3 said ok and hung up I waited about @NUM3 minutes sitting the patient, tosing and turning from my stomach hurting so bad. Then finally called agian I said moma is you coming @CAPS3 said @CAPS4 on my way. I said ok and hung up. I was sitting there patient and in pain till finaly my mom walked through the school doors and signed me out the @CAPS3 said come on my sister and ??? were sitting out in the truck waiting to go to the family health center. I sat in the front seat. I was sleep the whole way home then I woken up when we got there I went in the house layed on the couch and fell asleep." 7 8 15 2 1 2 2 2 2 2 2 +18393 7 "My mum is someone who is patient. One time when I was little, I got gum stuck in my hair. I was crying a lot and moving around as my mom patiently tried to get the gum out of my hair. She kept on telling me to sit still, but she never got mad at me, even if she had really wanted to just stop and make me get it out myself. When she couldnt get it out and said that she would have to at in out, I had screamed. Tet, with patience, she was some how able to cut the gum out and still keep my hair looking nice even though I wouldnt sit still. I think my mom is the most patient person that I know, because whenever something happen, she is patient about it." 10 10 20 2 3 2 3 2 2 3 3 +18394 7 A time when I was patient was when I was at the dentists on the to get a cavity filled. When we got there they said my appointment wasnt for another a??? but my mom didnt want to leave. I was so??? TV was on???.When it finally was my turn it took the???or who is also my ???about another??? hour to get ready. A learning experience is ??? learned to be patient when someone takes to long to do nothing 8 8 16 2 2 2 2 2 2 2 2 +18395 7 "Beep! Beep! Beep! My alarm clock was going off and it was @NUM1 and I already missed the bus! Rushing to get out of bed, I quickly got dressed. Hopeing my brother and sister was downstairs all ready waiting for me. Oh no! They weren't downstairs! Running back up stairs like the house is on fire, I went in my brother's room and yelled,"" @CAPS1! @CAPS1! @CAPS4 already missed the bus. I don't want right to my sister room. Yelling the same thing, she quickly got out of bed and got dressed. Walking downstairs, thinking very thing is going to be fine. I got breakfast ready. Then my sisters come running down. Henaling her food, she yelled, ""@CAPS1!"" @CAPS3 at the time. It was @NUM2 am only @NUM3 more minutes' so I started henaling my breakfast. By my brother didn't come down yet. Finishing my breakfast, I went back up stairs and wake my @CAPS7 and my brother up. They came downstairs behind me. My brother just took is jelly time eating breakfast: @CAPS4 now that @CAPS4 were going in be late. @CAPS3 back at the clock it was @NUM4 only @NUM5 minutes! ""@CAPS4 aren't going to make it"" I said. Finally every one hoped in the van and @CAPS7 drove. Are to school. My sister and I were yelling, ""@CAPS1! Floor it! ""@CAPS7 ignored my brother didn't really care if @CAPS4 were late or not. Then finally @CAPS4 made it only @NUM6 minutes late. I goes my brother is the only patient one in the houses." 12 12 24 3 3 3 3 3 3 3 3 +18396 7 "There was a kid named @PERSON2 who was always very patient. He always waited for every else and he never complained. That morning @PERSON2 just woke up and so did his five brothers and sisters. They all were trying to get ready for school within an hour. All of the bath rooms were taken up but @PERSON2 didn't complain he actually used up that time to clean his room and make his bed. @PERSON2 was a little bit late to school. The @CAPS1 teacher @PERSON1 said come here and the class said ooooo!!! Ha! Ha! @PERSON2 is in trouble. @PERSON1 said come here and @PERSON2 put his head down and walked as if he was pulling a ton. During lunch @PERSON2 was at the end of the line. Once @PERSON2 had gotten up there, there was no more food it was all gone. The lunch lady saw how upset he was and she gave him a special lunch. Once @PERSON2 got home his family threw a patient party. @PERSON2 was honered and also happy. That night was the best for @PERSON2" 9 8 17 2 2 3 2 2 2 2 2 +18398 7 "As my dad allways tells me, patient is one of the vary begs to being successful in life. As I mature I find out more and more that patients is important. I remember a time when I had to display patients for a long period of time. My family and I took a trip to ceadar point along with my friend. My friend and I could only think about the biggest ride in the park, mellenium @ORGANIZATION1. @CAPS1 ride gave me the most fan, heartstopping, andrenalin pumping rush ever. But it would be a while before I could ride it. So we walked and walked, I began to get tired. After @NUM1 hours of walking we reached the mellenium @ORGANIZATION1. I was disapointed to find out its a @NUM1:30 hour wait. The sun was blazing out. I figure the best way to do @CAPS1 was to keep quiet and relax. It seems that the more you complain the longer it takes. And before we knew it we were about to get to get on the ride!" 10 9 19 2 2 3 3 3 2 2 2 +18399 7 "@CAPS1 hour and thirty minutes, are you kidding! I said as my dad and I got into the line for the ride the maverick at @CAPS2 point. Thats what the sign says, but it could take longer, my dad replied. I said in a disappointed tone I gusse we can wait, but in my head I reminded myself you have zero, zipo, none no patience! Why did I say yeah. Right when my thoughts were done the line moved up a little. That was quick I thought. During that time to the time the line moved again I had occupied myself by watching people on the @CAPS3 and other rides go by. The line moved up again. Watching people didnt work this time, so I was thinking of how much fun the maverick would be to ride, and other rides I wanted to go on next. Those thoughts lasted half way in the line. My patience was running out. I started thinking about how close school was, how much I wanted to go back, how I didnt want to go back, what I would miss, and was looking forward to. We were almost there, but I was losing patience every seconde. I started to tap my fingers on the side of my leg. I thought nothing and just tapped my fingers and move up. We were finally at the front, and I didnt complain once! I got into a seat, and the ride started. At the end I was really worth it I thought. Now it was time to go on more rides and not complain. That was a time I was patient" 10 12 22 3 3 2 2 3 3 3 3 +18401 7 "One time I was patient when we were going to @LOCATION1 for one of my baseball tournaments. It is like a @NUM1 hour drive threw @LOCATION2 and that is the way we went, I was sitting in the back of the car and I had an ear ake so my ear was hearting and I had to wait @NUM1 hours. Another reason is my little brother @PERSON1 was trying to grab my feet, and take his stuffed animal and hitting me with it. I would tell him to stop and he would not so eventully I took the stuffed animal and he would yell at me to give it back so I would. The last reason is we had to wait @NUM3 minutes in a line so we could get back into the @LOCATION3 from @LOCATION2. Then when we were at the front of the line a guy asked my mom question and he asked my two brothers and I who the two people were in the front seat and we said are mom and dad. He asked that to make sure we were not being kidnapped. Those are all reasons why I had to be patient on are @NUM1 hour drive to @ORGANIZATION1 town." 10 8 18 3 3 2 2 2 2 2 2 +18402 7 "A lot of people are patient and they wait because they dont want to make someone mad or mess-up something that they are doing. People always be careful of what they are doing. I ever be patient sometimes and its not that hard to be patient it is pretty easy. Everyone absouletly knows that, those people are out their, they know, trust me. Theirs many different things thatve been patient for, but I dont know which one I choose to write, cause there is alot of them. @CAPS1 someone is in the bathroom, wait patiently but @CAPS1 you cant or cant hold it, keep knocking on the door or just use other one, or @CAPS1 someone on the computer then wait for your turn, but @CAPS1 its been pass in an hour then tell that person to get off not to be mean, but you either need on and have your turn. There is no way you cant be patient for at leat @NUM1 or @NUM2 minutes. Not too hard. Its pretty easy and everyone knows that too you know." 3 5 8 0 1 1 1 0 1 2 2 +18403 7 I am going to write about a time I was patient. The time I was patient was when I went to fuzzys and it took a long time. It took @NUM1 minutes. It seemed like took forever. It was a @ORGANIZATION1. I think the reason why it seemed forever was probably because I didt eat nothing. There was me my mom and dad. You can also buy ice cream. My stomach was hurting and I was hungry. I had tries to. Some people have patient and other dont. I kind of have patients. But this time I had no patients. Now when I get a @ORGANIZATION1 @ORGANIZATION1 it seems not that long. That is a time I needed patients. 6 6 12 1 1 2 2 1 1 2 2 +18404 7 A time when I was patient was at the beginning of the year of the seventh grade. It was fourth hour and the principle had made an announcement saying that the sixth graders took too long at lunch and sayed there was a delay. So as the rest of the class complained I sat there calm and patient. It wasn't really fun just to sit there bored and hungry though so I just kept my cool. Then eventually our grade was called downs to have lunch. That the time when I was patient over something. 8 8 16 2 2 2 2 2 2 2 2 +18405 7 My mom was patient when she was in line for her drivers licence it took three hours to get her drivers licence. She was angry but she was patient. And the lady that would give the drivers licence took a break when she came back my mom waited another three hours an she still was patient I was there too and I was patient but I wanted to yell at the lady for taking a break and making us wait for her for one extra hour. And another time my mom waited in line under the rum it was burning the only thing she did to cool down was drink for about two hours under eithy one degrees an she was still patient. 8 6 14 2 2 2 2 1 1 2 2 +18406 7 "The time I was unpatient. On the day of @DATE1, I rose out of bed brushed my teeth got dreest and ate break feast then me, my mom, and my brother drove to the doctors. Whitch is an hour from our house. I was not happy because I was tired and just thinking about how long @CAPS1 going to be sitting their just waiting for the doctor to say @CAPS2 @CAPS3 but no I got to sit their sit their staring at the walls. Soo know were here and @CAPS1 just soo happy to sit and waite because my mom did tell me thousands of times you need to stop being so unpatient, well I cainte help it. Any way my mom just signed in for me so I guess Ill just look at magizeens boring boring boring. They dont even have people magizeeing come on I said my mom said you need to waite @CAPS1 sure they will call your name any secound, well not any secound because its been about @NUM1 boring min. ooh lookie here time for lunch but no we have to still just sit here and waite. Gosh Im so hungry. Well finlly the doctor just called my name and its time to wait again! In conclusion theirs a time I was unpatient I was un patient waiting at the doctors just sitting their thats why if it has something to do with waiting Im not interested." 10 8 18 3 3 2 2 2 2 2 2 +18407 7 "Once upon a time there were two boys named @ORGANIZATION1 and @PERSON1. @ORGANIZATION1 was abnovius and always had to time it his way. @PERSON1 always waited his turn with something and shared. One day while watching @CAPS1.V. they saw a rocket building kit and asked their dad they wanted it. His dad called the phone ??? and ???, I it ??? it world take @CAPS2 weeks. When @ORGANIZATION1 ??? it was @CAPS2 weeks he ??? fit. On the other hand @PERSON1 said @CAPS3 dad went to his ???. Pays would ??? and @ORGANIZATION1 would always @CAPS4 dad ???around because he couldn@CAPS1 wait. @PERSON1 just took it like it was ??? day. @ORGANIZATION1 would sit by the ??? and watch the ??? the ??? with his locked. Eventually the day came. @ORGANIZATION1 ran out and picked his rocket up ???. In that time @PERSON1 ??? out the door. When to the of them had the rockets ??? they opened them up. @ORGANIZATION1 was disapointed because he wanted to play now but first he had to build it. @PERSON1 took his time doing step by step instructions and no time his rocket was done. @ORGANIZATION1 just cramed pieces together and came out crooked and broke. @ORGANIZATION1 yelled landly. @PERSON1 went to @ORGANIZATION1 and told he would help and in @NUM1 minutes they finished. Together they played and had fun. The end." 10 11 21 3 3 2 2 3 3 2 3 +18408 7 "Lost in @PERSON1 @PERSON1 @CAPS1 was early @DATE1, the leaves just beginning to change colors and flutter down above your head. My mother, sister, a friend of hers and mall piled into car and drove a few minutes to @ORGANIZATION1, which was literally in our backyard. I had my camera and I'm very thorough at getting a shot of @CAPS2. My mother and the others were very patient with me, letting me be slow on the hike. The thing about @PERSON1 is that there aren't very many trail maps so you can easily become confused or lost. After hiking a long way we come to a folk in the road where a map was. My mother checked her cell phone and told us we had forty-five minutes until we had to take our new kitten to the vet. I suggested we start heading back so we could get home in time to pick up the kitten and arrive on time, permitting the long drive to the vets. My mother instead of taking my advice, started us off in the completely different direction. My sister and her friend complained dragging their feet. For the next mile or so we continued without finding a map. My sister and I became increasingly frustrated with my mother and with being lost. Because we had gotten lost in the monotonous field and trees my mother had to get out her dying cell phone and call my father to bring my kitten to the vet. I was looking forward to taking him, making me further stressed. Finally after another half hour of walking we ended up at the exit. I was happy I almost kissed the car. @CAPS2 turned out all right and my mother was always patient with us we complained and moaned." 12 12 24 3 3 3 3 3 3 3 3 +18409 7 One time I was patient was when I was in science class taking a test. I was patient because I went up to the teacher because I needed help and so did the kid in front of me. It took him a while but I just stood there and waited. It took him around @NUM1 minutes because he needed help with a lot of thing. That is the time I was patient. 8 6 14 2 2 2 2 1 1 2 2 +18411 7 "I have a few friends who sometimes ask me for help on something like school work or homework. Some of them take awhile to explain to and I must use patience in order to help them. And I'll be realistic, not everyone has a lot of patience and get frustrated easily, like me sometimes. And at times I have been on the phone for a hour trying to explain homework to one of my friends. Soon I will once again have patience when I tutor for @CAPS1. To me patience is one of the most important characteristics someone can have." 5 5 10 1 1 1 2 1 1 1 2 +18412 7 "I am not a very patient person. But when I have to be I am. For example at my house we only have one bathroom. I hate waiting to go. But I have to wait because I dont want to jungle pee so I will wait. I also have to wait for my bust. I hate waiting its so boring. But patience is a good thing to have. If we didnt there would be a lot of deaths by car accidents, murders, nervous breakdowns. My sister is very patient she can wait in one spot for hours one time it was @CAPS1 I was all figtxy from waiting until the bell rang so we can go trick or treating. She waited well she did her hair I complained that is a reason why patience is important." 6 8 14 1 1 2 2 2 2 2 2 +18413 7 "Flave you ever been to the dictor? Well on @DATE1 my brother, sister, and l had a dictor's enportment we miss school. When we got there and it was packed with people. So we sat bown and wait. We been wait for three and a half an hour, so I started to get unpatience and hungry to l told my mom l was hungry and everyone: agreed with me. So my mom went to the food court to go get us sum. Pizza and water. When we was done with our pizza we waited for a nother three hours. I started to get angry because we been here for a could of hours. Finily the nerse said kimderly that my mom so we stand up, then she said @PERSON1. So I got so unpatient I yelled out and said ""@CAPS1, it our term we been waiting here for an long time l can't wait @CAPS1 more"" my mom finily come me down and I said sorry for my rude behavor. When l sat down and start wait, just in a second it was our tern. That why patience is very important" 9 9 18 3 3 2 1 3 3 2 1 +18414 7 Patience is one of the most important things in life. Patience is being understanding and tolerant. For example a kids mom left for work she takes @NUM1 hours and she come home. The kid said that was quick. That is what patience. 5 3 8 1 1 1 2 0 1 1 1 +18415 7 For me im not that patient canse if some one close something to me or any of my friends I will go off on them can see I dont tolerat my frinds bing picked on by some one they dont even know or I dont know. Thers this one time me and my frinds were walking down the hall way at school. This kid semes out of know were and start to push my frind around and I asked the kid what his problem was and he said it was non of my bisness came see ur picking on one of my frinds so he stop pick my on him and tried to pick on me but he didnt know that I had my brother and other frind around the coner of the bilding so I had my one frind that was right next to me go and get them so he did and the kid that was pickin gun me ran away. 7 7 14 2 2 2 1 2 2 2 1 +18416 7 "One time when I was patient was when my moms car needed a new battery and I had to go to school. My mom called her friend that lived down the street to come and give us a boost. We waited an hour and a half waiting on her. My mom called called her back and she said she cant make it because she needed an oil change. After that we walked to the bus stop for thirty minutes, it picked us up and took us to @ORGANIZATION1 and @PERSON1. Then we walked the rest of the way to @NUM1 mile and @PERSON1 where the was another bus that took us to @NUM2 mile and @PERSON1 where my school is. That was time when I was patient." 11 8 19 3 3 2 3 2 2 2 2 +18417 7 Patience is about waiting for some thing. Like we can say your new shoes will becoming in two weeks instead of paceing around worrying all the time. you just walk around like honnel. For example hunting you sit and wait for a deer to come. If your inpatient you would go look for some. Sometimes a lot of people can got inpatient about something and become mean. Being patient is understanding why it is taking a long time for something. You have to to herdteif it dont come the come the @DATE1 it supposed to. This one tim I had a @CAPS1 appointment at @TIME1 and my mom and I had to wait until five o'clock. And we never got mad just a little board. This one time a friend of mine was waiting for his dad didnt come home until the @DATE1 6 4 10 1 1 2 2 1 1 1 1 +18418 7 "Paitience is when you are calmly waiting for something, someone or for something to happen. When I was little I went to the doctor to get a shot, but momdid not tell me it was for a shot, so I was thinking I was I was just going to go in and come out with a sucker. I had asked my mom when I could have a sucker and she said wait a little while be paitient. I went into the room and got the shot and got my sucker. I was angry with my mom because she knows I hate needles." 9 9 18 2 2 2 3 2 2 2 3 +18419 7 "A beaker bubbled in @LOCATION1 lab. I could smell the sulfur smell wafting from the beaker. @CAPS1 whats going on! I yelped across the room @CAPS2 found the cure for the cancer! @CAPS3 said as @CAPS3 had a little jublee dance that @CAPS3 showed off. I am a doctor and I wasnt so sure but I told him I had a patient with extreme brain cancer. @CAPS4s go try it out! @CAPS3 screamed. As I zoomed to the car and waited while @CAPS3 packed up his lab equiptment. After @NUM1 minutes I was pondering where @CAPS3 could be. @CAPS3s just having a hard time packing up I said. So I turned on the radio and fell asleep. After a couple hours I woke up in shock. I had been sleeping @NUM2 hours! I rushed inside to find him holding a ball of fur wrapped in his lab coat. I saved this kittens life with my cure for cancer. @CAPS3 said out of breath. I was glad I was patient or the kitten would have not lived. Just as I was thinking about how nice it was that @CAPS3 saved the kitten, my pager dinged. @PERSON1, the lady with extreme brain cancer needed our help. @CAPS3 got one vial of his cancer solution and we rushed to the hospital. There I saw @PERSON1 laying there as translucent as light hitting off paper. I quickly got her heart rate down. At this moment I wasnt sure if she would live. @CAPS6 give it to her? the mad scientist asked. I made a risky choice. @CAPS7, not yet. I waited five minutes and then poured it in. @PERSON1 came back to life. Even though @PERSON1 couldnt talk, I could tell by her smile that she was very thankful I was patient. Her daughter walked into the room and said, @CAPS8 you. I only smiled back." 12 11 23 3 3 3 3 2 3 3 3 +18421 7 "I am patient wherever I go to the dentists office, orthodontist, or doctors office. The first time is at the dentists office when I have to wait to get my teeth cleaned. I usually sit there and end magazines .The next place I am patient is outhodontist,I sit and wait in the first room and crater to my I-pod after a few minutes the call me into the second room where I wait little longer to get my bracer frightened . Once I get in the office I have to wait for the guy to tighter them. Finally there is the doctors office where you sit in the big waiting foom for a long time and wait for the lady to call you in when you get there if you are getting shuts you have to wait patienty for the doctor to being them. As can see a lot of things take patience." 8 6 14 2 2 2 2 1 1 2 2 +18422 7 "One day I had to go to the doctors office to get shots. When we got into the doctors office I had to wait in some uncomfortable chairs, with my dad. It was my first time getting shots, and I didnt know how it felt. Since I was little, it was harder for me to have patience, I just wanted it over with. I kept on asking my dad is the doctor coming yet, and my dad would always say patience. It got to the point when my dad was so frustrated, and he told me to go play with some toys; which I did not notice until then. But when I saw those fun toys gleaming in the sunlight I ran to them. But after a few minutes it got so boring, so I went back and sat down. It was getting so boring I couldnt take it anymore! I wanted to scream! But then I couldnt take it, I started to get so mad, wanted to just get out of there. But I didnt let my dad know, because I wanted him to think I was patient. I was about to yell as loud as I could, but then my doctor came out, and said @CAPS1, and I was releved that the doctor finally came to give me shots. But what I didnt know was that I was going getin horrible pain for a few days." 11 12 23 3 3 2 3 3 3 3 3 +18423 7 "I play hockey. I am a goalle. A good goalle is always paitient. On my old hockey team me and the other goalle faced lots of @NUM1 on @NUM1 shots. Most of the @NUM1 on @NUM1 shots didnt matter but a few of them did, and they were the hardest to stop. My team had never lost a game but we had a few very close games. In one of the games, the score was @NUM1 to @NUM6 and my team had the lead. It was towards the end of the game and they had a @NUM1 on @NUM1 against me. The shooter was skating in from the side and he cut across the middle of the ice. It was tempting to go down but I stayed on my feet. I waited for the shooter to get to a point where he had no place to go and he shot and I stoped it. That was even of the only shots of the game and I stoped it." 10 8 18 2 3 2 3 2 2 2 2 +18424 7 "@CAPS1 on hurry up, my friend said. I know, be patient, I said. Being patient means that you are understanding and tolerant. A patient person experiences without complaining. One day, we had a basketball game away at a different school. My team and I all went to the bathroom. I was the last one to go into a stall. They all left and one girl stayed. Being patient is all ways a good thing have you ever heard something like Patience is a virtue? Well if you dont get used to it." 7 10 17 1 1 2 3 2 2 3 3 +18426 7 One time when another person I know was patient was when my stood in line for over an hour to get the tickets for the show were going to see. This shows patintence because my did not complain while standing in line. 5 5 10 1 1 1 2 1 1 1 2 +18427 7 "One time was the often best friend I had went to a ride it was so hot outside but the first ride we on was called the @CAPS1. The line was super long, it was like going through a maze because how the rope were tied up we stood in the line for about forty five minutes but it felt like two hours . But I didnt really complain about except for my friend she kept complaining about how hot it was and how her large feet were tired, but when we finally got there we stared rolling to know how . When we sat down in the rollar coaster it was so much fun. I think it was worth waiting for." 8 8 16 2 2 2 2 2 2 2 2 +18428 7 "A time when I was patient was when I wanted a Do I. for my birthday. But I couldnt get it because my moma had to pay the rent. So I waited and then finally it was my birthday. I didnt have it but then @NUM1 months went by and it was @CAPS1 and I got it and I was so happy. @CAPS2 time when I was patient was when I had to babysit my cousin for @NUM2. And I waited a few weeks for my uncle to give me my money but he did not. So I waited and ?? to gave me my money. But not only did he give me @NUM2 he gave me a late fee @NUM4 and I was hapy. And that added up to my money, that my mama gave me and it was @NUM5 and I went skating and to the store with my friends. And I spent some of it at @DATE1 ??? and on @DATE1 added held ???. they were then @CAPS2 time when I was patient was when it was @NUM6 days before my birthday and I was leaving a sleepover I ??? went to go buy everything and it was like the next day was my @NUM7 birthday. I did everything I had so much fun it was like heaven at my house." 6 8 14 1 1 2 2 2 2 2 2 +18429 7 "Patience. Patience is something I have absolutly nothing of! I take after my mom in this area. My mom is probably a little bit worse than me but we are both pretty bad. Sometimes we record t.v. shows and watch them later just because we dont want to have to wait through the @CAPS1. Some of the other things I hate to wait through are lines, people being late and just plain old waiting around. The longest amount of time I can stay patient for is about five minutes any longer than that puts me over the edge. On by the way another thing is long car rides when I have nothing to do. I just wish we could have a @NUM1 hour drive turn into a @NUM1 minute drive but still end up at the same place. I really wish icould have more patience but I dont know how to get it. I really hope that you have enough patience to get through my story." 7 8 15 0 2 2 3 1 1 3 3 +18430 7 "One time I had to be really patience. It was when I was on my way to @LOCATION1 to see my family. It took four days to get down there. It would have taken two or three days but we stoped a lot. My dad wanted to go to all of the stores and restronts on the way. It made me kinda mad because we didnt need to go to all of them but to my dad we did. On our way it felt like two weeks. My uncle @PERSON1 called us ever five minuts on the way. He kept saying things like how close are you, when are you going to get here, are you lost, and did you get me some co-co weats? I thouth that was really funny. My uncle loves co-co weats. I mean I like them to but not that much. When we finly got down there my legs hurt so bad from sitting in the back of my dads car. I walked around for two hours to get the feeling back in to my legs." 10 9 19 3 3 2 2 2 2 2 3 +18432 7 The time I was patient was when I went @CAPS1 fishin with my step dad. I could not wait for long so I decided to talk to myself or sing songs. My step dad said you set ur pole down on a sling shot holder and do whatever. So I went walk around explore the world and I was think about how I can do patience. I was to go check on my pole and I got nothing so I feel in the coast out for way so I sat wait and wait but until that moment my pole start to jak around so I reel in caught a large @CAPS1 I was so happy. My step dad said see you do got patience. 9 6 15 2 2 2 3 2 2 1 1 +18433 7 "The time I needed patience. We were on the groccery store, @CAPS1 man to be exact.m When we first got there I was exited because we were going to get lots of junk bad, but ther. We started to get lots of food and it looked really good. I started to just eat it all. The cart was half way. ??? @CAPS7 we got more stuff and it was @CAPS3 full that we had to get another cart and it started to get hungry. But the time we were in the meat section, I was starving. My mom said @CAPS2 me just get a couple one things. @CAPS3 I waited, and waited @CAPS7 she told me to go to checkout. All of them were @CAPS3 long and I felt like I was ???(@CAPS4 @CAPS5 @CAPS6) @CAPS7 this little girl walked up to me getting smart I couldnt take it, I was about to talk that little girl down. But I had to calm myself @CAPS3, @CAPS7 I realized it was our turn and I was @CAPS3 happy. @CAPS7 when I got home mom cooked bacos and I was just ready to go to bed." 11 8 19 3 3 2 3 2 2 2 2 +18434 7 "As I waited at the airport, I gazed at all walking by I pondered these thoughts in my head: when will @CAPS2 be here? @CAPS1 long have I been waiting and what time is it, wasnt his flight supposed to be here @NUM1 minutes ago? Then suddenly I heard a soft female voice @CAPS2 will be here soon, honey dont worry. I dont understand @CAPS1 my mother told a @NUM2 year old not to worry it was in our nature. I was about to lose my patience, but then I asked myself what good does complaining do? It only makes you upset. @CAPS3 these things ran through my mind, I gained back my patience. An hour later, I felt my mom shaking my shoulder and telling me to wake up. When I opened my eyes, I saw my dad standing in front of me, I ran to him and gave him a hug. I almost lost my patient @CAPS4 glad I stayed patient because if I wasnt it wouldve ruined my fathers trip. Patience is a good thing to have, you can gain or lose things from it. In this case I think I gained something." 7 10 17 2 1 2 2 2 2 3 3 +18435 7 "A time I was patience was one time we were @CAPS4 the store and I was @CAPS2 excited to go to the toys section. @CAPS1 we were goin to have go to the grocerys first, said mom. I was really mad and mom said be patice the quicker we do this the faster well get to the toys. @CAPS2 we are @CAPS3 done with the grocery and then we have to go to the clothes section. I was really really mad. Mom said the quicker we do this the fast we get to the toys. @CAPS3, I had to try on clothes. I hate try I on clothes, I said. Then I was @CAPS2 excited because we go to go to the toys selection I was @CAPS2 happy. I looked, an look an then mom said I could pick out a toy. @CAPS4 was @CAPS2 hard to choose I didnt what to pick till I saw a cool truck. @CAPS4 had big tries @CAPS4 had flames and @CAPS4 was green. I asked and please please? An mom siad @CAPS5 u can get I was @CAPS2 happy. And that was a time I was paticene." 8 10 18 2 2 2 2 2 3 2 3 +18436 7 I was patient geing my @NUM1. I took for ever to get it I had to be so patient getting the system. I took me ten mounts to get on my birthday he and to all the gamestops in taxlor to get it. I was in the car for hours to get we went in to one at the frist game stop we looked at and they had one insed it was in good condashi I got three games for it and that was the time I was patient. 4 4 8 1 1 1 1 1 1 1 1 +18438 7 "Once apon a time, in a land for army, there was a girl named @PERSON1. One day @PERSON1 and her mom where going to watch a movie called @CAPS1 from @LOCATION1. @CAPS2 when they got to the theater, the tickets were sold and so they had to watch another movie. It mustve been a bad day because once they got up to the ticket sold and remember to go to! @PERSON1 and her mom left and went to go eat. They went to a place called @ORGANIZATION1 and got in to order! They ordered their food, sat back down and ate. Once they were done, the left and went to try again with the movie @CAPS2 when they did the line was as long as a mile! @PERSON1s mum just told her to be patient and wait I told about and listening to go???. When they were there, they finally got the last ticket available. After that her mom @CAPS5 so honey @CAPS3 were patient???When they got home??? the couch, got a snack, and waited for @PERSON1s sister and dad to get home. finally, they ??? withe a big surprise and @PERSON1s dad was holding tickets to go see the movie @PERSON1 and her mom had just seen! @CAPS3 were trying to find you all day @CAPS5 her father. @CAPS4 @CAPS3 couldnt find you. @CAPS5 her sister. @PERSON1 and her mom looked at each other and explained that they can go see the movie @CAPS3 were patient and waited in line an got the last ticket available! And @CAPS3 won feifty dollars too! exclaimed @PERSON1. The @CAPS6!" 10 12 22 2 2 3 3 3 3 3 3 +18441 7 "I am going to talk about what I think patience is. I think patience is about waiting. For example you were very patience in line for cotton candy, said the clown. You know something like that I know this a short story, Im sorry." 5 3 8 0 1 2 2 0 1 1 1 +18442 7 I remember one day I was waiting in the waiting room in the doctors office with my mom because I wasnt feeling well. We sat there talking for about ten minutes when my mom said @CAPS1 its already been ten minutes I wonder when I will get to go and talk to my doctor. I said. I don.t know but lets wait a bit longer. Mom said. So as we waited and sat patiently more kids started coming in. I noticed some were young and some were older. I signed. What is taking so long? I wandered. Was my doctor even here today? I starred at the wall and looked at the color of it. Orange. Before I knew it half an hour passed. My mom was looking at her watch. @CAPS1 its almost @NUM1! @CAPS2! I said flustered and annoyed. Are we just gonna sit here all day? I asked. Finally my question was answered as a nurse said I could finally come back to a room and speak with my doctor about my sickness. @CAPS3 for being patient! the nurse said smilling. I smiled back. I @CAPS4 been patient. 12 11 23 3 3 3 3 3 3 2 3 +18444 7 One day my mom said I could get this new toy at the store but my mom had to do other things before we went to the store so I had to be patient. My mom had to go to where she works because she forgot something. Then she had to go to the gas station. Then we finally went to the store and I got the toy that I wanted. 8 4 12 2 2 2 2 1 1 1 1 +18445 7 "Patience can come in different was in life. For one thing, it can reward you at the end. For example, it can come in a bigger way if you are patient because it would be a bigger reward to you. Another thing is that it lets you do other things in the process. For example you could wait for something, you could do something else when its time you deserve it. Another thing is that it might be difficult, but you can control it if your calm. For example, people cant wait so they just want to rush and get to be done with it. My final reason would be if you can do it once in your life, the second time can be easy. For example, the second wouldnt be so hard because you would be calm. That is patience in my own way." 5 4 9 0 1 2 2 0 1 1 2 +18446 7 When I'm being a patient and I @CAPS1 nicely and I do not complain and I like to be pation and I @CAPS1 good I do not fell and sometimes people don't be them to calm down and sometimes when something is is taking forever I sometimes sat come on and I always be patent at school at restaurants and I always be patent ever I where bat sometimes I can't not be patent and I don't want people thanking I m weird of ating some thing I just @CAPS1 a neit it and I be patent in lines at the fail and at the fair sometimes have long lines and that is my goal is being patent of everything but sometimes I'm not patent because sometimes something take to long and I just like to be patent. 3 4 7 0 1 1 1 1 1 1 1 +18448 7 "In the writing prompt, I chose to write a story about a time when I was patient. I am going to talk about the time I skipped school to go fishing with my dad and my uncle @PERSON1. I didnt get to sleep in very much, I still got up at about the same time I do to go to school. I had to get out of the house before my brother saw me because he wasnt going with us. We got in the car, and drove to my uncle @PERSON1s house. When we arrived at his house, my dad started packing everything onto the boat. Once we did that, we hopped in my uncle @PERSON1s old, rusty, red truck. The red paint was chipping all over the truck. We started to drive, and my uncle @PERSON1 had to keep watching the boat. The boat was very small. It just barely fit all of us. It was only about a foot and a half wide and about @NUM1 foot long. It scared me when we put the boat in the water and started driving. We went through a gorgeous river all the way to the back of the @ORGANIZATION1. The @ORGANIZATION1 were on is called @ORGANIZATION1. It is in @LOCATION1. I was patient right when we got in there. I thought we were going to stand, so I was having second thoughts on fishing. It turns out, we just sat in there while we fished. We fished for a good @NUM2 hours that day. I was so very patient waiting for my bobber to go down so I could set the hook. @CAPS1 my uncle @PERSON1 said. It means that the bobber is going under the water like a submarine does. We had @NUM2 rods out at once! @NUM4 pike rods, and @NUM1 bluegill rods! I caught the biggest blue gill of the day that day! This day was one of the best days of my life!! That is about the time I had to be patient on the @ORGANIZATION1 for @NUM2 hours straight." 9 10 19 2 2 2 3 2 2 3 3 +18449 7 "One day I was at the store with my friends. I picked out my slurpee and inline to buy my slurpee. then an old lady got in line. So to be nice I let her in front of me. @CAPS1 a while she found out that she was a dollar short. So I gave her a dollar. She turned to me said thanks and gave me a mint @CAPS1 I bought my slurpee, me and my friends had to cross the road. We sat their for @NUM1 to @NUM2 minutes but it seemed like an hour. We crossed the road and walked to my house. On the way to my house my friend hold to use the restroom. So we went to the market. We had to wait for a hour before he came back out of the market. he told us he got lost. We walked home and on that day, I learned that its tough to be patient." 8 8 16 2 2 2 2 2 2 2 2 +18450 7 "Two summers ago, I helped out with kids camp at my church. I helped with the preschoolers for the week and that required a lot of patience. They were very exited and roudy. They were always running around and shouting. I had to keep a calm voice and be patient with the children or it would make the situation worse. Later on this week, I was put in carge of a young, special needs kid. He just couldnt sit still! I had to remind him over and over not to be so loud. He was very determined to get what he wanted. It was hard to stay calm. Dispite the hardship I managed to be patient and calm. The little boy decided I was all right and started to behave. Now, every time he sees me in the hallway he sais, hi! very excitedly. Now am glad that I stayed patient." 10 10 20 2 3 2 3 2 3 2 3 +18451 7 "One day I was at my @CAPS1 @CAPS2 house to celebrate my cousins @CAPS3. He was turning @NUM1 years old. So we played games played on the trampolenc. They we came inside to relax and watch some television. We played with there dog after a while. Then a lot of people came over. We went outside for a third time played. We had to come inside and @CAPS4 up for dinner. We all ate turkey, baked potatoes, cheese potatoes, squeen, beans. That was pretty good. Then they wanted us ??? project. It was a jon with a candle in it. We had to cover it in tisue paper and it uses lots of glue. I had to wait patiently I was the last one to domine. So I walled waited ??? then finally I got to do my project but I was ?? Only one there sitting at the table doing my project. It actually turned out pretty good after all. Being patient con get you very far in life. You have to be patient in a job, restraunt, and lots more. So remember just be patient and you'll be okay. Being patien will guide you through your hole life." 12 6 18 3 3 3 3 1 1 2 2 +18453 7 "I am going to write a story about a tim e that I was patient. When I was eleven, on @DATE1 my mother was due to have her baby. I couldnt wait I was so excited. We went to the doctors officeand we shifted into her room. (me and @CAPS1 my moms best friend) and @CAPS2 her. When we got into the room my mother was having contractions,she was yelling, screaming and squeezing my dads hand. I got scared while she was yelling and I didnt want her to get hurt. I walked out of the room and me and @CAPS1 went and got the baby @PERSON1 her first dress. The baby came home she was always crying thats when I learned to be patient holding babys ." 8 8 16 2 2 2 2 2 2 2 2 +18454 7 "Patience is essential when interacting with others. I learned this during a visit to the dentists office. This @DATE1, I had a dentist appointment, since it had been six months since my last one. As I was waiting to be called in, a boy came in with a severe toothache. The dentists decided to treat him first. I understand why they made that decision. I could tell that the boy was in a lot of pain. Shortly after the boy went to get treated, an older women came in with a mysterious pain in her mouth. It turned out to be a root canal, and they decided to examine and treat her before me. I also understood that decision. After the women went to get treated, a little girl comes walking in, bragging about her first loose tooth. Her mom said she wanted the little girls tooth pulled. When the dentist called her back before me, I got really frustrated. The girl was in no pain at all. In fact, she was pretty happy she had a loose tooth. I didnt it was fair that I had to wait another @NUM1 minutes so that she could get her tooth pulled. I had to show a lot of patience because my appointment got pushed back over two hours. I thought about how I felt when I lost my first tooth, and then I didnt mind her going in front of me. All in all, patience is a very important trait that people should exhibit on a daily basis. I learned a very important lesson that day: Patience should always be manditory." 12 12 24 3 3 3 3 3 3 3 3 +18455 7 One time my friend was began patients waithing for the teacher wall he was talking to a teacher. Afocer that he was duen talking with a teacher. Then she will get her question that she need. That is a time when my friend that was patients. 4 3 7 1 1 1 1 1 1 0 1 +18456 7 "Patients is about many things. First, there is diffrent ways to express patients. Second, people either have patients or they dont. I admit I am one of those people that dont have patients. My mom is always saying, @CAPS1 your horses. @CAPS2 I know. I dont have patients so why does she have to tell me I dont? I dont have any patients in grocery shopping I cant wait to get out but, everyone hates it right? Lines, lines, lines man do I hate them the take forever, wherever you go. Plus it is really nice when you let someone out if they are in a big hurry or somthing in a emergency. Plus the goodness in you just cant help it when you have a little girl that needs to cut you. So you see patients can take a toll or some people have no problem with it. It just depends on who you are. Patients has a lot to do with complaing. But not the way you think, when you are patient you dont complain at all you chill and go with the flow of things that are around you. Especillaly, when you are in a difficult situation it helps to have patient people than non-patient people with you. Well that talks about patients and how people deal, relate, and chill about it." 6 5 11 0 2 2 2 0 1 2 2 +18458 7 "I remember the time I got my new puppy we had to be patient. We had to be patient because, he wasnt fully paddy trained yet and he was crazy. My dog is @CAPS1 and they are known for herding cows .So whenever we used to go outside he would bite our shoes. I dont know why it would try to move us but it did .We had to be very patient when we trained him, it took until he was @NUM1 and a half years out to figure out that he wasnt supposed to do that but on (my dog) is still growing into new hobbies. We just have to stay calm and patient and then we are able to train him. It takes a long time for @CAPS2 dop to brave his hobbies, so we must stay patient. This is the time when I was patient." 9 12 21 2 2 2 3 3 3 3 3 +18459 7 "My mom woke me up early in the morning and said I need to get up and get ready fast. I asked what was the matter and she said were going to potter park zoo. I @CAPS5t know why mabe just a sudden idea. I got all dressed and we hit the road. I wasnt felling well that morning. We got subway breakfast. I didnt eat my sandwitch tho cause my stumic hurt to bad. It seemed like @NUM1 hours befor we finily got there. I was felling better now. We paid a got a map and stanted looking at all the awsome animals. I got to see @NUM1 giant wolfs, snakes, monkeys, lions, pekos, camels, and a @CAPS1 of other animals. It was so fun! We got to this bind cage that you can go in the birds are just flying around lose! There was a little boy in there and a bind landed right on the top of his head! @CAPS6 my moms phone rang. It was my brother. He said home because he didnt wanna get up. I could barlley hear my mom over the birds. She walked out and stood outside I followed her she was saying @CAPS2 @CAPS3, because I said so you @CAPS5t need to go any where. @CAPS4 thing I know she was hanging up. We walked toward the fish building when her phone rang. @CAPS5t ever hang up on me agian! @CAPS3, I @CAPS5t need to fight with you! Its going to storm I want you home! @CAPS6 it starts poring rain and my moms still on the phone. I was getting very wet and board I really wanted to see the fish. About @NUM3 minutes later my mom hung up her phone. We walk in soken wet! My mom smiled at me and said @CAPS7 for being so patient!" 10 8 18 3 3 2 2 2 2 2 2 +18460 7 "I time I was patient is when we had to do mcap teats. I was one of the first ones done so I had to sit quitly and read. I read most of my book. It took about an hour for evrey one to finish. it was vary long time to read. I got board but I sat quite so people could finish, and so I wouldent be disrptintt. Thean when evry one finshed we took a batheroom brack." 9 6 15 2 2 2 3 2 1 2 1 +18461 7 One opeadatire ??? . Is when I was a little kid.was patience is when my mom and my cousin cindy was talking .my cusin told me when your mom and I was done talking she told me wait yourturn so I did wait for my turn.When they were ??? talking I ask my mom is I can go for my bike. I told my mom I can ride my bike without training reals. My mom came up because I was going for sargey.I was waiting for the sargey.The sargey was some kind of ???So I was waiting entell it was done.It was fun 6 6 12 2 1 1 2 2 1 1 2 +18463 7 I test my patience we I was wating for a ???. you now if you have patient if you said for @NUM1 youres at one time you will now if you have patience them. I will be strong ??? ??? get unpatience at som time. Yo will naver be all paticen at a carse our a newerer. I was at a go cur tirace I had te be patience to see the ???i got unpatience than I had to week to get food so I can hove sontime to do for I want bead so I no surd @MONTH1 ??? That how I got my pacent. 3 3 6 1 1 1 0 1 1 1 0 +18464 7 "There was a time when I was patient. The time I was patient is when my cousins @PERSON1, @PERSON2, and @PERSON3 were playing the wii. And I said I play winner @CAPS1 my cousin @PERSON2 won and @PERSON1 didnt give me the controller and she wasnt sharing. @CAPS1 then I said she could play one more time then its my turn, instead she played four more times @CAPS1 I said @PERSON1 its my turn you played and I didnt, she said it is not your turn. @CAPS1 then her mom said @PERSON1 you can play @NUM1 more minutes then its @CAPS2s turn one hour thirty minutes past and she still didnt give it to me @CAPS1 then I said @PERSON1 its my turn, and Ive been patient for a long time you either give it to me or Im going to take it, she still didnt it to me. Ive been getting ready and you still didnt share @CAPS1 then she said Im tired of it anyways. And thats the time Ive been patient." 8 8 16 2 2 2 2 2 2 2 2 +18465 7 "One time I was patient was when I had to go to the doctor to take my shot for six grade. I didnt want to go but I had to go I didnt have a choice so I get in the car and we drive to the doctors office. Finally we arrived. My mom had to sign in and we sat down. Even though I was waiting for three hours I didnt complain about it. The doctors comes out and I got scared but happy that finnaly its my turn. Then he called a different name so whe and my awesome mother kept on waiting in the waiting room, then my beloved mother tells @CAPS6 wow @CAPS1 your not complaining now. I know manages thats because @CAPS2 becoming more mature and I have a lot of patience. Thank @CAPS3 the doctor calls my name @CAPS1 @CAPS5. @CAPS6 and my mom go in the room. The doctor says you grew she the last time seen you. Doctor is this going to hurt? No sweetie its not. Are you sure. Positive, ok , ready, ya. So I close my eyes and imagine something really nice. Doctor yea cuting. When are you going to give @CAPS6 that shot? I already did. Really? Ya look at your arm. Wow in never felt one thing see I told you. Think you are the best doctor in the whole wide world I have ??? thank you cutie pie. Your very welcome." 10 8 18 3 3 2 2 2 2 2 2 +18466 7 I remember the time when my there older sister was so patient fo her birthday on the fourth of @DATE2 man she was patient every time I ask her can you what until your birthday she said yes I can what until my birthday I cant what untill my birthday because it is in @DATE1 untill fourth of @DATE2 she was so happy I just cant believe that she wated for her birthday she went to her freinds house did some shoping of her own and fire works was in the air my sister well that is how my sister was patient. 5 7 12 1 1 2 1 2 2 1 2 +18467 7 "Ahh! I screamed in my mind. Baby sitting my cousin took a lot more patience. ( more her than me) @CAPS1 all at started on a @DATE1 @TIME1 my family went to go do some drink (I stayed behind to work on my homework) A little after my mom left I heard a knock on the door. My aunt come in and whispered ""you most??? @CAPS1 was okay is if I left @CAPS2"" @CAPS3 I replied ""okay"" @CAPS4 was asleep for about half- an hour. When I woke up @CAPS4 was @CAPS5 started crying. First thing I did was pick her up and carry her around. Still @CAPS4 was crying! @CAPS3 I thought her cloth need changing. I changed her cloth and??? Keeps crying. Now I had to keep my patience though because who would yell at a baby. Then I thought @CAPS4 was hungry. I didn't know how to make a bottle though @CAPS3 I had to read??? (@CAPS4 had no patience all @CAPS4 want was her bottle) @CAPS5 when I was about to lose my patience I made a bottle bat sure if @CAPS1 was good) but @CAPS4 drank @CAPS1. Finally I put her back to sleep (if @CAPS4 cried one more time. I would do finally lose my patience) @CAPS6 @CAPS4 was sleeping @CAPS4 looked in peaceful until @CAPS4 woke up. @CAPS4 started crying again (this time I knew why because @CAPS4 likes to be carried).By the time my aunt came back my hands hare sore. Although at the end of the day I figured out, that you need a lot of patience to take care of a baby you need way more patience for a younger brother though trust me)." 9 12 21 3 2 2 2 3 3 3 3 +18468 7 "I am going @NUM1 write about a time when I was patient. My advocate @PERSON1 was soppese @NUM1 buy me some pens fo many of @DATE1 year as part of my @DATE1 money. I have been asking him everyday since then. @PERSON2, @CAPS1 @MONEY1 do ur daily shopping yet? no. @CAPS2. @CAPS3 said because I want my pens @CAPS4 @DATE1 present remember the @NUM3 owe me. @CAPS5 I do but be patient @CAPS6 ok my patients is about @NUM1 fall apart. I have been waiting ever since." 4 6 10 1 1 1 1 1 1 2 2 +18471 7 "Have you ever have to wait in line to get on the biggest roller coaster at a theain park? Have you ever wait until all your chores are done before you can play with your best friend? Have you ever had to wait for your little brother or sister to catch up? Well, in this story I will tell you about one time that I had to be patient. During @DATE1 I had to go to the doctor to get shots @CAPS2 that I could be safe. When I got to the doctor I had to wait in a room for my name to be called. It was @CAPS2 boring! And I was thinking, @CAPS1 long does it take for a few people to get shots @CAPS2 that I can leave? @CAPS2 I had to just sit there for about half- an- hour until my name was called. Then once I got into a back room I had to wait even longer for my mom to sign papers and what not, and also for the doctor to get the shots ready for what my mom told them to give me. But in the end I got to go home and play with my friend. This is once of many times that I had to be patient. And at least I still got to play with my friend. I hope you liked it." 9 11 20 2 2 2 3 3 3 2 3 +18472 7 "I was patent when I was waiting for a chance to go to cicago. I really wanted to go see the windy city because my mom went to @LOCATION1. I tried to forget about it until I went. It kind of worked but once in awhile it came back to me. Although I did stay patient and I didnt bug my parents about it once. It took a few years, but I keept my patience. Sometimes I even forgot I forgot about it. I just lived every day as if I didnt care about @LOCATION1. No mater how tempting it was seing @CAPS1 or @CAPS2 hawks game on I kept my cool. Then it happened @MONTH1 @DATE1, imagen that it was @NUM1 and I was still patient! So, to put it in a nut shell no mater how long it took, I would be patient." 6 8 14 1 1 2 2 2 2 2 2 +18473 7 "I am going to tell a story in my own way. It was @DATE1. My sister was turning @NUM1 years old. We were at @CAPS1 @CAPS2 setting up for her party. She had a pretty dress and my mom was carling her hair in the bathroom. I walked in and asked my mom if she could curl my hair. She said You have wait. I made a snobby comment and I at one of the tables. I was being patient. Finally, if was my turn. I sat there while she curled my hair. Later that day, my sister, @NUM2 cousins and I all had @NUM3 @CAPS2 to ourselves. I was last on the bowling list @CAPS3 I had to be patient for awile. It was finally my turn. I bowled and I waited. Bowled and water. Finally it was time for cake and I had to be patient again. Eventually I got my cake but I was sick of waiting for everything. While my sister was opening her presents, I was thinking to myself, shes @CAPS3 slow, @CAPS3 I walked up there and shouted, @CAPS4 up! I got yelled at and had to sit out for a while. I should of be patient the whole day and maybe I would of participated in all the games. Thats my story I told in my own way." 12 12 24 3 3 3 3 3 3 3 3 +18474 7 "A time that i was patient was when i had to train my dog. sit boy, I command to my puppy. My dog instead of sitting runs at me jump and grabs the treat out of my hand. I go and try to grab the treat back from him and he gulps it down. While @CAPS1 walking to grab his collar and take him for a walk he bolts away. After chasing him for hours he finally stops and looks at me waiting to run again. @CAPS2 here Im done chasing you lets just go for a walk, please, I say as i slowly loose my patience. I begin to walk toward him again very slowly. I get close enough to grab his collar, but then the dog bolts again just leaving a bunch of dust behind. @CAPS1 done ! I scream and walk away with anger. I begin to leave and go up the hill to my house. I go to my room ready to sleep. The next morning @CAPS4 up and go outside to try and train dog. I lost my patience yesterday and stormed off but today @CAPS1 ready to work hard and keep my patience. @CAPS6! I yell waiting for my dog to @CAPS2 running and he does.With my first command i tell the dog to sit and he does not so I dont give him the treat. I say it again and he sits! Finally some progress after that waiting. I give him the treat and he starts waging his tail. To see if he understood i say it again. He sat again and got another treat. After that work with my dog I begin to ask him to do more things,sometimes he doesnt listen and some times he does. That was a time when I was patient with my dog to teach and train him and it definently paid off." 10 12 22 3 3 2 2 3 3 3 3 +18475 7 "One time when I was patient was when we flew in the @LOCATION2 to visit my sister at the I asked school. We flew to @LOCATION4 well and the to @ORGANIZATION1 but after that it was down hill. When we got to @LOCATION3 we were stuck there for four hours! after an hour I got bored with my little brother with us didnt help at all. Then over the intereem we hear that we have to go through security now and sit in a room with a gift shop ??? all for @NUM1 hurs. When there was an hour left there was another announcement and it was that we will be delayed three more hours, after that I was listening to my ipod and luckily fell asleep for three and a half hours. When we finally get to leave we walk up to six seater phase for us to fly to a small island near by. When we got to @LOCATION1 we hurry to the island school to see my sister. That was one time when I felt patient waiting in an airport for @NUM2 hours." 9 9 18 2 2 2 3 2 3 2 2 +18476 7 "@CAPS2 @CAPS1 @CAPS2 @CAPS3” I can hear the clock ticking ,probly to annoy me. I can feel the tension in the small classroom building. Every body is on the edge of their chairs waiting, why does @CAPS4 seem so long? Its almost @NUM1 minute now.the aroma of peperoni pizza is so strong that I can practicly taste @CAPS4. This is agony. My stomach rumbles, so hungry. @NUM2 seconds can I wait that long @NUM3 I’m not sure. The tension ogf the whole class is so great,I think my brain will erupt. I cant take this, @CAPS4’s way to much. My eyes flash nervously to the @NUM4 seconds @CAPS4 seems to be an eternity, @CAPS4 couldn’t have been just a few seconds could @CAPS4? @CAPS4 must have been at least years. @NUM5 why is time so short? I’m not a very patient, not at all. But do I have any amount of patience? If I do I’m not seeing @CAPS4 got. I’m about to just jump out of my seat as if I’m ejected from a @DATE1. I’m trying to hold still, but anxiety is getting to me. If I knew that I’d be this anxious for lunch that I would have had breakfast. Were down to @NUM6 seconds now. My excitement grows, but so does the tension. @CAPS4’s enough to crush me now. I think I might make @CAPS4 @NUM7. My stomach rumbles again,brouse this time, begging for food, @CAPS5, demanding is more like @CAPS4. “@CAPS2 @CAPS3 @CAPS2 @CAPS3,”the clock nocking me, taunting me @NUM8 seconds I can’t bare this much longer. I think am about to snap. I don’t handle patience well. @CAPS4’s a ticking bomb inside me, just waiting to go off @NUM9 seconds. @CAPS4 seems the bomb and clock are counting down together. Both anticipating my snap. I’ll show them. My will is stronger than my need. I can do this. I will prove I have @NUM10, “@CAPS10!” finaly, the bell goes of signaling lunch time . I zoomed out like a squirrel who just sat on a snow cone." 8 12 20 2 2 2 2 3 3 3 3 +18477 7 Some people have a lot of patience. I am one of those people. I have have had a lot of patience in my life. We were driving to @LOCATION1's @CAPS1 and I was getting antsy. I knew this would be a hectic day for my mom so I decide to be patient and read. Before I knew it we were there. I was waiting to get a lemonade with my mom and we had already been waiting here for @NUM1 minutes. I was starting to get tired of waiting in this long line for a little lemonade. But I knew my mom had already had a tiring day because my sister wouldn't stop complaining. So instead of complaining I stopped thinks about how long of would take to get our lemonade. I started thinking about what it would be like to ride the @CAPS2 and the next thing I knew we had our lemonade. I was starting to wish that we hadn't gotten in line for the @CAPS3 hawk because it was so long. I was really getting mad that it was taking this long to wait for a ride that was @NUM2 second long. But then I remembered that my mom was with me and she had a bad headace. So I shut my mouth. I was glad that I was patient that day. Because if I wouldn't have been the my mom probably wouldn't have been as happy as she was at end the day. 11 11 22 3 3 3 2 3 3 2 3 +18478 7 "One time that l was patient was when we went to @LOCATION1 @CAPS1. We had to wait in line for an half an hour. We were supposed to get on the cork screw ride. I was very excited to go on that ride. So I decided to be patient. So for @NUM1 min once we got to the front of the line l couldn't wait. So I hurried up and got on then ride. I really didn't like that day when l had to stand up that long. But, that what patience means." 6 8 14 1 1 2 2 2 2 2 2 +18479 7 "On @CAPS1 while I was fishing in little travers bay for salmon, there was a tromendus hep on the trolling line, I lanched from where I was sitting like a rocket I heaved on the line I waited. I thought it was a false alarm (snag) put trust me I thought wrong. the pull did a dance then bent realy fast again. ''@CAPS2 on,"" I yelled to my cosin, he ran back to my aid. We @CAPS4 stared at the water the poll still flexed didn't move, I was looking for the tumble weed because I felt like I was in an old western movie stand of. Finale I looked at my cousin & said, ''I have been patient, do you think I should real him up""? ""@CAPS3 me get the net first'', he fumed and grabed it then stated ""When you are ready"" I slowly cranced the handle on the real tie, tie, as I slowly cranted him from l??freaky depths. Then out of no where the steel cable that was my line shot from the ball like a bullet, but the a cyrick jerk from him and then the line went slak. My cosin & I @CAPS4 knew what had happened. the @CAPS2 I thought was going to be mine was now swimming off into deeper waters to flustrat more fisher men with his patient ways." 11 12 23 3 3 3 2 3 3 3 3 +18480 7 "Quite a few times my mom has been very patient with me. I tend to tell my mom stories about my day at school when I come home. Once when we were sitting there in the living room, I was telling my mom the story. As I go on and on my mom has the patience to listen to it. Though the story @MONTH1 have been boring for her, and extremely long, she listened, she made coments and never showed a sign of boredom. The expression on her face made me happy to know she was listening." 8 9 17 2 2 2 2 2 2 2 3 +18481 7 One time I was patient when I let a stranger cut infront of me to get some food. And when me and my brother both had to use the bath room I let him go first even though I was first in line. 4 5 9 1 1 1 1 1 1 1 2 +18482 7 "Patience is a very hard thing to capture. The way I think of it, patience it is a gift to have. One time I had to try and @CAPS1 my patience was before a @ORGANIZATION1 football game. One part was driving there. It was @NUM1 and people were migrating to @PERSON1! It took us @NUM2 to go @NUM3! I was about ready to just run to the game! I could not wait any longer to go to this game!@CAPS1 your patience!my dad kept reminding me. Once we finally got there, out of the traffic I had to wait another @NUM4 before the game! How could I wait that long? Would it be possible? I just sat there in a lawnchair watching people drive by our tailgate on college game day. I just wanted to scream I wanted to leave and get to the stadium: so bad! Finally we took off from the tailgate. It was fun walking up with all the @LOCATION1 state fans, and tailgaters. Now I was sitting in this boring line just trying to be patient. Again i had to question myself I could be patient enough one by one people were getting in. I moved closer and closer, actually using my patience . When it was finally my turn I just ran right in so excited to have finally been in the stadium and conquer my patience throughout the day. It was great to finally be in there , having overcome my rushed feeling and letting patience take over me." 12 12 24 3 3 3 3 3 3 3 3 +18484 7 I was very patient one time when my grandma was in the store. Trying to build the whole store and I had to go to the bathroom real bad. I started to get real; mad because I thought the store person that was ringing up the stuff tryed to go slow so I couldnt use it. The only reason why I didnt complain was because most of the stuff and the bascket was mine. That was a time I was very patient 6 6 12 1 1 2 2 1 1 2 2 +18485 7 "Every year we have a family reunion for two weeks. Cousins, aunts, uncles come all across the country to enjoy these few weeks together. We go to the small town of @PERSON1 right next to famous @CAPS1 @CAPS2 @CAPS3 @CAPS4. The only problem is its a four hour drive, and if you know me Im not that patient. My brother and I always rotate every year to see who rides with my mom. We flip a coin and I always lose. If you ask me she is the most impatient! But once you get there everybody is happy to see to wait for the @NUM1 of @DATE1 to launch of our patience. And thats my story being patient." 10 6 16 2 3 2 3 1 1 2 2 +18488 7 One time I had to be very pationt. I had two wait five hours before my grandma to get to my house. Every hour I would go look outside to see if she was there. Eventually she did and I was very happy. Some examples too shels stay patient are @NUM1. Focus on something else @NUM2. @NUM3 too someones house for a while. @NUM4. Or even tack a nap @CAPS1 are examples of staying patient. 5 4 9 1 1 2 1 1 1 1 1 +18489 7 "My grandma is almost always patient with me, especially when she is teaching how to do something like cook or sew. One time my grandma taught me how to use a sewing machine. She taught me how to chang the color of the thread, and she helped me untangle the thread, even though it took a while and Im not the best listener, that took a lot of patience. Another time she taught me how to frost sugar cookies. I would get very invoked because either the cookie broke or my frosting was lumpy and all over the cookie even the bottom, but grandma put up with my complaining and when I finally frosted on that didnt break and the frosting was smooth, she praised me, even though I had probably broken half of the sugar cookies. My grandma was also patient with me when I helped her make carmol corn, which has many difficult steps, and if you one wrong, the whole batch is ruined. She let me do the easy stuff mostly, bat she also let me make the sauce on the last batch which was fun, and when I started to go to slow, instead of yealing at me to harry up, she asked me politely to go a little quicker which must of taken a lot of patience. My grandma also taught me how to bake, which took a @CAPS1 amount of patience because I was constantly spilling flour, vanilla, baking soda, anything in the recipe that could be dropped I dropped it, I also never wanted to stay clean it up and when I did, I still left half the stuff on the floor. My grandma is always patient with me no matter what I do." 12 9 21 3 3 3 3 2 2 3 2 +18490 7 A time I was patient was when I was going on the raptor at cedar point. There was a two hour line and me and my friend were getting bored. There was some music but that didnt really amuse us. But I had never been on the raptor before and I was really thrilled to go on it. One hour dragged by. Then finally ten more minutes wait till I got to go on the raptor it was the best ride ever. 8 6 14 2 2 2 2 1 2 1 2 +18491 7 "When they had no idea when to get inside and how to protect their food. Our time is way easier than in the old days, they had to work hard at everything what everything is given to us. Our two time periods are a lot different. There arent to many days where I am patient but this day was one of them. I was playing a football game on a great sunny @DATE1 @TIME1. I was starting quarterback and I scored @NUM1 touchdowns and I passing touchdown just in the first half. At that point we were up @NUM2 and the coaches took out all the starters for the whole second half. I was expecting to still play but nope they told me to sit the bench for the rest of the game. This was very hard for me because I had to wait until the game was over to get up off the bench. Im not a very patient person so this was @CAPS1 hard for me. I hope Ill never have to do that again." 8 8 16 2 2 2 2 2 2 2 2 +18492 7 "I was patient before; I went hunting with my dad before, @DATE1. I was in the blind with him for a long time, waiting for deer to come in. He said they come in at night, or towards late afternoon. We waited forever, when they finally came in, me and did not get one. Some other guys shot one they all run way. We waited maybe, ten more minutes, and then went in we were all there from @TIME1 until @NUM1. I was patient the whole time." 8 9 17 2 2 2 2 2 2 2 3 +18494 7 "One day, me and my parents went fishing. Our fish under was going off like crazy but know fish were biling . @CAPS5 got the point (in a short time I might add) where our dog would back like crazy wherever we started to real in our lines, even if there was nothing on them. We waited, and waited, and waited, but still nothing came. Every once in a while wed have to move again because of the current .After wed been sitting there for house on end .I felt something on my line. I thought at first I was snagged on a rock, @CAPS1 I started to reel in, the line came a little, @CAPS1 I reeled some more, I thought @CAPS5 felt like a fish pulling on my line, @CAPS1 I called out , @CAPS3 ,dad, I think t have a fish !. @CAPS1 my dad told me @CAPS4 to do. Eventually, I felt like my arms were going to fall off, but the fish came into view! While dad got the net and pulled the fish out of the water, I asked, @CAPS4 kind is @CAPS5? He said, @CAPS5s a walleye. I didnt know @CAPS4 to say. My first walleye! And dad even said @CAPS5 was big enough to @CAPS6! @CAPS1, then we went home, filleted the fish, and had walleye for dinner." 10 8 18 2 3 3 2 2 2 2 2 +18495 7 "It was a @DATE1 @TIME1 at school so boring as usal and my @CAPS1 came in on cruches I freaked out and, ran over to her and she told me she broke her leg and that she wasnt allowed to hang out for a whole month. It was hard waiting a whole month to hangout with her but, her safety was more important than my amusement. It was @NUM1 weeks after my friend breaking her leg out, I was doin well of not bothering he so I was proud of myself, but I got to help her around school. It was a few more weeks later she was almost better so I was excited and went and bought her a gift. The next @DATE1 @PERSON1 was out of the crauches and, cast and back on her foot thats the story of the time I was patient." 8 8 16 2 2 2 2 2 2 2 2 +18496 7 I am the type of person who you would call inpaient but I will try to explan it in the best way I can the only time I am patient is when something existing on tv comes on my frinds are always paient for everything @CAPS1 @CAPS2 and other things but I am never paient 3 3 6 0 1 1 1 0 1 1 1 +18497 7 "@PERSON2, get down here I need you to open an evelope! My mom said. We spanted down stairs because an envelopes can only mean, a report card, letter, @CAPS1 card, or checking account balance. We got downstairs and we saw they had a camera out, and the envelope had a starrer on the back that said @NUM1 radio. We open @CAPS6 and @CAPS6 says congroduclotions you won tickets to @NUM2 first @CAPS2 @CAPS3 with @PERSON1!" I was just looking at them in awe, my sister was freaking out! Then, my mom told me that my aunt is going with us! Surprise just kept coming and coming. Another huge surprise was the lines about @NUM3 girls were lined up at the front doors of the @CAPS4 oak music @PERSON3. Then security started to move and spread all the girls out, we got pushed about a quarter mile away from where we were standing. @NUM4 ½ hours later we were waiting then I see this boys head pop out a window of the music @PERSON3 and say," @CAPS5 girls!. After he said that about @NUM5 girls went crazy screaming. @NUM6 ½ hours later from that, they started to let people in. The theater was cozy and warm for being out in the cold for @NUM7 hours @CAPS6 felt good. Iyaz Was the special guest to get us warmed up for @PERSON1. When he got out every girl was screaming their lung out! He sang the concert and @CAPS6 was a great experience for my first concert ever!" 12 6 18 3 3 3 3 2 1 1 2 +18498 7 "One day during the @DATE1 my phone rang. Not many people call my cell phone. I dashed to my room, but my phone was no where in sight! Oh where is it? I swear, I was about to completely tear down every thing. I stopped I felt my back pocket and there it was. I felt like such an idiot. I was freaking out over my phone because I couldn't find it. When it turned out to be in my back pocket. Any way, it was still ringing. I looked at the contact. I was stuned to see who it was. It was my friend @CAPS1! I answered the phone and @CAPS1 starts to speak. She wanted to know if we can have a sleepover in her back yard. I was so excited, but that same day my family and I were going to a fair. When I asked my dad and he hasitated to say yes. I packed my bags, hoped in the car and ready to go. I really didn't want to go to this peach fair thing. I just wanted to hang with @CAPS1. Here we are at the fair. I got out the car. My brother and I just wandered off. We whent on a few rides, played a few games. All I was thinking about was how much fun I was going to have at @CAPS4. I was waiting and wating and waiting. Finally! Yes we can go. Off to @CAPS4. I couldn't wait any longer. I was so excited: @CAPS6 I 'm at @CAPS4. It's about time. I had no choice but to wait. In conclusion, that was one of the times I was patient." 10 8 18 2 3 2 3 2 2 2 2 +18499 7 "Tap, tap, tap. The tips of my fingers bounced of the arm rest with every one movement. I had asked my @CAPS1 to hurry up @CAPS2 I wouldnt be late. I had told her like I have a million times before, @CAPS1, you know how much being on time for practice means to me. @CAPS2 I sat there slummped over on the couch, my backpack strapped tightly over my shoulders. This happens @CAPS7 the time, I thought my @CAPS1 would have learned by now. As I waited, I turned on the television to keep me busy. Unfortunatly, with every flip, I became more irretated. @CAPS3 is she? Why is she taking @CAPS2 long? @CAPS4 like these swirled in my head. Then, my @CAPS1 came stumbling into the family room. She snatched her keys and we hurried into the car. As I snapped my seat belt into place, I flipped the switch to open the garage. As I sat in my seat, wiggling, the garage door crecked open. My @CAPS1 started the engine and we cascaded down the driveway and towards the road. Just to make my luck even better, we got caught in traffic. As the cars sauntered along, time was ticking away. The clock showed @NUM1, I for sure new that I wasnt going to make it on time. I threw myself back into the seat. I closed my @NUM2 and took deep breathes. Taking lots of deep breathes helped slow down my heart rate which allowed me to tone down my stress level. @CAPS5 passient. I told myself. @CAPS5 passient. Relax, youll make it there. @CAPS7 of a sudden my @CAPS1 slammed onto the brakes. My eyes flew open to see that we had made it to the pool. The time read @NUM3. I was going to make it! I exploded out of the car with my bag on my back. At that moment, I told myself see you can do it. You made it to swim practice, and @CAPS7 you had to do was slow down and @CAPS5 passient. Great job" 12 12 24 3 3 3 3 3 3 3 3 +18500 7 I was patient when it was my birthday and I didnt get anything. I thought I would get at least one thing but I got nothing. I didnt do anything wrong but still I got nothing. The next day I got nothing I didnt ask for anything but I still got nothing. The next day I got nothing. But that night while it was skating at skate port @NUM1 got nothing. Like at @TIME1 I saw my cousin and she gave me @MONEY1 for my birthday. I thought that everyone forgot but I was wrong. I was so happy too. I had to be patient in order to get something and dont have to ask for something. 12 8 20 3 3 3 3 2 2 1 3 +18501 7 The @CAPS1 out in @DATE1. One day when my aunt @PERSON1 was watching me and all of a sudden all the lights went out. So I thought we blew a fuse so my aunt @PERSON1 and she went to go fix it and it didnt work so she ??? calling my mom and he connection got lost so then we got our generator and watched the news and my mom got stuck in the highway ??? I was worried so the we finally got our phones to work and some of are family came and we were so mad cause nothing worked for a week and we had to be very patient. 5 4 9 1 1 1 2 1 1 1 1 +18502 7 "I v'e been waiting for like two hours. When am I going to get my food. I was hungry so I told my mom she asked me if I wanted to go out my cat I said sure and went and got my jacket on. Mom said I got to go get dad, wait in the car so I went and waited for them for like a minutes. When they finally got out dad asked ?????????Shouted @CAPS1 @CAPS2. He said ok and we went. when we got there, there were no other stores that were open. When we went inside there were like a billion people in there. I was so hungry I could eat a pig. Metarorickly speaking. We went to the chicken area and we asked how long we would have to wait. And the guy at the counter said about two hours. After about @NUM1. I started to read a magazine and some people left but the people in front of us went in those seats. We were next to go sit down but it took about an hour. Before some people left. I didn't complain at all and I didn't ever talk at all, and I talk a lot. And that was the time I was very patient." 8 9 17 2 2 2 2 2 2 2 3 +18503 7 "One time I was patient was I went to the doctors office. Yesterday I went to the doctors office and the waiting room was so full that we had to stand. Because there were so many people waiting we had to wait along with them. We were number @NUM1, and it took us @NUM2 hours just to get to sit down! It took a lot of patience because the waiting room time + the time waiting for a doctor about @NUM3 hours. When I finally got in I felt @NUM4 releived! It felt like I had an elephant lifted off my shoulders. Even though it took a long time, it was worth it now I am feeling better and back in school!" 8 8 16 2 2 2 2 2 2 2 2 +18504 7 Patience is sometimes hard to do if you are already exsited. But some time you are doing like if one of your family members is talking & you are waiting for something else that is patience 3 2 5 0 1 1 1 0 0 1 1 +18505 7 "I asked my mom if I can get a phone but she said no, not yet. She said I cant have one till @NUM1 grade unless I get a @CAPS1 phone write now and cant till ninth grade to get a real phone. I told her okey. But when are you going to get it for me. She said you have to be patient. I told her I will but when she said as soon as possible like on @DATE1 . I said Ill be patient till then and will not bug you about it. Thats one time I had to be patient." 5 8 13 1 1 1 2 2 2 2 2 +18506 7 One time me and my dad were at a store.There was a line about @NUM1 people my dad and I were starting to get impatient so I told myself to calm down and wait. But I was still not calming down then the very first person left and then was starting to calm down and just wait for the next person to go. 5 7 12 1 1 1 2 2 2 2 1 +18507 7 "My finger tips were icy as I sat and wanted. The seconds tarried into minutes, turned into hours. My body heat escaping rapidly like sand in the winds. I frudged through the mud as the slick rain hammed on my skin. I should have waited. I was patient as they explained it. But I didn't listen. I should have waited. I should have waited, wait have I shoulded. The words mixed together. My bones cold, I was only about @NUM1 yards from home. My legs refused to walk as they shuddered violently. Wait, be patient, I reminded myself. A cop car in my parents' driveway. I shoved my left leg through the mess of leave and mud, patience wasn't a factor right now. Nine yards, eight, seven, six. I stopped, pulled my poud over my head but the wind and paid blew it off again, five, four, three, two, one. I was at my door step. I weakly raised my hand to knock. The @CAPS1. Fast foot steps, the door opens. I am showered with hugG. ''You should have waited!'' my dad cried, tears streaming down his face. I smiled weakly." 10 12 22 2 3 2 3 3 3 3 3 +18508 7 "There was a person named @PERSON1. He wanted a video game for his @CAPS1- box @NUM1. But, his dad just got laid-off and his mom had a low-paying job. Since they had very little money, he couldnt buy the game. A few months later, his dad finally found a job at @CAPS2. But, @PERSON1 still didnt have enough money for the game. A few more months passed, @PERSON1 finally had enough for the game. His mom took him to the store to buy it. He was very excited. He ended up loving the game very much." 9 9 18 2 2 2 3 2 2 2 3 +18509 7 "Have you ever heard your mom or dad say patience is a virtue. Well Ive heard it many times in my house actually too many times. Patience is a something that means you have to wait like when you wanna go see a new movie on opening night, you might have to wait in a big line cause its a new movie. So your gonna have wait with patience!" 5 6 11 0 1 2 2 0 2 2 2 +18510 7 "A time that I was patient was during the @DATE1. My @CAPS1 @PERSON1 was nice enough to invite me to @CAPS2 @CAPS3 with her family acoarse my pacents said yes. It was a @NUM1 hour @CAPS4 I think to @CAPS2 @CAPS3, @CAPS7 it was fun cuz we brought lots of things to keep us buisy, we watched a movien on my @ORGANIZATION1, listened to music I had no trouble waiting till we got there. When we got to the hotel we picked are bads then jumped in the car to go to @CAPS2 @CAPS3 it @NUM2 awesome. First few went on the @CAPS10 my eyes were watering it was so scary, then the music, it was so fast I felt like we were going to fly of the tracks. Next we we wanted to go on the malliniom force @CAPS7 the line was a hour long and we were in the middle of it. So it would useless to try to escape the line, then finally it was areturn to go, @CAPS7 it wasnt working so we had to wait, it wouldnt copperate so he told use that we can get free passes to go on any ride, and cut ahead of everyone @CAPS7 we only got to do it once. As you see us being patient , rewanted us, I think it was so worth it!" 8 8 16 2 2 2 2 2 2 2 2 +18511 7 Where was a time that I was patient dad getting my first silly hamster. And patient is that you are understanding and tolerant. I very patient and happy to get my first hamster. And I got my first ??? hamster. And I got two of them. And they are silly and they bite. And my brother was patience to get his ???. And patience is that you relzed want to see bad that you and on fired to get the thing that you want. 4 3 7 1 1 1 1 0 1 1 1 +18512 7 I was patient when I was waiting for a guy to ask me out::) and Im still dating him this day. His name is @PERSON1 and yes he goes in my school when he asked me out I didnt now what to say cause he took to long and I still did not like another guy but him. When someone patient that dont rush threw they wait for something or someone like I did. When I was patient I didnt ask him @NUM1 times I waited until he asked me out cause if someone doesnt like they might turn you down and hurt you. Okay well if you dont want to take my advice get hurt. 4 8 12 1 1 1 1 2 2 2 2 +18513 7 "I chose write a story about a time when I was patient. It was my first time hunting, I was only hunting squirls but still. What I had to was walk in the woods and sit down once you sit down you cant move. So I was sitting very still for @NUM1 minutes and finally I seen a squirl. So I took my shotgun and shot her in the chest. I was patient so I got a squirl. So thats my story on patients." 8 9 17 2 2 2 2 2 3 2 2 +18514 7 "I was at the @NUM1 fair with my friends. There was a ride called the freak-out that we really wanted to go on. The line was to long so we decided to go on some other rides. We looked over at the line and all it was doing was getting longer. We decided to go get in line anyway. It felt like we were moving an inch every @NUM2 minutes, I had to be very patient. On the inside I was ready to go nuts but I was calm on the outside it was the longest @NUM3 minutes ever!!!!" 5 8 13 1 1 1 2 2 2 2 2 +18515 7 "@PERSON1 and his dad were planning on going fishing on that @DATE1 @TIME1. They got everything they needed fishing pots. Tackle box, fishing nets, bait, and lunch. They drove down to the lake, got into their small rowboat and were off. @PERSON1's dad was the first to catch something. He caught a ten inch small mouth bass. It was too small so he threw it back and continued fishing. The lake was quiet today. There was a small breeze in the @DATE2 air. The sun was up but it was still a little cold. The sat there quietly, patiently. @PERSON1's dad got another pull on his line. He quickly reeled it in. this time he caught a twenty inch pike. Another one too small so he threw it back. ''The fish are really biting today hu?'' said his dad. But the truth was they had been out there for an hour and @PERSON1 hadn't gotten a bite. They fished for another hour or so before taking a break to eat lunch. They just brought sand wiches, chips, and a few waters. When they were done eating they went back to fishing. @PERSON1 casted his line as far as he could get it to go. He sat and waited for about twenty minutes when he finally got a tug on his line. ''I got one. I got one,'' he told his dad trying to reel his line in as fast as could. When he got it in the boat, they measured it. @PERSON1 caught a fourteen inch largemouth bass. ''@CAPS1 like you caught dinner for tonight ''. Said his dad. They stayed out about twenty more minutes then went in with a fish dinner @PERSON1's patients caught him a good fish." 12 12 24 3 3 3 3 3 3 3 3 +18516 7 When I was patient I was in a store buying something and it was a long line so I had to wait to pay for my stuff I whas I was buying. I waited and the person in front of me had a big cart of food and everything else so I had to be patient when he was up after I had to wait for all of the people to get done paying food their food and anything else. 7 7 14 2 2 1 2 2 2 2 1 +18517 7 "As I get older my tolerance for patience has grown bigger. I was six and foretaken when my mother had told me to wait to get my gifts on christmas. After she said that I was angry at her and stomped to my room. I flopped hard on my bed and then eventually fell asleep. My mother had come in my room and told me I was allowed to open my presents, but before she did she said I need to have patience. Now as Im older, I know most right from attitudes, so when christmas comes I dont care about the gifts I remember when she had told me to be patient to receive because you might not be able to get everything you want and when your patient and listen to what your mother tells you to do so she can explain that I might not get alot or what I want. so now my patience is great for most things but since then I dont wanna rush and miss the details of what people have to say or I might get dissapointed. Patience is a thing where if you dont have it, then things wont be understood sometimes and things could not turn out the way you wanted them too. Enthusiasum is different from patience. Patience means when you wait and dont want to. Enthusiasum is when you exited. People get those confused, so when a child is excited look for details and dont say be paitent say calm down because they could take it the wrong way if you dont tell them why. In conclusion these are ways I was taughht to act, so please take my words into consideration, they could help." 8 6 14 2 2 2 2 1 1 2 2 +18518 7 "Once before I went to @CAPS1 point with my friend @PERSON1. I was patient on the way there. I was patient in line to get inside. I was patient in line to get on the dragster. I was patient to go on all the rides. Once I had to go to the hospital to get an echo on my heart. I was patient waiting for my results. I am always patient. Well most of the time. Once I went to @LOCATION1, I was patient to go through security. I was patient on the plane waiting to get there. I was patient to get off. I was patient for my luggage. I have to go to school. I am patient waiting to lunch. I am patient for school to be over. I am patient to wait till class is over. Like I said I am mostly patient." 6 6 12 1 1 2 2 1 2 1 2 +18519 7 "The best ride at @ORGANIZATION1 was over @NUM1 hours long wait. Bad news for me become I am definintaly not a patience person. Like this one time I was waiting in line for an ice cream. There was only two people in line but I didnt want to wait so I didnt want one anymore. Thats how impatience I was, but riding the best ride in the world I was willing to wait. Two hours of waiting in line we seen a sign that said one hour from this @ORGANIZATION1. Very mad I kept saying to myself its the best ride you can wait an hour longer so I did. When we got on the ride it was fun but the ride was only @NUM2 seconds longer" 8 8 16 2 2 2 2 2 2 2 2 +18520 7 "@CAPS1's cold @CAPS1's raining, I'm wet @CAPS1's been @NUM1 hour and still no activity. All I have to do is wait. I'm hunting deer hitting with my new @CAPS2 @CAPS3 bow. I'm a decent shot but not that good. I know patients is the key to deer hunting so I will just have to wait. I now see a deer about @NUM2 yard away and shoot @CAPS1 so my patience pays off" 9 10 19 2 2 2 3 3 3 2 2 +18521 7 Well this story was sequenced out about ten minutes ago. When I had to keep a tremendous amount of patience. Well as you can see there are multiple erase marks in the backround of my text. I accidentally wrote part two of this test on this page! I am so glad I had such a caring teacher that found that for me or I wouldve failed! When I was sitting down at my desk quietly she (The teacher) walked up to me and held test up to my face. I knew that meant something bad. When she said I did it on the wrong page. I almost flipped out but I held it back. I think patience is a great quality to have so you can get things done right. Im very glad I have a good amount of patience. 12 8 20 3 3 3 3 2 2 2 2 +18522 7 "The time I waited for party to happen. It was @DATE2 until Ive been invited to a party at zapzone. He told me the party was on @DATE1. @NUM1 weeks he told me that, and still didnt have the party the he told that I had pay for myself accepted. But it was a party so I didnt have @NUM2 weeks later I went school shopping for ten minutes. I came back he said he already had a party. He wasnt there because a party takes an hour or two so I just let it go." 4 4 8 1 1 1 1 1 1 1 1 +18523 7 "Everybody loves @CAPS1, and they all have to be patient for it. Especially on the @TIME1 of @CAPS1 @CAPS3. Everybody in my family always gets very excited and cant wait until morning, especially me. I get so excited I can hardly sleep. In fact, last year had to be the hardest. It was @NUM1 am on @CAPS1 morning and I had woken up for no reason. I decided to go back to sleep and did for only about thirty minutes when I woke up again. I just couldnt fall asleep! I went downstairs with a couple blankets and tried to go to sleep when I saw the huge amount of stuff just sitting there. I sat up and looked around at them. I was so excited but I remembered that I would have to wait until everyone woke up. So I tried to go back to sleep. I would close my eyes and sleep for about four minutes at a time and eventually stopped trying. It was @NUM2 am. I turned on the @CAPS5, threw in a movie, and waited. At @NUM3 am most of my brothers were up and I couldnt take it anymore. I snapped and started to complain. I had become very impatient. I finally was told yes and began to open my presents. I was finally happy." 9 12 21 2 2 2 3 3 3 3 3 +18524 7 "A time when I was patient was when I was @CAPS1 @CAPS2 in @LOCATION1 ,@LOCATION2 ,we were waiting in line for this water roller coaster and the line was really long and they had this line called easy pass where you wait an hour ,then go to this machine to get a eazy pass ticket but we decided to wait in the really, long line .So half an hour later went by and I started to get really board so I asked my dad if he wanted to play this game called slapps .So we played for a little while went past and we were about half way there and we started regreting stay in the huge line because it had already been an hour so and we only move to the half way market .About ten minutes later I stopped playing slapps with my dad because my hands were beat red and his hands were barrely even red if that .So we just waited and waited until we were there three quarters the way there .After about ten to twenty minutes later we were boarding the raft .We went through a cave then stopped like fourty feet then splashed in to a huge amount of water .It turns out that wait was worth it .So that is a time when I showed patients.." 8 8 16 2 2 2 2 2 2 2 2 +18525 7 "One time when I was patient was when we were flying to @LOCATION1. We were in @LOCATION2 waiting. God I thought how long can this take. But evenaly the plane came. Once on I thought ok this is the last plane we have to take today. But then the pilot said it was to be a @NUM1 @NUM2 flight. Then I looked around to see what I had to do. I had my I-pod, a book, and the @CAPS1 in front of me. Once we were in the air I thought I would take a nap. But that only killed a hour so then I decided to watch a movie. I watched @CAPS2 @CAPS3. That took off another two hours. By then I was starting to get bored. I decied I would read. But after an hour and a half I finished the book. Then my I-pod come out. I listened to music until lunch came a hour later. After eating lunch which took @NUM3 minutes I decided to watch another movie. I watched @CAPS4 @CAPS5 which killed off enough @NUM4 hours. Then with only @NUM4 hours left I wanted to watch season @NUM6 of the office. Then when there was only @NUM7 minutes left when they cut everything down I watched us land in @LOCATION1. It was long but I was patient and stuck through it." 10 11 21 2 2 3 3 3 3 2 3 +18526 7 "When I have patient is when I go out to eat. So no one can speat in, my food. Like one time I went out to eat with my family. And we all was dress alike for my birthday. So I ask my daddyto tell them that my birthday is to day. And I wanted a piece of cake now. So he want to tell what I said and they ??? give us a minute. So I waited and waited. And finly said bring me a piece of cake now or I will have this place brun down. Then my dad said bring her a piece cause she can have that happen. So they finly bring my cake. And they sang happy birthday to me. And I was happy after that in tell I found out they speat in my food and ate itto. I had found out because before I lifte I heard some people talking about how they speat in my food. Then I said wait did you in the fries they said yea. Then I said o I don`t care cause I didnt eat the fries. They said why I because I the fries is neasty. And I rolled my eyes and walked away. But I don`t do that because I scared somebody would do it again. That is why I have patience." 8 8 16 2 3 1 2 3 3 1 1 +18527 7 "@CAPS2 @CAPS1 was a patient ??, @CAPS2 decided to order a pizza them ???. The delivery man tells @CAPS2 that would be at his house in fifteen minutes. @CAPS2 was still waiting for his pizzas after fifteen minutes. And how late the delivery man will with they ??? after being late. @CAPS2 said that he dosnt care." 7 7 14 1 2 2 2 2 2 1 2 +18528 7 "We climbed in the rental car waving goodbye to realitives as we drive back to the airport. I cant believe that the airport had an opening earlier in the day and called us? Exclaimed my @CAPS4. @CAPS1 I cant either. I mean out of all- Were here! Man that was quick. As we rolled into the airport smelling that strafoam smell, and checked in our bags. @CAPS2 to @LOCATION1 @NUM1, @CAPS3. @CAPS4 explained to the clerk @CAPS5 sorry according to this your @CAPS10 is full she told us through a chessy smile. @CAPS6 you called saying there was empty seats and invited us to exchange @CAPS2. @CAPS5 sorry @CAPS6 it wouldnt be fair if we gave away @CAPS2 that were rightful owned. @CAPS8 again another chessy smile @CAPS6 you can have your orginal @CAPS2 back if you like, @NUM2 @LOCATION2. @NUM2! What am I going to do for seven hours! First my brother and I had races up and down the escelators. Then we took the shuttle bus everywhere. By @NUM4 I knew the place inside out. Soon it time to leave suddenly the speaker came on @CAPS10 @NUM5 to @LOCATION2 has been deylayed by an hour and a half @NUM6 now really? Luckly my @CAPS4 took me to an extotic restraunt. Beautiful restraunt soon it was time to leave. Please dont get delayed again?! It wasnt. I felt happy that we finally left @CAPS8 sad. I learned a great lesson about patience! Its not hard @CAPS6 not impossible." 11 12 23 3 3 3 2 3 3 3 3 +18529 7 There are some ?? ??? in ??? ??? you ??? ??? to second and one of those thing is a patience. Patience is when you understand things and tolerate and when you experience thing that not ??? complain that when patience is.You have to have patience if you planning on having kids or being I cather or any other job you have to wait in ??? ??? ??? ??? ???? ???? ???? ??? ??? ???.Those are a just a couple reason why ??? patience.The final reason that am going to say you need patience is because in life everything is not just ??? to you.You have to work for it and to that you have to have patience.So no matter what if you dont have patience you will have a really hard time getting through life.So thse are all the reasons I think that you need to have patience.So if you dont have patience learn to be patient.I believe that you can do it all you have to do is try to be more understanding of things and dont complain about ??? that hard in life there is going to be a lot of hard things in life.Theres only one more thing I have to say and that is just try. 6 4 10 0 2 2 2 0 1 1 2 +18530 7 One day I had to put up with my big brother all day. He went to get a cell phone I wanted one to but I was to yang to get one. So when he found out I couldnt get one he naged me. I wanted to take that phone and break it but I didnt because I played it cool so when he got back home I walked away from all of the naging. I went to do something else but he kept following me so I found a big thoe that he could not get up to and hang out there till he left. After that I went to go in. But I had got locked out I thought man shoube I have got a plane? Thanks for listening 8 8 16 2 2 2 2 2 2 2 2 +18531 7 "The time I was vary vary patience was when I was about seven and me, mom, dad, sister, bothers, and grandma from up north (were we got my grandma) to west virgina and back most of the time I was sleeping or waking up sum were eating playing at a hotel pool. Sleep and then hit the road the next day. the thing that I had to be so patience about was that we were going to have @CAPS1 there so I wanted to open my presents. and one time we got stuck so that slowed us down about a hour our . So when we @CAPS2 got there I jumped out ran is fast is I could opened the door and surpise marry @CAPS3 guys." 5 4 9 2 1 1 1 1 1 1 1 +18533 7 One time when I was playing video games. I was wating around the corner for a guy to walk around. I wated for like @NUM1 minutes. Then there he is. I wated t kill he walk ed past boom assassinating that was the time. I had patients 5 4 9 1 2 1 1 1 1 1 1 +18534 7 "One time my friend told me to read this book, so l borrowed it from her. The name of the book is called The @CAPS1 @CAPS2. Its also a tv show on the @ORGANIZATION1. I was reading the books and one of the main characters named @PERSON2, brother of @PERSON1 are vampires. They turned into a @CAPS1 because of a girl named @PERSON3. @PERSON2 and @PERSON1 died because they were trying to save @PERSON3, or so everyone thought. @PERSON3 gave them enough blood so they wouldnt die, they would become a @CAPS1. They thought @PERSON3 was in the tume because that was were everyone was taking the vampires because the town found out there was vampires there. @PERSON2 came back after @NUM1 years searching for something to help get @PERSON3 out of the tume, I think that is patience. Waiting for @NUM1 years trying to find something to help get your true love out of trouble. He waited a long time. I believe patience is waiting a long time to do something and you dont complain while doing it." 12 8 20 3 3 3 3 2 2 2 2 +18535 7 "I remember when I wanted to ride my dirt bike and my dad was busy and I waited till he had time to put gas in it. When @PERSON1 wanted to ask a question he had, but he had to wait and then asked the question" 6 4 10 1 1 2 2 1 1 1 1 +18536 7 "When I was @NUM1 years old my mother and sister were working and cleaning around the house and I kept asking my @CAPS3 can we go to get pizza? @CAPS1 every time I asked she would reply, if you help us and we finish before dinner, we can go get pizza. I didnt want to wash windows, clean my room or wash the car. So I waited on the playground in the back yard swinging and going down the slide, @CAPS1 after @NUM2 minutes, it got boring. After that, thats when I knew I would have to be patient. I ran down the hill to the river and waded into its cold water. @CAPS1 I was still bored. I got out of the river and ran to @CAPS3. @CAPS2 are you and @PERSON1 done yet? I asked. Were done with the house @CAPS1 the car has yet to be washed she answered. I walk to my bike and got my helmet which is sitting on my bike seat. The wind in my face was nothing compared to eating pizza, @CAPS1 somehow driving up and down the drive way was more entertaining than cleaning. I hop of my bicycle and ran into the house, taking two immediate lefts after entering the house I look up at the clock, @NUM3.m it said. My family always has dinner at @NUM1:35 because my dad gets home from work at @TIME1 and cooks dinner. I rush to see if my @CAPS3 and sister were done yet, Are you done? I asked rudely. You could help if you want it to faster @CAPS3 answers. @CAPS4, fine Ill help, I grab the hose and spray the dirt and bird poop off the windows. After @NUM5 minutes of cleaning we were done, @CAPS3 left dad a note and she said, lets do! @CAPS5 the whole day I waitd @NUM6 hours for my @CAPS3 and sister to finish @CAPS1 in the end I finished the job." 12 12 24 3 3 3 3 3 3 3 3 +18537 7 One day when I was patient was when we all had to go on the same ride at @LOCATION1 @CAPS1s out we where going to go on this one ride and there where tons of people in line for it and I had to wait patient in line because I was in the back of the line and we where there for about an half hour waiting for to go on the ride and then we wait there patient and the ride was dumb and it is not even going up @NUM1 sets of stairs and then we went on a whole bunch of water park rides and then went home. 6 4 10 1 2 1 2 1 1 1 1 +18538 7 "Patience in my words is to be able to wait along time for something and not angry and not raise your blood pressure. Patience is a good thing to have because if you didnt have patience you would probably never be able to accomplish anything that takes time to do. I think that being patiente would help you succeed in many things. For an example, me and my mom were in the @ORGANIZATION1 drive thruogh and the lady in front of us was yelling at the people in the line to go faster, when you do something like that its most likely not gonna speed up. My mom has outstanding patience because she can wait for things for hours and not get frustrated. I rarely have patience I cant wait more than around ten minutes for something. Patience is a great thing because you must likely want get things done. Most of my family and I dont have the best patience but we sometimes do. I think that patience is very good to have." 6 12 18 1 1 2 2 3 3 3 3 +18539 7 "My mom was pation because when I came home late from the park she was be pation, but she wasnt pation when she took the phone away from me she wasnt pation. When my brother get he has pations for him and my sister but none for me. Just because I came home @NUM1 minutes late, she said she had pations before I did that and now she has a little bit of pations for me just a little." 5 5 10 1 1 2 1 1 1 1 2 +18540 7 "A time when I was patient is when it was winter time and my cousin and I really wanted to go outside. My kept saying @CAPS1 you will be able to go out. My cousin was very mad, she was having a fit. I was just sitting there on my couch telling her what my mom said. After an hour past I was able to go outside, but my cousin could not. She wasnt being patient. That is a time when I was patient." 8 8 16 2 2 2 2 2 2 2 2 +18541 7 "One time I was patient because I was hunting it was a cold @DATE1 play I am sitting in blind with my dad waiting for a deter. It`s almost eight o clock and we have been out there since @NUM1. We hear the ducks and geese making noises in the marshland next to us, we could see the trees dance in the wind. Smell the trash dance of grass and the morning fog. Then out at nowhere at @TIME1AM then came another doe. They went by us with caution so I got the gun ready. Then out came the eight point bunch I shot him through the heart and lung. I also gutted him. The year at @DATE2 in the youth hunt I was patient and it paid off." 11 12 23 3 3 3 2 3 3 3 3 +18542 7 "@CAPS5 @CAPS1 @CAPS2 loved playing various games with her younger brother @PERSON1 @CAPS2! One day when she was playing sorry with @PERSON1, sadly @PERSON1 was taking an unpleasable amount of time on his turn. @CAPS5 was getting extremely angry at @LOCATION1 for taking so long. So @CAPS5 started scream. As you can imagine when @CAPS5 and @PERSON1’s @CAPS8 @PERSON2 heard this she ran to @CAPS5 and @PERSON1. She questioned @CAPS5 with a worried look on her face. She said to @CAPS5 “@CAPS5 dear, what are screaming about? I sure hope your not screaming at @PERSON1!” “@CAPS4 I was, but that’s only because @PERSON1 won’t hurry up!” @CAPS5 exclaimed. “@CAPS4 @CAPS5 says sorry to @PERSON1 then for being so sour and not letting him take his time. He’s younger then you, which means he doesn’t know any better.” @CAPS8, @PERSON2, exclaimed forcefully.” I’m so sorry @PERSON1!” @PERSON3 said with a tear trickling down her cheak. So they gave each others hugs, and went on patiently with their game of sorry." 11 12 23 3 3 2 3 3 3 3 3 +18544 7 "A time I was patient was when my sister got her lisense. When we got thare she pulled a ticket out of a michenie then it said # @NUM1 the screen said @NUM2. I said well this should be short, @CAPS1 no like every preson was a half an hour @NUM3 min if were lucky. We stayed thare for @NUM4 hours strait I hope it dos not take that long for my lisence." 8 8 16 2 2 2 2 2 2 2 2 +18545 7 "My name is @PERSON1, Im in the @NUM1 grade. But the problem we have today is patience. One thing you have to know is that if have no kind of patience, you want get any where in life. Every where you go you need some patience. You will not have any friends when you do not be patient. Patience will grow you in life. Lets just say if you got a letter in the mail saying you have to be at the social security office by two days. So when you do go you have to get your ticket number and sit, it might be for hours, but you cant just leave because if you do, you want get what you. Heres another example lets just say if you had to go to the doctor because your sick, you have to wait, you should because what if the doctor make you go pick up the medicine, @CAPS1 are some results about patience." 6 6 12 0 2 2 2 1 1 2 2 +18546 7 "One time there was a huge. Project!!! I needed to know what my grade was!! It was ralls impostant for it was a difference between a @CAPS1- to a @CAPS2!! So I was vas????????? it would about a????? and???? ??? cats here are some of use pay ese that stand out and I was prapog for her do say my hand, @CAPS3 she saw my name I was so happy I got looy on the payee !!! so I was patient on wandng for the grade, and see ??? ??? Should out." 7 8 15 2 2 1 2 2 2 2 2 +18547 7 "Being patience is like being a good person. If you are patiat, then good ??? will inffent to you. Some patience people got ??? good ??? like moving, ???, and ??? but some patience that you do could ??? you the bad ???" 4 5 9 0 1 2 1 0 1 2 2 +18548 7 Pacience is a talent that is difficult to master. Pacience is a mental game. Pacience comes in everyones life. If you have no pacience then therefore you have more anger. Pacience for those minors stuck in a mine for two months. College takes a seal of years. Pacience is required there also. Pacience is among people everywhere whether its waiting for a toy or waiting for god to save your pacience is something that will stay here forever. 4 6 10 0 1 1 2 0 2 2 2 +18549 7 "This is a story of the time I was patient. It was four in the @TIME1, I was in bed sleeping. It was dead silent. All of a sudden, I woke up to the sound of footsteps, it was my dad. Out of nowhere, my bright light flashed on and I squinted and put the blanket over my head. My dad yelled, its time to go, @CAPS1! I replied okay! I quickly flung out of bed, got dressed, ate breakfast, grabbed my bag and put it in the trunk of my moms car. It was the middle of @DATE1, and we were on our way to @LOCATION1. I knew I had to be patient, so I popped a movie in the @CAPS2 player for me and my brother @CAPS3 to watch. It started to get lighter out and I was still watching movies whele everyone else was asleep. Exect for my dad of course he was the driver. When everyone woke up we stopped for food and gas. I was very patient, because I had to wait for everyone to wake up before I got to eat. After we ate we got back in the car and drove off. A couple hours later, we got to @LOCATION1. I was ??? to get there, I burst out of the car and yelled finally That was the story of how I Was patient." 10 10 20 2 3 2 3 2 3 2 3 +18550 7 The @TIME1 time I was patient was @TIME1. Because we had to go to @LOCATION1 city to pick something up and it took about @NUM1 @NUM2 minutes. Then on the way back we took another @NUM1 @NUM2 minutes on both trips it was boring. But I had to be patient also just this morning I had to be patient because my brother was taking a shower and I wanted to so I had to be patient because he takes like @NUM5 minutes. @TIME1 @TIME1 we were having chocolate milk my mom gonna make it and we had to be patient for her to make it 7 6 13 1 2 2 2 1 1 2 2 +18551 7 Pacience is important. If you dont have patience you can get angry easyly. You will have a lot more friends if you are pacient. Pacience always leads to good things. A lot of times people are doing something and the get im pacient. It would of been a lot easier if they were pacient. 4 5 9 0 1 1 2 0 1 2 2 +18552 7 Some times when people take a long time my family is patent. My dad has to be patient because when he gets deployed to a new country he has to wait such a long time to come back and see his family again. My mom has to be patient because sometimes her co-workers or even the people there really get on her nerves. My brother has to be patient because he always has something in the mail that has always waiting for. My sister is patient because she has to handle both me and my brother. Both me and my brother are patient because we have to sit on an hour long bus ride to have with nothing to do but sit there and look bored. My siblings are also patient and wait for the school year to end. My dad is also patient because he has to finish his baits dects which is takeing a long time plus all the whineing from my sister and mom about why we don't need one. I'm always patient when I have to got the school day over with my brother can be patient when he has to sit and wait for about thirty minutes at a time for his computer to load. In short my family is really patient wether its sitting in the office or deployed to a new country my family is always patient. 6 5 11 1 1 2 2 0 1 2 2 +18553 7 "Have you ever been patient? At some times, people lose their patients at many things. Examples of losing patients can be waiting in a line to go on a roller-coaster, because sometimes that can take forever. Having patients can be a good thing. Your calm and you dont have to be upset at somethings like waiting in a line somewhere for a long time. Being a patient person also means that you have the ability to wait for something, unlike people without patients, because those people will struggle while waiting for something. In conclusion, I think that having patients will sometimes help you to suceed in life. If your un-patient than you should try not to be because the thing you want or your waiting for will eventually happen someday." 6 5 11 1 1 2 2 1 1 1 2 +18554 7 "It was a light breezey morning. It was @NUM1 @CAPS1, my parents were just finishing the packing for @LOCATION1 @LOCATION1. We're going to A @LOCATION1 because my sister has a laccrose ternament in @LOCATION2. It is a terrifying thirteen hour. We started loding to a van with are soutcases. My grandparents are coming with us because they usually stay for the @DATE1. That even more stress. We were just about ready to go, then I remembered that we have a tv in are van. I ran back in the house and unpluged my @ORGANIZATION1 gamecabe. I took all the wires and three game controllers and then went off. We started on are trip. As we're just leaving I start pluging in all the wire and game controlles. The we start off. For the first coaple hours we just liscened to the radio. Then came the affect of my brother and sister owe never get going well in a crowded place, so we started hunting. Now where @NUM2 hours this out and we were in @LOCATION1. We started seing mountains. They were wonderful. @NUM3 hours through. We decided to watch the???movie for the last hour. The hour went be like a flash. Finally done that is a time I was sort of patient." 8 8 16 2 2 2 2 2 2 2 2 +18556 7 One time my @CAPS3 planned a fishing trip to @LOCATION1. @CAPS8 @CAPS1t know. He told me to pack my suit case for three days worth of clothes I said why he said we are going to @LOCATION1 tomorrow with your causins @PERSON1 and ryan. I was so excited that I flew to my room and pounded cloths in my @CAPS2 and looked through everything I would need. I asked my @CAPS3 what we were doing there he said were going on a fishing trip in the @CAPS4 river for pike. The @CAPS5 @CAPS6 I got a new cherrywood fishing pole and a really nice underspin real. So I got my fishing poles ready packed my @CAPS7 and went to sleep so I could get up early. @NUM1 am come and my alarm went off I was so tierd I could barely see @CAPS8 we had to be at my uncles house at @NUM2 so I had to get ready. Once we got to my uncles house we met them then we all left. I wanted to sleep in the car @CAPS8 I couldnt once we got in @LOCATION1 it was so cool with the huge cliffs and hills we even sas a bear @CAPS10 a river that we stopped at then we went up river and there was a clear mud hole withe millions of frog in it. When we finally got there my @CAPS3 made me wait and unpack. Once me and my causin got @CAPS12 unpacking we went right to the store to fish my first cast I caught a little @NUM3 incher on a @ORGANIZATION1. After that we caught nothing so we came back up when it got @CAPS13 and roasted hotdogs over the fire. The next morning we got up early and only fished on the lake @CAPS10 the @LOCATION3 we caught nothing. That night we went fishing on the @CAPS4 river and we still caught nothing. The guy that owned the cabin said we should cath @NUM4 or @NUM5 pike a @CAPS5 @CAPS8 it had rained seven feet so they wernt feeding. The next @CAPS5 we got up early again and fished all @CAPS5. In the morning I had one hit we had nothing afterward. At lunch we found a little @LOCATION2 to eat lunch on it had a actual rock cave and we had scared a bear off the @LOCATION2. Later we went to this little canyon that was really hard to clime I almost fell halfway @CAPS19 @CAPS8 I got looked on a root. We saw another bear eating berries that we video taped and we killed a chipmunk with a @CAPS21 rock that we threw @CAPS19. Wham it almost took my pole I fought it for about ten minutes I waited and waited it was a digantic pike @CAPS8 it shapped my line and I still have never seen that pike. 10 10 20 2 2 3 3 3 3 2 2 +18557 7 "Back when I was in about third grade I had to be really patient. I was at a @ORGANIZATION1 game. It almost the seventh inning and I was ready to go onto the field. I had to wait a really long time. I had missed about an inning of the game already. When I was down there, there were about @NUM1 people. It was so crowded. My mom probably couldve filled three two gigabite memory cards in that time. It was so boreing. After it had been about twenty minutes they finally let us on to the field. We all walked through the outfield and onto the infield. Most of us were on live t.v. I was one of them. When the game was done most people walked away sad but I walked away happy and sad. People were sad because the @ORGANIZATION1 lost the game. The reason I was happy though is because I got to go onto the field." 8 9 17 2 2 2 2 2 2 2 3 +18558 7 "For some people it is as hard as a rock, but to some it just comes naturally. Patience is a big part of hunting. You must be tolerant and understanding. Even if things seem to take a turn for the worst. Take this for example. I had woke up at six and jumped out of bed. I was finally going to shoot my first deer! I pulled on my camofage and hunters orange as my grandpa drove down my long drive way to get me. The moon light shone bright and I was giggling with exitment, but I knew I had to calm down. As we drove to the place I was going to hunt I was amazed by how quite evreything was. We walked back to the blind on a leaf covered trail and set evrething in its place. After, dosing of a little the morning light seemed to peek through the trees and light up the fresh green field. The water vapor looked like sparkles floting in mid air. We heard a grouse drum and had a red squarle jump out at us, but no deer. After a long morning of sitting we disided to pack up. We always had tomarrow. So that was the end of our hunt. We had an exiting time, and it was all because of patience. Patience @MONTH1 not always help in ways you wish, but it can help you see many diffrent and beautiful things." 12 11 23 3 3 3 3 3 3 3 2 +18559 7 One time @CAPS1 mom took a test to become a @CAPS2. That means certified nursing assistant. After she took the test she was very nervous. She waited and waited. A phone call would come very soon but she had to have patients. The first day she took the test it was very hard to have patients. I understoond because I get that feeling when Im waiting for test results. It is nerve racking and exciting. The next day was not as hard. She just went on with her day. The third day of waiting she started wondering if the call would come. Later that day the phone rang. A smile spread across her face. She had passed the test. This is a time @CAPS1 mom showed patients for three whole days! 9 10 19 2 2 2 3 3 2 2 3 +18560 7 "It can be really hard to be patient, depending on the effect. Even I lose my patience some times. But one time I was so patient that I was about to explode. On a dry @DATE1 day, my family and I decide to go on an exciting vacation to @ORGANIZATION1. We drove @LOCATION1 to @LOCATION2 and headed east towards @ORGANIZATION1. After the boring road trip, we parked our silver mini van in a five dollar parking lot right next to the @ORGANIZATION1. First we went up the @CAPS1 tower, where we saw everything from the incredible height. After that we saw our cousins. I never even saw them before. As we were looking at the waterfall my brother said, ""@CAPS2, look at those boats under the waterfall. Dad, can we go on them?"" ""@CAPS3, but first we have to buy tickets."" @CAPS4 my dad. We bought the tickets and went in line."" @CAPS5 are there so much people?"" I asked. There was about @NUM1 people waiting in line with us. ""@CAPS6 be patient,"" my dad replied. I stood there looking at all the people in front of us. We were never going to get on the boat. I saw people handing out blue rain jackets. After @NUM2 minutes we still did not get the jackets yet. We were moving as slow as the plates on the earth were. Finally, we got a jacket, but we weren't on a boat yet. My brother was complaining and my dad started yelling at him. I was still standing, almost to explode. At last, they called us up onto the boat. It was amazing going under the waterfall. We were in the mist. When we came back to shore, we talked about how amazing it was. Being patient has a reward at the end. Even though it is hard to be patient, I still did it and anyone can. I was patient the whole time in line to get in the boat. Patience can be rewarding." 12 11 23 3 3 3 3 3 3 2 3 +18561 7 In third grade one day it was one of my happyest day of my life. It was the day when we were going to get our dog @ORGANIZATION1 and I was excited and as patient as ever. It was a cold winters day and it was my time to go to school and I couldn'@CAPS1 wait till the school day was over because it was the day when we got @ORGANIZATION1. When I got to school I couldn'@CAPS1 wait to tell everyone that today was the day. When school end my mom came to pick up my sister and I up from school to go home and wait patiently at home my dad and @ORGANIZATION1 to come home. When we got home my mom and my two sisters and I were waiting patient in the living room watching @CAPS1.V just listening for the jerouge door to open. And the we herd it open and we all were jumping up and down running and screeming outside and there she was @ORGANIZATION1 the best dog in the world. That's the way I was patient on the winters day waiting patiently for the best dog in the world. 11 8 19 3 3 3 2 2 2 2 2 +18562 7 "?? It was a normal old boring day in the @DATE1 but I had just got a call from my sister in law. She literally just called me and asked if I wanted to go to cedar point the next day. I was astonished! I didnt know what to say! At first I thought she was hiding around but when she asked to talk to my mom, I knew she was legit. ??? When she was done talking to my mom, my mom too was in shock. I was so greatful I could not fall asleep. I ended waking up at @NUM1 am and I was not to fond of that but it was totaly worth it. It was a long two hour drive but when we got there we bought our tickets and ??? the mavric. The line was humumus but we waited. Half way into the line, the ride broke down. I could not believe my eyes. Ive wanted to ride that one for ever. I was ??. We waited patiently for around @NUM2 @NUM3 hours maybe @NUM4. I was hungry, trerd, and cooking in the sun. once it opened up again we only had to wail like hour but all in all, it was worth it. My sister in law @PERSON1 was very impressed on how patiently I waited. And we went to the car to get some food. It was the best food I had ever aten. The rest of the day was tremendous but that was defidintly the most patient I was in my entire life. Due to the fact that it was just me and @PERSON1, I think thats why I was so calm. Even though that part of the day hind of sucked it was still our all a great time!" 8 11 19 2 2 2 2 2 3 3 3 +18563 7 "This year mom maryed my new step dad. I guess he wanted ous to bond so we took up trap shooting. It pretty much the same thing as skeet shoot, well actually is the same. Anyway he used to be a cop and had a shotgun so we went out and tried it. It didnt work out. I missed every single bird I clay targets jet actped one. I only got one bb through the thing. But I was cool with it I new I was bad because it was the first time. So we tried the hit the thing died center. I feelt shown up. We left that day with only ten hits and a uncountable amout of missis. I was feteling pretty low. Within the next week we tried again. He lanched the bird and it almost like in slow motion I whated it ark. I followed it with the ball at the end of the gun an pulled the triserand I watched the bird explode. Haha, I fanily did it? We lanched another and I hit it I went @NUM1 in arrow! Amazing for someone who missed all about a few be for And thats how I was patient." 8 8 16 2 2 2 2 2 2 2 2 +18564 7 "A A time when I was patience is when our family goes to @CAPS1 point. My family and I go to @CAPS1 point a lot. Usually, the lines are very long, sometimes over and hour! Once, on my first time on the @CAPS3, the wait was @NUM1 hours, but we went anyway. We were about @NUM2 hour in and then they had some technical difficulties. After about @NUM3 min, the line was moving again. When I got to ride it was really fun (although it only lasted @NUM4 seconds) A couple years later the new ride The @CAPS4 opened up and it looked very fun, but the line didnt. I am not sure how long we waited, but when we go to the end, and rode the ride, it was amazing.I was glad I had enough patience to wait in those long lines." 7 8 15 1 2 2 2 2 2 2 2 +18565 7 "What is patience? Patience means that you are understanding and tolerant. A patient person experiences difficulties without complaining most people are impatient these days. Patience is like waiting. For example, if you are in a traffic jam in a long line, or maybe you have to wait your turn for something. Patience is one of the best qualities someone could have. Every year more people become impatient. @CAPS1 want people to hurry or move faster. @CAPS1 need to gain patience by taking deep breaths or calming down. I think the world would be more peaceful if everybody had patience there would be no more conflict and if that happened some day, everybodies lives would be perfect." 7 6 13 0 2 2 3 0 2 2 2 +18566 7 "@PERSON3 and the @CAPS1 @CAPS2. Vincenta was walking one day and @CAPS9 saw his friend @PERSON5. “@CAPS3, a - @PERSON3”. Said @PERSON5, “@PERSON5 you know to call me @PERSON3”, replied @CAPS4. (@CAPS5-shen-tay) “@PERSON3, my mami told me to sec that @CAPS12 beans get to @PERSON1. Would you do it for me? “@PERSON5 asked “cee, @CAPS21 of @LOCATION2 has eachothers backs.” @CAPS6 you @CAPS28! I have to go now! Bye!” @PERSON5 said as @CAPS9 ran off. @PERSON3 walked over to @PERSON2’s house and knocked on the door. @CAPS16 answer. @CAPS7 @PERSON3 walked over to @LOCATION1’s old house. Abandoned,” I know! I’ll @CAPS8 them here!” @CAPS7 @CAPS9 dug a hole and planted the beans. @NUM1 minutes later @CAPS9 was still waiting. “@CAPS8!” @CAPS9 yelled. @PERSON4 was walking and soul @PERSON3 angered. ‘@CAPS4, @CAPS14 you a screaming boy? You gonna wake up my papi!” @CAPS11 exclaimed, “@CAPS12 stupid beans don’t grown @PERSON4.” @CAPS9 replied, “@CAPS14 do you want to see beans? Go to bed they’ll be where under!” @CAPS11 told him. “@CAPS16! I am here staying! Eizel will support me on this one, haven’t you heard of that “@CAPS17” guy?” “@CAPS18, @CAPS19 will see you later @PERSON3.” And @CAPS11 strolled off. The next day @PERSON5 walked by “oh my a god! @PERSON3”@CAPS9 yelled. @PERSON3 woke up and couldn’t belive what @CAPS9 saw. The bean stalked ran @CAPS21 over @LOCATION1’s two story house. “ You stink!”@CAPS20 cavd @CAPS21 of a sudden @PERSON3 woke. It was a dream,@CAPS9 looked at the @CAPS23. “@CAPS24!” still nothing. A day later @CAPS9 was still waiting hungry and tired, @PERSON4 came by again. “@PERSON5 doesn’t know, does @CAPS9? Well, @PERSON3 please come inside and forget about the seeds. “@CAPS16”, @CAPS9 screamed. “You’re just going to anger yourself “@CAPS16! Go away! @CAPS9 screamed.”@CAPS27! I will “and @CAPS11 stomped off once again. Two @DATE1 of waiting and finally popped up. One was alive and lasted @NUM1 minutes then died. The other was just a car bolt. @PERSON3 had bone bugs for the @DATE1 and was putting inside air @NUM3. Then @CAPS9 asked himself, “Was it worth it?” cee-yes @CAPS28-friend" 12 12 24 3 3 3 3 3 3 3 3 +18567 7 "Being patient is a very hard thing to do, most people are very bad at it but some are good. I am one of the people that are bad at it. The hardest thing I have ever done in my entire life is wait in line for three and a half hours just to ride the dragster at cedar point. It was a very hot and sticky @DATE1 day and cedar point was packed. There were flys everywhere, tickling your legs, buzzing in your ear, and even biting you. You could hear the screams from a mile away overweight people were wearing shorts and tank-tops, eating popcorn. It was brutal! I had riden every ride except for the dragster. The dragster is the ride that takes you up to the very top and shoots you down as fast as a bullet. The only problem, if you wanted first cart, which @CAPS3 did, it was a three and a half hour wait! @CAPS1 can @CAPS3 just go ride the skyscraper again I pleaded. @CAPS2! @CAPS3 came all the way to @LOCATION1; @CAPS3 are not going to leave without riding the best funnest ride! You are going to stand in this line and wait! @CAPS1 quickly replied. @CAPS5! I never get what I want do I! You get everything you want. You can go ride the skyscraper again if you want but I am staying here! And I feel bad for whoever has to sit by you because they are going to have bruises and scratches all over the arms. Heck you might pop their eardrum from screaming so much! well I dont wanna put somebody else throught that pain but you I might! by the time @CAPS3 were done fighting there were only twenty minutes left, @CAPS3 didnt get front cart the wait wasnt even that bad." 12 12 24 3 3 3 3 3 3 3 3 +18569 7 "A time when I was patient was when I was helping a kid in my class on his project. We were doing a science project and this kid didnt understand anything about it. He would put things in the wrong place, write down things that didnt go with science, and he didnt listen to anything so he was correctly but he lost it! I couldnt beleive he lost all of our hard work! So we started over and I helped him more and was very patient with him. After three days we were almost done with it. When he was done putting the final touches on it he presented it and got an A+ on it; @CAPS1 he got an A+ on it, it made me feel so good and I got rewarded for my hard work and me being patient with him. To the end being patient makes you feel good and the person you helped feels good, too. This was a time when I was patient." 10 12 22 2 3 2 3 3 3 3 3 +18570 7 "There once was a little girl named @PERSON2 @CAPS10 was the important girl in the land of narrative. Narrative was a little land felled with loveing and patient people who waited for everything. And every child was patient but @PERSON2. @PERSON2 was a only child living with her mother and @CAPS12. @PERSON2 hated being the only child so: @PERSON2`s mother named @CAPS3 told her husband @CAPS1 that they should have another chilled so that @PERSON2 would not be only. Soon they told @PERSON2 that @CAPS10 would be having a little brother or sister @PERSON2 was very happy. Infact @PERSON2 was so happy that @CAPS10 ran up stairs and began to make up baby names. Then ran down stairs and shared them with her mother rocking in her chain. I like kuven said @CAPS12 walking toward the dinner table were @PERSON2 and her mother where siting. Ok said @PERSON2 cleaning the table of Do you like @CAPS2, @CAPS3, @LOCATION1, @CAPS4, @CAPS5 or @CAPS6said. @PERSON2. I like @PERSON1 said @CAPS12 pushing in his chair. Me as well said mother walking up stairs toward her bed room. I can`t wait till the baby gets here said @PERSON2 on her way up the stairs. The next morning @PERSON2 a woken early to see if her mother had the baby. @CAPS7 you have the baby yet said @PERSON2 weaking up her mother and @CAPS12 @CAPS8 said the @CAPS12, the baby haves to grow inside of mommy okay. Okay said @PERSON2 . @NUM1 months later. Kerry got up very early screaming is here @CAPS7 it come @CAPS8, said the mother lefting her head over her belly to see @PERSON2. that baby will never come, I hate that thing I will be lonely for ever said @PERSON2 walking toward her bed room. Be patient @CAPS10 will com screamed @CAPS12 from the other room. @CAPS10 said @PERSON2 its a girl @PERSON2 got very much happy @NUM1 hour later oh, oh, oh screamed mother form her bed room. Are you okay mommy said @PERSON2 walking into mothers bedroom. The baby is coming call your @CAPS12 said mother. @PERSON2 yes mother going to have to deliver this baby okay. @NUM3 hours later dad come home running up the stair and went in his room and saw @PERSON2 his wifey @CAPS11 & the new baby @PERSON1 fast asleep. Told you if you where patience @CAPS10 would come said @CAPS12 talking to his self" 12 12 24 3 3 3 3 3 3 3 3 +18571 7 "Some stories when I was patient is when I needed teachers help, grandma had surgery, wait for turn in sports, and wait for mom at work. When my grandma had surgery we waited for three hours. During that time I played chess with my aunt. I talked with them. We went to the gift shop there. Also we went to the mall. The teacher gave us home work (h.w.) and I did not understand a part. The teacher was helping a different person so I waited. I skipped the part came back by then the teacher could help me. Then I understood the homework. My mom took me to her job after school or I would have alone at home. While waiting I mopped the floor. I rested my head and put it on the table. Talked with some of the employees and pasted time by walking back and forth. These are the stories about a time I was patient." 7 6 13 1 2 2 2 1 1 2 2 +18572 7 A time when @CAPS2 dad was patient. @CAPS2 dad was patient because he had in important meeting with his boss did not came yet so @CAPS2 dad sat down and waited .He waited waited and @NUM1 hours later the boss came and said @CAPS1 you wait for another hour because I need to talk to @CAPS2 wife because she saying she really needs to talk to me @CAPS2 dad said @CAPS3 but hurry! In hour pass @CAPS5 the boss came he came he said to @CAPS2 dad @CAPS4 for waiting @CAPS5 finally hes done for his meeting. I said dad what took you so long he said be patient. Thats the time @CAPS2 dad became patient. 8 5 13 2 2 2 2 1 1 1 2 +18573 7 "@CAPS1 @CAPS1 my cell phone buzzes in my pocket. Lexa, @CAPS2. I don't know if I can ever get over the fight that we had yesterday after she called me some names. I actually answered once and said, I need sometime @CAPS5 be patient. She definetly isn't listening. So, I decide to call her back. She picks up on the first ring."@CAPS3, Are you there?" she sounds desperate to call me the nickname she always has ''yes'' ''I'm sososososorry, I didn't mean it''. ''I told you I needed time and for you to be patient.'' I say almost in tears. ''I know but I can't be when I @CAPS5 hurt my best friend''. ''Patience means that you are understanding & tolerant about waiting without complain''. ''@CAPS4''. ''@CAPS5 try to be patient and @MONTH1 be you wouldn't be complaining''. ''@CAPS6'' she saysl then hangs up. Sure I think I am so mad that she thinks she can @CAPS5 can and it would be all better. She should've waited. I fonly she'd been patient." 10 12 22 2 3 2 3 3 3 3 3 +18574 7 One day it was me and my mother we was going to the store @CAPS1 we had to go and pick up my big brother from basketball practice @CAPS1 we got there and he wasnt outside @CAPS1 my mother was calling his phone phone and he wasnt answering @CAPS1 my mother keep calling @CAPS1 my mother said that were going to wait until he get out now thats what I call patience. 6 6 12 2 2 1 1 2 2 1 1 +18575 7 "There once was a time when someone I knew was patient. I was a cold @DATE1 day and I was at school. My teacher was very sick so we had a substitute. He was a very mean substitute. All of a sudden a kid started breathing heavy. He needed his inhaler. I told the sub the kid needed to get it but he said no. the person next to me said the say thing, but she was patient and said okay @CAPS1 the sub let the kid go. That was time a person I know was patient." 7 8 15 1 2 2 2 2 2 2 2 +18576 7 "Patient! I was patient when I was waiting for my football game. It was a @DATE1 @TIME1 and I went to go get my shoulder pads, my helmet, and my pants for football. We woke up @CAPS3 earlly though we were going to be the first ones there i thought wrong. There was like @NUM1 people there. I was freaking out man freaking out! I said to my mom you said well be early you said well be the first ones hear. Well wasent she totally worng. I was mad at her. We were the last people in line. All of thhe good helmets were gone. Mom said @CAPS1 you need to be patient like the other parents. @CAPS3 i tried to be patient. It wusent working out @CAPS3 well. I was @CAPS3 impatient,I was yelling, saying comon we dont have time for you to be sitting around all day,we dontt have time to christmass.@CAPS2 when i got there i said out loud @CAPS2! The football stuff got mad at me,@CAPS3 I said I hope they have my size for my football stuff. Just what they didnt. I was @CAPS3 mad and just what she said come back tomorrow and well have your size. Well thats my story i was kinda patient toward the end,but at the beging I was yelling, @CAPS3 that shows ya if your not patient youll probley wont get what youre waiting all day for." 8 8 16 2 2 2 2 2 2 2 2 +18577 7 "My favorite books, now a movie, I have to see it. Twilight eclips, me and my mom were heading to the movie theature and I wouldent stop talking about the movie. We drove into the parking lot and @CAPS1 was no where to park. My mom was about to leave before I said, @CAPS1s one mom sweet, she replied. Me and my mom were waiting to see the bloodsucking movie for three months, and were steping into the building and we rushed to get the tiketts and the food. The movie was going to start at @NUM1. I was going to start saying something but I calmed myself down and used patience for three hours strate. I took pictures of me and my mom being funny. We did a bunch of random things to get past the time. It actually helped the securety said stand up time for trivia. They asked a bunch of question about the last movie @CAPS2 @CAPS3 I raised my hand and I answered the question right I had a choice of getting a free popcorn or a pin. I got the pin. I was so exided, the movie was about to start. After the movie was done me and my mom headed home and we fell asleep right when we got @CAPS1. This was the story when I used patience." 10 8 18 2 3 3 2 2 2 2 2 +18578 7 "?? Can we watch @ORGANIZATION1. I looked at the clock. Five thirty. youll have to wait. I said. @CAPS3 doesnt come on till eight. @CAPS1 I wanna watch @ORGANIZATION1 @ORGANIZATION1 z @ORGANIZATION1 . he ???Not again. I thought. Do we have to go through this every day. Why dont I still have ???. I walked slowly to my room, knowing I would have to keep ??? @CAPS2. ??? until eight oclock kumehnn@CAPS2 quiet. I was starting to mad. @CAPS3 doesnt come on until eight okay." 8 8 16 1 2 2 3 2 2 2 2 +18579 7 "I am never patient. Weather its waiting for dinner or waiting for a friend I am never patient. The only time I can be patient is when im waiting for school to start. I can wait hours, days, weeks, months, even years if im waiting for school to start. Then also the thing I can never be patient for is waiting for a friend to call because I always want to do something every second. I will run around the house for hours until a friend calls. ?? when they do call I rush right to the phone and answer it right away. I will even sit there and stare at the phone waiting for someone to call. Another thing I can be patient for is waiting for my mom to tell me to clean my room. I will always leave the house and try not to come back til bed time so I will never have to clean my room." 8 10 18 2 2 2 2 3 3 2 2 +18580 7 "My cousin was patient when we were waiting in line for the top l will @CAPS1 at (cedar point. The line almost took @NUM1 hours. My cousin was just simpily silent cvery unasul) and just waiting .I was very impatient. I was tapping my feet running around etc. I was about to die of boredom .My legs hurt, I was hungry, I was too hot. I just couldnt stanistrn. She was just standing there not talking. When we started to move I got a little happier but still impatient. After @NUM1 hours we finally got into the ride. After the ride I asked my cousin why she was so silent. She said that her mom said for every word one of us said we have a minute of homework when we come back to @LOCATION1. I was stuck doing homework the next whole week. Thats how I learned my lesson to be patient" 10 12 22 2 3 2 3 3 3 3 3 +18581 7 "Being patient means that when your in a bad situation you dont complain. Some people arent vary patient and some are very patient. In my eyes patience is very important, I likes to think of myself of sort of patient or I think I am. One time I had to be very patient when my family had to drive fourteen hours to get to @LOCATION1 it was not fun. One bad thing about it was you always had to go to the bathroom. Once you have the privillage to go when you want get taken away then you want it even more. But I kept saying to myself be patient well stop at the next place. Another thing was you were alway hungry or thirsty. We only stopped three times that was not fun. Also whenever you got food was not enough. But I didnt complain. Lastly you just really want to get there you couldnt wait for the sandy beaches and the waves. It seamed like we would never get there it was not the best experience. When we finally got there I realized that the trip was like a big test of patience and I pasted, and actually it wasnt nearly as bad as the trip back." 9 10 19 2 3 2 2 2 2 3 3 +18582 7 "One day I went to the hospitle the nurses gave me a ivy, akatt scan and pulled tare of my arm. It hurt so bad but I was patient through all of it. First when I was getting a cat scan I did not want to do it but we had to so I did it and was very patient. Also when they gave me my ivy they missed my vain so the riped it out put it in my other arm so I was very patient for the pain to go down. Lastly when I was done at @NUM1 oclock pm and started at @NUM1 oclock am there was a big pice of tape on my arc for @NUM3 hours the nurse came and said ""we can go home now"" and said ""you can take the tape off now swettie."" I said ""ok"" I pulled it pice by pice then the nurse said 'herer lett me do it!' she said ""@NUM4, @NUM5, @NUM6"" and pulled it off it hurt so bad but I was patient and didn't cry or??? Now you know that I was patient and was hurt all day." 8 11 19 2 2 2 2 2 3 3 3 +18583 7 "I was patient when my dad said he would get me some @CAPS1. They were @CAPS2 and @CAPS3 the shoes caust @MONEY1. I asked a few times. He didn`t answer, so I knew what to do. I decided the dishes, clean my room. I waited the shoes so bad; I cleaned stuff that was already clean. After a month of the cleaning, I still didn`t get the shoes. Thats how something went wrong. SCHOOL!!!!!!! I haven`t ben acting right in school. I got my stuff together. Then I got the @CAPS4." 9 8 17 2 2 2 3 2 2 2 2 +18584 7 "Don't you just love waiting for something to come or happen and when it does you realize it was all worth waiting for? I know I do! Sometimes its too long of a wait and you just have to be patient. Patience is very important. I have had to use patience many times before .Recently, I have had to use patience. I used it to wait for my baby cousin @CAPS1 to be born. I had to wait a long time @NUM1 weeks to be exact! I was just so excited I couldnt keep myself together. Now just yesterday she was born. The wait is over and I feel a reat. Although, I still have to be patient to see her. But not much longer only untill I get out of school. I have been waiting so long I can't even stand it! Every day I used to mark it on my calendar. I used to tell myself. She will be here soon. But, the days never seam to go by fast enough. I kept asking my mom, how many more days. It was pure agony! As the day approached I got more excited. She had gotten a lot of clothes from people. I had to be even more patient to even see the clothes on her. I also had to be patient to hold her. Although I did already say a while back that I got to be the first cousin to hold her. Now that she is born and finally here, I get to be the first one to hold her, I can stop counting down, get to see her in her new clothes and can stop bothering my mom. So, all in all patience is important. If you use it, the thing you are waiting for is much better." 9 12 21 2 2 2 3 3 3 3 3 +18586 7 "Patience is a kind thing , people being patient, but still complaining about it thats not patience at all. Patience is waiting and being kind while your doing it. People that loose their patience easily really is not cool, its nice when someone waits for you if say your on the phone talking to someone else, or even on the internet or something. Its very poliete if you have patience, I dont know the definition of it but am just gonna guess, I think its a person waiting patiencently and quietly on the other person even if they need to get somewhere." 5 6 11 0 1 2 2 0 1 3 2 +18587 7 "Aooooh when am seven I wer going to be able to ride on the hoder hunt; this able is hinting for ever said alex mictiory advernter wea a fun place ??? the ??? this routen.as I was waiting in the in the line to ride the ??? I was getting very ???.this when mybrother said calm down were half way thor"" ""no I cant this is a long line replied alex"" ""will here what you do to speer on the tire try to tell her the reason in hand on behave or talk with us"" ""ok?replid alex""so or I was to talk to the reple in front at me we ever to the ridi already in ??? out a lot I thnked my brother for the infounation.i master a was find a ??? reson . Thats a patient time about me alex and the help off my brother." 8 8 16 2 2 2 2 2 2 2 2 +18588 7 "Patience is a quality or characteristic of a person. It is not easy to be patient, but some people are very patient. Especially when you know you want to be mad at someone, but you dont. My older brother was always patient with me, especially the time I look back at and wish I could erase. It was that night I was going to stay at @PERSON2 and @PERSON4, my aunt and uncles. I had always had trouble staying places because I got home sick and cried. That is exactly @CAPS2 happened that night I regret. @PERSON3, @PERSON6, and I were playing games in their room. I couldnt stop thinking of my mom. I told myself over and over stiff upper lip. I had forgotten about her for a while then the feeling came agian, so I thought of how much fun I would have tomorrow if I just stayed the night. It didnt work tears rolled faster than @CAPS1 falls. I want to go home I managed to sniffle. I ran downstairs to tell my older cousin @PERSON1, who was babysitting. @CAPS3 finally opened her door and brought me upstairs to get the phone. My mom answered and relized it was my voice and said @CAPS2 all grouchy. I had sniffled and said I want to come home, I miss you. and sniffled more. Someone will pick you up soon. Be packed and ready. @CAPS3 said and hung up. I sadly told @PERSON3 and @PERSON6 as I packed and waited on the wooden bench by the door. Soon enough a car came up the driveway and honked. It was @PERSON5, I said bye once more and went out into the cold, wind and hopped in @LOCATION1s car. @CAPS4 didnt you want to stay? @PERSON5 asked calmly. I dont know. And it wasnt brought up until I walked through our front door. I already knew my punishment, no more staying the night somewhere for a couple weeks." 11 12 23 2 3 3 3 3 3 3 3 +18590 7 "I had to be patience many times. I had to be patience when my @CAPS1 broke his ear-drum, I was waiting for x-rays, waiting to go on stage. These are sometimes when I had to be patience. When my @CAPS1 broke his ear-drum I was about five years old. I had to wait with my brother in the waiting room. It felt like forever. It was winter, I was in my pjs, and so bored but worried about my @CAPS1. In @NUM1 grade I hit my wrist in a door and a wall. I was in the emergency room for @NUM2 to @NUM3 hours, but they were very good at there job. My mom and I were stuck watching @CAPS4 @CAPS5 on the tv they had. It was very cold in the waiting room plus I had @CAPS6 on my wrist. Finally, I was waiting to go on stage for my @NUM1 grade concert. I was so nervous and the neeves kept growing. I waited for @NUM5 min but it felt like @NUM5 years. I was sitting next to my friend which helped a little. When we got on stage I song my heart out and was happy I waited. Those are sometimes which I had to be @NUM7. I am not good at being patience, but I waited and got good results." 8 7 15 1 1 3 3 1 1 2 3 +18591 7 "Have you ever been patient? I have, especially this one main time in my life. That on main time in my life was when I was waiting for my dog to have her babies. My dogs name is @CAPS1 mae she is three years old and is full blooded pitbull.??? ??? ??? ??. it all started when we took @CAPS1 to the @CAPS6 for her early check up. The @CAPS6 said she was all good, then pulled my mom to the side. My heart was pumping faster than ever because usually when they pull the parents to the side I t means something bad. My mom screamed and rejoiced. I ran to her and she screamed @CAPS3 is going to have babiesthen I scremed with her. We went and got dixixe and then we took her to the bark play and that night she got her very own steak at supper. The next few months were going by faster than ever. Well at least it seemed like it. Now @CAPS1 was get bigger. The @CAPS6 said it should be six months atleast until she has the puppies it`s aready been five and half, mom said, that she has milk now I told my sister, @DATE1 . I wouldn`t doubt it, said @DATE1 then we went and took @CAPS1 inside for the night. The next day while I was getting ready for school my mom said hey sweetheart I called the @CAPS6 and he said that he wouldn`t be surprised if @CAPS1 had her puppies today then I said oh cool but let`s not rush @CAPS1 she`s going through a lot right now. then we said our goodbyes and I went to the bus stop. The bus ride usually takes like an hour to school but today it only felt like thirty minutes. The day was going by fast. Before I knew it I was home, I walked in the front door and my mom said oh your just in time honey @CAPS3 having her babies we both ran into the garage faster than ever @CAPS1 was laying on a blanket, I jotted to her and she licked my hand. I told her everything is going to be alright. I went inside to get her a bowl of water and some soft food and when I come back out she already had two puppies. It took about an hour for the other two and then another hour for the other two after them. Turns out they were all girls. Now we have eight dogs at my house. The mom @CAPS1 mae, the @CAPS12 @CAPS13, and all eight little girl puppies, cutie, bootsier. Tinker, bella, harmony and melony. I love my dogs!" 12 12 24 3 3 3 3 3 3 3 3 +18592 7 On @DATE1 on my berthday. We wint to go get a cake. I wonted a ice cream cake. It was over @NUM1 people their. I did not have cuy pashints. But my mom did. It was a play ground nite ??? it. So I wint to go play. Wih my mom got the she came and got my wert to go soldrat my povetg. 4 4 8 1 1 1 1 1 1 1 1 +18593 7 "Patience can lead to rewards, @PERSON4 the brown bear learned that @DATE1 when he was in line to get an autograph from @PERSON1. He might have been very frustrated but he just stayed calm and looked forward to meeting @PERSON3. One day @PERSON4 seen a @CAPS1 @CAPS2 headline in a newspaper. He put @NUM1 in the machine and opened the newspaper holder to grad one, it was jammed. He went into the gas station to tell the people but they were not there, he hit the top of the bell and nobody came .@PERSON4 was trying to be as patient as possible .He went to a different store and got newspaper there. The @CAPS1 @CAPS2 was that his favorite star ,@PERSON2 ,was going to be in town .Can hurried to buggle town and seen the line that was @NUM2 long ???.He was so excited to see @PERSON3. @PERSON4 got to the line at @TIME2 and has been there for @NUM3 hour and she only got @NUM4 autographs done .This was going to be a long day for @PERSON4. @PERSON4 got a hot dog and a soda from the sidewalle food business at @NUM5 p.m .@PERSON4 was still the last person in line his patience went down quite a bit .At @TIME3 there were only @NUM6 people including him there . He finally got to @PERSON3 at @TIME4 @PERSON3 and her crew notified @PERSON4 that he won the patience contest .They told him be gets to see her in concert, gets her phone number and wins a date with her. He was so happy he kept himself patient for fife hours. @PERSON4 was about to blow at @TIME1 knew he would never forgot this moment .Also, @PERSON4 ended up being @PERSON3s boyfriend. That is when @PERSON4 learned that patience can pay off in the end." 12 10 22 3 3 3 3 3 2 3 2 +18594 7 "When I was patient. Their was a time when I was patient. Their are more and more ways I get @CAPS1 patient when Im not in no hurry to do something. Im going to tell you a true story when I was patient. And I was not in a hurry in get it done. My first day at school and we was having fun with a bunch of people and on that first day we had work. When we attended to do it some people was not patient. I looked around the bright room and I was thinging about how should I be patient, @CAPS1 I said to myself I have to take the time @CAPS1 I could reach a good grade and @CAPS1 I was patient. The next day I was ready to see my grade on that work. I had a fun thats the day when I was patient and taking my time." 9 8 17 2 2 2 3 2 2 2 2 +18595 7 At time when I was patient was when I went to @CAPS1 @CAPS2. I was patiently waiting when to get on the rollercoaster. For an hour and a half. I was patiently waiting when I had to get something to eat. I was patient when I wanted to get on any of the rides. That is a time when I was paitient. 5 6 11 1 1 1 2 2 1 1 2 +18596 7 "A time when iwas patient was a last @DATE1. My friend, @CAPS1, took me to cedar point in @LOCATION1. The place was so packed, it took five minuites to get from the car to the entrance. As we got in, the place looked amazing! It was almost like a dream. They even had a ride to take you from one part of the park to another. The first ride we went on was the @ORGANIZATION1. We waited, and waited for about ten minuites and then things got boring. It had been almost fifteen minuites and we werent even close to the ride! So we waited , and waited about ten more minuites, and things got a little faster. At this part, the line was moving a little faster. Finally, it was our turn to ride. We had a yellow car, and you could feel the adrenallen already. After we were strapped in, the person who locks peoples seats said go! and we took off like a bird. In the end, it was worth being patient" 11 12 23 3 3 2 3 3 3 3 3 +18597 7 "Have you ever been a patient? Like at the @CAPS1s office? Well let me tell you a time I have. One time I was really sick and I started crying because I was in a lot of pain. I was crying for an hour straight. Then my mom took me to the hospital where she works. When I got out of the car, I somehow stopped crying. I told my mom that I stopped crying but she told me that I had to go see the @CAPS1. When we went in we seen this man rushed to the @LOCATION1. We went right to the waiting room and all the seats were taken up. When @CAPS1 @PERSON1 came out she asked a man in to see her with his son. That gave us two seat to sit in. After about @CAPS2 minutes she called us in to a medical room. She examined me and I was really scared because I might have nomonia or a very bad virus. When she came out of her office I was holding my moms hand. She came unto us holding piece of paper and my mom asked what I had. Luckily she said I only had a cold and an ear infection. When we walked out of the patient room, my mom had to pay. She only had to pay about ? @NUM1. We had to go get my medicine, so we walked to the elevator, went to the ground floor, and went into the pharmacy. The pharmacy was so full, I felt like a pancake under another pancake. When we got to the counter, my mom asked for my medicine and she got it along with a big lolly pop. When I got home I took some medicine and went to bed. The following day I woke up and about @TIME1 I got to have the lollypop. That was a time when I was patient." 9 9 18 2 2 2 3 2 2 2 3 +18598 7 "One day @CAPS1 was ordering a dress with a pair of shoe s and a???. But when she was ordering it they said I???????????????? Part not legible it had not yet arrive??? you would???? Rosy said.no thank you, I know??? arrive said @CAPS1. The next @NUM1 months the dress had??? The magazine company called and said we are very sorry for the late arrival of your dress, @CAPS3 we will offer no charge and thank you for your patiences. @CAPS3 she ordered two more dresses and arrived the very next day that was still happy." 8 9 17 2 2 2 2 2 2 2 3 +18599 7 "I am not a patient person. I hate waiting for anything and everything, and I complain about difficulties with myself and others. I play volleyball on a team for my school. There are a few girls in my team that completely kill my patience. Am sure the other girls on my team feel the same way. This few girls are pretty nice people but volleyball is just what the ???for them. In practice, one of these girls doesn't even try. She even sad so herself that she is going to shop a few practices that would ??? her attitude was driving me mane. Another girl trys pretty hard, but shes boring, controlling, and she thinks she knows absolutely everything there is to know about volleyball. I think she made one over hand ??? these years of playing volleyball, and she thinks she can do it every time now. She can rarely serve underland n crying out loud! This hot girl, oh my god I don't even know where to begin on how much of my patience goes into her. She was probably the wast player on the team, and now that shes broke, her pinky finger, she could be even worse considering how she hasn't played in about three weeks. But since she's still part of the team, she goes to all of our games and diccers us on and trys to act cool but fails miserably. It is actually kind of funny. Now, I knew that these girls hard quite a bit of practice, and I know it wont happen overnight. But I guess I'll just have to put up with them and keep many patient." 10 10 20 3 2 2 3 2 2 3 3 +18600 7 "Patience is hard for me. I am simply an impatient person. Patience in my life is a rare occurrence, so I will describe a time that I was patient. @CAPS1 you can get it this time. I encouraged myself. I stored at the net. The net was the obstacle. If the net was shorter I would be able to get my volleyball serve over. I balanced the white ball in the palm of my hand. I lowered my left arm and raised it again quickly, sending the ball high above my head. I thrust my hand forward. Thwap! I struck the ball, but it went barrelling into the net. @CAPS2 @CAPS3 I think. You got this! my entire team stared at me. Clunk, clunk. I bounce the ball twice, spin it around once in my hand. I will myself not even to look in the crowd. M y hand strikes the ball. It flies over the net and smacks into the middle of the court. Since I was patient @NUM1 didnt give up, I achieved my goal. This taught me one thing. Patience brings victory." 12 12 24 3 3 3 3 3 3 3 3 +18601 7 "Patience is something you have to work on I do not have a lot of patience, I do not like waiting at all it is not fun .I do not like waiting ,because being patient is boring and five @CAPS2 feels like twenty @CAPS2. Then when you wait you start something and then as soon as you start its time. Waiting for package is the worst. You wait and a sit and wait, then you forgot about it and then it comes .One day I was waiting to go to my friend house it felt like forever since Ive seen her but it had only been about ten months .I missed her like crazy .We have been planning this or weeks it was finally the day of get to go over @CAPS1 .Now I was only waiting on my dad to drive me @CAPS1 and he takes forever .Finally we got in the??? We were waiting five @CAPS2??? Then he gets months??? and drove away .I swear we got shopped at every red light from my house to @CAPS3s house and got struck behind the slowest drivers so that made it werse .When we finally got @CAPS1 I jumped out of the truck ,@PERSON1 ran through the door down then stars almost tripping down each one . She practically jumped on me we we hugging for like five @CAPS2. That is why Im not patient." 8 9 17 2 2 2 2 2 3 2 2 +18602 7 "My story is about a time I was patient. One day I was so excited because it was @CAPS1 and my friends and I were going trick or treating. I was so impatient for the clock to turn @NUM1 pm because my best friend @DATE1 was going to pick me up in her pink convertibable and we would go trick or treating. I was very impatient because it was only @NUM2 so I did my chores thinking time will fly by so I did my chores. Instead of putting dish soap in the dish washer. I put grapes in the dish washer @CAPS2 the dish was hoe was done I empted it and all the dishes smelled like grapes. So I looked at the clock and it was only @NUM3 the I remembered that my favour movie was on so I ran to my room but instead I ran into the wall and got knocked out. After @NUM4 hours I was fine so I told my mom that I will be patient because I don@CAPS3 want to get knocked ???on the bright side I told myself I only have @NUM5 hours and @NUM6 minutes to go so I went to my room + wasted some @CAPS3.V. until eleven twenty so I had an hour to get ready to go trick or treating but first before I did my make up I whent into the kitchen I put all the grape smelling dishes in the dishwasher and washed them them the I right way. Then I put my costum on I was a bumblebee, then I put my make up on I looked so cool. Finally the clock turned to @NUM1 suddenley I heard a horn @DATE1 was here. So I got in the car + we went to pick cate. I almost forgot to tell you that @DATE1 was a ladybug, cate was a which so then we whent trick or treating. So thats a time when I was patient." 9 8 17 3 2 2 2 2 2 2 2 +18603 7 "I remeber, just a few days ago, my mother had to get her tooth checked out and guess what I did, I read a book! Even though it took forever, I was done with my @NUM1 minute homework. When my mom came back we got up to leave and my feet were name. So far my patience we got ice cream. So you could get rewarded if your just patient." 8 8 16 2 2 2 2 2 2 2 2 +18604 7 "I must admit there are times when Im not very patient. But I can still remember the day I learned what patience was.I was @NUM1 years old and I was going to my annual checkup at the doctors office. It was around @NUM2 am on a @DATE1 @TIME1. I was with my mother in the waiting room, when a elderly man came in. He seemed extremely sick and I remember being really scared. The women at the front desk came up to us and said it would be a wait, @CAPS1 explained that the man was very ill and could be dying. My told me to be patient but I didnt know what that meant so @CAPS1 explained it to me. @CAPS1 said, You have to wart quietly and not complain no matter how long it takes. I told her. I could do it and sure enough I could. Patience is a very important thing to me. I feel it is not only for yourself but for the consideration of others. When you complain about having to wait it is disrespectful to others. And I know other people are patient for me so I should be for them also." 9 12 21 2 2 2 3 3 3 3 3 +18605 7 Being patient isnt that hard if you try. It was a @DATE1 @TIME1 and I needed help with my math homework but the teacher was helping someone else. So I waited for ???. Five minutes past and they still werent don so I decided to skip that problem. Ten minutes past and yet they still werent done so I just waited and waited. Then finally they were done ??? was only two minutes. ??? well I guess I give it another try and if I still dont get Ill ask her tomorrow. So while I was trying to figure it out it just wasnt making sense so I waited until tomorrow to ask her. So the next day in class I asked her about it and she said that we didnt have to do that one and I laughed and told her ??? figure it out all yesterday. That is an example of bein patient 10 12 22 3 2 2 3 3 3 3 3 +18606 7 One day i spent a night over my bestfriends house for @NUM1 days and ended up going to school with her. Mind you all of my clothes and shoes were over her house still. I wasnt really able to get my clothes because right after school I went out to eat. I was really angry because I left my @CAPS1 @CAPS2 shoes so I called her and told her to bring them to school.The next day i was really looking foward to getting them and I comforted her about it and she says she forgot so I gave her until the @DATE1 and she still didnt give them back. Notice I was very patient with her and this was the month of @DATE3. I finally got them back in the month of @DATE2. Finally she gave the back and you will never believe that am still friends with her because my shoes were worn out and dirty but I had to realize that shes a good friend and im a patient person. 9 7 16 2 3 2 2 2 2 1 2 +18607 7 "A time where I was patient was when I had to go to the eye doctor. I was in a rush because I was running late. It was @NUM1 and @CAPS1 appointment was at @TIME1. I was at least @NUM2 minutes away from the place. When we got there it was basically @NUM3, so I missed @CAPS1 appointment. I had to wait in the waiting room for a long time @CAPS1 mother and I had to wait until all the people who made their appointment wer finished. We waited at least an hour an a half. As I was being patient I talked on the phone and went on the internet. Lastly I listened to music the rest of the time until they called @CAPS1 name. In conclusion this is a time when I was patient." 8 9 17 2 2 2 2 2 2 2 3 +18608 7 "@LOCATION1 @CAPS10 sit down, my friend says." You don't need to be moving around like your a fly on tha wall." I sit down anxious to get up and move again." @CAPS1 's too many people here we're never getting in." I say. The line was the longest to get my driving test, so @CAPS2 thinking to myself to get up and move around because I'm not a very patient person. I should be able to move around while I wait, but my friend think its annoying and awkward. "@LOCATION1, I wonder if they had a vending machine here." "I doubt @CAPS1," I proclaim. @CAPS3 glance at me and I turn away. I got up and I walked away. I came back @TIME1 and @CAPS3 was gone. I sat down and talked on the phone for a @CAPS13 @NUM1 I sat and looked at everyone wandering who to talk to because I was bored. I wanted to get up so bad and move around but I would look and @CAPS10 walking in a circle and plus @CAPS4 left. I sat and wait @NUM2 @TIME1 past and @CAPS1 was getting close to @NUM3.m. @CAPS1 was @CAPS5 @NUM4 and I'm @NUM5 so I knew I was next. "@CAPS5 @NUM5 your next." I think in my head like "@CAPS6." I get up and walk to the teller. "@CAPS7 you for your patience, now @CAPS12 can I help you" I looked at her and said, "@CAPS8 I would like a driving test please." When I got my paper to go in I thought to myself that I wasn't patient couse @CAPS1 seem like I was there for like a cazillion hours. I though again and think @CAPS8 @CAPS11 I was patient @CAPS1 was probably @CAPS3 that made me impatient because I had no one to goos off with. So @CAPS11 @CAPS10 @CAPS11. I @CAPS6 was patient in like forever but I did @CAPS13 because I was ready to leave. "@CAPS12 was wait? The driver ad teacher says." @CAPS13 I felt patient enough to be there for about @NUM7 hours. This is the time I never knew but know I was patient enough to wait." 10 6 16 3 3 2 2 2 1 2 1 +18609 7 "Patience is about waiting for something and not complaining about it. When you are patient you wait for something with out complaining. If you are waiting for something and you start to complain that means you don't have much patience. It isn't really good to not have patience. Some people do not have patience at all, and if they don't that is not good. If you do have patience that is good, but some people don't and it is not good, because if something that you have to wait for and it is important, and you have no patience that could be bad. Some people have good patience but sometimes even if you have good patience you can still sometimes complain. And that is what patience is." 6 5 11 0 1 2 3 0 1 2 2 +18610 7 A time l had to be parcint was at the doctor tick tock. The clock went around and around. It was so boring are started to say the abc's forwards and back yards every time a doctor came out they did not call me l sat and sat with nothing to do I tride to fall asleep that did not work l tried to wach t.v but the only thing that was on @CAPS1 @CAPS2. Finally after two hours the called me in 6 4 10 2 2 1 1 1 1 1 1 +18611 7 Oh a time when me and my mom was patient is when we had to sit and wait for my mom to get her tags because it was her birthday that day. So it all started that morning we had woke ate breakfast and took our shower and put on our clothes did our hair. and brushed our teeth and bought time all that was about @NUM1 them after we did all of that we had lift then we had stayed in mouth ??? and bought time. all had got to @CAPS1 it our @NUM2 and we were both hungry so we stoped at ??? king and that was the day I had to be patient. 7 7 14 1 2 2 2 1 2 2 2 +18612 7 "Before,when i had to go to the doctor, I had to wait fourty minutes. So i just played my @CAPS1. I was playing mario cart.I got board so i just fell asleep. My mom woke me up because it was time. So we went in did my apointment and went home. Then we had to wait twenty minuts for my dad to get home from work." 5 7 12 1 1 1 2 1 2 2 2 +18613 7 "Last month, I had to go get a root canal. I was very nervous .I arrived at the dentist office , half scared to death by the of the pain , there two people in front of me so I had to wait , which made me more scared. The time had come for me to go with the dentist . I was patient the whole time .After it was done ,I was fine ,it didnt even hurt .When I got home ,I fell asleep , I woke up in pain though ,my tooth felt on fire. I never complained though, and when my mom was trying to hurry and my medicine, I never yelled at her to hurry or cried .This was the time that I was patient." 8 8 16 2 2 2 2 2 2 2 2 +18614 7 "This story is how I have been patient waiting for my birthday in three days. I have been patient by wanting to see what I get for my birthday even though it bugs me really bad! Also Ive been patient because Im having a sleepover with all my close friends. It seems like it is taking for ever. At my sleepover there is going to be cake and ice cream! @CAPS1! Ive also been patient because im turning twelve which means I will be patient. Then the day after my sleepover my mom, me and my brother are going to the mall and then to the movies and I get a hundred dollars to speand. At the mall! It is very hard being patient to do fun things. Finally Ive been patient by not asking everyone if they are coming. Some girls forget to ask their parents and it buss me because there is only two days left. This story showed how I have been patient waiting for my birthday in three days! But you have to be patient to do fun things I have learned just recently." 10 8 18 3 3 2 2 2 2 2 2 +18615 7 "When I was little we went to @ORGANIZATION1. I was finally big enugh to go on the newest @CAPS1 @CAPS2 ! When we walked up to the line we noticed how many people were there. The line looked as if it were five miles long ! My mom asked me if I wanted to keep going in the huge line or go next time when less people were there. This is what I had been waiting for ! I was not oppernutity. I told her I wanted to keep going and so we kept walking. It took what felt like two days to get to top. My mom and I were so patient !So we waited ,and waited ,and waited .Till we were finally at the top .Then we came down .It had been worth the wait ! we were so patient. I will always remember all the fun I had that day and the great accomplishment. I never knew I could be so patient and my mom and I could wait so long." 8 9 17 2 2 2 2 2 2 2 3 +18616 7 "Buzz, buzz! @CAPS8 I hear @CAPS1 your phone is @CAPS2. so I got up and checked it @NUM1 missed calls. I look who they are from at @NUM2 all from @CAPS6 dad. I felt something was wrong. I called him back and I hear @CAPS1 get ready grandm @CAPS4 I coming to get you. I said it`s @NUM3 @CAPS5 are you nuts? at this time I was at a family members house @CAPS8 @CAPS6 dad said @PERSON2 was in a bad crush. @CAPS6 heart drop and I started crying. get your stuff together and I will call you back with more info. I got off phone @CAPS6 aunt was up she came into the room I told her what I knew. I was getting @CAPS6 stuff together try not ta wake anyone else up. When I was waiting for the call everything went through @CAPS6 mind. I was with him, what happened, is be ok is he going to die? @CAPS8 I heard beep beep I said good bye and ran out. Running made me think of more like: how bad is he hurt, what was he driving, what was he doing out? I got in the car I questioned @CAPS6 grandma asking her where is mom, where is @LOCATION1, where is @CAPS7 are they ok: when will I see him? All I knew in had to be patience. @CAPS8 I got the call I asked @CAPS6 dad what happen what did he hit, who called @NUM4, where do we go? the first thing that came out of @CAPS6 dads mouth was calm down I can`t come home but @PERSON1 will be there I want you to stay with him ok yes dad I will and dad I said you he said back. I said I love you. I love you too he said. The worst time for @CAPS6 life was waiting for @PERSON1. @PERSON1 and @PERSON2 were @CAPS6 dads when @CAPS6 dad wasn`t home. I know I would be fine with @PERSON1. How will be act seeing his bestfriend like that? @PERSON2 and @PERSON1 are fire men I wonder if they knew who helped @PERSON2. I knew he was always there for me. Waiting was hand to do but I had to be patience. I remember closing @CAPS6 eyes and wish it was a dream. Now I get to go in @PERSON1 right behind me walking I seem all the glass on him @CAPS8 dayna said look who is here he opened his eyes they got really big when seen me. @CAPS8 @PERSON2 said @PERSON1 come here @PERSON1 went. @PERSON2 said thank you for taking care of @CAPS6 little sister I love you man. That is the time in @CAPS6 life I had to be patience to see @CAPS6 brother. I didnt care how he looked as long as he is ok." 12 12 24 3 3 3 3 3 3 3 3 +18617 7 "There is this little patience I use a lot go I called it hunting patience. On @DATE1 my dad and I were hunting in @LOCATION1, @CAPS1. we got into our stands baking over a @NUM1 yard bean feild, and not @NUM2 hours later two does walked in from our left they were coming close to @CAPS2. I was about to draw my bow when I look around and saw my dad waiting for @CAPS2 to shoot but when I look in the forest conner of our field I saw a big six point buck standing there not moving. I decied to be patient and see if the buck would come in. I saw I deer move into my blind spot where I couldnt see it, I thought it might leave like that buck last year in my blind spot too. I waited for @NUM3 minutes, just when I thought he left I saw him again coming right for us. It was at @NUM4 then @NUM5 then @NUM6 and stopped. I looked at my dad and nodded to give him the sign to shoot. He under stood drew back his bow and let that arrow fly. The arrow, sailed into the deer and at that moment I know that because of patience we will have some good eating tonight with a party to honer the good days of hunting." 10 11 21 3 3 2 2 3 3 2 3 +18618 7 "It was bright sunny day, and I was playing with my play doe. Finally I finished making my tower it took a hour fixing. I started at it in amazement. I was proud very proud at myself. I got out a piece of play doe and I made it into the @CAPS1 I put it on the top of the tower. Well my five minutes of amazement was near its end @CAPS2! I look up to see that my tower was ruined . I look infront of me and see my neiber I told him why did he do that he said because it`s fun. I told him it`s fun for you but not for me. It took me an hour to finish it it`s a good thing I was patient. He looked down and said @CAPS3 sorry for what I did. I told him it all right, how about if we build it again but even better. He agreed and we both set to work. See how patience is important the problem could have become bigger. The end." 9 10 19 2 3 2 2 2 2 3 3 +18619 7 Once in @NUM1 grade my teacher @PERSON1 asked us to get an A.M.P out. @CAPS1 we all did and quietly we started to work. All of a sudden I was on my last prebblem and I was thinking man already to the end. @CAPS1 I started to work on it I was @CAPS1 confused this probblem was like seventh grade work. @CAPS1 I rased my hand and waited to go on @PERSON1 my hand and told me to go on in my math but I told her I cant go on I am on my last problem. @CAPS2 @PERSON1 went on helping all of the other students and I was waiting and waiting. Finally after she went to eight other people she came and helped me. She showed me how to do the problem and I figured it out. That was the time I waited patiently. 8 10 18 2 2 2 2 2 3 2 3 +18620 7 "Well, one day I saw a commercial on the awesome xbox @NUM1. The commercial said it would be out in @NUM2 weeks. @NUM2 weeks I thought well thats going to take forever so I waited and waited and waited. I glamced at the clock. It said @NUM4, I said, @CAPS1 only been @NUM5 minutes. So I started to play a game and I forgot about the xbox @NUM1. My dad said that we were going shopping to get my x-box. Im like, wow did it fly by. I guess if you dont think about it and be patient it will be over in no time." 7 8 15 2 1 2 2 2 2 2 2 +18621 7 One day my sister had a volley ball tournament. It lasts all day. I just got there the worst time and wary for ????????. I cant complain or I will get in trouble I just have to be patient. I am very patient now because she has a lot of tournaments. When there are finally over my mom usually ?? me for being good the whole time. As you can see being patient is hard but it is a very important trait to have. 6 6 12 1 1 2 2 1 1 2 2 +18622 7 "This is my story about patience. I go to the doctors every @NUM1 months. Me, my brothers and my sister and it takes about @NUM2 to @NUM3 hours. When the doctor ask my brothers questions when he says then I am already coming up with my answer and then its my turn, but before my turn @NUM4 sce the doctor I was ireally patient. Then it took the doctor @NUM5 minutes for my turn to be done and over with. Then he has to talk to my mom that comes my time with lls. When we do to the doctor or dentist we and really patient but it takes time for the doctor or dentist to do what they need to do." 4 7 11 1 1 1 1 1 2 2 2 +18624 7 "Once on @DATE1 break my family and I went to @LOCATION1. While we were at @LOCATION1 we went to a huge water park. My two sisters and I convinced my parents to go there. A few days later we went to the water park. We rented a locker, changed our clothing, and started looking for waterslides. Right as we walked in there was a huge (take) sunken ship. On the very to where zip- lines! We all ran to the ship and realized that there was a line. Not a short line. A giant line. We must have been there @NUM1 minutes waiting. Eventually it came my turn. I grabbed the handle and kicked off the ground. I had almost reached the end when it slowed to a stop. I let go falling into a pool. The wait was totally worth it!" 9 8 17 3 2 2 2 2 2 2 2 +18626 7 "Patience is a virtue. You might hear that phrase a lot if you dislike waiting on things for a long period of time. Heres a question for my audience what is patience? Do you know? Well in my essay, Im going to discuss patience and how it affects our lives. In this day and age, its very hard to come across someone with a decent amount of patience. Due to all the ``@CAPS1 services and goods such as pizza delivery @NUM1 minute wash & dty acts people have begun to lose patience. What our generation has yet to realize is that we need that patience to get good jobs and get nice amounts of money. Another reason people need patience is their family. If you lack patience you wont be able to deal with your young and immature family members. For example I have no patience whatsoever so I cant deal with anyone younger than @NUM1 years old. That will affect me in very negative way. Those are the pros and cons of having patience thank you for reading my essay." 7 7 14 0 2 2 3 0 2 2 3 +18627 7 One time when I was patient is when I was a little kid and my mom said we were going on a top to visit my cousins in @CAPS1 @CAPS2. I was just a little kid so I was very excited to take my first plane ride. When we finally got to @LOCATION1 I was so excited. I asked my mom when we got to the hotel can I go swimming. She told me to just be patient. So when we got to the hotel I was patient as long as I could be then I couldt wait anymore. So I put on my trunks and went swimming with my cousin. And that was a time when I was patient for something. 9 8 17 2 2 2 3 2 2 2 2 +18628 7 "I am going to be writing a time when I was patient. Me and my family went to ceder point. and it was this ride called the @CAPS1 the best, and highest roller coaster at ceder point. So we got in line it was so long we had to wait @NUM1 to get on the ride, because the line was so long. So I had my uncle who wasent getting on the ride to go get me some pop, elephant ears, and some chips because I was so hungry and thirsty. So while I was being patient, my other family was not being very patient. I was the only one patient. So @NUM2 past we still in line my family started fussing. @NUM3 hrs past they were getting madder. Then @NUM4 hrs came we were starting to be able to see the roller coaster and people getting on and off. So finally, we got on the ride, we enjoyed it. Then I had to explain how patient I was. And how unpatient they was not." 8 11 19 2 2 2 2 3 3 2 3 +18629 7 "One day there was a man who was not patient at all. He thougt that everything he wanted would come to him right a way. His name was @PERSON1. @PERSON1 soon reliesed that not everything came right when he wanted it. So he got really mad when he saw a house for sale, it was a really nice house. But the people living in the house werent done moving everything out of the house. Then he discovered that patience is key and that when its time to move in he will. So from that point on he was always patient for the rest of his life." 8 8 16 2 2 2 2 1 2 2 3 +18630 7 "This is a time I was patient. It was a @DATE1 @TIME1 on my birth day, we had @NUM1 boys at my house. We all wanted to play xbox. (@ORGANIZATION1.core @NUM2). Only have @NUM3 controllers. So you now the rule let your geuss no post! They all played ??. @NUM4 minutes! I had to ?? minutes to play my own game! @MONTH1 all my ?? lucky I was patient. I hated sitting there it got me mad plus after a while they didnt ?? play.so I asked my friends @CAPS1 and @PERSON1 if they would play ?? with me. They said yes so after waiting @NUM5 minutes and then nobody wanted to play anymore. It made me feel pretty doing bad! It was my birthday you cant play a little ??. I felt good I stayed patient and didnt go bisunck. This is a time I stayed patient." 8 8 16 2 2 2 2 2 2 2 2 +18631 7 "The clock is ticking down, waiting , ready, ready to burst into a ???. A never before been @CAPS1, the @NUM1 is planted at the white @ORGANIZATION1, patience is key because with this @CAPS1, anybody that attempts to defuse this @CAPS1 except form the last minute of the count down to certain destruction will detonate this explosive. The alpha @NUM2 @CAPS1 say is waiting, waiting for the right time. @NUM3 minutes left, @NUM4 minutes left, @NUM5 minutes left, @NUM6 minute. @CAPS2, @CAPS2! yelled , @PERSON1, the leader of the saved. This our only chance to save the white @ORGANIZATION1. Time is running out, @NUM7 seconds of pole preggrare riding on our shoulders, the fate of the white @ORGANIZATION1 is in our hards. The enemgs are calling in fantry , just as all hone is lost , I got it! I exclaimed . All that was left was to ??? and let the army do the work. We rushed to the van with our shields out and pummled through the defenses. Suddenly, we heard a strong noise and we noticed and charge on the bottom of the van, we ran for our life white our night eaupped van exploded to pieces right behind us. We lives patiently waiting for the patrol to walk by. We just need to cross the field to the army hetiepter and were home free. We sprint across the field and victory is ours. A sense of accomplishment and greatness rushes through me." 12 12 24 3 3 3 3 3 3 3 3 +18632 7 "It was @CAPS1 @CAPS2 I was up watching tv waiting an waiting for @CAPS1 and I was being patient and not pouty because I wanted @LOCATION1 to come to my house and, they were playing @CAPS1 tv shows and it was making me so excited and it felt like my heal was about to burst but I being patient. Then my mom said it was time to go to bed so I because I wanted @LOCATION1 to come to my house. But the only problem is I couldnt sleep so I went to get a glass of water and I turned on the tv queitly and on acident I feel asleep on the couch and next thing I new it was @CAPS1 and the had went by so fast that it felt like it was @CAPS1 in @NUM1 minutes. Because I was patient." 9 8 17 2 2 2 3 2 2 2 2 +18633 7 "I have been patient many time here are a few of them. First, I was patient for my friend. I patient with him because we were going to walk to school. He told me one minute, but it was more like twenty. We barely made it to first hour. Another way I was patient was when my mom and I went to go get my new shoes from @ORGANIZATION1. When my mom and I were waiting the man in the store went to go get the shoes. The man walked back there and took like a half an hour. But it was worth it for my new shoes. These are only a few ways I was patient." 5 6 11 1 1 1 2 1 1 2 2 +18634 7 "Patience is like waiting for something and not froaring out. Imagine if no one had patience everything would suck. Picture this your at the store there is a line at the register, no patience and people are fighting to get to it. Knowing that most people have patience that would not happen. Since the people have patience the world has order so if you think about it it's a good thing." 5 4 9 0 1 2 2 1 1 1 1 +18635 7 A time when I was patient was on the city bus. So me and my mom could go to walmart. We waited for @NUM1 hours till we got there. Before we got on we had to pay a @MONEY1 each. Then ask for transfer very nicely. T hen hop on another bus then get off and go shopping. Then wait till bus comes back and go home after @NUM1 hours. Then get of bus at the corner and walk back to the house. 6 8 14 2 2 1 1 2 2 2 2 +18636 7 "Just before @DATE2 break, in the fourth grade, there was a @CAPS1 party at my neighbors house. My parents and I were invited, and since we didnt have plans, we decided to go to the party. The party was spectacular! There were stockings hung over the fireplace, green and red streamers everywhere, and huge @CAPS1 tree in the living room. Under the @CAPS1 tree, there was a large pile of presents-each one for the children. My neighbor saw me staring at the presents, so he walked over, picked up a present, and handed it to me. The present was a rectangular shape wrapped in blue gift wrap decorated with snowflakes. On the front was my name in marker. I was about to open my present when my neighbor told me to wait. He said that if I opened it now, I would only get one gift. If I waited until @CAPS1 morning to open it, I would get two gifts. I didnt understand it at first, but he said I soon would. @CAPS1 was a week away! How in the world was I suppose to wait until then? Of course I wanted two gifts, so I told my neighbor I would wait. Deep down inside though, I wanted to tear the present right open. The days dragged on. Why was the week going by so slowly? As @CAPS1 drew near, I grew impatient. I almost opened my present three days before @CAPS1. Finally, on the twenty-fifth of @DATE1, I was able to open my present. Instead of quickly unwrapping it like I planned to, I slowly tore the paper away and found a lovely velvet diary with golden boarders. Inside was a note: @CAPS7 only have you earned yourself a new diary, you now have the gift of patience. Now I understood." 12 12 24 3 3 3 3 3 3 3 3 +18637 7 "This is the time when I was patient. One @DATE1 day I was playing with my @CAPS1 @NUM1 game, I told my mum I wanted a new game, because my games were kinda old. My mum said ""@CAPS3 sweetie just be patient"" I was patient for a month. My brother asked my mom for a new game and he got it the next day. My sister wanted a curling machine she got that to. So I just keep waiting and I was also patient. My dad came back from @LOCATION1, and I asked him. I said, ""dad can you get me a new @CAPS1 @NUM1 game?"" ""@CAPS3 honey but I can't get it now. You just have to be patient."" ""ugh okay!"" I hollered to the next day my dad had already gotten what my brothe and sister wanted, and I was the only one who my dad and mom that never gotten my game yet. So I still waited, and waited until my dad took me to the video store. I was so happy even though my sister and brother gotten what they wanted. I still got my game. Waiting is not that hard just takes patience. Thats how patience helps you ecomplish what you want." 10 11 21 2 3 2 3 3 3 2 3 +18638 7 To me patience means that you are ready to wait a long time to do something. I was somewhat patient when I was delayed at a airport then canceld it was not very fun because I didnt eat all afternoon. But I was happy because I had my ds. The story was we went to @LOCATION1 on the @NUM1 for vacation to disney land. It was snowing when we reached the airport. We had to hurry through the check line and the security. When we got to the boarding gat we looked for where we had to board. I saw that our flight was delayed that ment we had to stay here in the airport. I aleast saw that we were going to new @LOCATION2 first then to @LOCATION1 but I stayed patient. Well thats the day I stayed very very patient. 5 8 13 1 1 1 2 2 2 2 2 +18639 7 "I was patient for @DATE1 @CAPS1 @DATE1 present. It was almost @DATE1 @CAPS1 @DATE1 and I m kept asking for @DATE1 presents, but @DATE1 mom kept saying no. it was getting closer and closer and I kept asking, until @DATE1 mom said be patient you will get them don't worry, but of course I had a hard time being patient. Final it was the @DATE1 and I couldn't wait but I had to. @DATE1 I went to bed I asked once more and again she said no. The @DATE1 come and I went to school. I was so happy because today was @DATE1 @DATE1 and I got present's to @DATE1, I got home and @DATE1 mom was waiting with a cake and a present, she said ""there are more "". That was the t i tryed being patient." 6 8 14 1 2 1 2 2 2 2 2 +18640 7 "@CAPS2 was a dark saddanly night we went to go pick up some subway for my family. Boom, a struck of lightning @CAPS1 every thing went dark. The manger came out every body be calme she and use navy blue flash lights we couldn’t get to our car because @CAPS2 was raining & thundering so hard we were scared we were going get shocked. So we waited growl, whent my tummy.”I‘m hungry” so me and my grandmother asked can we still get our subs made because we have light. The manger said “okay”. She told the worker to get back to work. @NUM1 min later the manger started passing out subs chips, soda, and cookies @CAPS2 was @NUM2 pm. We all ate drank I felt asleep. We all woke up the next morning sun shing lights on. So we all walked out to our cars smelling like break & meat. That was the best patient day of my life." 10 8 18 3 3 2 2 2 2 2 2 +18641 7 "I ride a beautiful paint horse named @CAPS1, she has one blue eye and one brown eye. One side of her is completely with and the other side has brown patches. @CAPS1 is a plump horse, and she loves treats! When I am putting tack on her she knows that she will get treats, but she has to wait unit I put her bridle on, and until she takes her bit, then she can have her treat. Since I am a new rider I make mistakes quite frequently, so @CAPS1 has to be patient with me when I ride her. When I make mistakes or I upset @CAPS1 she is patient most of the time. I try my best and so does @CAPS1, but I'm no where near being the perfect rider so @CAPS1 has to put up with me. After @CAPS1 and I are done riding I untack and brush her, after I'm done my instructor tells me to get @CAPS1 a treat. @CAPS1 watched me walk down the long role of stall, and patiently waits until I come back with her treat. Once she done with her treat I let her out into the paddock to play with her friends. @CAPS1 then run to her friends after, a drink of water, and doesn't have to patient anymore for a while." 8 9 17 0 3 2 3 2 2 2 3 +18642 7 "A time I had to be patient was when we went to @LOCATION2. It was a @NUM1 hour flight with a two hour layover in @LOCATION1. It was really hard for me to be patient because I really wanted to go to @LOCATION2. In the layover to pass time I listend to my ipod and used my macbook pro to get on face book. It really helped me be patient because it took my mind of @LOCATION2 and we were in @LOCATION2 in know time, and when we arrived my patients paid of because I got to swim on beaches and party I @LOCATION2 for @DATE1 break @DATE2 that is my story about a time I was patient." 8 8 16 2 2 2 2 2 2 2 2 +18643 7 "There was @NUM1 girls and there mom was gay and she took them to motel for the middle childs b-day. It was all good units the moms girlfried cathy and my mom @CAPS1 went out to go get presents for @CAPS2 so it was the ddest @CAPS3 middle @CAPS2 baby meme. Well they left and left @CAPS4 and the girls at the motel. They came back @NUM2 later. So then @CAPS1 was walking back to get us and I notice she wasnt in the van so I start crying when she told one that cahty got took to jail and we had no money, no was, we didn't now anyone so we had to go to this gas station and me and my sister were siting on the curb and my mom went across the street buse the pay phone. We had to wait patiently in the cold winter. Untill @NUM3 really nice ladies saw us sitting on the cold an big us up and that show I moved to bangor from southhaven." 7 8 15 1 2 2 2 2 2 2 2 +18644 7 "A time when I was patient was when I waiting in the hospital One time when my grandma went to the hospital for passing out and not breathing. When we got to the hospital we couldnt go and see her for a long time. My mom, brother, cousins, uncle were just sitting waiting very patiently. When the next day came we still couldnt see her which was sad and scary. My uncle took us to get something to eat while my mom stayed at the hospital. When we came back to the hospital my mom was very upset because we couldnt see her at all. The doctor came out and said we can see her. When we got into the room she was sitting up smiling. My mom told her that it took forever for us to see you. My granny scud the doctor said it wasnt a really big deal. We stayed at the hospital for like @NUM1 more hours and then we left but my mom stayed. In conclusion I told you when I was patient at the hospital. Even though we wanted to run in but we didnt and we stayed very calm. This is the time I was patient." 9 8 17 2 2 2 3 2 2 2 2 +18645 7 Being patient is a good thing. Sometimes impatient @CAPS1 sometimes im not its better to be patient. My cousin is patient so when I tell her to wait and be patient she will wait as long as she want. My other causins tell me to be patient and I will just be waiting for a while and I ask then hurry and they tell me to learn to be patient. My cousin was trying to teach me how to be patient and we tRied. So now I can stay longer being patient. 4 5 9 0 1 1 2 1 1 1 2 +18646 7 "I was in class waiting I new that it would come soon. The time was almost here, but I was still waiting for the first class to yet over. Which was math. Personally I didn't like math all that much so unfortunately l had to wait. @NUM1 more minutes and l was home free. The time had come and l was happy. @PERSON1 said ""@CAPS1 your folder away"" @CAPS2! I @CAPS1 it away faster than I can say supercal fraja list expeal & docinus. So then in his voice he said ""You @MONTH1 go to lunch"" I hurried and I was going to be the first one there I almost thought I wasn't patient enough but l was. I booked it there home free. When l relized a figure in front of me. ""no"" l said. I was defeated by a girl! I was devastaded that is my story and I'm stick to it." 12 8 20 3 3 3 3 2 2 2 2 +18647 7 "When most people think of patience they think of waiting. But thats only half of it. Patience is waiting with out complaining, like when I went to the @ORGANIZATION1. It was about a five hour drive. I know that doesnt seem like a lot but I @CAPS1 corridor. I just @CAPS1 them pure and simple. But me and my brother didnt complain, mainly because the knight before our mom said two complained well sit with her in the hotel room the whole time. Isnt that scary, so we finally go there .The week was fun, we ate good food played sweet games and went to an awsome museum. But on the ride back it was another trial of patience, even more so because we got in an accident." 10 8 18 2 2 3 3 2 2 2 2 +18648 7 "In @DATE1 my dad had a business trip in @CAPS1 dinsney land. We got to the park and rode some rides .My dad had to leave for a meeting, so he did. After a while I saw something cool, space @CAPS2. I got in line and I saw a sign, @NUM1 hours until lift off! My mom was shocked so we left. I was so disapointed. We came back the next day and the wait was @NUM2 hours. We got in line and waited and waited and waited. After @NUM3 minutes I was bored. I asked my mom if we could leave but the line was to big to get out. After hours that seemed like years we got to the front, but my sister wanted to leave! My mom got out of line and so did my sister, but I stay. I waited all by myself for @NUM4 minutes when I got on the coaster! It was fun, and I got a fastoas for @NUM5 other rides! In the end my patience paid off." 10 8 18 3 2 2 3 2 2 2 2 +18649 7 It was late @DATE1 when my @CAPS1 is and I was going to @CAPS2 point for my @CAPS1. So we take forever to drive there just sitting in the back sent all alone back there no one to talk to but my phone. So we finally get there wasting all my patients on being in the car after we get in we go on the @CAPS4 @NUM1 @CAPS5 wait to ride a @NUM1 minute ride it is worth it but still @NUM1 hours is a lot of time. So I m waiting then we get off the ride they we go on the @CAPS6 @NUM4 @CAPS5 line for @NUM5 second ride. All the rides there were at least 1-@NUM1 hours long. Except one ride the @CAPS7 we got there before the crowd came in. So it was on leg @NUM7 minutes and @CAPS8 the time we got on the ride and at the top of the hill it was probably a @CAPS5 line. So we really lucked out on that one. But @CAPS8 the time the park closed and we got to our car there was a huge traffic jam and that was all the patients left so we were in line to leave the park for another @CAPS5 and a half so we waited and waited and finaly it moved and once we got through the park and out of it the road we had to take was closed because of a car accident so we had to talk this huge detoer that added a @CAPS5 to our time because of traffic taking that way and @CAPS8 the time we got to our hotel I didnt have one drop of patients left I felt like I was going to blow up but I didnt I acted very patient but it was a good thing I have a lot of patients. 8 10 18 2 2 2 2 2 3 2 3 +18650 7 "A time when I was patient, was when I went to @CAPS1 point with @CAPS6 family and @CAPS6 friend @LOCATION1. We rode some rides, then @CAPS6 sister said can we ride the @CAPS2 @CAPS3 again? I replied sure, even though it was our fifth time riding the ride. @CAPS6 sister and I went and stood in line for the ride. I said we should ride front row. @CAPS4 said we should. @CAPS5 we went to the front row and the line was packed. @CAPS5 we waited twenty minutes or @CAPS5 when someone threw up on another cart. The employies had to clean up the barf, which took another twenty minutes. @CAPS5 we kept waiting and waiting un till they let us on. After the ride, I exclaimed who would barf on a ride like @CAPS7, @CAPS6 dad replied I dont know. @CAPS7 day is a day that I rember @CAPS6 patience because I waited forty to sixty minutes for a ride that wasent worth the wait. What was worth the wait is seeing the smile on @CAPS6 sisters face and her laughing." 10 12 22 2 3 2 3 3 3 3 3 +18651 7 "I know a lot of patient people, and I have had many expierences that have to do with patience. My friend, @PERSON1, is usually impatient. Whenever she is waiting for something she texts me saying, @CAPS1! or, @CAPS2 onnn! @CAPS3 one day she was actually very patient. My family, @PERSON1, and I were going to the zoo one @DATE1 @TIME1. We brought snacks and packed everything the day before. We were going to pick @PERSON1 up from her house and @CAPS3 go to the zoo. But my mom slept in and she still had to take a shower! She said we would pick up @PERSON1 on the way to the zoo around @NUM1 am, and it was already @NUM2 am. We were running late and I thought @PERSON1 was going to get mad. Fortunatly, @PERSON1 wasnt mad! She was understanding and said that it was ok. Usually, she would say something like, @CAPS4, where are you? Why are you taking so long? @CAPS5 time she didnt say any of that. We ended up going to the zoo around noon, but it was all fun and joy! I have had expieriences with many patient people and @CAPS5 expierience turned out to be fun!" 12 9 21 3 3 3 3 2 2 2 3 +18652 7 "I think patience is all about waiting for something you want to happen or you dont want to happen. Sometimes it hits uninspected. Specaly at cedar point you need a lot of patience. Beep! Beep! I hit my alarm clock with all my force so I hope the thing would turn off. Butt @DATE1 I was going to cedar point and I count wait. So I got up took a shower and ate breakfast which was great my mom made blueberry mudines. I got all of my close pack a week early because, I was so edsited. I put my clothes in the car and my brother, sister, mom, dads so we could get going quicker. The car ride wasnt so grate because, it was three hours long but we had a tv in our carso it didnt take as long as it normally does because, were occupied so it is like a shorter car ride for my brother sister and I. When we got into the howtell it was awesome because, it was like @NUM1 storys high. And we also had to use the elevator to get to our room ont @NUM2 floor. My sister was amazed by all of the stuffed animals and wainted to buy the furry things but she couldnt. My mom woke us up come on the rides open in about @NUM3 min we got be there. So I raced up out of bed running around like I got fire on my butt trying to find my clothes. So found all of my clothes and raced around to get my shoes on the others side of the bed. So by the time we were all up dressed and showered the rides have been going on for an hour so we walk over to the gate and got the one ride called million ofcare. The sigh said @NUM4 hours wait sorry the ride is know just to got started because of difficutys with the seatbelts and others technical difuctlelys sorry. So my mom said wait here at ride it is realy fun. So was waited and waited I have no patience any more I will buy you a hot dog after this so I did and the ride was a blast @NUM1 hours at the park. Was fun but we had to go tomorow. And I got my hot dog. That was my story of being patience at cedar point when all is you want to do was have fun. Sometimes you got to be patinced to get what you want." 11 12 23 3 3 2 3 3 3 3 3 +18653 7 "One hot @DATE1 day my family and I went to @ORGANIZATION1. There was a new ride open called shoot the rapids. It was a brown tall water ride with a tunnel and two hills. As we walked over to see how long the wait was it said @NUM1 hour wait. We all really wanted to go on it so we decided to wait. When we got in the line it was about @NUM2 outside, we were all sweating. And to make things worse there was this annoying little boy talking to me about some food or something. It was really annoying. We were about half way threw the line when my nerves kicked in I was really scared but I knew I had to be brave and suck it up. About @NUM3. Later we were @NUM4 people away from the ride. My heart was pounding, my knees were shaking. I thought I was going to die. Then all of a sudden it broke down. We had to wait another @NUM5. As time past we finally got on the water ride. I regret it. I screamed and cried but Im glad. I didnt chicken out. That was a time I had patience and regret it." 12 11 23 3 3 3 3 3 3 2 3 +18654 7 One time I had to be really patient when my grandma said there was something in the mail for me. I was so excited. I waited and waited but nothing showed up. Then I started getting unpatient. My grandma said @CAPS1 keep waiting it will come soon. So I did what my grandma said and the next day a big package came. I was so happy it was finally here. My uncle had sent all my sisters and I some new sneakers. Also we all got @NUM1 players. I was so happy that me being patient had finally been something worth. 8 8 16 2 2 2 2 2 2 2 2 +18655 7 "One day when I was in third grade @DATE1. My mom was driving me to school and she said When I pick you up today I have surprise for you at how. @CAPS1 that whole day I had to be patient but I couldnt I just had to get home to see what is was .I could have pretended I was sick and went home but I decided to just calm down and be patient . I told myself the school day. Will be over soon. At @NUM1 left school and my mom pick me up. I told her I was @CAPS1 excited to see what she had for me but I told her I was patient the whole school day! Finally we got and she told me to go to my room ,I said okay when I got inside I sawa little cute ,black pup pled I was soon happy I got a dog ! I said thank mom thank you sos much dad I end naming her chioe." 11 10 21 3 3 3 2 3 3 2 2 +18656 7 "Being patient is a very hard and difficult thing to do sometimes, but we have to go throught it. Being the one who is patient usually pays off. We were on our way to the airport and me and my two younger brothers couldnt wait to get to @LOCATION1. We got to the airport thinking we would get right on the airplane. But when we got there we found out we had to wait @NUM1 hours until the plane left and wed be on our way to @LOCATION1. So we decided to play our games we brought with us. We were being very patient. Finally it was time for us to get on the plane. We walked through the long tube that leads to the airplane door. We sat in our seats, buckled up and we were ready for takeoff. We heard the pilot talk into speakers Im very sorry, but there is a severe thunderstorm appearing on the radar, we @MONTH1 not proceed until it clears up. @CAPS1!? @CAPS2 long will it take? asked my mom. About five hours, she said. Its a good thing we brought our @CAPS3 player so that would hold us off for about two hours. For the rest of the time, played, slept, and just waited patiently. The flight attendant came up to us and said that since we very patient for the whole five hours, even my three year old brother, she would reward us with five @ORGANIZATION1 world pass tickets for my family. In conclusion, when you are patient, no matter @CAPS2 hard it is you will maybe get rewarded just like my family." 12 12 24 3 3 3 3 3 3 3 3 +18657 7 "Patient is a great thing. It means to be understanding and calm. Sometimes people can take difficulties and pain and still stay calm. Any time when your brother or sister annoys you your still patient and never little back. @CAPS1! @CAPS2 up already!! @CAPS3 my brother. @CAPS4 I m awake! I hollered. I took in a huge gulp of air and let it out with a sigh. I m soo bred! my brother shouted in my face, can we @CAPS13 walking I was counting past ten in my mind and then finally spoke @CAPS7. I got my coat off the rack followed by little brother. We walked outside right when we saw my mom coming to give meachore. Youll have to cut the grass to day and rake the leaves. @CAPS5 said calmly, @CAPS6 you walk your little brother . @CAPS7, I was completely furious @CAPS12 the inside. I tried to keep calm, but the that didnt last long, @CAPS8 @CAPS9! my brothers friend said cheer fully, can you come over and play?@CAPS10 asked him my brother looked up at me and I was closing my eyes breaking wont out. I stammered walking back home. I grabbed the learn mower and right when I was about to turn it @CAPS12 @CAPS11, get inside and start your home work. . . Then, you can not the down! One two. . There I counted silently. I walked with a fake grin @CAPS12 my face. @CAPS12 the other hand @CAPS13 take out the trash! One hundred seventy-five! Kept counting. I ran down stair grabbed the trash and walked to the trash can as I dropped the garb age inside I tried to put my self in a happy place @CAPS1! I sped inside to gaze at @CAPS24 had happened, it turnout my sister broke my x box @CAPS12 the tites because @CAPS5 wanted to play. If get passed @NUM1 in counting in my brain I m going to @CAPS15! I thought. I held my little sister and gave her to my mom. @CAPS5 broke my x box! I repeated @CAPS17 @CAPS7, your dat will fix it . @CAPS5 said calmly @CAPS19 @CAPS13 get your brother, @CAPS4 I speed walked down to my brothers friend house and told him I had to get my brother. @CAPS7 @CAPS22! @CAPS10 shouted your brother is here to get you. @CAPS23! I urged to stay silent and patient and I managed to. We walked back home and I threw my self @CAPS12 my bed. @CAPS24 a borins day! I spoke to myself. I dont think I m ever going to be this patient in my life again!! And I smacked my head @CAPS12 the pillow and said @CAPS25 @CAPS26! and went to bed. Wow! @CAPS24 a day! Patience means to be understanding and calm. Patience great. I tried and learned a powerful lesson, always try. My life is way better @CAPS19 I bays try to stay patient and never hit my brother or sister even though they get me @NUM2 mad sometimes. The @CAPS26 would be better if everyone would just stay patient, people have to try to checeed, its a very very famous phrase." 11 12 23 3 2 3 3 3 3 3 3 +18658 7 "Its like when your wating in line thats patience. Or like when you kep on rasing your hand the techer kep on saying do your work and you does l it a gen she will say, if you do that agen you will go to the chouse room. Thats when a teacher loses her patience." 3 4 7 0 1 1 1 1 1 1 1 +18659 7 "I am writing about a time when I was patient. The time I was patient is when it wast the first week of football. We went town to subway before the game and got a cub. I was the first one in line but then I was folowed by other people olny one cut me at first but then others followed and I became the last one in line, it felt like an hour in line! Finally I was up next I got my sub. It had turkey, lettuce, pickles, banana, pepper, cucumbers and great frech spinach. It rearned something in that line being patient realy pays off and by the time in at back. It had over been @NUM1 minutes. I sighed in relief. We were pumped for our first games we played starta we tied it though but that was still a great day!" 6 8 14 1 2 2 1 2 2 2 2 +18660 7 "The time I was.One after school I was walking home with my friends from school. @CAPS3 knowing me I wanted something to eat @CAPS3 I told my friends to come in @LOCATION1s rest (its a fast food restaurant.) @CAPS1 we walk in @LOCATION1s ,the place is crowded @CAPS3 I waited in line after about @NUM1 minutes my friends said @CAPS2 man lets go @CAPS3 I say Ill meet you guys outside alright they said. A bout @NUM2 minites later it was my turn to order and I order a double stack and some fries and I got free milkshake for my patience she asked what kind did @CAPS4 I said strawberry and I didnt had to pay for ??? was totally free and I went outside and a told my friends I got this for free and then they said oooooooh, thats when we went home." 8 8 16 2 2 2 2 2 2 2 2 +18661 7 "About @NUM1 weeks ago I order a look series at border online, I had to be very patient so it would feel like @NUM2 year of waiting. This book series was not like any book series @CAPS1 books are my favorite book theyre call the @LOCATION1 series. I have read the series @NUM1 times and I am still reading them. But, I had to wate to get them. I trying to patient, but it was hard. The mailing date said in less than @NUM4 hour. I had to wate for @NUM5 day before it a came, When I forget about them they come! Being patient is a good qulatie people can have. So if your patient you will probably get what you want." 9 8 17 2 2 2 3 2 2 2 2 +18662 7 "A time that I was patient was when I took my first @CAPS1 test this year. The test was not too hard, but not easy. I finished it with about one and a half hours left. For an hour and a half I had nothing to do but just sit perfectly still and silent. Sitting still and quiet for even five minutes is hard for a @NUM1 year old, imagine @NUM2 minutes! At first I was fidgeting, then my neck started to hurt, so I layed my head down. I closed my eyes and just layed there perfectly quiet and still. Soon enough the time flew by and the @CAPS2.E.A.P was over (done for the day). I was very proud of myself for being patient and calm during those @NUM2 minutes." 9 9 18 2 2 2 3 2 2 2 3 +18663 7 "Hi my name is @PERSON1 and Im going to tell you a story about how one time I was patience. I remember when I was patience. It was chismis day. There was tons and tons of precidens under the tree. There was tiny ones all the way to hamuges ones. But I couldnt even peek at them because my mom and dad were still not up. I wanted to go into my moms and dads room and wake them up. But no without some brekfast in bed, so when I wake them up they can hurry up and eat so can open my precidens. After my mom and dad were done eating I finally got to open my precidents." 8 8 16 2 2 2 2 2 2 2 2 +18664 7 "Patient is when you are tolerant and understanding. Many people @CAPS4t have patience, while others do. I am sort of in the middle, but heres a time I had to be very patient. It was a bright and sunny @DATE2 @TIME1. The sun was shining like theres no tomorrow. To bad I couldnt play outside. I was to busy kicking back, eating popcorn, and watching a big event. It could give me bragging rights I figure I need some hope and patience.. @CAPS1 ,my brother yelled all happy and in my face. @CAPS2 @CAPS2 loser , lions are winning and steelers are loosing he added. @CAPS4t get to happy , theres still plenty of time left. I replied, with a worried look on my face. I was afraid that I d loose, but taking deep brother in and out, I was very patient. The clock winding down. It was the being of the @DATE1. The score was @NUM1 to @NUM2, lions lead. I was still a bit worried, but I never lost hope. As the game was coming to an end, the @DATE1 back I for the steepless made an awsorde pass and @CAPS1 I screamed dancing and jumping around. I told my brother, who is the loser now, huh? wow all it took was patient, and hope I told myself. Patient can mean a lot. Not only did I learn that me and my brother can get a little competive but if you just wait and tolerate whats happening around you, youll end up getting rewarded!." 10 9 19 2 3 3 2 2 2 3 2 +18666 7 "I guess you could say that patience is one of my bang talents. I go through many things that involve patience and a ve it through without awed . Everything knows that the wortplore to be patient in is church eserc?????? On chass?????. You are up, then meel down, then start , the sit then, @PERSON1 and ok! It @CAPS1 on forever. Boh so I know that there are a lot of kids that went as patent as me, some of them have @CAPS2 @CAPS3 of other lirastings that make them impatient while others in just ???? you are. I know ??? People who are like that there reals anersetic???? ???? cant here still I know that wostoe there nopele struggle in school and I feel bad foe them. There are times that start to feel impatient when there are other people???? that are impatient. Its worst is I sat impatient with them and I set frustrate because no matter ???? ?? times I tell them to stre tuppin, there pencil as to stop complaining the just dont stop. I guess what Im saying is that every bodys different some people are quiet and someone but, some peak are atutatic while others are academic. Is no different with patience" 6 8 14 0 2 2 2 2 2 2 2 +18667 7 "There was a fish named @CAPS1. @CAPS6 live around the @CAPS2 archipelago, a dangerous place for fish that couldn't slow down quickly. Luckily, @CAPS1 was the legendary many codscanth all that specif does is float slowly. Yesterday, @CAPS1 caught two fish and gave them to his wife. Today all of fish are in the desert, which @CAPS1 absolutely despises. Using his patience, @CAPS6 waits for something to jump out. Suddenly, @CAPS6 sees a big chunk of meat on something shiny. At was too far away to grab, though. @CAPS6 went home to his wife. The next day, @CAPS6 went to the current and saw the floating meat again. @CAPS6 lunged for it and started chewing when something stabbed him. @CAPS1 started pulling fiercly when @CAPS6 heard a snap. When @CAPS6 tugged again @CAPS6 fell into the current. @CAPS6 was finnaly free! @CAPS6 also realized the current felt pretty nice. @CAPS6 ate a couple of fish and slept. When @CAPS6 woke up, @CAPS6 saw a big ugly fish standing on two fins. @CAPS1 couldn't breath and @CAPS6 was in a not @CAPS6 snapped at one of the fins of the other fish and died." 10 11 21 1 3 3 3 2 3 3 3 +18668 7 "In sports you always have to be patient. Like if your not making any shots or someone is getting the best of you. If your patient and keep working hard sooner or later you will make these shots or get the best of that player. @PERSON1 was very patient in his basketball career. At @PERSON2 high where he went to high school he wasnt the biggest, fastest, the strongest, or even the best, but he was patient. When he was a @CAPS1 in high school he frield out for the varsity, but didnt make it. He was so upset with himself and the coaches because he felt like he shouldve made the team. His mom went fo him and told him not to give up. Unlike most kids @PERSON1 didnt quit or tell himself that he wasnt good enough. He stayed patient and kept working hard. All that worked paid off because the next year he made the team. He went on to go @LOCATION1. He won a championship there with a game winning shot. He went on to get drafted by the @CAPS2 in the @ORGANIZATION1 draft. The @CAPS3s were one of the worst teams in the @ORGANIZATION1. It took a couple years for @PERSON1 to win his first @ORGANIZATION1 championship. During his first couple seasons @PERSON1 stayed calm and on to win five more championships. In his last one @PERSON1 was getting older and he knew he would be tested. They made it to the finals. The @CAPS2 were getting tired though. They went down in the series @NUM1. @PERSON1 and the @CAPS2 kept pushing and kept fighting. Finally the @CAPS2 won their sixth @ORGANIZATION1 championship. @PERSON1 was put in some tough situations, but he stayed patient and played like an all-star." 9 11 20 2 2 2 3 3 3 2 3 +18669 7 The day I was patient is was at campand I was on it ?? course the person in front of me ??to so up so I had to be patient.when I got up and wentthrew the first ???obstacle he was waiting on the platform. I had to wait until they took him down.then I finally got to go out when I got half way thruw the obstacle they told me I had to be patient and wait until all the people got off that platform. It took a couple of minutes but then I finally got to go ??? that was the day I had to be patient 8 8 16 2 2 2 2 2 2 2 2 +18670 7 "My mom is very patient woman. She shows it by helping my brother @PERSON1, with his homework. @PERSON1 hates every thing about doing his homework. He hates, doing his math, reading, but most of all he hates, spelling. When my mom is helping him with all three of thoose things she shows patience because since he hates all of thoos homework assignments he doesnt always do them without a sit. When he does throw a fit she is very patient with him and works on it with him until he is done that is how my mom shows patience." 5 8 13 0 1 2 2 2 2 2 2 +18671 7 "Waiting to be the best. Music is pretty much my life, I love the way A song can make you feel, I love how walking a line on the @ORGANIZATION1 can change your day. As a young musician I all I can ever think about is music, I had reache my @NUM1 instrument @CAPS1, @ORGANIZATION2, @CAPS2, @ORGANIZATION1, the only instrument my family owns I cant play is the bass. So when my @ORGANIZATION2 broke I took mr.groth up on his need for a @CAPS3 in @CAPS4 band. I studied my butt of learning the art of the bass @ORGANIZATION1, reading the clef and learning the notes, I was waiting for my ranking to increase and memorization and I quickly fell in love with the instrument. I soon became better and it seemed each week I got better and better. I had easily fell in love with the sounds it made and I had found I loved it way more than the @ORGANIZATION2, shure it will take time to become a pro but I u learned its worth it ." 8 12 20 2 2 2 2 3 3 3 3 +18672 7 When I first saw my puppy @CAPS3 were at @ORGANIZATION2. The @CAPS1 @CAPS2 brought over some dog to be rescued @CAPS3 saw all six dogs second one I saw I knew he was going to be mine. So @CAPS3 got him out the lady said that hes scared and he gets carsick but I didnt care he was my favorite. @CAPS3 said @CAPS3 wanted him so she told us to go to the @CAPS1 @CAPS2 and tell them @CAPS3 wanted @CAPS4 so @CAPS3 raced to the @CAPS1 @CAPS2 and on the way there @CAPS3 thought of names. My dad came up with the name @CAPS6 @CAPS3 liked it so that was his name I had to wait a whole week before I could take him home but as long as I got my puppy I was fine @CAPS3 got him a toy when @CAPS3 went back to see him I had it with every night knowing I was closer and closer to getting him the day finally came. @CAPS3 told my brother @CAPS3 were going fishing since he didnt know @CAPS3 were getting a dog. But once @CAPS3 there I ran inside to go see him @CAPS3 took him home he was afraid of everything even leaves outside. But @CAPS7 he loves chasing leaves and playing in the snow. And every night I tell @CAPS6 its bed time and I sleep with my wonderful @ORGANIZATION1. Because if you want something bad enough patient is the key. 9 8 17 3 2 2 2 2 2 2 2 +18674 7 "My dad has a girlfriend named @PERSON1. She has two kids, one thats seven years old, and one that is four years old. The oldest one is @PERSON2, @CAPS1 loves to skateboard. The youngest one is @LOCATION1. @CAPS1 is kind of a spaz and if you jumped out of a airplane, @CAPS1 would too. This one day @PERSON2 and I were going to go skateboarding at a park, @PERSON3 wanted to come but @CAPS1 didnt even know how to ride a skateboard. @PERSON2 went over to the park and when we got there, @CAPS1 realized @CAPS1 didnt have his skateboard. I had to let him use my skateboard ??? ???. I didnt have a problem with him useing it, its just that I didnt get to use it." 9 9 18 2 2 2 3 2 2 2 3 +18675 7 "I belive that patients means that you are understand and tolerant and that a patient person. experiences difficulties without complaining. This story is about the time I was patient with my little brother. @CAPS1, @CAPS1, @CAPS1. Five more minutes I metered after about fifteen more steps from the alarm clock. I jumped out of bed remembering that I was babysitting my little brother ??? I take the crispy ??? I thought to myself, as I tryed to swallow the rock heart breakfast on my plates. I quickly take a shower and get dress into jeans and t shirt. At the time @PERSON1 was about two years old??? Missed there service he could walk. Hes ??? it hard for anyone to be patient with him because of all his desators that he has created. But he was no cute that it was extrendy hard to stay mad at him. When I heard the sound of a car entering our??? I knew we a met @CAPS3 the ??? comes in the house I went up to his aril where he sat ??? writtig for someone to get it out I dressed him ??? and adresible baby to him I brought him to the kichen and make ???? witch were much luther than my usefull. Crunch crunch went the colorful. Lenser under??? As we plays outside. After game, played car for a while it was dinner we had more and before we know it was nite time I sat he in the bath and then went to go get him went it came back ??? the whole bathroom was wet with warm bath water when I ??? and dressed, @CAPS3 was not in the tap I ??? as of water to him when I was about to ??? and helped him got." 8 6 14 2 2 2 2 2 2 1 1 +18676 7 I have been a patient man in my life. An example is when I wanted to see @LOCATION1 their was a @CAPS1 line. I was in the mall and from where @LOCATION1 was it went all the way to the street. It was @NUM1 and my bedtime is @NUM2 so I had to hurry up. My sister and I ran to the back of the line where me and our parents were. They saved us a spot in line. It was all ready @NUM3 after @NUM4 and the line didnt even move. I was so mad. Every @NUM5 the line would scoot to a bit. When I was about to leave the line just started going up like a boom-army. @CAPS2 when I started getting excited. All I wanted to ask him was to get me a airsoft gun and a pony. The reason why is because I would ride the pony and shoot people who crossed my path. That would have been the life. @CAPS2 all I wanted to do. And I think @LOCATION1 would give me good airsoft gun because @DATE1 can come earlier than expected. As I was talking to my guys as were next is. We went to???. I ask him what I wanted and he said youll shoot you eye out side. @CAPS2 when I got mad because it had to be so patient. That is the last time Im going to visit @LOCATION1 at the mall. 12 12 24 3 3 3 3 3 3 3 3 +18677 7 "A time when I was patient was when I was at my football and the defence hid the was in and I was waiting to go back in. Then finally my friend @PERSON1 intercepted the ball an dthe offense including me ?n in on the field, and then they had me run it up the middle and I scored and then we passed it for the two point conversion and it came to me but it was high and it tipped it then it came right down in my hands and I got it but then I had to wait again because the defence ?? back in but then it was half time. I am the kick returne and we got the ball as I got the kick and returned it all the way for a touchdown and it was really cool because my tem was bleding and I broke a lot of tackles. Then it was the @DATE1 the all the other ?? we doing kneeing it and finally my ?? swotted the pass and if one a ?? the my team jumped on it and we had the ball then our full back got a pass and got the game wining touch down and thats atime when I had to be patient" 8 9 17 2 2 2 2 2 3 2 2 +18678 7 "The definition of patients is, when someone is in a car, & is going a long distance trip and you dont ask to stop or keep asking and asking where you are going. An example of patients is you are at a store, & someone is in front of you with whopping overload of stuff in there kart, &you dont get mad at the person that is called patients. Also if you are teaching something to somebody & they keep messing it up and you dont get mad and you keep trying to teach them thats patients. Another example of patients is if someone has @CAPS1, & they have a hard time paying attention and you dont get frustrated with them then you are patient with that person. Also if the person just walks off and dosnt pay you no mind and you still try to teach or show them something thats a sign of patients. Sometimes patients because, if you maybe want to have a job as a theropist you need a lot of patients. Those are some definitions of patients." 5 6 11 0 1 2 2 1 1 2 2 +18680 7 "Patience. What is patience? Patience is waiting for something calmly. Its waiting for the right time to propose, or ask her on a date. Life is going to be hard unless your patient. You need to be patient when getting a job." 3 5 8 0 1 1 1 0 1 2 2 +18681 7 "This is a writing piece on how I had to be pacient to get a fanominall bowl of @CAPS1 @CAPS2. My grandparents had just picked my brother and I up from our house to go get @CAPS1 @CAPS2 at cold stone. I never gone to cold stone, but my friends said it was good. So I had asked my grandparents if we could go. I was amped. When we arrived at our destination the line was huge. It was shaped like a snake. The sign said @NUM1 minutes wait.I was disiported. I was about to leave when I saw it. The peanut butter @CAPS1 @CAPS2. It was staring me right in my face so I I talked to my grandparents and said we could stay. When we finally got to the front of the line I orderd peanut butter @CAPS1 @CAPS2. It was time to send my taste buds on vacation. It was fantastic @CAPS1 @CAPS2. It was so smooth. I was thinking to my self how I was glad that I was pacient to envoy that amazing @CAPS1 @CAPS2. That was the time I had to be pacient to go get a fanominall @CAPS1 @CAPS2 bowl." 11 12 23 3 3 3 2 3 3 3 3 +18682 7 "Patient means that you are understanding and tolerant. A patient person experience difficulties without complaining. There was a time when I was patient. Being patient is difficult to do @CAPS11 I did it before. @CAPS1 @CAPS3 @CAPS2, this isnt even moving. @CAPS3 brother and @CAPS3 broter obvousilly wasnt being patient. Hello, @CAPS13 me mame, I mean man, can you walk any shower? @CAPS4, I can if you want me to. A nice man said in a kind friendly voice to @CAPS5. @CAPS6, are you that dumb, I wasnt for real. I m cut you just because of your stupuidity . @CAPS5 said, trying to act all tough. @CAPS5 was only a year older than me (@NUM1) and he thinks hes all big and can di anything he wants. @CAPS8, little man you cant cut me, I was waiting in line forever.: that nice man said to @CAPS5. well , too bad . while @CAPS3 brother was making eniesnes, was waiting patiently in line even though the line wasnt really moving, inside I wanted to out every one @CAPS11 not like some people I have patients and can wait. After @CAPS3 brother cut that man and didnt get punished he decided to cut hundreds of people. All those people were mad, very very mad at @CAPS5 @CAPS11 not one did anything besides say, @CAPS8 dont cut me. @CAPS11 that didnt really help. Intill @CAPS5 cutted the @CAPS15 person. That person was a young pretty body with beautiful blue eyes and has such pretty blond hair, her name was @PERSON1 @CAPS13 me police man, this young , little boy just cutter we and every one else. @PERSON1 said. While I was waiting there patiently, @CAPS5 got kicked out of the whole park @CAPS15 in line please, @CAPS1 thats me . Won.Were was the best roller coaster I had ever been on. Being patient is hard @CAPS11 can be rewarding. I also learned to be patient takes a lot of understanding and tolerant. Now, @CAPS16 know you get the best when your patient. And the worst when your not." 11 11 22 3 3 3 2 3 3 3 2 +18683 7 "A kid in my school, @PERSON1, has had a crush on my best friend my coarse for who knows how long. He has asked her about fifty times. She likes him as a friend but nothing more. She has dated many guys since @PERSON1 first asked her out. Mycaela can be a little boy obsessed.In fact she is now dating a boy who I asked out two days ago, sorry of topic. Anyway, @PERSON1 is always very patient, hoping mycaela will come around someday. Its been almost two years with him stalking her and she still hasnt come around. I just think that @PERSON1 is very patience and be is a great kid." 8 7 15 2 2 2 2 1 1 2 3 +18684 7 One time I was patient when my mom was on the phone with my dad for about at least @NUM1 hours. We were in the car on our way to @LOCATION1. I was waching my dog on my lap for the @NUM2 hour. The second hour I was sleeping. The third hour I was waching a movie and by this time I had to go to the bathroom really bad. Then by the last hour in a half I was to leget tearing up I had to go so bad t by the time my mom got off the phone we were at my aunts house. I leget ran in t ran into the bath room and then I was fine. 8 9 17 2 2 2 2 2 3 2 2 +18685 7 "Im @PERSON1 and a year ago I was a foster kid. I had to have patience for a lot of things. First of all, my foster parents got divorced with kids. I had to have patience waiting till my foster mom found a home to move to. Secondly I wasnt told when I could go home. I had to wait till everything was over. Finally, they told me after a year and a half that I could go home to my mom within a week. I packed and waited. I had to have patience with everyone. It was hard, extremely hard, mind crazy hard. It took two weeks and a day to get home and on top of all that I had to move all my stuff home and unpack to this day I am still unpacking. Being a foster takes a lot of patience. I learned that." 12 8 20 3 3 3 3 2 2 2 2 +18686 7 "There was a new restaurant opening in town! He really wanted to go so his family went. It had opened @NUM1 minutes ago. They didnt think there was going to be a line. They got there and they didnt see any cars in the drive thru. They went through the drive through which started at the back of the restaurant. Then they say about @NUM2 cars. He was really mad. They were about to leave and then there were @NUM3 cars behind them, so they stayed in line. Since it was a new restraunt everyone was picking their food very slowely. They where also making the food very slowely. Then people started yelling, @CAPS1 up, they where also honking their horns but he was the only who wasnt honking his horn. They where waiting for @NUM2 minutes and @NUM1 had gone @CAPS3. He was starving and he still was being very patient. He usually is not patient. He was very excited to eat at the new restraunt. When it was his turn the cashier said, @CAPS2 you for being very patient. @CAPS3 the time they got their food it took @NUM6 hour. The food wasnt even good! He showed a lot of patience that day. He didnt honk his car horn and he wasnt yelling. He had stayed in the car @NUM6 hour and he was starving. It is a great thing to have patience." 9 9 18 2 2 2 3 2 2 2 3 +18688 7 "This is a story about patience, pateince is when someone gives you a older or specific job to do. Then you do the job or order with no @CAPS1 askd even if you dont wont to do it last week my mom told me to cleam the living room even know it was hard I still did not it. Even know I did not want to do it was unfair" 4 4 8 1 1 1 1 1 1 1 1 +18689 7 "Patience is a very important virtue. It is valued in at least these @NUM1 aspects of life: success and friendship. If you do not possess patience no one will want to be your friend. You have to have patience with your friends or they will not be your friends. I know this from experience. In order to succeed in life in general you must have patience. Whether is waiting for the bus or waiting for a response from a job interview, itll always matter. So, in conclusion, I think that patience is a very, very important thing to have." 4 4 8 0 1 1 2 0 1 1 2 +18690 7 I believe patience is important for many reasons. One reason is without patience you wouldn't be able to wait for anything. One example is you wouldn't be able to wait in line. My second reason for patience being important is without it people would complaint everyday because you use patience everyday. One example is if your waiting to buy a ticket or waiting to get gas you have to wait your turn to get it. Lastly patience is important because without patience wouldn't be able to read. This is because books sometimes take a while to read and you wouldn't want to take the time to finish it. That's exactly why l believe patience is important. 6 5 11 0 2 2 2 0 1 1 3 +18691 7 "One time I went to a carnival with my dad. We had a blast while we were there. I kept on winning prizes at the games they had. I thought to myself nothing will get in my way well I was wrong. Everyone has their own level of patience. Mine is low but this one time I was tolerant and kept calm. As we were at the carnival is saw this new ride. Everyone was lined up to see what it was. When I got in line I was ready to go on. Until, someone got infront of me. Thats when I began to get impatient. This is not going to be good. I waited and waited as the line slowly moved up. It seemed like an hour but, it was only @NUM1 minuets. People kept on going ahead of me. As if they did not see me, so did more people. It got to the point where I was about to say a rude remark. As I was about to say the rude things on my mind, I quickly held myself back. I remembered that I wanted my dad to be proud of me. So, as it was my turn to go on I finally did something good. I was so proud of myself on how I did not say anything. When the ride was over I quickly went to my dad. I so proud of myself on how I was tolerant. People going ahead of me wasnt so bad. Look like I can do something positive. If they thought was gonna get to me, they were right. But, they were wrong if they I was gonna say something." 10 12 22 3 3 2 2 3 3 3 3 +18693 7 "Every day I must be patient in difficult things. I must be most patient when I am playing or watching sports. Every weaken my brother play in a play football league and it can bewaring. I have to bit almost two hours for the games to be over and my parents make me wat in the game. My favorite speed is football and since I am a first base man and an eat fields; I have to wait of the ball to ??? so that I can help the team. I also have to be patient during the meap because it is a long so and I must wait until people are we done. As you can see, I am very patient are have to be in many situations." 6 6 12 1 1 2 2 1 1 2 2 +18694 7 "Frezing cold and all I could do was wait, and wait, and wait. What I was waiting for was the @CAPS1 @DATE1 for @CAPS2 to start. I had friends with me but they mostly talk with themselves, leaving me and my friend @PERSON1. Her dirty blond hair whips her face, and @CAPS7 hunches her back against the wind. My yellow lab, @LOCATION1, @CAPS3 his leash and @PERSON1, being the one holding the leash, stumbles side ways. Are you sure you dont want me to take him? I ask for the tooth time. @CAPS4, I got it! @CAPS7 says happily. I was cold, bord, and hungry, but at least I didnt have my arm being pulled off. Are you sure? I felt so bad, @LOCATION1 was my dog, I should be holding him. Which was @CAPS4 easy task. @CAPS5! @CAPS7 says lightly, I got it! @LOCATION1 pulls her again and @CAPS7 falls into me. I catch her, and @CAPS7 mumbles a sorry. I had, but I still think I should take him. All day Ive been complaining. I was joking about our luck with the weather partly, but mostly, I just wanted to start a conversation. I think my hands are numb I say joining them into my pockets. @CAPS6, at least its not raining, like the weather man said, @CAPS7 smiles, and I smile back. A voice booms out of the specker, @CAPS8 walkers. Lets get moveing! I glare at @PERSON1 and ask one more time, Do you want me to take him! @CAPS7 pats my back and says slowly, I got it." 8 12 20 2 2 2 2 3 3 3 3 +18695 7 "A time I was patient was when I had to baby sit little cousin. He was just a little baby, so I knew that if he started crying, or got upset that I coudn't get frustrated with him because he's a baby. There were times when he would start crying for no apparent reason and I just wanted to scream, @CAPS1, I knew I couldn't and that I just had to be patient with him. I also knew that I couldn't get upset, or angry because it might make it even worse for him, so I had to be patient and wait for him to stop crying and for me to calm down before I could go anywhere near him. I was understanding and tolerant and I didn't lose my patience. Practicing that skill is very important. I am proud of myself and being able to keep my composure in crazy or chaotic situations like that, and not loosine my cool, or patience, with him or anyone else." 8 9 17 1 2 2 3 2 2 2 3 +18696 7 "Ugh, what is taking the gym teacher @CAPS14 long? @PERSON1 whined. ""@CAPS1's been hours"" ""@CAPS1's only been @NUM1 minutes."" @PERSON2 said. ""@CAPS3, @CAPS4 @CAPS1 has felt like its been a couple of hours."" @PERSON1 said. ""@CAPS4, you just have to have a little patience."" @CAPS5 explained. ""@CAPS6"" @PERSON1 said. ""@CAPS7 you sit here and have your @CAPS14 called patience I'@CAPS8 be putting my bag on the stage."" @CAPS9 @PERSON1 got up everybody tried to tell him to sit down but all he did was ignore them. ""@CAPS10'man man just sit down and have patience ""@PERSON2 said ""@CAPS11, I've been waiting to long I'm bored I'm tired and my feet hurt!"" @PERSON1 yelled @CAPS9 he was walking behind the stage. ""@CAPS12're gonna get in trouble."" @PERSON2 said, looking down. ""@CAPS13 was just yelling:"" yelled the gym teacher with an angry face. The gym teacher looked to his right and saw @PERSON1 behind stage and said ""@CAPS12 couldn't played basketball but @PERSON1 messed @CAPS1 up for everybody."" @CAPS14 nobody played because @PERSON1 didn't have any patience. @CAPS14 I hope today he'll have a little more patience hopefully." 11 9 20 2 3 3 3 2 2 2 3 +18697 7 "I woke before school started getting ready, grabbed all my stuff and walked out. When I got to school I sttarted hanging out with my friends and having a good day so far. At around @NUM1, @NUM2 hour is over and we go to lunch. I wasnt hungry and I wanted to go with my friend @CAPS1 she wanted to eat so I waited for her and we went outside afterwards. When we go outside we like to do back walkovers,handstands,backbends,fronthandsprings, cartwheels and stuff like that. After the bell rang in @NUM3 hour it was recourse I wasnt feeling good, I was hungry. I just wanted to go home and grab something to eat but we still had to wait till recourse was over then we had to ride the bus for about an hour. When I finally got home I didnt feel good, my dad asked me whats the matter I told him I was hungery and it was around @NUM4 and he said we have to wait untill mom gets home my mom gets home at @TIME1. I had to wait and be patiant for @NUM5 hours and I realized its ok to wait because it was a delicouse dinner and if i would have ate something else before dinner i probly would not have aten any of my dinner and if I would have ate something else before dinner I probly would not have aten any of my dinner. And that was a story with @NUM6 examples of me having to be patient." 8 12 20 2 2 2 2 3 3 3 3 +18698 7 "There havent been many times were I was patient but Im going to tell you about when I was patient. One time when I was patient was when I was riding home on the bus. My bus driver @PERSON1 mede me sit in the back because she said I talked too much and that I wasnt aloud to talk the whole ride home. It was hard at first but then I did my homework. Which gave me something to do. That was one time I was patient but not the only time. Another time when I was patient was standing in line for a rollercoaster at cedar paint. The beginning of the line said that it was a @NUM1 hour wait but we didnt care because it was my friends and my favorite ride, it wasnt so bad because its all worth it when you ride the ride. Those were times I were patient but Ive had to wait patiently even longer than that!" 6 7 13 1 1 2 2 1 1 2 3 +18700 7 "Hi, my name is @LOCATION1 @DATE1 and this is the time I was patient when waiting to go a friend's house. Savannah dad is a firefighter and he had to put out of fire a could not pick me up to the next afternoon. I was sad. It was the middle of @DATE2 and I haven't seen savannah in @NUM1 months. That day I learned Patience is a way of life people have to live with and this is the time I had to live with it." 7 7 14 1 2 2 2 1 2 2 2 +18701 7 "There I was at @CAPS1 @CAPS2 on a @DATE1 standing in the blazing sun. I could feel the sweat drip off my face. I looked ahead there was a least two hours left for standing in line for the roller coaster. The @CAPS3 @CAPS4 @CAPS5. @CAPS7 was silent because they were getting irritable. All of a sudden this guy screamed, @CAPS6 up! @CAPS7 in line started screaming at each other except for me. I didnt want to yell because it would get @CAPS7 worked even more. A hour later everybody chilled out. Then I looked ahead. @CAPS10 were almost to the front. I wiped my face and smiled. Then I said, @CAPS8 hoo! @CAPS7 looked at me like I was from a different planet. My ?? what? my mom asked. @CAPS10re almost to the front! I replied. Then @CAPS10 were next to go on the ride. When @CAPS10 entered the ride I fastened my seat. Next the ride took off! The breeze felt good against my face. When the ride ended I said, I knew patients: would pay off. That is the time I had to have patients." 12 12 24 3 3 3 3 3 3 3 3 +18702 7 "It was blistering hot, it had already been an hour in line, when can we go? I asked in a moining voice. My parents replied just be patient were almost at the front. @CAPS1, that ??? I what I did. My body ??? aching from walking around all day, but that wasent going to stop me from all these rides. Ten more minutes had passed and I began to get thirsty. My @CAPS3 and sister want to go get a drink with me while my mum held our s??t in line. We made it to the booth. Ill take water I said, ??? realived. I said thankyou, as I grabbed the ice cold water from his hands. As we all started walking back towards the line, I spotted a bright colorful shirt that said, @CAPS2. I couldnt help but ask, @CAPS3 can I please get this shirt? we still have to wait a little bit longer in the if we go back. @CAPS4 he responded but lets hurry up @CAPS1 your mom dosent get impatient. After I got the shirt we walked back in the line. Thank goodness we were the second ones up. All aboard the mummy ride. The person controlling the ride explained. We walked on, being patient payed off, because I had a feeling this ride was going to be a blast." 12 11 23 3 3 3 3 3 3 3 2 +18703 7 @CAPS1 my name is @CAPS2 ?? and this is a story about the time I was patient. Once when I was eight years old my mom said that she would take me to the fair that day. so after lunch we went to the rain I wanted to ride the biggest ride there so we had to wait in line for it ?? line was very long so I had to be patient to get on the ride. I did not want to wait in line so half of the time in line I was complaining but ??the line was not that long and l have to be patient. I am glad I was patient because the ride was?? Of fun. That day l walked that was good to be patient. I told my ?? I will never be unpatient again. That was the story?? The time l had to be patient at their?? 6 8 14 1 2 1 2 2 2 2 2 +18704 7 "Being patient is a good thing to have. Let me tell you a time I was patient. Once I had a dentists apointment was @NUM1 am and my apointment was at @NUM2 am. Me and my dad sat and waited until @NUM2. It was hurting. I didn@CAPS1 have anything to do. I don@CAPS1 read magazines, they didn@CAPS1 have a @CAPS1.V or anything. I was really hungry because I didn@CAPS1 have any breakfast. @NUM4 am still in waiting. I couldn@CAPS1 do it. It was so bored until I remembered I had a @CAPS2 @CAPS3.S in my pocket. So I took it out and started to play it. Time went past fast. Thats the time I was patient." 8 8 16 2 2 2 2 2 2 2 2 +18705 7 Patience the thing going mainly tell you time and me going at and you about a time when I was patient and how I did stuff to make myself patient. One day my dad and I try out wait in the hospital to get a trip replacement and we had to sit and wait in the waiting room @CAPS2 @NUM1 hour. I was wondering why wait @CAPS2 all time and come hand. Well thing kept telling us wait @NUM1 more hour. Anyway I hurt I quit next my mouth in the chest two hours that then I touched my chest was a look all that a sure when hed to ride a @CAPS1. Then after that when we had counted the circling tiles @CAPS2 @NUM3 minutes and noted that I remember them over @NUM4 tiles. That the can climb I didnt complain that yet at least. After I counted the circling tiles I played @CAPS2 all with my dad I won and we ate up @NUM5 minutes @CAPS2 the rest of the time I played my @CAPS3. I played @ORGANIZATION1 and the game. I was me a while then I did it. @NUM6 more it was time to go home my dad and I was tired beyond help. I didnt complain once and that is the time I was patient. 11 9 20 3 3 2 3 2 3 2 2 +18706 7 "Patience is truly the hardest thing and body really ? that a ?.I hard to because im on punishment for not doing what I was suporse to do. So I have to be patient it and what it out until it was being patient it is what for a perfect of team to did. From my pop it of how. So while im on punishment I just waiting it out so my time will come because I cant speed up there and just make it ??? quicker but it I could I would but for now I have to want. Im a permanent for quite a while so I can just be patient .I know before taking it hard but most people have to do it because rushing is most likely not the way to do it patience also helps the maker and cam saved you time. Patience is also a good thing to have because you can want for certainly things like; money, clothes, shoes, homes, food, animals (pets), jobs, education, car (transportation, and things of the sudn because at you post rush every thing you want get it the way you were surpose to but waiting and being patient can get you exactly what you want and exactly how you want it to be!" 4 4 8 1 1 1 1 1 1 1 1 +18707 7 "As I sit in the waiting room at @ORGANIZATION1s @CAPS1 @CAPS2 waiting and waiting for my grandpa to come to thee recovery room. I think to myself what if something went wrong or what if he doesnt make it through the surgery. Then I say to my @CAPS3 can we see grandpa now, she said @CAPS4 just be patient everything will be just fine if you sit relax and for hevan sakes, be patient! @CAPS5 I say to my @CAPS3. After an hour passed, I had gotten on say so I thought in my self and said to myself cahlem and patient, calm and patient. Then this lady come out to the waiting room and said the surgery was a little longer than we expected but everything went perfectly fine but he will be staying in the hospital for a week an a half at the most which was perfectly fine with me as long as I was get out of this boring hospital and as soon as I said I had my mom said as soon as grandpa gets to the recovery room we will go see him then we will leave!" 8 12 20 2 2 2 2 3 3 3 3 +18708 7 "A time when had patience was when I was waiting in the car to get to @LOCATION2. From my house to @LOCATION1, @LOCATION2 its about @NUM1 hrs away. So I had to sit in a car for @NUM1 hours. The only things to do were listen to your ipod and sleep. Which I didnt do either of those things. As you can tell it would take a lot of patience to wait in a car for @NUM1 hours. After an hour had passed it would have felt like @NUM4 if you werent doing anything. By that time I was ready to mess with my sister who was sleeping. I knew I couldnt do that though. Now was the time to think of something to do. I pulled out my phone and started texting people but no one answered. I tried looking out the window but that made me sleepy. Getting there took too long. Finally @NUM1 hours passed and we made it to @LOCATION2. This was a time when I had patience" 9 9 18 2 2 2 3 2 2 2 3 +18709 7 "I was off, I was off to the onto rama to be exact. @CAPS3 @CAPS1 got to see a whole bunch of cool old cars, @CAPS1 also got to see some old ones. Some cars were old and rusty and some are new and state of the art. @CAPS4 @CAPS1 saw a sign. It read come see chip foose! So @CAPS1 went and looked around."" @CAPS1 found him! I exclaimed. ""@CAPS2"" @CAPS8 brother yelled."" @CAPS3 is!"" @CAPS4 @CAPS1 went and looked at the end of the line. It was @CAPS5! So @CAPS1 figured to would die down after a half an hour. @CAPS1 were very wrong. It was @CAPS5! The line @CAPS1 thought was big was nothing compared to the line now so @CAPS1 had to wait, and wait, and wait. @CAPS8 brother go to the point to where he could run a mile if he didn't he was going to explode. So I had to go walk around with him. I was relived because standing and doing nothing for @NUM1 hours gets boreing real fast. I was getting to the point where I had to get up and walk around or I was going to fun asleep. So I went for a walk with him. @CAPS1 got back and I sat back down @CAPS1 waited, and waited, and waited and waited. @CAPS4 @CAPS1 heard stop!"" @CAPS6 body behind these people have to go and come back after the break."" @CAPS7 the security guard. @CAPS1 were the last people. The people in front of us was a nerdy couple who had no life. @CAPS8 brother started to cry because he didn't get fooses autograph. The kind nerdy couple @CAPS7 ""here have our spat @CAPS1 have all day and you @CAPS2 like you really wanted this autograph."" @CAPS8 brother replied ""sniff @CAPS9 won't it!!"" @CAPS1 got it after 51/@NUM1 hours of waiting and waiting and waiting and dying. That was the time I had to be patient." 9 10 19 2 2 3 2 3 2 2 3 +18710 7 Patient are people who been injured in same kind of way and are in the hospital trying or are getting better. I was a patient once because I was sick for a very long time so my mom took to the hospital and I got shot. On our way out of the hospital I blacked out and hit my chin on the door so we had to stay their for about an hour. That was the only time that I was in the hospital being a patient. 8 5 13 2 2 2 2 1 1 1 2 +18711 7 I was patient when I was at home yesterday watching the movie called @CAPS1. So I waited for a long time until the food was ready and he?? I was so interested in the movie that I couldn`t get my eyes of the t.v because the movie was so good until when I was really hungry then after that I had a second plate after that second plate I didn`t get to eat the rest of my food. And I didn`t complain that I was hungry. 6 4 10 1 2 2 1 1 1 1 1 +18712 7 Being patience is when someone could be bisy is just better to be patience while the other person is done. I am going to write about a time when someone I know was being patience. Well on one morning my mom had got out of work when she came I told my mum that I really wanned to go over my friends house. But my mom just keept on saying to wait and so I had to wait so I did? My mom wasnt even done still so I told her if I could go working to my friends house. But she said no and that I had to be patience till she was done. My dad was living to his work in the afternoon so I had an idle. I told my dad if he could drop me off my friends house and then he could live to his work. So I did I went to tell him. But guess what he said no coz he was already late and I looked at the time and yhea he was already late so I dicided to just be patience coz my mom was almost done and my dad was already leaving so I just sat down and watched tv while my mom was done. My mum had went insid the room and so I got up and asked if she was done and she said yes I so yelled so you are tackeing me and so she did I was so happy I rushed to the car and so we went and I went and my mom had left and that was the day I got to go to my friends house for just being patience. 8 6 14 2 2 2 2 2 2 1 1 +18713 7 "I think patience is the ability to be quiet and wait at the same time. For example, patience is required for everyday tasks like waiting in line for lunch, waiting for someone to pick you up, waiting for your doctor to examine you. I need to use patience almost @NUM1 times a day. First I need to be patient for my mom to drive me to school. I also have to be patient for the class assignment to passed out, for class to be over, for lunch to start, for night to come etc.I hear people say that patience is a virtue. I didnt even know that means, but if Im patient Ill probably find out. So my conclusion is, patience is required, and people use it everyday. I think patience is a gift and I enjoy it." 8 4 12 0 3 3 2 0 1 1 2 +18714 7 "ON @DATE2 I understand what my mom was saying to @CAPS1. She told @CAPS1 she couldnt get @CAPS1 anything for @CAPS2 because she had to pay the bills. She thought that she wasnt doing a lot for @CAPS1, I told her Im fine with what I got. I just wanted to be around her for @CAPS2 but she didnt understand that she was doing good on her own my father was not helping her take care of us. My mom had to take care of her @NUM1 kids but her self and @NUM2 of them is hises. But my daddy would always say I know if he had it he would give to @CAPS1. But beening @CAPS1 I didnt want to heer his stuff cause it all was lies. My mom had to found tow jobs, to keep up with everything. Then when @DATE1 came everything was ok into @DATE1 my grandma passed away. My mom, auntie and uncle @PERSON1 all had to make money for all here stuff she looked pretty everything went while but know on on we still cry in think about her. Then that was a time I didnt patient because it was to hard to think she was gone. So my mom and them all tell @CAPS1 that I need to learn to understand shes in a better place with some of her love ones. But into this day I cant understand the meaning of when someone says they are gone. But @CAPS6 forgotten." 6 8 14 2 2 1 1 2 2 2 2 +18715 7 "The time I was patient. One day we were on our way to @ORGANIZATION1. Our trip was only suppose to be three ours long but one of cars that was following us was stopped by something that slashed their tire. We had an hour to wait before they would get their tire fixed and would catch up with us. They had to past the traffic and long stoplights also. We waited at a gas station and they caught up. Everyone used the restrooms which took fifteen minutes and the restrooms were so gross so it took a minute to dress them appropriatly for use. There were three cars containing five to six people which took up more time. After we were all done we piled back into each vehicle and got back on the way to @ORGANIZATION1. We were passing all signs of kings that said @ORGANIZATION1 @ORGANIZATION1 and @ORGANIZATION1 @ORGANIZATION1 up ahead and even of course when we got there I saw this huge, digital sign that played music and said @CAPS1 to .@ORGANIZATION1 @ORGANIZATION1! We were finally there! We were excited and had the time of our lives!!! By: unica @CAPS2 .Amstrong" 9 11 20 2 2 2 3 2 3 3 3 +18716 7 "@PERSON1 lets go this line is taking to long! @CAPS1 @PERSON2 just be patient! @CAPS2?asked @PERSON2 @CAPS3 @NUM1 replyed. @CAPS4 @CAPS2? You have never heard of patient ? @CAPS1 @CAPS6 you want to tell me that out of all these thirteen yraes you have never heard of paitients? @CAPS1 @CAPS6 your trying to tell me that put of all these thirteen years you have never heard of patience? @CAPS9 @PERSON2 replied in a confused voice . @CAPS10 @CAPS12 well patient is when. Wow I never know patience would be @CAPS6 hard to explain. @CAPS11 now do you get why I dont know! I got it!he yelled as he snaped is fingers. @CAPS16 one in the line was staring at them. There faces turned red. But @PERSON1 ignored that fact and said, @CAPS12 @CAPS6 paitience is like when you wait a long time but you dont care that you wait a long time and in the end because you @CAPS20 patiently you get what you wanted. @CAPS6 @PERSON1 and @PERSON2 @CAPS20 and @CAPS20 and @CAPS20 in line. Soon @CAPS21 they were up next. @CAPS14 tickets to @CAPS15 @CAPS16 where I look please: @PERSON1 and @PERSON2 said excitedly. @CAPS17 ummm hold on one sec while I open a new package of tickets. the ticket booth man told them. @PERSON2 glared at @PERSON1 then said @CAPS12 @CAPS19 @CAPS20 @CAPS21: @CAPS19 @CAPS20 in this line for twenty minutes and now I have to wait more? @CAPS23 you go kids thats @CAPS14 dollars please. @PERSON2 was emmbarased but yet happy he got his tickets, @PERSON1 said @CAPS11 you @CAPS20 and got what you wanted thats called patience. @CAPS6 @PERSON2 and @PERSON1 sat down in the movie theater and watched a great movie. If they wernt patient they would have never gotten to @CAPS11 thier new favorite movie!" 8 10 18 2 2 2 2 3 3 2 2 +18717 7 "Patience is a key role in life. If you are not paitent, you will live an unhappy life. Almost everything in life calls for patience. If you are not patient, you will most likely arrous something up like your job if you are not patient with your boss or co- workers. I often have a hard time being patient with my mom and dad. Sometimes I just cant stand my parents anymore and I lose my temper and become impatient with them and that usually makes things worse for me. I do love my brother but he can get really annoying, like most little brothers and sisters do. When my brother gets on my nerves, I become very impatient with him. Sometimes I will get so mad and impatient with him I will just lose it and I always get in trouble when I beat on him and I would always end up being the bad guy because of my patience. Now that I am older and I realize how important it is to be patient with people, it makes life a whole lot easier and fun with the people. Im around everyday and that is why when you are patient, you will get your way, but when you are impatient because you are trying to get yor way, it will never happen." 7 5 12 0 2 2 3 1 1 1 2 +18718 7 Time I was patient was when my friend was coming over I was excited. But I waited and waited. But she finna @CAPS1. Thats about it. 4 3 7 1 1 1 1 1 1 0 1 +18719 7 I was patient went I had to wait for my grandpa in the er. For his hart because his not doing very go my grandpa is in and out of the er. For my grandpa heat everyday my grandpa has to go see has decert to chuck up his heart any that is why I am on patient. 4 4 8 1 1 1 1 1 1 1 1 +18720 7 Patience is a thing that you develop when you are calm and relaxed. I have been patient everyday in school. Being patient with my teachers. I have been patient with kids at school that like to pic on people and tease them. I have patients some days and others that means something is going wrong and that means I dont have any more. I like having patients because it makes you get relaxed and everything. Patients is a good thing that you can have. I think patents increases your life span. Many people in the world dont have that many patients and I think that decreases your life span. I dont think if I didnt have any patients I wouldnt be in school right now cause some kids just have problems and they and dont have and they get bad grades and everything. 5 5 10 0 1 2 2 0 1 2 2 +18721 7 In this narrative essay I will write about @NUM1 different times when I was out had to be patient. Such on the waiting to get out of school on a holiday. And when I had to wait until my mom woke up to go to the mall so I could get my game. Another thing I had to wait for was to get my final so as in the ??? all these times I had to be understanding. One day I was very anxious to get out of school on a firday. And to make it I bad the clack was drare and I had a planned schedule of my think day. When one thought passed by there like another set in thinking for way I can stare at the abat and it would change. I was about to get a call home but the @CAPS1.A saved me. And I had to be understanding about that moment. Another time I had to be understanding about was when I had to wait until my mom woke up so I could go to the mall. See what had happened was I got a @NUM1 @NUM3 last year on my report and a new game was coming out so I wanted it. My mom was asleep it was almost impossible to wake her up because she went to the club the night before. And that was the time I had to be patient. 7 8 15 1 2 2 2 2 1 2 3 +18722 7 "Im currently writing my comic book, I havent begun drawin it yet. Here is a major scene in the @NUM1 book. @CAPS1, @LOCATION1, are we there yet? @CAPS2 asked with curiosity @CAPS3. not yet @PERSON1 replied with a sound of fear in her voice. They were lost, really lost. Are we there yet? little @CAPS2 asked again. @CAPS3, @CAPS2, youll just have to be patient. @ORGANIZATION1 said, becoming annoyed very quickly. So the walked for hours, but still @CAPS3 sign of the castle. Little @CAPS2 was egar to meet the queen, for she had imagined the queen as a kind, patient, beautiful woman. @ORGANIZATION1 could @CAPS9 that @CAPS2 was tired, lifting her on her shoulders she said t @CAPS2, @CAPS9 if you can @CAPS9 the castle from here @CAPS2. @CAPS11 a few long patient minutes, @CAPS2 finnly saw the castle I @CAPS9 it, I @CAPS9 it! she said with a smile. Jumping off of @ORGANIZATION1s sholder, she bolted down the narrow path way. Because she had waited she was as excited as ever. Not only because she had found the castle but because she learned how to be patient." 12 12 24 3 3 3 3 3 3 3 3 +18723 7 "A time I was patient was when I got my braces. I was so nervous, so it was hard to be patient. I waited in the waiting soon for about fifteen minutes, then the assistant called me in. first she told me what she going to do, second she took a x-ray of my teeth , third she put metal bonds with a really strong glue on the back of my teeth, fourth @PERSON1 put the brackets on with really strong glue. Then the assistant put the wire between the brackets and metal hands, finally, she asked me what color I wanted then she put them on and I was free to go. The whole process took two hours, and I had to sit in a dental chair for that long. I had a lot of patience it was hard but I did it. That is the time I had patience." 8 8 16 2 2 2 2 2 2 2 2 +18724 7 "so @CAPS1 do you want for your @DATE1? A @NUM1 @CAPS1 else do you want? A @NUM1 I have been wanting a play station @NUM3 for so long. Its my thirteenth @DATE1 and I never wanted something more. All my friends had it. Whenever I went over to their house we played night and day. I wanted one I wanted one really dad. The only exception was that it cost @MONEY1 and I already had a @MONEY2 @DATE1 party, all together it would be a @MONEY3 @DATE1. So my mom and I decided on an agreement @CAPS3 I pay @MONEY4 then she will pay the other half. From that day on I asked everyone for money as a gift for my @DATE1. I dont want any other presents, I had my eye on the prize. So normally you have a family party where all the relatives come over give you your present and celebrate. I knew thats where I would get my @MONEY4. Everything seemed perfect I had it all planed out. Have the family party couple days after @DATE1 then go buy my @NUM1! I didnt mind waiting two or three days. I figured I would live. hey mom when are we having the family party? @DATE2. @CAPS2 that moment there was steam coming out of my ears, I could feel my face burning up like I was putting my head in a fire. You @MONTH1 not realize it out @DATE2 is a whole month away from my @DATE1. @CAPS3 waiting @NUM5 days isnt patient then I dont know @CAPS1. From this day on I still havent gotten my @NUM1 but two days from now Ill be holding a stack of cash in my hands and heading to gamertop: @CAPS3 I had to wait any longer I probably wouldnt have made it. Im not very patient." 12 12 24 3 3 3 3 3 3 3 3 +18725 7 "A time I was patient was at my friend cousins birthday party. I was patient because the whole intire time that we were at the party I was waiting for an answer from my parents and my friends parents to see if me and my friend could have a sleepover. So during that time that my friends and I waited we colored a couple dinosaurs pictures, watched a movie, ate dinner, played in the basement, went in the garage and ate cake and icecream, decorated/painted our dance tool boxes, colored some more pictures, watch my friends cousin open his presents and much much more. Then it started getting dark outside so we tried to take a little map @CAPS1, it was hard with a whole bunch of kids screaming. Soon enough it was time for my friend to go and then my parents said that we could have a sleepover, @CAPS1 OF @CAPS2 my friends mom said not to night because my friend has a volley ball game in the @TIME1. It felt like I waited for nothing. Then I realized when your patient you get what you want more often." 9 11 20 2 3 2 2 3 3 2 3 +18726 7 "Being patient is important, as Ive learnt before from experience. Once, I chose to babysit my cousins @PERSON1 and @PERSON3. @PERSON1 is eight years old, and @PERSON3 is six years old. I had to watch them for three hours all by myself. I was able to call my @CAPS1 @PERSON2 anytime I was in need of help, but if I did call, I wouldnt get paid. @CAPS3 was to be paid twenty dollars if I could handle @PERSON1 and @PERSON3. This is how I was able to do so. I arrived at my @CAPS1s house at about one thirty on the dot. @PERSON1 and @PERSON3 had just gotten back from a friends birthday party, where they surely devoured a ton of sugary foods, like @CAPS2, cake, and ice cream. @CAPS3 could tell they were hyper as soon as I walked in the door when they greeted me with bubbly attitudes. My @CAPS1 left and I was stuck with them. @PERSON1 wanted to play on his play station. But @PERSON3 waited to play box @NUM1. I began to get irritated when they started to argue over what to do. I was about to call @PERSON2 when I decided that being a little more patient was well worth getting paid. So to settle their contradiction, I found a game that we could all play and enjoy. After playing the game for two hours, we went into their back yard. @PERSON1 and @PERSON3 played tag while I watched. However, @PERSON3 being the unfair one denied that @PERSON1 had tagged him, and began to part. I was frustrated at their immediately, and picked up the phone. But then I decided that, with only one hour left, I could handle them. So I told them that we could play hide-and-seek instead, and even though I would normally loathe being the seeker, @CAPS3 told them that only I would count so they wouldnt fight. Finally, @PERSON2 came home and I got paid the money @CAPS3 had earned. That day, I learned that being patient always has its rewards." 12 8 20 3 3 3 3 2 2 2 2 +18727 7 "Patience @CAPS1 is being polite by waiting for someone or something. It is polite to be patient, if your not patient that means you are just about practicly mean because you are judging someone or makeing them do something really fast. For example if you are waiting inline for a ride at a comiville or something then if you are patient your being nice to other people by not trying to hurry or something like that. If you. are impatient and you are standing in line you would be mean to other people by like saying hurry up I want to be on that ride or hurry up and start the ride allready. There is the example. If you are a patient person people will probly like you. If you are impatient then you will probly have a hard time getting along with somebody." 5 4 9 0 1 2 2 0 2 1 1 +18729 7 "There are lots of times that I have been patient. One time I was taking the @CAPS1 test we had a very long time to the different parts on the test. I was always done early, so I couldnt go on to the next part. Also we couldnt talk or get out of sets. I really wanted to go on t the next part because I had so much time left and nothing to do. Every one in the class got done early to sense we couldnt talk we just sat and weighed for testing time to be over I think every one wanted to go to the next part but we didnt no body complained or said anything we had to do this for a few day every year. Every year Im alway patient. That a story on when Im patient." 8 8 16 2 2 2 2 2 2 2 2 +18730 7 "@NUM1 Patience is when you understand and you don’t complain. A person who is patient is some one who can wait and they don’t while every two second. A person like that can succeed in life. @NUM2 @CAPS1! @PERSON2 was getting was getting closer. First @PERSON6 then @ORGANIZATION1, @CAPS4, @PERSON7. She was coming town my row next. This was a night more. When is someone going pinch me go I wake up. @NUM3 “@PERSON5.” @PERSON3 and with a disappointed force “@CAPS2 did a poor set on this fest”. I think you should pet on. In my mind I was praying for her not to say the word, she responded, “@CAPS3.” When I got home my mom mad the letter and agreed with it. Why did I have to fall history. Next week the out or came. We sat down she was about to say something so I took a deep breath, you have to be patient and no complaining. I nodded my head with a smile so big with looked like my lips were about to fall off. @NUM4 A few weeks later. I got a little better every day. Her name was @PERSON4. She was very nice and thoughtful. She told me I was progressing by waiting and seeing the results. Finally the hundred points there came. I was nervous but confident at the same time. That test is going in wish it he met me! A week later @PERSON1 passed @PERSON6, @ORGANIZATION1, @CAPS4 and @PERSON7. A smile on her face good job @PERSON5 you got an A-. It was hard in the begging but I was patient and I got a good grade. @NUM5 wait and don’t hag and see the results of the end. Patience helped me because I know in the future to be tolerant. A person who is patient is a person who accomplishes a goal." 9 9 18 2 2 2 3 2 2 3 2 +18731 7 "A time I was patient was at the barber shop. My sister , my niece, and I were going to the barber shop at @NUM1. I was getting my hair cut by a official barbor. I waited all the way to @NUM2 to get my hair cut. That was a time I was patient" 9 6 15 2 2 2 3 1 1 2 2 +18732 7 "A time I was patient is now @DATE1. The reason is because I am waiting for @CAPS1 new phone. See in @DATE2, I spelled orange juices on @CAPS1 phone. Everybody would call me weired and responsible. At first @CAPS1 phone was fine and everything alright. Then one day @CAPS1 speaker stopped working. I could call anyone or listen to music. @CAPS1 heart sank. I quickly ran to @CAPS1 dad and told him about @CAPS1 problem. He first lasted and shook his head. Then grabbed @CAPS1 phone to test it. After he disconnected it did not work, his face was shocked. He then asked me how did that happen. Now at the time I was so stunned,so i couldnt figure it. Then the image of me spilling the orange juice came to mind. Something told me to keep this from @CAPS1 dad. I told anyway, and he laughed. I looked at him with a why are you laughing dad. He said You are going to have to wait until I get the money. @CAPS1 face was calm but here I am still waiting for the phone." 9 7 16 2 2 2 3 1 1 2 3 +18733 7 "@PERSON1 was your average fourteen year old. @CAPS5 had a @CAPS1, @CAPS2 and an annoying eight year old brother named @PERSON2. @CAPS9 parents weren’t that eligble with names. It was ?? beggering of school and @CAPS9 @CAPS3 had to take @LOCATION1 clothes shopping . Problem is @CAPS5 made @LOCATION2 go in. @CAPS5 wouldn’t complain for a month. @CAPS11, oh @CAPS11, did @CAPS5 have to be a ??! Sigh. Oh well, too late now. @PERSON1 thought here @CAPS5 was, in the boys department helping @CAPS9 @CAPS1 pick not clothes for @ORGANIZATION1. Out of he comes of @CAPS9 eye @CAPS5 sees getting more, daring to get a better look, @CAPS5 gasped @CAPS5 could fail to have @CAPS6 some guys for he school since @CAPS9 pick out clothes in the boys department! I stared, @CAPS5 need is to the girls bathroom and stay there until @CAPS9 were to get @CAPS9. The dare ?? was awkward. “@CAPS8 for being so understanding.” @CAPS9 @CAPS1 said. “I know that was laid for you and @CAPS8 agot @CAPS9 not complaining.” “@PERSON1 what, “@CAPS8, @CAPS10.’ @CAPS11 being patient is a good thing. @CAPS5 thought as @CAPS5 got out of the class." 11 11 22 2 3 3 3 2 3 3 3 +18734 7 When I was at a shop I found my friend from @LOCATION1 and start to talk to me about patient and hi start to talk to me about that and I tol to hem that I didn't know what is that main and we start to explain to me what was that and how start to produced. Then he tld me a story about that and I was learning about the story. 0 4 4 0 0 0 0 1 1 1 1 +18736 7 "Every day I have to be patient, acctualy every one has to be patient. But have you ever been patient for a sibling? If so then you know how I felt when my sister didnt want to go out side out of her own self wanting reasons. The other day I was trying to get my sister to go out side with me because we have a special willow tree that we bang out of any way, I was getting off topic, since she kept refusing to get out and exercise I had to result to telling my mother, you can image a she didnt, my sister brought a book, we assign and then? We got to a??? Way??? Middle of my neighbor hood and we went separate way, I, of course, didnt??? this and had to waste as a friends house ??? have until she realized a want going to follow her. So Ive been annoyed with patience, but?? ?here told its a vertue so a guess??? O.k. with that." 8 8 16 2 2 2 2 2 2 2 2 +18737 7 Patience I understand is the and tolerant patient people experience difficulty with ??? Today wy will mean were patience his ?? US today. ?? with a ?? tim ??? samh is and infront today she is ??? doing the ??. But she ?? an ho). ur ??. ?? she ???(@CAPS1 8 7 15 2 2 2 2 2 2 2 1 +18738 7 One time when I was patient was when a new video game was coming out. I asked my dad @CAPS1 we could pre-order it but he said no and that I would have to wait until @CAPS2. So I waited until @CAPS2 and I still didn't get the game. So I didn't say anything about the game. It was then my birthday and I opened my last gift it was the video game! I was so excited I gave my parents @CAPS4 and & me my brother went to play it. 8 8 16 2 2 2 2 2 2 2 2 +18739 7 When you have patience you are colmer peace full and happy. It is like when you birth day is next week and you dont want to wait for it and have to get mad be cases you want your presents today not next week. But you cant so you get mad start to hit things and than you dont get a good behaver. Then you make your parents made then they bring some of you gifts back to they store that is not patience. That is non patience when you get mad becomes you cant get what you want. 4 4 8 0 1 1 2 0 2 1 1 +18740 7 "The key for a long road trip is to be patient. This important because it actuly makes the trip go faster. Here is a story about how I had really great patient. @CAPS5 were loading up for a three-hour drive to the @CAPS1 water park in @LOCATION1, @LOCATION2. Everyone is in and ready to go, except of course my parents. Who went inside to check on everything, got directions, call my unlce to see if @CAPS3 was ready, and all this time us kids are sitting in the car waiting. Of course my brother @CAPS2 was getting antey and couldn't stop moving around until @CAPS3 finaly couldn't take it anymore. ""That's it!"" @CAPS3 exclaimed, ""I'm going in to get them!"" @CAPS3 was the least patient of us all. Even my two little sisters had a longer patience than @CAPS3 had. Which tells you a lot?Tyler comes out @NUM1 minutes later and tells us their coming. WRONG! They didn't come out for another @NUM2 minutes which my brother mad. ""@CAPS4 took you so long?"" @CAPS3 asked. ""@CAPS5 had to make sure uncle @PERSON1 was ready to leave."" my dad awnsered. As soon as @CAPS5 got going everyone fell asleep accept for my dad who was driving. So no one really did much. At least @CAPS5 were all patient, except for my brother @CAPS3's still like that now." 9 11 20 2 2 2 3 2 3 3 3 +18741 7 "Being patient is one of the many things children are taught while growing. They mature and we use these life lessons & life guidences when they need them. I cant tell you how many times my mother told me to be patient. It was used daily while I was growing up. I gradually learned though, & realized how important being patient is. If your being impatient, you have to understand, that the people are most likely trying their hardest to finish what they are doing for your sake. I truly found the meaning of this word when I was seven years old at the mall. Although I had experience this importance & knowing I had to wait, earlier in my life, it didnt mean I was content, and patient. We were shopping in my favorite store at the time called @CAPS1 @CAPS2. I had gotten a moutain of clothes as well as my sister @PERSON1 who was @NUM1. A dressing room had finally opened after the long wait of about @NUM2 minutes. Suddenly a dressing room opened, @ORGANIZATION1 raced in it. I was crying because I was before her, &it was unfair. She cut me anyways. I was the one who waited @NUM2 minutes. After her fashion show with my mom for about @NUM4 minutes, I was done. I wanted to try on my clothes. I knocked on the door, & she told me she would move it along. So I waited another @NUM5 minutes and she was out. It was a rewardance to my patience that got me into the dressing room. I count that day that wether its a long or short wait, you will get what you want in the long run. So be patient, and good things will come your way like karma what comes around, goes around." 12 12 24 3 3 3 3 3 3 3 3 +18742 7 "I was very patient last time I went to the doctors, @CAPS1 and my brother @CAPS2 had to wait outside in the waiting room until they called us in for our shots. Everybody else was getting to go a head of as and we stayed patient. It got really boring sitting in there but we stayed patient. After about two or three hours we were not as patient as we were a couple of hours ago. So we decide to go up and ask what was going on .We found out that we forgot to sign in and so once we did we got in." 6 6 12 1 1 2 2 1 1 2 2 +18743 7 Being patient is about waiting your turn @CAPS1 being cleam you don't complain about waiting like. being patient throw the day and waiting for school to get out. Not complaining about school being to long or fakeing sick just to go home or fakeing pinkeye. Ect. You mue to wait for school to get out Being Patient isn't wait for something to get over @CAPS1 can be about wait for lines. Waiting to use some thing..Ect. Not all people are patien. I not a very patien person when @CAPS1 comes to getting home on time! I don't like waiting for people or @CAPS2 or food! I'm very patien when @CAPS1 comes to shots or anything to do with doctors. 4 5 9 0 1 2 1 1 1 1 2 +18744 7 "It was one @DATE1 morning in wisconson last day of deer hunting. I got up and dressed me my dad and friend where all sitting down to eat we had pankacs and milk. Out side it was about @NUM1 so we buttered up and and headed at. I was kind of scary in the worst at night because we don't know whats out there or whos out there. but after we got in. He stand all my ways went away. After @NUM2 hours in the stand my dad tells me ""@CAPS1 time to get back and eat"" not right now"" l said ""@CAPS1"" said my dad then l guess I'll see you latter so after he came back it wa right around @NUM3 when out of the bruch came the buck l was wating for. So l bought my gun up and shot he went right down. I have never been so proud in my life The @CAPS3." 8 4 12 2 2 2 2 1 1 1 1 +18745 7 "Patience, if you are a patient person you are tolerant and understanding. There was a time I was very patient. ""@CAPS1 can @CAPS3 go yet!? ""@CAPS2,"" she replied, ""@CAPS3 need to buy all of your school supplies."" I always didn't like back to school shopping. That would mean going with @CAPS1 to a store for @NUM1 hours trying to find clothes, notebooks, pencils binders and pens. ""@CAPS4 I really have to go too?"" ""@CAPS5 patient ok?"" ""@CAPS6, I replied. Every time I had to get clothes or pencils, I began to get more patient. Whenever I had to wait for @CAPS1. I just sat there, I just sat down and waited. And the day seemed to go by a lot faster @CAPS7 had been @NUM1 hours but @CAPS7 only felt like twenty minutes, when @CAPS3 left. I wouldn't wait till next year, I wanted to go shopping all over again!" 9 9 18 2 2 2 3 2 2 2 3 +18747 7 When you are patient you are come and without complaining. And you are understanding and tolerant. And when you are patient with something you are steady with it and ???. Because you are nervous you are not patience gives you a lot of time. And you ?? very come and steady so he is patient. And a ??? person experiences difficulties. And when patient ?? waiting to get something and they do not knew ?? that is patient. And when your patience you ?? come and if you ??? 3 4 7 0 1 1 1 0 1 1 2 +18748 7 "Patience, having patience means you dont complain about things that take long amounts of time. You are tolerant, or understanding. Some reasons why you should @CAPS7 patience are things like . You @CAPS7 @CAPS8 wait in a extremely long line and the whole time you are waiting you say things like, @CAPS1, this takes @CAPS5. Or, @CAPS1, when @CAPS3 @CAPS6 leave. @CAPS3t @CAPS6 just @CAPS9? Your @CAPS1 would be thinking, @CAPS4 my gosh would you just stop talking? Or she would just want @CAPS8 scream. So your @CAPS1 probably wouldnt ever want @CAPS8 take you somewhere that involved waiting ever again because she knows that you are @CAPS8 impatient @CAPS8 handle it. Some reasons why maybe you wouldnt want @CAPS8 be patient or you would want @CAPS8 be inpatient could be like if you had a meeting with your teacher and if you were late then you would @CAPS7 a bad first impression.So your @CAPS1 is taking @CAPS5 talking on the phone so you keep saying,@CAPS6 @CAPS7 @CAPS8 @CAPS9,@CAPS1 @CAPS6 @CAPS7 @CAPS8 @CAPS9! @CAPS10 you wait very impatiently. Although, patience is basically like a kind , gentle way of waiting. Even though on the inside, your picturing yourself screaming at someone who youre waiting on. Where on the outside, you are patiently waiting. So, having patience is a good thing. Try, it sometimes just dont let your feelings on the inside tear apart what is happening on the outside." 7 9 16 0 2 2 3 1 2 3 3 +18749 7 "Patience is when you are waiting on something. When you rush thats not being patient. When you are being patient you dont rush. @CAPS1s another meaning of patience to when you stay calm thats being patience staying from getting angry. Some people say they are losing @CAPS1 patience that means that @CAPS1 about to get angry. Those the meaning of patience @CAPS1 was a time I was being patience. I wait for @CAPS2 to come.i wait, I wait, I wait I didnt rush they say @CAPS2 is @CAPS4s birthday. In the bible it say be patient and I did. It wasnt no telling when was @CAPS2 was coming I still wait and finally! @CAPS2 came." 5 8 13 1 1 1 2 2 2 2 2 +18750 7 A time when I was patient was when @CAPS1 came. And I was getting hungry so I went inside and asked when is dinner @CAPS2? And @CAPS3 and hour. 2 4 6 0 1 0 1 1 1 1 1 +18751 7 "Being patient is a valve. Here is a story about being patient. Once upon a time, there was a little girl named @PERSON1. She lived with her uncle named @ORGANIZATION1. One day @PERSON1 decided to go out and play. She told her uncle she would be in the woods that day and not t worry about her. @ORGANIZATION1 tells her to be careful and to watch all for the wicked witch. @PERSON1 skips off to the woods. When @PERSON1 got to the woods, she walks strait to her favorite place, the tree fort her uncle built for her about a year ago. When she got there she climbed up to the top and opened the door. Waiting inside for her was not what she expected at all. There sat the wicked with. When @PERSON1 didnt return home that night, the uncle started to worry. He searched and searched for her but found nothing. He tried to be patient but it was hard. The next day @PERSON1s uncle got arrested because the police thought that that he had kidnapped: @PERSON1. He had to be patient yet again. In the end the police found the witch and @PERSON1 too and @PERSON1s uncles patience paid off, he was free. From that day @ORGANIZATION1 had patience. This is a time when uncle @ORGANIZATION1 is patient." 11 12 23 3 3 2 3 3 3 3 3 +18752 7 This week I have been very patient. I really wanted a wii and no one would buy me one. So I saved up my money for so long. Then I had to wait what felt like weeks was @NUM1 days (@NUM2 week). I was counting down the days. That just made it feel longer. So I desided to tell my self I didnt want it so I wasnt anxious to get it. That kind of worked. But when I got it to tell you the truth it isnt as fun as I thought it would be. 8 6 14 2 2 2 2 1 1 2 2 +18753 7 "In my opinion, I am a very inpatient person. Whenever I ask someone to stop doing something , theyd better stop it on the spot or @PERSON1 I rate, child makes a huge breakthrough, also, I am not one of those kids who waits for dinner, I snack my way to it! and when I am at school, I just @CAPS1 listening to meap instructions for hours on end. That reminds me, my teacher is driving me crazy.! He has absolutely no patience in any way, shape or form. If we make one noise, he immediately goes on a rampage! Overall I think people need more patience these days." 5 5 10 0 1 2 2 0 1 2 2 +18754 7 Patience is a very good thing that I and a lot of people lack. One person that does not lack patience is the head coach of the @LOCATION1 @ORGANIZATION4 @PERSON1. @PERSON1 has been very patient for the past couple years. He did not try to make his team be better than they were he just had them try their @CAPS2 and see what the end result was. The @ORGANIZATION4 ended up going @NUM1 that year and by getting the second worst record in the national @ORGANIZATION3 they got the second pick in the twenty tend @ORGANIZATION6 draft. In that draft the @ORGANIZATION4 took @ORGANIZATION5 an defensive lineman out of the @ORGANIZATION2. He is an outstanding player and the @ORGANIZATION4 other pick was a fast running back named @CAPS1 @CAPS2 out of the @ORGANIZATION1. @PERSON1's team is so good this year because of @PERSON1's patience with his team and his understanding of his player's talents. 6 12 18 1 1 2 2 3 3 3 3 +18756 7 "Who likes being patient its so boring. Preaty much all it does is waste your time. But we all know its good to be patient and to have patience. I am not a really patiente person but theyre lots of times where I have had to be patiente. When I was @NUM1 years old I lived in @LOCATION1 with a family of six not including me. I really liked video games and I have @NUM2 older brothers and @NUM2 younger sisters. We only had one video game station. That was the game cube. Also we only had one controller. It was really hard to be patiente to wait your turn because my older brothers always got to play first and they would never get off. But there was this one time that was harder than all the others. I got a brand new video game called @PERSON1 bros and couldnt wait to play it. But when I got home my brothers snatched it out of my hands and ran upstairs to play it. I was really sad and mad, but I didnt complain I just sat right behind the door of the room they were in. I sat there with tears in my eyes. I felt empty but I was still not complained. I ended up sitting there for @NUM4 hours. Finally my brother opened the door and said I could come in. Not in a very nice way but I got to play. I remember to this day how hard it was but after, it was worth it. So sometimes when you have to wait to do something you really really want to do and you cant do it just be patient and it will pay off." 11 10 21 3 3 3 2 2 2 3 3 +18757 7 "A time that I showed patience is when my sister broke my futon. It was the day that I had gotten it and I was in the living room watching a movie when all of a suddent I heard ""@CAPS1, @CAPS1, @CAPS1, thump, crack!"" I ran upstairs to find out what happend and I saw my sister on the bed, and my other sister standing there pale as a ghost. I showed patience by not yelling at them. I soon got another futon that isn't broken and now my sisters know not to mess around with things that can break! And that is my story on how I showed patience once!" 8 9 17 2 2 2 2 2 3 2 2 +18758 7 "One day when I was walking put side I found a snake on a rock. I yelled for my big brother who was playing his game. He said hold on I need to beat the leavie but the snake was getting eratatid sot said, now garrid its leaving finally after ten minutes he came out of the house and stared at what was in my hand. He asked me why do you have a snake I re plied I saw it cool. he liked I and let it go." 5 8 13 1 1 2 1 2 2 2 2 +18759 7 "One night, when me, @CAPS1 and @CAPS9 sister, @PERSON1, were asleep. Our parents were on the computer. @CAPS4 usually don't stay up that late. So I just thought @CAPS2 was doing something for work. In the @TIME1, when we wake up, @CAPS9 mom and @CAPS2 were standing in the kitchen with smiles on their faces. @CAPS2 was holding something behind his back. ""I wonder @CAPS3 it could be."" I thought. I asked @CAPS9 mom ""@CAPS3's going on!?!"" @CAPS4 said nothing, but @CAPS9 @CAPS2 slowely brought up a document from behind his back presenting it to us. The heading on the document said ""@CAPS5 @CAPS6 @CAPS7 @CAPS8."" @CAPS9 parents were smirking @CAPS11 @CAPS9 sister and I stared at each other in amazement. @CAPS11 if we were reading each other's mind, we both well knew that we were going on a cruise! I grinned excitedly and looked at the @CAPS15 on the paper. ""@DATE2 @NUM1 - @DATE2.'' it said. Today was @DATE1. I said to @CAPS9 @CAPS2 ""That's like, two months away!!!."" ""@CAPS10,"" @CAPS9 @CAPS2 said, ""you must be patient."" @CAPS11 normal kids did. I said ""@CAPS12"" @CAPS9 @CAPS2 knew @CAPS9 disappointment and said ""@CAPS14 things come to those who wait. I nodded contently. I knew that I was going to have to rough the two months out and be patient. The first couple weeks felt like mont's to us. We were oh so anxious @CAPS11 you would guess. But, @CAPS11 time progressed the patient got easier. I was able to focus on other things beside the cruise. On <@NUM2 @NUM1, @DATE3, the time come for us to head on a plane for the cruise."" That quick! It went by that quick! I m so excited, @CAPS2! I said when we were boarding the plane. ""I'm proud of you, son. You we're patient!"" That's the time of how I learned to be patient! @CAPS11 @CAPS9 @CAPS2 says, ""@CAPS14 things will come to those who wait.""" 11 12 23 2 3 3 3 3 3 3 3 +18760 7 "Im going to tell you a time when I was patient. a time I was patient was when I had to save up my money to get the new game halo reach. I had to pre order it with my money, so I did a bunch of work so I cut the lawn at my house then I cut other peoples lawn for two dollars so I did that for about two months at the end. I ended up with three hundred dollars. I pre ordered and they told me I had to wait for three weeks so I did just that. I waited and bought some other stuff with the left over money and the game finaly came in the mail. thats a time I use patients to wait for something." 8 8 16 2 2 2 2 2 2 2 2 +18761 7 "Once there was a girl. She was very impatient until she was taught how to be patient. One day @PERSON1 was going to get her drivers licence. She was to and was so excited to be able to drive. When @PERSON1 got to the licence place she saw that there were a lot of people waiting. She estimated about @NUM1 people were there, @CAPS1 did there have to be so many people here,she thought to herself. After about @NUM2 minutes of waiting she got @CAPS6 mad, because only one person got his licence in the time period. She thragh a big fit right there. ugghh! I was supposed to get my licence today not wait around for a bunch of experienced adults to get their licence renewed! she started blabbering and said. @CAPS1 do you guys take so long! You are so slow! she went home and started talking to her faend @CAPS3 on the cell phone. @CAPS2 there were many people I am never going to get my licence @CAPS3! @PERSON1 just calm down. Stop being so impatient. @CAPS4 the line was so long and . @PERSON2 cut @PERSON1 off. @CAPS5 you keep running home crying, you will never got your license. The line for a driver licence is always that long. I had to wait @NUM2 hours to get mine.@CAPS6 five hours!@CAPS7, @CAPS4 I took @NUM4 hours with me so I wouldnt be bored. Take your phone with you. @CAPS8, @PERSON1 replied.The next day she went back to the licence place, she took her phone and a book with her. While she waited, she texted her friend, went online and read her book for her book project. She kept moving in the line @CAPS4 she didnt even realize @CAPS11. @PERSON1 waited for @NUM5 hours that day @CAPS4 she only thought @CAPS11 was @NUM4 because she was preoccupied. @PERSON1 felt great when she finally got her licence, she was the second one in school in got her licence (after @PERSON2).@CAPS9 @PERSON2, you taught me how to be patient and calm down.@CAPS10 problem, @CAPS11s the least I could do for my best friend." 12 8 20 3 3 3 3 2 2 2 2 +18762 7 Being patient means that you are understanding and tolerant. A patient person experiences difficulties without complaining. One time when I was patient is when my parents did not know it was a half day at school. One day in elementary school we had a half day which parents didnt know about. After school I waited in the parking lot for close to @NUM1 minutes waiting for my parents to pick me up. I was starting to think my parents werent coming until a teacher asked me what I was doing. After I explained my situation the teacher let me call my parents. My dad had a appogized and went to get me after I explained then I could finally go home. 8 9 17 2 2 2 2 2 3 2 2 +18763 7 "Ive been patent plenty of times but when I ordered a new game console that is when I had to be patient. My dad and I were getting a game console that would be at our porch in two weeks. For me it felt like a life time, but I had to keep patient. Not for those fourteen days did I complain, niether did my dad. when it came, it was definitely worth the wait. That is a time when it was necessary to have patience and to not complain." 8 8 16 2 2 2 2 2 2 2 2 +18764 7 "A time when I was patint is when I was at the fastifal. I whanted to get something to eat and the line was big. Another time is when I wanted to get on a ride the line was giantle large. It was for the @CAPS1, @LOCATION1, @CAPS2 pirate ship, the swing. There was a line to play this baskeball game it was big." 3 6 9 1 0 1 1 2 1 1 2 +18765 7 "Have you ever had enough patients to deal with @NUM1 screaming kids. I,can proudly say that i can. It all started when my uncle steve and @CAPS1 @PERSON1 decided to move to @LOCATION1. They needed alot of help so my @CAPS1 @DATE1 decided to take all five of her kids and my sister and I down to @LOCATION1 to help them. The only problem was there where @NUM2 kids and only @NUM3 her. So we packed up all of our bags and headed out. My @CAPS1 @DATE1 has an expedition car so all @NUM2 of us could fit. But,it didnt take long for everybody to get uncomfortable. Everybody starts to feel smocshed in and get really hot. So all of the @NUM1 kids start fighting. My @CAPS1 @DATE1 got real stressed real fast. I thank god that there was atleast a @CAPS5.V in that car. But I was sitting in the front so I didn@CAPS5 get to watch it. After about @NUM1 hours Id had enough. My legs were getting all cramped up, and the constant motion was making me dizzy. By now we had been driving about @NUM7 hours, only having one rest stop. It was dark out now. We were the only ones on the road at the moment. I sank lower in my seat. Then @CAPS6. Everybody screamed, even my @CAPS1 @DATE1. At first I thought we got into a car accident, but when I opened my eyes I was alive. We had hit a deer. It slid across the hood of the car! Finally after about @NUM8 hours we reached @LOCATION2@NUM9. It was @NUM10 in the morning! I ended up surprising myself with how much patients I had. After that I dont think that I want to go on a roadtrip again." 8 10 18 2 2 2 2 2 3 2 3 +18766 7 Patience is when you have problems and dont complain. You need patience at an amusment park to wait in all the lines. Patience is not complaining about being board on a long car ride. You need to be patience to fish or to be rewarding and it can save others head aches. You want always be streesd if you are patient. So you should always be patient it can make your life so much easier long lines wont seem so long fishing is very rewarding for patince. 5 4 9 0 1 2 2 0 1 1 2 +18767 7 "Patient day. I remember the time when I was patient for a toy car. Four @CAPS1 I hate to waent for @NUM1 whole days. Each day it felt like I was in jail. So I was getting mad each day slaping people in the face it was so funny so my @CAPS2 @CAPS3 was mad at me. then my mom put me on punishment. Then couple days later I was dooing good in school. So my mom was so proud of me. Then she bout me a lot of stuff. Later that chirstmas day we had turkey ranch dressing. Then I open my presents. I got the toy car, @NUM2, monster truck cars shoes and @ORGANIZATION1s blue, red, @CAPS4 any collars you can think of. So that is why I was patient that toy I was so happy and my @CAPS5 stop by and gave me @NUM3 dallers. Then he took me ice @CAPS6 shade to were these skinny tites. But it all worked out for me at the end. I got every thing I wanted and I want a load touch with the @NUM3 @CAPS7. It felt like I was rich for chirstmas day." 6 7 13 1 1 2 2 2 2 2 1 +18768 7 One day it was this girl in @CAPS3 really wanted to go school shoping in @CAPS3 hade to wait because her mother said @CAPS3 dont get her money now @CAPS3 got it later in @CAPS1 her mom said wait in tell latter @CAPS3 did not now that her new stuff was up in her room so when her mom get back @CAPS3 had said we is going to go @CAPS1 her mom said go get it jacket upstairs in her room. @CAPS3 went upstairs to get her jacket when @CAPS3 went up in her room @CAPS3 saw new cloths in five pere of new shoews and @CAPS3 hade scream in @CAPS3 came down stairs in told her mom thank you @CAPS3 said you welcome @CAPS1 her mom said I told you I was going to get your stuff in the @CAPS3 said you just have to wait payshent. 5 6 11 1 2 1 1 2 2 1 1 +18769 7 "Patience is a feeling that you get when you experience are difficult task and do your best to overcome it without complaining about the task, like when your getting paint out and then you squeeze it and it wont come out, but you still keep trying until you figure out that it is gone. Then you go get a new bottle to start using. I wish that more people were patient, then we wouldnt gave to listens to constant complaining." 6 6 12 0 1 2 3 0 2 2 2 +18770 7 A time when I had to be patient was when I had to ?? my little brothers and my two cousins. This was going to take a lot of patience. One day I got a phone call from my aunt. She said she needed a ??? sitter for my two year old and seven year old cousins. she said she would pay me if I would ?? them. So I said sure. I hut n I did ?? I was getting myself into. A couple days were my mom ???(@CAPS1) @CAPS2 turned out piclity good for me after all. 12 10 22 3 3 3 3 2 3 2 3 +18771 7 "Patience is probably one of the hardest things to do in the world. One time I remember when I was patient was when my family and I went to @CAPS1 point. When we went to @CAPS1 point we all were ready to ride the magnum, which we never got to ride the last time we were there. So we were planning on riding that first. We got in line after a little while we had to wait for the rain to stop the wait was an hour and fifteen minutes. So I decided that I would be a little more patient and not complain. Although, not being able to sit down after a while gets kind of painful but I still never complained. A little while later I actually started forgetting I was in line because the people started letting more of us on. I guess not complaining works because my whole family was in a good mood after we got off the ride. So I decided to learn how to be a little more patient with people because of how good every thing worked out intil we got to the bumper cars." 12 9 21 3 3 3 3 2 2 2 3 +18772 7 "Waiting into the @LOCATION1 double doors of the fravential I am @CAPS1 by a man in a suit, welcome to the fravsthat the man??? as soon as we enter we can walk on firther to the??? ??? infront of us. when does the show start? I ask excitedly. @CAPS2 till about @NUM1. my mom replies. Eight thirty was about an hour away and we couldnt sit down due to the crowd ahead of us. @NUM2 minutes passes by and @CAPS2 one person was admitted into the show. @CAPS2 even the elegant music could mask the crowds uproar. Another @NUM3 minutes passes and our seats finally await us. Walking down the walk way I ease into seat @NUM4 as the show begins." 9 8 17 2 2 3 2 2 2 2 2 +18773 7 "Being patient is sometimes a difficult character trait. @CAPS1s a good one to have too, @CAPS1 can help you in a lot of situations. If gas have patience, you wont get nervous or anxious about something. I was patient when I had to wait a week for a birthday present my friend @PERSON1 was getting me. I didnt think about @CAPS1 that much so @CAPS1 didnt really get to me. I knew @CAPS1 was going to be really cool, which made being patient a little bit harder. I was still able to keep @CAPS1 off my mind. I had to make sure I didnt think about @CAPS1, so I wouldnt beg my friend to know what @CAPS1 was, because that would be impatient. If your impatient people might get annoyed because you will always ask questions, and got on there nerves. @CAPS1s good to be patient with friendhips, so you dont become mean to them or anyone else. @CAPS1s @CAPS2 not good to be impatient with your family. If your patient you can work things out better, and stay more on task and focused." 6 8 14 1 1 2 2 2 2 2 2 +18774 7 "When your at a store or the doctor or anywhere where you have wait for something you always have to have patience or you wiil never be able to do anything. I remember when i was at the store with my mom we had to wait in this long line just to buy a few groceries but if didnt have patience we would put are stuff back and went back home but sense we did have patience we got to buy are stuff. That why, if you dont have you wont be able to do anything you wanna do." 8 8 16 2 2 2 2 2 2 2 2 +18775 7 "Heres a story about time when I was patient. So the story begins at art prize and loved to see the beautiful art there, but I was dieing to see the winnig picture for art prize. My parent told me to wait until we all see the rest of the art prize amazing art. So I signed and replyed ok we can see the rest of the art prize things first. While we were looking at the art the whole time I was thinking about the winning piece. That is all I thought about. ??? A little bit later. I was thinking of what a blessing it is to be here at art prize. So I checied up and disieded patience is good. And if you wait for something for a while it all of a sodden it seems more valuable. A couple hours later I started to head to the car, and my mom intrupted and said, @CAPS1 dont you want to see the winning piece of art? @CAPS2 yes I forget.@CAPS3 there is not a line now so when we go to see it there was no line. I was the most amazing thing I have ever seen. It was a picture of sergeants drawn out of just a pencil. That day I learned that patient is important, because that way it was worth the wait to see something that you like." 12 12 24 3 3 3 3 3 3 3 3 +18776 7 "A time when someone else I knew was patient was when I was trying to have sleepover with my friend @CAPS1. My parents ordered pizza for me and my two brothers because they went out for their anniversery dinner. It was around @NUM1 pm when they left, and we just started digging into the deep dish @CAPS2s pizza. Halfway through dinner I got a text from my next door neighbor, ??? my best friend, asking if I wanted to have a sleepover. I replied saying that my parent are out, theyll be back in a few hours, Ill ask later. @CAPS6 finally around @NUM2 pm my parents came home and I asked about the sleepover. She said, I dont know. And walked away. About a hour later I got my answer. It was a yes! I texted @CAPS1 and said that I could. She replied finally! @CAPS4 I had to go pack. @CAPS6 I went to my room and got everything I would need for a sleepover. I was just about to walk out the door when my mom shouted from upstairs, @CAPS5! I need you to take the dogs out before you leave! @CAPS6 I dropped everything, put the leashes on the dogs and stood outside in the pouring rain waiting for them to finish up. When they were done I grabbed my stuff and ran out the door before she made me do something else. When I got to @CAPS7 house she opened the door and let me in. I said, @CAPS8 it took @CAPS6 long. Thanks for being @CAPS6 patient!" 11 12 23 3 3 2 3 3 3 3 3 +18777 7 I dont have a time when Im patience so today I going to write about how impatience I am. I thank one day I was in a long line at the stare. (@ORGANIZATION1). I was a hot day and I was ready to go my cool and big house and relax and chillout. You all know how old people are they walk slow and talk to much. If you already notice. @NUM1 of those people where in front of me. Hes taking all the day taking out his wallet and talking to much. So I said you know what Ill jus go to another @ORGANIZATION1 and get me a slippery due rite know I cant deall of this slowness or a humid day and left. 7 6 13 2 2 2 1 2 2 1 1 +18778 7 "Being patient can sometimes be very hard, especially, when whatever you are being patient about is really distracting and painful. This is the story of how I had to be patient when I fell outside and??? meself. One day, my brother and I were playing outside. We were having for throwing water balloons mchother.I was already soaked from head to toe but we still kept playing .Suddenly, I heard a buzzing sound by my ear. I turned around and saw a huge be next to me.I was only @NUM1 yers old and very `afraid of bees. I turned and rah down the driveway and kept going around the house , thinking that the bee was still following me .I was starting to get tired so I tripped and fell scraping off a good amount of skin in the process. I immediately began to org when I saw blood passing from the??? Inside to tell my mom. @CAPS1! I fell! I managed to scream between sobs. @CAPS2 my gosh! Let me go find some band aids my mother replied. The pain was intolerable for my little body. I kept silently crying but I knew I had to be patient while my mom went to look for bandages. Just @DATE1 I had wasted bunk of band aids by plastering them a cross my donts face. I had to be patient and???For a long time, till my mother usually found the bandages. I found them! my mom said, while running down the???In there / WAS setting. @CAPS3 you for being so patient? @CAPS4 stock the band aids a cross the cut on my leg and then gave me a lollipop. T know I had been a good girl by being patient." 12 12 24 3 3 3 3 3 3 3 3 +18779 7 "Yo! Im the narrator you know the dude that tells the story, well Im gonna tell you a story about patience. Ok, so, there was this armadillo. His name is @CAPS1. Now @CAPS1 is no ordinary armadillo. @CAPS1 was an armadillo without a shell. All the other armadillos made fun of him and told him to get a shell. So @CAPS1 being the smart @CAPS1 he is thought about this idea and decided to make a shell of his own. @CAPS1 went to the junk yard to look for things to help him make his shell. He found a lot of light weight metal so he took it home, melted it down, and started the long process of metal smithing his shell. When his shell was complete he tried it on and it fit nice and snug. The next day he went to school and everyone was so impressed and it was super shiny. @CAPS1 was no longer made fun of. @CAPS1 had to be patient to make his shell!" 10 8 18 2 3 2 3 2 2 2 2 +18780 7 "Being patient is a very difficult thing to do. Many people cant be patient. For example my brother. If he orders something online or is wait for dinner be perparred he always has to be winey of when hes going to get what he wants. Im not like that. I actully have patience. For example I needed shoes so I searched the internet to see if I could get a good deal. I was searching on the @ORGANIZATION1 store when I saw these really good shoes. I asked my dad if I could order them online. So the next day my mom orders them online, I was so excited, I waited and waited. After three day I missed my school bus. My mom had to go to college and she couldnt drop me off. So I stayed home alone. I found out that my dad was comeing home that exact day and the house was a mess. So I started cleaning. My mom came home and saw a box laying on the front. She picked it up and opened the box and saw my shoes were in there! I went to go welcome her and I saw my shoes lay there. I jumped up in excitement and put them on and it was a perfect fit. My mom came in the room and said they were suppose to arrive on @DATE1 but since you were patient they came early." 7 8 15 2 1 2 2 2 2 2 2 +18781 7 "I have never bent a patient person @CAPS1 this girl I know @PERSON1 she is always patient like the time i was scared to go sleding down the hill and I would not go down the hill I kept saying Im not going down the hill. @CAPS1 about @NUM1 min later she was still patent she sied @CAPS2 I go down fist then will you go down. I sied yes so she went down than I went down. And and the day of last yares dance I was takeing so long to get dressed,we were all redy late @CAPS1 she was so vary patient I was so spriced. I thik she has a surnus of patients I hope some of it rubes off on me because I need some and as soon as posable and alot of it to because I bet ime the only person in the world without patiets wow!." 5 7 12 1 1 2 1 1 2 2 2 +18782 7 One rainy day my dad's leg was brothering him. He took medican but that didn't work so we took him to the hospitle in coro. They looked at his leg and they told us we had to the hospitel in covent hospitle in @LOCATION1 so we got on our way to @LOCATION1. When we got to the hospitle these was like @NUM1 people in the wating room. My dad had patience to wait. When we had to go in the room. My dad had to get x-rays. He was also had enough patience to wait to see what was wrong. When he found out what was wrong. He had to wait even longer to see if he had to get surgey on his legs well after he had all the patience he had to go through surgey. He had enough patience to go through surgey. It is a good thing my dad had all the patience because his legs are all better I didn't think my dad had enough patience. 6 8 14 1 1 2 2 2 2 2 2 +18783 7 I am patient every even this year for @CAPS1 so I can get some @CAPS2. I was buying @CAPS2 but I cant buy any more because @CAPS1 is coming up that why I half to be patient because it will seen longer if I keen getting excited. Every day is patient sometimes I cant wait to get out of school so I can play. Im always trying to be patient because its one holiday after another each one gets more exiting. Every kid tries but being patient is one of the most hard thing to do. How Im patient is I act like nopthing exciting is even comimg up. 4 5 9 1 1 1 1 2 1 1 1 +18784 7 Today was thanks giving. We had to drive up to ??? to visit my cousins. The car was buning an @NUM1 trip. But the patience was hard I wish I hun a plane ticket out I saw cool things. I ??? to out there we turn off the highway???and we were??? With family we sat down caught we gave gifts wnD @CAPS1 a turkey @CAPS2.??? Iillegible 8 8 16 2 2 2 2 2 2 2 2 +18785 7 On my way to @STATE1 I was patient because I had to wait for the buses. I also ??? On some stops it ?? buses @NUM1 it o @CAPS1 hes to got ??? those haves I was so tired that ?? bus got the I fell asleep. 4 4 8 1 1 1 1 1 1 1 1 +18786 7 "Today was the final day of tryouts. The deciding day .Tryouts we over I patiently waited for the @CAPS2 to hand out the envelopes to all @NUM1 girls. I didnt know if could handle this. @CAPS1 until youve left the building to open your envelope, @CAPS2 @PERSON1 said. @CAPS3s only fair .If everyone opens them in here then people who dont make the team will be sad and bummed while the girls who did would be jumping for joy, which would make the girls who didnt make @CAPS3 feel even more bummed and left out .Be patient and @CAPS1 until you leave the building. she called my name .I came up and grabbed my envelope .She dismissed us .some girls opened their envelopes right away .But, they didnt make @CAPS3 .karma .I waited until I got outside. I could barely @CAPS1 .I needed to know but I had to @CAPS1 .Patience isnt such a lovely thing always. l opened my envelope. I made the team! I was so excited and I was glad I had the patience to @CAPS1 and be surprised." 11 12 23 3 3 2 3 3 3 3 3 +18787 7 "It was my family vacation, we was going to @CAPS1 point. We was staying in the magical hotel is was, was beautiful you can see a real waterfall and it like haven. We was in this huge room it have @NUM1 huge bathroom and bigs @CAPS2. Then as I look out of the window I can see rolercoster and all kind of ride. But they have come with these knew ride call the @CAPS3 breaker: it @NUM2 hundred feet tall and big as the statin of libaty and it pikes you up drop you @NUM2 hundred feet twist like a! Tarnado. It move from sides to side. Me and my mom and dad went there, we want to ride. But @NUM4 people wateing in line. My parent wont use to ride a different ride but I wanted to rid this. So I got in line and wait, I knew I have to be patient but @NUM1 hours pass I start to loss my patient. There was only @NUM6 people in front of me. Finaly it was my turn, I got on it, frist laft me up @NUM7 hundred. Feet and dropedme, spin the around, twist me until I got tired and finally I got off it. You can see me crying but it was not a bad cry, it was a good cry so that was the time I was patient" 7 9 16 2 2 2 1 2 3 3 1 +18788 7 "I elevator tapping my foot, smooth jazz music humms out of speakers above me. Eventually the all too familiar click was head and the smooth metal doors slid open to reveal a well furnished hallway with many other people waiting @CAPS6 their turn of departure on the ??? I slipped out, trying now to become trampled by the massive crowd, then, silence. My footsteps echoed off the ??? as I searched @CAPS6 room @NUM1. Finnaly finding my destination I open the door and step inside where many other squirring children are waiting. I remove my coat and hang it on a nearby hook, trying not to draw too much attention to myself. I continue by searching through the magazine section, torn up @CAPS1 magazines and delicately handled sports illustrated are flipped through until I find an interesting looking article on swimming. Magazines under my arm I choose a seat in the far corner to wait in. Minutes pass, I can tell that the child next to me is becoming impatient fast, he taps his mothers jacket repeatedly and asks the same thing he did @NUM2 minutes ago, @CAPS2 how much longer? The mother checks her watch and in a closely annoyed tone replies, not much longer now dear. @CAPS3, the little boy slumps back in his seat and jams his thumb into his mouth to keep him occupied. I roll my eyes, but cant help but crack a smile at his actions. Somewhere across the room, a girl about my age frowns as @CAPS5 texts on her cellphone, after a quick glance at the clock @CAPS5 scowls and continues. Just then, the glass door slides open and a woman with a homemade perm and tired eyes steps out. Across the waiting room, patients look up at her, their eyes full of anticipation and hope. @PERSON1 the doctor is ready to see you now. @CAPS4, I avoid the angry glares from other patients and follow her out the door. You know its funny, @CAPS5 says well snapping her gum. @CAPS6 someone. So young you were the most patient person out there! I merely nod my head and grin because I understand that patient people, experience difficulties without complaining and I am very grateful that Im a patient person. stand in the" 12 12 24 3 3 3 3 3 3 3 3 +18789 7 "One day my brother, my mom and me were going to the doctors because my brother was sick. When we got to the doctors offices and sat in the waiting area. They called my mom and brother. So I had to stay. My mom told it will only take two minutes. Guess what she was wrong. It took her two hours to come back. So while I was patient I texted my aunt and friends. I also played some games. I actually brought my @CAPS1 with me. So I waited and waited. I was so bored I went outside for some fresh air. Then I got tired I just sat there. Finally they came out. Guess what my mom said how are you sweety, then my mum told me my brother was sick. I was so patient that we got to eat at @ORGANIZATION1. after the ??? I was patient at the clinic so then we spent @NUM1 minutes. Here so I ??? ??? ??? ??? ??? ??? ?? to sleep. I was ??? ??? Because I was patient its not that ??? believe ??? its actually easy. Thats a ???" 10 9 19 3 2 2 3 2 2 2 3 +18790 7 "Patience is when you get in a long line at the grocery store when you are waiting for a new video game. That happened to me when I was on the great jorney to california. I had to stand in six very long line for up to @NUM1 hours it took forever to get on the plain when we finaly got there we were hungry so we had to wait inline for @NUM2 minutes when we were finally up to get our food we were starving we ate and went to a friends house we stayed for an hour it started to get bouring but I had patience and waited turns out it was not so bad after all. Being patient is an important thing in life wether you are or arnt patient is up to you that week was all about patients and lines lots of both it was a long day. Sadly we had to leave after that day which equals. Yap you guessed it for patience first was had to go huston, texas then @ORGANIZATION1 then we had to drive @NUM3 hours to get home when we got home we were so tired and passed the story to my friends and family." 7 9 16 1 2 2 2 2 2 2 3 +18791 7 "To be considered patient, you must be tolerant and understanding,and you cannot complain. I love babysitting my little cousin, especially when they are still infants. This @DATE1, I went to my cousins house to watch her daughter @CAPS1 @PERSON1 , for about three hours. I was getting paid fifty dollars, and I couldnt wait.When I got to their house, @NUM1 was sleeping , and I woke her up as soon as her mom left. As soon as I did that, I figured it was a bad idea she started screaming at the top of her lungs. I picked her up, rocked her, played games, put her in the swing , and even tried to feed her but nothing worked. I was so upset, I fell like screaming. The baby cried for an hour and a half, and wouldnt hush. Tthen I said, @NUM1 , whats the matter ? @CAPS2 I spoke, there was a moment of silence, she had stopped crying. At that moment, I realized I was being patient because I stayed somewhat calm and I didnt complain to @CAPS1@CAPS4s mom." 11 12 23 3 3 2 3 3 3 3 3 +18792 7 "Every year since I learned a bout @LOCATION1 and presents, now that I think about they never said youd have to wait months until @CAPS1 came around. I love @CAPS1 but once a year or so @CAPS2 patient enough to wait until @DATE1 downward. The first @DATE2 of @DATE1 told me @CAPS1 was coming along with all we decorating ,carolling and wistfull of @CAPS1 joy. I usually try to pass the time by having snow ball wars with my cousins. I still feel temptation trying to rush time and make me anxious and grueling to wait so long but @CAPS2 still patient and try to let the temptation go away. When @CAPS1 eve came I feel greatful I made it this long with patients because @CAPS2 just like my parents and cant wait for anything that takes month. Then it comes around as slow as possible and then leave quicker, then I could think how fast it left. Just like the saying time file sometime having fan." 8 8 16 2 2 2 2 2 2 2 2 +18793 7 "Once when I was a little boy, about seven years old I was extremely patient about an @CAPS1 toy I wanted. Ever since @CAPS1 The @CAPS3 @ORGANIZATION1 bender was on television and In stories now I was crazy about them and I still am today the @CAPS4 @CAPS5 the only person in the @CAPS1 world who can master all four element @CAPS7, @LOCATION1, @CAPS8, @ORGANIZATION1 . Now I can write you a whole entire book about the @CAPS1. So I saw a @CAPS1 had set on t.v. so I asked my mom could she buy it. And she said when I get the money, but until then no. so of course I was upset. So I was waiting counting until the days went buy. Then final that very @CAPS12 came, and you know what that means. @CAPS11 @CAPS12 the @CAPS12 has arrived the @CAPS12 I get my toy but I didn`t know that she only got two hundred dollars so I had to wait another week. I was so upset that I ran up steair and locked my door and cryed myself to sleep. My birthday was coming up. I was so upset that I forgot all about the @CAPS12 and when my birthday was here can guess what? I finally got the best of all. The @CAPS4 and my mom said that all that patients you did got what you wanted." 12 12 24 3 3 3 3 3 3 3 3 +18794 7 "Patient is like your waiting for something and you don't complain its taking to long, and your just sitting there waiting quietly. Here is an example. One time I was waiting to go get a check up at the docters and your sitting there quiet reading a magazine and just sitting there. Theres an example on being patient" 3 4 7 0 1 1 1 1 1 1 1 +18795 7 "One day a kid was going to school @CAPS4 was going to turn in a paper for math @CAPS2 @CAPS4 did. During @CAPS1 class @CAPS4 was doing a chapter sketch. His teacher called him over. The teacher said do you have, a page of a story that was due a month ago. @CAPS4 said no teacher asked why the kid said because I have been going to a basketball tournament. teacher said you have tell tomorrow. @CAPS2 the next day the kid is at @CAPS1 class @CAPS4 said Im @CAPS2 sorry I dont have my paper. teacher asked why because my grampa died. teacher said okay tomorrow. @CAPS2 the kid got his paper done." 5 5 10 1 1 1 2 0 1 2 2 +18796 7 "I have been patient lots of times in my life but this time was really hard to be patient because I was so exited about building. Left in my reach we had been planting it for a while now and we started on a @DATE1 after school was over we got like half of it done that day but there we couldnt work on it again for a week because my brother, sister, dad, and mom all had ?? or ?? so I had to wait a week just to work on it again. It was really hard to be patient this time thogh because I had been waiting to do this for a while. After a week finally passed, it seemed like a month but now I could finish my work and I was so exited. A few days later we finally finished the walls painted a blue and gold for u of @CAPS1 and my left as all we had to do was put my dad in my left then it was ready to sleep in. I was so happy that we had finally finished my room and I could sleep in it." 8 9 17 2 2 2 2 2 3 2 2 +18797 7 One time that I was patient was when I was saving up to buy a game. The name of the was halo reach. I had to wait @NUM1 weeks unit I could get it. But I was patient by waiting the whole time and not asking over and over agian. 5 5 10 1 1 1 2 1 1 1 2 +18798 7 "The @CAPS1 @CAPS2 a few days after @CAPS18 began to run, @CAPS3, a small, anxious, chestnut room @CAPS1 saw her @CAPS5 plowing a large oval and covering it with @CAPS4 looked like dust. ""@CAPS4's @CAPS5 doing, @CAPS6? "" @CAPS7 a very curious @CAPS3. ""@CAPS9's plowing."" @CAPS10 @CAPS11, the young horses' @CAPS17. ""@CAPS12's going to be in a race called the @ORGANIZATION1 next year and that's how @CAPS18 will practice."" I want to race! ""hollered @CAPS3 excitedly ""Patience my darling, you're not even a filly! ""@CAPS10 @CAPS11, conclusively. And so @CAPS3 waited patiently for weeks. When @CAPS18 could @CAPS18 ran the track at night. @CAPS18 counted her times and @CAPS18 got faster and stronger. Two years later @CAPS3 was the champion reached for @NUM1 years in a raw. ""@CAPS17 was right! ""@CAPS18 claimed ""Patience is the key!" 10 9 19 2 3 2 3 2 2 2 3 +18799 7 "@CAPS1 you buy @CAPS10 yet? I yelled across the room @CAPS2 not yet lets get @CAPS10 @CAPS4 my dad said back to me. I was buying a sooter on the internet and @CAPS10 was being shipped from @LOCATION1. @CAPS10 said the scooter will get her in five to eight buisness days. @CAPS3 I yelled as I bought @CAPS10 @CAPS4 all thats left to do is wait. The next morning I woke up at six am to catch the bus to school during on my classes all I could think about was the scooters. Patience @CAPS5- patience, I thought. After school I would go to close country intill @NUM1 when my parents would pick me up. Five business days finaly come I cant wait any more I yelled. After close country my mom drove me home and I cprinted to the main box darm @CAPS10! I said @CAPS6 yeah the website tried to charge our credit card extra money so we had to cancel @CAPS10. @CAPS7 @CAPS5 my mom said lets buy you a new one @CAPS8 @CAPS9 scooter finaly arrives three buisness days later. @CAPS10s about time I said with joy." 11 9 20 3 3 2 3 3 2 2 2 +18800 7 One time when I was at @CAPS1 @CAPS2 I had to wate about @NUM1 hours to go on the top thrill dragster. I was so patient because it was my first time ever going on the dragster. Me and my dad were wating and wating. When we got to the front of the line I was so scared that I was going to pee my pants. When we got on the rollercoaster I said that I dont want to go. So my dad asked if my son could get off the rollercoaster and they said when you get on there is no getting off. So I had to ride it and when I did I wanted to go on it over and over again. Even though it was a @NUM2 second ride it was the best thing that I had ever wated for in my life so far. That is the time when I had to be patient to get something that I really wanted. 9 8 17 2 2 2 3 2 2 2 2 +18801 7 "It was patient waiting to go to @CAPS1. It went through @NUM1 appointments. It was so excited and had the ladies to wait patiently and do many achievements and other activities respectively. On i.e. could offer everything, make especially new??? rave nily parents yells at me and ??? you go against systems. I will have to be patient. Il dish all night work, in the process ??? grade you a @CAPS2. It walked ??? days and dish everything else in @LOCATION1s meat. Sitting it because such vast will then tis with @NUM2th, ???" 8 9 17 2 2 2 2 2 2 2 3 +18802 7 Do you know someone who is patient? I do my mom is vary patient with us kids. When I just blow my top my mom is still cool. All the time my littlel borther makes me so mad that I cant stand it. But she barly over is like that. Even when my grandma died she stayed cool. Two of my ants just brock. down that week. But thir good now. Every day thing dont make her vary uptite. When my sister makes her mad she always regrets it. I whant to punch her when she mackes mom mad because it wares off on me she crancke. So as you can see my mom ceps her patients so well. 6 5 11 2 2 1 1 1 1 2 1 +18803 7 "My friend was waiting for @NUM1 hours to talk to my dad, my dad was busy fixing his @CAPS1. He was waiting, waiting, and waiting till he fixed it. I was wondering what the question was. He was sitting inside, watching tv waiting for him to be finished. Then my dad was done so my friends asked if we could ride the @CAPS1. My dad said yes. My friend was being patient." 7 8 15 1 2 2 2 2 2 2 2 +18804 7 Being patience is a good thing because if you are and then you are in some rough time in life. Patience people can do by bringing something to do. They could what there for three hours and not be herd. There are some people that cant what there for three hours. There are some people that cant what there for ten minets. These people get made at that and they will just give up. But after all of those people that can and cant people cant quit. People what there for one hour and will blow up. And then there are people that cant do it but they do. So all you have to do is find anything to do if you cant do it. 5 4 9 0 1 2 2 0 1 1 2 +18805 7 "@CAPS1 are we there yet? I keep asking over and over again. @CAPS2 but almost, he replied. Today we are going to @LOCATION1 adventures and I am so excited! After I asked my @CAPS1 when we would be there, about @NUM1 minutes later we finally arrived at @LOCATION1 adventures! The line to get are tickets was long but not to long. Once we get them we went to go look for a lock to put all of are stuff in! The line far that wasnt long so we did that fast! We were now all hungry, so we went to go eat! The time we got into the restaurant, the lines to order were very long! Ok, so now that we are all done eating, it was time to ride some awesome e rides! @CAPS3, man! is what I would get saying when the lines to the rides were super long! But so far I have been a very patient girl! But, ok say I had to go change my clothes to go into the water park and change back or go to the restroom man these lines were super long too! Now that the day is almost done, and the park will be closing, my family and I arent into the gift shop: we were in the for about @NUM1 minutes waking around. When we were done and we were ready to check out, the check out line wasnt long at all! Finally, there was a line that wasnt long! All that day I was a very patient girl! Between everything that went on throughout that day!" 8 11 19 2 2 2 2 2 3 3 3 +18806 7 "A time that I was patient was when my friend and I were at @ORGANIZATION1 vaction. I was having a blast. My family didnt come because they dont like roller coasters. We dicided to ride the @CAPS1, it looked like a really long wait. After an hour and a half of waiting it started to rain. It was just sprinkling at first but it was enough so they had to close some rides, including the @CAPS1. We really wanted to ride so we waited until the rain stopped. After another hour the people left so we were at the front of the line. My friend and I got front row seats and had a lot of fun. It was worth waiting @NUM1 and a half hours @ORGANIZATION1 it and we even went on it twice." 8 12 20 2 2 2 2 3 3 3 3 +18807 7 A time when I was patient was when I was in @NUM1 grade and I had to wait to play football till this year. I was patient because I waited for a long time without doing anything. 3 4 7 1 0 1 1 1 1 1 1 +18808 7 "Do you know what patience is? Have you ever been patient? Well being patient is something you need in life. Im going to tell you a little bit about being patient. (@NUM1) patience is a big thing. Patience is something we need for when we go shoping, or when your in the car. You must be patient when you are in the car because if you dont then you could get into an accident. Patience has many qualities. If you arent patient when you are place then you are going to become annoying. When their are long lines or something and your not patient people are going to get very frustrated and annoyed with you. (@NUM2) being patient is important. If you have kids your impatient, then your going to teach your kids to be impatient. Thats not a good thing. As you can see I have told you as much as I can about patience." 5 7 12 0 1 2 2 0 2 2 3 +18809 7 "A time when @CAPS3 parants weres patient was when I wouldnt @CAPS7 @CAPS3 dinner. One night @CAPS3 dad made chop soey for dinner. I didnt like chop soey at @CAPS1! The smell of it @CAPS2 made me gag! But, @CAPS3 dad loves chop soey so he makes it @CAPS1 the time! We @CAPS1 sat down to @CAPS7. I ate a potato and @CAPS3 dad gave me whole scoop of chop soey. Im not gonna @CAPS7 it. I said. I hate chop soey. @CAPS3 dad sat patiently at the table waiting for me to @CAPS7 what was on @CAPS3 plate. fine, I said, I@CAPS4 @CAPS7 the meat out of it. I took the fork and stired the chop soey around looking for the meat. After I ate @CAPS1 the meat. I said @CAPS5 I am done. @CAPS3 dad laughed at @CAPS3 stubbornness. @CAPS7 the vegetables out of it. @CAPS3 dad said. @CAPS9 @CAPS10! I hate celery! I whinned. After a half hour of the war of wills @CAPS3 dad won. I @CAPS2 wanted to leave the table but he was very patient with me. I ended up eating the chop soey and leaving the table. That was when @CAPS3 dad was very patient." 12 12 24 3 3 3 3 3 3 3 3 +18810 7 ??? One time when I was being very patient was when I was with my grandparents. We were suppose to be going to @CAPS1 adventures and my grandma said she wanted me and my cousins to be ready by a certain time so we wouldnt get there that late. So the next day we get to her house right there at @NUM1 like she said and we had found out that she had over slept and we all looked at one another because we new that it was going to take a long time. So I said thats ok we can wait and we all went into her house and waited until every one was ready. So as we were walking out I noticed that my grandparent were caring suitcases and I said why do you guys carring suitcases my grandma and that we were going to spend the night in a hotel I so we would be even closer to @CAPS1 adventures. So she drove all of us back to our houses to get our??? ??? and @NUM2 extra pair of clothes after that we were as our way to the hotel and ready to go to @CAPS1 adventure that next morning. Even though we were suppose to go 9 11 20 2 3 2 2 3 3 2 3 +18811 7 "One time I had to be patient was when I went to @LOCATION1 with my mom, dad, @CAPS1 my sister and my grandma. My cousins live in @LOCATION1 so we were going to visit them. We had to drive @NUM1 hours in a small col bolt with five people. We had to be patient on the car ride there because we were all really exited. When I first found out that we were going I was really happy and I knew I would have to be very patient. We had to drive the hole day then get a motel to stay in. Then we had to drive till about @TIME1 and we were fanaly @TIME1 my great aunts lake house, my my grandmas sister. It was so fun geting to see them again! But then came more patients on the trip home. We were all sad to leave but we had a great time. The trip home felt shorter than the trip there but still long. When we got home everyone of us was tired and tired of being in the car but we were glad we didnt have to drive anothe hour home like my grandma. That was a time when I had to be patient." 10 9 19 2 3 2 3 2 3 2 2 +18812 7 "This is a story about a time I was patient. It was night time and all of a sudden wire from my braces popped out of place. It was sticking out of my mouth and there was nothing I could about it. I had to wait for my mom to get home and to to me but I was scared but I was patient. I kept waiting until my mom got there and we got the wires already out. There my stuff my mom I was patient, use l" 8 6 14 1 2 2 3 2 2 1 1 +18813 7 "Be patient a day whn I had to be patient was on my birth day and I was waiting for my dady to give me some money so I can go to the ?? I waited all day until @NUM1, oclock and when he finly agree I got @NUM2, dollars and it was worth being ?? case if I would have he wishing him he would probly had lowerd the price and it would have been my falt so in far ?? last stone wish my mother to ?? me up from football practice and the ?? we wait for a awil and I was wast I was the last are ?? those my envelopes that ?? and I was up under a tree when it was raining and lightnig so I cldnt put in my helmet as it wouldhav ?? me cage held etrest lighting is eanelusoin being ?? is infected was your dad show how that ?? feel or act beides she wouldnt want have one rushing me unti ther lack around and let them wish cuse if its my cuos its my chance two turn around so if you that type by situation just dont rush for future ??" 4 6 10 1 1 1 1 1 1 2 2 +18814 7 "What exactly is patience? Patience means to wait calmly for something. One of the times that I had to be patient was when I wanted my ears pierced. I tryed everything for four years, begging, pleading, even cleaning, but it still didnt work. My mom says I have to be @NUM1 before I can get my ears pierced. So instead of annoying her, I sat back and stayed patient. By doing that, I got my mom to change the age to twelve. So all I have to do is wait until soccer is finished and find a place and shell take me. Patience really helps in many different ways and I encourage you to try being patient when you want something, because it will all fall into place." 9 11 20 2 2 2 3 3 3 2 3 +18815 7 "Sometimes being patient is hard @CAPS5 Ive had to do it a lot of times. One time in particular was very life changing for me. It was my favorite day of the year, my birthday. Ive always waited for this day long and hard every year until it comes. I got up really early to see @CAPS3 my presents @CAPS5 their were none. My mom was just watching @CAPS1.V. like nothing was important and I said to her, @CAPS2. @CAPS3 she said back was @CAPS2, why are you up this early? I just went back to sleep. When I woke up again, nothing happened. So I just waited patiently in my room until something happened, @CAPS5 nothing. Eventually I went downstairs and played video games until @NUM1, just waiting for someone to say happy birthday @CAPS5 yet, nothing. So I just acted like it was a normal day until @NUM2: pm when I went in the basement. There was a surprise birthday party for me with presents and friends and everything. I was glad I was patient I got a good party and now Im patient every day." 9 8 17 2 2 2 3 2 2 2 2 +18816 7 "Last @DATE1 I went with some friends to the @ORGANIZATION1 @CAPS1 @ORGANIZATION1. The @ORGANIZATION1 is about christan rock music. The part that sticks out the most is seeing my favorite christan rock band, @CAPS2. They played new songs and had a lot of guitar solos. I bought one of their cd's and it was amazing. The past that made me patient was the line that my friend @PERSON1 and I had to wait in to get autographs. It almost streched out the gate into the parking lot. The bad part was we were pretty much at the end of it. Even though the wait was long the girl behind us was super nice so we ended up making a new friend. When we finally got to the front the wait was all worth it. All of the band members were super nice and I gave there lead singer @CAPS3 my lucky braclet. That was the time I was patient." 9 8 17 2 2 2 3 2 2 2 2 +18817 7 "One time there were two twin chipmunks, there names were @PERSON1 and @PERSON1 always had patience A.J not so much. One day it was sunny with a cool breeze. A.J. decided he wanted to go on a trip with @PERSON1. So they packed up there camping gear and headed farther into the woods it was around dusk when they reached were they wanted to be. So they tried to build a fire, @LOCATION1 started gathering firewood and tried to start the fire how there mom and dad had taught them. As l said in the first part @LOCATION1 has no patience so he kept on trying but after awile he stopped he would hit the rocks together once and it wouldnt start so @PERSON1 tried in @NUM1 minute he got it started. A.J. didnt care he got the acorns and started cookin. But every time hed only leave them on for @NUM2 seconds so he tried and tried finally he just stopped well it @PERSON1 @NUM2 minutes, @LOCATION1 was really mad now so they went to bed. When @PERSON1 woke up in the morning he found @LOCATION1 cooking breakfast. A.J finally learned to be patient." 8 12 20 2 2 2 2 3 3 3 3 +18818 7 "My head was in the sky. It was mine. The ticket I'd been dying for was actually mine. I was going to see three days @ORGANIZATION1 and breaking @CAPS1 with my own eyes! Only one thing was bad. The concert was @NUM1 days away. So soon but oh so far. For three days (no fun intended!) I whined and whined, but only in my head. I didn't want to annoy my father after all he did just spend loads of money on me! After those three days, I was okay. I still promised myself I wouldn't break my rule of no complaining. I couldn't tell if the week went fast or slow. All I knew was I couldn't wait any longer. Soon enough, it was @DATE1, and my two favorite bands and a band I loved almost as much called flipleaf, would be in @LOCATION1 tonight. The day crawled. I wanted to explode with excitement. All I could think was what would happen later today. Every second my heart pounced until I got in my dads car at @NUM2. cool clothes, crack, tickets? Check. @NUM1 days of no complaining? CHECK! We listened to the three bands we would be seeing all the way to @LOCATION1. I thought my heart had gone back to normal but with each beat of life along they hear got louder and louder and almost in time to the pound of their bass drums. Passed a limo with one window open, I swear I saw the singer of breaking @CAPS1.(@CAPS3 @CAPS4) feiceps. I saw the limo just as we entered @LOCATION1. No more than ten minutes later we pulled into the parking building for the @PERSON1. I got a glimpse of the long line of people waiting to get in. I reached into my bottle of patience, and pulled out the small scraps of what I had left. The enormous tunnels the lines were gray and dras. We had to walk for a mile to get to the end of the line, and the line sacrues of, if ???? up of snails, but before I knew it, I was in . I had yet to complain. I was proud of my patience." 12 12 24 3 3 3 3 3 3 3 3 +18819 7 One day I was being really patient. I was baby sitting and it was going great until the kid started fighting! It was my two little brothers of course. They were hiting kicking and the youngest one was biting; so I told them to stop. They did for a while and then started again over a toy. So I went back to their room and told them to stop again. So they stoped for good until my little brother @PERSON1 started to copy everything everybody said so I said stop or youll go to your room. So he stoped and everybody was good for the rest of the night until mom and dad got home now that a whole different story. So thats the time I was patient with my little brothers and sisters. 8 8 16 2 2 2 2 2 2 2 2 +18820 7 "A time when I was very patient was last year. My auntie said she was taking me to a basketball game. So the next day she when I woke up I woke up to early. My aunt never told me what time she was coming. So I got ready at @NUM1 am. So at @NUM2 am I called her but she didnt answer. So then I just was watching, tv and playing my game. Then around @NUM3 pm my aunt called back sayin she had to go to the store. so now my fusteration started to build up. I wanted to call her back and ask her questions like where are you goin and how long your gonna be gone. but I was trying to be patient. Now at @NUM4 my mom said lets go! Now I was really getting mad because I was not expecting to leave with my mom. So me and my mom got home at around @NUM5 pm. Now I was real angry because she had not even called since we was gone. So I called her and she said she comin down the street. I was so happy so later on that day I had fun with my couisins and aunt." 8 11 19 2 2 2 2 3 3 3 2 +18821 7 "@CAPS1,when @CAPS5 we open presents? I asked. @CAPS2 we get back from church she replied. It was our typical @DATE1 schedual, make @CAPS3 eve dinner all day, go to the @CAPS3 eve service , have grand parents for dinner than all the kids get to open one present than go to bed for about one hour get up , and open more presents. Amen, our pastor concluded the service @CAPS5 we go now, @CAPS1? I blubbered @CAPS6 she said.@CAPS8 we ate dinner I felt like I had ants in my pants, I was so excited. time seemed to go by so slow I was @NUM1 years old before my grand parents left. Finally we were all gathered around the @CAPS3 tree @CAPS8 I was about to open my present. All it was was a sleeping bag than my dad said, you @CAPS5 all sleep on the floor in @LOCATION1 room, but be sure you go to bed. @CAPS8 I was laying on the floor, while my sister was sound asleep, I was thinking, I wonder what Ill get for @CAPS3. I eventually fell asleep. The next morning at @NUM2. I jumped out of bed woke my sister up and ran into my parents room to wake them up. I was thinking finally we get to open presents. That was a time where I had to be very patient. But it was all paid off in the end." 11 12 23 3 2 3 3 3 3 3 3 +18822 7 "Patience is about whaiting and having what for staff you want like if I wont anything Patience is that you have to what before you get it. So patience, it means that you have to what in a good maner" 2 4 6 0 1 0 1 1 1 1 1 +18823 7 Once I was taking a test it was really long. I was done early. Me and my friend waited a long time. They gave us two and half hours for the test. I finished with an hour and a half to spair. My friend finished within five minutes of me. I read a book but finished it. I had to wait another hour to actually do something. Remember bring something to do while your being patient. If you have nothing to do just wait quietly. Patience is a good quality. Patience can be used by waiting for something or someone. 9 7 16 2 2 2 3 2 2 1 2 +18824 7 One day I asked my parents if I could buy this game that I wanted and this game that I wanted and they asked me how much is it? I said that I did not know how much it is. So he said that we would go to the store and see how much it is. When we got to there we found out that it was @MONEY2 and I said can I buy it and he said maybe after a while I started begging he still said @CAPS1! when I went home I went to sleep the next morning I was at home watching @CAPS2.V and I saw this commercially about the game and it said that the game was still @MONEY1 so I ???. When we went to the mall me saw that it was @MONEY3 and so I finally got to buy it. 8 6 14 2 2 2 2 1 2 1 2 +18825 7 "Everyone is patient one time in their life. I remember I was every patient one day when I was ten year old. It was all because of popcorn. A small little popcorn cernal cought in my throught .That was an aginizing day, but I was very patient. One day, about two year ago when I was ten years old swallowed a popcorn cernal after going to a movie. I remember eating one last piece of popcorn from the popcorn box then trowing the box away. Well right as soon as I and walked out the door and eaten my popcorn peice did it start to bother me. My mom and I waked in the target nearby to get some supplies and do some errands. I started to get really thirsty because of the popcorn cernal. I asked my mom if she would buy me a drink because of how thirsty was but she said she only had a credit card. That meant she could by her things but she could not buy a pop. I understood. So I just tried not to think about it. This was very hard. Soon we pulled up to our next mandd, the bank. My mom needed to get some money to pay off my tennis instructer. I asked her if she could please hurry because the popcorn cernal and lack of thirst was hurting me. She said she was going as fast as she could and that we were only a few minutes away from home. I knew that we were more like fifteen minutes away not just a few, but I didn't argue. The cernal and thirst was starting to get to me. It felt like it had been three hours but it had only been fifteen minutes by the time we finally got home. I threw the door open and ran inside to get some water. I ran, and opened the fridge opened a bottle of water and hugged the whole thing down. Then I went outside to help my mom bring in the supplies and things then drank more water with a smile. In conclusion we all learnt to be patient sometimes. I was patient to get home and drink some water. I am always patient and when it pays off I am always happy." 10 11 21 2 3 2 3 2 3 3 3 +18826 7 "There have only been a few times in my life where I really had to be patient, but the I can remember the most was when I was at the @LOCATION1 airport. My parents and I were waiting at our terminal, for our flight to @LOCATION2. @CAPS2d been waiting about @NUM1 minutes when @CAPS2 heard an announcement. @CAPS1 has gone wrong with the plane but @CAPS5 should be fixed in about an hour. @CAPS2 eventually found out that the back door had been slammed too hard, which broke one of the parts. They needed a new part so the emergency slide would work. An hour of waiting sounded okay. But @CAPS6 there was another announcement Im sorry, but @CAPS2 cannot get the part right away. The wait will be a minimum of @NUM2 hours. @CAPS3 sounded worse, but I kept calm. My mom was well freaking out. Three hours had passed. @CAPS6 four. @CAPS6 @CAPS4. My laptop and my iPod ran out of power so I was just fiddling with my fingers. @CAPS6 @CAPS2 heard @CAPS5 turns out @CAPS2 cannot get the part until tomorrow morning. @CAPS6 a big ughhh swept accrcoss the terminal. But luckily, @CAPS2 received a free night at a hotel until the flight. The wait was exhausting, but @CAPS2 all had patience, so @CAPS2 got through @CAPS5." 12 12 24 3 3 3 3 3 3 3 3 +18827 7 "A couple of days ago when I was at cheer a lot of drama was going around our team, it was fifteen days befor compition and everybody was yelling at someone. There was so much yelling and talking back to our coaches that no one could understand what we were supposed to be doing. The side I was on for the pom cutine in our second formation wasnt in a diagnal line we were supposed to be and wasnt getting to the kickline in time because the people on the other side were pushing us so we had to walk a lot farther than they did. @LOCATION1(one of our coaches daughters) was yelling at the side Im on for not getting to the kickline in time even though shes the on pushing us father down so we cant get there then she started yelling at @PERSON1 saying it was all her falt so then @PERSON2 said to @LOCATION1, @LOCATION1 stop blaming everyone else for everything you arnt perfect at everything ether, and your the ones pushing us over so we cant get to the kickline in time. @LOCATION1 didnt know what to say but she said @CAPS1 up @PERSON2! that isnt true. even though you could tell that she knew it was true because next time we did the kickline she didnt move closer to the center she moved farther and @PERSON3 got to her spot not really on time but just a couple seconds after she was supposed to. I thought that @PERSON2 was being loyal to @PERSON1 even though @PERSON1 might not be one of her best friends, they still are friends, just not best friends." 8 8 16 2 2 2 2 2 2 2 2 +18829 7 "A time when I was patient was when I wanted to go outside and my sister wanted to go but she wasnt ready. She had to get her hair done and some clothes on. I waited patiently and didnt say nothing. I didnt want to but I did. I wanted to go outside and my sister wanted to go so I waited on her. I walked out the door quietly then my sister yelled I want to go wait. I went back in the house and waited for her to first find some clothes, so she went upstairs and found some. She put her clothes on then she had to look for her shoes. She searched the whole house and then found them in the corner. So we were about to walk out and I said girl whats wrong with your har suprised. She felt her head and said o I forgot. So we went back in the house and I tried to put her hair in a ponytail and it wouldnt fit. So I let her do something and she couldnt. So I parted her hair and put it in two ponytails. Then we went outside. Thats a time when I waited paintently on my sister." 8 8 16 2 1 2 3 2 2 2 2 +18830 7 When I was getting ready to leave my uncles ranch. I was waiting patiently for my dad to get back so he could help my brother put the @NUM1 on to the tryler. It has been @NUM2 hours and my dad has not come back yet. I was having a difficult time taking my @NUM3 off the tryler because it was to heavy and my dad was still riding his @NUM3. When my dad got back my brother went to go ride his @NUM3. I was having a very difficult time trying to get everything and leave but finally my mom and sister wanted to leave to so they finally helped me. 5 8 13 1 1 1 2 2 2 2 2 +18831 7 "It was @DATE1 in @LOCATION1, @LOCATION2. My cousin, @LOCATION3, and I where going up the street to the carnival they were having. When we got there it was ranning and one of the rides were open. So we sat around till all of they were open. We went on all of them, but I wouldnt go on it. It was called the freax out. There were lights flikering and loud music. We were in the line for it but I got out. @CAPS4 said why did you get of line? I am scaryed. I want to go on it though. @CAPS1 you wait till later? I said. We waited for a hour. I sat on the bench and @CAPS4 said @CAPS1 we go on the ride? @CAPS2 we @CAPS1 my heart was pounding so hard I could hear it. Thats when @CAPS4 said I @CAPS1 wait. @CAPS3 lets get it over with. @CAPS4 was nice to wait till I was ready to go on. In conclusion my cousin is the nicest for waiting. On the up side I love that ride now." 8 10 18 2 2 2 2 3 3 2 2 +18832 7 "Have you ever been patient before? Well l have l was sitting there in a nice warm and cozy seat exhausted dozing off waiting for them to say the came @PERSON1. It kept going throught my mind @PERSON1, @PERSON1, @PERSON1, but nothing ever happened so l just sat there waiting patiently. My mom was sitting next to me reading an avon magazine that she had picked up from the small, round wooden table centered right in the middle of the silence orthodonist office. I kept asking myself things like I wonder what their gonna do today, I wonder if I'll get my expander off or what about my top braces. Then l starting to stare at the office ladies typing away on their computers. The sound of metal tools was ringing in my ear, coming from the back room. A girl walked out ""@CAPS1"" l was excited and nervous at the same time but l was proud because l had sat there the whole time patiently." 12 12 24 3 3 3 3 3 3 3 3 +18833 7 "Patience @CAPS1 were on are way the the big city, to go to a very specil baseball game. Can you guess what I game? Its the @LOCATION1 tigers, @CAPS2 the @CAPS3 stadium, @CAPS1 were so excited, it was the first time @CAPS1 had ever been in @LOCATION1. @CAPS5 much longer till @CAPS1 get there? I asked. About @NUM1 hour, why? my mom replayed because its so boring siting here for four hours strait. I know, but you have to be patient. @CAPS6. I thought in my bad. I wounder @CAPS5 I could be patient for? I just though for a moment. Then a minite, then boom! I was out cold: for two hours I slep. Then I woke up just as @CAPS1 hit trafic. I asked are @CAPS1 there yet, hope my dad said. So I sat there waiting pacently. About @NUM2 min later I asked can @CAPS1 turn an the radio. @CAPS7 my mom said. @CAPS1 sat there for about @NUM3 in. Then @CAPS1 finaly sarted moving handest not to be anoing, what I was going to do when I got to game. I was thinking mabey Ill get a bit exspenedve, bur by the time I thought anything else I hurd were here! @CAPS7! I skeamed. So @CAPS1 got out of the and walked about a @NUM4 of a mile to the ticket booth. As @CAPS1 were walking up I though I guess all it does take is patience." 11 8 19 3 3 3 2 2 2 2 2 +18834 7 "Two week sago meandmy family went to siyflags, for fright fest. The lines were going to be long and I would nevero be patient, I hate being patient . We went on @LOCATION1 city @CAPS1 first the lines was only ten minutes. Then the super man, that one was a little longer. Me and my sister got permission to leave and go on the riper. Then perisa wooden rollercoaster that goes of the track a lot we waited @NUM1 minutes between each stop. We finally got to where we sun the coster people with these flash passes kept coming. The flash pass takes you to the front of the line. When we fin ally got to the front of the line my patients was @CAPS2. The roller coster went off the track. It was a @NUM2 mile coster but a tur one. That is the time I was patient." 8 9 17 2 2 2 2 2 3 2 2 +18835 7 "One day, last year I had to be really patient my mom had told the family that we would be going to six flags soon. I was filled with excitement and I couldnt wait so I asked her when and she said she didnt know yet. This made me upset because last time she said that about going somewhere, we ended up not going. The only thing that I knew for sure was that it had to be on a @DATE1 because she works during the week I was just happy that school was finally out so I didnt have to worry about home-work. So I waited until @DATE2 and then asked my mom if we could go that @DATE1. She said no because we would have to plan it more and that we couldnt randomly go one @DATE1. That @DATE1 I bugged her every day until she finally started planning it. The first thing she did was look at her work schedule to make sure. She didnt have any meetings or projects for the coming @DATE1. My stomach dropped when she told me that she had stuff to do so she kept looking at her schedule. The next free @DATE1 she had was two weeks away. I was okay with it though because thats better than nothing .Throughout the next two weeks I saved money up for six flags. When the two weeks were finally over I had about @MONEY1 saved up and I was practically bouncing off the walls because I was so excited. I think that was the most patient I have ever been." 12 10 22 3 3 3 3 3 2 2 3 +18836 7 "Patience is waiting without complaining to do something you want to do. When I was at an outdoor mail with my mom, two older sisters, younger brother, niece, and dog, I waited patiently to go to the @ORGANIZATION1 store to try out the iPad. When I did, I realized that the iPad is awesome! After ward, we went to get ice cream. My little brother got a root beer flavored slushie, my niece, dog, and I got vanilla ice cream. After I finished my ice cream I put the container on the ground and let my dog lick the rest from the bottom. We had spent @NUM1 hours there! What a surprise! Then we went home!" 9 8 17 2 2 2 3 2 1 2 3 +18837 7 One time when @PERSON1 was patient was when @CAPS1 & I taught him how to pitch. @PERSON1 easly devoloped a nice windup and delivery but the arin angle was off. But this didnt stop him. @CAPS1 asked him if he wanted to stop but @PERSON1 said no! @CAPS2 time went on @PERSON1 started to get better and better. He now enjoys throwing @NUM1 mph fasiball at a cetcher. On days that hes unaccurate he doesnt gave he keeps trying and doesnt wine. @PERSON1 is now the number two starter in the rotation. Thanks to some seltons patience. 11 8 19 2 3 3 3 2 2 2 2 +18839 7 "@CAPS1 be @CAPS3! It will be here soon dont worry, @CAPS2 said. A patient person experiences difficulties without complaing. Well over these few days (which feels like cons) I have not been this so called @CAPS3 person. Halloween was coming in a few days and my costume still didnt come in the mail. Ive been waiting and waiting but @CAPS5 @CAPS1 too long! For the fith time I watch the little red hand on the clock go around. They said it would come @DATE1 but it didnt. Ive been sitting here since ten oclock where is the @CAPS4 track! I scream. Then I glance at the clock @NUM1. What! It feels like an hour! How can someone bear to wait this long! @CAPS5 coming I say to myself. A few hours later I see a little white @CAPS6-@CAPS7 truck wander along the street. (@CAPS8 thats it!) @CAPS9 to gaze. Nope it keeps going past. I sigh then drag myself down the steps. @CAPS10! I sob in agony, why does this feeling consume me like this? I stroll to the kitchen and a brown box is on the counter. I get giddy as I take giant sneaky steps to it. @CAPS5 here! @CAPS5 here! I yelp as I hop up and down. Finally!" 12 10 22 3 3 3 3 2 2 3 3 +18840 7 "One of the many times I was patience was when my @CAPS1, my @CAPS2 and I went to a restrant. We oderd our food and found a tabil. We were siting there waiting for the food. I ask my @CAPS1 ""@CAPS3 much longer its going to take?"" @CAPS4 said ""you have to be pactien and waitie"". And then a little after the our food was done. It was toatlly worth it." 5 7 12 1 1 1 2 2 2 2 1 +18841 7 "About three or four times I was patience; it was when I was five and it was my birthday and my grandmother when shopping for me I had to be patience and wait for her to come back with my presents. The other time was when I was @NUM1 and it was @CAPS1 day and I was up super early and ready to be to patience, once again and wait for my dad to wake up so I can open my presents. Then the other time was when my friend had to do something so I had to be patince again so ,I waited till he got back. This will conclude my being patince paper ." 7 8 15 1 2 2 2 2 2 2 2 +18842 7 "The time I was patient was when @CAPS4 went to @LOCATION1 ""mom!"" I exclaimed. ""@CAPS1's go I want to leave I'm packed and ready to go."" @CAPS2 mom and I were in the house packing everyone's things. It was a beutiful @DATE1 in @LOCATION2 and it was also @CAPS2 step dad's birthday. ""@CAPS3 you need to be patient okay, @CAPS4 have a long drive, do you have everything you need."" @CAPS5 got me there. I had to get, coloring materials, the portable @CAPS6 player, ect. I had @CAPS7 @CAPS8 what else @CAPS4 needed until @CAPS2 stomach growled it sounded like a bear protecting it's cubs, fierce, and starving. Then I remembered, ding, I thought in @CAPS2 head, food thats what I need to get. So I rushed into the kitchen like a race car trying to win a race. I packed turkey sandwiches, pb&j sandwiches, chips. Saltandvinager, sour crean and onion (caross) and jolepenyo ceddar(yum). Now I have everything I thought, ""of @CAPS4 go."" @CAPS9 @CAPS2 mom and again I rushed out the door ""got the address,"" asked @CAPS2 father."" @CAPS10 @CAPS3 I got it."" @CAPS11 when @CAPS4 started to go @CAPS2 sister fell asleep. @CAPS5 was sleeping lik arock the whole way there although, I don't think rocks shore. after @NUM1 hours of being awake in the car I thought maybe I should try to sleep, but the excitment was rushing so fast I could feel it then I fell asleep. I thought I would be able to stay awake the whole way but I was marked impossible. Finally @CAPS2 step father yelled ""wake up!!"" I was so tierd when I woke up, "" are @CAPS4 there yet, first thing that came out of @CAPS2 mouth ""yeah"" and, of course, the first things I did was jump up and out of the care! ""@CAPS12!"" @CAPS2 mother shouted. I paused as if I was a charactor in a video game and the player press pause."" @CAPS13 take in some off the bags."" ""@CAPS14"" I said with a scowse on @CAPS2 face. ""@CAPS15 youhave to be patient"" as I took in the bag there it was to condo of @CAPS2 dreams and the first thing I did was sleep." 10 12 22 3 3 2 2 3 3 3 3 +18843 7 "Being patient isnt always that easy, in fact, last year was one year where I had to sit in a car with @NUM1 rude, screaming and crying kids for @NUM2 hours. Last year I was so excited to see my great @CAPS3 davn in???. with my grandpa. My @CAPS1 pa is fan bag to talk to, @CAPS2 later than I found out my @NUM1 younger cousins were coming. This was going to be a long car ride. We packed our things in the car. I brought my ipod and a book, @CAPS2 my cousins brought??? loud noisy and flossy toys they bot just for the ride. As we started heading for @LOCATION1 I turned my ipod on and found out it only had @PERCENT1 battery left. Half way there I was almost dad of borden, @CAPS2 the kids were just settling down. When I was sure they were asleep I decided to join them. WACK! I auske is a sobbery slap to the face, were here my cousin enchoired, finally I said to myself as I was still waking up with a sore, and stiff neck. After we were done visiting my @CAPS3, it was about @NUM4 hrs and my cousins were all asleep again and I knew it was going to be a nice ride home." 9 8 17 2 2 3 2 2 2 2 2 +18844 7 There was a day when I was patient and I was so nice and this girls was so in aher she was getting on my nrvise because she push me and hitting me. So I just let her in front of me and we where in @CAPS1 and lot of people be ready for @CAPS1 lady said stop push her. Then we where in class and so I rise my hand and she said be patient I said I am patient so shut up so shut up please so she dont shut up so I my had a other time and the teacher call on me so she got mad at me. 4 6 10 1 1 1 1 2 2 1 1 +18845 7 "I am going to write about the time that I was patient. One day, after my family and I came back from church, I asked my room I she could make breakfast, but she would not answer me because she was on the phone with my grandma and my grandma talks a lot. It was so oganizing. For example, I kept paceing back and forth but then I just sat down. After an hour of patientience, my mom and grandma said goodbye and hung up the phone and I finally got my breakfast." 8 8 16 2 2 2 2 2 2 2 2 +18847 7 "One some day, it was about @NUM1. My mom woke me, my brother, and dad to get ready I dont know what we was getting ready far, but we get on the road as soon as we cloud. I fell back to sleep in the car when we were on the height. I woke up from a big @CAPS1 on the breaks and when I looked up, we were in a long line of cars, where are we?I ask six flags. @CAPS2 my brother. I could hear impatience people all around me. They were thinking screaming and yelling while people tried to pay their way into the park. It seem like we were moving faster than @CAPS3 of the fast people, and we was one of the first people to get in first. That was the @CAPS3 impatience group of people Id ever seen." 10 8 18 2 2 3 3 2 2 2 2 +18848 7 Pg @NUM1: @CAPS1 her crying! I just wanted to get out of the car and walk home. There were @NUM2 of us in a suburban that were all smushed together! So we couldnt even more our arms I felt like I was locked in jail with chains on me. It was @NUM3 oclock in the morning and I saw a big sign that read welcome to @CAPS2. So at that point we only had a hour or so left I was so excited. We finally made it to our destination key wrap. It was the longest trip of my life! But I tryed my hardest to stay patient and wait. But in the long run I realized I didnt are and I had a whole weekend of waves and a temperature of @NUM4@CAPS3 degrees. When I thought about how long it was to get here I didnt even want to think about how long it is going to take to get home! But how I know I have the patients to go home! 12 12 24 3 3 3 3 3 3 3 3 +18849 7 "A time when I was patient was just yesterday. I had just finished part @NUM1 of the rest and I was very anxious and I wanted to get up and more around, but were taking the @CAPS1 so I could not. Instead I entertaind myself in any way I could such as pretend singer writing running songs through my head repeatedly, even twiddling my thumbs! So finally she let us get and talk. I was sitting next to some of my friends so I just talked to them. Somehow we got into talking about dangeons and dragons, they kept asking me what class they would be and what they were. anyway I kept trying too talk but I keep geting interupted so I just relaxed and waited for my turn. Finnaly it was my turn to talk, but we had to go to lunch so I never did get to say what mine was.This is a time when I was patient." 8 10 18 2 2 2 2 3 3 2 2 +18851 7 "Have you ever got annoid because someone kept saying be patient? I have and @CAPS1 gonna tell you about the time I was patient. One time I was on my way to @LOCATION1, the plane ride wasnt as bad as what @CAPS1 gonna tell you. When @CAPS3 got to @PERSON1 @CAPS3 had to pass through @PERSON1@NUM1 border it was hot!!! I think tempeture hit @NUM2? @CAPS3 had to wait in this small room with about @NUM3 people, and they had no A. C. All of us were waiting for the bus to come, and after @NUM4 hours a bus arrived. @CAPS3 were getting on as about @NUM5 people came barging in front, @CAPS2 @CAPS3 miss that bus. Then @CAPS3 waited again for a bus the after @NUM6 hours a bus arrives agains @CAPS2 were trying get on then again @CAPS3 get pushed out of the way. @CAPS2 @CAPS3 missed that bus I was @CAPS2 fustrated @CAPS2 did my family. Another thing I got frustrated at was there were thousands of flys all over the place. @CAPS2 @CAPS3 waited after @NUM4 more hours a bus arrives but my little brother was in the bathroom @CAPS2 @CAPS3 missed that bus @CAPS2 my mom was telling me to calm down and be patient @CAPS2 I stayed patient until the @NUM8 th bus came, @CAPS3 got on but the bus didnt go where @CAPS3 were suppose to @CAPS2 @CAPS3 had to go back to the same place @CAPS3 were in, but again my mom says stay patient. One of the officers over at the place saw how long @CAPS3 were waiting @CAPS2 once the next bus arrived after @NUM9 hours and @NUM10 minutes he held everybody else up let me and my family get on, and tolled the driver take them by there self, @CAPS2 @CAPS3 had the bus to our selfs, and you know what it was all worth it." 12 9 21 3 3 3 3 3 2 2 2 +18852 7 "There was a time when I had to wait on handling my personal have it. My sisters and I came into the house and one of them went to handle there personal have it while I was being patience to not you and knock hard on the door. Telling her (@ORGANIZATION1 or @CAPS1) to @CAPS3 in the whatever they doing. By the way @ORGANIZATION1 is @NUM1 years old and @CAPS1 is @NUM2 years old. Had waited and waited be very patience not to be laying @CAPS3 up, @CAPS4 on I really have to we handle my personal haveit ??? something like that. It felt good to be very patience them to be a non patience people because think about when if you really have to handle something in the bathroom or restroom people will think you are a rushing ??? instead of a patience. Any way they will talk about it to anyone that he/she know at a bad thing when they are just talking about any thing. Last this not a time where e wait to patience to other." 6 4 10 2 1 2 1 1 1 1 1 +18853 7 "Patience @MONTH1 seem easy but, however, it can be hard. Waiting in line, waiting for @CAPS1 etc. all requires patience. Everyone, no matter how young or old has patience just like I did when I was in @NUM1 grade. Each day I wonder if its a dream or a nightmare. Everyday when I was in @NUM1 grade I always wanted something that would change my life eternally. After @NUM3 year that wish would finally come true. I was very patient waiting for our letter to be granted or denied. Before I knew it my mom, dad, and I were on a plane headed straight for china. There we would see the great wall, forbidden city, and @LOCATION1 not to mention our main purpose to adopt a little sister. I had no idea what I was in for. I was patient for @NUM4 weeks then we went to the lobby and she was with her caregiver along with all the other families waiting for their child too. I couldnt believe we were the @NUM5 ones to receive our gift from china. BIG @CAPS2! The moment my mom tried to take her she started warning, pinching, kicking, and who knows what else. After an hour or so she calmed down and she calmly played with her toys and such. That night we went out for dinner at @ORGANIZATION1. My dad odered a milk shake and he let her ??? some of it that was also a @CAPS2. He did not get it back until the glass was empty. We soon learned that she would be a rollarcoaster with her ups and downs. She loved cake and ice cream and wanted dad only. It was dads dream come true. In conclusion, you will use patience everyday no matter how big or small. Patience will work its way into your life no matter how hard it is. Everyone has patience, the question is, will you use it?" 11 12 23 2 3 3 3 3 3 3 3 +18854 7 "A person I know thats paitent is my dad he is very paitent like one time we were in the drive through at mc donalds and soon as we pulled up the lady was like just one second and she but ??? sitting there for @NUM1 minutes and I saw like getting out the ??? and go in the resturant and order my food but my dad he just sat there adjusting gas until the lady came back and I was so mad that the lady made us sit there for @NUM2 minutes, but then I was happy cause I got my food. Then when we were putting off my dad said see thats why paitients got ??? and my double chess barger and my large ice tea with chocolate chip cookies and my dad taught me a ??? lesson??? ??? ??? ??? nothing but drama and not happiness." 7 10 17 2 2 2 1 3 3 2 2 +18855 7 "The time I had to be patient was when I had to wait in line to ride shoot the @CAPS1 at @CAPS2 point. Frist @CAPS2 point was fun but waiting in line took patients we had to wait in line for about a half hour. Some people kept leaving because it was to long of a wait. I had to stay patient if i wanted to ride the ride. Second, I was exited to ride the rollar coster so I stayed in line. Staying patient was a little hard when people were pushing and cutting but it was worth it when i got to ride. As you can see sometimes its good to stay patient but when you get to do something fun its worth it.When people push you just had to stay calm and be patient." 8 6 14 2 2 2 2 1 1 2 2 +18856 7 Im always patient Im really patient until my birthday then when I get presents I dont need to be patient anymore because I wait a year for presents and then I wait for @CAPS1 because its only like a month away from my birthday And this year Im being patient until @CAPS1 because Ive already know what Im getting. But that what Im patient for just about nothing else Im patient for. 4 7 11 1 1 1 1 2 1 2 2 +18857 7 "Patience means being understanding and tolerant. I find patience difficult to come by, along with many other people. Some people are graced with the gift of patience. Those people find it easy to wait even when its the night the fanaly of your favorite book series comes out. @CAPS1 @CAPS2 the clock taunted me by moving slower than ever. Why @CAPS10 wasnt back yet I didnt know. All I knew was going to happen that night that was a very bad thing. It must have been the unbearabl heat getting to me because when the door slamed shut @CAPS10 orgued that @CAPS4d only been gone for five fast muinets. I didnt belive her, but we climed into the car and drove down the twisty, turning road. We had timed our car ride perfectly to see red lights at every, stoplight. It was like the light were mad at us. We also got stuck behind every slow person with @CAPS3 way to get around them. Just as I had a scream budding inside me we saw a green light and cruised into @LOCATION1. Coming up on @CAPS8 right came the book store and @CAPS8 jitters became more uncontrollable. I bounced up and down like I was on a trampoline and stoped the split second I saw the line in front of us. @CAPS3! I shouted, I dont have any patience left to wait in this monstrosity of a line. It was like the whole town was in on making me annoyed as possible. I lugged the lawn chairs from our van to wait in line. Flop I fell into the black chair and waited. This was going to be a long night. @NUM1 minets till midnight @CAPS8 @CAPS10 explaind to me Thats impossible I told her. You can make it. @CAPS4 was right, @NUM1 minuets wasnt that long of a wait. I breathed in the smell of coffe coming from inside and listend to the num of chatter among the people. The @NUM1 minuets would be over soon, and for the first time that night I was patient. @CAPS5 the seatbelt went into place and I cracked open the final book of the @CAPS6 @CAPS7 trilogy. What will happen how is it going to end @CAPS8 mind was full of questions. @CAPS9 was that wait really that bad @CAPS10 asked. I guess not I answerd sheepishly. Being patient payed off @CAPS10 lectured. I didnt reply I was already reading a mile minuet. I learnd being patient really does pay off and not complaining makes life a lot easier. Patient is undersanding and @CAPS9 that Im a little better at being patient things will be a lot better." 12 12 24 3 3 3 3 3 3 3 3 +18858 7 "One time I was patient because, the teacher had to tell me something. So I wated by the door but then she had to go to the office so I had to wate. When the teacher came back she told me thanks for being patient. Patients really means you can wait. Some kids dont be patient they get so made for example, there was @NUM1 kids in one group we were playing a game and they would get so made because they didnt get called on a lol. But the game was radom you pick stick and who ever sticks it was went. So being patients mean you have to able to wait." 6 4 10 1 1 2 2 1 1 1 1 +18859 7 Patience is something or someone who like waiting for someone or something patience part of life I sometime dont have patience but I should have patience without patience you will get not because something in lift you have to want for and that is why you should have patience. 3 3 6 0 1 1 1 0 1 1 1 +18860 7 "@CAPS1 go!, I yelled while running to the entrance of @CAPS2 @CAPS3. @CAPS4 a minute, you got to @CAPS4 for your friend, my mom said. As I stopped to @CAPS4 for my mom, my best friend @PERSON1 and @CAPS5 brother @PERSON2 I started to kick the rocks to keep me occupied. Once they finally caught up to me, we walked into the huge theme park. @CAPS1 go to the top @CAPS7 @CAPS8, I said histaticly. @CAPS9, we can go on it, but me and @PERSON1 are staying in the back, my mom said. @CAPS10 because me and @PERSON3 are going in the front row!, @PERSON2 yelled. As we started to walk to the line it said that it would be a @NUM1 minute @CAPS4 for us to go. After we got in line I thought to myself, wow this is a long line. It wasnt that much longer that we finally got to the rollercoaster ride. @CAPS11!, the belt bucble sounded when we all got in the rollercoaster. @CAPS12!, everybody said when we took off. After that I told myself I can be patient." 9 11 20 2 2 2 3 2 3 3 3 +18861 7 "@PERSON2 and I went to the slove. @CAPS1 was picking up some marsh mellows and chocolate to make someone. @CAPS1 was walking??? Ial six when @CAPS1 came upon a huge bunch of people looking to bye stuff for smiles. So @PERSON2 and I went in the line. @CAPS1 sat there for at least fifty minutes waiting for marsh mellows and chocolate; but @CAPS1 came out with two –mash mellows and two chocolate packs. I asked her “@PERSON2 why do you have two!” @CAPS1 said that when I waited they were getting rid of them so they gave me two to the same of one. I smiled and we??? Thank you! When we went back to the car we told @CAPS2 other sister “@PERSON1” that we get two @NUM1 said???” @CAPS2 sister snicked we went back into @PERSON2’s car and but the bag in the trunk were one other???cry’s were and then toke off. We got home and @PERSON1 ate three, I ate, two and @PERSON2 ate five @CAPS1??? us. Thank you." 8 9 17 2 2 2 2 2 2 2 3 +18862 7 "Today I@CAPS3 going to write about a friend of mine who is very patient. My friend name is @CAPS1 @CAPS2. She is a very patient and pleasant girl. @CAPS1 is so patient that when I told her to hold on for a second, there I came back an hour later and she was still there she is absolutely the most patient and the most awesome girl I know! On test(like @CAPS3.E.A.P) she always takes her time. And she uses her time wisely (ha ha and her last name is @CAPS2). At the @ORGANIZATION1 she doesnt await in a long line for a corn dog.Now I@CAPS3 starting to think that @CAPS1 enjoys waiting. I love having @CAPS1 around because she doesnt mind to wait for me when I have to do something." 7 7 14 1 2 2 2 1 2 2 2 +18863 7 Patience you are under standing and tolerance experaners differ allys with out complaining. I will tell you about a time wen I was patient. I gonna tell your mom that you broke the hole in the wall @CAPS1 you dont bye me this @CAPS2 yelled. That is an exsampel of black mail one of the many things you have to be patient with in your life. @CAPS2 is a six year old girl that I baby sit.one day she was at my house we wer playing a game that involved kiking a showe into a wall. Wen it was my turn I kiked the shou into the wall literally. My mom came home and I told the boys did that of corse she bileved me. But the one thing I had to do with was that thair was a witness. The six year old that cant keep a secret. I told he not to tell my mom because @CAPS1 she did I would get in big troble and she would not be abel to come over any more. We went to the store and she discovered the glory of black mail she said she would tell my mom @CAPS1 I didnt buy her icecreem. I a @NUM1? F day. I refused to buy her ice creem so she told my mom my mom didnt care. 8 8 16 2 2 2 2 2 2 2 2 +18864 7 "Aplause filled the building after the first dance ended. I was back stage with my dance team going over routine for the third time. Backstage was cold and crouded and I was already sweaty after one practice! This was my first dance recital and I thought the whole thing would take an hour, I was wrong. I soon found out that we were the last to perform and it was at least five hours long. @CAPS1 many more dances? and what dance are we on? @CAPS2 what everyone had on there mind or was saying. Every hour felt like a day! I had so many emotions going on excited bored and nervous. Then finally it was our turn to get on stage. I was so relieved after all that waiting that it was finally our turn! I did twirls and jumps and leaps and had a great time! I had an amazing time dancing. Great things take patience!" 12 9 21 3 3 3 3 2 2 3 2 +18865 7 "One boring old rainy afternoon I asked my mom to take me to a place called modern, if you dont know what that is Ill tell you. Well modern is a place I love it. It has everything I love, a spote park mony and tree stuff. I went there with my mom I told her she doesnt have to stay but she insisted she stayed. So she stared well I skated for @NUM1 hour, and watched me cheered me and even got me a new board. My mom is the most patient person I have ever met." 5 8 13 1 2 1 1 2 2 2 2 +18868 7 "Being patient @CAPS4 a great trait to have. When you are patient you are respected. That @CAPS4 why I have alot of respect for @CAPS7 teacher. @PERSON1. @PERSON1 @CAPS4 a very patient person. If you didnt understand something she will work through it with you until you understand. Even it takes a couple of weeks. One time she was teaching us how to add negative numbers and I didnt understand and she worked with me until I understood. She was very patient. Let me tell you what happened. @CAPS1 class today we are going to add negative numberC @CAPS2 @CAPS4 going to be a breeze I thought silently to myself. Little did I know I would not know what to do at all and @CAPS7 teacher was going to have to be very patient with me. When @CAPS7 teacher was done explaining the rules to adding negative numbers I was already lost @CAPS3 are some sample problems that everyone needs to try, said @CAPS7 teacher. A few minutes later she went to every student and checked there answers. When she got to me she had a worried expression on her face. @CAPS4 everything all right you didnt do your sample problems she asked me. I dont understand @CAPS2 I replied. @CAPS7 teacher fell silent for a moment and then she said come see me after class @CAPS5 I waited until the end of the day and then went to see her. I noticed you were having trouble with math today said @CAPS7 teacher. @CAPS6 were gonna fix that. @CAPS7 teacher sat down with me and explained what to do in steps. After about twenty minutes of her explaining to me how to do it I finnaly began to pick it up. @NUM1 minutes later I was doing it. You can go now said @CAPS7 teacher. You now understand it better than the other students. thanks for being @CAPS5 patient with me I said before I left . @CAPS7 teacher just smiled. That was a time when @CAPS7 teacher was very patient with me. And I am glad that she was" 12 12 24 3 3 3 3 3 3 3 3 +18870 7 "Whistle, whistle, that was the sound of the soccer refs blowing their whistle for sub`s. (I was playing defense.) @CAPS1 was calling my name to take me off. When I got off the field I got my water bottle and sat on the subed in until finally I asked my coach if a could go in. his response was you just got off. In my mind I was thinking that I had been off for almost ten minutes now, how could I have just come off. So I waited a few more minutes to ask again. When he finally put me in. when I got on the field realized I was on the side that the ball had barely touched all game. I played for around five minutes then got subed again. I was on the bench even longer this time. I was losing my patients. I asked my coach if I could go back in, he said sure. When the game was over I realized why my coach benched me so much of the game because he likes @LOCATION1 wolverines and I was wearing a state tattoo on my face. This is a time I was patient." 10 7 17 2 3 2 3 1 2 2 2 +18871 7 "This is a time when I was patient. A time when I was patient was when my mom went to go buy me a new pair of shoes. My mom was buying me some new pair of shoes because I havent had a new pair of shoes in months. I was very patient that my mom would get me a new pair of shoes. I know when my mom has some money, and I need something new she gets it. I was waiting patiently for my mom. I had confidence that my mom would by me the shoes. Then I heard a knock on the door, I opened the door, and it was my mom standing there with my new pair of shoes." 7 8 15 2 2 1 2 2 2 2 2 +18872 7 "Real @CAPS3 was one of fastest runners in @LOCATION1. No one could catch him beat him in a race, or even sneak up on him. This made him very, impatient. Even when his friends and family spoke to him, this is what they pleaded like to him. ""@CAPS1@CAPS2 @CAPS3@CAPS4are Youdoing?"" @CAPS2 @CAPS3 was furious with the fact that no one was as fast as he was. So he ran away. He ran away. He ran as fast as possible. It only took him @NUM1 minutes and he was already in @LOCATION2. In @LOCATION2, he said that people didn't walk and was fast as he could. But that didn't when him team talk to them. For sure where can I find nement @CAPS6?"" The @CAPS7 responded. ""@CAPS8ch.firsteh.you.turn.eh.bestch"" @CAPS9 @CAPS2 @CAPS3 screamed he had to believe that no one was as fast as he was. So he just had to be patient" 11 8 19 3 2 3 3 2 2 2 2 +18873 7 "Ah patients I know a lot of people have trouble being patient let me tell you a story about me being patient.I rember when last year when I was @NUM1 @CAPS1 went on a trip up @CAPS2 to go fishing for a week it was a two hour drive staright thaught I was really exited @CAPS1 left at exactaly six that morning I was happer than a lack to go on this trip @CAPS1 hit the night way. I was ready to get out I was to dasn excited my dad said dont worry bud, @CAPS1 will get there soon lets calm down okay buddy I was quit rest the way. There just waiting to see what our camp site looked like waiting patiently @CAPS1 finaly got there that was when I @CAPS4 to be patient." 8 7 15 2 2 2 2 2 2 2 1 +18874 7 "@PERSON1 is a young boy with a bladder of a squirrel and his waiting in line for the bathroom at the super @CAPS1. @PERSON1 said to himself, ''patience, something good always comes from being patient''. So he waited for his turn. @PERSON1 was in the middle of the line behind five people. @PERSON1 was a head of six people that were all doin the pee-pee dance. He learn to be polite in school so he let the six people go ahead of him. Ten minutes later, @PERSON1 entered the bathroom and he found a one hundred dollar bill on the floor. @PERSON1 knew more about finders keepers than being polite, so he took it. @PERSON1 learned being polite and patient is the right thing to do, plus it has its rewards sometimes." 12 8 20 3 3 3 3 2 2 2 2 +18875 7 "One time I was patient was when me and three other of my friends were hanging out at school one day. We were bored so we all went to the track and we decided to run a mile. Since its a relay one person goes to run a mile, then the second person goes once the first person I done, after that the third person goes after the second person is done with his mile, then finally after the third person went I got to go run a mile because I was the fastest at running a mile. Since I had to wait until the very end I had to have patience to wait and then finally go." 8 9 17 2 2 2 2 2 3 2 2 +18876 7 Patience not all of us have it. It is hard to learn theme but even harder to master theme. It is all ways a good time to use your patience. 1 3 4 0 0 0 1 0 1 1 1 +18877 7 "When I went to the @CAPS1 conly @ORGANIZATION2 for youth group at my church I took some o my friend. In the maze we had to go as a group of @CAPS2 & me, my dad, @PERSON1, & @CAPS3 went in one group @ORGANIZATION1, @CAPS4 in the group be hind us. Half way thru the @CAPS5 @ORGANIZATION2 there was a guy casing us with a chain saw & then @PERSON1 smacked my glass of my face so we had to stop that @ORGANIZATION2 of the @ORGANIZATION2 so we could find them & just before we found them my friends in the @CAPS6 group came & had to wait @NUM1 minutes wich seemed long. So they didnt get chance to get chaced by the guy with the chainsaw." 7 10 17 1 2 2 2 3 3 2 2 +18878 7 "My story about being patient is the time I was I had to wait in line for @NUM1 hour and @NUM2 minutes to get on the, @CAPS1 of @CAPS2 which is this really cool ride. First thing I did in line was to try to talk the people because I knew I would be in line for a while. I said hi to the couple in front of me and then we talk for a while and it turns out that they had come down south from @PERSON1, @LOCATION1 which is really close to @LOCATION2 where I live and it seemed so wierd being in @LOCATION3 and meeting people who lived right across our town, then time seemed to fly by because before I knew it we were getting strapped in our seats and away we goooooo" 7 8 15 2 2 1 2 2 2 2 2 +18879 7 "You @MONTH1 have heard before: patience is a virtue. If you dont know already, being patient means you are understanding and tolerant. The opposite of this probably having a temper, or having a @CAPS1 short time before you get @CAPS1 angry. I believe having patience in life is @CAPS1 important, and I try to have patience every day. I believe that life is a marathon, not a sprint, and by this I mean if something takes time, you have lots I related life to sports, because I am a @CAPS1 good athlete. I play football, which also requires lots of patience. When I make a good pass and my reciever drops it, I remember to have patience with him, just as my coach did with me. Football is a team game, and we all have to have patience with each other. Although sports are a great example, patience goes much furthur than that, you must have patience with yourself before you can have patience with others. And what do I mean by that? Whether youre a kid or an adult, you must forgive yourself when you do wrong. If you come in late for work, you must brush it off and say to yourself, @CAPS2, dont do it again. @CAPS3 that you forget about everything but what you just said. And once again I go back to sports. If you lose a game, you look at the film, realize what you did wrong, and dont make those mistakes again. Then, you forget about the loss and concitrate on winning next game. I believe patience is one of the most important virtue a person can have." 9 8 17 0 3 3 3 0 2 3 3 +18880 7 "Have you ever been patient or been told your patient? Patience has Patience is a @NUM1 year old girl who is always told how patient she @CAPS1 is one of many stories about patience being very patient. One day patience wanted to go to the most amazing amusement park in juancey so her mom started to look it up on the internet. It take her mom two weeks to get every thing ready, she had the amusment park picked out, the money to go, and the hotel they are going to stay at @TIME1. The whole time patience said nothing and just waited without asking her mom if she had everything planned yet or if she was still taking her an amusment park. When they got to the hotel Patience mom had to get the room key get to their room unpack and get dressed to go. The whole patience didn't say anything. When they finally got to the amusement park there was a looong line to get tickets so they had to wait for two hours. The whole time patience did not complain. They finally got their ticket and picked the biggest roller coaster to go on first. But there was a looong line for that to, Patience told her mom she really wants to go on this ride and wants to wait in line. Her mom said ''ok '' and they waited for an hour until they get to go on it, but all the waiting was worth it. Patience was patient through all the waiting and in the end went on all the roller coasters and had fun. That is patience story of being patient. I hope you liked it." 8 10 18 2 2 2 2 2 3 2 3 +18881 7 "A time when I was patient is when I play volleyball. Im patient when I play volleyball because when you dont score points, you dont get to serve. One game we werent doing so well and I really wanted to serve because my overhand was doing great. Everybody got to serve except me on that maten. In the end our team ended up winning I never complained one time about not being able to serve. Every body cheered and chanted because won by two points." 8 9 17 2 2 2 2 2 3 2 2 +18882 7 "That's gotta hurt! every buy to wait. If you have ever played a contact sport you know that you get hurt, have to wait for it to get better, and then you can play again. When you sprang your ankle it hurts a lot. After is prang it l had to go to the doctor witch as all ways you have to wait forever, but sometimes its worth it. Once you get in the nurse asked you a few questions then you have to wait even more now @CAPS1! But atleast you eventually find out whats wrong, after the doctors came in they had to take x-rays witch took a while to develop. but I finally got them back and discover it was only a sprang. After it got all better my football coach said that I will only be a back up in the game because he doesn't want my ankle to get hurt again. But at the end of the @DATE1 he let my play! I guess thats what I got for waiting patiatley all game." 8 6 14 2 2 2 2 2 2 1 1 +18883 7 "One stormy day, me and my brother were playing soccer in our house. My brother kicked the ball in the air and did a scissors kick. The ball hit my moms lamp and broke the bulb. She asked me and I said that it was my brother. My mom said that I should fix the lamp. It was hard and the pieces kept falling off. It took mere patience to fix it. Finnaly, no managed to fix it. Patience is always good to be patient." 9 6 15 2 3 2 2 1 1 2 2 +18884 7 Once upon a time there was a princess named @PERSON1 was a nice princess but one day she was hungry and did not feel like getting her food so she told her made to but she was taking a shower so @PERSON1 had to wait and be patient she sat in her room for what had seemed like years to her she read a book watched @CAPS1.V and she went to see if her made was done she was not done and @PERSON1 was unpatient and got really mad and pounded on the door and said you better hang up or or and then she saw someone out of the corner of her eye and she realized that she had left the light on in the bathroom and nobody was in there her made was now right behind her in the hell she was emmbarassed and humiliated so she ran to her room and cried and that is the story of the time the princess was unpatient! 12 8 20 3 3 3 3 2 3 2 1 +18885 7 A time when I was patient was when my little sister was in the bath tub for four hours taking a bath. But I was waiting for her to be done. 5 4 9 1 1 1 2 0 1 1 2 +18886 7 "Finally , the day was here! The new roller coaster @CAPS4 michoggs adventure we open! ?? couldnt wait! Only one thing stand in my way to go on the ride, the drive. We cramed oursclues into the old minivan, and set @CAPS4. After @NUM1 minutes. Are we there yet? my brothersaid. Finally we arrived. We waited @CAPS4 the ticked booth for a half our, then we got in. my brother and sister wanted to go on kiddy ??. there got another hour. @CAPS1 up, your older brother wants to go on the big ride, my mom said. There it was, the best not puer! Only one problem, there ?? people ?? up for ??? @CAPS2, it will b worth it thought we got in the line and after @NUM2 hours, got on when it was over, @NUM3 eycloimed. That was avesored ??? go on it again! @CAPS3 then I looked @CAPS4 the line. Twice as much people were lined up. @CAPS4 least there wont be as much people on the other rides, I said @NUM3 was very paitent to go on the ride, even though it lost @NUM5 hours" 12 8 20 3 3 3 3 2 2 2 2 +18887 7 One beautiful morning @CAPS1 went to renew his lisence. But me though if he wake up really early he would be the only one there. But of course he wouldn't be the only one there. Unfortunitly everyone thought the same thing. But @CAPS1 was really tired he woke up at @NUM1 am o'clock but they open at @NUM2 am but @CAPS1 didn't know that. So @CAPS1 went to the panacake house and got him a nice hot coffee but when he came back there was a line around the coner. But @CAPS1 waited and waited and @CAPS1 got his lisence. 8 9 17 2 2 2 2 2 2 2 3 +18888 7 A time I was patient was when my mom was take me to my friends house to play foot ball. It is a long story but I will tell you anyways. It all started when my friend @PERSON1 called me over to come play football. So I asked my mom for a ride she said yes. So when we were driving my ???? she had to get after things from the grocery store. She took in hule hour in there. The she had to go some were else she took @NUM1 hours in there.then my called and said are you coming or what. Then I said yes. I was so kept my cool and waited. Then I finally got there. It not much of a story. That was the time I was patient. 8 8 16 2 2 2 2 2 2 2 2 +18889 7 "Here I was on @CAPS1 third day of volley ball tryouts. I was sure I was going to be on the A team. I tossed the ball up and let @CAPS3 drop back down. The toss was no good. I threw @CAPS3 up again, and hit @CAPS3 as hard I could. @CAPS1 last serve I thought, please be over. I watched as the round, white ball soared through the thin air. When @CAPS3 got near the net, I seemed as if gravity suddenly took affect. The ball droped down at hit the net and rolled off of @CAPS3. @CAPS3 didnt make @CAPS3 over. I felt cool wind brush against @CAPS1 sweaty face. As the coches decided what team we would be on, I sat on the damp grass. Finally, they handed me a small, white envelope, I breathed in and out slowly. I could feel @CAPS1 stomach tie into one giant knot. I had been waiting for this moment for months. I reached @CAPS1 sweaty hand in the envelope. I was getting more nervos by the second. I slowly slid the piece of paper out of the envelope. I heard one girl scream in ecxitement. Finally I was got to find out weather I was on the A team, @CAPS2 team or getting cut. @CAPS3 felt as if the world depended on @CAPS3. I felt a ruch of relief and excitment when I saw the sight of the word congradulations. @CAPS3 the sight of those words I pulled out the rest of the letter, you have made the @CAPS2 team. I suddenly had a feeling of mixed emotions racing through @CAPS1 body. I desided to just be happy. I went around congratulating everyone who had made a team, and hugging the ones who didnt. After all this time I finally knew. @CAPS3 made me happy to know that I tryed something and had to wait to know if I succseded or not. I wouldnt of had @CAPS3 any other way." 12 12 24 3 3 3 3 3 3 3 3 +18890 7 "@CAPS7 were is I dad he didn't come hone yet," right ??? . "@PERSON1, sweet heart," @CAPS2 @CAPS7 begain," Your father was called out in to war." "@CAPS1" I ran up to @CAPS2 room passing back and forth saying he could have said good bye, I haven't seen him in two weeks now he's gone." @CAPS2 @CAPS7 walked in " @PERSON1 I know this is hard for you but you can send him letters." I know I was going to start one now same we." @CAPS3 "she said as she walk out I wrote a letter saying dad you could have said good bye but you left. Well I would waited @CAPS4 went past no sign of a letter from him. I very day I came home from school I sad @CAPS7 any either @CAPS7 dad?" @CAPS5, hony nothing for you." I started to grow up still no letters. @CAPS2 brothers and sisters got them but not me @CAPS6 felt forgot on." @CAPS7 why have I not gotten a letter from dad but everyone else did she said "I don't know." @CAPS3." I would send him a letter every day. I didn't got one letter back I started to wonder why. Did he hate me? Did he not want to talk to me? Has he forgot on of one? I "@CAPS9 @CAPS7 yelled "@CAPS1" "you have mail" I ran down the stairs to the kitchen and them was something on the counter for me @CAPS6 hard @CAPS2 name on @CAPS6 and @CAPS6 didn't say who @CAPS6 was from. "@CAPS7 who is @CAPS6 from "open @CAPS6 and find out "@CAPS3" I slowly took of the letter and started reading they. Don't @CAPS5 I have not written to go yet but maybe this will make @CAPS6 up " @CAPS12 you more than anything in the world @CAPS12 daddy I open the package and @CAPS6 was @CAPS2 dads pitch of are us and his ran sack with all the letters a sent him and all of them. Were upon and read they all had a teller form that in all envelopes and that very night he called and said" but, I @CAPS12 you no matter @CAPS1 keep lot-ding say so soon." 10 10 20 3 3 2 2 3 2 2 3 +18891 7 "Patient is where you can wait or stay put for someone or something . Some people can be very, very patient. But other people have no patient at all. Like if your waiting in line at the store and someone has a lot of thing an your in a bit of a rush. Now yo could be rude and yell, him or her scream and all that crazy mess or you could wait patient and maybe she will let you cut. Thats what patient is to me." 8 4 12 1 3 2 2 0 1 1 2 +18892 7 "Patience is one of the worlds most important lifeskills. Having my best friend live across the street is great. He has @NUM1 older sister, named @LOCATION1. @LOCATION1 was blessed with downs syndrom. This basically means she doesnt understand things as fast as you and I. You also can see it from the way she acts. @LOCATION1 is one of the happiest people I have ever met. Knowing @LOCATION1 as well as I do also comes with a downside. You need to be extremely patient. When talking to her, lots of people would give up and leave because she doesnt get it, but her closest friends have developed patient like no other kind. Having @LOCATION1 as my neighbor is one of the greatest things that could have happened. She has made me a master at one of the most important lifeskills. @LOCATION1 is a wonderful person and, I guess a great teacher, but when you are having a bad day, be grateful because not everyone is as blessed as you." 8 9 17 2 2 2 2 0 3 3 3 +18894 7 "It was a hot @DATE1 day in @CAPS1 my family and I went to @ORGANIZATION1. We went on all of the rides. Our last one was the @CAPS2 @CAPS3. The line was short when we were walking there. Once we got there the line was all the way to the train. It was like waiting for a pig to fly. My brother and I had to go to the bathroom. My dad and mom stayed to save our spots. When we got back my parents were another back. ""@CAPS4 are we so far back?"" my brother said. My parent got out of line so they could get a drink. Ten families wanted got in line. We waited and waited until, something spontanious happend to us. The ten families were is the wrong line so we got to be in front (behind three other families). My family and I had so much fun it was worth waiting." 9 5 14 2 2 2 3 1 1 1 2 +18895 7 "Everyone has to have patience. Everone has patience it depend if its a long patience or a short patience. People always say Patience is vertile. @CAPS1 need a lot of patience for what they do espacially if they are @NUM1 grade teacher. When you get in to @NUM2-all the way up, teachers expect older kids/young adults to be well behaved. Now if you have a job that you focus on adults your patience might not be high/long. Like my dad he is a lawyer he deals with adults his patience is not close to what my mom is. My mom still deals with adults but she grew up with four brothers but she was the oldest. My dad expects people to be on time within a couple of minutes. When ever I say come pick me up mat seven oclock, he will be there by seven oclock. Now my mom comes and picks up and I say seven oclock, she will be maybe ten minutes either way. That is my story about the people I know and Patience." 6 7 13 1 1 2 2 0 2 2 3 +18896 7 Patience @CAPS1 and my mom were sitting on the coach and we were going to go to the store to get groceries then go to school cloth shoping. My sistr didnt really wont to go but my mom made her so she was already mad about that but we went and got food that she apparently dint like but she just being her normal! Self esteem and greedy. we are here said my mom we are at @CAPS2 to go shopping to my sister. She dosent like @CAPS3 @CAPS4 or @CAPS5 or are like I do mabe cause she dosent think she can fit them but anyways we do in and she dosent see anything she likes so she starts throwing a tempestan ?? my mom was so patient with her. I couldent belive it so we lost to of her name and she took @CAPS1 to my spares. 9 7 16 2 3 2 2 2 2 1 2 +18897 7 "It was @DATE1 and @PERSON4 was in class messing around at his desk like usual. @PERSON4 isnt usually the patient kind of a person. Then his teacher asked a question to the class and @PERSON4 had thought in his head that it was the one of the best answers. @PERSON4s hand shot straight up in the air. One of the first hands raised. @CAPS1! Lots of answers. <@NUM1 berry said. @PERSON1 berry is kind of more of a round person, with some big glasses to see. But all of the students love her as an @CAPS2 teacher, @CAPS3 @CAPS4 whats your answer? @CAPS5 I was just scratching my head. Okay @CAPS6. @CAPS7 language? @CAPS8 good answer though. There were about @NUM2 more hands in the air. In @PERSON4s head he just wanted to blurt out his answer but he knew that this time he was going to at least try to be patient. @CAPS9 these last @NUM3 people and then we will go @CAPS5. <@NUM1 berry exclaimed. @PERSON4 was raging with impatience inside his head but outside he looked as calm as could be. @CAPS10. @PERSON3 said. @CAPS11 a metaphor? @CAPS10 answered. @CAPS13 youre right it was a metaphor. @CAPS14 darn it that was my answer! @PERSON4 mumbled under his breath. But even though another classmate took his answer @PERSON4 was happy because he knew he was waiting patiently." 10 12 22 2 3 2 3 3 3 3 3 +18898 7 "Bang! I had just shot myself in the foot with a @CAPS1 gun. It all hapened when my sister got a gun for his birth day. I went up to a target and got ready to shout that was when I got shot I went to shout, that was when I got shot. I went to my more and told her what happened. The next day we went to the doctor's office to have a look at my foot. The doctor had about @NUM1 or @NUM2 patients there not in in cluding me. My mom said"" @CAPS2 could take a while. I am a person with barely any patience at all. We waited, and waited, and waited for an hour. Today wasnt my kiday day. She called out a persons name it was hot mine. We waited for a total of @NUM3 hours and then the doctor finally called my name. After the @CAPS1 got removed I went home to sleep. That was a time when I had to be patient." 10 9 19 2 2 3 3 2 2 2 3 +18899 7 "Patience! Being patient can get you want and I gonna tell you a story about how I got what I wanted by being patient. It @DATE1; two weeks before my birthday I asked for a male scooter. I was told I was too young for one. Of course I was upset I was furious. I waited a few days, but I didnt get it. I waited another week I still didnt get it. When my birthday came, (@DATE2) I finally got my matai scoot! I was so happy! Thats why people should be patient because you might get what you ask for!" 8 7 15 2 2 2 2 1 2 2 2 +18900 7 "A time I was patient was when my grandparent and I were driving to florida. It took about one and a half days to arrive. Then it took us six hours to get to @LOCATION2. My uncle @PERSON1, his wife and his four boy went also. They had rented a house for us to stay with them. On @DATE1 which was the after we got their we went to @LOCATION1 to see my grandpas sister @PERSON2. That took us about an hour and thirty minutes because we got lost. The last time we went to florida was to see my cousin @CAPS1 get @CAPS2. No, his little sister was getting @CAPS2 , I couldnt wait to see them. The wedding was @CAPS3 I couldnt understand it.So I waited for it to get over. After the wedding we went back to my aunts house. On @DATE2 we went to the flea market and it was huge. It took us an hour to look at the whole thing. I wanted to leave at stand fifty-five but I had to by something for my mom and dad. So again I waited patiently for us to leave. On @DATE3 we left to go home. We got here around @NUM1 in the @TIME1. I was so tired I almost fell asleep on the floor. So the whole ride their and back I waited patiently." 8 8 16 2 2 2 2 2 2 2 2 +18901 7 "Being patient is a very important skill to have. You need this to live your life. With out patients your life would be very crazy. One time when I was patient and had to wait for it when it was time it felt good. One day about @NUM1 years ago. I went to @ORGANIZATION1. And if you have been there then you know how long the lines are. They can be up to about a hour and a half. I was waiting for my turn to go on the haunted hause. It looked like it would be a lot of fun. Then when I got there it looked like there were @NUM2 people in line at the time. My mom asked, @CAPS1 do you want to go on a different ride and then come back and do the hannah I love? I told her no and we got in the line. After about @NUM3 hour in line, there was only about @NUM4 people in front of my mom and and I. Then it was finally our turn when I got to sit down in the chair and be buckled in, it felt good to know that after waiting for a long time I did it , I was patient. I did peeping asking if it was our turn, I just stood there patient. That was the time I realized that I had been patient. I knew from then en that I really could do it, patients. Its an important skill to have and to help you live your life well without it being crazy" 8 9 17 2 2 2 2 2 2 2 3 +18902 7 One time I were a patient was when I broke my arm. I was there for @NUM1. I was playing outside and was climbing a pole and I droped down and I put a @CAPS1 on it and it swore up. My doctor was very peaceful. And nice. In conclusion this is a time I was a patient 5 4 9 1 1 1 2 1 1 1 1 +18903 7 A time I was begin patient was when I was in line to go se @CAPS1 @CAPS2 the line was so long I was dideing to leve but I did not whant to lose my place in line so when I got in the pace the line was longer than out side so I was patient so when I got in the movie was over I was so mad that I got home and whit to sleep. 4 6 10 1 1 1 1 2 2 1 1 +18904 7 "Patience, @CAPS6 essential part of our world. Patience @CAPS5 deffeniatly some thing everybody needs. but not everybody has. I believe that everybody needs patience because everything takes time. And if you dont have the time to do something then you dont have the time to live. And if nobody had the time to live then I wouldnt be here right now. I believe that patience @CAPS5 more than just its deffinition. I believe that it means to be able to a low time to pass so you can do something. If all you did was work then good have a pretty boring life. For example if you had a @CAPS1 teacher for @CAPS6 elective class. She would have to be patient to be able to teach you the language of @CAPS1. Otherwise she probably wouldnt be a teacher. Another example would be that lets say your on @NUM1 and your going to go to @LOCATION1. But traffic @CAPS5 holding you down because of a @NUM2 car pile up. and you honk your horn. Thats not going to speed things up any more than they already are. Maybe your timing @CAPS5 perfect when your honk but it doesnt make anything go any faster. When people hear someone honk their horn it most likely comes up as @CAPS3 @CAPS4 @CAPS5 @CAPS6 @CAPS7 PERSON @CAPS8 @CAPS9. @CAPS10 @CAPS5 pretty much correct. When you honk your horn in traffic it doesnt make anything go faster, it makes things seem longer and people instantly label you as @CAPS11. In conclusion I would like to state that patience @CAPS5 important to mankind because if nobody had patience nobody would be on earth right now" 8 6 14 1 1 3 3 0 2 2 2 +18905 7 "A lime when I was patient was last year every day I had to be patient, because of my aunt. last year my aunt would pick me up in the back of the school someday I didnt know if she was picking me up, like this one time it was the first day of school and I didnt know what was happening. I didnt know who was going to pick me up. I didnt have a phone so I couldnt call mane. There I was waiting being patience at the school. As I was waiting I with my friend to his house, then I went back to the school and waited. For about @NUM1 or @NUM2 minutes or what felt about an hour my aunt came and picked me up." 8 6 14 1 2 2 3 1 1 2 2 +18906 7 "My neighbor was very patient when he killed that @NUM1 point buck for the first time! He was??? and proud that he caught this beautiful white tail deer!. He said he`d never been this proud before. He went out to dinner and I remembered my neighbors face when he told me, I was so happy for him. If I had the money I would have got something for @NUM1-point buck. When I got to sec the head my jaw dropped it was the most beautiful deer Ive ever seen." 9 6 15 2 2 2 3 1 1 2 2 +18907 7 "@PERSON2 stepped out of his warm house and out into the cold, blowing air. He slowly walked, staggering on the ice, out to the barn. The barn was unlike any other. It was a pitching barn. @PERSON3 trained many softball pitchers and catchers in this barn, including me. I was already in the barn, and I had turned on the heater. I was warming up, doing wrist flicks, 'k-s', one leg throw, arm circles, and screw ball flicks. My catcher, @PERSON1, caught the ball everytime. @PERSON3 said," @CAPS1. Let me see your screwball and rise ball." I took my place on the mound and threw my screw ball. It curved right and the glove cracked." "@CAPS2! Excellent! Hey you! Give me a high five!" @PERSON1 said. I slapped her hand and we both said "@CAPS3!" "@CAPS4, @CAPS4 good. Now throw me a rise," @PERSON2 said. I threw one. @PERSON3 gave me pointers after I had thrown three rise balls." You are doing good. Just keep your legs open and your arm flicking up a little more," he said. He never lost patient with me. Not ever after one rise ball almost hit the ceiling. He just kept working with me. After many more pitches I had finally got it. We finished our pitching session ten minutes later. @PERSON3 told me I was doing great. He said we would work on it again on @DATE2." @CAPS5 is @DATE1. Right?"I asked "@CAPS6 day!" he said cheerfully. He gave me a hug. I love @PERSON3. Not just because he is my dad. Also he is a great man. Happy, funny sweet and patient @PERSON3." 12 11 23 3 3 3 3 3 3 2 3 +18908 7 Once when me my dad were supposed to go to the races. But I had to wait until my dad and he said he was getting of work at @NUM1 oclock and thats the time the races starts. It takes a hour to get there so I knew we were going to be late and not be able to meet me drivers and sit in their cars. So I was patient playing in my room with all my toys. I was worried that I wasnt going to go at all. @CAPS1 I decided to take a nap. Later I felt something tapping me I opend my eyes and saw my dad he said get up were going to the races. I was so happy. We got there and we found out we had the wrong time we were an hour early. So I got to meet the drivers and sit in there cars. And that weekend they were having a three hundred lap race. It was the end of the race seson of the year. First they did the three hundred lap race. @CAPS1 they did figure eight boat race. After that they did the school bus derby race. I was so happy you be there and to se the school buses race. A little kid said no w how am I going to get to school there crashing all the school buses. @CAPS1 the race were finished I than ked my dad for taking me to the races and not being late to meet the drivers and sit in their cars. We went home and I went to @CAPS2. 8 10 18 2 2 2 2 3 3 2 2 +18909 7 "When ll was going to @LOCATION1 with my family I had to be patient. Our flight left at @TIME1 am so we were there at @NUM1. We waited for two hours. Nobody complained because we each had something to do. Me and @PERSON1 were playing video games, and my mom was reading ,When we finnaly got on the plane it took three hours to get to @LOCATION1 and no one complained then either. So this is the story of the time when nobody complaind for five hours!" 9 9 18 2 2 2 3 2 2 2 3 +18910 7 "On a super hot summers day, me, my mother and @CAPS1 all went to best western. The reason is that we dont have air conditioning and we were melting like ice cream. So when we got there, there was a pool! We went up to our room and got changed into our bathing suits, we went down to the pool, found a spot, and put our towels there. But, everyone had to get out for chemical cleaning. I was burning up with anger and disappointment, but I cooled down and waited. Waited, and waited and waited, still no one could go in. It had been about fifteen minutes so far and everyone was bored out of their minds. And finally a buzzing noise ringed in y ears! But it meant that some food was ready at the snack bar, so it get my hopes up but they fell down again. Waiting, still waiting then a voice said, ok, everyone back in the pool. I was overjoyed by these words, and I ran then jumped right in! It took like a half hour, even if it wasnt worth it, it was still fun. So maybe next time something takes a long time ill try to be less agervated and more happy, maybe." 8 12 20 2 2 2 2 3 3 3 3 +18911 7 One time I was patient was at my house when it was my turn to play the game I had wait a while so went to my friends last of sitting and watching I am never patient when theres food involved I dont like to wait for my food it sucks when I have to wait. I dont know any other time I was patient I dont like to be patient. 3 4 7 0 1 1 1 1 1 1 1 +18912 7 There I was on a cold @DATE1 @TIME1. Still almost pitch black. I was hunting in my blind with my dad so quiet we could hear a pin drop. I had to be very patient cause even the slightest movement could scare a deer away. We were sitting there for almost @NUM1 hours not even making a sound. To me being patient was hard but I did it. I was in the woods being patient and soon enough a deer came by. I had to be patient and wait till his head went down so I could stand up and shoot it. That took about @NUM2 minutes. But it was worth it cause I finally shot the deer and me and my family all got to eat some deer for dinner. 8 12 20 2 2 2 2 3 3 3 3 +18913 7 "Today I had to @CAPS1 Patient @CAPS2 of the meap. The meap is a @NUM1 to @NUM2 day @CAPS3. It has writing, reading, math. It is the hardest thing you will have to do in school. I think it is the hardest thing in life, but it helps you learn a lot more and it might help with your future jobs." 7 5 12 1 1 2 3 0 1 2 2 +18914 7 A time when I was patient. A time when I was patient was when I was in @NUM1 grade. When I was in @NUM1 grade my teachers said that we had to write a story about us being patient. So once apon a time their was a girl named @PERSON1 who was not patient so the hole world new her as the un patient. @PERSON1 hated that name so she though to let self and she said @CAPS1 @CAPS2 I make them @CAPS3 calling me that. So @PERSON1 went around her street and asked everyone @CAPS1 @CAPS2 I @CAPS3 being called the unpatient. NO body would tell her the answer so @PERSON1 sceawed out loud @CAPS1 @CAPS2 I @CAPS3 being called The unpatient. Then @PERSON1 heard a vocie it was an old man his name was @CAPS4 and he's said I no @CAPS1 you @CAPS2 @CAPS3 being called that way @PERSON1 said @CAPS1 please tell me. All you need to do is be patient. Then @PERSON1 though to herself I got to be patient. So what @PERSON1 did was she went to the store and you no what she did she got in line and she was patient so when everybody went they said good job @PERSON1 and everybody stopped calling her unpatient. 8 8 16 2 2 2 2 2 2 2 2 +18915 7 "Have you ever been patient? I have, one time me, my mom, my dad, and sister went to @CAPS1. When we got there they gave us a number and told us to wait. I was being patient, sitting there quietly waiting. Then @NUM1 later we got a table. We all sat down and told our waitress what we wanted to drink. Then we all looked at the menus and found out what we wanted. The waitress came back and asked us what we wanted to eat. I said steak and so did my dad, my mum and sister got mini tocos. She said ok, and that our food would be out shortly. Well it turns out she was way off. We were sitting there for @NUM2. My mom wanted to leave but the rest of us said no and waited patiently. Finnaly after @NUM2 @NUM4. Our food came out and were were glad. The only bad part about that was the mini tocos were frozen solid. So we just asked for our bill. The waitress came back and gave us the bill, luckily that wasnt frozen solid. We paid our bill left no tip and left. After that my mom thanked me for being so patient and we never went there again." 8 11 19 2 2 2 2 3 3 2 3 +18916 7 "Sometimes I done show patience and sometimes I Do. Being patience is being @CAPS1, @CAPS2, And @CAPS3 the good charater traits that a leader has. Without patience youll @CAPS5 up at every thing hard you Do. So be leader, a person who @CAPS4t @CAPS5 up.Be a person who you love in addition be every thinG you can be. Remember, patience is every thing." 5 5 10 0 1 2 2 1 1 2 1 +18917 7 "Have you ever waited for something that seemed so @CAPS1 away, that seemed to take so @CAPS2 to get there, but in the end, it all paid off? I have, just @DATE1 I took the @CAPS3.A.T to get into the @CAPS4 @CAPS5 @CAPS6 @CAPS7, also know as @CAPS8, (@NUM1-@CAPS9) I had to wake up at @NUM2 am, on a @DATE2, to get ready. I had to beat @ORGANIZATION1 at @NUM3. When I got there, I had to wait in line for @NUM4 minutes to find out what room I would be taking the test in. It took @CAPS10 @CAPS11 to take the test! With three breaks! However, when I was done and exited my room engulfed in the crowd of about @NUM5 other kids taking the test, I met my mom who gave me encouraging smiles and big hugs. Since my three best friends also took the, we all got solo way afterwards and roamed the campus. It turned out to be a great day!" 10 11 21 2 3 2 3 3 3 2 3 +18919 7 "@CAPS6 was @NUM1 at night, @CAPS1 @CAPS2 and I was sooo anxious to know what I had gotten for @CAPS1 the next day. I couldn’t go to sleep at all, because I was so excited for that awesome day to get my presents and celebrate @CAPS1. I love @CAPS1 because of all of the joy, fun, and happiness in everyone’s sprit @CAPS6 is very rewarding and good to wait for things because if you wait, then good things will come to you and those around you.sometimes I already know some of the things I had gotten (because my mum is a bad hider) for @CAPS1 I am patient with others others because I would like for them to be patient with me as well. Treat others how you would like to be treated. I think @CAPS1 is the most joyful time of the year, don’t you? @CAPS6 is fun to fellowship with pets, friends, and family because you become closer well, that is my patience response. Thank you for your time @CAPS9" 6 7 13 1 1 2 2 1 2 2 2 +18920 7 I chose to write a story in my own way about patients. Patients is how long you can stay waiting for something or someone. Like in a restaurant you be patient and wait for your food. In an airplane waiting area you be patient for the plane to land and get ready for departure. Those are the things I know about patience. 5 5 10 0 1 2 2 1 1 1 2 +18921 7 "I am in the middle of being, well trying to be patient right now. You see @CAPS1 my birthday coming up my cell phone is not working that ??? I told my mom that I needed a new phone. She is illegible so I have to be patience just hoping and we thing ??? super cool! @CAPS1 the is nv @CAPS2. I don't know which ??? Being patient is really haid. Being patient involves not whining ?? no and mw yelling. Patient can sometimes come with ??? that ??? . so I'll be patient and see how it oges." 9 8 17 2 3 2 2 2 2 2 2 +18922 7 I have to be patient all the time when Im teaching my puppy (@PERSON1) right from wrong when are you patient? @PERSON1 is a new part of my family and he is still learning right from wrong. I try to teach him things every day and when I go over it like @NUM1 times I get kind a mad. Mom tells me that @PERSON1 is just learning and to be patient with him it helps train him faster! I have to be patient when teaching @PERSON1 new things and if Im patient he will learn faster 6 7 13 1 1 2 2 2 1 2 2 +18923 7 "It was a cold @DATE1 @TIME1 and the @NUM1 and @NUM2 grade football teams were playing at different times one at @NUM3 and one at @NUM4 and of course there was @CAPS1 leaders, and I just happened to be one of them. The game starts at about @NUM3 oclock and we started cheering. After about @NUM3:15 we were getting very cold we were wareing our warm-ups but we were still cold. So now that we were cold we were getting kind of cranky. As half time came it was even colder. We all took a brake and went and got some hot chocolate. Well of corse we were in a hurry to get back to the bleachers to sit down, well I started to walk faster and faster then I dropped my hot cholate down the front of me. Well I was mad but Im a @CAPS1 leader so I have to be happy. Then we started cheering again and it was colder than when we started but we just kept cheering but then some of the @CAPS1 leaders decided they wanted to take off there warm-ups and if more pepole want to take them off well all have to take them off so we did. And we froze but we held in there until the @NUM7 game was over. Then we all went home and probubly went to bed." 11 8 19 3 3 2 3 2 2 2 2 +18924 7 "I think patience comes into role in a lot of places. For example you have to be patient to get a job or else the boss will kick you right out of the building without saying one word to you. Another place you would have to be patient to be successful. If you moan and groan because something is taking too long to happen, thats not patience. The better thing to do would be to get up and try to do something about it. Lastly if you have to wait for it not get it right away, if you money from your job you dont just go rob the place you have to be patient and you have to wait." 6 4 10 0 2 2 2 0 1 2 1 +18925 7 Once I was at an airport in @LOCATION1. We were coming home from @LOCATION2. After we got off the plane we had to go to customs. There were only two people working for @LOCATION3 citizens. The line was very long. After half an hour we were only half way through the line. There was a lot of waiting and a lot whining but we finally made it through. Of course they all thanked us for our patience and once the passport were stamped we were on our way to the next flight. 9 8 17 2 2 2 3 2 2 2 2 +18926 7 "Once upon a time there was a young girl named @CAPS1 she lived with her dad and mom in a small town of @PERSON2. It was mom in a small town of @PERSON2. It was almost her birth and she was so exited for this birthday because she was turning twelve. Twelve was here luckey number ever sience she was little. Her mom said they could go into town and go to chef @PERSON1 and eat out she agreed so that morning she woke up and dad made her some pancakes with fresh strawberrys on them she went out to go milk there cows for her parents. @CAPS1 hated milking there cows because they are very stuburn so she went out there and miked the cows in only @NUM1 minetts. @CAPS1 went back inside and put the milk on the table. @CAPS1 was starting to wonder if she was going to get a birthday present, @CAPS1 decided it would be best if she was patient when her mom came home from work (she works at a dress making store) she said, Are you ready to go eat, @CAPS1 jumped And yeld yes, yes. So they rode in to town and parked at the restaurant, they walked in and the lights are off her dad got the light switch and all of her cloose family and friends where there and they yelled sprise @CAPS1 was is such a shock she yelled @CAPS3 you, @CAPS3 you, @CAPS3 you, and on a table was twelve presents, and under the table was a dog. Her mom & dad got her a dog. She name the dog wonder because every time she saw him she began to wonder about her wonderful life. And she learned that great thing come when you are patient." 8 10 18 2 2 2 2 3 3 2 2 +18927 7 Being patient is waiting and not getting frustrated. When my family and I went to @LOCATION1 and @LOCATION1 state game. My dad was Patient and that is unusual because he is normally in patient. So we where surprised. when we got in the stadium there was a line of people not thinking and @CAPS1 sat in our seats so we waited for security to tell them to move it took about a half in hour for them to find as and again my dad was patient but the @CAPS1 at us could not wait and we started to set very angry when security got there we had to wait for them to ghoole our rist barn he was still patient and after that we got a seats I was slat but the rezzon my dad was patient was because he did not want to get kicked out of the stadium so he stayed patient and stayed calm. 7 6 13 2 2 2 1 2 2 1 1 +18928 7 When I was at cedar point I had a lot of patience. I went to cedar with my friend @PERSON1 last @DATE1 or @NUM1 @DATE1s ago. It was my first time and this was like @PERSON1s @NUM2 time. We went on so many rides but the bad thing was the lines. The lines were huge! At first I wasnt very patient but after a while I had patience and my friend didnt. My friend wanted to go on the dragter but I didnt. She forgot it was my first time. After hours of riding amazing rides. The lines got longer. My parent didnt have patience then but my friend I did. I was funny cause its the other way around most of the time. Sometimes I wish people could be more patient. But I dont know if that will happen. 8 11 19 2 2 2 2 3 3 2 3 +18929 7 "Do you have patience? Well if you she a your like we. But I now in guy that ??? patience his name is @CAPS1.M. @CAPS1.M holols the secret of patience what helps him a lot is he about talk much ??? ??? ?much like one time we were at cedes. But and, we were in a line for three hours! @CAPS2 dolo care though he was just giant ??? ??? One ? we were outside playing and we made a whole hee live mesl ho got sting five times but didn't complain about how bad @CAPS4 hurt I have some patience but not is much as @CAPS2. But @CAPS2 isn't prefect when heh hurgry he has no patience and I have in file a why. The one time @CAPS2 showed the must patience was ?? his moms car broke down in the suddle of ?? And @CAPS4 was wintel out so the car was cold @CAPS4 took nine hours for a four kuck get struck and that threw his mom over the ?? but not him until ??? when he got finally but ??? had a nice mean @PERSON1 them out and they went to @ORGANIZATION1 lets to get food. @CAPS2 has the most patience I've ever seem someone have." 9 5 14 3 2 2 2 1 1 1 2 +18930 7 One day I went to the store with my mother and there was @CAPS1 old lady in front of us she couldnt do anything she was moving very slow And I know shes @CAPS1 old lady. But she was moving really slow And I reAlly dont hAve pAtients @CAPS2 some people do. 6 5 11 1 1 2 2 1 1 1 2 +18931 7 "There is only one time a year I'm patient for something, and that is @CAPS1. I can never wait for @CAPS1 to come. I got to see my brothers, uncles, aunts, cousins, every body. It is the best time of the year and it is night next to my birthday." 7 6 13 1 1 2 3 0 1 2 3 +18932 7 "There was a time I had to go to my doctor for a monthly for a monthly chek up. When we got to the building my aunt and I relized that there were more cars there than usuall. When we stepped inside we noticed that a flier said @NUM1 shots @DATE1 threw @DATE2. @CAPS1 when we took the elevator up to the fourth floor and stepped into the waiting room we seen @NUM2 people. Luckly not all the people were waiting for @PERSON1, but I did have to wait for an hour and fortyfive minituts. @CAPS1 when I finally got to see my doctor she gave me my shot and made shure I was ok. After a long day I went home took a big nap." 8 8 16 2 2 2 2 2 2 2 2 +18933 7 One time I had to be patient was when we went on a family trip to @LOCATION1 to see family and friends! We had a work big trip placed out there very no by tires we were patent trought he trip like the flight the took @NUM1 hours the a l handed I an then @NUM1 more hours in the air for part of the trip we went along high way one which is seated right next to the pacific over so refaented a small black sedan and reached of it we can for the fist is mine is then when we went it at a place looking at stogie attraction was being for in tec on ove said of me is a gassy hill and the other the acer thom to cycling somsty I sleep and listen the radio for almost a but @NUM3 hours then refinay stopped in san @CAPS1 after staying there we got on a plan for the ride homer @NUM4 hour @CAPS2 to atlanta @LOCATION2 it was in alog plan with a middle section an both oter one we were in the middle. On both side of us were colledge students who would yell across the hall to the other side. I tried sleep but it was very uncomfortable that us the most uncomfortable plane ride of my life but I had to be patient and how its over. 8 8 16 2 2 2 2 2 2 2 2 +18934 7 "Patience is having control over yourself write you wait. In order to be patient you have to wait until whatever you are waiting on is done. @CAPS1 means to have composure over yourself. Fon example if you go to the doctor office for a yearly check up , you have to sit in the waiting room for at reast one hour before they call your name. But patience is sometimes. Like when you are waiting on a pizza restaurant to deliver your pizza @CAPS1 takes about @NUM1 minutes, but you ask me, an @CAPS1 is ,is something someone mode up. Not that people have patience" 11 6 17 3 2 3 3 0 2 2 2 +18935 7 "One day me, my mom, my dad, my sister, my bother went to fire mouitan. So we had to wait for a long time then fially we got to the front of the line, we got our seats then we sat down then we had to wait for a long time for a waiter. So we were sing songs until our waiter. Then she came I said faster. Then she came. Then we got our drinks and our food then we ate our food drunk our drinks the we went home and that is the time I was paciet." 8 7 15 2 2 2 2 1 2 2 2 +18936 7 "One time when I was patient, I got rewarded. Just a few weeks ago, my science teacher my class a leaf project. We had to collect @NUM1 leaves to get @PERCENT1. When I started collecting my leaves, I had to press and dry them. To do this to a leaf you will have to put the leaves in newspaper then put books on the newspaper so the water will come out of the leaves on to the newspaper. It takes a long time to do this process and sometimes you half to do this a couple times for each leaf. I had to be patient because the first due date was coming up, but mom said to form my project in the next due date. So since I was patient, my project got done before the second due date and got @NUM2 extra points. So when your patient you can get rewarded" 8 7 15 2 2 2 2 2 1 2 2 +18937 7 "My mom and I were were on are way to are house from sonco. We got stop by a trane, and it was going varey slow and my mom and I were waiting vary patiently but my mom, after afew minutes wanted to ternanon but we stod than and it was done." 6 4 10 2 2 1 1 1 1 1 1 +18938 7 One time I got birthday money I wanted to buy a electric scooter @CAPS1 on the weekends I always waited for my dad to get home @CAPS1 we could look on the internet he always got home and we looked but I never liked any but one day he did not have to work @CAPS1 we looked some and I found two that I liked. One was a gas scooter and one wa a electric scooter. We went to look at the gas scooter and it was a lot of money and it had a bounch of snacks on it @CAPS1 we called the person with the electric scooter because I did not like the gas scooter and we went to the ??? ??? and I got it and I agosumtied it to @MONEY1 and it was oriyiek @NUM1 @MONEY1 @CAPS1 I got home and rode it for three days and I was ??? it one night and we went in the garage and it went out of control ??? we thought it was the fuse ??? it was the controller and that the part that everything hooks up to it @CAPS1 we called the company and ordered the part and they sent us the wrong one and we told them it was not the right one and they sent the same one again @CAPS1 it fell off the desk and we forgot about it @CAPS1 I now I ordered it again and they said this time they are sending the right controls. @CAPS1 I have been waiting about @NUM2 year to @NUM3 months. 9 8 17 2 2 2 3 2 2 2 2 +18939 7 "Patience is, in definition, being understanding and tolerant. I am not patient, I understanding but I am not that tolerant. Some people though, are tolerant and understanding or patient. Here is a story of someone I know who is tolerant. In the @NUM1 grade my math teachers assistant had to be so patient with our because they would ask the same questions over and over again. She would teach the lesson and than have to reteach it before to living questions. I was in the advanced group so we went fast and never really had to ask questions. I could never be as patient as she was teaching those people." 5 5 10 1 1 1 2 0 1 2 2 +18940 7 "One time I had to wait very patiently. One afternoon my brother @CAPS1 went to pick up some car parts. Then it all happened, out of nowhere a car drifts into his lane then @CAPS2. Since our truck didnt have air bags it was a bad situation. The other driver was in a van with air bags. About @NUM1 minutes later my mom got the call about what happened. Then we rushed as fast as we could to the seen of the crash. I had to wait in the car till my dad got back from going to to get @CAPS1. I waited patiently and I was praying he was alright. And thankfully my prayers were answered. He just got some bumps and bruises. But the car got towed away. We later went to were truck was to get our belongings. And see what happened to the truck the damage on the truck was not nearly bad as what happened to the other drivers van. We got the truck back a few weeks later. But Im glad I still have my brother." 9 9 18 2 3 2 2 2 2 2 3 +18941 7 "Im going to tell you about the time I had to have patience taking this @CAPS1! It all started a few minutes ago I came into the classroom prepared for anything. I was clearly not, because a four minutes later, I have this thing on front of me. So, I started out by thinking about the time I used patience. This time was good as any. Now dont get me wrong, I understand why we take the @CAPS1, touh, I think its to help us learn, or make our hands hurt and cramp up, I dont know, really. Writing about patience is very hard because you can lose it very fast. But the @CAPS1 is the @CAPS1, and I think to so my best, so the story must go on! Its very quiet in here, and the smell of pencil and paper are very long. My eyes are tired, and I cant help but to let out a mighty roar of a yawn. My hand is asleep and every second, you hear a sniff, sniff, sniff sniff, snot. Were not aloud to get up, so were stuck sniff, sniff, snot-ing all hour long. When you were a kid, whoever is grading this, did you ever take this test, or a section of it? Well, its none of my business, never mind. Ou! My hand really hurts! One second, (shake, shake, shake, crack) there, thats better. Patience is a virtue, but who cares. You probably dont have the patience to read this so let me finish by saying this writing about patience, but now, Im done. (yes!)" 8 11 19 1 1 3 3 2 3 3 3 +18942 7 "One time when I had a lot of paitenits is when I sprined my one ice skating. I was doing spins and trichs everywhere, and one I did not land. I fell on my back, but the bone I hurt was my arm, my mom was surprised that I could even stand up because of how hard I fell. My arm was hurting so bad from it. So my mom rushed over to help me, and then we had to go home. The next morning it was hurting @NUM1 times more. I had to go to the doctors to get x-rays for it, and they took two weeks to devnlop. So I was in two weeks of pain. So it turns out that I didnt break my arm, however I was in a lot of pain waiting for the resualts. It took a lot of paients for me to just wait, and, wait, and wait for those x-rays," 10 10 20 2 3 2 3 2 3 2 3 +18943 7 It was cold fall afternoon. Meant my grandpa where out on a hunting trip. We had geneat in the mornig @CAPS1 nolvek. Little did I know what would happen that day. We got settled into ground blind at about @NUM1. From what we saw it would be a long afternoon. We sat there @NUM2 hours @CAPS1 it seemed like an eternity. We waited and waited @CAPS1 still no deer. All of a suddn my heart racer at the sight in the front of our blind. We had lured the biggest her I have ever seen. It was a monster sised deer. @NUM3. @NUM4 feet tall and a @NUM5. Rack. I loaded my @NUM6 special and shot it in the shoulder. I was so excited I almost screamed. As is any story there is a lesson. Some are respect your elders. @CAPS1 mine is patience is rewarded. and as you can see I was rewarded. 12 12 24 3 3 3 3 3 3 3 3 +18944 7 "One time I was patient. I dont want a birthday party. So my mom and dad talked about it. So my mom and I went to @LOCATION1, we got to play almost all the games (didn`t went to play the dum ones) and rode on the go carts twice, then we went and bought a new video games and some new dirt biking gloves. That was a time I was patient so I could do something fun." 4 8 12 1 1 1 1 2 2 2 2 +18945 7 "Patience is a virtue. I hear that saying over and over again from my mind. patience is virtue, patience is a virtue. I never really gave it much thought until I went to babysist my cousins for the first time. My cousin @PERSON2, who is only around @NUM1, does anything you say. Shes an easy one to babysit. But my other cousin, @PERSON3 he has to go by his own agenda. Not that I dont love him, just that I think he has to be one of the hardest little kid to ba bysit. We started off pretty good that morning. we had a snack, played in the room for a while, did some arts & crafts, and watched a movie. A few hours before my aunt was supposed to come home, @PERSON1 went poopie in her diaper. Now, Ive dealt with a lot of poopie diapers before, @CAPS4 I wasnt too worried. I set @PERSON1 on the changing table, and took her diaper off before I realized that I didnt have any wipes. I asked @PERSON4 where they were, but he was playing with those milk pumping bottle things. @PERSON4, I need you to go get wipes please. Now. @PERSON1 was now squirming, and I had to hold on to her if I didnt want poop all over the house. I know, but I cant well why cant you? @CAPS1 I dont want to. I was started to lose my temper when I realized the saying patcience is a virtue. I took a deep breath and I realized I was feeling what patient must feel like. @PERSON4 Ill bet you cant go get them as fast as a cheetah! @CAPS2 I can! @CAPS3, prove it. @CAPS4 he did. And I realized, you will get things done faster if your patcient, and crafty might just come to you." 12 12 24 3 3 3 3 3 3 3 3 +18946 7 "I wondered who would win. I just hoped I would. I was nervous. I was also a little bit scared. I didnt know what was going on to happen. I was very patient to hear who won the @CAPS1 @CAPS2 contest. I was waiting for the contest to end .A little bit earlier I played the game. I was currently in first place .I was nervous .I was nervous because if I win I will get two tickets to @LOCATION1s @CAPS3. I sat quietly in a chair. I tried not to show that I was nervous. All I could do was wait for it to end. Then, my mom said we could wait by riding rides at the fair. First, I went on the tilt I whirl. I was wondering if anybody beat my score during the whole ride. Next, we looked for another ride. I was trying not to think about the contest. Later, we found a ride to go on. When we got of my mom told me that I won. Happily, I walked back to the place to claim my prize. When I was waiting it was scary, but it was worth it. I was nervous the whole time. I tried not to think of it too. I was very anxious I want to do it again some time. I told you when I was patient. When were you?" 12 12 24 3 3 3 3 3 3 3 3 +18947 7 "The thing that ??? one @CAPS1 the most is when people don't ever think about patience. They was the ??? Opposite. They ??? seem to ??? @CAPS1 to @CAPS4??? moods. Right then and??? With ??? say ""Do it ???."" Do you??? I will tell you about a time, where @CAPS6 brother??? One and tie @CAPS2 pill does on the them. This is can, walking to the stace with @CAPS6 brother because @CAPS6 mom and some???. We needed it to panic??? a lot.When we got place of ??? Natural @CAPS3??? to walk a??? a mile.Lody at the ??? very nice at all it guesses??? Pigweed of were these to steal??? . The affect??? Walk???. Only one??? Note. @CAPS6 brother wathial down the aisle in??? of the that bottle. So we passed the pestuce section, and to the cleaning??? walking.When we??? At??? a woman about to down the aisle and ???. @CAPS6 brother??? @CAPS1 down. The aisle to go out got it and??? bad with the bottle it??? Was ???. He??? impositively, @CAPS4 to ??? Him to stop??? Mind it. We??? ""@CAPS4??? to get home and go to??? @CAPS4 it did???. The??? Walk home we gave it??? dad, mom. She??? what??? said "" ???. She then, @CAPS5 didn't we read it? ""@CAPS6 patient, to blame @CAPS1?? It announced??? Remind to @CAPS1??? To???" 11 11 22 3 3 2 3 2 3 3 3 +18949 7 "When I was patient. It was this @DATE1 we were going to this place in @LOCATION1. It to took us @NUM1 hours to get there but we said forget it we were in @LOCATION1. But we were not in @LOCATION1. It was @NUM2 minight, we were so sleepy we went to holiday inn and wonce we got to the room we went stright to sleep then that morning we went swimming then we lift and went to @LOCATION1 pack. My two cuzins were gotten on my nervs I was about to kill bouth of them they kept fighting and talking about each outher. Then we finally got there at about @NUM3 pm we had to take a little train to get there. The park was huge. The first ride me and my sister and my lil cuzins was the commet. The we got on the, @ORGANIZATION1, @CAPS1 runney foleon, and the @CAPS2 and that was a time which I was patient" 8 8 16 2 2 2 2 2 2 2 2 +18950 7 "I was over at my friends house one afternoon, when she couldnt find something she needed. So we went over to her sister, but she was on the phone, so we sat was on the on phone, so we sat there patiently until she was done. We had sat there for about seven minutes and both of us were getting in-patient. We moved to go ask her mom. I guess she was busy, because she told us to sit, be quiet and patient. We sat there again for seven minutes, but she was still working. So, we got up and went back to her sister. She was off the phone now, so my friend asked her sister where her nail polish was but in a mean in-patient tone. @CAPS1s in the drawer! Now get out of my room, she yelled. After looking and looking we finally found @CAPS1. She isnt that patient and I learned Im not patient either. My friend was still patient but her tone wasnt. Thats the time of when I know someone was patient." 9 8 17 2 2 2 3 2 2 2 2 +18951 7 "One day I woke up and looked outside it was snowy +cold. I went to the living room and told my mother that I wasnt feeling well so my mother checked my tempture and said I had a??? .I also had a runny nose so she said I probably had a cold. She had to go to work @DATE1 and she said she would stay from work to stay home with me. So she made my hot chocolate and breakfast every time I need something she just got up and got it for me. Every time I needed something like a drink, food or even another blanket she got up and got it for me. She was patient because every single time I asked for something she got it without complaining she just did what I asked her to do. She even went up town to get me my medication. That is why my mother is the best and patient." 8 9 17 2 2 2 2 3 2 2 2 +18952 7 I had to have patient's in the @CAPS1 of @CAPS2 we had to have patient in the @CAPS3. The @CAPS3 was @CAPS4 here slow we got ther a @TIME1 the we @CAPS5 it at @NUM1 we where in the @CAPS3. For hours and at a @CAPS7 pant's at the @CAPS3 I was @CAPS9 going to go @CAPS10 to the car and fall a sleep. But I used patient's to go trow that @CAPS3 and got the @CAPS11 scering of a @CAPS12 I had patients sowe I can Do something @CAPS13. 4 6 10 1 1 1 1 2 2 1 1 +18954 7 "There was a time when I had to be patient. My family and I were getting @NUM1 pug puppies from a nice lady who lived @NUM2 minutes away. I was so happy when my parents made their final decision about buying them. We visited the puppies @NUM3 more time when they were still really young. After our last visit, we had to wait three whole weeks because they had to be old enough to go home with new families. These three weeks seemed to go by really slowly, but all of the waiting payed off. Being patient gave me a chance to get ready for the puppies. We bought them beds, toys, crates, and other dog essentials. We wanted to be prepared for our new family members. The day finally came to pick up the puppies. They were so adorable! We brought them home and we let them explore all around our house.They loved it! Our pigs turned out to be great dogs. I am so glad that I had to be patient when waiting for our pigs. I guess good things really do come to those who wait!" 10 12 22 2 3 2 3 3 3 3 3 +18955 7 "I had patience when my dad din because we had to wait for the doctor to tell us we could see him, but after a while the doctor came and said that he went into a seizer and then a stroke. They @CAPS1-@CAPS2 him (mydad) and we waited about a good @NUM1 minutes and we used about @NUM2 boxes of tissues. The doctor said that ""we will keep him over night to observe him"" @CAPS3 the next day went to the hospital and after a white they had to pull the plug. I had patience in that store because I waited in the labb of the hospital, and waited for the doctor to tell us what happened and when they took the @CAPS1-@CAPS5 and lastly when they said the need to pull the plug on him. @CAPS3 that's my story about when I had patience." 9 8 17 2 3 2 2 3 2 2 1 +18956 7 I was a patient in the doctors office so I do belive. I was a patient becouse I sprins my knc once and freshed my my coluler @CAPS1 that what make me a patient. I amost forget about the lumpnote in my neck so I am up utent to my doctor. 4 4 8 1 1 1 1 1 1 1 1 +18957 7 "Sometime it can be hard to be patient, @CAPS1 me it needs to be something I want or want to do. It was a cool day in @LOCATION1 @CAPS2.C.I had just turned @NUM1 and was going to meet president @PERSON1 face to face! I won a contest that allowed me to do that. As we arrived at the white house a man took us inside. He led us to a little room then left. It was around @NUM2 then. He said we can't come out because we might distract somebody. So we waited played hangman and saws other @CAPS3. Then it was around noon and I was hungry. Around @NUM1:30pm @PERSON1 came in! He said ""would you like something to eat?""I said ""yes"".we went to this fancy restaurant I can't pronounce. He said sorry @CAPS1 having to wait, but I didn't care it care it was worth it." 8 9 17 2 2 2 2 2 2 2 3 +18958 7 I show loyalty a lot of peolpe that I no and they show me loyalty. 1 1 2 0 0 0 1 0 0 0 1 +18959 7 "A time when I was pacient is when Im at gymnastics. When you are trying to learn a new skill pacients is the key. For example when I was learning a new skill on the bars called a cast to hand stand it was difficult. Day after, day I never could do it. I put my personl best ever day but I had to be pacient my coach said. He said when the day comes youll do it but until then you need to keep trying and do the best you can do. It could take days, months, or even a year to get this skill but I just have to wait until the day my body will do the skill he said. So I waited and waited. Tried and tried but still no result of getting my new skill. Finally after four months of doing this I did it. I got up on the bar and did it. All my waiting would be over. That day my coach told me I told you that you could do it it just takes time and patience but today was your day and you did it. This is a time I had to use patcience to get my new skill. I learned being pacient is hard and all you can do is wait and see what patience will bring you." 9 12 21 2 3 2 2 3 3 3 3 +18960 7 "Book @CAPS1 And the characters lived happily ever after..for now! @CAPS2! @LOCATION1 shut the book, very sad that no more pages were left. This was the third book in her series, and she absolutely just needed the fourth. In the school the next day, she went straight to the library. She opened the doors, and was greeted with that dusty old book smell that she loved. @LOCATION1 made a bee line for her favorite shelf, holding her favorite books. @LOCATION1 scanned the shelfs, quickly noticing the book was missing. She @CAPS11 the librarian, @PERSON2, about @CAPS12, and was surprised to find the book checked out already. She put her name on the waiting list, sour about her name being tenth. The next day was @DATE1. @LOCATION1 went to the library @CAPS11 @PERSON1 @PERSON2 about the book. The results were very disappointing. Her name was @NUM1, which was pretty good for only one day, @CAPS6 when she was home, she was in a very sour mood. @CAPS3s wrong! @CAPS11 her mom. @CAPS4, I really wanted this book, @CAPS6 @CAPS12 was already checked out. My name is @NUM1 on the list, @CAPS6 @CAPS12 could be ages until those other people finish. @CAPS4, I think you have to learn some patience said mom. Patience? @CAPS3s that? @CAPS11 @LOCATION1 Patience is when you wait for something, and you dont complain about @CAPS12. Take you, for example, your being very impatient. @CAPS6 Im waiting said @CAPS7 @CAPS8, @CAPS6 you are complaning a whole lot. The next day, @LOCATION1 was as patient as she could be. She did not go to the library and ask for the book, and she went the whole without complaining. Later on. @LOCATION1 was called to the office. When she got there, she found @PERSON2 and @PERSON1, the secretary. @CAPS9 said @PERSON2. @CAPS3s this? @CAPS11 @LOCATION1 @CAPS12 is the book you wanted. @CAPS12s checked out to your acount, and all ready to read. @CAPS13 you said @LOCATION1. She couldnt belive @CAPS12! She finally got her book! Moral: patience pays off, especially when your willing to wait." 12 12 24 3 3 3 3 3 3 3 3 +18961 7 A time that I was patient was when my family and I was going to get @ORGANIZATION1's autograph. We were standing in line for hours. My legs were crapping and paining but I didn't care was to excited to worry about anything. I just wanted his autograph and eventually I got it! 4 5 9 1 1 1 1 1 1 2 1 +18962 7 "One day just before football practice, my lock on my locker got stuck. All @NUM1 of the coaches tryed to get it off. All of them except for one, coach @PERSON1. He stayed in the locker room with me trying to get it off. When we realized it wasent coming off we had to find the @CAPS1. When we found him we asked for bolt cutters. We had o walk all the way across the school to get them. Once we had them we had to walk back to the locker room. When we got there he tryed to cut the lock. He tryed for @NUM2 min. They wouldent work. So we had to walk back across the school to the tool room and get another pair. This one finally cut the lock after @NUM3 min. I think this took a lot of patients from coach @PERSON1." 9 11 20 2 2 2 3 3 3 2 3 +18963 7 "For this passage I am going to tell a story most patient person in the world. In the old testament long ago there was a man named @PERSON1@NUM1 was very rich, very happy and was loyal to god. One day the devil pointed this out in and, the devil said that @PERSON1 would easily I ???away from god. God denied this so the devil said let me??? his crops and livestock, let me dest for his camel god said fine but so not hurt @PERSON1 himself , the devil agleed.When @PERSON1 was having a bad yet the next day one of his ??? in the said A great fire has ??? and says , @CAPS1 your livestock was at nicked by wolves wear the only one s left ,the another I didnt ian ihand side @CAPS1 your livestock was at naked is wolves we arc the only one left the another I didnt ran I hand said towel a have stolen @CAPS1 your cold then the??? servant??? in and self the roof had ??? in the hall @CAPS1 your family has been killed! I ever though @PERSON1 was begin ??? to become a began dhowds living in the site eth ,would hot curse god soon the devil came again but this time made @PERSON1 horribly sick even though this next on for year s he still would not curse god. When and saw this he sent the devil away and hedled @PERSON1 he blesse I him wit A new family and faltune and then @PERSON1 was happy again" 11 11 22 3 3 2 3 3 3 3 2 +18964 7 "A long wait @CAPS1 only four at the time. I had moved to @LOCATION4. Yes, moved to @LOCATION2, @LOCATION4 from @LOCATION1, @CAPS2. Quite a long way down south for me but I was a young little girl who didnt care too, too much. So I lived in @LOCATION4, went to kindergarden, made friends, moved into a new house, and so on until I was seven. That is when I found out that we were moving. Again, back to @LOCATION3. Well, now I wasnt four anymore. I had a lot of amazing friends here (in particular two of them) and now I would have to start all over again. I didnt hate the idea but I didnt love it either. Of course. It didnt exactly matter. We were moving anyway and I knew from the beginning that I would easily have fun and make new friends. The only thing I didnt want to leave behind were the old friends, memories, and all the other stuff I loved about this place. So I took along my memories, promised to keep in touch with friends, and then moved. Novi was different but good .There were plenty of changes to adjust to but it was pretty easy overall. I made plenty of new friends with which I now hang out with everyday. Ive slipped into life here like you slip into bed every night. What I do is fun and feels like normal. I have now been living here for four years. I have been exchanging letters, emails, events, and memories with friends down in @LOCATION4 and friends here all this time. But even so, I long to go back down for a visit. I have been patiently waiting for it to happen. Now, I think that patience is paying off, because I finally get to visit this year. My only difficult has been that I dont get to see everyone. But not for long. I see all my friends here all the time and now Ill get to see my older friends too. Yipee for me! I cant wait! For years of waiting has provided me with an opportunity !" 12 11 23 3 3 3 3 2 3 3 3 +18965 7 When I got bit by a dog I was in @LOCATION1 when it happened. The dog jumped up and bit me in my face. So my dad and his friend put me in the truck and we went to @ORGANIZATION1 a hospitly in @LOCATION1. They hade me sitting in a hospitle bed for @NUM1 hours. Then I got shiped to hurly. And then I satin the hospitl watching t.v. stil watting for surgey. @NUM2 hours later I got it. So all to gether I sat for @NUM3 hours. And all that time it could of got infectied. And I got prossed a @NUM4 so they could keep there @CAPS1s. But I hade to have patience after all I was a patient. 8 4 12 2 2 2 2 1 1 1 1 +18967 7 "I am patient every thanks giving and @CAPS1. I have to be patient every thanks giving. I get so hungry I start to whine and I have to ??? ??? On thanks giving we ??? ??? ??? ??? and ??? ??? as ??? ??? the turkey. I get so excited I just keep sniffing. Then oh I can now tell you about the dessert I love it but we ??? like an hour after so Im hungry then too I very thanks giving ??? house my ??? home made apple pie, oh as corn as they walk in I jump up and down. At @CAPS1 I have to be patient because I always and to sun what presently I get I search ???? ?? with my name on it. If I find are that is ??? my parents or grandparents tell me we have to ??? firster. Come the there as I have to open my stocking." 7 8 15 1 2 2 2 2 1 2 3 +18968 7 "Today was @CAPS1 @CAPS2 and @PERSON1, the @PERSON2, was so excited, he was bounded off line walls! I wonder @CAPS8 @PERSON3 will bring us, @CAPS3 @PERSON1, looking through a cat dog,I want this and this, and this, oh, definently this. @PERSON1, you need to be patient. @CAPS1 is tomorrow and you need to do your share and help clean the tree, @PERSON1s mother says. @CAPS4 I went presents now! @PERSON1 whines. You know, his father says with again, @CAPS5 you arent a good @PERSON2 santa will only bring you peanat shells. @CAPS6, @PERSON1 gives in and sets, @CAPS7 alright Ill help. @CAPS8 seemed like many many hours later to @LOCATION1, it as time to go to bed. He was many that he had been patient, because he koew, in the @TIME1, he would have presents." 8 8 16 2 2 2 2 2 2 2 2 +18969 7 "Patience. It was a warm @DATE1 @TIME1 and I was at my sisters house playing wii with my niece, when my brother in law matt comes into the living room and says, @CAPS1 bored, lets do something today! @CAPS2 we all decided that we would go to michigans adventures for the day. My sister @PERSON1 told us to pack the coler with snacks and drinks and to put pillows and blankets in the back seat of the car. But little did we know that we were actually having six hours to @CAPS3 to go to six flags and that @PERSON1, matt and my mom have been planning this for weeks. After being in the car for two hours i moaned are we there yet? no. said @PERSON1 were lost oh I replyed. But I really didnt think about how were lost because weve been to michigans adventures a thosand times before. For the rest of ride there i was pretty quiet. In other words @CAPS4 was very asleep. When I woke up it was because my niece was shaking me with excitment. I stretched and squinted from the suns raise when my eye adjusted to the light I looked around and realised that we were at six flags! When we got in the first ride we rode was the supeman on that ride you sit and things lock around your legs and stomache and i tilts you over @CAPS2 its like your flying we wanted to ride it @CAPS2 bad but the line was @NUM1 hours long. While we were standing in line we found things to do like swing and play on the metal railing, play I spy and all sorts of things and when we finally were on and off the ride I realized that it was really fun, and worth it and that i was patient and didnt complain." 11 11 22 3 3 3 2 3 3 3 2 +18970 7 My mom is very patient. The reason why my mom is patient is because when she goes to the beauty shop she calls @NUM1 hours of waiting not a long time. Another reason she is patient is because if I don't do my chores she dozent get very upset she just ask me to do it again. My mom is also very patient when it comes to work because she does not get frustrated when she has a lot of work to do like writing a @NUM2 word paper 5 6 11 0 1 2 2 1 1 2 2 +18971 7 "Patience is??? our or waiting???Patience is dealing with teachers at school and trying to understand their point of view. Without patience you and your younger sitting or young??? teacher would constantly be fighting. Thats why patience is as important. Patience should be constantly exconsiled. In sports it helps??? you need to basic the rer whether its a good or bad call. Patience also???because youre not going to be ??? of it the first ???.Patience makes perfect. School is a great place to use patience, whether learning something new of dealing will an??? teacher. You need to use it while dealing with???children because they are always trying to ??reactions?? of you whether theyre ??? bad. In the end its a ?? to call you ??. its very important to have that ??? whether its small things ??? Learning or big things like testing. Its rather to have patience than not." 7 7 14 0 2 2 3 0 2 2 3 +18972 7 "In my life there has been many times were I have been patient and times when have hot been patient. For example the other day I asked my mom if she would drive me to target I could got gum. My mom said you but I had to with a little bill. I was patient by waiting for my mom to take me. When I got to target my mom told me to ??? up. I ran into the ??? in the pay ??? so I had to wait. Instead of getting all mad I was patient. Also instead of my mom getting mom she was also patient. One example of me being impatient is, about. Week ago when I asked my dad do play ??? with me. He said you but you have to wait a whiler. I got very mad for some reason and lost my patience. I started yelling why I have to wait. I then reach I was having rate and that I lost any patience. I said sorry and then we played catch." 8 9 17 2 2 2 2 2 2 2 3 +18973 7 Patience is one of the things that people need to have. I remember when l was in the store and my cousin wanted to go home and her mom was being and said wait. My cousin was impatient that day because she wanted to go home. I think that patient will help you go through life. For an example if you were going out with your friend and she was driving and you got tired and wanted to go home and said lets go. Then you were the one that was impatient because she was the one driving. Patience will always be one of the things we have to do. If you be patient you could do things much better. You have to sometime wait for mangers to call you to get the next job applied for. But can't be impatient or you won't get hired for that job. You always have to be patient because you don't know what would happen if you didn't be patient. 6 6 12 1 1 2 2 1 1 2 2 +18974 7 "@CAPS2 @CAPS1, @CAPS2-@CAPS1, @CAPS2-@CAPS1! The sound ratling through @CAPS11 cars. All I can think about is after @CAPS6 and lunch. I grow more impatient as the clock ticks and @CAPS11 heart throbs. I do not like the meap for that reason. During the reading selection all I think is, “@CAPS7 has to be the most boring story in history “then I turn the page, @CAPS8, @CAPS7 one is, “@CAPS9 makes me so impatient. All I wanna do is finish the test. Little beams of sweat read @CAPS9 slow but I do not want to be the last to turn @CAPS9 in. In the writing I think “@CAPS10 am I going to write about?” @CAPS11 hand starts to ache, and @CAPS11 head will pound because of everyones pencil running as if @CAPS9 were in a horror film. @CAPS2-@CAPS1, scribble-scribble, eek-eek, bom, bom, then you have to read over and over, make sure you have a title and read hand writing. The most nerves working of all, is the math segment. There are question I forgot. All the math teachers seem to cram all of @CAPS9 in @CAPS11 head at once. @CAPS9 is absolutely terrifying. Then while your testing, there is someone who can sit still and their desk starts rattleing. Well, if anyone could not tell, one, I am very impatient and two, I do not like the meap. @CAPS2-@CAPS1 is the most annoying sound. Along with many others, I am trying to get a good score. @CAPS2- @CAPS1, little, beams of sweat, libom bom, eek, eek scribble- scribble." 12 12 24 3 3 3 3 3 3 3 3 +18976 7 "One time I was patient was when me, my dad, @ORGANIZATION1, and @CAPS1 were going to @CAPS2 @CAPS3, @LOCATION1. Me, @ORGANIZATION1 and my dad wanted to ride the millenum force. So we waiting in line for two hours in the hot sun waiting to ride the ride. Some of the difficuties was the ride was having some problem. So when we finally got to the ride it tarn out ok." 4 6 10 1 1 1 1 1 1 2 2 +18977 7 "On @DATE1 I was with my dad at @NUM1 am. I was sitting watching hoping something would come & all of a sudden I grew tried & I fell asleep for an hour. When I woke up I was watching but nothing came for an hour as I was waiting & waiting & waiting. Then from many night I heard leaves cracking & I thought is it really true. On my first day I would shoot one I saw one. I was a little too excited! I reached to get my gun too quick & he ran away. On another day we came out I saw another dies but to my left this time. But I got my gun even slower this time & @CAPS1 I aimed & fired! Well thats what I thought but no it was jamed and @CAPS1 I had to unload it. Then my dad called me over the walky-talky, & asked what are you doing. @CAPS1 I said I see a doe, @CAPS1 he said then shoot it, & it stood there @CAPS1 I shot again & then it ran away, I missed I said all that patience for nothing." 10 9 19 3 3 2 2 2 2 2 3 +18978 7 "I walked into the big open room. The smell of crayon, animal crackers and dirt overcome the air and hit my nose like a big wave rolling in from the sea. I take my first nervous steps into the room. The floor is covered with toys and a lot of crayons. The kindergartengs are running around screaming like little animals that hear d they were about to be eaten for dinner. The teacher is standing right in the middle of it all. She has a distant look in her eyes and she looks like shes about to cry. When she sees me and my name tag her face lights up a little bit. She practicly runs at me with arms open. The teacher introduces herself then says theyre all mine. I never would have realized student teaching would have me doing so much teaching. I knew Id do a little but as the teacher introduced herself, then said she was leaving and I had to teach them the alphabet. So I was stuck with @NUM1 kids and a war. I eventually, with some grabbing and pulling involved, get the kids to sit down criss-cross apple sauce on the floor. Its too bad I underestimated how wild they were. As I begin, one of kids starts throwing toys at me, so as calmly as possible I half growled, @CAPS1 @PERSON1, thats not nice, please stop. @CAPS2 stops for about @NUM2 way too short seconds. So this repeats and I end up doing this with all the wild eyed, crazy haired dwarfs.Iit took a lot of stinking patience to get them to finally sit still. We got to about @CAPS3 when the kinds got fussy again. At that point I was feeling more like a babysitter than a teacher. I was gradually understanding how that teacher was willing to leave. Finally I get that light bulb going off in my head feeling I run to my purse grab my bag of candy and say, when we finish learning the alphabet A-@CAPS4, anyone who can say the whole thing will get a piece of candy!: I realized tothem thats like gold to an adult. I was amazed and couldnt believe my ears. Every kid learned A-@CAPS4, I actually ran out of candy, although it took a lot of patience and pointless bicking. When the bell rings I hastily leave to go home. It took a lot of patience but I did it, and reward myself. I slept!" 12 12 24 3 3 3 3 3 3 3 3 +18979 7 "A day that I was patient was, one day I was really happy about my birthday coming up. I couldnt wait to see @CAPS1 I was getting. I though about it for about a week begging my mom to tell me @CAPS1 I was getting. The days past and it fell like they got even longer and longer. I tried and tried day and day to try and take a peak at @CAPS1 I was getting, but I always got caught. So finally my mom told me to just stop thinking about it and be patient and it would name faster. So I waited, it seemed like it was takeing forever. The next day I woke up my brother came and jumped on me and said ah-ah I know @CAPS1 your getting and you dont. And I jumped up and said @CAPS1! How come you know and I dont? Thats bad tell me please And he said no then I got up and walked out the room and went to my mom and said I give up she looked and said just be patient and it will go by faster you only have four days left. then I walked away. Then days started to go by faster and then my birthday came up I was so happy to finally see @CAPS1 I was getting. And that was the day I was patient." 8 10 18 2 2 2 2 3 3 2 2 +18980 7 A time when I am patient. Is when I want something really bad. Like a phone or to get on the computer or something. But that is not the only way to @CAPS1 patient you have too @CAPS1 patient in church and in the doctors office so there are many way to @CAPS1 patient 4 3 7 1 1 1 1 0 1 1 1 +18981 7 "I was patient when I had to wait in a very long line at leader @CAPS1 amusment park! In @LOCATION1 I had to wait for @NUM1 hours for the ride, The @CAPS2. It went from @CAPS3 to @NUM2 in @CAPS4! When going @NUM2 the coast went strate up then, stoped at the top (@NUM4 yard) we just sat their for like @NUM5 sec! Then it moved and we went strate down at @NUM6 it was relly cool! It was werth the wait. That was the time I was patient!" 8 5 13 2 2 2 2 1 1 2 1 +18982 7 "It takes a lot of patients especially when you are travelling for @NUM1 hours strait. When I was @NUM2 we went to @LOCATION3 for a half a year. Me my mom and my dad left at @NUM3 am for the airport. We waited there for a long time. When we finally got on the plane we took the hour long flight to @LOCATION4. Ten a @NUM4 hour flight to los @LOCATION1. We waited in those airports for a long time. Then came the @NUM5 hour flights to @LOCATION2. That was the longest flight Ive ever been on. The plane was a huge double deck @NUM6 jet. Then we took the @NUM7 hour flight to hawk bay. It was a really long trip. It took a ton of patients. Well we went there because my dad was making a golf coarse. That takes a lot of patients too but, its a lot more fun. That was the most patient Ive ever had to be." 8 11 19 2 2 2 2 3 3 3 2 +18983 7 "Last year t went to @LOCATION1 city with @CAPS1 mom, @CAPS1 step-dad, @NUM1 of @CAPS1 brothers, @CAPS1 @CAPS2 @CAPS3 and, @CAPS1 her @NUM2 kids @PERSON1 and sack. The first place we went was he state of liberty. We got in live for the ferry that takes you to the island where the statue of liberty is. We got in the line for the ferry that toves you to the island where the statue of liberty is. The line was hug antic. I thought, ""@CAPS4 great"" because it was neatly @DATE1 outside and we were going to the waiting here for at least an hour. After about a half hour I noticed that the live goes into a building. What was in there? I wondered. All of the kids except we were complaining, and @CAPS1 parents were starting to get irritated we finally got in the building and guess what, another gigantic line! Yov what fun! At least the building was air conditioned. We had to go through metal detects and stuff before we got on the ferry. The ferry ride wasn't bad but it was quite full. On the bright side we got to sit down. We all got of the ferry and looked up at lady liberty. It was actually really dig unfartunately they closed down the part where you get to go inside it because it was so hot. @CAPS4 well it was cool enough seeing it. We walked around the entire island and were trying to find the ferry. We found the ferry and waited in the live @CAPS5 until we got on the boat. I was proud of way self for not complaining. Apparently @CAPS1 mom was to because when we got back to the hotel she pulled me a side and thanked we for being so patient" 12 12 24 3 3 3 3 3 3 3 3 +18984 7 "Patience is like waiting your turn to talk or waiting for something to load, patience can be helpful in many ways such as waiting till you get to your destination or waiting for the person you called to answer the phone so you can talk. Patience can have you expreriences difficulties without complaining." 3 4 7 0 1 1 1 0 1 1 2 +18985 7 A story of being patient A kid wakes up. He goes upstairs to get a drink. He goes back down and watches cartoons. He becomes very excited. When he remembers he gets to go to a football game today. The @CAPS2 are playing @CAPS1. His dad comes downstairs and tells him to get ready for the game. They drive about @NUM1 miles to the @CAPS2 stadium. They get there find their seats. The game starts. The @CAPS2 kickoff. The @CAPS2 stop them and by the end of the first half the @CAPS2 are down. ??? the score was @DATE1 to @NUM2. You can already see people leaving. Then comes the @DATE1. Now at the end of the @NUM3. the @CAPS2 are down??? More and more people leave. The @CAPS2 are coming back. We are still here. Now down by @NUM4 the @CAPS2 get another touch?? They are only down by three. @NUM5 seconds??? to give @PERSON1 culler throws a ??? pass to @LOCATION1 ??she. the crowd goes wild. We were patient enough to stay till the end of the game. 11 9 20 3 3 2 3 2 2 2 3 +18986 7 "This story a story about when I broke my ankle. It happened about @NUM1 years ago. I was at swim practice and was about to dive off of lane @NUM2. When I lost my balance getting on the block, I realized I was about to fall and tried to catch myself, but, I ended up falling in to the water and twisted my and backwards from the swim black. I was really hard to get out of the water. My mom called the doctor and found out that I couldnt got an ??? for nearly ??? days. So she came to the pool to get me and brought her old ??? those @NUM3 days passed of laying in my bed @NUM4 when I come to find out that my ankle was broken. So I ended up spending @NUM5 weeks not going to swim practice, I was so bored. That was the time when I had to be patient for four days until I got an x-ray." 8 9 17 2 2 2 2 2 2 2 3 +18987 7 "Ok it was atime wen I was on a bus to got texas. My mom, and my family was going to see my great grandfather. The bus smelt good but same lady kept spraying perfume so i had to just sleep and snack on a couple snacks. I kept gettting woke up by a baby. Everytime i hold to go to the bathroom there was always someone in the bathroom. Also when i was trying to sleep every one seems to get louder. So when it was time to catch some @CAPS1@CAPS2 my bus driver would wake us up us and we would have to get off the bus to another bus. It seemed like never on that bus. You had to have alot of patients or you wouldnt be able to to just relax when the day is done. I finally got there in @NUM1 days. It was worth it because we went to six plags. If I didnt have patience then the experience of being on a bus for @NUM1 days would have been a horrible experience." 11 8 19 3 3 2 3 2 2 2 2 +18988 7 "One time I should patient was when I friend same thy that I wanted for long time. As soon as I got here I charged towards the computer to see did was still available. ""@CAPS1."" I sad try am plently, it was still there. It had taken me sad a long time to sort up for it. As I quickly went thought the order into I was thinking ""@CAPS2 is will be so am some once I get @CAPS2."" @CAPS3 I pressed the conform order but @CAPS3 and. they got the also and now for the hard part the wating. I went school the next day and the next, and for a week @CAPS2 continued till I thought was how coal it would be to finly get @CAPS2. I took the long buss ride home. @CAPS3 got off waiting when it would come. I surged over to the mail box to get the mail and I found a box. My heart hoped and beat faster @CAPS3 I ran inside and ward it up and there, it was my @CAPS4 new I pad buck I was so, so happy and all of ""my patience had payed off I had got it." 11 8 19 3 3 3 2 2 2 2 2 +18989 7 "There was this day not to long ago that I had to wait. Nothing but wait. It was at basketball tryouts when we were finding out if we made the team. I had to wait, and wonder if I made it. I thought to myself I wonder I wonder if I pushed enough I wonder if I messed up to much. @CAPS1 I could think about were the mistakes I made so that day @TIME1 that I had been sitting down waiting to here my name I had my name! @PERSON1 number @NUM1 tryouts please come get your paper. I got it, took it outside, opened it, and read. @CAPS2 @CAPS3 you had made the goled team. I jumped up and down. That day I had my patients, and there for. I made the team." 8 11 19 2 2 2 2 3 3 2 3 +18990 7 "Two summers ago I went to @LOCATION2 and @LOCATION1. We had to drive for @NUM1 hours straight. I mostly just sat in the back seat and listened to my @NUM2 player. @CAPS1 was a very boring car ride. On the way I looked for licence plates with different states on them. We were half way there so we stopped at a dunkin donuts, @CAPS1 was early in the @TIME1, my sister and I got donuts and hot chocolate. Then we got to a whole bunch of little booths were you have to show your passport to got in. And finally we were in @LOCATION2. We stayed there for @NUM3 or @NUM4 nights. Then we were on the rode again for @NUM5 hours. to go to @LOCATION1. When we got there, all the patience paid off. And thats a time when I was patient" 8 9 17 2 2 2 2 2 2 2 3 +18991 7 "This story is about a time when I was patient. I was about @NUM1 years old. It was a gorgeous day outside. The best part is that it was my birthday. All of a sudden I had a brainstorm. I was going to try and ride my bike with no training wheels. So I ran inside as fast as my little feet would let @CAPS9 go. I went @CAPS1 through the front door and I yelled @CAPS2, @CAPS3 @CAPS7 quickly I have something to tell you. @CAPS4 is of buddy my @CAPS2 screeched as she ran down the stairs. @CAPS5 is @CAPS3 I yelled. @CAPS6 is coming. @CAPS7 on sweety you have gotta somewhere @CAPS4 your son wants us to here it must be important. it is, it is, it is, @CAPS7 on mum we can meet him outside. @CAPS8, we will be outside ok @CAPS7 on lets go. @CAPS9 and my @CAPS2 ran outside to wait for @CAPS3 and that was a time that I was patient." 9 8 17 2 2 2 3 2 2 2 2 +18993 7 "Do you have a mother who is bisy all the time. If not i do. For some reason I like travel every where with her. One day we went to a place that I forgot the name of. I was so patient. Being patient is kind of hard because, you really dont have nothing to do. @CAPS1 took her like @NUM1. I was happy when we left but I wasnt say things like, come on, hurry up, @CAPS1s taking to long, @CAPS2 hungry, @CAPS2 ready to leave and things like that." 6 7 13 1 1 2 2 1 2 2 2 +18994 7 "When I was patient I ask my mom to buy me a bike and I had to wait and wait for like two weeks for a bike on my birthday I wanted a fish, and I ask my mom to buy me a fish she didnt say anything so I keep asking and asking and asking so I stoped asking for three days then she got me a fish then it died. Four weeks later then I ask for a turtle and she said yea she will then I waited and waited tell she got me one then I was happy thats when I was patient." 5 4 9 1 2 1 1 1 1 1 1 +18995 7 "One time my sister and my mom were pacint was when l went to dicks sporting goods and l wanted a new bag and adidas sandles and crazy scocks well it took me hours to pickout socks there were zebra, strips, blank, blaid, and dots so my sister did not get to get anything cause she did not have money. So finaly I just pick the zebra ones then l had to find the adidas but then l could not find them so like an hour later the only had one left witen were my size but this girl took them right off my feet and took them so l looked at my mom and she was nappy as can be so then l went to get a bag they had one pink left so l grabbed it and went home." 8 8 16 2 2 2 2 2 2 2 2 +18996 7 "I do not have the much patience because this year Im getting a laptop every day I look up one I have I cant down I my iPod, I keep talking to my family about it I do not go a senond without thinking about my laptop I have everything ready for one but I have to wait. Waiting for a laptop is not the only thing I had to have patience for. Last year for @CAPS1 I got an iPod favor but I had to wait till @CAPS1 eve because my family pitched in we bought it on black @DATE1 so I looked at youtube vidoes on iPod touchs because I could not wait any longer. It is hard to have patience when you want something when you already have it." 7 5 12 2 2 2 1 1 1 1 2 +18997 7 A time of be patience when is all the time if you was not patience you will run all time. (I have here there). You will never have time for your family and your self like my tell me when Im eat slow down your not going no where. If your food was about go some where you will not because you are to tried to do it. All way take your time t learn how to be patience it is easy just take your time. 3 3 6 0 1 1 1 0 1 1 1 +18998 7 "One day me and my mom dad and sister were going to @LOCATION1 to go to unversual it is a attraction place. Me and my dad are walking he asking me if I want to go on this rollor coastor called the duling dragons @CAPS1 I wasnt to sure about this because it was my first time on a rollor coastor so I say no but I never knew if I liked rollor coastors so I said fine lets go @CAPS2 wating in line we waited to @NUM1 hour and @NUM2 minutes in that period of time I would just watch the other people that were haveing there turn and I look for the first time and the rollor coaster was going like @NUM3 miles per hour from where I was looking so there is still like @NUM4 people in front of us so @CAPS2 like when our we going and it feels like the time is going slower ,and slower and slower so @CAPS2 like finally our turn is ni @NUM5 more times fanilly I group goes @CAPS1 its ours I take my sun glasses and my dad takes his sunglasses and we sit in the front @CAPS1 here it goes climbing the track and @CAPS2 like ok this is fun then we go like @NUM6 miles per hour I cant even scream we our going so fast then we go up side down and twich and stuff then it ends @CAPS2 like no no no I like rollor coastor and that is the time I was patience." 7 6 13 2 2 2 1 2 2 1 1 +18999 7 "On a morning @DATE1 when every one of my family members wake up at @NUM1 or @NUM2 oclock am. Me my brother and my sisters told my mom can @CAPS4 play the @CAPS1 and the labtop. @CAPS2 said sure but you guys have to wait until each others turn and @CAPS4 said ok. @CAPS3 the @CAPS4 played it. Each person had one and a half hour to play on both things .I let my brother and sister s play first because Im the oldder one and I have to wait ptiencetly until it was my town. Well until it was my turn @CAPS4 wood have to take playing the game on the things, @CAPS4 wold do that until the day was done. Or until tomoro was done. That wold be it until next @DATE2 or until @CAPS4 can play it again. And thats what I say I do as being patience at home and the respect my brother and sisters." 8 7 15 2 2 2 2 2 1 2 2 +19000 7 "There were many of times when I was patient. There was a time when I was patient for a whole month. I was getting a new basketball video game , but it didnt come out until a mother mounth. So I had to be patient. I could not wait until the game came out. It seemed like it took forever. It was the day befor the game came out and I lost my money that I was going to use to get the game. So then I had to save up @NUM1 more dolllers to buy the game that nI wanted. I had to get two @DATE1 jobs so that can help me make the money that I lost . so two weeks past by then I went to the game store so I can buy the game. When I walked In the store, the manager told me there are no more copys of any basketball games. So I had to be patient for a whole nother @NUM2 weeks, and I get very mad. So I wated @NUM2 weeks for the game and I finaly got the game. I was so mad I had to be patient that long but I got what it was wroth. So that is my story about being patient." 8 10 18 2 2 2 2 2 3 2 3 +19001 7 "atime when I was patient was at my grandmas house in @LOCATION1 my cousins and I had to wait for my grandma to get home @CAPS1 we can go to beach. After about an hour of waiting my cousin and; started to play video games to entertain ourselves @CAPS1 the time went faster my grandma had probably worked for @NUM1 hours @CAPS1 at three- pm I decided to watch a movie I had been patient for the whole movie, at the middle of the movie my grandma got home @CAPS1 we all waited patiently till she was ready to the beach.This was a time when I had been patient." 8 8 16 2 2 2 2 2 2 2 2 +19002 7 "I remember a time when someone I know was patient with me. It was near the beginning of the @NUM1 grade. I had enrolled in band that year, playing the trumpet. We played songs and had tests to everyone we were playing right. But on my tests, my band teacher <@NUM2 noticed something funny on my tests. I was playing the wrong notes. He told me I needed a long private lesson if I wanted to play my notes right. So one afternoon after school. I took the lesson. I started by playing my notes for him. He said they were wrong. Then <@NUM2 broke down the notes for us one by one. He told me the correct way to play the notes. He had me play the notes again and again and together. When I messed up, he showed me how to play them being ?? patient with me. Then finally I was playing every note .The lesson was about @NUM4 minutes and he was patient the entire process. Now i play my notes right thats to the lesson and @PERSON1s patience. Now I know that if I need more lessons in the future, I can count on <@NUM2s patience to come out or there is ?? required classes." 11 8 19 3 3 2 3 2 2 2 2 +19003 7 "This year I tried out for the @NUM1 grade volleyball team for my school. There were so many girls trying out that I was nervous for what team I was going to get on or if I even would make a team. So I worked my hardest and figured, I had had experience from the other teams I was on before and I was now confident I would make the team. After @NUM2 of tryouts they had grouped us into either The A, @CAPS1 or intermural team, according to your skill level. We got a letter that afternoon, and I made it into the A team! We then got right into practice and games. Winning most of the games, and improving on working as a team. Then a couple days ago, we played against @ORGANIZATION1 middle school. As northern middle school, w obviously were rivals and were determined to beat them. For bragging rigts,we joked, but most important because we really wanted to do our best. The first game was very close, but we won, and I played about half the time, surviving, hitting and moving all around the court. I felt very confident, in the second game also, even though I didnt play as much as I wished. I still had fun! In the game of volleyball, you play @CAPS2 games in a match. The best two out of @CAPS2 wins the match. At that time we had won both of the games, which ment we won, however we still had to play the third game. Even though we won the match our coach wanted us to win all @CAPS2! Pretend like its the winning point, and play your hardest, she would say. So as the third game started, I was on the bench with some of the other players. I waited till about half of the game and wondered when I would be in. Time had gone by and I was getting discoureged because I hadnt played yet. I asked the coach a couple of times if I was going in or not, but she was too busy watching and coaching. So I sat, and about I point before the game ended, she looked at me and said, can you do it?I shot right up and subbed in. I whent to the back of the line, tossed the ball in the air, and hit it! i had made the winning point! In the end I learned to trust my coach and to have patience, because it usually is for the best! But boy did I have a great time serving the winning point. It really tought me a lesson!" 10 12 22 3 2 3 2 3 3 3 3 +19004 7 The word patience means a lot of things. It can mean waiting and something and much more. It also talks a lot ??? It takes time and effort. I@CAPS1 the type who complain a lot and I dont have patience. Other people they dont complain they an it. A lot of teenagers have no patience. As you get older you develop patience some adults dont have patience it depends on if you work at it. It also depends on whether the person has gone through in life. 5 6 11 0 1 2 2 0 2 2 2 +19005 7 "My mother is the most patient person I know. When she drops me off at practice she waits two and a half hours for me to cheer, fly, and dance the whole routine. When I go to science programs she waits atleast two hours untill its over. Every morning she waits on me to finish getting ready. After school she waits on me to buy something at the table in the lobby. All that she asks is for us to return the favor. She doesnt rush us unless were late. And she always hugs us before we leave." 10 6 16 3 2 2 3 0 1 2 3 +19006 7 "Patientce I was patient when I did not want to go wisconsic. Iwas patient on my way there (driving). I was possent when I was fishing, not complaining now boring it is. I wasnt about sleep on @CAPS1 ground. The whole camping trip I was patient. Story begins. @STATE1, took @NUM1 hours. In the car had a t.v. I wolened that for while and then I looked outside and say a moose! I screamed, ''moose!!'' my rooms boyfriend, mike stoped and backed up and that was my first time saw a moose. Then when we got there we set up our tent and then went fishing. I was patient for the fishing to bite my wom. I was so patient I got @NUM2 fish that day. Then when we came back i had to sleep on the groind. There was bumps and rocks under me, but didn't complain because thak how comping is. The next day we were on our way back and I couldn't fina the t.v. and didn't have a drink. I had to go to the bathroom. A sign said, a @CAPS2 station on exit @NUM3''. I was patient went to the bathroom and to get a water." 8 9 17 2 2 2 2 2 2 2 3 +19007 7 One day there was a little boy named @CAPS1. He was really hungry and his mom was a slow cooker. She would take forever to get done cooking. @CAPS1 was starving and he was getting real unpatient with his mother @CAPS4 @CAPS1 went outside to play with has friends. He came back home and was wishing dinner was ready. He went in the kitchen and said mom is dinner ready. @CAPS3 right now said mom. It wont be ready until another hour. @CAPS1 was thinking what can he do until dinner is ready @CAPS4 he went to go to play his video game. It was a space ship game. The space ship was shooting other space ships to survive. @CAPS1 got bored @CAPS4 he went in the kitchen to see was dinner ready. His mom wasnt finish @CAPS4 @CAPS1 was patient and his mom was finish less than five minutes. 9 8 17 2 2 2 3 2 2 2 2 +19008 7 Patience is when you wait for something with out complaining. A time I was patient is when I was @NUM1 years old. It was about @NUM2 that day but the winds were picking up just a little. I was being patient si icould go into a ride in @LOCATION1 adventures. It was shimbering timbers. The line was very and when I mean very I mean long. It took me about a half of hour to get on ride. Another ride I waited for was the @CAPS1 @CAPS2. But that one was shorter. It only took about @NUM3 minutes. All these rides have to show patiene because if I didnt show patience I wouldnt be riding the good rides. The last one is when I was @NUM4. I wanted to ride the thunder hawk and the line took like for a whole hour. I played my nintendo as while I was waiting so it could be patient. An hour later I got to ride that ride all because of patience. 6 6 12 1 1 2 2 1 1 2 2 +19009 7 "Patient is when you are listening and tolerant of how someone feels. My mom and dad are very patient @CAPS1 me and my sister .my siter just came and moved it @CAPS1 us she ia @NUM1 years old. She came @CAPS2 live @CAPS1 us .Its hard @CAPS1 a new person in the the family you always have @CAPS2 get one extra thing like a extra plate, spoon fork pizza, supplies and thing she need for school. Since we have @CAPS2 grt stuff we have @CAPS2 work harder my sister dosent do all the things that I m used @CAPS2 my parents are more patient and forgving @CAPS2 her but I know why.sometime my mom and dad all cvantg and mean but the she would I would get in trouble for shes older thas me but is not used @CAPS2 the way we can do things around are home. I look up @CAPS2 my parents they are so nice @CAPS2 everyone and even ??? its different know they are still patient." 7 8 15 2 1 2 2 2 2 2 2 +19010 7 I do not have patience. 3 0 3 0 0 1 2 0 0 0 0 +19011 7 "This is a story about a time when I had to be patient. This happens every year Im pretty sure every one knows about it. It is call birthday. Every year I have to wait for @NUM1 days for my birthday to come. It takes a while, but I know I have to be patient. Being patient is hard work but usually pays off. Another way that I have to be patient is waiting for the @CAPS1 tests to get over . But I always remember it has to end sometime. So I have to sit there do the work and be patient." 8 6 14 2 2 2 2 1 1 2 2 +19012 7 "I played soccer for a rec.Team called the cheetahs. Rec means I was in the best division possible you could be in. Rec soccer was fun, but my two best friends and me were doing all the work no one else on the team were not doing anything. So I decide to go try out for a select team. A select team is in the second highest division you can be in. When try outs came I was really nervous. After I tryed out for three days, if you were selected you would get a phone call saying you made the team. It took long time to get a phone call it felt like it took a country. In between those days I had to wait and wait and wait and wait and so on, when you wait for a long period of time thats called patience." 8 11 19 2 2 2 2 2 3 3 3 +19013 7 "I think patient is when some one is able to wait and not complain. I was never patient, so here is a story I have made up. One day there was a girl named @CAPS1. She really wanted to go to the park. But she still had to do her homework., chores, take care of her sister and clean up the rest of the dinner. She was really busy. She started with her homework first because are she had was a math work shect ?? @NUM1 problems on each side. Which was easy because they were ?? addition and subtracts. That took her @NUM2 minutes, (@NUM3 on each side) which isnt that bad. Next she did the chores. Her chores were to clean up her room and the living room because her sister toys here all over the place from before. But luckily her sister was asleep. Now that shes resting and not making man of mess, @CAPS2 took @CAPS1 about @NUM4 minutes to clean up all the days because all she bad to do was throw them back into the toy bar. Now , we go to her room. Ally messy room you first couldnt open the door. So she had to tog on the door until she could finally fit her self in. The door slammer shut from all the clothes but luckily didnt wake up her sister. @CAPS1 first made a check list of what she needed to do she had to: vacuum, fix her bed , and put all the food away that were in her room back in the kitchen. That took about @NUM5 hour and a half. So in all thats been about @NUM5:45 minutes. Now all she had to do clean up the rest of the dinner. Her mom couldnt because she had to drop off her dad at the air part for work, so @CAPS2 was up to her. But the bad thing is that they had speghettl for dinner and her sister spilled the house all over the floor so she had to mop. So right away she cleaned the table which took @NUM7 minutes, mopped which took like @NUM4 minutes, when she was finally done, her sister woke up and she had to feed her and then she could just take her with her to the park. She gave her some apples and then when they finally finished, she took her sister with her and they had a great time." 9 7 16 1 3 2 3 1 2 2 2 +19015 7 "I have had to be patient a few times in my life. Some times we have to be patient at the doctors, waiting for new game and movie releases. but I am going to tell you about a time I had to be patient at an airport. One time I had to be patient at an airport. The problem wasent waiting for the plane to arive or the line for our ticket. We had to wait because all the planes were down. We had to sleep there overnight. I was being as patient as I could but my grandma didnt like how we had to wait over an hour just to get into the food court and then another hour just to get our food. It was very crouded and it took all patience to not get angry at all the other people. Some examples of how i was feeling oxbout my patients is picture being at the doctors, long car rides, or maybe even waiting for a test score and there are many other things. Make sure you work on patients and stay calm." 6 9 15 1 1 2 2 2 2 2 3 +19017 7 "I think that my coach is patient because there are @NUM1 girls she is watching . She has to teach us stuff that we dont know. Our coach has in teach us stuff like the @CAPS1 play and teach us how to do moves like cross overs. She teaches us to run fast, she has to be patient with the slower kids that cant ran as fast. Our coach had to be patient when she was handing out jerseys because we all had to try them all and it for a little of her time , so she had to be patient." 9 7 16 2 2 2 3 2 2 1 2 +19018 7 "We all don`t like waiting like waiting, but we have to learn to be patient. @DATE1 @DATE1 @DATE1 when I went to @LOCATION1, @CAPS1 I had to be patient for a lot of things. I had to be patient when waiting in the airport and using public transportation. Being patient means you are understanding and tolerant. Over my trip I had to do a lot of waiting in airports. While still being patient. Being extra patient was important when waiting for you flight to be called. Another place to be patient was when I had to wait for my bag to come on the baggage carousel. Another long wait to be patient at airport security. To sum up, you have. To be patient in waiting in airports. When I went to @LOCATION1 @DATE1 I had to be patient when using public transportation. When waiting for a train to arrive it was rush hour and the train was full. When I was in the taxi and there was traffic outside. I relaxed and was patient. To conclude, I had to be patient when using public transportation. I still dont like waiting in line but I am patient when I do. I learned patience when waiting and being, but it`s something we have to do." 10 7 17 2 3 2 3 0 2 2 3 +19020 7 "When me and my dad were inline for the kencer hauck at @LOCATION1 adventures! I had to wait patiently to get on. The line was massive so many people ??? of us and it was shocking that so many ??? ??? in line for this roller coaster we waited for what seemed like hours was only minutes, and as we got closer it was getting hard to be patient. Finally we got on the ride and it was on the ride and it was insane so waiting for those minutes that seemed like hours ??? rewarded with a ??? ???" 8 8 16 2 2 2 2 2 2 2 2 +19022 7 "One time I at the @ORGANIZATION1 thru. We had already got our food and we were waiting to get it so we could eat. We waited for about ten minutes. Then finally our food came! We looked at the food they gave us and we got all the wrong food and no drinks. So my mom had to give it all back to them. We had to wait about fifteen minutes this time. So we waited and waited and waited. Finally they gave us our food and this time we got the store we ordered. We finally left @ORGANIZATION2 and we got to eat our food. Also we got ice cream after we ate. ""@CAPS1 the good thing is you guys were so patience. Thank you guys for being good!"" is what my mom said to us wen we got home. that is how I was patience." 9 8 17 2 2 2 3 2 2 2 2 +19023 7 "(waiting) (healt beatina ) @CAPS1 @CAPS2. @CAPS3 is your repolt cords. said @PERSON2hemlock. I @PERSON1 was the last one in line. @CAPS3 you go @PERSON1 @CAPS11 A@CAPS12, keepup the good work! said @PERSON2. @CAPS4!!!! I said screaming happily I ran home going straitght A@CAPS12 @CAPS5 @CAPS6 @PERSON1. @CAPS7 mom aya said . I called @CAPS7 @CAPS9 @CAPS8 saying, @CAPS9. I @CAPS10 @CAPS11 A@CAPS12! but can I older something from the internet for @MONEY1? @CAPS13 why not for a @CAPS11 A@CAPS12 tudent. I placed @CAPS7 order and I waited @NUM1 week it???" 9 8 17 2 2 3 2 2 2 2 2 +19024 7 A time when I was patient was when I went to a skate compition in @CAPS1 the registration line was almost by @CAPS2 I stood there for almost an hour but when I got up there & paid my fee it was all worth it because I got to compete against my best friends. 5 8 13 1 2 1 1 2 2 2 2 +19025 7 "A time when i was patient was at the @NUM1 birthday bash where i used to live i was waiting in line and the line was like a mile long so i waited and waited and then finally i go to look for my ticket and forget i left it in the car so I had to go all the way back. So then i get back which got twice as big as before then I wait some more it sucked then outta nowhere it starts raining, I dnt got an umbrellla, Im still waiiting. How could it get any worse? Well over it did they shut down the concert. So i went home soaking wet, my feet and hands. So i jus lay go to sleep and relax. P.S worse day of my life." 8 8 16 2 2 2 2 2 2 2 2 +19026 7 "Me, I have very little patience. I mean nearly none. When I wait I get this weird feeling, almost like a tooth ache. Weird huh? Well you get the picture, let me tell you a story about when I lost my patience. It was the @DATE1, I was at my @CAPS1 saftey course put on by the @ORGANIZATION1. We had just finished up taking the test that determined success, or failure in the course. They came out with the first group of peoples' names who passed and their certificates. By the way everyone is outside wating. The first group was done @NUM1 minutes. It took about @NUM2 minutes to grade the tests and five to give out the awards. Unfortunately my group was last. We all sat on a bench for three hours! My patience completely were off, I just started rocking back and forth back and forth @CAPS2 my group finally got called up and we got our awards! My patience has thankfully gotten a @CAPS3 better since @CAPS2. I did pass the course and am becoming a good @CAPS1. I 've shot is partridge, and one @NUM3 point buck. That is my story, have a good night!" 9 12 21 2 2 2 3 3 3 3 3 +19027 7 "I have to be patient when Im taking the @CAPS1 @CAPS2. Im patient because I have to wait for my classmates to finish their @CAPS1 @CAPS2 .I sometimes have to wait forever .But thats fine I can just take a nap .I sometimes hate being patient .It just frustrates me .Waiting for like @NUM1 minutes just for people to finish a test .Its good because you shouldnt rush on the @CAPS1. Its justs frustrates me that people take so long .Its not just at school its at my house too. The doctor, dentists at a friends house and and at the library. Man this is so hard to be patient .But its not good to be in patient .I wish people were as fast is I am during a test .Then I wouldnt have to be very patient.O well I guess Im just going to deal with it man this really stinks being so patient." 6 5 11 0 1 2 3 0 1 2 2 +19028 7 "Patience is a good thing to have. Good things come from patience and bad things dont happen. But what is patience? Patience is being ablle to handle problems without whining and complaining about them. Patience is being able to wait while others cant. Some people are very impatient, such as my dad at some times. For a month or so he had been saving up his extra money for a new @CAPS1. Once he had enough he got a new @NUM1 flat screen @CAPS1,but if he had waited only about another week he couldve gotten one about a foot bigger for the same price. Lets say your little sister is bagging you and you beep nicely asking her to stop but she just wont. So instead of totally flipping out on her which will get u into tons of trouble just wait for a parent to get home so she gets in trouble and you dont" 7 7 14 1 1 2 3 1 2 2 2 +19029 7 "Once upon a time there was a girl named @PERSON2. She had always dreamed to be a princess. Every present she got was either a dress or jewelry. She loved to try on dresses. She had two sisters both @NUM1(one year older than @PERSON2) there name were @CAPS1 and @PERSON1. @CAPS3 house is an old house located in the woods. One day @PERSON2 went out to get the mail, and a man with a tuxedo on gave her a letter that looked very fancy. @PERSON2 opened the letter and read it aloud, it said @CAPS2 @PERSON2, your invited to ball at the castle on @DATE1 at @NUM2 pm. @PERSON2 screamed in exitment. @PERSON2 decided to go to the mall to look for a ball gown. She found a beatifulgown but it was to much money. She asked the lady at the front desk if there was any way they could lower the price was I she helped around the store for a couple of days. She accepted the offer. She worked and worked for hours for two days. And fonaly her patients paid off. She could take the dress home. She drove home and put the dress on. She only had an hour so she had to hurry. She put her makeup and jewelry on and looked at her self in the mirror and said I did it. She got in the car and drove to the castle, it was so beautiful the way the moon hit the gold paint. @PERSON2 got out of the car and walked inside the castle. She walked down the stairs and every one stared. It was @CAPS3 best day of her life to have everyone think she was beautiful. She went to the dance floor and danced with some guys. The prince came up to introduce him self and when she turned around he fell in love. @PERSON2 couldnt believe the prince talked to her. He asked her to dance. They danced all night. When the prince went on stage he called her name and she went on stage. He asked her will you marry me, she said yes. She had become a princess! Sometimes dreams really do come true." 12 12 24 3 3 3 3 3 3 3 3 +19030 7 "One time when I had to be patient was when, i had to babysit. My family friend has a one year old @CAPS1 ,And I have a six year old brother .I had to babysit both of them because my mom and her boy friend were going to have a double date with our family friends . Things were great until they left .My brother was in preschool at the time @CAPS2 they gave them these paper books and worksheets to do and I had to help him. @CAPS2 I thought ok this will be easy, @CAPS2 i had him read the book and my mom told me that he knows the words @CAPS2 i wont have to sound out every single one, I had to he wouldnt do the work and the baby wouldnt quit crying and the dog wouldnt stop barking (he hate when babys cry) and the house was crazy! @CAPS2 i started to panic. What was I supposed to do? And I didnt what to ruin my mom plans and i definetly wanted to prove her wrong. @CAPS2 i calmed down and remembered what one of our friends said he told me to be patient. @CAPS2 i let the dog outside and picked up the baby and headed back to the table where my brother was playing. First i read the book aloud it got both of their attention .then i told andi made a game out of doing the work and it was all good .Then @CAPS4 time came @CAPS2 i made some food that we all liked and set the baby in his high chair with his food and gave my brother his plate i turned around and he trowed his plate at me and food was everywhere! I got mad and told myself be patient, i cleaned up the mess and feed the kids and put in a movie and they all feel a sleep! I quietly, cleand up the house and my mom and friends walked in and were surprised i did it. Patence is a big part in life if you loose your temper it just makes things worse." 10 11 21 3 2 3 2 3 3 3 2 +19031 7 "One day my mom came home from work. She came in and said @CAPS1, do you want to go shopping for your clothes @CAPS2 or later? I chose @CAPS2. So my mom changed her clothes and we were off to the store. It was around @NUM1 so it was rush hour. It seemed like it was taking forever and I was getting mad. Then my mom said be patient and it will be over soon. This is a time when I was patient. After ten minutes, things started to clear up. It still took a while but it was getting better. In less than twenty minutes we were pulling up in the @LOCATION1 parking lot. There was a few cars in the lot but it didnt seem like much. When we got into the store thats when I really was mad. The lines for you to purchase your items lead all the way to the back of the store. Then my mom said @CAPS2 look. The lines are long as you can see. Are you sure you can handle this and have patients? Ill try. I said. After we got in the store we were looking for my clothes, we were looking at the long lines also, to see if they went down some. We got my clothes, then got in line. We spent about an hour worth of time in the line and it made me mad. Not only did it make me mad, it made me hurgy because I skipped lunch. When we got out of the store, we were happy and hungry. We left the store and went to @CAPS3.Donalds. When we were down the street from @ORGANIZATION1, there was this traphic line we got closer and closer to @ORGANIZATION1 and then realized that line was the @ORGANIZATION1 line. We got in the lot and I knew for sure that I was going to have more patients. So we waited and the line went really fast. We got up to the spoorker and my mom ordered a fish sandwich for her and a chicken sandwich for me. We got to the next window and they gave us our food. When we got our food, the lady said @CAPS4 you for your patients. Then she asked us would we like a free frie of any size for our wait. We told her yes and we will take a large frie. My mom turn to me and said Do you see what happens if you be patient? I said yeah and patients is a good thing to have. That was a time when I was patient." 10 11 21 2 3 2 3 3 3 3 2 +19032 7 "The time I was patient I had trouble with football. I needed help doing everything. But my dad helped me. He taught me how to throw kick, run and kaney. I was patient because I watch them I did it. I saw one help my dad playing we went out to join them. The stuff he tate me was hard but it helped." 4 8 12 1 1 1 1 2 2 2 2 +19033 7 "Patience is probalbly one of the most important things in your life. If you are patient, most people will probalbly like you more, for example, if you are in line for something at school, and you were patient, you will probalbly get a @CAPS1 you from one of your teachers for being so patient. You always have to be patient, weather or not if it is at school, an ammusinent park rides line in front, and behind a bunch of people, you will want to be patient, because if you are are not, you wouldnt want to lose it in front of all of those people and cut in front of them, and possibly get thrown out of the ammusmend park in front of all those people, then, you would be emborresed. This is why I think patience is important." 6 4 10 0 2 2 2 0 1 1 2 +19034 7 "Fishing is a great sports, but it takes a lot patience. My first fishing trip was at a lake about @NUM1 miles from my home. I had loved fishing ever since then, but the trip wasnt easy. I think that fishing is fun because I was patient accomplishing what I did took every oune of patience I had. When my uncle visits from @LOCATION1 he always brings his fishing rods and fishes in a differently. I never went with him until about one year ago. He decided that I should bring a friend. So if I get boared, I would someone to talk to.The patience started when we were about half way there and @CAPS1 ! We hit a fence. The car had broken down so we called a land break.The wait was about @NUM2 hours, @NUM3 min and my friend asked. So are and my friend sucked .We finally fixed the car and drove the rest of the way .Once we got there, we had two problem to fix, and we had no bait. We found a nice spot at the other side of the lake. We had to sea venge for some baits, which took about @NUM4 hours for enough baits.We were finally ready to fish. We got the rods, sat the chairs, cast, and waited.There was no way to make fishing faster so we sat, hoping for some bites. In the end my uncle, my friend ,and I caught @NUM5 fish ! We had eat three for lunch and went home with @NUM6 fish left. I love to go fishing because it relaxes me. I felt like anything could have happened but we went fishing , relaxed, and brough a couple of meals. Thats why I have fishing because it requires patience." 10 10 20 3 3 2 2 2 3 2 3 +19035 7 One time when I was patient was my birthday I was turning @NUM1. I was very excited because I knew that I was getting a cell phone and thats all I wanted. All of my friends had them I just wanted one because if my mom had to pick me up for something and didnt know where I was. It is just a need right now because they are very helpful. My birthday was on a @DATE1 so the night before I was at the football game everybody was asking if I was going to get me and I kept on telling them yes Im getting it tomorrow. I woke up the next morning and ran downstairs. The first gift that I got was the cell phone and I was really happy and I started to get all of my friends numbers. I learned when your patient and not asking you will get what you want. 8 8 16 2 2 2 2 2 2 2 2 +19036 7 One day me and my brore asd my dad to tek us to game stop so we cold get a ner game game controller he sad in a little but so we watid passim by riding was four about lommits then we went swimmingare pull for a win so then he still wasn't redy so we play with my dog macy and then he was finly redy to go so we went to game stop to get the control and they didn't har it so we went to @CAPS1 boster and they had it so we got the controller and they didnt hav it so we went home to @CAPS1 boster and they had it so we got the controller and went home and plad the game on to place and that is how I was pashint all day. And the best we to be pashint is to keep your self okupid for along pereld 6 6 12 2 2 1 1 2 1 2 1 +19037 7 My grandma was patient for @NUM1 months because she had a big check that kept haveiry mastakes with it like they spelled her last name wrong so it had to be called back and retiped everytime they retipped it they would make a mastakes five times in a row and it takes a long time to prosses and we needed to pay our pills so we wouldnt get kicked out. We also needed a new car and clothes. Our car ready to break down and our clothes we out grow. When my grandma finally got her check we went strait out and got a brand new car. and clothes. I think my grandma was pretty patient after they had to re do it over five time I know it wouldnt be able to be that patient without loseing it. 8 8 16 2 2 2 2 2 2 2 2 +19038 7 "The story is about a time I was patient. I am being patient right. I am being patient about waiting for @CAPS1. Im not a person who ??? to be patient. When I want something I were that second. Cristmas is my favorite holiday. There is so much good stuff about it. There are cokkies, family and present. There is always a problem and my problem is I like to try and figure out what my present is. That is what stinks about being patient you are always waiting for something good to happen. All my family knows not to put anything in a bag for me because I will look in the bag easily and if they dont wrap it very good I will find a little slit in the wrapping paper. The worst time to be patient is the night before you can open your presents. I really hate that you have to go to bed and your presents are yelling not to leave them unpackaged. Something also it seemes to be all holidays are like that. Well I guess we all have to be patient on something Im being patient on @LOCATION1 football winning the @CAPS2 @CAPS3 @CAPS4 and @ORGANIZATION1 and flordia gators. Ficst @ORGANIZATION1 has got to get out of the @CAPS5 bold game thing." 9 6 15 2 2 3 2 0 2 2 2 +19039 7 "Topic: write a story in your own way about patience @CAPS1 you ever seen someone @CAPS1 good patience? well I @CAPS1. @CAPS5 neighbor had just couldnt wait till the soccer try outs for score. He practesd all day jugling pasing , and moves. The day came and for tryouts. He went and jugled , talked with the coach , shaved off some moves and went home . it will be a couple weeks to see if your on the team or not the coach @CAPS3 @CAPS2 , @CAPS3 @CAPS5, I cant wait that long. After he got back he told me all about it. I @CAPS1 to wait a couple of weeks, he @CAPS3 .So I told him about patience. The more you complain I @CAPS3 the worst you will get on your disippointment. So he went home and practiced a move he couldnt make. A few days later. I was walking out side when suddenly, @CAPS4 @CAPS5 friend came screaming out side saying I made it just smiled as I @CAPS3 ""patience patience works." 9 9 18 2 2 2 3 2 2 2 3 +19041 7 One time that I was patient was whe I was @NUM1 years old when I coght my @NUM2 fish. Me and my dad went fishing on my uncles bout my dad stoped the bout where we wher going to fish my dad help me put on my life jacet and then he bated my pocil. And then castede it out for me my dad was catching them like crazy in like the @NUM2 @NUM4 he got about @NUM5 fish he tould me to be patient that it was my @NUM2 time so as my dad was reailing them in I was siting there waiting and then all of a sudden my bobes went down I yelled out to my dad he said realit in I tride and tride and almost feel of the bout my dad came over and helped me when we got it on the bout I asked my dad what kind of fish it was he said it was a blue gill he said it was a good catch for a firsttimmer so me and my dad relised it and went back to fishing. That was a time where I had to be patient. 8 8 16 2 2 2 2 2 2 2 2 +19042 7 Write about a time when I was patient. At my old school before this school I was patient all the @NUM1 in some @NUM2 jump people in I told them to gone than they want to fight so am holding my patients in the teachers was talking to them about in I saw tham outside of the in they did not do anything to me so how I no they was fighting to make the school happy. 6 4 10 2 2 1 1 1 1 1 1 +19044 7 Patience every knows what it is and how we all can stay focus is like if were waiting at a unemployed line we wait cause patient keeps us from getting angry but if were waiting for a long time thats a better chance of getting angry. When you wait you also show care that you know someones in front of you and you wait wait wait til its your turn cause waiting and being patient lets you absorve the things around you and look at things you never seen before in your whole life and stuay what you saw to see what it is even if you already know it when your patience you show gradatude to the person in front of you and gradatude shows respect and trust wortiness thats a way of being polite and patience to the person in front of you. When you patience you dont have to rush anything cause you have a lot of time and you shouldnt complaine at all when you are or are trying to be patient no matter how long your patient the maximum time is for you and you bring up that time faster by not being patient and patient is a big thing cause patient gives you want you want or need in a lot of time I think patience is important because you never know whos patient to you so you should be patient to someone else. 4 3 7 0 1 2 1 0 1 1 1 +19046 7 "The first time I ever was patient before is when I had to wait @DATE1 years to get @DATE1 film out of my camera my mom always promises me to get the film but sense her money was use on ??? She told me to wait @DATE1 @DATE1. So I waited @DATE1 @DATE1 have crine up and this is what happened I ask my mom again can I get my film out of my camera. She said no because she used her money??? school supples. I was happened to wait another @DATE1 @DATE1 so @DATE1 @DATE1 came again. I ask her and she said no because once again she spend her money no paying people back from them helping her out like any dad. So I had to wait until next @NUM1 @DATE1 so I waited, and waited, and finally @NUM1 @DATE1 has pass and she forgets so she had to get groceries. So @DATE1 I ask her one more time and she said. Yes but she had to pay my dad back on helping her and after that she said after school I??? bringing my film out to buy. So how now told you how??? I have waited to do that also had to get a new diginal camera because it has been droped to many time." 7 8 15 2 2 1 2 2 2 2 2 +19047 7 "Every day at launch I have to be patient while waiting to get called up to get my lunch. Especialy when your waiting in line, then you really have to be patient. But sometimes your lucky and you can go to the other line to pay for lunch. And then when you finish lunch you can go out ride and play. But @CAPS1 you must finish your food and throw it away and wait patienty. And thats a time when I was patient." 8 5 13 2 2 2 2 0 1 2 2 +19048 7 "I was patient in a plane ride going to @LOCATION1. All I did was stare at towers and buildings as I possed exit them. I was also patient when my little brother. Much got a fly shot and I had to wait in the lobby. The biggets time Ive ever been patient was with my brother and him going through my patient, breaking all my stuff, biting me with his toys and his constant whining or crying over stuff that he wants." 5 4 9 0 1 2 2 1 1 1 1 +19049 7 "During the @DATE1 my family and I went to @LOCATION3 for a couple weeks. In the beginning of the second week I did something i have never done before. My two older sisters (@LOCATION1 and @PERSON1), dad,cousin (@PERSON2), @PERSON2s uncle (@CAPS1) and I were on our way to the boat. I was excited, this was my first time fishing in a ocean. A few hours past and we didnt catch anything,but we still waited while drinking coffe, telling jokes, doing little pranks like pulling each others line to make them think we caught something. We left at @NUM1 am and now it was @NUM2 pm. We still didnt catch anything but dad and @CAPS1 go fishing all the time and said we just had to be patient. About @NUM3 minutes later @CAPS3 line started pulling @CAPS1 helps her reach it in, it was a clam the size of my thumb. Everyone was so patient but no one caught anything else. Now it was @NUM4 pm and we decided to go home. @PERSON2 was happy. Everyone was just being patient and waiting to catch something but @PERSON2 was also very patient because she had to use the bathroom for most of the time we were on the boat. I think most of us on the boat had to secretly use the bathroom after being there for so many hours. When we got home we told evryone what we caught,which was nothing for everyone besides for @PERSON3 and her tiny clam. I know lots of people who wouldnt last on that boat for an hour. So i was proud of how patient everyone was and i hope to do it again next time i go to @LOCATION2 with my family." 12 10 22 3 3 3 3 2 3 2 3 +19050 7 "Being patient is not an easy thing to maintain. It takes self control in order to have patience. Having patience is very important because if you have a gon??? and your not patient maugio wait your turn here not going to hire you, here not looking for an impatient person. First, my family and I were going on a trip to @LOCATION1 but we had to leave at @DATE1 am so I couldnt go to sleep. I woke up at @TIME1am so I was tired. I couldnt take a nap because if I did the nap will turn into a deep sleep. Next I and to finish packing ?????????? so I was really tired and ?????????? show I was ran because it was a hour left. When I was done packing. I started to watch t.v to keep me awake because I cant go to sleep under a ????????. Then my cousin had to have his diper changed so I was to change it, but @CAPS1 when I was @CAPS1 about to get ????????????????? called at and said lets go. I was happy because now I get to go to sleep in the rental van. In conclusion, I had to maintain my patience, but it was really hard to do when your really sleepy. I tried different things to keep me awake and it worked. What really was about to make me angry was that I had to change a diper but some how I maintained my patience." 8 11 19 2 2 2 2 3 3 2 3 +19051 7 "One beautiful day in she I by I up I, my sister and I were outsid @CAPS1. My mom said that shed be wide back. Shes going to the store a couple hours late she is no bake with a hot. She said @CAPS2 was per my sister but she said could don't open @CAPS2 till her birthday. Her birthday was in a couple of weeks. She said she couldn't wait that long and stroed off. After a couple of days she decided to be patient. She thought days would go by radius. They did to her stick, but not fast enough. My mom to I her body to be waited of just target about the boy. @CAPS2 is hard for her to go that her house she is no ??? I was going to ???. I had decided ?? ? We got come the cream and said one way home. Finally @CAPS2 was her birth day and she was screed lad. She had opened all of her girls excepted one. The hot was sitting want I her. She dosed over to and ripped @CAPS2. One When she opened @CAPS2 .She just stared. In the break of silence she said."" @CAPS2's just clothes"". I could tell she didn't like @CAPS2."" I can't have that I was patient for so long for clothes."" I bursted out in laughter. I thought @CAPS2 was bananas. After I stoped laughing for told me don't get used to the being patient house you might never be again." 11 8 19 3 3 3 2 2 2 2 2 +19052 7 "Have you ever been in a situation when you know something good is coming or is going to happen and you just @CAPS1t control yourself? You ask your parents, when and they say, soon just have some patience! well this has happened to me multiple times, such as when we were going to @LOCATION1 or @LOCATION2, but on this special occasion, getting our new dog. I decided to be a mature teenager and be patient. It was @DATE1 @TIME1, the day my family was getting a dog and I was so excited. My stomach was filled with butterflies, trying to fly out and explode in happiness. Everyone else in my family was the same way, but just then, I remembered my goal about being a mature teenager and patient. So I carried on with my normal, everyday life. Eat breakfast, comb hair, get dressed, brush teeth, and go to school. Later, when I came home, my mom announced that my dad will arrive with my puppy in @NUM1 minutes. So I sat on my chair, in my room and watched the clock tic and toc for about @NUM2 minutes. Then, I walked in to the living room, where the rest of my family was sitting and waited till I heard a door slam. Suddenly. Boom! The door slammed on my dads truck. My mom, brother, and sister bolted to the door as I simply walked to see the puppy. aww! everyone screamed. @CAPS1 I hold her, and shes my dog, and lets name her also came in the conversation. Then, my dad glared at me, standing their quietly and handled me the dog. you are being so patient, you @CAPS1 be the one to hold her first! I was so proud of myself. I was patient and I was the one that got to hold her first. Being patient @CAPS1 pay off!" 12 12 24 3 3 3 3 3 3 3 3 +19054 7 I was patient when I was at my friends house in the winter shoveling a sleding slot so we can but water on it to make ice. When we where shoveling it was hard become we had to got through lots of snow just to got to a nice layer of snow to put lots of water on it. I am not patient gye when. We do something for hours to get it fully done. But I kept telling myself to just be patient. The only reason I was losing my patients was because it was getting dark and I has to go soon. But before I became unpatient we got it done and I was so happy we got the icy trail done. It was tough because we also had to wait for the water to turn into ice but that didnt bother me at all. Thats how I was patient that day to get a great and fun thing done. But I couldnt or we couldnt go on it that night because it was to late. I thats my story about patientce The @CAPS1 9 12 21 2 3 2 2 3 3 3 3 +19055 7 Patience is an important part of life and i learned that @DATE1 during hunting season. Most of the @DATE1 we sat and sot saw everything but deer. We were geting to the point where we didnt want to go anymore but we did anyways. As the is days went by as it get colder we started to see some does . My step dad @PERSON1 said we will shoot one on the @DATE2 if we dont see bucks. After a few days it was the @DATE2 and we were going to shoot a doe but we didnt see anything most of the @DATE2. When there was about @NUM1 minutes left of @DATE2 light the perfect buck walked into the field. 9 7 16 2 2 2 3 1 2 2 2 +19056 7 One day me my mom and my brother were driving in our car. We were going to a beach when sudnly our car wouldnt move. The battery had been run down and didnt work. My mom called a tow truck and said he wouldnt be here for two hours! Me and my brother complained all the time but my mom just sat quiet so whe the truck (@CAPS1 @CAPS2 @CAPS3) got to us ua ome. I was amazed by my moms patience. 8 8 16 2 2 2 2 2 2 2 2 +19057 7 "One time I was on my way to the bus stop, and I had got their @NUM1 minutes before the bus came so I sat their and I looked at my watch it was @NUM2 minutes past the time I was support to get picked up so I waited and waited so I boked at my watch again it was @NUM3 minutes pass the time I was support to be on the bus. So I was growing in nation but I had thought well buses are??? I sat back down and I wanted because I????was going to ??? and I grew very patient and after @NUM4 more minutes the bus had came, and it had let me on free because I was the only person who stayed at the stop? So when I got back home my mom asked me how did it in gow I said the bus was late @NUM5 minutes she said what did you do I said I waited and they let me on free she said that is what you get for being patient." 7 8 15 2 2 2 1 2 2 2 2 +19058 7 "I was waiting in line at @LOCATION1 adventure for a ride. I was becoming impatience just waiting their. But sudden ly I saw the line move. So then I calmed down and waited, when it was our turn to ride. I just reilized it was a hour we been waiting. Under standing in patience means you know why you have to stand their waiting. Because you cant push or shuvie your way to the front of the line. Tolerance means you cant do or get what ever you want unless you truble. You cant hit, cut, push, or shuve to the front of the line, you just have to wait." 8 8 16 2 2 2 2 2 2 2 2 +19059 7 "Being patient requires a lot of tolerance. For most people @CAPS6's hard to be patient but sometimes @CAPS6 is very important. A few weeks ago my neighbor really needed a break from her @NUM1 year old daughter @CAPS1. I gladly offered to babysit because I love being with her. I definitely didn't know @CAPS2 I was in for. She came over at around noon and we played for hours. But then she got cranky. I gave her a snack but that didn't help. She start crying so bud I loud no idea @CAPS2 to do. My mom came rushing in the room in panic mode."" @CAPS2's going on? Is everything ok in here"" she asked. I told her that everythings fine but @CAPS1 is just really cranky. My mom replied ""let's take her to the park she will have fun there!"" I agreed and off we went. If noticed @CAPS1 likes to do things herself. She insisted on getting in her car seat done, getting on the swings and putting together puzzles. That requires a ton of patience because she takes forever. I love watching @CAPS1 but if I didn't have patient @CAPS6 would be extremely difficult." 9 12 21 2 2 2 3 3 3 3 3 +19060 7 It takes patience when you are out hunting. After about @NUM1 deer seasons my patience paryed off. I was using a bow and ran @NUM2 point walked out. He was about @NUM3 yards from my stand and I called him closer. Then he was @NUM4 yards from my stand. I took the shot and he buckled and the @NUM5 minutes I waited to find him felt like in life time. Then I got out of my stand he ran about @NUM6 yards and droped. When I got to him. I was so excited because he wasn't won @NUM2 point he was a @NUM8 point back. Do remember use the regin blood head and be patient you could shoot the deer of a lifetime. 8 12 20 2 2 2 2 3 3 3 3 +19061 7 "This is a story about patience. Patience is needed in life. Sometimes when you get very frustrated, you need patience. One reason is if someone or something gets you mad, you need patience or you can get in trouble. For example if you get mad because of someone and you start a fight, youll get in huge trouble. Or if you try doing something and you cant, you need patience or you can break something and get in trouble. Another reason for patience is if you are working with someone or teaching someone, you need patience so you dont hurt their feelings if they cant do something right. They might get mad and not want to be with you. A third reason for patience is if you know someone who keeps getting you mad or keeps humiliating you, you need to have patience with him/her. Just ignore the person so you both dont get in trouble. If you wouldnt have patience, things could end drastically.so that is why you should have patience. Without patience you can get in trouble, lose a friend, and a lot of other things could go wrong. Thats why you need patience." 8 7 15 0 2 3 3 0 2 2 3 +19062 7 "I have a lot of patience for example one I really wanted to know @CAPS1 I made volleyball team, and I had patience, I did not complain. I believe having patience is very respectful toward yourself and others. Once I had a test and really wanted to know when we were going to receive it, but I had patience. Others did not have Patience they kept asking what we are going to get @CAPS1 both were complaining they did not have Patience. Another example is were going to go to @LOCATION1 on @DATE1 and we still had planned the day I did not have ruler here that time, and it made it worse leaving the patience the more thinking about it and that made it work .Men @CAPS1 sometimes more on and patient and sometimes not so much" 9 6 15 2 2 2 3 1 1 2 2 +19063 7 "I woke up at around @NUM1 am not feeling very good. I was at my friend @CAPS1 house. I tried to wait it out until he woke up, but I just couldnt wait so I woke her up. I told her I wanted to go home so I my mom, and in about @NUM2 my mom had come to pick me up. I told her that I thought I was ground ????????? I had to wait and wait until finally we got home it took about two hours until ??? threw up I was horrible ?????????? illegible" 11 9 20 3 3 2 3 2 2 2 3 +19064 7 My mom have patence with me and my brother with all the fighting going on people getting killed around here she dont like us going place with that going on we come home late 4 3 7 1 1 1 1 0 1 1 1 +19065 7 "There was a time that I didnt want to be patient but had to be. We as a family were going to go to @PERSON2 common for a holiday. On the way while we were on the highway, about @NUM1 yards ahead of us, two was nurchaged and bath pulled over. They were beside the? With anger. Soon after that the cops came. Keep in mind that we were waiting behind all this. The cops investigated everything and called in something. @NUM2 minutes later a truck came around the traffic jam and started fixing the road. I dont know why there was nothing to be fixed. Finally around and how later we were let past, and continued over ride to @PERSON1." 8 9 17 2 2 2 2 2 2 2 3 +19068 7 "Lots of people are good at being patient Im not so good at it. But when your traveling along distance, you have to learn how to be patient. Several times a year, my mom, my sister, sometimes my dad, and I drive up to my @LOCATION2s house. She lives about @NUM1 hours away, near @LOCATION1. My @LOCATION2 loves when family visits, so we dont mind taking one weekend every few months to go and see her. Ive had to have been there at least @NUM2 times in my life time. My mom works the night shift at a well known hardware store. Usually, she works @NUM3 @CAPS1 to @NUM4 @CAPS2. So when she gets off work we would pack up and leave. I always bring my @CAPS3 with me to keep me entertained. But most of the time I sleep. One time, I had drunk lots of pop and was very hyper. I was annoying my mom a lot. So, I put in my @CAPS3 with me to keep me entertained. But most of the time I sleep. One time, I had drank lots of pop and was very hyper. I was annoying my mom a lot. So, I put in my @CAPS3 and started acting like an idiot, singing along to the songs. Until, my @CAPS3 died. I felt my heart break a little. I couldnt fall asleep now. I was still hyper. I started listening to the radio, but all we could listen to was country. Since, we were going @CAPS7, we were traveling away from the control tower of the cool radio stations. Finally, we reached, The up @CAPS7 store where we always stop to get gas and food when we go to @LOCATION2s. I got @CAPS8 and even more pop. I gave a tiny evil laugh to myself as I handed the items to my mom. In the car, I finished my food and was bored once again. There was nothing to do in that car. I was angry at that point. I looked out the window and sighed. Soon enough, I had fallen asleep. I woke up to the sound of us pulling into the drive way, and my @LOCATION2 running to come greet us. Finally, we were there. I had survived yet another, ride to @LOCATION2s house. Then I remembered, we had to drive home too. Even though I make this trip several times a year, Im almost positive will never stop getting bored during the ride. Being patient, is not one of my favorite things to do." 12 12 24 3 3 3 3 3 3 3 3 +19069 7 "I want to go see a movie. There are no movies here at home I want to see. @CAPS1 dad can I go to the movies with someone? I asked. @CAPS2!. @CAPS3 answered. I looked up what movies were in and their was a pretty good selection. I pick the movie I wanted to see. Then I realize I need someone to go with me. I called up my friend @CAPS4 and asked her if she wanted to go see the movie I wanted to see. Ended up she wanted to see it to so, she said yes. After that I got something to eat and relaxed. All over a sudden, it time to leave. I was running behind. I ready really quickly and went and picked up @CAPS4. Unlike me she was calm and patient. In her place I wouldnt have been. Thats one of the reason why I like @CAPS4 as a friend." 10 8 18 2 2 3 3 2 2 2 2 +19070 7 "Do you have patients? I have very? Patient.I???will for anything for long. Where you have patient you have to wait on what you wait, or need." 3 5 8 0 1 1 1 0 1 2 2 +19071 7 "A time when patient was when I went to the glasses place, And I had to get approved to get glass. So the next day my grandma call and ask did @PERSON1 get approved and they said @CAPS1, my grandma asks how long do I have to wait and they said four weeks so a week went by and they called and said my glasses are done. So the next day we went and got them and that was a time I was patient." 8 8 16 2 2 2 2 2 2 2 2 +19072 7 "@CAPS1 I fell on my butt, again. I was trying to throw a front-full for cheer. A front-full is a big twisty thing in the air. I almost had it, I just couldnt land it. My gymnastics coach has been very patient with me, he has been working with me for about a month, on this one trick. I wanted to make him proud, he is like a brother to me. His name is @LOCATION1, I have known him since third grade. Whenever he sees me he says my baby! and gives me a hug and kiss on the forehead. @PERSON1 can do many amazing things, he has competed many times. He taught me my back handspring, the first trick I had. His patience helps me, but sometimes it doesnt. I am happy he is patient but sometimes he is too patient. Sometimes I would rather have him push me harder. Whenever I think he gets disappointed in me, I feel really bad. I always give it my all when I feel like that. It is an amazing feeling when you get it for him. @CAPS1 I feel on my but, again. Instead of the normal, enthusiastic try again, it was flat and bored. I went to the edge of the floor. My adrenaline was pulsing. I was going to get this! As I ran and jumped everything was good. I did the trick, and landed! For about a second anyway. My feet slipped and from under me, @PERSON1 came running to me smiling. He was proud of me, even though I didnt stick it. We kept working and eventually I got it! I was really happy to tell my cheer coach, but even happier that I did it for @PERSON1." 10 12 22 2 3 2 3 3 3 3 3 +19073 7 "Last @CAPS3 my mom ordered @CAPS1 @CAPS2 and I was patient for an entire @CAPS3. One @CAPS3, few months and four months and five months to be exsact. Why? Well, the game came out this @CAPS3, on @DATE1 and I had to wait for. How did I pass the time? Simple, dont think about the game, try not to talk about the game and only write when it comes out on daily calenders. Even though I beat the game exactly thirty two times on every difficulty without any help. (heh,heh!) I still have to wait for another month or so for callop duty:@CAPS4. So this, ah, stinks because now I cant stop thinking about it." 9 9 18 2 2 2 3 2 2 2 3 +19076 7 "Everyone should have patience. Living patience will help you because your going to have to be patient sometimes. Sometimes some people can be patience and some people can't be patient and which l am one of these people. Quite sometime l can be patient and can't be patient. Being patient was a hard thing for me to overcome. Well, l didn't! for once l was patience in my life. That time was when a lot of elderly people were coming through the door and finally hold the door for all of them. It wasn't easy because l had to be at a @CAPS1 appointment in about @NUM1 min and it was a lot of them. It took about almost @NUM2 min to wait for all at them to get through the door. But l still continued holding the door after holding the door I was late for my @CAPS2 dppointment all it was still so if a commin ?? holding the door" 9 8 17 2 2 2 3 2 2 2 2 +19077 7 "One time I was patient was last year when I was at a amusment park in @LOCATION2 callnt cedarpaint. I was slunting in line to get to get on a amazing lollermaster called the @CAPS1 @CAPS2 @CAPS3 force. It was a very tuff ride and delitedly ?? in the ?? but it was ten hours long. Standing in the hot unbearableline hurts ,horid, ussually when in @LOCATION1" 10 8 18 2 2 3 3 2 2 2 2 +19078 7 "When I went to get my new phone I had to be patient because my grandma likes to work with a spacific person. The man named @CAPS1 who my grandma and me were waiting for finally came to us so we went to the phase I wanted and he talking for long time, but my grandma said if I wasnt patient I wouldnt get my new phone that day. We make it up to the counter and hes showing thing about the phone, I want to get out of there so I could look at it myself. Me and my grandma finally leave and I have my new phone with and I like it. Name one time you were patient and what you were patient for!" 8 9 17 2 2 2 2 2 2 2 3 +19079 7 "A time when I was patient was at the doctors. The doctor took to long and I was patient and I was patient for the doctor to come back to the room. I was a @DATE1 @TIME1 and my mom and I go to the doctors because I had an apontment. I got their and the doctor call me and took me to a room and like @NUM1 mins later he came back. All of that time we were waiting me and my mom were talking things. I like what is takeing so long and my mom said I dont know but just wait. Then the doctor comes and starts asking me quatons like what I eat, and what I do for exersi and say. I dont know. Then after they stepsesling the quatons they say sorry for keeping you patient and give my mom some papers then we go down stairs and I had to go to a lab to take my blood. Their was a lot of people and I was patient then they call me down and take my blood that was a time when I was patient with my mom at the doctors." 10 7 17 3 3 2 2 2 2 1 2 +19080 7 "Well Im patient and Im in the middle patience is all about waiting or juss sitting with someon you dont like. One time when I was little I was not very patient. My mom wants say had on a couple of seconds and I would say @NUM1. But when I got older I was more patient. Like, I was patient with teachers and peers and parents but there are times that I still have a unpatient side, I will try not to get unpatient but sometimes it juss happens. I love having someone to talk to but some times I cant talk to them because Im unpatient. My friends are really good about it first though some time they dont my mom is really patient but my dad is not so maybe get it from him I dont really talk to my dad though although Im unpatient Im really out going and funny. I have a lot of friends because Im outgoing sometimes I get in trouble because Im outgoing and that has a blown side. I love talking and having fun maybe if I was more patient it would be more fun. I working on my patience. I think I can do much better than what I have been doing and maybe if I get more patient I will get better in school but I know I will try my hardest in the patience defortment. In conclusion I need more patience but patiuence is a thing I can defiatly work on." 5 5 10 0 1 2 2 0 1 2 2 +19081 7 "Patience. Wow, you want critism; are you sure? Well since you asked for it, it looks like Im have to give it to you. Patience is @CAPS2 my cousins, uncles, aunties and even you and I need (@CAPS1 in these days and times. We about need it every day.) @CAPS2 does the key word patience mean? Patience means that you are understanding and tolerant. Also it means you experience difficulties without complaining. Or in my own words, long suffering and also are able to wait until @CAPS2 you want is done. Being patient is something that I am not all the time but, need to be. Like my daddy say to me all the time you are not going to always get or receive everything you want to so youll have to learn patience. That is one word I do not like @CAPS1 when its something I really want.so that is my story about patience explained my way." 5 4 9 0 1 2 2 0 1 1 2 +19082 7 "A time I have to have patience some times is in class I have to have patience. I dont have a lot of patiences. I have to have patiences in @NUM1 block @NUM1 block is moth. We as the students have @PERSON1. @PERSON2 talks all the time. He talks till luch wich is about for a half an hour. So I have to wait for a while till he gives us work. That how I have patiences. To conclude that when I have to have patience in class. Though I dont have a lot of patience at all, but in class I do." 7 5 12 2 1 2 2 0 2 1 2 +19083 7 "@CAPS1 were gonna be late! yelled my baby cousin @PERSON1 from across the room. She had her big, blue snowcoat and cute red boots on. She began to jump around and it made me laugh easily. @CAPS1 were gonna be late! yelled my baby cousin @PERSON1 from across the room. She had her big, blue snowcoat and cute red boots on. She began to jump around and it made me laugh easily.You see, I was going on a skiing trip with my parmls, my cousin @PERSON1, and her parents. I was estaric. My parents were spending a lot of time talking to @PERSON1s parents before we left, so @PERSON1 was a little whiny about not going right away. I tried to ???? @PERSON1, do you want to play @CAPS3? I asked safely, tapping her shoulder. When I said that, her eyes seamed to grow twice their size. @CAPS4! @CAPS4! @CAPS4! Madison yeah! I wanna play, I wanna play! @PERSON1 yelled??? . Though she made it sound like ??? I smilled and we began tro play. She would guess??? I would let her win. ??? was so ??? and I think I made her more patoient to leave by helping her play a game.Finally my parents walked outside and we began our skitrip. Patience had payed off." 12 8 20 3 3 3 3 2 2 2 2 +19084 7 "One time I was patient when my little brother was taking a shower and I had to go to the bathroom. So I waited and of cource he locked the door so I tried to pick it with a toothpick, it didnt work. Then I told my dad and he said be a man you can hold it in so that didnt work either so I was just about to take the door off the hinges and then he walked right out and smiled at me so then I went in the bathroom and it was soaked in water so I yelled at him and thats wen I was patient." 7 8 15 2 2 2 1 2 2 2 2 +19085 7 "Im always having to be patient. Its because I have an older brother that doesnt do what he is told. Lets say my dad tells him to clean the bath room, well it takes him ten minuts to get up, then I have to go when hes cleaning and he wont let me. So Im thats one of the reasons. Another is my older sister shes always on the phone so I barely ever get to use it. So I wait until my parents get home so they yell at he to get off, thats why Im very patient." 5 5 10 1 1 1 2 0 1 2 2 +19086 7 "It was @DATE1 and I could see the snow pouring down as I drank hot chocolate. I saw our @DATE1 tree is was full of presents, I couldnt wait till I could open them. Ive been wanting a wii since @DATE1 but I never got one. But that didnt stop me from hoping. So I wish I got one this year. After a while my parents said @CAPS2 can open our gifts. @CAPS1 I screamed, I quickly tore the paper off the presents and saw that I got a makeup set, a digital camera, and many more. But not a wii. I was frustrated. So I asked my mom if @CAPS2 could buy the wii tomorrow. But she replied @CAPS2 cant afford it. @CAPS2 will buy it when @CAPS2 get enough money. Well I was very patient so I guess I could wait. As @CAPS2 all enjoyed our @DATE1 @CAPS2 watched tv. Then after a week or so my parents got their paycheck, so my mom said @CAPS2 could go out and buy the wii. @CAPS3 thank you mom I screamed. When @CAPS2 arrived at the?? I got the wii and it ??, which was @MONEY1. I couldnt believe it, my patient finally paid off. Now I got my new wii, and @CAPS4 enjoying every second of it." 12 12 24 3 3 3 3 3 3 3 3 +19087 7 "A lot of people in the world are patient. However I think that my @CAPS1 is the most patient person in the world. I think this because she was born in the dimension she had to be patient for food, money, and water. She couldnt just go out and buy food at the grocer store. She had to be patient to go and make her own food. If she wanted popcorn she would get some corn shells then put them into a pan then start a fire and who knows how long that could take. Then finally wait for the shells to pop. That is war hinder then putting a bag in the mircowave and pushing a button. That is how she is also fooled with ??? even with me. That is why I think she is the most patient person in the world." 10 9 19 3 2 3 2 2 2 2 3 +19089 7 "Being patient is one of the many important things in life that we have to deal with if you are impatient, and then people will say that you are impatient, and needs to calm down. Being patient also means that you are polite person and that you will not complain about anything, also that whatever happens, you will be understanding and you will wait. Let`s say somebody was in a line to get food. You would have to wait your turn in order to get your food while the other person is getting his/her food. That is being an understanding and polite person and sometimes even a role model for litter children/ kids. You are setting an example and being considerate. These are many reasons on why being patient takes understanding, and being considerate." 7 5 12 0 2 2 3 0 1 2 2 +19090 7 "Me and my brother have been asking for a dog for a while, every month mom and dad said were going to get one every month ve dog @CAPS1 a fish. Mom would look online for dogs and dad would look online for dogs and dad would look trought the paper. Colin and I told them dayliey well feed it walk it give it water the month of my birthday like @NUM1 days befor the @NUM2 they said that we were getting a dog! tommorrow! It was at @NUM1:00 at night so we couldent fall asleep because we were so happy! the @CAPS2 morning around @NUM4 we got in the car mom said the place was in howell so it couldent be that far. Colin and were so happy we got to the house and there were @NUM5 dogs small fluffy dogs one white @NUM6 black I told my mom I wanted to geher @CAPS3 told me it was up to dad dad loved he so that means @CAPS4. We named her vary patient. and our patiens wore of it was well worthit." 7 10 17 2 2 2 1 3 3 2 2 +19091 7 "An warrior named @PERSON1 was waiting patiently for his sword, he was waiting for an hour. He just sat quietly while every one was yelling. He was happy. All he could think of was his @CAPS1. He loved swords so much. He had @NUM1 as swords. So he was patiently to get his sword. Then he battled ninjas. He went after the ninjas because they to a boy named @PERSON2. Then he turned them to dust. The sword was made of magic. Then the warrior and @PERSON2 went to school. The warrior was the teacher and @PERSON2 was the student." 8 5 13 2 2 2 2 1 1 1 2 +19092 7 My story of when I was patient was when me and my family were going to the monster jam. It was one of the most exciting things of my life. But the trip there was almost @NUM1! then it took half an hour to find a place to park. Then eleast @NUM2 minutes for my moms friends to show up. And finally an hour in line. Last but not leas @NUM3 minutes to find our seat! thank you for listening to my report about patience and sitting through it! 7 8 15 2 2 1 2 2 2 2 2 +19093 7 "There was a time when I really wanted to go somewhere, and my mom said @CAPS1 not tonight, because it was a school night. So I said okay I know its a school night, @CAPS2 at least I said it with maners and loyalty! and thats a time I when I was loyalty to someone and here is a time when I stuck up for someone, well my bestfriend was in a fight with this other girl and it was in person and I went right up to my @CAPS3 friends enimey and said why dont you just go home and leave my friend alone and she backtalked me then finally we started ignoring her then she left, thats a time when a stuck up for my bestfriend while she was in a fight." 6 6 12 1 1 2 2 1 1 2 2 +19094 7 "When I had to go to the doctor. I had thought that I would be in front. It was over @NUM1 people there in line when we got there more people was still coming. I had to get my shots. So we had to wait patiently. But my mom could not wait because it was so many people there in front of use. So I fell asleep. She was still walking around. So wen I woke up five people had already gone by. She still could not be patient, still walking around making me nervous then another @NUM2 went by its going really really slow. Then she finally cooled down. She was so patient because they said they was going to put her out. I have never seen her so patient it was no believable." 9 8 17 2 2 2 3 2 2 2 2 +19095 7 "When I was in the sub line and in @NUM1 grade I waited patiently. If you cut infront of me, I would not care. Than when I waited for @NUM2 minutes and the line was still big. My patience meter went down after @NUM3 minutes I finally got to get a sub. I waited @NUM4 minutes for a sub that is like waiting to get pizza. Once I got to the check-out center I had no money in my account, so I was really angry, angry as in you not being paid any money for a year." 7 8 15 2 2 1 2 2 2 2 2 +19096 7 "One time I was patient was when my brother broke his arm. I was a fine day and was playing outside on the play ground, during lunch resses. He said that he was on the monkey bars. His hands got all sweaty and he slipped. Eric fell on his arm. He screamed. The resses ladies brought him to the office and called my parents. Then my parents called my school to tell them they were picking me up. They picked me up and then got my bother. We drove to the hospital and they did x-rays. It took forever. I sat there quietly for @NUM1 hours! My parents told me that they appretiated now I was very patient. That the time I was patient." 11 9 20 3 3 2 3 2 2 2 3 +19097 7 My story in own way about being patience is when there is like @NUM1 people in front of a line a ceter point. You have to be patient in the lines because other were before you so you have to wait your turn in line before you go because thats called cutting and you will get kicked out of places if u do that you dont want that to happen because like say that you want something to eat you have wait your turn in line so you dont get kick out of the rides you have to wait your turn so you dont get the secrety on you. 4 4 8 0 1 1 2 1 1 1 1 +19098 7 "A time when I was patient was fishing with my grandpa up north and we were siting out there all day and we had to have trolled up and down the chanel at least @NUM1 times. And each time we got bites but we never caught any fish. We tried our usal routine but that wasnt working out so well, so I decided to change it up a bit. I gave my grandpa the idea of turning the boat around and heading towda shigle bay. He agred but the only problem was there were a lot of rocks were we were going and thats the last thing we need is for the prop to get broken off. But we took our chances and modered or we to were were were I direted him to go and as soon as we enter the bag bam! We see the pale bend down so far it was hard to believe it was a fish so I got the net and my grandpa grabed the pole and started to real we evently go it to the surface and it was a @NUM2 wallege we smiled and said looks like were having fish to night, this is the story of when my patients were being tested by fish and then I caught the biggest one in the lake!" 10 10 20 3 3 2 2 3 3 3 1 +19099 7 "@CAPS1 on!I said.we were in the waiting room of my dads doctors office. My dad goes to a special doctor.It was very boring.There also was a maninge sale going on so my sister and.I went and hoked @CAPS3 that while my dad read a book.We were @CAPS3 the doctors for all most all morning.we were there for @CAPS2! That was the meals bringed day of my life.The doctor were very slow and they were dumbn I told my dad was he patient.These also was a ??? sale @CAPS3 then doctors ??? that we want in,@CAPS3 the rummye sale they had dishes,food,jewrey and diaring.my sideroad I got a ??? Krispey treat.my sider also got a hol.Her hat was cool.I also got a ??? and I gl ??? blue, purple, pink and sarkly. fimlly they called my dad. My dad went into a patient room-when my dad @CAPS1 out he said and he was healthy .He had to wait until they got his prompitiously ready to lake and get filled . They gave him his prescription and we left.In conclusion we should be patient with people .Patient is kindness .I am always patient with people .I hope you are also patient with people ." 9 11 20 2 2 2 3 3 3 2 3 +19100 7 "One day in the beginning of foll, @PERSON1 was watching @CAPS1.V. As she was watching, a commercial comes on and says that the final movie, of a very popular series, is coming to theaters tomorrow night. The next day of school, everyone was excited. They all couldn@CAPS1 wait to see the movie that night. Finally the time come to go get the tickets. When @PERSON1 got there, a huge line was already formed. @PERSON1 was waiting, then she realized her best friend, @PERSON2, was in front of her. Then the rich popular girl showed up her lime. Her name was @CAPS2. She walked up to the ticket booth and cut everyone in line. She tried to pay extra money for a better seat and because she cut people in line. The ticket seller said that she would just have to get in line like everybody else. That made @CAPS2 mad, and because she didn@CAPS1 get in line when she got there, more people got in line. But all that time @PERSON1 and @PERSON2 were talking. Since they were patient, time flew by and the next thing they knew they were buying tickets. But @CAPS2 thought it took forever to get her tickets cause she was not patient." 12 9 21 3 3 3 3 2 2 2 3 +19101 7 "I was patient when I went to cediar point. I had to wait in line along tine for ??? for priencse ther was a lot of people @CAPS1 the longest word ??? drogster. I had almost anhour for a ride that @NUM1, teen ??? that is the ???." 5 6 11 1 1 1 2 1 2 1 2 +19102 7 One day my family and I all went to @CAPS1 point. I was so excited. When we arrived I rushed out the car. We got our ticket and a map then we decided what ride we wanted to go on. We were gonna go on the @CAPS2 dragon there was such a long line. It felt like wasnt even moving. I was as patient as can be. I was so excited to try this ride the family finaly moved up bup bup finally!!! We were next. We all got in our seats and made sure we were backled in nice and tight. The roller coaster was about a couple minutes long it was worth the wait. That was the time is was patient. 9 8 17 3 3 1 2 2 2 2 2 +19103 7 "One @DATE1 @TIME1 I was at the locked @CAPS1 creem store frastys The line was huge. There had to @CAPS2 over @NUM1 people there and I was in the @CAPS3 of the line siting there waiting. Thinking what I am going to get. One by one @CAPS4 took the orders. Until one short old lady hadnt decided what she was going to get yet I sat and waited as she blaberd on ashing the prices if it was suger free, what toppings it had on it, @CAPS5, @CAPS5, @CAPS5. Finaly she orderd. I am at the front of the line and all of a sudden a group of people come up. I guess @CAPS4 were holding there place in line. There had to @CAPS2 @NUM2 of them yelling at the person @CAPS8 the glass dire a roches ship going off. Finaly the order was done and I was up @CAPS9 @CAPS10 I could talk this sweet old lady asked can I cut in front of you deer? I had to say yes it wouldnt @CAPS2 nice if I didt. that is my story about Being patient." 10 11 21 3 3 2 2 3 3 2 3 +19104 7 "My brother matt has never been the patient type of guy. He always gets very frustrated whenever something or someone takes too long. We always have to have patience with matt but that all changed one day. Me, my mom, my nephew, matt and his girlfriend decided to go get something to eat. While we were there and waiting in line, I made a bet with matts girlfriend. The bet was however many impatient comments he said, she would owe me two dollars for each one. If he did not say any impatient comments I would owe her two dollars. After the waitress took our orders and left we all started talking. The adults talked about work and other things, while me and @PERSON1, my nephew talked about school and other things as well. That took up atleast a couple of minutes. The lost couple of minutes we watched the football game that was going on. During those couple of minutes, including the couple minutes when we were talking I did not hear matt have one impatient comment. I was really impressed. I was upset that I owed matts girlfriend two dollars." 12 9 21 3 3 3 3 2 2 2 3 +19105 7 "One time when I was patient, I went hunting with my mom. You have to have a lot of patient to do that. When my mom and I were siting in the deer blind she was getting her crossbow ready for when a deer came. But we were siting there for about @NUM1 hours. I was about to lose my patients but then some deer came in, a mother deer and her fawn. My mom didnt want to shoot the mother or the fawn, because then the fawn would be all alone. So we waited for more deer to come in but none did. But I still had my patience in me. when it started to get cold and dark out we thought no more deer were going to come in so we just went home and plus my mom was starting to lose patient a little bit. But thats the time I was patient for a little while." 9 8 17 2 2 2 3 2 2 2 2 +19106 7 "When I think about patience, I usually think of my mom, and how tolerant and understanding she is. Even when she has explained something to me about @NUM1 times and I still dont understand, she helps me without complaining. A good example of this is when she and my dad taught me how to ride a bike. @CAPS1 was the @DATE1 time and I was about five years old. My dad was at work and my mom and I were bored, so she went into the garage and pulled out my new bike. My dad had told me that you needed turn the handlebars before you crashed, but I kept forgetting and falling down. Devestated that @CAPS1 wasnt easy, I gave up a little bit after. Now, though, my mom gently persuaded me to try again. Holding on to the bike, she told me to pedal. She let go, and yelled, turn! Turn! but @CAPS1 was no use. I turned the wrong way and toppled over on the grass. @CAPS1s okay. You almost had @CAPS1! mom said rushing over to me. Putting on a brave face, I tried again. Over and over, I tried to ride my bike. Not once getting mad at me, mom helped me up. On my one last try before @CAPS1 was time to go back in the house, my mom let go and I rode all by myself, around the corner and back! When I got back, we both did little dances, my mom congratulated me, and we called my dad to brag about my new accomplishment. To me, my mom showed patience that day. She didnt let me give up and she never complained. Overall, my mom is a perfect example of patience, and because of that, she taught me how to ride a bike!" 12 12 24 3 3 3 3 3 3 3 3 +19107 7 You got try to be patient with homework. One time when I was doing my homework I started to be inpatient. Because I was having trouble. But then my dad said he was going to help me @CAPS1 he told me to be patient. @CAPS1 I sat there and sat. And stayed patient as l long as I could then he finely helped me. I usaly get unpatient when it comes to homework or something like that. You @CAPS2 need to try your hardest to be patient. 7 5 12 1 2 2 2 1 1 1 2 +19108 7 "Everyone has been patient at one time of their. I know I have. A year my brother and I had a projet to do. That we both needed a computer to finish. I let my brother go first. Being that there is one computer in the house I have to wait. After hours I checked to see if my brother was close to being done. He was not, but I had remembered at that moment that he was a slow typer. He finished the next day. In had no problem with it because I had lots of time to type my paper. This is the time I was patient." 9 8 17 2 3 2 2 2 2 2 2 +19109 7 "One time when I was patient was when I went to camp. I had to wait @NUM1 hours till we got to camp. I mostly slept and ate, we also watched movies on @PERSON1 @CAPS1 player. We finally got their, but I had to wait some more for registration and I had to wait till the rain stopped so I could get my stuff in our cabin. Next we waited for chapel to start, but there was more to do there like tennis, volleyball, or sit by the lunch room and talk to friend, or last read in your cabin. When the bell rang we all went into the program center and waited for chapel to end. We had a lot of patients by the end of the week. Ohh at lunch we had to wait for seconds because their food was really good. Finally, I had to wait @NUM1 hours on our way back home. This is a time I had patience. (A whole lot of it)." 9 10 19 2 2 2 3 2 3 2 3 +19110 7 "One day on earth an alien race came. They were called @CAPS1. They wanted these thing called the @ORGANIZATION2 balls which would summon a @ORGANIZATION2 & it would grant you a wish. @NUM1 strong fighters, @CAPS2, @ORGANIZATION1 had to stop them. But they were to strong. @ORGANIZATION1 was already dead then trained with king @CAPS3 but the others were waiting for @ORGANIZATION1. Finally he came & beat the crud out of them. The earth was saved." 8 7 15 2 2 2 2 2 2 2 1 +19111 7 One day after school I was told I had a doctors apointment so I say when and my mom said @NUM1 and I had a dance after school that started at @NUM2 so I say @CAPS1 I have a dacen a @NUM2 and she said bla bla bla bla bla bla bla bla! at lest that is what I herd @CAPS1 I mite of been rong. @CAPS1 mom its my first dance I said with anger @CAPS1 she asked me to get in the car so time whent and we wher in the waiting room for an hour Ive all ready missed hafe the dance @CAPS1 I was queit them we finnaly were in the officec and and gone home to get ready for the dance and had a blast. 8 6 14 2 2 2 2 1 2 2 1 +19112 7 "Patience you should have patience to whatever it cames to. If you dont have patience here are somethings that can happen, once my sisters firend was wanting to cross the rode and she didnt want to wait so she didnt look both ways and a car was caming and she ran out in frot of it and got hit by the car. She had cuts and rode burn all over she was took to the hispoteli where me and my sister and mom went to go see her the day of the acciecd. She was all cut up and couldnt really walk. She had so much cuts that someone had to help her walk so later maybe a mouth after she got hit she went the docthers because she kept getting really bad head acts. They said she had something called coma atices like she had a lilttlel coma. So thats what happens when you dont have patience even over something so samll like crossing the road you have to patience for that to. But if you have patience good things like a story like this once my mom told me to wait in the car and have the windows up and have the air on. So I did I was getting really bored and I was about to get out but then I seen to guys trying to open a car window. So I garbed my cell phone and went to the back and sat down on the gorond and called @NUM1. They were on the way they were in the drive way. Now they got out of there cars and ran over to the guys and get them, they soon found out that the @NUM2 guys were guys they been looking for so I got a money awared for catching them. The money awared was @NUM3 dollars. So my patience of not geting out of the car got me money. Saved my live because they would have killed me if they seen me, and helped find bad guys. So something patience can save lifes and help find bad guys you never know what you could get from having patiences, so thats my story about have patienes and what they can gave you. So you should always have patiences." 5 6 11 1 1 2 1 1 1 2 2 +19113 7 "One person I know was very patient one time I was associating with them. That one person was waiting for a call or e-mail that was promised to happen. The call or e-mail was about a basketball team that was very dominant in the state. The person who was calling or e-mailing the person I was with was coach of that team. He saw the person I was with, which was my brother, play in a tournament downstate in @LOCATION1. The coach was there to recruit players for his @CAPS1 team. He watched one of my brother's game and approached him after the game. They talked about the team and he told him that he would be a great asset to the team. My brother said he would love to play for him and so he gave the coach our phone number and his e-mail address. The coach said he would contact him in @NUM1 days maximum. On our drive home my brother kept checking his e-mail because it took us @NUM1 days to get home. The @CAPS2 day the coach never called or e-mailed him. The second day still nothing. My brother was very patient for it to come and he never stressed out over it not coming. The third day on our trip back home my brother was very understanding when my mother told him that it might not happen. So we get home at @NUM3 o'clock and I am starting to doubt that my brother brother made the team. Then the phone rings. My brother talked for while then hung up and said he made the team. That is one time my brother was patient." 9 12 21 2 2 2 3 3 3 3 3 +19114 7 "A wize man once said patience is a is a vertue. Lets find out if that wize man is right. Im going back @DATE1 years. I had just talked to my parents I said. @CAPS1, call you by me this lego for @CAPS2? @CAPS3, @CAPS5 said then @CAPS5 asked me to move. I kindly moved out of her way and @CAPS5 ordered it. It was @DATE1 when I asked her @CAPS1 do you know my lego is coming? @CAPS5 said it should be here before or after @CAPS2. I replied with an @CAPS7.K.. it was the week before @CAPS2 I had cheaked the mail. no package I thought to my self. So I checked the porch nothing. A week after @CAPS2 the mail man came. On top a package I could see. It turns out the wize man was right patience is a vertue. This is the time I was patient. I also learned its better to wait for some things." 11 9 20 2 3 3 3 2 2 2 3 +19116 7 "One day my mom and dad were looking up vacations on the internet. They came across a vacation to @LOCATION1 a place just outside traverse city. We decided to go for @NUM1 days it was going to start next month i was excited to go but i still had enough patience to wait and wait till the people called us to tell us that we could go (expecting our reservation) to @LOCATION1. When the day finally came i was really excited. We got everything packed and ready to go even the dogs were ready to go. After we put the dogs in we started to go. We had to have the dogs go to my grandmas because they had no were else to go,so we dropped them of and started heading to @LOCATION1 plus it was four hour drive. When we were about an hour in the drive my sister got really impa tiant and kept asking are we there yet but i just sat there and looked out the window. Then we got to a pitstop and we whent and got our water and drinks. My mom and dad wanted coffee so then tried to get some but it didnt work so we had to stay there for like @NUM2 minutes and they finally got some coffee and me and mironda were just sitting there the whole time. Then we were patiant the whole ride to @LOCATION1." 9 8 17 2 2 2 3 2 2 2 2 +19117 7 "Can you @CAPS1 a time in your life when you had to wait for something for a very long time. I had to wait for a long time. Do you think you knew what it is? it was @CAPS2 eve. I was only five at the time. So I woke upon @CAPS2 eve couldnt wait till tomorrow. I told my self that all day. I went outside to try and waste some time but that didnt help because it was freezing out side. So had to come right back in the house. I didnt have nothing to do. So I just kept wait, then @CAPS4 my brother got up and I just played with him the whole day till we had to go to sleep. Then it was time to go to bed and I ran straight up to my bed room and got right to bed and woke up the next morning and I was so happy that I didnt had to wait anymore. I had to wait for ever I was so happy that day but know @CAPS5 thirteen and I real dont care anymore but I would still love to hear about your step to someday." 8 8 16 2 2 2 2 2 2 2 2 +19118 7 "I was at @ORGANIZATION1, waiting in line for a ride that I really wanted to go on I was a huge line! It was like a big line of domminus. I do not like waiting in big lines. Like most kids, I dont wine and fuss about waiting. In my head Im thinking when I whould get to go on the ride. I dont scream and shout though, I just try to stand still and wait. The second go on. tic tac tic tac. Just waiting for the line to get shorter and smaller. Minutes later it was finnaly my turn to go on the rollercoaster I was so exited! I went on the ride, it was fantastic! The only thing is that it was only a minute! that line that I had to wait in was like an hour. Well on well. That line was worth it." 11 9 20 2 3 3 3 2 2 2 3 +19119 7 On @DATE1 me and my two friends were all laughing out but then I had rememberd that in @NUM1 min I had to eat dinner. So I walked inside and my friends were being so patient. They didnt leave me and so I hurried as fast as I could so I didnt keep them waiting. After I got done we went back up to the park and swang on the swing. Then we walked back to my home because they had to leave and go home. That was my @DATE1. It was a fun one. 8 6 14 2 2 2 2 1 2 1 2 +19120 7 "@CAPS4 @CAPS1 lives in ohio. He goes to @CAPS2 middle school and day after school he was walking home when @CAPS3 his friend asked him to wait in the parking lot for him so that he could call his mother and ask if @CAPS4 could stay at his house for the weekend. @CAPS4 had to wait an entire half hour while @CAPS3 talked and argued with his mother. But after @CAPS3 finished talking thanked @CAPS4 for being patient and they all spent the weekend at @CAPS8 house." 9 7 16 2 2 2 3 1 2 2 2 +19122 7 One time i was pacent it was the time I wanted a I-pod tuch. My grandma was bidding on a I-pod tuch. It took a long time to get it but we won. It took a long time for them to ship it but we got it. In the end it all paid off. 0 5 5 0 0 0 0 1 1 1 2 +19123 7 "If you were someone sitting next to me on a bus on the way to @LOCATION2, you would call me patient. Although if you were my best friend and it was the day before you took me to @LOCATION1s @CAPS1, thats a different story. Ill tell it to you anyway though. My best friend @PERSON1 and I had been talking on the phone everyday for at least an hour each day for about two weeks straight. Finally, @PERSON1 asked me over. And if I wanted to go to @LOCATION1s @CAPS1 the next @DATE1! Of course. I said yes, and soon enough, it was planned that I would spend the @TIME2 on @DATE2 and leave @DATE1 for @CAPS3 with her. The next few days were a bore, just sitting at home and babysitting my brothers. It seemed a millennium later that @DATE3 @TIME1 came. @PERSON1 called and said that I probably wouldnt be able to spend the @TIME2, but we were still planned to leave for @CAPS3 at @NUM1:ooam on @DATE1. I said I was okay with it, but I was still uber bummed. @DATE2 came and it was complete torture. I babysat my brothers, but there was nothing to keep any of us occupied. We tried running around the house a few times, but that only took about ten minutes. We then decided it was time for a movie. We watched @CAPS5 to burn at least two hours of spare time. We had lunch and after that, things went by super quick to make up for how slow it had been passing. I talked to kenzie for at least two hours, and then my parents came home and everything went about as usual. Next it was time for bed. I tossed and turned in my sheets, but couldnt get to sleep. Kenzie ended up calling me at @NUM2 just to tell me that she was eating a piece of pizza, which didnt help at all. Finally, I fell into a deep that was needed. The next morning, I got dressed, packed my bags and was ready to go. Kenzie, her mom and her brothers arrived and we were finally off to a sweet @DATE4 day of @LOCATION1s @CAPS1. The ride there seemed five minutes long, but that was a good thing. We were there! We went on tons of sweet rides and got @CAPS7 @CAPS8 for dessert. I was both patient and impatient at parts. Now you know that for me, if Im very impatient, but if its somethings smaller, I can wait." 11 12 23 3 3 2 3 3 3 3 3 +19124 7 I was patient when I was in school when my teacher left the room. The kids started going crazy and they were standing on tables. Throwing paper @ORGANIZATION1 planes and paper in the @ORGANIZATION1. The kids were screaming and I was just sitting there waching as the teacher comes in and sees what is happening. I am just sitting there as I am amazd how stuiped they are acting. Then I am waching them get in trouble and get calls home. I am thinking good thing I was not part of it because I might get kicked from the cross country team. The kids are getting suspened for lunch. I hope that this never happens to me again because I was just a witness thet can get the kids in even more troubley. 8 9 17 2 2 2 2 2 2 2 3 +19125 7 "A time when I was patient is last year when my dad took me hunting. It all began when we woke up at @NUM1 in the morning got dressed and left to go get in are deer blind. As soon as we got there we heard a lot of gun shots. From shot guns, rifles and even black powder. We waited all day until it was dark again then we packed up and we left. Me and my dad didnt see anything that whole day. That is a story about how I am patient." 8 9 17 2 2 2 2 2 2 2 3 +19126 7 "One day I was going hunting and I was patiently waiting for my dad to get his clothes on. When he finally did we headed out to the woods. After that we got in a blind, as we patiently waited for fiftyen minutes. Just then a deer came in. It was a perfect doe. Finally the deer gets in front of the blind about @NUM1 or @CAPS1 and my dad quietly says ""wait for it to turn broadside."" @CAPS1 I waited until it turn and shoot the doe. Finally we get out and find my arrow but never found the deer and I had to have patient for next years hunt." 8 8 16 2 2 2 2 2 2 2 2 +19127 7 "One time I wanted this awesome @CAPS1 @CAPS2 @CAPS3 it looked great so I asked my mom and she said we and it tommow so I waited and waited. I was very patient but I started to get alittle irritated cause it was taking so long. I was kind of getting impateint, I didnt complain though but I still want that @CAPS3 to this day im just have to be patient." 4 8 12 1 1 1 1 2 2 2 2 +19129 7 "@CAPS1 brother was patient ones, @CAPS1 brother was patient by understanding a tolerant. He understand a toleran by sinting down waiting. He was waiting in the doctor to get steches. I was being patient by wainging with him. We always be patient when we have to wait for something, another time I was being patient is when I always get @CAPS1 hair cut or hair line. I had to wait in a long ling to get @CAPS1 hair cut. That is some of the times I had to be patient." 3 5 8 0 1 1 1 1 1 1 2 +19130 7 One day I had a doctors appointment and I had to check- in at the desk and after I did that I had to sit and be patient till the doctors called me back to get my check up done and I to wait till the real doctor came to see how I was feeling and to see if I was eating good to and then I had to go to the check out desk to see what was my next check up was and then I had to get my pills refilled and then I went home. 6 7 13 2 2 1 1 2 2 2 1 +19131 7 One time I was pacient was when my mum said that she would buy me a @ORGANIZATION1 @CAPS1 I waited and waited and waited and wated for her but I knew I had to be pacient because she was going through hard times. 4 4 8 1 1 1 1 1 1 1 1 +19132 7 These storys is about times when I was patient. This is one story so one time my guardaner was puting my winter clothers away this @DATE1 and I told her like these my good clothes and I was like there not really winter clothes she said she know and she said im just puting them up because she said I had to many shrits that was same clolor and I was trying talk back then I was like o I see what you saying because I couldent fit every thing in my dresser so I patient and help her put my clothes up. Patient mean can you do something somebody ask you or can you do the right thing to people. Or can you help somebody when you think they help in something. 5 8 13 2 1 1 1 2 2 2 2 +19134 7 Once upon a time I was at the doctor and it was very crowned it. So well my mom went to go give the boy the information about me I was sitting down by this lady and her daughter was crying when my mom came back and the doctors was calling names I was trying to be patient so I got up went and the kids play area and started to play. A couple minutes later the doctors finally call my name so we got there at @NUM1 the doctors call me at @NUM2 pm. So they gave me a shot sat and the room for @NUM3 minutes they gave me some modsers and told me to go get the parstarch and to get problem want me to go to @CAPS1/ pharmacy and thats the time I was being patient. 4 7 11 1 1 1 1 2 1 2 2 +19135 7 I was being pationt when I was waiting for my own phone so I cam text my friends and call them and more. I was also waiting for to get my own snowmoble licens so I can ride my own snowmible on the troils. Know matter what you are always be patient. 4 5 9 1 1 1 1 1 1 1 2 +19136 7 "Playing hockey is importint to me. I am a goaltender playing for farmington hills. Playing goal takes skill having thick skin and most impotantly being patient. Every game day @CAPS2 dad tells me be cool, calm and colected the three @CAPS1s (as I call it). I step on the ice and wait patiently for the puck to come @CAPS2 way. Once it does I am in action. The pirod ends and I wait patiently. The second pirod is here I stand waiting the drop of the puck hopeing we scare. @CAPS3!!! @CAPS3!!! @NUM1 to @NUM2 @CAPS2 patientness helped its @NUM1 to @NUM2! The third pirod comes @CAPS3!! Big @CAPS4 by @ORGANIZATION1 (thats me)! @CAPS3!! Goooaaalll!! @NUM5 to @NUM2. thats it the game is over! I wated patiently to get that win aganst the @LOCATION1. After the game we all go and party at @CAPS5 @CAPS6s house to celebrate a big win. And we all had a really great time doing it too." 9 10 19 2 2 3 2 2 3 3 2 +19137 7 "This is a story about a time when I was being patient waiting for a plain in an airport. We were on ar way to @LOCATION1 and we had to take two plains to get there. When we got off the plain to the second airport we went to go see what time our second flights comes in. when we found out the time for the second flight we were shocked because we had to wait six hours for it to come in. my mom told me I had to be patient but I am not good at being patient. To get things off my mind we decided to eat. When I was done eating. I was about to scream because I wanted to go, but I reminded myself to be patient. So I went to the gift shop to get it out of my head. Only three hours had passed and it was annoying me. So I started to play my ds. Before I knew it we only had one hour left so playing my ds distracted me. I got impatient real fast, so thats when my sister and I started goofing around. All of a sudden our plain arrives I was so happy. My mom was so proud of me for being so patient she bought me something from the gift shop. So I finally learnt to be patient." 11 11 22 3 3 2 3 3 3 2 3 +19138 7 "There have been times where I had to be patient. This one time I went to the dentist we got there and we sat down. Let me tell you something I hate the dentist. So we probably sat there for an hour or two. But only one good thing I got was missing school. I think we had a test that day. I think the worst place to go is the dentist and doctor. The one thing about the doctor is you dont have to wait as long. That means you can get and go. But sometimes you have to be patient. Like when you get a job or an interview. One good thing patience can get you to good places. Being patient is a polite way to go. So if your all prep you want to go down the patient way. Not being patient is just disrespect. Its like treating things like dirt. Patience is sort of like table manners, nice and proffessional. If I were you go patient it leads you to a good future." 7 6 13 1 0 3 3 1 1 2 2 +19139 7 "Patient is very important if there were no patience everyone would be irritated all the time. if there were no patience we wouldn`t be able to get through the day we would be constantly looking at the clock thinking when am I going to get out. Some people have no patience and others havetons. That could affect how everyone acts toward each other no patience could affect the littlest things we are all fighting because we had to wait in line at a store, or have to count money. It could change the life style of everyone on the planet patience is one of the most important things on the planet. Patiences helps us make the right choice. Instead of someone asking you a question and you answering right away you wait and make the better decision. Although many of us think, on patience I can summarize that right now it is more than waiting it`s being acceptive of something you don`t like. It`s also going threw life without saying why can`t I do what or you can`t because I can`t. The world wouldn`t be the way it is without patience." 5 6 11 0 1 2 2 0 1 2 3 +19140 7 "Patience, something you have to have when you want to be friends with someone. This story is about a young girl and boy who want to be friends, but one of them just dont have patience. I was walking into the room where the speech competition was. I sat next to all my friends and the all thought I would get first place. When I went up with one of my friends he said that he had just alittle bit to much cologne on because he was really nervous and he didnt know what he was doing. @CAPS2 one actually knew that he and I were friends. After I went up to see what number I was I saw that I was the first one to speak. My friend said that I would do good, and he was right after me. I soon started to speak about lady @PERSON1 @CAPS1 loved my speech! After we my friend, @ORGANIZATION1 and I were done with our speeches we both sat next to eachother and were talking a lot. Then after all our friends asked us if we were friends? I said, @CAPS2 way why would I be friends with him? then @CAPS1 laughed. We both looked at eachother, in a bad way. After a few days we wont talking to each other since @CAPS1 was so suspicious. I was very patient and was able to wait to talk to him. But ofcourse, @ORGANIZATION1 wasnt patient at all. He was eager to tell @CAPS1 that me and him were friends but we couldnt tell anyone because to them were both different, but the truth is that were both exactly the same since we both like soccer, basket ball, music and talking like @NUM1. Haha! Soon @CAPS1 found out. @ORGANIZATION1 had gone and told @CAPS1 that we were friends. Turns out @CAPS2 one laughed at us. They were actually happy that @ORGANIZATION1 had @CAPS2 patience and finally told them that we were friends. Now me and @ORGANIZATION1 are best friends and will be best friends forever! In conclusion, @CAPS3 having patience is a good thing but sometimes people cant have patience when they want to become friends." 8 12 20 2 2 2 2 3 3 3 3 +19141 7 "A time when I was patient was when me and my cousin family went @LOCATION1 and my sister was sick. Me and my other sister sat on my car. For about two and a half hours. My sister was getting mad but I just sat there patiently. My mom and sister were in the doctors office for the longest time! my sister ended up going to the doctors office three times. But I was very patient, when she wasnt at the doctor, all she wanted to do was lay down so we barely gat to do any fun stuff. By the end of the trip she was feeling better so my mom took us to do something fun. That was a time when I was patient." 8 10 18 2 2 2 2 2 3 2 3 +19143 7 Being patient is waiting your turn in line and @CAPS3 cuting you should wait because cuting in line is @CAPS3 @CAPS4 and @CAPS1 disrespectful. and you will have no friends. Being patient is respectful to others and others will be your friend. @CAPS1 @CAPS3 being respectful when you dont wait your turn. @CAPS1 when you to do something which your mom and dad are speaking to another adult @CAPS1 rouged to rush things when other people dont want to do something with you. Or nagging to leave somewhere like a aunts or uncles house. @CAPS1 @CAPS3 @CAPS4 when you dont wait. Be respectful and wait its a better way to make friends. And if someone is @CAPS3 being respectful to you tell them to be. And then walk away and say @CAPS2 @CAPS3 @CAPS4 to @CAPS3 wait and be patient. Grrr. 5 7 12 0 1 2 2 0 2 3 2 +19144 7 I felt a thrill in my body. We were @NUM1 seconds from the opening of @ORGANIZATION1. I had to wait @NUM2 minutes to go on space mountain. I wish I couldve cut all the people in line but I knew I had to wait. When I got off I knew that it was so worth it. A the end of the day I beged to go on one more ride. Again I had to wait @NUM3 minutes to go on. The ride showed boring history of @CAPS1. Then at the end it gave us a screen and we picked the future and showed a funny cartoon with our faces on it. 7 8 15 2 1 2 2 2 2 2 2 +19145 7 "Have you ever babysitted little kids? If you have, then you know how much patience it requires. It was my little cousins third birthday party, and as the oldest child, it was my responsibility to watch the younger kids. At first, everything was going fine. The kids were quietly playing with the plastic kitchen, offering me fake food. Then one of them started to play with the ball popper. Of course, if one child has a new toy, the rest of them immediately stop what theyre doing and go play with the toy, too. So all of the little kids gathered around the ball pepper, giggling with delight as the machine spot plastic balls out into the air. Suddenly, a little girl reached out and snatched a ball from the air, causing the other kids to fight over the balls and scream. I yelled at them to stop, but when they ignored me and kept fighting, I realized that this would require a lot of patience. I calmly took the ball popper away and waited for them to settle down. Thankfully, my little cousins stopped fighting and were able to play with the ball pepper quietly. I learned an important lesson from my cousins birthday party babysitting requires a lot of patience!" 12 12 24 3 3 3 3 3 3 3 3 +19146 7 "@CAPS1!! I had another math home work assignment due tomorrow and I was tired of math already. Every day my fourth grade teacher would give us math home work that was really long and hard. Some days I would come home and cry because it was really hard. My mom and dad always told me to be patient and stay calm. I never wanted to be patient because it never worked for me. Every day I would come home sit down at the table and take my time, and doing work. @NUM1 problems a day was hard for a fourth grader. Whenever math started I would get out my homework and wait to check it. I never did terrible. @CAPS2 I was always proud of my work. But when it came to getting my homework assignment, I was never happy. A new lesson every day was also challenging. I had to be patient and take my time. I had to be patient and take my time. One day my teacher gave us as easy lesson and I felt confident I could finish it at school. I came to a hard problem every once in a wile and I would stress out. But I remembered what my mom said, be patient and stay calm, @CAPS2 I did. I was patient and I worked through the problem. Now to this day I remember to be patient. I also remember what we will have to live with being patient all our lives. Math is what helped me become a more patient person inside and out." 12 12 24 3 3 3 3 3 3 3 3 +19147 7 This one time my brother and I were coming back from @LOCATION1. Everything was fine until the car broke down on the free way. So we called our parents to come get us. Well when they got there they forgot the cabols. So just as they were getting to us they left. So @NUM1 hours went by hear they come. I said did you remember to get every thing. They shook their head yes hooked up the car and a way we went. 8 7 15 2 2 2 2 2 2 1 2 +19148 7 "One time @CAPS2 @CAPS1 was siting watching t.v and having a fun time when his brother, or step brother @PERSON1 came in the room and said @CAPS2 we have to go my interview, or you are going to grounded,?? @CAPS3 long is it, @CAPS2 said, About an hour long, replied @PERSON1. But itchy and scratchy is going to be on, and its a one time only, said @CAPS2, @CAPS6 that pointless kidshow,dude that was on the @CAPS7 and then they made into a real show. Were is it at, @CAPS2 said. Its at @ORGANIZATION1, @CAPS6 and the @CAPS9 @CAPS10 man @CAPS2 be there, we leave in an hour okay, so make a science experiment or something, @PERSON1 said, @CAPS2 never liked the @CAPS9-@CAPS13 man, after the commercial he was in @DATE1, which I shall not say what happened. @CAPS2 did what he does best make a science experiment to plot revenge on the @CAPS9-@CAPS13 man or whoever he doesnt like. So he waited for @NUM1 minutes for the experiment to get done. Then they left, it was a three hour drive, and his favorite show was on, he taped it. He was being patient, then they got there. He looked for the @CAPS9-@CAPS10 man for @NUM2 minutes, could @PERSON1 be lieing to him, he was being so patient that he was getting tired, then feel asleep, and woke up and guese who it was. The @CAPS9-@CAPS10 man,remember me @CAPS2 said the @CAPS9-@CAPS10 dude man, @PERSON1 watched and laughed, @CAPS2 threw a bonney ball into the @CAPS9-@CAPS10, @DATE2, no more @CAPS9-@CAPS10 man. @CAPS2 was patient he was patient for more than @NUM3 hours to get to watch itchy and almost @DATE2 @DATE1 to get back at the @CAPS9-@CAPS10 man. The end." 7 8 15 1 2 2 2 2 2 2 2 +19149 7 "Usually I have very little patience (and yes I do know that patience is a virtue), but on my birthday a few years ago, I had to stay in a hospitle room with any dad to spend time with my mom, @CAPS1 was very boring, but somehow I managed to go the whole day (up to where my dad finally let me watch @CAPS2.V. in the room) without being baerd to tears." 5 4 9 1 1 2 1 1 1 1 1 +19150 7 "A time when I was patience. I was going school shoping. There were maybe over a hundred people in the store @PERSON1. It was like a duster of pebles in the sand. You could barly go down. The illes. It was like a whole mall in one little store. Some people would leave because how many people where in there. Then even more would come. It was me, @CAPS1 mom, and @CAPS1 dad. We started stuff out. We got in line behind maybe @NUM1 people or more. @CAPS1 mom was ready to explode. So @TIME1 only @TIME1 people had gone. @CAPS1 mom almost fell asleep I was just standing there waiting. But @CAPS1 armys hurted and @CAPS1 back herted. She was so ready to get out of that store. @CAPS1 dad was reading a magizene while he was waiting. Espn news to be exact. These were only a few people infront of use. I was happy that we could finally get @CAPS1 clothes. We get up to by @CAPS1 clothes and a cash register braekes. The lady said it will take a hour or two so @CAPS1 mom starts to complain. We sat in line a hour and half for this to happen. @CAPS1 dad was fine with it because he was so into that magizene I could not belive that this happed I was so disapointed I was ready so was @CAPS1 mom so mom so we got @CAPS1 dad and left. @CAPS1 dad saidI am at the good part.I didnt get the clothes that day but we went new week to get them." 9 8 17 2 2 3 2 2 2 2 2 +19151 7 "I was patinent when we were on the bus, we had just arrived at school the kids were loud and nociy in the day. Were a lot to get off the bus when someone jumped in front of ??? then I fell back into my seat, the was about @NUM1 - @DATE1 kids getting off the bus. So I waited for all the kids to pass me then I got up and walked down the alie to the door, then the bus driver said"" thanks for waiting"". Then I left" 5 7 12 1 1 2 1 1 2 2 2 +19152 7 "It was @DATE1, @CAPS1 my friends were talking about how cool xbox was. They were saying how if you get xbox live then you can play with people around the world. They were also talking about the new game that was about to come out, that was called @CAPS2 of @CAPS3 @CAPS4 @CAPS5 @NUM1. I had searched it up online. And it was voted to be a ranking of @NUM2 stars. Now thats a good game. I had asked my mom and my dad if I could get it. They both and always say will see. After another month I had asked my mom again and she said why dont you wait till @CAPS6. And once I went to my dads house he said @CAPS6 is just around the corner. But I said that everyone has it cant I just get it now. My dad said no, so then after that I had waited @NUM1 months thinking could he have his answer or maybe he changed his answer. And again he said no. So I went to my moms house and asked her she said that I should be able to wait and she also said if I ask again I wont get it. And so @CAPS6 came and for my last present from my mom and my dad I had gotten an xbox with my favorite game I was sooo happy. And know I know if you have pacience and you wait long enough youll get what you want." 10 8 18 2 2 3 3 2 2 2 2 +19153 7 I am always patient. But do you know when and were I am really patient? It is when I am getting my hair cut. Every time I go to get my hair cut it is a lot of people in the @CAPS1 shop. So day people say they have to go some were for a party or for church and need there hair cut pronto. So I let them cut and I have to wait and be patient. It makes me kind of happy to be patient because I am helping others and if I need someone to be very patient with me then I will want them to be patient. 8 6 14 2 2 2 2 1 1 2 2 +19154 7 "This is about a time I was patent, first I was baby sitting my cozin's. There names are @PERSON1 and @CAPS1, they had to be caped out of the way because the adelts were rearranging things upstairs so we sat downstairs. Nexzeke @PERSON1 and I wached a movie. I was called tiches two they did not sit stll it took a lot to not yell at them to sit down and wach the movie. It was at the begning and I want to play with @CAPS1 who was sitting in her crib. Finlly they were almost done upstairs. The couch was moved and the chire. So it was more roomy upstairs that was the time I was petent." 8 8 16 2 2 2 2 2 2 2 2 +19155 7 I used patience when I went to ceder point @CAPS1 I used it was that I playing video game. As I was packing I grabed my psp I put in my bag. So I was bored half ??? down there so I grabed my psp and ??? so I lost track of ???.As we ??? my girls did and we ??? pulling in to the hostel we were so close to the park but as soon as I got there I ??? long my patience. We got in line we went sitting their forever so I playing my psp. The psp helped me use patience. I??? My psp to help. It would have been hard but my psp test my mind ??? 5 7 12 1 1 1 2 2 2 1 2 +19156 7 "Patience is usually good or bad for me. Here are a few reasons why patience can be hard or stresful. If you are waiting to get a shot or life threat results. A way to avoid normal patience like being board is to get some notes or school work to do or an ipod. Patience is everywere. For example carrides, birthday parties, vacation commercial, school being over, restaurants, holidays or whenever you say I cannot wait, and etc. to sam up a few ways about patience in my way of description." 3 5 8 0 1 1 1 0 1 2 2 +19158 7 "A time when I was patient was when I was waiting at the dentist for my brother. My brother name is @CAPS1 and he is sixteen. One day we went to the dentist. My brother had to get his wisdom teeth pulled. My grandma and @CAPS2 waiting for hours. After a while, she went to the backroom with my brother. So I was sitting in the waiting room alone. Thankfully I had my @CAPS3 so I watched a few cartoons and listened to music. A few minutes later I went to the bathroom. When I got out a nurse told me to come with her, she lead me to the backroom with my brother and my grandma. I learned that the doctor didnt even start yet! At least I could talk to my brother. So for what seemed like days the doctor finally showed up. After a hour or so the operation was over. Then we had to sit and wait for the amnesia to wear off. My brother was acting loopy and crazy. It was actually funny. Finally we left and I didnt lose my patience." 8 10 18 2 2 2 2 3 3 2 2 +19159 7 "When I was really patient when I wonti my pcar and mother to cook me some lazuge. I did not haved any of it scence my pass away is @DATE1. My mom had my @CAPS1 to cook @CAPS2 on my first birthday. when she cooked some for my first birthday party it was all goned. My @CAPS3 mother cooked @NUM1 pans of it. It was so good it was gone soon as she had put it out when I say soon I mean soon. I turned @NUM2 years old. My mother did it big for my birthday party. My mom died from open heart sergrey. She was @NUM3 years old. She had alto friends at her furnal. The furnal was very nice. But getting back to what I was writing about so In @DATE2 I asked my @CAPS1. To cook me some . She said ito me girl it coust to much to make it. I said @CAPS1 do you want me to gived you some money to cook the food, for me. She said no save your little money that you have. I said but @CAPS1 its okay to take my money to buy my lazangae and cook it for me. She said girl what did I say. So I hurry up and put my money in my pocket. Then I was keeping it moving. When we got in the truck she said now @CAPS5 I am going to cook it for when I get some , more, money, and when I pay my bills. In @DATE3 she cooked me some. The day she cooked me some it was @CAPS6 @NUM4, @DATE3. My antyes came over a got some, my brother and sister got some, and my @CAPS1 and @CAPS8 got some. When they all wont I some I stood there and watch them get some, and when to stop getting some. Selfer when my @CAPS1 and @CAPS8 got some. I did not tell them when it was anoft because I live in they house. My brother and sister lives with them. The lanag only lasted for @NUM5 days and that it. When she cooked it I was happy. I brang it to school and ate it for my lunch." 7 9 16 2 2 2 1 3 2 2 2 +19160 7 "One time when I was patient was when I was in the end of the year in fourth grade and Id just signed up for football. I had @DATE1 wait from @DATE1. When I got my football pads, I was so excited for football I put them on about four times before football started. @DATE1 passed by and it was @DATE2. In @DATE2 I show cows so that made @DATE2 zip by really fast. Finally it was @DATE1. I only had @DATE1 wait eleven days until the day of my first practice. When the day came, it went by super fast and six p.m. came fast. Then it was time @DATE1 go. I liked football that year and I have did football ever since.It took patience @DATE1 wait for football. Two months @MONTH1 not seem long, but for a ten year old it is hard @DATE1 wait that long." 10 9 19 2 3 2 3 2 2 2 3 +19161 7 "The time I had to be patient was when my brother was going to get me a preasent when it wasnt even my birthday yet. This is how this whole story began. It was a hot @DATE1 day and I had been doing my chores witch include racking, mowing, and alot more yard work. Mom and dad and my brother travis had been talking alot. When I was just sitting down stairs they would tell me to to go do my chores then I could see them talking. It bothered me alot that I couldnt hear what they were saying. I finally just carrien on doing my chores and I just got done mowing witch took two hours and I went inside and I started to watch tv when all the sudden I hear click click tap bam, then I heard a sudden yell of my brother travis saying hey get back here, I went to our fourteen curly stairs and all the sudden I was greeted by the licking as bbering of a six month old puppy I grabbed his collar laughing and seen his name was max and he is now a three year old happy mutt and that was my brothers preasent to me for getting all. As and doing alot of work around the house. I love my dog but that was the time I had to be patient" 8 11 19 2 2 2 2 3 3 3 2 +19162 7 "One time when I waited game but I couldnt get yet .So I asked my mom if can she buy me a new game, how much does it cause? @NUM1 dollars then she said you have to wait for some days the @NUM2 went by then I finally asked my mom can she buy for me she said well yet .I said thank you .Then the next morning we went to the game store, then I saw the game I wanted,I told my mom that we went to the counter and bought my game ." 6 6 12 2 2 1 1 2 2 1 1 +19163 7 The doctor appointment. Oct @NUM1 @DATE1 me and my mom were getting ready to go to the doctors. Once we got their it was so crowded. I felt like we had been their for weeks days even @CAPS1 their were a lot of kids crying and playing. I was so exhausted I was still waiting for my turn to see the doctor @NUM2 mins later still not my turn I was trying my hard to be patient but it didnt help at all with all the noise of the kids running around tell ???. I walked up to the regiester and thats where I found out my appointment I want till @NUM3 oclock and it was only @NUM4. 7 7 14 2 2 2 1 2 2 2 1 +19164 7 One day my dad and I had a doctors appointment at @NUM1 pm so we went there on time. Then my dad and I sat there for a while. We thought it would take a few more minutes. So we waited for @NUM2 minutes. Then my dad went and asked other doctors how long is it going to take. The doctors said abott @NUM2 more minutes so we waited for @NUM2 more minutes. The doctor still didnt come out. We waited for @NUM5 minutes. My dad went to the doctor again. They said few more minutes we waited for @NUM2 more minutes there the doctor called us. So the doctor was @NUM7 minutes late. When we went in the room the doctor said sorry! because he was late. Thats how me and my dad were patient. 8 9 17 2 2 2 2 2 2 2 3 +19165 7 "Being patient is a hard task wright about. One day I was with my mom in @LOCATION1, looking for a pawn shop .We got stopped at nearly every red light on the way there .no one complained even when we reached a certain red light .Right before the light turned green a very old lady with a walker stepped infront of us we waited @NUM1 minutes for the old lady to pass .Supersising still no one complained." 6 8 14 1 1 2 2 2 2 2 2 +19166 7 "When you hear the word patience what do you think of. I think about a person standing in line at a store when theres @NUM1 people standing in front of you. In @NUM2 grade my sister and I played the patient game. It was about who could go the longest without food and all you could drink is water and the winner gets a whole box of dunkin doughnuts to themselves. Day @NUM3 I had about @NUM4 bottles of water but my sister was still hanging in there. Day @NUM5 I had about @NUM6 bottles of water and all day my stomach groaned some with my sister. Day @NUM7 all the groaning and the growling my sister was hanging and so ??? in was ??? their I drink water. Day @NUM8 I snapped and had so much food my whole fontry was gone, my sister @CAPS1 was cheering and she said dont worry ill let you have one of my @NUM9 choclate doughnuts and she kept her word. In my opinion that was patience." 8 8 16 2 2 2 2 2 2 2 2 +19167 7 "One of the worst fellings in the world is that your flight has been canceled .This has happens to many people but only one family in my family. My cousins were going to come to @LOCATION1 for chrismas. Cara and I where texting and e-mailing each other about what we where going to do while they where in @LOCATION1. They have been planning this since @DATE1, but now their night was conclled! We where so mad! My cousins family had to be so patence because they did not know if they would be coming to see us or not. My grandma kept calling my uncle @LOCATION2. My grandma had a good idea, for them! To get on the next fight. The only problem was that the next flight was at @NUM1 and it would take I them two hours to get here. When they got here I was at the airport waiting .When I saw my cousin she said everyone was so patient but me! I expected the exact oposite but, no! I thought that my cousin, carn would be the patient one but I was wrong, but at least some one was pacient." 10 8 18 3 2 2 3 2 2 2 2 +19168 7 "A time when I was patient was when my dad and I went to leslie, to go hunting we wake up @TIME1 @TIME3 and get there @TIME1 @TIME4. We staid there until @TIME1 then we left. When we were there my dad shot a doe @TIME1 @NUM1 in the merking. He short another doe @TIME1 about @NUM2 in the @TIME2, so we left with two big does in the back of my dads truck. That was a time that I was very patient." 8 8 16 2 2 2 2 2 2 2 2 +19169 7 "One time I was patient when I went to the dentist. When I went to the dentist I had to be patient because when we got their we got checked in and there was alot of people there so we had to wait a long time. When I was waiting I was sitting on the ground being really board. I kept asking my mom if it was almost my turn and she kept saying she didnt know. Finally the doctor called my name. So I went in then the nurse got me ready for the real doctor, then when she was done I had to wait even more for my dentist to come in because he was working with a different patient but then he finally came then I was all done! That is a time when I had to be really patient." 9 10 19 2 2 2 3 2 3 2 3 +19170 7 "Patience someone was patient with me when I did not understand something. Someone was a teacher. The teacher did not complain about helping me. Along with the students in the room. When the teacher was helping me they sat and quietly did there work. The teacher understand that I did not understand @CAPS1 to do the work. It was during math. We were tarning about positive and negitive intergers. My question was, ''@CAPS1 do you order them from last to greatess''. She replied , ''I asy would you like me to show you?'' I said , ''@CAPS2 please''. So for about @NUM1 minutes she helped me. In that time my whole class sat and did there work. That is one time when people were patient with me." 8 12 20 2 2 2 2 3 3 3 3 +19171 7 Where do I begin there wasnt ever. A time when I was patient. I was alway rushing people do something and getting mad cause they wouldnt do it fast enough or go fast enough for me. I would just get attitude. That why I cant be patient and now you know why. The end. The teaching on the way people coming i.e ???. 3 3 6 0 1 1 1 0 1 1 1 +19172 7 Having a melt @CAPS1! I have expereanced this @CAPS2 scene when I was in the @NUM1 grade at cross creeds christm school. It was the @DATE1 and we lived just around the corner. @CAPS3 @NUM2 minutes my patients where a little almost at the fact that my mother wasnt there get and @CAPS3 @NUM3 minutes later I had a temper tantrism and cryed and my patients was like a ballot that poped and lowered slowly as I grew angrier and. Angryer at the fast my mom wasnt there yet. This mast ake will @CAPS4 happen again to me. I made the rong chose to get mad over something redic usasly dumb. Learn from my words I as @CAPS4 give up keep trying. 9 7 16 2 2 3 2 1 2 2 2 +19173 7 Im going to tell you about a time when I showed patience. When my family and my mom boy friend when on vacation to @ORGANIZATION1. When we got there it was pack full of people. So we jumped in line for the first ride. We were so excited that the @PERSON2 said @NUM1 teen minet wait. At first the line was moving very fast. There all of the sudden it moving like a sloth. It was so hot and humid that was alful. We checked the time it was @NUM2 minet already. It felt like @NUM3 hours. I was running out of pashents. Then we got in the shade it was a cool and nice. Finiy we were the next rid we got out the and one nice. @PERSON1 and @CAPS1 where so happy. My mom boy friend timed the rid it was only @NUM4 seconds long. We waited @NUM5 hour for a @NUM4 second rid. That was one time that I should patience. 8 10 18 2 3 2 1 3 3 2 2 +19174 7 "Patience is something you need to get through your everyday life. To have patience means that you are understanding and tolerant. Most people do not have much of it, but others do. Like my brother, @CAPS4 has some but not a whole lot. There are five kids in my family; @NUM1 girls, @NUM2 boys. I am not going to lie, but I am @CAPS1 annoying sometimes. My little sisters and brother are @CAPS1 obnoxious .But; my older brother is the most obnoxious of them @CAPS3! @CAPS4 is the one that freaks over any little thing we say or do. But this one time, I dont know what got into him. This was going to be interesting. We were sitting @CAPS2 home one time, and my big bottle was being @CAPS1 patient, when we amay him, @CAPS4 would usually get his fists ready. So my sisters, brother and I kept fighting and missing around with my brother. We would tell him to shut up or even smack him in the am. Yet, @CAPS4 would just sit there like is nothing wrong. @CAPS4 would usually beat my siting and I if we would usually fight, and then fit it, but this time @CAPS4 didnt care @CAPS2 @CAPS3! I was serious starting to get worried because that wasnt like him. So I got up and smacked him right across the face with my fingers sliding off his check leaving bb face red with four finger mask @CAPS4s been @CAPS1 patient ever since we start being annoying . But I think @CAPS2 this point, I cut the thread of calling him nice. @CAPS4 got up, with his left wide open for a smack. Before I knew it ,I was on the floor crying. I ran to tell my dad. Oh, did I mention I m daddys little girl? I think you couldve figure out that my brother was the one that got in trouble @CAPS4 had so much patience by being tolerant during @CAPS3 those things, well , @CAPS2 the and, @CAPS4 got cracked by my dad, and so did my fingers. @CAPS2 least I never got in trouble. Thats when daddys little girl comes in handy!" 9 12 21 2 2 2 3 3 3 3 3 +19175 7 When im patient is mostly in the woods. This is when I am hunting. You have to be patient to wait for deer. They don't always come sometimes it could just be a fawn. Other times it can be does. put when you see a buck ???is everything you first have to wait for it to come in close enough for a shot. When it does you have to wait to bring up your gun. Then you have to wait for a shot. If you get it you be patient and wait for it to die. If you cdnt find it right away dont give up. That is when I was patient. 9 8 17 2 2 2 3 2 2 2 2 +19176 7 "One time my volleyball team went to @ORGANIZATION1. I was one of the last people off our bus which means I was one of the last to order. I stayed there very patiently as everyone ordered. I talked to my friends as they waited too. Next I figured out, what I was going to eat, (@CAPS1 cheese, burger, @CAPS2 fry, and a large drink). @CAPS3 @CAPS4, @CAPS3 @CAPS4 as I watched the clock my eyes got droppy @CAPS7, @NUM1 the lady said. @CAPS8 @MONTH1 I take your order, she said. I told her what I wanted and she put it on her register and I began to wait. A couple minutes later I got my order. Finally after being patient I got my food. That was the time I was patient at @ORGANIZATION1s???" 8 9 17 2 2 2 2 2 2 2 3 +19177 7 "People with patients are great teachers my mom is one of those great leader she has a great level of patients she has a family and many responsibilities. When we ask for things over and over again she doesn`t get angry and out bust she just says no or yes you @MONTH1 with a smile or when she comes home from a long day at work. She never complains she just keeps a smile on her face and finishes the rest of the adventures day. When she wakes up in the morning to take us to school she has a bright smile on her face and she never complains. My mom is very patient women and a great teacher and leader. I apreciates everything she does for me, my brother, and dad." 5 6 11 0 1 2 2 0 1 2 3 +19178 7 "When I had to be patient, was when I wanted a psp. So there was a time when I wanted a psp so bad so I ask my parents, they said I had to wait till @CAPS1. But I really wanted it but I decided to wait for a long time and I finally got a psp." 7 4 11 1 2 2 2 1 1 1 1 +19179 7 "I remember I had to use @CAPS10 sisters old phone. The @CAPS1 pearl. @CAPS2 was really slow @CAPS2 dropped calls,and I was @CAPS3 horrible. @CAPS10 birthday was coming up, and I reall needed a haw one. and I asked @CAPS10 mom @CAPS4 I was going to get one for @CAPS10 birthday. She said @CAPS5. Be paitent, And I really wanted to know so I kept asking her, and she said probably not. But I didnt give up. I was really patient until @CAPS10 birthday. When I woke up, I saw presents on the kitchen table! @CAPS10 family watched me open them. When I had one left, I opend @CAPS2. Iwas a huge box! and I opend @CAPS2 to find another box. and another and another, and another. Finally @CAPS2 was at the smallest one. I pened @CAPS2 and the side, of the box said, iphone on @CAPS2 !! I got an iphone @NUM1! I was so happy! @CAPS9 what you get for being patient. @CAPS10 mom said with a smile." 10 11 21 2 3 2 3 3 3 2 3 +19180 7 Patient one time I was patient I was realy patient. I was invidet to a sleep over and when I went to the sleep over. So when I get there when went to the stower to get pop in not legible 8 6 14 2 2 2 2 2 2 1 1 +19181 7 "What is patient? Being patient means to wait for something that @MONTH1 take a long time but you understand and wait without being rude. An example is your waiting for a toy that just came out. Everyone has it and it's the coolest toy in town. The problem is your mom and dad can't afford it right now. When you understand that moneys fight and you don't start by you moms side begging for the toy everyday your being patient. If you are doing that then you're not being patient and your mom going to say ""stop your being patient. Before you be rude and keep begging for what you want think of other people, understand why it might have longer then you want and be patient." 8 6 14 2 2 2 2 0 2 2 2 +19183 7 "Im writing a story about patience. Patience in can say like Im waiting for you to get done with whatever your doing. Something like the o, say @CAPS1 been waiting for the kids to be quite. And they cant so even though shes getting mad, she still being patient with us instead of saying get out my class giving us chance after chance. Because she want us to be good and stay in class." 6 6 12 1 1 2 2 0 2 2 2 +19184 7 I know person thats way more patient than me! That person is my sister. My sister is the most patient person youll ever meet. I am not patient at all.First of all when were going somewhere my sister would just sit there. I would say can we leave now.My sister is always patient! Thats why I think shes patient. 5 4 9 1 1 1 2 0 1 1 2 +19185 7 "One rainy afternoon on a @DATE1 my little brothers friends mum called and needed me to babysit. She and my mom were going to soon and wouldn@CAPS1 be back till nine p.m so she needed me to come over. So my mom move me over there and dropped me off at seven p.m went through after a brief entry on what to do if there is an emergency. When they left, me and the kids wrestled and watched @CAPS1.v. We ran around, talked each others (mainly they tackled me) and I lifted them upside down, then at light thirsty of put them in bed and cover them everytime twice. After they brushed their teeth and went to bed, a walked down there twice to read my book. Il out really sighed and or i turned on the @CAPS1. v need a col of patience afraid coz my mm for get me back." 8 8 16 2 2 2 2 2 2 2 2 +19186 7 "There is time in everyones life were they have to be patient. The time I was patient was when I was helping my brother learn how to tye his shoes. I know this sounds like an easy task but it really isnt. Time after time again my brother attempted to tye his shoes but could never do it. So I told him to go get one of his shoes and I will teach him. When we got started I thought this would be over in about five minutes but no! He could not make the bunny ears. So we tried and tried again. He would get so close to tying the knot and then he would get so excited he would pull the knot as hard as he could and the laces would fall to the floor. I really wanted to give up and just let him use his shoes with straps but no, he was determined to tye his shoes. After about an hour of tying he finally got it! He didnt tye them perfectly but it was good enough to keep them tyed I said good job and started to walk to the kitchen. When he asked about the double knot. So of course I walk over and tell him just cross the two bunny ears and loop around but he didnt get it. I had to have shown him a billion times how to do it! But he still didnt get it. We hit the half hour ??? for the double ??? and I went in the kitchen for a juice box. When it came back my brother had a smile on from cheek to cheek and held up his shoe proudley." 10 11 21 2 3 2 3 3 3 3 2 +19187 7 "At time I wsa very patient when I had to do a project on birds, which included a life size scale model. On the model I had to glue parts on everyday. But the glue took @NUM1 hours to dry. So I had to redo it three times, which made it a @NUM2 day project instead of a seven. I worked harder then @ORGANIZATION1, but I kept braking my wonderful creation. The wings would break, and I patiently had to glue them back on. I finally completed it, though it took way longer than I wanted to. I used paintence, carefulness, and steady hand to finally succeed!" 8 11 19 2 2 2 2 3 2 3 3 +19188 7 "A time when I was patience was during a time I was with my mom and she decided lets make some cookes so we got all the cookes ready. They looked so good eaven thow they werent cooked. My mom just ??? go to the oven for @NUM1 minets! I did not want to wait that long for my cookies. As they started to take there shape of big, dark brown, round, and soft my mougnt wasted I wanted them now. The timer buzed @CAPS1 over there, grabed a hot pad and almost through them out of the oven! Right as I was about to get one my mom snarped they need to cool in on. She set the timer for @NUM2 minets! I did not think I could wait that long. My magnt waterd at the small. I was dying I wanted them so bad! I thought the smell could kill me! Every minet semed like an houre. Then the timer buzed I sprinted, over ther, grabed a plate tossed @NUM3 of the bigest cookes on the plate, while doing so I burned my hand. But I did not care I took a bite out of a cooke my water was over. My patieates payed off in the end I t was so word in it for the cookes I got." 8 8 16 2 2 2 2 2 2 2 2 +19189 7 "School. In school you have to keep patient. By the of the day you ran out of patient. You would be try to tolerate you patiens. Most of day it will be fun. Maye if you go along with it you will be cool and stay patient. But patient is something I do when it come to ??? lunch, and the bathroom. See every day a have to tolerate people who up to the bathroom when need to go I have to wait @CAPS1 I start to get hungry. I need lunch I have to wait for that to. Once I eat I have to be patient for gym. I have to be patient every day of the week. I need to tolerate all of it weekly. The end bye bye." 4 6 10 1 1 1 1 1 1 2 2 +19190 7 "One time I was patient was in @CAPS1 @CAPS2. Guess @NUM1s @CAPS3!) @CAPS4 was the @DATE1. When we pulled up to the tickit booth the man in the little booth said tickit please. @CAPS5 we pulled up to get a parking spot. I hen we got out & ran for the gates. But just then @CAPS8 sister forgot her towel. @CAPS5 I ran back to the truck & got @CAPS4. Then we got into our bathing sutes. Then we went to the water. The first ride I did was the @CAPS6 of @CAPS7! @MONTH1 I mind you @CAPS4 was very scary. But I said, dose any one want to go with me? @CAPS8 dad& @CAPS8 moms friend from work said yes! @CAPS5 we got in the line. The line was like @NUM2 to @NUM3 people in the line. @CAPS5 the wait was around @NUM4 hours! But I did not complain one bit. But then we heard a blood curtling scream from the ride. Then a man, women & @NUM4 young kids got spit out into the pool. Then we got their tube & went up the stairs. We got up to the huge opening to where you could see the @NUM6 foot dropoff then the brite pink & yellow funnle. About @NUM7 minutes later we were at the port where you get on your tube. @CAPS5 we went down. @CAPS8 moms friend (@PERSON1) went down backwards. I said yes, you go to go down backwards. Halla! @CAPS5 we started going down & then we just dropped (well we freefalled) but we were going like @NUM8 mph. @CAPS4 was scary. Then we got sit out. Then I fell into the pool &got out. I scean @CAPS8 mom & was two sisters. They laughed at @PERSON1 because she was crying. Then she said she didnt feel good. @CAPS5 she went to the truck & took a nap. Then I rode rides the rest of the @TIME1. That is a time I was patient." 12 8 20 3 3 3 3 2 2 2 2 +19191 7 A time when I was patient was when went to the mall.@CAPS1 @CAPS2 I said to whoever was behind me my mama and had come to the mall to get some @DATE1 clothes. That mall was crowded. Couldnt nobody get in where I was getting so patient. The ever had was to understand and it was this white family walking by and they all bumped me. I was so patient waiting in one. I was just ready to left everybody when finally came our time. That was time when I was patient. I was so proud of myself I held at in. The @CAPS3. 8 6 14 2 2 2 2 1 2 1 2 +19192 7 "A momma bird was laying eggs. She layed @NUM1 butiful, blue, perfect eggs. Days went by, and the eggs did not hatch. The momma bird got upset. She talked to papa bird, and he said, ""@CAPS1 be patient"". Weeks more went by, and the momma bird got agrevated. Again, the papa bird said to be patient. In her spare time, the momma bird would keep herself busy by twiddeling her wing a, shopping, cooking, cleaning but nothing could get her mind off of the eggs. Months went by. Years went by. Decades, centurys, and milleniums went by! But the momma bird was still patient. Finally one day, the eggs cracked, and she was so very happy. Almost immediately, the @NUM2 oldest birds took off in flight. The third asked, ""@CAPS2 can't I fly yet"" and momma said,"" @CAPS1 be patient.""" 11 12 23 3 3 2 3 3 3 3 3 +19193 7 "I was @CAPS1 excited to get my first ipad. But, there was a very long line. @CAPS1, my mom kept on telling he to be patient. @CAPS1, I just stand there quietly. Then when we got closer I could not wait. Finally, we got to the beging of the line. When, I got up there my dad said what kind do you want? @CAPS1 I told him that I want the big one. Therefore, we got and put a lot of cool songs on there. After that, we went home and I listened to it all day all. Then my said stop listing to that music @CAPS1, I put it down for about @NUM1 hurs. Then, it was time to eat my dinner. After, we went for a car ride in my daddys new car. Finally, we went back home. I put away all the stuff I had bought from the store. Then I watched tv and ate some popcorn. Then it was time for me to go to bed. That is the time I was being patient." 8 9 17 2 2 2 2 2 2 2 3 +19194 7 "When I was patient, we were onone way to @CAPS1 point: with @LOCATION1 her mom and dad and her brother and I. We were driving to go there. It took us @NUM1 hours to get there. @LOCATION1 and I were very patient we wated and waited to get there we were soo exited. When we got there, we all waited in line to ride a hole bunch of rollercoaster. We all waited in line about @NUM2 hours for every ride it was extra buisy that day. @LOCATION1 and I wanted to ride the tallest rollercoaster. It was called the @CAPS2 the @CAPS2 was @NUM1 @NUM4 it was the tallest rollercoster. I had ever been on and all the other people that came too. To get on that ride it was a @NUM5 hour wait it was exosting and we had to be very patient. But when we got to the front it was worth the wait!" 9 7 16 2 2 2 3 2 2 2 1 +19195 7 "Click, ok, cool grandma thanks. I say your welcome. @CAPS1 says. When will they be here I say. I dont know. @CAPS2 you dont know what @CAPS3 talking about, which you probably dont, @CAPS3 talking about my shoes I just ordered online. There called @CAPS4. And boy was I goin crazy over these things. I waited for @NUM1 days and every day I would ask my mom, are they here yet, are they here yet, but every time l did, they werent there. I was starting to get mad. So finally l rode my bike around to get it off my mind and I see a @ORGANIZATION1 truck and I thaught on yes hes probably going to my house with my shoes, so I raced home and waited, and waited but still no shoes. So the next day l look up online were my shoes were, and it said @PERSON1. MI. I was flipping out that meant they were coming. So again @CAPS3 wating, and waiting and my mom decided we go somewhere. So l went in the car to leave, and I thaught l heard the truck, but nope so we finally arive back at my house and l looked to the left and yup! there they were sitting on my front ?? in a rough brown box. I run over pick it up and dash inside tear it open and there lies the best shoes known to man. I try them on (@CAPS6) they are awesome. I thank my grandma and all my patients flew away. I felt so happy." 12 12 24 3 3 3 3 3 3 3 3 +19196 7 "A time that I had to be patient was at cedar point in @LOCATION1. My @CAPS1, my sister, and a friend were spending the night at cedar point. My @CAPS1s stayed at the motorhome while my @CAPS1, my sister and I were spending the evening going on roller coasters. After about six hours, my sister and I went on all but @NUM1 or @NUM2 of the roller coasters, my @CAPS1 by the way, am not really like roller coasters, being old and all, so it really was just my sister and I. So after all the fun my sister and my @CAPS1 were going to back to the moterhome, but I wanted to go on just on??? before heading back, so I asked if could ask she said yes. I told my @CAPS1 that I would be back in hopefully a half hour. The roller coaster was the second biggest roller coaster by the park. As I waited in line, I felt like it would take forever. I have @CAPS2, so as you could imagine, I could hardly stand still, I had to try very hard but eventraully I got on the ride, and then it was good again. The ride by the way was extremely amazing." 11 8 19 3 3 2 3 2 2 2 2 +19197 7 "@PERSON1. I was in love with the guy! I swear middle school @CAPS1 when you have to be the most patient out of all the time in your life! Seconds pass by like hours your classes feel like they go on and on for centuries, which sometimes can be good, like in social studies. Social studies are the only class I have with @PERSON1 and I sit behind him staring at his perfect head. @DATE2 @CAPS1 the girl’s choice dance and I was determined to go with @PERSON1. So in social studies I wrote him a note. “@PERSON1, I really like you and was wondering if you wanted to go to the girls choice dance with me? From @ORGANIZATION1.” I chickened out, no way could I give it to him myself so, I devised a plan. I told @LOCATION1 who told @PERSON2 to @CAPS3 @PERSON3 (who @CAPS1 @PERSON1’s friend) to @CAPS3 @CAPS2, (@PERSON1’s better friend) to @CAPS3 @PERSON1 I liked him. Rumors spread fast in middle school so @PERSON1 found out before @PERSON2 but, now he knows, and now it’s @DATE1 and time for social studies. Patience @CAPS1 my essence I remind myself don’t be too quick to strike. Well I certainly wasn’t because the bell rang before I could give him the note. I waited and waited patiently until the right moment finally I leaned over and handed @PERSON1 my note. He opened it and I waited for a reply, and waited, and waited. I think I might be a little to patient seeing today @CAPS1 @DATE2 and the dance @CAPS1 tonight. At my locker, which @CAPS1 four and a doorway down from @PERSON1’s I have a note taped to it. It reads “@CAPS3 me your phone number and I’ll call you for the @NUM1.”. Gosh! Boys are so confusing I @CAPS3 him my number and wait by the phone. I think he’s testing my patience I wait for what feels like hours by my phone willing to ring. I felt like breaking down, giving up, and then a rush of will power would come back and @CAPS3 me it would be worth it in the end. The phone didn’t ring for what seemed like an eternity, so when it finally did I thought I was imagining it.’ When I answered all my patience paid off! He said one word. Yes!" 12 12 24 3 3 3 3 3 3 3 3 +19198 7 "Have you ever wanted something to be done and your parents told you@CAPS1 be patient? Recently @CAPS2 been patient. My family got a new microwave and its too big for our counter so we had to put it above our stove. Well there wasnt enough space above the stove so my parents decided to remadle the whole kitchen. My step mom took everything out of the kichen and put it all over dinning room, and now we can barely walk in the dinning room .Lately my family has been eating in our living room. (@CAPS3) I really dont like eating in our living room it @CAPS1 seems so gross. But we also have the option to eat outside on our porch. So thats a good thing. Idont know how much longer I can keep up with this. But @CAPS2 @CAPS1 got to be patient. Finally now my dad has made a new shelf and he can put up our new microwave, finish painting, and put our stove back. After he did that my step mom put all of our seasonings back and our other stuff away and how we are back to normal. After being patient it really pays off. Now you know to always be patient." 9 12 21 2 2 2 3 3 3 3 3 +19199 7 "It was a nice warm sunny @DATE1 day!!! We decided we could go pick up every one from my dads house and go to the genesee county farm. We got to my dads house and pick up my step brother, step sister, real brother, step mom, and my dad. We start heading to the genesee county farm. We started walking around waiting to see if it was going to rain. If it was going to rain that would be a waist of money. We walk up to the ticket booth to see if we could come back tomorrow with the same wrist bands if it starts raining. They said no so we decided to stand there and wait a little bit longer then it starts poring down rain. We had to go sit in this metal barn until the rain stopped. Meanwhile the barn starts flooding. Then we get phone calls saying that tornados just hit a few miles away. Finaly it stopped raining and we all go back outside. We waited for the rides to start back up. Once they finally started back up the rain started back up. So we all ran to the car. We were soaking wet. We decided to stop trying on the fair and do something else. So instead we all went out and ate toco bell and burger tong." 8 9 17 2 2 2 2 2 2 2 3 +19200 7 "One day my grandfather and I went fishing my grandfather always says it is important to always wait. When we got to our fishing zone I said I wanted to catch a turtle and my grandfather said, that will take far ever just catch some fish. I told him that was going to catch a turtle and that was final. When something pulling at my fishing rod I taint to pull it in and what pulled my line was a small white bass. The next thing that pulled on my fishing rod was a big white bass. I was getting angry because there were no turtles bitting my line. The very next thing that tugged at my line was a @NUM1 inch white bass it was the biggest fish I ever caught before but it werent a turtle. After I caught that fish I said its time for a break time. I was eating a sandwich and my grandpa was jacking around and catching fish. At the time I was finshing my sandwich and my fishing rod was pulling. I had to grab my fishing rod and ??? in my fish but it werent a fish it was a baby turtle." 8 11 19 2 2 2 2 3 3 2 3 +19201 7 "In @CAPS1 middle school, in @PERSON2's dirty and muddy science classroom, a boy named @CAPS2 and another named @CAPS3 were cleaning the mess @CAPS7 made earlier, from their mudball fight. For years, @PERSON2 was trying to @CAPS6 patient with the twins, trying to @CAPS6 patient with the twins, trying to figure out what could calm them down. @CAPS7 DO have @CAPS4 though @CAPS5 @PERSON2. Often she wondered what went though their minds when @CAPS7 got angry. When teaching them science, @CAPS7 never understood. When @CAPS7 did wrong things, @CAPS7 didn't know it was wrong. @CAPS7 progressed @CAPS8 by @CAPS8 in her class, understanding little. But it was as the principal said, ""@CAPS6 patient, @PERSON1; @CAPS7 will learn eventually."" @CAPS8 by @CAPS8 as the months passed, @PERSON1 believed her husband more and more. By being patient with them and not getting angry at them when @CAPS7 did something wrong, their grades started picking up soon, by the end of the year, @CAPS3 and @CAPS2 were @CAPS11- plus students. @CAPS7 had passed @PERSON1's class. On the last day of school, @PERSON1 went to her husbands office. She @CAPS12 him that his advice worked and that he was a great principal. All @PERSON3 replied was "" @CAPS12 you so!""" 12 12 24 3 3 3 3 3 3 3 3 +19202 7 "I am patient. Even though I hate being patient, I can usually tolerate it. Like when I was @NUM1 and there was no school because of so much snow, my mom had to go to a meeting out of town so she took me to my dads house. She forgot that he had to work @DATE1 from @NUM2 am to @NUM3 pm. It was too late. I had to go to work with my dad. He was and still is the manager of autozone. So I stayed back in this little office (which I @MONTH1 add has never changed, even @NUM4 years later.) and I was going to have to be patient. REALLY patient. My mom had brought this doodle thing so I could draw, which only kept me occupied for an hour. Then I had to just walk around doing nothing. that is until I found @NUM5 employees doing inventory. Hehe, they had these carts that had a top surface and a bottom surface. I shuck onto the bottom surface and held on. They pushed me around the store without even knowing it! I did that for about @NUM5 hours and still had almost @NUM1 hours to kill. I found this old coloring book lying in the girls bathroom. If it were me now I would @CAPS1 have touched it. But I did. I was only @NUM1! I dont really remember all I did after that but I know that it was so boring because its implanted to my brain. Is there ever a time when patience is fun??" 12 12 24 3 3 3 3 3 3 3 3 +19203 7 "Being patient is very difaclut. I was a the store with my mom, and of course @CAPS1 was taching forever. come on mom lets go do we really need this stuff @CAPS1 just continued shoping. Grrr I was so angry. I almost thought about throughing a fit. Finally, we were in line. As we got into the car my mom looked at me and said give me your phone. @CAPS2 why? The way you ackted in that store was horibal now I no I will alway be patient with my mom." 7 7 14 1 2 2 2 1 2 2 2 +19204 7 "Every year I go to my dads. He lives in @LOCATION1 so we stop ta the border. The border takes @CAPS1! So my family has to be patient, with them. On our way @LOCATION1 one time the border was packed. Our family had to be patient, or there were going to be some argueing. With four kids it is bound to happen. After an hour every ones patients were running low, so my dad kept repeating keep patient, keep patient over and over. We finnaly past the boarder everyone cheerd. So keeping patience is not the easyiest thing to do. We all need to learn just a little more about how to keep it." 6 9 15 1 1 2 2 3 2 2 2 +19205 7 "Are you a patient person? Well Im not! Well, I can be patient I just wont like to be. A few years ago my family got a gordon setter puppy. Since theyre kind of rare in @LOCATION1 we had to go all the way out of @LOCATION2. A couple years later we bred her and ended up with seven outrageously cute puppies. The puppies crawled and barked within a matter of weeks. My dog had a tough time with them annoying her, but she lasted. Two particular puppies were trouble! Patience was needed to handle them. its hard to handle on puppy jumping in our pond and swimming across the deep end and another climbing chain link fences. We kept an eye on them @NUM1! They barked if you got them out of the water or off the top of the fence. The fence climber left our home first. I was so sad. When there was two puppies left (waterdog and his sister) they ran around the house like maniacs. My brother and I had to be patient with them. Then all of a sudden, they transformed into sweet little puppies. I didnt want to get rid of them, but we had to. Our puppies showed me patience always pays off no matter how hard the work is." 12 12 24 3 3 3 3 3 3 3 3 +19206 7 "@CAPS1 The bell had finally rang and it was time for lunch. It felt like math class would never end. I rushed to lunch without even stopping at my locker. When I got there, there was a line for lunch that seemed like it stretched for a mile. I knew I was going to have to be patient. I got in the huge line. I stood there and waited. Every minute felt like an hour, but I understood that it was a very busy lunch day, so I justed waited. Several minutes later, I was near the front of the line. All of the sudden, seven girls just cutted in front of the line because their friend let them. Even though that made me angry, I didnt complain and stayed patient. I soon got my lunch. In conclusion, that was the time I was patient. I was understanding and did not complain." 8 8 16 2 2 2 2 2 2 2 2 +19207 7 "During the @DATE1 between forth and fifth grade, my family and I went to @LOCATION1 @CAPS1! @CAPS4 of the rides had lines, but none of them had line as long and the @CAPS2 @CAPS3. The line was huge! As my brothers, their best friend and I approached the @CAPS2 @CAPS3, @CAPS5 thought @CAPS5 would never get on. My dad said to just wait, but @CAPS5 didnt see the point. When @CAPS5 got about half way, one of the employees shouted, @NUM1 more minutes! and @CAPS5 @CAPS4 became more excited. Eventually, @CAPS5 made to the front of the line! @CAPS4 @CAPS5 had to do was wait for the current trial was over! But then, the speaker came on, @CAPS4 rides must stop until told to continue. A thunderstorm has rolled in and @CAPS5 must because of safety issues. @CAPS5 had @CAPS4 considered leaving, but had a feeling @CAPS5 shouldnt. @CAPS5 talked with some other kids @CAPS5 met in line. @CAPS5 played games like rocks, paper, scissors while @CAPS5 waited under the pavillion above the line. Once the storm rolled away, they allowed us on! The ride was a thrill! I had wind in my hair, a small mist from the rain, and a thankyou from my dad for keeping us in line." 10 12 22 2 2 3 3 3 3 3 3 +19208 7 "The time I was patient as when I was getting my dog. I had gone to a jazz festival with my mom, my sister, and her friend. We were walking past a last chance rescue and we went to see the puppies. My mom didnt want another dog but when she saw our future dog boxter she gave in. he has grey fur with some black spots and and a black line running down his fore. At the center of the ???. He was a grown short hair blue healer mix. We asked the lady if we could get him but she said they are going in sport and we could buy him there. We got in the car and ??? to ???. we signed the forms and played with him in the store. But ??? down town with him on the sosh and we got some ice cream and went home." 9 10 19 2 2 2 3 3 2 2 3 +19209 7 A time when I was patient is when I had pink eye. I was patient because my family went on vaction to @CAPS1. The first night we got there my eye was starting to itch and became all red. So we decided the next morning that we would take me to the doctors office but there wasnt one around but we found an ergent care. So we went there. We waited in the waiting room. Finally the nurse called out @ORGANIZATION1. So we went into the room. We told her we needed eye drops for me. She said ok Ill be right back. Then me and my mom and I were waiting and waiting for the nurse to come back. An hour went by and we were still waiting. I was getting really unpatient. Then finally she came back and told us that she was working on another patient and told us once again she will be right back and told us the doctor would be in there soon. We said ok. Once again two hours went by and we were still waiting. Finally the doctor came with us and told us he was gonna bring my prescription. Then yes he did come right back. Then my family and I left to go back to the hotel to gather our stuff to go to the campground. So that was a waste of @NUM1 hours of my vaction. Thats a time where I was patient. 9 8 17 2 2 2 3 2 2 2 2 +19210 7 "I remember a time when I was patient. It was at my cusins house. It was very boring though. I was also sad and lonly, at thetime . so I am going to tell you. It was not long ago ,I was at my cusins house .Everyone except me .There were not enough four whielers ,so I was the only one left out .I felt so lonly .I couldnt believe how I was bored I was .All I could do was woch with envy .Everyone was having fun except for me .Everyone was screaming with joy and lafing intill they would cry because they were having so much fun .Then my dad ???a corner of cunies for me .I smile to try to look like I am having fun then he asks me if I want to go I say yes ! So I I hop on the four where there was like no tomorrow .I knew it can just a little and main thank you to my dad , and take off .I could not imagen how much fun this was .I felt the breeze hit my face ,my shirt flappin on my back it was amazing . I wish this day would neve end I said screaming with joy .I had a lot of fun that day .I never had that much fun in my life .A lot can happen when you are patient .Even though I was bord at the beginning it was worth it in the end that was a time I was patient ." 11 12 23 3 3 2 3 3 3 3 3 +19211 7 "Nana! Nana! Nana! Nana! @PERSON3 is hurt!"" I yelled. ""@CAPS1? How? """"@CAPS2 bleeding by the highway at the corner as the fence @PERSON1's with him. ""@CAPS3 replied ""papa! Call @PERSON4 @CAPS4!"" nana yelled ""@CAPS5 get @PERSON1 and come inside!"" nana exclaimed. ""@LOCATION1, @CAPS6 we @CAPS7 leo!"" @LOCATION1, @CAPS6, nana, and popous carried @PERSON3 (@PERSON3 is a horse) to the car port and took a look at him. Hours later of trying to keep him warm @PERSON4 arrived. They got @PERSON3 on a talk. And started to bandage him up. They tried to get him to stand up but @CAPS11 wouldn't. @PERSON1 and I were wating in the house trying to wait and see if @CAPS11 was going to live. @PERSON1 decided that she was going to help out with her hourse. They carried the table with @PERSON3 on it to @CAPS8 his mom. @PERSON1 was behind @CAPS8 when she set the table down. And @CAPS8 kicks @PERSON1 to the tree. The next day @PERSON2 and I were putting a tent up in the back yard. So the horses could cool down. Nana called the vet to see @CAPS1 they could do. They got their @NUM1 minutes later they said that they will stich him up. And see @CAPS1 else they could do. They stitched him up for three hours. They said to watch him and see if any wounds would come out of their stitches. They also said they were going to check up on him the folowing @DATE2. That @DATE2 came and they took him to the statules and took care of him for a while @CAPS11 eventuly got belter. That's how I showed patince in the @DATE1." 11 8 19 3 3 2 3 2 2 2 2 +19212 7 "There has been many times I have been patient in my life before. But I think this one will intrest you most. Finaly we get to go to @CAPS1. @CAPS1 is this big indoor water park in @LOCATION1, @LOCATION2. I have been wanting to go here for years. When we get there my first thought is paradise little did I know that there was the biggest lines I have ever seen. And the lines were not just for the rides they were for every thing. In two days of fun it is already our last day at @CAPS1. So I wanted to ride all the rides one more time. my mom told me to go get my swimsuit on so we can go to the park. So I did. When we got to the park the shortest line I saw was probably an hour long. I was so disappointed I only got to go on like @NUM1 rides. But I knew it was time to go and leave paradise. We left around @NUM2 thinking we would be home by about @NUM3. And we were on our way back home. I was so bored it felt like it has been @NUM4 but really it has only been one hour. It was taking us so long to get home because it was snowing really badly. I asked my mum when we were going to get home she said just be patient. So I just went along with it and sucked it up. @CAPS3 we are home. I say running inside. In my head I am thinking that was the longest ride ever. I look over at the clock it was @NUM5. @NUM6 longer then we thought. But I had to go to bed right then (dans it no video games). That is a time I displayed patcience." 8 9 17 2 2 2 2 2 1 3 3 +19213 7 "I believe that patience is a good characteristic in a person. Being patient is good because you have to wait without getting angry of frustrated. For example if you were in on ????? would have lot of people wait in line to the ??? , if you're patient you would wait but if you're not, you might leave the line and get out. People might you now when you are patient??? Impatient people get angry quickly and cannot wait. Though wait things ??? , which is not nice. Im conclusion I believe that being patient is very important in life." 5 7 12 0 1 2 2 0 2 2 3 +19214 7 "I have been patiencent a lot of times but right now me and my friends are saving up to meet @PERSON1! Thats alot of patience just for one ticket its @MONEY1! So just imagine how long you have to wait to save that much money! Its hard being patience it exspecially when your are going to meet a celebirtly that you have the hugest crush on! I have been patiencent a lot during this process of saving up money. No matter how hard its going to be I can do it with patience. My friends and have been patiencent and still are. I meant could you stay patiencent if you were goning to meet your favorite celebirty that you love? Well its not that easy first off it takes a lot of patience to do chores and take care of your animals, plus count how much money you have. And when people borrow your money that really sets you back. But like said no matter what we are going to save up @MONEY1 plus tat to meet him and we are going to be patiencent the whole time we save up. It is a lot of fun because you get to learn a few lessons and you get to see and learn how to become patiencent. Overall patience is every where and you use patience in a lot of different things in life." 7 8 15 2 2 1 2 2 2 2 2 +19215 7 "I had a friend well she is @CAPS4 best friend and we know each other from @NUM1 grade then in @NUM2 grade she said she said she has to move to @LOCATION1. So she moved and she would call me all the like two time a week. I would always answer and talk to her for about three hours. I will always remember her. Until this one day came she called and @NUM3 was kind of busy because there were people over are house. One of @CAPS4 mom friend calls me and I told @CAPS1 (@CAPS4 best friend) hold on someone is calling me she said okay so I left the phone on @CAPS4 bed while she was still o the phone. I went to the living room and @CAPS4 moms friend said can you get me a glass of water and @CAPS4 moms five other friends said the some thing. I went and got them water. After that @CAPS4 mom said go take out the trash so I went and put on @CAPS4 scarf and took at the trash out the like @NUM4 mins I had her waiting. When I took out the trash @CAPS4 best friend was and she said @CAPS3 can you stay outside with me and play for a little bit and I forget all about @CAPS4 friend on the phone. I stayed outside for about @NUM5 min. then said I got to go back inside. I ment in and sat on the sof and @CAPS4 moms friends that were over are house were talking and I sat with than talking laughing, playing, and watching t.v. After two hours and a half while I am watching t.v. I tell myself what am I forgetting. I knew I forget something, but I didnt know what so I get up and I walk around the whole telling myself what did I forget when I get to the room I was talking to @CAPS1 in I seen the phone on the bed and I picked up and said @CAPS3 @CAPS4 @CAPS5 @CAPS1 I forgot about her. I said hello just to see if she was still there even if I had a feeling she didnt which did. She told me you kept me waiting for the longest time ever. I told her wow your so patient I would never wait that long. She come on youre @CAPS4 best friend. I would wait forever for you so we continued talking." 10 12 22 3 3 2 2 3 3 3 3 +19216 7 "Have you ever been patient? I know it is hard for me to be patient! I usually am not patient because I really like things done right then and there, I dont really like to wait. I can be patient! I can be patient when I am waiting short periods of time. Usually I like to rush, not on my work, but socially, I rush! Being patient means to wait, usually without complaining or moaning. An example of patience is when you are going to a party at @TIME1 and it is @NUM1, you have to wait for a long time! Usually the time seems to go slow! Patience is a quality that is important. That is why I am working hard to try to be patient. You should too!" 7 7 14 0 2 2 3 0 2 2 3 +19217 7 "Last year, @DATE1 it was my birthday, so I told my @CAPS1 what I wanted for my @DATE3 and out of everything I said @CAPS1 I want a @CAPS2 (@CAPS3 station @CAPS4). So the @DATE2 we go out at three in the morning to get my @ORGANIZATION1 and we were at best buy. So we walked up to the store and we opened the door and there had to be over @DATE4 people in the store. So we walk over to the game. I she and their was two text and their was five people in the section so we grabed one of the two. But when we got in line half of the people in the store were already in line. Then we waited in that stupid line forever it literally to us like hours to get through to the front of the line. We got home at @TIME1. This story is not about what I wanted its about patience. So I was patient for two and a half hours waiting to buy my @CAPS2, werever you go use patience you will get thought about and treated nicer than you expect." 8 8 16 2 2 2 2 2 2 2 2 +19219 7 "One day my dad and I decided we would go fishing. He kept saying five more minutes, so I just sat there in the car. Finally I got out to find him a sleep with a note saying @NUM1 more min." 6 5 11 1 2 1 2 1 1 1 2 +19220 7 "A time when I was patient is when I was at home watching my baby brother for for my mama so she can go grocery shopping and my brother was crying cuz @CAPS2 was sleepy, hungry so I put him to bed and I had to be patient cuz @CAPS2 was a bady and my mama was gown for a long time and she had to do other stuff like shop for clothes, @CAPS1, shoes, when my brother woke up @CAPS2 was cying and I couldnt stop him from crying and when my mama pulled up @CAPS2 stop crying and @CAPS2 started laugh Thats a time when I was patient!" 6 4 10 2 2 1 1 1 1 1 1 +19221 7 Win i wenT @CAPS1 @CAPS2 @CAPS3. I was in @CAPS4 and The @CAPS4 Was very @CAPS5 @CAPS6 @CAPS7 The shown my patience were noT @CAPS8 @CAPS9 me @CAPS10 so iluT in @CAPS11 of eveone and I got fron @CAPS12 row seuot on the @CAPS13. 4 4 8 1 1 1 1 1 1 1 1 +19222 7 "I am writing about a time when someone I knew was extremely patient. He was having to be patient with one thing: @CAPS1. When I was very young, once at a hotel pool, I had almost drowned. Since then I was afraid to swim. So, my patient friend taught @CAPS1 how to swim at a pool in his trailer park. What he had to be patient about though was getting @CAPS1 into the deep water of the pool. He wanted @CAPS1 to go to the deep end of the pool but I was to afraid I would drown. So then he decided he needed to get @CAPS1 into the deep end somehow. We got out of the pool and walked to the deep end. He just told @CAPS1 to jump in, but he shouldve realized I wouldnt just jump in. He did eventually get @CAPS1 into the water of the deep end, but all I would do was hang onto the edge and not let go to swim or anything. So after that, I just got out and he began to get a little frustrated. He was patient though, and kept working with @CAPS1. After what seemed like hours, he pretended he was going to give up on @CAPS1. I told him if he stayed, Id go in the deep end. So he did, and I jumped in and realized it wasnt so bad after all. So now I love swimming, especially in the deep ends. Thats how my friends hard work and patience payed off for both @CAPS1, and him." 9 8 17 2 2 2 3 2 2 2 2 +19223 7 "It was the @DATE1 and I, @PERSON1, had applied for @ORGANIZATION1. I had applied in @DATE2 and was patiently waiting for a letter addressed to @CAPS1 @PERSON1 from @ORGANIZATION2. From the beginning of the @DATE1 I had checked the mail box every day. Every day as I ran down the drive way I hoped that day would be the day the letter would come. I was afraid because @NUM1 of the @DATE1 had passed and still no letter. It was like waiting for that one moment at the climat of the movie when you think the main character will make his move. @CAPS4 was the first @DATE3 in @DATE4 and l was eating lunch. I thought to myself ""@CAPS2 is the day it has to be."" I heard the sound of the mail truck pulling up to our mail bat and botted for the door. As I met the mail lady she smiled, everyday she sees me. Every day she sees my smile fade as I check the mail for that one letter address to @CAPS1 @PERSON2. She looks at me and says ""@CAPS4 is that day."" Patience is a hard thing to get, but in the @DATE1 I had had my fair share of patience." 8 12 20 2 2 2 2 3 3 3 3 +19224 7 A time I was patient was when I really wanted a game called x-men @CAPS3 wolver in and my mom said I had to what until @CAPS1 came strolling down the road. I can understand why she said that because we were a lttle shorf on cash at that time so we had to make the rest of what we had last a little longer. After a few week had past I forgot all about the game then on @CAPS1 day my sister and I got down stairs so fast then when we were oozning gifts I noticed a gift with my name on it. I go grab it and I opened it and it was it x-men @CAPS3 @CAPS4 and tow other games that I wanted offer that I go up to my room grab my @CAPS5 and headphones pop in x-me @CAPS3 and played it all day long 5 8 13 1 2 1 1 2 2 2 2 +19225 7 "One day, I had to be patient why cause I had ask my mother can I go skate but she told me to be patient so we wait and till she said yea. After wait we was mad cause my mother had to go get the money for my sister. So next awayz be patient but if you do not be patient you will not get your wayz. Like one day my sister haven and I want to go to the movie with our friends so we had to be patient for a whole hour why cause we had to wait and till mom got off of work for she can give haven @MONEY1 and me @CAPS1 @MONEY1. So that is how you be patient." 6 4 10 1 1 2 2 1 1 1 1 +19226 7 "When my friend and I went to @ORGANIZATION1, it was very busy. We dint have to wait a long time , @CAPS1 my ride we ??? to wait a longtime to get on @CAPS1 my friend was very patiente and I was not. I kept complaining on how long it took. @CAPS1 eventually we got on the ride and had a blast. It was horrible waiting, @CAPS1 it was worth it because the ride was the @ORGANIZATION2. It's the best ride in the whole wide world." 8 6 14 2 2 2 2 1 2 1 2 +19227 7 "To write about a time I was patient is hard for me to do so since I am not a patient person, but I am going to try. Three days before the trip to cedar point can not wait for it to be here. I did try to make it rush by, but it didnt work. I had been off of school now for @NUM1 weeks and I had did everything I wanted to do. When me my mom, sister and friends go we always have a lot of fun (of corce). Every night since , I have known we are going to cedar point I would sit there and think one day when many kids would ask and complain to there mom saying, cant it come anymore, but me never, not one I know that no one could make time go by faster. So I waited did my chores, packed and watched tv. Trust me it was very long, very boring and is itching at me to complain but I didnt. I took a deep breath every time, this would happen to me. And say only a little wait compared to other things. I would also think about how lucky I am to be going to cedar point. I know I am a very impatient person and I am trying to fix it. This is what I try to do and do while waiting for cedar point to come along. This is what patient is to me, and in my life. This is also a time in my life when I was patient." 11 12 23 2 3 3 3 3 3 3 3 +19228 7 "Being pactient. Well when I have a baby cousin coming from @LOCATION1 and she was adopted from call for in a so I have never sean her befor I have only seen her in the hillper and photoes. So I have heard her voice on my phone before she sound sound so cute and Im missing my ant and uncle too, I havent seen them in @NUM1 years. Out @CAPS1 still being past waiting for them to come tomorrow or today. Its a surpize I being pashing." 8 4 12 2 2 2 2 1 1 1 1 +19229 7 "It was a cool @DATE2 @TIME3. The sun was just coming up as I got into my box blind. It had snowed the @TIME1 but it was only @DATE1. Then again I was in the upper penisaala of @LOCATION1. I was hunting for a monster ten point with my brand new @NUM1 and @TIME2 gun could kill a dear @NUM2 yards. I have been sitting for an hour but it felt like a day. Ive only seen a squarile and he was fun to watch in all but not the rush you get when you see a deer. @CAPS1, @CAPS1! I was looking in the direction the sound was coming. @CAPS1, @CAPS1! gun up @TIME2 time my adrenilen hicking in. @CAPS1, @CAPS1! I see move ment put my scope on it and I see it. Its a its a grouse? I glowered the gun calmed down and watched it eat some corn. It was @NUM3. time for lunch and all I had was a turkey sandwhich, a apple, and a bottle of water. I started with my apple eating slowly while looking around when I saw a brown figure move. I grabed my gun with my apple in my mouth. So picture @TIME2 a guy with all come on. An apple in his mouth, and look in a scope. As I looked I realized it was him the big @NUM4. Massive horns, a big body and he was proble five maby six years old. I put my crosshairs just be hind the shoulder and I diehed the safety off. Slowly pulled the trigger. My mind a blur and @CAPS4! perfect shot. Later @TIME2 I found him and he was big @NUM5. I got him mounted and thats were he is now." 12 11 23 3 3 3 3 3 3 3 2 +19230 7 I was patience when I had to wait in line for @NUM1 hours just to ride ???. Then I got on it took off @NUM2 miles pa hour. I was stuck to it for five minutes then it went down ??? @NUM2 miles pa hour. I got off and rode it miles cum force and I was faced to it. The drop is ??? . The ride was @NUM1 minutes long ??? @NUM5 people. I went on the powa hour it was sence. My ??? was the reply it was fun to. I came home as it was in the @TIME1. I woke up and ate breakfast. The whole time is waied patience in everyone. 8 5 13 2 2 2 2 1 1 1 2 +19231 7 "The time when I was patient I was about @NUM1 because I was in @NUM2 grade im @NUM3 now but back to what I was sayin, I was sayin that I was seven in the @NUM2 grade and I was standing in the lunch line and these kids just kept on cuttin me in line jus for some lunch and I just sat there, being patient and myself. but I just stood there so when we did something else I was patient when we got up there I was ok it was ok cause I still got to eat." 7 4 11 2 2 1 2 1 1 1 1 +19232 7 "One day when I was patient is when I was waiting was waiting @CAPS1 @NUM1 to come out of game stop. One day til @CAPS1 @NUM1 come out I kept looking at the signs of the game and I said @CAPS2 must be a good game. So instead of waiting at game stop I went home and played @ORGANIZATION1 football @NUM3 on my xbox @NUM4 then I got tired , tired and more tired so I fell aslteep on my pep game chair till the morning. My older brother woke up and said lets go to gamestop to get @CAPS1. So we went to game stop and waited in a long line for like an hour and thirty minutes til in was are turn to buy @CAPS1 it cost like @MONEY2. I had @MONEY3 my brother had @MONEY1 he didnt wanna put no money in for the game and I said Ill pay @MONEY3 and you will @MONEY1. So we brought the game and played it tell we beat it." 9 8 17 2 3 2 2 2 2 2 2 +19233 7 "Here is a way that I had to be patient, and we all know that??? has to be patient with others. ??? Yes, it was my birthday. I wasnt thinking of my birthday party, my cake or ice cream, no I was thinking of getting the money, first present no money. Second present, yes, there was money. And so on until I got to the last present. It was a card so it had to have money in it. I couldnt wait until I could buy something with it. How does being patient the into this, well I had to wait, and wait, and wait. It took nearly five whole months! Could you believe??? so much there ??? ??? ??? ??? ??? ???, and have to wait that long? Well, anyways it payed off. When I finaly got it I couldnt believe it. It was the best thing in the whole world. That is why being patient is very hard to do, if its along time, but its also a good thing to do because it pays with every time." 9 9 18 2 2 2 3 2 2 2 3 +19234 7 "Tick, tock, tick, tock. Every mustle in my body urged me to run and look for my dad. Tick, tock, tick, tock. But I stayed put, my eyes scanning the crows. Tick, tock, tick, tock. And than I saw him. Tick, tock, tick, tock. I ran forward and gave him a giant hug. The clock in my head stoped ticking. Hi @CAPS1 @CAPS2 and @CAPS1 gonna tell you about a time I was patient. I think that I was really patient when I got back from a trip, with my friend to @LOCATION1. I was waiting on the airport for my dad to come and pick me up and I was so exited!you see I had been gone for two weeks and I was really homesick. It took everything I had to not go looking for him, but I knew I couldnt just go running off I had to be very patient. In the end it was worth it because it would have been harder to find him if I had went looking for him. As you can see, I think I was very patient when waiting for my dad in the airport. Thank you for listening." 8 9 17 2 2 2 2 3 2 2 2 +19236 7 "This a story about a time when I was patient. It was the @NUM1 @DATE1 we were on the plane about to go on a cruise, when we got to the ship I was so excited I was thinking how much fun I was gonna have, think what my room would look like, and going to all these cool new places. So we got on the dock and there wa a line and I was patient an waited to get on, @CAPS1 there was another line to check your passport, so I was patient and waited. @CAPS1 there was another sticken line. It was to get our room keys, but I was patient and waited again and just stood there for a little bit and it was done, but wait you would never guess, there was another line. So like all the other lines I stood there on my iPod listening to music. They my dad said ready, I said ready for what another line he said no to look at your room and relax . I was so excited. Finally we where done with the lines no more for a white. So I open my door with my very special key that we had to wait in line for and looked at my room it was amazing. But the bath room was a little small but it was great. I was so happy to final done with the lines no more! That is a time when I was patient." 8 8 16 2 2 2 2 2 2 2 2 +19237 7 "One time I was going to see my friend that lived at the end of the street. I walked there, taking in the scene of the sun going down and the young ones playing and laughing carelessly. A @CAPS1 boarder waved at me but I didn't trust him enough to wave back since he seemed like a weird o. not to be mean or anything. I finally got there and knocked on the door. She answered about @NUM1 seconds afterward ''oh, hi @CAPS2!'' she exclaimed and smiled kindly. ''I have to finish my homework and eat. ''I nodded. So I went to wait in the park. I sat on the swing and swang back and forth. An hour went by. I patiently sat there. I didn't know if she was coming out and decided maybe I should go home. It was getting dark. When I got up she was outside. I told her I had to go home because it was late I could come back tomorrow, through. That was a time I was patient." 11 12 23 3 3 2 3 3 3 3 3 +19238 7 "One @CAPS1, I was very patient when our flight got @CAPS2. We were going to @LOCATION1 that @CAPS1 when all of a sudden the @CAPS2 sign came up on the @CAPS5. I was kind a sud but I said I had to be patient! Our flight was ??????& @CAPS14. So when we were waiting we did a lot of things! First we went to ear in the food court! We delceced to go to chile's. we also had to wait for our food! Got some good hach's & they were very good! Then we went to the @CAPS6 @CAPS7! At the @CAPS6 @CAPS7 I got @NUM1 key chains for my friends! Then I got myself @NUM2 magizens & a reading @CAPS10! I also get some @CAPS11 @CAPS12! They were very good! Next we just took a little walk around the @CAPS13! Then we went and sat down & relaxed for couple @CAPS14. Then I fell asleep! when woke up we were just about @CAPS15 to board! I was very @CAPS16 to finally get to @LOCATION1 & enjoy all of the @CAPS17 weather! I learned that being patient really does matter! That was the Time I was really patient" 9 11 20 2 2 2 3 3 3 2 3 +19239 7 "Being patient! Patience is a good learning skill. The three step to being patient, being quiet, not complaining, and waiting a while if you have to. My mom and I went hunting with @PERSON1, my step dad. We had to be quiet so a deer could come. We sat there being quiet. I think it was the quietest I've been ever! All of us were getting sick of being quiet but we had to be in order for a buck could come. It was very cold and l was dressed warm but I was still could. There was a little heater in the shead thing we were in. we couldn't complain being cold or tired. Or just waiting, so we all sat there not complaining that was good. When l was about to ask if we could go in a ten pointer came out of the woods to find something to eat. We were waiting patiently for the doer to come closer. @PERSON1 loaded the gun and pulled the trigger. The buck jumped and ran of. Purted shot! We got out of the shead and searched for a blood trial. We had to wait a while to find the deer but it was wroth it. The right way to be patient, shuting your mouth, not wining and waiting. A good skill to learn is being patient. Being patient" 8 11 19 2 2 2 2 3 3 2 3 +19240 7 "Being patient is a very hand thing for me but one day I learned my lesson. It was a @DATE1 and my mom woked me up at @NUM1 she say we had a lot to do. When we got in the car I didnt know that I was going to have to be paitent the whole day. First on our way to the @ORGANIZATION1 market we got stuck in a traffic jam for about @NUM2 mins to an hour. When we finally made it to the @ORGANIZATION1 market we had to stand in line for about @NUM3 mins. I told my mum Im ready to leave but she said I have to be patient and that being inpatient is a bad thing. After we left there we had to take my grandma to the doctors it took them almost two hours just to call her name. then it take another @NUM4 to get checked out. After that we went shopping for some clothes and shoes and the mall was very crowded and busy. We were at the mall for like four hours and most of the time we were standing in lines. Finally, we went home because it was time for my mom to start cooking. I learned that I need to work on being patient because it is a part of life." 9 7 16 2 2 2 3 2 2 1 2 +19241 7 "At one @CAPS2 in left you would have to be patient. Being patient means that you are understanding and tolerate. Somebody thats patient experiences difficulties without complaining. There was one @CAPS2 in life when I was patient. Yay! Yag! My mom is taking my friends and I to @CAPS1 @CAPS2. I called many friends, and told them if they wanted to go. Meanwhile, we packed up some water bottles and hopped into the can. We were all looking out the window. OMG! Look at those big roller coasters. One of my friends shouted out. There we were at @CAPS1 @CAPS2; the first ride I saw was the @CAPS3. The highest and fastest roller coaster there well, it only lasted @NUM1 seconds. So we were all talking about it, then we decided to go on it. Wow! The line is huge. We all said. I shouted out its ok, I heard its an awesome ride lets just all be patient. Meanwhile, we waited and waited, until we were finally the next people to ride. We went on the ride, and then all of a sudden the ride start, we didnt know and it only lasted @NUM1 seconds. We waited about two hours but it was worth it. In conclusion, I really do think that being patient is a good thing in life, even if it takes hours. I learned so much from just going on the @LOCATION1, we should all be patient because no matter where you are, you will always need to be patient." 8 8 16 2 2 2 2 2 2 2 2 +19242 7 "I remember one time I was impatient, it was when my called and said she was go send me @NUM1$. @CAPS1 I asked her when she was to send it and she said @DATE3. Today was @DATE4 so that mean I had to @NUM2 days. @CAPS1 the next day had cameup and the ??? truck came by and I thought I had mony but it wasnt @DATE3 yet, @CAPS1 I said, @CAPS2. @DATE1 came, I was still waiting so I tried going to the day can past by @CAPS3 it! So @CAPS1 it was @DATE2 they had my favorite game on sale The bully the case had a yellow sticker that @NUM3 and no tax at all,@CAPS1 I was mad and @CAPS4 went home. My dad woke me up and said its @DATE3 I @CAPS1 I rose up ate breakfast @CAPS1 check the mail, @CAPS1 it bills, bills,bills and my money my sent we an ???. At last I said I have money, so I bought some icecream @CAPS1 I bought my favorite game bully. thats the time when I was patient." 9 8 17 2 3 2 2 2 2 2 2 +19243 7 "Patience in @CAPS1: Understanding and being toterant is what makes up patience. In order to play on any sport team, you have to have patience. I say that because you might not always get the pass or score the point but you are still important to them team, youre time will come. A time when I was patient was when I was on the @CAPS1 court. It was during our game the carman @PERSON1 girls @CAPS1 team was going against flushing. A young lady from flushing not fouled (I didnt even see it, truth be told Im not even sure if it happen but you cant argue with the officials) she was shooting her free throws. She was taking forever! Im surprised her shot wasnt took. What was she waiting for? New @CAPS2? I didnt say anything. I just stood nice and patient! Eventually the girl shot (@CAPS3 @CAPS4) she didnt make either of them. Anyhow, I was so proud of myself ,I felt really happy for myself. Im just now realizing that, that whole time I was standing there is didnt a face, or say anything or think something in my head! I was just standing tall for the first minding my own business and untelling to see if it would go in. Then on the second shot (you can now bar out) I just assumed the box out position. Sit down, but down hands out and face the basket. I was really happy for myself and I even told the girl good shot. Hence, it pays off to be patient. One, I got the rebound and my teammate got the point and I also got an assist. Two, I was displaying the right way to act to the opposite! Nobodys perfect, youll have to wait and see who will score the next point!" 12 12 24 3 3 3 3 3 3 3 3 +19244 7 "It was my first game. I was pumped ready to go in, coach yelled big guy and I was by his side. Then he said next play you re going in. Ther the assistant said no I wasnt aloud to. The whole time I didnt complain. I never said one word to anyone. I helped other people. It was still fun. The whole time at least I didnt complain and make it worth for everyone else. The whole time I was on the side lines. Never went in not ounce. I was very patient. Not to say I wasnt mad. At least I got some exercise standing there. The whole time I suported my team mates. I encouraged. I help in any way shape or form. I listend to them complain. But I did give suport. There I was so mad I could have killed. I was ready but my coach said no. It has my time to shine. That one stupid word stood in my way no. But at least I learned something." 10 9 19 2 3 2 3 2 2 3 2 +19245 7 "Hunting when you are turkey hunting you need to be extremly still and quiets did you have to have a lot of patience. If you move even a musle all the turkeys will run away. Some times you will be sitting for hours and hours just waiting on the one shot. I remember when I was hunting with my dad @CAPS1 sitting under a tree fro probablee three hours and finally a turkey came, unfortunutly just about when I had a shot my dad scared them all away but I still had the patience to stay out there for another @NUM1 hours. That is my example of patience." 8 8 16 2 2 2 2 2 2 2 2 +19246 7 "One day, two years ago I was going to visit the @ORGANIZATION1 train @CAPS1 was a @NUM1 hour wait once we got to the froun of the line we haD to go pack to the end because my mom forgot the tickets so how we had to wait 21/@NUM1 hours to get to the begining once we got there the gay told us that we could of told him our name and he coulD of founD our tickes on line my mom got really maD but we got to go on the @ORGANIZATION1 train wich was really fun. thats the time I haD to @CAPS2 pachiant for over @NUM3 house hanDing in extreme heat." 7 8 15 2 2 2 1 2 2 2 2 +19247 7 In my opinion being patient is when your waiting your turn for some thing. And being impatient means not writing your turn. In your whole life you have patientence because sometimes you might just have to wait. I have patience and I know a lot of people who have patience to. I was raised to have patience when your doing something dont rush because you can mess up. Dont go way to slow because then people will think you dont know how to do it. You can just go at your paste so you can get it done right and the way you want to. People who dont have patience arent always happy all the time. 5 8 13 0 1 2 2 2 2 2 2 +19248 7 "Have you ever had to be patient before? I have and this story will tell you all about it. Last year on my birthday my uncle @CAPS1 promised me a phone but I had to wait for him to get the money. I had to be patient. So I waited and then @DATE2 finally came, more months passed and i still hadnt heard from my uncle. I began to become fustrated with him because he promised me that phone. I told my mom and she said he has always been like that and to keep my patience so what if he got it a little late. I was thinking in my haad A little its been almost a year! Then on @DATE1 my uncle came over for my family reunion.Then he told me he knows that I thought he forgot about the phone. I knew he was right but just then a little light bulb went off in my head he couldnt have forgotten about. Soon it was time to eat and that is when he presented the @CAPS2 touch to me. I was so excited I just had to jump up and give a hug. He told me that whenever he promised me something he would test my patience to see if the wait was worth waiting and in this case it was. So whenever your patience is being tested keep your cool it will all come to you soon. To conclude this story I want to say patience is important to have because without it you will never be able to wait for anything in life. The @CAPS3." 9 12 21 2 3 2 2 3 3 3 3 +19249 7 "You will say that you are board very fast. Most people are cause when you get out in the woods theres nothing you can do except watch and waist if you make one noise you will see nothing your whole hunt. Hunting is all about patients but it is a great reward when that doe, buck or whatever youre hunting is rite in your sight. There are sometimes that I have been impatient and theres times that I have been patient when I was younger I was very important I would got up and walk around but when I got older I got more patient like when. I got my first deer it was an eight point. Hunting @MONTH1 take patients but I like it and its fun." 6 9 15 0 2 2 2 2 2 2 3 +19250 7 "One time I was patient was when I had to get some @CAPS1 done and my mom was on the computer. I needed the computer for my @CAPS1. She told me she would be only a few minutes. So I waited, I decided to watch an episode of spongebob while I waited. As the episode ended I went back to the computer. She still wasnt done! So I made some bagel bites which are pizza on a mini bagel. I ate @NUM1... and so on I got to @NUM2 and I started getting full. But I kept eating. I ate and ate. I was really hungry. I finally got stuffed, so I decided to stop. I went to check to see if mom was finally done yet, but yet she wasnt. I went outside to go play some sports with my friends. We were out there for about @NUM3 @CAPS2 got tired and eventually we all went home. As I walked in the door I looked at the computer it was still in use. I went to go take a bath because baths are soothing. I took a while in there because it was so warm and soothing. I got out. I went upstairs to change. I came downstairs and surprisingly my mom was off! I went to get on but she came in and said time for bed, so I woke up early to do my @CAPS1. This took a lot of patience because it was hard to wait so long." 11 12 23 3 3 2 3 3 3 3 3 +19251 7 one time I was in patient. We was an are way to see the point. The had family was with us. We all was in @NUM1 car and vans. I was like and the van @NUM2 and the car and @NUM3 in the car. It was like a @NUM3 hour drive. I was in the car with my mom and @NUM1 sister. We was and takere for like a hour. First I was on the fane then I was just having a family talk bye like an hour I was so in patient. And all I could here was my mom like be patient we gone get there. Im like no no I want to be there @CAPS1. She like we got all day. Then we stop to get something to eat. Then we was there. 7 4 11 2 2 1 2 1 1 1 1 +19253 7 "One time I had to use patience when we were driving to @CAPS1. It was in a minivan with my mom, dad, baby sister (@NUM1 months), and my aunt. We were in the van for about @NUM2 to @NUM3 hours. By the time we got to the hotel it was @NUM4 ocklock @CAPS2 time and,in @LOCATION1 it was @NUM5 or @NUM6 am. I was very tired of being patient, Im not a very patient person so my mom was very proud on how great I did with the baby crying and being stuck in one place for hours. It was very difficult but the outcome was great!" 8 8 16 2 2 2 2 2 2 2 2 +19254 7 "Being patient is hard. I hate waiting. For things days to come up, mail or packages, people, anything. Patience requires effort that dont have. I really have never been patient. I dont know many people, who are either. There is my mom who claims to be patient, shes is not! I think one of the least favorite phrases is be patient! I tence up and get frustrated when @CAPS1 inpatient! When @CAPS1 waiting to call someone I am tempted to call them a hundred times. I am patent when I want to be (wich is never), when I want to be and when I dont realize if I will be impatient in about three seconds because @CAPS1 done with the writing page and time isnt up yet." 4 6 10 0 1 1 2 0 2 2 2 +19255 7 "When I was @NUM1 yrs old my mom started making my @DATE1 present. She was going to make a blanket. Sadly she didnt find the blanket.I have to be patient. I had and it wasnt done, then ???. My @DATE1 was almost @NUM2 months ago ???. She ??? found a time to ??? that she ??? find ??? in @NUM3. I have been patient and every year on my @DATE1 and on @CAPS1 I ask if it is fiished but Im not. I s ??? I can be patient for alittle while???" 9 6 15 2 2 3 2 1 1 2 2 +19256 7 "One time when I was patient was when I was fishing. We where fishing on a cold night and no fish where bighting,. I was just @CAPS1 ther being patient caling sun flower seeds. My dad was getting mad and I was still @CAPS1 listning to the backeasard celtcs games. We where only catching little fish that night nuthing to eat or keep. We left at like one in the morning and went to get the boat on the tralor and I was pitch black and cold. I eventually had to get in the water and put the boat on and strap it down. On the way home one bentt traler tire popod ahead five miles away from home. I was still patient but my dad wasent. We stopped and whent out to look at the tire. We didnt have a spare so we drove home on our rim. that is the most patient I have ever been. To @CAPS2 this writing sample she could have explaned what a millennium is. That would make things more clear. Also she could stop useing I to start most of her sentences. That would make it more instening. In the third sentence she put were instead of was. That would make her sound smarter and get a better grade. In the second paragraph I dont know I she ment @TIME1. or @TIME1. If she said if it was a.m. or p.m. It would make the story more clear. If she corrected all those this would be a good sample." 8 8 16 2 2 2 2 2 2 2 2 +19257 7 When I was patient I was sitting at a restront. And I ordered my drink and mike was the first one. Then when we got our food they said it will take about five more minutes so I sat there it was fifteen minutes later when she came back and made the wrong food so I was losing my patients. so then I just relaxed. She came back with my meal thes time it was. The right one so I was very happy. And I was really hungry so I ate it very fast so when I was done they gave me a free descont because of the mixup they had with my meal. And my mom bought me something from a store for such great patient`s I had. And thats when I was very patient. 8 8 16 2 2 2 2 2 2 2 2 +19258 7 "We were going to @CAPS1. Me and my cousins were so excited! We were waiting the to ride the skyline. After we ate, me my cousins and my??? headed for the skyline. The skyline gave you the whole??? of cedar point. im so excited said one of my sisters. yaa me too! said the the other. We were walking towards it. It took really long. When we saw the line we heaked! this will take so long said my sister. I was so surprised my @NUM1-year- ol cousin her??? ???. wow it look really high said my cousin. @CAPS2t, worry we have @CAPS3 with us. Shell take care of us said my younger sister. Finally it was our turn. There were @NUM1 small kids behind us. Wanting to go on so badly. why @CAPS2t you go ahead said my cousin. I was shocked my cousin had so much patience. Usually she had start wanting to go first for everything! I was so proud of my cousin. We had a great time there. I hope we come back again!" 9 12 21 2 2 2 3 3 3 3 3 +19259 7 "Patience is a hard thing to have, but there is rewards to having it. I had a teacher that no one could remember to gave us our report card in band class. So after a few weeks I made a bet with him that if he didnt bring us our report card the next day he owed me a bag of raffles. Weeks went by, then months went by, until finally. It was the end of the year. And he still didnt have them. Once schools started up again and we were half way through the school year and mey band teacher walks in and gives me two packs of swittles. I then remembered the deal we had made and said?? yes are only suppose to give me and he told me the second one is ? being to patient." 7 8 15 2 2 2 1 2 2 2 2 +19260 7 "Patience is a valuable thing. Everyday I go to basketball practice to watch all my friends play. I do @CAPS1 practice because a few weeks ago, I broke my ankle playing soccer. It take patience to sit in a gym and watch your friends have fun for an hour and a half. Every @DATE2 and @DATE1 I sit on the bench and watch the team play a basketball game. I have the choice to @CAPS1 go to the games, but I have patience. So I go. It is very boring to just sit there but I do it so I can watch and play @CAPS2 year. You know now that patience is a virtue. It takes lots of patience to do really anything. Do you have patience? Patience isnt when your sitting somewhere for a while and get upset with someone. It is when you are calm and waiting." 9 9 18 2 2 2 3 2 2 2 3 +19261 7 "The one time when I was paitent was on the @CAPS1 of last year. Some of the reasons how I was paicent was by keeping to myself or as you know it being quiet. The @CAPS1 is not that hard but when you have to have paitence thats when it gets hard to you, and me. Pacents is key because you will have to use it for a long time! But lets get back on track shall we. On the @CAPS1 when you are done you have to wait for your class mates to be done. So in that spare time you can read a book or check over your work. Pacents is also important because when you taking the @CAPS1 you cant rush on it. You have to take your time and know that you are timed. Thats where pacents comes in! Sometimes when you are done with the @CAPS1 you can just sit there and think about what you did today the reason I say this is because of other people! If everyone in the classroom dont have pacents you are most likly to fail the @CAPS1. You have to have a silent and quiet room! Now if every body in the room and is being silent than you can and will do good. When I have the @CAPS1 @CAPS8 pacent when I am done because I care about other peoples work habbits with the @CAPS1. I understand that you dont have the @CAPS1 no more but it is being pacient! When I get my test results back this year in seventh grade I hope I did good because my classmates and I all had pacients! And rember pacents is the key thing to sucsses!" 10 7 17 3 2 2 3 1 2 2 2 +19262 7 "Oneday at school @PERSON2 was waiting in line to get his lunch when out of the blue @NUM1 kids poped right infront of him. @PERSON1 said to the kid they you know you have to go to the back of the line right. @CAPS1 we dont. Said the kid. Then a few minst later a girl named @PERSON4 (that @PERSON2 likes) was going to the way backof the line but @PERSON2 said she could cut in front of him. So she did. Once @PERSON1 and @ORGANIZATION1 got up to were they got there food and they were waiting to pay for it, when the kid @NUM2 spots away from @PERSON4 coudent remember his student @CAPS2 number to figuer out that he was a new student. So they had to make him. A sudent @CAPS2 number the he paid for his food. Fianlly they got through @PERSON4 sat down with had friends but @PERSON3 had @CAPS1 where to sit because his friends were outside. So @PERSON4 seen him and asked if he wanted to sit with her so he did. Fially he was done @PERSON4 asked if @PERSON1 wanted to hang out at recess and he said sure, but one of @CAPS3 friends was not done eating so they had to wait for her. When she was done the went outside this was done the went outside this was what @PERSON1 was waiting for the bell rang to go inside. He was mad but he got to hang out with @PERSON4 the whole time." 8 9 17 2 2 2 2 2 2 2 3 +19263 7 "Last @DATE1, while I was up at my families within my seep dad, taught my brothers, friends and I how to wares. It being the dareful am not really, I tied first. Using all the steps my step dad told me to, and being patient with myself, I got prepared in the water. Out of the blue [literally, we were on a lake] I got up on my skills just like @CAPS1! No I could make all! In when the water level end came around and I brought my boat up to the cabin. I insisted her to cry water at ring. But when we got out to the lake, and I had skilled a few times in a lowest was up to here to decide if she was going to try skilling for sure. We sat there for what seems hill an hour waiting for her decision. But, in the end she decided not to try. I was very proud that day because I didnt try to persuade was of pitch him into trying it. I was very patience with her. And although her decision was the wrong one in my opinion, I will not proud of myself to this day, for what I did on that boat." 7 12 19 1 2 2 2 3 3 3 3 +19264 7 "When I was @NUM1 years old my mom use to be unpatient all the time and got so annoyed at! But then one day she was going to take a shower but then people kept on going and she got patient for a while and I got up there. I saw her and hide. As I peeked from end to end she was still standing there, almost falling asleep and she was still patience. Another stepped in the bathroom and I quickly went there and said @CAPS1, excuse me but my mom is coming, shes been waiting. So I woke up my mom mom, mom wake up go take a shower! and she woke up and took a shower, after she came out ahh it kind of feel good that was better. The end." 5 6 11 1 1 1 2 1 2 1 2 +19265 7 "When I was about seven And my mom was pregnant with my @NUM1 sister. It was the night before she had her. We were all asleep. When my mom started to scream we all went into her room my dad asked her what was going on she said she coming my dad raced to the car put it in to gear and left without us and my mom who was about to have a baby. Then when my dad relized he forgot us. So when he got home to pick us up. It was already morning they took us to a room. They prepared my mom up. Me amd my little sister were waiting in the seats next to her. Then when they took her to get an ultrasound we had to wait. It was finally time to deliver her. Me and my sister and grandma had to wait outside the deveiring room we were so paitient it took over an hour to get her out. when they were stiching my mom up the brought my little sister to get all cleand up. When we could see her through the window. I had to see her get her first bath, shots And when the put those patches on her I had thought she was an @CAPS1. But when they brought her to our room my mom looked dead and my @CAPS2 baby sister was so beautiful. My mom said she was so proud of us being so patient waiting for our little sister. My mom said she would name her @PERSON1. And we all liked that name. I was so @CAPS3 that day." 7 12 19 2 1 2 2 3 3 3 3 +19266 7 "Patience is something not very many people have. I am in between, I can be patient at times, @CAPS1 at other times Im not. To be patient is to be understanding and tolerant. It also means you can go through tough times without complaining. Every year Im not that patient, and every year we go to @LOCATION1. We go @LOCATION1 for labor day, to walk the bridge. The rule is, if you dont complain you get fudge. I thought I wasnt gonna get fudge, because I had pulled muscles in both my legs and the night before embers burnt my legs. I knew that to get fudge I had to be patient. So I got dressed, walked to the bridge, and gathered up all my confidence and patience and started the mighty walk. Every year we try and beat our bridge walking time and I thought my legs would slow us down. So I told myself be patient over and over and then I sped up going past the first three miles in @NUM1 minutes, (because my legs were worn out). I knew to beat out record we would have to walk two miles in less than twenty minutes. We were walking faster than I thought we could and my legs felt like @CAPS3 were ready to burst! I couldnt do it anymore. I knew I had to stop and complain, @CAPS1 my legs kept telling me @CAPS2! @CAPS3 wouldnt let me stop, @CAPS3 were: tolerating the pain and being patient. I also had to be patient if I wanted fudge. So I cranked up the speed and sped to the finish line not only to get fudge, @CAPS1 also to beat our record. Thanks to patience I got delicious fudge and we beat our record. Thats a time Ill never forget, because I had patience and I kept going until I crossed the finish line. Thats how I was patient, and Im glad I was patient with my legs. Im not very patient so thank goodness for patience!" 12 12 24 3 3 3 3 3 3 3 3 +19267 7 "A time I was patient! Being patient is all about being tolerant and under standing. Sometimes when @CAPS6 in a bad mood I have @CAPS9 be patient when someone asks me a dumb question or gets on my nerves. One day (last year) I was feeling sick and upset it was buring @DATE1 vacation and my little sister @ORGANIZATION1 wanted some ice cream, but not from the ice cream tank that rade by every twenty minuts frome the ice-cream shop which was about seven @CAPS9 ten block away. I was bund @CAPS3 in my blanket when she jumped @CAPS3 on @CAPS9 my bed. @CAPS1 @CAPS1 @CAPS2 @CAPS3 I want @CAPS9 go get ice-cream. @CAPS2 @CAPS3, @CAPS2 @CAPS3 @CAPS4!!! @CAPS5 I said in a mean voice. @ORGANIZATION1 you little hob goblen get off my bed OR @CAPS6 @CAPS7 @CAPS8 YOU @CAPS9 A @CAPS10!!! I was younger and in a terrible mood that crying is sound so sill and stuped. Tears came @CAPS9 her eyes and I didnt realize at that moment that she was little (fore years old) and didnt quite understand that I didnt fell good. I apologized and explained that I was sick. Imedetly after she ran out of the room and ten minutes later came back with a hot cup of tea and @ORGANIZATION1 said I made mama make you some tea. That was hart warming @CAPS9 me. After I drank it @ORGANIZATION1 asked if I felt better. I said a little then @ORGANIZATION1 got @CAPS3 on my bed and started bouncing. I was patient with her and new that she didnt fully understand yet. So I got @CAPS3 and took her @CAPS9 the ice-cream shop @CAPS9 get some ice-cream. @ORGANIZATION1 was happe ans that made me happe. I fell extremely proud that I was patient with @ORGANIZATION1 eve whe she got on me nerves. I know I was nt patient with @ORGANIZATION1 at the beginning but at the end I was." 9 9 18 3 3 2 1 3 3 2 1 +19268 7 "It was a @DATE1 @TIME1 and we were up @ORGANIZATION1. We all wanted to go on the boat and go tubeing. We vent cared out to the boat and go all ready to go, we tried to start the boat but there was nothing. My @CAPS1 and cousin took the back of the seats off and peared in the back, there was boat-roads of water the birage pump had stopped working. My step-dad took a look at them and said that it was going to be re-wired. He had soon re-wired the boat and it sill hadnt worked all the kide were now getting antsy. Every adult said we needed to have patience. Everybody had now calmed down and walked away. Pretty soon we heard a boat start up that sounded like my @CAPS1s we ran down there with excitement and sure enough it was started we hoped in and there we went tubing down the river. Later that day my mom had said to me patince is a virtue." 9 8 17 3 2 2 2 2 2 2 2 +19270 7 "Im constantly patient moioly because of my younger sister. Sometimes its easier than others to be patient with her, but most of the time Im able to manage. I think this is a great example. One chilly @DATE1 @TIME1 I was in my mothers room and I saw her doing her make-up. I asked @CAPS1 did you get @CAPS5 good at putting make-up? @CAPS2 responded with patience and years of practice. The next day when I had gotten an allowance, I asked my mom @CAPS3 mom, can we go to @ORGANIZATION1, later? @CAPS2 replies @CAPS4, @CAPS9? I answered @CAPS5 I can get some make-up to practice with. @CAPS6. @CAPS2 says. When we get there, therere @CAPS5 many choices to chose from! I asked my mom to help me select the best ones! After we check out; its time to go home and practice! Sadly my first lesson in make-up didnt go to great, but I did ask my mom for some help and @CAPS2 said @CAPS8, I know youll catch on soon! and I wondered out loud @CAPS9?, @CAPS2 almost said as a whisper because any can pay someone else to do their make-up and hair, but almost no one can or will take the time and patients to learn it their self." 12 10 22 3 3 3 3 2 3 3 2 +19271 7 "When my @CAPS2 and I got into the checkout line at @CAPS1, @CAPS6 heard impatient groans and signs around us. Almost every line was extremely long and the whole store was packed. I groaned along with everybody else, annoyed at the long wait. My @CAPS2 continued her cheerful whistling, and didnt seem to notice. @CAPS2 this is going to take forever! I whined. @CAPS3t be so negative. Its not that long. @CAPS4 replied. @CAPS4 saw my responding glare and chuckled. @CAPS5 about @CAPS6 play a game? @CAPS6 continued a game of eye spy for @NUM1 minutes or so as the line slowly progressed. After @CAPS6 finished our game, @CAPS4 continued to make small talk, and then checked her list to make sure @CAPS6 had everything while I played a game on her phone. Soon @CAPS6 were up next and I smiled in relief, and thought to myself it was a good thing @CAPS2 kept us occupied! As @CAPS6 walked out of the store my @CAPS2 said, @CAPS7, when youre patient, you get food! @CAPS6 both laughed and drove home." 12 12 24 3 3 3 3 3 3 3 3 +19272 7 "Every year me and my entire family take a trip to @LOCATION2 to the @LOCATION1 beach. Everyone in my family that goes is me, my mom and my dad,(???). my little sister, my three cousins, my aunt and uncle and my grandparents. We all stay in one big hotel together, which usually has @NUM1 bedrooms. Out of the whole year we only stay for two weeks. So I have to be very patient the other three hundred and fifty one days. While we are there we fish for sharks and sting rays, hang out on the beach and swim in the ocean or the pool. So it is absolutely worth the wait. I always have a great time and now I wait patiently for next year." 8 8 16 2 2 2 2 2 2 2 2 +19273 7 "I remember it all clear as glass ice. It was two summers ago when my mom, two brothers, and I went to @PERSON1 point. The car ride was about an hour and a half, maybe two hours. I was really excited about going on the new ride at @CAPS1 point- the @CAPS5. With nothing to do but listen to music and stare out the window, this car ride was turning into forever. Of course, once we got there we still had to go on lots of other rides. We usually start at the front and work hack, doing things in order. This I didnt mind since we went on mostly big rollar coasters with a few acceptions for rides like @PERSON2 @CAPS2, @CAPS3 @CAPS4, and @ORGANIZATION1. My mind was kept plenty distracted from the maverick with how mad, fun I was having at the time. Unfortunately, it became harder to keep my patience once we got to the @CAPS5 since the line was nearly an hour and a half long. I guess that the line was to be expected considering that it was a new ride. After waiting for so long we finally got to the ride it. The @CAPS5 was amazingly epic. Finally, all of my patience had payed off, and I had a great day." 10 12 22 3 3 2 2 3 3 3 3 +19274 7 "Im going to write about a time when my sister was being patient to go to the dentist. One day my mama said she was going to take my little sister to the dentist. My sister was so happy. Also my mama had to go to other places to. First, we went to costland mall to get me a homecoming dress. After that, we had to go to shoe depot get me some shoe. Third, I went to go get my hair done. Last, we were on our way home but I told my mama my little sister had to go to the dentist. When we got to the dentist, we had to wait @NUM1 min. I told my little sister @CAPS1.M.G this whole day you have been patient. I couldnt do that." 9 9 18 2 2 2 3 2 2 2 3 +19275 7 "Why wasnt my uncle there yet? Come on! I was saying there hade trapped bet up my back, falop used into the ?? and the only thingi had to call for help with was my cell phone. Where was uncle @PERSON1 @CAPS1 all I quick Ill look back to see what was wrong: I was at uncles house waiting for him to hurry up so could go hunting. I doulnt wait. Opening the ?? door very quite and ?? out with my @NUM1. Guage, I then ran out into work ans into my tree stand. We had had this stad for as long ?? could remember. That I now see was a bad thing. The ladder was ? and we felt like it would break. The top bowed and break quite a few time in different spot. We kept telling ourselves that we would rebuild it but we never got to it. So after climbing up the ladder I let the ? to my side and waited. Hunting required a lot of patience but I didnt need any. There standing on the horizon of tree, was the biggest buck I had ever seen, I almost said it was so beautiful. Loading a stud into the barrel I took aim ?? Boom I shoti zzz+++! I missed luck! The stud tilted to the side. I reached for the gun so I could put it on ?? ?? sown and even the edge. The gun landed bend ?? I turned even to see the stud coming down. I turned ?? si I was facing the ?? and tried to get up but I had spined my leg.Then with agreat crash!!! The stud fell into my ?? were trapped beneath my back I tried to move but my back hurt too bad and my ?? were starting to bleed.i was luck I didnt break my neck and so my problem esd I wasnt patient at first. But I learned my lesson and wanted andwas patient enough to wait until my uncle was within yelling distance. I got in trouble, and learned the hard way to be patient" 12 11 23 3 3 3 3 3 2 3 3 +19276 7 So one day in fifth grade I was running around playing tag on the play ground when push I got push off the slide a bout a ???fell and back my arm so it went ??? or they in pain so ??? went to the doctors and waited for two hours and I just sat patient by not moving my arm at all watching other people walk in and out finily they called my name they told me my arm was broken out the could not put cast on there to we went to the other doctor across the rode waited @NUM1 minutes and got a blue cast about a month later I got it taken off went back to the x ray room but then said I have to cast it up again this time I got ??? and eventily to got it taken off and thats the time I was patient. 8 8 16 2 2 2 2 3 2 2 1 +19277 7 "The time I was patient was whene I went to the @CAPS1.B.I @CAPS2. My dad went there and he did a bunch of training, he was there for like @NUM1 months. At the end if they made it through they got a award. So there was kind of a lot of people. We had to dress really nice. We had to sit through all the people getting awards that we didnt even know. The worst part was they gave speeches. Then after what seemed like hours my dad got up! I was so happy he got his award! Then we got to leave. That was the time I had to be patient." 9 8 17 2 2 2 3 2 2 2 2 +19278 7 "Go! @CAPS5 coach yelled. @CAPS5 soccer team and I were running sprints to get warmed up for our game today. @CAPS5 day was planned, first soccer then @CAPS5 friends birthday party. I could hardly wait. That's when I felt a rain drop pound down on @CAPS5 head. Before I knew it I felt another, and another, and another! Suddenly it had started pouring. @CAPS5 team and I rushed under a nearby awning. @CAPS2! The thunder nearly shook the ground. Finally the refs come over and announced, ""the game has been delayed."" I signed and slouched down on a picnik table. I knew now I would @CAPS7 to be patient if I wanted to get through today. There we sat under the awning as rain slamed down on the root and thunder cracked."" @CAPS1 would I make it to @CAPS5 party now?"" I through. @CAPS2! @CAPS2! @CAPS2! More thunder came. It had to go @NUM1 minutes without thunder for the game to resume. Before I knew it we were already on minute @NUM2. Even the slightest bit of thunder and we would need to start back at @NUM3. We were now at minute @NUM4. We listened closely until we hear a @CAPS2! From far north frustrated I say ""@CAPS3 @CAPS4 mon!"" @CAPS5 team began to count the minutes again. Finally after the longest @NUM1 minutes of @CAPS5 life there was no sign of thunder or rain. The game was back on! @CAPS5 team and I sprinted on to the field. We played our hardest that game but, sadly we lost @NUM6. We walked off the field with our white socks and jersys splattered. With mud. Every one of us were sopping wet. @CAPS5 mom gave me the ""@CAPS6 up"" look and I quickly ran to the car."" I will still make it to @CAPS5 party but, I will be just a few minutes late and I @CAPS7 to change in the car."" I said to @CAPS5 self. As I sprinted through the wet grass I heard @CAPS5 coach yell from behind me, ""@CAPS7 fun at your party @PERSON1, and @CAPS8 for being so patient!"" I smiled and replied ""@CAPS8 coach!"" That day I realized being patient is a good quality to @CAPS7. Many people appricite it when you are understaning and don't complian during difficult times." 12 12 24 3 3 3 3 3 3 3 3 +19280 7 On the way back home from a doctors??? .I was getting annoyed about being??? I did not want mom to get annoyed more. So I tryed a great to be pacient. Once a while I would play with the seat .@NUM1 minutes have passed and I was getting more in patient. Buy I still keep +roln .Once I got home I went to bea and relaxed 5 7 12 1 1 1 2 1 2 2 2 +19281 7 "A time I had to be patient was when my dad was waiting to get the money for our chiuahuce @CAPS1. It was @DATE1 and my dada sold his giutar to his uncle to get money for the day of coarse he didnt have it. A day went by and still nothing. When my mom came and picked his ??? I went to swim practice trying to be patient and wait for my dad to get the money. At around @NUM1oclock my dad called saying he wont get the money till @DATE2 @TIME1! I was mad, but still tried to be patient. A few days went by and soon it was @DATE1 again. I was so excited. We finally got @CAPS2 I had been patiently waiting for a week and was tired of it. So when I was him my patience was worth it. That was the time I had to be patient for something good.It had really paid off." 9 8 17 2 2 2 3 2 2 2 2 +19282 7 "Being patience is what you need to get anything done in the world. One example is school how do you use patience. A way is being understanding to your teacher because theyre there to help you to teach you for life. If you dont be patient and understand your teacher you will get nowhere in life. Another example is with your parents. You need to be tolerant with them they were tolerant with you. If you dont have patience with you parents and dont listen to them then you wont learn all the life lessons they give you, without their skills you will get nowhere in life." 5 5 10 0 1 2 2 0 1 2 2 +19283 7 Once I knew a girl whos name was @ORGANIZATION1 and met another girl named @PERSON1. They had been inseperable until high school. @ORGANIZATION1 had gotten many more friends and started becoming very popular. @PERSON1 called @ORGANIZATION1 everyday to see how she was and or if she wanted to hangout. @ORGANIZATION1 kept lieing to @PERSON1 saying she was busy and always said lies and blowing her off. But one day @ORGANIZATION1 had a very bad day and when she tried to tell her new friends about it and apologized how she was acting. @ORGANIZATION1 had learned that @PERSON1 really was a true friend and was patient with @ORGANIZATION1 through the bad times. This shows that if you are truly patient only good thing can come. 8 10 18 2 2 2 2 2 3 2 3 +19285 7 "One time I got in trouble for getting a @CAPS1 on my report card and my mom said I was grounded. I asked her how long I would be grounded. So I went up stairs to read a book. A hour later I came down and asked. How long am I grounded? She said I dont know how meny times do I have to ask you to tell. Sow I was buging her all day. She said I am running out of patients. I said can you just tell me she said okay. She pulled out a sheet of papper. I said what is that? She said I counted how many times you asked me. Twelve times yikes! My said twelve days and that is final, I said okay. I think I lerend a lesson today? Dont bug your mom all day and do better in school!" 8 10 18 2 2 2 2 2 3 2 3 +19286 7 "One sunny beutful day I went out and was driving my glad around and all of a sudden my mom yelled at me and said she was going to go get my new good in @CAPS1 @CAPS2, and she said I couldnt go @CAPS5 I sat down waiting, waiting, waiting and waiting. Then I decided to play playstation @NUM1 (@CAPS3 @CAPS4) @CAPS5 I was playing far two hours strait, and then I decided to go watch @CAPS6 assassain (@CAPS7) . After that was com I went back to play in playstation @NUM1(p.s.@NUM1.), again. played it for another hour. Then all of a sudden I hear beep, beep, @CAPS5 I look out the window, and it was my . @CAPS1 ma. Then we talked bout the new qlad and then I hear beep, beep and it was my . my . new @CAPS8!. Then I ran out took it out and roud it for like @NUM3 hours strait. That is how I had patient for about @NUM4 to @NUM5 hours long. I was proud of myself after I was done riding my new @CAPS8." 9 8 17 2 2 3 2 2 2 2 2 +19287 7 "Patient I was patient when I was in @CAPS1 or @CAPS2 appointment to wait in the waiting room. My some teacher says wait a minit because teachers are talking to someone else. When I have any @CAPS3 teacher says don't open it so I always been patient. When someone tells me to wait. I also be patient when I'm waiting for the buses, airplanes, trains to come. I be patient when I'm bored to wait sometimes. That's how I've been patient." 6 8 14 1 1 2 2 2 2 2 2 +19289 7 "I am going to tell you all about a time when I had to use patient. I had to use patients when I was waiting for my friend to fix my x-box @NUM1. My friend was taking forever when he tried to fix the x-box. Alls I did was sit in a chair and watch him. He finally got the x-box fixed after about seven or eight hours. Once me and my friend began to play the game it broke again. So then we had to take the game to @CAPS1 @CAPS2 and have them look at it. I had to have patients because if I didnt I would have been really bored. Once @CAPS1 @CAPS4 looked at the system they told us that they would have to take it and then look at it. I t took @CAPS1 @CAPS4 almost four days to fix the system and return it to me, so I had to have patients so the system could be delivered. Patients is a very needy thing in life. Now you know all about a time in my life when I had to have patients." 10 8 18 3 2 2 3 2 2 2 2 +19290 7 "@CAPS1 on. Said my little brother. @CAPS2 line is tacking forever. @CAPS2 is the last time we are coming on @CAPS2 ride. The ride that we were on was space mountain at @ORGANIZATION1 land in @LOCATION1. As we got into line at the ride there was a sighn I have and @NUM1 min wate from @CAPS2 point. It was hot and it felt like I was walking smil. The line would not go any faster. My older brother was happy for some reason. No one could understand we were standing in line in @NUM2 weather. I was being as patience as I could be I just stood in line wish, hoping to pay self we could get on the oder. The first hour went by and another sighn came up @NUM3 hour from @CAPS2 point. We all got mad. The walk way sounded silent. I know that everyone could hear a pin drop as a drop or someones?? hit the ground. Everyone being patient. Finally we wated @NUM4 hours to go on just @NUM3 ride. That was the first time I was that patient." 12 11 23 3 3 3 3 3 3 2 3 +19291 7 One time when I was patient was when I was in the car going up noth to @LOCATION1. I was in the car for eight hours my cusin @PERSON1 was driving and my @CAPS1 @CAPS2 was in the seat next to her. I was in the backstreet with their dog @CAPS3. My cusin @PERSON1 were talking the whole way there. I tryed asking to stop and go to the bathroom and get food but they are botton so I waited and waited an hour friend by so I tryed asking again I got the same answer botton so thats when I asked my patients.. 7 8 15 2 2 1 2 2 2 2 2 +19292 7 "One sunny after noon I was so waited because. I was going to see my faveret band. When Im in school! My mom picked me up from thired gread I was so excited it was time to go. My dad droped my broter of at my grandmas house (he was only at doy so he could not go.) I was bounsing of my seut mom are we there yet? I ask @CAPS1 we have two more houre to we are there, then a nother hour, so we are going to see the place here.mom said @CAPS2, can I have my d.v.d please. I side. So now it has been two hours Iv been in the car. Then we went every were my mom and dad wanted to go not were I wanted to. Then it was time to go see. The @CAPS3 @CAPS4 @CAPS5! When we aroved I was a little sleepy but that would not stop my. When they only plaed two song I want to sleep on the seet. I wated all day to see them and I went to see. That was a time I was patient to see my faveret band." 8 8 16 2 2 2 2 2 2 2 2 +19293 7 "I remember the time when I had to be so patient, it wasnt even funny. I had to be patient to get my new cell phone. My mom told me I was going to get one when the school year started. I waited and waited until the school year started but my mom told I would have to wait another week because she didnt have the money from all the school supply shopping she had done. So I waited another week. I was so excited when I remembered that my parents plan a trip to @LOCATION1 that weeket, so I had to wait another week. It was on the following @DATE1 when I was at my cousins house and my mom came in and surprised me with my new phone and I was so happy that I finally got it. So I guess you can get cool things when you are patient." 9 8 17 2 2 2 3 2 2 2 2 +19294 7 "One christmas about a year or two ago we drove up to my grandparents house. They live in cold water so it took about @NUM1 hours. All my relatives on my dads side were there. All the presents were under the tree and I couldn`t wait to open. The parents were just talking about nonsense, so I opened my big mouth and said can we open presents now, we stated to open the presents but the adults had to go first. They are the slowest gifts openers ever I was about to rip the presents out of their hand`s and open the presents I didn`t do that thought because I was being patient. After they finished I said,yes of course thought my little cousins had to open next. Let me tell you they aren`t fast at all either. After that I finally got to open my presents. In the end it was worth it I got an x-box @NUM2, and over @MONEY1. That was the time I was patient." 9 9 18 2 2 2 3 2 2 2 3 +19295 7 "Patient is a very hard thing to do in life. Its one of those things that is so impossible for people to do some times, even for little kids. You can tell when someone being patient is when there being polite and waiting their turn without complaining about it . Sometimes people dont like being patient I know I dont lik to a lot @CAPS1. People who are not patient tend to @MONTH1 be not ??? tuned others wait. But people who are pacient they sometimes tend to be anoying or quiet dont talk very much even when they do talk they ??? talking when people inturupt them. And they defiantly dont yell as someone out at all. Its a good thing to have patiencets because you will grow up with an ??? (part not legible) good family good friends and a ??? .So in conclusion that;s why its good to be patient." 5 8 13 0 1 2 2 2 2 2 2 +19296 7 "A time when I was patient. Was when I went to the book story and I woned a book. I was at the book store and I wanted a book called tayler swift back at the @LOCATION1 as a school girl and my mom said if you are patient then yes, and I was so happy because she know I love tayler swift book and her life. As soon as I got it I stared reading it. My mom said thank you for being patient I was you welcome I said thank you for buying it. I have told my mom that if we could go to the book store and she said not today and I keep on asking and she said not and I keep on asking and she said maybe. So I was and the car listen to radio and we when to the mall and there was a book store in the mall and I ask if I could look around and my mom said yes and she said find the bok that you wonted I find it and she bote it. This is a time I was patient. One thing I learn is to be patient if you want something and dont keep asking." 6 8 14 2 2 1 1 2 2 2 2 +19297 7 A time when I was patient. I am patient when I go hunting. I know that at an moment the back of a life time could walk out in shouting range. And if one does I will be ready. The first time I shot a deer was with my baw. And I remember siting there being as patient as I could waiting for a deer to step within range. Then l hear the leaves cranching . The there it is the deer Im going to shout?? How you draw it back. Than I shoot I could feel the arrow gliding throw my bow. Then the arrow hits the deer with a thud and the deer takes off. I wanted there in my tree stand ready to go blame my deer. Me and my dad traked it about soft and there it was. I was so excited that all yelled. It was nice to know that all my patients and hard work had payed of. Thank you for reading my story. Hope you enjoyed it. 10 9 19 2 2 3 3 2 3 2 2 +19298 7 Patience it take a lot to have patience. One time my sister was trying to hate me but I didnt let her get to me @CAPS1 I have patience @CAPS2 I get made so Im watching tv she standing the task @CAPS3 can you move off infront of the tv and she moved she sat by me and keep on touch me it didnt bother me at all she asked me over and over @CAPS4 Im @CAPS5 you I said @CAPS6 I going to antil I make made I said so you dont bother me at get out my face @CAPS2 I really get mad so she tried her best by trying to ripup my home work so I said I dont care she had a smart comment whatever and I keep watching tv so I was so patient with her she said im go make mad so I ignored her she got mad and kept saying do you hear me I just walked outside and and said to myself I cant go let her get to me @CAPS1 we mite end up fighting I went back in the house and sat down and I told her you cant make me mad so you might wont to stop so she said girl whatever and I was so ready to say something but I wasnt go give her nothing to feed off. 6 7 13 2 2 1 1 2 2 1 2 +19300 7 I am writing about when someone was patient. My mom was patient when she did get if her money that day. She wanted it to come but it did so she was mad for a min but the next day it came. And I said I tell you mommy it was coming to day. did I get when money yes did bee ??? Yould her to was. That one day but I did no where so do when it. And was patient by not calling the people and asking them where is her money at and things and the next day she had the was nobody on the home then I was to then we want to the @MONTH1 they the money and got every ??? We ??? The mall I was searched happy me and my brothers and sisters. 5 6 11 1 2 1 1 2 2 1 1 +19301 7 "I remember when I went to @LOCATION1 to visit my step-grandmother for @CAPS1 and went fishing. I didnt really went to do it because I am a very impatient person. The creek we were going to fish in was right behind her house. I grabbed a fishing rod and went into the backyard. I flung my fishing lips into the water and waited. After maybe @NUM1 minutes or nothing (except my sister who caught most things.) The finally started to unravel. Excited, I kept out of my seat, knocking it over, and grabbed the real. Twisting and twisting the handle for what seemed like forever, I brought it up. The fish was small compared to what my sister caught seconds later. My step grandmother threw the fish back. After another @NUM1 minutes I became frustrated and went to swim. After an hour of swimming, I went back to my rod and decided to be more patient. I waited until my line started moving and I got up, and twisted the reel faster then ?? Id caught the biggest fish of the day. I sat down and waited an entire hour for my line to move. I then caught another fish. Happy, I dropped my rod and told my step grandmother. My patience lead up to me catching the biggest fis of the day and learning something new." 10 12 22 2 3 2 3 3 3 3 3 +19302 7 Patience is when you can wait a while without complaining or giving up about waiting and that patient. An example of being patienc is lets say your standing in line for @NUM1 hours to get tickets to see your favorite band play. Now waiting @NUM1 hours in line is being patient to get the tickets. While out complaing or anything. Being patient is very respectful to yourself and others around you. But I also think that everyone could use a little patience. I think that people should think about patience more often. If everyone in the world didnt have patience the world would be a crazy mess. Example: @CAPS1 one would be waiting these too. Everyone would waiting be first. It could just be crazy. So Im happy that there is patience in this world and people have it. 7 4 11 0 2 2 3 0 1 1 2 +19303 7 I was patient when I had a doctors ipointment. Me and my mom had ben waiting almost an hr for them to call me. Twenty minitues later the nures calls me. She says sorry for your wait. Thank you for being patient. Then after that my mom took me to get something to eat so we were waiting @NUM1 minitus later the gives us are food from the drive through. Sorry thanks for being patient. 8 6 14 2 2 2 2 1 1 2 2 +19304 7 "This is a story about what patience means to me. Patience is when you have a problem and you don't complain about it. For example, I had to give my mom @NUM1, but I did not have the @NUM1 write then and there my mom did not complain she waited she had patience. Patience does not mean you keep beging. It means that you are understanding and tolerant. If your dad said he is going to give you some pizza, have patience and wait on that pizza. When you have patience people will have patience with you. For example if you was waching tv and you did not want to get up yet people will have patience and wait for you to get up. Patience does not mean you keep asking. For example I was at @CAPS1 @CAPS2 beging my mom for candy not knowing if I had patience a waited on her answer I would get the candy, but I didn't. This is my stor and what patience mean to me." 6 4 10 1 1 2 2 1 1 1 1 +19305 7 A person I know that is patient was my old teacher named @PERSON1. He was a very patient man although we got on his nerves. It we didnt understand a question that he explained a million times he was still patient. Even when we got attitudes with @PERSON1 he was still a patient man. I think @PERSON1 was determined to be patient with us as he must of prayed because he was always patient with us through thick and thin. @PERSON1 was the most patient teacher and person Ive ever ??? 9 8 17 2 2 2 3 2 2 2 2 +19306 7 "Patience, whats the first word that comes to your mind when you hear that word? Waiting? I know thats the main word in my mind. Here is a story when I was very patient. Every kid dreads meap testing it was @DATE1 and we have to be completely silent. Its hard enough to be quite. But its harder when your next to your friends, and your a girl. We had to do meap writing, writing is the most wrost for me. But when I was done I felt really good and quiet for everyone else. Thats the story when I had to be patient." 8 8 16 2 2 2 2 1 2 2 3 +19307 7 "Patient can be a very hard thing for me to have at times. For example, when I go to resturaunts when we wait for our food I get board very easially. On time when I had a sore ankle from an injury in soccer. A couple months later, it still hurt in the same spot.@CAPS1 my mom set up an appointment with my doctor. When I did go to the doctor she felt for a lump or fracture in my ankle and said I dont think there is anything wrong, but we wont be sure. @CAPS1 she sent my mom and me to the urgent case out on @NUM1 with a note that said I needed an x-ray. After about a twenty five minutes car ride, we were there. When the kind lady checked us in we waiting in the x-ray waiting room. My mom texted my sister saying we would be a while. I had to have patient because we were waiting there for a whole hour! Clearly, this was a time I had to have patience because I was already nervous about a possible broken ankle." 8 11 19 2 2 2 2 2 3 3 3 +19308 7 "Being patient is a wonderful thing to be. Here is example of me being patient for my birthday. My birthday was coming and I was extremly happy. I would always backtrack of my days so I had a personal calendar for counting down to it. After that I made lots of birthday lists. I went to stores to see what they had. For an example, I saw this beautiful short that had a matching belt. @NUM1 days before my birthday I would not eat. I also went to @LOCATION1 and check out all the wonderful cakes. The day came and we went shopping for all the stuff I wanted. I conclude ??? I was patient." 8 9 17 2 2 2 2 2 2 2 3 +19310 7 A time I was patient was when I had to be patient for having a difficult task without any hep. Not one comeint from me. It was so hard. I had one hour to finish it. I needed three hours to finish. It was so hard not even collage student could finish I t. @ORGANIZATION1 was the hardest match test I ever done. 5 5 10 1 1 1 2 1 1 1 2 +19311 7 "@CAPS1, how much longer. I complained at the airport, @CAPS2 have been waiting for about two hours now. @CAPS3 will only be a couple more minutes sweety. replied my @CAPS1 in a stern voice. @CAPS3 better take only a few minutes because I really want to go to @CAPS5 world. I complained again. As you might know now, @CAPS2 are in an airport full of people. @CAPS2 had to wait for six hours before our flight took off for @LOCATION1. @CAPS3 took a lot of patience that I thought I never had. In the first hour of waiting, I was really really bored. I had nothing to play with besides my gameboy @CAPS6. The gameboy @CAPS6 is a boxy looking object that folds open. There is a screen on the top and controls on the bottom half. That was my only fun that I could use to keep me busy and not fall asleep. I was very bored. But thankfully I found a @CAPS8.V. that they had at the airport. @CAPS2 went over to the @LOCATION2 to watch, but the only channel @CAPS2 could watch was the news. I did not like watching the news at all so I played my gameboy. I played that for about an hour. I haven@CAPS8 said anything to my @CAPS1 the past two hours or three hours. I didn@CAPS8 want to bug her so I left her alone. When the next hour passed,@CAPS2 boarded our plane finally. @CAPS2 waited a total of @NUM1 hours and @NUM2 minutes. @CAPS3 was a painful but memoriable experience. When @CAPS2 boarded the plane and found our seats my @CAPS1 said to my brother and me that she was very proud of our patience. To this day I realize why my @CAPS1 and dad don@CAPS8 like to fly to places any more." 11 12 23 3 3 2 3 3 3 3 3 +19312 7 "@CAPS11 was @DATE1. @CAPS11 was almost time for @CAPS1 birthday. @PERSON1 was going to be six years old. He was helping his @CAPS6 made his birthday cake. After they were done making the cake mix, @CAPS1 @CAPS6 put @CAPS11 on into a cake pan. She put the pan into the oven for @NUM1 hours. "I can't wait for my sufer yammy chocolate birthday cake to be done!' said @PERSON1. A 'few minutes later @PERSON1 asked if his cake was ready. '@CAPS3 @PERSON1 said @PERSON1 @CAPS6, '@CAPS4've still got about @NUM2 hours and @NUM3 minutes you're your cakes done" "@CAPS5 that @CAPS4'll take for ever" whined @PERSON1 "You've got to use your patience @PERSON1 " she said." @CAPS6 whats patience?" @PERSON1 asked "patience is waiting for something without complaining @CAPS11" explained @PERSON1 @CAPS6. "@CAPS7 you can do something @CAPS9 the time passes by faster. Like play a game, ride your bite, play with your friends, or play in the sand boy. " " @CAPS8, " said @PERSON1, " I 'll go do something else.' @CAPS9 @PERSON1 went down stairs to play his video games. When he was done play his video games, he checked the oven to see how much time has gone by. There was two hour and thirty minutes left. @CAPS9 @PERSON1 decided to go out and ride his bike. He put on his helmet and got on his two wheeler bycicle. He went for a ride on the neighborhood trails. He saw his friend and joined them on their bike ride. After their bike ride @PERSON1 asked if them if they want to go play in the sand box. They all said yes. @CAPS9 they went to the backyard and played in the sand box. @PERSON1 and his friends all made this huge sand kingdom. @CAPS11 had big castles and @CAPS11 had a trench all around @CAPS11. @CAPS11 took up the entire sand box. @PERSON1 went inside to ask how much time was left on the oven." @CAPS6 how much time is on the oven?" asked @PERSON1 " Only five more minutes ," said his @CAPS6, " you should take that time to brush off all that sand. I see you and your friends are covered in @CAPS11. And when your done you can invite them in for a piece of cake. When @PERSON1 and his friends were done getting the sand off of them they all went inside and hold a piece of cake. After everyone finished their cake they all said," @CAPS11's the best cake ever!"" 12 12 24 3 3 3 3 3 3 3 3 +19313 7 "@CAPS1 on, @CAPS2! I yelled. We had just gotten our tickets for my favorite amusement park in the world; @CAPS3 @CAPS4. @CAPS5 down, @PERSON1, my @CAPS2 told me. Im coming, she said. Im not usually super hyper, but I just love roller coasters. Its also nice to just take a @DATE1 off and @CAPS1 up to @CAPS3 @CAPS4. I live in @LOCATION1, so the drive isnt that short. My @CAPS2 had just finished giving the man our tickets. @CAPS6 your day at @CAPS3 @CAPS4, he told us. @CAPS9, @PERSON1, what do you want to ride first? my @CAPS2 asked me. @CAPS10 about the @CAPS11? I asked my @CAPS2 @CAPS12 not? she replied. By the way if you didnt know my name is @PERSON1. But thats not important right now. Whats important is getting on the @CAPS11. My @CAPS2 and I waited in the line for about an hour. It seemed to take a while, but before I knew it, we were buckling up. Now I know the @CAPS11 isnt the biggest ride, but its still pretty big. The @CAPS4 is, I was a little nervous. Everyone gets nervous before their first ride, and as we were going uphill, everything started to get smaller, and I started to get more nervous. The @CAPS11 ended up being a blast! After the @CAPS11 we rode the mantis, the @ORGANIZATION1, the wicked @CAPS16, @ORGANIZATION2, the @CAPS17, The mean @CAPS18, the @CAPS19 @CAPS20 @CAPS21 and the @CAPS22. @CAPS23 right @PERSON1, pick the last ride, my @CAPS2 said @CAPS24 that was easy. We still hadnt gone on my favorite ride yet. @CAPS25s go on the @CAPS26 force, I said. We got in line. The sign said the wait was two and a half hours. @CAPS24, Ive been on the ride, and its definitely worth it. The wait ended up being a bit longer. The wait was four hours, and I wanted to leave after three. I waited, though, and even though I thought it wouldnt be worth it, I waited. It was totally worth it. The waiting was terrible, but it was worth it. I really enjoyed my day at @CAPS3 @CAPS4, and Im glad I waited for the best ride." 12 11 23 3 3 3 3 3 2 3 3 +19314 7 "??? ??? ??? was about the mid of @DATE1 my family and I were going to ??? @LOCATION1. ???/ mid @LOCATION1. I was so excited I ??? the days ??? with all of my ??? (part no legible) and accessories. I was pumped of ??? my mom and my brother pack the morning at the ??? my dad and I were all set. We packed everything in our old,??? can @NUM1 we headed off. An hour in I ask my dad when are we going to be their? not until ??? (part not legible) my dad said for I slept. My brother was ??? stupid and rider ??? me in his ??? while I was sleeping. We stoped ??? him at a got station because my mom has to ???(part no legible) in and I start ??? (part not legible) was exited. It was about @NUM2. @NUM3 I had to wait to get to a hotel. I was still ??? because ??? wher in mid @LOCATION1 and ??? get to ??? and have an awesome time together. That was my story about the time I had to be patient." 10 8 18 3 3 2 2 2 2 2 2 +19315 7 "I am going to write a story about patience. Patience is when you wait for somebody to do something. One example of this might be if someone else is fixing something for you and you really waited them to be finished so you can move on with your life, but it is the type of thing that takes time, maybe a lot of time, but if you want it done right, you will have to wait. Sometimes it will not be a person you wait for, but an inamate object, like a television show, which can not be rushed, even though sometimes you want to ruch it. With a human however, if you rush them to do something, (which can happen it @MONTH1 end up being not as good and even breaking in about ten seconds after them doing it, it @MONTH1 end up happening faster though. You might also waight for nature too, such as a sunny day. When it @MONTH1 have been raining for over a week. You also might be waiting for the power to come back on during storm. It, for me, have really wanted the power to come back on during a storm because there is nothing to do!!! Patience is also about waiting for your ??? like when you are bored." 7 5 12 0 2 2 3 0 1 2 2 +19316 7 "One time when I was patient was when I broke my thumb I was patient cause I wasnt complaining about it wasnt crying about. Really wasnt doing enthing cause I didnt think it was even broken. I wasnt really bothered me. Then I wait to the doctor and got it checked the docter didnt think it was broken cause I almost beat him in a thurb wreste but he x-rayed it just in case. When he came back with the x-rays he said it was broken, he was very suprised I was suprised every one was." 4 7 11 1 1 1 1 2 2 2 1 +19317 7 "This past @DATE1, my family and I went to @CAPS1. When were in flagstaff we were going to the??? It was basicly a big ski slope. When we went to the top on???.I was scard that I?? going to follow. When we got to the top I could see flagstaff and sort of the??? .I got dizzy and I didnt like hights, I started to through up. I was happy to get in line to go down. When I got down I fell better and then I yet like I was going to through up again. ???I love my mom and???That day was the worst day of my life. I was happy the next day. When we went to the @ORGANIZATION1." 11 9 20 3 3 2 3 2 2 2 3 +19318 7 "Sometimes its hard to be patient, especilly when you have to be tolerant to little kids. Well I have to do that sometimes, when I go to visit my little cousin, @ORGANIZATION1. @ORGANIZATION1 is eight years old and get on my nervers. She asks dumb questions and does stupid things and I don't like her at all. My mom says, ""When you grow up, you two will be best friends,"" @CAPS1, right, I don't think so. When ever I visit her I just have to tolerant her and be patient. For now I have to deal with her, but when we grow up we might become friends, but maybe not." 6 8 14 2 1 1 2 2 2 2 2 +19319 7 Once when I was patient when we went to green bay and it took @NUM1 ever to get in to our @CAPS1 and when it was finally the time we got in the @CAPS1 and it was @NUM2 there time which was which is @NUM3 our time and I was a little upset. The next day we went to toy r us and my sister was mad and my mother wanted to get a van and we tried a whited van and me my bro and dad like the white one but my mom and stupid sister didn't like like the white dodge van and we tried the silver van and my mom and dum stupid sister loved it but me my bro and dad hated it oh and we got the dum silver van and it took @NUM4 to get the du van and it was stupid going home. The @CAPS2 4 7 11 1 1 1 1 2 2 2 1 +19320 7 "Patience is the way to being a only ??????? patience is waiting a while for something,as ??? IF you wait a long time without getting mad on reading out, you are what people all patient. If your kept up this habbit, your will have a good life that ????" 5 3 8 0 2 1 2 0 1 1 1 +19321 7 "The first time I learned patience was when I was I my mom said she would by me a play @NUM1 I wanted it so bad but in, had to wanit to get it so I did and I waited and waited and waited then if figured its a whole month that and nothing happend I just was so mad but I didnt do anything so we went to wal mart and she bought me a play @NUM1. I was in happy. Later I asked for an xbox (stirl seven) my mom said wait I waited for @NUM3 months but still nothing. @NUM4 months nothing, @NUM5 months nothing, I was just so angry but a whole year passed I got @NUM6. I was awsome I got my own room and @CAPS1. I got an xbox @NUM7 to being older is awesome." 8 5 13 2 2 2 2 1 1 1 2 +19322 7 "Oh I have a great story about patience! One day, I was my @CAPS1's and @CAPS2's house. There was my two brothers my little sister, my @CAPS1 and @CAPS2, and myself present. My, @CAPS2 was ready to serve up ice cream @CAPS4 of a sudden, my brothers and sisters started yelling, I 'm going first, I'm going first! Lathan ?, my @CAPS2 asked? I responded by saying, I 'm not being a part of this! I thoyah you @CAPS6 how long is this going to go on since this was @CAPS4 getting mea little freaky, I sad, @CAPS7! Get in line! They were like ok. So, patich tly, every one art in the line and took their lurh choosing what kind of ice cream they wamted. And what a choice we had vanilla, strawberry, mint, of cookie dough ice cream. Ever one settled down and enjoyed their ice cream cone." 10 10 20 3 3 2 2 2 3 2 3 +19323 7 I was patient when I was going to the docteis to get??? ??? I didnt complan about it. I had to wait for @NUM1 hours. Then when I went in thay toke a couple of ways it toke about @NUM2 hour. Then thay take some tests then at the end I finally went home. That was the time I was patient. 6 7 13 2 2 1 1 2 2 1 2 +19324 7 One time I was going hunting. We got to the woods @NUM1 or earlier. When we got there we found a spot to sit on the ground. We were goin to stay in the woods till dark or we kill our limit of deer. When it was or @NUM2 hour till dark we seen a dow but when we moved the gun to shoot it it ran. We stade not moving or talkin waitin. Then more deer came. But they were really small so we let them go. When their was like @NUM3 minutes left till dark a good size dow came. It was to far away tho so we waited for it to get closer the boom the rifle goes off. It dropped but it was still alive laying down. We waited like @NUM4 or more minutes then it died. That was one of the times I was patient. 8 8 16 2 2 2 2 2 2 2 2 +19326 7 "There is many ways to be patient like while your wating in the lunch line to pat or when you line up to leav the room. Heres a time when I was patient. It was time for this trip to go skating and I was talking to some and I wanted to go right away but I did not say it because I knew I had to be patient. Then we got there and I wanted to get in and skate but they had to tell us the rules so I said nothing. Then we walked in to skate but it was a long line for skates but I did not push or shoke my way through I waited patiently. Then I skated and ate then left, @CAPS1 how we be patient." 7 8 15 2 2 2 1 2 2 2 2 +19327 7 "Patience, can you be patient? Some people are and some are and some are not. Some time I can not. Well hear is a story about patience. One time at school in the lunch line, it was long. It would bearl move. I wanted lunch so bad I was not being patient. But for some resson my friend was being patient. I said to her why are you so patient? She said because everyone is going to be able to get something to eat. I said yeah that is true. So I tryed to be patient and before I know it I was siting by my friends talking and eating my food." 8 8 16 2 2 2 2 2 2 2 2 +19328 7 "I was so bored “I was so bored but I know it would pay iof. I was on a flit to??? and it took/heavers. In that I hoven I went to the bathroom, eat lunch, plaed with my more sellfon, I sleped and then soller then I @CAPS1?? it we when there so ??? ??? ???." 6 6 12 1 2 2 1 1 2 2 1 +19329 7 "I was patient in gym class today for my shill test, I did great in got @NUM1 out of @NUM1. We have @NUM3 biols in my class so it was quiet the wait also when it was my town it took a half of a minute to do it. We wasted all have on the shill will and I was waiting to play dodge-ball all have.It starts because we didnt get to play dodge-ball. So I pretty much wasted my invite have on the shill test and it starts will tests my story, the end." 8 8 16 2 2 2 2 2 2 2 2 +19330 7 I had to be patient when I really wanted a @CAPS1 bike crank and I had to make money for it so I went to @CAPS2 houses picking leaves till I showed them shouveling drive ways. In @CAPS3 time I had the money for my @CAPS1 bike. It was hard to be patient but in the end it payed off. 8 4 12 2 2 2 2 1 1 1 1 +19331 7 A day of dreadful patience can we leave now @CAPS1. Im so bored I complained. I waited for an answer but I guess he just resorted to ignoring me. We were here in @LOCATION1 waiting for these lazy people to load up his truck. Impatient guys. Thats it Im gonna go talk to these guys and see what the whole holdup is. Wait here and dont touch anything. @CAPS1 said. So I sat here cold bored and hangry waiting for what seemed like hours. Finaly my @CAPS1 got back and told me it might be another @NUM1. The things impatient men resort to. We were sitting here and getting pretty impatient. We decided to just go and walk for a while. After we got some food we went back to the truck. City slickers are just plain dumb. A fork lift driver not somehow managed to get his fork lift stuck in the trailer. Thats when my @CAPS1 had it. He got out and then all heard was hollers and screams. FINALY! After my @CAPS1 yelled a bit we finally got back on the road. That day I learned that some thing I definitely dont have is patience. 8 12 20 2 2 2 2 3 3 3 3 +19332 7 The time I had @NUM1 be patient was when I was at my first foot ball game. I wanted to get in but I had to wait. I waited an hour to get in. The team was tied in the @NUM2 to @NUM2 and it was the @DATE1 and we were still winning. The coach had an injured player so he put me in I ran so fast I tackled the guy with the ball he tumlied and I ran for the touchdown. If I wouldn't have been patient I wouldn't have won the game cause the coach wouldn't have put me ind that was the time I was patient. 7 8 15 2 2 1 2 2 2 2 2 +19333 7 "One time I was patient is when I went to get my hair cut and she told me to come at @TIME1. But when I got there at @TIME1, she had like @NUM1 people in front of me but I didn't care because I didn't have to do nothing after. So I was just going to sit there and be patient and I had my best friend with me so I wasn't bored and we was just sitting there talking and texting our boyfriends. So then the lady that was bout to cut my hair came to me and said I am so sorry, but I told you the wrong time and I said oh it's ok l can wait. And when she got done with they hair the ladies came to me and said they was sorry. So then she had @NUM2 person left and by the time she get done be getting on like @NUM3 - @NUM4. And that was the time I was being patient." 8 8 16 2 2 2 2 2 2 2 2 +19334 7 "To me, patient is one of the most important traits in a person. To be patient with someone is very important. It can make you friends, it can get you a girl or boy friend and it can get you some of the best things in life. One time, patients got me a now hockey stick. About a month ago, I broke my old hockey stick in an away game. After the game, I knew I needed a new hockey stick, so I went to the pro shop at the ice areana I was playing at. Do you have the @CAPS1 @PERSON1 vapor @NUM1? I asked wondering if it would easy to get it. @CAPS2 buddy we just ran out. @CAPS3 the sales man giving me a little shrug. I knew that if I wanted the stick. I would have to look harder. When I got home, I looked on the internet to see if there were any stores nearby with it in stock. No luck. I guess Ill have to order it online. I thought to myself. The delivery didnt grive quickly. It took about @NUM2 weeks for it to arrive. It was worth all the time and effort." 8 7 15 2 2 2 2 1 2 2 2 +19335 7 "I have patient until @DATE1 vacation comes along. I try to do my best in school until @DATE1 arrives. @CAPS1 example, last year I was on the honor toll @NUM1 times. Over the @DATE1, if I have to do back regards or a @DATE1 patient, then I will do it and I wont leave it @CAPS1 the last minute. Then, Ill wait until school starts again, which will be a fresh new year. Ill also wait until @DATE1 again. But in between we have some breaks and days off, I think we yet have enough assignments throughout the years, start we go school @NUM2 days a week. School can be really fun sometimes, @CAPS1 example, I wait until field trips and school activities. But we have to be careful so principal doesnt take our privellages away, @CAPS1 example, if our behavior is bad or we get too many detentions, shell take it away from us. That means all of my patience will be @CAPS1 nothing. That really wouldnt be fair because most of the time my classmates are the ones causing the trouble." 6 8 14 1 1 2 2 2 2 2 2 +19336 7 "A time when I was patient well it didnt just happened once it happends all the time. The time I am patient is when my mother is either talking or at the hair salon getting her hair done. Today I am going to talk about the time she goes shopping. When my mother goes shopping she brings all the females in my family my cousins, aunt, and grandmother. I either go in the mall with them, stay in the car or stay at home. I will talk about when go in the mall with them. They shop for at least eight hours max ten hours. They just dont go to one mall and stop they go to at least two mall three max. They go to a lot of strip malls too for exsample simply fashion and things like rainbow. They are going to a hundred place for at least eight hours my feet start to hurt and im getting hungry and tired but, I dont complain because I am being patient. Now we are in a mall I go to carry bags and go into a lot of females clothing stores like victoria @CAPS1, @PERSON1, and @PERSON2. Then shop for jewlery make up perfume and every woman item known to the world. Plus I get lost because they leave me. In conclusion I am very patient for my mother no matter what." 9 7 16 3 2 2 2 2 2 1 2 +19337 7 "Im writing about a time when I was patient. Because I was about to go to a party in I had to be patient but I didnt I had got angry in I just couldnt patients. In I also no someone who patient. They just couldnt wait they really couldnt wait but I waited, waited, waited in I got mad I couldnt even wait no longer. I was actually was waiting on my aunt to come pick me up in she didnt @CAPS1 I called my mom in she said she was going to take me to the party In I was patient in she didnt come @CAPS1 I didnt go to the party in I was mad. Because my mama didnt come pick me up, @CAPS1 I calling my grandma and she came in pick up. That was the only time I was patient of learning." 3 3 6 1 1 1 0 1 1 1 0 +19338 7 "You have to be patient when you go on a trip. I was patient on my trip to???P A last @DATE1. I had to be patient to @NUM1 hours before me and my family arrived. The next day I had to be more patient because we went to an amuesmed park. There I had to wait in very long lines,@CAPS1 is really hard to be patient. Is @CAPS1 hard for you to be patient. Thats the story when I had patience." 8 6 14 2 2 2 2 1 1 2 2 +19339 7 "Its about three @CAPS1 clock the clock tells me, but I cant go to sleep because my @CAPS2 @CAPS3 and I are going fishing. So its eight @CAPS1clock now my @CAPS2 was suppose to be here at seven, but my grandma kept say hell be here, so I believe her but I was a little worried.Now its ten @CAPS1clock in by know. Im just furious I am about to cry, but my grandma said hell be here, in I said, @CAPS4 he wont in went in my room then I realize he well be here he will be here.Then I heard the door open I ran in it was him I ran in said you finnaly came in we ate then I look outside in seen the boat. Thats a time I should patience." 8 7 15 2 2 2 2 1 2 2 2 +19340 7 I remember a time when I was @CAPS1 I was at home it was chritmas time The first one up and I just wanted to open all of my presents and gift but I had to wait till every one got down stairs and @CAPS2 mom to get the camera @CAPS2 we open present my brother and sister whant first be?? The oldest go first a rule my brother made up then finally it was my turn I just randomly took the present and ripped the paper of not even looking at the present because it was my turn I had been @CAPS1 all this time that was the time when I was a @CAPS1. 7 8 15 2 2 2 1 2 2 2 2 +19341 7 Patients to me means trying your hardest to wait on someone or something. I remember one time when I was patient. Me and my @ORGANIZATION1 went to the water park and we wanted to get on this water slide and it was a lot of kids and adults in line so we waited @NUM1 then we finally were second in line. The kids in frount of us offered to get in frount of them but we turned them down. So we were waiting while the life guard was telling the boy to hold on tight because it was his first time going down a water slid. But the little boy fell of tube thing hit his head and all most drowned because he didn't know how to swim. It was scary but we still went and had a great time. 5 7 12 1 1 1 2 1 2 2 2 +19342 7 "Clunk! I @CAPS1 in my seat as the rental car crashed into another pothole ""look whose awake so my mom berked as annoying as possible. ""You slept for long was though him might sleep until school that back up. ""@CAPS2 are we"" asked in a dreary voice. ""ohio"" replied my mom's friend @PERSON1. We were going to @LOCATION1 with my mom @PERSON1 and me @CAPS3 @PERSON2 over spring break. We would be staying in the florid @CAPS4. While we were there we would be visiting my dad as he was working in @CAPS4. I was going to be a memorable trip, but I knew the car ride there would be the ultimate test of my patience. It would take us @NUM1 or @NUM2 days to reach our destination. The @NUM3 day would be the hardest of there all. This was the day we would he driving through the mountains. I can usually pass the time when I am riding in the corners, the ?? the @CAPS5 ??. However when we reached the peak of the @NUM3 mountain, everything went hectic. First off, my @CAPS3 (who was sitting next to me) started screaming because there were not any guard rails and we were in the lane close to the edges. Second, my @CAPS3 started grasping my arm like her life her depended on it. Last, and worst of all, my bladder started getting up! All of things combined to make our pleasant ride through the mountains, a rollercoaster ride that I will never in a moment ever forget. The whole time I was thinking to myself.""I 'm going to go insane! Just make it stop. As if on cue, the screaming came to a halt, the pressure of my @CAPS3's grasp on my arm was relieved and we were pulling into a rest stop with bathrooms. If I had not been patient during that ride through the mountain I would have gone insane. I would be sitting in all asylum. I will always remember that ride through the mountains." 12 12 24 3 3 3 3 3 3 3 3 +19343 7 "Today was the first day I was patient. I couldnt believe it. I was so proud of myself. This is how I was patient. I was in line waiting for ice cream and this teenage girl went up to the counter and said @CAPS1 you I have to be somewhere in ten minutes if you dont get this line moving then Im going to have to talk to the waiterger. All the guy said Im so sorry but you will just have to waight until everybody that was in line in front of you gets there remain before you. @CAPS2 are you kidding me she yelled as she stopped way and thats when I knew how ridiculous I looked when Im inpatient so I waited in line until I got up to the counter and I said Do deal with a lot of people like that, because you handled the situation very calmly. And he said yeah there are a lot of people that are like that around here it truly sad. So @CAPS2 would you like to order? I told him my order and walked home as I walked home I felt so proud that Im never gonna be inpatient again." 11 9 20 3 3 2 3 2 3 2 2 +19344 7 "A time when I was patient was when I was waiting for my gymnastics meet to start. I had to wait two hours along with my team. We warmed up and stretched and were talking about who we thought would win the team trophy. We asked our coach if it was almost time to start. He said it was going to be another hour. So, we talked some more and practiced some skills for floor. We dida head-stand contest and did as much as we could to make the time go by. We asked our coach another half hour later and he told us it was going to be a half hour longer because they had to get another judge. Finally an hour later the judge got their and the coaches had their meeting and we stan?? The meet. That is a time I was patient." 11 9 20 3 3 2 3 2 2 2 3 +19345 7 Im going to write about when I was patience. One day I asked my mom if I could get a phone she said if I be patience I will be able to get a phone so I was patience. Time flew bye and family she sad yes see when I was patience to get a cell phone I got one. Have you ever been patience with your family? Tell me did it work out of did it go bad with your family if you are it probably will work for you. And that is what happens when you are patience. 8 8 16 2 2 2 2 2 2 2 2 +19346 7 "@CAPS1 !Did it came yet!? I yelled, sprinting home from the bus stop.She was I n standing from the mail box, holding a thick wad of envelopes .One of these, I hoped was the letter. @CAPS2 yet honey , she said but theres plenty of bills to go around. I wanted to scream in exasperation, but I remembered what @CAPS3 said , just wait long enough and youll get what you want I trudged inside and plopped down on the couch. This letter meant so much to me. It said which advanced classes I would be in. It doesnt sound that important but only the elite could get in and this meant the world to me. I would be challenged, my parents would be so proud of me, and I would get @NUM1 bucks from grandma. See, you take a test at the end of school and wait the entire @DATE1 for results .Pretty good system ,huh? No ! Pretty soon, other things distracted me swim meets, tennis, book, and I learned that it helps to be patient, and time goes by a lot faster. @CAPS3 was right I guess. One @DATE2 @TIME1, on the @DATE1, I was on the porch reading. Out of the coner of my eye, I saw the mailman. He shuffled around in his bag, and pulled out mail, put it in our mailbox and drove away. I leaped out of my chair and ran to the mailbox. I surveyed the mail quickly, until one envelope caught my eye. I ripped it open and sure enough, it read @PERSON1 has been selected for the following advanced classes: @CAPS4 studies @CAPS5 @CAPS6! My patience finally paid off!" 8 12 20 2 2 2 2 3 3 3 3 +19348 7 The time I was patient was the time I was @NUM1 years old on @DATE1 it was a snowy night and my mom and dad were buying a new car it took so long I was so hungry mom and dad were talking with the car dealer my brother and sister were playing @CAPS1 when my mom and dad were done talking with the car dealer they looked at the car they wanted and one of the worker's brought me and my brother and sister a box of cookies and milk while my mom and dad were looking at the cookies we got hungry again but I showed patient's. My mom and dad found the car they wanted they chose a van with a @CAPS2 inside they paid for it and we left when we did my father took us to @ORGANIZATION1. 5 4 9 2 1 1 1 1 1 1 1 +19349 7 I am always patient person until I sit for hours then I can oh patient person. My mom is patient too especially at the look were she works . A lot of people we very rude to her. 4 3 7 1 1 1 1 0 1 1 1 +19350 7 "One day, just a few months ago, me, my brother, and my mom were writing in line to put school supplies. We were number @NUM1 and they just called @NUM2. It was around @PERCENT1 out and we had to stand there. It was so long the new battery I had just put in my @NUM3 went dead. It took areand @NUM4 hours just to get inside. Then there were even more lines! We barly got our things that day, but because we were patient, we did." 8 8 16 2 2 2 2 2 2 2 2 +19351 7 "I didnt know where we were at. Then my dad told me, we were at this place called buddies. Ive never been there until that day. Then the waitress put us at a circular table. Then, she asked us if we would like anything to drink. I told our waitress I would like a diet pepsie. My sister got a fruit punch. As always. My mom and dad got a mountain dew. My brother got cherry pepsie. I dont know why we all got different drinks. It took @NUM1 minutes to get our drinks though. My dad wasnt so patient. He knew that the food will take forever. Finally our waitress came out with our drinks. She apologized for the wait. Then she took our order. The wait for that was @NUM2 minutes. My dad was very impatient. I was the only patient one at our table. The resturaunt wasnt even that busy. I told my dad to just be patient the food will be right out any minutes. So we waited and waited. Finally, the food came out. We ate all the food, got the bill, then left. That was the time I was patient." 8 8 16 2 2 1 3 2 2 2 2 +19352 7 "I am going to be writing about a time when I was patient. Me and my family were setting up decorations one day for my @NUM1 @CAPS2. I was so excited and jumpy. I was turning ten soit was a big deal for me. We all ready had the cake which was decorated in beautiful yellow and white frosting. It also had a picture of horses running @CAPS4 it and @CAPS1 @CAPS2 @CAPS3. @CAPS4 it. The party started at @NUM2 am. I was in my pretty pink flowered dress and putting streamers up. I keeped @CAPS4 asking what the time was, and my mom would just say to be patient. I had to wait. I was a very impatient girl. I was just so excited I couldnt wait. I then remembered that I was supposed to be patient so I was. I played games and read books while I was waiting for the guests. Then before I knew it the door bell rang and all my family came running in with presents and curds. I guess all that waiting really payed off. I also got some really cool presents." 12 10 22 3 3 3 3 3 2 2 3 +19353 7 "Everyday at school I have to be patience to get my food like pizza,saled,sand with milk what is bad all the time but i check my milk. I had to be patientce to get my gun to." 4 4 8 1 1 1 1 1 1 1 1 +19354 7 "Elkhorn jr. High school, @DATE1, @PERSON1 colbonthorne was having A pretty bland days, he absolutely hated school, he just wanted to go home, @CAPS1 his teacher told him to sit down shut up , and do his work , so he trys to kill time by flicking erases toys at the chalkboard. after about sixty eraser tops, he looks at the clock and it reads, @TIME1. He complains to his teacher and she says''. @PERSON1 if you don't be patient I'm going to send you home!'' @PERSON1 exclaims,'' @CAPS2 @PERSON1, to detention after school'' so @PERSON1 sits down in fear of detention and does his work, all day, withought complaining ''finally''. The teacher says when the @ORGANIZATION1." 6 8 14 2 1 2 1 2 2 2 2 +19355 7 I waiting I was looking forward staring at the silent audience. Yet I couldn't really see that well since the stage lights coming down on me were quite blinding. I stood next to my best friend @CAPS1. On the other side of the stage was our competitors @PERSON2 and @CAPS2. As I kept staring forward I thought about how I got here and why I was here. I was gazing out the window of the small classroom while @PERSON1 kept talking. She said there was a contest for the whole seventh grade. We needed to get in pair and write a story about anything we wanted. @CAPS1 and I looked at each other and shock are heads yes. Later that day I rode my bike over to @CAPS3 house and thought about what to write. @PERSON1 also said whoever wins gets to go to more writing competitions. I was so excited almost jumping up had down excited because I love writing and competition. I jumped off my bike and ran to @CAPS1 already shouting out ideas. Finally we decid on something to write about. It would be an adventure story and how a plane crashed in the middle of a jungle. Br the end up the weak we had ten pages wrting written down.i went on my acer and type th e ten page paper. After all the spell checks and grammar checks we printed our story and turned it in. The results came at the end of the day it was tie between @CAPS2 and @PERSON2 and @CAPS1 and me. So our writing was given to the state for another compition I ronaly @PERSON2 pair and my pair won again! I really hope we don't tie for the country competition. So here I was on the stage still staring at the audience all done thinking about how I got here. I was so tired of waiting. @CAPS1 told me to have some patient so I did. After twenty minutes of judging the presdent came up and said @PERSON3 and @CAPS1 have won first place. We jumped up and down and got on trophy. @CAPS1 and we found at that hard work and patience can really lead to something great. 10 12 22 2 3 2 3 3 3 3 3 +19356 7 One @CAPS1 I was patient of waiting for a game to arive. I waited @NUM1 years for it to come and the @CAPS1 finele came I started out the the @CAPS1 like it was eany other. @CAPS8 the @CAPS1 just kept @CAPS4 on so @CAPS5 the time I @CAPS6 @CAPS7 I just sat the froant porch the rest of the @CAPS1 @CAPS8 it never came so I just went to @CAPS9. The next @CAPS1 I came @CAPS7 I checked the mail @CAPS11 it was empty so I slamped on to the coach and watched tv I looked out the front @CAPS12 and the was a packeg that was just @CAPS13 it was my game and that's the story of my patients. 8 8 16 2 2 2 2 2 2 2 2 +19357 7 "Once I was at a @CAPS1 wings game waiting to get tickets. It was very long and boreing . There were a lot of people in line that game. As much as I just wanted to go to the front of the line and get the tickets, I didnt because that would berude. I felt that helped me develop my patients a little bit more. Plus I would not want people cutting in flont of me in line. I learned that good things come to people who wait." 8 8 16 2 2 2 2 2 2 2 2 +19358 7 A time I was patient was when I was sitting at my house for hours waiting for my grandma to pick me up and go get my friend. I believe you should have a lot of patience so you get farther and wait for what you want. 4 4 8 1 1 1 1 1 1 1 1 +19359 7 "There were many times when I was patience. Maybe like waiting for a doctor appointment or waiting for your teacher to stop instructing so you could finish your home work. Maybe waiting days for your teacher to stop instructing so you could finish your homework. @MONTH1 be waiting days for your teachers to come and give your tests back. But today I am going to talk about when I had to be patience to get my first dog. @CAPS1 was last year when we went looking for a dog to adopt. We couldnt find the right one. @CAPS1 took @NUM1 weeks til we saw the cutest chichuacua. He was only one year old. We were rushing through the papers scared some one else was planning to adopt him. When we turned @CAPS1 in the lady said we had a back side too. After the paper work we had to wait another week because they had to fix him. My mom went shopping for dog store they told us we could pick him up on @DATE2. We were so excited. Instead of @DATE2 we thought we could pick him up on @DATE1. On that @DATE1 we picked him up @CAPS1 took @NUM2 years of patience for my sister and only @NUM3 years for me. A year later we went back to adopt or just look for another dog.We didnt find one, but we waited and if your patient you will get something for that. We are still patient to maybe get another dog if our parents allow @CAPS1." 9 12 21 2 2 2 3 3 3 3 3 +19360 7 "I am patient at school a lot of the time. When I am not understanding something and my teachers or someone else is busy I will wait for however long. I need to, until they are alone helping someone else. In any of my classes I am patient most of the time. In art class we were making a box out of clay and I was behind a little because, I had in finish my project that was due the week before, so when I had started working on my box, I did as much as I could remeber from the art teachers demonstration. That was the start of it. So when I needed help I asked a friend that was done if they would help me get caught up, they said, yes, so I was getting help from them. When someone else asked for help. So she helped when. I wailed, it took about the whole hour but, I wailed and was patient with them. At the end of the hour they still waent done so she said she would help me the next few days. I said alright and then I said, Id see them the next day. The next day in art @PERSON1 helped me and when she took a break or worked on her own thing, I tried my best and waited patiently for her to help me again. @PERSON1 was almost done with her present but, I was still waiting, so I asked someone else until she was finished with her project. Finally, when she was finished she helped me with the rest of my boy. At the end of the hour I finished with it. Then we started a new project the next day that was simple. Thats not the only time but, its the most longest time I was patient with some one." 10 8 18 3 3 2 2 2 2 2 2 +19361 7 "I cant really tell you about a time when Ive been patient because that something I struggle with no matter how hard I try to be patient it just seems to be impossible but its not, maybe. I just dont try hard enough, who knows. An example of how impatience I am is Im at a store and I have five dollars and something I want is ten dollars I wont save up for the ten dollar item. I will turn and most likely buy candys. My parents try to take my money and hide it so I cant spend it but I always end up finding it and spending it because it dont want to and until they give it back most the time that happened. I get grounded but item worth it because I get candy. Another example is when I want to do something and my mom say no I always sneak it and get in trouble. @NUM1 words." 9 7 16 2 2 2 3 1 2 2 2 +19362 7 "Patience is being able to wait for something. For some, patience is hard and for some its easy. For me, I'm ok at patience. Like I'm patiencet for this game I pre-ordered. It comes out @DATE1. When I'm not patiencet is when I want I get on the computer. I Was also patiencet for getting my second class rank, well thats all I have to say about patience." 11 2 13 2 3 3 3 0 0 1 1 +19363 7 "A time I was patient was when I got my shots. It was just me and my dad. I had to get my shots because I was sick. It was still cold outside because it was in @DATE1. We went to the @ORGANIZATION1 for children. In the beginning, I was at home getting ready to go. I put on an orange turtle neck sweater and jeans with sneakers. I didnt want to go because it was after @CAPS1 and I had a lot of new games. It took us @NUM1 minutes to arrive. My dad filled out the information then we sat. In the middle, we start to watch television. I was really bored because it was nothing on but informercials. They had us waiting fo over an hour. I start to get hungry and very upset. They finally called our name. In the end it was time to get my shot. The nice lady gave me a juice. Then she told me I was getting @NUM2 shots. I got my shots which took a very long time, I was frustrated, I got my shots, before we left they told me that I would be coming back for more shots. I was still hungry so we got @CAPS2.Donalds. In conclusion, I was very patient when going to get my shots. The information I got was just as painful as getting my shots. They had us wait for a very long time. I was sad to have to wait but happy it was over." 8 12 20 2 2 2 2 3 3 3 3 +19364 7 "I have exprienced patients when I went to @LOCATION1 @LOCATION1. It was a @NUM1 hour strip, we were in a small car and we were a little caradable because we didnt sleep very well last night even though I brought a book & my @ORGANIZATION1 game we were still pretty bored. All I did watch trees after my battery end on my @ORGANIZATION1. Dad was considtrated on the road, mom finally and license plates to see travelers. Once he got into @LOCATION2 I started to drift asleep but @CAPS1 kept me up because she just finish her and was explaining the whole thing. So I started reading my book. Even though you could hear, mom, @CAPS1 and my stomagh growling, we didnt stop. We had to get to @LOCATION1 before @NUM2 pm because that was when the hotels front desk shut down. At @NUM3 we were crushing through the state of @LOCATION1 to then arive at @TIME1 at the hotel we were so excited that we had fallen asleep within @NUM4 minutes in the bed." 10 11 21 2 3 2 3 3 3 3 2 +19366 7 "Being patient, what does it mean? It means that; you are understanding and tolerant. A patient person experiences difficulties without complaining. @CAPS1, being a patient person is difficult. One time, it was hard for me to be a patient person, I didnt complain though. I was overjoyed to be going to a water park on my birthday. I wanted to party and get my swim on but it was almost @NUM1 weeks away. I didnt want to wait any longer, but I knew that being patient would make my experience even better. I was tolerant, understanding, and patient. The week dragged on. I wanted to complain and rip my hair out because it was like the earth was turning @NUM2, @NUM3 times slower, but I knew that I couldnt! When the thought of me going to the water park got stuck in my brain like glue, the problem was clear. If I didnt think about it, time would fly by again. I had to be patient because I didnt want to annoy anyone with my complaints. When the day came, I had a blast. Being patient always turns out good!" 8 9 17 2 2 2 2 2 2 2 3 +19368 7 "Being Patient. Being patient has it's good & bad. I have had good things happen to me. I @CAPS1 I had to do was be patient. Here are some good things that happen to me. A time when I was patient was when I tryed out for the dance team at my dance studio. I was so nuervie l never tryed out for anything befor. I had to wait &wait & wait for my dance studio to call my mom. One day when I was at a friend house my mom called me and said ""@CAPS2 you have made the dance team."" I was so happy. I couldn't wait to learn a new dance. Then I could saw everyone at my dance compitions. It will be so much fun. Another time I was patient was when broke my arm. I had to be relly patient. I had to be so careful of my arm. I had it in a cast then I waited to get it off. Now I have no cast on. I was so patient that the doctor said that it was healing & I didn't need a cast any more. If you are patien better things will come." 8 8 16 2 2 2 2 2 2 2 2 +19369 7 Once I went to @CAPS1 world and we were waiting for about @NUM1 hours to get on this stupid rude. I was they because I had my @ORGANIZATION1 so I played that but on to an hour I got bored. I picked on my sisters and it was on watching them get mad. Then I got bored with that so I just sat down on the road. 8 7 15 2 2 2 2 2 2 1 2 +19371 7 In my own words patience is when you have to just be com and quiet. And not all hyper and annoying. Patience is just controling yourself. And not being all rude and disrespectful to others. 3 4 7 0 1 1 1 0 1 1 2 +19372 7 "One day when I was at my sisters football game. My mom droped us off at the game because she had to go to work. When I got out of the car she asked me if I had my money with me. I said no then she said your just going to be hungry. I said @CAPS1. @CAPS2 when the game started. I got really hungry. @CAPS2 I checked all of my packets, it just @CAPS2 happened that I found @NUM1 bucks. @CAPS2 I went to see how long the line was. The the was @CAPS2 long it was almost in the street. @CAPS2 I sat back down trying to let the line get shorter. But the line had gotten way longer @CAPS2 I ran in the line. I had to stand in the line for about @NUM2 mins. @CAPS2 when I finally got out of line I stood by the gate and watched my sister cheer. @CAPS2 she came up to us and asked me to bye her some @CAPS3 fries. I said no because the line was to long. @CAPS2 she said please! @CAPS2 I went back in line and it moved way slower. When I got back she said, what took you @CAPS2 long. I said look at the line. @CAPS2 that is one of the times I was patience." 8 8 16 2 2 2 2 2 2 2 2 +19373 7 I think patience is like somebody or someone is waiting for someone to get out of the bathroom then the other person can go to the bathroom. Like I am not in patience because I want to go a store now but they said wait your patience. My whole family is not in patience but my friends are. 3 3 6 0 1 1 1 0 1 1 1 +19374 7 A time when I was patience was on the car ride @LOCATION1. It was a @DATE1 hour car ride but I stayed patience I dident complain. Most kids would say are we there yet but I dident. Also when I was supper hungry I sat there and did not complain. Finally @DATE1 we got there. That is a time I was patience. 8 5 13 2 2 2 2 1 1 2 1 +19375 7 "One day I was told we were going to @LOCATION1. We were getting there by this big fast boat called the jet exspress. So we had to wait in this big line. The boat was delayed so we were told it would be late. I shold of known I did not dress warmly and it was freezing. We were the first people in line so that was a go thing but I was being patient, I was not complaining or anything. When the boat finally arrived I was so relieved and my mom also thanked me for being patient and not complaining. That day turned out to be very nice and fun." 9 8 17 2 2 2 3 2 2 2 2 +19376 7 "When my friend was getting his meds I waited until he got ready, I was seating to wait for him. I was getting my phone down loud @PERSON2 ping pong and uplift. I was looking for @PERSON1 and I was waiting for him to be done." 5 4 9 1 1 1 2 1 1 1 1 +19377 7 "One @DATE1 day, my uncle took me to @CAPS1 point to go on a roller @CAPS2, the @CAPS3 @CAPS4. The line was so long, we waited at least @NUM1 hours. Time went by slowly and we finally got on. After, we went to the @CAPS5 thrill @CAPS6, which took about an hour and a half." 7 7 14 1 2 2 2 1 2 2 2 +19378 7 "Patience. ""@CAPS1"" @CAPS4 stomach rumbled."" @CAPS2 I'm hungry"" I cried so @CAPS12 stopped at @ORGANIZATION2, because @CAPS8 were on our way home. Moments later @CAPS8 finally pulled up to @ORGANIZATION2's drive through. The cashier said ""hi @MONTH1 I take your @CAPS3."" @CAPS4 @CAPS2 yelled ""@CAPS5 I get a famous bowl and a @NUM1 piece honey @CAPS6 wings."" The ladie @CAPS7 ""@MONEY2 @NUM2 first window."" @CAPS8 drove around to the first window @CAPS4 @CAPS2 save the ladie a @MONEY1 bill, @CAPS12 gave her @MONEY3 and said ""@MONEY3 is your change, go to the second window."" @CAPS9 @CAPS8 could drive to the second window @CAPS8 had to wait on the car ahead of us. @CAPS8 sat there for @MONEY1 minutes and they finally left. Then, @CAPS8 drove to the second window and waited. @CAPS13 minutes later @CAPS8 still was waiting. So after @MONEY1 minutes. I said"" @CAPS2 @CAPS5 @CAPS8 go get some @ORGANIZATION1"" @CAPS12 calmly @CAPS7 ""@CAPS10, @CAPS8 are going to sit here patiencely."" I mumerred ""but I m starving."" @CAPS8 sat there and waited patientley for over a hour. I ask one more time ""@CAPS5 @CAPS8 leave please."" @CAPS12 said ""@CAPS10, I payed for the food and I'm going to get it."" @CAPS13 minutes later @CAPS8 finally got the food after two hours. After sitting there @CAPS8 got some free food. Even though @CAPS8 got some free food I well still mad that @CAPS8 sat there all that time." 11 10 21 3 3 2 3 3 3 2 2 +19379 7 "It was a hot sizzling @DATE1 day I had descidid to ride my dirt bike @CAPS1 I but on my helmet, boots, goggles, and gloves. I headed out the door and out to my dirt bike, started it and took off. Like a speeding bulit zoom I went up one of the ramp and I landid but I was going to fast around a corner and wam I fell off and the foot deg went into my leg. My dad came running picked me up and put me in the truck to go to the @CAPS2. When we arrived my dad had to check in after that we sat down. There was a lot of people there men women kids and babys. An hour passed and we were still siting there, then two more then finily they called my name. the nurse took my dad and I to a room and said the doctor will be in shortley. all right my dad replide. An hour passed no doctor. We were starting to get bord @CAPS1 my dad turned on the tv. Then finily to three hours after we got in the room the doctor came in by now it was @NUM1 pm and we were exostid. The doctor took me to get xrayed when we got back the doctor said I had brused my bone and gave me crushes and said to stay off of it for a week. When we got home I laxed on the couch and went right to sleep. That was the time when I was patient for six hours in the @CAPS2." 12 10 22 3 3 3 3 3 3 2 2 +19380 7 A time that I was patient was when I was awaiting to get into my basketball game I played for the destroyers. So in all the games I always had to wait to the @DATE2. So in the @DATE1 game of the season I got in four times. In the first @DATE2 I got in for about one minute. the I got in for @NUM1 minutes in the @DATE1s. I was happy but I still wasnt starting. then we got into the play offs I only got in two minutes throughout the whole entire game. At one point I was gonna quit but my teamates came up to me and said dont worry your gonna your time to start everyone will. Over the next few months I waited patiently. Then we got in tournaments then we split up the team with older people on one and the younger people on the other. Then I finally got in the starting lineup. I was so excited that I was in the playoffs then we lost at the championship game. That was a time I was patient. 8 8 16 2 2 2 2 2 2 2 2 +19381 7 "Patient help you got through life. If You aren't patient then you won't know where to go next in the future. @CAPS4 uncle had to be patient face month. He was running a muck just @CAPS5 for a phone call. Finally someone yelled just be patient they will call. He bid us being patient is the hardest thing he was to do. He was dined why they couldn't call the next day. He said ended up forgetting about here and there. He said he was trying to be as patient as he could be. @CAPS4 under was waiting for a patient ??? America's next @CAPS1 @CAPS2. They add him they would call if he got in. They soon did because the phone mug. A woman nicely said ""@MONTH1 I speak with @CAPS3 sanders please"" @CAPS4 uncle replied ""yes this is him! I @CAPS5 for a month! @CAPS4 family kept telling me to be patient! So now I don't have up anymore!"" "" You are in! so keep on practicing! Someone else will call you with the details!"" "" @CAPS6 you so much!""then he hung upon the phone "" I'm in!"" @CAPS7 was the happiest days of our lives. @CAPS4 uncle with through a lot. Really all that kept him on the ground was him being patient. He told us @CAPS7 was hard but @CAPS7 worked out great and the ending. Here's future advice. Always and I mean always be patient. Your not going to get anywhere in your life if you aren't . Patient is an important @CAPS8 of your life." 10 12 22 2 2 3 3 3 3 3 3 +19382 7 "A time when I was patient was when I counted. I didnt just count to ten, I counted a boatload of coins consisting of pennies, nickles, dimes, quarters, and more. It took me two hours to finish counting my money, it felt like an eternity. Counting bunch of coins wont change the world, but it takes a lot of patience to accomplish. I still remeber the moment when I finished counting the money. I was proud of myself and l couldnt think l could make it because l admit to be a very impatient person. Patience is important because nothing would ever be finished without it. I dont think that Ill be able to count my coins again, but like they say, Patience is a virtue." 9 8 17 2 2 2 3 2 2 2 2 +19383 7 "Sitting in the car waiting for @CAPS2 mom to get out of the house and into the car.When she got in the ca we were off.On the way to the??? For the @CAPS1 party I got pretty bored after about a couple minutes,when got out of midland I thought it would go by preety fast but I was wrong it was slower than ever.I was bored out of @CAPS2 mind and the thing s that made it worse was that @CAPS2 little sisters were screaming in the back.So then we stoped at a gas station witch felt like forever.I preety much never talked the whole way up there I was trying to be patient but I couldnt take it.I manged to calm myself down after about an hour of the girls screaming.They finally fall asleep.I just sat there loking out the window when we where about forty-five minutes away it felt like we have been driving for days.It was probly like @NUM1 minutes away when the girls finally wake up.They started screaming Are we there yet@CAPS2 mom and dad just keep saying @CAPS3When we pulled into the drive way it was probly the happiest thing that happened hat day.I thought I was preety patient on the way up there but on the way back I might just sleep.At the party I was patient until we could open the presents.I freacked out.I hope next time none of that will happen." 11 10 21 3 3 3 2 3 3 2 2 +19384 7 Being patient is hard to be. First of all its like your waiting in a??? a and line that could take forever. Being patient at this line could take long time but it could go by fast if you had something to do. You could bring a book to read and read at the way up to one from the line or be patient and???. 5 5 10 0 1 2 2 1 1 1 2 +19385 7 "One time, when I was being patient, I got somewhere that I always like to go. This place is called @CAPS1 point. I always look forward to this place and once we get there, Im very excited. One small downer to this place is called waiting. Another word would be being patient. Being patient is when you wait for someone or something. You have to be patient everywhere at @CAPS1 point like on the way there, getting a campsite, and also in lines. But in the end, its all worth it because there is lots of fun after being patient" 8 6 14 2 2 2 2 1 1 2 2 +19386 7 I remember the time when I went to the @ORGANIZATION1 and I saw a little girl that was patient. When I got to the @ORGANIZATION1 I was so excited because it was my first time going to the @ORGANIZATION1. It was so colorful and loud. I went on a few rides and then got hungry so me and my family went to go get some cotton-candy. I was eating my food when I saw a cute little girl. She stood in line like a little angle. All of a sudden I saw a bunch of teenagers just cut in front of the little girl. She was so patient she just stood their standing behind the teenagers that cut in front of her. The line got longer in just a few minutes. I left to go on some rides and when I came back the poor little girl was still there. More and more people had cut in front of her but she didn't say anything. All she did was mumble to herself. I couldnt stand it! I wondered how she could just let them cut like that. If I was that little girl I would of lost my patience a @CAPS1 @CAPS1 time ago. I was so amazed with how much patience she had. She finally got up to the front of the line and @CAPS3! Out came the closed sign. I couldnt believe my eyes she didnt even get mad. I kept watching until the end. She finally walked over to the @ORGANIZATION2 and @CAPS4 stand and did the same exact thing! I couldnt watch this anymore. I left with my family and thought about that girl. In the end I hoped to have great patience like her just thinking of her makes me amazed! 10 12 22 3 3 2 2 3 3 3 3 +19387 7 "I know a time when I was patient. My friend @PERSON1 was coming back to the football field after we scored a grant @NUM1. We were gonna hang out. It was two and a half hours before he got their. When he was there we both were patient to play the game or do what others wanted to do. AS the day progressed the sun was like a tanning booth. The grass was also as dry as cactus, but the day moved on. Finally when we went are own way. We knew we had patience." 6 8 14 1 1 2 2 2 2 2 2 +19388 7 "One time when I was patient my friend @PERSON1 went to the mall around @NUM1 am. @CAPS2 were supposed to be shopping for new school clothes. When @CAPS2 got there the sun was really bright up in the sky, the birds were chirpping, and it was as hot as a @DATE1 day. When @CAPS2 both walked hardly anybody was there but @CAPS2 went to a store called???, it was so full of people I thought I was at a concert. @CAPS2 had to wait in the longest line, it was so long people were almost at the doors. So @CAPS2 both waited and waited. Finally @CAPS2 were at the front of the line and the casher said @CAPS1, you have waited in the long line probably for about @NUM2 hour. I will give you guys a @PERCENT1 discount. @CAPS2 went shopping and @CAPS2 got rewarded for being patient." 10 8 18 2 3 2 3 2 2 2 2 +19389 7 A time that I was patience was last @DATE1 when I went to @CAPS1 point. I was about to get in line to ride the @CAPS2. I was at the begging at the line and then I saw a sign that @CAPS3 two hour wait from that point. But I wasnt that close to the sign so for me and my family and the other people that were in the same spot as us we must likely have to wait at lest two and a half hours. Well it was a hot day out and I was wearing black which probably wasnt the smartest @CAPS4. So I was waiting in line for about an hour only I just couldnt take standing in that hot wheather anymore but I really wanted to rive that rine so all I could do was to wait for another hour and be patent then I was about @NUM1 minutes away from the ride and then the line just seemed like people left for me that was good cause then I was at the front and I was happy that I was patient enough to wait that long. That is a line that I was paitent. 8 8 16 2 2 2 2 2 2 2 2 +19390 7 "One day in the @CAPS1, I had to sit for two hours cause I had to come for taking out my stitches. And there a lot of people, we stay there a very long time, cause there were only @NUM1 docters and this lady took so long. So it was my turn to go in but I was scar that if hurts but then he was doing and it didnt hurt for nothing. And then I went home." 8 5 13 2 2 2 2 1 2 1 1 +19391 7 "awhile back, my best friend @PERSON1s grandpa died. They werent blood related but they were really close. At the funeral, I saw @PERSON1, and her sister @CAPS1 force a smile toward us. @CAPS1 left to go talk to my parents. Then ,@PERSON1 started crying, that she wouldnt see her grandpas gravestone, because they were moving to @LOCATION1. She changed subjects, about the good times she had with her grandpa. I lauged and smiled with @PERSON1. My parents later said we had to go to chuch. I hugged her and told her everything would be alright. She smiled ,many contrary . @PERSON1s eyes filled with tears, I dont want to move to @LOCATION1. @CAPS2 weeks later, she did with her family." 6 12 18 0 2 2 2 3 3 3 3 +19392 7 My at saying your patient is. Your patient when you wait in line for something is being patient. Waiting your turn is being patience one time I was patient by waiting on the bench to play but I didn`t get to play until the fourth queiter with @NUM1 to go but you know what I did had patience. A lot of people have patient but some people just don`t have manner when they just don`t care and start the yell and screaming. Like popstars a lot of singers popstar and other famous people think they can cut in front of any one cause their rich but it they wern`t rich they would cut pop stars and movie stars just need to have patient. Am not saying all popstars and movie stars don`t have patient when they were little they never act like that. 8 4 12 2 2 2 2 0 1 1 2 +19393 7 I was patient when my mom go to the stor she will go in the stor and get a basket she will take aill day in that stor in she will come out that stor with a basket fill up to the basket in I will be patient then she will go to a new stor do it agin 4 4 8 1 1 1 1 1 1 1 1 +19394 7 "Onece, when my family went to @LOCATION1, we all had to be patient. There is a water ride where you get in a log then you sit and it takes you up a hill. You wait until you get to the top, then you splash down a hill. Well, that was one of everyones favorite rides, so there was a long line. We had to wait for a half hour to ride it once. So, in order to do something, it takes time so you must be patient. If your not patient you probably want get to do what you wanted to do." 8 8 16 2 2 2 2 2 2 2 2 +19395 7 "Patience is the ability to be tolerant,understanding and face difficulties without complaining. Patience isnt something they teach you in my school. There isnt a book your assigned to read called patience @NUM1,there is no movie called patience is the key. Non of that exists, even if you live in a world where a necklace can be turned into a camera, or a cell phone is a gun. I have just been assigned my first undercover mission and its not at all wat i had expected. So far, all I have done is sat on a cold bench next to the strength meter at a county fair. What people really dont understand is the patience that is put in to being a spy. Sure theres an ocasional car being blown up bet not today, not for me. I here the clock in my hand so tick,tock,tick,tock. @CAPS3 @CAPS2, theres come action. The subject (the person Im assigned to watch is on the move and, oh, nevermind, all the subject has done is bay a three dollar bag of popcorn. I start to doodlle a design in the dirt, with my foot. Im just about to abort the mission. Seeing that nothing is happening when all of a sudden I find a clue. There in the dirt that lay just before me. I see a tiny computer chip. I pick it up and spray it with finger print revealing mist. A purple fluffy cloud of vapor sorround the chip. Sure enough when the purple cloud vanishes. I see that the subjects fingerprints are on the chip, I pull out my laptop at insert the computer chip. @CAPS1 @CAPS1 are the words that stay on the computer screen as if refusing to leave. I sit there waiting bored. I remember patience. I think to myself that if Im able to defeat twelve armed robers with nothing but a tablecloth, Im sure I can sit here and just be patient. At least twenty minutes have gone by now but i feels like twenty hours. The computer still has written on the screen, @CAPS1, @CAPS1, @CAPS1 wassucsessful. @CAPS2! I say aloud and people start to stare, but I dont mind. I click the square on the screen that says open. @CAPS3 a small message opens up that says @CAPS4 me at the ice cream pallor. I close my laptop and start to slowly walk over to the ice cream van, observing everyone , and everything around me. A man wearing a yellow shirt and a lady with a purple scarf diaped over her head are the only two people standing by the icecream stand. I walk a little bit closer and i realise that the man has a gun. I pull out mine and with a few loud roars they were both in handcaffs ofcoure, they were both working with the main suspect. I would have never been able to sucsesfully complete my mission without being patient." 12 12 24 3 3 3 3 3 3 3 3 +19396 7 "I remember a time when I was patient. I was so patient that the doctor gave me a sucker. I was being patient because the doctor was looking for a needle to stick in my arm. He told me to wait a second, but I wasnt waiting a second I was waiting for hours. My mom couldnt wait any longer she was about to take me home. I told her to be patient and it would fill like time is going faster .She said, she is going to try, but if it didnt work were leaving. She waited patiently and next thing you know the doctor came back in the room and said thanks for being patient. He was still looking for the needle then he came back in the room and said I found it. It was in the other doctor room above the sink on the dresser, after I got my shot the doctor thanked me and my mom for being patient and not leaving. after he thanked me he gave me he gave me a sucker and shook my hand. Me and my mom left out and went to the store and got something to eat." 8 10 18 2 2 2 2 2 3 2 3 +19397 7 "So you want a story about being patient well your in lack. So the story starts off with me at the doctors office so Im waiting. I was going to sit here for a few hours so so @NUM1 @CAPS1 Ill read something. So Im reading and all I here is wineing oho screaming so I ??? ono yes. But not mad. I get the kid to stop crying and mom to stop screaming, so I was happy. There my sister cheris comes up and screams in my ear I was really annoyed but not mad so I just got another ??? then my mom says itll be another hour. I was so mad I screamed. This is true and I was pre patient" 6 8 14 2 1 2 1 2 2 2 2 +19398 7 I was patient when whey was going to lunch and I was staning their paient and we got or lunch and avir @CAPS1 was patient then wan we got or lunch and I no a time wen my fraed was patient to wan we was at the water fouten to get some water and some gris cam up to the water fauten to get some water. He watet patient. 4 4 8 1 1 1 1 1 1 1 1 +19400 7 Without patience a person can be very easily broken. Without patience a person can be easily trigger to as something horrible like myself I have patience but a certain time I sometimes dont have patience. Without patience the whole world be out of control so that who most plans of business try to hate there???as first as possible. So that what all this was patience. 3 5 8 0 1 1 1 0 1 2 2 +19401 7 "When I was patient I remember writing an article at sea world when I was very little. I didnt complain because I knew I would get those sometimes my sister was complaining being she was in a bad mood. We stood in line for @NUM1 minutes for a role called @CAPS1 drop, or something like that I cant remember. Then there was a line at the ??? for ???. We waited @NUM2 minutes plus the time for every to get out." 6 7 13 1 1 2 2 1 2 2 2 +19402 7 "One time I had to be so patient for a plane to come in. We were up at the crack of dawn and had to whate for @NUM1 to @NUM2 hours. Over @DATE1 break a few years ago me and my family whent to @LOCATION1. We did lots of thinks while we were there. When we had to go home we had to whate for a plain. We got up an our ealy so we could pack up and get to the airport. When we got there we had to be patient wile we reterned the rental car and go through sicuritey. When we got throw security we had to whate for the plain to arive. We sat for over an hour befor the plain came in. when the plain arived we had to whate for the plain to be cleaned, passes checked, and everyone was on bored. That was the time I had to be patient. And I was patient for a very long time to." 7 4 11 2 2 1 2 1 1 1 1 +19403 7 "A while ago when I went on a trip to cedar point in @LOCATION1, it was an hour and thirty @DATE1 drive to go there, the reason why we went was because of my dad work @CAPS1 @CAPS2. I kept out of the car with??? @NUM1, wait for my suaisn family, waiting was all I did until @DATE1 were burst out running into the parky my dad points out the height limits (I was only @NUM2 and 4.@NUM2ft tall @CAPS2 I wasnt tall enough for most of the, @CAPS4 rides ,my dad saw that I was tall enough for the @CAPS5 @CAPS6. We walk around looking for the ride and more importantly he line. So we finally??? the ride my attention was drawn from the ride to the line ,my mouth practicely hit the ground with the expression @CAPS7 luck getting to the that ride, my father looked at me than my sister where is mom and will? I pointed over by the faress whell being covard of course. So we just get in the line and sign, it was at least @NUM4 something degrees. we waited for almost two hours and finally got to the front, we got into the chair and a bar came over us, I remember one thing set a quarter on your leg and gravity takes a hold of it . A minute @CAPS8 we are going down like a neteour the quarter doesnt float @CAPS9! At that split second were on solid ground now the ride was not really worth the wait, but hey Im not a covard." 11 10 21 3 3 3 2 2 3 3 2 +19404 7 Over the @DATE1 me and my sister were going to go to the gnate wolf loge with one cosin grace and one ancul rege. But then he had to resceganal because his plain was going to be late. Then he had to rescegunal decas his car brock bown . Then we rented a car. Then we had to pick up my uncle @PERSON1 and we wen on one way. On one way than we got stoped by a cop and the cop gave us a tickit for speeding. We finaly arrived and it was the best two days of my life. 7 7 14 2 2 2 1 2 2 2 1 +19405 7 The story Im about to tell you is shout patients where a boy and his fauther went fishing and the boy is not patient. One day a boy and his dad went fishing when they got there the put the but in the water and stated their trip the boy was unpatient and cerped cunokining. Onforehenitlly he cout nothing when he got home he side his dad came over and said sun if you cout something evietime you fished it would be killing not fishing. @CAPS1 they went out the next day and sence the boy was patient he cout a left music ie @CAPS2 because he was patient. Well see what happened with the boy he cout a fish @CAPS2 because of patients remember all good things come to these now are patient! 6 8 14 2 2 1 1 2 2 2 2 +19406 7 My moms in the hospital! My mom was in the hospital! She was getting a life-threting surgery. This is a story of a time I was of a time I was patient. My mom didnt feel good for two years. And when she whent to the doctors for a cheak-up it turned out she had heart disease @NUM1 main artary block ages. So I had to wait while she was getting preped. It took two hours which felt like forever! Then I got to see her for five minutes then she had to be taken to the surgery room. The surgery took five hours. I sat in the waiting room after school. I did my homework and read magizens. I was very worried about my mom. But then the doctor comes in and says no one can see her for a whole day! I had to be patient and wait till the next day. That was the time I had patients and it payed off. 12 11 23 3 3 3 3 3 3 2 3 +19408 7 "There was a boy that wanted to go to gym so when he got there he had to chance. But the was a sertant basketball he wanted. As he was getting dressed other boys got out there first and took the ball. Later when he got out he saw they had it. So when he got over he was mad and took it from them. After the insadent he came and gave it to them and sayed I can wait. So when the were done he got it he was so happy and proud, that he finally got the basketball. When he got home he told @CAPS1 mom and she said that she was happy because he was finally patient. He asked,what is that? @CAPS1 mom said it is a thing when you understand and tolerant. The boy was very happy because he always used to take things and now he can wait to use something to be happy. That boy now lives happy with @CAPS1 mom in high school patiently moving along the end." 8 6 14 2 2 2 2 2 2 1 1 +19409 7 A time when I was patient was yesterday when I finished the @CAPS1 before a lot of people and was drawing for the next @NUM1 minutes. I was patient throuout this time because if wasnt I mightve been very loud and disrupted my fellow classmates. I started to draw or color as some might say because instead of drawing a smiley face I colored in boxes on math graphing paper to make a sort of lime green and purple checker board. It took the entire time and I am still not done with it. That is a time I remember when I was quite patient. 10 10 20 2 3 2 3 2 3 2 3 +19410 7 "One time I was patient was at the doctor, cause when I was little and I was at the doctor I was running around and did not give a care. I guess this time my mom did not trust me so she sat with me where ever I went. Mind you there were girls around so I got embarrased and asked mom why are you following me and she replyed cause I dont want you running everywhere. That when I told her mom I older now, Im not sorle years old, Im muture now. She said @CAPS1 go ahead so I went over sat next to some girls and talked to them. Thats when we got up and start walking around talking. I felt a little tingle in my head saying your mom is still following you so I turned around and she was not there. So we went to the snack room and sat down we ate and everything, and I so happen to look over and my mom was sitting at the third table away from us. Thats when went back on the elevator on the to our original place and sat down and to my surprise she was all ready there. That when I told the girl that I would be back and I sat next to my mom and said was you following me and she replied yes I mean no. so I had a talk with her and we came to an understanding. Soon enough it was my turn to go see the doctor. That is the end of my story." 8 8 16 2 2 2 2 2 2 2 2 +19411 7 "On time I was payshent when my brother was ridining by quick I had to wait and wait for my brother to be done but he said I cant ride in but I told him that I was so I wait and wait but had been riding it for hours finally he had ran it out of gear and said now you can ride it. Now and I replied my cool," 6 7 13 2 2 1 1 2 2 2 1 +19412 7 Patience is when your understanding and tolerant. Also a person that experiences difficulties without complaining. A time when I was patient was when my baby sister was born. I was patient then because I had to wait until she was born and then I could become a big sister. My little sister was supposed to be born on @DATE1 twenty second. That day my mom wasnt even breaking a sweat. I thought she would be ready to go and get her bags(which she packed the night before) and ready to have the baby. I most certainly was. One week and two days later my mom went into labor and was ready to have my little sister. I was patient for those nine days of waiting. I waited patiently in the waiting room with my dad and big brother until the nurse came out and said we could come inside of the room. When I saw my baby sisters face I almost started to cry. I knew I was going to love her and she was going to be just as patient as I was. 11 9 20 3 3 2 3 2 2 2 3 +19413 7 "I am in the @LOCATION3 @CAPS1 sea cadet corps .When I packed my things in the truck I had wait in a @NUM1 hour car ride till I get to my training in port @LOCATION2. We were driving in a truck that fit five people we were fitting @NUM2 people in it, I was the one stuck in the back with all the gour. Some ones sea bag had a boat in it that was stabling in my back I tried so hard not to complain about it, it took all my patience to last half the way there till I had to move the boot in my bay I grabbed the bag that had the boot in it and there wit to the other side. When I thought all was well @CAPS2 and @LOCATION1 started sighing at very annoying song I didnt think my patient could handle staying in that torch with their sighing .Finally we were at port @LOCATION2. @CAPS2 and @LOCATION1 stop sighing and my patience had held through. But then there was the cheat in line their were @NUM3 people in @CAPS3 at me waiting to check Id had a feeling my patience was gonna blow up and Id go crazy. But it didnt I stayed there patiently until it was any turn to check in, sadly the officer at the check in desk was old and talked very slown it was so hard understanding what he was saying. I finally was checked in my patience had survived!!Then I found out my friend logon was banked up gave me. Which he can be very annoying. @CAPS4 boy I thought, here comes another test ror my patiences. My patience was tested through the as ride, the clean in line, and also through that whole training. But my patience was very strong and survived!!!" 11 11 22 3 3 3 2 3 3 2 3 +19414 7 "@CAPS3 was about a @NUM1 hour drive to freedom hill and we had just left our house. Dad, mum, @CAPS1 and I were going to see buddy guy and @CAPS3 was going to be a @NUM1 and a half hour concert. As we pulled in the parking lot, the policeman guard pointed to the open parking spot for the jeep and we drove into @CAPS3. We got out and drank pop and ate sand whiches because we had an hour or so before the concert started. After @NUM3 minutes, or maybe @NUM4 minutes, we bought our tickets and found a spot to sit on the hill. Once we sat down, time stopped I waited and waited until I thought about @NUM5 minutes had passed. I was expecting buddy to walk on stage any second, but @CAPS2 never did. After what seemed @NUM6 minutes, I bumped my dad with my elbow and asked “how long has @CAPS3 been since we sat down?” “about five minutes.” @CAPS2 replied. @CAPS2 must be lying to me, I thought so I tried again. “how long?” “six now.” @CAPS3 wouldn’t have been surprising if I died, right there. I tried to fall asleep to pass the time, but there was just too much noise. Minute after minute rolled by and someone stepped on stage. “The performance will start in @NUM7 minutes.” @CAPS2 announced. @CAPS3 was heartbreaking. The wait was only half over. Finally after @NUM7 minutes of dying and waiting, @CAPS2 walked on stage. @CAPS3 was the best sight in the world. @CAPS3 was worth the long, long wait and I enjoyed @CAPS3 even more. We packed out for the rest of the night." 9 12 21 2 2 3 2 3 3 3 3 +19415 7 "A time when I am patient is at gymnastics. There is multiple ways you have to be patient at gymnastics. Your mind, and body have to be patient, and sometimes you have to be patient with the coach your mind has to be patient when you wish you do things but you really can`t. your body has to be patient when it feels like your ready to do a skill but your mind is telling you to stop and be patient. You have to be patient with the coaches because they are always helping. So sometimes you have to wait @NUM1 minutes until they can finally help you. Patience is a very important life skill that everybody needs to have." 6 7 13 0 2 2 2 0 2 2 3 +19416 7 When I was at universal studios and I was waiting in the long lines to get on the rides I was patient. It did take a while but I never got mad or impatient. My dad and I was in a line for this dragon rollercoaster we were so close to being next then it started raining and lightning. A lot of people left so we ended up being in the front of the line. We waited for another hour or two but it never stoped. We forgot about my mom and brothers so we left. I was patient the whole time. We went and got in line for one of the new rides they just got and since it new the line was long. We waited for quit a while. We eventually got on the ride and we realized the wait was worth it so we went again. 8 8 16 2 2 2 2 2 2 2 2 +19417 7 "When I was @NUM1 years old, I went to my first doctor's appointment it was extremely nerve naking. I sat in a chair next to my mom, shaping, wondering, non-stop for @NUM2. I was running around and when I finally sat down I said."" @CAPS1 @CAPS2 @CAPS3!! I couldn't be patient anyone. So it walked out the door, when the nerve called your next."" And I was like ,"" well that wasn't long, only about @NUM3 and a , "" @CAPS4 it's only @NUM4 and we got here at @TIME1 "" @CAPS5 that wasn't long,"" my mom said. Next time when I go to the doctor I will be extra patient." 8 9 17 2 2 2 2 2 3 2 2 +19419 7 "Being patient means that you are understand and tolerant a patient person experiences difficulties without complaining. Im writing about a time when my friend @PERSON1 was patient. @CAPS1 @PERSON1 said to @ORGANIZATION1 as he was leaving to spend his whole @DATE1 in the upper pininusula of @ORGANIZATION1 and @PERSON1 were dating since the beginning of the year. She was sad @CAPS2 weeks had passed and @CAPS4 was the beginning of a new school year .She had been patient all @DATE1 @CAPS3 to see him again. Finally the first day of school came she skipped up to him and he @CAPS3 called a way .Couple of confused weeks late she said to him are you jumping me or ???He thought about @CAPS4 for a long time. She had been patient waiting for an answer @CAPS4 never came. Finally she decided to jump him but, she never did. So @CAPS5 gabby and me did .@CAPS4 far her on the outside she was mad but on the inside she was probably screaming today she has moved on and now is dating a boy named @PERSON2." 10 9 19 3 3 2 2 2 2 2 3 +19420 7 There was a day when I was super ???. I did everything slow I got redy for ??? slow I walked slow I talked slow. My mom was very patient with me all she did was incorege me to move faster she tried to motiveit me and help me get redy for school she brought me my breakfast and put all my books into my back back. I thanked her all the end of the day for being so patient with me. That was the day someone was patient with me. 8 8 16 2 2 2 2 2 2 2 2 +19421 7 "To @CAPS4 being patient means to not while if you ordered something and its taking long to come to you. Thats what kids do. I have been patient many times in my life but just one poped into my mind when I thought of patience. One @TIME1 I woke up at @TIME1 to go take pictures for our passports. @CAPS7 thought @CAPS8 wasnt going to be bush over there. Boys were @CAPS7 wrong. @CAPS7 started to get dressed up. By the time @CAPS7 were done the clock hit @NUM1. @CAPS7 got into the car and @CAPS7 were on our way. @CAPS4 and my little brother cranked up the music and started singing, I @CAPS1 YOUR @CAPS2 @CAPS3 @CAPS4. My parents got soo annoyed and made us stop singing by turning off the music. mom that our favorite song. @CAPS5 our @CAPS6.PS. Said you have reached your destination. Finally, @CAPS8 was getting a little spiffed up back here. @CAPS7 got into the waiting room, @CAPS5 @CAPS7 all almost faint because of how much people there was. lets just calm down I mean how long will @CAPS8 take for a sudden a deep voice in my head said, @NUM2 hours later. My brother decided to make a bet with @CAPS4. @CAPS8 you dont crack @CAPS5 its are turn to take the pictures I will do anything for you whenever you want for a week. You have yourself a deal. @CAPS8 took a while for another @NUM3 hours to pass and I was about to scream. I was then falling deeper and a sleep @CAPS5, the @PERSON1 family your next. The man had a long white beard and glasses. @CAPS7 finally went in and got over with @CAPS8. @CAPS10, I win @CAPS11! I won the bet, with a big smile on my face @CAPS12 you have to do anything I want. I was so happy that I started doing my victory dance, while the man with the glasses and beard stared at @CAPS4 like I was a maniac. @CAPS7 took our picture and @CAPS7 were off. Patient means to wait and wait without whining. Everyone has to be patient in there life just like @CAPS4" 12 11 23 3 3 3 3 3 3 2 3 +19422 7 "Over the @DATE1 my dad, my brother and I went to @CAPS1 point. It was really hot but we didnt care we really wanted to ride the millennium force. We found the ride but we first looked at the line it was huge. It shaked almost around the whole ride twice, so we got to the end of the line and sat in the blazing hot sun for a half an hour till we found our cover selves under a tent they put up so it was some what cool in line. So we waited a longer and longer till my brother started to flip out yelling and screaming at the top of his lungs, I cant wait here any longer @CAPS2 he went under the ?? and ?? off. My dad told me to wait in line as he sprinted after him. So I waited an hour when finnaly, it was time for me to get on the ride but my dad and my brother were not here so l decided to wait in the line going to the front of the ride. When l got on they still werent there, well the ride took off and they werent the best ride ever with me." 12 8 20 3 3 3 3 2 2 2 2 +19423 7 "My dad is in the @ORGANIZATION1. He goes away for long periods of time. The only time he comes to ritit us is in @DATE1, near my birthday. But one year my dad wasn't able to come home when he was supposed to. He sent us a letter saying that they were keeping all the trooper for an extra six months. I felt depressed for the longest time. But then I thought about it. Even it was delayed, he was still coming back hopefully. So I decided to be patient rather than disappointed. Our family sent him care packager over. Eventually he did came back. That was a hard time, but it was patient and got thought it." 11 11 22 2 3 3 3 3 3 2 3 +19424 7 When it comes to patience you have to be relax. You have to be with your patience when you to do the doctor. When your at the doctor you will still be done being patience. When you get home you will be patience for someone. So rember make sure you patience at everything 3 3 6 0 1 1 1 0 1 1 1 +19425 7 "To dieited to wright about a time when I was pacent. One time when we, went to @ORGANIZATION2 @ORGANIZATION2. My family and I couldnt wate to go on the @ORGANIZATION3. But the line was humungus. I was the only one who got to go on the @ORGANIZATION3. Because I stade in line to go on the @ORGANIZATION3. My family cept going on diffrent rides title the @CAPS1 @CAPS2 rid and the @CAPS3 or even the @ORGANIZATION1. While I stood in line at the @ORGANIZATION3 @ORGANIZATION3 fares wheel and the fun house later is that very same day I got to go to the star in @ORGANIZATION2 @ORGANIZATION2 and wated in the humongus line at the cash register and by the time I had got up to the cash register my family was getting massages. was pachent at @ORGANIZATION2." 7 6 13 2 2 2 1 1 2 2 1 +19427 7 "RREEE! The bus stopped. We were finally here! It took lots of my patience to stay quiet and not scream to the world. I had to be patient through the entire trip, so I had to learn a lot. On @DATE1, I was with a bunch of other fellow fifth graders. We were all divided into groups and unpacked and ready to go for our three day stay at @ORGANIZATION1. I was so excited my friends told me to calm down and be patient. I felt a little embarrased @CAPS4 I didnt care. I finally snapped to it and kept my cool. In @CAPS1 and @CAPS2 I was stuck ahead how to make my ??? of @ORGANIZATION1 & friend in my group named @PERSON1 told me some ideas, @CAPS4 I wanted to have her @CAPS4 ??? @CAPS4 I stayed collected and listened to her ideas and I have to say, they werent bad. I thought about ??? of the ??? and used it in my pamting. ??? now were at the nearly @NUM1 feet high ??? ladder I already took my ??? going up and zipping down the awesome get scary @CAPS3. I was now helping keep people up the ladder. I was patient @CAPS4 man, they took forever! I was about to scream at this one dude, @CAPS4 I said to myself be patient. @CAPS4 this on kid named @CAPS5, sometimes he just sat right on one of the big planks of word. I asked why he was doing that and I thought their response was hilarious. They said he was trying to be like @CAPS6 and fly to the top. At the end of the three day field trip, my patience grew to the size of a spider monkey. And every time my patience would grow to the size of a drop of water, the spider monkey in my head would be trying to find a way out so they could knock the idiot out. I learned to have patience with someone, even if they were being a idiot and not moving fast enough, I would stay calm and make sure to not let the spider monkey hit somebody where it hurts most." 10 12 22 3 2 2 3 3 3 3 3 +19428 7 One day I was watching @CAPS1. I was bored there was nothing good on. So my mom was on the computer. I told her if I can get on she was like ok. In @NUM1 mins. I waited for her to be done. Ok now you can go on. Thanks mom. You welcome. I was very patience. Thats the time I was patience to go on the computer 5 5 10 1 2 1 1 1 1 1 2 +19429 7 "One time when I was patient was a @CAPS1 @CAPS2 @CAPS3 and @CAPS4 adventured! We were by the water park most of the @CAPS3 and, it was fun. I seem more of my time in @CAPS5 have pool and on the @CAPS6 @CAPS7- my favoritende.We were getting soon tired of the water park and decided @CAPS17 go the rides! We were trying decide weather or not we wanted go on??? ??? Or the @CAPS8! & @CAPS9: - I decided @CAPS5 go on??? and when we got there @CAPS5 ??? was like an hour long. So i.e. rival the long, made up mil and after @CAPS11 @CAPS5 were netted in line. concouontly @CAPS5 rides was having ??? that??? ??? ??? @NUM1 getting that announced @CAPS13 we bent @CAPS17 go and??? ??? For @CAPS5 thunder @CAPS15 @CAPS16 the park was closing @CAPS17 bad we stayed in The water park @DATE1 long!I waited then @CAPS5 will come back next year and got in live and asking my mother soul, @CAPS18 you can see I have experenced parked" 10 10 20 2 2 3 3 2 2 3 3 +19430 7 One time I had to be patient was on my birthday. One year my grampa and gramhna was late for my birthday. I had to wait a few hours. I sat down intill they got here. When they got here we get to eat cake. After that I open my presents. It took them about @NUM1 hour for them to get here. 6 8 14 2 1 1 2 2 2 2 2 +19431 7 "Where here at cedar point. I was so excited I felt like I was going to go cyco can we go on the dragster first. @CAPS1 why not it`ll be fun when we got in line. It was a estimate of and hour wait. @CAPS2 do you still want to ride the ride, sure I do, so I knew I would have to be patient before I could ride. While we waited, it was hot and when I when @NUM1 went by it felt like and hour !but I knew when it was time patience would pay of. When @NUM2 minutes pasted the dragster was in sight n cling cling we were second in line. Zoom! a carx went by, pimaly a blue long dragster car stoped and it had my name all over it I got in and in was so patience it was like @NUM3 minutes before the ride started, @NUM4: @CAPS3. At @NUM5 we went up the hill and was like a meteorite crashing down into earth. When it was over my patience payed off and @CAPS4 always patient because of the cedar point dragster." 10 10 20 2 3 2 3 2 3 3 2 +19432 7 "I amwriting a story about a time when I was patient, When I was in @NUM1 grade I went to @CAPS1 @CAPS2 in @LOCATION1. I ordered with my mom and dad and waited. The waiter said about @NUM2 minutes. Our food didnt come after @NUM2 minutes or @NUM4 or @NUM5 or @NUM6 or even @NUM7 minutes. Our food came after an hour and @NUM8 minutes. All the time i was waiting I was getting more and more hungry. I didnt start complaining or yelling I sat in my seat and waited patiently." 10 8 18 2 3 2 3 2 2 2 2 +19433 7 "When I hurt my hand on the same day of meaping, I was patient, I was patient. I fell in the hall and I went to the office, I waited patietly for them to call my mom. to pick me up. When my mom she said she was going to take me to the @CAPS1 room. It took a wile to find a parking spot when we got there, I was patient even though hand hurting. The we finally found one and then went inside. My mom went to the font desk to tell them I was there. We waited to a little while and then a nurse came out and use go in a room and talk, she said I would have to wait for a bed to open up for x-rays. I saw a lady through the window I knew it was for me, she opened the doors and asked for @PERSON1. She had us follow her to a room where we waited about forty five minutes for a doctor to come in and take us to the x-ray room. When they finished we went back to the room and waited a wile. Antill the doctor come in and said I didn't broke anything, he gave me a brace and I went home, @CAPS2 all of that I was patient." 8 11 19 2 2 2 2 3 3 2 3 +19434 7 I was patient when my birthday came. I am waiting for my party at my dads house this @DATE1. My birthday was @NUM1 on @DATE2. I am getting a @CAPS1 from my dad for my birthday. I was patient when my birthday come. I am waiting for my party at my dads house this @DATE1 my birthday was on @NUM1 on @DATE2. I am getting a @CAPS1 from my dad for my birthday. 4 4 8 1 1 1 1 1 1 1 1 +19435 7 "@CAPS1 another @NUM1 days ill be on my way to cedar point. I wonder what well do when we first get there? What will end up being my favorite ride? Maybe I can talk my mom into going on the trip @NUM1 days early? @CAPS2 mom said @PERSON1. @CAPS3 said her mother. @CAPS4 we @CAPS1 go to ???? point now? @CAPS5 sweetie our tickets are for on @DATE1 your @CAPS1 going to have to be patient. ok ill do my best. ata girl! As @PERSON1 was on her way up to her room she was thinking that maybe if she tried getting her mind off of it she would forget. So to do this she called her friend @CAPS6 to see if she wanted to come over. @CAPS6 said @CAPS3! @CAPS7 went the doorbell. @CAPS2 @CAPS6 wanna go play in my room? or. @CAPS10 that night @CAPS6 went home and @PERSON1 wentt to bed. @NUM3 days @CAPS10. Only one more day to ???go! @CAPS10 that night @PERSON1 went to bed around @NUM4 to get a good sleep ??? the trip. But to @ORGANIZATION1 suprice she wake up @CAPS1 a couple hours @CAPS10. She was so excited she couldnt sleep! She finally fell asleep, and they left early the next morning." 9 8 17 2 2 2 3 2 2 2 2 +19436 7 "Patience is useful in certain times like waiting for a blood test or to me your ??? again. In other times patience is usless as in the army, any army, you sometimes wait to die by the hand of your enemy .Patience is mostly good because if you rush you might hurt someone, miss something helpful, or just something you enjoy." 3 3 6 0 1 1 1 0 1 1 1 +19437 7 A time when I was patient was when I was at @CAPS1 @CAPS2 and I was waiting to get on the dragster the line was suppa long. We waited for @NUM1 hours long and we still was in line being patient. Finally we got up there and they said that the ride will be closed for a while that have to check something and it took them a whole hour for them to fix it. So we went to the other side of the park and we were waiting for the train to come and it came it took the train @NUM2 minutes and when we got to the other side of the park the ride I wanted to get on which was shoot the rapids the line was really long so we waited and waited and finally it was our turn we got on it was fun then when it was over we got back. On the train and went back to the other side. We went back to the dragster then the line was back long and we waited and waited and then it was our turn. That day was the worst day because I had to wait and wait that was my first day that I ever had to hold my patience that long I was about to lose my mind but we had don. And we are going back this @CAPS3. 8 8 16 2 3 1 2 2 2 2 2 +19438 7 It time when I was patience was when I went to a pair and we had to wait in line for like two hours. I was bored just standing there but I really want to go on rides and thats what was waiting in line for. I was trying to be patience the hole time in line so I could get my @CAPS1?? on go on ride because I hated just standing there the whole time my feet started to hurt the heavy bad because I was ??? ??? there I finally got to the front of the line to get my ticket I was so happy and that was a time when I was patient. 6 7 13 2 2 1 1 1 2 2 2 +19439 7 "A time when I was patient: I'm patient when my family, or friends, or teachers are talking. I don't interapt them while they are talking I wait to make sure they are done talking before I start to talk. Another thing is being polite, I am polite in class an at home I don't talk when it's not my turn. Another thing is I am really nice to people I don't be mean to anyone, I listen to what they got to say. When I'm at school sometimes you got to wait your turn. Like getting a drink, or getting your lunch, or going in a single file line for a firedrill. You can also be nice and patient if someone isn't done you can help them out and that would be really nice and patient. These are the things I do to be patient." 5 7 12 0 1 2 2 1 1 2 3 +19440 7 "Hi, I'm @PERSON1 And this is A time of when I was patient. My mom and my step dad were going to take me And my step sister to @LOCATION1 @CAPS1. BUT!! There was A twist we couldn't ask ""Are we there yet"". So we had to wait A really long time. But when got there we got there it so worth the wait." 5 7 12 1 1 1 2 1 2 2 2 +19441 7 "Patience is tough to achieve sometimes. But that doesn't mean you should give up keep trying and your will succeed, rush through life and become impatient and you used and succed. I will tell you a popular virtue story to explain patience. ""@CAPS1 year in the fall a big race takes place. All the animals in the @CAPS2 come to the. It is an extraordinary event. It is a tradition that @CAPS1 year, one slow animal and one first around commute to see who is this up is champion. At the time the @CAPS5 was the fastest @CAPS2 around. @CAPS11 signed up @CAPS1 year and won @CAPS1 time. The @CAPS15 had signed up to complete this year. @CAPS11 was very wat don't in himself and was had to pride that @CAPS12 because @CAPS11 was about, slow and @CAPS11 can't be a champion. ""runners get ready!"" shouted the announcer. The @CAPS5 and @CAPS15 lined up. ""@CAPS3 @CAPS4!! "" @CAPS5 rushed ahead kicking the air. For the @CAPS15 very slowly waiting behind. @CAPS5 run like @CAPS11 has never won. @CAPS11 never looked back. @CAPS11 wanted to win. The trophy was rightfully his any ways. Right? I mean, @CAPS11 was the fastest animal. @CAPS15 continued on his way, slowly but surely making his way to the finish line. ""@CAPS6 @CAPS6 ."" @CAPS5 stopped and looked around. No one was around. ""@CAPS9 is that noise?"" @CAPS11 asked aloud. ""@CAPS6"" it came from his stomach @CAPS11 was so caught up in the race @CAPS11 didn't realize how hungry @CAPS11 was. ""@CAPS12 one little handful of berries."" @CAPS11 decided. @CAPS11 picked a handful, then another and another. Finally @CAPS11 was full and a little bit sleepy. ""I'll @CAPS12 take a little nap after all that @CAPS15 ain't gonna catch up anyways."" @CAPS11 laid down and slept. Little did @CAPS5 know that the whole time @CAPS11 was eating and napping, @CAPS15 was catch up? @CAPS11 saw the @CAPS5 sleeping and decided but to wake him @CAPS12 to case @CAPS11 was sick is @CAPS11 continued to slowly very slowly walk up the hill to the inish line. @CAPS5 woke to the sound or cheering. @CAPS11 stood up. The @CAPS15 won! @CAPS11 raced to the finish line but was to late, the @CAPS15 had already won. If @CAPS11 had been patient @CAPS11 might have won." 12 10 22 3 3 3 3 2 3 2 3 +19442 7 "In my thirteen years of expirience I have road many roller coasters, and when there is a rollercoaster these is normally a two hour wait. In the @DATE1 @NUM1 I took my best friend @PERSON1 to ""@CAPS1 @CAPS2,"" and we had just gotten in line for a ride called ""The @CAPS3."" When we got to the entrance @CAPS4 said a forty-five minute wait so we got in line and the ride broke down for over three hours. Finally the ride was up and running but @CAPS4 took another half hour for testing and when that ended @CAPS4 was a two hour wait in the back. We were at the front so @CAPS4 didn't realy affect us. We finaly road that ride and was totaly worth @CAPS4. Most of the lines later that day were small but thats still one hour. I just hope next time that ride doesn't break down." 8 8 16 2 2 2 2 2 2 2 2 +19443 7 "I remember a long time ago when I was patient for a long time. I was patient for about four months. I was waiting to get the video game system @CAPS1. And I was extremely patient for this. So basically what happened was that there was this new, high tech, amazing game system coming out. The @ORGANIZATION1 @CAPS1 . Everyone was eager to get it. Including me. The only problem was that they were all sold out. So for christmas, my dad told me that he would get me one. I was so happy. But we both knew that it would be a long time before he could get one. So I waited, and waited, and waited. Then one night around @TIME1, my dad wake me up. He said that they were selling alot of @CAPS3. So we got in the car, drove to watiest, and waited in the line for a long time. Finally, it was our turn. We bought the @CAPS1, went home, and set it up. The next day, I finally played my @CAPS1: And thats a story about a time I have been patient." 10 9 19 2 3 2 3 2 2 2 3 +19444 7 "My mom went to the doctors a couple weeks ago before school???. we went there at like @NUM1 and didnt leave till @NUM2. So me and my little sister played a game to entertain ourselfs. So we watched tv, played on our ipods, and we told stories we were so bored. So once all that got boring we just had to sit and wait and sit and wait it school but I just thought about how much??? it was??? be??? we left so lie??? ??? ??? ??? until the dear got up and??? fly cut at our seats. But turns out it was someone else. ??? than me and??? ??? asleep. Then all of a sudden I feel someone shaking me and saying lexi tayler my mom called over and over until we woke up so then now??? are ready to??? and go to the mall. So we went and spent the rest of that??able day at the mall. And the was my story about the time that I was patient sitting in a doctor ??? ??? ???." 5 8 13 1 1 1 2 2 2 2 2 +19445 7 " @CAPS1 can I get a puppy . @CAPS2 @CAPS3 @CAPS1 @CAPS4 in the @DATE1 just be patient. @CAPS5. @CAPS6 @CAPS7 made her way down stairs to sulk she thinks of a briliant plan to make the @NUM1 days until @DATE1 go faster, I will make a @NUM1 link long paper chain . @CAPS8 day or @NUM1 days she ripped one link off. She ripped @CAPS9 then @CAPS10 and even @CAPS11 years. Before she knew it, it was @DATE1 the first. @CAPS7 spang out of bed, ripped last link off and said, @CAPS1 can I have a puppy yet I was patient. @CAPS13 you see , said her @CAPS1. Your dad and I have been thinking and it is a big responsibility so @CAPS4 next @DATE1. @CAPS14 Ill be patient." 8 11 19 2 2 2 2 2 3 3 3 +19446 7 "This is a story about a vampire named @CAPS1 who goes to a regular middle school. It was the first day of school and @CAPS1 was waiting in line for his schedule and later combonaiton. And this line was really long. @CAPS1 was late on his first day and he had to get in the way back of the line. The person in front of him kept complaining and @CAPS1 was getting ??. This will take forever! complained the person in front. @CAPS3,shut up,man. I dont like this any more than you do but do you see me complaining? exclaimed @CAPS1. Everyone in the gymnasium stopped talking and looked in his direction. This was not a good sign. @CAPS1 stopped talking and just waited in line . After @NUM1 long minutes of listening to music at his ipod @CAPS5, he was @NUM2 people away from the front of the line. Then something bad happened. @CAPS3 this isnt my schedule! said a blonde girl. The person who was giving out the schedules had to call everyone back up to see who had her schedule. So @NUM1 more minutes passed until he finally got his schedule. If @CAPS1 hadnt patience,he wouldnt have standed the @NUM4 minutes in line! Good thing he brought his ipod @CAPS5!" 12 12 24 3 3 3 3 3 3 3 3 +19447 7 "A time I was patient was waiting @NUM1 to @NUM2 whole months for my baby brother, @PERSON1 who is @NUM3 now. @CAPS1 felt like @NUM2,000 years @CAPS1 was ??? long I couldnt wait but I had to use patience to wait. He was due on @DATE2, but instead he was out on @DATE1. When I came to the ????. Finally at @NUM5 am on @DATE1 my brother @PERSON1 was finally born ??? @NUM2 long months. The ??? a time I used ???" 9 9 18 2 2 2 3 2 2 2 3 +19448 7 "I remember when me, my brother, my dad and my mom were at ceder point. I wanted to go on so many rides but they all had big lines. So we waited for the rapter that took one hour just to get on the ride but when we got on it felt like it was even longer then the wait in line it felt like @NUM1 hours because of how ??? it was. We walked and saw the ??? force it had a ??? ??? on it so we waited in line was much longer than the rapter it was like 3-@NUM1 hours. But when we got to the hop of the stairs we were up it was so much fun because we waited so long and my brother stopped complen because he was so ??? in me. the ride was fun but when we were done we had to leave ??? was like mom. We only wait on the rides but it was fun and ??? That was a time when I was patient." 8 7 15 2 2 2 2 2 2 2 1 +19449 7 "My friend and others showed loyalty in a play called @CAPS1 childrens @CAPS2 . They come once every year. Everyone gets ready, learns their parts and we put on a show in a week. We showed loyalty by believing in each other. When you are on a stage in front of people you have to support each other. When someone forgot to enter on time, you would help them out by reminding them the next time. When someone forgot their line, you would help them out by saying it for them. We showed each other loyalty throughout @NUM1 days. The play turns out great each and every year from supporting each other." 6 6 12 0 1 2 3 0 1 2 3 +19450 7 I was patient when I was at the @CAPS1.R whe I broke my finger A week ago almost. 4 0 4 1 1 1 1 0 0 0 0 +19451 7 "I am not a very patient person ???. However there was a time to my ??? where I was extremely patient. I was in @NUM1th grade and was doing a thing called ??? Mrs. Bowos @NUM2nd grade. We would go down there ???. As you probably know, @NUM2nd graders are not very good readers but there was one girl who was not good at all. She needed ??? help from everybody @PERSON1 would sent the down in the ??? to help the girl ???. She struggled a lot and never would she rent she would shut the book as though it on the flame ???. But that was patient and everytime she ??? every time she stoped reading. I would make her keep going. Every time she out it on the floor, I would ???. Eventually the girl saw that it didnt accomplish anything ??? this, so, she just read. Now I was to be patient with how slow she was reading. I.P she didnt know a word I would help her sound it out. The girl kept getting better and better at reading until she dont need me anymore. But iwas proud of myself for being patient for once." 12 10 22 3 3 3 3 3 3 2 2 +19454 7 My own way about patient is that when somebody is doing something. You have to wait until they done. An if you rush them they probably will make a mistake or do something wrong. Being patient is a very important thing. Being patient is also a very respectful thing to another person because you not being rude. 6 4 10 0 2 2 2 0 1 1 2 +19455 7 "There are many times I was patient, but this one was not to long ago. In fact, it was yesterday when I was taking the meap. I just sat there finished, just read and drawed. It was absolutely boring, lame, and seconds felt like hours. It was terrible, but I didnt complain I just sat there and did nothing. And that was probably worst time when I want to talk but couldnt." 6 7 13 1 1 2 2 2 2 1 2 +19456 7 The time iwas patent was when I was in schol I was in math and I waswoting to setant so i could go to my friends @ORGANIZATION1 so I was waiting and whatins and whatins and watins and whatins @CAPS1 the clock was not tennin so starten doins my class work and @CAPS2 the @ORGANIZATION2 rang I was @CAPS3 agen @CAPS1 thare is one @CAPS5 @CAPS1 it was not a @CAPS7 @CAPS8 cons we hade the meap so it was only a @CAPS9 @CAPS10 in all classes so we only @CAPS11 @NUM1 minits left till the time moms out so i @CAPS12 some want and @NUM2 minits past and then me and m fend. Thats good @NUM2 minits to so @NUM4 minits @NUM5 minits @NUM6 @NUM7 @NUM8 @NUM9 @NUM10 @NUM11 @NUM12 @NUM12 left now @NUM1 secents rims thens gos the @ORGANIZATION2 and that what @CAPS13 when was esent 4 5 9 1 1 1 1 1 2 1 1 +19457 7 "Someone was in line for hot & ready pizza since they are hot and ready, a lot of people were in line and everybody was screaming and getting angry because they thought the pizza is supposed to hot and ready. Everybody was throwing tanruns. The kids were sitting quietly at the little benches they have and watching them doing tanrums. The people that work in cedses was trying because there a lot of people and everybody was lewing. Nobody showed any patience. They just cared about the pizza. The little kids that are hungry were showing patience than the angry adults. They were all whining and everybody said they don`t want to hear you so you had to shut up. After he was there patiently waiting in line with his mouth shut. He didn`t bother to speak. Everybody were back to normal and everybody had smile on their faces and even the little kids everybody got their pizza really fast. Always be patient." 8 8 16 2 2 2 2 2 2 2 2 +19458 7 "I asked my mom can I have something to eat. She @CAPS12t say @CAPS1 so I wait wait then wait wait and wait and then I went up stairs and I waited @CAPS2. I was hungry then I was Being patient that whole time @CAPS3. I usually get the @CAPS4 use to @CAPS5 @CAPS6 @CAPS7 @CAPS8, I do. Another time @CAPS9 thankgiving I was patient @CAPS3 they were cooking the @CAPS4 and they @CAPS12t cook the @CAPS4 yet so we waited until the @CAPS4 was @CAPS16 our stomaches were growling for @CAPS4 so I @CAPS13 A man of patience @CAPS3 I waited uNtil the @CAPS4 was @CAPS16." 7 5 12 1 2 2 2 1 1 1 2 +19459 7 "Patience is a quality that some people have and some people dont. it shows your character to people if your patient or not. It can be hard at times, but we all get through it. For example, when I was at a resturaunt that took forever to get our food to us, I had to be patient. I was sitting at the table after we ordered, and I got really bored so, I decide to color with crayons I got. After I was finished with that I decided that I needed to find something else to do while I was waiting. My mom was talking, so I chose to do that. I talked for a long time. Then our bread came. So, I ate that for a while and then got bored again. The waiter came and told us our food would be out soon. So, I continued to talk, went to the bathroom. When I came back our food was there! So I sat down and enjoyed the delicious meal. When I was patient I got a good reward out of it. Good things always come to people that are patient. If your not a patient person then you can always try to become one. Its not very hard just keep yourself occupied!" 9 12 21 2 2 2 3 3 3 3 3 +19460 7 A time when I use patient was when I finished my book. We have these things called teacher talks where you tell the teacher about your book what you finished. I finished @NUM1 books called The sisterhood of the traveling saints I finished the last two books. I wrote my name on the board for teacher talk. The teacher kept picking other people. I had to wait untill I got called. Everyday I would go to @NUM2 and @NUM3 hour hoping I would be called. But everyday it wouldnt happen. I finish another book so I wrote my name again. But I still didnt get called. I put @PERSON1 @NUM4 witch means I finished @NUM5 books. Eventually @DATE1 my name got called. I ??? to the teacher with all @NUM5 books. I got to tell her about my books and I was very happy I got my named called. 8 8 16 2 2 2 2 2 2 2 2 +19462 7 "I was patient at the dentist office. When I went to the dentist office, I was getting my bracts put on. When I was sitting there they told me they had to get my brackets and wire. While they were getting the brackets and wire I got to pick out colors. I waited about @NUM1 mins. Without complaining. Next, they started putting the brackets on the glue. When they put one bracket on I felt so weird and kido tasted like heated metal @CAPS1 I said. After they had put on the brockets and then they put colors. My mouth hurt like crazy! When it was all over I noticed it had been @NUM2 hours! I was surprised because I didnt know I sat there for @NUM2 hours, but I was very patient and waited that whole time! Thats the time I was patient at the dentist office." 8 8 16 2 2 2 2 2 2 2 2 +19463 7 "A time when I was being very patient was when I went to @CAPS1 at ceider point.. I went to ceider point with my @NUM1 aunties and my @NUM1 cousins. It was just the older girls going, because we new if we took the little people we couldnt go into the haunted houses, although we went inside one. It was so fun until we got to the lines. They were rediculasly long. I mean it literaly took us about an hour in a half to get on the rollercoaster. My cousins and I were talking for a long time. We were in the back of the whole part, called The dead zone, it was very terrifying but fun all at the same time. What a weird feeling. We finally got inside of the place and we still had a long way to go, stairs to climb, bars to pass, it was terrible. But did we complain, not me. I was patient unlike my cousins. We finally got to the top floor and can you belive it, we still had to wait. Then my cousins turned on some music to keep us occupied, but not for long. Then we looked over and realized how far up we were, and started to talk about how scary it would be to fell. Then we went on and on talking. But soon after that we had the people say were going to hold of for a minute to check and make sure that the @CAPS2 coaster doesnt have any mechanical problems. Thats when my cousins went off. We tried to get her to calm down. So we all just sat down a waited. Finally the line was moving forward once more. Then we reached the top of the rollercoaster @CAPS3. We finally could see the @CAPS2 coaster, I guess at that point it looked like time flew by, mabey because we were excited. We finally were on the ride, one of the funest rides in the whole park called The mauerie. I guess the wait was worth it. The ride went about @NUM3 per hr, it was jerky, there were drops, it was fun. We were a little patient, but did we enough patients to get back on, I dont think so." 10 11 21 3 3 2 2 3 3 3 2 +19464 7 "One day when I was buying a dirt bike helmet online it said three day shipping and to me it wasnt very long. When the third day came and I was waiting on my porch for my helmet to come, my mom broke the news to me that my helmet got stuck in @LOCATION1 and it wouldnt be here until next week. after she told me I figured that did just have to be patient, as for the next week I just went to work with my dad. after my week was up, and I was sitting on my porch waiting and I almost fell asleep when a @ORGANIZATION1 truck came and gave me my brand new helmet." 9 7 16 2 2 2 3 2 2 1 2 +19465 7 One time my friend was waitin for I stay in there a hole hour I was takin my time he wait though he couldnt to I got out the bathroom I said thankz he said anytime I was surprised at her. 4 3 7 1 1 1 1 1 1 1 0 +19466 7 "When it was @DATE1 @CAPS1 and I could not wait for @DATE1 so I open my gifts. My mom and dad give my sister and my second sister and me us. give us money so we can go buy thing that we like. My dad mom and dad and my mom and my mom dad and mom give us money. like my mom and dad dose, and I rember I buy a cute cuformin boots and I could wait to open the boots on @DATE1 and I was @CAPS2 up and down and asking can we open one gife it is @DATE1 @CAPS1 and my mom and dad said no and I got mad. So the next day I wake up on @DATE1 and it was above @NUM1 in the moning and I look in the living room and no one was up so I have to wait until when my patent wake up and I could wait and the time takes forever and that was a tim that I could not wait." 7 8 15 2 1 2 2 2 2 2 2 +19467 7 "I think that patience is about waiting instead of rushing things .If you be patient things will actually come faster than you think for example if you want something and you have to wait in line instead of running off and finding something else at and wait it will always help. Be patient with what even your doing just be patience even if its waiting run school to be even. If your waiting for a same at stem to come sat have patience a wait because it might keep you out of trouble. Be patient what even your doing even if your waiting for a turn just wait it is not a big deal stop rushing things, just be very patient." 5 6 11 0 2 2 1 1 1 2 2 +19468 7 "@CAPS1 on @CAPS2, where are you , @PERSON1 said in a frustrated undertone. @CAPS2 was suppose to @CAPS1 over to his house .@PERSON1 had just gotten a new trampoline and they were planning on oon bouncing all day after school .@PERSON1 was starting to get worried but he waited .Finally his mom came and told him that @CAPS2 wasnt coming. Thats when the phone rang .@PERSON1 answered it and heard @CAPS2 on the end. @CAPS5, @PERSON1, @CAPS2 croaked. He didnt sound well. @CAPS2, @PERSON1 shouted into the phone, @CAPS2 , @CAPS2 where are you. Im at my house, get over here. @PERSON1s mom pulled up at @CAPS2s house and let him out. @PERSON1 didnt care about manners at this point,so he opened the door and marched to @CAPS2s room. @CAPS2 was laying in bed looking up the cicling with his face looking very swollen. He turned to look at @PERSON1, held his gaze, then looked back at ceiling. @CAPS2 wasnt at school that day either. He went skiing up at his family cottage. I wasnt patient when I was in the air. I got crushed and none of it would have happened if I had waited." 9 12 21 2 2 2 3 3 3 3 3 +19469 7 One time I was patient was at my dad house. Our power had just went out so we figured wait up to two minutes just like it always happened. after a couple days we didnt have power I was ill patient. On day three we called people and figured out ???ahead our power lines they fixed it and we got our power back. 7 6 13 1 2 2 2 2 2 1 1 +19470 7 "There are two reasons why I think patience is important. The first is because if you are not patient, than you can end up distracting other people around you. For example, if you finished your @CAPS1 test early and you kept telling everyone else to burry up its distracting. Now that youve interrupted everyone, they have lost their train of thought and now they @MONTH1 have to start over. A few weeks ago, my sister and I were out walking my dog and pulled so hard my little sister fell over and my dog ran away. We had to be patient and wait for him to return. My sister kept wanting to go call my mom to tell her the dog ran away again but I told her it would be rude to call because it would distract her from her work. Another reason why patience is important is because if you are not patient can get hurt. Lets say you were going down the stairs and your sibling was in front of you and you needed to get downstairs quickly but they were walking down the stairs very slow, so you pushed them, they could get very hurt. In conclusion, patience is needed always and cannot be forgotten" 9 6 15 2 2 2 3 1 1 2 2 +19471 7 "@CAPS1,@CAPS1 ,@CAPS1 the clock was counting down @CAPS1,@CAPS1,@CAPS1so close come on I wisprered as the clock kept going.My heart was beating like a race car engine.I could hear my heart be boom,be boon ??? my mind raced whit was I going to do for ??? jump in the pool,watching,video game.so many options,what should I do @CAPS1,@CAPS1 @CAPS1I could almost hear pael calling to me swim,swim swim what should I do.I looked at mrs.sprowl then back at the clock then mrs.sprowl then back clock and mrs.sprawl.My heart almost jumping out of my body so much anticipation.@CAPS1,@CAPS1,@CAPS1 almost there I sayed as i stared at the second hand @CAPS1,@CAPS1,@CAPS1so close I said ,so close just @NUM1 second left then I can swim my pool. @NUM2I almost jumped out of my seat and yelled @NUM3@CAPS2,@CAPS2,@CAPS2we have some announcements said mrs white.I was happy I run out side to wait for my dad so could have freedom." 12 11 23 3 3 3 3 3 3 3 2 +19472 7 "I was patience the whole entire .I was happy on the outside, but on the inside, I wish I got a better score" 9 10 19 2 2 2 3 2 2 3 3 +19473 7 "As a child my mom always. My be patient well I couldnt do Im writing this about her. My mom is very nice, cool, wealthy, and most of all patient. As many thing I did as a chid, and still some hour my mom just calm her self down like we didnt even do anything. its kinda funny how much patient she has. Along time ago. I remember wasting grape pop on her new carpet!! Wow how scared did I get.I think I wet my pants!! @CAPS4 instead of hiding it like any other kid when she got home I cried to @CAPS3 I wasted pop on your carpet dont get mad she replied in her soothing mother loving voice, @CAPS1 me exage to clean it up. I passed her a dry towel and siled just remember this time a kid I can`t reach the sink`s) @CAPS4 with out yelling she walked she walked up stairs and wet the towel her self. I stayed down stairs look at the @CAPS2 purple mess I made trying to help my mom, just sit down . she say holding my hand.by this time momma got don with the stain I was fast a sleep on the couch. My mom gave me a kiss on the cheek @CAPS4 she doesnt woke up!!The gig was up soon as she picked me up. @CAPS3 is that you?? I said in my morning voice. My mom being @CAPS4 patient. @CAPS4 what`s for breakfast??. in a high piten voice. I will get on it she said will taking out my breakfast. I love my momo." 8 12 20 2 2 2 2 3 3 3 3 +19474 7 "@CAPS7 year @CAPS4 went to @ORGANIZATION1, it was about two weeks before school started .That day schools by @ORGANIZATION1 @ORGANIZATION1 just opened so there was no lines to wait in .@CAPS4 couldn’t or picked a better day .Then @CAPS4 got to the mantice I didn’t want to go on it, but @CAPS5 mom said “@CAPS1 will go wrong, @CAPS2? I said “@CAPS3 fine I’ll go on to the ride” @CAPS4 are about to take off going up the hill and right when @CAPS4 got to the top the ride stops.’ I was freaking out at first but then I got over it. So wel have been up there for about @NUM1 min or @NUM2 and @CAPS4 had to be patient.’ @CAPS5 mom and dad are on the inside of them.’ @CAPS4 were sitting on bicycle seats @CAPS4 were not comfy. So then another @NUM3 min pasted by and now @CAPS4 have been stuck at the top for @NUM4 mins.’ @CAPS7 is were @CAPS4 had to be completely quiet and patient. Then the ride started and @CAPS4 got down to the bottom and finished the ride .They gave us a pass for us to cut in line on the @CAPS8 force .That is all they gave us. So @CAPS4 had fun the rest of the day, but that I learned in life you have to have patience!" 12 8 20 3 3 3 3 2 2 2 2 +19475 7 "Once upon a time their was a princess named @ORGANIZATION1. @CAPS1 was invited to a royal ball where @CAPS1 awaited her handome prince. As her carriage arrive @CAPS1 stalked at the people before getting out. Finally @CAPS1 stepped out of the vehicle. @ORGANIZATION1 walked down the red carpet. As @CAPS1 arrived, the more noisy it got the princess finally aproched the opened doors. The beautiful girl walked to her throne and warched the village people dance among her. @PERSON1 sat for two hours. @CAPS1 wandered will he show up? and will he like me? @CAPS1 doubted her luck. The princess grabed the microphone, @CAPS2! @CAPS2! Does @CAPS3 know where my prince is? @CAPS3? a complete silence went over the croud. Finally at the last minute. @CAPS4 an anonomyse voice crosered. I am the prince! A sigh of relif came over her. @CAPS5 I. Im so late ??? fought a dragon and a thousand knights. To get here to meet my love! awwwww! The crowd said softly. And they lived happily ever after. The @CAPS6!" 9 9 18 2 2 3 2 2 3 2 2 +19476 7 The one time I was patient is when my mom took me to go get my birth certificate so I could play football. When we got there the parking lot was full I mean cars was so close you could hardly get in and out without scratching someones car. My mom parked across the streets the streets. When we got in there it was at least @NUM1 to @NUM2 people it parked. People were standing so close to each other you would know their body temperature. The bench was full of people and they were parked like dardine. It was hot and smelled like must. We picked a ticket with @NUM3 on and they were on @NUM4. We waited for two hours. My mum wanted to leave. When they got to our number I was sleep. Wile we was in there I lost ten pounds. 8 9 17 2 2 2 2 2 2 3 2 +19477 7 "Im not a very patient person. I always whine and complain. If patient means you stay somewhere for a whole without complaining, then I guess there are some times when Ive been patient, but only if there is a friend there to keep me busy. One time, my mom was at the hospital for a long time, about @NUM1 hours. My friend @PERSON1 was there, and we hung out together. It was actually a lot of fun. We ate in the cafeteria place. We stole some milk for no reason, and totally forgot that my mom was there. I didnt complaine once. Then we got yelled at and had to go back to the waiting room, but it still wasnt too bad. that was one of the few times Ive been patient, and dont know if it counts since I was with somebody." 8 8 16 2 2 2 2 2 2 2 2 +19478 7 "@CAPS1!I yaled as the ball came over the net right to me. That was @CAPS1!@CAPS2 said. @CAPS3 I was already there.I responded. @CAPS4. @CAPS3 its @CAPS1. @CAPS13 argued. @CAPS5 I said @CAPS1, you??? Moved and let me get it then wimp @CAPS6 me. And watch the ball drop. I exclaimed. @CAPS7 I guess.@CAPS2 apologized. This was at volleyball tryouts where I had to be patient and work together. @CAPS9 is @CAPS10 @CAPS11! the A team coach demanded. @CAPS12 partner up in groups of three!@CAPS13 said??? Mu two best friends som and @PERSON1 were already together with this new girl, who was pretty good. You want to be partners with me and make? @CAPS14 asked. @CAPS15, I responded. When it was our turn on the @CAPS11 we were going against @CAPS16, @PERSON1 who spiked it at us. Katie missed the ball totally. The new girl, @PERSON1 and @CAPS16 all cheered. @CAPS18! Very nice job ladies!??? One of the coaches. It was the end of the second @DATE1 tryouts. There was only one more @DATE1 left. It was hard for me @CAPS3 I managed to keep together and patient. On the @DATE1 of tryouts we got to know our teams. We all got envelopes and opened them up at the same time. Me, @CAPS16, and @PERSON1 plus some other good girls made the A-team! So thats a time where I had to be really patient and stay together, @CAPS3 I still came through and succeeded." 12 12 24 3 3 3 3 3 3 3 3 +19479 7 Once upon a time there was a boy name @PERSON1. Hawell he was right and he was at the secretary of state and he ?? patient so he walked in and took a number and got his paper from the woman. At the front desk to ??? and ??? ??? and started ??? it out in got out and this only on @NUM1 she counting slow so hes getting angry!! And time ?? by and ??? its on ?? and theres ?? in front of him and leave to go get there ??? secretary card and the person in front of him is up the lady behind the desk opened up and call @PERSON1 and he greeted her with a ??? she took this picture and he got his licence then ends 6 8 14 2 2 1 1 2 2 2 2 +19480 7 I was patient when my dog had to go the @CAPS1 he was really sick becaus he had heart worms my mom and I just whated for about two hour's I was not as patint as my mom because I keep asking my mom what was going on. After the operation was down we had to whate even longer intill we got my dog bare back almost @NUM1 hours. After the @CAPS1 called us we went and got my dog and the doctor sed that he had to water in till he could be up and moving and it was finly ok and we played in the snow all @CAPS3 long. 8 4 12 2 3 2 1 1 1 1 1 +19481 7 "AHH! Oh hi my name is @CAPS1 Im going to tell you how I waited @NUM1 @NUM2 @CAPS2 to do something sweet. Ok I heard about this awesome but scary place called the @CAPS3 @CAPS4! Me and a few friends of mine @PERSON2 and @PERSON1 plan to @CAPS7 there in @DATE2. So far me and them have been just doing the ordinary. @CAPS5 up, @CAPS5 in the shower, @CAPS5 dressed, @CAPS7 to school. Today @DATE1, @CAPS8 are going to my parents house and @CAPS7 online to see when it opens .@CAPS8 found out in two days the new location will open up. It is near the parlor and down the road of @ORGANIZATION1. So @CAPS8 cheak it out and its nearby so @CAPS8 are so read to be screaming like a baby when it gets its bottle tooken away. Today is the day @CAPS8 are on the road but what @CAPS8 did realize was how many people would be there. When @CAPS8 got there it had at least @NUM3 people waiting! @CAPS8 sat in line and about every @NUM4 minutes the line decreased by @NUM5 people. Then finally about @NUM6 and a half @CAPS2 of waiting @CAPS8 were in the to @NUM7. It was just own luck too, @NUM1 people were not patient enough to wait but @CAPS8 were respectful. Then @PERSON2 had to @CAPS7 use the rest room so @CAPS8, walk across the street so he could @CAPS7 then when @CAPS8 came back @CAPS8 ended up in the top @NUM9!@CAPS8 waited another @NUM10 then @CAPS8 were in! By the time @CAPS8 were done @PERSON2 was crying (he is @NUM11!) @PERSON1 wet his pants ( he is @NUM12!) and @NUM13 and I didnt do anything ,@CAPS8 had one heck of a night but it never would have happened if @CAPS8 were not so patient." 12 12 24 3 3 3 3 3 3 3 3 +19482 7 "Patience is an important thing to have. If helps you and other respect yourself. If you are not patient things will only get worse. My cousin is a big @PERSON1 fan. She wanted tickets to his concert, but when the sold out online she didnt know anywhere else to get them. She didnt know anywhere else to get them. She saw on the news that the were giving away tickets the morning of the concert. She wanted to be first in line. Well so did everyone else. She got there at @NUM1 am and there were still at least two hundred people in front of her. She had to wait several hours in line until she could see the ticket both. Finally when she got to the front, she got her tickets. She was patient and did not complain. Later that night she got fifth row seats close enough to see the sweat on @PERSON1s face that shows how being patient can end up in a good result. Maybe if my cousin would had been so patient she would have gotten the tickets. Patients will get you @NUM2 long way, especially if it trying to gain respect. My cousin has inspired me to be @NUM2 patient person, and maybe I will get concert tickets someday." 9 10 19 2 2 2 3 3 2 2 3 +19484 7 "When I went to the game with @LOCATION1, @PERSON1, and his mom, and dad. @PERSON1 has downs syndromd. And he likes to wach games. He likes to cheer them on whene their playing. He also like to give them hi fives after they are done playing. I did not laugh at him. I thought was a perty cool guy. He like to talk a lot about suff like sports are cartoons. I dident make fon of him win he talks. I dident win he walks and or win he make nosies that are funny. He think of every one as his filend wich they are. When he standing in line he dosent move vary much. He yells wen @DATE1 port has the ball and is heading for a tuch down. When he gets mad when spirg port, dont have the ball and they score. I @CAPS1 him That we will get it @CAPS2. He say yeha I now that. So he likes to go on to the feeld to wach. But they wont let on the feeld yet so I @CAPS1 him to be patience so he will calm down. When the games over his mom takes us to @LOCATION1 house. We sat in the @CAPS2 being roud and taking. But she did not get mad.even now we had to set in a hour traffic jame. So after all that what I think patience is." 7 10 17 2 2 2 1 2 3 3 2 +19485 7 "Are you patient?well I am always patient.Iam going to tell you a time when I was patient at school.One day I had to register for school it was very busy.I had to wait to every line atleast to ten to fifteen minutes.When I finally got all my paper work done,I had to take my id picture.When I took the pictures I went to get my id.All of a sudden it comes out,but my eyes were closed.So I had to wait in the line again and take more pictures.Then I went to take my other id. I waited very long,like about twenty minutes.My second id came out and it was messed up.T he lady told me when I start school,I will get the correct one.That is a time when I was patient in my life." 9 9 18 2 2 2 3 2 2 2 3 +19488 7 A time when I patient was during last @DATE1. My friends and I were waiting in line to get an autograph of the detrnit tigers @NUM1 baseman @CAPS1 @CAPS2. It was going to be exiting to meet the players???????????????????????????????????????????????????????????????????????????????????then left. This was a day when I was patient. 8 11 19 2 2 2 2 3 3 2 3 +19489 7 I was patient when I went to the doctors. When I went to the doctors me and my mom wait patient for a long time. It felt like years but it was alone for @NUM1 hour then when the doctor called us back to the room wait for a long period of time and a nother half-hour we waited. I asked my mom why did it take forever my mom said because their other people befor us. oh I said ok then. 8 4 12 2 2 2 2 1 1 1 1 +19490 7 " @CAPS1 day I was patient at a water park & I was get @CAPS1 a water slide.,but thier were like @NUM1 people in front of me. At the same time, I it hot then I dont know what, I the ground his hot if you have no flip flops. But, I really want to get @CAPS1 this water slide no matter what. So I stand thier patiently to get @CAPS1 the water slide. Then I said to my self this better be wroth if or im going to be ferious. But it @CAPS2 I gonna be pantient about it. I hope I have fun @CAPS1 this ride." 5 8 13 1 1 1 2 2 2 2 2 +19491 7 I was patient last year when I was when I was taking the ??? and it was not done. I hate being patient and when I do it is boring. Patients seem like they take forever. And then people just start getting head akes and then you get in trouble by your mom or dad or teachers for talking to much. And that is why I dont like being patient. 5 3 8 1 1 1 2 0 1 1 1 +19492 7 "Patience is when you can wait for a long pereied and not complain I dont think I have very much patience. I think patience is like waiting in a line for hours and not careing because you are very patinct but every thing takes patience games, driveing, eating waiting and even being at school all taken lot of patience." 3 4 7 0 1 1 1 0 1 1 2 +19493 7 every school year I wait patiently for @DATE1 vacation. It fell like a a terify waiting for @DATE1 but it is werth it. 5 1 6 1 1 1 2 0 0 0 1 +19494 7 "Hi, Im @CAPS1 @CAPS2 I have green eyes, blonde hair, I have a good personality. Okay, so am going to tell you about a time when I was focused. Okay so it was @NUM1 last year yar @DATE1 I think. My mom and I were left for a doctors appointment. So we left around @NUM2 after school started. So when we got there I was just waiting for like @NUM3 hours bored out of my mind. I didnt know what to do so I saw the fish @CAPS3 I was watching them for about @NUM4, doing nothing then finally the women of the counter desk said , @PERSON1 then I knew it was our turn. So we went in the room I layed on the bed. I went to sleep on accident, but while I was sleeping they gave me a painful shot it hurt so bad. Then I woke up and that was the time when I was paitient." 7 7 14 2 2 1 2 2 1 2 2 +19495 7 One time when I was patient I got a @ORGANIZATION1 last @CAPS1 I asked for a @ORGANIZATION1 and my @CAPS2 said maybe. So I waited all year I knew I would get one but I kept waiting and you know what I got a blue @ORGANIZATION1 and on top of that @NUM1 new goues with it. But over the time I wated I was going nuts knowing I was gonna get the @ORGANIZATION1. But when I finally got it I was glad I was patient the wait was wen worth it especially because I relly waited my @ORGANIZATION1. 9 4 13 2 2 2 3 1 1 1 1 +19496 7 "@CAPS1 @CAPS1 @CAPS1!! @CAPS3 @ORGANIZATION1 while running down the stairs. @CAPS4 have to get this cool new book! It looks really really good. Please, please, please! @CAPS4 have to do errands before @CAPS4 go. replied @ORGANIZATION1s @CAPS1. @CAPS6 you are patient @CAPS4 can get the book. persuades her @CAPS1. @ORGANIZATION1 who wants the book bad replied ok and they went to do errands. First stop they went to the gas station then post office, then to the car wash, then finally to the grocery store. At the grocery store @ORGANIZATION1 helps her @CAPS1 shop. All day @ORGANIZATION1 was patient and didnt complain once. The last item on the list is pasta for dinner, @CAPS8 @ORGANIZATION1s @CAPS1. @CAPS7 I cant seem to find it. Ill go find it. @CAPS8 @ORGANIZATION1 who was eager to get her book. @ORGANIZATION1 looks down every aisle until she finally finds the pasta her @CAPS1 wants. When @ORGANIZATION1 finally finds her @CAPS1 she is in the checkout. When the cashier is done ringing all the items, @ORGANIZATION1 and her @CAPS1 go to their car and unload. When they get to their house @ORGANIZATION1 forgot about the book until her @CAPS1 came over to her and gave it ot her. @ORGANIZATION1 @CAPS8 her thank yous and then realized it isnt hard to be patient." 8 8 16 2 2 2 2 2 2 2 2 +19497 7 I was patient when my mom when to the doctors and she was having a baby and I had to wait in the waiting room for @NUM1 hour for ???. 5 4 9 1 2 1 1 1 1 1 1 +19498 7 "Patience, its something that my family doesnt have. Here is the story. Wile am doing the dishes my little brother is crying cause my little sister @PERSON2 hit him. So sence @CAPS1 is crying (my little brother). @CAPS3 starts to cry (my little sister). So then my step dad is playing on his iphone. He is going to yell at @CAPS1 pretty soon. And what do you know he does. Okay you think its going to get better? Nope wrong. I get @CAPS3 to stop crying. But @CAPS1 just wont so l call @PERSON2 in here and @CAPS1 got to hit her then my step dad starts to go crazy cause he is still crying now @PERSON2 is being a brat stomping of the stairs. When ??? got ??? calm down. Now just as l am about to go crazy @PERSON1 (my older brother) comes in and takes @CAPS1 down stairs to calm him down. Thank @CAPS7, for @ORGANIZATION1. Then I calm @CAPS3 back down. What a day well l guess my family does have patience well not my step dad." 8 8 16 2 2 2 2 2 2 2 2 +19499 7 "We all have our times when we are very patient, and the times when we lose all patience we have. Well , yesterday, I was very patient my sister, @PERSON2 throws tons of fits and she is very bratty. I dont know what it is that ticks her off so much. She gets very mean and violent. Heres the story. We were walking home yesterday. Everything was going fine. When we got home mom told us we had to clean. Well our room was clean, and I wouldnt let @PERSON2 go up to clean it. She screamed at the top of her lungs and cried. @MONTH1 I remind you, shes ten. She stormed up the stairs and she was on the phone with her. friend @PERSON1. I told her to hang up because we had to clean. Yet zazin she screamed. So our sister, @ORGANIZATION1 got @NUM1 said to knock it off, hang up the phone, and clean. Then @PERSON2 made us listen to @PERSON1s text messages. Ill admit @PERSON1 wasnt being very nice. So we told @PERSON2 to not answer the phone. We werent yelling, we were being very calm and patient. She was still screaming so we just left her alone to scream. Then, our mom came home. @PERSON3 and I told our mom what had happened. Then our mom told @PERSON2 she is grounded, no longer allowed to talk, text, or even talk to @PERSON1 at school. My mom also thanked @PERSON3 and I for being so patient. So that is my story about how I was patient. Im not the most patient person, but I have my times, and so should everyone else. Life is so much better in the long run if you are patient!" 9 12 21 2 2 2 3 3 3 3 3 +19500 7 A time when my @CAPS1 was patient is to day last week an yesterday. My @CAPS1 was so patient to daycas I was late for school and it was qetider lay man about toture but he was stoping so @CAPS1 was pashent to wat and not going front of him or blow the lowt eratatent horn an him the next time my @CAPS1 was patient is when I was in a basket ballgame my @CAPS1 was sout side waiting on me and we wanting over time so she just wated tell I come out the bulding. The last time my @CAPS1 was patient is when we was in subway I ordert a could cut and it took about one ment tell I got my food I was so hungry I could not fell my tomey. So in cunlshon a time when my @CAPS1 was patient. 5 4 9 1 1 1 2 1 1 1 1 +19501 7 "As we walked in the smell of mouth wash filed are noses to walked to the front desk a shourt little lady with known hair and glasps greeled us. @CAPS1 take a seat in are writing ranill and your dentist will be with you shortly. @CAPS2 the lady at the kle:li. We walked to the waiting room my mom and brother sat on the waiting coach and I but in the little tan chali in the corner. My brother got some papers and crayons while my mom and a???. But I was wrongl fifteen minuet went by my mom and my brother were still doing the same thing while I was looking around the room borde out of my??? I keep asking my mom when the dentist would come but @CAPS4 just told me to be patience. About twenty minuets later I was @CAPS3 to loss I could no longer??? Not know how my brother could just sit there and color for twenty minuets. I wanted to ask my mom when the dentist is going to come, but @CAPS4 would just tell me to be patience. I got up a started pacing back and forth. After five minuets of that my mom told me to sit down and find something to do. But there was nothing nothing I could possibly do that could entertain me finly when I was about to go crazy a little lady stud in the obor way. @CAPS3 for your appointment. @CAPS4 @CAPS2 I got up and followed her to a small room, happy that the waiting was over" 12 12 24 3 3 3 3 3 3 3 3 +19502 7 "Being patient is waiting quietly for something to happen. A lot of times, you have to patient for a lot of things, such as long lectures, birthdays, and orchestra concerts. Sometimes, no matter how patient you are, the thing you have been waiting for does not happen, and youd have to leave without doing what you wanted to do for the whole time (and that has happened many times with me). For long lectures, sometimes you have the urge to leave. You have to be patient and wait for the lecture to end. For birthdays, you really want to eat the cake. But, yes, you do have to wait until your annoying sister finishes blowing out the candles and makes her wish. I am part of the orchestra, and we have a orchestra @ORGANIZATION1 about every two months. The first @ORGANIZATION1 is an open @ORGANIZATION1, and they are usually in @NUM1. Last year it was the @NUM2. At the end of the @ORGANIZATION1, there is a cheese cake sampling station, and cookies, and domus, and all these good cake. But first, I must suffer through playing through many pieces, watch the beginners play and watching at honid video ??? videotapes my face, waiting for a mistake so any annoying can laugh at it and call me an epicfail. But I still live. Playing the piece isnt so bad, its just some pieces of paper with notes and watching the beginners might is torture, but at least I dont have to play. Video @CAPS1? No pain at all. Who says Im going to mess up? All I have to do is to sit in the back row, and my mom might not even see me. My sisters might not even care. And then soon comes the cheese cake, at like @NUM3 at night. That is the good part, but to get to the good part, I must be patient. Im not really looking forward to this years @ORGANIZATION1, on @DATE1, because on that day I have a final cross-country meet after school. Where all five middle schools come together for a big district meet at a place called @CAPS2 @ORGANIZATION2. After that meet, my parents have to bring me to that @ORGANIZATION1 at the high school at @TIME1. The @ORGANIZATION1 closes down at @NUM4, like always, and I am hoping Im not going to get any homework. But if I do, Ill just have to be patient. That day is like any old day. @NUM5. Ill have to wait until school ends, the meet ends, and the @ORGANIZATION1 ends to go home, but I can live. All that is on my mind is to live the whole school year, patiently, without messing up or failing badly." 12 12 24 3 3 3 3 3 3 3 3 +19503 7 "Even though you @MONTH1 not know @CAPS1, there is patience all around us, you @MONTH1 not even know your using the patience like a line for winch or writing for something, but you are .Here is a story. When I used patience. One day, on a hot @DATE1 day at wider point, we decided that we were going to go to the water park. As soon as we got there we jumped the first pool I waited for my dad. After a while of playing we decided to go on one of the water well @CAPS1 was the water well at the park. @CAPS1 was so big you had to take @NUM1 flights of staying to get to @CAPS1 but after I went back I knew @CAPS1 worth the wait" 8 8 16 2 2 2 2 2 2 2 2 +19504 7 "My story is about a time when I was patient was in (@DATE1). I was waiting for @CAPS1 to come. I was being patient because we were going to @LOCATION2. I couldnt wait to go but I remembered to be patient. The less I thought about it the faster time passed by. Then it came, it was time to head to @LOCATION2 when were in the car on our way there I couldnt wait any longer! More and more roads passed by. We passed city to city; state to state. It was the next day already and I still couldnt wait. During the long ride I fell asleep when I had woke up, we were already there. I had to nare patience because riding in a car from @LOCATION1 to @LOCATION2 is a long drive. While being patient I got to see many things and travelled through different states." 8 8 16 2 2 2 2 1 2 2 3 +19505 7 "Patience is something is most people dont have. In the story, patience was something that I needed. If I didnt have patience in the story, I dont know what I would do. This is my story. A couple years ago, I was picked up from school. My mom was supposed to take me home, but she wanted to go grocery shopping first. When we were there, she asked if I wanted to come in. thinking about all of the reasons why I dont, of course I said no. I sat in the car when it was at least @NUM1 @CAPS1 outside. I was sweating within ten minutes waiting in the vehicle. My mom still wasnt out of the store. There was so many times where I wanted to be angry, but I didnt let myself get this way. I even saw people come in and then come out before my mom got out of the store. It was at least two hours before my mom had finally come out, I wasnt mad at her, I just understood her reasons and apologies why she was late. Most of the time I am not a patience person. Actually, I am never patient for situations like that. I was so glad I was patient for this story." 8 9 17 2 2 2 2 2 2 2 3 +19506 7 "Sometimes on days when I have @CAPS1 patience at @CAPS2, I have to control myself so I dont just go off on someone or totally say something mean to them! Like @DATE1 actually we are going camping up in @LOCATION2. We always go for about a one to two hour hike. And when we do we go to lake @LOCATION1 but just before that to get there we take an adventure hike, so my dad calls it! It takes you through the woods and over or even through the river. But there is two ways you could take; a five minute hike straight to lake @LOCATION1, or an hour to two hour hike through the woods and over logs. And on days when I have @CAPS1 patience at @CAPS2, and just want to get straight to lake @LOCATION1 we always have to go the long way around! And everybody hates the by the time we get to the lake, because I will just complain and complain some more! (@CAPS3 sometimes I get annoyed at myself!) @CAPS4 on the way back its more fun after we go swimming in the @CAPS5 cold water! (@CAPS3 my dad says it clears my head! But it really doesnt!) And by the time we get back, we are ready to have dinner, but dinner isnt ready yet. @CAPS4 I get to be in a bad mood again! And have to wait some more!" 12 8 20 3 3 3 3 2 2 2 2 +19507 7 "Two years ago, my two year old cousin @PERSON1 was adopted from @LOCATION3. My aunt, uncle and cousin had to wait three years before they could even see a picture of her and start doing paperwork. The people at the orphanage were not being very fair to them. They let almost @NUM1 people who had tried to adopt a child a year later after my aunt and uncle tried go first. They had to go all the way to @LOCATION3 from where they lived, which was @LOCATION1, and wait three days until they could just see her. The orphanage made them wait another week to adopt her. Finally, they adopted her and named her @PERSON1. They went through more paper work, said that they would always take care of her, and then went home. After that, @PERSON1 didnt sleep at all the first week or so. Since @LOCATION3 is @NUM2 hours ahead of @LOCATION2. She would sleep during the day and wakeup at night they eventually taught her to sleep during the night. That girl took a lot of patience but she was finally adopted." 9 8 17 2 2 2 3 2 2 2 2 +19508 7 The time I was patient was last @DATE1 when we went to the cedar point. When we went to cedar point there was a long line when we got to the front of the line the machine broke. @CAPS1 we had to go to a nother ride and I couldnt wait @CAPS1 long because I had to go to the bathroom @CAPS1 I walked out of line and went to the bathroom. When I came back there were more people in line @CAPS1 I just waited. 8 4 12 2 2 2 2 1 1 1 1 +19509 7 "My dad @PERSON1 is patient everyday.He goes to work and cant want to come home, but he doesnt go crazy like me cause I wanna leave. No ,he does his work and waits till @NUM1 when he can leave and go home. He always patiently waits till @NUM1. My dad always been a patient person andto look up to him because of that patience ." 6 5 11 1 1 2 2 1 1 1 2 +19510 7 I was at the great wolf loge and we could not go in because some kid poop in the pool and a big part of the pool was brown we could not go in for three hours and it was very boring then we went outside and there was a pool there the hole time. 6 8 14 1 2 2 1 2 2 2 2 +19511 7 "A time when I was patient, I have been patient plenty of times but one I mostly remember is when I was waiting for a friend to get home from school (I missed schoo) while waiting I did plenty of things. I played my xbox @NUM1 and I got on the computer. But while xbox I saw one of my friends come online. He lives in @CAPS1. Moures @CAPS2. After he got online we played most of day then I got off and watched @CAPS3 because I was bored. Nothing was on so I got on the computer, still bored. So I tried to take a nap, didnt work. After that I tried to play my xbox but after another hour (nowaround @TIME1) it got bored. I still played for about another half an hour till I just redid my account while listening to music and played some more till he got online. We played all day till night" 6 5 11 1 1 2 2 1 1 1 2 +19512 7 "My friend @PERSON1 was patient last week in the lunch line, he waited about @NUM1 minutes. I got to the cafeteria before many of the other students were in line. He was behind the @NUM2 and @NUM3 graders. @PERSON1 was patient by not cutting in front of them and didn't complian. The line was longer because there was a presentation and then it was lunch, the @NUM2 and @NUM3 graders didn't have lunch yet so that was why @PERSON1 had to wait. I thought he did a good @CAPS2 waiting. When many students were filling up the tables I saved @PERSON1 a seat next to me. @PERSON1 finally got his lunch and I saw him go over to the @CAPS1 and milk cooler and grab a orange @CAPS1. I waved to him across the room and he saw me. When when he came and sat down next to me I told him he did a good @CAPS2 be patient and waiting to get his lunch. I was almost done with my macovoni and cheese when @PERSON1 said, ""@CAPS3 for safeing a seat for me."" When we both finished we took care of our trays and walked down the hall to the gym. We were glad we didn't have to be in that loud, crowded cafaterra. In the gym other kids were playing a small basketball game. @PERSON1 grab a basketball. I waited until the @NUM2 grated were done, I was patient, the teacher then told the younger students to go back to class, when I got the ball I asked @PERSON1 if he wanted to play around the world. It was one at @PERSON1's and I favorite game we played." 11 11 22 3 3 3 2 3 3 2 3 +19513 7 "Boom! Boom! I knew my cousins were at the door because they were all heavy handed. So I ran down stairs and opend the door it was them. Then, we all got into the van you all read to have some fun my mom all, we replied @CAPS1 !!! it was so bouring in the van but I had to be patient. After, we got to ohio we stoped and got some food .After @NUM1 mins we got into the van .When we got to ??? point we were all excited it was going to be a good day I thought but I also knew that it was going to take some time and patience .Next ,when we got into the park we all whent straight to the reptor .It was a half an hour right .This was going to take a lot of patients so we wated and wated when we got on and off we realized it was worth it. They we got on a lot of ride .but the best one was the diagster .When we got to the van we all said it was fun. Then I relised I was very patient" 9 9 18 2 3 2 2 2 3 2 2 +19514 7 One day me and my friend @CAPS1 were going to @CAPS2 to alabama. It was the most boring thing @CAPS3! Imagine just driving in a car for @NUM1 hours just driving and stopping to use the bathroom. And to make the matters worse I had the smallest bladder there wich as I can imagine @CAPS4! But we did get to count waffle haoes because the farther south you go the more people like waffles. Im not kidding there was at least one waffle ???. And a kind of ??? was we werent just going to alabama we were going to the @CAPS5 of alabama. So when we finally ??? ??? still had to wait @NUM2 more hours. But when we finaly got there we had a blast! And I have to admit one good thing came from experience ??? rides dont bother us??? ???. 8 10 18 2 2 2 2 2 3 2 3 +19515 7 "I am going to tell you about a time when I was patient. My cousin was at my house and needed help on math homework. Because no one else was home, I had to help him. We sat on the couch and I helped him. The reason I had to be patient was because he didnt know how to do any of it. So I had to sit there and teuch him how to do it, and then explain how I got the answer. And did I mention that he had three pages to do. It was almost two hours before we were done with it all. And that was a time when I had to be patient." 8 11 19 2 2 2 2 3 3 2 3 +19516 7 "@CAPS2 father has recently lost his job. It has been hard. It has exactly @NUM1 since @CAPS2 father has had job. @CAPS2 father has been constantly applying for jobs. But he didn't give up. He kept on trying and trying. Fortunately @CAPS2 father has a job interview in san @CAPS1 in a couple of weeks he is going. Hopefully he will get the job. Thankfully @CAPS2 father has been very patient. Even though he is being rejected constantly, he still trys very hard to get a job. @CAPS2 father is @CAPS2 I role model because of his amazing level of patientence. Thank god, I have someone to care for me who his as patient as @CAPS2 father. Without the patience of @CAPS2 father @CAPS2 family could live. Well job or no job I will always love @CAPS2 father. This would be true because of @CAPS2 fathers great level of patience. For that main reason that is why @CAPS2 dad will always be @CAPS2 heroe and number one beloved role model" 12 12 24 3 3 3 3 3 3 3 3 +19517 7 "Patience is a very diffult thing @CAPS1 some people. One time I was at a huge party. But none of my friends or cousins were there. I was board the whole time. I asked my mom if we can go home she said ""no"". Then I sat down I waited and waited @CAPS1 a really long time. Then finally we went home. The next day my mom sent me over to my cousins house @CAPS1 a sleep over. This was because I was being patient at the party. I learned that being patient isn't always a bad thing. You recieve good when you be patient." 6 8 14 1 1 2 2 2 2 2 2 +19518 7 "Melay was a little girl, waiting for her parents in the @CAPS1 bush. @CAPS5 didnt know why @CAPS5 had to. Her parents second distressed all the time now. @CAPS2 must be something I did, @CAPS5 thought. Her sister was not as patient as @CAPS5 was waiting. @CAPS5 had to be doing something all the time. So when her parents didnt come and somebody else did @CAPS5 wasnt happy. Boys came walking along the road @CAPS6 @CAPS14 were hiding carrying @NUM1s. Melay was thinking, these are boys waiting along the street. Are @CAPS14 crazy! @CAPS3 their parents told them to hide @CAPS2 was always for a good reason. @CAPS5 sat @CAPS13 thinking about this when @CAPS5 heard a loud crack! @CAPS4 was thats @CAPS5 thought. @CAPS5 looked to @CAPS6 her sister was supposed to be and @CAPS5 wasnt @CAPS13. @CAPS6 was @CAPS5? @CAPS7 @CAPS5 looked out to @CAPS6 the boy soldiers were standing around laughing. @CAPS4 were @CAPS14 laughing at? @CAPS5 looked closer and saw that @CAPS2 was her sister. @CAPS10! @CAPS5 cried out. @CAPS6 are my parents, @CAPS14 should be here by now, @CAPS5 thought. The boy soldiers were walking towards her. Thats when @CAPS5 saw another two married and depleated bodies. @CAPS5 found out that @CAPS2 was her parents. @CAPS5 started running. Running away from tragity. @CAPS5 made @CAPS2 a mile before @CAPS5 had to hide. @CAPS5 hid in a bush. The boy soldiers were walking around looking for her. Suddenly one cried our, @CAPS13 @CAPS5 is! @CAPS14 dragged her out of the bush, and walked for @CAPS4 seemed to be forever. Finally @CAPS14 reached a build. Melay was screaming at herself, @CAPS3 only I waited. @CAPS3 only I waited. @CAPS14 took her into a room and the boss raped her @CAPS14 quickly shot her to death and dragged her into a dumpster. @CAPS3 only @CAPS5 had waited." 11 12 23 2 3 3 3 3 3 3 3 +19519 7 "I rember this hot @DATE1 day I WAS on my way to the @CAPS1 / octhndontist. And /left school bEcAUSE it was the second to lost day, And I left school about fourty-five minutes @CAPS2. My oppointment wAs @CAPS3 @CAPS4-thirty. So / @CAPS5 @CAPS3 the @CAPS1 @CAPS3 @CAPS4 lifteen @CAPS4 was About @CAPS4 people @CAPS3 and of me. So / @CAPS11 And @CAPS4-thirly pAssed, so I went across the street And ordered @PERSON1 @CAPS14. After @CAPS12 @CAPS13 @CAPS14. I bought same gum , it WAS now @CAPS15 on the dot. Im still wAiting, I go @CAPS16 @CAPS17, the front desk mAnAger, how long will it be until I go in. The sAid she would go check for me. She cAme bAck And she told I cAN go right on in. I felt so happy for myself for being so patient, And I got A tooth-break for being patient!" 8 11 19 2 2 2 2 3 3 2 3 +19520 7 "A time when I had to be patient was when I needed help with my schoolwork. My dad is very smart so whenever I needed help, I usually ask him for help. Well I get out of school at @TIME1 my dad gets at @TIME2So,if I wanted his help , I would have to wait myself but I didnt understand it. Even with homework that needed help on back in my backpack until my dad got home I wished the homework that didnt need help on. After my homework that which I did all my @CAPS1, then it was time to eat, as I ate my dinner. By that time I was done waiting my dad me, more and really to help we as my dinner. It was last to go to wait over my dad to help understand it so much more." 9 9 18 2 2 2 3 2 2 2 3 +19521 7 "Once there was a lonely puppy. One day he sent letter to a random address and waited and waited and waited. A few weeks later he got a reply to his letter, it was from another puppy! They soon became best friends and the puppy learned that patients pays off (ussaly). The @CAPS1" 7 6 13 1 2 2 2 1 1 2 2 +19522 7 "On @DATE1 my friend @CAPS1 and I climbed on the bus headed for @PERSON1 at @CAPS2 @CAPS3. @CAPS1 and I were with our church group, and we were together till @NUM1 am. We had been riding all diffrent rides all day and we got in line for the @CAPS4. The sign out front said wait from this @CAPS3 is @NUM2 hours, but we were going to wait it out. I was around @NUM3 then so that would put us on the ride around @NUM4. We soon found out that @PERSON1 also started a @NUM5 p m and lucky us we were standing right next to a haunted house. Around @NUM6 pm all of us were pretty bored so we played different hand games like slide and lemonade. About every five minutes we would hear loud obnixous screams, and we always heard mouths running like they were in a race. Then at about @NUM4 pm we got on the ride, and we all loved it. When we got off someone said @CAPS5 go on the @CAPS6 all the adults loved the idea. As we walked over I could smell sweet treats and taste a elephant ear on my tounge. Little did we know that we would have to walk through @CAPS7. Caenevil well it was filled with evil clowns and other spooky creatures. It was not a good idea given the fact that half of us were afraid of clowns. When we got to the @LOCATION1 there was a giant line, but it was only going to take fourty-five minutes. The ride was over and boy did my head hurt from hitting my head on my head rest so many times. On the way to the exit we saw a ton more of spooky directions. We found out later that we had waited in line for five hours. We finally got on the bus and headed home. That day l learned that I have a lot more patience than I thought I did." 12 10 22 3 3 3 3 2 3 2 3 +19523 7 "A time when I was patient was when we were leaving on vacation. It seemed like I had been waiting forever to go to @LOCATION1, really it had only been about a month. I was so excited, but I had to be really patient. Sometimes its hard for me to be patient because I like things to be done right away, so waiting a month to go to @LOCATION1 was very hard for me. The night before we left was probably the hardest. I was so excited I couldnt sleep at all. The day we left I was so excited and I was running all around the house yelling. Finally we loaded up the car and left for @LOCATION1. We drove our car there so it took almost @NUM1 days. But it was worth it, @LOCATION1 was really fun and pretty. We also went to @ORGANIZATION1 and had an awesome time. I had to be patient at @ORGANIZATION1 since there were long lines for the rides, so we had to wait a while. I had a really fun time in @LOCATION1!" 10 9 19 2 3 2 3 2 2 3 2 +19524 7 "Everybody uses patience sometimes in their life. I have to use it everyday. I need it for basketball. There could be a lot of different reasons that some one would need to be patient. Well, I have @NUM1 in particular. My first one is when people dont pay attention. It frusterates me. When the team members goof off, @CAPS1 @CAPS2. gets mad. She will either tell us to knock it off or she will make us run a couple laps around the gym. My first reason leads to my second.The second thing that urks me is when people dont pay attention, they get lost and have no club what is going on. There is a lot of people who take a long time to catch on. My second leads to my third.My third is when somebody new joins the team. We just had to new people join the other day and the season is half over. The newest member of the team can not make a shot. She doesnt put all of her effort into it. There is only like @NUM2 out of @NUM3 or @NUM4 people that is actually good.looking over my paper, all of this I have to be patient about. If I wasnt, I would be in trouble and it would mean I would have bad sportsmanship. I deal with it and put up with all of this though. Over the years I learned about patience. I learned how to be patient too. Im glad I know how to be now or else where would I be? Probably not on any teams or in any clubs." 12 7 19 3 3 3 3 0 2 2 3 +19525 7 "I remember a time when I was patient, it was kind of hard to just there waiting on the doctor to call my name. But I suffered through it. Instead of me getting mad about how the lady havent called my name yet, after waiting like @NUM1 minutes. I just turned my @NUM2 player on and listened to my music while reading a magazine. Before I knew it @CAPS2 called my name, @CAPS1 @CAPS2 said with a smile on her face. So I got up and went to the room @CAPS2 directed me in. When I left the doctors office and I was going on I thought to myself maybe being patient isnt that bad after all!" 9 8 17 2 2 2 3 2 2 2 2 +19526 7 Almost every time you need to be patient when you are at the doctors or in the hospital. What I do to pass time when Im at the doctors is play I spy. I play it with my mom every time. There is usually a lot of people at the doctors when I go. There is magazines but I think they are boring. Therefore I play I spy to stay patient. Otherwise I would be very very bored. 6 6 12 1 2 1 2 1 1 2 2 +19527 7 "@NUM1. Last, year I had to go to the doctor on my birthday. So after I came home from school I left right back out. When we got there we had to wait in the lobby. There were crying babys every where, we still had to go to the movies, and shopping. @NUM2. There were still to many people in front of me. I started to get mad. Finally, they called my name. I was so happy I didn’t know what to do." 8 5 13 2 2 2 2 1 1 1 2 +19528 7 A time when someone was patient was when a guy named @PERSON2 was driving and a little girl named @PERSON1 was walking on the side walk and it was a red light. She yelled out loud go old man the old man went and she flowed him to the store and she asked what was that and @PERSON2 sales that was nothing .No you tried to hit me no you were rushing me so I went. @PERSON1 saies to @PERSON2 I was looseing or patience .@PERSON2 tell her well learn how to control the in. 7 6 13 2 2 2 1 2 1 2 1 +19529 7 "@CAPS1! @CAPS2 whined, her voice escalating into a wail. You cant do this to me. Im ten! @CAPS2, calm down. I know you are ten, and at that, a very responsive ten year old. @CAPS4 @CAPS7 I have told you before, I cant leave you at the house all @DATE1. Your father and I have work honey! @CAPS4 cant you just hire a babysitter? What about @PERSON3? @CAPS13 babysitted last year! @CAPS2s mother sighed. I know you liked @PERSON3, @CAPS4 @CAPS13 just wasnt fit to the requirements I was looking for. Besides, you @CAPS21 you wanted to be a babysitter! Why not try and help at the @CAPS16? @CAPS2 used her well practiced glare at her mother that @CAPS21 @CAPS7 if!. This conversation had been held two weeks ago in the kitchen of the fullers. @CAPS12, @CAPS2s mother, @PERSON1, was taking her to @CAPS9 countys only day care, @CAPS10 and @CAPS15 @CAPS16. The name made @CAPS2 want to gag. @CAPS12 remember sweetie, be nice and try to help out a bit. I love you! @CAPS13 called @CAPS7 @CAPS13 started to pull out of the driveway. @CAPS2 turned to face the small building. The sign above the building stated @CAPS10 and @CAPS15 @CAPS16. A friendly and loving environment @CAPS13 had that gagging feeling again. @CAPS13 turned back to see if @CAPS13 could spot her mothers red, battered, @LOCATION1 speeding down the poorly paved road. @CAPS4 all @CAPS13 saw was a trail of dust. Great, @CAPS13 thought @CAPS7 @CAPS13 entered through the double doors that had a picture of a big, grinning, clown, @CAPS12, why dont you play with little @PERSON4? @PERSON2 @CAPS21, comforting little @PERSON4 in her arms, actually, @PERSON4 was seven, which @CAPS2 thought was a big enough age to not cry when someone yells at them when theyve asked to play one for the billionth time. @CAPS2 we need to talk. @CAPS21 the middle aged woman, shunning @PERSON4 to the side, honey, youve got to understand that kids need patience and love. Heck, I remember you @CAPS7 a kid! Boy were you an attention hog! @CAPS2 looked like @CAPS13 regretted yelling. @CAPS13 smiled and went to find @PERSON4. Maybe hed still be game for you." 12 12 24 3 3 3 3 3 3 3 3 +19530 7 "I was patient about getting my phone. I had to act extra special so my mom can decide when I would get my phone. It was a @DATE4 @TIME1 and I had to go to school but I was acting very patient so my mom would think its time for me to have my new phone. When I got home I was acting like a pleasent little angel. But she still didnt say it was the time to get a phone the next @TIME1 @DATE3 I acted the same way but better. I still didnt get it I wanted to scream at the top of my lungs. The next day @DATE1 I cooked my mom some breakfast and I was satisfied that it as the day to get my phone. Nope she just hugged me and thanked me with a smirk on her face she was waiting for me to burst one shouting, but I knew what she was trying to do so I said your welcome, although I was feeling intense. The next @TIME1 I was feeling a little better and I was ready to improve how patient I am so I dressed very professional\ casual and I had made my own breakfast and I was ready to impress I ate, and I had walked to school. My mom was up when I got home and she said @CAPS1 on, I have to take you to get something I smiled so hard that I felt like my mouth was going to fall out I dropped my backpack and we stopped at my friends house and I wondered my ma said wait @CAPS2 me still wondering watching her go into the house. She came out and gave me my brown shire I left at my friends house. I was so eager and now my smile turned into a fake smile. We got home and I ran straight to my room. I was doing my homework. @DATE5 the last day for the week. I dint do anything but mop all day. I was still being patient though. Then @DATE2 and @DATE6 I stayed at my friends house. @DATE4 my mom was up when I got up for school and she said @CAPS2 you can have your phone now and I hugged her tight and run out the door very eagerly to try it out." 12 12 24 3 3 3 3 3 3 3 3 +19533 7 A time when I was patient I was patient on @CAPS1. I got to open are presents at nine thirtey in the morroning I had to wait and wait. So for two hours I wacth telavison. I though @CAPS2 would be hard @CAPS4 I made @CAPS2 through. That @CAPS1 I thougt was the funnest @CAPS4 I lied I think this year will be. That day I made breaskfest in bed. I actually had a lot of fun. I got my mom a couple things of purfoom. @CAPS4 of course she doesnt use them I do I got her some candles we got my dad a bright orange sweat shirt. We also got him some @PERSON1. 6 8 14 1 1 2 2 2 2 2 2 +19534 7 "One time me and my family were at @CAPS1 point over the @DATE1. My sister really wanted to go on all of the small kiddie rides with me but I didnt feel like it. I wanted to go on one of the fastest and tallest rides there. The @CAPS2 @CAPS3 @CAPS4. It looked really cool so my dad and I ran over to the entrance, but when we got their the wait time on the board said one hour and fortyfive minutes. I really wanted to go on this ride but really wasnt worth standing in that line. So when the line started moving and we were half way their the signs said @NUM1 minutes. I told my dad maybe we should do this another day. But my dad said that well be trough soon and he told me for just watch the people on it go by and not talk. We moved up only a little and the time was at @NUM1 minutes, so my dad said maybe we should do this another day and then we left the line to find my mom and sister." 9 9 18 2 3 2 2 2 3 2 2 +19535 7 "I was patient once when my dad had said he was going to give me a letter every @DATE1 because he was to far away for me to visite he lives all the way in @LOCATION1. He told me I had to be patient because Im not really the patient tipe.I guess being patient is not all that hard. For me to be patient I have to being doing something so I get myself to rest by writing stars and drawing, reading, going to any around mother house to help with our animals. And when he finally comes I didnt even get it. Milk @DATE2 so I had to wait even longer within I guess on sit that was to do you just have to have mind on the thing you have to be patient about it." 8 8 16 2 2 2 2 2 2 2 2 +19536 7 "I was patient one time, really patient but kinda went like this. It was @CAPS1 and my mom a I went shoping for presents. So my mom and I went to the mall and walked into target, and I already knew what I was going to get my brother, the new game @CAPS2 @CAPS3 @NUM1 it was perfect. But my mom wouldnt let me buy so I just bought him a target gift card for @MONEY1 i had to hide it for almost a month, but i really wanted to know what my mom got for my brother and I, but she wouldnt tell me so I had to be patient. And when @CAPS1 came I was so suprised because my mom bought @CAPS2 @CAPS3 @NUM1 for me and my brother." 8 8 16 2 2 2 2 2 2 2 2 +19537 7 "Once my friend @PERSON1 was very patient,he waited @NUM1 months for the xbox @NUM2 game @CAPS1 v.s @CAPS2. He quietly waited day after day for the game.But one day after school it arrived." 8 5 13 2 2 2 2 1 1 1 2 +19538 7 "The patient player. Once when I was four and my sister was two, I was playing basketball and my sister always wanted what I had and we always fought over something, so my sister came up and grabed the ball from me and when we were in the middle of fighting my mom told me to just stand and let her have the ball shell just walk away. So then I stood there patiently and waited. My sister ended up getting so bored she just droped the ball and left, she did exactly as my mom had said, then when I was playing basketball again she ran up and took the ball, so I just went inside and played videogames." 6 8 14 1 1 2 2 2 2 2 2 +19539 7 When I had to go get my check up with my asma or and a familiar way like that when I had been waiting in the waiting room wich had tons of stuff to do if the doctor didnt call your name yet. So I had gotton myself busy with crossword puzzles and looking at the fishes wich were awesome cause they had different kinds of fish. And then mostly I had read my book cause I am a reader at the same time a writer but I mostly I had read my book when the doctor came in finally to call my name but I was still busy doing activities then he had said he was sorry a bout the wait which took a while and just said it had been fine and he seen all of the stuff I had been doing while I was waiting. And he said I was a very patient nice girl and after that I always wanted to be more patient while waiting for others so I can get good compliment which makes me fell really good with a smile on the face. And ever since I see that exact doctor who I had do appointment with he always give me a treat or sitters. But to me it doesnt matter as long as I am treating other people fair usually great. Because people would love to be like you one day for having patience. 8 6 14 2 2 2 2 2 2 1 1 +19540 7 "When my mom, @PERSON1 and I went to @ORGANIZATION1, it was really fun. @CAPS1 because I wanted a lot of stuff that my family couldnt afford, my mom was very patient. I guess shes just naturaly patient. I just dont know how she does it. Anyway, throughout the entire store, its pretty big. Its two stories tall! My mom a little angry with me because I kept on getting mad at her. @CAPS1 even though she got really angry with me, she tried to do her best to not show how angry she was in the store @CAPS1 by the time we got home I was so tired, I couldve slept for a whole two to three days! We got everything that we needed that night when we went to @ORGANIZATION1. The next day we had to put up our night stands. @CAPS1 I really wanted my dad to put up our new bunk bed. @CAPS1 my mom said that he might not get to it that day. I was almost literally hourding my dad to put our bed. @CAPS1 when the time came, I was fed @CAPS1 my mom was mad at me cause I wanted to sleep in my bed that night." 7 9 16 2 1 2 2 2 2 2 3 +19541 7 "A time when I was patient was when @DATE1 we drove to @LOCATION1. It was a long ride. It was long because he had a nagshion that went the long way to six flag and to our hotel. I try not to complan and be patient because the ride was a daylong so that means sitting for almost a day! We were lost in @LOCATION1 for almost a hour going up and down looking for our cusion that were coming too. I had to search but there was no space to. I wanted to go outside and run, jump but I hade to be patient. It was @NUM1 in the morning and I was tird. We still had to look for our hotel which was taking for ever! At the hotel I was unpacking my stuff and notice I was patient for almost a day which I though I would never be able to do in a car. That was the time I was being patient." 7 6 13 2 2 2 1 2 2 1 1 +19542 7 "Not long ago I went to the pumpkin patch with my mom, sister, grandma, aunt, uncle my @NUM1 year old niece and baby cusin. When we where done, we went to a restaurant to eat. After @NUM2 minutes of waiting for the waitress, she comes over just to tell us she will be with us @CAPS1. So we wait for half an hour just to put our drink orders in. When we finally got to order our food it took them an hour to bring it." 7 8 15 2 1 2 2 2 2 2 2 +19543 7 Will I was patiently waiting for my little sister to arrive that farthers day morning in @DATE1 I was so exicted. Im not a very patient person so when it came to this it was so hard to sit still. Waiting for my turn to hold her was hard but when she was in my arms it was the must ama-zing feeling in my life. its always hard having to leave her when shes calling your name its like I want to cry. I dont always get to come home to a little girl saying my name but I love every minute I do. I always patiently wait to see her again but it is hard if you know what I mean. 8 8 16 2 2 2 2 2 2 2 2 +19544 7 "At the @CAPS1s office. I had an @CAPS2 appointment. At the @CAPS2 office I was waiting in the room for her to come back. Then the @CAPS1 asked me questions and my foster mom question. Then she left out she went an found the othere @CAPS1 and talked to him. Then they came back and said @CAPS4 you. here goes the papers you need. The foster mom said ok @CAPS4 you. Then the @CAPS1 said to me, @CAPS4 you for being patient @PERSON1. I apprisiate that so much, @CAPS5 to Ill see you guys next time ok. @CAPS5 we said bye." 5 4 9 1 1 1 2 1 1 1 1 +19545 7 "Patient people are the people that tolerate life. If youre not patient you wont get through to welI.I learned this when I was little. There was this thing I wanted and I was going to drive me, but just before I got out the door, the phone rang. My @CAPS2 picked up, @CAPS1 oh hi @PERSON1 no not busy @CAPS6 did not! no! and it went on for so long and every minute I kept getting less and less patient, I finally burst out. @CAPS2 @CAPS3@CAPS4 @CAPS5! @CAPS6 said, hold on @PERSON1 Im on the phone, Im not gonna take you now! and walked away. That@CAPS4 why patient is important" 8 7 15 2 2 2 2 1 2 2 2 +19546 7 In the @DATE1 time my mom had planned of trip for us to go to @LOCATION1 for two weeks. We were on our way is airport and there was?? trying to work through traffic but we could not. So my mom starting yelling and l told her just calm down we will make it. So finally we got to the airport and there were a lot of people so we had to rush finally we made it to airport and l taught my mom to be patient and you will get were your going. So finally we made it to @LOCATION1. 8 8 16 2 2 2 2 2 2 2 2 +19547 7 "A time I was patient was when I was at a dentist office I had to get six teeth pulled. When we where waiting I keep asking my mom ""when are we going when are we going."" When the said ""@CAPS1"" i waked into the room. I asked if i was going to hurt and they said you won't fell a thing."" The doctor put a tube on my mouth and said close your eyes and breath. with out even knowing I fell asleep from the gas. I was asleep for two hours and when I wanted to get out of the chair they said ""no, no, no"" so I sat and sat until @NUM1 minutes later they let me out I was all loope and had to be put in a wheel chair. When I got to the front desk they let me take two toys and my mom gave me wresteler. When we where about to leave my mom talk to the doctor and they took for ever. When we got in the car my mom took the wheel chair back and we where off. during the ride my mom told me I couldn't go to school that day cause of my teeth. She said not to look in the mirror but I did and it was grass. I had to wait three hours for food and drinks d so I was thirsty. When she said I could eat I was happy. I am still patient cause the doctor said that grawn up teeth would come in a few months but it has been two years and nothing so I am disappointed, but now I have to be patient and wait for my mom to take me to get bcacies which is gonna hurt really bad." 8 10 18 2 2 2 2 3 3 2 2 +19548 7 "On a fine @DATE1 day I was heading toward the @CAPS1 office. I wasn't pleased. I didn't want the son to get there. But it did. When we got inside, my mom went to the checkin lane I just sat down. When my mom got done she sat right next to me and we waited. And we waited and waited. We waited for about @NUM1 minutes until the @CAPS1 came and called us in. Right when we get into his office a nurse came in and checked my temperature, heat beat, ex. When she was done and left we waited and waited. We sat there for @NUM2 minutes before the @CAPS1 came in. when he was done we checked out and left and @CAPS2 don't have to go there again." 9 9 18 2 2 2 3 2 2 2 3 +19549 7 "When I was and the @NUM1 grade and I had to put a mible set up, and then I went to put the mible set up and it bruck and then we went to the park and I had to wate for the shag, and after that went to the ice making and I had to hart in a line of people in then when we got ther we pard them are munem and axyer that we went ice starting. and then that was all we did which that day in then he went back to the house to build are mible mirne and art of that way went to the house in plade outside in inside the house" 4 4 8 1 1 1 1 1 1 1 1 +19550 7 My friend an I were wateng to go no a new ride at @CAPS1 font. The ride was cold shoateng the cat. Is it was a water ride we wated. Over @NUM1 hours to go on if it. Was bouring after that we went on. The cowrcscrowe it was fun. 4 4 8 1 1 1 1 1 1 1 1 +19553 7 "One early @TIME1 in @LOCATION2, @LOCATION1 for a @ORGANIZATION1 skating competition I completed. I was waiting to hear if I made it to the @DATE1 part of the event. I had completed in. it was seven in the @TIME1 when we left the rink. We went get a bite to eat and went back to the rink when we were finished. My best friend @PERSON1 also was in the same event I competed in. I knew she would make it to the @DATE1, but I didnt know if I would or not. After a endless wait they were about to call out the people who made it. I kept saying over and over again in my head my number I was given. They called @PERSON1s number. I was waiting for my number to still be called, but they never called it. I had not made it. I was disapointed, but I couldnt do anything about it." 10 9 19 3 3 2 2 2 2 2 3 +19554 7 "@CAPS1, @CAPS1 is a huge past of life to be ?? While you have problems and obstacles that makes you a good person. To have @CAPS1 it ??? to ??? to get the job done that has a long process you might have to wait for an example I have to have @CAPS1 all the time. for like football, hockey and all the active things I do you have to have @CAPS1. As you know adults probably have any more @CAPS1 than teenagers like myself. like if I were to sit in my blind with my father all day! Like he does it never does happen. Now when I become more grown up and an adult I’ll hopefully have way more @CAPS1 and be able to sit in the blind all day with my father. I also do have to say I’m getting better with @CAPS1, because my dad preaches and preaches to me about @CAPS1, @CAPS2 hopefully when I’m an grown adult I’ll be able to have some good @CAPS1 like my dad." 8 6 14 2 2 2 2 0 2 2 2 +19555 7 "To say really Im not a very patient person, but once I was, I dont really know how. I was waiting in line to pay for some earphones. I loved those earphones they were blue my favorite color. So I was waiting @NUM1 minutes passed then @NUM2 then I lost track of time but I knew it was a long time. Then the cashiers were having trouble with the registers. So I waited longer and longer until some people were trying to fix it. Then I had to wait even longer. I guess I stayed in that line for more than an hour. I really loved those earphones but as much as I wanted them I just couldnt wait any longer. I @CAPS1 and put the earphones aside and left the store. I was really mad that day. Two weeks later we came back luckily the earphones were just where I put them. Yesss!!" 10 8 18 2 3 2 3 2 2 2 2 +19556 7 "One day, my mom was really patient. We were outside this talking to each other. My grandma and grandpa called to see if we wanted to go to their house. Of course my mom said yes. So I went and packed some things to take because they dont have anything. So when we hopped in the car, turned on the radio and was all fine. It was fine for five minutes until traffic was backed up in my sub. I was fine until I got a test saying my cousins were over there. I was so mad but my mom this kept her eyes on the road. I was keep on screaming and saying mom go faster, but she this ignored me. It was like it went through one ear out the other. Then I got a text saying were gonna be playing football in like @NUM1 min. he asked me when are you gonna be here? I said I dont know of course my brother was already over there because he spent the @TIME1. It was a bad @TIME1. I was still trying to tell mom to hurry up, but didnt listen. So then I was going to ignore her. That didnt work because she didnt talk. So I fell asleep at @NUM2. I thought I went for bed forever, but I woke up at @NUM3 in the same spot. I was devasted. I yelled out the window and said why. Then I went to bed again. When I was sleeping I felt the car go faster. The traffic was all gone, until we turned the corner and got stuck, in traffic again. I asked my mom how much longer didnt reply. So I screamed it again and she yelled back here. I looked out the window and we were here. And I got to play football. Then I heard my mom laughing in the house. I dont know why she didnt talk. Maybe she this wanted to see her mom and dad. I never found out. That was the time my mom was patient." 11 8 19 3 3 3 2 2 2 2 2 +19557 7 "Awhile back my friends and I made a @CAPS2 game called ""@CAPS1 n go @CAPS2"". I had just taken a great sniping position. I had a great angle in all but one direction. The great thing about this spot was that everyone walked past it to get around in the woods, @CAPS3 usually it didn't require any patience. That's the part I was wrong about. I ended up waiting over twenty minutes until I saw one of the people that were playing. I aim my weapon and fired, @CAPS4 to the rules he was now on my team and under my command. We waited for a while before another player was seen walking close to us. Then my partner got up to fire his weapon at the other player and got shot. He didn't notice me when I crawled away from him, @CAPS3 I was safe. The only problem now was that I needed a new place to @CAPS1 @CAPS6 I found one quick. Again I was waiting for over twenty minutes. Finally I saw another player and got ready to shoot. When I finally got my weapon from the ground the person was gone. This made me pretty made seens how I waited @CAPS3 long and didn't have a single person on my team. I got up and went looking for someone for my team. I was looking my patience and getting frustrated. ""@CAPS7 anyone even out here?"" I whispered ""@CAPS8! I got you @CAPS9!"" someone shouted from above. Then @PERSON1 jumped down from a tree. He told me that the whole time he was watching me. He was waiting for me to get close enough to shoot. This whole time he was waiting with just enough patience to shoot every single person one by one." 12 12 24 3 3 3 3 3 3 3 3 +19558 7 One time I was getting a cool @CAPS1 game it was sooo awsome. And my mom said we will get it on fri. It was @DATE1 and was soo part for her to get of work. And she got home and said we well go on stater day. I was a little mad. Bat how cares.But yea we got the game on the next startday I couldt believe i was patient 6 6 12 2 2 1 1 1 2 2 1 +19559 7 "A patent person in my life is my mom. Aicason my mom is patient because she always drives me to soccer events. Soccer practice friends home and other places if I need to go there. Also she spends money on our soccer, our hobbies and other things we need or sometimes want. She is never certain and is always kind when were sad or anry and takes lot of time to do stuff for us. Also whenever were havinn trouble in school she helps us study, an example of most of these events would be that she spends @MONEY1 on our sports every year and thats not including additional things like gear, uniforms and team stuff. An example of her driving us places is that she dedicates about an hour even has to driving me and my brother places like cross country, soccer and basketball she also helps us with our homework @CAPS1 because when I needed help with a test she stayed with me for corily @NUM1 hours. Also whenever I do bad in school she just encourages me to do better but still is a little discouraged because she wants me to do good. She also supports me being a vegetarian even though it means making two meals in conclusion my mom is one of the most patient people I know." 9 7 16 2 2 2 3 0 2 2 3 +19561 7 "A time when someone else I know was patient was when my mom was looking for a job. My mom is very very busy. She was the president of a club named @CAPS1-@CAPS2 for about one or two years. But now that she is not the president anymore, she is less busy but still has an important position that requires a lot of work. But with either position, she wasnt earning only money. So she decided that she would get a job. She started looking for jobs online and in the newspapers and things. She couldnt find a job that was right for her. She never complained about it even though she was having a hard time finding a job. She kept on looking and looking. She kept looking for about another year until, finally she found a job at @CAPS3.C.C. she now teaches a computer class for collage or older people. If she liked, she would have ended up with a job that didnt enjoy." 11 8 19 3 3 2 3 2 2 2 2 +19562 7 "I hate weddings. I love when people get married, but I hate the ceremonies. Theyre so boring. Especially the @CAPS18 long weddings that take like two hours of people just standing there on the after doing nothing Im not the most patient person, so thats probably why I hate long wedding. Now that is one long story about patience. Do we have to go? I moaned to @CAPS4 mother. @CAPS1 its @PERSON1s wedding and its important. @CAPS2. I had to surrender as I put on @CAPS4 new dress and got in the car. The wedding was all the wapin @LOCATION1. It usually takes only an hour to get there, but not this time. Our family was about a quarter of the way there when he gets into a major traffic jam. @CAPS3 on! @CAPS4 sister yelled. I just kept quiet. Finally, when the traffic jam cleared up, dramatic event just shot out. The road we had to go down was closed. So much for taking the short way. We had just entered the town next to @LOCATION1. When we got a call from @CAPS4 grandma. @CAPS5? @CAPS4 mom answered. @CAPS7 are you? The ceremony just ended, @CAPS8. Thats bad. Were in @LOCATION2, why? Has the reception @CAPS9 yet? @CAPS10, but Im sure youll make it in time to be there, @CAPS11. Thats good. @CAPS12. @CAPS12. @CAPS13, as if on we, he reached the reception. I was so happy to be there even if I do hate weddings. @CAPS14 you have @CAPS16? @CAPS4 mom asked as we arrvied home. @CAPS16? I asked. @CAPS17, I guess I @CAPS14, even the car ride was kind of @CAPS16. @CAPS18? You tend not to be the patient type. @CAPS1 I said and I was proud." 12 10 22 3 3 3 3 2 3 2 3 +19563 7 "A few weeks ago, we had a garage sale and a mom to mom sale. I had to be patient because of the customers that were driving by or the mom to mom sale when we had to wait for people to come to our table. At the garage sale I had a lemonade sale. Out of both sales we made a lot of money but, still we had to take some stuff home and donate it. The sales were fun but, we had to go through it all and, price it. So we just sat there but, sometimes I was happy because the people had bought the stuff we had a lot of fun doing a mom to mom sale and a garage sale! I think that we did pretty god! We did sell some stuff but, some of it we still had left to pack up and take home to donate. We hadto do a whole lot of work but I liked it a lot!" 7 8 15 2 1 2 2 2 2 2 2 +20716 8 A long time ago when I was in third grade I had a friend @PERSON2 who's mom was in a bad mood. She never laughed and she never smiled. Every time I saw her I would smile at her and all she would do was frown and keep walking. At first I didn't know she was a grouch i just thought she didn't like me or something.When @PERSON2 told me his mom was a grouch I started to laugh and laugh. He asked me what was so funny i told him that i thought his mom didn't like me or something because every time I see his mom I would smile at her and all she will do is frown and walk away. That made my friend laugh we were cracking up so hard that we got in trouble in class. The next day @PERSON2 and I were eating lunch at school when he says to me <hey your pretty good at making people laugh>. I said <no I am not my jokesare horrible>. He said <@CAPS1 lets put them to the test go up to some one new to this school>. I said @CAPS1 so we went around the whole school looking for a new student unfortunately we couldn't find one we heard the bell ring and we ran to our class. We sat in the back of the classroom its only @PERSON2 and I and anempty seat between us. We were excited because our teacher @PERSON1 was going to show us a movie. @PERSON1 got the front of the room andclass today I have an announcement we have a new student in our class say hello to @LOCATION1. @ORGANIZATION1 walked through the door. @PERSON1 told @ORGANIZATION1 shecould sit in the back in between @PERSON2 and I. She sat down turned to the both of us and said hello. @PERSON2 gave me a look that said tell her the joke and @CAPS3 him a thumbs up. I turned to @LOCATION1 and said hi I'm @CAPS4 do you want to hear a joke. @ORGANIZATION1 said yeah sure. I started <@CAPS5 knockshe said <who's thereI said <booshe said <boo who?I said <oh don't cry I am right here>. At first she didn't laugh because she didn't get it but duringthe middle of the movie she said <ohhhh I get itand she started to laugh. @PERSON2 turned to me and said <I told you so>. @PERSON2 got this crazy idea that if I spent the night at his house that I could make his mom laugh or at least make her smile. I said <@CAPS1 sounds like a plan>. I asked mt mom if it was @CAPS1 if I could spend the night at @PERSON2 house she said <yeah just make sure its @CAPS1 with his mom>. @PERSON2 asked his mom she said it was @CAPS1. When I got to @PERSON2 house the first thing we did was play video games. When it was dinner time we all sat down at the table to eat @PERSON2 and I were on one side and his parents on the other. When we started eating @PERSON2 told me to tell the joke to his parents i said @CAPS1. So I said to them <@CAPS5 @CAPS5>they replied <who's thereI said <boothey said <boo who?I said <oh don't cry I am right here>. His parents started to laugh and laugh and they keptlaughing for like five minutes. @PERSON2 turned to me and yelled it worked his mom asked what worked. @PERSON2 explained everything to them. His mom told usthat her mom had recently died and that's why she was in a bad mood. After dinner we went to bed and fell asleep. The next morning when my mom came to pick me up she asked me how the sleep over went. I said it was fun I made people laugh. She said @CAPS1 but laughter isn't going to help you clean your roomall i could say was gosh darn it. FIN 18 16 34 4 4 4 4 4 3 3 4 4 4 3 3 +20717 8 " Softball has to be one of the single most greatest sports alive; playing softball in college has always been a goal of mine. I love the dirt that sticks to your face, the sweat dripping from your forehead, and the gallons and gallons of water you poor all over yourself to keep cool in the blistering @CAPS2. Although I love softball I feel that the memories you acquire from the times you have with your teammates, are the things you remember the most through out your softball career. I have always had great memories through softball many laughs, tears, and frustrations so when I had the opportunity to play on a top notch team I looked forward to all the many more memories I would have. Hood @CAPS1 @CAPS2 was my team name, I had played almost four years with this local team. Many of these girls were like sisters to me they had treated me amazingly through out my years playing with them. I felt like I had my set team, I was going to play with these girls all though high school and we would become even closer. As my fifth year now approached I was looking forward to it, but when my dad came up with the idea that maybe I play for a team not as locally, that idea was also very enticing. I now faced a big dilemma either stay with the team I knew so well and continue to play with them until high school ended; or play with a team I knew nothing about, play with girls that might not like me, girls that were so much better then me, and looked down upon me. As I looked at the pros and cons of both teams I decided no; I would stay with the team that I knew so well and I would stay comfortable at where I was at. At that point softball was just around the corner and I began to reanalyze everything. Did I really want to stay and be comfortable? Or maybe challenge myself to become a better player; maybe i could work hard enough, and have college scouts take a look at me and hopefully have me play for them later. I then decided I would take a chance and try for this team. As my dad and I drove to the field where I would try out for this team, my stomach was in knots. I wanted this team to like me, I was playing all the possible ways in my head I could greet them so i didn't sound snobby or a grump. The time moved quickly and I wished it would slow; my heart felt like it was beating a million times per second. I was so nervous my mouth began to feel sticky and have an odd taste to it, soon after my mouth became bone dry no taste, no flavor, just a sticky mess. The car then was stationary my dad looked at me and just said ""ready or not here we come"". Nervous began to take over my body my arms were shaking uncontrollably and I was second guessing every move I made, I even had troubles removing my seat belt. As I approached the field it felt like time was in slow motion, walking by I saw all the girls turn there heads to see what new fresh meat had arrived. My first thought was to run; that was it I didn't want to go, I was done I wanted home I was ready to start my year with the @CAPS2, I just couldn't take it. Then as I walked onto the field they all grew a smile. Each and everyone of them told me their names, there favorite color, and a small fun fact about themselves. I found myself laughing through out my whole try out, there were no awkward moments and I enjoyed my time there. I couldn't wait to go back, I now had made new friends, friends I knew I would grow close with. My year with this team was amazing I have friendships with these girls that I never would have discovered if I hadn't gone. Those girls are like family, and the coaches even more so. Laughter played a very big role in the decision I made to play with this team, if I had just gone and tried out, and had I not had fun and laughed, I would have decided to play with the @CAPS2. I have had great memories with the @CAPS2, but also softball is all about going out discovering new friendships; therefore, enjoying the sport as well as the people." 21 26 46 46 5 4 5 4 4 4 6 5 6 6 5 5 5 5 5 5 5 4 +20718 8 " Some people like making people laugh, I love it. I will do most anything to get a good laugh. I will make fun of my self, do insanely stupid things, and sometimes hurt myself (not in any serious way). When I was little I didn't really understand laughter. For some odd reason I could never tell the difference if people were laughing at something or laughing with it. I was kind of ""special"" in some areas as a kid (I still am today). Still at the tender age of five I loved making people laugh, and being special I would do even crazier things for a laugh. Mind you I was kind of a spaz, and a really big spaz. I was the most hyperactive five year old you will ever meet. For example one time I hit myself in the head with a hammer, another time I was dancing around in class with a pencil in my hand, stabbed myself in the head with it, and needed stitches. One of the craziest times though was a couple days before I had to take pictures and I wanted to go play outside, my mom knowing how ""special"" I was (I got it from her) wouldn't allow me to. The expert persuasive kid I was back then convinced her to let me go outside. Before I could even reach the street I fell head first on to the corner of the sidewalk leaving a huge mark and completely ruining the pictures. Although that might make some people laugh, this is a story about laughter not me being a spaz. Now that you know that I love making people laugh, I'm ""special"", and that I'm a complete spaz I can get on with the story. Well I was in kindergarten and I loved school because I got to hang out with my friends and play with blocks, that might sound stupid but I was in kindergarten. The only thing I didn't like about kindergarten was bully's. Surprisingly I have never had a bully except kindergarten, but this was a bad bully. He would give me wedgies at story time and the whole deal (which was the best time to do so because the teacher could couldn't see). I still know the bully too, but he's no bully anymore, he's a goody two shoes now which I think is odd. Anyways, kindergarten was a very good year for me except one day (and every day I got a wedgies). That day is what this whole story is about, it's why I told you I love making people laugh, why I told you I'm ""special"", and a spaz, everything in the story circles around this one day, *dramatic pause* in kindergarten. It started out like any other day in kindergarten. I woke up, did my daily routine, hopped in the car, and headed to school. When I got to school I grabbed my daily binder and patted the education sign like a mall cop would pat the observe and report sign. I did all my work and colored (which was basically all my work). It came around break so we ran around the play ground and got are little snack. When we finished getting the last few drops out of our juice boxes we headed over to story time. We were all in the little circle (which was more like a deformed oval) listening to the story, right when I would get into the story and lose my guard I would receive an excruciatingly painful (for a five year old) wedgie. The story was almost finished and our five year old attention spans were wearing thin and we were getting all excited. The story finally finished and we were standing up, and this is where my memory starts to fade. I cracked a really funny joke and the whole kindergarten class erupted into laughter, me being a ""special"" spaz that can't tell if people are laughing at me or with me burst into tears. I remember balling my eyes out at the drinking fountain trying to hide my tears. One of the teachers tried to help me by telling me that they were laughing at my joke. It took me a couple minutes to stop crying but a little longer to realize the were not laughing at me. To this day I still get reminded by classmates about that day, of course I can laugh about it now but that was in kindergarten, I'm in ninth grade now and for people to remember that is kind of crazy to me. It was a negative experience then, but it turned into a blessing in disguise. It made me grow into a better person, I can tell the difference of laughter and also be okay when people do laugh at me (doing dumb things to make people laugh at me is actually my forte). So remember, being ""special"" could sometimes be the best thing about you, what makes you who you are, what makes you great, what makes you grow, what makes people laugh." 15 20 40 40 3 3 3 3 3 3 4 4 5 4 4 4 4 4 4 4 4 4 +20719 8 " ""LAUGHTER"" @CAPS1 I hang out with my friends, the one thing we do best is laugh sometimes for no reason. The thing we tend to laugh about is running into trash cans, laundry or maybe even about what we ate for dinner the @TIME1 before. @CAPS1 I am usual stressed out the one thing I love is to hangout with my friends. they usual are good listeners. overall. Though they take your mind off things. So with my friends you can count on having a great time no matter what the occasion is. @CAPS1 I say trash can I really mean trash cans I remember this one time in the hall way at school my friend was hanging on to my back pack because she tends to loose me in the hall way a lot because I walk a lot faster then her, anyways the class bell had just rouge an all the student were heading to lunch we were. I was just getting ready to cross the hall way an she said don't do it, so I did an nobody stopped! so she kinda slide into a trash can that was hanging on the wall in the hall way, she @MONTH1 have knocked it off but I can't really say? I was still walking an the sound effects were so funny I laugh at it still. My friend an I have a inside joke? we went out to lunch together. @CAPS1 we saw a laundry mate an I minds went crazy, we made up a funny joke an said that we should make our self's aprons with lots color and rhinestones, so that way if we wanted to get all of our laundry done at the same time. We would take off our clothes there an put on our so called aprons. An do our laundry like it was nothing. @CAPS1 our laundry was done we said that we could pick out a new outfit because all of r close would be clean. yes we are weird but that is what makes us laugh more then anything is being silly an making up story just like that one. Now about the food its sort of like the laundry but I guess better? I remember @CAPS1 i came to school the next day i just started talking about what i had for dinner @TIME1 i think at that time my mom had asked us if we wanted chicken @PERSON1 an my sister as i screamed an said hell yeah? so dinner was ready an @CAPS1 we went to go site at the table we looked at it an it was not what we expected it to be? it was frozen out of a box an it looked like somebody had eaten the food than puked it back up? it was that great looking. All of these thing that have named or talked about is how my life is almost everyday @CAPS1 there not drama i love my friend I don't think I could have asked for a better one because all we do is laugh an have fun an fun in to trash can locker an whatever else there is but the one thing that matter the most with my one friend is that @CAPS1 we get in to a fight we can not stay mad at each other well I now that I can't. So at the end of the day I ask her are we done being made at each other? an than we just look at each other an laugh because that about all we can do because the reason was so stupid there was really no need for it.that is what a friend is to me having fun not worrying about what is around us. but just to have fun an be silly. not anybody else but are self's an sometime @CAPS1 we have are really goofy days? we make up the story about our laundry. talking about my life with my friends is nothing better than to laugh because deep down inside you an your friend will look back an say wow those where the best day was @CAPS1-would would get in trouble in class for talking way to much. " 12 20 30 30 3 3 3 3 2 2 4 4 4 4 4 4 3 3 3 3 3 3 +20721 8 "Well ima tell a story about the time i got @CAPS3 down town. When i was heading down town to go meet some body it was cold,dark and just creepy. So on my way there i thought i went to far so i got the bus and was like were am i? I was counfused and like what the heck. Then i ask some one were am i at, the man said your down town i said i know just never mind i walked away kind mad like ugh. So i just called thenm and see were she was at the phone rings then she pick up. Were are you i said, she said down tonw i was like oh my gosh i know but never mind she was like were you at then i said some were in down town. Then she said stupid @CAPS2 on the bus and come down more so i waited for like @NUM1 then the bus comes and i was glad. Then i called her sayin im on the bus on the way she said okay @CAPS1 @CAPS2 @CAPS3 she said i was laughing and said okay i wont. When i @CAPS2 there they laughed at me and i was just like thats not funny i coulda got snacked or raped or it coulda been even more bad. Well thats what you @CAPS2 they said i was like yea yea i know whatever lol. Later that night was like i wont some candy so they showed me ow to @CAPS2 to the store is at so i was like ima go and the last words i heard i heard was @CAPS1 @CAPS2 @CAPS3! i smiled. Well on my way to the store i was cold and listing to music then i @CAPS2 to the store and look around then my phone rings. Hello i said it was that girl she said i just wonted to make shure your not @CAPS3 i said i got this im not gonna @CAPS2 @CAPS3. @NUM2 mins laster im walking out and was looking around like were am i?? i was like oh no not this again i just started to walk the way i came from and didnt see the hose so i went the othere way and i was like gosh im @CAPS3 again? yeah i am. so i didnt wont her to know i was @CAPS3 so i didnt call her and tried to find my own way back but i couldnt so i just tried to think then @NUM3 mins went by she callled. Sooo... darrio she said i answer whats hannin she said you @CAPS3 huh? i laughed no why you say that i asked she was like im looking at you and your going the wrong way i looked back and started to laugh. She came up to me and said you was @CAPS3 i said no i was just getting some air she was like yeah okay darrio you was with a smile i was thinking lke next time ima ask her to come with me i smiled. When we got to her house they laughed again and i just said okay i got @CAPS3 and we all laughed for like @NUM4 mins then just chill. Then i was like its hot in here then i open the wendow they said its cold so i was like okay i closed the window back and went out side for a min. My phone rings i pick up the girl said @CAPS1 @CAPS2 @CAPS3 i was like shut up im not im on the front porch she said soo... your slow you might @CAPS2 @CAPS3 still i laughed and hung up and went in said and we all laughed. Then that hole night was about me getting losted and not know were i was going and yeah thats it." 11 15 26 3 2 3 3 2 2 3 3 3 3 3 3 +20722 8 "@CAPS3 I'm going to tell @CAPS18 a little story. I remember a time when @CAPS11 cousin @PERSON1 @CAPS3 I decided to make a snowman at @CAPS11 house in @LOCATION1, @LOCATION2. I say to him," I'm bored, @CAPS1 do @CAPS18 want to do?" @PERSON1 replies,"@CAPS2 go make a snowman." @CAPS3 I agree that that would be fun. @CAPS34 starts reaching for a jacket @CAPS3 gloves, but I stop him @CAPS3 say," @CAPS1 are @CAPS18 getting those for?" "@CAPS5's not cold @CAPS20." "@CAPS6," replies @PERSON1. "@CAPS33't say I didn't warn @CAPS18." We start our snowman by building the base (The biggest piece for the bottom). @CAPS3 after about @NUM1 minutes the base is almost done, but we notice that we're getting cold. "@CAPS7 we should go inside?" @PERSON1 says. "@CAPS8, I @CAPS7 mom will even make us some hot chocolate." @CAPS9 off we go back inside hoping for some delectably warm hot chocolate. I see @CAPS11 mom @CAPS3 ask, "@CAPS10 we have some hot chocolate please?" "@CAPS11 @CAPS18 look cold, Of course I'll make @CAPS18 some." @CAPS9 @PERSON1 @CAPS3 I sit downstairs waiting anxiously for our hot chocolate by the heater to get warm. "@CAPS5's ready!" @CAPS11 mom calls from upstairs. We fly down the hall @CAPS3 rush up the stairs. @CAPS3 to our amazement we find not only hot chocolate but a bag of chips as @CAPS28. "@CAPS14 mom!"I say. "@CAPS14 @CAPS16 @CAPS17!"says @PERSON1. "@CAPS18're welcome boys"says @CAPS11 mom. @PERSON1 @CAPS3 I sit down at the table @CAPS3 start drinking our hot chocolate, while @CAPS11 mom puts some chips on paper towels for us. I start eating the chips by the handfuls whereas @PERSON1 grabs one, just one. I ask him," @CAPS19 did @CAPS18 only grab one @PERSON1?" @CAPS20 of the corner of his eye @CAPS34 looks at me @CAPS3 slowly brings the chip to his mouth @CAPS3 takes a bite. As @CAPS34 did that I fell @CAPS20 of @CAPS11 chair in a fit of hysterical laughter. @CAPS11 mom hears the thump of me hitting the floor @CAPS3 runs upstairs to find me laughing. "@CAPS1's @CAPS9 funny?" she asks. I say to @PERSON1, "@CAPS22 her." @PERSON1 then complies @CAPS3 grabs another chip @CAPS3 while @CAPS34 looks at her from the corner of his eye, slowly brings @CAPS5 to his mouth @CAPS3 takes a bite. I start busting up laughing again, yet @CAPS11 mom doesn't see the humor. She simply asks," @CAPS23 is that @CAPS9 funny?" @PERSON1 replies," I have no idea but @CAPS34 just about died from laughter. I start to stop laughing @CAPS3 I'm able to stand up again. I then tell @CAPS11 mom," @CAPS5's the way @CAPS34 looks at @CAPS18, @CAPS5 just makes @CAPS18 laugh." I then @CAPS35 to do the same thing, but with no effect to @PERSON1. "@CAPS19 isn't @CAPS5 working?" I ask. "@CAPS26 I'm awesome like that @CAPS3 @CAPS18're @NUM2 says. "@CAPS6, @CAPS28 I'm gonna keep at @CAPS5 until I get @CAPS5 right." @CAPS9 I @CAPS35 to mimic everything I saw him do, but to no avail. All I made happen was I spilled @CAPS11 hot chocolate all over myself, which made him laugh, albeit not the way I wanted to. "@CAPS18 want me to @CAPS22 @CAPS18?" @PERSON1 says. "@CAPS31!!!! Please!" I beg. "@CAPS6, @CAPS33't say I didn't warn @CAPS18." @CAPS34 proceeds then to grab another chip @CAPS3 while looking at me from the corner of his eye, bites the chip. I start laughing uncontrollably then @CAPS3 without pause. After about @NUM1 minutes I stop laughing. "I'll get that right!" I say. @PERSON1 says,"@CAPS35 @CAPS5." I grab a chip @CAPS3 look straight at him @CAPS3 bite down, nothing. I @CAPS35 again, this time while looking at him from the corner of @CAPS11 eye, nothing yet again. I @CAPS7 to myself, "@CAPS36 I @CAPS33't get @CAPS5 this time I'm giving up." "@CAPS6, here goes." I grab a chip @CAPS3 slowly bring @CAPS5 to @CAPS11 mouth while squinting at him from the corner of @CAPS11 eye. I bite the chip. I notice @CAPS34's laughing. @CAPS34's laughing!!! "I told @CAPS18 I'd get @CAPS5!" " @CAPS31, @CAPS31 @CAPS18 did." @CAPS3 this is one of the many times laughter brought @CAPS11 cousin @PERSON1 @CAPS3 I together." 20 18 40 40 4 4 3 4 4 4 4 4 5 4 4 3 4 4 4 4 4 4 +20723 8 " My best friend, @PERSON1 and I have been close ever since we were @NUM1. We met through @CAPS1 @CAPS2 lessons at our local dance studio. We've stayed close throughout the years because we've always done similar activities. We're very different from each other though. I'm more out going, I like to speak my mind and I'm more carefree. @CAPS4's the opposite. @CAPS4's very conservative and @CAPS4 can take things too seriously. But either way, we manage to even each other out. Finals week had just gotten over, and @LOCATION1 and I had been planning a sleepover all week. We just needed time to relax and have some time to ourselves. When I had gotten home from school, I gave her a quick call. ""@CAPS3?"" @CAPS4 answered. ""@CAPS5, @CAPS12 time did @CAPS16 wanna hang out?"" I asked. ""I was thinking @NUM2?"" ""@CAPS6 good!"" I quickly hung up the phone and gathered up my gear. I grabbed my toothbrush, pillow, pajamas, and my blanket. I put my shoes on and headed back out the door. My dad dropped me off with all of me gear. I had brought my pajamas, my pillow, and an extra blanket. I walked up her sidewalk to her door, knocked, and waited. Only seconds later did @CAPS4 answer it with a big smile across her face. @CAPS4 lead me down to her basement where @CAPS4 had all the junk food set out ready for us to attack. @CAPS4 had gone to the store earlier that day and had bought everything. @CAPS4 had set it all up on her old pool table that nobody used. There were chips, cookies, sodas, candy, chocolate, and pizza. I set my stuff down on the chair in the corner of the room and we feasted. Of course, we could eat all the food. We simply weren't big enough. After eating for almost an hour straight, we laid on her basement floor trying to gain composure. We started laughing at silly little things that came up on commercials on her big screen @CAPS7. Eventually, we got to talking about how each of our finals went. ""I did soo good on all of mine! I'm gonna get ALL A's"" @PERSON1 bragged. @CAPS4 has gotten straight A's every year since middle school. ""I think I did pretty @CAPS8 too, not so sure about a @NUM3 though."" I said as I was laying upside down on the floor. ""@CAPS8, we'll just see tomorrow!"" We finally decided to move ourselves over to the couch on the opposite side of the pool table, so we could face the @CAPS7. It was already @NUM4 in the @TIME1 and we were still on a sugar high. We switched back and forth from watching some old scary movie, and the top @NUM5 music videos of the week. That had passed some time and before we knew it, it was @NUM2 in the @TIME1. @PERSON1 and I were laying on opposite ends of each other. Occasionally, one of us would get some chips or candy from the table. We grew tired to the point where we couldn't keep our eyes open. No one even had enough energy to turn off the overhead light. We fell asleep fast. When I woke-up the next @TIME1, @PERSON1 wasn't laying across from me anymore. @CAPS4 was sitting in the corner chair where I had set my stuff. I looked at the clock, and it was already @NUM4:30 in the afternoon. I looked back and @LOCATION1, @CAPS4 seemed somewhat upset. I shifted around under my blanket so I could face her. ""@CAPS5..."" I grunted, while I was stretching. ""@TIME1."" @CAPS4 said abruptly. @CAPS4 was holding a folded piece of paper in her hand. ""@CAPS12's up?"" I asked, sitting up on the couch. @CAPS4 crumpled up the piece of paper and threw it at me. I picked it up from my lap and unfolded it. It was her report card. I scanned down the paper looking at all of her grades. @CAPS4 had received all A's... and one @CAPS13. @CAPS4 had gotten a @CAPS13 in her @CAPS15 class. I looked up from the paper to see her hands covering her face. I walked over to her kinda amused by how upset @CAPS4 was. ""@CAPS16 got a @CAPS13... and @CAPS16're crying?"" I asked. @CAPS4 looked up at me quickly. I looked at her with a stupid face, and @CAPS4 busted out laughing. @CAPS4 felt so stupid for crying over @NUM8 @CAPS13. I stared laughing too. I knew my grades we be far worse. Heck, I'd be glad to get @CAPS13's. @PERSON1 and I are the perfect best friends. We even each other out. I tell her to lighten up, and @CAPS4 tells me to focus more. @CAPS16 can't take little things like that too seriously, it's just not worth the stress. Sometimes @CAPS16 just gotta relax, and maintain your focus. @CAPS16 have to find your perfect balance of work, and play." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20724 8 " Laughter is a really good thing to have in any relationship you are in whether its a friend ship, a love relation ship, or work relation ship. Either way you need laughter so you don't get so up tight that you are no fun to be around. Every now and then some body around you in your life needs some laughter to cheer them up. people should laugh every day because it makes you feel happy even when you are in a really bad mood.When you are being suicidal all you really want is some one to talk to you and make you smile, laugh, and giggle. It really feels good when you laugh with a friend or a significant other. You like to see people smile and laugh. Your friends and family also like to see you laugh here and there once in awhile. So every now and then laugh for once and be happy even if it is for a few seconds in your life. Laughter is a major thing to have in your life. Its nice to laugh and giggle even when life gets you down and is crappy. Anyone and everyone needs to laugh so they don't become so grouchy and unbearable to be around. So please for ever ones sake around you and in your life please laugh. Come on, you know you want to laugh. Ha ha ha. I hope that at least made you smile a little bit. In any relationship you have or are in laughter is a major thing you need in a relationship. Always try to laugh here and there and you will do just fine in life no matter how screwed up life is at that moment when you laugh." 15 19 34 3 3 3 3 3 3 4 3 4 4 4 4 +20725 8 " I believe that with all people laughter, and having a sense of humor, is something that generally everyone has in common, everyone loves to share with others. Among young teenage girls, laughter is a commodity that is infectious but always wonderful. It's the purest kind of joy we have, it's somethings that brings humans together. It's the beginning and end of friendship and unity. Laughter can ring out and lift the spirits of those that really need it. A simple laugh can make the worst day a little alright. We all know that feeling of dread, and sadness . The kindness, generosity, and good of laughter is one of the few things that are right nowadays. Even in poverty, depression, and oppression the simple joy of laughter can wash away a person's worries for a split second and fill us with utter warmth. @PERSON1 and I have been the best of friends since we were ten-years-old, and laughter has always been our strongest element. @PERSON1 and I have a knack for making each other burst out in laughter when all we want to do is be angry or just cry. We've decided that apart, we're just a little funny, but with our powers combined we could make anyone laugh. We use that power on each other when we're having bad days, or we simply need some cheering up. I think if it wasn't for laughter we wouldn't even be friends anymore. It really is what brings us together as best friends. We'd be different people. Even if I drifted from her we'd always be cracking jokes, making each others guts hurt, and tearing up from laughing so hard. My first impression of @PERSON1 was of her stomping down to our neighborhood park to yell at her sister, whom I had been playing with at the time. It would be a very self-explanatory reason of why I didn't like her at first. Luckily, after going to @PERSON1's house with her sister, @PERSON1 and I found that we had many things in common, and we were only four months apart. That childish kind of cajoling held our friendship together, for it was a bit rocky at the beginning. Always fighting, and arguing about things that now, we look back on and laugh at our adolescent stupidity. Either one of us would be popping off with dumb little comments at each other when neither of us wanted to apologize. One time she proceeded to tell me that I couldn't hear her because I had a big bug in my ear. Now we can remind each other of things like that and have a good ole time laughing about it. We were mere @NUM1-year-old's then. Now, almost @NUM2, we rarely fight, but we always laugh and make the best of what we've got with our poking fun. Laughter was definitely the band-aid in the beginning of our rickety friendship. @PERSON1 has a gift to make anything funny at any time. She says the wrong (but hilarious) things, but always at the right time. Laughter is now a necessity between us, it's what keeps our friendship so strong. I think of what the human race would be like if laughter was not a factor in everyday life. Everyone knows that it wasn't a good day if you haven't laughed or let alone smiled. People would be dull, and just unhappy. Laughter heals people from sickness, it gives us the feeling that maybe everything is going to be okay after all. I truly believe that it's healthy for you. With a flip of a switch, laughing can bring within us an ecstatic, and serendipitous feeling. People take it for granted and use it for wrong when it's meant to spread the word of happiness. We're lucky to have a gift of such natural joy. Can anyone even explain, in detail, the feeling laughter truly brings us? I think not. It's like describing the scent of something. You just can't do it. The words aren't there. I think of those poor and miserable people that have forgotten what it feels like to laugh, and it's very sad. I strive to laugh every single day, and make at least one other person laugh. What is a life without a diamond in the rough like laughter? It's no life at all, for laughter will always be your shelter on the pursuit of happiness." 21 20 41 4 5 4 5 4 4 4 4 4 4 4 4 +20726 8 " Laughter, one of life's greatest gifts. Have you ever laughed so hard that you cried? What about laughed so hard you can't breath, or noise no longer escapes from your lips? I am the type of person that can @CAPS6 at something so stupid that when I get done laughing, I don't even know why I started laughing in the first place. I can @CAPS6 so hard that nothing comes out at all! @CAPS1's amazing what laughter can do to a persons heart. The way @CAPS1 makes you feel, the way @CAPS1 makes you act. @CAPS1's so contagious, and @CAPS1 happens all around us everyday. You are never too old for laughter, @CAPS1 happens to the best of us. young or old, @CAPS1 doesn't matter. Laughter has no age limit. One time @CAPS2 @CAPS3 @CAPS4 and I stayed up until three in the @TIME1. We were so delirious, and kooky, we acted like crazy people. Now we have the type of relationship where we can @CAPS6 at almost anything. Literally almost anything... As we were staying up, we drank lots of soda and had sugary foods to fuel us for the night. We made up songs, we danced around @CAPS2 house, and @CAPS1 felt like we laughed for hours! I laughed until tears were flowing out of @CAPS2 eyes, and i couldn't get a breath out of @CAPS2 heaving lungs. When @CAPS1 gets to the silent laughing, @CAPS1's even more funny because that person can't control @CAPS1, and they look so hilarious because there rocking back and forth, with this silly expression upon their face, not making any noise at all. Have you ever just laughed for what feels like a lifetime? How did you feel after that ""lifetime"" of laughter? @CAPS1 almost feels as something as powerful as the sun just warms over your heart and soul. When I @CAPS6 I feel all the happiness and emotion just flow all throughout @CAPS2 entire body. @CAPS1's one of the greatest feelings in the world, I really can't think of a greater feeling than the warmth that laughter brings. @CAPS1's so great when you and a @CAPS3, or group of friends can sit back and enjoy the laughter you share. Even when your feeling down, maybe need some cheering up. You can always depend on a @CAPS6 to pull you through. No matter what mood I'm in, @CAPS5 I hear someone laughing, @CAPS1 is so hard to not join in. Laughing is so contagious! @CAPS1 effects us in our everyday life's. I bet you that, you cannot go one day without hearing someone @CAPS6, or you not laughing yourself. I probably @CAPS6 about five hundred times a day, @CAPS5 not more. I love hearing people @CAPS6, @CAPS1 brightens @CAPS2 mood and also @CAPS2 day. I would most definitely say laughter is very important and beneficial for a relationship. I mean imagine the world without laughter. Boring, right? @CAPS2 advice, @CAPS6 like you heard the funniest thing in the world. @CAPS6 like there is no tomorrow. Who cares @CAPS5 people thinks its dumb. You'll feel much better after you have that tear-induced, hard to breath, silent but oh-so therapeutic @CAPS6. Laughter really is the shortest distance between people!" 20 20 40 4 4 4 4 4 4 4 4 5 4 4 4 +20727 8 " Laugher Laughter is to express delight, fun, or a object of a joke. Laughter is something we all do, its a large benefit in our life and it happend on a everyday scedual. Without laughter we couldn't express our happy, out going side, we would have no particullar feeling in life except for frowning, which is a proven fact to cose more wrinkles beacuse of how many more muscles it uses. For me laughter is a all day thing, @CAPS1 show, my friends, family and, horses are my number one reason for my frown to be tured up side down. You @MONTH1 think horses cant smile, or talk but @CAPS2 do have their own ways of showing a personality that will make you laugh. Shere @CAPS2 are all smart, but @CAPS2 can be clutsy or goofy at times. Mostly @CAPS2 all just make you laugh and giggle like your own little brothers or sisters. There is this one time that I will always have locked away in the back of my mind. It took place on a @DATE1 mid-day at the beach on the @ORGANIZATION1. I was with my friend and we both had our two horses saddled, ready to go. Both us and our horses felt the energy rush when we saw the waves pouning at the shore with the salty smell in our noses. Once we hit the sand we were running side by side with the wind wistling past our ears like a moving train. The horses heads were equaly pointed towards the ocean. When we got to the water, the horses pranced and danced arounds like yearlings again, @CAPS2 would walk tell into the water tell it was drenching us both then soon as the next wave would come rushing up, we'ed swerve around and try to beat the wave to the shore. After about five hours of adventuring caves, sand dunes and starfish we were all worn out, then decided to call it a day. It was around dinner time, so we eat dinner while watching the sun go down to finsih the perfuct day at the beach. We put the horses back in the trailer, and before I shut the trailer door I gave my horse a good pat on his neck, as I was about to walk out my horse tured his head, then gave my a nudge like he was saying ""thanks for the good time"". Driving home I knew this was a perfuct day because of the laughter, and of all the times I just laughed for the injoyment, also my face did hurt a little from smiling so much." 16 15 31 3 4 4 3 3 3 3 3 4 3 3 3 +20728 8 " Starting a story out with two @NUM1 @DATE1 old boys named @ORGANIZATION1 can already be considered a comedy. Those are the names of my identical twin cousins @ORGANIZATION1 I can honestly admit that they are @NUM2 of the funniest kids I know. My uncle isn't exactly the most intelligent human on earth, @ORGANIZATION1 by the way he named his children it's apparent that his sense of humor is a little bit off, but he's a really hard working man. Occasionally my mom does him favors by taking the twins off his hands for a little while because they can be a handful. Weekends are specifically better to have them over because of my hateful step siblings whom hate me, my brother, my sister, @ORGANIZATION1 even my mom. The amount of tension in the house isn't a healthy amount, so a couple of @NUM1 @DATE1 old running around livens it up a little @ORGANIZATION1 makes us all laugh together as a family. It must have been @DATE1 in @DATE2 when @CAPS7 was home @ORGANIZATION1 we were building onto our house when the twins came over. My mom was getting quite furious at their insanely high energy levels, she appeared to be on the verge of ripping out all her hair. My step dad @PERSON1 needed to go to @PERSON2's for nails @ORGANIZATION1 child locks @ORGANIZATION1 I decided to tag along with him. I thought it would have been a great idea to take the twins with us, just to relieve my mom of the loud mouths for a few minutes. We loaded up the car @ORGANIZATION1 I drove down the highway, amused with the twins in the back seat playing with the ponies @ORGANIZATION1 laughing at the people stopped at red lights. We all sang songs like twinkle twinkle little star, @ORGANIZATION1 the @ORGANIZATION2's until we arrived in the @PERSON2's parking lot. @ORGANIZATION1 finds it pretty hilarious to run down the isles @ORGANIZATION1 hide behind items on the lower shelves, while @ORGANIZATION1 enjoys pretending he's @ORGANIZATION1 @ORGANIZATION1 getting @CAPS7 confused. Eventually the twins were being too obnoxious, resulting in @LOCATION1 @ORGANIZATION1 me catching them @ORGANIZATION1 holding them as captives in the seat-belts of the @PERSON2's cart. It was helpful but didn't do as much justice as we had hoped. We continued along on our adventure in search of the child locks, @ORGANIZATION1 found them down isle @NUM4. There was a large man standing in front of our destination @ORGANIZATION1 when i say large I don't mean muscular, or tall... I mean he probably has a few too many @CAPS1 shows he watches daily, @ORGANIZATION1 maybe a few too many favorite snacks. His hair was long @ORGANIZATION1 sandy blond, he wore a dark purple @CAPS2 die shirt @ORGANIZATION1 slip on sandals. @ORGANIZATION1 apparently hadn't realized how inappropriate it is to talk about a person in a rude fashion, especially when they can hear you. He said, ""@CAPS3 cow @ORGANIZATION1 look at that lady! She's so huge!"" @ORGANIZATION1 laughed outrageously @ORGANIZATION1 agreed. ""@CAPS4! She's as big as our whole car!"" I panicked a bit @ORGANIZATION1 tried to get them to be quiet, however the twins paid @CAPS5 attention to me, they were much more excited to see the man on the tall ladder next to me giggling @ORGANIZATION1 laughing along with them. They were quiet for a moment then @ORGANIZATION1 gasped @ORGANIZATION1 exclaimed, "" @CAPS5 she's as big as a fire truck!"" The man turned around @ORGANIZATION1 glared at me; i apologized at least @NUM5 times @ORGANIZATION1 started to take the boys out of the isle when the man on the ladder hit a button to make the ladder move. I was walking behind the larger man when the ladder made a ridiculously loud beeping sound, like that of a construction vehicle. The boys screamed in fear @ORGANIZATION1 shouted frantically, ""@CAPS6 run as fast as you can hurry! She's backing up @ORGANIZATION1 she's going to squish you on the floor!"" @CAPS7 laughed, even the man they were making fun of, but i was so embarrassed that i just took them to the car @ORGANIZATION1 waited for @PERSON1. I tried to explain to the boys in the car that only big trucks beep when they are backing up, but unsurprisingly, they didn't listen to a word i said. @PERSON1 only took approximately @NUM6 more minutes before he came jogging out the door with the nails, the child locks, @ORGANIZATION1 a gigantic smile plastered on his face. I thought about what had happened in the store @ORGANIZATION1 i chuckled quietly until @PERSON1 hopped into the truck, then i started laughing profusely. When I returned home I told my mom what had happened, she laughed for a while @ORGANIZATION1 i laughed even harder @ORGANIZATION1 quite a bit longer than i had before. I went to sleep with a fairly massive headache that night, but i think it was worth laughing all day for." 23 16 44 44 5 5 5 5 5 4 4 3 3 3 3 3 5 5 5 5 4 4 +20732 8 "When i meet new people its like alright cause everyone needs friends like people say friends come and go true friends wouldnt go. I remember i met this beautiful girl name @PERSON1 to me she was not just a friend i knew i wanted to have a life with her and be with her people say love cant come true but turn that upside down cause its the other way around love doesnt go love comes from up above. I remember when i first talk to her it was like god was there telling me that she is the one for me and i knew i can save her from getting hurt from love. when i first looked into her eyes it was like i felt the way her heart was feeling it was falling apart so i told her your heart wouldnt be broken in half cause ill replace it with mine i told her your the one that i want the one that i need the one that i gotta have to succed i wanna know you like no one else can know you your name is forever like a tattoo in my heart your the apple to my tree that will never be cut down i wanna stand with you on a mountain and show you that im different than other guys im faithfull like no one else can be. Your amazing just the way you are i woundnt change nothing about you cause i love everything about you i love your eyes i love your smile i love your personality so i told her take a chance on me i know you been threw so much but dont let that come between so she said yes she was so happy it was like her dream came true for her a guy that can show her that there not like the others a guy thats always faithfull and honest and truly and that will never lie or cheat. So i told her shes my superhuman she was so happy that i came into her life she said i changed her whole life and she changed mine too. my heart belongs to you no one else cause if your not the one that has my heart than my heart will just be a toy and brake it. i told her she will never be so cold i will always warm up her day and night with my arms and my body temperture i told her all my wishes came true your the one for me im finally not lonely now i got you so i told her its like shes finally my wifey. I told her every girl i dated played with my heart they were not being true to me i was not living my life the way i wanted it to be so one day i told myself is that girl even in this planet the one thats always honest, faithfull, truly, trust and that will never lie or cheat so i told myself ill keep looking for that special girl and now i can say i found her cause that girl name is @PERSON1. i told her she will never be sad no more or have a million tears running down her precious little face. i told her i will always be one phone call away not two but one. she was so happy when i said that she is my paradise my whole wide world she finally made my dreams come true i just want it to be me and you no one else trust me ill trust you our love will never die it will never fall our love will always be alive our love will stand high tell it hits sky high tell the sun doesnt shine anymore. I'm crazy for her shes crazy for me she has the key to my heart and only she can open it i finally know what love feels like. she made all my bad days into good days i will never brake her heart she wouldnt brake mine either i told her the sun doesnt shine forever but when it doesnt shine just look at the stars cus they are still shining and our star is the biggfest one in the sky. To me you will never be gone you will always be in my heart my love is strong for you sitting by the phone waiting for you to call me and you always do. To me your not just a friend your more than a friend your my angel, my girl, my shawty, my wifey, my everything till the world ends i realize my love for you is strong this is how it is ment to be. You're more than a friend to me your all i need and im glad i found you true story for ever" 15 16 31 3 3 3 3 3 3 4 3 4 3 3 3 +20733 8 " People always say laughter is a big part in a relationship. Is it true? In my opinion I am not so sure, but my grandmother says laughter is always a huge part in a relationship. Makes a you feel good when you make your best friend, parents, boyfriend or girlfriend laugh. It is the best feeling ever because you know how to put a smile on that person. Have you ever been walking around a store and you spot two couples laughing , having fun? I have and sometimes i feel like being in that same place. My grandmother always tells me her stories about her and my grandpa when they were young. She always says ""laughter plays a big part in our relationship"". She was @NUM1 and @CAPS1 was @NUM2 the first time they met. Everyone always said they were never going to last, but the only way they could find out is to wait and believe. She felt like singing everytime she heard his name. She said she would walk into their shadows with him. She felt like all her problems would go away, everytime she had the chance to hang out with him. Everytime she could think about him she would smile and laugh. Thats how happy she felt about him. Can we call it love? I say it was, sometimes I wish I was in love like my grandmother is. She seems so happy everytime she talks about him, but i still dont know if laughter is @CAPS2 kept them together for so long. I see a really huge smile on my grandmother everytime she says, ""@CAPS1 didn't have the brightest head in the world, but @CAPS1 always knew how put a smile on my face"". Because she says that @CAPS1 wasn't so smart but @CAPS1 knew how to make jokes, and make her laugh. A question she asked me once ""@CAPS2 do you think of two couples when you see them laughing, having a good time"". The first thing that pops to your head is that they know how to have fun and doesnt let anything get in their ways of laughing and having a goodtimes. My grandmother says that the thing that kept her and my grandpa together was laughter, because if you dont know howe to make the other person laugh you dont know if you could have a good time with that person. When my grandparents are mad at each other it never last to long because my gandpa always knows how to make her laugh. Maybe if they didn't know how to make each other laugh than maybe they wouldnt be together still. I understand now my grandmother felt in love with my grandpa, because of how @CAPS1 made her laugh. In a relationship you always have to know how to put a smile on the other person, because if you dont know than pretty sure things will not work out. My grandmother was right, laughter does play a big part in their relationship.They alwasy know how to make everything better by making jokes or by doing something funny. I can never be mad at my grandparents because they know so many tricks to make my self laugh. That's @CAPS2 makes our family relationship stick together, and other familys also.I finally get it laughter is a big part in a relationship." 18 18 36 3 4 4 3 3 4 4 4 4 4 4 3 +20734 8 " ""Laughter is the best medicine."" The phrase almost everyone has heard before. But it'@CAPS20 true! I've had days when all I could think about was how @CAPS23 life sucked, or at least seemed to. The days when you feel like everything is going wrong, and nothing could make it worse... And that'@CAPS20 when one of @CAPS14 best friends will make me laugh. I'll laugh so hard I'm on the verge of @CAPS19 @CAPS14 pants and @CAPS14 eyes water. I'll laugh so hard no sound comes out, @CAPS14 sides cramp and I fall on the floor. They make me laugh so hard, sometimes I think that even if I was in a coma, they'd say something so funny that I'd sit straight up in the hospital bed and @CAPS21 laugh the huge belly laugh that sometimes escapes me. There was this particular time when @DATE1, @CAPS1 and I were feeling more giggly than usual. It tends to happen a lot when we're together, but this time was way different than the others. We staggered to @CAPS1'@CAPS20 house flushed and giddy at how funny everything was. You know how it is when you and your best friends @CAPS9 @CAPS21 @CAPS13 so tickled by each other? Those times when you glance at your friend and @CAPS21 as you've begun to calm down, you see her pinched expression from trying not to laugh, and you lose it all over again. If you've ever had the pleasure of experiencing these silly moments, try imagining that feeling for hours at a time. I'm pretty sure I developed a whole new set of abdominal muscles that day, if that gives you any idea how hard we were laughing. Anyway, we stumbled into her house, trying to get serious, since we did have to do at least some of our homework. Of course we were starving after all that laughing, so @CAPS1 told @ORGANIZATION1 and me that we could get some cereal. @CAPS21 regular milk and cereal, right? There'@CAPS20 nothing @CAPS22 special about @CAPS4'n @CAPS5 (besides that it'@CAPS20 freaking delicious). But on that day, everything was out of the ordinary, especially the milk. It was the most amazing milk I'd ever tasted, and I @CAPS6, @CAPS6, @CAPS6, milk, so that had to mean something. ""@CAPS7 this milk is so good! @CAPS13 @CAPS14 @CAPS8!"" @ORGANIZATION1 exclaimed. I swear she was about to choke on her own spoon, she was eating so fast. ""@CAPS9 you kidding me with this? What kind of milk do you buy?!"" I blurted out. For some reason that milk was really extraordinary, and it was seriously blowing @CAPS14 mind. ""@CAPS10, I don'@CAPS17 know. Two percent?""@CAPS1 looked at us incredulously, a curious eyebrow raised at our inquiries. Her expression made us all fall apart in peals of laughter. Now whenever one of us brings it up, we still laugh like it @CAPS21 happened. @TIME1, it happened. @CAPS1 peed her pants, and not @CAPS21 a little. It wasn'@CAPS17 @CAPS21 the idle threat rushed out, the ""@CAPS12'mgoingtopee!"" squeal. @CAPS13 no. She actually peed herself, and I still @CAPS16'@CAPS17 even remember what I said to make her laugh that hard. All I know is suddenly (scaring me half way to death), she yelled out, ""@CAPS13 @CAPS14 @CAPS8 I @CAPS16'@CAPS17 @CAPS18 @CAPS19! THERE'@CAPS20 @CAPS21 @CAPS22 @CAPS23 @CAPS24!!"" I whipped around and saw @CAPS1, red-faced and open-mouthed, supporting herself against the counter. She looked like the freaking @CAPS26 @CAPS27 of @LOCATION1 all bent over like she was. Her eyes were closed tight, crinkling at the corners, a few stray tears escaping as she tried to hold in shrieks of (apparently) crippling laughter. It took me a second to realize what was going on, and then I was totally straight out laughing at her; pointing and laughing @CAPS14 shoulder-shake laugh, and it only made her laugh harder. Still laughing, she did a penguin-type run down the hall to the bathroom, where @DATE1 was. @CAPS1, in her wet jeans and with a red, tear streaked face, burst through the bathroom door, looking slightly bewildered and amused with what @CAPS21 happened. So naturally, @ORGANIZATION1 laughed at the sight of her, in her comically delirious state. Who wouldn'@CAPS17 have? The fact that we @CAPS16 always laugh at each other and ourselves is why I love @CAPS14 friends . It'@CAPS20 great when you have people that you @CAPS16 laugh about everything and nothing with. @CAPS1 is practically a walking ego boost because she laughs at every joke, and @ORGANIZATION1'@CAPS20 pretty clever when it comes to thinking of them. Personally, I love laughing, especially with (and mostly at) @CAPS14 best friends. " 23 20 43 4 4 5 5 5 5 4 4 4 4 4 4 +20735 8 one time when i was skateboarding with my friend i got relay mad and i wanted to stop skating. His mom tried to convince me to keep skateboarding.Laughed and seed i will never be good enough to skate and she seed that i have improved than some of the people that she knows.That made me feel better than before and then i started skate boarding every day from then. When i think about that day i still laugh.skating can be fun in many ways.People can skate for fun and for compaction.There are different ways of skating people have there ways of skating.There are many different kinds of skateboards the people who skate them ride them different. Some of the people that ride skateboards i laugh at because the way they skate. 10 10 20 2 2 2 2 2 2 2 2 3 3 2 2 +20736 8 " ""Laughter"" A good relationship is built on trust, right? That's what I've heard my whole life, but as I've grow and really started thinking for myself I came up with my own kind of survival guide, if you will, to good relationships for anyone. Sure trust is important but @CAPS2 isn't the only key factor, I've learned laughter is just as important to not only starting a relationship but keeping @CAPS2 full of life. One person in my life helped me really understand that and be able to have that relationship with them. My mom and I have such a great bond and way of understanding with each other, other girls I know don't always have that with their mothers, I am very fortunate. Sure we have hard times just like any family, but we are able tolaugh @CAPS2 off with time and start new. @CAPS5 helped me realize, ""Laughter is the shortest distance between two people."" @CAPS1 a great bond with my mom is so important to me, we have not always ran so smoothly though. From about age ten to thirteen I was a bit troubled in the sense of not wanting to show my emotions, I just wanted to stay quite.Then seeing my mom as someone who was strong and beautiful, I have to admit I was a bit worried @CAPS5 would think I was a disappointment. I guess I was afraid to show who I really was to her. Whenever @CAPS5 would joke around with me I would take @CAPS2 all to seriously and whenever we would fight about small things I thought @CAPS5 would hate me forever. I know now I was silly to think that, but I'm actually glad we went through that. I think that's part of what made us stronger, like how there would be no rainbow without the rain or how there would be no happy ending if all was well throughout your whole life. Little did I know the light at the end of the tunnel was just around the corner. One night after dinner my mom had informed me that @CAPS2 was my night to do dishes, unlike usual I completely forgot and went to my room to listen to music and eventually fall asleep. My mother came in my room upset and frustrated. @CAPS5 said, ""@PERSON1, why did you ignore me? The dishes need to be done now."" I jumped out of bed without a word and began walking to the kitchen. @CAPS5 followed me into the small bright room, ""@PERSON1? Are you alright, @CAPS2's okay that you forgot. I'm not mad."" @CAPS5 exclaimed. Again not a word escaped my lips. I was afraid to say anything, the only sound that came from me was a sigh of relief when I turned back around and noted her absence. When I was finished with the dishes @CAPS5 pulled me into my room. I tried reading her face, @CAPS5 looked worried. @CAPS5 explained to me the relationship between her and her mom that @CAPS5 so desperately wanted to have with me. @CAPS5 told me about how they would @CAPS3 together over silly things and how they promised each other that when they got into fights they would stop themselves, take a deep breath, then @CAPS3. ""@CAPS3? What? Why would you guys do that?"" I questioned. @CAPS5 replied, "" @CAPS4 laughter is the best cure for any sad feeling or bad day, as grandma would always say."" @CAPS5 helped me experience that by tickling me and joking around. For the fist time in my life I wasn't nervous and I spoke my mind. As we sat there and chucked ourselves to sleep I knew things would be different from here on out, and they were. We now have made that promise to one other and we are able to have wonderful smiling memories together now. Now at fifteen years old I can honestly say without question my mom will always be my best and truest friend. Our bond, our way of getting over tough times, and the way we can @CAPS3 off all stressful things in life makes me feel as if I can get through anything. I've truly realized the meaning of the saying, ""Laughter is the shortest distance between two people."" " 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +20737 8 " Laughter. A story about laughter is what you want to hear? Well my life is filled with laughter and smiling. Crazy I know! If it wasn't for laughing I would not have the six pack that I have today. Have you ever stopped to think about when one person can make another person laugh they usually become really close friends maybe even best friends? My boyfriend is my best friend. This one time my boyfriend and I were laughing so hard. My boyfriend is my life. I spend pretty much everyday with him, he is so amazing. Me and him well we do everything together. He is very close to me. He is the best best friend anyone could ask for! I've only known him for about a year, a lot can happen in one year. You can meet new people, build relationships, and even move away from those relationships you just made. Me and @PERSON1 we are always laughing, at each other and at other things as well. We always have fun times with each other. It was a late @DATE1 @TIME1 and he was walking me home like he always did before. There is this field with extremely tall grass and we were walking right next to it. All of a sudden out of no where he acts like he is getting pulled into the grass. So guess what I did, I screamed as loud as I could possibly scream! Then he starts calling my name in a creepy voice telling me to come over to the grass. Out of curiosity of what just happened I start walking over towards the tall grass. When I arrived to the spot where he entered the grass he tells me ""@CAPS1 I lost my shoe and I can't seem to find it anywhere!"" @PERSON1 and I start looking everywhere for his shoe. We couldn't see anything because it was really dark, so we used our hands to search around for his shoe, ""I found it!"" I said. After we found the shoe we realized two hours went by. We were so tired we laid down in the grass to take and break and we both started cracking up with laughter because of how ridiculous it was that we spent two hours on something that was suppose to be a little joke! it was so awesome. When we finally got to our feet our bellies hurt so bad and were very sore. I have never laughed harder than that in my life. Every time I'm with @PERSON1 is the best time ever. We always seem to find a way to make each other laugh. Without best friends or even just friends you would probably find it hard to laugh. With friends you always have someone to laugh at and also laugh with. This is why i cherish my best friend @PERSON1 and all the happy and laughing times we have together, because you'll never know when the last time you'll see that person will be. I try to be as happy as I can and I try to always make people laugh because laughter is the best way of exercise." 20 20 40 4 4 5 4 4 4 4 4 4 4 4 4 +20739 8 " Laughter is a big part in my relationship. I feel so much more connected with a person if we laugh together. Laughing make's you feel great. You could be in a depression stage and either a friend or a family member could walk up to you and pacify you and make you laugh. If I had a relationship that had no laughter in it, I would leave that person as fast as I could. Some people think relationships are only about money and/or looks.People now and days don't last that long in a relationship. Back in the old days people would die together, and even in death they would have there graves right by each other. My boyfriends name is @PERSON1. We have been going out for four years now. He is a very funny, I love his jokes. Sometimes he doesn't even try to make a joke, but he does anyway. When we where first going out, I was throwing a birthday party and me, @PERSON1 and one of his friends went in the woods and hid from everyone else. When the others came to find us we jumped out and scared them. They where mad at us, but when night fall came we where all laughing about it together. My mom and dad don't really laugh together that much. They just go to @ORGANIZATION1 with each other and come home together. My dad loves to crack jokes now and then, but my mom is the kind of person who likes to laugh at the other people that gets hurt. My grandma is so funny. She try's to make people laugh and hurt them selves so she can get a kick out of it. All of my friends are funny. My best friend @LOCATION1 is the funniest girl I have ever known. She likes to dance funny and mock people that she doesn't like. When she works, she'll try to find something to make a joke out of, so she could bring it to me and almost make me pee my pants. @LOCATION1's relationship was very bad. She loves to laugh but her boyfriend hates making jokes. She tried to stick it out but things got worse and worse. The only thing he would do is sit on his bed or his couch and play video games, or watch wrestling. He would make @LOCATION1 clean his room and do the dishes. He has a one year old sister and he makes her watch her,clean her, and feed her while he was up in hie room playing video games. @LOCATION1 got so tired of it , so she packed her stuff and she left. She went to her sisters house. Now she has a funny boyfriend and they always laugh together. There can be a laughing relationship with animals as well as humans.Animals are the one thing that cant talk back or make fun of you. Animals are just like humans, but they cant talk and they have fur. My cat is the king of my house. His name is @CAPS1. He loves to follow me all over my house. I love to sit on the floor and watch him wrestle with all of the other cats.Every time I go into the kitchen he is always there with me, bagging for food. After he eats, he gets an erg of energy and runs all over the house. It makes me laugh. He will stop right in front of me and just stare at me, if I move then he will run away. Cats are cute but not all of them have the power to look into your soul like my cat. @CAPS1 has big eyes and his meow is so sweet and incessant. The funniest thing about him is how fat he is. He is a fat cat, but he is only one years old. So when I see him running all over the place it makes me laugh. My horse is the same way. His name is @CAPS2, and he is four years old. He is a crazy horse, but at the same time he is very funny. He try's to play with my other horses and get hurt because he bites them, so they kick him back. He has a blue eye, so I bought him for my purposes. Some people thinks horses are just a bill, but I think they are my family." 15 15 30 3 3 4 3 3 3 3 3 4 3 3 3 +20741 8 " Everyone enjoys laughter. Everywhere you look there is always laughter. Laughter comes from being happy, and being happy comes from having joy in your life. Many times in my life I have had joy. I tend to laugh many times throughout the day on account of I am happy. One topic that brings me laughter is my niece. @CAPS3 @CAPS1 is two years old. She is the most adorable little girl in the world. At least in my opinion she is. Since she is so young she does not have a care or worry in the world. She knows everything is going to be taken care of. In this case she is full of joy, and happiness, which causes her laughter. When I am with her all that takes place is laughter, and playing. These are the greatest moments. @CAPS3 has this cookie jar, and when ever you put the shapes into the right slots it sings a silly little song. This song makes her laugh, and dance uncontrollably. Which in return gets me laughing. It soon ends up being a huge laugh fest. These are the greatest moments. Recently we had another addition added to the family. @PERSON1, my nephew, and @CAPS2 brother. As @PERSON1 gets older, he keeps learning new things, and @CAPS3 loves it. She laughs harder then ever. She thinks it is the funniest thing when he starts laughing. These are the greatest moments. As we can see laughter is happy, and fun. Laughter starts with smiling, and smiling is also rooted from being happy. Many things make me laugh and smile. My niece and nephew is just one example. What makes you laugh and smile?" 15 20 35 3 3 3 3 3 3 4 4 4 4 4 4 +20742 8 " Why is it that laughter can bring people so close together? Is it because laughing shows trust for one another, or is it simply because you understand each other. There many different kinds of laughter, like cracking a joke, or someone does something very embarrassing. The story that I will be telling is about how such a bad day for hunting turned into the funniest moments ever. It all started in the @TIME1 when I woke up, and I had forgotten to put my wet clothes that were in the washer machine to the dryer. Now I had to dig through all my clothes up in my room and find camouflage clothes that weren't dirty, or were something that I could wear. By this time anybody would be in a bad mood, and trying rush to get out the door. When my buddy @PERSON1 showed up and was ready to go and I wasn't. I was rushing, and when you rush you are bound to forget something, and I had left my gun at the house. Five miles down the road I noticed that I had forgotten my gun, so we turned around and went back to go get it. Not only now we were late, we were speeding to the cabin for breakfast, @PERSON1 had the eggs so that we could make omelets. As we are racing down, we hit a bump in the road and everything, I mean everything hit the ceiling in the truck and then slammed to the floor. In doing this all the eggs broke in the egg carton, so now we had no eggs, and no eggs meant no breakfast. Its about thirty minutes till shooting hours, and we are late showing up to the blind so that @PERSON1 and I can meet up with our other friends, @PERSON3 and @PERSON2. Finally we get to the blind right before sunrise and while we are getting all set up, a group of twenty mallards drop in unexpected and took off before we could get a shot off. Now were all thinking great their goes our opportunity to redeem ourselves from a terrible @TIME1. Only to find out that those ducks were the only ducks we saw all day. At around twelve o'clock we gave up, and went back up to the cabin, but on the way up we got stuck in two inches of water in a truck. I remember thinking to myself, ""@CAPS1 this is not really happening to us right now"". So @PERSON3, @PERSON2, and I got out of the truck to push, and @PERSON1 stayed in the truck to drive. Their were many attempts to push the truck out, and finally on the sixth try we pushed the truck hard enough to get it out of the muddy water. Now the funny part, when we had broke the truck free @PERSON1 laid on the gas causing the truck tires to spin, and spray mud everywhere. When I saw the amount of mud being hurled everywhere I jumped behind @PERSON2 and used him as a shield from the mud. By this point @PERSON3, and @PERSON2 are @CAPS2 in a inch thick layer of mud from head to toe. You couldn't help but laugh, it was the funniest thing ever. @PERSON1 had watched it all through his rear view mirror and as soon as he was safe from getting the truck stuck again, he fell out of the truck because he was laughing so hard. Even @PERSON3, and @PERSON2 were laughing a bit too. So when its a day when nothing goes your way or having bad luck, you never know what the day has planned for, in this case its one of the most memorable things I remember that happened that duck season." 20 20 40 4 4 3 4 4 4 4 4 4 4 4 4 +20743 8 " ""@CAPS1 figure something out to do! I am really freaking bored!"" @CAPS2 explained as all of us relaxed next too his dark blue @CAPS3 which was gracefully parked right out side of my house. The @ORGANIZATION1 was young and as young boys we needed something to do. Gears started to turn in my head! As i thought of a bullet proof plan that would be very funny. ""@CAPS4 I've got it!"" I yelped. ""@CAPS1 here it, I'm really down for anything right @CAPS21,"" @CAPS6 quickly replied. ""@CAPS7 since @CAPS2 has car he can drive into town and buy some cheap saran rap then @CAPS15 back to the four way intersection right out side of my neighborhood and tie the rap around two of the trees on opposite sides of the street so cars will speed through it!"" I quick explained as i ran out of breath. Bursts of loud laughter came from all directions were my friends were standing as I came to realization that this idea was golden. ""I will drive and go get it, but does anyone got some money too pitch in!"" @CAPS2 pounced as @LOCATION2, @CAPS6 and I, handed single bills to him. "" that's plenty! give me a few minutes then we can meet at the intersection right out side of @CAPS10's neighborhood."" @CAPS2 said as he brushed everyone off his car and begin to dip out of my neighborhood. ""@CAPS12 text me when you're about to get back!"" I screamed to @CAPS2 as sound of his poorly maintained engine bellowed in the @TIME1 sky. Minutes flew by and the rest of us just sat down on the curb, talked, and waited for @CAPS2. Ring ting my custom ring tone for incoming texts sounded. My eyes quickly scanned the phone's contents and concluded that @CAPS2 was ready with the saran rap at the four way intersection. ""@CAPS15 on @CAPS1 @CAPS4 go! @CAPS2 is ready and so @CAPS1 do this thing"" I muttered as i grabbed my jacket and headed for the exit of my neighborhood. @CAPS6 trailed, as @PERSON1 and @PERSON2 brought up the back. i yelled once again to enhance the passe. @CAPS2's car lights lit up the @ORGANIZATION1 air as he made a blinking signal to express where he was to us. All four of us quickly jogged over to the drive way of a house that was for sale right near the exit of my neighborhood to where @CAPS2 was parked. ""@CAPS17 you @CAPS4 long enough,"" @CAPS2 explained. ""well we are all here! so @CAPS1 go to the intersection and set this up!"" @PERSON1 explained as the started too lead toward the intersection which was about fifty yards away. As we reached the intersection there were no cars! We all @CAPS17 to this opportunity and @NUM1 and @PERSON1 look out for cars!"" i yelled as @CAPS2 and i began the process. Quickly i opened the saran rap and ran crossed the road, uncoiling the rap as i went. Soon as @CAPS2 and I were both on opposite sides of the street we both started to firmly rap the saran around trees we have already pick out. Once i pulled and inspected it finding that it was prefect i sprinted to a short fence that was a boarder for the neighborhood on one side of the intersection. i was guessing this was where all my friends were hiding. ""haha this is prefect! i am made sure everything feels right!"" I explained as we all gazed upon delicately hung rap than ran from both sides of the two way street. ""@CAPS21 we must wait,"" @PERSON2 said as anticipation fell into place. Four heads bobbed up and down as we checked to see if cars were driving down the road. Since it was about @NUM2 pm most of the good folk of @LOCATION1 were sleeping or inside. But suddenly a car came out of @CAPS21 were, speeding and only @NUM3 yards from the great prank. ""@CAPS22,"" i yelled as the car continued driving closer and closer. Boom! The car speed through the saran rap, then came to a screeching stop. Laughter burst out as the inspected target was completely in disarray. But the anger male driver hearing our laughing decided too leave his car and chase us! ""@CAPS23 up,"" I screamed! We all @CAPS23 right as the man reached the fence where we were hiding. Although it was too late for @CAPS6! The anger man caught him as the rest of us all high tailed it for my house. As soon as we reached my house we all began too ask our self's what happened too @CAPS6! Suddenly out of @CAPS21 where @CAPS6 came running, as he @CAPS22 reached us we started too burst into laughter once again! The whole left side of @CAPS6 was dripping with soda! @CAPS6 would never tell us what happened that @ORGANIZATION1 although we could have guessed! As the @CAPS25 and long @ORGANIZATION1 rapped up we all called quits and hit the sack at my house. But laughter wasn't in short supply that @ORGANIZATION1 as we all fell asleep!" 22 20 42 5 5 5 4 4 4 4 4 4 4 4 4 +20745 8 "Interesting fly.It was the @DATE1 of this @DATE2,after a long @DATE1 with some crying @CAPS3 lots of goodbyes i was finally in the airport,waiting for my plane to @LOCATION1.I've been in that airport so many times...I love @LOCATION2 but it's always exiting to go in vacation @CAPS3 i @CAPS1 it with my parents pretty frecuency.Today it was different, this wasn't a vacation. It was going to be a whole year. @CAPS3 my parents weren't going to be there.Just think about being away from them @CAPS3 all my friends in @LOCATION2 for such a long time made my stomach sick. Expecialy because in @NUM1, i was going to be meeting my host parents that i never saw before @CAPS3 wondering if they were going to be normal people or a pair of complitely weirdos.Once in the plane i sat with a young girl that was in @LOCATION2 studing arquitecture @CAPS3 going back home for winter..when i was just going away from it.@CAPS2 asked ""@CAPS1 you speak english"" @CAPS3 i said ""I try to"" @CAPS2 laught,@CAPS2 looked nice,with a big smile,@CAPS2 was pretty too.We started talking @CAPS3 @CAPS2 felt how nervious @CAPS3 anxious i was.@CAPS2 asked me if i was ok @CAPS3 i told her that i was going to be a foreing stage studient for the next year @CAPS3 my concerns about it,like meeting people or missing home.@CAPS2 told me""you will be fne,dont worry about it..i wish i had that chance when i was your age""@CAPS3 then changed the subject.After a long conversation @CAPS2 started reading a magazine @CAPS3 i put on my music.When we were about to get @LOCATION1 @CAPS2 all sudenly screamed so hard that made me jump,we laugh for a long time @CAPS3 @CAPS2 couldn't even talk to me @CAPS3 explain why did @CAPS2 scream because everybody was looking at us @CAPS3 that made it even more funny @CAPS3 kind off embarazing too so @CAPS2 could not stopt laughing.Then @CAPS2 told me that the guy in the picture of her magazine went with her to highschool a few years ago @CAPS3 they were together for some time but since graduation they didnt know anything about each other.He was now working at a bank @CAPS3 making good money,really good money...@CAPS2 was going craizy talking to her self @CAPS3 asking why in the word @CAPS2 stoped talking with him.That good time with her,even if i haven't seen her again made me really happy @CAPS3 by the time we got off of the plane i was more confident @CAPS3 almost forgot about all the nervious that i was before.After @NUM2 months here,everything is going perfect @CAPS3 im sure that even if it was just a few laughs @CAPS3 not a really long time on that plane,when i go back @LOCATION2 @CAPS3 think about @CAPS4 i will think about her,@CAPS3 i'll count that moment as my first good @CAPS5 expierence." 16 18 34 3 4 4 4 3 3 4 4 4 4 4 3 +20746 8 " In many relationships I have had, there has always been laughter, love, sadness, anger and complacations. Allthough there has been one person I had a relationship with that did not involve laughter and it was reather boring and sad. I would spend troumendous hours of my time to just get one little giggle or sound of laughter out of him. He was a rather gental soul and could never harm a fly, but still could not laugh eventhough he was happy. I would ask many times over and over ""are you sure your happy because you dont seem like it? I never see you smiling or laughing all I see is a frown"" I told him with a sour face and he replyed back ""yes, @CAPS1 I am happy but just becuase I don't laugh doesn't mean I am not and besides with that silly grin on your face, how could I not be happy?"" with that reply I simply just shrugged and began again. ""then why cant you not laugh?"" and he replyed back in a drowsy voice because he was gettig tired of the same topic everyday. ""its not that I can't laugh its that I choose not to"" and I said ""well why on earth would you do that?"" he sighed and huffed really getting tired of the topic. ""allright if you don't stop this"" he said in a gental but strained voice, ""im going to have to stop being so nice to you and I just might not talk to you for the rest of the year"" but of course he was only joking, he could never not be nice to me and besides he was my bestfriend he couldn't not talk to me. The topic was dropped and never brought up again until the @DATE1 I saw him. It was a cold @DATE2 when I walked out of my house one morning to go to school. I saw a big moving rental truck outside of his house and instandtly knew that he had not lied to me but rather did not tell me that he was moving away. I began to think that it was because of me always asking him why he would not laugh but that would be a silly reason to leave. I went over to his house not caring if I was late or never did show up for school that @DATE2, I had to figure out why he was leaving. Once I got to the porch of his house he was walking to the door and I blocked the door way so that he could not go any further making sure that if he wanted to get the box of clothes to the truck that he would have to answer me. I asked him and he said, ""my father got a promotion at work and now we have to move to new york"". I begain to cry as he told me this, I was young about eight years of age and he was twellve. I knew I was not going to get to see him again so I made sure that before I lefted to school that we would hang out before he lefted. That night at the park he told me willingly without me asking him. ""@CAPS1, I know you have always wondered why I dont luagh"" he said and went on ""like I said its not that I cant laugh its that I dont want to...I just...when I was young I was teased because of my smile"". I didnt understand, why would anyone tease him? so I asked ""why though? why would someone tease you, your nice"" and he repled ""because before my new teeth grew in my old ones didn't look so great"". And once again I was still puzzled his teeth looked good to me so I asked again ""then why don't you smile now your teeth look fine to me"" he said ""I would but I don't know after being teased for so many years I just didn't feel the need to and now well...I could smile and truth be told I want to"" I said ""really!?"" with too much excitment. ""yes, and the only reason is you, your about the only person that makes me want to smile, its because of that grin you always have your always so happy. I just couldnt admit it to myself well becasue your a girl and to me I guess having a girl make me want to amile and being my only friend that is younger than me makes me feel a little weak."" I didnt understand this at the time but now that I am older I do and I am so glad that I had that one night to see his smile and many phone calls to hear his laughter. I once heard that laughter is the shortest distance between two people and quite frankly it is absoultyl true becuase after that night our friendship grew even further with just a phone call a @DATE2 and a little laughter." 17 16 33 4 4 4 4 3 3 4 3 3 4 3 3 +20747 8 " These days you don't really need a reason to laugh. Laughter just radiates out of some people as frequent as a breath of air. I believe that everyone has someone they can laugh with because everyone has someone they enjoy being around. One of the people I enjoy being around most is my best friend @PERSON1. No matter what the situation, whenever we are around each other we end up having fun. Laughter can turn a bad day completely around. One of my most recent examples of the power of laughter happened just a few weeks ago. One of my, ""friends"", tried to play a cruel joke on me that ended up being a bigger mistake than she could have imagined. Once I had figured out that this person whom I once trusted was trying to spite me I became overwhelmed with my emotions. At one point I actually considered attacking this girl right in the middle of every one in school. Thankfully I used my better judgment to run away from her, and hide instead of hurt her. Half of the class period progressed and I was still very upset and unprepared to confront her. So there I stayed safe in hiding until my best friend found me. @PERSON1 had come to comfort me after she got wind of what happened. She talked to me until I calmed down and my tears stopped. She made me feel much better. Her just being there for me, and being able to remonis in the fun times we had together and the laughs we shared, seemed to make all my problems disappear. Eventually she convinced me to go talk to my,""friend"", who as it turns out was ashamed of herself for her actions. We were able to make up and return to a somewhat normal life. To this day and more than likely for the rest of my life I will believe that laughter is the best medicine. I guess I'm lucky in that I have found the best person in life for me to share all of my laughter with. Every body has to have a somebody." 18 20 38 3 3 4 4 4 4 4 4 4 4 4 4 +20748 8 "Friends are'nt always what we want them to be they arent always easy to find, but with a smile and a laugh a friendship can become. I mean what is a friendship if there isnt those moments where you laugh until you pee. When you laugh until you can't breath and you feel like you have just done one hundred sit-ups. Ofcourse you @MONTH1 meet a friend like this and it @MONTH1 happen when you least expect it. I didnt expect a new friendship but in a new town and with new people i met the friend i now call bestfriend. It was the year of @NUM1 and i was new to @ORGANIZATION1. In homeroom everyone stared at me like i was some kind of criminal and everyone talked behind my back when i would pass by their desks, well atleast thats how i felt. My homeroom teacher @PERSON2 @CAPS1 me my so called schedule. Sixth period, @CAPS2 class with @PERSON1. What? @CAPS2, what is that. I really had no idea what a @CAPS2 was until i walked into that class. I turned the rusty knob of the door to the gym where my class was supposed to be. I walked in and well there I found out what a @CAPS2 was. It was a one wheeled bike. Wow! I laughed thinking how did i not know that. I looked around and saw that i was the only sixth grader around. I took a seat and looked everywhere trying to figure out if i was really the only sixth grader there, when in walked a girl that looked about my age. She took a seat and i wondered if she was nice so i could go talk to her, but i was to emberrassed to. @PERSON1 asked everyone to get in groups of two and i asked the girl if she wanted to be my partner. We started to useb the unicycles and our partner had to help us get on and ride until we could ride with no help. Class was over and i tolde her my name was @PERSON3 and she told me her name was @CAPS3. I was super excited to go to class next time because i now actually had a ""friend"" well atleast someone i talked to. I went into the class and she was absent so I was a loner that period. I had to be partners with this other girl named savannah witch was a total girly girl. She didnt want to ride the @CAPS2, all she wanted to was talk. I was sick and tired of her by the end of the day and I had'nt practiced my unicycleing. I was really hoping @CAPS3 would show up to class the next day, and she showed up. This time we had to get with our partner and make a routine to a song that we wanted so we were pretty stoked. We started practicing and trying to come up with something when suddenly we both fall. We stared at eachother and just started laughing and laughing i couldnt breath and she almost peed. It was one of the best times i had experianced that year, and i felt like me and her could become the best of friends. We are now really close friends and just that one moment of laughter together brought us close at heart. We love to laugh we believe that the more you laugh the younger you look and well i think its true. everyone has their own story about how they met a certain person and how they became so close. I believe that in every friendship what braught it together was a smile or laughter. A laughing moment where you laughed so hard you farted and milk came out of your friends nose. Its a great time and you never forget it, its something that is so simple but so special and it really marks your heart and the way you feel around that person. It braught my friendship with a person i had barley met into a friendship that is now insepreable and amazing. " 19 17 36 4 4 4 3 3 4 4 4 4 3 3 3 +20751 8 " It was a normal bright and warm @DATE1 day, going into my fifth grade year. My older sister and I had been playing all day with my other neighbors that were around our age. One of those neighbors happened to be a boy. We could not find anything to do. It was too hot out to just go walk around in the sun, so we decided that it would be cool to play in the shade with the new slingshot my @CAPS1 had made. He made it out of an old swing set seat and I thought my neighbor would really enjoy it. We all headed into our garage to get it. My sister offered to get it down for me since she was taller and it was hanging up pretty high, but I refused. It was my idea to show him so I would be the one to get it. As I was in total concentration, stretching and reaching to grab it, I noticed everyone around me giggling. My concentration got weaker as I begun to wonder what they were all laughing at. I stood there confused for a minute before I had found out what happened. My sister pulled down my pants.. in front of our boy neighbor. I picked my pants up off the ground, looked straight at my sister, and started beating her with my flimsy loose fists. I ran straight to my room, crying all the way there. My sister came in a few moments later trying to bribe me out from under the covers with the last two fruit role ups. She sat on my bed waiting for a half an hour, I didn't budge. She did not say anything but I could feel her eyes piercing me through the sheets. Later that night I finally came out. My sister kept on apologizing but it didn't matter to me because I was upset with her, that's all that mattered. The whole next day passed and nothing had changed. She was still apologizing and I was still in the ignoring mood. My @CAPS1 came up to me and told me that she was terribly sorry and upset too because I was not talking to her. I thought in my head, "" how could she be upset.."" but I realized I had not treated her right, even though I wasn't happy with her. After hearing what my @CAPS1 had said, I decided that it wasn't worth it. I went and talked to my sister for the first time in days. She told me that she didn't mean to hurt my feelings, she was just messing around. After talking about it for a while I concluded that I got so upset because she did it in front of our friend. We joke around like that all the time, but it's never in front of anyone besides family. I was scared that it would have frightened our neighbor friend away, but he was back to play in a few days so I had nothing to be mad about. Even though I was embarrassed, I admitted that it was pretty funny. We had a good laugh about it and were no longer enemies. I learned that dwelling over the past gets you nowhere and you have to learn to laugh things off. Ever since then, every time it is brought up, we laugh so hard tears role down our face. I would not have considered it a good thing when it happened, but I do now. It is another memory that my sister and I share and can reminisce about. The more laughable memories you share, the closer it brings you to some one." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +20754 8 "Making someone laugh is the best feeling to their soul, and it is one step closer to internal happiness. People might say that when feeling something good inside the body its when they know that they have done something right. I agree with this because it has happen to me; I was feeling down about something that I cant even remember but, when I felt the need to help someone do something I knew inside of me that I did something very special at that moment. It's amazing how you make someone laugh, and it doesn't matter where you are, you also feel happy. The one person in my life that has a great sense of humor is my mother. She is always in need of something funny.People enjoy laughing so much that it is if they were to take some sort of energy drink to make them not want to stop laughing. I hear people say that laughter is very healthy for a human soul, and it will also make the soul and body last longer. Laughter is a way of expressing yourself without having to say much. It could be a great way to start a conversation with a person. Positive thinking leads to making good choices especially if happiness leads you on in life. By making someone laugh it makes the awkwardness go away. It is better to laugh then to be sad.Everyone has their addiction to something in which they need to depend on. My mom's addiction is laughing. She laughs at work and she especially laughs at the house whenever I'm around. Although, sometimes she feels down whenever something goes wrong. I hate seeing her like this, because it then makes me feel down. When she is feeling sad it is if there is nothing in the world that would make her cheer up. If one person is feeling depress, that feeling passes on to the next person closest to them. Eventually I get tiered of seeing my mom like this and in this situation I cant help it but to get up and start doing some ridiculous stuff to cheer her up. Some things that pop into my mind is that I can start dancing funny or tell a little lie that might of happen at school that I think will cheer her up. When there is an opportunity to make someone laugh I enjoy to put a smile on their face.My mom means the world to me just as I mean the world to her. We try to help each other in any way as possible. This one day she came home from work and my dad was sitting in the table reading the newspaper and my mom walks in, and notices that my dad hasn't made food yet she started to flip out on him. She thought that it was stupid of him to not make dinner for us. She was pretty angry at him for a period of time, so she started to make us dinner but she was doing it all wrong. She was mixing the spices in the wrong pan, I was going to let her know that she was doing it all wrong, but my dad was holding me back so that I wouldn't get her more angry. She finally finish cooking and served us our plates but we didn't wanted to eat it because she made the food out of anger and made it smell funky. My dad forced us to eat it because he thought that by eating the food it would make her happy, but he was wrong it only made her feel worse because my youngest brother didn't like it. I felt bad so I had to do something funny that was going to put her in the mood to not be mad at my dad anymore. I turn on the @CAPS1 and changed the @CAPS2 to the music @CAPS2 and started to dance as if I were to have ants in my pants. Her lungs were about to burst because she was laughing so hard, and eventually she was in a good mood for the rest of the day.Everywhere I go I see people smiling and laughing about something and it only makes me wonder about the funny things that are being said. I think that it is a good thing for someone to feel good about themselves because it brings a positive feeling in the room. I enjoy to see people be happy because it always makes me feel happy. What better way to be happy when smiling is one step closer to laughing. My mom and I like to take walks just so that we wouldn't feel apart and stay closer to each other, we see different people each time we go walking and we always get a smile from them. That is the best feeling in the world, to feel joy is to be free from all your problems." 16 15 31 4 3 4 3 3 3 3 3 4 4 3 3 +20755 8 " ""Laughter is the key to the soul."" @CAPS1 you are having the worst day of your life, or the best day of your life, laughing can always make it better. I was sitting in @CAPS2 class one day, and was bored out of my mind. Then, a shy, quiet kid, all of a sudden started laughing! @CAPS3 couldn't stop! It was like @CAPS3 was on ""laughing gas."" @CAPS3 laughed so hard @CAPS3 couldn't breathe. Now this made me laugh, and then my best friend sitting next to me laugh. Soon enough the entire class was laughing! So even though some of the people in @CAPS2 class might have been bored, or had a bad day, the laughter was spread throughout the room, making it a better day. Laughter spreads like wildfire, and it makes everyone happier. And when you are happier, you are healthier. So with that, a @CAPS2 relationship must have laughter in it, in order to work. When you ask someone what they like about there boyfriend or girlfriend, if it is a @CAPS2 relationship, they will almost always say, ""@CAPS3/she makes me laugh."" @CAPS5 when you don't have laughter in a relationship, you end up in more fights, more disagreements, and more disappointment. The more you laugh the more you can live a better life and enjoy life more. Have you laughed today?" 15 15 30 3 3 4 3 3 3 3 3 3 3 3 3 +20756 8 " Their are many joys in life, some are more relevant then the others, and some are so obvious you'd be stupid no to notice them. Have you ever just sat on your porch or stared out the window just to watch the sun rise, as you sat there pondering your life and its unusual qualities, you think of all the great memories, all the laughs you have shared, all the sorrows, all the pain ,and all the love and hate. Its not surprising that almost everyone has done just that and they wonder if they could change things, how would they do that, or would they leave it the way it started out, filling their life is complete and they are complete as well, not having any regrets. For all the tears I have cried and all the pain I've been through there has always been a laugh to top the sadness. some time I to sit and pander my life, although i have not lived long and my real experiences are yet to come, I have been through a great deal in my short experiences, but it does not trouble me, for i have taken in what has happened during my time period and I have learned a great deal form it. I've learned that no matter how hard you try you can never fully plain your life theirs always going to be something or someone unexpected, all you can do is hope for the best and prepare for the worst. Its not hard to be happy, just keep an open mind and a light heart, and soon you will find yourself laughing with the rest of the world and enjoying your short time on this amazing planet we call @LOCATION1, so listen to your mother and father or even the person you look up to most in life. There are many things that keep me going, like my boyfriend or my love for animals, but the most important thing i can think of isn't just one thing its a collection of things, such as love, laughter, new beginnings and old endings, a bright and new path (all you have to do is take it) , the relentlessness of the universe, and the idea that there @MONTH1 be other planets out there that sustain life, maybe even intelligent life. Its easy to find things to live for and even easier to find things to die for, hopefully you look for things to live for. I remember when it was hard and I thought I would never ever be happy and I felt like I wasn't right for this world and its many confusing aspects. I was at the end of my path or so I was making it out to be, but then something happened as I sat on the side of an old road. I looked up at the stars and thought what would i miss out on if I ended my path now, what would I dare to name my child or children for that matter if I even have the chance to produce any.Who would I marry if i marry, will our love last or fade like morning due. so I finally decided that there was to much i would not experience if I ended it this soon. after that fateful evening I went about my life slowly molding into a better person who wanted a bright future with a romantically new but burning love story to tell to my child or children, and with devotion, trust,and respect would hopefully last. but that's not all I would want my adventure to consist of. I would want to find peace of mind in a place where silence is a scarcity, I want to help bring out the possibility of sharing the world with animals not pushing them aside or abusing their natural right to be on this @LOCATION1 along side us, I want to solve the pollution problem that we humans have more then helped produce. i suppose in my small way i will because in just one person and a every small thing on this very big home of ours, but as small as I am what i do or say will make an impact. so if I want something to look back and laugh on i had bettered to what i consider my part and making this planet a shared and healthy planet." 18 16 34 4 4 4 4 4 3 3 3 4 4 4 3 +20757 8 "A true story about how two close friends became friends over the joy of laughter. One year their is a boy named @PERSON1 who wanted to so something fun this @DATE1 ins ted of just staying in his room and playing video games all day. So he heard of a play called""@CAPS1 In @LOCATION1"" from a friend and found out if he could join and help out with the play, but he ended up getting a part of the play and helped back stage when ever he could. @PERSON1 found that he enjoyed the doing the play very much and made a lot of friends. At the some time when @PERSON1 was having fun their was a girl named @ORGANIZATION1 who didn't talk much to @PERSON1 at all, but she liked him and she didn't tell a whole lot of people. @ORGANIZATION1 also tried to make as many friends as she could when doing the plays and spent as much time with her friends as she could. As the play stared to end @PERSON1 stared to hang out with @PERSON2 who is @ORGANIZATION1 older brother and stared to pay a little more attention to her and found out from her brother that she liked @PERSON1, but @PERSON1 already knew that she did like him from the way she acted around @PERSON1. @PERSON1 joined another play called""@CAPS2 in @LOCATION1"" after doing""@CAPS1 In @LOCATION1"" because of how much fun he had in doing the first play. @PERSON1 found he already knew most of the people form doing the first play. So he stared talking to the rest of the people that was their that @PERSON1 didn't knew already. This is when @PERSON1 and @ORGANIZATION1 stared talking to each other and both of them found that they enjoyed each others laughter they became vary close friends. they became such close friends vary fast because of how @PERSON1 like to make friends vary easy and @ORGANIZATION1 doesn't have vary many friends or close friends or it could have been the fact that @ORGANIZATION1 liked him so much. @ORGANIZATION1 didn't have vary many friends because the kids at school would make fun of her for being so smart and then she go home schooled and lost some of her only friends that she had. @PERSON1 soon found out in their friendship @ORGANIZATION1 was scared of of @PERSON1 not wanting to be her friend because of all the friends she had already lost. By the time that the play was starting to come to an end @PERSON1 had already noticed that @ORGANIZATION1 had liked @PERSON1 before they were friends and he asked her if she did like him she said no at first, but then she felt bad for lining to him and told him the truth about how she did like him and how she thought that is would be best if they just stay as friends. Both of them knew that they could only be friends because of their age difference. @PERSON1 was @NUM1 and @ORGANIZATION1 was @NUM2. So they both knew that it would have never have worked out because of their age. So they both agreed that is would be best if they just stay as friends. As the play was ending the used every minute of it to grow their friendship. By the end of the play they both have became close friends and enjoyed the the good times that they had together and also enjoyed the laughter of one another. Even after the play both of them still talked when ever they had the time to talk to each other, but they didn't get to see each much of each other. When they had the time to talk they talked about the good times that they had with one another and how much fun they had. They also talked about the great and fun that they had in doing the plays. Both of them agreed that they would do the plays again next @DATE1 and looked forward to seeing each other next @DATE1 and how many great thing that they will have to talk about. End the end I think that @PERSON1 and @ORGANIZATION1 are going the be friends for a long time. maybe when they get older they could be more then friends and have their friendship go to the next level......... only time will tell." 15 18 33 3 3 3 3 3 3 4 4 4 4 4 3 +20758 8 " I never thought that laughing can help you start a conversation with someone you don't even know. But @CAPS4 can. Just by laughing with someone can get you to meet a new person. One of the things I do first @CAPS6 someone is trying to be funny is laugh. Once you know @CAPS2 the other person is talking about, you forget that you are just getting to know that person. This happened to me once. @CAPS4 happened in @LOCATION1, where my family and I usually go every year in @DATE1. I made a great friend and the first thing we did was laugh. As you know, @LOCATION1 is a hot place and the sun is usually out every day. I spend the days we stay over there going out to walk with my sister and cousins or going to the beach with all my family. I remember @CAPS4 was a day that my cousins, sister and I went to a small store that's right down the street from where we stay at. We wanted to buy candy and other stuff to bring with us @CAPS6 we returned to our home. I didn't expect to see one of my cousins there with his friends. @CAPS6 I saw them, the only thing they were doing was laughing about something. I couldn't hear them but once we got closer, I heard a hilarious thing they said. I couldn't help overhearing so I started to laugh. One of his friends saw me laughing and he thought I was laughing at him. He asked me if I was laughing at him and of course I said no. I told him I had accidentally overheard his conversation so then he started to laugh. ""That was funny wasn't @CAPS4"" he told me laughing. ""@CAPS1 @CAPS4 was. I didn't know you made jokes like that"" I replied. He kept on talking to me and then he said, ""I always talk like that so don't be afraid. I don't say @CAPS4 to hurt anyone."" I thought @CAPS4 was nice for him to clear that out but I already knew people in @LOCATION1 talk like that. We kept on talking @CAPS6 I started to laugh again. ""@CAPS2 did I say now?"" he asked. ""@CAPS3. I was just remembering @CAPS2 you said in the beginning. That was really funny"" I replied. For some reason I couldn't forget of @CAPS2 he said and I don't think I will ever forget. I think @CAPS4 was probably because the way we met was really surprising to me. I had never met a person, especially a guy, by laughing first. I guess I thought @CAPS4 was a great way to start a conversation. Laughing with the person will let them know that we are interested in their subject and we understand them. That's at least @CAPS2 I thought. I had a good conversation with my new friend. We talked about how I was taking my vacations. I told him that every year I go and I always enjoy them. My family and I have a great time spending time with my grandparent and cousins from @LOCATION1. I told him I sometimes say I would rather live in @LOCATION1 than where I live know because @CAPS4's so much calmer there. He agreed with me on one part of @CAPS2 I had told him because he knows @CAPS2 @CAPS4's like to live in @LOCATION1, but he doesn't know how I's like to live in any other place. After he told me that, he stayed quiet for a couple of seconds. I noticed something instantly. I had noticed that our conversation wasn't like in the beginning. In the beginning, we wouldn't stop laughing and we had interesting stuff to say. Then, @CAPS4 got calmer and a little unusual. I didn't want to just stop our conversation there so I asked him where was he going to go because @CAPS6 I started talking to him, he was with one of my cousins and I was with my other cousins. Now we started laughing again. This time @CAPS4 was because we just had noticed that the people we were with had left us. ""@CAPS6 did they leave?"" he asked me. ""I don't know, but they can't be that far because we haven't been talking for a long time,"" I told him. We walked together to go and look for them and I was right. They weren't that far. They were still looking for things to buy and I don't think they noticed we were missing. We just got together with them and acted as if @CAPS3 had happened. @CAPS4 was strange for me because whenever I looked at him, I would remember our conversation. The first thing that would come to my mind was that we started our conversation by laughing at a funny thing he said. I actually liked making a new friend this way. Now, whenever I go to @LOCATION1, I know I have a new friend over there and if I decide to, I can make other friends by simply laughing with them in their conversations." 23 18 40 40 5 5 5 4 5 4 3 3 3 4 4 4 4 4 4 4 4 4 +20759 8 " As I waited in the car, anxious to meet my best friend and man I'm in love with, I started to laugh. Not because something my mother or brother said was funny, or because I saw something funny, but I was nervous. I'd talked to him countless times on the phone, many many text messages, and countless emails. But I was still nervous. I knew him better than I knew most people, yet my anxiety seemed to be making me lose my sanity. As our black rental sedan pulled up to where he was waiting outside of where his family lived, I got more nervous. @CAPS6 if he wasn't actually the way I thought he was? @CAPS6 if he didn't like me? @CAPS6 if I didn't like him? As soon as he stepped into the car, smiling brightly at me, my nervous laughter and my anxiety all melted away. I smiled back. ""@CAPS1, @PERSON1,"" he said. ""@CAPS1 @PERSON2,"" I said, butterflies in my stomach. I was smiling broadly still, he reached out and cautiously took my hand. ""@CAPS3 was the drive?"" he asked, lightly squeezing my hand. ""@CAPS4, and nerve wracking,"" I replied, nervous laughter bubbling up again. ""@CAPS5 your here now, and I'm very happy @CAPS7 are,"" he said, smiling. And for the rest of the car ride to the restaurant our conversation flowed so smoothly I thought I was dreaming. Here him and I were two guys in love with one another, a new thing for both of us, and we were happy as can be. The whole car ride we held hands ad talked, I felt like I'd known him my whole life. Not just the year and a half I'd known him. We arrived at @ORGANIZATION1 all too fast and all of us got out of the car, I was famished and so was he. But we had to wait for a table for a half-hour before we sat down. Once at the dinner table my mother, who was very happy I found someone I loved so much and knew of our love, started regaling us with tales of my childhood. It was one of the most embarassing moments of my life. I was bright red for almost the entire time she told these stories. Some of which I remembered, others I did not. @PERSON2 laughed and joked wth me about all of them. Which made my nervous laughter come out as actual laughter. It also helped that he was holding my hand under the table. After we ate dinner and dessert we went to the nearby mall for some shopping and to just hang out. My mom and brother went one way, and @PERSON2 and I went another. We bought some clothes together and finally ended up in a book store. My favorite book store, @ORGANIZATION3's. Back in my favorite section, young adult fiction, I noticed @PERSON2 staring at me. ""@CAPS6?"" I asked stupidly. He smiled deviously. ""@CAPS7 just look very... In your element,"" he smirked. ""@CAPS8?"" I said, in mock confusion. He just smiled and took my hand in his again. ""@CAPS9 problem,"" he said, squeezing my hand. He pulled me closer to him, we were the only people in this area of the store. ""@CAPS10 if I'm a little forward?"" he asked. I shook my head @CAPS9. He leaned in and kissed me very gently on the lips, I blushed a bright red and started to giggle after our lips parted. He quirked an eyebrow, I knew @CAPS6 he was thinking just by the look on his face. ""That felt fantastic,"" I said, putting my fingers on my lips. I had a silly grin on my face. ""@CAPS11,"" he simply said, kissing me again. ""I love your laugh, love,"" he told me, I was on cloud nine, I was truly in love with somebody and I felt great! I'd never been this happy before. Except maybe the first time I went to @ORGANIZATION2. But this was definitely better, because it could last much longer. Which it has, since we've been together ever since. Both our gazes fixed our future together. Now whenever I remember that I was start to giggle happily to myself. Yes I get a stare every once in a while, but I don't care. Laughter is the thing that helped bridge the gap between him and I. Making us the closest we've ever been." 23 24 47 4 4 5 5 5 5 4 5 5 5 5 5 +20760 8 " Fourth period, freshman year was the highlight of my entire freshman year. @LOCATION1 was what most people called him, but I simply called him, @CAPS1. So I'll start off with the first semester of ninth grade with physical science, fourth period. I had the first term with my best friend, @PERSON1, @CAPS12 we got to choose our seats, so we sat next to each other in the back, right hand corner of the classroom. We sat there so we could get away with more, like passing notes @CAPS12 talking during class. So one day, while we were passing the notebook of notes, I most have written something that embarrassed her. So I went to grab something out of my backpack, @CAPS12 she took advantage of the situation. So next thing I knew, I was being shoved out of my desk, onto my backpack, on my back. The class got quiet, for he was giving us notes @CAPS12 showing us how to do the assignment. So as we erupted into fits o laughter, I looked at him to see if he was very angry @CAPS12 if he was going to send us outside of the classroom to talk to us. But all @CAPS1 did was look at us, shake his head, laugh a little to himself, @CAPS12 begin talking again. So, we kept laughing, but we were trying to settle down @CAPS12 stop ourselves from laughing. In the second term, @PERSON1 was @CAPS10 in there with me, but I had my friend @CAPS3-@CAPS4, @CAPS5.@CAPS5, @CAPS12 @PERSON2. i was even closer to @CAPS1 then in the first term. So, one day he was teaching us about compounds. So while he was writing down a chart to help us study, he sang out, ""@CAPS7 play the @CAPS8 @CAPS9!"" @CAPS10 even seconds later, the class burst with laughter, even he had to stop from writing he was laughing so hard. It took us about ten minutes to settle down @CAPS12 stop laughing. Another part of the second term that was a fun @CAPS12 a good laugh was doing some example problems on our own. So one of my classmates, @LOCATION2, asked what should we do to tell him we are finished with the problems. So @LOCATION1 thought for a few moments, @CAPS12 said, ""@CAPS11 you finish your problems, cluck like a chicken for me."" @CAPS12 about five minutes afterwords, people started clucking like chickens. @CAPS12 with that, my friends brought up the fact that I own chickens. But as more people were finishing their problems, it was getting annoying. It was hilarious at first though. Then there was @CAPS13 @CAPS14. We had just a regular classroom, @CAPS10 a science @CAPS13, so we were unable to do to many experiments. So @CAPS15, the other science teacher let us borrow her classroom for an entire school @CAPS14, being as her class had an online report to do. @CAPS1 banned me from using the matches, because his nickname for me was @CAPS16-@CAPS17. Then on the final day, he broke about @NUM1 to a dozen glass test tubes. @CAPS11 this happened, i was almost complete with my packet we had to do for the @CAPS14. So I went over to him while he was cleaning up, @CAPS12 I asked what happened. He told me, my classmate broke a bunch of glass test tubes by dropping them. But he looked at me @CAPS11 he did so. So @CAPS11 I looked at him, he started laughing. Which gave his cover away, so i got after him @CAPS12 told him @CAPS10 to blame the children for things he did. especially for breaking the test tubes. There was also the one time I went into his @CAPS18 class to do some homework. My friend wanted me to be there for one day, because she lvoed the class so much. So my guitar lessons teacher allowed me to spend fifth period in that class. So, @CAPS11 he was done giving notes @CAPS12 giving the class their assignment for the day. Some friends of @CAPS3 @CAPS19 called him over for a question. So I looked up from my drawing. By then he was already over to them. So they asked him if he was a swimmer, he replied he did swim. So then they asked if he shaved his legs because he was a swimmer. I think he got embaressed, so he said to come after class @CAPS12 ask personal questions. So they just wanted a yes or no, so he explained, for about five minutes, that they shouldn't waste classtime for silly @CAPS12 personal question about him. I thought the entire time, ""@CAPS20 doesn't he just say yes or no?"" @CAPS21 were fun times that I will never forget @CAPS12 tell the day I die. No class, or science class will ever replace fourth period physical science. Nor any teacher replace @LOCATION1, he is @CAPS12 always will be my favorite teacher. I will forever remember the days of every phsycial science class, because of that one simple teacher." 15 15 30 30 3 3 4 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 +20761 8 " Sometimes I wonder why people laugh. People laugh when something is funny or when things @CAPS3 awkward and they aren't sure what else to do. Often people laugh when they @CAPS3 embarrassed or offended. I, actually, find myself laughing for no reason on occasion. if I can make someone laugh I usually feel very accomplished. I think it personally shows emotions out loud. But, in some cases, you laugh uncontrollably at yourself. Every year, since i moved here six and @DATE1, my two cousins and my sisters and I have gone ""cheese ball caroling"" with our grandparents around @CAPS1 time. Even after my grandpa died in @DATE4 and my older sister left for college. On the twenty-first of @DATE2, we go secret @LOCATION1 shopping one at a time with one of our grandparents while we make the cheese balls by hand. After all five of us have gone, we wrap the cheese balls and put a ribbon on them while we practice our carols for that evening. We always make a list before we start the caroling. First thing on the list is the people who's houses we @CAPS3 going to go to that night. Second next to each families name is the number of cheese balls we will be delivering to that specific house. Third is what song we @CAPS3 going to sing to them. Usually, there is about twenty- five to thirty people on the list. All of which @CAPS3 family members and really close friends or people from their work. We always have a really good time with it too. No fighting or bickering or anything like that. It's really nice to just be with the family and catch up. Usually, it's been about a year since we have all been together at the same time. Last year was the first year we went caroling with out my older sister. She went off to college the @DATE3 before, leaving me the oldest grand kid there. At first it didn't seem any different, but as the day went on I could feel it taking it's tole. With her being gone and my grandpa no longer being around made the pressure build uncontrollably. I started to relax a little when we got started and just tried to have fun. My grandma yelled to me to grab the list and add a name. At first, I didn't think anything of it. Later she told us we had to come up with a special song for the family. And that's when it hit me. The name looked and sounded familiar because I used to go to school with a boy with the same last name. That's when I asked her to verify if it was the same family. Sure enough, it was. I had had a crush on this boy since I could remember. We lost contact after I had found out he liked my cousin though. I knew it was going to be extremely awkward to have to sing in front of him, not to mention embarrassing. I remember thinking ""@CAPS2 great, this is just what I needed. This is going to be awesome."" We did our rounds and everything went very smoothly. We were having tons of fun, making jokes and laughing at absolutely everything. Then it came time to go to ""his"" house. We all choked up. The girls had heard many things about how cute and dream like this boy was so they were all nervous too. We were sitting there in the truck telling ourselves he wont be home, and even if he was it would be fine and we would be fine. I think that was the longest walk to a house with that short of a walk way ever. My grandma rang the door bell and we positioned ourselves to be ready to sing when the door opened. To our dismay, he answered it. We froze! We were like gargoyles gawking at him. He gave us a weird look and said "" @CAPS3 you going to sing or just stand there?"" with an evil little smile. I did attempt to sing, but nothing came out. That's when the youngest cousin starts singing happy birthday. That was not the song we had planned for this house, and it was not his birthday. In the middle of the second ""happy birthday to you"" we all start cracking up laughing, and I don't mean giggling or a small laugh. We @CAPS3 all laughing hysterically to the point where we could not breath, and he shut the door. I know if we would have just stood there it would have made that memory a lot more dreadful, but because we all were laughing, we can look back and laugh at ourselves for it. Laughing is a good way to release inner emotional pressure I realized that night. It's a memory i'm sure we will never forget. I have done something like that on multiple occasions but that was defiantly number one on my list of ""what were you thinking"" moments. I wouldn't change anything about it." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20762 8 " Laughter is always the key to complete happiness, all you really have to do is laugh to be happy. I remember back in the @NUM1 grade, i was the new student and i sure can tell you that i didn't know where anything really was, it was a new school: new bus, new everything. Being the new student is something no one wants to be, you get made fun of alot and sometimes you just dont fit in. Well thats my story, i never fit in. One day i was walking up the stairs to my class, and it was a bright sunny day, i dont believe there really was any clouds that day. Anyways, as i was walking up the stairs i tripped and fell backwards and my skirt i was wearing flipped up over my head, and of course in that era of time you had to have character underpants. Well i remember everyone pointing and laughing at me A. because i had just fell down, and @CAPS1. because i was wearing dora underpants. Therefore, i went the whole day with everyone laughing at me, but to tell you the truth, i laughed right along with them. I honestly thought it was pretty funny, falling down and your underpants show? who doesn't think that's funny? After the fact this girl named @CAPS2 came up to me and told me im not the only one who wears character underpants.We both laughed as hard as we could that whole day, just remembering the fact that me of all people, I fell down the stairs! Next, being the new kid that could actually be taking embarssing, but for me I have done it a million times, so it really didn't bug me as much as people thought it would. @CAPS2 and I, became such great friends, we laughed all the time. Like when we went to the park and she fell in the ice cold water, or back to the time where i fell down the stairs. Up to this day we still talk about that, its just something you really don't get over. Not to mentioned it was pretty funny when my charcter underpants showed. In conclusion, i think when the quote says ""Laughter is the shortest distance between two people"" really is true, you have to have a good laugh before you can go on with your day, its just a known fact. If you dont laugh throughout your day then something is really wrong with you. Just because your getting older doesn't mean you have to throw away your laugh. Laughing is the part of the day where you can do whatever you want. So you tell me what is your funny story?" 15 17 32 3 3 4 4 3 3 3 4 4 4 4 3 +20763 8 " @ORGANIZATION1 blew my mind the first time I seen her. She was my other half. Everything we did together was perfect. She made me laugh with everything she said. She was my better half would sum it all up. I still remember when I first seen her in @CAPS1. The nickname of the town was @CAPS1 @CAPS4 hell because of where it was located, in the middle of nowhere. We met when I was on vacation at @CAPS1. My parents had just retired a few months before and were looking for a cozy retirement home away from the big city's and more closer @CAPS4 the good eastern @LOCATION2 mountains that seem @CAPS4 always have snowy tops and beautiful landscapes. We ended up staying there for a week or so in this little trailer that we took with us. That thing was hell on earth, every time we stopped I would have @CAPS4 set everything up even if we weren't going @CAPS4 use it. It was a two hour process and after the hundredth time you can see how I would get bored. looking for a great house @CAPS4 stay in that town was not hard @CAPS4 come by. They were all amazing homemade houses. Never was a contractor paid @CAPS4 build these houses because the men of the town made them by hand. They were incredible two story oak made houses that look like they could take a tornado coming out with only scratches. We ended up finding this one house that was so amazing that I wanted @CAPS4 live there right off the bat, surprisingly my parents wanted it @CAPS4. But the sad thing is is that we had @CAPS4 sell our house first or we wouldn't be able @CAPS4 afford it, so we put that house on the ""@CAPS4 @CAPS5 @CAPS6"" and headed back @CAPS4 the trailer. We had another @NUM1 days or so there and I was officially bored out of my mind. I needed something @CAPS4 do besides stock the fire and make sure the hot dogs did not burn. I jumped on my dads bike and rode into town ( the trailer park was located about half a mile out of town). I arrived in town @CAPS4 be very disappointing. It was just as boring riding a bike around town and stopping inside the shop @CAPS4 make small talk just as sitting by the fire in @NUM2 degree weather. In my mind it was just another boring vacation but little did I know it was about @CAPS4 get a lot more fun. I woke up the next day and took my shower and got ready for the day. It seemed like another boring day in hell from what I could tell. @CAPS4 me fun was doing stuff I normally would not do. But back then @CAPS1 and places like that just did not cut it because all I did that @DATE1 was go @CAPS4 places like this and do nothing so it was expected of me @CAPS4 be bored. I rode my bike around a corner and I saw a bunch of guys and girls that looked like they just came from fishing or tubing or something fun, so I rode over @CAPS4 see what was going on. I started talking @CAPS4 a guy named @CAPS8. He told me they just got back from a youth group get together on the snake were they went tubing and cliff jumping. I was in aw. That seemed crazy @CAPS4 me. Cliff jumping? Tubing? It seemed way @CAPS4 crazy for a youth group. But I guess that's just how they do things in @CAPS1. They just don't go have a picnic they go do crazy stuff that I personally have not done any of the things they were talking about because for one i not crazy and for two I have never had the chance. We kept talking and before they all left they invited me @CAPS4 go on there nature hike up on top of this mountain. I was more than happy @CAPS4 oblige seeing as I love hiking. I woke up in the @TIME1 feeling all hipped up and ready @CAPS4 rock. I had my permission slip signed and I was ready for a good ole hike. I jumped on my dads bike and rode into town at five in the @TIME1 and arrived at the youth administrators house just in time for a protein shake for breakfast ( he offered it @CAPS4 me I did not ask). We drove @CAPS4 the mountain and at the base there were around @NUM3 @CAPS4 @NUM4 people all in hiking gear. It surprised me because I was not expecting so many people. That's when I met @LOCATION1. She was gorgeous so I was attracted @CAPS4 her immediately. We began the climb and I began @CAPS4 talk @CAPS4 her. We were like two pees in a pod. I couldn't get enough of her and her of me. Her laugh made me extremely happy. She was my other half. All I can remember is her amazing laugh." 19 20 40 40 4 4 4 4 3 4 4 4 5 4 4 4 4 4 4 4 4 4 +20764 8 " ` THE @CAPS1 @CAPS2 @CAPS3 story is about how I fell in dog @CAPS1 and stepped in it, I fell off of a slippery trampoline.about four or five years ago I went too a friends house to stay the @TIME1. That day was a hot day so my friend and I devised a plan to have fun and stay cool, so my friend and I went to the garage and found the sprinkler, so we decided to put the sprinkler under the trampoline and when u do that it makes the trampoline wet and slippery. My friend and I started jumping on the trampoline and he was starting too jump higher then me and I started losing bounce and he came back down the same time as me, but he had more bounce, which made me bounce a lot higher then I normally could also he weighed more then me. So i came back down and I landed on my back and the angle I was at on the trampoline shot me off. As I was bounced off the trampoline I thought I was gonna get hurt and I had rather gotten a few scratches then landing on a dogs manure, but that's just what happen I landed on a pile of dog manure and it really stunk my shirt up so bad, but after i took my shirt off i started jumping again and i jumped for that whole day about but i don't regret it it because after that everyone had a good laugh including me. so @CAPS3 story was a part of laughter and how laughter is a great way to have fun and even when it @MONTH1 have been a bad thing that happen to you, maybe in the end it was funny even though at the time it was not." 15 15 30 3 3 3 3 3 3 3 3 4 4 3 3 +20765 8 " @CAPS9 you ever been scared so much that you couldn't sleep the whole night? Were you with a group of @NUM1 friends at the time? Telling scary stories can be fun and games until someone gets too afraid and freaks everyone out. It starts out with everyone watching movies and having fun until the parents go up stairs and its time to party. It was called our ""@CAPS1 @CAPS2"" night, we call it ""@CAPS1 @CAPS2"" because, us @CAPS5 kids, we consider ourselves as @CAPS1. Our night involves @NUM2 antsy @LOCATION1, @NUM1 frightened teenagers, and a house that has said to be ""@CAPS6"". To start this amazing night of terror, the guests had to arrive at first. Everyone reached at my house around @NUM4 pm. We started out by playing videos games, laughing, having a good time, eating, playing board games. Just your average teenage party. That was, until the parents went upstairs to go to bed. Once they were settled in bed and fast asleep, we brought out the ""@CAPS7 or @CAPS8"" games. I bet you thought we were gonna be immature seedlings and play the unrated version didn't you? Well, fortunately we are the @CAPS5 kids. Just your normal ""I @CAPS8 you to run around the house three times"" or ""@CAPS9 you ever kissed someone?"". Nothing unrated about that. After a while everyone just got bored of playing that redundant game, so we moved on to the next activity we were going to do which was to play sing-star on the @NUM5, but @LOCATION3 brought the wrong cords over so we couldn't hook the console up. Since that didn't turn out as planned, we started to chat and capture pictures of the @CAPS1. Since this was our ""@CAPS1 @CAPS2"", it was definitely necessary to take some pictures of all of us together as a @CAPS1. For our @CAPS1 role, it goes like this, I am the father, @PERSON3 is the mother, @LOCATION3 is the cat, @PERSON8 is the @CAPS12, @PERSON9, @PERSON5, @CAPS13 and @PERSON6 were my children, @PERSON1 is my brother, @PERSON7 is the strange atrocious woman, @PERSON4 is the sister in-law, and @LOCATION2 is our cable guy. This is how we all considered each other in the @CAPS1, so we all had to wear costumes that fit our personality traits for the photos. It took a while for everyone to concentrate and to stop bickering to each other, but we managed to cooperate and proceed with the photo shoot. After photos, it was time to fulfill our appetites. I ordered pizza ahead of time before my parents went to bed. We got @NUM6 different large pizzas. Hawaiian, @CAPS14 @CAPS15, @CAPS16 @CAPS17, @CAPS18, @CAPS19 @PERSON2, and @CAPS20. One by one, we all kept coming back for more. My ""daughter"" (@CAPS13) dropped her pizza onto the carpet and left a hulking red stain. We all started to pother. @PERSON9 got the cleaner, I got the rags, @PERSON4 got the @CAPS22, and @PERSON7 got the camera. She thought it would be humorous to take pictures while we scrubbed for our life. After the mess was cleaned up, we stopped eating and placed everything else away. Now it was @CAPS23 movie time. Snuggled up onto the couch with @NUM1 people all clutched together is the ""right"" way to contemplate a @CAPS23 movie. The movie we chose was called The @CAPS24. Every one sitting on top of every one was fun until someone had to use the bathroom. Then, that's when it all happened... when @PERSON4 got up to use the bathroom, the @CAPS25 turned off, all the lights in the house shut down and we kept noticing shadows whisking across our living room walls. @CAPS13 started to cry, @LOCATION2 was complaining, @PERSON4 wouldn't go to the bathroom, and I was freaking out. Since none of the lights would turn back on, we all got in a circle on the carpet and started telling legitimately scary stories. Most of them were genuinely honest, and the others were said to be myths. There was one story that @PERSON6 portrayed about a possessed @CAPS26 that had no left leg and would go around terrorizing pedestrians. Well, it just so happened that I had a @LOCATION1 that had no left leg and when we started telling that story my @LOCATION1 started to freak out and assail all of my guests. So I grabbed my dog whistle and commanded them to cease, and dismiss. After all of the commotion, my parents never woke up and we all scurried up to my room to continue our discussion of @CAPS23 stories. During the whole process of the @CAPS2, the main lesson was that you can conquer any kind of fear as long as you @CAPS9 a sense of laughter and friends to back you up with it and that's what happened at the party. We were just hysterical about the whole situation and nobody ever left someone alone by themselves and always comforted them with laughter. By far I would @CAPS9 to say that was my favorite and most adequately funniest parties I @CAPS9 ever had." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20766 8 " Laughter and exuberance are key elements in any good relationship. Being able to be giddy and joyful with someone close to @CAPS11 is a sign of comfort. It often can bring people closer and help to solidify their friendships. Your true self is shown in your humor. Two years ago when I was in @PERSON1's seventh grade math class at @ORGANIZATION1, I was chosen to be in the @ORGANIZATION2 along with just three other classmates. Being in the @ORGANIZATION2 simply meant that we would be teaching ourselves @CAPS1-@CAPS2 using only textbooks, while @PERSON1 would teach the rest of the class an easier, more simple math. The @ORGANIZATION2 was almost like an elite club. Our other classmates looked upon us with jealousy because we got to sit in the back of the classroom together, never had to do any homework, and were never called upon out of the blue to answer questions in front of the whole class. Being the immature seventh graders that we were, we abused @TIME1 incredible opportunity that we had. I became fast friends with the three other people in the @ORGANIZATION2. Their names were @PERSON4, @PERSON3, and @CAPS3. @PERSON4 and I were already friends, but it was working together in the @ORGANIZATION2 that really brought us closer together. I also became close with @ORGANIZATION3 and @CAPS3. To @TIME1 day, @PERSON4 is one of my very best friends and I still keep in touch with the other two. We were all very different from each other. @PERSON3 was caught up in the popular crowd, @CAPS3 usually hung out with the really smart kids who were into chess and reading books, and @PERSON4 and I were just normal. However, we all had two important things in common; our sick sense of humor and our intelligence. We each felt that the work we were teaching ourselves was much too easy. We breezed right through the book and never really had any questions. In doing @CAPS8, we always finished our assigned work quickly and had more than half of the class left to just sit there, eat, and goof off. That doesn't necessarily mean that that's the order things played out in. ""@PERSON4, I don't feel like doing math @DATE2. I'm beat,"" I complained as we walked into @PERSON1's room for math right after lunch. ""@CAPS6 neither,"" she replied. ""I say we just sit there and make it look like we're doing work."" We made our way to the table in the back where @CAPS3 and @PERSON3 were already sitting. They had their books, pencils, and spirals out, but sat there with vacant expressions. @PERSON4 and I joined them in sitting and we all exchanged disgruntled looks. ""@CAPS8 uh, I was talking to @LOCATION1 @TIME1 and he said that we don't have to do any work @DATE2. We can just sit here and hang out,"" I lied, not even bothering to hide my smirk. Catching on, @CAPS3 and @PERSON3 grinned. @PERSON3 turned around and pulled a brown paper bag out of her backpack. She began to pull food out of the bag and offered it all up to us. I immediately grabbed the miniature chocolate pie. Midway through eating it, I dipped my finger in the gooey chocolate and wiped a big blob of it on the window behind @CAPS6. @PERSON4 noticed and immediately started to chuckle. ""@CAPS10, what's that?!"" she exclaimed, loud enough for everyone in the class to hear. @PERSON1 and a few classmates glanced over briefly, but got back to the lesson instantly. It really wasn't funny at all, but the four of us dissolved into giggles. ""@CAPS11 guys, I had @TIME1 crazy dream @TIME2,"" @PERSON3 said as the laughter died down. ""I went to @TIME1 @DATE1 camp thing, and @PERSON2 was one of the camp counselors. He was wearing khaki pants and a white shirt with blue pinstripes. Oh, and he also had a clipboard!"" We stared at her blankly and then burst out laughing once more. The funny thing about @TIME1, was that @PERSON2 often substituted for our teachers, and he wore that exact outfit each time. But the even funnier thing was that it really wasn't funny at all. We were @CAPS8 desperate for a good time, we found chocolate blobs on windows and khaki pants to be hilarious. Our laughter died down and we sat there in silence. Suddenly, @CAPS3 leaned back in his squeaky swivel chair and it immediately broke, dropping him right to the ground. To anyone else, @TIME1 would have been funny. However, we each sat in silence, staring at one another. It wasn't that we were embarrassed for him or felt sympathy, but simply ironic that obsolete things sent us into fits of giggles, while a substantial, laughable event made us simply sit there. I don't think I'll ever forget the @ORGANIZATION2. Though it was a waste of time, we had many good laughs. We @MONTH1 not have learned a lot about math, but we learned a lot about each other." 25 20 45 5 5 5 5 5 5 4 4 4 4 4 4 +20767 8 "Many @CAPS1 to laughter People always say that laughing can have many benefits. The truth, I believe, is that laughter is not always the best thing. Laughing can have many different meanings. When I think of laughter, I think of smiles,happiness, and memories. Although, there is one memory of laughter that does not prove that to be true. ""@CAPS2, I really don't wanna be here. I don't know that I can stay here and tell him this,"" I pleaded to @CAPS11 mother to @CAPS6 me go back home. ""@CAPS3 need to do this honey. @CAPS8's for the best."" @CAPS4 that point I had always though @CAPS11 mother knew best. Now, I wasn't so sure. I sat patiently, trying to hold back tears, waiting for @CAPS11 father to get back to his house. I knew he was at the bar, and silently thanked him that I had time to think. I was supposed to go tell him how I felt about him always drinking alcohol. Every time I went over there I saw him either drunk, or on his way there. The truth is, I was scared. I was scared for his health and scared that I was the reason for his drinking. I was getting older and needed to tell him what I thought and how I felt. While distracted by this realization, he came storming through the door. I looked up at @CAPS11 drunk father and @CAPS11 heart dropped. I burst out in tears while @CAPS11 mother held me in her arms. ""@CAPS5...@CAPS8's alright,"" she soothed. @CAPS11 father looked at me without any recognition and went into the other room. I walked in the room where he was and watched cautiously at him through the open doorway. He wasn't the man @CAPS11 mother had once married anymore. He had became a monster. I couldn't stand @CAPS8 anymore. I walked into the room where @CAPS11 mother waited with worry in her eyes. ""@CAPS6's go home,"" I said. On the way home I sobbed until @CAPS11 shirt was streaked with tears. The car ride home was silent and the thoughts and sadness hung thick in the air. I could barely sleep that night. The sun shone down on @CAPS11 face as I awoke to a new day. I felt confident and ready to go back and confess to @CAPS11 @CAPS9 how I've felt all along. We drove back to his house and when we pulled into the drive way, nervousness rushed through me. I wobbled up to the door and knocked. ""@CAPS7. Hey."" @CAPS8 made me upset that @CAPS11 father was acting as if nothing was wrong. I walked in, with confidence, and asked him to sit down. I was content with the fact that I had caught him in one of this rare moments of not being drunk. ""@CAPS9, we really need to talk. I feel as though @CAPS3 are making a huge mistake by drinking. I know @CAPS10 addicted and there are risks with stopping but @CAPS3're also endangering @CAPS10 health!"" I basically screamed at him. I poured out @CAPS11 heart as a whole new wave of tears rushed over me. By the time I was done @CAPS11 father sat there with a blank look pasted on his face. He laughed. ""@CAPS10 mother told @CAPS3 to tell me this stuff. Don't worry about @CAPS8. @CAPS10 @CAPS2 doesn't know what she's talking about."" @CAPS11 jaw dropped as he acted as though this wasn't serious. Anger boiled in me. ""@CAPS3 don't even know me! @CAPS3 don't even care about me!"" I screamed then stormed out. I went into the living room and looked straight at @CAPS11 mother and somehow she knew exactly that I wanted to leave. This time the car ride, again, seemed to be filled with silence. Thinking about how laughter is almost always a great thing, I started to cry because, just once, laughing didn't mean happiness. @CAPS8 meant tears." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +20768 8 " Laughter @CAPS1 @CAPS2 @CAPS3 @CAPS4 ""@CAPS5, we've got something to tell @CAPS3."" I knew @CAPS9 they were about to tell me. I saw the signs. I knew that @CAPS8 they went into the other room, @CAPS6 wasn't for some quality time together. They were getting a divorce @CAPS11 the time to tell me had come. As each of my parents gathered around me, I knew that they were about to say something I wasn't ready to hear. The words ""We are getting a divorce,"" rang in my head like church bells @CAPS8 a couple is getting married. The happiest sound @CAPS3 could ever hear. But that was the exact opposite of @CAPS9 was going on right now. As I looked up into the face of my mother, I could tell she had been crying. Where the blue, gray mixture used to meet @CAPS11 become one, @CAPS6 had turned red @CAPS11 irritated. @CAPS6 killed me inside to see her crying, @CAPS11 while this was happening my dad just sat on the couch near me with his head buried in his hands. I could tell that he was thinking that he was so in love @CAPS11 that @CAPS6 all just went downhill, leaving him with an intense feeling of resentment @CAPS11 anger towards my mother. The love of his life, was now his enemy. At seven I couldn't fully wrap my mind around @CAPS9 was happening to our family. I got that one parent would move away, that I wouldn't always get tucked into bed at night by a duo of love, I just didn't understand @CAPS7 this had to happen. My poor little brother. Only four, how could they possibly explain this to him. If I was confused, he had to of been off on another planet. At the thought of my family crumbling before my eyes, I wanted to cry. I wanted to go far, far away from the troubles occurring at home. If a genie had been there to grant my three wishes, I would of used all three of them if I thought there would be a possibility to save my parents relationship. Crying just seemed so much easier than sitting in the living room listening to my parents say ,""@CAPS6's not your fault, don't blame yourself, this is between your father @CAPS11 I."" @CAPS7 did they think those statements made @CAPS6 better? Because @CAPS6 really didn't help. My parents had fallen out of love with each other, @CAPS11 the hope I had that they would get back together was diminishing faster than the amount of rain forest left in @LOCATION1. Plus, there was still the underlying factor that my home was broken. @CAPS11 more importantly than my home, my heart. @CAPS6 was broken @CAPS11 I didn't think there was enough super glue in the whole world to pull the pieces back together. Just @CAPS8 @CAPS6 felt like the whole world was going to crash down upon me, my mother said something to me that I @CAPS1 never forget. ""@CAPS8 @CAPS3 feel like crying, laugh. Remember all the good times that we spent together as afamily."" One by one, each memory began to flood back into my mind. @CAPS8 dad jumped into the pile of leaves we had collectively raked. The time @CAPS8 mom @CAPS11 I made sugar cookies in the winter that ended up burnt, but still made the whole house feel warm @CAPS11 familiar. @CAPS11 especially the wedding that brought the two of them together in matrimony. That sacred bond that only ministers can ensue on people. The one that forever changed their lives @CAPS11 mine. I began to laugh, @CAPS11 then to cry. My parents weren't sure @CAPS9 to think about my sudden change of emotion. They asked ,""@CAPS9's wrong, @CAPS10?"" @CAPS11 I, still thinking that none of these memories would be had again, I then realized something. I realized that even though my family wouldn't be together all the time, that we would still laugh. That @CAPS8 someone slipped on a piece of paper, @CAPS6 would be funny. My tears had stopped spewing out of my eyes like a dam in desperate need of repair, @CAPS11 the realization had finally set in that we would be okay. That with laughter in our lives, @CAPS11 memories in our hearts, we would survive this. From then on, i solely believed in that one statement spoken to me by my mother. ""@CAPS8 @CAPS3 feel like crying, laugh."" The statement that said to me, @CAPS6's okay to be sad, but that as long as @CAPS3 have laughter in your life, everything @CAPS1 be alright. In my heart, I applauded my mom for handling that situation so well. If @CAPS6 had not been for her, I would of kept on with the water works @CAPS11 never stopped for just a second to think about all the hilarious times we had had together. So, as far as laughter goes, don't forget to just take a moment out of every day to remember each punch line to every corny joke, @CAPS6 @CAPS1 @CAPS2 @CAPS3 @CAPS4." 20 25 45 4 4 5 5 4 4 5 5 6 5 5 5 +20769 8 " Laughter, the sense of pure happiness. You are in the moment @CAPS1 nothing else matters, all your worries @CAPS1 stress fall away leaving you with your true happy self. Have you ever had those moments when everything seem too much? Then a friend says something that makes you laugh, once your done laughing you start to cry because it felt so good to laugh. Or when you laugh so hard you fall to the floor @CAPS1 can't get up for what seems hours? Yet looking back you forget what was so funny. Laughter is magical, @CAPS7 behind love. Those two seem to go hand in hand. When you love someone, not just you boyfriend/girlfriend but you friends @CAPS1 family too, you know how to make them laugh or cheer them up, how to have fun with them, @CAPS1 that brings you even closer together. When I'm with @CAPS16 friends the one thing we seem to do most is laugh. We laugh about anything @CAPS1 everything that is even slightly funny. It bring us closer together, sharing a moment of joy. The six of us are very close @CAPS1 will be friends after high @ORGANIZATION1 is over, even if we go to colleges a thousands of miles away. It is because we have shared so many happy memories. Laughter is important in a relationship. We trust each other @CAPS1 can share anything with them even our most important secrets. This story is how we came to be so close. Brightly colored fancy dresses @CAPS1 killer high heels were splayed out across the room. Open soda cans @CAPS1 chip bags. The faint smell of nail polish, flowery perfume, @CAPS1 deodorant lingering in the air. Laughter @CAPS1 giggles bubbling through out the room with the occasional squeal. Pitch black outside but light @CAPS1 warm in. Six of us lounging around the room. Smeared makeup @CAPS1 deflating hair. Sweat pants @CAPS1 baggy t-shirts. We all went from looking our very best to... not, within a few minutes. Yet not one of us cared. We when looking at each other we were able to @CAPS17 past appearances had fun with each other, not their looks. We had just gotten back from the @ORGANIZATION1. None of us had had dates but we still managed to have the time of our lives. ""@CAPS1 did you see him! He was dancing with her!"" ""I wouldn't really call that dancing...."" she made a pelvic thrust, we all burst into a new round of giggles @CAPS1 shouted stuff like, ""@CAPS2, get a room!"" We gossiped about what we saw, who was with who, pretty dresses, hot @CAPS4, creeper @CAPS4, slow dances, the music, even our @CAPS8 we hid our cups so we would know which one was ours when we wanted to use it again.We had all been friends, but recently we had been becoming closer. Starting to move from friends to best friends. It was at least @NUM1 @CAPS3. Everyone was exhausted but was forcing themselves to stay up with caffeine @CAPS1 sugar. You @MONTH1 ask why, but I'm not really sure. Maybe because we always seem to have so much to talk about, because we enjoy each others company, or just because we can, so why not?""@CAPS4 I think we need a picture, a picture of the six of us."" I said.""@CAPS5!"" ""@CAPS6""""@CAPS7 now? I'm a mess!""""I've got just the thing!"" @PERSON1 takes off running upstairs to grab something.""@CAPS8 should we sit?""""@CAPS9 the bed?""""@CAPS10, @CAPS5! Scoot over fatties""""@CAPS11! I'm not fat, I'm festively plump!"" We all cracked up to the reference of @LOCATION1 as we stared to squeeze into a corner of the squishy full size bed. @PERSON1 @CAPS1 @PERSON1's mom arrive back into the room. @PERSON1 was carrying a old @ORGANIZATION2 camera that print out the picture immediately after you took it. She gave the camera to her mom @CAPS1 jumped @CAPS9 to the bed. We all squished together, barely enough room to breathe.""One...Two...Three!"" @CAPS12! the picture came out. ""@CAPS13 take one more while the first is developing. Again, one... two... three!"" @CAPS14! @CAPS12! ""@CAPS15!!!"" We all screamed in unison. The bed broke! we had broken the bed! We all sat there clinging to each other in total shock.""@CAPS16 bed! You @CAPS4 are faaaaat..."" @PERSON1 said while trying to contain a giggle. Suddenly we were in hysterics. Even @PERSON1's mom was laughing. We were one big throbbing pile of laughter. Only the corner of the bed had broken so we were all pulled down into that corner. Then someone started tickling, it was war. Every girl for themselves. It was a mass of bedsheets, wiggling fingers, bare feet, biting @CAPS1 a whole lot of laughing. ""@CAPS17 the pictures have developed."" The first one showed us sitting together smiling, but the second one was taken just as the bed broke. It showed the shock @CAPS9 our faces as we held onto each other for support. Not only did it bring us literally closer together but it started our amazing friendship." 20 26 50 50 4 4 3 4 4 4 5 6 6 6 5 5 5 6 6 6 4 5 +20770 8 " Laughter is indeed an important part of anyone's day. For whatever reason, humans like to laugh, and they like to make others laugh as well. But that reminds me of a funny story... There was this time that I had to take a writing test. In fact, the test was very much like this one. In fact, it was this one. I had to write about one of four topics. Unfortunately, all four of them were about as vague as they could possibly be, and this made picking one rather challenging. After staring at the screen for a good fifteen minutes or so, I began to silently laugh at my situation: I have to write about one of four things when not a single one was even remotely interesting. For some reason, I found my problematic situation amusing, as I am kind of weird that way. But then it hit me... one of the four topics was about laughter... why not write about myself laughing at the irony of my situation? Yes, all I had to do was tell a true story about a time I laughed, so I used this delightful vagueness to my advantage. The topic did not state that the laugh had to be an actually audible one, nor did it state what kind of laugh it had to be, so I figured a silent laugh at irony would do just as well as an audible laugh at something silly. So now I had my topic. To make things even more amusing, as I wrote about myself laughing at the fact that I had to write about myself laughing, I began to laugh at how silly the task I was carrying out was. However, I began to worry that whoever is grading these things @MONTH1 not find this as amusing as I did, which would perhaps hurt my grade. But that possibility served only to make the situation even more ironic, and consequently amusing. You @MONTH1 think that I am easily amused, but to that I must say: well, yeah, I kind of am. I can find almost anything amusing, but that, I find, is the beauty of laughter. It is so abstract, that each and every person experiences it in differently. Some people @MONTH1 find very simple things considerably amusing, but others @MONTH1 be not so easily amused. These differences are part of why interacting with other people is so enjoyable. As I said before, humans like to laugh, and we like to make other people laugh with us. And regardless of the way you @MONTH1 interpret laughter's abstract form, you've got to admit: it's kind of funny." 21 18 39 4 4 4 5 5 4 3 3 3 4 4 4 +20771 8 "Someone once told me that laughter is the key element of comfort. I believe that @CAPS7 is one of the most important part of any relationship. @CAPS7's what brings people together. A perfect example; about two years ago in the middle of fall, I was crying about my dog passing away. My ex-boyfriend tried everything to make me feel better but nothing was working. I was so hurt I told him I just wanted to be alone and he understood. As he was walking away he slipped and landed in a puddle. The way he fell reminded me of the cartoonSpongebob @CAPS1, when @ORGANIZATION1 slipped on a banana and fell hard. I looked at him and his entire back-side was drenched. His cheeks were cherry-red with embarrassment. I just busted out laughing, I couldn't help @CAPS7. He saw that water had gotten all over me, then he started laughing. That was a moment of comfort brought on by laughter. Whenever we had a promblem, we could always laugh @CAPS7 off. That's actually how I met him. I was hanging out with a couple of my friends and we decided to go see a movie calledStep-@CAPS2. There was this one seen where one of the characters said, ""@CAPS3 @CAPS3 that was so funny, last time I heard that I laughed so hard I fell off my dinosaur,"" then other character looked like he was going to cry. I thought that was so funny. After the movie was over my friend @PERSON1 suggested that we go back to his house. When we got there, @CAPS4 was waiting on the steps for @PERSON1. @PERSON1 stood back a second then said, ""aw were you waiting for me little one."" @CAPS4 replied with, ""@CAPS3 @CAPS3 that was so funny , last time I heard that I laughed so hard I fell off my dinosaur."" I laughed so hard I almost went the bathroom on myself. @CAPS4 and myself were the only ones laughing and we just clicked. If he wasn't funny I can honestly say I would've never been with him. I love laughter. I believe @CAPS7's the easiest way to trigger the best emotions." 15 18 33 3 3 3 3 3 3 3 3 4 3 4 4 +20772 8 " On @CAPS1 @CAPS2 @CAPS3 @CAPS4 is a true story about a time that i had with two of my friends/squad member named @PERSON3 and @PERSON1. When we were walking @CAPS3 cheer-leading practice on a @DATE1 @TIME1. We had a good laugh going @CAPS3 @NUM1 and I were getting cold, because we were in shorts and sweatshirts, @CAPS8 we put on @CAPS1 hoods. @CAPS6 @PERSON3 wanted @CAPS3 put her hood up also @CAPS8 she didn't feel lonely, but her hood was @CAPS3 small and with thick hair it just made it worse for her. @CAPS8 she tired @CAPS3 put her hood on anyways and her hair went on the top of her head and her curls are at the bottom of her hair. @CAPS8 when when she put her hood on it made her look like a poodle.When we got @CAPS3 the end of the block that I live on @PERSON1 said her foot was hurting, @CAPS8 i told her i would give her a piggy back ride. @CAPS8 she got onto my back, and i told her @CAPS13 we get @CAPS3 the end of this block set me down and we can cross the street @CAPS6 give me a piggy back ride, @CAPS8 @PERSON1 gave me a piggy back ride. @CAPS8 when we crossed and @CAPS6 we told @PERSON3 that it was her turn @CAPS3 give one of us a piggy back ride, i was about @CAPS3 get on @PERSON3's back the @PERSON1 said ""@CAPS5 just got a turn! Now it's my turn!""@CAPS6 i was like ""@CAPS7 @PERSON1. Okay @PERSON3 give me your backpack and water bottle."" @CAPS8 @PERSON3 gave her stuff @CAPS3 me and gave @PERSON1 a piggy back ride. @CAPS6 @CAPS13 that we got @CAPS3 the end of the block, I told @PERSON3 that she now had @CAPS3 give me a piggy back ride. @CAPS6 @PERSON3 was like ""@CAPS9! I'm @CAPS3 tired"" In the end of that conversation she gave me what i wanted.At the end of that last block @PERSON3 set me down and @CAPS6 we crossed the street. @CAPS6 @CAPS1 @ORGANIZATION1 drove by us yelling ""@CAPS10!"" @CAPS6 we turned around @CAPS3 see who yelled that at us, and we found out it was @CAPS1 @ORGANIZATION1. @CAPS6 I said ""@CAPS12 look it's @PERSON2! She is actually here on time!"" @CAPS13 @ORGANIZATION1 @PERSON2 us, we three girls started @CAPS3 just bust out laughing. We started @CAPS3 laugh because of what @PERSON2 yelled out at us.When @PERSON2 went @CAPS3 go park her car, we just started walking up @CAPS3 her @CAPS3 talk @CAPS3 her, as she was getting out of her car.@CAPS8 when @PERSON2 got out of her car we were just getting @CAPS3 her car. She walked up @CAPS3 us and we started @CAPS3 talk and walk into the school where we practice. As we were walking i said @CAPS3 @PERSON2 ""@CAPS5 are actually here on time!"" @CAPS6 @ORGANIZATION1 responded by saying ""I know right?!"" We finally got @CAPS3 the doors @PERSON2 said ""@CAPS12 everyone is here today!"" @CAPS8 that is a time that i had a good laugh with more @CAPS6 just one person. Going @CAPS3 that practice was a blast that night. That night was fantastic going @CAPS3 cheer leading practice. Hope @CAPS3 have that much fun going @CAPS3 practice again. " 15 18 33 3 3 3 3 3 3 3 4 4 4 3 4 +20773 8 " Freshmen @CAPS1 All freshmen @CAPS1 was a @CAPS1 of fun. There was this boy who made me smile and laugh. I swore I was falling in love. We had one class together. Which was called @CAPS2. Passing each other in the hallway just would make my @DATE1. We met in a class that we both didn't care for. I would ask him for help even though I didn't need it just so I could talk to him. We also would see each other at the swimming pool because his brother swam and I did also. I would see him during the @DATE1 but not very often. Instead of him ""helping"" me we would sit and talk about our lives how they were at school and at home. First semester is over and he got moved out of the class to another class period. We would still talk at the pool and see each during the school @DATE1. He would now give me hugs in the hallway. We started to become really close friends. Talking drew us even closer. Laughing was big part in our conversations. We found out that we have a lot in common. Like hunting, wheeling, foods, favorite dog and our personalities are so much alike, that it seems as if we grew up around each other. @MONTH1 came around one more month of school. I started to go to his house every once in awhile. He came to mine more often. In the beginning of @DATE4 strawberry festival came around and I asked him to go with me. He said okay and his parents also went but with my parents. That @DATE3 was fun and enjoyable. The end of @DATE4 was finally here, school was out in a @DATE1. Summer break was here. The @DATE1 @DATE1 of school was fun. It was going to be so nice not to have homework over the @DATE3 or during the week. All we did the @DATE1 of school was sign @CAPS1 books and tell funny stories about the school @CAPS1. After school I went to swim practice and after practice he was still at the pool waiting for his brother. We were outside talking and all the sudden out of know where he asked me ""will you go out with me""? I said... yes! He made me one of the happiest girls in the world that @DATE1. Today, in @DATE2 we are still dating. One and only relationship I have ever had. I hope we @DATE1. He tells me almost every @DATE1 that he is going to marry me. He tells me he doesn't know what he would do with out me. I told everyone I swore I was falling in love. Now everyone knows I fell in love. I fell in love at first sight. We talk and laugh all the time we hardly ever argue." 17 17 34 4 4 4 4 3 3 4 4 4 4 3 3 +20774 8 "When I was younger I liked to go fishing a lot. I always went with my two friends @PERSON2 and @PERSON1.We loved to catch @CAPS1, @CAPS2 head, and sometimes @CAPS3. We did a lot of fishing while we were camping. One day when we were fishing for @CAPS2 head and it was not going very well. It was very cold and it was even snowing. We were about to leave when @PERSON1 hooked one on his last cast. He yelled t me that he was going to catch this on so I jumped off the four-wheeler and ran over to him. When I saw the fish I thought it was a @CAPS1. It was by far the biggest @CAPS2 head that we have ever seen. While he was reeling it in he said that it was very strong and I could see that he was having trouble. After a few minutes he started to get the fish by the shore. We all started to relax and think that the day was going to be good now. Right as @PERSON1 told me to get the net he slipped and fell right in the river and he let go of the pole.At this time I thought we lost a fish and a pole but @PERSON1 was not thinking straight and he jumped in the water after the pole. Once @PERSON2 and I saw him swimming and struggling we decided to jump in and help him catch his fish. The three of us were swimming as fast as we could in the cold water after a pole and I was almost to it. Right as I got about a foot from the pole the fish started to swim faster. While I was trying to get the pole I was not focused on where I was going and I got caught on a tree so it was up to @PERSON1 and @PERSON2 to get the pole. The chase for the floating fishing pole had now gone on for over five minutes and all of us were very far down the river. Now @PERSON2 was very close to the pole and @PERSON1 and I were just catching up to him. Suddenly, @PERSON2 yelled that he got the pole so we all swam to the shore to reel in the fish. At this time we were very happy that we went in the ice cold river to after this fish and we could not wait to get home and dry. After a few minutes @PERSON2 was still reeling in the huge fish. He said he did not know how he was going to get it to the shore. Once the fish got very close to the shore @PERSON2 jerked the pole as hard as he could to get it onto the bank but as he pulled the line broke and the fish got away. All of our hard work was not for anything. After that we decided that it was time to just go home and sit by the fire. A lot of people I tell this story think it is funny but personally i don't see anything funny about swimming in the snow to break your fishing line. One good thing is that this was the most memorable day of fishing I had ever had." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20775 8 " One time when i was spending the night at @ORGANIZATION1's she wanted to sleep oustide in a tent. @CAPS2 was @DATE1 and we always tryed seeing eachother anytime possible because she had to go back to boarding school alot. So her mom set up the tent for us on the deck, and after we ate dinner, we grabbed our things and went ouside. She was on the phone with her boyfriend and i was on the phone with mine, and both of them were best friends. @CAPS2 was like two best friends dating two bestfriends, and we were closer then ever. My boyfriend had to get off the phone because he had work in the @TIME1 so @CAPS2 was just @LOCATION1 on the phone. I started saying really funny things and she just started laughing so hard that she snorted and at the time she was still on the phone with her boyfriend. At this point i was just cracking up with laughfter, @ORGANIZATION1 started laughing even harder because she saw me laughing and pee'd her self while she was on the phone with her boyfriend. For some reason she forgot that she was on the phone with him and started laughing even more after that happend, so all of this was going on at around one in the @TIME1 and i was surprised her mom didn't come out and yell at us for being loud. When i looked over and saw that she had pee'd her self i yelled out ""@CAPS1 my god, @CAPS3 pee'd your self @ORGANIZATION1!"" @CAPS2 was the most funniest thing, i dont think i have ever laughed so hard in my entire life. So her boyfriend finally got her attention and said ""@CAPS3 should probably go take care of that,"" and then they got off the phone. She was really embarassed after that, i mean i would be too if that happend to me." 15 18 33 3 3 3 3 3 3 4 4 4 4 4 3 +20776 8 "@ORGANIZATION1 is one of the many joys I love to share with people. I absolutely love to laugh, I don't know where i would be if I didn't laugh. My cousin; @CAPS1 and I, are usually together for most of the @DATE1 and the truth is we are not supposed to have energy drinks. @CAPS1's dad; @PERSON1, gave us a monster to split and that day we were going to @ORGANIZATION2 in @LOCATION1. After about ten minutes of us drinking the whole monster, me being the one who drank most of it, was the one who was staying calm. @CAPS1 on the other hand, who drank a couple of sips, was going crazy. She was running down the aisles and tripping over her own feet. She almost tipped the cart over with me on the end of it. @ORGANIZATION1 hysterically for no apparent reason is normal for her. Wendy; @PERSON1's wife and my second cousin started to get hungry, so we went to go eat pizza at the @ORGANIZATION2 cafe that is there. My mom had called me and I was trying to get my phone from my pocket to answer while trying to hold on to my plate of hot pizza. I handed my plate to @CAPS1 because my plate was slipping from my grip. She was holding her food in her other hand, she felt the bottom of my plate and said it was really hot so she passed it off to @PERSON1 who wasn't paying attention and he didn't have a good hold on it and my pizza dropped on the floor, pizza side down. It was so embarrassing everybody was looking at us. After that embarrassing moment, @PERSON1 realized that he forgot the churos, so he told @CAPS1 to go get them. All three of us realized his mistake as soon as @CAPS1 left, cause @CAPS1 is a klutz and we probably jinxed it by saying "@CAPS1 is probably going to drop them". We were a little surprised that she hadn't dropped them yet, as soon as we thought that and she set them on the table, one of the churos fell off the table and rolled out of the package. We were @ORGANIZATION1 so hard that we couldn't breathe. @CAPS1 was so embarrassed by her mistake that she turned bright red. We felt bad for poor @CAPS1, but we couldn't help but laugh because of how funny it was. She knew it was funny but she didn't want to laugh at herself. One of the things i usually say is if you can't and aren't willing to laugh at yourself then you aren't having fun. That's why i believe it is so important to laugh cause you gotta learn how to have fun when it is in a situation that you need to laugh at yourself but yet aren't wanting to. That's one of the biggest ways to have fun is by @ORGANIZATION1, because you know you made a small silly mistake that you think everyone in the world saw, all you need is to laugh it off. But you wont cause you feel too embarrassed or too ashamed to admit that you made a little mistake. Sometimes it's your job to go over to them, pat them on the back and tell them that everybody makes mistakes, you gotta learn how to be silly in a tough situation, and that nobody is perfect. Tell them to laugh it off, it helps and you will feel better once you realize that when life knocks you down just get back up cause that's what life is all about. That's the only way you can learn from your mistakes and from life as well. Laughter is really important the more you laugh the better you feel and the better you feel the more fun you will have. Laughter fixes everything, it is a bandage for the little things that happen in life." 18 15 33 4 3 4 4 3 4 3 3 4 4 3 3 +20777 8 " A @CAPS1 @CAPS2 I once heard ""laughter is the best medicine."" I believe that is true. I could laugh all day long, finding anything @CAPS9 everything funny in @CAPS3 world. Laughter is important to me, without it, life would be boring. Sometimes Laughter is good @CAPS9 comes from the heart. Other times it can be cruel @CAPS9 mean. I like to avoid the cruel @CAPS9 mean laughter, @CAPS9 just stick to the good laughter. When one of my friends is laughing @CAPS9 smiling, it makes me want to know @CAPS10 they're laughing about, so I can laugh too. Birthdays are fun, laughing usually comes with fun. I remember my twelfth @CAPS2, I decided to have a party at my house. I wanted it to be very special so I invited my closest friends, @CAPS9 my cousins. Family always makes everything special. My cousin @CAPS9 I are pretty close, she was born nine months after me, so we are both the same age for a little while. We always have a good time, both of us acting crazy @CAPS9 always laughing. For my party my mom made rainbow sherbert punch, it was delicious. Everyone had fun, @CAPS9 soon the party was over, but, my cousins were not leaving until the next day so we continued the party. I was in the kitchen getting more punch, my cousin came in @CAPS9 wanted some more too. I poured both of us a glass. ""@CAPS3 is so good!"" my cousin @PERSON1 said. ""I know that's why I had my mom make it"" "" @CAPS4 you wanna hear a joke?"" ""@CAPS5."" @PERSON1 said. ""@CAPS6, @CAPS7 once was a kid named butt itches, he was really sick @CAPS9 one day died, his mom cried to the doctor,""@CAPS8 my poor butt itches!"" ""@CAPS9 @CAPS12, @CAPS4 you wanna know @CAPS10 the doctor said?"" ""@CAPS10?"" @CAPS11 @PERSON1. ""@CAPS12 itch it!"" @PERSON1 had just took a drink of punch when I said @CAPS3. She spit the punch out of her mouth while laughing, it got all over me. Usually when someone spits, or spills something on you, you get mad. I started cracking up laughing, @CAPS9 so did she. ""@CAPS8 my gosh! That's so gross."" ""@NUM1 @CAPS9 I could not stop laughing. The joke was not that funny, it was the punch all over me @CAPS9 the kitchen. We laughed for at least fifteen minutes before even realizing that both our moms were standing in the kitchen. They were just staring at us wondering @CAPS10 in the world had happened. You would think that getting punch spitted at your face, on your @CAPS2, would make you mad. @CAPS3 is why laughter makes ordinary days special. In my case laughter was the shortest distance between @PERSON1 @CAPS9 I. It would have to be short for her to get that much punch on me. Laughter made @CAPS3 @CAPS2 extra special, because I will never forget my twelfth @CAPS2." 20 20 40 4 4 5 4 4 4 4 4 4 4 4 4 +20778 8 " @CAPS10 @CAPS10 @CAPS10 , @CAPS1 @CAPS1 @CAPS1, and now even @CAPS2 ( @CAPS3 @CAPS4 @CAPS5). Laughter! some say it is the best median. It can brighten a cloudy day, cure a case of the blues, and even sooth a breaking heart. On the other hand a simple sinker or soft giggle can break a heart to! I have had first hand experience listening to goofy squeals being thrown my way and not because I told a witty joke simply just for siting, siting in my @NUM1 grade class room and becoming the but of my pears jokes. Before I go on with this story there are a few things @CAPS6 must know. Let alone that all @NUM1 graders have a common undeniable erg to bring people down so they can build them self's up. I was a @NUM1 grader who's weight had reached the point at witch my doctors were telling me ""@CAPS6 should look in to a weight loss program."" this news alone was crushing my self a steam and my class mates laughter soon brought me to tears. I can recall a particular @CAPS7, perhaps one of the worst. I was on the buss and almost home when @NUM4 girls who i thought were my friends started laughing. Little did I know it was me they were laughing at so I joined in what i thought, and what seamed to be some @CAPS8 giggling. Suddenly they stopped, looked at me started whispering to each other then one of the girls blurted @CAPS4 between chuckles ""@CAPS6 look like a beached wail!"". She said this so @CAPS5 the whole buss herd and immediately burst in to side spiting laughter. I walked down the same street i walked down every day were the buss dropped me off. That day it seamed more gloomy then ever before. This is the day I decided I was never going to set foot on the buss again! It is encounters with laughter like this that broke my heart but also gave me a strong motivation towards loosing weight and regaining confidence. Days, weeks, months, even years have passed scene that day in the @NUM1 grade. I'm @NUM6 pounds lighter, a varsity cheerleader and proved of who I am. The tables have turned for me in many ways. I am no longer the person who gets laughed at because of my weight, but some times i catch my self sometimes mindlessly cracking a joke or two at some one else expense. I can recall just the other day, I was with my best friend at the mall. She spotted this girl who was over weight and immediately started giggling and elbowing me in the side trying to draw my attention to her like she was some freak show. When I saw the girl my first reaction was a hideous @CAPS3 but just as soon as I did so i felt the same pain I felt when that buss full of my pears laughed at me. I immediately stopped, realizing the pain my laughter could have brought her. My self, I am a very funny person and will do just about any thing for a @CAPS3. But when it comes to laughing at people and hurting there feelings this is were i draw the line because i know how it feels to be in there position and i hope that my story helps open the eyes of u and others to the harmful effects some laughter can have. So go ahead and @CAPS10 @CAPS10 @CAPS10, @CAPS1 @CAPS1 @CAPS1, and even @CAPS2 just not at the expense of another persons feelings." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +20779 8 " Laughter is a big part of my life and I believe @CAPS1 have to have laughter in a good and healthy relationship. This is a true story about laughter and it's affects on my life.Laughter is a good thing for your body, mind and soul, it lightens my mood when I'm feeling down. I'm glad to say I have lots of relationships, many of which are blessed with laughter. My mother and I have a good relationship together, and almost any time we're together in the same room there is bound to be laughter. My mother and I laugh all the time, over silly things. We laugh just to laugh and most of the time, we don't even know what we're laughing at. She can make me laugh at the most ridiculous things. I'm also pretty sure she's the only person who can get me to spit my drink all over the dash board just because of a silly face she made. My mother isn't the only one I can have a good time with. I remember a conversation I had with a good friend of mine, it was about the way people laughed. I told her about how I had noticed that people usually laughed in different vowel sounds, like a, e and o. It seemed odd to me that I had only ever heard people laughing in those vowels and not I and u. She thought the same thing I did, so we came up with this idea to laugh in the vowels I and u. Of course people were too busy with their own lives to notice us laughing oddly, but it was fun all the same. @CAPS1 never really realize how hard it is to not laugh until the occasion is upon @CAPS1. My mom and I were at my aunts house trying desperately not too laugh. We had all decided to do a facial cleansing mask we had seen on @CAPS1 @CAPS2. The mask itself was made out of whisked egg whites and toilet paper. @CAPS1 dip the toilet paper in the egg whites and plaster it all over your face. @CAPS1 have to wait at least fifteen minutes or until it's completely dry before @CAPS1 can take it off, other wise it doesn't work. The three of us did as the instructions told us, but were dismayed when we saw the final results of our efforts. We weren't upset because we looked repulsive we were upset because we all looked like a bunch of crazy ladies, and we found it exceedingly difficult not to burst into laughter. The site of my mother and aunt was so ridiculously funny I had to leave the room for fifteen minutes so my face could dry. After about fifteen minutes I came back to find my mother and aunt in the bathroom drying each others face with a hair dryer. After seeing this I just couldn't stand it any longer, I started crying with laughter, my mask cracked and all my hard work went down the drain. that day was one of the funniest days of my life, we laughed together so hard our abdomens hurt. I love to laugh as I've said before and I personally have many different forms of laughter. when I laugh really hard I laugh all the air out of my lungs and forget to breathe. What it looks like to others I have no clue but I must be a red faced girl rocking back and forth. Other times I kind of have a manly ha ha but if your lucky @CAPS1'll get to hear me snort. The thing I'm trying to say is that laughter is a good thing and it has made a big difference in my life, I don't know what I would do without it. I love to laugh, I think I would die if I couldn't laugh." 20 17 37 4 4 4 4 4 4 4 3 4 4 4 3 +20781 8 " The laughter in me. To me all you need to do to get through a tough and horrible day is a good @CAPS5. It gives you hope throughout the day, and no matter what kind of mood your in, when leaving to work, going to school, or really any activity that involves a ""sigh"" moment. For me I get that feeling about school, but I can always count on my best friend, @PERSON1. Everyday she manages to say something totally off topic and we'd end up dying of laughter at the top of the stairs near the science labs were we eat lunch. As people walk by they give us weird looks, we don't care because we understand each other. To me @CAPS9 is my way of reliving stress.My @CAPS1 agrees with me her name is @CAPS2 I call her @ORGANIZATION1. We've been best friends since the second grade. She is my rock. She inspires me to do something with my life, something more than working at some fast food restaurant. I hang out a lot at her at her house and we share so many great and fun memories. Its really bad when we are around each other, its like one look at each other and boom!, I'm on the floor not breathing because I'm dying of laughter. I don't know what it is but, its like when we see each other its a rush off all the good times we've spent coming together all at once. Sometimes we @CAPS5 hysterically over nothing. I doesn't make sense but I guess that doesn't matter when your hanging with your best bud. Laughter is an important part of my relationship with anyone. Its shows me how fun a person can be and if the have a sense of humor. It shows me that they can smile and not some stuck up want to be perfect robot. All @PERSON1 and I talk about is boys and boy problems and it makes me @CAPS5 and giggle, but when we are in our fifth period class forestry and fire we are like caged monkeys in a zoo. It's like we are magically ""high,"" all of a sudden have this out burst of energy. We sit next to sit side by side to one another and we tickle each other and @CAPS5 really loud. By the end of class I make a paper ball and we play paper soccer ball its fun especially when the teacher gives you dirty looks and tells you to stop and you don't do it. Lets just say that her face turns a very bright red color.Nothing compares to how much I @CAPS5 when I'm with @ORGANIZATION1. When I used to go to @CAPS3 I had three classes with her @ORGANIZATION3, @ORGANIZATION2, and @CAPS4. We also had lunch together, but anyway as I was saying, I swear we had a not stop @CAPS9 war everyday. My @CAPS5 is more like a cackle mixed with giggling. Some people like, some thinks its cute, others think I @CAPS5 funny( The weird kind of funny). In @ORGANIZATION2 she'd stand next to me and she'd look at me weird, or said something that didn't come out right, or sang obnoxiously, anything she did cracked me up it was so distracted when she was around but so much fun. I swear I got all of my exercise from @CAPS9 with her. At home when my family is all together, are way of laughter is mostly picking on one another. It's different than laughter with your friends. We make fun of how my sister @CAPS6 was supposed to be a boy because everybody thought she was going to be a boy when she was in our mothers stomach. We made fun of my brother for being the only boy out of five kids. We make fun of my sister @PERSON2 for being the shortest one in our family. I can feel the difference between laughter. It's mostly criticism really.I @CAPS5 mostly because I feel more alive it gives me something to live for everyday in stead of ""@CAPS7 great, another day to try to get through, @CAPS8...no."" @CAPS9 for me gets me motivated for the day it's like my drug to get through life. It gives me an easy way in to communicate with others. I thank @CAPS10 for giving us the ability to @CAPS5 because without it I would lose my mind and have a hard time making friends. ""That's how I make friends I @CAPS5."" " 15 20 40 40 4 3 4 4 2 3 4 4 4 4 4 4 4 4 4 4 4 4 +20783 8 " The @CAPS1 @CAPS2 @CAPS3 The beautiful flames danced so peacefully in the @CAPS1 air. The faint shimmer of the blaze was the only light we had. As I stared at the majestic destruction of the warm, humid air, I felt someone or something watching me from behind. The weight of the sixty pounds of wood started to get heavy as I walked from one side of the house to the other. Finally, I reached the trailer just to be told by @PERSON4, my best friends mom, the she didn't think we would need that much wood. I thought to myself the this was going to be a long weekend. After about two hours of packing clothes, food, water, sleeping bags, pillows, and tents we headed out for @ORGANIZATION1. It would be about two hours of driving, that felt like twenty minutes. @PERSON3, @PERSON1, @PERSON2, @PERSON4, and I were the worst group of people to put into one car. We all yell and fight and punch at each other just for fun. Once we arrived at our destination, we sprung out of the car like a hive of angry bees. I race @PERSON2 to the @ORGANIZATION1. the second we were done unpacking our belongings. The first few days were spent basking in the one hundred degree heat, swimming, and flirting with the random girls we found around the camp site. We slept as little as possible, so that we could enjoy the friendship and just pure fun we were having. During day two, we decided to go mountain biking. We were on those bikes for hours before we noticed the sun was going down. In the moment we all turned and saw the most extravagant view the earth has ever created. There were burst of orange and red. The colors ricochet from cloud to cloud. After hours of riding our bikes in the heat, we chose to go for a swim. As we swam I felt something touching my foot. Then all of a sudden there was a hand on my foot. When I looked down to see who was grabbing me, it was only a stick. As I looked closer, it turned out to be a root system of a fallen tree. It looked fake, as if someone or something had put it there. This though sparked a conversation about @CAPS2 for the day to come. The sparks danced together as if they were @CAPS4 and the @LOCATION1. The only light we had was the brilliant glow of the fire. @PERSON3 was playing a gorgeous melody on his guitar. As I listened and enjoyed the flawlessness of nature, I felt someone watching me from behind. I nudged @PERSON3 and when we turned around, our hearts stopped. There was a spinning green light, almost twenty feet in the air. I spoke the word everyone was dreading, @CAPS2. I had slowly stood up and the light started spinning faster. I quickly grabbed the machete, that was next to me, and approached the light. As I grew closer, I could make out small figured in the @CAPS1 shadows. Then, an eruption of children laughing came booming from the direction of the light. A little boy emerged, unable to control is laughter, and ran away. After returning to my seat next to the camp fire, I thought about life. What if @CAPS2 were real and they are watching us. No, there not real. I laughed it off, and continued my week long vacation." 18 15 33 4 4 4 4 4 3 3 3 3 3 3 3 +20784 8 " What makes you laugh? Laughter is a really good stress reliever. There are many different types of laughs around the world, some people's laughs are really high pitched and others @MONTH1 be very deep and low. Some other people snort and make other animal noises. I know that for me I have many different types of laughs for all the different emotions I feel. When I am upset I have a very distinctive laugh. Although when I am upset I laugh to make myself feel better and have a better day. One time during a basketball game, I was having a really off night. Fouls were being called on me left and right. Normally when this happens to me, I get really mad and I lose my head and end up being taken out of the game and sitting on the bench. I absolutely hate sitting on the bench. This time when I got a foul called on me after already being threatened to be ejected from the previous game for the same reason. I decided to just smile and laugh about the foul and told myself to shake it off. My coach was very pleased with my change in attitude and just told me to play defense with my feet and to shake the bad call off and keep my head. When you are mad a person can take a lot away from the demonstrative looks you can make, although if you just smile and laugh about it, their reactions will be a lot different. I am not the only one on my basketball team who feels this way. A lot of us just laugh about calls that are made and just shake them off. I am also a cheerleader. When you are a cheerleader you should always try to have a smile on your face at all times, and make it seem like you are in a happy mood. I play in a basketball game every night before I go out and cheer. I have to do my best to keep my cool while playing so that I'm in a good mood for after my game when I do cheer. Laughing helps me a lot with keeping my cool and relaxing while I am playing, so I'm in a good mood for cheer. My coach is also very huge on people having positive attitudes. She tells us at practice that if we just smile and laugh about things that go wrong the outcome will be a lot better then if we have bad attitudes about it. I took this in very strongly and it stayed with me. My coach inflenced me to have a better attitude and since that day I have tried to have a positive attitude. I keep my positive attitude by just smiling and laughing when things in my life go wrong. A laugh can go a really long way. I personally think laughing helps express the mood you are in. Laughing is also good for the body. Laughing can make you feel one hundred times better when you are feeling down in the dumps. I try my hardest to be in a good mood at all times. I really don't like being in a bad mood, it's really not fun. Laughing makes me feel a lot better. I think that laughing is a very good function for the body. I feel that when I laugh it makes my mood better and the moods of the people around me a lot better. Laughing is a magical feeling that goes through out your body and makes you feel warm inside. I think everyone should laugh at least once a day. It will make your day that much better." 17 20 37 4 4 4 4 3 3 4 4 4 4 4 4 +20785 8 " Laughter is the so called ""best medicine"". I do not believe that to be true, however my nephew @MONTH1 have other thoughts. My nephew was ""sick"" for every school day for two weeks. ""@CAPS1 just doesn't like school"", I would tell his grandma. The thought of school being no fun and not liking it changed drastically for my nephew. We let him think it was going to be another boring school day, but it was party day for them. Every two weeks if they work hard they get a party, lucky for @CAPS2 they have been working diligently. The stubborn side of my nephew was showing it's ugly face that morning as @CAPS1 fought every move we made. When we walked through that narrow door @PERSON1 did something uncharacteristic, to him and five year old's all over the @LOCATION1. @CAPS1 stood as still and silent as a marble statue. It couldn't have been better prepared! Streamers, balloons, food, party hats, and bags, they went all out for the first one of the year. The aroma made my stomach gurgle with desire. Above all they had desserts, cakes, cookies, pie, all of this cooked thirty feet from you. so you walk through that door and you mouth instantly fills with warm saliva. These children played with a ninja like ability, one moment in front of you, you blink, and just as fast as you blinked they disappeared. It took me an hour at least to find @PERSON1 in that small room. As I realized though it's easier to sit down and let them find you. As my butt hit the cold, hard, and nearly unbearable surface @PERSON1 was in front of me. @CAPS1 had this ear to ear grin on his face that scared me, @CAPS1 never had that big of a grin on his face unless @CAPS1 had a plan. @CAPS1 definitely had a plan, in seconds my face was soaked. @CAPS1 had been concealing a squirt gun behind his back, and had the escape route planned out. With the chairs and the short tables how they sat long legs and weaving through them did not go well together. It was extremely difficult to catch up in the room, but once we hit the hallway and I could extend my legs it was an easy run. His ear to ear grin disappeared once I caught him, but the laughter on both sides did not. @CAPS1 @MONTH1 have got my face but I got his head! My nephew loves school now. It's almost the end of his first year, and they still party hard, but thanks to us no more squirt guns. I think if we would have waited any longer it would have taken some more work to get him to like school. @PERSON1 is a very smart, athletic and good child. @CAPS1 will be just fine in school, plus @CAPS1 is strong so I pity the child who fights him." 22 20 42 5 4 5 4 5 4 4 4 4 4 4 4 +20787 8 " I know you guys listen to the same things over and over again, but I also know that alot of people don't really answer the prompt that you give them. Well I'm sorry because I was not able to answer the prompt either. I cannot remember when the last time I had a really good @CAPS3 within a couple of years, so I will tell you why laughter is special to me instead. What's so special about laughter? For me laughter helps us in many ways. I will talk about how laughter is good for my health, how everyone's laughs are different and even make us @CAPS3 at them. Also why laughter is so special to me. I have always felt this weird feeling in my head after I laughed. I think it's because endorphins are being produced into my brain. If I @CAPS3 too hard my stomach hurts because laughing also burns calories and works out my abs. I also think it helps all three sides of the health triangle. My social life makes me @CAPS3 with people. Emotionally laughing makes me happy. Also physical is always funny when you work out with a friend. I think that everybody's @CAPS3 is unique in it's own way. I also know that sometimes it's funny to listen to other people chuckle, snort, or sound like a mouse. Our laughs are another thing that just makes us, us! Laughing to me is special because of all the people who make me @CAPS3. My friends are family I have chosen for myself. My family makes me @CAPS3 and be happy everyday. It's special to me because those people are special to me. Laughing with my father is nothing compared to me laughing with my mother. Laughing with my friends will never compare to me laughing with my significant other. My life is all about laughter and it's special to me. It's not like chewing a piece of gum. It's a whole other thing. Nothing is more fun then having a girls night and laughing all night, or even going out dancing and having the most romantic night of your life. Laughter is a matter of life. So @CAPS1, @CAPS2, @CAPS3." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20790 8 " Laughter has been a nonchalant but steady and strong force for me in many relationships. I believe that laughter is useful in getting to know people you've just met and growing closer to people you care about. In my opinion @CAPS2 brings people closer and can change a bad situation upside down. Getting enough bravery to gain new friends, ask this girl out and eventually develop a good relationship with her, is where laughter played an important role. @CAPS2 was the @DATE1 I was fifteen and a sophomore at @ORGANIZATION1 school. @CAPS2 was my first year there. I have been to many schools, @LOCATION1, @CAPS1 wood, etc. and like any new school I was having a hard time connecting on a social level with my peers. Everyday I woke up, got ready, went to school, got home did homework (maybe), and went to bed . @CAPS2 was a boring cycle that I seemed to be trapped in. The image of being cool and trying to fit in did not seem to work so much. Because one thing I realized was that trying to be cool and something you're not only gets you so far. The one thing that kids, people in general, like is when you're real and being yourself . I found that out later on, but I actually didn't realize that's what people liked the most. I said to myself one time that I didn't like trying to act like someone or something because the truth was I actually thought that I was a cool person deep down. So I changed my ways I stopped trying to act cool, and acted like myself. And @CAPS2 turned out that I actually was cool and that girls actually found me attractive, and not only attractive but a funny person that was likable. My main attribute, well besides my looks was my ability to make people laugh or at least smile. @CAPS2 gained me many friends that I didn't have in the beginning. @CAPS2 even gained me one of the most beautiful girl I had ever seen. Her name was @LOCATION2, in my eyes there was no girl that could compare to her in any way. She had the body of a coca cola bottle, caramel skin, and the face of a goddess ( and I'm not exaggerating). Like any beautiful girl she had many followers and admirers who were similar to me. So what chance did I have? What did I, @PERSON1 have to offer her? Laughter. My greatest attribute that had come to my rescue many of times. Even though @CAPS2 didn't last as long as I would have liked @CAPS2( forever) @CAPS2 was great being with her for as long as I did, the things we got to do and the many experiences we had together, are priceless. And @CAPS2 was all because of my ability to make her laugh and to put a smile on her face. I believe that without laughter this world would not be the place that @CAPS2 is today. Sure, there is still crime and many horrors and atrocity's committed today, but imagine how horrid @CAPS2 would be without laughter. Joy, which I believe is the core of what laughter brings, allows us to forgive and forget. @CAPS2 allows us to turn our heads and overlook things. Without us being able to laugh how could we expect to survive the future" 20 20 40 4 4 4 4 4 4 4 4 5 4 4 4 +20791 8 " Laughter @MONTH1 be the best part of life. It usually expresses the feeling of happiness and joy. The expression almost seems contagious in a way, one laugh that goes hand in hand with a smile could improve someones day drastically. Possibly the best part about laughter is that it is not hard to come by, there are many things in our world that are worthy of laughter. I have personally find myself laughing most when I am around people that I enjoy being with. Some people think the key to happiness @MONTH1 be love or joy, or possibly being happy with yourself. I think the key is surrounding yourself with the ones you love and care for because everything seems better when they are around. They are comparable to sunshine, everything is better in its presence. My favorite memory that involved excessive laughter took place on a warm @DATE1 day at my friend's house just outside of city limits. It must have been around @NUM1 in the @TIME1. The @DATE1 air was warm, but not overwhelmingly hot. It seemed like the perfect afternoon. My friends and I were hanging out, playing catch with a football, building a fire, and being happy. We had all the components needed to have the best night of our lives. The most vivid memory I have is when we were playing catch, I threw a deep pass to my friend and as he he was running under the ball, he ran straight into a fence. He got up laughing, and the laughter spread. That, you could say, set the tone for the rest of the night. The rest of the @TIME1 seemed like it could have been straight out of a movie. Everything was going right and we were all feeling good. It was the quintessence of happiness. Laughter was everywhere and smiles stretched across the faces of all of us. It had to me my best memory of laughter." 20 18 38 4 4 4 4 4 4 3 3 3 3 4 4 +20792 8 " Laughter is the esscense of life. Without laughter my life would be meaningless, and without that sense of happiness or compassion, life wouldnt be worth living. My sister is the only person i trust with my secrets. She is the only one who makes me happy when i feel down. My sister and I, laugh with eachother at our own jokes. My sister is my other half and we share everything. She makes me laugh and is always there when i need her. I'll always be there for her also. Laughter is an important part of life. @CAPS2, my sister and I laugh and play. One day I came off the bus from school, all i could do was cry. As I waited for my sister's bus to arrive, the tears fell down like a river flowing. The bus appeared and a sense of joy appeared with it. @CAPS1, it wasnt the bus that brought my joy. It was my sister, right away she could feel my pain and noticed my tears. I could see in her face, the love and care. She asked me whats wrong. I could hear the worry in her voice. My river of tears stopped and I began to speak. I could tell her everything, without trying or holding anything back. The words flowed through my mouth. @CAPS1 need to think of what to say. I told her what happened without a pause. Afterwards, she told me something I'll never forget. She said,""@CAPS1 matter whatever happens, I'll always love you."" @CAPS2 we laughed. It was the sweetest laugh. A chorus of laughter filled the air. Nothing that people say about me is true, so I learned to laugh at it." 15 16 31 3 3 3 3 3 3 3 3 4 4 4 3 +20793 8 " The night was dark and cloudy giving my surroundings a gloomy figure. Shadows slithered across the street by the lamp light of passing cars and pedestrians. My day had been depressing and it seemed that karma was out to get me. Everything that could go wrong; did go wrong. And the rest of my night was only going to get worse. Earlier that day I had upset my girlfriend with a statement that should not have been stated. Resulting in her calling me as soon as I sat down on my bed. The words we exchanged left smoldering wreckage in our wake. Our conversation ended in fury and the disconnection of phones. Once I laid back down in my bed, and my anger diminished, I began to feel an overwhelming sense of guilt. I said things that were unnecessary and horrible. As I laid on my bed, my heart felt like it was slowing being squeezed by some unseen force. It labored my breathing and soon tears began to fall from my eyes. The guilt and agony crept through my soul like a burglar creeping through a dark house, and stealing whatever valuables I had left. My day had ended in tears and pain. But then my phone rang once more. Quickly I wiped the tears from my face and proceeded to read the caller I.D. I turned out to be my best friend, and so I answered not knowing what @CAPS1 wanted. @CAPS1 asked if I wanted to hang out and possibly catch a bite to eat. His words lifted my spirit even if it was only half an inch. When @CAPS1 pulled into my driveway, I was there waiting for him. I climbed into the passenger's seat and immediately @CAPS1 knew something was wrong. @CAPS1 asked me if something had happened and I replied with a one worded answer, ""@PERSON1."" @CAPS1 knew that it was not the right time to talk about it, and so we drove to the nearest restaurant and found our seats. We both ordered coffee and I began to rip open sugar packets vigorously and dump them into my steaming cup of coffee. @CAPS1 did the same but with much less force. Then @CAPS1 cautiously asked me if I wanted to talk about it. I looked up from the mess surrounding my coffee cup and slowly nodded my head. I started to spill out all the events of my day in rapid succession. Bringing a storm of swearing and profane language. My best friend just sat there and listened until my voice grew softer and my fists unclenched. We sat there in silence for a short time while @CAPS1 chose his words carefully. Then @CAPS1 decided to change the subject for the time being because @CAPS1 saw that I was still squeezing my car keys. @CAPS1 asked how things were with my mother and another storm of curses poured from my mouth. We became silent again and then @CAPS1 asked me, ""@CAPS2 you feel better now that you got it all out?"" I looked at him puzzled because it was not the reply I expected. After thinking about it I replied yes. We then enjoyed our dinner, payed, and left. My mood had been lifted, but I was still upset. So we drove down to the river and exited his claustrophobic car. @CAPS1 and I walked down to the bank and stood there just staring at the water. @CAPS1 then asked if I wanted to hear a joke, and after a pause I said yes. The joke @CAPS1 told me probably should not be repeated but it made me laugh so hard I had trouble breathing. His timing was impeccable and it made my mood soar. I have always turned to my friends when I felt down. And there have always been there proving I can count on them. That day had been a disaster, but the rest of the night turned out to be far better then I had hoped. It is not only the fact that my friends can lift my mood, but it is also important that they make me laugh. Because if your counting on someone to brighten your day, what better way to @CAPS2 it ten make them laugh. Laughter has always held important meaning in my life. I laugh every day. Mostly because I find the most idiotic things hilarious. I know that laughter will never disappear. I hope that one day when I am old and decrepit, all my wrinkles will be from the countless times I enjoyed a few good laughs with my friends. Because laughter is magical. It can make a sad man glad, make sunshine on a cloudy day, and make light of the darkest situations." 20 22 42 4 4 5 5 4 4 5 4 5 5 5 4 +20794 8 " Being with people that can always make you feel comfortable and be yourself around is most likely the best quality in a friend. Everyone has their flaws; a friend can always look past them and find the good in the one that they trust. A friend can tell a joke and make you laugh until you cry. Making someone laugh can always help when they think that it's not possible for their life to get any worse. Laughter is the most valued gift that can be given. You know inside that it's making them happy just from seeing the smile on their face. There have been many times in my life where I have laughed so hard that I cried. There is truly no greater feeling in the world than knowing that you have people in your life that can cheer you up just by doing or even saying something so ridiculous that it just breaks you into a hysterical laughter. I laugh a lot throughout the day. When I don't, people get suspicious and they feel like there's something wrong with me. That's literally how much of a role that laughing plays in my life. Laughing is my second language in life. There has been one time in particular in my life span so far that has made me laugh so hard that I cried tremendously hard. My friends were staying the @TIME1 at my house and we were just being boys. We did so many things that mad us question our sanity: we at hot sauce by the spoon full, we watched comedy shows, and we also ate ourselves sick. It was the time of a lifetime and we laughed through it all. While watching the comedy shows, we couldn't breath. We were laughing so hard! Nothing could make me stop laughing; I would just keep replaying every joke in my head and I'd start laughing even more. I already hurt so much as it was when we were watching it from earlier. The comedian was a magician with words; the way he put them all together to just seemed like he was reading a sacred scroll from ancient times. I laughed and cried over and over again. I probably did that for ten minutes straight! It was unbelievable. Making these life-long memories with my friends is something that I will never forget. I truly know how great I have it in my life; people would kill to be in my shoes and to get the love and support I get from my friends and family. All my experiences are the things I learn from, whether they're good or bad, I know that its all going to help me later in life to be able to make the right decision when it is presented to me. All the laughs i share with other people makes me know that they have had a good time throughout their day because they smiled and laughed with me. They made a point in my day great as well. Being myself around them is great as well because I know that they're already accepted me into their lives and I don't have to try to be anyone else. Everyone laughs at some point or another throughout their lives no matter how much they deny it. I really don't even know why they would because what better feeling is there than being able to let out a little giggle every once in a while? I really don't think that there is any. I feel really honored that I have such amazing people in my life that always make it exciting and full of laughter and life. It shouldn't be any other way in my personal opinion. Live life to the fullest; why would you want to live it any other way?" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20795 8 " Its always hard to know what to do when a friend or family member comes to you when they are sad or mad. Most of the time you don't know what to do. I have learned that making people laugh with something as simple as a joke can always make them feel better. As I was sitting at home one sunny afternoon, I got a call from my friends @PERSON1. When I put the phone to my ear all I could hear was a loud crying. @PERSON1 wasn't saying anything to me, not one word. Even though, I repeatedly asked her what was wrong with her, @PERSON1 wouldn't even say a word. Not knowing what to do or say to her anymore, I asked her to calm down and take deep breaths. Desperately, I wanted her to be able to talk to me and tell me what was going on because I had started to get really worry. Couple minutes later, @PERSON1 started explaining to me what had happen. @PERSON1 started off by telling me she was irresponsible that she didn't pay attention to what was happening around her. I asked her why she was saying that about herself because I knew she was a responsible person. Finally, @PERSON1 screamed that while she was home watching the @CAPS1 basketball team play basketball, her dog @CAPS2 got run over. The dog had actually died. I found it very ridiculous and pathetic that @PERSON1 would be crying over her dog. I didn't want to be rude about it and tell her what was going threw my mind at that time. Even thought that was the way I felt about the whole situation. I thought of what the words I needed to say to @PERSON1 but I was confuse. Actually, it wasn't so much that I was confuse, I was afraid of hurting her feelings with my words. Finally, I decided to tell her not to worry about her dog, that my friend had a couple of dogs for sale. Also, I told @PERSON1 that if it made her feel any better I would buy her a new puppy. After saying that to her there was an awkward silence. My hands started to get shaky because I thought @PERSON1 was mad. All of the sudden I just heard her start laughing really loud and once again she couldn't talk. I felt so relief that I had made her laugh and not cry or get mad at me. @PERSON1 wouldn't shut her mouth she just laughed and laughed and laugh hysterically. Finally, she shut her mouth up and started talking to me again. @PERSON1 thanked me for making her laugh and making a joke out the situation. Rather than saying depressing words that would make her feel bad and make her cry even more. I was happy I made her laugh because she felt better about herself and not worst. As I was laughing I told her that anytime she needed to laugh I was the person she needed to be call. Anytime, any day and anywhere I would be happy to bring a smile to her face and a loud laugh to her mouth. @PERSON1 laughed with me and thank me one more time for making her laugh. From that day on I always like to make people laugh because I know I'm going to make them feel better. I sure love it when others make me laugh too. It's just an amazing feeling, a great feeling that everyone loves and cant really describe. After making my friend @PERSON1 laugh I found out laughter was a key element of life. " 17 18 35 4 4 4 3 3 3 4 4 4 4 4 3 +20796 8 " Laughter is an important element to have in life. Because without @CAPS3 there would be no happiness or joy in the world. @CAPS1 are a great source for laughter, @CAPS1 are the people you go to to be yourself. Some people use laughter for to release pain. For example, whenever @CAPS10 dad gets hurt he starts laughing. @CAPS10 @CAPS2 was in the navy a few years ago. And during training he got hit in the stomach. Nothing really was wrong, but @CAPS3 did hurt him. so @CAPS10 @CAPS2 sat down and started to laugh. I guess this so-called trait is hereditary because I find myself doing the exact same thing from time to time. When I learned about how laughter heals, @CAPS3 wasn't too long ago. @CAPS3 was last @DATE3, @CAPS3 was early @DATE5 and @CAPS5 of @DATE5 was coming close. Traditionally me and @CAPS10 parents would drive to @ORGANIZATION1. And use the money we have been saving up all year round and buy a huge pack of fireworks. Once @CAPS5 of @DATE5 came I was filled with joy, I woke up and immediately run up to @CAPS10 mom and ask ""@CAPS3's @CAPS5 of @DATE5 can I take the fireworks out to the package now?"" I was a new puppy discovering its first chew toy. @CAPS7 shook her head ""@CAPS6 yet @PERSON1, its only eleven in the morning. Sunset doesn't come around till seven or eight"" @CAPS7 smiled at me. ""@CAPS8 girl."" @CAPS7 whispered as @CAPS7 left the room. Once the huge golden sun finally went down and the smaller bright shimmering stars appeared. We all knew @CAPS3 was time. ""@CAPS9 you like to do the honors?"" @CAPS10 dad handed me the first firework and a lighter. A big smile appeared onto @CAPS10 face without @CAPS10 control. I loved fireworks, I love bright colors watching them as they spewed into the newly lit sky, filling @CAPS3 with a sea of colorful sparks. After @CAPS5 of @DATE5 had ended @CAPS10 cousin @CAPS12 came over. @CAPS10 mom had was little sick but @CAPS3 wasn't something that was contagious. @CAPS10 @CAPS25 figured that we were old enough to take care for ourselves and for @CAPS10 mom. And @DATE3 was ending and I wanted to see the movie @CAPS13 with @CAPS10 mom and @CAPS12 so badly. @CAPS10 mom had a lot going wrong her doctor put her on several medications to relieve her problems. but @CAPS3 seemed like @CAPS7 got a new pill from the doctor every week because the symptoms from each pill was causing more and more problems. Its mid @DATE5, @DATE4, and still no sign of @CAPS10 mom getting any better. @CAPS12 and I took walks with the dogs to the near by park, we went swimming, watched @CAPS15, clean the cars, We would try to find anything to do really. @DATE1 came, and @CAPS10 mom was showing signs of improvement @CAPS7 was walking more naturally . I called @CAPS10 dad and asked if he thought going to see a movie was a good idea. he said to wait one more day. I was worried about waiting another day because @CAPS12 was going home the next day. The next day, I woken up by the soft whisper of @CAPS10 moms voice. ""@LOCATION1, @PERSON1 honey wake up"" @CAPS7 shook @CAPS10 shoulder. I opened @CAPS10 eyes slowly, opening them wider as @CAPS10 eyes focused of what was around me. ""@CAPS18 go to the movies?"" @CAPS7 shook @CAPS10 shoulder once again. ""@CAPS19, but your sick."" I exhaled a heavy sigh. ""I am feeling a lot better today."" @CAPS7 smiled. ""@CAPS21 because the next showing is in twenty minutes."" The sudden rush to @CAPS21, woke me up. I then woke @CAPS12 up and we soon then left. The movie was good. Afterward, @CAPS12 went home and everything was silent once again, the rooms kept empty, the sun went away, the whole house stood still. @DATE2. this day is usually a time to kick back. I was on @CAPS10 computer most of the day, @CAPS10 dad was playing his video game. and @CAPS10 mom was in the kitchen preparing dinner. @CAPS10 dad went in to help her with dinner. until @CAPS7 almost had fallen with a few pans in her hands. @CAPS10 dad suggested that @CAPS7 go and take a nap or at least lay down. Later that evening @CAPS10 dad had found @CAPS10 mother. laying stiff, cold...@CAPS10 mother had passed away in her sleep that day. I felt as if @CAPS10 heart had exploded like a firework. A few days have passed I stood still on the couch. I found comfort in texting @CAPS12. Told her what the doctors told us. @CAPS12 mentioned how torn @CAPS10 @CAPS25 was about @CAPS10 mom. And even though @CAPS12 was hurting inside, her and her @CAPS2 @PERSON2 tried to get @CAPS10 @CAPS25 and everyone to laugh. Because they knew that laughter would make some of the pain go away. And I think they are amazing for finding a bit of laughter in a dark place. That is why laughter is a important element of out lives. " 18 17 35 4 4 4 4 4 3 4 4 4 4 3 3 +20797 8 " Someone once said,""Laughter is the shortest distance between two people."" @CAPS1, to me that means, that since everyone laughs, laughter is the quickest or easiest way to connect with another person. I believe this because at one point in time my older brother and I did not get along very well. We were almost never around each other, and when we were,we would either be fighting or ignoring one another. It wasn't much of a problem since he is five years older; but once I became older my brother and I began to see one another more often. So we then decided to sit down one day and talk. We weren't exactly sure what to say; so for the first ten minutes we just sat there in silence. Just two guys on the back porch in the middle of the @TIME1. Then out of no were he fell over backwards into a bush. We both laughed harder than we have ever laughed in our lives. So @CAPS1, when my family get together, there isn't a lot of arguing or fighting and we all sit and tell stories and laugh.For my family and friends, laughter is one of the most important components of a relationship because, with laughter comes happiness, and with happiness comes love; and love is the most important component of life. So I say, ""Laughter is the shortest distance between all people.""" 15 18 33 3 3 3 3 3 3 3 3 3 3 4 4 +20800 8 " This true story might sound some what cheesy, but its true and in my opinion its a love story. I will be substituting the real names with others names though. On @DATE1, after a long day at school @PERSON1 decided to log on @CAPS1-book to chat with some new friends she had made online. @PERSON1 had forgotten that she had sent a friend's request to @PERSON2. @CAPS6 @PERSON2 had accepted @PERSON1's request that's when @PERSON1 remembered about the request. @PERSON2 and @PERSON1 stared to know more and more about each other minute after minute, @CAPS9 before the had no clue who the other one was. @PERSON2 gave @PERSON1 his number after along chat, @CAPS12 she could call or text him to keep in contact while being off of @CAPS1-book. @PERSON2 was starting to like @PERSON1 and @CAPS12 was @PERSON1. @PERSON1 now knew that @PERSON2 is a high school student, a sophomore to be exact. That he is @NUM1 and also have friends in common. @PERSON1 @CAPS4 liked talking to @PERSON2 a lot. @CAPS12 did @PERSON2 to @LOCATION1. @PERSON1 noticed that @PERSON2 loved to laugh a lot. I mean ""a lot"", @PERSON1 @CAPS4 liked that because it always made her day. @PERSON2 knew @PERSON1 had recently broken up with her boyfriend. Any how, @PERSON2 didn't mind, he @CAPS4 liked @PERSON1. He had a @CAPS4 big hope that he could have a chance at making @PERSON1 happy. @CAPS12... he @CAPS5 @PERSON1 if she accepted to be his girlfriend. Without a doubt she said... ""@CAPS3 I would very much like to be your girlfriend"". ""@CAPS4 you would?"" @CAPS5 @PERSON2. ""@CAPS3 why wouldn't I? replied @PERSON1. ""@CAPS6 I thought that you wouldn't @CAPS9 you recently got out of a relationship"" @PERSON2 answered. Days had past they were doing perfectly until... @PERSON1 starting to receive texts from her ex-boyfriend. This started to affect @PERSON1's relationship with @PERSON2.But the bad thing was that @PERSON1 was still in love with @PERSON3. @PERSON2 knew that for one. But that didn't stop @PERSON2 from fighting to get @LOCATION1's @CAPS7. @PERSON1 is the type of girl that doesn't like hiding anything from her boyfriend. @CAPS12 one night while @PERSON2 and @PERSON1 were talking on the phone, @PERSON2 decided to ask @PERSON1 if she was willing to try to forget her ex. @PERSON1 was scared to answer the question but she had to be honest and said... ""@CAPS8 @PERSON2 I'll try but I'm not promising anything.""@CAPS9 @PERSON2 and @PERSON1 have a @CAPS4 good communication when laughing is involved, @PERSON1 changed the subject and @CAPS5 @PERSON2 if he was willing on doing her a favor. Of course @PERSON2 said ""@CAPS3"". The favor that @PERSON1 had @CAPS5 @PERSON2 for was if he could laugh for her. ""@CAPS11!"" @PERSON2 laughed. ""@CAPS12 can you do me that favor? @PERSON1 @CAPS5. ""@CAPS3, @CAPS11! @PERSON2 laughed again. Who would of thought that laughter in a relationship could make it @CAPS12 much better. @CAPS3 it wouldn't make it perfect or exactly how you want it to be but it's sure much better than fighting @NUM2 for things that are just plain dumb and pointless. I believe that laughter plays a excellent part in any kind of relationship. It's as if laughter is a language we can all understand to communicate with one an other. @CAPS6 I hope you liked my true story about how laughter plays an important part in all relationships. " 18 15 33 4 4 4 4 4 3 3 3 3 3 3 3 +20802 8 "My relationship with laughter. Well the first time I came face to face with laughter was when I met my boyfriend for the first time. Before I met him I was depressed all the time and my friends couldn't stand it anymore. But when my friends introduced me to him I fell in love for the first time I was happy for once not depressed and all alone in a corner crying all the time. When that happened for the first time in almost a year I smiled I didn't smile until the day I met him. That's when my friends knew that i found someone to take care of me and love me for who I am. Later in the relationship is where laughter came into play I was laughing all the time when I was around him and not upset all the time. That's when we started hanging out but, it took all of our friends to us to hang out. After we stated to hang out we got to know each other better then we did for the beginning when we first met. It took until freshmen year for us to start dating. That is when I found out I suppose ably dating someone else and not him I didn't believe it at first until that guy came up to me and started yelling. He came up to me and comforted me in front of my friends and said ""@CAPS1 are @CAPS3 cheating on me and it's over?"" with a guy @CAPS3 just met. Then he tried telling me it was over and I told him ""We were never dating in the first place!"". My friends walked up to me and saw me in tears and asked me whats wrong and tried to find me someone new. By the time @CAPS4 did I was with another guy and I'm happy with him and nothing can change that he will always be there for me and no matter what happens between us. He is the best thing that has ever happened to me and he makes me laugh when I'm upset or mad he says ""don't worry everything will be okay I promise so just believe in me."" Laughter has been in this relationship for almost a year now so we don't plan to change that unless one of us messes up again we have messed up so many time that we don't know what to do anymore. If it leaves now I don't know what I'm going to do it's apart of my life and the relationship now lets see if we can keep it together with out messing up this time around. This part of my relationship is the best and it wont change at least I hope that it wont because it would make me go back to living in fear of my step dad I'm glade that I found someone. I hope that it doesn't change because laughter is what comes with him and when I'm around him he makes me laugh and no one has ever been able to make me laugh when I was crying not even my friends and family. Now that laughter is here almost all the time I can't wait until the day that sorrow goes out the window. So now that me and him are together and happy and hopefully nothing goes bad between us because of how much we love each other and I'm not my bubbly self when he's not around. Six to @CAPS2 of my friends say "" @CAPS3 are losing your bubbly self don't let her disappear on @CAPS3 she is there to guide @CAPS3 down the road."" @CAPS4 also told my dad that I don't really hang out with them anymore and the reason @CAPS1 I don't is because @CAPS4 can be bossy and @CAPS4 tell me what I can and can't do. @CAPS1 can't people just understand that this relationship isn't going to work if @CAPS4 keep getting in the middle of it @CAPS4 all think that my life revolves around them and it doesn't. My relationship with laughter has nothing to do with my friends and family it has to do with my boyfriend and me and that's @CAPS1 I told @CAPS3 about my relationship with laughter. Lets just say my relationship with laughter will always be here and nothing will change it not even my parents or his parents we can promise @CAPS3 that much. @CAPS1 can't this relationship just have a happy ending to it with out anyone or anything trying to get in the middle of it? I just wish that there was a world @CAPS3 could just run away to with out anyone knowing where it's at in the world. Well just to say nothing can make this relationship ever go bad unless we start to fight again with each other I hope that nothing will tear us apart and if it does who knows what will happen." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +20803 8 " ""Laughter"" I once heard a man say "" laughing is the key to happiness, and if you do not laugh you aren't healthy"" @CAPS1 do people love to laugh? Because it laughing creates great memories, it gets rid of sadness, it gives you energy, and it even gives you a good abdominal work depending on how hard you laugh and for how long. There is nothing better than a good funny movie that makes you laugh so hard you cry, your jaw hurts, and your stomach is even sore the next day. Some of my favorite movies are funny. I bet laughing or making someone else laugh could get you hired at a job. Say you go in for an interview for a job that involves you working with people everyday. Are you going to go in there boring and moditone? No, your going to go in there make the person who is interviewing you laugh and act like you have known him or her since @CAPS2 @CAPS3. Laughter can also be abused. It can be used in bad ways, such as making fun of people because it @MONTH1 be funny. Calling kids in your gym class names because they cant throw a baseball as far as you. Laughing @MONTH1 make people feel as bright as the stars at night, or it @MONTH1 make people feel as bad as a basketball player missing the buzzer beater to win the championship game. Be careful when you use it, treat it like a loaded gun, because if you use it wrong it could hurt someone. A few hours after my @CAPS4 died. My family and I began to talk about all the good memories we spent with her when she was with us. I had noticed that tears were rolling down the sides of my @CAPS5 @PERSON1's cheeks. We then suddenly began to talk about all the times she would get mad mad and swear at my dad when he was a little boy, then get embarrassed because she knew she never should have said the lords name in vain. After thinking back on those moments we began to laugh, and not just a small unnoticeable giggle, i mean we were laughing out loud. It then got rid of that aching sadness that had been in the room all night. I will never forget how laughter that very night would become such an emotional memories later in life." 20 17 37 4 4 4 4 4 4 4 4 4 4 3 3 +20804 8 "Laughter is important in my life for many reasons. With out laughter my life wouldn't be as wonderful as it is right now. I have many people in my life that make laughter the best way to brighten up my day, like my friends, family, and boyfriend. I have many stories in which laughter was a part of my life, but I'm going to tell you a story about how my boyfriend used laughter to make me feel better and not think about my stomach ache. It all happened on a @DATE1 @TIME1 @CAPS1 I was heading home from my boyfriends house. We were sitting on the max and my stomach started to hurt. I told my boyfriend about it and he told me that it's probably because I haven't ate anything. I was worried because it was going to be a long trip home. On our trip to my house my boyfriend was trying to distract me so I wouldn't worrying so much about my stomach ache. He started talking to me and telling me how my day was at school and I told him that my day was okay, not bad. We started talking for awhile, up until my boyfriend took off his hat and said ''from flat to volume!'' @CAPS1 my boyfriend took off his hat and said that I bursted out laughing! I was laughing so hard that instead of my stomach hurting because I didn't eat all day, it was hurting because of how hard and how much I was laughing. I was laughing so hard because my boyfriends hair was all messed up. His hair looked so funny! As I was trying not to laugh I asked my boyfriend why his hair was like that? He started telling me that @CAPS1 he was taking a shower he had grabbed a shampoo bottle that said from flat to volume and he didn't know that his hair was going to have so much volume.The whole way home I couldn't stop laughing about my boyfriends hair. I thought it was so funny, that I had forgotten about my stomach ache. Till this day I still laugh about my boyfriends hair and how it looked that day. We now have an inside joke and every time I remember that day I tell him ''from flat to volume'' and we both just start laughing.Now i know thatlaughter is the best medicine for me @CAPS1 I have a stomach ache. Laughter will always be a part of me and my life no matter what!" 20 20 40 4 4 5 4 4 4 4 4 4 4 4 4 +20805 8 " Have you ever wondered how you and your best friends even became friends? Maybe not, but maybe you have and couldn't remember. Well this story I'm about to tell you today is about how my friend @PERSON3 and I became friends. I'm also going to tell you how we have stayed friends for as long as we have and all the little things that have kept us friends. Admittedly we did not start off as friends who laughed all the time, instead we started off as a crier and a helper. @PERSON3 and I first met in the eighth grade. I had just gotten called out of my first period class and greeted by my math teacher @PERSON1. @PERSON1 told me that we had just gotten a new student that moved here from @LOCATION1 and wasn't exactly happy about it. She also asked me if I wouldn't mind showing her around the school with another classmate, @PERSON4, I agreed and walked into the room @PERSON3 was in. When I saw her the first thing I noticed was her eyes, as the tears went down her face. Then I realized she was a very pretty girl who, like @PERSON1 said wasn't happy. I will admit i was a little scared to try and show her around seeing as she wasn't happy at all to be here. But once we got started she had calmed down immensely, but she still wouldn't even crack a smile at our feeble tempts to make jokes. I still felt like she should be happy and broke out the big guns. So I walked differently and talked in a funny voice, I even started saying random funny things in long pauses. Eventually she smiled, so I kept going. Toward the end I got her and @PERSON4 to laugh so hard we all almost wet ourselves. But as funny as it was for us, it definitely wasn't the last funny thing we did. You know the type of funny things that happen and no matter what, you always remember it when you see that person it happened with, right? Well to say the least @PERSON3 and I have a lot of those moments. Granted a lot of them happen with other people, but that's what makes it fun. Like this one time in our drawing and painting class we, @PERSON3, @LOCATION2, and @CAPS1 and I, were all in @PERSON2's little office getting a picture to draw. I had been hyper pretty much all day and so had @CAPS3 else. I randomly look around the room and see a really cute looking poster I hadn't noticed ever before and without realizing it I had said aloud, ""@CAPS2, that's really cute."" @CAPS3 started laughing and holding on to the desk to keep from falling to the ground. I still hadn't realized I said it aloud and was really confused but still laughing because watching them laugh was really entertaining. They finally calmed down long enough to say what I'd just said and I blushed but started laughing along. Now every time they see me and remember that moment they crack up laughing and they point to something and say it the way I said it. That's why I think that having the big memories of the really funny thing has kept us together. It helps us remember the fun times during the bad times. It also helps to keep our link strong throughout the group of our friends. But the little things matter too. Every little thing we do together as friends helps us later. If we didn't do all the little funny things and only did either big funny things, or boring things, I don't think our friendship would last long. Like when we're talking and we accidentally burp or we fart while we walk. Or maybe when I laugh and I hide my face with my hands and my arms jiggle. Possibly even when we say something weird or walk funny because we really have to go to the bathroom. It's not just being friends that keeps us together it's how we are and who we become with that other person, I feel like I become a better person and I believe I help her become one too. Besides the little things are just as funny as the big things we do. So as I've stated before laughter is a big part of a friendship. @PERSON3 and my friendship hadn't started in of laughter, it started in tears and grew to be laughter. Laughter had brought us together in an act of weirdness and it has stayed very strong ever since, not only because we had a lot in common, to be frank we don't really even have that much in common, it is because of the big hilarious moments we've shared not only together, but with other people and the little things we do on a daily basis that we find really funny. I do have to say laughter is probably the best thing to keep any relationship good and healthy." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20806 8 " There are a couple things that can lead strangers to being comfortable with each other, in my experience it was laughter. Meeting my boyfriends parents was very nerve wrecking and uncomfortable. I am a people person and I can get along with anybody. Starting a conversation with someone who is judging my every move was a little bit of a challenge. My boyfriend @PERSON3 and I have been dating for almost a year now and are the type of people that like spending time with our families. So because of this it was obvious that meeting the family would come into play. I met his parents when we were young and we attended the last years of elementary and some of middle school and all but one year of high school together, I left for a couple years and came back really different. So after @NUM1 months of dating I met the folks. One day in @DATE1 @PERSON3 had a football game that i attended with some girlfriends who were also dating guys on the team. After a terrible loss @PERSON3 came out of the locker room and hugged me and told me it was time to meet the parents. I took a deep breath and started to get really nervous. I love meeting new people and I usually don't have a problem with it, but the fact that I wanted his parents to love me put a lot of weight on me. I slowly walked over after him, and said ""@CAPS3"" in my most friendly voice possible. His mother reached out and said "" @CAPS1 @PERSON1, I'm @CAPS2"" I took her hand and shook it and replied ""@CAPS3, so nice to meet you"". I looked at @ORGANIZATION1 for reassurance then his father reached out with a very welcoming smile and his eyes looked so familiar and warm. "" @CAPS4 there, I'm @PERSON2"", I shook his hand and felt less nervous and a bit comfortable. "" @CAPS1 , great to meet you, what did you think of the game?'. He looked surprise that i talked and we started a great conversation about football. After talking about football for about @NUM2 or @NUM3 minutes @PERSON3 brought up something that reminded me of a joke. I always have lame jokes so I was nervous about telling it to his parents. It wasn't even a funny joke, @PERSON3 thought it was lame, yet i loved it. I took the chance anyways. I said "" @CAPS4 that reminds me of a joke"", @PERSON3 looked at me with wide eyes that said oh god, don't. I looked away and started ""so there were two muffins in the oven one said, wow its hot in here, there the other screamed, holy crap! A talking muffin. I started laughing and my laugh is very odd. Anyone i meet tells me me laugh is so unique. His mother was like ""that is adorable i will have to tell it to @CAPS6"", I smiled gratefully. His father @PERSON2 said so sweetly "" I like your laugh, i ain't heard anything like it"". @PERSON3 came in and said ""yes her laugh is really something"". We all kinda smiled and at each other and went to dinner, cracking jokes and laughing then laughing at my laugh. Thank goodness for laughing, once we started laughing I felt comfortable and welcomed. Until this day we laugh at me telling that joke. I still until this day am happy i told the joke." 17 18 35 3 4 4 4 4 3 4 4 4 4 4 3 +20807 8 " On @DATE1, I had a mission trip meeting in @LOCATION2, @LOCATION1 at @NUM1 o'clock in the @TIME1. @CAPS11 friend @PERSON2 decided he would go with me. So I had @CAPS11 grandpa pick us up from the house and take us to @LOCATION2. When we got to the church I went to @CAPS11 meeting till @NUM2 o'clock, then went to bible study. I was tired and ready to go home by then. Come to realize @CAPS11 grandpa is know where to be found, he apperently left to go home and @CAPS11 mom, grandma and @CAPS11 sister @CAPS3 had just got there to pick us up. I had just been informed that there was a parent meeting for the students going on the mission trip. After the meeting we went to @PERSON1 craft store. When we got there me and @PERSON2 went over to @CAPS1 @CAPS2, while @CAPS11 mom, grandma, and @CAPS3 stayed in @LOCATION3. I bought me and @CAPS11 mom a pair of comfortable slippers. then we went back into @PERSON1 to brag about the slippers to @CAPS11 mom and grandma. That was a bad idea, @CAPS11 grandma decided she needed a pair for herself, so she walked over to @CAPS1 @CAPS2. She was taking forever. I told her that if she stopped looking at stuff we would go to @CAPS6, get a sandwhich, and come back. So we did. When we got to @CAPS6 @PERSON2 was in a bad mood because he was ready to go home. We ordered our sandwhichs and went back to @CAPS1 @CAPS2. She finally found herself a pair of slippers, after looking for an hour and a half. Everyone gets in the car, and we think were going home when all of a sudden grandma shouts out ""were going to @LOCATION5's, I want a bowl of chili"". Our reaction was ""@CAPS10, @CAPS11 gosh"". We couldn't let her be hungry, so we had to stop. after getting her chili she says ""I need to go into @ORGANIZATION1"", @CAPS10 boy was that a mistake. We were in @ORGANIZATION1 forever in a day. After we got back in the car from @ORGANIZATION1 I sat in the backseat in the middle of @CAPS3 and @ORGANIZATION2. I told @PERSON2 not to forget to show @CAPS11 mom an important piece of mail he had when we got home, and his response was ""@CAPS10 ya! If we ever get home"". All I could do was laugh. I was being video taped by @PERSON2 and @CAPS11 mom kept looking back at me to see if I was ok. I just couldn't stop laughing. I laughed so hard I was crying, I lost all @CAPS11 breath, and @CAPS11 face was as red as a cherry. I laughed without a break from @ORGANIZATION1 to @LOCATION4 road. When I eventually fell asleep." 18 17 35 4 4 4 4 4 3 3 3 3 4 3 4 +20808 8 " Laughing makes you live longer. That's what I was told as a child. I think laughing is really important in life. And, in relationships. In my realationship with my sister @LOCATION1, we laugh all day, everyday. And I think thats why we have most fun together. I laugh most when I'm with my homies. I remember one time I was with @PERSON2 and we were just laughing so hard over nothing, thats something we do alot. I'm just a laughing person. Everybody knows that. I think when I laugh it just takes everything thats bad right now, and none of that even matters. I have this one friend namd @PERSON3, and he was the kind of person that made me laugh no matter what kind of mood I was in. So because of that, he'll always be an important person in my life. One time me and @PERSON2 were with this girl that was very quiet for some reason when she was with us, and I just straight up told her that she needs to talk, or laugh! or something. Then she opened up and actually laughed about the funny things. See, if your with a bunch of friends, or people that your affiliated with it's not good to just sit there and not say or do anything, just be yourself. Laugh about the things you think are funny even if other people dont kaugh about it. Who cares. Be you. I love, absoulutly love when babies laugh. When a baby laughs, to me it means that baby is gonna be a happy human. In movies and tv shows, sometimes I laugh. I just feel like if you laugh, your life will be way easier than just looking at the negative things. Just be happy, and laugh every once and a while. One time me and my sister @PERSON2 stole a truck, well.. We asked the guy if we could use his truck for something and he said yeah, but we really didnt use it for anything.. We just wanted to drive. And, when we started driving, we were going so fast, and blasting loud music. It was hilarious, and now everytime we listen to that song we were blasting, we just crack up laughing. So, when you make good memories and later in life think about the memories, or they get brought up somehow.. It's funny to just sit there and reminise. I could tell you a thousand stories. Heres one. One time, me and @PERSON2 were living with our good friend @PERSON1, and we were under his table pretending we were in a space ship, it was so, so, so, much fun! I'll never forget that time. And even when I'm writing this I still laugh about these stories. One time me and my sister @PERSON2 were skating downtown, and I was trying to do this one trick, I think it was a tre' flip? Anyways, I tryed to do it and I fell on my butt. It hurt, but it was hilarious. And now everytime we pass that place where i fell, we just laugh about it. Memories are fun, every memory that I have, I laugh when remebered. One time me and @PERSON2 were hanging out with some cool people, and then we left and went to this girls house, and there we turned the music up all the way and just danced for like a hour, we have a video of it. That was really funny. In the video I'm mostly just laughing. " 15 16 31 3 3 4 4 3 3 3 3 4 4 4 3 +20809 8 "@CAPS1.., that is a sound i love to hear, laughter. Laughter plays a big roll in my life. To me it is the only thing that can keep me going. Sometimes it is even better then ice cream, and that is saying a lot. I have had many different experiences in life that laughter has been a big part of. Like @CAPS6 my brother got sent back to jail. @CAPS6 I was @CAPS5 I had to laugh because it was the only thing that made me feel good inside. Also, @CAPS6 i got dumped like last nights garbage, laughter made me feel as if nothing had ever happened. So @CAPS6 people are not feeling the best or are going through struggles in their life, I truly believe that laughter will make everything feel a little bit better. "@CAPS2!", it hit me like a brick in the head. Hearing that my brother got put back in jail was a hard thing to hear. He had just gotten out from a four month sentence, three months ago. One of the hardest things is thinking of what to say @CAPS6 his three year old son, @PERSON1, asks "@CAPS3's @CAPS4?". The main reason I'm not as scared for my brother as I was is because of my nephew @PERSON1. He can light up any situation with his adorable laugh. So whenever my brother gets thrown back into jail, I know everything will be okay @CAPS6 I see a big smile on @PERSON1's little chubby face. He is my inspiration to smile @CAPS6 I feel like there is absolutely nothing in this word to smile or laugh about. Even @CAPS6 we were both sitting in the emergency room he still just kept on laughing. Being @CAPS5 is the absolute worst thing in the world to me. I hate not being able to get out of bed and go places. All I usually do is go stuff outside with my friends, but @CAPS6 I'm @CAPS5 I cant do anything. The only things I can really do is take nasty medicine. Recently I was in the hospital with very severe abdominal pains. Then not even two weeks later I was back in the emergency room with strep. I was in a lot of pain for about four weeks all together. one thing I hate more then being @CAPS5, is people feeling bad for me being @CAPS5. So whenever I'm @CAPS5 I always crack jokes and make people laugh no matter how much it hurts me to laugh. Even though the laughing did not feel good physically, it sure made me feel a lot better emotionally. Laughing is like my brand of medicine for @CAPS6 I'm not feeling well. It seems to make me feel better faster then any other over the counter medicine. Especially for breaking up with my first "love". "I just don't want my mistakes to hurt you anymore", that was the last thing he said to me. My first "love" just left me standing alone on a staircase to drown in my own tears. It was my first real break-up. I was having a pretty hard time dealing with it. Then the day after we broke up my friends came and picked me up. They told me that I needed to be cheered up. @CAPS6 we got into town we stopped by the store. My friend @PERSON3 told me to pick out a half gallon of ice-cream, so I got mint chocolate chip. We finally got to @PERSON3's house and he told me that I had to eat the whole half gallon of ice cream to myself. Of course I didn't argue. While I was eating the ice cream him and my friend @PERSON2 put on a little skit of how they were going to be up my ex boyfriend. I was laughing so hard I got a brain freeze. By the time the skit was over I was rolling on the floor laughing. All the laughing made me forget that I was sad in the first place. I felt that just having a good laugh with my friends brought us closer together. While I was with my ex we never hung out because i was always with him. I had a blast that day and I will remember it forever. Laughing is truly the key to living a great life. "@CAPS6 life gives you lemons make lemonade", that is a quote that I chose to listen to and try to follow. To me the quote is just saying to enjoy the little things in life. So whenever I laugh, I am enjoying a little pleasures in life. Laughing is a part of my life no matter how hard life @MONTH1 seem. So even if my brother is in jail, I'm @CAPS5, or i just got dumped; I laugh so that I don't have to worry anymore. Laughter is a main ingredient to everyone's life, don't forget it or life wont turn out the way that anyone would want it. " 20 20 40 4 4 5 4 4 4 4 4 4 4 4 4 +20812 8 " Laughter. We all need it. We need it @CAPS8 a reminder that @CAPS7 is hope for those who have perseverance, for those who strive not to better others, but for those who strive to better themselves. We need it @CAPS8 a reminder to live our dreams, instead of dreaming of living. And, in my opinion, most importantly, @CAPS8 a reminder that even though we @MONTH1 make mistakes, @CAPS7 is still a chance for those who simply have the courage to seize it. In the @DATE1, my foster parents decided to go out for dinner. The children, of course, were not invited. We were to either stay home with the babysitter, or go to a friend's house. No one wanted to stay home, @CAPS8 @CAPS7 was nothing to do. One of my best friends, @PERSON2, was a single child living with her grandmother. I made a quick phone call and ten minutes later I was waiting for her grandmother to pick me up. It was about five in the @TIME1, and I was to be back no later then nine. I had four hours, and it was two weeks before @CAPS1. Neither of us knew @CAPS13 to do with so much time on our hands. After all, we only saw each other for a few hours at school. This way new to both of us. We were both sophomores, and I had a crush on @LOCATION1. This turned out to be a big problem, considering @CAPS6 knew this piece of information. @CAPS6 didn't have a problem with it, but @PERSON1, her boyfriend, did. We got along, but he didn't like the fact that I was spending so much time with her, especially while he wasn't @CAPS7. He trusted me to take care of her though, so he didn't make a huge deal out of it. We had decided to set up the @CAPS1 tree first, and go from @CAPS7. We both had @CAPS3, so just about everything on the tree was shiny. Tinsels, ornaments, pictures, @CAPS14 name it. It took about twenty minutes to get everything set up, not including the time it took to unpack all the decorations. It looked magnificent when we were done. I'd help make some pretty @CAPS12 looking trees, but this was by far the best. I was proud of our work. I didn't have much in my life to appreciate, so this was one of those things that normally wouldn't matter, but suddenly became really important. We admired our work for a few minutes and then went down to the den. @PERSON2 got on the @CAPS4 to talk to @PERSON1 for a bit, while texted my girlfriend. I was in the process of preparing myself to break up with her. @PERSON3 and I had been together for most of my sophomore year, and I was beginning to regret it. Our relationship had started when one of my buddies, @PERSON4, and hers ended. I know this sounds bad, but I really didn't want to be with her at first. I was putting myself between @PERSON4 and her so that they would stop fighting so much. Now I was starting to see why he broke up with her in the first place. @CAPS6 was like a bad drug that got @CAPS14 really high, and then dropped @CAPS14 like a rock. @CAPS6 was extremely controlling. @CAPS6 wasn't @CAPS12 for me, and @PERSON2 had finally convinced me that enough was enough. After I broke up with @PERSON3, I felt both happy, and depressed. I was happy that I could be free, but I was depressed because I felt so alone. I'd never been @CAPS12 at getting close to people, so this was hard for me to do. Seeing me so roughed up didn't sit well with @PERSON2. @CAPS6 knew me much better then most people, so @CAPS6 knew that I needed help quick. @CAPS6 did something so subtle, that to most it would have seemed unimportant. @CAPS6 took one look at me, got up from the computer, and gave me a long hug. At first I didn't think it was a @CAPS12 idea. Her boyfriend was very protective of @PERSON2. He didn't like guys getting close to her, under any circumstances. ""@CAPS5 @CAPS14 please just try to relax for a minute? Your making me nervous."" @CAPS6 said in that tone that meant it was more of an order then a question. Maybe it was the fact that I was in such a bad mood that this seemed like the funniest thing in the world to me. I started laughing really hard. ""@CAPS7. That wasn't so hard, was it?"" @CAPS8 @CAPS6 pulled away from the embrace, I kissed forehead; our way of saying ""your beautiful."" ""@CAPS9 @CAPS14 going to be okay?"" @CAPS6 asked in a worried voice. ""@CAPS11, I'll be fine. Thanks @PERSON2."" ""@CAPS12. @CAPS14 never showed me that guitar thing."" ""@CAPS13 guitar thing?"" ""@CAPS14 said @CAPS14 played guitar."" @CAPS15 then I realized that I might not ever get another friend @CAPS8 @CAPS12 @CAPS8 this one. ""@CAPS16 @CAPS11. Come on. I'll show @CAPS14 how to play @CAPS17 man.""" 20 19 40 40 4 4 4 4 4 4 4 4 5 4 3 4 4 4 4 4 4 4 +20813 8 " As people have bonded over the years, those bonds have been streanthend by laughter, joy, and trust. All of these are imporntant but they all work together to build these bonds. For normal people to enjoy one another they must have fun and fun begins with laughter. Laughter comes from the brain and if two people think in the same thing as being funny, it brings them together with their similar intrests. By telling a funny joke or being a person who always ends up with a smile on his or her face, brings people around more easily. Since I was young I've always been a real happy kid and one who is easy to be around. I believe I am like this because my parents have always told me, ""People that are happy are the ones people want to be."" @CAPS1 by being a seemingly happy person it has given me the friends I have. Although I have never really understood what it ment because it could mean many differant things. When ever I'm with my friends, looking back on it now, we are always laughing or joking about something. We could be laughing about ourselfs, or we could be laughing at a random person on the street. We could be doing absloutley nothing and be laughing at something stupid, but still be having good times. It @MONTH1 be starting an argument that is funny to us. If someone starts saying stupid stuff, then one of us will jump on the chance to make him sound as stupid as possiable. Most of the time we wont get butt hurt about it, but alot of the time we will take it to far. With all the laughter we have shared before it keeps us friends. Stupidity and pain are probly the top two reasons why we laugh. Stupidity would be if some one says something that doesn't make sence or came in at the wrong time. I have never under stood why we laugh at pain, maybe it is because we are glad that it is not us in pain,although sometimes it is, but maybe it is because we know that they will get over it. When someone is hurt badly, and another person is laughing about it alot of the time I will see them get angry because they are being made fun of for their pain. They need to just realize that it is funny for people to get hurt and know that they laugh at it too. Laughter will always bring people to relationships. It show common intreasts and what people can tolerate from others. Laughter is the main component to bringing happiness into peoples life, with out happieness and laughter this world would be supper boring." 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +20814 8 " Laughter is a mystery. Happens @CAPS2 ever it pleases. It puts smiles on faces. Laughter just happens in many ways it can. Although, mine just happened to end up in a crazy situation with a huge mess to follow it. Things got extream, unforgettable. Things you could never forget. Around two months ago, in the cold @DATE1. It was my @NUM1 birthday. I threw a little party for myself at my house. Though, I was in for a little treat. @CAPS2 everyone arrived they all had a smirk on their faces. Nobody would tell me whats going on. I started to become distraught about it all. Until my buddie @PERSON3 and my boyfriend @PERSON1 walked into the kitchen with a @NUM1 pound bucket full of spaghetti, with a ten pound gallon can of tomato sauce. Next thing I knew my mouth was agape. I couldn't believe my eyes, not understanding why so much of it. Also, why did they have it. My mother walked out and exclaimed ""@CAPS1 up the cars, and let's go!"" @CAPS2 we approached the @ORGANIZATION1, I had a funny feeling in the pit of my gut. I looked around and noticed my sister in law was holding a video camera. Right then and there I knew something was going to happen. Something big, extraordinary, out of the extream and I was right. Spaghetti was flying everywhere, getting in peoples hair, faces. Clothes were getting stained and messy. Not to mention it was cold,wet and rainy outside. The fog made it hard to see who u were hitting and who was throwing it at you. By the end of the noodle war, I looked the worse. Even now the shoes i was wearing are stained. @CAPS2 we got back to my house we had to wash down with the hose. I swore i was going to get sick from the cold water running down my face. I could feel noodles falling outta my hair and clothing, the sauce steaming down my face. Laughing here and laughing there. Everyone was laughing at others for how badly they were covered with noodles and sauce. Eventually, we all got hungry. We decided on nachos. So, my mom poured two family size nacho chips on the table followed by two ten gallon cans of nacho cheese with jalapenos, olvis. You @MONTH1 think the noodle and sauce was messy, well that's where I went wrong. My friend @CAPS3 dropped nachos on my couch. @PERSON3 threw nacho cheese at @LOCATION1, she threw chips at @ORGANIZATION2. @PERSON3 tossed cheese at me and ended up on my dog. Let's just say my living room was a cheese fest. I couldn't believe that nacho cheese got stuck in my dogs fer and in all the girls hair. Chip crumbs were in the couch and cheese was on the floor and @CAPS4 tree. So @PERSON3 finally said""@CAPS5 more nachos!"" @CAPS6 on it was cake time. Ginger thought that there wasn't going to be another mess. Well once again she was wrong. They all started singing the happy birthday song, cameras were flashing, my mother in the background crying. She cries on our birthdays because she says its just a year closer to her kids moving out. I figured she would be use to it knowing that she already had two kids move out. All of a sudden there was frosting on my face! I rubbed the frosting off and smeared it on @PERSON1 face. Though he just rubbed it back onto mine. My mom grabbed a plate and threw it at @LOCATION2, she tossed it at @CAPS3 then @ORGANIZATION2 and @PERSON3 then @PERSON2. Chocolate frosting was everywhere along with nacho cheese. Soon after that we played video games. Of course me being me I played @CAPS8 @CAPS9 @NUM3 live on @CAPS10 @CAPS11. I got irritated with someone on the game and ended up throwing the controller at my television and broke it. Mother wasn't to pleased with me after that. Oh well, we still got to watch movies in the other room. Eventually people started leaving. Saying our goodbyes, ill see you @CAPS6, peace out dude. We said it all. I looked back in the living room and say nothing but huge mess of chips, nacho cheese, and cake. Not to mention my broken t.v. I got stuck cleaning the mess for over three hours. Though, we were laughing the entire time it happened. Having the greatest time ever with each other. If I could I would go back and do it all over again just for the fun and laughs. Laughter is everywhere. You @MONTH1 not see it right away. Though you will @CAPS2 you started laughing your brains out. Laughing puts everyone in good moods and smiles on there faces. It @MONTH1 also make a mess and put things in a crazy situation. You can't deny after them crazy situations that you would go back and do it again. Laughter is the greatest thing in this world we call @LOCATION3." 17 15 32 4 4 4 3 3 3 3 3 3 3 3 3 +20815 8 " Laughter @PERSON1 Laughter has many benefits that make us have might make us have more distance in between two people or maybe make us have differenceses in between the relationships you have with people. But many other people believe and (think) that laughter is an important part of any relationship with your friends, family ect. Now I'm going to talk about a few reasons of how laughter can be a benefit to us, and how it can also make us have distances from people, or how laughter works in between relashionships we have with friends. Many people think that it's really fun to laugh about simple things and thats me I can laugh for things that might not seem funning to others, but to me they might seem extremely funny. I won't stop laughing for a while. But many other poeple don't consider laughter as funny, as many others. I believe that laughter is an important part of us because it shows people around you the way you are and how you express your self on things. Many of your friends or even your family will know what type of person you are and how silly you can get to be sometimes. Thats the reason why I think it's a great idea or (thing) to do around, just have some fun and laugh. Now talking about relashionship in between people. Do you think that laughter can be an important part of any relationship or how could it help us (ways)????? Well yes I do think that laughter can be extremely important in many relationship we have with people. You get to know and others get to know about you and how you are. Eventhough many relationships that we have with our friends, family, or with new people we meet. I believe that laughter tells you how a person is and how that person reacts to what other people do or tell them. Laughter expresses how that person is and wheither they are fun people to be around. Laughter even tells you if that person has a lot of humor, just a little, or doesn't have any humor at all. When people don't have that much humor they really don't understand and get the funny parts from jokes or anything. I also think that laughter is really important to any type of relationship you have with anybody, because that makes you know that person a lot better. But other people consider laughter being a reason that distances two people from each other.I don't considerlaughter being a reason for to people to have distances in between. The reasons why I think and say this is becasue their are many people that laugh a lot almost crying and they don't have distances in between other people or anything. They might get more friends or more people to talk to them becasue other people as well might see how that person is and they might see that the person is really fun to be around with. I know this becasue I laugh a lot and that hasn't happened to me. Thats why I don't consider and don't believe that laughter is being the reason to have distances in between people (relationship). In my opinion I consider laughter a very important part of who we are, the way we think, and also the things we like to do. What I mean by this is that you can have some humor but you don't actually express the way you are thinking about what other do. Or if something is super silly and theirs a new kid at school and you or someone else says something you might probably think that it's funny but you might just not want to laugh at that moment becasue you @MONTH1 a little to shy or simply becasuue you might not know that person as well and maybe the other person won't have enough confidence to laugh with you for whatever silly thing someone just said. Although many people still should laugh whenever they want. Sometimes if you laugh a lot you might be the happiest and funniest person anywhere. Or whenever somebody is sad you might as well be the only person theri who can make her/him laugh and happy. In addition these were some of the reasons why i think that laughter is great for you, that way people will get to know you better. These were a few reasons of how laughter can be a benefit,how it can distance people." 15 16 31 3 3 4 3 3 3 4 3 3 3 3 3 +20817 8 " There are times I get along with others and times I don't. There also are times where I make others laugh until they cry. Like this one time me and my friends where walking to the store, I start pointing out the most random things. When I pointed out the @CAPS1 store, he started laughing so hard that he literally peed his pants. So we had to go back to his house so he could change into some clean cloth, and it took him @NUM1 to @NUM2 minutes to get dressed. So I asked @CAPS6 he was doing in there, and he said. ""I'm taking a pee."" @CAPS2 I started laughing and rolling on the floor, and that's when it hit me why he was laughing so hard about me pointing out the @CAPS1 store. It was because the last time we had gone inside and there was a man talking about his son's football team which my friend and I was on at the time, was in the top ten. Guss @CAPS6 we really weren't. The man felt so afraid of @CAPS6 the lady he was talking to might think of him. So @CAPS5 gets up and says to us. ""@CAPS4 you for letting me know that. I thought he was right for a second."" @CAPS5 gives us a hug and the man gets up and says. ""@CAPS6 about me? How come I don't get a hug."" That when I started to laugh harder @CAPS2 heck. Good thing I did not have to go to the rest room. " 13 17 30 30 2 2 2 3 3 3 4 4 4 4 3 3 3 3 3 3 3 3 +20818 8 "@CAPS4 fills the air around us with happiness and joy, @CAPS4 brings warm memory's of loved ones that are close to us , and adds a splash of hope to those who need @CAPS4. Laughter is the key to solving life's problems.@CAPS4 is a way of adding something special into our life and comes from many different areas of life .Laughter could come from a pitiful joke that someone could have told you,@CAPS4 could be brought up by a show, and @CAPS4 could also come from the joy we get when a near loved one has returning home from a long journey. Imagine seeing something comical like a person falling down or crashing into a pole , the moment right when that happens you hear your self laughing as hard as you can that you practically cant breath and the person standing right next to you is joining in on the laugh. Although @CAPS3 might seem rude and disrespectful you have just made a bond with the person right next to you and found a similarity between the both of you. @CAPS3 is how friendships are brought up and made, just by one little thing that made you both laugh and have a connection with each other can trigger a brand new friendship between to people that could either last a minute or can last a life time. In my case @CAPS3 is how I met one of my closest friend ever , we had seen a student from our class trying to show the class how cool he was by climbing up the flag pole and replace the @ORGANIZATION1 state flag with his own personal home made flag ( he got the @CAPS1 off of a show ) ,as he was heading up the pole almost half way their he must have gotten scared because minutes later he started yelling for help, a minute later the faculty members finally heard his cry's and yells and tried to get him down from ware he was, @CAPS4 took them almost half an hour to get him down. @CAPS3 was the moment ware I had made one of the greatest friendship I've ever had in my life. Many friendships are made in class and with the people you go to work with but a great friendship is brought up by a simple laugh two people share with each other. God laugh's last. @CAPS3 is the name of @PERSON1 son of @CAPS2 and @PERSON2. In @CAPS3 story @PERSON2 the @CAPS5 of @PERSON1 claimed that she was surprised when she was blessed with her only child and that people would laugh and be surprised the same way she was when they hear the news. Being surprised or shocked can also bring some one to laugh at what either happened in their surroundings or what they did them self's. I remembered a time ware I laughed at something that took me by surprise, @CAPS4 was when my @CAPS5 lost the keys to the house inside the car, we looked for them every ware but had no luck finding them, after an hour had pass we called my dad so he would bring the other key to the house, after we called him we had to wait half an hour for my dad to get their but as soon as my father parked in the driveway my @CAPS5 found the key that she lost inside her pocket (@CAPS4 was a typical cartoon moment).When we heard the news we all just started laughing at what has just happen, we were all shocked and a little dumbfounded when that happened. As you can see being surprise can also bring a smile and a laugh onto someones face. Picture yourself staring into the eyes of some one close to you with a blank face and trying not to let out the slightest bit of a giggle or a smile and then find yourself laughing nonstop for no reason. That is basically an every day thing for me and my sister. My sister and I can't stare at each other for even a minute, we eventually start laughing the first five seconds and end up laughing a hole hour without stop, but as soon as we stop laughing we note's that we were laughing for no apparent reason , which would make us laugh for another hour more.That the kind of laughter that two people that are so close to each other get , the kind that you don't need a reason to laugh but you end up laughing for no reason at all.@CAPS3 shows the connection two people have with each other the type ware you know what the other person is thinking. Laughter can come from old memory's of family gatherings for the holidays , friendships we made when we were in school , memory's of our childhood and how thing we thought then were in style and cool are k now thing we look back into and laugh at, by being a little surprise, and can also be The fact that we know someone by heart ." 16 16 32 3 4 3 3 3 3 4 3 4 3 3 3 +20819 8 " LaughterI laugh everyday. I feel a lot of different emotions when I am laughing. Some of the emotions are happiness, sadness, and pain. I use laughter to let my emotions be seen. when I laugh I usually feel happy after wards en less I am crying because I am hurt. When I am sad I tend to laugh and smile a lot to hide the pain I am feeling because I don't want people to see me sad all the time and think I am playing the sad card to get attention. But laughing and smiling actually make everything hurt worse instead of making it better. When I am sad i tend to rely on laughter to get me threw my day because if i didn't have laughter i would have people asking what was wrong all day and it would drive me crazy. When I am angry the only way I can laugh is if a friends or family member is trying to make me happy or if I am reminiscing of fun times iv had. It makes me happy when I laugh and brightens my day when I am anger. I also laugh at things people say to me even tho they hurt my feelings when they said it, because I don't want them to know they hurt me. When I am happy all I do is smile and laugh. Laughter brightens my life when its a happy laugh.My friends and I can just sit there and laugh for hours and nothing. My friends and I can be pretty silly at times and all we can do is laugh, have fun and be in a good mood, and that makes me pretty happy. Some things in my life that make me laugh are my nephew my family and friends. All those things I was just talking about come into my mind when I think of laughter. I think that every single person needs some laughter in there life to be happy. " 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +20821 8 "Laughter's @CAPS1 Laughter is everywhere. It @MONTH1 be three doors down reclining in a comfy living room. It @MONTH1 be at the nearest playground bouncing on the teeter-totter. It @MONTH1 be at an elegant restaurant sitting at a petite table in the distant corner. For me, it lingered in an old fifth grade classroom. I stumbled through the doorway carrying @CAPS11 purple backpack and @CAPS11 lunch pale resting in @CAPS11 left hand. I recognized everyone from @CAPS11 previous years of elementary school, and shortly joined them after visiting @CAPS11 hook outside the door. I had been waiting anxiously for @CAPS11 turn at the fifth grade. The legendary @PERSON1, was known as the ""coolest"" teacher around. He played a large role in the gossip of the young students, and each of us had our hopes set high. ""@CAPS2 your seats @NUM1 graders!"" announced @PERSON1 @CAPS3 with a contagious smile. Kids scattered around to room searching for seats near their closest friends. Everyone listened attentively to @PERSON1's introduction to the year. His voice caught our full attention, but not too exciting compared to our expectations. He appeared very nice as most teachers come, but still nothing spectacular. The day dragged on. The sleepy faces returned and the vivid colors had escaped our touch. The day finally reached an end, not satisfying the eager children. The next day rose quickly and I trudged back to the disappointing classroom. To @CAPS11 surprise, the next day was nothing like the first. The classroom @CAPS7 experienced a drastic change. Every wall was filled with endless color. Posters layered over the plain paint with fascinating pictures and words. A fancy popcorn machine rested in the back of the room. Fresh popcorn overflowed from inside. The smell traveled through our needy nostrils as we entered. Mr. @CAPS3 sat contently at his broad desk as we made our way to our seats once again. He welcomed us to our second day. After the first couple minutes of class I had found that the rumors were true. He had a sense of simple humor that created giggles in every corner of the class. His ideas and word choice related to us as @NUM1 graders. We found his subtle jokes quite amusing to our young minds. He spoke like we spoke, he acted like we acted, and he joked like we joked. He even created customized nicknames for each of us. Laughter hung over our heads like a heavy @CAPS1, never continuing along. Weekly popcorn servers would hand out stuffed bags to all the kids as the class read aloud. Kids became ecstatic on jeopardy @CAPS4 gathering teams as quick as possible. His classroom became a place that we wanted to stay forever, never parting from hour long games and water chugging contests. Despite the everlasting fun and games, @PERSON1 showed us what it was really like to be a learner. He cared about our future and pushed us to strive in every moment of life. He taught us to write with desire and worth. To express our feelings on paper and tell the world a story that we want heard. He would plan one on one time with students struggling in a particular subject, and next class their confidence had bloomed. He had an ability to reach into our minds, find out who we were, and emerge that hidden confidence to become @CAPS9. We respected him, yet felt comfortable messing around with him during class as he had frequently done to us. @PERSON1 gave us a craving to learn. @DATE1 @TIME1, I had began to walk home, when @PERSON1 @CAPS3 stopped me at the door. ""@CAPS6 @PERSON2C!"" I unexpectedly said in a high tone, not hiding @CAPS11 enthusiasm. He chuckled, ""@CAPS7 fun at class today?"" ""@CAPS8 yeah,"" I answered with a grin. ""I'm glad"" he continued, then changing the subject, ""I was thinking about having a huge dodge ball tournament at recess tomorrow. Do @CAPS10 think that would be a good idea?"" I snickered to myself, trying to comprehend the fact that an adult had said this to me, ""That would be so fun."" ""@CAPS9,"" he expressed quite excited, ""@CAPS10 are a really neat kid, @CAPS10 know that? Its a lot of fun having @CAPS10 in class."" @CAPS11 face lit up. I stood there smiling for quite some time. We finished our slight conversation and I continued home. Every student in the class yearned to be liked by @PERSON1, as if he were the most popular kid at school. I was liked by @PERSON2 I was liked by the man that changed @CAPS11 whole outlook on education and life. Gradually, from time to time, I drift back to the careless days of @NUM1 grade and @PERSON2 I still laugh at the ridiculous events that occurred in that small classroom each and every day. Frequently, I glance above me to witness that dense @CAPS1 that still hovers above me. Laughter has left a mark on me, and those kids of @CAPS11 @NUM1 grade class. " 30 25 55 6 6 6 5 6 6 5 5 5 5 5 5 +20822 8 " Laughing is one of the key components in all my relationships with others. It lightens the mood of any situation and can really lift my sprits when I'm having a bad day. It is often the ice breaker when I meet someone new and can help me get closer to the friends I already have. On the first day of school, freshman year, I met a girl named @LOCATION1. We were in writing class and there was a boy named @CAPS1 sitting between us. @CAPS1 and I were talking about our schedules, and he said something that made our conversation slightly uncomforatable. I looked up and saw that @LOCATION1 had heard what he had said and had a look on her face that was somewhere between being embarrassed for me and close to laughing. I smiled at her and mouthed the word ""awkward"" when @CAPS1 turned away. This was her cue that it was okay to laugh, and she did so subtly. I didn't know that this first laugh would lead to many more in a friendship that would develop almost instantly. After the first week of schedules being changed and students being shuffled around, we found out that we had every single one of our classes together, except @CAPS3. We probably spent more time laughing in those classes than getting work done, and I'm not exactly sure how we managed to pass all our classes. Spending so much time together, it was only a matter of time before we had enough inside jokes to fill up a dictionary. Nearly any word or just the sight of something related to one of our jokes can send us into a fit of laughter. Sometimes, we don't have to say anything at all. I'll just look at her, and we'll burst out laughing. Because of this, our friends often question our sanity. When we start laughing, they'll look at eachother, and then at us for a clue as to why, or ask if we are okay. They don't understand us the way we understand eachother. People always get our names mixed up even though we look nothing alike. Our names dont even rhyme, or start with the same letter. But I can't really blame them. We're so much alike! From the activities we participate in to the way we think, we could almost be the same person. She makes me laugh every single day, and she's one of my best friends. @CAPS4 is another one of my friends who is constantly making me crack up. Whenever I'm with her, I'm always terrified of peeing in my pants. She's not as close to me as @LOCATION1 is, but we've gotten to be such better friends this year. We have a lot of classes together this year, and that's probably why we've gotten closer. We're always doing stupid stuff together, and laughing about it the whole time. For example, she and I like to laugh obnoxiously loud and exaggerate our ""ha's"" when someone tells a really lame or cheesy joke. Our biotech teacher loves to tell cheesy jokes, so when we're in his class, we sit together anticipating one of his jokes so that we can laugh. We also like to chew our gum with our mouths open, in order to make the chewing noise louder. I often laugh so hard that I can't even chew. I know I'll have a good day if I'm with @CAPS4. She can make me laugh in a way a lot of my other friends can't. It comes deep from within, to the point where you can't even breathe, and tears and running down your face. It makes your entire face is sore, even your eyes, from being scrunched up for so long. She's such a fun person to be around, and I'm glad to have her as one of my friends. Laughing is a very important part in the relationships I have with other people. If my friends couldn't make me laugh, our friendship would be so much more boring. Nothing would be fun. If I never laughed, I'd never be happy, and that's not a life I'm willing to try. Life is hard. It's not easy, and it's not always going to be smiles and smooth sailing. There's going to be sadness and rough waters. But no matter how tough this life @MONTH1 get, I know I'll have friends like @LOCATION1 and @CAPS4 there to share a laugh." 25 20 45 5 5 5 5 5 5 4 4 4 4 4 4 +20823 8 " Laughter is like cooking; it brings people of every kind together, but the wrong food or the wrong time can bring discomfort to you and others around you, such as beans. Laughter is a medicine. Laughter is a universal language; you can speak @CAPS2 ""language"" with a foreign friend, even when you know not an ounce of their native tongue. Laughter differs, ranging in loudness, pattern, softness, and attitude. You laughed weeks into @CAPS2 world and you'll be laughing your way out of it as well. Sometimes in life, it is important to laugh! Laughter is forgiving and a nod to acceptance. It was my freshman year and I had arrived early that morning to keep my friend company who's mom had dropped her off at such an early time, due to transportation conflicts. I wasn't sure why we were even fighting or why we were on @CAPS2 particular subject; I only knew we had gone off on a ""bunny trail"" and @CAPS4 was picking me apart for something I had done weeks ago. Our voices were escalating and despite the fact our disagreement wasn't taking a turn toward the physical, our words were just as devastating, taking jabs below the belt and giving ""black eyes"" of sorts to both teams. @CAPS4 was right and I knew it, but did @CAPS4 really have to carry such an air of self-righteousness? I thought, ""@CAPS1 @CAPS4 hadn't done what @CAPS4 did, I wouldn't have any secrets to spill."" @CAPS2 was also wrong of me, but my attention wasn't focusing on that, but rather on deflecting her fiery words, sure to not let my guard down and start crying or something ridiculous like that. ""That only happenedone time!""@CAPS4 declared as @CAPS4 tried to defended herself. ""@CAPS3 way, you didn't have to tell the whole world!"" ""I didn't tell the world,"" I objected. ""I only told one person...who told one person, who told another person...and so on.""@CAPS4 raised her eyebrow in a manner as @CAPS1 to say, ""@CAPS5? You @CAPS6 know what I'm talking about."" The air in the room was as stiff as our direction we were taking in our argument, going no where and getting to no point. The feeling was mutual; @CAPS4 was done with me, I was done with her. @CAPS4 leaned back casually against the wall, attempting to appear apathetic, when her ankle succumbed to gravity and the present moisture, grazing the surface and causing her to loose her footing. All the cool @CAPS4 once had was thrown out the window. Her shoe caught the slick surface of the tile, wet from where hundreds of trodden footsteps were left from that morning's downpour. Crashing down, @CAPS4 met the unforgiving, stone floor with a @CAPS7! which left her face dazed and pride altered. I wish that was how the conversation had gone--with her standing not three feet tall and me towering above her. Concealing the slight satisfaction that was lurking behind my dimples, I slowly slid down the wall that stood behind me, coming to eye level with her. I took one look into her eyes, as @CAPS1 they were waving a white flag and then the smug victory left me. I craned my neck backward, smiled at the ceiling and let out a giggle. I'm not sure what @CAPS4 thought about that at first yet slowly but surely, @CAPS4 managed a chuckle. My giggle triggered into a full-out laughter seizure, her catching on and soon leaving us both laying on the floor. There was nothing particularly special about that bleak, speckled tile, but it was that desolate stone we ended up sprawled on, heads huddled on and hands on our bellies, trying to steady our breaths back into normalcy that one early morning. Sure, I apologized and @CAPS4 accepted, but I think her forgiveness went without saying; laughter is not dependent on words. ""@CAPS8,"" @CAPS4 managed with a smile. The laughter my friend and I had shared in that pre-school classroom carried throughout the day. ""Laughter is the shortest distance between two people."" That very distance brought assurance into the relationship I shared with my friend. No, it didn't solve our problems, but it reminded us of how silly and meaningless our petty arguments amounted to be, definitely something worth laughing at. Sure, her fall from grace triggered the expression of innocent surrender from my part, laughter, but it was the letting go of bitterness and the welcoming of a laugh from both sides that ended it all. So, no, while we were not on the same brave wave, our laughter was above picking sides--we were still speaking the same ""language.""" 21 20 41 5 4 5 5 4 4 4 4 4 4 4 4 +20824 8 "The @CAPS1 of Laughter Laughter, one of the best feelings an individual can achieve. When you're feeling sad, angry, or in an argument, laughing can turn any negative feelings into good ones. Though you @MONTH1 not want to show the turn of emotion, it is very hard not to. Laughter is an important thing to have in abundance throughout your relationships. Laughing is a wonderful feeling. Whether it be a chuckle or a hilarious outburst, it completely changes one's mood. Laughing with someone is even better still. Having laughter-filled relationships is an important element to someone's well being. Sharing a @CAPS3 is a great way to start friendships and keep them thriving. Relationships without laughter soon end. It is almost impossible to be good friends with someone without being able to @CAPS3 together. Laughter is something that needs to be exposed in relationships often. Without it, there is no connection, joy, or excitement. There is no common ground if you're unable to @CAPS3 with someone. People need relationships with humor. Laughter bonds people together at any age. When I was still in diapers, I watched a video titled ""I @CAPS2 to @CAPS3."" I would watch this countless times during the day with my parents and siblings. Now, whenever that video is brought up we have a great time reminiscing about those days. Being able to @CAPS3 together has brought my family relationships to the highest point. Relationships are very important to have; including laughter will only make them stronger. Not only is laughter important, but it is contagious. Laughter can lighten a tough situation and lift everyone's spirits. It is very hard not to @CAPS3 when someone else is laughing. Everyone has their own @CAPS3 too. Sometimes, it is someone's @CAPS3 that provokes laughter within the group. Making others @CAPS3 is a wonderful feeling as well. Comedians make a career out of making people @CAPS3. There are good feelings that emerge when you can make someone @CAPS3. @PERSON1 is one of my personal favorite comedians. I @CAPS2 his style and the way he sets up his jokes. He knows how to make people @CAPS3. All of one's friendships need someone who can lift the spirits higher. However, the laughter shouldn't come from making fun of someone. It should come from the situation or a circumstance that the group @MONTH1 be facing. That is key to having a good comedian in your circle of friends. The healing powers of laughter are real and they work. There have been studies of how laughter can heal the body. Such things as laughter therapy is a very real treatment for troubled individuals. Norman @CAPS4' book, ""Laughter is the best medicine"" explains the powers of laughter in detail. @CAPS4 watched The @CAPS5 @CAPS6 and laughed himself to wellness. He shows how one needs laughter to be well. Laughter is so very important to a person's health. It raises the spirits and lightens moods. The fact that there is laughter therapy shows that if one doesn't have enough laughter in his life, he @MONTH1 not be as healthy as he could be. If your friendships are lacking humor, seek it. Laughter is one of the most important feelings that one needs to surround themselves with throughout their entire life." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +20825 8 " In this essay I will be telling you about why laughter, conflict and trust is very important in an relationship. I have a very good relationship with my cousin. We will laugh, fight but always trust each other with anything. We have known and been with each other for the past @NUM1 year's of our lives. Her name is @CAPS1. I love her more then anyone else in the world. One thing that does make us closer is that we laugh at each others mistakes. When one of us messes up the other will laugh at them and then try to help with the problem. When one of us does mess up with something we are always the first to now about what it was with or who it was with even if we do not like the other person that they are having the problems with. Conflict, I think is something else that i think is very important in a good relationship. Me and her fight all the time with each other. Even if its for the littlest and stupidest thing's. We always find one way to fight over something. If it's for the other messing up where it could or would completely mess with mine or her life. We protect each other from messing up are lives to much. We stop each other from doing really stupid things. We have strange feeling when the other is hurt or might be hurt by someone or something. Trust is something that is very important for a relationship. Trust, you can be there or tell the someone anything no matter what it is. Me and her now everything there is to now about each other. If you want to now something about me you could go to her and she could tell you. If you wanted to now something about her you could go to me and i could tell you. I could tell her anything even if she is going to be mad at me for a while if I ever really needed her to be there for me I now she would be as soon as possible. We will almost never judge the other for something they did or are going to do. We now what the other person has done and what they have not done as well. I would trust her with my life if I had to. She is my best friend, favorite cousin, @NUM2 mom, sister, and everything else to me. Me and her will always laugh at each other s mistakes. We will always have some type of conflict with each other but we will always be there to help the other one out for what ever reason it @MONTH1 be. those are the @NUM3 thing i think you need to have a good relationship with someone like i do with my cousin @CAPS1. and i still have this relationship with her and i will never be able to lose it no matter how hard i try to i now she will always be by my side." 15 18 33 3 3 4 4 3 3 4 4 4 4 4 3 +20826 8 " Bell rings. Shuffle, shuffle. @CAPS1. Snap. EEEE. Crack. Slam. Click, stomp, @CAPS1. Tap tap tap. SLAM. Creak. Shoof, shoof. Sigh. Seventh class of the day. Here we go. ""@CAPS2! Tu va ou pas? On a +tude cette class-l+. Tu peux aller au bibliotheque si tu veux...."" @CAPS3 all blinked at me, @PERSON1, @NUM1le and @ORGANIZATION1, chocolate-haired and mocha skinned, impatiently awaiting my answer. The truth was, I knew @CAPS3 didn't really care if I came or not. It made no difference to them if I trailed a few feet behind like some pathetic puppy. I was silent but adorable, loved only because I was an @CAPS4. Because I spoke fidgety @CAPS5. Because I was the exchange student, because my translator and colorful clothes were so shocking for ten seconds, and were then forgotten about. I was a flock of seagulls haircut. So why are you here? I thought. Why did you go on exchange at all? You are the complete opposite of everyone here. No one wants you. Just go home. But my ego had a ready answer. You begged for this remember? For months and months, it was all you wanted, all you thought about, all you dreamt about. So I went with the girls. As expected, @CAPS3 walked down the three-person wide staircase side-by-side, and I shuffled awkwardly behind them. Finally arriving at @NUM2scalier, we sat at a table, the three girls talking. I glazed my eyes over, attempting to look lost in thought, as if I didn't care I wasn't included. Selfish thoughts buzzed in my head; if @CAPS3 weren't talking to me, why should I make the effort to talk to them? I really had no idea how @CAPS3 felt about me. How does someone feel about their shadow? @CAPS3 notice it, sure, but it never offers up insight, it never makes you laugh. It's all in the confidence, said my mother's voice, all how you carry yourself. But I knew it wasn't that simple. I was just too alien. These girls would never understand me, as I would never understand them. In frustration, I started to flick peas across the room with my spoon. Pat, flick, sproing. This caught the interest of @PERSON1, as @NUM1le and @ORGANIZATION1 were discussing something very emotional. Tears began to pour out of @ORGANIZATION1's eyes. Sniffling, she and @NUM1le went to the bathroom, leaving me all alone with @PERSON1. Only @PERSON2 could have felt my felt my same emotion as he stared up at @CAPS6. Silently, I continued shooting peas. @PERSON1 just stared at them as @CAPS3 darted around the room. Suddenly, with a horrible miscalculation, a pea hit a boy in the face. And then, he turned around and swore. And then, @PERSON1 and I looked at each other from across the table. And then, we laughed. We laughed so hard I cried. So hard that huge, alien tears flooded from my eyes. People around us were laughing too, even though @CAPS3 had no idea what was so funny. I didn't even know what was so funny. But it didn't matter, because we were dripping tears and snot, reaching for each other, reenacting the pea hitting the boy's face. It was as if we had been friends for years, and laughing happened all the time. It was saturated with all the angst and lonliness and despair I had felt the past four weeks. The connection we felt was instantaneous, like lightening, the kind of connection I felt with my best friends back home. I felt that huge swelling sensation in my chest, like a balloon was stuck inside. My stomach was aching and my cheeks were so sore I felt them seizing up. My heart felt whole even for that second. My soul was open. It was the best laugh of my life. Sniffle sniffle. GASP. Laughter. GASP. Swipe of tears. Sniffle sniffle. Laughter. GASP. This is why. I thought. This is why you came. Bell rings." 30 30 60 6 6 6 6 6 6 6 6 6 6 6 6 +20827 8 " I didn't believe my grandfather when @CAPS2 told me laughing could cure anything. I was nine years old, the days were dark @CAPS3 cold @CAPS3 I felt like my life was a shattered piece of a stain glass window. Not only had @PERSON2, my ageless pit bull, just died @CAPS6 also my little sister would tease me if I dared to shed a tear for the lost of my best pet. I sat on the coach, staring at the fire as it crackled @CAPS3 popped, when my grandfather sat down beside me @CAPS3 told me a story. It was about him, when @CAPS2 was young @CAPS3 how lost @CAPS1 best friend too, only @CAPS1 friend wasn't a pet. ""@CAPS1 name was @PERSON3,"" @CAPS2 began, ""@CAPS3 we were eleven years old. Oh, how we had so much fun. All we did was @CAPS7! We thought we were gonna grow old together @CAPS3 be each others best men @CAPS3 cause trouble tell the end. @CAPS2 was my best friend until the end. I loved him, very much like how you love @PERSON2. I never thought anything would happen to him. I thought that we'd both live forever. @CAPS6 then something did happened. @PERSON3, @CAPS2 had gone fishing alone because I was at church @CAPS3 @CAPS1 @CAPS4 had to work, @CAPS3 it was such a wonderful day to @CAPS11 down to the river @CAPS6 then @CAPS2 never came back from the river..."" @CAPS5 sniffled at the old story, "" @CAPS6 you see, @PERSON1, there's a cure for sadness. Do you want to know @CAPS9 it is?"" I nodded half thinking there was a magical medication or spell. ""@CAPS7."" @CAPS2 said. ""@CAPS9?!"" I was utterly shocked. ""@CAPS10, it's simply,"" @CAPS2 said gently, knowing my easy temper, ""@CAPS11 through the stages of grieving. Feel lost for a little bit, @CAPS6 then find your way back home. @CAPS7 is in your heart @CAPS3 always will be. Find a wave of joy @CAPS3 @CAPS11 with the flow. Love life, because, as you have just seen, it can be so short."" I nodded @CAPS6 didn't look at @CAPS1 sober face. @CAPS2 kissed the top of my head. @CAPS2 looked into my eyes ( I didn't dare meet the intensity of @CAPS1) @CAPS3 I knew @CAPS2 saw the reflection of the fire blazing in my watery green blue eyes @CAPS3 could see my processing @CAPS9 @CAPS2 had just told me. Then @CAPS2 left me alone to think. I needed to move on? How? Life wasn't that easy. I knew that. I opened up my note book to do some homework to get my mind off @PERSON2, @CAPS5, @CAPS3 @PERSON3. That's when I discovered a small piece of paper the size of a deck of cards. I flipped it over, showing that it was a picture. A tear leaked out of the corner of eye. It was of me @CAPS3 @PERSON2. We were both in a mud pit. My blond hair looked like dirt ( considering that I had been rolling in mud). My pit bull was rubbing @CAPS1 greasy head on my shoulder smearing more mud on to myself. I smiled, missing him even more, @CAPS6 feeling a lot better then a minute before. I loved him. I loved him so much. I still do this day, @CAPS6 I had to get over that my friend was gone. After I saw the picture, I had laughed to myself, automatically feeling better about being such a horrid granddaughter @CAPS3 a inconsiderate best friend. @CAPS6 seeing the good times we had, @CAPS3 smiling, made me honestly feel better about myself. Huh? Maybe laughter is the cure for anything." 24 21 45 4 5 5 5 5 5 5 4 5 4 4 4 +20828 8 "@DATE1 was the start of a new age, i had just turned @NUM1, what a joy i thought that was. i was so existed for my birthday party, that i couldn't even bare it. my mom asked what i wanted to do for my birthday, i told her that i wanted to have a party and a sleep over. she agreed, so that night we planed and made invitations. that week flew by and before i new it, it was party time. i invited @NUM2 of my best friends and all of my family. we had such a good time that the time just flew by and it was time for everybody to go, three of my friends stayed the night there was, @PERSON1, barbie, and @CAPS1. my parents whet to a party of there own and we were staying at home all night by ourselves. it was around @TIME1 and we were all watching hills have eyes. we all herd a big crash, from up star, we all went up stars and saw that my self had been knock down and we all freaked out. we ran down stars screaming, i called my mom and thinking that someone was in the home they rushed home thinking it was a real emergency. my mom and dad went up stars to check it out and they found that it was my black cat mouse he had gotten in through my window and jumped on my self not sturdy enough it clapped." 13 15 28 3 3 3 3 3 2 3 3 4 3 3 3 +20829 8 " The bus flew around tightly wound corners. Beyond the windows, farmland, rocky bluffs, and peaceful rivers streamed past. Exhausted from the fourteen hour flight, I barely knew what time it was. The only things keeping me awake were the jolting of the bus and @NUM1 other @CAPS1 I barely knew gossiping quietly. We were going to visit and live with a group high school students, affectionately referred to as ""our @CAPS2."" I had met @CAPS16 partner, @LOCATION1, only once. Everything I knew about her, her life, her family I learned from maybe ten, maybe @NUM2 short @CAPS3 messages. Communication was going to be problematic. @CAPS16 mother started teaching me @CAPS4 when I turned two, but I was nowhere near fluent; I was self-conscience and uncomfortable around native speakers. @PERSON1's @CAPS5 was decent, but her family spoke only @CAPS4. Finally, the bus drove down the narrow cobbled streets of @CAPS7. It pulled up to a plaza packed with people. The doors hissed open, and we filed out into the crowd, standing on tiptoes to search for our new families. All around me, people chattered in a mix of @CAPS4 and @CAPS5. @PERSON1 and her parents waited somewhere in the middle, and I slowly wove @CAPS16 way towards them. Brigitte, @CAPS16 host mother, grabbed me in a hug. ""@CAPS10 gehts? @CAPS10 war dein @PERSON2? How @CAPS18 you? How was your flight?"" @CAPS11 of @CAPS16 @CAPS4, I faltered, ""@CAPS13 @PERSON2 war sehr langalso ich bin ein bisschen muede. The flight was very long, so I'm a little tired."" @PERSON1 took @CAPS16 arm and led me uphill towards the school, where our welcome dinner was being held. She explained, ""@CAPS14 is very excited to meet you. @CAPS7 is so small; we never get tourists. We only get @CAPS15 exchange students every other year."" @CAPS16 stomach was filled with that jittery-sick feeling of nervous anticipation. Normally, making friends was easy for me, but this time was different. I only minimally understood the language and culture of the people surrounding me. The long flight was evident in the sleepless bags under @CAPS16 eyes and @CAPS16 greasy, knotted hair. @CAPS16 jet-lagged brain wondered how I would get along with these people. Would I fit in, be able to slip into @CAPS4 life without many hitches or snags? We passed from the antiquated street to a dusky tunnel-like entryway. After a few turns, we emerged into an open courtyard. An array of food covered several tables, and the scent of grilling bratwurst wafted through the air. ""@CAPS18 you hungry? You should have something to eat. We have so much food here,"" @PERSON1 told me. I grabbed a plate and placed a roll, strawberries, and a sausage on it; I was too anxious to really be hungry. @PERSON1 steered me towards a worn table with wooden benches, where her friends were already enjoying dinner and a few beers. She introduced me, and I perched stiffly on the edge of the seat. @CAPS14 talked excitedly, questioning me about @CAPS15 life. As @CAPS14 loosened up, they began to joke, sometimes in @CAPS4, sometimes in @CAPS5. Some of the @CAPS2 teased me about @CAPS16 accent. It wasn't a mean teasing; they weren't trying to be malicious, just light and funny. So I laughed. In that moment, I seemed to fit better with these people I only sometimes understood. I was less a foreigner and more a new friend. Relaxing, I allowed myself to laugh at @CAPS16 mistakes and really enjoy being someplace entirely new." 25 24 49 5 5 5 5 5 5 5 4 5 5 5 5 +20830 8 " My friend @PERSON1 and I have @CAPS1 friends from as back as sixth grade. We have @CAPS1 through so much together. Even though we don't have everything in common and we don't hang out, out side of school together, we have a lot of laughter in our friendship. I say that if you are gonna have a friendship that is gonna last, you have to have laughter in it to make it a fun friendship. When @PERSON1 and I where in @NUM1 grade, we where the biggest people to the sixth graders because we where in the highest grade in our middle school. We would have so much stuff to do. @PERSON1 and I would always walk down the hallways linking our arms together and one moment after another she would just push me into someone. That someone would plow into a locker or wall and we would just laugh are butts off. It was fun to us but the other people kinda minded, but not that bad. Another thing we would do to make our self laugh would be when @PERSON1 and I would have big tickle fights. It would always start with one of us trying to stick something in each others mouths. I would always try to stick a piece of paper in her mouth and to get me to stop, @PERSON1 would tickle me. @PERSON1 new that I'm like the ticklish person on the face of the planet. One time that happened was when we where in front of the office at our school. We tickled and tickled each other till we where laughing our butts off on the flour. Well a teacher came and told us to stop and then the bell rang and so we just went to our classes. Well @PERSON1 was the office aid and so when she went to the office, apparently one of the office people saw us tickling each other and thought we where going out. @PERSON1 told me that she just said ""@CAPS3"" and started to chuckle. I got a big laugh out of that. Laughter is a vary good thing to me because without it, @PERSON1 and I wouldn't be best friends as we are today in @NUM2 grade. You see, our friendship all started off of laughter. I met @PERSON1 in the sixth grade @CAPS4 class. Our teacher had assigned seats and @PERSON1 and I and two other people had to sit together. I had no idea who she was at the time. We ended up saying something and laughing about it and soon enough she introduced her self and so did I. Well the seating arrangement changed and she sat somewhere ells and so did I. Well the person she sat by moved away. I had a bad grade in @CAPS4 class and I told my teacher I wasn't getting along with the people at my table and asked if I could sit somewhere ells. He told me yes and so I went over and asked @PERSON1 if I could sit in the empty chair that the guy used to sit in before he moved away. She told me that she didn't care and so then on out we started hanging in school together and had so much fun. So you see. Laughter is a grate deal in a lot of peoples life's. You need it. Without it I would of never made my best friend who I have today. I have her to thank for getting me through my tough years. Without the laughter in this world we would be lost probably. Just think about what you might not have or what you might be missing if you didn't have laughter in your life." 17 16 33 3 4 4 3 4 3 3 3 4 4 4 3 +20831 8 I remember my freshman year when I was on the soccer team when we played against the bull dogs in @LOCATION1. We were losing in first half and before first half got over one of our goalies got his hand hurt. So they took him out and they put in the other goalie and one of the other team players kicked the ball so hard it hit the goalie in the stomach. So it knocked his wind out and me and the hole soccer team started laughing because it was funny how he was jumping up and down and saying that he was going to pass out and he just got his wind knocked out of him. So then out first goalie that got injure he had to go in because no one wanted to go in as a goalie because they were to scared that they would score on them. After first half we scored @NUM1 goals so we won @NUM1 to @NUM3 . The reason that we where laughing at the goalie was because it was funny how he reacted when they knocked his wind out. Also because he was our friend because if he was then we wouldn't have laugh about it but after the game was over we asked him if he was alright and he said that he was just faking it even though he really wasn't. The main reason that this was all funny was because one of our goalie got his wind knocked out and he was over reacting when he only got his wind knocked out and how he was saying that he was going to pass out and when he said it he said it with a smile on him like if he was faking it. 14 15 29 3 2 3 3 3 3 3 3 3 3 3 3 +20832 8 " Laughter is something that is there when you are happy. Laughter is there when we are having fun and when we are in a good mood, it makes us smile. Many times there are things that happen that make you laugh. For example; someone trips over your backpack and @CAPS7 fall @CAPS3 their face. You can't help it but laugh! Then you start feeling bad and wish you wouldn't of laughed at them for tripping, but then you start remembering how @CAPS7 fell and you think about it and you end up laughing so hard that you can't stop until you get in trouble. Laughter is a big part of your life that their isn't at least a time of day that you don't laugh. Everybody in my family is fun and @CAPS7 always make me laugh. Their isn't a time when we are quiet and one of us has to say ""awkward silence."" We are always laughing and having fun and we are never sad. Let me tell you about the one time my family was laughing when we went back in time to remember those times that we now call ""good times."" I will tell you how laughter is a big part in my family. And how embarrassment is involved. It is a beautiful sunny day @CAPS3 @DATE1. Today was a big day for me, @ORGANIZATION2. It was the day I was going to have my @CAPS1 party. I woke up, took a shower, went to my mom's @ORGANIZATION1 and sat down @CAPS3 a chair to have my hair done. I was wearing my @PERSON1 pajamas with a black shirt that said ""@CAPS2 @CAPS3."" I got my hair done, did my make-up, put my dress @CAPS3, went outside to take pictures, and got @CAPS3 the limousine so I could go to church. After I went to church I took pictures with my family and then went to @CAPS4 to take pictures at the @ORGANIZATION3 building. After we got back from @CAPS4, I went to the @ORGANIZATION1, at @CAPS6, and got ready for my waltz. I did my first waltz with my court of honor; six guys and six girls and my partner. After the waltz I danced the second waltz with my dad. When I was done dancing with my dad, I got ready for the surprise dance. I started dancing with my court of honor and my partner and towards the end came the big part... I was supposed to be picked up by my girls and the guys were supposed to spell my name @CAPS7 ran in front of me and the girls when one of the guys, who is my uncle, ran to the right instead of the left and spelled my name wrong! The guys were supposed to spell ""@ORGANIZATION2"", with two guys wearing black @CAPS3 each end, but @CAPS7 ended up spelling ""@CAPS8""! One of the other guys saw the mistake right away, so he moved to the left and since my uncle didn't move to the left either, @CAPS7 ended up spelling ""@CAPS9""! I'm am not going to lie...I saw my uncle when he was in the wrong spot because the letters were facing my way, but I could of stopped that from happening but I didn't because I couldn't! But at the end it was funny. Everybody in there started laughing and I got so embarrassed! But when I was walking off the dance floor I started laughing! Now that we think about it, that is the funniest thing that has ever happened in our family. I guess laughter really is there when something embarrassing happens. Laughter is something that is there when you are happy. Laughter is there when we are having fun and when we are in a good mood, it makes us smile. But laughter is always there when we have an embarrassing moment. Laughter is always with us. It doesn't matter if we mean to or not, but we end up doing something dumb that makes us laugh. Laughter is always with me when I'm with my family. Laughter is with me because my family is fun, crazy, and cool. No matter how sad we are, it doesn't matte if we are sad because one of my family members were in a car accident or someone died, we remember the times when we were happy and when we were having fun with that person. We end up remembering the fun we had together, that we start laughing really hard! Laughter is there when we are happy, but it is also there when it is the best day of your life. Laughter is a moment of happiness." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +20833 8 " Laughter is a great thing, except for some instances. We all have been there. Having a good time with friends, laughing and making new memories. Then you take a drink of something and start laughing again. Next thing you know you're choking and can't breathe. You're coughing as much as you can, trying to stop. It's not only a little embarrassing, but it can get a little awkward too. You can't stop it, you just have to let nature take its course. Everyone stares, asking if you're alright. The moment feels like forever, and that was exactly how I felt. I have two best friends, @CAPS1 and @PERSON1. It was during the @DATE1 and we decided to have ourselves a little movie night at @ORGANIZATION3's house. We were fully prepared with candy, soda pops, and the best of all, pizza. It all added up for a great night. We decided to watch the movie @ORGANIZATION1. It's all of our favorites, I don't think we could ever grow tired of it. @CAPS1, @PERSON1 and I found comfortable seating arrangements and started to watch the movie. We were eating, laughing hard-core and making comments along with it. We were having a great time. Then I decided to take a drink of my @ORGANIZATION2. I was about to swallow it, but just my luck, one of the funniest parts in the movie was on. I started to laugh and knew I had an issue. I put my cup on the table, quickly got off the couch, and took two steps when most of the @LOCATION1 in my mouth came flying out onto the floor. I couldn't breathe and was now coughing, so I kept running to my destination, the kitchen sink. I was about two feet away from the sink, I was so close! Then I felt something come up my mouth that I couldn't control. I wasn't going to open my mouth, it'd be all over the floor! I was so grossed out I basically threw myself at the sink. My mouth opened and there went the puke, into the sink. I continued to cough, wondering when it would it would all end. ""@CAPS2 you okay?!"" @CAPS1 ran into the kitchen and started hitting my upper back, trying to help me out. @CAPS5 hit me three times, then I could finally breathe again. ""@CAPS4 you, I was having a hard time."" @CAPS5 started laughing, while I was still disgusted with the nasty taste left in my mouth. I put my head under the faucet trying to clear it out a little. I grabbed a towel, and we made our way to the living room. We entered the room to find @PERSON1 sitting on the couch, laughing hysterically. @CAPS1 sat by her, and started to giggle a little along with her. I got on my knees and started wiping up the @ORGANIZATION2 spill on the floor. There wasn't too much, but still a good amount. I started to chuckle a little to myself while cleaning it up. I thought to myself, ""@CAPS6 must I always be the one to choke?"" ""@CAPS6 didn't you just go to the bathroom sink? I mean it's right there!"" @PERSON1 was pointing to the door and still laughing. ""I didn't think of that! I just ran for the kitchen!"" I've been to her house plenty of times before, but the bathroom slipped my mind. I laughed at how much of a blond moment I had just had. ""@CAPS8 my gosh,"" @CAPS5 laughed a little then continued, ""@CAPS9 me of @CAPS10! When I saved you!"" ""@CAPS11 up and watch the movie!"" I told her jokingly. @CAPS5 finished laughing and we were enjoying the movie in peace again. They both still tease me about that, but I don't mind. It just goes to show you the things laughter can unexpectedly bring." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20835 8 " Has there ever been a person that you know, that just made you laugh like no one else could? Or had a moment or a @DATE1 when you laughed as if there was no tomorrow? Laughter is something that everyone can relate to no matter the age or the personality. It fills you with warm feeling that spills out like a waterfall. There isn't always a reason for the things that people do, there is always mystery. The same thing applies to laughter. Sometimes you are just so happy that it all builds up inside and has to be let out. During the @DATE2 of my sixth, going on seventh grade year, my friend @PERSON1 and I were nearly inseparable. @PERSON1 was the first friend that I had made upon moving from @LOCATION1, @ORGANIZATION1 in the beginning of my sixth grade year, but in a short amount of time we became best friends. On @DATE1, we were at my house by ourselves and we wanted to do something fun, and creative. So we decided to make a fort out of sheets and furniture. We took chairs and the ends of some couches and @DATE1 tables and tied sheets and blankets from them, falling over ourselves and not paying attention to anything else. We made a plane of fabric about three or four feet above the ground, tall enough to crawl under and sit down. We then took a tack in the wall and pinned a sheet to hang over the flat sheet as our walls. We then filled the make shift tent with pillows and blankets to sit on. By the @DATE1 of our adventure, the living room was a mess and the furniture was all over the place. It was as if a tornado had run through the house, even though it wasn't the biggest or best fort we had built. But we didn't care, we had a blast building it. I remember sitting in the fort and talking to her about anything that came up. We talked about school, people and just life in general. We made jokes like we love to do and just fed off of each others good feelings and energy. I was on cloud nine and no one was about to bring me down. That @DATE1, I laughed like there was nothing wrong in the world. I was carefree and wasn't afraid to show it. We were both laughing almost constantly to the point of tears, even though, when I look back now some of the things that we laughed about, weren't all that funny. It was one of those days with the laughs that fill you up with so much energy and joy that you can't even contain yourself, and it is so contagious that others can't help but join you. We let ourselves out in cries of joy and cackles. I had never laughed so hard in my life and I never wanted it to stop. It wasn't necessarily because of something funny that @PERSON1 had done or said, but I was just so happy that everything seemed worthy of laughing about. And every time I started to laugh, she couldn't help but join me, and that would just set us off laughing harder. By the @DATE1, we were both emotionally drained. @PERSON1 ended up staying the night because we never wanted the @DATE1 to leave. But, eventually, every @DATE1 ends, every morning is a new beginning and every night an @DATE1 to something, but when you close your eyes to sleep after a long @DATE1 of laughing, you feel full. Not of happiness, but of life. And that feeling, is not something that is easily taken away. So live and laugh like today is the last @DATE1, and never forget the memories that you created in the times before." 20 18 40 40 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 +20836 8 " The @CAPS1 Of Laughter In @CAPS2 @CAPS3 me laughter is important, we all laugh in our lives. It's a symbol of happiness, and it shows people around us that we care enough @CAPS3 listen and pay attention. With laughter we can create memories that last a lifetime. For my friends and I, laughter comes naturally and we all enjoy every moment of it. My friend @PERSON1 and I have known each other since the second grade and have been friends ever since. what has kept our @CAPS2 strong and still alive today, is the memories we have created through laughter. One memory I always seem @CAPS3 remember though, is the first time we had gone inner-tubing together. There have been many memories made between @PERSON1 and I that we remember because of the laughter we shared. Yet the memory that always remains dominate, is when we had gone inner-tubing for the first time. It was our seventh grade @DATE1 and we had planned on spending as much time as possible together. Now this did not really work out because I had @CAPS3 babysit a lot, but she was a good friend and understood. So when we did hang out it was always so much fun. Now yes, we have had our up's and down's, and that comes with any @CAPS2. We got through it and ended up having one of the best summers together. That @DATE1 we would hang out at each others house's and go places together. Then one day @ORGANIZATION1's parent's had decided that they wanted @CAPS3 take a trip @CAPS3 the lake and go boating. @PERSON1's family invited me @CAPS3 come along, and so I asked and I was able @CAPS3 go with their family @CAPS3 the lake. I had been boating before, and @CAPS3 the lake that we were going too. What I was not expecting, was for @PERSON1 and I @CAPS3 go inner-tubing. It was exciting, and nerve-racking all at the same time; I had never laughed so much with @LOCATION1 in my life.Going inner-tubing turned out @CAPS3 be one of the best memories we had ever made together. During the entire @DATE1 whenever possible,we had gone inner-tubing, for me, the adrenaline was almost addicting. Laughing was almost always constant when boating because we just had the best time. It was our new story @CAPS3 tell everyone and we were both proud of it. When inner-tubing we had learned @CAPS3 work together and it helped our @CAPS2 a lot in a way. Also when inner-tubing we got @CAPS3 the point where we went as fast as possible and went as crazy as possible and we loved it. That @DATE1 we made some of my most treasured memories, and we really owe it all @CAPS3 laughter. With laughter we can create memories that last a lifetime, and I am very grateful for that. If not for laughter I do not know where my @CAPS2 with @PERSON1 would stand. And because of that, I believe that laughter is important in any relationship or @CAPS2. It's a symbol of happiness and that is what makes life great." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20838 8 "Iv always loved laughter in my life, I don't know how I could live with out it. This is how it all started out. One day, I was not having a good day. Nothing could have made me laugh. Friends would tell my jokes, they would make funny faces. That just did'nt make me laugh one bit. There was just that one thing they have'nt tried that made me laugh, until my sister completed that one thing. I would never forget this day when my sister and I had a water balloon fight. On a hot @DATE1 day my sister and I would always play water balloon fights, this one time she through one water balloon and it hit my face. I also through one water balloon and guess what happen it hit her face. We just could not stop laughing, we were just breathless from all that laugher. My sister desided to tell me that story when I was not having a good day, even when people tried to make it better by making me laugh. The one thing no one said was that one time during the @DATE1. Until my sister reminded me of it and told me that story. I just start laughing from that day on. Then my sister took me outside, she had all the water balloons ready, we start throughing them at eachother . That day when i was not good day turned out to be the best day of my life. Thats a day I would never forget from laughter. Thats why I love laughter in my life, it just makes my not good days turn to the best day of my life." 15 12 27 3 3 3 3 3 3 3 3 3 3 2 2 +20839 8 One day me and my friend taylor got the idea on a snow day to get his quad and tie a rope to the back he was drifting around a post he didnt see the hill and i was on the back on a slead and i flew over the quad and got about @NUM1 feet high then crashed it hurt but it was so funny we both couldnt stop laughing for ten min.then we went back to his creek it was frozen about @NUM2 inch thick then i was drven the quad and he was in the back i was driving along the bank and he was on the ice then it started to crack so i went faster so he didnt fall in then after about two min the ice cracked and he went under then i got him out and i drove as fast as the quad could go and got back to his house he changed and then he just sat there and laughted for hours about what we both did. 13 11 24 3 2 3 3 2 3 3 2 3 2 2 2 +20840 8 " In any situation laughter is used. Many times have I been in an awkward position that i have used laughter to free myself from discomfort. Laughter will never go away and you will always have it with you to use when it is needed in a revolting moment. For example, @CAPS1 a month ago i was walking to the park with my brother and some friends of mine. When we arrived there were already people at the skateboarding spot we wanted to skate at. We decided no big deal we will just go on with our business and skate. ""@CAPS2 punks! we were here first!"" one of them said. Me and my brother started yelling back. Then one of them got in my face and started talking a bunch of trash so i said something @CAPS1 him that was so funny that all his friends laughed to. He was pretty pissed of but it didn't matter because we ended up skating there anyway and nothing went down. This just comes to show that laughter can bring us all together at any giving moment. No matter the skin color or were your from you can always be funny. Some people my be funnier than others but everyone has a sense of humor within them. You can always find the time to make a joke or come up with a clever hilarious line for some one to laugh there brains out at. Laughter is the one thing you can count on in an awkward position or when you go to a new school or have never been somewhere before. Laughter can always keep you out of fights no matter what. All around the world people are laughing at this very moment and bonding by it. It is the sign of happiness and gratefulness. Laughter has a purpose and will never disappear.Laughter is bonding. Bonding is loving. Laughter is together." 17 15 32 3 4 4 4 4 3 3 3 3 3 3 3 +20841 8 " As we understand the benefits of laughter, we realize that we cant live without it. Its one of those things that are always going to be with us through tough times, and the joy of life. So when people say ""Laughter is the shortest distance between two people"", well there right! You can think anything you want to, but i want you to know that i have the best laughter in the world when it comes to the boy i have fallen for. It all started on a softball tournament in bend. Our team drove there for the weekend to play our tournament and we stayed in the @LOCATION2 inn hotel. Which was very nice by the way, probably to nice for our team, because we end up destroying the place like a bunch of football players in a locker room, hence the hard practices. After our practice we go ahead and swim in the pool, even know we have a big game the next day. The hotel had two big pools, one outside, and one inside with a sauna. We all go to the inside pool because in was way to cold outside. Then everything from there was a little different. My friend @PERSON3 and I go into the sauna after swimming to relax and just talk a bit. After a while two boys about our age enter the sauna while we were still in there. They acted as if they were nervous and shy, so they sat down and started talking to us which was kind of awkward, no doubt. When it comes to boys I'm not shy to just speak my mind and to ask them why the hell there just sitting there pretending to mind there own business, and i know for a fact that's not why. We talk a laugh for a bit and got to know each other. One of them was extremely adorable and i hit it off with him very well. It got later into the @TIME1 and it was time for all of us to head back to our rooms and say good bye for ever. Me and @PERSON3 shared a room with her parents. I had know idea that @PERSON3 gave my number to @PERSON1, the guy i kind of liked in the sauna. About ten minutes later i get a text saying ""meet me outside to walk around"". So i amused that it was him, and i got all excited! so we snuck out of the room for the @TIME1. All we did was walk around the hotel and talk, he was barefooted and as cute as can be. I never laughed so hard in my life! He made me smile and feel like i could con-core everything that came my way. About forty five minutes past, still gazing into each others eyes, feeling like it as only been a second. His friend @PERSON2 sees someone walking out a the hotel room and realizes that its his mom. They bolt off saying there goodbyes and at the last second he kisses me on the cheek for his farewell. Never in my life have i experienced something so exciting and fun, and most of all i understand the importance of laughter. Knowing that i would never see him again is what kills me. He lives in @CAPS1 and i live in @LOCATION1. How could anything possibly happen between us? Maybe some day i will meet him again. Maybe someday i would be able to talk to him again like we did that @TIME1, and just maybe, will i fall in love with him. All those maybe's have came true, because i fallowed what was right and i waited. Now sense that all happened i can ponder and relate to laughter and how it effected me in life. That is what brought us together, and I'm happy that all of that could happen so quick in my young life." 17 16 33 4 4 4 4 3 3 3 4 4 4 3 3 +20842 8 " I kept my head low as I walked through the halls of the brand new school I'd been signed up to attend. Students passed me with warm smiles, but I didn't dare meet their gazes, I couldn't. This is what real school is like, I thought to myself. I'd always been home schooled, since before I could remember, and now my parents felt that I should be introduced to a public school, in my last year of middle school @CAPS12 less. My dark, curly brown hair fell into my face as I entered my first class, acting. The room was warm and dimly lit as students began to recite their lines; the sets were colorful and I instantly recognized them as the garden from @LOCATION2 in @LOCATION1. I suddenly let out a small yelp as my foot caught in the doorstop, sending me tumbling into a chair. Deep red color flooded to my cheeks as I looked up and realized that every student in the room was staring at me. I let out a troubled sigh and brushed my hair over my face, wishing I was back home, in my favorite chair studying for my mother's vocabulary tests. I glanced up through my hair and a quick smile flashed across my face as I realized I was @CAPS12 longer the center of attention. ""@CAPS1, you must be @CAPS2, the new student."" @PERSON1 said warmly. I smiled and nodded my head slowly, ""@CAPS3, that would be me."" @CAPS4 smiled at me just as I'd smiled at @CAPS13, but @CAPS13 smile seemed sad, ""I'm sorry dear, but all the parts for this play have been taken, but you are more than welcome to help paint the sets next class."" I nodded and reached into my backpack, pulling out a book and quickly buried my nose into the pages of my favorite romance novel. I was instantly taken to another time and place, and I wished with all my heart that I could truly go there. I was suddenly jerked from my imagination when a small pixie looking girl took a seat beside me. @CAPS4 didn't say anything for a moment, just looking at me. @CAPS13 hair was a few shades darker than mine, more black than brown but @CAPS4 wore @CAPS14 @CAPS8. @CAPS13 bright blue eyes twinkled with imagination, as did @CAPS13 face. Something about @CAPS13 seemed kind. Maybe @CAPS14 was the way @CAPS13 dimples came out even though @CAPS4 wasn't smiling, or @CAPS14 could have been the way @CAPS4 sat, tall with confidence. ""@CAPS5, hello?"" I murmured, closing my book, careful to mark the page. ""I didn't mean to interrupt, but you looked all alone, and I thought I'd come over and say hello. My name is @CAPS6, but everyone calls me @CAPS7."" @CAPS4 said with another smile, making @CAPS13 dimples come out even more. I chuckled softly and returned @CAPS13 smile, ""@CAPS8, I'm @CAPS2, nice to meet you."" ""@CAPS10, don't take this the wrong way, but you aren't from around here, are you?"" @CAPS4 asked hesitantly. My smile fell slightly, ""@CAPS12, I've always been home schooled, I've never actually been to a public school before."" @CAPS13 smile fell with my own, and i could tell that @CAPS4 knew what I was talking about. ""@CAPS14's not always a bad thing though, I'm glad that I'm finally getting to go to a public school."" I murmured, the lie coming easily. @CAPS4 laughed and layed a soft hand on my shoulder, ""@CAPS12 need to lie,"" I knew that half of @CAPS13 words were serious, and the others playful but something deep inside of me shifted. I barely knew this girl but I felt that I could trust @CAPS13, and that we could be friends. We laughed and joked the rest of the class, and I was almost always caught up in the way that @CAPS4 constantly got flustered while trying to explain things to me. @CAPS4'd try and use @CAPS13 hands, make movements, just to explain, which always took us into a new round of giggles because of how ridiculous we both were acting and I was startled when the bell for lunch rang, had time really passed that fast? @CAPS7 smiled at me, ""@CAPS16 for lunch @CAPS2?"" A smile broke out across my face, maybe I wasn't as alone as I'd thought. With just a few giggles and laughs, an entire friendship was planted in a ground that I'd thought was to stony to hold any life at all. By just opening myself up a little bit, and showing a side of vulnerability and even fear, I'd opened the doorway to an entire future of conversations, to smiles, tears, secrets but above all, hope. This place was @CAPS12 longer a place of torture, exclusion and sadness, but a place where I could go to see my new friend, a friend who eventually became my sister, a woman who I began to trust and understand with all my heart, and I finally came to realize that we weren't as different as I'd once thought. We were one and the same all along." 21 14 40 40 4 4 4 5 5 4 3 3 4 4 2 3 4 4 4 5 4 4 +20844 8 " I'm a tell you about moments sometimes even adventures with a boy named @CAPS1.C. @CAPS4 has brown hair that is up to his neck, that @CAPS4 loves to swoosh around like in the movies. @CAPS4 most definitely doesn't like his bangs cut to short other wise the swoosh will not turn out the same way. @CAPS4 has brown eyes that just seem to sparkle and a smile that seems to fool everyone. ""@CAPS2, @CAPS4's so adorable"", they say.""@CAPS2, @CAPS4 so cute"", they say.@CAPS1.C is cute, but does things that will amaze you! Things you wouldn't think a kid his age could make possible. Like i always say, ""@CAPS4'll make you work for your money!""The thing is @CAPS4's only @NUM1 years of age, well right now @CAPS17. @CAPS4 loves the attention, @CAPS4'll do almost anything for it. Yet @CAPS4's very lovable and sometimes sweet.@CAPS4 loves comedy, cartoons, candy, video games, the works. @CAPS1.C is lots of fun believe me when i say you'll never get bored! I think when @CAPS4 was @NUM2 1/@NUM2 when the adventures began. @CAPS4 would always go in the refrigerator and just @CAPS8 at the egg cartons and double check if anyone was around. Then @CAPS4'd grab one and toss it and say, ""@CAPS5, chicken?"" with a baby type accent, so adorable! but @CAPS4'd try another and another and another until all the eggs were splattered all over the place. @CAPS4'd run off knowing we're coming to close to him and hide. I must admit i didn't know who was doing all this at first. I kind of thought it was @CAPS1.C, but wasn't too sure. That was only one mischief.@CAPS4 also loved this aquarium that was there, very bright because of the light it just seem to attract him. @CAPS4'd get closer and closer and just @CAPS8 at the fishes. Watching them swim, all the different pretty colors. The rocks and the little toys seemed to attract him more. When @CAPS5 one was around @CAPS4'd @CAPS8 above the tank and stick his hand in very carefully and say,""@CAPS7!""trying to attempt to grab it, but @CAPS5 success. When @CAPS4 heard that someone was coming or getting closer to him @CAPS4'd run so fast like the bird cartoon from loony toons always out smarting the coyote. There would be a mess, of course. Though everyone knew @CAPS4'd be trouble once @CAPS4'd start walking! @CAPS4 was so cute though.Now when @CAPS4 was between the ages @NUM4 and @NUM5, @CAPS4 just loved picking at people just for the fun of it, or so we thought. @CAPS4 do it for the attention so we'd go drop what were doing and go run after him. What @CAPS4'd do was grab something that was valuable to a certain person and go up to them and say, ""@CAPS8! me have, me have.""Of course, we had to go run after him, but sometimes you'd have to be careful because if not @CAPS4'd toss if and wham! It would brake. there's only a few things I'm pointing out here, but in reality there was much more and it was ore exciting then might be explaining it! age @NUM5 was a workout! One day we decide to lend @CAPS1.C our @CAPS10 touch to entertain him because we were busy doing our own things and @CAPS1.C discovers you tube! @CAPS4 loves this show called @CAPS12 and @CAPS13! In other words @CAPS4 calls it, ""@CAPS14 @CAPS15 @CAPS16.""@CAPS17 @CAPS4'd go on it and watch most of the t.v shows on the @CAPS10 touch and use the apps on it! @CAPS4 is very smart when it comes to using electronics if i @MONTH1 add. The day after that @CAPS4'd ask for the @CAPS10 touch almost frequently then every time @CAPS4 was denied of using it, @CAPS4'd go to his methods in getting it! Of course what @CAPS4 did was, when lights were out and everyone was asleep @CAPS4'd @CAPS8 all over, when finally @CAPS4'd @CAPS8 under the pillows and grab them and take it with him. The very next morning we were after him! @CAPS4 told us, but yet again @CAPS4 would do it! Then we went to drastic measures we hid the @CAPS10 touches else where. now at @NUM1 years of age! whoa, well @CAPS5 in my opinion I think @CAPS4 calmed down a little more. Others @MONTH1 not think so, but i know so! Anyways @CAPS4 is now @NUM1 which means @CAPS4 is now starting school! which i hear is quite entertaining for those who are not involved! They love @CAPS1.C but sometimes @CAPS4 can be a little too much, ha. @CAPS4 loves roaming around doing what @CAPS4 loves most and just having a great time, which i admire. well if i were to say one little short story about him as a @NUM1 year old I'd pick, how @CAPS5 matter what @CAPS4'd always defend his brothers! @CAPS4 wont let @CAPS5 one bully his brothers, @CAPS5 matter what the odds! i admire most about him is that!" 15 16 30 30 3 3 4 4 3 3 4 3 4 3 3 3 3 3 4 4 3 3 +20846 8 " Laughter is a symbol of joy and happiness. It is to become amused or derisive. Many people today make jokes or funny remarks just to hear somebody laugh. It is never something we should take for granted. Through many relationships no matter what kind, I believe laughter takes up at least @PERCENT1 of your relationship. It's to show the best out of someone and to let them know you are listening. There are plenty of other reasons in this world needed for laughter. ""I'm sure you can even think of one"". In my views of this world and our society today, I believe laughter is what makes up our ""human"" spirit. It's to show ourselves and other people the spark we have inside us. Have you ever sat and pondered why we make each other laugh? I have asked myself this same question over and over. For me making people laugh is letting them know I care and to also think I'm funny as well. We even do it just the fact of wanting people to like us better and to be known as funny, hilarious, or just a good person to talk to. Sometimes we can go to the extremes of being to funny, and feeling guilty for picking on someone in a laughable way. I remember in the eighth grade, I was thirteen years old. I was really shy and didn't have much friends. One day in class some of the popular kids actually came over and started talking to me. I was @CAPS1 excited and nervous that other kids wanted to talk to me. Of course they were laughing and making jokes, not caring what anyone else was saying. Then this one girl started talking about other people like she knew everything. When she started talking about my best friend it made me angry but happy at the same time, because some of the things she was saying were true. That's were I messed up, I started talking about all the other dumb things she did, just to make everybody else laugh. As I was sitting there all I felt was guilt and disappointment in myself. I couldn't believe I was sitting there talking about my best friend, just to try and make myself popular. Later that day she came up to me really upset and couldn't understand why I would do that to her. I told her I was sorry and that I only did it to make myself popular and seem funny to other kids. We didn't talk for almost two weeks. @CAPS1 I tried to do everything in my own possible way to get my best friend back. It did take me awhile, but she finally came around and forgave me. It was a good life lesson for me, knowing laughter @MONTH1 not always be a good thing. Now me and my friend are juniors in high school and when we think back on that day. We both together can share a laugh. In conclusion, you can see how laughter can bring somebody up and tear them down. I have experienced these things as well in my life time. Laughter has made me stronger and to be a better person, even if it means turning down popular kids @CAPS1 you don't hurt those closest to you.""@CAPS1 go out and make somebody laugh today""." 20 18 34 34 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 3 3 +20847 8 " Laughter is very important in my life. I laugh everyday. People wouldn't be the same without laughter, and the world wouldn't be the same. Two days ago, my @CAPS1 class went to the computer lab to type our @CAPS2 writing test. Much of the class was groaning about having to write this essay. I was annoyed because I already had passed the essay, and I didn't want to take it again, but I had to. Once I got to the computer lab, I sat in my chair and logged into my account. After a few minutes my computer finally loaded, and I could log into @CAPS2. Once I got there I logged in, and my computer froze. I had noticed that some of the other students computers had also frozen. I laughed at them for their computer being frozen, and they laughed at me because mine was frozen. After a few minutes my account finally logged in, and I selected to take the essay. After my computer being frozen for a few minutes, I got an error message, and it logged me out of @CAPS2. This had also happened to @MONTH1 of the other students, and I laughed because of my my classmate's computer was still frozen and the screen was white. I logged back in and it froze for a while. I tried logging in again, but kept getting different errors. I noticed that many of my other classmates also had gotten these error messages, or their computers were still frozen. After a few attempts, my test finally loaded, and I could begin the test. After debating for a moment, my teacher told the whole class to log off because only a few members had been able to make it to the test. I then logged off, and logged back into @CAPS2. My computer started to log me in, but then it froze and logged me out of @CAPS2. This had also happened to many of the other students taking the test. After trying to log in, the farthest I could reach was waiting for my @CAPS7 to approve me. My @CAPS7 said that he had approved me several time,s but nothing had worked. After a few minutes of my computer not letting take the test, I logged off of my account, and got back on. At this time, I was laughing because it had worked before, but I wasn't able to get back to my test. By now over half the period had gone by. No one, not even the @CAPS7, knew what was going on, but very few people had started their test. After a few more tries, and nothing being able to work, the class was almost over. My @CAPS7 told us to log off the computers and wait for another day to complete this test. When I walked into the room, I thought it was going to a very boring period. I was wrong, in a good way. The class wasn't boring, and I spent much of it laughing.Although I didn't get my essay done, it was a good class. This was a good experience, and I'm sure I will be able to look back and remember this day for a long time." 15 20 35 3 3 4 3 3 3 4 4 4 4 4 4 +20848 8 " Laughter is something everyone needs in their life. We all need some humor, and even sometimes, we need to laugh at ourselves. You need a laugh, a smile and a sense of humor to live life to it's fullest. When people take things other have said, differently, or even thinking a joke was said way too harsh, and they take it the wrong way. People told me, ""you need a sense of humor, you know?"" @CAPS1, I feel bad for taking it too seriously. Back, my sophomore year, I was going through a rough time. With friends, and family becoming more and more apart from each other. I don't even remember laughing or smiling last year. Let's just say, through the first four to five months of sophomore year, it was hard trying to crack at a simple joke. Once, sophomore year was coming to a close, I realized there was more to life @CAPS1 moping around in my own self-pity. It was getting close to @DATE1 vacation and I know I wanted to make @DATE1, and my junior year, my year, and that no one would ruin it for me. After from being all sad and not having any fun, and laughing at the jokes my dad made about me, I know I needed to hang out with him a lot more. When my dad and I hung out, we had more laughs @CAPS1 I couldn't even remember having. It was a really good memory to have. Especially with my dad. My self-esteem was getting a lot better @CAPS1 it use to be. I was really happy with myself that I only tried once, and now I had a better relationship with my dad, too. So far, life was going great for me. I realized that I was more happy when I recognized myself and told people the real truth about me. I have to say, I never smiled, nor laughed as much as I did in a while. The truth about me was that I was diagnosed with gender identity disorder. I didn't go through any therapy, I just knew it was the real me, and it was probably why I was so sad my sophomore year. When I discovered myself, I knew there was a lot more to life @CAPS1 getting a better reputation. I was able to smile a lot more and just appreciate everything and everyone wanting to become my friend, or even get to know me a lot more. It was a really good feeling knowing that people wanted to be interested in me a lot more and would ask me questions about who I wanted to be called, and what a trans-gender was. I felt wanted, interesting, secure, and most of all; happy. I know I was going to get more harassment down the road from coming out. I got a lot of restricted numbers calling me and I laughed at all of them who sent me hate mail, calls, and text messages. It was really worth the laugh, because I knew what I was talking about and they didn't know a thing about transgenders, or gender identity disorder. Hanging out with my dad and more friends really paid off. I survived through a hot @DATE1 and now it was time for school. I was really excited for it to start, and even more excited for the sports ahead of me. I knew I was gonna kick butt my junior year and not let anyone get in the way of it. When it was around my birthday, like, a month into the school year, I realized I needed someone there all the time to just make me laugh and smile all the time. Not that I wasn't smiling or laughing, I just know I needed it more in my life. There was a girl that started talking to me on @CAPS2-book. She was really cute, her personality fit her so well and already she knew how to make me smile so big, my cheeks would end up burning. Her name was @PERSON2, and that also fit her, everything was just so great about her. We ended up talking on the phone at twelve, in the @TIME1, on my birthday. By far, that was the best night I had in a while and the sweetest thing anyone has every done for me. @PERSON2 and I hung out that weekend at @CAPS3 @CAPS4, in @LOCATION1. When we headed up there her friend, @PERSON1, was singing to the songs by @CAPS5, while @PERSON2 mocked her squeaky voice. I never laughed so hard that my stomach would cringe in pain. So, you see, having a lot of people there to make you laugh is a really amazing feeling to have. You even have to laugh at yourself and make fun of how idiotic you sounded. Getting to know someone new is a perfect feeling, especially when they make your heart melt, and give you butterflies every time they say something sweet to you. Even just to make your @CAPS2 light up with a smile." 15 15 30 3 3 3 3 3 3 3 3 4 4 3 3 +20849 8 " In a relationship you should be able to trust in each other, confide in each other, talk with each other, cry with each other and most importantly laugh with each other. Many people believe that laughter is an important part of relationships, and I can definitely agree with that statement. The relationship in my life that I totally get the most laughter out of is the relationship between me and my best friend, and boyfriend, @PERSON2. He can always make me laugh, even on my worst days he can find a smile and a little giggle. I constantly thank @CAPS1 for putting him in my life. The first thing that I really noticed about @PERSON2 when I started to get to know him better, is that he can always make me laugh. Whether he is making totally weird faces at me or tickling me until I can barely breath, he always knows how to get me laughing. When I am balling my eyes out to him, even then he can get me to giggle. Just @TIME1 I had had a terrible day at school and within a few minutes of me crying to him, he had cheered me up and got me to laugh. In church or with friends we will just look at each other and make a face and start laughing, there's something about those blue eyes and that dorky smile that will always make me laugh. Our ability to laugh with each other has been a great aspect of our relationship since the beginning. When we play @CAPS2, or he plays and I fail at attempting to play, we always laugh at how bad I am at it, or when I finally do get an awesome kill. ""That just works out, don't it!"" is one of our inside jokes, obviously it's not all that funny but we have fun competing at who can say it the most in one day. The rule is you have to have a good reason for saying it and if we say it at the same time we always playfully argue over who won or gets ""the point"" (as if we actually keep score) but that usually gets us laughing at some stupid excuse or reasoning that one of us tries to use. When ever there is a camera around @PERSON2 likes to make funny faces, which will always get me laughing. Then we usually end up taking somewhere around twenty silly pictures and just going through them and laughing and laughing at all of the weird faces we decide to make. When one of us starts laughing it usually gets the other one laughing too, they do say laughter is contagious. To be truly comfortable with and around each other you have to be able to laugh at your self. One time, @PERSON2 his little sisters, @PERSON3 and @PERSON1 and I were all seeing how high we could kick and long story short I kneed myself in the forehead, @PERSON2 was the only one who noticed or heard the crack of my bones hitting each other with force, and he just got silent until I started cracking up. Then he made sure I was okay. We were laughing so hard we cried and I had a big red circle on my forehead, not to mention my cheeks were bright red from embarrassment too, but I just laughed it off. Another time we were goofing around on the hard wood floor at his house and I pushed him to the ground, his whole family was cracking up and his face was bright red, but he just laughed it off. Whether we say or do something stupid in front of each other we both have the ability to laugh it off. Even when things get rough our you disagree on something it is always good to later be able to look back on it and laugh about it with each other. Just because @PERSON2 and I are best friends doesn't mean we agree on everything, we actually disagree about a lot of things most are small but once in a while we will disagree on something a little bigger. At times one of us will do or say something that upsets the other one, we are always able to work it out and later look back on it and laugh even when it is a touchy subject. Both of us have made mistakes in our past too but again we just look back and laugh. Obviously I have reason too agree with the statement ""Laughter is the shortest distance between two people"" because I have that connection in the best way possible. I am so thankful to have @PERSON2 in my life, his ability to laugh and make me laugh is what made me fall for him in the first place. So between ""@CAPS3"" over a text message, cracking up at weird things we do or just watching a movie, we are always laughing at each other or with each other. As we both would put it ""were freaking soul mates!""" 21 23 44 4 4 4 4 5 4 5 5 5 4 5 4 +20850 8 " Every day I spend with my girlfriend is a day full of fun and laughter. I can be in the worst of moods and she can brighten my whole day with @CAPS1 a couple of words. Together we can chane any situation into a happy one. What i'm trying to say is that laughter is a very powerful thing @CAPS1 by making someone laugh, you can change their mood, their day or in some cases maybe change their whole life. People say that laughter is very contagous. I beleive that is true. Take comedians for example, they can take any situation and make a whole room burst with laughter. My favorite one is when this one comedian said ""@CAPS2 @CAPS3 shivering in the cold, we will bring him silver and gold"", like the song. He then said "" @CAPS4 don't they @CAPS1 bring him some blankets, I meen come on, the poor kid is going to die of hypothermia but at least he will be rich when he does"". I wrote this paper to show how powerful laughter is in the world. I beleive that everyone should laugh at least once a day to make the world a brighter place. I conclude with this "" A smile can light up a room but laughter can change the world into a happier place"". Nobody should go through life without laughter. "" A life without laughter is a life not spent""." 16 15 31 3 3 4 3 4 3 3 3 3 3 3 3 +20851 8 "A true story for me in laughter. My favorite memory in laughter happened two years ago @CAPS4 I meet my friend @CAPS1. I meet her at the @ORGANIZATION1. I was walking out of @ORGANIZATION5's @CAPS4, @CAPS1 was walking in. We bumped right into each other. First, we were both mad at each other and just saying, ""@CAPS3 watch where your going!"" @CAPS4 we both calmed down we went our separate ways. I went to the food court and not even ten minutes behind me she was right there. We both waited in the @ORGANIZATION3 line. @CAPS1 and I just stood by each other for awhile, until I apologized for running into her earlier. She said, ""@CAPS5 its @CAPS6, I should of been watching where I was going other then watching the floor, as I walk."" We laughed for a little while until it was our turn to get some food. After we payed, I asked her if she would like to sit with me because we were both alone at the time. The reason why we were alone was because both of our parents were doing more shopping. We started to talk about where we were from and what schools we go to. @CAPS1 goes to a private @ORGANIZATION2 @NUM1 in @LOCATION1, @ORGANIZATION6. I have told her I went to @ORGANIZATION2. We were both in our freshmen year of @ORGANIZATION4 @ORGANIZATION2 and we both loved band. @CAPS1 and I have just noticed that we have meet before once at a band competition. We have bumped into each other before the same way at least a year ago before bumping into each other again. As she was coming out of one of the rooms where her band was warming up. I was just coming across the room to get to the room where my band was warming up in two doors down. I was just walking, just like @CAPS1 was just walking in the @ORGANIZATION1, I was watching the floor as I walked. Also, we both got mad each other as well. We both just laughed for awhile just laughing how we did the same thing, but the other way to each other before. We both have changed a lot and we both knew we would be very good friends. I guess having laughter with someone you can tell if you well be good friends or not. Laughter is a big deal in friendship. I mean whats the point of having a friend @CAPS4 you don't even have laughter once in awhile and have awesome memories with each other. I still hang out with @CAPS1 until this very day and we still can't believe that we meet twice in the same way." 15 17 32 3 3 4 4 3 3 4 3 4 4 4 3 +20852 8 " Laughter is a very important part of life, for many different reasons. Some @MONTH1 say that its vital to survive, one needs laughter to have a full and rich life. Sometimes laughter can hurt more than it helps. This is a statement I myself believe, and have concluded from the actions and outcomes in my life. Laughter can show emotions towards a statement, or lack of emotions. Laughter can make someone either depressed or happy. It is true when someone says there is a difference when someone is laughing at you, as opposed to someone laughing with you. When a friend or a group of friends laugh with me, its an amazing, self esteem raising emotion. This laughter brings friends closer, and causes us to trust each other more. One time I thought laughing was appropriate at the time but then later felt awful. One scorching @DATE1 day my friends and I decided to venture to the mall, being we lived in apartments and lacked the money for an air conditioner. We all agreed it was a splendid idea. When we reached the mall we were relieved by the cool breeze as the doors swung open, as if to greet us. All of us are very introverted so shopping around in an over crowded mall wasn't our cup of tea. Not knowing what to @CAPS1 we sat on a bench and did what we call people watching. Their was this girl, I will always remember her; @CAPS4 was one of those girls you peer at just for a minute and you know @CAPS4 was rich. A sort of stuck up girl, a walk where @CAPS4 means to exaggerate her hips and bounce her perfect bleach blond hair. The girl passed by us and stuck her nose in the air as if we were not even remotely good enough to be in her presence. Quite a bit angry I stood up after @CAPS4 strolled past and mocked her strut. My friends found this hysterical. Roars of laughter leaped from their mouths. The pressy girl stopped proceeding forward and then started approaching us. @CAPS4 grimaces at us all snobby-like and says, ""@CAPS1 you guys like have a problem or something?"" @CAPS2 covered my face, I didn't know what to say. Fortunately my best friend stepped in and said, ""@CAPS3, we think your dress is very pretty."" @CAPS4 believed us, then walked off, in a rather less snobby sort of way. Through this weird and interesting experience my friends and I learned a lot. One, people can hear you talking crap about them from a mile away. Two, laughter can bring friends together, but can also have some consequences. I @CAPS1 not know for sure if @CAPS4 did hear or see us mocking her. But I knew inside I felt a little bad. Sure laughing at her in the time felt right, amusing. Looking back on it, I feel awful. I have been in that same situation but on the receiving end. It is not pleasant having people talking crap about you behind your back and laughing uncontrollably. Laughing is very vital to life but needs to be appropriate." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20853 8 "DAIRY @CAPS1 boyfriend and I spend a lot of time hanging out together,@CAPS2 two days ago @PERSON3 and I had just gotten into an argument . his mom had just finished making food.he wanted me to try it and see if i liked it. but before I ate any @CAPS3 him if he would eat some of it with me.""maybe just a little bit""he had said getting up to grab a fork.Ithought he was going to eat it with me but it turned out that he just sat next to me talking to @PERSON2 @CAPS2 the fight he had just been in. I really didn't mind the fact that he wasn't eating with me. Icontinued eating, I separated the food by colors to make a face on my plate. it turned out looking pretty great, he looks over and says""whats that supposed to be?"" with a smirk on his face""its a face!... see the carrots are the nose the shrimp are the eyes the greens and , noodles form the mouth and hair"" I look up with a smile ""wanna take a picture of my face on the plate ?"" I say ""nope""he answers ""@CAPS4"" I answer backI mix up all the things again and continue eating my food when I'm done I get up , put the plate in the sink go back to the table and sit down. @PERSON3 gets up goes outside brings more wood for the fire place and starts lighting it. I go up ask him if hes mad he says yes now I'm sad. I say I'm sorry we talked it over and it turned out that he was mad because I didn't let him take a picture of my food. after five minutes were happy again @PERSON1 suggests that we go to @CAPS5 we all agreed. when we got their we all ordered our food and waited.""lets to the wrestling mat!?""we all said at the exact time @PERSON1 and @PERSON2 stayed waiting for the order while @PERSON3 and I when to go play in the little kid toys. we were fighting our way in to the wrestling mat when we noticed that all the little kids were staring at us like they had never see older kids play . we continued our little game of kicking, punching, slapping and scratching each other. i decided that i need a time out so I sat up and took long breaths.out oh the onwear I hear this weird noise I look over and asked him if he had farted he looked at me with a cheese smile and after five second he repiles yes. and continued farting but the room seemed quiet too quite we looked a round to see that all the littlte biys and girls heard him too! their were to little girls standing at the entrance a little boy a few feet away from @PERSON3 and two other little kids by the slide.I guess they were shocked i started laughing to tears, ran out of the play room to go tell @PERSON1 and @PERSON2 what had just happen they too thought that it was hilarious." 15 17 32 3 3 4 3 3 3 4 4 4 4 3 3 +20856 8 " @CAPS4 @CAPS1 Laughter is a powerful tool when you know how to use it. It has the ability to inspire, when in doubt. Lift heavy spirts to new heights, and it can also create great devotion, to a person, thing or cause. So what has laughter done for you and I? Well it has done lots for me, a good example would be my experience in the @ORGANIZATION2. At @CAPS2 middle @ORGANIZATION3 I had everything going for me. I had good grades, teachers, but most of all a group of friends that I could share many laughs with. When we graduated and went to @ORGANIZATION3 my friends either moved or dispersed into other groups. It was horrible not to have anyone to laugh with, making things pretty tough. Then came the @LOCATION1 @CAPS3 program, or @ORGANIZATION1. Since I wasn't really envoled in the program I didn't have any friends, save vanecek. Then an opportunity it join the @ORGANIZATION4 @ORGANIZATION4 arose, I took it. Every afternoon for one hour we had practice, which in turn created a strong bond between the @ORGANIZATION4 members. Before shooting we would laugh it up and relax, making it a fun enviroment to shoot. The @ORGANIZATION4 quickly earned the nickname, @CAPS4 @CAPS1, due to all the laughter heard outside the range. The @ORGANIZATION2, which my battalion as a part of, hosts five competitions a year. With fourteen schools from across @LOCATION3 and @LOCATION2 competing, I got pretty nervous. Before our first competition we had been with one another long enough to consider one another family. My family, seeing how I was nervous, took me aside the night before the shoot-out. We played cards, talked and cracked jokes, it was the one of the most special times of my life. We shot early the next morning, I wasn't nervous just relaxed. Out of twenty four man teams we took third, not bad for a new famliy. Since then the @ORGANIZATION4 has taken first, four times in a row. Those victories I have to give credit to the simple human emotion of laughter. Laughter in a way has inspired me to devote myself to a family, and has taken me to new heights. I guess my question for you would be, what @CAPS4 @CAPS1 are you part of?" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20857 8 " Seeing one of @CAPS15 best friends trip and hit his face on a screen door, was enough to make myself laugh. Its was the @DATE1 after @CAPS15 @NUM1 grade year of school. I was having @CAPS15 friends @PERSON2, @PERSON3 and @CAPS15 neighbor @PERSON1 stay the night at @CAPS15 house. @CAPS25 ever we got bored we usually went around @CAPS15 neighborhood ""@CAPS1 @CAPS2 @CAPS3"" some houses to have some fun. ""@CAPS1 @CAPS2 @CAPS3"" is @CAPS25 @CAPS21 quietly sneak up to someones front door, ring the door bell a couple times and then @CAPS23 run away. All four of us were hanging out that day. It was a great @DATE1 day, gorgeous sun, warm temperature and a nice gentle breeze to cool off your face.@CAPS25 it came to night fall we were all in @CAPS15 room playing @CAPS7 @NUM2. ""I'm bored bro,"" @PERSON2 said to the other three of us. ""@CAPS8 then, think of something to @CAPS19,""@CAPS9 replied ""I can't think of anything,"" @PERSON1 stated with a bored look on his face. We sat for a while thinking of something to @CAPS19 to entertain the four of us. ""I got it!"" I said with a confident smirk ,""lets go @CAPS1 @CAPS2 @CAPS3!"" "" I down for that ,""@PERSON2 said ""@CAPS13 me too ,""@CAPS9 and @PERSON1 replied shortly after @PERSON2. As we were walking out @CAPS15 front door @CAPS15 mom shouted ,""where are @CAPS21 boys going?"" @CAPS15 mom caught me off guard. I didn't know what to say ,""uh, we are going on a walk ,""I replied hesitantly. ""@CAPS16 be safe,"" @CAPS15 mom said as I walked out of the door. We @CAPS1 @CAPS2 ditched a couple house, but that was starting to get boring and then it hit me like a typhoon. I came up with the best idea I have thought of yet. ""@CAPS18 this is what needs to happen, I'm going to @CAPS1 @CAPS2 @CAPS28 the first house, @PERSON2 @CAPS21 get the next one, @PERSON1 @CAPS21 get the house at the corner and @PERSON3 will run around the corner to get the last house. ""@CAPS19 @CAPS21 think that will work?"" @PERSON1 asked. ""@CAPS20 yes it will work!"" I said,""@CAPS21 @CAPS18 ready?"" ""I guess so ,"" @PERSON1 replied shortly after @PERSON2 and @PERSON3 yes. We all lined up in place. I rang the first door bell and started running, then I saw @PERSON2 slam his clinched fist on the second door, next i didn't see @PERSON1 ring the door bell because he was already running ahead of me. ""@CAPS9 get the last house!"" I shouted at him. The house @CAPS9 was running to did not have their porch light on. @CAPS9 was running fast to the house and failed the see the step up in front of the door. I didn't expect what happened next. SMACK! @CAPS9 tripped over the step up and hit his face on the screen door. I could hear the slam from the middle of the dark street. He got up quickly and turn to us in confusion ,""should I ring the door bell? Should I ring it?"" ""@CAPS23 run @CAPS9 I'm sure they would hear @CAPS21 smack their screen door with your face!"" @CAPS25 we got back to @CAPS15 house everyone was laughing. @CAPS9 @CAPS23 made our night. That happened @NUM3 years ago and I still remember it like it happened yesterday. So next time one of your friends ask @CAPS21 to ""@CAPS1 @CAPS2 @CAPS28"" a house think about if the porch lights are on. " 18 20 36 36 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 3 +20859 8 " ""@CAPS1 ma, do you know where my purse is."" I wonder where it is, I need to put my license in my wallet. I kept looking around and found it in my room under all my dirty clothes. A sigh of relief came over me, I was glad I found it before something happened. I woke up @DATE1 @TIME1 and figured it would be just another day. I had plans to go to a basketball game after school. It was the biggest game of the season, we were playing our rivals, the @CAPS2 @CAPS3. The day was going by slow though, I couldn't wait until it was over. Finally the bell rang, school was over, I drove home a little disappointed. I wasn't sure if my friends were going to the game with me, if they didn't go I probably wouldn't either. I was determined though, I texted them at five and convinced them it would be fun. I picked up my friend @PERSON1 first, then @PERSON2. This is when my normal day turned into one of the most eventful days ever. The @ORGANIZATION1 (where the game was being held) was about twenty minutes away, I had to stop and get gas before we left. We went to the cheapest spot in town and filled up my car. When it was time to leave, my car decided not to start. I have an old car and it doesn't start all the time, it just sits there for a while until it wants to start. There were some guys in the other lane that we new staring at us. We just started laughing it was really embarrassing. The attendant asked us if we needed something else and I said no, my car just wasn't starting. I tried turning it on again, but it just kept dieing. Out of all the other days my car decided not to start, today. Then some men came out and told me that they had to move my car I got so embarrassed and starting laughing again. I always laugh when I get nervous. I told them to let me try turning on my car once more, I prayed my car would turn on this time. It did, I was so relieved and embarrassed, I left as soon as I could. Twenty minutes later we were in @ORGANIZATION1 in front of the school, and just my luck again, no parking spots. We drove around for about five minutes until we found one that was walking distance. Then we gathered our things and walked to the game. It hadn't started yet but it was about to, I had a feeling it would be a really close game. Soon the game began and just how I figured, the game kept going back and forth, we got a point, they got a point. It was really exciting but there where two parents behind us that were really into the game. They kept shouting at players, shouting at the referee, and just being annoying. The game was good, but in the end The @CAPS2 @CAPS3 won by @CAPS6 points. It was a little disappointing, but The @ORGANIZATION1 did have a good team. After the game we were going to eat at @ORGANIZATION2. We left the game quickly after it was over so we wouldn't get stuck in traffic. I was driving down this road I thought I new but then I realized I didn't recognize it at all. @PERSON2 told me to keep going she new where we were. I stayed on the road and luckily it took us straight to down town by @CAPS7. I got onto one of the main roads and headed to @ORGANIZATION2. The road I was on had a million stop lights though, and I was stopping every @NUM1 minutes. Then a pedestrian decided to cross the street in front of me, I waited for him to cross even though he wasn't even on a crosswalk. I kept going no worries on my mind, music blasting, when suddenly rainbow lights behind me. This day couldn't get any worse, I pulled over and waited for the @CAPS8 to come up to my window. He asked for my license and registration. I got my purse and looked in my wallet. My heart pounded where was my license i had just put it in my purse a few days ago. I started to panic and laughter filled the air. My nerves got to me I couldn't help it. I looked everywhere finally he asked if I had my school I.D, I went to pull it out and there was my license right underneath. He went back to his car, leaving me bursting with laughter. He came back and told me my insurance was expired, another thing that added to my day. I was still laughing when he gave me my ticket for speeding and expired insurance. I think I got it because I was laughing and he thought I was taking it as a joke. You cant control nerves though, or at least I can't." 20 23 43 4 4 4 4 4 4 5 5 5 4 5 4 +20860 8 " Laughter is a key to any happy and successful relationship in my opinion. It can break the ice in an akward situation or help you become closer to someone. Some people have said that laughter is the shortest distance between two people, and that laughter is the best medicine. I believe that both of those statements are true. Personally laughter has dramatically changed many different social situations throught my @NUM1 years of life. One time in particular that I remember laughter really bringing me closer together with other people is when I was camping with a few of my friends. It was three years ago in the middle of @DATE1 and we were all sleeping outside under the stars. We had all been talking about pretty serious stuff, family and friend problems and just sharing our hardships in general with eachother. I didn't really have much to complain about, I had a pretty average family that I loved along with good friends. However that evening I was learning some interesting but disturbing information about my friends home life. She started to talk about how her parents don't care and how they are both alcoholics, I could tell by her tone of voice how painful admitting this information was for her. The mood had suddenly changed from discussing light issues to a serious, emotional conversation. She continued to tell me how alone she felt sometimes and how she just always wished she could be with her friends because we always have a good time. After she told me all of this we laid in silence for a while. Neither of us were asleep but I had no idea what to say. I mean how could anything I say make that situation better or help her to feel better. While we had been having this conversation our other friend had run back to the car to grab sodas and go to the bathroom. We heard her saying our names and searching for us in the dark. All of a sudden she knew where we were, she had tripped over the edge of our sleeping bag fell on us and spilled a bunch of fizzy grape soda all over our faces. Normally we would have been angry but we all thought this was hysterical. While in the midst of laughing like crazy people I looked at my friend who had just recently told me her painful story, now she was crying from laughing so hard and I knew that a little laughter had brought us closer. That is a memory that I will never forget, it was an experience where I feel laughter has played a major role in making a relationship more comfortable and close. Similar experiences have occured throughout my whole life. Laughter is a common ground, where all people can relate to one another. Maybe it brings people closer together because when you are legitimatley laughing you are so caught up in it that you forget about everything else. All of your problems disappear." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 5 4 4 3 +20861 8 " Laughter Laughter has always played a significant role in the relationships of @CAPS2 life. Being able to laugh with someone creates a bond with that person.Through laughter, I was able to become friends with a person that I can call to this day @CAPS2 best friend. I met the person that would later on become @CAPS2 best friend through one of @CAPS2 friends. A few friends of mine and I were hanging out and @CAPS2 friend, @PERSON1, said, "" @CAPS1 know @PERSON2, @CAPS1 should talk to a good friend of mine.""I didn'@CAPS4 oppose to the idea because from what @PERSON1 told me about her, it seemed like it would be very easy for me to get along with her. About ten minutes later, I looked down at @CAPS2 cell phone and noticed that I had a text message from a number that I did not know. I asked who the person was and waited for a response. Two minutes pass by and I get a message that says, ""@CAPS2 name is @ORGANIZATION2. I am the girl the curly-headed kid sitting next to @CAPS1 told @CAPS1 about."" Once I read this I started just about busted up into a fit of laughter. Never would I have thought a girl I had never spoken to would be brave enough,or sarcastic enough, to say something like that as the first thing they would say to me. For the next few hours, we kept exchanging sarcastic remarks and jokes and the laughs just kept on coming. @ORGANIZATION2 is the type of person that can make anyone laugh. This is what I love about her; @CAPS3 possesses a talent of making anyone laugh no matter where they are, what kind of mood they are in, or what they are doing. We have walked around for hours and we have spent a majority of that time having to stop and catch our breath because we had been laughing so hard. Our ability to laugh with each other has helped us through difficult times in our lives. @ORGANIZATION2's mom passed away a few years ago and this sent her into a depressive state. @CAPS3 rarely felt any happiness until we would talk. Our ability to start laughing at one another helped her throughout this time. I recently received a @CAPS4.B.I. or @ORGANIZATION1. I felt numb to the world. Nothing felt the way that it once felt. Luckily for me, @ORGANIZATION2 was able to come in and do what I had done for her; @CAPS3 was able to make me laugh and feel normal again. Having the ability to laugh with @ORGANIZATION2 has definitely made our friendship stronger than it would have been had we not been able to laugh together. Being able to laugh doesn'@CAPS4 just effect that one moment in time, nor does it just impact one person. Having laughter means so much more than that. Being able to laugh creates bonds that are simply not possible without laughter. I have felt what laughter can do to a relationship and I can say that it most definitely feels good." 19 20 40 40 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +20862 8 " ""@CAPS1!"" @CAPS2 society today loves laughter. From comical shows to hilarious friends, people have fun convulsing with glee. Not to mention that when you're doubled over with laughter you are getting an amazing workout. Everyone that texts @MONTH1 use ""@CAPS3"" or ""haha"" to show they think something is funny; but it is nothing compared to actually being with friends and having, ""a smile that burst."" I couldn't wait. I was on the coast at a camp with my friends, and we were about to head-up to walk up to the three crosses. Some of the other girls were asleep and we had to leave quietly. One of the girls tripped as we were walking out the door and it took all we had to not burst out in laughter. Because when she tripped, she barely caught herself, as she was about to fall on sleeping @CAPS4. Jasmine scurried out the door with the rest of us. After the door was closed, we all doubled over laughing. Jasmine's face, when she tripped was priceless. We headed into the crisp air without looking back. From a gravel path to the cement road going up the hill, we happily skipped along. As the hill got steeper, we started walking. Jasmine, after being tired from skipping, almost fell again. Everyone started laughing again. The walk up the hill was taking longer than expected. Finally, we could see the three crosses at the top. When we arrived at the crosses, we waited for the miraculous sunrise. We kept staring at the ocean; waiting with anticipation. Eventually, @CAPS5 pointed out that the sun rises on the east and would we coming over the mountains. Again, all the girls laughed because we were so tired we forgot which side the sun rose on. At last, the astonishing sunrise happened. It was full of pink, purples, yellows and oranges. After watching the sunrise we realized we still had the treacherous walk back down the hill. I peered over the edge and saw a little path. With a bunch of convincing, I got all the girls to walk down the steep hill because it looked shorter than the cement road we came up. The first part of the path was simple. As we started heading farther down the hill it got skinnier with more brush. A couple of the girls thought we should head back up, but I convinced them otherwise. So on we went. ""@CAPS6 no!"" @CAPS7 yelled. We turned to see she had managed to let her shoe fall of into a blackberry bush. She had just gotten her shoes the day before and now they are muddy and lost. Everyone was trying to reach it, but it was just a little too far away. Suddenly, @PERSON1 tried to grab the shoe; immediately she fell into the blackberry bush! @PERSON2 forgot about her shoe for a little and started doubled over with laughter again. While flailing and screaming we yelled for her to stop because if I didn't mention this earlier; this is a very steep hill. While she was in the bush, she grabbed @PERSON2's shoe. The hard part was getting @PERSON1 out. The first time we tried to pull her up; we got her up a couple of inches then she fell back down, into the bush. Finally, after what felt like a million tries, we pulled her big butt out of the bush. Everyone was laughing so hard during the extravaganza. @PERSON1 was super embarrassed. After all of that, we headed down the hill. We still had giggles while trotting down the trail. As we went, we saw animal tracks. We then realized the trail was most likely made by animal. A couple girls joked around about being terrified of the animal tracks. Eventually, we got back to the cabin, still laughing about what had taken place. The rest of the day everyone was happy and giggly for waking up with an amazing morning. Laughter helped the girls have a wonderful rest of the day. Laughter helped us work through the mud, the shoe losing, and the cold. With out it, we could have been very grumpy. Also, having amazing friends to laugh with was phenomenal. Laughing helps people be happy; being happy is better than being sad; therefore, laughter is important. When writing this paper to the @ORGANIZATION1's in @LOCATION1, I told my friends about the adventure we went on and the predicament we got ourselves into. They laughed hysterically, since they knew the girls. Laugh often to be happy." 20 25 45 4 4 4 4 4 4 5 5 5 4 5 5 +20863 8 " ""Laughter is the shortest distance between two people."" @CAPS1 best friend @PERSON1. Wow! All those great times last @DATE1 and all the ones to come. Some people think were weird but if you knew us you would understand. Sometimes people say, ""I'm going to die laughing."" @CAPS2 i know I am because of @PERSON1, she knows how to always make me laugh. If I had to count how many times we've laughed about or done together i could there isn't enough time or numbers to tell you how many times. First of all, this friendship started the @DATE1, and now we are in sophomore @DATE1 of high school. We've been friends for one @DATE1 and eleven months and six days. We are the best of best of friends. So last @DATE1 when we were learning the cheers for football season, all most every-time we got done with a cheer, @PERSON1 @PERSON1 and I would say, ""@CAPS3-in @CAPS4."" That was our saying, and we always did it @DATE1 and after the football or basketball games. We called it our @CAPS3-in @CAPS4 style or for short our slogan. We would be having a blast and laughing for hours. ""@CAPS5 turn, @CAPS6 turn,"" In @DATE2 we were on our way to state for cheer. On the car ride up to @LOCATION1, every-time we took a corner we would say what corner it was and do a motion with it. Oh @CAPS1 goodness we laughed and we had a blast. After the @CAPS6 and @CAPS5 turns, there was another motion we called the monkey and we would act like monkeys. It was so much fun we laughed. We also laughed so hard that we were crying and we had to go pee so bad, it was almost really bad.That was one of many car rides that was amazing. On the other hand, @PERSON1 @PERSON1 and I, cheer together, we have sleepovers, @CAPS2 i should say that we do everything together. She is @CAPS1 cheer sister and will always be, also she is @CAPS1 best friend.I would do anything for her. I love @PERSON1 @PERSON1. In addition, to the we do everything together. When @PERSON1 is over at @CAPS1 house I always have to make sure I make sandwiches and orange juice. Because this one time we stayed up past midnight and we were hungry so i went and made all of that and @PERSON1 loved it so now i have to make sure i have some for her when she comes over. Now we always talk about the becomes of the sandwich habit.b we laugh about it all the time. Finally, @PERSON1 @PERSON1 and I are going to be together forever, because i don't know what i would do with out @CAPS1 sister. I would not be the person who I am today with out her she and everything to me we laugh even when we want to cry she is everthing to me. You could say we have a perfect freindship of all time. @CAPS1 bestfriend is @CAPS1 sister I love you @PERSON1, thanks for alays having @CAPS1 back. " 17 19 36 3 4 3 4 4 3 3 4 4 4 4 4 +20865 8 " It was some day in @DATE1, I was on my way to school. My friend @PERSON1 was walking with me because we both lived on the same street. He lived a few houses away from me but we always walked to and from school together. Well on this particular day i decided to wear a pair of sneakers that had absolutely no traction on the bottom of the shoe and there was snow out. I slipped a few times but never fell. We were laughing because I would be right in the middle of saying something and id almost fall over. We got to school and he started telling everyone about it, I joined in. It was pretty funny because even at school I would almost fall over because the floors were wet from the dried snow. I thought about just walking home and changing my shoes but I would have to wait until lunch because I couldn't leave school until then or i would get in trouble. After first period I found a puddle of water and started sliding across it for fun. My friends tried doing it too but their shoes had too much traction on it. The bell rang for second period to start and I headed to my class. It was fun trying to get to class because I slid around everywhere. Once I got into class the teacher told me we where going on a field trip to the ponds. I was about to skip out on it but the teacher was walking right behind me. We boarded the bus and started heading out to the ponds. My teacher called our names out to make sure we were all there. He must have done it about every @NUM1 minutes. It was pretty annoying. The bus driver was playing country music too, I don't really mind country music but that day I didn't really want to listen to it. I went to get my ipod from my pocket and found out it wasn't there. I had left it at my house when I was rushing to get to school. We finally arrived at the ponds and we unloaded the bus to begin our field trip. Our teacher told us not to go to close to the ponds because if we fell in we would be soaked and the bus driver wouldn't let us back on the bus. I thought he was just talking smack and I asked the bus driver if he was serious. The bus driver told me if we got wet he would have to wait for us to dry off so we didn't get the seats wet. Again I thought it was a bunch of bull. We met up with our tour guide dude and started listening to him tell us about the history of the ponds and what they are used for. While walking around the ponds I started to slide on the ground. I grabbed onto my friend so I wouldn't fall over but he had pretty bad balance and we both fell over. Everyone started laughing as well as myself. My friend didn't think it was too funny at first. But once he got up he started laughing and joked about how I couldn't stand up right. On our way back to the school we talked about what we learned and if we would want to go back and learn more or even volunteer to work at the ponds. I thought it would be pretty fun if I didn't slip around the whole time. We unloaded the bus again and headed into the school. I found out the little puddle i had found earlier hadn't dried up, I got a running start and slid across it. I didn't fall over this time. The bus had brought us back just in time for the last class of the day, which unfortunately for me was @CAPS1. I got to the gym and asked my teacher what we were going to be playing. He told me we were going upstairs on the wrestling mats to play a dodge ball game. Upstairs on the wrestling mats was a small area and we only went up there if we had a small class. I lucked out big time because we have to take our shoes off when we play on the mats. I got done with @CAPS1 and the bell rang to tell us school was over. I got dressed into my normal clothes and headed home. My friend @PERSON1 was waiting outside for me. We started heading home and I slide around with every step I took. The sun had melted the top layer of snow and turned it into ice. I looked over at @LOCATION1 and laughed. He laughed too. The whole way home I was skating on ice. It was a really fun day. Except right when I got home I fell on the deck because the step was icy." 20 18 38 4 4 4 4 4 4 3 3 3 3 4 4 +20866 8 " It was one of those days where I just sat around all day doing nothing, but play @PERSON2, text, and laugh at myself. It was one of those days where no one bothered me; no one even really talked to me; no one told me to do chores. By dinner time someone decided to call me up stairs to eat, but let me tell you, it wasn't anything like pizza. Although I'd rather eat it than get a lecture on not being thankful. My brother came home for the first time in ever, ate with us, then decided to leave again. But this time I asked to come with; I'm so tired of beating @PERSON2. He said no, of coarse. I made my daddy change his mind for him, of coarse. I don't see why he wouldn't let me come in the first place. He was going to hang out with the guys I grew up with, my friends, not his. Anyways. I got ready then we hit the road. There him and I were, laughing about dinner and what kind of music my mom listens to, on our way to pick up my friends. These guys are great! All we do is crack jokes about each other and crack up. But let's get down to business. I didn't tell you this, but it's @DATE1 time, around The @CAPS1 of @DATE2. Fireworks are for sale and we're creating ""bombs"" out of them. Or they are. Since I'm a girl, I guess I'm not allowed, or something lame like that. But there is this girl my brother likes and I guess he wants to impress, excuse me ""impress"" her by showing up at her house so she can see these ""master pieces"" they've made. That just makes me feel bad for him, but honestly just made me laugh. Maybe she'll be impressed. Key word: maybe. Although, no, it won't. Because to this day they are still only friends. So about these bombs. Complete duds. We tried, well I just watched, over and over again to make 'em work, but they wouldn't do a thing. Eventually my friend @CAPS2 put a whole bunch of @CAPS3 @CAPS4's into my favorite stuffed animal. It just made a bunch of sparkly colors and loud noises, but it was pretty fun to watch. We got in on video too, it was a total good laugh for everyone. After my brother said goodbye to his ""girl,"" we decided to head home. The thing is, we had so many fireworks left! We know this kid @PERSON3 who lives somewhere on the way home. So we decided to go by his house, have @CAPS2 get out of the truck, light the firework on his porch, have him jump in the tail of the trunk, then drive off as fast as we could. The first time we did it we couldn't stop laughing. They didn't come out of their house, so we did it again. They still didn't come out. We did it about one more time, by then all the neighbors were out. They were all so confused. That just made us laugh even more. It was so great we wanted to keep doing it, but to someone else this time. We know this girl @PERSON1 who lives near all of us. We thought, why not? It's not gonna hurt to stop there real quick and have some fun with her too. Apparently she thought different. Way different, actually she thought it was the rudest thing ever. We were just joking around, gettin' a laugh out of all our fun. We weren't being rude, she's our friend. Long story short, her mom got mad too and chased us down in her car. She never caught us, but she got our license plate number. The next day, on The @CAPS1 of @DATE2, she called the police. They didn't think it was a big deal, but they still showed up at my house and talked to my parents about what went down. I was at my boyfriend's so lucky me I only had to talk to my mom on the phone about it. She realized we were just having fun and actually laughed about it too. That @CAPS1 of @DATE2 @CAPS8 was great. It was one of those nights where you laughed the whole time and wouldn't change a thing even if you got in trouble with the law for it. Something I will definitely never do again, but I'm so glad I have this hilarious memory to reminisce on for the rest of my life." 20 17 37 4 4 4 4 4 4 3 4 4 4 4 3 +20869 8 " A day with the family One day my cousin, her husband, my mom, my dad and i had gone out to eat at @ORGANIZATION2 for breakfast. They had all grown up together, and telling stories about the old days made them all want to hangout more often. They always had @CAPS2 much fun together. I grew up with my cousins around a lot of the time. We would always hangout. We started talking about all the crazy times we have had, and it was nice to hear abut the old days. We were just laughing up a storm. All a sudden out of @CAPS1 where my cousin @PERSON1 farts. All of us start busting up laughing. @PERSON1 continues to fart while she is uncontrollably laughing. @CAPS2 many people were looking at us in the restaurant. Here was a group of people all laughing, and one of them cannot stop farting. The laughing got louder as well as the farting. my mother could not take it anymore. She took one of the salt shakers and started pounding it on the table. She wanted to drowned out the sound of @LOCATION1's farts. @PERSON1 was beat red. We were all laughing @CAPS2 hard we started crying. We were almost to the point were we were going to pee ourselves. @PERSON1 could not hold it any longer. She finally stopped farting, but now she had to pee @CAPS2 bad she could not even walk. When she got up to go to the bathroom she had to walked there cross legged, and very slowing. All the way there she was still laughing, and we were also laughing. We had fun watching her have to stop every @CAPS2 often @CAPS2 she would not pee on herself. One time that she had stop it was right on these two guys chairs. She just stood there laughing cross legged over these two guys trying her best not to pee. The guys did not really do anything they just sat there waiting for her to go away. We could tell they were very uncomfortable though. I told my mom ""I would be uncomfortable to if i had some random girl bent over me laughing, and trying not to pee. I'm surprised they did not move. i would have"". Finally @PERSON1 got to the bathroom. Those two guys had left, and when she came out she was glad to see them gone. When we saw her we could not help but laugh. She laughed with us @CAPS2 we did not feel bad about laughing. People were still looking at us, and @PERSON1 was still blushing. She wanted to go @CAPS2 we left and talked about it the whole way home. They were coming over to our house to play bored games. When we got home my brother joined us in a game of gestures. this game is kinda like sherades. We got into teams. I was on @ORGANIZATION1 and my brothers team. My brother went first. He started melting to the ground. I shout out ""wicked witch of the west""! He frowns at me and says, ""@CAPS1, watch before you shout things out."" @CAPS2 i sat there and watched. He did his whole melting thing again,but when he got to the floor he started rolling and jerking around. I was @CAPS2 confused. My cousins shouts out ""poop""! My brother yells ""@CAPS3, why would anyone want to be poop""! We all start laughing,and he just tells us what he is. He was a waterfall. It was my turn to go, and i got horse. I did not want to be a horse. I did not even know how to be a horse without making sound. I went up there and started hoping around like and idiot. I felt @CAPS2 dumb. My team mates made me feel even worse because they could not guess what i was for the life of them. The buzzer rang and we lost the game by two points. My brother hates to lose. He got really mad, and ran up the stairs. On his way up there he trips on his face, and falls down the stairs. We all started laughing, and that made my brother even more mad. He went up the stairs again without falling this time, and stayed in his room the rest of the @TIME1. The rest of us stayed downstairs, and played more games. It was a really fun day. I got to hangout with the family, and get a great laugh. hanging out with the family is something everyone should love. It is one of those things that just make you feel good. " 20 16 36 4 4 4 4 4 4 4 3 4 4 3 3 +20870 8 " Laughter is important, we all know that. It makes life easier, happier and even helps you live longer. It's also very important to relationships. When talking about preference in significant others it's often that people mention that they want someone who can make them laugh, this is why. this story is , however, not about dating. It is about how laughter can cause you to go from hating someone one moment to being their best friend the next. I had known @PERSON1 for a while for a few months at this point, I had met him on the bus. He was pale, skinny, loud, and he always had something funny and offensive to say. He was a shut in. Before I met @PERSON1 I could dish it out but I couldn't take it. I remember one day, the day I went from hating him to befriending him, we were fighting about something so insignificant that I can't for the life of me remember what it was. Although I do remember what he said. He said that I was a ""hypocritical, arrogant asshole who would go around making fun jokes at other peoples expense but would get up in someones face if they tried one at me."" this made me laugh. Not because everything he said was right but because it made me realise that @PERSON1 was actually a pretty good guy whose only real problem was that he didn't know when to shut up. Throughout the whole time I have known @PERSON1 he has never stopped smiling. He laughs off everything from stepping in dog crap to his fathers drug addiction he can dull the pain of any blow with laughter. @PERSON1 is my constant reminder to never stof laughing." 16 15 31 3 4 4 3 3 3 3 3 4 4 3 3 +20871 8 "Laughter is good for every one.@CAPS1 helps the body be more awake infact believe it or not, @CAPS1 is an extercise for the body. Laughter clears the body when people are really stressed out.@CAPS1 is like a cure for the body and also,Laughter is not just good foro you but also when others see you @CAPS1 it alsogives another person courage to do the same." 10 15 20 20 2 2 2 2 2 2 3 3 4 3 3 3 2 2 3 3 2 2 +20872 8 "Laughter is a @CAPS1 @CAPS2 @CAPS3 @CAPS4 have been there, I know @CAPS4 have. We all have. @CAPS4 have been that kid that just did not feel like helping your nagging parent out. Especially when your dad had been in a huge motorcycle wreck and @CAPS4 had been waiting on him hand and foot the entire visit there.@CAPS10 had gone through a couple of surgeries and was put on a lot of medications for @CAPS2. I had noticed @CAPS10 was not really himself on all these pills. His abnormality was taking a toll on the family. Through all these stressful times, we were also worried about @CAPS6 stepmother. She was pregnant with her second child. There was also stress of having @CAPS6 fathers business being the main income, and him not being able to work. @CAPS6 father felt helpless, his leg was to weak for him to be doing anything.@CAPS10 would micromanage everything, and tell @CAPS4 were doing things all wrong. The was starting to cause a lot of tension within the house. Today was the day. Isabelle (@CAPS6 little sister) and I were left alone with @CAPS6 with dad for the first time.I was going to the kitchen to get scissors for an art project we were doing in @CAPS6 room. Father asked asked if I could make him some oatmeal, of course with full hands I said ""@CAPS5, but I will when I'm done."" @CAPS6 father took that as disrespect, and hobbled over to me with his crutches. @CAPS10 was yelling at me which was upsetting, so instead of fighting back i headed to @CAPS6 room.The anger in his voice was excruciating. I turned around, told him to stop yelling, and headed back to @CAPS6 room. That's when it happened. @CAPS6 father hooked the end of a little kids chair and flung it down the hallway. It bounced off the walls, breaking an outlet shell, putting a hole in the wall, and hitting @CAPS6 knee. I didn't say anything, being afraid of what would happen next. Slamming the door luckily I had the phone and I called @CAPS6 grandmother. I told her on a voice mail that I wanted her to pick me up and take me to her house. She showed up an hour or so later not knowing I left a voice mail. I explained what happened, and she comforted @CAPS6 sister and I telling us it would be okay. @CAPS6 grandmother sat us all in the living room to try and resolve the situation. By then @CAPS6 dad had come to his senses and apologized to both of us. @CAPS10 used popcorn and candy to make us forgive him, then @CAPS10 started making fun, and jokes. Every time there is a fight or disagreeing @CAPS6 dad always cracks a few jokes to get us in a better mood. The one thing different this time is after @CAPS10 told some jokes, @CAPS10 apologized again. This time explaining why @CAPS10 was sorry. I liked that which made the rest of the day quite a joy. "" @CAPS7 made laughter to be a @CAPS1 @CAPS2 medicine, @NUM1 minutes of laughter is equal to two hours of @CAPS2 @CAPS3."" @CAPS8 @CAPS9 on a @DATE1 service talked about this. Laughter can truly mend a broken heart. The @CAPS2 that @CAPS6 sister an I went through that day was all over after the laughter @CAPS6 father gave us. ""Laughter can save us."" @CAPS10 also stated. After this day I believe with a little humor @CAPS6 father an I's relationship can get through anything. I would never let one mistake control a life time bond. Laughter will always be in our hearts." 20 18 38 4 4 4 4 4 4 3 3 4 4 4 4 +20874 8 "Laughter play's an important role in relationships, @CAPS1 also supports enjoyment and can be a persuit of happinees. Whenever i am laughing its either because i am really enjoying myself or im just having a great time.Many people don't have a very good sense of humor and dont laugh at thing's that are funny, whenever i watch a funny movie's that i like i sit down and wait for the very funny parts, but dont get me wrong, remember not to laugh to hard because you might wet youre pants by accident or who knows if you laugh hard enought you might even pull a ""whotammy ""and trust me that does not look pritty and then you will be embarresed infront of everybody. My favorite comedian is adam sandler because he is very funny and has a good sense of humor, he knows how to keep a person laughting and interested in his comedy shows and movies.when he made the big daddy movie @CAPS1 was pritty good not to funny but @CAPS1 was good.My secound favorite comedian is @PERSON1 because he is funnyer that adam sandler by a lil bit but not quit as good though he also stars on a tv show called wild'n out that show really makes me almost cough out my lungs, especially when they bust out with youre mama jokes @CAPS1 keeps you laughting and keeps the blood pumping thru youre body.so we all pritty much under stand what laughing is but most people dont really seem to laugh at things that are funny i cant quit undersatnd @CAPS1 but my guess is tha t they dont have a good sene of humor but some people seem to lautgh at thing that dont even make sense i quit dont undestand that either but i guess its better to laugh than to not laugh at all. Some really good comedy movies that i can mention out right off the the bat that will keep you tuned and laughing thru more than half off the movies are grandmas boy, happy gillmore, dont be a menace to south central while siping my juice. Also zombie land @CAPS1 is a heck of a good movie, i dont know its not just about making a funny movie just to make the oudience laugh @CAPS1 is the way they make @CAPS1 and how thery act and how good the backround story to the comedy movies is gonna be thats what i pay atencion to when ever i sit down and inspect what makes the movie funny also if i cant understaand a funny movie i see @CAPS1 again and again till i understand what is so hallariouse about @CAPS1.That pritty much covers the basics on laughter there are is youre basic information and what you need to knowabout @CAPS1 and how to enjoy @CAPS1 and use @CAPS1 wisely cause remamber dont laught to hard because you dont want to end up pulling a ""whotammy"" in front off every one that around thank you for reading my test." 15 18 32 32 3 3 3 3 3 3 4 3 4 3 5 3 4 3 4 3 3 3 +20876 8 " Laughter is the cure to a sickness and the medicine to somebodies pain. Laughter can mend a friendship to make two strangers become the best of friends. A person can ask anybody on the street of how much laughter is important in life and they would say that laughter is very important. It's like love, everyone needs a little of it in their life and like laughter, it helps a person grow and become an adult. A person can use laughter to help them with anything like getting a job, or trying to get the girl, or just having a good time and making new friends. It's one of the main elements of life that make a person how they are and what they do. In the @DATE1 I was introduced to a girl named @DATE3, by my cousin @PERSON1. She started talking to me and I was shy because she was a girl and I wasn't used to talking to girls. I cracked a joke and that made her and I laugh together and that was the first icebreaker to making a new friend. The days went by and we were text messaging each other each day over the phone, making jokes about how our day was and making jokes about each other. Eventually we started talking to each other over the phone. Teens these days usually don't use the phone to call people and that makes emotions hard to understand because talking over text hides emotions from one another. @DATE3 called me and we would talk to each other until late in the @TIME1, to where we would both fall asleep and leave the phone on, and again we would always be making jokes about everything. Making each other laugh was one of our only connections with each other since she went to a different school. Making her happy was what I needed to do, and one of the ways to make her happy was to make her laugh or just be a charming young gentlemen because I was raised that way. @DATE2 formal was coming near and I was in need of a date. @DATE3 was my best option for a date since I was getting close to her and I was starting to get attached to her. When I had the chance I asked her to be my date for the @DATE2 formal which would be one of the most special nights of my freshmen year. The day of the formal came and we danced the @TIME1 away and of course I had to make a few jokes about other things which made everyone laugh and have a good time. Near the end of the dance I asked her to be my girlfriend and she accepted. She said I was funny, and nice, and cute which was good. We had a fun time because good humor and fun kept the @TIME1 alive. The next @DATE2 formal, the same thing happened with a different girl except that laughter was an important key and that made the @TIME1 so much fun. That @TIME1 was one of the best nights of my life that I had ever had, because we were laughing and having the best @TIME1 ever. Laughter is an important key in my life. I would have never gotten the girl or have had the best @TIME1 of my life if laughter was never involved. Laughter makes everything better and I use it in my everyday life because everybody needs to have a good laugh if they are in a bad mood. Without laughter my life would be dull and have no color that would make me who I am today. It's one of the many keys of life that everyone needs to be happy, and without it you would be less happy then you are right now. A small child could live his whole childhood without laughter or any other important element in his life and he could end up being a mean and cruel person who does not understand good values and humor. Everybody needs personality and color in their life and with out it everything id grey. Life is like a coloring book and without someone or something to color them in with, it's just useless." 17 20 37 3 3 4 4 3 4 4 4 4 4 4 4 +20877 8 " I have had many great times with my grandpa. He is a very funny and loving man. When my cousin, my grandpa and I get together for a camping trip there is trouble coming no matter what. A few years ago he took me and my cousin on a two day camping trip along the @ORGANIZATION1. The first campground we arrived at had no open sites so we moved on to the next campground. @CAPS1 campground had tons of open campsites so we picked the best one we could find and stayed there for the first @TIME1. Later that evening we learned why there was no one at the campground. The reason was that there was a racoon problem a few days before and people were scared to stay in the campground for fear of attack or having their food stolen. We were lucky and never saw the racoon and we never lost any of our food. The next @TIME2 on the way out we saw a sign that read ""caution racoon problem."" @CAPS1 made us laugh all the way to @LOCATION1, which is a small town on the @ORGANIZATION1. Once in @LOCATION1 we stopped for gas and more food to last through the @TIME1. While at the gas station we had little bit of an issue but it was very funny. A young blond woman came out to help us and she wasn't the smartest person I have met. She charged us three times the amount of gasoline than we bought and couldn't tell us where the nearest grocery store was. Well, as my grandpa is rolling up his window he mutters quite loudly ""dumb blonde"", while the woman was standing right there. She didnt say a word and my gandpa drove off with me and cousin laughing so hard we could barely breath. My grandpa asked us why we were laughing so hard, so we told him what the circumstances were when he said dumb blonde. He was so oblivious to the situation that he didn't notice what came out of his mouth at the time. What even made it better was that he drove off like nothing had happened. The next @TIME1 we stayed at a diiferent campground with no racoons. Still the @TIME1 was filled with laughter. We were roasting marshmellows over the fire after our dinner and for some odd reason my grandpa could not keep the marshmellow on his stick. He wasted about six marshmellow before he even got one that he could eat. And everytime he dropped one into the fire it got more and more funny. We laughed and laughed until our stomach hurt. The best part was theat my grandpa didn't think it was funny so he just looked at me and my cousin like we were stupid or something. In the tent that @TIME1 we were so tired everything seemed funny to us. We laughed at each other until two in the @TIME2. Thats when everything went silent and we couldnt last any longer. We were all asleep within seconds. My cousin and I have gone camping with my grandpa every year now for about four years and each year we have an adventure filled with laughter as we go closer to each other. My grandpa is a great man and I look up to him for many things in my life. He has always keep me laughing and I try to do the same for him. He and I believe that it is important to laugh together because it keeps you smiling and helps you grow closer to whoever you are with. Keep laughing and have a fun in all you do." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20878 8 " ""Laughter"" I believe laughter is the shortest distance between two people. When things between you and a loved one get fuzzy making them laugh will always help break the ice. When I get angry with my boyfriend he knows that in order for me to be happy he must make me smile/laugh. That is exactly what he does. The very first time he made me angry he didn't know what to do. It was @DATE1 @CAPS1 and I had just started dating. I remember he asked me if I was hungry and I said ""no I'm not hungry,"" so he continued to ask. Since we had only been dating for a short period of time he really didn't know much about me, so he didn't know that I am a type of girl that gets annoyed easily and I have a really low temper. He continued to ask me if I was hungry, thirsty, bored, or tired but he didn't realize that at this point I was really annoyed; an hour and a half passed by and he was still asking! I was going crazy I didn't want to tell him how I felt because I knew I was going to make him feel bad, but I thought to myself and said ""no he has to know because its going to be worst if later on in the relationship he has to find out what I like and don't like on his own rather that me telling him. I went on and told him every single little detail about me good and bad, at first he just listened but towards the end he exploded and told me that why wasn't I just straight up with him from the beginning. That made me really upset, I was trying to be honest with him before anything worse happened but i guess not. I stayed quiet for the longest time and he kept asking me ""what's wrong,"" ""tell me what I did wrong"" so I told him that it really made me upset how he flipped out on me for no reason really all I was trying to do was save us from a larger argument, he looked at me and told me that I did do something wrong! He said that we had already been together for two months and it took me that long to show him my true colors I kind of understood where he was coming from but at the same time I didn't agree because by that point he should have already known. I mean it doesn't take that long to know a person especially if its your girlfriend. In the end we just agreed that we had to be ourselves around each other. He busted out saying ""ouch charlie you bit me"" in a @CAPS2 accent that just made me loose it I laughed for days after that and completely forgot about thee over whelming discussion we had. The point being here is that laughter is the tool to breaking the ice when things get tough and it doesn't necessarily have to be a loved one it can even be a complete stranger, if the person is shy making them laugh will help construct a great friendship with them. You can make anybody's day go great with just a little grin that you put on their face a simple ""hello"" or ""hey"" can even make them smile. I believe that a person that smiles often lives longer. This @MONTH1 not be true but in my little world it is. I am all about smiling, all about making people laugh. Honestly I hate seeing people walk around with angry faces like if they have no friends when all they really want is someone to make them smile-and that would be me! In conclusion, if it wasn't for laughter what relationship would still be standing at this point? None, because if your always arguing and always wining and never laughing then how do you expect your relationship to last? Like I said ""Laughter is the shortest distance between two people.""" 17 18 35 4 4 4 4 3 3 4 4 4 4 4 3 +20879 8 "Angelina @CAPS1 @CAPS2 a year ago, some time in the @DATE2, I was at my best friend @PERSON1's house for a sleepover after her @CAPS3 party. We were exhausted from swimming at her @CAPS4's pool and taking her dog for a walk, not to mention the partying, and we would have been asleep if it weren't for the family-sized bag of @CAPS5 and six pack of @ORGANIZATION1 we'd consumed not an hour before. At around three in the @TIME1, our childish minds searching for something to do, we decided it was a good idea to paint the tips of our tongues blue with nail polish in hopes of them glowing in the dark when held to the black light on her windowsill. I was the first one daring enough to touch my tongue to the brush, and boy did it hurt! The acid and alcohol in the polish stung my taste buds. The next day was @DATE1 and, after hanging out at @LOCATION1's house for the afternoon, we came to my house for another sleepover, which is what we did and sometimes still do every time we are together. That night, this time around two in the @TIME1, we grew hungry again and came downstairs to get a snack before retreating back to my room and @PERSON1 playing on my computer while I used her phone to text my former crush. @PERSON1 got jars or ice water, I still don't know why she uses jars instead of cups, interrupted my spinning around the kitchen floor with my new socks, and we had a random instantaneous ice chugging contest. After ten seconds of silence, I glanced over my jar at @LOCATION1, who wasn't even half done with her water. There, on her chin, was a speck, a dot, a glob, of blue nail polish. I attempted a gasp to give me enough air to start laughing at her, but instead of air coming into my windpipe, and ice cube made its way in. Choking, laughing, falling on the floor, laughing, nail polish-picking, and more laughing, we stood in the middle of the kitchen with nothing to actually laugh at that was that funny. @PERSON1 dropped her jar and it shattered on the floor, sending shards of glass and water across the kitchen, but that's okay. We were having fun, and, guess what, we fell asleep on the kitchen floor not ten minutes later. I suppose we were more tired then we thought. We did clean up the glass though. Some people say laughing is the best medicine a doctor can use, that it can cure any disease, that it can brighten anyone's day. Dentist's apprentices use laughing gas that makes people loopy and smile a lot when they do operations on your teeth, and it doesn't hurt as much, until the day after, but that's because you just had a tooth pulled. Today @PERSON1 and I are still best friends. Sure, we get in fights, but they end within a week or two. The longest fight we were ever in lasted a month and a half, and it was a misunderstood rumor another friend of mine had started, and ended by us both laughing @CAPS2 how stupid whatever happened really was. Within the five or six years of @PERSON1 and I being friends, we realized laughing is healthy and good for you, both physically and emotionally to relieve stress, so every time we see each other we laugh as much as possible. Inside jokes popping up from something said that was totally unrelated, a funny-looking person walking down the side of the road, or just our own minds saying its time to be happy again, it all triggers laughter. Sometimes it hurts, but we cant help laughing harder, because its fun." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20881 8 "Once upon a time, on a late rainy night my friends @PERSON2 I decided @CAPS5 would be fun to go out in the woods @PERSON2 play @NUM1-go-seek. One of my friend's sisters drove us out to the woods @PERSON2 the idea of the game was that since there were four of us, two would go out @PERSON2 hide @PERSON2 tow would stay in the car @PERSON2 count until the other two were ready to be found. Well once while us four were doing that @CAPS5 was pouring down rain @PERSON2 very very muddy outside. Well the two that hide were @PERSON2 @PERSON2 @PERSON1 @PERSON2 the two that stayed in the car to count was me friend @PERSON3 @PERSON2 I. Before @PERSON2 @PERSON2 @PERSON1 went out to hide we all made up a signal to let the others know if we were okay or no. The danger signal was @CAPS1 @CAPS1. @CAPS3 after we had our little meeting @PERSON2 got everything situated @PERSON2 dealt with, @PERSON1 got out of the car @PERSON2 went of @PERSON2 hid while me @PERSON2 @PERSON3 stayed in the car to wait @PERSON2 count. After we counted to about @NUM2 we hear screaming @PERSON2 shouting. My first thought was that they just got chicken @PERSON2 maybe wanted to freak out @PERSON3 @PERSON2 I. I was curious @CAPS3 I cracked the car door open @CAPS3 I can hear a little better about what they were saying. Sure enough here came @PERSON1 @PERSON2 rite behind her was @PERSON2. @PERSON2 looked as if @CAPS4 was about to cry @PERSON2 @PERSON2 couldn't ran fast enough to get back to the car, @CAPS4 kept slipping @PERSON2 sliding everywhere all over on the road but @CAPS4 finally made @CAPS5 back @PERSON2 @PERSON1 @PERSON2 @PERSON2 crammed into the car with us. We all sat there crammed in this little car thinking about what they were running @PERSON2 screaming from, @CAPS3 me being the brave one at the moment decided to go take a look at things. Of course with @PERSON2 not wanting to look or feel like wimps followed close behind me. As I was walking down the road from where I saw them run from @LOCATION1 jumps out in front of me @PERSON2 says ""right over there I swear I saw something dart across the road!"" @CAPS3 I walked over to where @CAPS4 pointed @PERSON2 looked around thinking that @ORGANIZATION1's crazy @PERSON2 @CAPS4's just seeing things. But as I walk on, @PERSON2 grabs me from the back @PERSON2 screams. I turn around @PERSON2 look at her thinking ""what the heck is wrong with you people!"". @CAPS4 grabs me by the arm @PERSON2 looks up with a very frightened expression on her face. I turn toward her @PERSON2 ask her ""whats wrong"" @CAPS4 asks me, ""why does that tree look white but right there in the middle there is a big tan spot?!"" @CAPS5 was dark @PERSON2 I couldn't see very well but when I looked up I saw exactly what @PERSON2 was freaking out about. I go back to the car to get a flash light hoping a came see what is on the tree a little bit better @PERSON2 as soon as I make my way back to @PERSON2 by the tree, @ORGANIZATION1 lets out a blood curdling scream @PERSON2 yells ""@CAPS6! Its moving, whatever @CAPS5 is @CAPS5's moving @CAPS7!"" @CAPS3 as I approach the girls @PERSON2 rips the flash light out of me hands, turns @CAPS5 on @PERSON2 points @CAPS5 to the tree. Sure enough there was a big tan spot @PERSON2 the white tree. As us girls sat the waiting for @CAPS5 to move again @CAPS5 finally did. I flashed @CAPS5 with the flash light @PERSON2 started laughing. As soon as @PERSON2 get their feet under them they want to hit me because they don't know what is in the tree or what I was laughing at. As they approach me, I turn back to @PERSON1 @PERSON2 ask her ""@CAPS3 @PERSON2, do you want to see your monster?"" @CAPS4 freaked out again asking what is was. I told her, ""take a look at @CAPS5 for yourself"" @CAPS4 looked up @PERSON2 saw @CAPS5.... A large brown paper bag that got swept up by the wind. As soon as I see that @CAPS4 say @CAPS5 I told @PERSON2 what @CAPS5 was @PERSON1 her @PERSON2 I started cracking up laughing about @PERSON1 @PERSON2 her ""hideous monster"". Once I got my laughs out on @PERSON2, we all went back to the car where @PERSON3 was waiting @PERSON2 we left. Ever since that night @PERSON2, @PERSON2 @PERSON2 I will never forget that night in the woods. Every time we think about @CAPS5 we all start laughing @PERSON2 making fun of each other for being afraid of a brown paper bag." 16 12 28 4 3 4 3 3 3 3 2 3 3 3 2 +20882 8 " For me laughter makes the world go round. It is much needed to keep the world light and filled with a seance of happiness. You will hardly come across me with out a big old smile plastered across my face. There is so many stores to choose from but @TIME1 one will be the most fun to tell i think. It still makes me giggle just thinking about that @TIME1. I was going on a trip with my last boyfriend, @PERSON1, down to @LOCATION1 for the forth of @DATE1. They have a big forth of @DATE1 walk and i was lucky to get to tag along with him and his mom. We wear staying with good friends of his mom @CAPS1 and @CAPS2. There house was stunningly amazing, beaut full wood floors, big open living room that combined with the kitchen and dining room, vaulted ceilings, and a big stunning window that framed crisp @CAPS3. @CAPS4. Even with the house being so great my favorite part wear the rail rode tracks. Not more than a quarter of a mile through a little trail surrounded with woods wear two sets of tracks stretching out in both directions @CAPS5 far @CAPS5 the eye could see. My favorite part of the hole trip wear those tracks. It was the second @TIME1 of our stay in @LOCATION1 around @NUM1 o clock. @PERSON1 and i when for a walk in the refreshing @TIME1. We could hardly see and wear holding on tight to each other to try and keep balance. Smiling and giggling we finally stumbled out of the very well hidden trail entrance on to the tracks. Hand in hand we started to walk down the tracks just enjoying each others presents. In @CAPS4 the stars are the most stunning i have ever seen. I'm not sure why but the sky just seems to open up and look two times bigger than it relay is. @TIME1 @TIME1 was perfect for star gazing with out a cloud in sight. So we decided to lay down between the tracks and look at the stars. There we cuddled together for a good @NUM2 minuets. Then @PERSON1 looked up. I gave him a puzzled expression then i followed his gaze to see what had aroused him. Far in the distance was a light. Slowly advancing t words use. Sure-a-nuff it was a train at @NUM1 o clock at @TIME1. Looking back at each other we both laughed at the pure surprise of a train at @TIME1. @CAPS5 the train advanced we jumped up and off the tracks to wait for it to pass so we could resume our spot. The train was going way slower than i was expecting. No more than @NUM4 to @NUM5 mile per hour. @PERSON1's eyes lit up with an idea and not thinking he said ""We should jump it!"" @CAPS5 soon @CAPS5 the words left his mouth he regretted saying them. I thought it was a great idea! But he tried desperately to convince me not to do it. I headed twords the track telling him to live a little and lets have some fun. I had never jumped a train before but from the looks of it @TIME1 train was perfect to try it out on. There wear long flat bead cars with handy little latters on each one. I garbed for one and jumped on right before @PERSON1 could stop me. He finally gave in and jumped on the next one. We wear both smiling and having a great @TIME1 when we jumped off and met in a hug. Then the train stopped. We froze. Then a light started coming our way. Freaking out, for sure thinking we would get in trouble i sprinted for the trail head with @PERSON1 close on my heals. I could not find the trail and the light was getting closer so we both jumped full speed straight in to a big bunch of bushes. There we stayed perfectly still tell the light passed us and the train began to rezoom its pace. I met @PERSON1's big fat smile and we both just rolled over laughing not being able to help ourselves. What wear the chances of going out for a simple walk and all @TIME1 happening. Still smiling hugely @PERSON1 leans over to me and gave me a perfect kiss. That was one of my best nights ever. @TIME1 is just an example of how smiling and laughter was a big part of @PERSON1's and I in our relationship. Love, friends, and laughter is the reason life is worth living. " 18 20 38 4 4 4 4 4 3 5 4 5 4 5 3 +20883 8 "Being able to laugh, is one of the greatest feelings in the world. Having family to share it with is priceless. Family moments like that, are times no one can take away. They will be there for you to look back on and just smile on those days. Not being able to laugh would make this world dull and a very depressing place. Laughter is the main connection between family and friends. My family and I decided that for our @DATE1 break we would drive to the great land of @LOCATION1. Not one of us @CAPS1 how to get there, but my mom told us she would figure it out and for us not to worry about it. So the day we were released from school my mom packed us up and off we went.After two long hours of driving we finally arrived at the @CAPS2 @CAPS3. The crowd to get across was huge. On the boat to get across, I thought about going up stairs to see where we were at. There it was @LOCATION2. Once we got off the boat and through the crowed highways of @LOCATION2, and started to make our way across the @LOCATION2/@CAPS4 border. I noticed that my mother had a weird look on her face, the look of worry. My sister asked her if she @CAPS1 what she was doing, she replied ""kinda"". After hours and hours of driving my mother thought it would be a good idea to just buy a map. When we looked at the map we noticed a little town that was very close. When we arrived my mom said we will stay here for the night. When we all woke up my mother told us that she remembered that the town we were staying in is the town we were suppose to be in. After driving around the town looking for our hotel, we were all in the room resting from driving around. My sister made a comment to my mom, about how funny it was to watch her drive around and act like she @CAPS1 what she was doing. This made all of us laugh. We all started to make random comments on her great navigation skills. The rest of the trip we drove around laughing and telling my mom, don't get lost this time, and ask for directions if you need them. laughing about us getting lost made the trip a truly unforgettable moment. Being able to laugh, is the greatest feeling in the world. To do it with family is a great way to remember fun times. Not laughing could make this life horrible and dull. Being with family and taking a negative situation, and turning it into the best vacation ever with laughter is truly priceless.Everybody needs to laugh in their life,because you only live once so make it worth while." 20 16 36 4 4 4 4 4 4 3 4 4 4 3 3 +20884 8 " Laughter brings the world together in a way that cannot be put into words. When two people laugh together over the same thing, a special bond is made that is like no other. There is no way to describe the connection and how it can build a relationship. Every person on this @LOCATION2 will hopefully experience the bond that laughter brings. Last @DATE2, I was a member of a select lacrosse team and I didn't know any of the girls there. The team had five practices before the tournament and by the third practice, I still hadn't talked to many girls there. I was too shy to talk to these girls who all seemed to have a friend with them on the team. At the fourth practice, we were all stretching in a circle and I made a comment to one of the girls and she laughed. We began talking and throughout the rest of that practice, we talked and became friends. By making her laugh I had made a friend on the team and was even more excited for the upcoming tournament. The final practice was cut short so that the team could create tie-dye t-shirts to wear at the tournament. I sat down with @PERSON2, the girl I had become friends with at the previous practice, and her friend @PERSON1 came over to sit with us on the concrete. We all began talking and laughing with each other. Our shirts were tied with rubber bands and we were ready to put the dye onto them. We were laughing and making a mess of the multiple colors, having a good time and enjoying the warm night. As we finished our shirts and put the sopping wet clothing into plastic bags, we walked to the parking lot and said our goodbyes. I now had two friends on the team and could not wait to leave for the tournament that @DATE1. On a @DATE1 @TIME1, I woke up at @NUM1 am to meet the team at a park in @LOCATION1, OR. We were all meeting there to load our things into the three large white vans and to drive up as a team. I crawled into the van wearing my tie-dye t-shirt to see some of the girls looking tired and also sporting the tie-dyed shirts. @PERSON1 and @PERSON2 were in the back with another girl in between them so I sat in the row ahead of them. Some more girls from the team crammed into the van and we were on our way. During the @NUM2 @NUM3 hour car ride we slept, laughed and told stories. After being stuck in the car together for so long, we all bonded with each other over laughter and story telling. We each came from different cities, schools and backgrounds which made for a very entertaining car ride. At the tournament, @PERSON1, @PERSON2 and I all stuck together. We walked around the fields, ate meals and laughed together almost the whole time. The only time we were apart was when roomates were assigned and we were not put in a room together. We all worked together as a team towards a common goal, winning games and making it to the championship. All of the girls on that team bonded in some way and even now, most of us are still in contact with each other. Laughter is what brought @PERSON2 and me together and the rest of the team followed. The entire team bonded over laughter and we all became more comfortable with each other through laughing and having a good time. Putting @NUM4 girls together from entirely different cities could have been a major disaster, but we connected with each other by making other laugh, making it a positive experience for all involved. Laughter truly is the shortest distance between two people. Connecting with another human through laughter is an experience that everyone should have, it is so unique and powerful that friendships built on laughter can last a lifetime. Laughter makes the world a little better, a little brighter, and united together as one." 20 23 43 4 4 4 4 4 4 4 4 4 4 5 5 +20885 8 " Humor is a huge part of who i am,and i love making people laugh, but this story is about an event that made my whole family fall down laughing on the floor. It all started one @DATE1 when my cousin received a trampoline for his birthday. It was a great day not only for him but for the rest of us kids too because we all could go and play on it whenever we wanted. We were always over at my cousins house after that. We would have competitions to see who could jump the highest or who could do the coolest trick. Sometimes we would fall off or one of us would get hurt and then my aunt and uncle wouldn't let us play on it for a while but they would always cave and let us back on it. It wasn't until a few months later that we all witnessed the funniest accident that any of us had ever seen in our life time. It all started out at my aunts birthday party. Usually she had it at some fancy restaurant but not this year, this year she decided just to have it at home to save some money. So we all show up for my aunts party my mom, my brothers, and me. First off we do all the regular birthday things, the meeting of family members, eating some food, and singing happy birthday. Basically in my eyes it was all the boring stuff. I mean come on there was a trampoline out in the back yard just waiting to be jumped on but the adults wouldn't let us get anywhere near it until we had ate. Finally everyone was done eating and they were going to let us kids go have our fun. It started off as normal as any other day we went to play on the trampoline but little did we know that all of our stomachs would be hurting from laughing in a few hours from an even that was about to transpire" 15 19 34 3 3 4 3 3 3 4 3 4 4 4 4 +20887 8 "It was a normal day, I had just woken up, because my friend @PERSON2 who had called me wondering if I wanted to hangout.I said yes and I went and took a shower and got ready. Once I was ready I called him back and asked him where he wanted to hangout at. He told me that he wanted me to go over to kyle house and play basketball.When I got there everyone was over there so we decied to have a big game of basketball.I was on the better team and already knew we were going to win, but every single shot I took I missed and it was really embarresing, but my team ended up winning which was no suprise.After the game we all were tired and went inside to play video games. We played @CAPS1 of @CAPS2 @CAPS3 @CAPS4 @NUM1, we took turns and on my turns I did really bad because I dont really play video games so everyone laughed at me including myself.As soon as we were done playing I got a @CAPS1 from a bunch of girls who were going to the movies that night, and wanted to know if everyone and I wanted to go.Everyone decied to go, and we all wanted to see the movie paranormal activity @NUM1, so we were pretty excited and before the movie started we all went over to @PERSON1 house and hungout with all the girls.We all sat in the living room listening to music while most of the girls were up stairs getting ready.I was bored so I went up stairs to hangout with the girls and let me tell you it was a bad idea because the second I walked up there they all wanted me to let them straighten my hair or let them put makeup on me.So I went back down stairs and warned everyone not to go up there.They asked why and when I told them they all laughed and some of them went up there anyway and came back with makeup on I laughed so hard that i fell off the couch.Once I finaly stopped laughing it was time to go and her mom drove us there but there was not enough seats in the car so me and all the girls we cramed into the front seat and the reast of the guys were in the back seat, so I was pretty happy.When we got in the movie theater there was a pretty long line but it was worth it.Suprisingly the moive was acutaly kinda scary it made me jump like five times.When we drove home it was like @NUM3 and @PERSON3 and I walked home from her house and the whole way back he was freaking out and it made me laugh and it made him laugh how I was kinda freaked out too.I think that it was a really fun day because I was laughing through most of it." 15 17 32 3 3 4 3 3 3 4 4 4 4 3 3 +20888 8 " @CAPS1 is my personal belief that that hilarity and giddiness are the best emotional states to be in. Therefore @CAPS1 makes sense that people who find laughter in the same things would be of good relations. @CAPS1 is because of their likeness of minds that they are connected and find happiness in each others company. My story is an example of laughter's connection between people and the strength of the bond @CAPS1 forms. Picture the scene: @CAPS1 was @DATE2 on the north side of @CAPS2. Hood below the infamous snow dome. Standing there was a weak eleven year old boy who thought he could not continue further. Patiently standing beside him was his father, a climbing veteran who had scaled mountains in @LOCATION1,and @LOCATION2. The boy was tired, he could not put one foot in front of the other. His muscles screamed in protest as the blisters on his heels throbbed in harmony. The @DATE1 sun beat down on him while the snow gave way and brought him to the ground. @CAPS1 was as if the mountain wanted him to fail and was urging him to give in and cry in defeat. Fatigue then consumed the boy adding fifty pounds to each of his limbs. His brain had dimmed as well leaving him capable of only simple thoughts like putting on foot in front of the other. He began finding any excuse to stop and made them often. The boy's father had tried everything he could think of to give his son the incentive to keep going with no avail. He tried another tack, he began to tell the boy stories, perhaps in hope that @CAPS1 would take the boy's mind of the excruciating pain.And to the relief of all concerned, @CAPS1 proved effective. What was most interesting about the whole event is @CAPS1 wasn't the content of the stories that helped, @CAPS1 was the humorous and sarcastic tone that made the real difference.An infusion that I would describe as a solution of laughing gas and an energy drink washed over me. In the presence of my father's humor I found the strength to keep going . @CAPS1 was like I had been completely recharged and refreshed. My arms and leg which had previously felt like solid pipes of lead lightened considerably. The stabbing agony in my muscles and joints frayed away and left. The dull pulsing of the blisters on my heels were silenced. This was all due to someones thoughts and ideas tickling my funny bone. I believe laughter to be the anesthetic of nature,the emotional element that keeps the world sane. @CAPS1 was at that point in time when I realized what I respected most about my father. I had no shortage of traits to choose from. He had a indomitable work ethic, was a great teacher, and possessed an extraordinary amount of energy. But what I respected most about him was that we were similar in our humor. We laughed at the same things and found hilarity at each others comment's. @CAPS1 forged a strong bond between us, one constructed of euphoria and glee that continues to this day. Whenever I am morose he always manages to find away to bring a smile to my face and I found that I to had the same ability. To my belief a relationship formed on laughter is the strongest one of all. Laughter is a force that paves the way to friendship,respect,and love. You cannot have hope for a better future if you do not have laughter. @CAPS1 is the drug that descends from the heavens. A drug that runs through the bloodstream of society. In the process freeing the minds from the stress and worries of what tomorrow will bring. Laughter can unite a population and instill a feeling of friendship in a society. Have you ever laughed at something and then turned to find that at the exact same moment someone across the room had also began to laugh. Then your eyes lock and a slow smile spread's throughout both of your faces, as you realize that you are not alone in how you think and what you laugh at. That connective force is a result of the power of laughter." 19 25 50 50 4 3 4 3 4 4 5 5 5 5 5 5 5 5 5 5 5 5 +20889 8 " Laughing, smirking, giggling, @CAPS1 chuckling; these all have to do with one subject, @CAPS1 that is, laughing. Laughter is everywhere, you hear it in libraries, parks, at home, behind your back, @CAPS1 it can be a great thing or a horrible thing in @ORGANIZATION1 @CAPS1 even with family @CAPS1 friends. Everyone has a past with laughing that has welcomed them, helped them out, cheered them up, or even, just so they can make a very special friend that will stay with them forever. It was the start of a brand new @ORGANIZATION1 @ORGANIZATION1 @CAPS1 I had just moved from @LOCATION2. I was a seventh grader about to start at @ORGANIZATION1 in @LOCATION1, @CAPS1 wasn't a real big fan of hanging out with people , so i stayed to myself most of the weeks, eating lunch in the guidance center, trying to figure out where books where without talking to anybody. My schedule was good, I had choir, art, drama, you know all the stuff I like. Art @CAPS1 drama were a blast, but when it came to choir @CAPS1 singing, my social level went down. I love to sing, but never did it in front of people. Then one day, I was walking to choir @CAPS1 I tripped @CAPS1 fell, my papers falling with me. My @ORGANIZATION1 work was all over the hall, math at one end, science at the other. But, out of all the kids in the hallway, only one laughed. She walked by @CAPS1 say I did a great job but something triggered her to come back. She helped me pick up all my math homework @CAPS1 picked up my schedule @CAPS1 saw that she too had choir this period. Her name was @PERSON1, she told me, @CAPS1 i told her my name, @CAPS1 we walked together. We sat next to each other @CAPS1 i sang with her ours voices in harmony. We talked in between periods, at lunch, on the bus ride home. We became great friends @CAPS1 the principal thought so too @CAPS1 he went ahead @CAPS1 gave us classes together. We were friends @CAPS1 we still are friends till this day. But the sad thing is is that she moved at the near end of eighth grade year. But she was the only friend I had for a little while @CAPS1 I always give her a call every now @CAPS1 then. Sometimes we can talk for hours, laughing @CAPS1 talking about how we are doing @CAPS1 when we are going to see each other again. She has been my best friend for at least two years now @CAPS1 it all happened by a slip of a foot, that falling of papers, @CAPS1 one little laugh from an amazing person. Laughing has got me so far in life @CAPS1 at @ORGANIZATION1. Every now @CAPS1 then, when i see someone, all alone, wanting a friend, I go @CAPS1 talk to them, @CAPS1 even laugh with them. One little laugh can trigger a huge friendship waiting to happen. Even if you don't think so, it does. Some say, ""Laughter is the shortest distance between two people."" @CAPS1 I believe who ever said that because it happened to me." 20 19 40 40 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 +20892 8 " When it comes down to laughter, it can change a person's thinking or even the mood that @CAPS4 are in. Laughter can be the ending result, to a bad start to a day or to greater the relationship between two people. I love to laugh because it shows how I am feeling and it keeps me happy, I not only laugh when I'm sad, but also when I'm in a great mood as well. Growing up in a world full of tragedies and war, I feel like you should always keep your head held high and the smiles flowing. Although, when life gives you lemons, you must make lemonade and keep your face with the sour look because it's funny! I think that laughter is one of the best medicines around and can fix most problems whenever you are feeling down. @CAPS2 older sister brought into this world the most amazing little nieces, an aunt could ever have. When @CAPS4 were little babies I used make silly faces, dance to @PERSON1 and watch movies with them, but this isn't what brought us closer. It was the fact that I wanted to laugh, in which made them happy too. One time, I was feeling really down and out, but I didn't want that to affect me, so I preceeded with @CAPS2 day and began to watch music videos, when ""@CAPS1 @CAPS2 @CAPS3"", by @ORGANIZATION1 came on. @CAPS4 went crazy!, @CAPS4 started jumping on the bed and twirling their @CAPS3 back and forth as if @CAPS4 were @ORGANIZATION1!, @CAPS4 really stole the show. I couldn't believe before @CAPS2 eyes that this one happening, and I bursted out with so much joy. I felt so much of their joy, that I had to get up and dance with them, we jumped, we twirled, and whipped our @CAPS3 several times before the song ended with us dizzy and out of breath. After we had our fun of the music video, @CAPS4 just kept dancing and in @CAPS2 head I'm, like ""don't @CAPS4 ever get tired"", but I was pretty sure that their laughter brought them continouis amazement. A smile is worth a thousand words and laughter is priceless, @CAPS2 nieces really and are truly what brought me up that day. It was bitter in the start but then ended up sweet, lets just called it bittersweet. I feel like @CAPS2 nieces knew that I would be sad so @CAPS4 would say ""@CAPS5, what's wrong"", @CAPS5 being @CAPS2 nickname because I am very short. @CAPS4 would always find a way to make me feel the need to smile and have a good time. Me and @CAPS2 neices relationship has grown to the highest extent and I know that whenever I'm with them, I will laugh. If someone once said that ""laughter is the shortest distance between two people"", then @CAPS4 are correct because I @MONTH1 be in a different country, state or any other area but whether we talk on the phone or actually see each other, I will laugh about all their crazy antics and the closer we become as one. " 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +20893 8 " Having laughter in your life is a big part in showing who you really are. Some people think that you @MONTH1 be one person who can be ""stuck up"" or a funny person who can really be ""stuck up"", but in the end your all laughing together no matter who they are. When you see something happen real funny you can't help but laugh. Or even when you get nervous all people do is laugh it off. All different kinds of people have different ways in showing how they can use laughter in their own lives. ""@CAPS1 are blue, roses are red, your always in my head, i want you in my bed...."" That's suppose to be a love poem. When your in a relationship with someone you might think your in love. If your partner is never open about anything, you probably don't have a great relationship. See if you can argue one moment with your lover then the next laugh it off because you were silly to be even discussing it. Your relationship involves love and laughter. Friendship is another great relationship for laughter. For example my friend and I were invited to a birthday party, she had lots of fun games and lots of food. My friend that went with me to the party her name is @PERSON1. It was gettting late, and we were tired. We were not doing anything this was probably around @NUM1 in the @TIME1. See us for some reason do love to sleep, but we were just having such a great time at our friends house we just didn't want the night to end at all. We al sat and layed there on the ground and bed for about four hour earlier watching ""@CAPS2 A"". Then out of random i started to laugh at @LOCATION1, and till this day I don't know why i was laughing at her. All of the sudden she started to laugh a lot harder at me, then I was starting to laugh harder just because she was laughing. I was almost to the point where I couldn't breathe no more. So I got up walk my self to the bathroom, but i could still hear @CAPS3 laughter in the room which was still making me laugh. Since that night @PERSON1 and I got a lot closer in our friendship. Laughter is a lot in life. It might make you feel like your dying sometimes, but that feeling is worth it." 17 20 37 3 4 3 4 4 3 4 4 4 4 4 4 +20894 8 " As we all know, water is what we most need to stay alive cause without it we'd pretty much die. Well, it's also quit similar with laughter. I once heard my night school teacher say, ""@CAPS1 is @PERCENT1 attitude"". I thought about it for r a moment and realized it's quit true. No one can really go throughout the hole day, without having any type of beverage and as much as someone is upset for any apparel reason, will soon end up smiling. Who knows perhaps for the silliest thing whatsoever. I've been going out with my boyfriend @LOCATION1, for about seven months already. We don't get to see each other as much as I'd like to. We try to spend the weekends together as much as we can, but there's been times when it's every other weekend. Since him and I have quit a few things in common like, our relatives, knowing each other before dating, places we go for entertainment, food, likes and dislikes. We rarely dislike of where we'll be spending our time togethe or what we're doing. Even though its been about seven months since we've been dating, it feels like we've known each other way before we became friends. Once when I was over at @LOCATION1's house celebrating @PERSON2's birthday, @ORGANIZATION1's youngest sister. We, all who where there, were celebrating her birthday with pinatas, cake, and all she wanted, witch where toys too. We where all having a good time but the kids weren't so much, it seemed as if they were running out of energy since they were playing in the trampoline for quit a couple of hours. Before the kids could even mention anything about the pinatas, we had already gotten most of what was need to set up the pinatas. As they heard the candy being pored into the pinatas they all rush to get there first before the others, could get to hit the pinata. @PERSON2 go to hit the pinata before all the others, since it was her birthday, then the little kids followed her to hit the pinata. As they went up to hit the pinata we sang songs, it wasn't the best but we all tried. We even made jokes, of pretending to imagine who the pinata was representing. As time passed, it was turn for the older kids to go up and hit the pinata. Most of us were kind of shy, but before I notice a @NUM1 year-old went up to hit the pinata. Right after she hit the pinata quit hard the others said her time was up, they were anctious to get the candy out. After her turm was over she was supose to call out on someone. I thought she would end up calling me since she keept looking towards me. I was already blushing, good thing she didnt. she ended up calling out on my boyfriend. He of course got up and grabed the stick to hit the pinata. Once he got there, the others where said to not hit it so hard or else the little ones whouldn't like him anymore. Since he is one of thoes persons who's love @CAPS3 everyone. He cheard me up to go with him. Without him saying that ii don't think I would of done it. Right there were we where, teaching me how to swing the stick to hit the pinata, I swung it to hard that I ended up hitting him. Before @CAPS2 even say anything, one of his aunts said. That's the way I'd be getting when ever I'd get bothered at him. @CAPS3 starting out slow then hitting him right where it hurt the most. I was even reder then when I was blising, all I thought of saying was that it might be true when ever it happend @CAPS3 then @PERSON1' mom was already getting the cake out, I just left fron where I was at to go help her out. Once we all got settled to sing happy birth-day to @LOCATION2, we where stil laughing of what had happen. Thing is they where stil talking about it. How it might be the same when we get merried. Again I didnt know what to say so I just simle. Everyone was leaving and right before I could call my dad he was already outside the door. All I said was thank you daddy,with a silly smile." 18 18 36 4 4 4 3 4 3 4 4 4 4 4 3 +20895 8 " Just @CAPS1 walking through @ORGANIZATION2 in a banana costume with one of your best friends. We were trying to find the best costumes for a @CAPS2 party. When having so much fun by taking many pictures and videos we lost track of time. I can't even remember which one of us was laughing the hardest. @CAPS3 is just one example of the crazy things my friend @PERSON1 and I have done together. One thing is for certain, whenever we are together we are always laughing. Laughter reduces stress for both @PERSON1 and I. We were team members for the past six years. Both of us competed as gymnasts at @ORGANIZATION1. We worked out at the gym @DATE1 for four hours each day. That gave us no time to hang out with friends and just enough time to do homework. At @ORGANIZATION1, @PERSON1 and I needed to be focused so we wouldn't get hurt. @CAPS3 meant off the floor we needed laughter to reduce stress, as well as fear. In order to do that we would hang out a lot on the weekends and in the @DATE2 sun. Our friendship was strong because of all the laughing and fun times together. When either of us became stressed we would make the other cheer up by remembering the times when we laughed our heads off. Even when we are not together we often think of the memories we have shared together. As mentioned earlier laughter also helps to reduce fear. It helps because if you were not having fun and laughing you would think about all of the bad things at could happen to you; then would you do have laughter involved it makes you want to do whatever it would be with your friend. The laughter @PERSON1 and I shared always attached others to us. Whenever we were together others always wanted to join is because we were having such a great time together. For example, @DATE2 we were at @LOCATION1's house and we were playing outside on a warm, sunny day. We were laughing and all of a sudden one of her neighbors shows up. After one came, more and more kids and her friends came, after awhile it seemed like we had the whole neighborhood there with us. When we had a big group of people, @PERSON1 and I would choose a different game that would be better for a lot of people. It usually was a hide and go seek tagging game. Even though it wasn't just the two of us we were always laughing because we would trick everyone that was playing. It created a good and positive bond for the two of us even though there were more people. ""Laughter is the shortest distance between two people."" @CAPS3 is how @PERSON1 and I became such amazing friends today. Without laughter, I do not think we would have been as close of friends if we didn't have laughter in our friendship. Our laughter brings us closer together every single time we see each other. Laughter really connects the bond between friends and its helps both of you get through hard times." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20896 8 " ""Many other people believe that laughter is an important of any relationship."" Many other people believe that laughter is an important part of any relationship. I also agree with those thoughts. I came to @LOCATION1 about @DATE1, I did not speak @CAPS1 at all that time. I started going school. I practiced saying my name, age, and where I came from before I go to school. Next day I walked in to school and I could see that everyone was looking at me. It was pretty scary to me. I looked back at one girl and she walked towards me. ""@CAPS2, my name is @PERSON1,"" the girl said. ""@CAPS2, my name is @CAPS4. I'm from @LOCATION2. I don't really speak @CAPS1,"" I said to @PERSON1, then @PERSON1 started laughing so hard. ""@CAPS6-@CAPS6 you have accent,"" @PERSON1 said, ""it's really cute."" I laughed back. @PERSON1 looked really nice with her smiles on and we became friends so quickly. She was my first @CAPS7 friend ever. I always thought that making new friends are hard, but the laughter made it much easier than it used to be." 15 15 30 3 3 4 3 3 3 3 3 4 3 3 3 +20897 8 " Laughter is the best way to show someone that they are funny. It is the best way to relax. Everyone says that hearing a baby laugh is great. Watching comedians doing their acts can cheer people up and have them start laughing. Laughter is the best way to relax and here is three reason for that. First, is that no one can stay angry at the person making them laugh. Second, is that when someone laughs everyone around that person start laughing. Third and last reason, is that no one can stay sadden when something funny is happening. What do you think when you hear a baby's laughter? I think that the baby is truly loved by its family. He or she is having a bast playing with someone in the family or themselves. They think that whatever you are doing is funny. A comedian's job is to make a crowd of people laugh at or with them. One way a comedian does an act is stand up comedy. That is when a comedian is on stage and does his or her act. Another way is a comedy. A comedy can be a @CAPS1.V. show, a play, or a movie. Comedies usually do not have a plot, but the point is to make you and anyone else start laughing. That is what I think about laughter. It helps anyone relax. Hearing a baby's laugh is great. Comedians love hear people laugh at or with them." 17 15 32 3 3 4 4 3 4 3 3 3 3 3 3 +20898 8 " @CAPS6 only happened a few weeks ago on a day the all the students were supposed to be out having fun or sleeping because there was plenty of snow outside. A guy was crying on his chair with his hands over his eyes, a french horn in his lap and his gaze fixed on the ground below him. Sobs choked the sound in the band room but luckily for this guy's pride there weren't too many people in the room to start off with. The guy's head rose up, the tears seemed to eat the self sturdiness of his normal self, and @CAPS2 spoke to the person who always sat to his left. "" @CAPS1 just don't understand @PERSON2"" the broken, voice cracked on words ""I don't care that @CAPS1 play in cascade winds or that @CAPS1 get private lessons or that @CAPS1've gone to state honor band! This @MONTH1 sound like a terrible reason, but i just want to play first because i want to play first, and @CAPS1 never let us play first."" @CAPS2 was right about one thing, @PERSON2 really never let us play first. I somehow understood where @CAPS3 was coming from; @CAPS4 my freshman year i had always sat under him, and him under someone else and so forth. I had never seen him be first chair on anything. And now on his senior year, a prodigy child had come into band and she only knew how to fight for her position as first chair. In short @CAPS3's four hard years of working for the first chair spot in band were summed up to being second best the moment she stepped in the room. The feeling of all his hard work turned into mediocre in his face, with time, had broken him to tears. @PERSON2 was much better than us and she has the accolades to prove @CAPS6. She had attended cascade winds solo ensemble festival, band camp, and would be going to @LOCATION1 as an ambassador of music. Still something about her having first part still didn't feel quite right. Maybe @CAPS6 was my sense of wanting superiority as well. @PERSON2 took in the words, leaned closer to say. "" I understand that @CAPS1 want first"" @CAPS10 with confident tones she said ""but right now we need specific players in specific spots. I've played harder music and my skills are whats needed on first part. I understand what your feeling, ive been there before."" @CAPS6 struck me weird that a sophomore was telling this to a senior. How could she have felt what @CAPS2 was feeling? she'd been a prodigy child in @CAPS7 @CAPS8 from the start. I sided with @PERSON1 but @CAPS10 I realized that letting him play a more demanding part would be worse for the band. So i tried siding with @PERSON2 but @CAPS10 all i could think about was that this was @PERSON1's last year to shine as a @CAPS7 @CAPS8 french horn player.They kept going at eachother. Every comment scraping at the already fragile surface of the argument. Minutes made the quarrel more and more volatile. I had to think faster. @CAPS9 the argument continued like this the horn section would be torn apart and co-operation would be useless. More importantly I would lose two partners that together had uprooted a great deal of musical talent. I slid my chair next to them to tell them my thoughts. ""@CAPS9 a man has no socks,"" I liked starting out my thoughtful speeches with mysterious beginnings, "" @CAPS10 so will..."".And that's as far as i got. I thought @CAPS6 was brilliant, their faces said otherwise. So they called me crazy and giggled @CAPS10 they made fun of me and laughed. Thankfully i was oblivious of the stuff they called me because i really wanted to remember what i wanted to say. @CAPS3 stopped crying, finally, and @PERSON2 got my message that @CAPS3 was a senior and didn't really have many more chances at playing first chair in @CAPS7 @CAPS8 band. They settled the fight with a simple deal; @CAPS3 would get fist chair as soon as we stopped competing. @CAPS4 @CAPS10 I've been the center of being made fun of. But as annoying as @CAPS6 gets sometimes its usually funny for everyone, including myself. I cant even begin to imagine what band would be like @CAPS9 their enmity had risen to the no forgiveness zone. There had been times before when heated discussions left the stress levels in our section so @CAPS7 @CAPS6 made @CAPS6 hard to breath right. Having laughter come in even right before they were about to rip eachother's faces off gave them time to understand that they had mutual understanding of each other. Or opened their eyes to how long they're going to have to sit next to each other i they were to continue fighing. Either way, @CAPS6's definatley changed the way they feel about eachother; I haven't heard them complian about one another for a while. @CAPS3 is eagerly awaiting his turn to shine and @PERSON2 for better or worse can't wait to see him play." 23 21 44 5 5 5 5 5 4 5 4 5 4 4 4 +20899 8 "We're happy together @PERSON1 told me @CAPS2 we lay on his bed. I just smiled and I knew this was going to be a really good relationship. @CAPS5 always made me feel so great. @CAPS5 made me feel beautiful. Now don't say your too young to know what love is ,@CAPS1 I've heard it from my mom every time I talked about him. But I know that no one has ever made me feel this wonderful about myself, made me feel perfect. When we are together it's fun. Most guys I have been with have not been @CAPS2 fun, @CAPS2 in our dates together, walking to the park too sit and talk, eating out to kiss in public. Before we were ever dating, We were best friends. We still are best friends. Everyone asked us @CAPS6 we were dating, The answer was always no we're best friend's, but I always wanted more. @CAPS5 has always made me laugh. I don't think we would have made such a strong couple @CAPS6 we didn't make each other laugh. Just thinking about @CAPS4 I first knew I loved him makes me laugh. I was walking to my @DATE1 class, and out of no where @PERSON1 grabs my arm and pulls me into a huge bear hug, and buried his head in my neck and laughed and said ""@CAPS3, you have some toilet paper sticking out of your pants"" I felt my face turn twenty different shades of red. I smiled and quietly asked him to hide me so I could grab it. When I got to my @DATE1 class I was thinking to myself @CAPS4 could @CAPS5 just say that to me, @CAPS5 must of wanted to embarrass me. But the more I thought about what @CAPS5 did and @CAPS4 @CAPS5 did it made me feel, well it made me feel like @CAPS5 really and truly cared about me. Wanting to help me out rather then embarrass me. I bet every other guy was laughing. Not @PERSON1... well after that happened we had a good laugh. After we laughed and joked about what happened to me, @CAPS5 looked up and kissed me. I didn't know @CAPS6 that was a best friend kiss, or a real love kiss. So I simply laughed. then @CAPS5 kissed me again. This time I knew it was a real love kiss. We weren't like most couples either. Which made us stand out, and the more we stood out the more people started to hate the fact that we were together. They would say some horrible things to me in the hallway about @PERSON1. Who knows what they were telling him. @CAPS7 some of my closest friends started to make rude comments toward me and @PERSON1. I know @CAPS5 didn't believe anything they were saying @CAPS1 @CAPS5 would laugh at everything people would toss our way. When @CAPS5 laughed I would always ask him whats so funny, @CAPS5 would say ""@CAPS6 they rumors aren't true then laugh about them, that way people will know your not bother by them"" I would have never thought about that. I'm the kind of girl who wears her emotions on her sleeve, so of course I would get a little peeved with all the stuff they were saying about us. After I started laughing at all the rude and nasty things people were saying,. They stopped talking about us, it was like magic. I never thought about being in @ORGANIZATION1 @ORGANIZATION1 let alone @ORGANIZATION1, and finding a guy that would understand what I'm going through. Let alone someone who is going through something almost @CAPS2 difficult. My brother went to prison @DATE1, and I don't think I could have be able to make it through @CAPS2 much @CAPS2 I did with @PERSON1. I cried almost everyday at @ORGANIZATION1 with him. It's been about a year now. Every time I go see my brother I remember what @PERSON1 said, ""@CAPS6 your happy the people around will be happy"" so I always put on a smile to see @LOCATION1, @CAPS7 though I know this will be the hardest years of my life. Laughing does really help. @CAPS7 @CAPS6 nothing is funny just laugh. God put you on this @LOCATION2 for a reason, and @CAPS6 you haven't found that reason laugh until you do. @CAPS1 the people in your life mean the world to you, and @CAPS6 they're down bring them up. I love @PERSON1 for helping me understand that life's to short to go unhappy then to have had a life without laughter." 17 20 37 4 3 4 4 4 3 4 4 4 4 4 4 +20900 8 " Everyone loves to laugh; I don't think everyone understands the effect laughter can have on two people though. For example, there can be two complete strangers, who have never seen each other before in their life; as soon as they start laughing they could become good friends. You'll never know how close you can be with someone if you don't ever sit down and talk, laugh, and get to know them. You could go your whole life being at @CAPS4 with just a minute amount of friends but then there could be @NUM1 other classmates you've never talked to that could also become your friends, too. I'm sure just getting to know one another would make a difference in someones life because for me there has been many situations where laughing has made an impact on my relationship with someone; especially with my best friend, @PERSON1. When I first met my friend @PERSON1 we didn't know each other at all but laughing broke the ice. A simple laugh made us comfortable and everything was less awkward. As soon as we started laughing more and more, we couldn't stop; the rest was history. I went to elementary @CAPS4 with @PERSON1 for @NUM2 years and never talked to her but then when we got into @NUM3 grade we started hanging out with the same people and started talking more. By @NUM4 grade we began to hang out outside of @CAPS4 and talking, sharing secrets, and having sleep overs. But ""breaking the ice"" isn't the only impact laughing can have on a relationship. When I'm with @PERSON1, I know I can trust her and everything is fun. We always have conversations to talk and laugh about. You could say it made us closer. By the time @NUM5 grade came we were best friends, we had sleepovers every single weekend at one anothers house. When the @DATE1 before our @NUM6 grade year at the @CAPS3 @CAPS4 came we were spending weeks at each others houses. There wasn't a day that went by that we weren't together, talking, or making plans over the @DATE1 to hang out. Now, we can be ourselves around each other; we can always have a good time. Making people closer is just a small part of the effects that just one laugh can do to two people. When I'm sad about something @PERSON1 makes everything better; also vise versa; I make her feel better, too. We always have each others back. I know we will always be there for each other; I'll always have a shoulder to cry on. We have become such close friends that when @PERSON1 was having problems at home she needed a place to live in order for her to not have to go to The @CAPS1 @CAPS2 @CAPS3 @CAPS4, so she moved in with me! It has been the most fun living with her. We thought we would start to argue and not be as close since we would always be together and probably get annoyed of each other but we haven't. @PERSON1 and I can hang out @NUM7 and always be together; it's like having another sister. @PERSON1 and I are super close, and she plans to stay living with me for the rest of @CAPS3 @CAPS4 until we graduate. It's amazing to think us being best friends and tremendously close, living together, always being together, and being totally comfortable with each other on everything just started out with a simple laugh when we first started talking in the @NUM3 grade. This is why I believe that just laughing can make two strangers, that have never even spoken, can turn into being the closest of friends." 22 20 42 4 5 5 5 5 4 4 4 4 4 4 4 +20901 8 " One @DATE1 @TIME1 back in @DATE2 a couple of friends and I were beyond bored. Nothing seemed fun to do. @CAPS1 to a movie, @CAPS1 to get some food, not even call of @CAPS2 sounded entertaining. @LOCATION1 parents told us to go do something outside. Before leaving his house he slips into his pantry and grabs two hefty rolls of @CAPS11 wrap. ""I think I have an idea"" @CAPS3 @PERSON1 as we walk away from his house. I have no clue where we're walking to. @PERSON1 just keeps saying ""follow me."" We all follow in a pack down the street until we show up at @ORGANIZATION1. Cold and confused, we sit in the parking lot of the @ORGANIZATION1 waiting for all cars to be gone. Once all the cars are gone @PERSON1 informs us on what we are doing here. He tells us of something he did with his cousins awhile back. You have three people on the roof of @ORGANIZATION1's @ORGANIZATION1 scoping out the road and you have four @CAPS4. ""@CAPS4?"" I question @PERSON1 with a dumb-found look on my face. ""@CAPS5, @CAPS4"" @CAPS6 @CAPS4 are the people who will be putting the @CAPS11 wrap across the street. The plan is when no cars are coming in the distance, we hop the fence and put @CAPS11 wrap across the street so cars drive through it and stop. ""@CAPS7 sounds fun, but uh what happens when the @CAPS15 stops before the @CAPS11 wrap and takes it down?"" @CAPS8 @CAPS9, looking down on the whole operation. @PERSON1 laughs a little bit and @CAPS8 ""@CAPS10 then it will be an inconvenience for the driver."" @CAPS11 wrapping roadways sounded a lot for fun then black ops so we were all down. Everyone gets in position. Mark, @PERSON4, @PERSON2 and myself are down by the roadway in a secluded area by some bushes. While @PERSON1, @CAPS9 and @PERSON3 are posted up on the roof giving us updates about the oncoming traffic. We get a call from @CAPS9 saying that it is clear for awhile. I hang up the phone, tell the guys and @DATE3 up from the ground. We all get over the fence in quick time and start a first layer of @CAPS11 wrap. I get another call. It's @CAPS14 saying that there are three cars are almost to our location. We drop the @CAPS11 wrap in the bush and get back over the fence. The @CAPS15 comes up close and it's a cop. Of course. We all just stay hidden down in the bushes while the cop takes our huge roll of wrap. We are only left with one more roll , which should before enough. @CAPS9 calls again and @CAPS8 it's clear. We go out again and start to set up the prank. We wrap it around @NUM1 times and make it as tight as it possibly could be. Perfect. ""@CAPS15 incoming! Go! Go! Go!"" yells mark while trying to get over the fence. We all make it over in time and go prone in the field. Laying there anxiously someone whispers ""here it comes."" The @CAPS15 slams on it's breaks, and the driver gets out. He looks at @CAPS11 wrap in disgust and looks around for the kids responsible. @CAPS9 lets out a big ""hahaha"" from the roof that even we can hear perfectly. The guy walks up the fence looks around a bit more and mutters for foul words under his breath. He didn't even bother continuing through, he just got in his @CAPS15 and backed up.""@CAPS16 my god dude that was hilarious!"" I say with a wide grin on my @NUM2 @CAPS9 and @PERSON3 come dashing through the field with a scared expression on all of their faces.""@CAPS18!"" yells @CAPS19 scurried into different directions. Mark, @PERSON2 and I jolt over the fence and hide in the play structure for awhile. While the rest of the boys are booking it to a safe haven. We eventually all meet back up at @LOCATION1 house without getting ""caught"" by the authorities. It's nights like @CAPS6 were laughter really plays a key role between a big group of friends like I have. The laughing and running makes us closer as a group. it brings us together." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20902 8 " I agree when people say laughter is what mostly brings people together. In my opinion, @NUM1 of the time your talking to someone, laughter is needed. It is what brings the dullness out of a person, and makes the conversation interesting. Only when you are talking about something serious, you dont need to include laughter, but ill explain later. So I can easily tell a true story about laughter from my life. Right now i have a perfect group of friends. Sure there are times when they mess up and act like kids, but i feel like i need to forgive and remember that they are there when i need them. Anyways, i can remember the first time i met each one of them, and the one thing that started our friendship was a joke. I can't exactly remember which joke we shared, but i do remember that we all had the same taste in comedy. And once we saw that neither of us were serious and dull people, made us want to spend more time with eachother. That is why laughter builds a string between different people, and brings them closer together day by day. So as time passed, my friends and i were really drawn to eachother. What i mean is that, from time to time, we were happy to express our friendship through jokes. Sometimes the jokes are really stupid. Many of them have caused pain - physically, and have caused us to bring revenge on eachother. But that is just how, we stay close to eachother. Day by day, when we see something funny on the television, internet, or real life, we always show it to eachother, and know that after showing this prank, or whatever it is, the other person will find it very funny. It makes us feel closer, and know we all have a same taste in atleast one field. I can give one clear example of this: I was watching a comedy once, and the comedian was talking about his childhood, and a prank he once played on a strangers house. Right when i saw this video, i knew right away, my friends had to see this, because i knew from past experiences, that they enjoy these types of laughs. And i was right, as soon as they saw the show, they were amazed at how funny it was, and they were glad i shared it with them, we got closer than ever. I want to share one more example from my life, about laughter bringing two people closer. So after telling you that laughter gets me closer with friends, i also want to point out that laughter brings out a sence of outline when if you talk to girls - or boys, if you're a female. So i met this one girl, and everytime i talked to her, everytime i had to throw in a joke or a story that would make sence to our subject. After a while, she started joking around, and making stories too. She told me that she saw me as a different guy, comparing me to other people. She said that she meant i wasnt a boring type of person, and that it kept her wanting to keep talking to me. I always hoped not to be a dull person, and jokes made that not happen. Now, me and this girl are closer than ever, and the root that started this relationship was laughter. So as you see, laughter makes any relationship happy and open. Of course im talking about the relationships that are playful, i meant there are people out there that take everything serious, and can't take a joke. But i would really encourage you to take laughter in your life, if you already havent. Look in my life, i used laughter, and gained a lot of friends, of all sorts - just by joking around about something stupid. You don't have to say stupid things, but I say it would really make your life more interesting if you use laughter." 20 18 40 40 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 +20904 8 " These are some example that i remember when i had fun and laughter in my life @CAPS1 all started in the @DATE1 time when i was like @NUM1 years old and my cousins were living with @CAPS3 cause they had just moved down to @LOCATION1 from @LOCATION2. @CAPS1 was fun having them around. @CAPS3 and my cousin @PERSON7 and my cousin @PERSON3 who lived right next to @CAPS3 would always ride bike. Some times joey would take my bike with out asking @CAPS3 and i would get so mad at him.he would take my bike like if @CAPS1 was his. @CAPS3 and my cousins would always race down the street with our bikes. I was always the one to win the race the kind of bike i has was a @PERSON4 @CAPS1 was a @CAPS2 bike witch is a bike made for the dirt and to race. @CAPS3 and my cousins would go behind some apartment down are street and there was a ramp that we made. @CAPS1 was just dirt but @CAPS1 was hard. One day when @CAPS1 was raining so hard @CAPS3 , @PERSON7 , @PERSON3 and another neighbor of our asked us to come out side to we asked our parents if we could and my parents said @CAPS1 was okay same with @PERSON3. Joeys @CAPS4 said he could not cause @CAPS1 was raining hard outside but he still came outside. we had got all muddy i ad fell of my bike trying to go up the ramp while @CAPS1 was all muddy. then my cousin got like beat up from all the time he fell off the bike. By the time we were done playing out side we were so muddy and our bikes were filled with dirt. my @CAPS4 was mad at @CAPS3 cause i was so muddy so she send @CAPS3 straight to the shower . @CAPS3 and my cousins had a good time that day after we were all done getting cleaned up we were playing super @PERSON5 bros for super @ORGANIZATION1. If we were not playing the super @ORGANIZATION1, riding bikes or getting wet with water gun and water balloons since @CAPS1 was so hot out side. We were probably on our way to the park for free lunch the school would always serve free lunch to who ever want free lunch. a lot of my friends would go to the park and get lunch same with my cousins after we would finish eating @CAPS3 my cousin @PERSON3 and my friend @PERSON1 would always trade @CAPS5 cards or @CAPS6 @CAPS7 @CAPS8 cards back then every body had @CAPS5 or @CAPS6 @CAPS7 @CAPS8 cards. i had piles of cards. @CAPS1 was fun being at the park with friend and family just having a fun time eating playing getting wet in park. When i was in @NUM2 grade @CAPS3 @PERSON2 @CAPS14 and @PERSON6 @CAPS15 were like the three amigos we would stay at @ORGANIZATION2 house like almost every weekend. we would always stay at @ORGANIZATION2 house because his back yard was big and we would always play hide-seek and cause @PERSON6 had like a play room with a pin ball machine a basketball hoop and other games. One time on @ORGANIZATION2 birthday @CAPS3 @PERSON2 and @CAPS17 slept over at @ORGANIZATION2 house and we were just playing video games like one of the games we played was grand theft auto @CAPS18 @CAPS19 @CAPS1 was a cool games. I think that laughter is a big part in friendship cause if your having a good time hanging around with your friend and just laughing then that mean that hes a good person . If your friends always make you laugh then there good friends to be around with. Like i would always hang around with @PERSON6, and @PERSON2 cause they would always know how to make @CAPS3 laugh .So thats why i think laughter is inportant to havewith friends or family. " 15 13 30 30 3 3 3 4 3 3 3 2 3 2 2 3 3 3 3 4 3 3 +20905 8 " Someone once said laughter was the best medicine. To me it was like someone was saying ""@CAPS1! Life isn't gonna get any better so just enjoy it while you @CAPS6!"" @CAPS2 that's what I did for a while, but laughing at everything got old very quickly. Sad to say I still laugh at most things, even sad things. I laugh because I think that if I do then everything will just get better. That's not even close to what really happens. In fact it @CAPS6 only cause more pain and suffering in most cases. Like the time where I met this guy named @PERSON1. He was amazing. Most people who met him thought he was a god and when he heard people talking about him like that he would always get very upset. He was a human. Nothing more and nothing less. That's how I saw it and that's how he saw it too. When we first started talking to each other it was between notes I would give my friend @CAPS3 and @CAPS8 would give them to him. He was a very shy guy so he never wrote back on a piece of paper. Instead he had @CAPS3 tell me what he said. Then he finally got the idea to wright messages in her phone and then I would read them and answer back. it was fun for a while but I wanted to actually meet the guy. I had seen one of his rare pictures and it was true he was very handsome but nothing like a god. He didn't have a wreath over his head with one of those @CAPS5 god skirts. Nope, he was just an ordinary kid who dressed like a skater and was just a real inamorata. He had jet black hair (he dyed it), bright green eyes, and a smile that could shock the whole world. Signs were going off in my head telling me to be careful but I never listened to them, they only made my life worse. So one day a few of my friends and I were in @LOCATION2, @LOCATION3 with our teacher for a calligraphy convention when @PERSON2 (my friend) starts text messaging someone. I was a little curious so I asked in a friendly way who it was. @CAPS8 said it was @PERSON1 and my heart seemed to jump. ""@CAPS6 you tell him I say hello?"" ""@CAPS7."" @CAPS8 told him I said hello and he asked if I was really there and @PERSON2 said yes. That's when we actually got to talk to each other more than once a day. We talked all the way back to @LOCATION1. A few months went by and we were back to our old way of talking to each other. He was very kind and never did he have a bromidic moment. He told me about his family (which is a little strange, but I don't judge), his life, his future, what he felt and how he wished he could see me so he could give me a big hug (another of @CAPS3's friends said the same thing but @CAPS8 said he wasn't aloud to). I talked to him about all of it and it was like we understood each other a little bit. I told him about my life but there really wasn't much to tell since my life has always been bromidic. I thought we could actually make things work between us, that is until he moved to @LOCATION2. I was a little upset but it really didn't bother me except the fact that talking to each other became almost as rare as seeing a different picture of him. While at school one morning @PERSON2 came over to me and had a careful gaze. I asked what was wrong and then @CAPS8 asked if anything could ruin my day. I told her that only going home would and we laughed a little about it. I knew something was wrong and that it had to do with @PERSON1 but I just acted oblivious to it hoping it would lessen the blow I knew was about to come. @CAPS8 said he had told her it wasn't going to work out between him and I. I sat there and like the idiot I was I said I knew it wasn't going to anyways, he was him and I was me. @CAPS8 said he was sorry and all these other excuses but I wouldn't listen. Instead I ignored it and went on with my life like I think everyone should. Of course a few months later he asked @PERSON2 out but I let it go just as @CAPS8 did when @CAPS8 said no to him and they stopped talking to each other. So who ever said laughter was the best medicine obviously hadn't experienced the after effects of it all. " 15 19 34 3 3 3 3 3 3 3 4 4 3 4 4 +20906 8 "Trust is a huge deal between friends. Friends agree on the same things, say an honest opinion about it, and don't lose the trust between a great friendship. You never know who can stay by you with a full amount of trust between you two.When you trust a friend you depend on them to keep things between each other. Just like my friends and I. We agreed on telling each other everything that has happened and not to lie about anything. We agreed on everything based on trust. Our friendship has always been great with not lying to each other. Telling each other how we feel about certain things. Then we put all our opinions together and come up with a solution that we all agree on. That's why you should depend each other like a team. When you break a trust between a friend, you probably won't get the same trust you had before. You don't really get told anything as much as you use to. An it's like you never should have lost the trust with a friend. You don't seem to be the same because you aren't trusted that much. You get told it was your fault lying or for any reason to be not trusted. Like this one time one of friends didn't tell me the whole truth of what she was doing behind my back. Till I found out what she was doing I lost most of my trust with her. She's not trusted as much she was before, but we are still friends.That's why having trust is a big deal in a friendship or any kind of relationship. You learn to trust each other in different ways, get to know each other more by having the trust between you and other person. You get a lot more attention when you have that trust with other people. You don't seem like you are left out on anything. You see that you can trust more people to when you get to know them. Who knows that you have trust for another person who isn't your best friend.So we all know that trust is a huge deal between two people or maybe even more. You need to work together for the trust. Have a good friendship or relationship to anybody as long as there is trust between you guys. My friends and I have learned a lot from trusting each other in different ways." 24 20 44 5 4 4 5 5 5 4 4 4 4 4 4 +20907 8 " One day @CAPS17 I was having trouble trying to cope with some very big changes in @CAPS13 life, I seeked the help of a friend. Usually @CAPS17 i'm having a bad day I @CAPS14 keep to myself. This was an occasion @CAPS17 I need someone else there to help @CAPS2. @CAPS17 I went @CAPS5 met with @CAPS13 friend she tried all she could to cheer @CAPS2 up but nothing was working. @CAPS6 she said ""@CAPS1 hear a story?"" @CAPS2 wanting to hear anything that would take @CAPS2 out of this slump I was curently in said ""@CAPS3, @CAPS4 @CAPS12 think it will help.""@CAPS5 @CAPS6 she began. ""The other day @CAPS13 family @CAPS5 I went grocery shopping. We were gone for probably four hours. I stopped her right there @CAPS5 asked her how this was relavent to making @CAPS2 feel better @CAPS5 she said ""The more details the funnier it is."" I told her to continue. She continued, ""@CAPS6 we got home @CAPS5 the parents started unloading the grocerys. While they were doing that @CAPS13 sister @CAPS5 I were in the living room teaching our dog how to sit, lay, shake, speak, @CAPS5 roll over. Everytime she did a trick we would give her half a dog treat. @CAPS17 the parents were done putting the grocerys away they walked in the living room @CAPS5 we showed them the tricks we had taught our dog, they had yet to see them. After we showed them all @CAPS13 father had to say was ""@CAPS7 @CAPS3 @CAPS12 put the dog treats up @CAPS6 she doesn'@CAPS11 get into them."" I replied with a simple ""@CAPS8."" @CAPS6 the parents said they would be back that they were going to get pizza because they didn'@CAPS11 want to cook after a long day of shopping, @CAPS5 @CAPS6 they left. While they were gone @CAPS13 sister @CAPS5 I straightened up the living room @CAPS5 continued to train the dog. @CAPS17 the parents got back we all sat @CAPS5 @CAPS5 began to watch @CAPS11.V. @CAPS5 eat our pizza. After @CAPS5 while @CAPS17 everyone was done eating we were still in the living room @CAPS5 @CAPS13 sister @CAPS5 I heard @CAPS13 dad in the kitchen complaining about not being able to find the cookies they @CAPS14 bought. I looked at @CAPS13 sister @CAPS5 said ""@CAPS12 know what would be funny? @CAPS4 dad thought the dog treats were cookies @CAPS5 ate one."" @CAPS13 sister giggled. Our dad came stomping into the living room @CAPS5 threw himself on the couch, acting like a four year old boy who @CAPS14 got his game taken away. We began to laugh @CAPS5 our dad looked over @CAPS5 scolded us, then looked back at the @LOCATION1. Then out of nowhere @CAPS15 said ""I found them."" Or what @CAPS15 thought was them. @CAPS15 reached for the dog treats on the coffee table. @CAPS13 sister @CAPS5 I didn'@CAPS11 dare speak a word. We watched him. @CAPS15 looked at the @ORGANIZATION1 @CAPS5 reached his hand into the bag of dog treats @CAPS5 pulled one out. @CAPS15 looked at us @CAPS5 we looked away momentarilly. Then our eyes fixed right back on him, beyone our control. We @CAPS14 had to watch. @CAPS15 looked away to the @LOCATION1 again @CAPS5 put a whole dog treat in his mouth. @CAPS15 began to chew. Then @CAPS15 slowed down his chewing @CAPS5 tilted his head to the side, @CAPS14 like a dog would. What a coincidience. Then it sounded like @CAPS15 choked on a piece of it @CAPS5 @CAPS15 began to cough. @CAPS15 spit dog treats all over the back of @CAPS13 moms head who was sitting on the floor. @CAPS13 sister @CAPS5 I began to laugh histariclly beyond our control. @CAPS13 dad was @CAPS14 sitting on the couch with a straight face, I swear we could see the smoke coming out of his ears. @CAPS15 began to yell about how we should have put the dog treats up @CAPS6 this wouldn'@CAPS11 happen but in mid sentence, @CAPS15 @CAPS14 couldn'@CAPS11 help it anymore. @CAPS15 began to laugh. @CAPS6 we were all laughing, then we look at @CAPS13 mom who was still sitting on the floor in still in shock because she got sprayed with chewed dog treats. We could stop laughing, @CAPS6 then she began to laugh."" @CAPS17 she told @CAPS2 this story @CAPS5 laughed @CAPS6 had I cried. Then I realized ""All @CAPS12 need is a little laughter in your day to brighten your life.""" 18 20 36 36 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 3 +20908 8 " Have you ever had a fear of falling off of a cliff when up in the mountain? I have, I actually had that experience. It was a @DATE1 @TIME2 @PERSON1 we had just gotten off of the bus. I had grabbed all of my gear from the storage from under the bus @PERSON1 headed for the slopes. we strapped in our boots @PERSON1 went to the lift to catch a chair up. I was with my friends @PERSON1, @PERSON1 all three of us joined the snowboard team at school that year. The three of us caught a chair up to the top of the run. The air was so crisp, @PERSON1 the snow was a fresh blanket of powder. We were all so excited to go ride in that perfect of a @TIME1. As we went down the run, it was the same old usual every @DATE1 @TIME1. so I talked to my friends @PERSON1 suggested that it was time we went through some new trails. They agreed, so we went down through @TIME1 new area. It was a good trail with many jumps @PERSON1 a lot of powder. It seemed like a perfect area to board in. We all enjoyed it very much. But we realized that it was coming to the end when the trail was getting a little narrow, then suddenly, there was a drop right in front of us. I shifted my board sideways so I can stop, but it didn't help. It was a patch of ice that i hit, @PERSON1 it was no use. I couldn't stop. I fell off, @PERSON1 braced for impact. I was thinking that I was about to be seriously injured because of the rocks below. But luckily, my board was the first to hit the rock, showering the cool @TIME1 with sparks lighting it up. I slid down the snow a couple more feet, trying to stop myself. As I came to a stop, I looked back wondering how I survived that. I was worried that my friends would do the same, but they had stopped just in time. We all couldn't believe on what just happened. I learned a lesson from @TIME1 of to always scope out the area first before you go through it. I luckily was not hurt, I could have been seriously injured." 18 17 35 4 4 4 4 4 3 3 3 4 4 3 4 +20909 8 " Laughter, everyone from babies to old people do it. Laughter is an element that helps in life. They say that ""laughter is the best medicine"" it truly is. Laughing lets people know that you have a good sense of humor and that you like to have fun and let loose. In any friendship, relationship, job or sport you need to laugh every once in a while. You can't always be serious. Being serious @NUM1 as they say is not good, it makes people seem like they don't know how to enjoy life or they have no sense of humor. In the @DATE1 I had a rough volleyball season. A lot of my teammates had problems with me, because I was chosen as captain along side my friend @PERSON1. We weren't the most well liked, but we were liked by some. It was hard for @PERSON1 and I to prove that we were right for the position of captains and that we could lead the team. A few of my teammates at the time quit because they did not want to deal with @PERSON1 and I being captains, but as they quit we moved people from junior varsity up to varsity. The new varsity members had it rough, they struggled a bit trying to get the hang, but they did it they managed to get the hang of how varsity plays and practices. Soon after our mishap of having to replace seven out of fourteen players we had our first game. The game was one of the toughest we had the whole season. In our first set of the we didn't exactly have our minds in it for the first of what would be come a five set, game. We battled back and forth a few points in the first set, but we ended up losing that first set. We went into the second set not knowing what we were going to do whether to give up or half-@CAPS1 it was tough, I as one of the captains said ""@CAPS1, we won't get anywhere unless we @CAPS1."" then @PERSON1 says ""I agree, lets @CAPS1 our best and not let them get an easy win."" We did exactly that we tried and we won that second set. It was the third set and we had started to get tired and feel aggravated, so we pushed forward we won the third set. One more set and we would win it. We went on the court and the ball was served we let the ball hit the ground point one to the other team. After that first point it went down hill we let them get the best of us and they won the set. It had come down to the fifth and final set were we would either win or lose. We got on the court knowing that we might lose and started. The first point went to us we went back and forth a ton in the final set. It was a tough battle, but we had done it we won. Later in the season we met the team again and it was a hands down battle we had lost the second time we met them it was not easy at all they didn't allow any room for errors on their behalf, but us we let it all slip. It was time for the state playoffs we had made it to the state finals. The team we were playing was the team we had faced twice before and we were one and one. The line-up was called, national anthem sang, and the coin was flipped, we would receive the serve. The game was in full swing, we were doing great we won the first set by four a tough first game. We went into set two, we lost control. We didn't do what we were suppose to do. We lost the second set it was and confidence hitter. We were down we didn't know what to expect in set three, and as captains the team seeing @PERSON1 and I should have not let ourselves be down. We looked at each other with that look I knew and we just busted out laughing we couldn't stop the team wondered what was wrong. So we explained that in order to win we had to laugh we @MONTH1 feel down, but you have to laugh and the team did we went into the third set confident as ever and we won we didn't stop there we went into the fourth set and won. We had done what we set out to do win! In the end laughing was what we needed to do we had come this far that we could either give up or push and succeed. We looked at the two previous games that we had met the other team before and laughed. We made that our team motto ""laugh until you cry, and cry until you laugh"" the season was great looking back on it we were state champs. Now in @DATE2 season we are hoping to repeat state champs." 17 17 34 4 4 4 4 3 3 4 4 4 4 3 3 +20910 8 " Laughter is a major component in a relationship. Laughter once saved my best freinds relationship with his girlfreind. They had just goten ito the bigest fight I have ever seen. The fight started over something so small and insignificant that neither of them could remember what it was. The fight had a snowball affect untill neither of them knew what they were fighting over. Then one day, while they were taking a break from fighting, we went to see a funny movie. A while into the movie I got up to go to the restroom, and when i got back my freind and his girlfreind were both lauphng histaricly. I asked them what was so funny, but they wouldn't tell me. @CAPS4 the movie we went to a @CAPS1 restorant for dinner. While we were being seated my freind mumbled something i couldn't hear to his girlfreind, and she burst into laughter. I again asked what was so funny, and again they replied that it was nothing. During dinner, which was extrordiary for @CAPS1 food, my freinds girlfreind got up to go to the restroom. @CAPS4 she was out of earshot, my freind turned to me and said, ""@CAPS3'll never beleive what just happened. Me and her aren't fighting any more. @CAPS4 @CAPS3 left to go to the restroom, I asked her if she could remember what we were fighting over, and she said she had no idea and was just fighting because she diddn't want to loose the arguement. @CAPS4 she said that I fessed up and said i was argueing for the same reason. this made us laugh so hard because we boh realized that the argument could have been over long befor that night."" @CAPS4 this I almost never heard of them fighting again. This was untill they got into another arguement when she moved out of state. The arguement was over the fact that he wanted to do a long distance relationship, but she didn't want to. Since laughter saved their relationship for a little while I strongly believe that Laughter is an important part of a relationship. It also serves as an excelent ice breaker for a conversation." 15 17 32 3 3 3 3 3 3 4 3 4 4 4 3 +20911 8 " @CAPS10 @CAPS1 @CAPS9 my @CAPS2! Laughter, you need it to survive in this world. Someone should laugh at least ten times a day. Have you ever heard, it takes more muscles to frown than to smile? Well, I believe that it is true. It's more convenent to be happy than being sad. According to me. In @DATE2, my family was living in @LOCATION1, @ORGANIZATION1. My mom and dad had @NUM1 baby girls, before my brother and I were born. It was a beautiful snowy morning on @DATE1... Christmas! My sister, @PERSON1 in a bright yellow dress was @CAPS13 excited to be getting presents and cake! As soon as @CAPS6 opened a big battery powered monster truck, her beautiful clear blue eyes got as big as watermelons! @PERSON1 walked over steddily, and climbed into the huge truck. There was only one problem, @CAPS6 couldn't reach the pedals. Everyone stood there, silent... then they started busting up laughing because @PERSON1 awkwardly looked like @CAPS6 was dancing in the truck beacuse @CAPS6 was trying to reach the pedals. Then my mom said, ""@CAPS3 someone should go help @PERSON1 get going on the truck."" @CAPS4 that was probably the worst idea ever! My @CAPS2 is @NUM2 years old, and about @NUM3 pounds, and not in the best shape. @CAPS6 said annoyed, ""@CAPS5 I'll help @PERSON1."" @CAPS6 rolled up off the couch and stood by @PERSON1 and the truck. My dad was giggling in the background. My @CAPS2 said seriously,""I need a stick or something to push on the ""go"" pedal."" @CAPS6 went and found a long stick outside in the snow. They decided that they should try it outside because @PERSON1 wanted to feel the chilling wind on her baby soft face as @CAPS6 was riding in the truck. @CAPS13 my mom bundled up @PERSON1 in @NUM1 jackets, gloves, and a beanie. Somehow they got on top of a @NUM5 foot snowy, and slippery hill we live on. My @CAPS2 pushed down on the ""go"" pedal and it went forward @CAPS4 the front tires got caught on her long dress @CAPS6 was wearing and ran her over! The next thing we know, @CAPS6 is tumbling down the hill screaming on the top of her lungs! That's when her red flowered dress flew up and we could see her tong. My sister said loudly,""That's gross @CAPS2!"" @CAPS9 just some minor bruises and scratches my @CAPS2 was @CAPS5. That was the @CAPS10 @CAPS1 @CAPS9 my @CAPS2 ever! I watched it on the @CAPS11 video. We @MONTH1 put that video on the ""@CAPS10 @CAPS11 @CAPS12."" @CAPS13 if you see it, just remember me chuckling in the back of her head. @CAPS13 remember, you should always laugh or smile more than frown or be mad. Laughter, is the key to a happy life!" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20913 8 " Laughter @CAPS1 brings enthusiasm and joyfulness to any means or matter. Have you ever thought of laughter being a part or key element in a relationship? A time when laughter has really helped or made a relationship is when I met one of my still today best friends. I had just started fifth grade at a new school; I transferred from private to public. There was only a couple of people I knew there because of family, and these people were my cousins. As you can imagine I sat by the people whom I known for most of my life, and being in this position was very awkward. So, eventually at the end of the day I was ready to leave school and it was my first time I ever got to walk home since this school was much closer than my last. I had to walk home with a kid who lived right by me; this I had never known because of my sheltered young life. Luckily he was easy to talk to and we both had something in common which was skateboarding. This is when we started @CAPS1 because we talked about certain falls we had which were not so pleasant and he asked if we could hang out after school, and with me as a shy guy I said okay. After awhile, he came over with his skateboard and he told me to go down this ramp I had. So, I did and fell right on my back which we both thought was hilarious and we started @CAPS1 together. This @CAPS1 we did since walking home really made me feel comfortable with him and kind of bonded us. I feel that fall was a key part of our friendship because it made the awkwardness go right out the window and helped us start talking about more funny thing which we had seen. Ever since, every time we hang out something happens and we laugh as hard as you can imagine which goes down in our memories as good times. @CAPS1 has always ""sweetened the mood"" so to say and always makes a good time a great time to remember or to a truly boring time to a ""lets go do something"" time. Also, in any situation when I have been @CAPS1, or start to laugh, I feel good because every one laughs when I laugh. Most of my friends are also my friends because of my laughs and times I make them laugh. All in all, most of the relationships I have are because of @CAPS1 and how they comfort two or even more people by bonding them, and making every one feel like their having a good time with each other. This is key because than most encounters with people, even friends can be very awkward or not enjoyable. So, really in any case @CAPS1 is necessity because than every thing would be dull, plus you would really have no one to be able to have an appreciative time with. Therefore, every time I meet someone new or even someone I know laughter needs to exist in order to have a relationship with anyone." 15 19 34 34 3 3 4 3 3 3 5 4 5 4 4 3 4 4 4 4 3 3 +20914 8 " A lot of people always say that a sense of humor is very important when looking for a significant other, or even a friend. @CAPS4 some people don't realize @CAPS1 how much laughter can bring people together! I know now that all it takes is for two people to laugh together to become great friends. My best friends, @PERSON1 and @PERSON2 became my friends by doing @CAPS1 that. All my life I've gone to small schools with my aunt, @LOCATION1. We are only two years apart so we usually can stay within the same @ORGANIZATION1, so I never feel alone. @CAPS4 @CAPS2 ended up going to a different @ORGANIZATION1 @ORGANIZATION1 than me. I would have to face @ORGANIZATION1 on my own. My freshman year of @ORGANIZATION1 @ORGANIZATION1, I was pretty nervous. It was my first time at a huge @ORGANIZATION1, I had @CAPS1 moved and I didn't know anyone, so I was pretty shy. I made my first friend pretty easily during one of my classes; @CAPS3. @PERSON4, the teacher, wanted us to have partners, so that we could do a certain exercise together. @PERSON2 and I both chose each other for some reason, I don't know how, @CAPS4 we were drawn to each other. @PERSON4 told us we would be doing the ""mirror exercise"". We picked somebody to be the mover, and somebody to be the mirror. @PERSON2 ended up being the mover. I had to follow her movements exactly so that @PERSON4 wouldn't be able to tell who the mirror was, @CAPS4 when @PERSON2 started acting like a monkey, we both laughed and @PERSON4 even laughed too. During lunch, @PERSON2 introduced me to her friend, @PERSON1. @CAPS2 claimed to have known her for several years. @PERSON1 and I smiled at each other, @CAPS4 we didn't really talk at all. By the time my last class of the day came around, I was ready to go home, @CAPS5 because it was a @CAPS6 class, I never really liked @CAPS6. I came to find that I shared that class with <@NUM1! @CAPS8 we met already, and shared @PERSON2 as a friend, we sat by each other. We still didn't have much to say though. A few days went by and we still didn't really talk, we @CAPS1 awkwardly sat next to one another. Meanwhile, @PERSON2 and I became closer friends, acting out silly skits together in @CAPS3 class laughter was bringing us together, @CAPS4 I didn't really notice, because it wasn't any different then how I've made most of my friends. One day, we had testing in our @CAPS6 class, we had to go to the computer lab. @PERSON1 and I chose computers next to each other, we started our tests silently, same as always. Then, suddenly @CAPS2 turned to me and asked me if I had ever heard the ""@CAPS11 @CAPS12"". When I, very startled, replied no, @CAPS2 sang it for me, right there in the middle of the computer lab. When @CAPS2 finished we both started laughing so hard that it hurt. Our teacher warned us to be quiet, and we got back to testing with smiles on our faces. After that moment, everything changed! Like magic, @PERSON1 and I started talking and joking all the time! @PERSON2 noticed the change, @CAPS2 was glad we were getting along so well, @CAPS4 wondered what caused the sudden difference. To this day, @PERSON1 and I share laughs whenever we have the time for it. Even though I am busy with babysitting, @ORGANIZATION1, and my job. While @CAPS2 goes to college, nothing can stop the connection we made that day, through the power of laughter! I have learned that laughter is a top basis for any relationship. @CAPS4 it is not the only one. You also need to have trust. If you can't trust some one, @CAPS4 they are humorous, that doesn't make them a good friend. You also need a sense of safety. If your friends are encouraging you to do something that makes you feel uncomfortable, they aren't very good friends. I know that @PERSON1 and @PERSON2 are the best friends I will ever have. Laughter brought us together and I know it will keep us together for generations to come!" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20915 8 " @CAPS11 was @DATE1, hot and dry hadn't seen any @CAPS26 for a few miles. We'd been walking for a good six hours now @CAPS18 snacking on left over jerky scraps. @PERSON3 hadn't said much today still pissed off about dropping the can-tine, I would've laughed if the duration of our lives weren't depending on that can-tine. Hadn't heard even a grain of sand shift along the dead dry dirt that day under the blistering sun. No wind no nothing. I looked up the sun was at @CAPS11's peak yet @CAPS11 felt like a few weeks had already gone by. Finally gaining the courage to crack open my wrinkled bloodied lips I managed to sputter something, ""@CAPS1 sound good right about now, @CAPS3't you think?"" @CAPS2 didn't even glance over at me, I couldn't tell if @CAPS2 was @CAPS18 ignoring me or that @CAPS2 was sun burnt so bad his skin would tear @CAPS18 turning his head. ""@CAPS3't make me start singin, you know how bad I'm at singin. @ORGANIZATION1 @PERSON1 left me after I started singin to her."" I began to chuckle. ""@CAPS4 so I go'n die by myself? Make things better?"" @PERSON3 finally speaking up, surprisingly with his neck still intact. ""@CAPS5 wasn't so bad, @CAPS18 try to imagine that can-tine @CAPS31 had whiskey in @CAPS11. Know how much you hate @CAPS11, yeah?"" I asked kicking a rock. ""@CAPS4 did I ever start riding with you and them outlaws, should've @CAPS18 stayed back home become a lawyer at least make a name for myself."" @CAPS2 muttered looking away. ""@CAPS8 you did, now we can go on ahead or you can go on back that way and get lynched. Maybe go ask @PERSON2 and @ORGANIZATION2's body back by the rocks, give you another reminder of @CAPS9'll happen back down that way."" I gazed into the distance not much to see, except a small brown dot couldn't tell @CAPS9 @CAPS11 was. ""@CAPS9 you reckon that is?"" @PERSON3 asked. ""@CAPS10 some dead animal."" @CAPS11 had been a few hours since we talked, the brown dot getting a little bit bigger as we drew closer. I still couldn't make out @CAPS9 @CAPS11 was, but I knew @CAPS9 I hoped for @CAPS11 to be. My boots began wearing out a few years ago now revealing a gaping hole of which my big toe couldn't resist sticking out of. ""We're out of jerky, all gone."" @PERSON3 grunted as @CAPS2 tossed the sack over his shoulder. ""@CAPS9 do you think that is anyway?"" @CAPS2 spatted. ""@CAPS3't know but @CAPS11's pretty big and @CAPS29 sun is mighty hot, I reckon @CAPS11's got some nice shade under @CAPS11."" @CAPS11 was nearly dusk, but the dot had grown remarkably larger a mile or so away from @CAPS11 now. ""@CAPS11's getting dark, how we goin see where we steppin?"" @PERSON3 asked watching every step. ""@CAPS17 that hard to walk without lookin."" ""@CAPS18 think of @CAPS11 like @CAPS19 the tail on the donkey but having to walk to the donkey blindfolded."" ""@CAPS20, @ORGANIZATION1 sure knew how to through a party, her pies were mighty fine."" @PERSON3 began fantasizing. Now walking with my arms stretched afar I'd knew if we we're at the object. I retracted my big toe through the hole as to restrain from stubbing @CAPS11 on a rock. Suddenly I heard a loud thud, then I felt something smooth, ""I think we @CAPS28 @CAPS11,"" @PERSON3 said slowly, I now realizing @CAPS9 that thud was. ""@CAPS21 be some abandoned jeep."" ""@CAPS9 we going to do with @CAPS11?"" @PERSON3 asked. ""@CAPS23."" @CAPS24 up over the door onto the front seats the cushioning was firm but comfortable enough to call a bed. I woke to yet another hellish sun in the sky almost laughing down on us. There were a few compartments in the jeep that I began to search through for @CAPS26. ""@CAPS9 you looking for?"" @PERSON3 sighed as @CAPS2 slopped out of the jeep. ""@CAPS26, @CAPS9 else?"" @CAPS27 searching through old dusty papers I managed to find a rock hard piece of gum, a cigar stub, and a half empty bottle of @CAPS9 I'd hoped to be @CAPS26. Oh @CAPS9 I'd given for that bottle to have been filled with @CAPS26. Whiskey was all that I @CAPS28 inside the bottle. Getting out of the dirty automobile I @CAPS28 @PERSON3 sitting against the front tire. ""@CAPS28 some of that favorite drink of yours,"" I said sitting down against the door. ""@CAPS29 all you find?"" @PERSON3 muttered. ""@CAPS30."" I starred out at the horizon, nothing but sand. ""I'm scarred, you scarred?"" @PERSON3 asked looking over to me. ""@CAPS31 thing that scares me is the times @ORGANIZATION1 @PERSON1 caught me snacking on her pies before supper,"" I began to chuckle. ""@CAPS20, that is true,"" @PERSON3 laughed as @CAPS2 wiped drips of sweat off his brow. We @CAPS18 sat there for a few days, @CAPS18 starring and joking. @PERSON3 was a pretty swell guy, @CAPS11's a shame I brought him into all of @CAPS29. @CAPS2 died of a heat stroke. That desert was harsh and unforgiving, @CAPS11's something I'll have to carry forever." 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +20916 8 " Laughter is like feeling your alive, that nothing else matters, the pain in your life releasing, and the feeling that everything is alright. You laugh when things are funny and sometimes even laugh when they aren't funny maybe to make someone feel better or just to relax a little. When someone tells you a joke and its hilarious do you just sit and stare at them, or do you fall on the ground laughing? Personally I fall on the ground laughing hysterically. You can have the best of times when your laughing it lightens the mood a little, makes it less tense in the environment. I have enjoyed many times by laughing at the silly things we do or at the dumbest things we do and make them not as bad by laughing about it. My friend and I have been going on adventures since the third grade. We go on walks and get lost, we built forts in the middle of nowhere, we road her quad out to the sandy race tracks, and we climbed over fences to pass the time. Every little adventure we went on came back with a laugh and a huge story to tell are friends and family. After all these adventures and growing up you seem to lose interest but you never forget the good times you have. Let me tell you about a good time I had laughing so hard I even started crying. When your little you think things are a @CAPS1 more challenging @CAPS3 they really are, or things are a @CAPS1 more taller @CAPS3 they really are but that didn't stop me. When @PERSON1 and I were about @NUM1 years old we loved playing outside, climbing the trees, burying old treasures to find when we grew up, and spying on the neighbors. Well on this particular day @PERSON1 and I chose to ""spy"" on the neighbors. We enjoyed doing this cause they had kids, animals, and tons of cars so they were outside A @CAPS1. @PERSON1's dad had about ten tires just laying right next to their fence so usually we would stand on them plus on are toes just to peek over, but this time we felt that would be to obvious we needed to be more sneaky, more like a spike, and more secretive. Eventually @PERSON1's dad left to work and he stays gone for quite some time so we had things to prepare for. We thought of every possible way to look over the fence from drilling a hole to sitting on top of the shed. Finally after time to think about it we had the perfect idea to climb on the trash can and sit down and spy on them. Being brave as I was I volunteered to go first to make sure it would work so that after I was done @ORGANIZATION1 could try. Don't climb on trash cans next to a wooden fence, things don't turn out like you would of expected. As I got on top of the trash can it starts to shake and I was afraid so I held on to the top of the fence but the problem with that is I pushed the trash can further away from me causing it to tip over and me to hold on to the fence leaving me with the worst scraped hands I have ever seen. After the wild adventure we had I needed something to cool down my hands fast cause they were burning. So we had the idea to look in her dads shop van through the first aid kit but well we were in there I noticed a small fan hanging next to the radio so I turned it on and placed my hands in front of it for a good half hour. @CAPS3 @ORGANIZATION1 and I started talking about what had happened I thought about everything and couldn't stop laughing it made me cry because I was laughing so hard. Without laughter @PERSON1 and I wouldn't have the friendship we have today. Laughing is the main source for friendship I feel. All the adventures @PERSON1 and I share, well they wouldn't be the same without laughing at it afterward. You can look back at things and be like, ""@CAPS2 that really sucked."" Or you can look at things and be like, ""That is hilarious."" @CAPS3 laugh tell you cry. I could see laughter being the shortest distance between two people because it helps make things less awkward, helps you realize your mistakes and joke about them, and it helps you be you without having to pretend your someone else. If friendships were based without laughter I don't know if they would be as good, well at least I know some of them for sure wouldn't be the same." 20 17 37 4 4 5 4 4 4 4 4 4 4 3 3 +20917 8 " The comfort of a laugh. Many different kinds of comfort can come from a laugh. My story is the comfort of love. @CAPS6 i was a young and foolish teen. (@CAPS1 wait that's what i would still be today.) A few days ago my friend @CAPS2 had me laughing so hard, and all because @CAPS5 slipped up while meeting my mother. (@CAPS2 was nerves to meet my mother.) For some reason @CAPS6 i started to laugh @CAPS5 suddenly began to act as if every thing was fine, and that there was nothing to be nerves about. @CAPS7 latter @CAPS6 we went for our walk i asked him about it. I simply said ""@CAPS4 did your mood change @CAPS6 i began to laugh?"" @CAPS5 smiled and replied ""@CAPS6 you laugh i feel calm and know that i am going to be alright."" @CAPS7 myself being a typical teen girl i blushed, @CAPS7 quickly changed topics, while trying not to make eye contact. Suddenly i could not help my self. The feeling of his eyes on my cheek was over powering my will to not look. Turning my head slowly, sure enough there @CAPS5 was starring straight back in to my eyes, his eyes were wonderful they reminded me of sunflowers with a blue sky behind them. As @CAPS5 stared back i got a feeling as if @CAPS5 were trying to unlock all that i am, and all that i know with his eyes. As if @CAPS5 could see straight to my soul. Quickly I turned away. With a soft and almost beautiful voice @CAPS5 let a little laugh out. This laugh was as sweet to my ears, as nectar is to a hummingbird. The next few days where hard. All i could think about was that walk. People must have thought i was crazy, every time i would remember the walk, each time i would remember his laugh. @CAPS7 let a laugh of my own out. @CAPS7 i realized that laughter plays a big role in every ones life. For me i laugh @CAPS6 I'm with the people i love. For some its watching t.v. that they find amusing, or maybe there kids did some thing rather silly. So silly you had to tell your book club. The point is that laughter is every where. Laughter is never a bad thing in fact it has been proven that laughter has a lot of health benefits. Some people don't get it. Laughter is not some thing to be ashamed of ether, if some one laughs at you just laugh with them. Its not laughter that starts wars. its not laughter that kills people. its people who chose not to fill there lives with the joy of laughter. So here is the goal. laughter can also be very contagious. So try and @CAPS8 a laugh on. Do some thing that @CAPS6 people remember it they will start there own laughs. Laughter-@CAPS8 it on!" 18 20 38 3 3 3 4 4 4 4 4 4 4 4 4 +20918 8 " The benefits of laughter we all understand the benefits of laughter that it is the shortest distance between two people and that many people @CAPS1 we are going to specifically tell you how laughter work in a brotherhood that has alots of good times because of laughter.Well i know for fact that me and my brother have the best time when we are laughingand jokeing around.It seem to that laughter makes us have the best relatioship that brothers can have and we have lots of fun. The next thing we are going to talk about is the power of laughter in a family and in a boy and girlfriend relatioship.The way think it works in a family relatioship is that familys get together and thay talk about the past and laugh about the things thay did when thay were kids.see the power of laughter make familys come alot closer togther.In a relatioship like a boy and girlfriend well here is how i see it.If the boy can't make the girl laugh then the boy should never talk to girl.I know girls thay like to laugh and have a good time with therefriends and there man .So men how to mak a girl laugh so that you can have some fun to and to show that you are not scared to talk to girls ok . well that how i see it lets go on. Well i have talk about a brotherhood,a family,and a boy and girlfriend so lets talk about a friend relatioship now.the way i see it is that people like friends that can make tham laugh and have a good time with.Thats the kined of friends that people want to have and thats the kine of friends that i have and love so much.well lets go on to the last part ok. Well now you see the benefits of laughter in a brotherhood ,a family,a friend ,and a boy and a girlfriendrelatioship .well in the way i see it and in the way i think it work and yes thare are people that @MONTH1 not think the way i do or see it the way i do but that is thare life and this it my life.Well hope you like the way i put the words in my story so by and see you next time. " 14 15 29 3 3 3 3 2 3 3 3 3 3 3 3 +20919 8 " Laughter is a sign of good relationships. To some people it's a sign of personality, sign of love and also a sign showing someone that you care. To me laughter is what makes people so unique. Everybody has a different kind of laugh. For example, when you are a baby @CAPS2 laugh is high pitched. The older you get the lower @CAPS2 laugh becomes, ""like @ORGANIZATION1 @ORGANIZATION1"". If it was not for his laugh would not be who he is. When I was a child I remember trying to laugh like just like @ORGANIZATION1 did. I would be walking around the house trying to get my laugh really @CAPS1. My family though it was the best thing ever. They would ask me to laugh like @ORGANIZATION1 @ORGANIZATION1 so they can get a laugh also. Now today my laugh is what I wanted it to be, ""@CAPS1"". It is hard for me to laugh quietly now. I have had some people tell me things like; ""@CAPS2 laugh is what I will remember you by"" or ""@CAPS2 laugh is really something else"". I love my laugh because it is part of who I am. With out laughter you, me, or anybody else wont be they are now. Laughter is one way to show emotion. So go ahead and try different kinds of laughs. No matter what you can not change the one you were meant to have." 15 19 34 3 3 3 3 3 3 3 4 4 4 4 4 +20920 8 " In my storie I am going to tell you about a funny time in my life where me, and my brother liked to pull pranks on my aunt. @CAPS1 first paragraph is about the first prank that we pulled on my aunt. when i was about six and my brother was four and my aunt had just bought a beautiful purple suade couch, she loved @CAPS1 couch, and me and my brother at the time thought that my aunt had loved @CAPS1 couch more then she loved us. So me and my little brother took two jugs of chocolate syrup, and poor them all over my aunts brand new three thousand dollar couch. The second prank was just myself, and one day i was playing video games and my aunt was getting ready for work. I was getting very frustrated with the game and i threw my controller down, man my aunt ran over and pop me in the back of my head so fast,and she told me to be a good sport and try it again. But i was upset because i just got popped in the back of my head so i was looking for some revenge, when my aunts goes into the bathroom to go put in her make-@CAPS3 for work, I go into the kitchen and get a grape soda, I walk over to my aunts purse crack open the grape soda and poor it all over the inside of my aunts purse. The last paragraph is about the worst prank that me and my little brother have ever pulled. One morning when my aunt was at work and my dad was sleep, me and my little brother were sitting on the couch watching television and my little brother says that he has to go to the bathroom and knowing us kids we do everything together so me and my brother go @CAPS3 stairs to the bathroom, and we see the biggest box of fifty-four rolls of soft, lushes toilet paper.Me and my little brother love toilet paper rolls for whatever reason, so we open the box and my brother drops one in the toilet, so I put one in the toilet, then he puts another one in the toilet, then i flush it. Little did we know that it would back fire at us and the toilet started to over flow, but i kept flushing. Then i get another roll and start unwrapping it all over the floor, the my brother gets one and @DATE1 we are knees deep in toilet paper and water. Then our aunt walks through the front door, we don't here her because we are having so much fun in toilet paper and water, then she comes @CAPS3 stairs, goes to the bathroom too see me and my brother and a bathroom thrashed, full of toilet paper and water. But the only thing that she says to us is. CLEAN @CAPS1 @CAPS2 @CAPS3 @CAPS4! She slams the door then me and my brother look at eachother then start cleaning. Then finally after hours of cleaning the bathroom is back to the way it should be. @CAPS1 is the conclusion of my storie about the three worst pranks that me and my little brother have pulled on our aunt. " 17 15 32 4 3 4 3 4 3 3 3 4 3 3 3 +20921 8 " Being with family and friends during a memorable trip always seems to spark a smile. There are always times to look back on; whether they are fond memories, or thoughts of nostalgia. I was about to graduate, and my parents had just broke the news to me that we were going on a trip to @LOCATION1 after the year was finished. We had the date set; @DATE1, right after school was over. The first reaction out of my mouth was filled with entreatment, wishing for my best friend to join us on this trip. My parents took the time and thoughtfully considered all the advantages and disadvantages, and rapidly responded in the affirmative. I was thrilled to know that the memories I was about to create with my closest family members were now to include my best friend. First thing was first, I had to get down to business. I needed to call my friend, @PERSON1, and ask her if she'd like to come along. Selfishly assuming that her immediate response would be an exuberant ""@CAPS1!,"" I was @CAPS4 first devastated when she postponed her response and didn'@CAPS6 seem too excited. I didn'@CAPS6 consider the fact that there @MONTH1 have been some sort of miscommunication. She talked it over with her mother, and gave me a call back. I had made the mistake of not telling her that we would have her financially covered for airfare, dining, and hotel rooms. We cleared everything up, and they decided she @CAPS3 join us. The two of us together couldn'@CAPS6 have been more ecstatic if we tried! @PERSON1 and I made a countdown board that started around two months from our departure date. There were many factors that we would take into hand while planning. As we measured out exactly how much time we had, we also planned which landmarks, resorts, and shops we would visit. Our family friend lived in @LOCATION1 @CAPS4 the time, so she gave us a tour of the island. Having such a close acquaintance to guide us made the trip even more fun. She knew all the local hangout spots, and had access to the military beaches because she works in @ORGANIZATION1! Many humorous occurrences happened often while we were on that vacation, but some of the most memorable moments happened in the hotel while I was with @PERSON1 and my mother. My mom has always had a way to make every situation hilarious, so it was a blast when we went out on a girls night. First, and most significant of our adventures, we went shopping in the mall that was attached to our hotel. There was an abundance of varied small clothing stores, food shops, and jewelry outlets. One of our favorite stores that we visited was a @CAPS6-shirt shop with chocolate infused fabrics! We spent so much time looking @CAPS4 all of the designs, that I think we ended up carrying a wave of cocoa with us for the rest of the night. As soon as we finished our shopping quest in the town center, we worked our way back up to the room, laughing and involved in pointless girl talk. The three of us girls shuffled with smiles, sore feet, and new bags onto the elegant, ornately designed golden elevator. My mother pushed the button to take us to our floor, while @PERSON1 carried on a story about plans we had the night before. Absorbed in conversation, we hauled our new things down the long hallway to our room. Realizing that we didn'@CAPS6 have a key card to open our room's door, the three of us decided that we should just knock on the door and my father would answer. ""@CAPS2 was supposed to be back from renting our surf boards by now, so why isn'@CAPS6 @CAPS2 answering?"" we thought, ""@CAPS3 @CAPS2 still be out on the beach?"" @CAPS4 this point our conversation died down a bit as we tried to figure out what to do. I sent a message to my dad's cell phone, and @CAPS2 said @CAPS2 was in the room. We ended up pounding on the door for a good five minutes, assuming @CAPS2 was playing a joke on us by not answering. After waiting a few moments in confused silence, I began to notice a low buzzing voice coming from inside the room. I turned to my mother and best friend, and @CAPS3 barely keep from laughing. It was then that it hit me, and I said to both of them, ""@CAPS5 guys! We didn'@CAPS6 leave a @CAPS6.V. on!"" We immediately halted our intrusion, moved as quickly as we @CAPS3 away from the door, and continued to howl with laughter. My mother had hit the wrong floor button on the elevator! We were so absorbed in having a good time that we didn'@CAPS6 even realize we were bothering someone, and embarassing ourselves! It wasn'@CAPS6 just one moment or one trip, it is now a lifetime of joy because I can look back on those memories and smile @CAPS4 them. It's these moments that I treasure the most." 23 20 43 4 4 5 5 5 5 4 4 4 4 4 4 +20922 8 " Emotions are an essential part of life. Some emotions bring tears and laughter, which alone are two powerful and essential things to life. There was a time not too long ago that I was able to turn a girl's tears to laughter and made her day a little better.It all starts with the craze of today's teenage world, ""@CAPS1"". Which to those who don't know, it is a website where teens spend quite a lot of time on, and people can comunicate through this website. I log in and see that this girl I like is also signed in, so I start talking to her. The normal teenage conversation of, ""@CAPS2, whats up?"" that sort of thing happens, and then she asks if I am able to hang out. Now, tell me if I'm wrong, but most guys would go hang out if its a girl they like. I went to meet up with her at the library and as always, she was beautiful, even though I doubt she was trying. As I got closer to her, she seemed upset, yet when I asked what was bothering her, she did not wish to tell me. I didn't want to make things worse, so I left it alone. All I could thing about was what could I do to make her happy, so I started talking about the craziest things, not knowing if it would help or not. To my luck, it actually helped, and she started smiling. After a little while, I had her laughing and having a good time. Since that day, we have been dating, and are really happy, and everyday when I see her I say something random to make her smile." 20 17 37 4 4 4 4 4 4 3 3 4 4 3 4 +20923 8 " The Element of @CAPS1 and Laughter Laughter is an important element that a person could ever have when they are in a joyful or happy mood. Laughing is a good part in a persons life; it shows other people when you appreciate something that they did that put you in a good enough mood to share a laugh. Some people react in different ways when it comes to laughter because of their emotions; other people laugh to hilarious jokes and other types of people laugh at peoples accidents while others don't. Emotions are a big deal in a persons life. Some emotions are joy, sorrow, jealousy, fear or anger. Being happy makes people want to laugh at something. Sometimes when people laugh too much, they will actually start crying from it. People like other people @CAPS4 are in a happy or joyful mood, because then they can receive those good feelings as well; therefore, it makes other people happy to get more people to be in a positive attitude as well. Another thing that makes people laugh are jokes. Some jokes can be very funny, other jokes can be gross, and some jokes can be really hilarious that you will always remember them. But jokes can get complicated at times; to a little kid you can say, ""@CAPS2, @CAPS2!"" ""@CAPS4's there?"" ""@CAPS5."" ""@CAPS5 @CAPS4?"" ""@CAPS5 @CAPS4?, don't cry about it, it was just a joke,"" and the kid would be laughing. But to someone @CAPS4 is older, you have to think a little more to get them to laugh. People love laughter; they like laughing at peoples jokes and especially at hilarious pranks. Sometimes pranks really aren't that funny. Like you seeing a friend of yours get something that spits out garlic and them knowing that the person that is about to get pranked is alergic to garlic. But most of the time, funny things help people cheer up when they are down. Furthermore, accidents are some things that can be really horrible at some times, but at other times, some of the accidents that occur in life can be very hilarious to some people. Some accidents people can decide whether to take it one way or the other. For example, a person might think that another person that is about to jump off of a diving board, but then slips and hits his back on the board is really funny and another person could disagree with that and take it in the opposite way and think that it was not funny at all. It is like when someone says that they a really funny joke or something hilarious to say, and you end up thinking that it was something that was bothersome or a tragedy or it could also be the other way around. You might think that you have something funny to say, but then to your friend it was something that really bothered them or something that they thought that wasn't funny at all. In other words, laughter is an important element that a person could ever have in their life. It is a part that a person can help another person when someone needs a good laugh to share with another person. Enjoy having good times with friends to share a couple of laughs, don't just be in a grumpy mood all the time, be happy. Laughter is a good thing; people love it so don't always be serious and at least share some laughs with your friends or loved ones." 13 19 34 34 3 2 3 2 2 3 3 4 3 4 4 4 3 4 3 3 4 3 +20924 8 "Laughter Laughter can make a situation less uncomfortable, bring two people together or just show your having a good time. In my experiences laughter comes at the best of times. On a typical @ORGANIZATION1 day at @ORGANIZATION1 I was sitting with my friends at lunch time just hanging out talking about whats going on in our lives, when I notice a girl sitting all alone. I don't recognize her, she must be a new student. I ask around to see if anyone knows anything about her; no one knows. Looking back at the girl she looks very lonely and in need of a friend. Curious to meet someone new I walk over to her and make conversation after a little while we relax and start to talk about our interests. I remember her saying something funny and I started to laugh, she begins to laugh at my laugh being as its almost hysterical sounding and everyone thinks it sounds ridiculous. At that moment as were sitting there laughing together I realize, its bringing us together making us closer despite the fact we had just met but ten minutes ago. Laughter makes life more enjoyable and happy knowing that you can share that with someone you have just met or someone you have known your whole life is magical. Its a universal language that everyone should speak. Laughing is healthy and good for the heart." 15 14 29 3 3 3 3 3 3 3 2 3 3 3 3 +20925 8 " There was this time during @CAPS1 vacation, and their was a lot of snow o n the ground. My cousin @CAPS2, brother @CAPS3 and I were all getting together and going to go out to my grandparents. My brother @CAPS3 lives in @LOCATION2 and my cousin @CAPS2, and I live here in @LOCATION1. So it wasn't that hard trying to get us cousins all together. We were all getting together to go out to my grandparents and go snowmobiling together and stay the night out their for a couple of nights. When all got together, and were starting to go out there it was getting to late to go snowmobiling. We were all very kind of sad but it was okay. We just watched movies off direct @LOCATION3, and waited for the morning to come. Once morning came of course it was way to cold to go out right when we woke up. So we made a big breakfast and after breakfast we all got ready and than sat around until it was warmer to go outside. Finally it was the afternoon! We all got dressed into warm clothes to go out an go snowmobiling. We all went outside and my grandpa had one of the snowmobiles ready for us and behind it was the hood of a truck so he could pull us from behind with it. My grandpa was driving the snowmobile and us kids were in the back. My grandma only went one once with us and than she got off because my grandpa was going way to crazy n we were all getting hit by each other when he was driving. Then once us kids were the only ones on the hood by grandpa was starting to go really fast! I was the only one who was covered in snow, and i looked like a snowman. It was so funny! My grandpa went running inside to get my grandpas camera so she could take some pictures. It took her awhile to take them though because she is not that good or fast at taking pictures. Then when she was done we went back to snowmobiling for the rest of the day. After we got all done for the day I than really looked like a snowman. It was a fun day, and very funny how I looked as a snowman, but afterwords I got really cold. We went inside and I went right in front of the heater to warm up while my grandma was making hot chocolate for all of us." 18 12 30 30 3 3 4 4 4 4 3 3 3 3 2 2 3 3 4 4 3 3 +20926 8 " We were heading to our first ski race. On either side of me, my friends @CAPS1 and @PERSON1 sat, crammed together in our team van. Our packed bags and ski gear filled the vehicle to the top, along with six other kids, occupying all of the other empty spaces. Our uncomfortable seating arrangements didn't seem to ruin our fun, within five minutes of our road trip, the van exploded with laughter, as @PERSON1, most likely a future comedian started off cracking jokes, just being himself as usual. Within those first five minutes of our drive, I could already tell that this was going to be a ski trip I would always remember. The van rolled up to the hotel parking lot. My ski team would be lodging here for the long weekend. The sky had turned black with the @TIME1, and me along with everyone else trudged along with weary eyes, exhausted from the long drive. We quickly unloaded our bags, all eager to hop into our beds, needing to be well rested for our first ski race of the season. Shortly after, everyone was soon in bed, knowing that five a.m. would be coming quickly. The sun began rising over the mountains, signaling time to wake up. This was not the case for me. I had been up for nearly an hour, and sat in our van while we sped around each corner up to the mountain. It was race day, and me, along with all of my teammates were all excited for the day coming. The morning flew by, collecting our bibs at registration, getting our lift tickets, and inspection of the course. I now stood at the top of the hill peering down at the course ahead of me. I had to focus. While I have had a lot of fun, it was time to concentrate, to preform my absolute best. The pressure was on. I now stood in the start gate, my coach stood by my side, and my friends were watching as well, cheering me on. I was hoping not to disappoint. ""@CAPS2 ready,"" the official began in a tense voice, ""@CAPS3!"" I threw my self our of the start gate. I flew by each gate, staying in control and most important, going fast. The wind slid past my aerodynamic body, my ankles and knees rolled with each turn. Everything was going well until I broke over the knoll. My body compressed bringing my knees to my chest, as I skied over the roller, throwing me off balance. I fought to get back up, to regain myself, but I couldn't do it. My skis spun out from under me, causing me to be spit out from the course, landing on my back, sliding down the mountain, hopeless and done for. It was over. I sat in the snow frustrated with my performance. I wanted a second chance that I wasn't going to get. @PERSON1, one of my teammates, came up to me and sat in the snow by my side. My first thought was he was going to say something of a cliche ""nice job,"" or a ""you'll do better next time"". To my surprise he tells me one of his ridiculous jokes. My mouth turns up, trying to contain a laugh, unsuccessful, I burst into laughter. @PERSON1 sits there and smiles at me. Almost immediately I found myself in a better mood. I give him a quick ""thanks,"" with a smile before we both @CAPS3 to watch and cheer on our teammates. Although I didn't do my best, I didn't let my results ruin my weekend. The next day, I skied two solid runs with top finishes, if I had stayed upset with myself, I would have never been able to achieve those results. I came to realize that some days, just a small laugh can be all you need to turn any day around. Laughter, I have found is essential in any situation. It's a connection that can bring anyone closer. For me, laughter changed my personality that day on the mountain. Laughter can mean many different things for many different people, laughter could be a special bond between to people. Laughter can remove the seriousness or competitively in a situation, but also it unites us. Languages are different among people, but everyone understands a what a laugh can do, a laugh is universal." 24 23 47 4 5 4 4 5 5 5 4 5 5 4 5 +20927 8 " The @CAPS1 of Laughter Laughter seems to be almost the basis of ones relationship with friends, with no laughter, there is no spark of interest of wanting to be someones friend. When I think of laughter, I think of the times when I go to @ORGANIZATION1. Even @CAPS2 I have had the most horrible day, I know that the girls I play with on that team, who are like a second family to me, can always cheer me up by the things they say or do. The underlying relationship between a @ORGANIZATION1 team becomes unknown to the outside; no one really knows how much we laugh together, or how much frustration builds up between us. Frustration @MONTH1 get the best of us sometimes but I can think of a lot more memories where I was laying on the turf field laughing because a dumb decision of a player, turns into on of the funniest things I've ever seen. I remember the first time I had a @ORGANIZATION1 practice, back in @DATE1 of second grade, I was playing with many girls who had gone to a different school and I had never seen before. All of the girls decided that they wanted to see who was the best at juggling a @ORGANIZATION1 ball on there knees. It came my turn to try, and as i went to bump it with my knee, it hit in the wrong spot so it came back up and hit me in the nose, leaving it bloody. I had no idea how to react, so I started to laugh. At the time, a girl I had never seen before started to laugh with me, and came up and gave me a tissue. Believe it or not the girl who gave me a tissue that first day became my best friend, and has been ever since. The laughter that occurred that day filled the gap of distance between us. Since that day we have never had an awkward silence wondering what we should say or do. Entering the fall of fourth grade, I had just joined the @ORGANIZATION1 team @ORGANIZATION1, still playing with the same girls, with the exception of a few people. I had no idea what to think of those people or what to say, so i decided on not saying anything. We had been playing monkey in the middle and I was guarding a short blond girl named @CAPS3, who had extremely good talents but was a little clumsy. She had started to run for the ball, and low and behold the clumsy girl tripped on nothing! Thoughts were racing through my mind; should I laugh? Will she hate me @CAPS2 I do? What @CAPS2 she's actually hurt? Though these thoughts @MONTH1 become reality, I went with my instinct and burst with laughter. She rolled over to see who had starting laughing at her accidental trip, and started laughing as well. After the incident, we got up and started talking, realizing we had gone to the same school but never associated with one another. From that day on we became inseparable at school, and became best friends. The next story has nothing to do with @ORGANIZATION1, but everything to do with laughter. Though there is no certain story that I could tell you in particular that happened between this girl and I, all I can say is she is the one who gave me the first experience of laughing until you cry. I remember her moving to our school, and I was no longer the ""new girl"". At first, I thought she was the weirdest person that I had ever met, but as time progressed I had come to find out that she @MONTH1 be one of the funniest people I have ever met. @CAPS2 I would have made the realization beforehand that this girl had the personality she did, I would have went up to her in a heartbeat and made friends, instead of hiding behind the crowd. Ever since we became friends our friendship has been based upon how much we laugh together, and I wouldn't have it an other way. In the end the person who once said, ""Laughter is the shortest distance between two people"", was absolutely correct. I used these stories above to show no matter how shy, or awkward a person @MONTH1 be, sharing a laugh with a new person is the easiest way to find a best friend. When I was introduced to laughter by these three people, I started to become more social throughout my middle school years, and now onto my high school career as well. @CAPS2 I lived a life without laughter, I would lose the life I have, and it would be filled with dull memories that are not worth sharing, and to me, that is definitely not worth it. Over the past six years, I have gained three best friends due to laughter, this really does go to show that laughter is the shortest distance between two people, and is truly a @CAPS1 to have it." 20 16 36 4 4 4 4 4 4 4 3 4 3 3 3 +20928 8 " Laughter is a daily part of my life. I'm always laughing in school or at home. With laughter you can show many emotions that can't be told with words. To me, it's also a way of showing how fortunate your life is. I've had numerous occasions where laughter was the solution to my problem. I also agree that laughter is an important part of a relationship. In then next paragraphs, I am going to talk about how laughter affects my relationship and the benefits it brings to it as well. Approximately three months ago my family and I decided to take a trip to @LOCATION2. We planned to stay there for a month or so. When I told my boyfriend that I'd be gone for a month, right away I saw the sadness in his eyes. This truly killed me however, our decision was made and there was no turning back. Our relation was tense during that month. We talked a few times but his voice was different. There was a sadness to it and I knew something was wrong. Although he said everything was good I knew his sadness was due to my absence. After the month had finally ended it was time to come back to @LOCATION3! I was truly excited. We arrived at @LOCATION4, @LOCATION1 at @TIME1 on a @DATE1 @TIME2. I immediately called him but there was no chance of seeing him that same @TIME2. Although, just knowing that I was closer to him made me happy and anxious. We conversed for endless hours, telling each other that we would never be that far again. We laughed and laughed during our whole conversation. To me the sound of his laughter was a sign of his happiness and that was just priceless. The laughter was as if it had been a blessing to our relation. From that day on forward, I realized how much laughter really affects me in numerous ways. It's as if it brings happiness and prosperity to my life. With just a laugh sadness leaves and that's when happiness jumps in." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20929 8 " A couple of months ago i was hanging out with my freind @CAPS1. It was a @DATE1 and i came to her to spend the @TIME1.At first we were extreamly bored so we went on a walk to go find something to do.We found our friend dylan at the skatepark and we stopped to talk to him for a while. After we had hung out there for about two hours we headed back up to her house.When we opened the door her sister started freaking out because we left so she got stucked with there younger brother @PERSON1. @CAPS1 didn't yell back, she didn't want the drama. Her sister got even more mad because jesssika was not showing a reaction to what her sister was doing. By ten minutes she exploded and started throwing herself around and freaking out. Me and @CAPS1 looked at each other and stated laughing really reallyhard because how funny her sister looked. @TIME1 after her mom had calmed the sistuation down, @CAPS1 and I made a @CAPS3 bed on her bedroom floor and when we were falling asleep we bothbursted out in laughter it was the funnest @TIME1 i have had in a long time. (:" 13 16 29 2 2 3 3 3 3 3 3 4 4 4 3 +20930 8 " Living, @CAPS1 @CAPS2 @CAPS3 Laughter @CAPS4 to this @DATE1 I don't remember exactly why I was laughing. All I can remember, vividly, in my mind is the look on my grandfathers face. He had on the same smile he always wore during times of joy. It was a wide warm grin he would shine your way every so often. As I laughed uncontrollably that @DATE1, so many years ago, he shined his happiness @CAPS1 love down on me for so long that I will never forget a single wrinkle in his grin. My @CAPS16, who we all called @CAPS5, had a way of keeping the peace @CAPS1 happiness in everything. No matter how bad things were within our family, he would always make things right. No one could get angry @CAPS3 @CAPS5, @CAPS1 no one could stay sad when he smiled. That's just the kind of guy he was. @CAPS5 was a big part of our family gatherings, just like the one we had on my @DATE1 @DATE1 @CAPS3 @CAPS5. That @DATE1 was our family's @DATE1 @CAPS8 @CAPS3 @CAPS5, soon after, he passed away. When I look back @CAPS1 realize how important that @DATE1 was I can see that it was a perfect @CAPS8 for everyone. It was a happy @DATE1 @CAPS1 my @DATE1 memories of my @CAPS16 were of his great big happy grin shining down on me while I giggled away during a card game. When that @CAPS8 kicked off, in the early morning, the weather was already proving to be spectacular. Every one in my family was in high spirits @CAPS1 was ready to enjoy the @DATE1 @CAPS3 family. My favorite activity during each @CAPS1 every family event is to play my favorite games @CAPS3 everyone. Our family has a few specific games that are a tradition during family gatherings. One of our favorites is called @CAPS12-@CAPS13. Now @CAPS12-@CAPS13 was one of the many games that my @CAPS16 was very good at playing. He rarely ever lost a game, @CAPS1 would not finish playing until he had won at least once. So when everyone was assembled at our house, I convinced @CAPS5 @CAPS1 my cousin @PERSON1 to play @CAPS12-@CAPS13 @CAPS3 me. We went into the spare room @CAPS1 starting dealing out the cards. About a half an hour later we were still playing, @CAPS1 to no ones surprise, @CAPS5 was winning. It was just before the food was ready @CAPS1 we were about halfway through the game when either my cousin @PERSON1, or @CAPS5 said something to me that I thought was the funniest thing my tiny @NUM1 year old ears had ever heard, @CAPS1 I began to laugh. My family was so thoroughly entertained @CAPS3 my laughter that they could not keep their smiles @CAPS1 laughter tucked away without bursting into giggles as bad as mine. It seemed that my senseless laughing created instant joy to my family, including my @CAPS16. @CAPS5' smile was one of the greatest things my little eyes looked up at during my childhood. It was something so imaginary, yet so colorful @CAPS1 vivid in front of me,that I would worship his smile like I was seeing my first solar eclipse. I never quite understood, at such a young age what was so fascinating about his smile, but now I do understand. @CAPS5' smile showed true, wholesome, unbreakable joy. His smile didn't come out all too often so when it did, you knew something good was happening. No one knew that was our @DATE1 @CAPS8 @CAPS3 @CAPS5. I most certainly could not imagine it to be the @DATE1 I would spend @CAPS3 my @CAPS16. Everything was so perfect @CAPS1 so increasingly happy, it seemed to be a crime to end his life during such a time of joy. Although if I were him, @CAPS1 if I had to choose my @DATE1 @CAPS8, that @DATE1 would be perfect. My single memory of that @DATE1 was laughing, @CAPS1 being happy. I can't think of any better way to spend my @DATE1 bit a time @CAPS3 @CAPS5 then a @DATE1 where we were both completely satisfied in our card game, laughter, @CAPS1 smiles. Laughter is a funny thing. It is unique in every person, @CAPS1 can range from any kind of humor to pure happiness. Laughter brings hope in times of doubt @CAPS1 never fails to make someone smile. Someone, somewhere started a quote that says, ""@CAPS25. Laugh. Love."" I believe those three words can combine together, @CAPS1 act separately to sum up a perfect life for anyone willing to @CAPS25 out the true, meaningful definition of each of those words. Laughter brings smiles of happiness, humor, @CAPS1 love. Love brings us all together, @CAPS1 when we strive to be happy @CAPS1 to love, that is when we can truly @CAPS25. My grandfather loved each @CAPS1 every one of his family @CAPS1 friends @CAPS1 made a priority of keeping them happy. He lived his life the best way that I believe anyone could ever @CAPS25 it. He died after a life full of love happiness @CAPS1, most importantly, the very special gift of laughter. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20931 8 " Some people say that laughter is good for the soul, and that could be true, but the soul is definitely not the only thing. Laughing is great for your heart and mind too. It can improve relationships, make friendships grow stronger, and even start @CAPS5 make two people who don't know anything about each other, extremely close. You can meet someone new or be with someone you barely know, and just because they make you laugh you feel like you want @CAPS5 get @CAPS5 know them better. I love that feeling. Honestly, you can laugh with any age or gender. You don't both have @CAPS5 be @NUM1 and female, you could be with a little boy, an elderly lady, or anywhere in between and still have a lot of fun. Last @DATE1 I never had anything @CAPS5 do, so I decided I should start volunteering places. The two places I could volunteer at were: a daycare next @CAPS5 my house, or an old folks home about @NUM2 miles away. I thought really hard about it, trying @CAPS5 make the best decision for me. I couldn't make up my mind, and even though I didn't admit it, I felt like they would be just as boring as sitting at home. I finally decided I should do both of them, so I could meet some new people, and have new experiences. I started with the daycare. I woke up at @NUM3 am, and walked @CAPS5 @ORGANIZATION1. I wasn't sure what it was going @CAPS5 be like at all. I didn't even know if i was good with kids. I walked in, and stood @CAPS3 awkwardly. The @ORGANIZATION1 manager came up @CAPS5 me and asked me if i could help out with the @NUM4 year old's coloring room. I nodded my head nervously. Was i supposed @CAPS5 color for them? @CAPS3's no way they could color a picture by themselves. They're only three! I thought. Oh well, if i follow directions then this day will get @CAPS2 faster. When i went in @CAPS3 all the kids ran up @CAPS5 me with a smile on their face. ""@CAPS1 by me!"" one said. ""@CAPS2 here!"" said another. ""@CAPS3's a spot right here!"" ""@CAPS4 at my picture!"" ""I drew a rainbow!"" ""I drew a car!"" ""I drew you!"" @CAPS5 that, i looked down. @CAPS3 i was, on the piece of paper. A bunch of blue and green scribbles. That day was a lot of fun. I was laughing and having a great time with the kids. I learned that i absolutely adore kids, and I'm actually pretty good with them. The next week a went @CAPS5 the nursing home. I was even more nervous @CAPS3. I felt so out of place. I hadn't found out what I was going @CAPS5 be helping with yet, so I sat on a chair in the lobby. When the receptionist asked who i was her @CAPS5 see, i said nobody. She then asked me why I was here, and I replied, oh, I was going @CAPS5 volunteer. She led me down the hall told me that it was almost time for lunch so i needed @CAPS5 get ready @CAPS5 serve lunch. I did, and then the i heard, what i assumed was, the lunch bell. I gave everyone their lunch with a big smile and it was honestly great. If one of them looked a little down, or upset I could flash them a smile and they would grin back, obviously in higher spirits than before. After lunch, I played a few games of chess. Most people who were @CAPS3 took naps after lunch, so @CAPS3 were only three people out @CAPS3. I played first with a lady who used @CAPS5 be a nurse. I got @CAPS5 know her pretty well in the half hour we played the game; which i won. Next was a guy who was a veteran. He fought in the @LOCATION1 war. He seemed really nice, but serious. I won that game too. The last man used @CAPS5 be a comedian. He was so funny. He told jokes the whole game! Maybe he said a few @CAPS5 many, because he beat me at chess. Well that was my excuse. When i got done, i was in a great mod and i could't wait @CAPS5 come back again. I learned a lot that @DATE1. I found out everyone is alike in some ways, even though each person is unique. I realized you don't have @CAPS5 be the same as the person your with, @CAPS5 laugh and have a good time. It doesn't matter what age, race, gender, size, mentality, maturity, etc. The only thing that matters is that you are in the same place at the same time, trying @CAPS5 make the best of your day. I am so glad i decided @CAPS5 volunteer, otherwise i would have never known so much about people, love, life, and laughter." 20 21 41 4 4 4 4 4 4 5 4 5 4 4 4 +20932 8 " Looking back on my early childhood, one thing that stands out bright and shiny in my memory is laughter. Since birth, I have always loved to smile and laugh. I've found a kind of comfort, peace, and confidence through laughter alone, which I doubt I would have been able to find somewhere else naturally. This could, in part, be because of my @CAPS1. We rarely get to see each other because he lives in @LOCATION2 and I live in @LOCATION3, but when we do have the luxury of spending time together, it is always full of laughter, and full of joy. I credit him for giving my my love for laughter. I've been told by my parents that as a baby all my @CAPS1 had to do was laugh, and my eyes brightened and a smile became apparent as wide as the @LOCATION1 on my face. It's been that way ever since. One of my earliest memories I have is laying on my parent's bed listening to my @CAPS1 tell me jokes. Every time he finished I would erupt in laughter, and, at the sight of me laughing, he would burst out too. The important detail to note is, when my @CAPS1 laughs, his belly shakes violently like @ORGANIZATION1. I found this the greatest part of the jokes. Once his belly started bouncing up and down, my laughter became uncontrollable. Our laughter escalated until tears were streaming down our faces. Besides having a belly that bounces when he laughs, my @CAPS1 has one of the most distinctive and contagious laughs one has ever been lucky enough to hear. It's one of those fabulous and enriching laughs which words do not do justice, but once you hear it, you won't ever forget it. His laughter can light up the darkest room in a house. For me, his laugh almost has medicinal healing. Whenever I hear my @CAPS1 laugh, for just a moment, the world stops, and everything within is okay. I am not the only one who has a great appreciation for my @CAPS1's laugh. My father and him both have a love for telling jokes, which I have observed over the years, is one of the few items they hold a common agreement on. Everything from politics, to religion, to who should pay for dinner, usually ends in an argument between them. Because of that, they tend to stay clear of those topics for fear of confrontation. They have never mentioned this, but from my observation over the years, I've come to the conclusion that the laughter they share so often, acts as the glue which keeps their relationship strong. Were it not for laughter, I sometimes wonder if they would still have a working, loving relationship. I will forever be thankful for the great gift my @CAPS1 unknowingly gave me at such a young age. He created a deep and passionate love for laughter inside me, which has gotten me through the roughest times. I truly believe that laughter heals the soul and that when two people share a laugh, they are bonded for a moment in a precious, fragile, and sacred way. My day can be going horribly, and in the instant that a joke is cracked, and laughter overwhelms my body, everything brightens and the worries and stresses of my day seem so minute. Finding humor in every situation is another lesson that my @CAPS1 taught me. If you can find humor, you can find serenity in the most disastrous moments. Laughter, to me, is somewhat like a drug. It's a harmless, enriching, and life-saving drug which I can proudly say I hope to be addicted to for the rest of my life, thanks to my @CAPS1." 20 20 40 4 4 5 4 4 4 4 4 4 4 4 4 +20933 8 "Laughter is such a marvelous element to have in any relationship. For instance if you can't find any form of humor in a relationship than I'm pretty sure there is no strong connection between the two of you. For example I was in a relationship once where we didn't have that element of humor, and I truthfully did not enjoy that relationship that her and I had. Any type of relationship needs laughter rather its friendships, boyfriend or girlfriends, and even family. All different types of relationships need some form of humor to survive. Sometimes families don't have that humor for each other but they'll still have that special type of a friendship, the reason for that I believe is because your family will always be there for you unlike most friends would. One way I know this because one of my friends really liked a guy, I could have sworn she @MONTH1 have even loved him, when he told her that he started dating some girl, she had cried for weeks, than when she was at her moms house one of her brothers she believed hated her said he wants to hurt the guy that had made his younger sister cry. They @MONTH1 not of had a humorous friendship, or even a friendship at all, but I believe laughter isn't necessarily always needed especially within family. All types of relationships are like plants, the flower is the relationship and laughter is the water that will help the relationship grow big and strong. But without that water the plant wont grow, just like laughter in a relationship. I know that if I knew someone who I did not find to be humorous I know our friendship would not be very strong, unlike someone who I felt was hilarious. Laughter is always a important element in everyday life. For instance if you are going for a job interview you really need to connect with the person interviewing you and make a good impression for yourself. One way of doing that is through laughter, I have heard of many stories about job interviews, a example of one is my mom had a interview not to long ago for a @CAPS1 job and she told me about her interview and she said they had really connected. Their was also some seriousness and some laughter in that interview than three days later they emailed her and told her that she got the job and that they would love to hire her. and I have heard of interviews where they didn't get the job. My sister had a interview once for a pet kennel type of place where they drop their pets off there while they go on vacation, and she said that her and the person interviewing her had no connection which had led to no humor or laughter. So I believe humor is such a marvelous element to have within a relationship because with laughter comes greatness and happiness." 17 15 32 3 3 3 3 3 4 3 3 4 4 3 3 +20935 8 " Laughter is key. You never really think about laughter in importance, but the truth is, laughing brings the most opposite people together. Last year, I met one of my brothers friends in school. We never really talked but she seemed nice. We had a class together and we started talking more and more everyday and she was best friends with my best friend. @PERSON1 was her name and she drove a bright orange @ORGANIZATION1. We hung out after school one day and I leaned the passenger seat all the way back and was sitting on it like a dog and she slammed on the brakes and I flew into the front of the vehicle and I couldn't stop laughing. At that moment I knew we were going to be friends. I was a freshman so I didn't really know anyone and she was always nice to everyone so we started hanging out more. I lived about @NUM1 miles out of town and her brothers went to school about @NUM2 miles past my house so we had to go pick them up. We bought a game called '@CAPS1 @CAPS2' and there are tons of little jellbeans that were flavored like vomit, centipede, dirt, rotten egg, etc.. So we were playing while we were driving out there and @CAPS3 had to stop the car nearly @NUM3 times in our @NUM4 mile drive! Those were the nastiest beans ever! Then, we would drive out to my house and we'd listen to our favorite country songs and blast them in her car. She was my ultimate best friend and no one could replace her. Whenever we would get in fights we wouldn't start drama, we'd always have an actual fight because by the time one of us were pinned the other was laughing too hard to do anything about it. Her dad and my dad became friends later on too and we would always have barbeque's and family get togethers. We also talked in a @CAPS4 accent all the time because one of our friends was from @LOCATION1. Whenever we went to @CAPS5 to go shopping we'd use our accent and everywhere we went people would ask us where we were from. Before we knew it our dads started talking like us. We also created a bunch of slang words and then the whole school started using them. She is a great friend and she keeps me laughing everyday. Whenever @PERSON1 was having problems with her family she knew she could always talk to me and I would always be there for her. She always called me sister instead of @CAPS6 because we were so close. She used to take @CAPS7 and @CAPS8 classes at my old high school and when she got the fake baby doll it would keep us up late into the @TIME1, that baby was crazy. @PERSON1 would be driving and the baby would start screaming in its car seat and we'd have to pull over and find out what was wrong with it. She'd be a good mom. She always cared for things, even the smallest little thing she would cherish. One time, we painted her little brothers room because we were bored and @PERSON1 was rolling her paintbrush in paint and texting and she took her eye off of her phone and dropped it in the paint. She couldn't find it for like @NUM5 minutes and by the time she did find it it was totally covered in green paint! I laughed at her for so long and those are the moments I wish I could bring back. Everytime we hung out I would laugh and I realize now how important that laughter is to me. About six months ago I moved to a whole different state and I don't see her very often. There is no one like @PERSON1. She could make me laugh and was always just @NUM5 minutes away when I needed something, now I have to drive about @NUM2 hours to even see her. I haven't laughed like she made me ever since I went back to visit. Laughter is key, as I stated before and if you frown, you'll never know who is falling in love with your smile." 20 20 40 4 4 4 4 4 4 4 4 5 4 4 4 +20936 8 " A few years ago, when I was @NUM1, I decided to do an experiment on laughing and the color of the clothes people wear. I realized that I laughed a lot and I was almost always happy because of @CAPS11, I did really @CAPS1 in school, and I also had a very 'up' attitude. @CAPS6 clothes were all very bright and 'happy' colors. I had a theory that the less someone laughed, and the darker colored clothes they wore, would make their mood and attitude would dip. The experiment would last one week, and in that time I would try @CAPS7 to laugh and gradually start wearing darker and darker clothes until I got to black, to see how I would be affected, if affected at all. To get started, I had to first tell everyone what I was doing and ask them to try @CAPS7 to make me laugh on purpose. Then I had to go to the store and get new clothes that had no bright colors on them. That was the hardest part because I saw a lot of cute clothes, but they were too colorful. After that i only had to wait for the @DATE2 to end and @DATE3 to begin. @DATE3 @TIME1 I woke up and did @CAPS6 usual daily routine, then tried on @CAPS6 new clothes. When I got to school, I noticed the surprised looks from @CAPS6 classmates @CAPS2 they took in @CAPS6 outfit. @CAPS11 was pretty tough @CAPS7 to laugh at some of their expressions but I couldn't, because that would ruin what I was trying to accomplish. Throughout the day, I got comments on @CAPS6 clothing, and some of @CAPS6 teachers were worried because I wasn't laughing @CAPS2 usual but when I told them of @CAPS6 experiment, they understood and said, ""@CAPS1 luck."" @CAPS2 the day came to an end, I was satisfied with @CAPS6 success and quickly fell asleep. The next two days went pretty much the same, and I was wondering if @CAPS6 theory would be proven wrong. But on @DATE1 @TIME1 @CAPS6 mom pointed out that I seemed different. ""@CAPS3 @CAPS4 okay?"" she asked. ""@CAPS4 don't seem @CAPS2 energetic @TIME1, and your @CAPS7 smiling at all. Your @CAPS7 sick @CAPS3 @CAPS4?"" I told her that I was fine. At school, I was asked the same thing, and after a while @CAPS11 got really annoying. I got mad and yelled at them, which I never do, and they apologized. But I felt bad and told them I was sorry and they forgave me, telling me @CAPS11 was probably just the experiment. I got a little happier at the thought that @CAPS6 theory might just be correct. That day went by slowly, and I was glad when @CAPS11 ended. @DATE4 was the last day of @CAPS6 experiment and for that I was happy. I didn't mind the dark clothes and I liked the way they looked on me, but @CAPS11 was hard @CAPS7 laughing, and @CAPS11 was starting to make me feel depressed. That day I decided to wear some of @CAPS6 bright clothes to see if @CAPS11 would change anything, and when I got to school some of @CAPS6 friends didn't recognize me because they got used to seeing me in @CAPS6 other clothes. I didn't feel any different from when I wore @CAPS6 dark clothes. In @CAPS5 I had to stand in front of the class to give @CAPS6 conclusion. ""@CAPS6 theory has been proven semi-correct,"" I stated. ""@CAPS7 laughing did have an effect on @CAPS6 mood and attitude. I was yelling at @CAPS6 friends and feeling sad when I shouldn't have. But I found that wearing dark clothing didn't change anything."" @CAPS6 teacher then said something so funny that I couldn't help but laugh, and everyone applauded and said, ""@CAPS9 back @CAPS10!"" @CAPS11 feels really @CAPS1 to laugh again." 18 20 44 44 4 4 4 4 4 3 4 4 4 4 4 4 5 5 5 4 4 4 +20938 8 " Laughing, laughter.It's every where. Lots of people are laughing right now.Why not laugh though? It's good for you right? It feels good to laugh here an their. Well laughter can make your day great. It can help you get through hard times. It can help you cheer up your best friend to be happy. Well it really don't matter what the reason is, but its good to laugh. Laughing is great for you an it brings fun, joy, an helps you enjoy little more. My mom and I have a great relationship. Every time we are together, or we start talking we will laugh an crack each other up. Laughing has helped us get to having a great relationship were we can tell each other anything. I can go to her any time an ask her for help. I can go an talk to her any time I need to now. Be for we had a great relationship she wasn't doing to good she was involved in not to good of things. She was very depressed too. Ill tell you a little about it. My day started off as a normal school day, I got up got ready, got on thus to school then be for I new it I was on the bus on my way home. I get off a block or two away from my house and then I walk home. I walk and walk, an about ten minutes later I get up to my house. I go to my room an put my bags down on my bed and go say hi to my mom. I walk into her room an shes sitting their in a chair. I had asked her if she wanted to go on a walk. Well of course she said yes.She gets her shoes on an I do the same.We walk down are drive way an that's where the walk starts. We started walking down the road after we got to the end of are drive way. We walked straight for about five minutes, then take a right.We walk that way for about ten minutes an turn left. Their is a little store on that coroner. We stopped their to buy some water an some snacks on the walk. After we get done we start walking east on the road. When I looked back at my mom she look like she was having a really bad day. Like anyone i asked her what was wrong. She talked to me about everything and she seemed really sad, and depressed. From that I knew i need to talk to her an make her laugh. We never had the best relationship because she was always gone hanging out with friends. I knew if i could make her laugh, an help her get better, it would help us get along better an help each other out in the long run. I love my mom an I hate seeing people down. I though all this in my head. Being around me makes everyone laugh. The walk was about three to four miles long. for the rest of the time I got her to laugh an laugh the whole way back. It made her feel a lot better i know that. Later that day she came in my room and we played some bored games and watch a movie or two. We really just talked and hung out for the rest of the day. We went on a couple more walks for the next month or two and we got a good mother an son relationship. We were both happy this had happened. About two months from the first walk w had she came up to me and hugged me and told me thank you for helping her out with what she was going though. I think laughter is a great thing in life. For me it helped me out a lot in life an it helped me save a relationship with my mom. I love laughing, and I love making people laugh it is fun to laugh an fun to make people laugh. Laughter makes great friendships. It can have a lot to do with your life. I hope this helps you laugh more and makes you try to be funny an have people laugh with you. " 15 19 34 3 3 3 3 3 3 3 4 4 3 4 4 +20939 8 " Laughter is just one of those things that doesn't go away very easy. The simplest things can make you laugh or smile the point is happiness is going to be around for a while. My dad laughs, my mom laughs I laugh everybody laughs its a good thing to have. If there was nothing on what to be happy on then people would be in fights and country's in wars. Anger is not something someone wants to deal with all the time; you have to relax every now and then. My parents and I know that happiness is what drives us to good things. That's why we embrace it in our house we like to acknowledge it to my younger siblings. My dad and me have a good relationship as well with my mom we get along well and laugh together. Me and my girlfriend @LOCATION1; we started out in a good relationship but as time went on it was starting to fade. We weren't communicating as well and that's what was driving us apart. We were just ending up in fights all the time and for no reason fighting just seemed to find us all the time. We talked we hung out and we started getting along better laughing at our joke or our constant teasing to one another. We had a good time she said that she liked us laughing and having a good time. I told her that laughing and enjoying ourselves is what brought us together. Laughing is the key to our happiness its what made me and her closer its a main key point to any relationship. If there is no happiness then there is no laughter, and if there is no laughter then how are you suppose to get happiness. They work together and its a good thing to have in life where would we be if we didn't have it. We would all have a grudge and for no reason to have one and just live in black and white all the time." 15 16 31 3 3 3 3 3 3 3 3 4 4 4 3 +20940 8 " A few years back me and my dad were siting at home watching @CAPS1. My little sister and her friend @PERSON1 were running in and out of our apartment. Every time they came inside they repeatedly didn't shut the sliding glass door, finally my sister shut the door but her friend @PERSON1 didn't know, he was running so fast and before he knew it he was going fast first into a sliding glass door! My dad and I were laughing so hard i almost peed myself. After we finally stopped laughing and went to go check on him and he looked really confused about what just happened. We looked at the door and without a doubt it had a slobber mark going up the door as if his face was slid across it. Meanwhile after more laughs and fun things calmed down and we went back to watching @CAPS1. My dad fell asleep and his cat was laying next to him, my dad kind of woke up and looked around after a few minutes he started watching @CAPS1 again. My older brother walked into the room and saw that the cat was sleeping and took an advantage over it and slammed his hands on the chair. It scared the cat and it jumped about two feet into the air, Once again we started laughing really hard but this time my stomach started hurting. @DATE1 on about @DATE1 my dad my bother and I were working in our garage and found an electrical @ORGANIZATION1 starter. My dad told me to hold the metal ends and so i did. He flipped the switch and next thing i know i was being electrocuted. We all started laughing once again. Next it was my brothers turn but he said he wanted to hold the ends and push the button himself, when he did he couldn't let go because his muscles tensed up and left him @CAPS4-able to free himself from a nine volt shock. My dad and I fell to our knees and were almost in tears cause it was so funny. After a few more rounds of shocking ourselves we came up with the idea to put it on our tongues, i tried it first and my tongue started pulsing like a beating heart. My dad couldn't keep himself together long enough to keep holding the button. As a result to all these great funny times we had our @ORGANIZATION1 starter broke, we gave our cat away , and @PERSON1 moved. In better words funny times @MONTH1 be in the past but there always in your memory to bring a smile to our faces.. " 20 14 40 40 4 4 4 4 4 4 3 2 3 3 3 3 4 4 4 4 4 4 +20942 8 "A @ORGANIZATION1 is a wondrous gift. It allows your mind and your body to conjoin with others. It is the root of happiness, and brings a sense of sanity to those who have lost hope. When you feel alone in the world with no one at your side, laughter will be there to accompany you. At one point in my life I felt confused and by myself. I was empty. Solitude was the only thing I could have, and the only feeling my mind would register. Just when I had thought that I @MONTH1 be the only person in the whole world, something had come to save me. I was six years old when they got divorced. I couldn't stand to hear my parents fight. One day we were the perfect family. We would play board games and go to the movies together. Something had changed very quickly. My @CAPS1 grabbed his jacket, told me he loved me and then he was gone. Was I ever going to see him again? Why isn't @CAPS1 living with us? These are questions I kept asking myself. I think i was too young to truly know what was going on. The days were long and I found myself becoming sluggish and glum. About two weeks after my @CAPS1 had left, some neighbors moved into the house adjacent to me and my mom. One of the neighbors looked young, about my age. I didn't think much of the new people in town. I told myself that people come and go. Nothing lasts forever, and I should expect the worst. One day I was riding my bike and thought that I should stop pedaling and crash into my fence. I hit the metal fence and simply fell over. I heard a laugh and turned around. It was the new neighbor kid. There he was rolling on the ground, grabbing at his sides. He must have thought of my crash as entertainment. I picked up my bike, began to move, then crashed once more. Another series of laughs sprang from this boy. That was the first time I had smiled in a long time. I grew fond of whatever feeling or humor I was giving off to this new kid. I asked the boy his name and he didn't respond; though he did start to laugh again. It was my voice that he was laughing at. Everything I did caused him to become hysterical. I found out later that he was from @LOCATION1 and didn't speak a word of @CAPS2. Over the course of a month or so, I felt the hole in my heart begin to fill. My new companion and his laugh was the start to my new beginning. My mom and I eventually moved out of our house and lost contact with the neighbors. I am always reminded of him when I hear a laugh. Though he's not near me in a physical sense, I am guided by his laughter every day." 20 20 40 4 4 4 4 4 4 4 4 5 4 4 4 +20943 8 "Laughter is the best medicine Many people say laughter is the best medicine. I for one, agree. The reason why is that in many points of @CAPS27 life, laughter has helped me, or others, feel a whole lot better. @CAPS27 mother recently got surgery on her shoulder. @CAPS4 had medicine @CAPS2 all @CAPS34 I think the best @CAPS4 took was three nights ago when I was with her in her room...Doing a word-search. It was @DATE1 @TIME1. Every @DATE1 @CAPS27 step dad's kids come over for dinner. @CAPS27 mom wasn't really feeling well so @CAPS4 went upstairs @CAPS2 started on her big book of word-searches. @CAPS27 step-sister had recently gotten a new car so @CAPS4 @CAPS2 @CAPS27 step-dad were outside looking at it. I went out for @CAPS19 two minutes then came back inside. @CAPS27 step-brother was on @CAPS27 step-dad's iPad. He showed me this game on @CAPS22 @CAPS2 we started playing. A few minutes later @PERSON2, @CAPS27 step dad, said that he was going to @ORGANIZATION1. Katie, @CAPS27 step-sister, @CAPS2 @PERSON1, @CAPS27 step-brother, decided to @CAPS46 with them. @PERSON2 went upstairs to ask @CAPS27 mom if @CAPS4 needed anything. Then they left @CAPS2 I went upstairs to check on her. I saw @CAPS4 was going her word-search @CAPS2 I started to help her. I don't remember the name of the word-search @CAPS34 we did several. Since @CAPS4 had already started I was looking over the letters, looking for another word. Apparently I wasn't looking close enough because I swore I saw a word that wasn't even in the puzzle. So I said it @CAPS2 @CAPS27 mom said, ""@CAPS1 me?"" @CAPS2 I started laughing. I repeated myself @CAPS2 we were both laughing. After that wore off we finished the word-search @CAPS2 started a new one. This one was called ""@CAPS3."" @CAPS4 took the book @CAPS2 looked over the list @CAPS2 suddenly said ""@CAPS5-winks! Yeah!"" @CAPS2 I looked at her like @CAPS4 was crazy. Which @CAPS4 was. I looked at the list again @CAPS2 I start laughing really hard @CAPS2 ask, ""@CAPS7's @CAPS8?"" I was saying it wrong @CAPS34 when @CAPS24 were laughing that hard, who wouldn't? ""@CAPS7?"" @CAPS4 asked @CAPS2 I showed it to her. ""@CAPS11 @CAPS12 @CAPS13."" @CAPS4 said @CAPS2 we started laughing. ""That sounds like something the @CAPS15 @CAPS16 would say."" I comment @CAPS2 @CAPS27 mom does the little song from the @CAPS15 @CAPS16 song which made me laugh harder. We barely made it through the end of the word-search. @CAPS34 we did. The next one I think was called ""@CAPS19 @CAPS20 @CAPS21"" @CAPS22 were several things on @CAPS22 we didn't know. I asked her @CAPS7 one was @CAPS2 @CAPS4's like, ""I don't know."" @CAPS2 then I asked her another. ""@CAPS24're asking me all the things I don't know."" @CAPS4 said. This word search was kind of funny @CAPS34 only because we were saying the rest of the letters after the actual word which made them pretty funny. I accidentally circled the word ""ear"" because I thought it was on the list. It wasn't. @CAPS34 ""earring"" was. We ended up finding ""hair"" at the end of the ""ear"" I'd circled. ""@CAPS26 thanks for that picture."" @CAPS27 mom said. ""@CAPS7? Ear-hair?"" I asked @CAPS2 we laughed again. When we finished that we went onto ""@CAPS29"". That was a funny word-search. We usually read over the list of words before we look for them. One of the words was ""@CAPS30"" @CAPS2 I laughed @CAPS2 said ""@CAPS26 yeah, I can see someone walking around with a @CAPS30 on their head. '@CAPS32, nice @CAPS30.'"" I said in a weird voice. ""'@CAPS26 thanks. I got it from the @CAPS30 store.'"" I guess I was doing a pretty good job because @CAPS27 mom was laughing really really hard. ""@CAPS34 wouldn't that be uncomfortable? I mean it's a @CAPS30. I'd think the tail would always be slapping the back of @CAPS20 head."" I said before laughing again. Katie @CAPS2 @PERSON1 walked in the room @CAPS2 looked at us like '@CAPS7 the heck?' @CAPS2 I showed her the word-search. ""@CAPS26, it's not a cowboy hat. It's the full cowboy."" @CAPS4 said, laughing as well. @CAPS27 mom shook her head, trying to say something. ""@CAPS39, @CAPS39, it's things that wear hats."" @CAPS4 managed to get out @CAPS2 I'm looking at her. ""@CAPS7 kind of a hat does a @CAPS30 wear?"" I asked, smirking. @CAPS4 shook her head. ""I don't know."" @CAPS4 said like @CAPS4 was giving up. Katie @CAPS2 @PERSON1 then said good-bye @CAPS2 left. ""@CAPS43, @CAPS39 more. I need to take @CAPS27 pills."" I snorted at @CAPS7 @CAPS4 said. ""@CAPS39, @CAPS24 really don't need any pills."" @CAPS4 looks at me like @CAPS4 was going to punch me. @CAPS4 might have if I wasn't standing a few feet away. ""@CAPS46 away."" @CAPS4 said with a smile. ""@CAPS48."" I said before turning @CAPS2 walking back to @CAPS27 room. I've had several things like this happen. All of them were really funny. They were the humor that @CAPS24 kind of had to be @CAPS22 to understand. I still said laughter is the best medicine. Mom says its @CAPS49." 20 20 40 4 4 4 4 4 4 4 4 5 4 4 4 +20944 8 " The @CAPS1 @CAPS2 @CAPS3!!! This @CAPS2 started out like any other @CAPS2. Me waking up thinking what am I going to do. So I walk out of my room, ask my mom if we have any plans. She says that we don't have any plans. So after I talked to her some more. I went back into my room and there I saw that I had gotten a text message from my @CAPS1 friend @PERSON3. He asked if I wanted hang out with him. I decided of course I can because I had no family plans. ""I would love to hang out with you @PERSON3"". @PERSON3 and I met at the @NUM1 bus stop on royal and we went to @ORGANIZATION2. See now the reason why we went to @ORGANIZATION2 was because the @CAPS2 before I had gotten a gift card from my grandmother and fifty dollars from @CAPS4 (@CAPS4 is my biological father). When we finally got to @ORGANIZATION2 asked me what are we going to get here. I said anything I want. him start busting up laughing. I bot a jackass shirt and some food. From @ORGANIZATION2 we went to @CAPS6 @CAPS7 to get some delicious food. When we walked into the restaurant, the aroma from the place made us drool a little bit. @PERSON3 got a big bowl and stuffed @CAPS15 with everything he could. We ate so much. I ganged like ten pounds. We talked about life and how awesome the food was. Where we were going next was still undecided. We finally finished our food. I payed for the to bowls of food and we went to our bus stop and went to downtown @PERSON1. While we were on the bus @PERSON3 decided that we shall go to @ORGANIZATION1. So we got off the bus and what do you know my friends @CAPS8 boy, @CAPS9, @CAPS10, @PERSON2, and @PERSON4 were downtown chill en like a villain. @PERSON3 went and smoked a cigarette. While I went and checked the bus schedule for the @ORGANIZATION4 bus. Him and I had to wait for @NUM2 minutes. So we gust hung out with our friends. @CAPS9 is the funniest guy @CAPS3. I laughed until I started to cry. I almost pissed myself. We left to go get on the bus, laughed some more. When we got to the @ORGANIZATION4 we had know idea why we even went there. So we just walked around. @PERSON3 decided that we should into the photo booth to make this @CAPS2 legit. I had a lot of fun getting our picture taken. Next place we went was @CAPS11-topic. I love that store. We were in there for @CAPS3. About two or so hours pass. At the @ORGANIZATION4 there is this park that you can go to but you have to cross the bridge to get to @CAPS15. @PERSON3 and I got bored and went on an epic adventure to this park. There was a couple trails that we walked. I tripped on a branch. @PERSON3 laughed at me. We found this piece of concrete. @PERSON3 and I put on some music and danced to @CAPS12 @CAPS13. I love @CAPS14 music its really fun to dance to. I had orange soda that @PERSON3 drank. I took a lot of pictures of him drinking the soda. We pretended that the grass was lava and the concrete was a place for break dancing in cave man days. I took a video of @PERSON3 dancing and laughing to the song @CAPS15's the @CAPS1 @CAPS2 @CAPS3 by sponge bob. He also ate all of my chips that i bot at @ORGANIZATION2. After that we went back onto the trails and skipped through the tree's. I trow skittles at birds and old people. While telling them to taste the rainbow. We finally realized that we needed to get back home so him and I started walking back to the bus stop. Missed the first bus the caught the next one. Hung out downtown for an hour. Chilled with my downtown friends at @NUM3 park. Got a donut from @ORGANIZATION3. That place is epicly bad ass! Got some intents from this cool store by the station. As the @CAPS2 ended @PERSON3 and I went our separate ways home. Both still to this @CAPS2 saying that, ""that @CAPS2 was epic""." 16 15 31 3 4 4 3 3 3 3 3 3 3 3 3 +20945 8 "one day after school my friend @CAPS1,@CAPS2 and @CAPS3 went to house and said get clothes on that i can get dirty in and i said no but then i said ok fine and then @CAPS1 said put rubber boats on and we all started to walk to a park and we went on the trian tracks and when you get of of the trian tracks we walked down this really step hill and i slied down on my but they where all laughing at me on the top of the hill then they came doen but they did not fall . so we keep walking and we crosedd a log to get to the other side and we keep walking then they took me to a mud putle and they told me it was deep so i walked in it and i got stuck in the mud because it went past my boats and im trying to get out but i lean to far forward and fall in the mud and @CAPS1,@CAPS2 @CAPS3 thinks it was so fuuny they a laughed at me and the boats are still stuck in the mud im on a log so i ask @CAPS2 to go get my boots so she trys and she falls in i start laughing at her but then i come in and we both try to get my boots out but it was to hard so i put them back on in the mud so im still sttuck and cant get out but @CAPS1 comes and helps i get one boot out then the other one then @CAPS1 gets stuck and me and @CAPS2 run back in and we all started to puch each other every one was falling and laughing at each other but magan was up in a tree watching she did not wanna get dirty so then after that we got all of our jactkats and we started to walk home then we got to the step hill i fell doen so i run up the hill and dont sliped back done then @CAPS1 @CAPS3 @CAPS2 they are trying to walk back up it it was so funny watching them climp up the hill so we all made it up after a while and we walk home on the trian tracks and every one is looking at us because we are all mudde besides @CAPS3 so we keep walking then we get to austins house and we get his hose out and he spares him self to get the dirt off of him while he was doing that me and @CAPS2 where taliking then she told me to put a hand print on her face so i did then she told me now she gets to do it and i said hahaha your funny so then i ran away from her but she got me then we both got rrinsed off then went up to my house" 14 15 29 3 3 3 4 4 2 3 3 3 3 3 3 +20946 8 " Human beings are...unusual...Okay, we're weird. There are so many people in the world, including ourselves, and the only way we can like ourselves is if we can get others to like us; if that isn't strange enough, we still don't like ourselves no matter who likes us. Just what are we thinking? We are always using relationships to assist our understanding of who we are; it's a gamble to even have those relationships. Face the facts, we risk so much on relying on others; we give them the ability to build us...or break us. Our major goals as youngsters is to find people to like us. I think it might even span to later times in life than that! From my experiences I know there are two key points in knowing a person can build us: trust and kindness. Finding builders with these traits is as easy as understanding if they bring you joy or not. A person can give you joy by simply being kind to you...but if you want a whole swarm of friends, then this isn't exactly the best way. It's not that kindness is a bad way to make friends...it's just that it's not the fastest method. If a builder is kind then of course you would become their friend...in time; in order to immediately know a friend when you see one, they will make you laugh. Laughter makes us enjoy our time with our friends, it's a golden rule in the book of @CAPS1, if there is such a book. And it was through laughter that I made my experience in @CAPS2 class better. @CAPS2 class, to me, was extremely stressful. Every day we had either a speaking assignment or we had paperwork; and the class was really slow. Why was it slow? It was slow because we could hardly get through one set of instructions without some group speaking or finding some other way to disturb the class. A good example would be this one class project we had to do. As usual, instructions were slow; I was at my boiling point. Today seemed different though, despite the the usual annoyance, not a single student asked for a repeat on instructions, in fact, they all seemed to understand and immediately started working. I too followed in with this action. The assignment was, each group of about three to four people had to create a script using the vocabulary learned from the supplied booklet; it took a whole class period and then everyone went home to do their other work. The next day we returned to @CAPS2 was definitely an interesting one. The teacher had all kinds of strange props lined up for us. apparently we were going to have the audience act out our script, our job was to read it out loud. My group was first to entertain and we had finally selected our volunteers and actors. Tiffany, @PERSON1, and I sat down in the back of the classroom ready to read the script, not sure what the actors would deliver. Our play was... a success?! By the end of the first sentence everyone was giggling. As we moved further on to the next play the laughter had grew louder. Students were really enjoying themselves and more people volunteered to preform until it was difficult to choose actors. Even I, the classroom-snob, was enjoying myself. The plays were fun and random, some play would send everyone into hysterics. I can easily remember one of the groups making me laugh so hard that my sides were aching, tears lined my lids, and it was almost impossible to breathe. This project was definitely the best one I had ever participated in. It's moments like these when we build strong unity in the classroom, we enjoyed all of the people around us and we enjoyed ourselves. I was so use to being angery at my classmates that I was taken by suprise on that one day. Enjoying their plays so much, I now look at them as an entertaining group of students, rather that the annoyance I had seen them as before. No longer are these people strangers in the hallway, now they are family. It really is amazing how something as simple as laughter can change ones outlook on others and themselves." 20 23 43 4 4 4 4 4 4 4 4 4 4 5 5 +20947 8 " The @CAPS1 of Laughter @CAPS2 would we be without laughter? Would we still have relationships/friendships like we do @CAPS5? Laughter brings out a sense of @CAPS1 closer to someone, a sense of humor, a friendship, and a positive environment. Personally, I feel as if the world would be a miserable place to be without laughter. I can assure @CAPS17 life would not be the same as it is @CAPS5. Without laughter, @CAPS17 @DATE1 vacation would not have been anything like it was. Over @DATE1 vacation @CAPS17 friends and I made it our mission to embarrass @PERSON1 (@PERSON5). This however, was not as easy as it @MONTH1 sound, seeing as how nothing could ever bring her down. We tried out hardest to embarrass her, but nothing was working. We tried throwing her into a pool while her crush was around, dumping our drinks all over her just as a group of cute boys walked by, calling her names that only a grandmother would call a child. @CAPS14 name it, we did it. @CAPS12 was like a brick of marble, extremely hard to break. One day, @CAPS17 closet friend @PERSON2 came up with the idea of grabbing a pair of shorts, removing the seem on the butt, and gluing it back together in hopes of it ripping when @PERSON5 bent over. ""@CAPS3 @PERSON5,"" I began, ""@PERSON2 and I found these shorts @TIME1, and thought that @CAPS14 might like them. They're super cute, and would go perfect with your new yellow tank top."" ""@CAPS4! Thanks guys, they fit great!"" @PERSON5 screamed as @CAPS12 filled with excitement. ""@CAPS5 let's go to the mall!"" @CAPS6 about an hour or so of walking around the mall, I threw @CAPS17 phone down and acted as if I hadn't noticed. However, @PERSON5 freaked out and ran @CAPS6 it as it slid down the walk way. Just as @CAPS12 was about to bend over and grab i,t her crush, @PERSON4 walked right behind her. Next thing @CAPS14 know, her shorts were split right down the middle, and her cheeks were bright red. @PERSON2 and I couldn't help but laugh. The look on @CAPS7 face was priceless. I wish I had had @CAPS17 camera. We had never seen @PERSON5 so mad. @CAPS12 was absolutely fuming, yet @PERSON2 and I were still @CAPS9 @CAPS10 her. I mean, who wouldn't laugh @CAPS10 someones pants splitting in front of a huge crowd of people @CAPS10 the mall? ""@CAPS8 @CAPS9 @CAPS10 @CAPS11,"" @CAPS12 screamed. ""@PERSON4 saw @CAPS13, and @CAPS14're @CAPS9? He's never going to talk to @CAPS11 again. I hate @CAPS14 guys!"" ""@CAPS14 don't hate us. That was hysterical and @CAPS14 know it,"" chimed @PERSON2. ""@CAPS15 like we embarrassed @CAPS14 pretty good, huh?"" ""@CAPS16 @CAPS17 @CAPS18! @CAPS16 @CAPS17 @CAPS18! @CAPS16 @CAPS17 @CAPS18! We broke the rock. We actually broke the rock,"" I giggled as @PERSON2 and I gave each other a high-five. A few minutes later @PERSON5 began to crack up @CAPS9, and apologized for freaking out @CAPS6 realizing that it was all in good fun. Little did we know, @CAPS12 was planning to get us back. By the end of @DATE1 break we had been to nearly every party, but there was still one to @NUM1 and @ORGANIZATION1. We all had a gut @CAPS1 that this was going to be the best one yet. Everyone was having a blast @CAPS10 @ORGANIZATION2 and @ORGANIZATION1's party. The strobe lights were going, there was crazy, loud music, the hot tub was @CAPS10 the perfect temperature, and there was a bunch of people in the pool. Who could complain? Just as the party was about to come to a halt, @PERSON5 decided to undo @CAPS17 bikini top, and pull @CAPS19 bikini bottoms down! Humiliated, both of us ran in @LOCATION2's room, and locked the door. How could @CAPS12 take it this far? Was our practical joke this embarrassing to her? Tired of all the nagging coming from @LOCATION1 and @PERSON3 about us running away, we decided to leave the room and forget what happened. Let's just say that we know what we did to @PERSON5 was wrong, we wont do it again, and we @CAPS5 know not to mess with her to the extent that we had during our mall trip. Honestly, I feel as if this whole experience brought us closer to together. If that didn't ruin our friendship, nothing would. Consequently, @CAPS14 can @CAPS5 see why I feel that laughter is an important part of a friendship and/or relationship. It makes the world go round. Do @CAPS14 have any experiences @CAPS2 laughter brought @CAPS14 and a friend, significant other, or family member closer together? " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20948 8 " During the @CAPS1 break my family went to @LOCATION4 except for my older brother. We were head to @LOCATION1, @LOCATION4. The ride there was long but we made it. When I woke up at my grandparents house there was already snow! I was very excited. They got about six to eight inches of snow. We rested before we went out to enjoy the snow. Later while I was outside I got a visit from old friends of mine. I hadn't seen them since @DATE1. We talked and hung out. They told me that I was lucky to get out of school early for @CAPS1 break. They still had to got to school. I told them that if they're lucky then they would have to go to school for only half of the week. And they did get lucky. @DATE3 they went to school and the rest of the week they got off because the roads were icy. I was very happy that they got the rest of the week off, now we were able to actually hang out during the break. That night my grandma made us some barbeque chiken, scalloped potatoes, green beans and corn, and rolls. It was really good. I love my grandmas cooking and she's the head chef at the school that she works at. She is an amazing cook! @DATE2 was a very cold day. My friends invited me to go shoot air soft guns. It would me my first time. Being with my friends again was fun. While I was trying to shoot an air soft gun, my friend @PERSON6 told me that I was shooting it wrong. ""@CAPS3 am I shooting it wrong?"" I asked him. He told me that he didn't really know and that I suck at shooting. I reminded him that it was my first time. Then he put his arms around me to try to help me aim better. It was very awkward but I was a little frustrated. Sometimes I hate it when people try to help me when I don't want it. And that was one of the time. But he was one of my good friends so it wasn't too bad. When we were done, @PERSON6 asked my to hold onto his air soft gun while he was getting something. He had also told me that the safety was on. So while I was waiting, I was spinning the gun on one of my fingers and somehow I shot him in the back. He freaked out a little bit and asked why I shot him. ""I didn't mean too. I was spinning the gun on my finger and somehow I shot you! Pluse you said that the safety was on!"" @PERSON6 forgave me and told me that it wasn't my fault because it wasn't. He saw that our friends @NUM1, @PERSON3, @LOCATION3, @PERSON1 were laughing and so was my cousin @PERSON4. @CAPS4 confesed that he was the one that shot @PERSON6 in the back. So @PERSON6 decide that he was going to shoot @CAPS4 back. Then somehow it beacame an all out shooting between all of us. I had lots of fun that day. It's one of my favorite memories when I was there. While I was still in @LOCATION4, my @CAPS5 @DATE4 asked if I can babysit for her. So the next day after lunch I let my little cousin @PERSON2 play in the backyard after he was done eating. My baby cousin @PERSON5 was taking a nap so I told @PERSON2 that we can't be to loud. I decide to go play outside in the snow with him. After we were done we decided to go back into the house. We got locked out. Then I remembered that @TIME1 when my @CAPS5 was still home, @PERSON2 was messing with the lock. So I decided to go around the house and try the front door. It was locked too. @PERSON2 told me that the garage door can open, but he didn't know the code. I felt really stupid. After a couple minutes more we went over to one of their neighbors house so that I can call my @CAPS5 because I didn't have her cell phone number. But the neighbor only had their house number. Then I called my dad so that I can get her number. I told him what happend and he started to laugh. @PERSON5 was still taking her nap so things were still kind of ok. I called my @CAPS5 and we waited until she got home. She told me that it was ok and it happend to her twice while @PERSON5 was taking a nap. She also said that sometimes before she goes outside she takes a key with her of makes sure that the door was unlock. I learned a little lesson that day. But other than that @PERSON2 and I had fun outside. I had such a great time while I was in @LOCATION4. Just being in @LOCATION4 is one of my favorite places to be. Espicially when I'm with my friends and family." 19 20 40 40 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +20949 8 " ""Laughter"" @CAPS1 people @MONTH1 actually believe that only money can buy happiness, but happiness comes from the great things in life, and the greatest thing we have is laughter. Not only does it show kindness, happiness, and freedom, it makes others and yourself feel good. Laughter is one of the best feeling we can have, although it can hurt if its too much. It can teach others a way to express themselves, and forget about the bad in life. Anyone can laugh, and anyone can make others laugh. Without laughter, life would be such a bore. But you never want to push laughter, because even laughter has a limit. There is different ways to bring laughter in someones life, and there is different ways of being funny. There is good ways of being funny and bad ways. A bad way is being the class clown, it becomes annoying, rude, and it can get you on your teachers bad side. A good way would to tell a joke or maybe sometimes embarrassing yourself can work. It seem to be the worst, but if you laugh at yourself it can make you feel better, and you don't have to look at it as bad as you think it was. I know that I can be funny at times, and sometimes I make myself laugh, but it is never good to laugh at someone and make them feel bad. Making another feel bad can make you look bad, and others @MONTH1 not think of you as funny. You never want to put another down, people have feelings, and hurting someone only makes you look like the bad guy. @CAPS1 people think that happiness is in fairy tales, also love, but when you really want happiness than turn to your friends and make them laugh. Getting another to laugh feels great, and it helps build up confidence and character. Having confidence and character really helps you in life, it brings more joy, love, and others @MONTH1 think about you in a better way. It can bring people together and it can bring peace. You don't have to try to be funny to make someone laugh, sometimes laughter just appears for no reason at all. Laughter could be an open way to win another heart. Being a bore can make you seem like your not an interesting person or not really all that fun. When people fall in love they find someone to share their life with. Sharing laughter could help your relationship and make it stronger. All we really need in life is happiness and success, and with happiness and success comes laughter. I can also help you meet new and interesting people, @CAPS2 you more and more friends in your life! With laughter, you really find the good part in life. There is many adventures that life will take you through. I love to laugh, it makes me feel better when I'm upset. Laughing makes me feel good on the inside and out. I also love to make others laugh. For example, how I met my best friend @CAPS3. She was upset and she felt like nothing in the world was going right, I knew that she wasn't happy and I didn't want her to feel like that. So as a friend I helped her out and made her laugh at all the bad things and forget about them. Ever since then we've been best friends and she has never felt like that again. Laughter really is a great thing to have, it brings happiness to us all. And getting others to laugh makes you more of an interesting person, being an interesting person makes life easier and more stress free. Sharing this amazing feeling is great and can make your life more stress free. Stress can slow you down, along with sadness. When I'm down, I like to make myself laugh. Sometimes just the little things in life are the greatest things in life. In my opinion, I think that laughter is the greatest feeling you can give someone. Finding something that is just as great, is like finding a meaning in life. No one really knows the meaning of life, and we'll never know, but having the ability to laugh and make others laugh is a part of life, and a privilege. So go out and tell a joke or two, just make someone laugh and feel good." 16 20 36 3 3 4 4 4 3 4 4 4 4 4 4 +20953 8 " A while back, I had a friend named @PERSON4. We were best friends; like two peas in a pod. We would hang out everyday, all day @DATE1. One random day we walked up to our other friend @PERSON1's house to see if she could hang out. We all were hanging out all day when @PERSON1 came up with an idea. She wanted both me and @PERSON2 to stay the @TIME1.We stayed out a little past dark and just walked around @CAPS1. We stopped at @LOCATION1's house so she could get her clothes then left to go back to @ORGANIZATION1. On our way there, we stopped, again, at @LOCATION2's house and chilled for a while. We were there for @CAPS9 @NUM1 minutes just laughing @CAPS9 all the crazy stuff that has happened over @DATE1 already! When we were finally giving hugs to go to @CAPS2's, @CAPS3, @LOCATION2's older brother, smacked @PERSON1 on her butt and told her it was nice. We made fun of her for the longest time for that! Not to mention how @CAPS3 kept talking @CAPS9 that until he moved to @ORGANIZATION2. When we left, @LOCATION3, @PERSON4 and I were singing to @ORGANIZATION2's new @CAPS5 when some random person stopped and asked for directions. Then I directed him to where he was going and he said, ""@CAPS6 you,"" and drove away. When he had gone, @PERSON4 looked at me and screamed, ""That was the hottest guy I have @CAPS7 seen!"" @CAPS8 @CAPS9 the time we reached the @CAPS10 down the road we saw the guy again. @CAPS8 this time he wasn't so hot. He had a scruffy face and long, brown, straggly hair tied in a ponytail and was dressed like a hobo. I, still to this day, give her crap @CAPS9 it. That was the greatest @TIME1 of @DATE1. We ended up going to the @CAPS11 @CAPS12 to buy some drinks when @PERSON1 started freaking out @CAPS9 losing her @CAPS5. So we all had to retrace our steps all the way back to @LOCATION2's house, hoping we'd find it. Re-retracing our steps, we came across this guy who tried to help us find it. By then it was probably @CAPS9 @NUM1 @CAPS14'clock @LOCATION4. We finally gave up and decided to head back to @ORGANIZATION1. Before We even stepped foot in her front door, her mom comes darting out and starts screaming at @LOCATION3. So her mom took me and @PERSON4 back to my house @CAPS8 by the time I knocked on the door, because it was locked, and everyone was asleep so we had no where to go. So for that @TIME1 @PERSON4 and I were stuck homeless. We walked around all @TIME1. Almost fell asleep in the laundromat when i remembered that my aunt @PERSON3 was looking at a small, white truck for sale in the @CAPS15 parking lot. The truck had a bed in the back, no, i don't know why, and it sounded better than the hard floor of the laundromat so we crawled in. It was a tight squeeze, @CAPS8 we managed. Plus it wreaked of dirty socks and pee. It was, for sure, the worst thing 've @CAPS7 smelled. @CAPS8 no doubt was it the funnest @TIME1 I've had with that girl." 16 15 31 3 3 4 4 4 3 3 3 3 3 3 3 +20954 8 DUE you think that being part of sameting funing? well sam times is not breey fun .becaes you are in adefokil stoeshl. i think that being in a reationship is evre in porto to trass the othre prsad. becaes if ther in no thast the is no relshonsip. the other pepolp @MONTH1 tray to kip then opert. ther or same peopl that you can tust. ther are going tho halolp you.they will tall you wat the other peolepa are saind obut you and the other per.the peorson will on my oping is the you can get allong whe alt of peopl. If you new lates of people you can get along with them. i haved a good frand and that trust me. trust is a good thik if you dont have aing trust you are noting.and same time is good to in a ship.you feel happy we same wone is with you.you tell the person evrting. like for me i youso not tace we im brother. now i tell hem abrething. befor i dont trues ne. becase he allwes he wat to tall my mom the i will gat in trodol.now he is dons due that. now it is fun to hang out whe me. becases he will haveing fun is a good think. becase you can go to a party are you can go out whe you frands.are you can go to mexcioand vest . for me i will trove to have fun. i will takeme frand to go and go to parch and go to tthe malles.from ther i will go to see my granmother. 10 5 15 2 2 2 2 2 2 1 1 2 1 1 1 +20955 8 " Everyone laughs differently , some people laugh so hard that they cry, and some don't. But one thing that they have in common is laughter. People use laughter as a way to express their feelings of joy, or happiness, or even if something is just really funny to them. Laughing is a great way to feel happier about something for instance maybe you are having a bad day and then one of your friends comes up to you and tells you a funny joke. It makes you feel better, right? Having a good sense of humor is something that can help you get through tough situations, embarrassing things, or even like I said just a bad day. Being able to laugh at yourself and even something that you might have done that was embarrassing is a good thing, it can help you get over it and not be so embarrassed about it. Whenever I laugh I always feel better, laughing reminds me of all the good things in life. Laughing reminds me of good times I have spent with friends and family, it reminds me of all the inside jokes my friends and I have come up with over the years and that we can still laugh at just as hard as we used to. I believe that laughing is enjoyable for everyone it can make you feel better no matter what and some people even say that laughing makes you younger. When you laugh at things it creates long lasting memories that you will never forget and when you talk about them again in the future you will still think it is just as funny as before. Some of my best friends laugh at everything, they think that every little joke is the funniest ever, their laughs are unforgettable you can always hear them laughing. Which in another way shows how laughter can make anyone happy. If you believe that you are not a funny person, just say something to one of them and I can guarantee that they will laugh at it and you will feel funny and most likely start laughing as well. I enjoy getting to spend quality time with some of my closest friends, and probably the best time I had with them was when we went to @ORGANIZATION1 for the beginning of @DATE1 before going into high school. It was two days after our promotion (graduation) from middle school. We packed up my family's car and headed out for @ORGANIZATION1. Not even half-an-hour into the car ride and we are already cracking up laughing at every little thing going on. We always create great memories and this one was already in the books for one of the best. I am sure that the car ride for my mom and aunt was just as fun, we sang songs and danced (as much as we could buckled down in a seat) to as many songs as we could fit in those two hours. Of course during the car ride we got stopped by construction so we decided to jump out of the car and do a @CAPS1 fire drill around it. All the others cars watched and laughed at us even the construction workers though it was funny. We made a boring moment fun. Once we finally got there we did not hesitate to drop off our bags and grab our bikes and take off and explore. The weather was so nice, not a cloud in the sky. During our exploration bike ride we laughed, told jokes, and just talked about how excited we were to be out of middle school and moving on to high school. The next day we decided that we wanted to float down the river on a raft, sounds like a fun idea. Well it would be if we actually knew where we were going, I used to do it all the time with my family so I had an idea of where to go, but still five girls two rafts and a river, maybe not such a good idea. During the whole river raft trip we jumped back and forth between the two rafts occasionally splashing each other with the oars. Knowing us we laughed the whole way down the river. Whenever we passed people I'm sure they thought something was wrong with us by how much we were laughing and enjoying each others company. By the time we finished the rafting trip we were hungry good thing my mom had prepared us some lunch for when we got home, when we sat down at the table we could never keep a straight face. What made it even funnier was that my aunt and my mom didn't know what we were laughing at because we could just look at each other and laugh. You know you have built a good friendship when you can just look at each other and laugh, already knowing what your friend is thinking because of all the inside jokes you have with each other. All because of one little thing called laughter. " 18 22 40 4 4 4 4 4 3 5 5 5 4 4 4 +20956 8 "Laughter can be used for many things. One of which can be the important part of a relationship. There are many key parts in a relationship. But, the most important one is definitely the part of ""laughter being the shortest distance between two people."" @CAPS1 laughter can cure the emotion of being sad. @CAPS1 it doesn't cure it. If laughter is the shortest distance between two people then if a guy or girl meets someone they like. For instance, I have went up to a girl before and couldn't figure out anything to do or say. So, I just tried my best to make her laugh. It @MONTH1 have taken a few days of trying really hard to do so. But, in the the end, i was more comfortable asking her out and feeling more comfortable around her and her friends. @CAPS3 I can make her laugh I always feel better about myself because it is never a good thing to see her in a bad mood. Now on some occasions I have made people laugh and it not mean anything. But, @CAPS3 I make my girl laugh then it was totally worth it. Because I can cheer her up from being any kind of sad or angry to making her happy and full of laughter. It @CAPS1 helps with being depressed too. Her being depressed is kinda like a train wrecking off its tracks. It never turns out good. But @CAPS3 she is happy, she can be full of joy, all giddy, and @CAPS1 very spontaneous. I know @CAPS1 being alone and laughing is good. But you can @CAPS1 get called crazy if you are laughing at nothing at all. The best way to know someone is possibly feeling better is laughter. If they laugh then they can't be mad, sad, or any kind of emotion besides happy, or maybe sarcasm. But sarcasm can be blown off like it is nothing. If I ever try sarcasm to make people laugh I always end up offending them. So I always just be myself around everyone I come around. So if you ever hear that laughter is the shortest distance between two people. You should know that it is true. Because not only do you get to a lot more place and get to know someone more. But, you can also learn valuable things about life through being closer to more people. @CAPS3 you hear that phrase, ask yourself, ""@CAPS2 I capable of making someone laugh? @CAPS2 I able to pull off laughter and actually be close to someone?"" @CAPS3 you do that, you'll know that laughter truly is the shortest distance between two people." 18 18 36 4 4 4 4 4 3 3 3 3 4 4 4 +20957 8 " Each person filed in, one after the other, making a human train. The metallic red bell chimed once as each person pushed the door slightly more open. Walking in, I was enveloped by the smell of @CAPS1 food and conversations that hummed in my ears. I took a few steps forward and stopped, not knowing where to go. To the right was a wall covered in @CAPS1 @CAPS3 @CAPS4 symbols and meanings, while to the left were hundreds of tables already filled. Not knowing where to take my place, I turned to my mom. I so badly wanted to plop myself down at one of the adult tables, even if it meant I had to sit there silently. With moms knowing what's best, she shoved me towards the back of the restaurant, telling me to go sit with my cousins. I did as she told me, like always, but made my reluctance clear. Walking over to the table with the speed of a slug and my feet dragging on the floor, I awkwardly stood in front of the circular table. Yanking out one of the chairs, I turned to my mom with a pleading look as desperation filled every fiber of my body, for I knew there was no way she would give in. Staring at these six relatives, I didn't know how I could manage to sit here the rest of the evening. We had all gathered at a @CAPS1 restaurant for my grandpa's @NUM1 birthday. Each of his children had flown from the mainland to @LOCATION1 in order to spend this special moment with him. I hadn't seen these cousins for over @NUM2 years, and some much longer. I had already visited with them since we'd been in @LOCATION1, but I hadn't talked to them much, none the less when we were all together and forced to mingle. With my napkin on my lap, I sat and looked at my cousins, each one staring back at me like I was an animal at the zoo. After a moment or two, they seemed to forget I was there because they averted their gaze and began talking amongst themselves. The only person at the table who I didn't feel like a complete stranger towards was my cousin, @PERSON2. She had wavy brown hair with blindingly blond highlights, sun-kissed from those bright tropical days, along with that brown @CAPS6 skin that made me jealous. We began talking, and soon I found myself enjoying the moment. It wasn't until the food came that we actually began interacting as a group. Being teenagers with bland palates, everyone stared as the waiter brought the first dish. After asking the friendly waitress what it was we were about to eat, from her broken @CAPS7 we deciphered that they were buns with duck inside. Frantically trying to get all of the tables served in fairly constant intervals, she left our table and all of us looked at our food blankly. No one wanted to take the first bite. One of my cousins, @PERSON1, stepped up to take the masculine role as the dare devil. We all waited tentatively as he chomped down on the moist bun and swallowed. Once done chewing, he smiled and it seemed this dish had won his approval. Digging into my buns, I began to wonder if maybe these people were easy to relate to and I had made a small thing into a big ordea. From then on, I would just be myself and stop worrying about not having seen anybody for years; All I needed was to be myself. The way the courses were set up left plenty of time to chat between each plate they brought. Since I was no longer worrying about what to say or how to say it, I easily fit into the conversations and began to relax. Shortly after the duck tray was removed from the table, it was discovered that my cousin @PERSON1, who is from @LOCATION2, pronounces certain words with an accent. Soon everybody began comparing the way we pronounce things to the way that he does. After each difference we found, we would chuckle. Things carried on like that for the rest of the @TIME1, everyone laughing at things that were only moderately funny, but we found hilarious. It was that @TIME1 when I realized, even though you @MONTH1 be uncomfortable around a group of people who you don't know very well, finding a common ground helps you to ease that discomfort. Finding something that you all enjoy talking about @MONTH1 be hard to do, but finding something that makes you laugh is a lot easier. Laughter is something that everyone enjoys and can take part in even if they're not contributing to the conversation. By feeling as though you're a part of what's going on, you feel accepted, and that's all anyone ever wants." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +20958 8 " People say laughter is the shortest distance between two people. A @ORGANIZATION1 I saw @CAPS6 to be true was when I met a girl named @PERSON1. Three years ago I was at a city @CAPS10 swinging, wondering if it would hurt if I jumped. I took @CAPS15 chances and let go of the swing chains, flying through the air , noticing the unbalanced feeling of falling in @CAPS15 chest, everything slowing down, the temptation of what will happen when I hit the ground was vast. Sticking the landing was a fail and getting up from it wasn't much of a success either, until I felt hands upon @CAPS15 shoulder and arm. I looked up at @CAPS15 helper and saw a girl. Not @CAPS5 a girl but a gorgeous girl. A girl with green dazzling eyes that can stop an angry rhino charging toward her, hair the flowed with the wind, soft, gentle skin that would make you think that @CAPS11 could be hurt for how soft it was.""@CAPS1."" Was all I could squeeze out.""@CAPS1, are you okay?"" @CAPS3 asked with a very concerned tone.""@CAPS4 I'm fine, @CAPS5 forgot to stick the landing. Thanks for helping me, um whats your name?"" I returned with a @NUM1, and your welcome. whats your name?"" @CAPS6 @ORGANIZATION1 @CAPS3 giggled before @CAPS3 said her name.""@CAPS7, do you want to walk around with me?"" I struggled to vocalize.""@CAPS8, but I have to @CAPS9 at the @CAPS10 because @CAPS15 mom will be here soon."" @PERSON1 stated. during the walk around the @CAPS10 we stopped at a monkey dome and started asking each other random question's that the other person had to answer. I figured out that @CAPS3 was @NUM2 years old, her favorite color was baby blue and @CAPS3 always wanted to be a doctor. we walked around the playground some more @CAPS5 talking about past memories or something that happened to each other in the past. I asked her if @CAPS3 had a brother and sister. her response was that @CAPS3 does have a brother, and two sisters. While I was listening to her I noticed @CAPS3 was very deep into thought and asked what @CAPS3 was thinking about and @CAPS3 quickly replied. ""@CAPS11, @CAPS5 wondering why I'm so happy with you.""""well it could be that I'm making you feel good by laughter. Or it could be @CAPS15 charms working on you."" I replied with a @CAPS12 accent.""@CAPS13 @CAPS4 its definitely that."" @CAPS3 barely got out the words cause of laughter. Suddenly there was a car horn honking and we said our goodbye's and @CAPS3 left. I sat there watching the car go down the road and was hoping that we @MONTH1 see each other again, but in a way I knew we wouldnt because @CAPS15 mom, and I were moving from the city to a small town half way across the country. Turning around and walking back toward @CAPS15 house for the last night in the city all I could think about was her and how a little bit of laughter became the @CAPS16 to friendship." 17 18 35 4 4 4 4 3 3 4 4 4 4 4 3 +20959 8 " When a day is qualified as perfect there are a lot of things that go into making it so. Most perfect days in people's teenage years are in the @DATE3 beyond the stress of school. My perfect day wasn't in the @DATE3, nor was it on a crazy @DATE4 break in @LOCATION2. My perfect day was on a @DATE2 in the middle of @MONTH1 in @DATE1. It was on this perfect day that my friendship with @ORGANIZATION1 was founded. A friendship that is now the best one of all. A friendship that is based on fun times, memories, story telling, and laughter. By @DATE1 I had spent multiple weekends with @ORGANIZATION1. However none were as hot as that weekend in late @DATE4. We decided we needed to cool off and with that said, we set off for @CAPS1. Down the road we went with two redneck boys and a mutt in the truck bed. Arriving in @CAPS1 was peculiar because I was so far out of my comfort zone. It was also peculiar because I hadn't met a single soul @ORGANIZATION1 was about to introduce me to. When I first lay my eyes on @PERSON1, @PERSON3, @PERSON4, and @PERSON2 I couldn't fathom how @ORGANIZATION1 had met them. She is athletic, driven, proper, and intelligent. The boys that shook my hand were into things like big trucks, fishing poles, and a loud country band. I didn't think upon first meeting them that opposites could attract or become fond of one another. As the day progressed I found my comfort zone again. As the hours flew by and jokes and laughs were exchanged, I realized just how similar we all really were. I didn't think that all of the childish things we did that @DATE2 in @MONTH1 would matter to me months down the roads, but they do. When we were running by the dirty creek with black lipstick painted on as war paint and laughing so hard we cried, I realized just how perfect the situation was. If that day wouldn't have brought laughs to my lips and my mind to it's comfort zone, it would have been a day long forgotten. If you go back on every happy memory you have, there is always one common ground. A joke, or even a funny face makes you laugh extremely hard. Every time I drive through @CAPS1 I think about the day when the sun was hot and we sat by fishing poles exchanging laughs. I think about @ORGANIZATION1 and I running through the trees laughing and tripping over our own feet. I think about @PERSON1 and @PERSON2 laughing and pointing as we attempted to go swimming. After all of the crazy running and swimming we were quite wound up. @PERSON1, @PERSON4, and @PERSON2 asked us to take a walk; so we accepted and off we went into the brush. Within five minutes of our departure, we stopped walking. Our walk had put us on the top of a hill of little round pebbles. I'm not sure what events lead up to @LOCATION1 pushing @PERSON1 down the hill. However, I remember @PERSON1 pulling @PERSON2 down with him. I also recall @PERSON4 sliding down to join the battle. Watching three boys wrestle and play on a hill of sliding rocks was something like watching a movie about the fifties. Nobody was texting or messing with a machine. Around us was laughing and serenity which danced like music around us. The day had no stress and it had the perfect amount of sunshine. It was like something you only dream about. Once you are in a moment like that, where your own little world is pulling you closer, you never want to leave it. When your on the laughing high, you disconnect yourself and for a few brief seconds your life is in it's simplest form. You are simply you, no racing thoughts, no rushing emotions. You are just one person. I never thought that something as small as laughs could create or better a friendship. On that @DATE2 I realized that the laughs shared between @ORGANIZATION1 and I would be the first memory for what was to come. Every event and every laugh that we had that day will be something I think about when I'm doubtful of the world. It'll always be a memory that makes me appreciate living. Someone once said, ""Laughter is the shortest distance between two people."" @CAPS4 that @DATE1 I wouldn't have believed it but laughing made me closer with people I would have otherwise avoided. Laughs and smiles bounded my world into @ORGANIZATION1 and into the world of a few @CAPS1 rednecks. And as of a @DATE1 @TIME1, that has made all the difference." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +20962 8 " Moving around from place to place was always hard, I hated the thought of never seeing any friends or family. Never was the only word I could hold on to, there was no point in hope it was a futile feeling. I knew I would dearly miss @LOCATION1, and @ORGANIZATION1 just sounded so far; a twelve hour drive seemed like the edge of the earth to me. I visited @ORGANIZATION1 before, it was boring to tell the truth, and on top of that looking for a new house would bore me furthermore, all I could think about was @LOCATION1. Now I was moving there! When I first heard about the move I was infuriated and tried to fight against this poor decision, I was sure that my parents were making a mistake. As hard as I fought I could not win, my tears coulden't move my parents in the slightest way even In my greatest efforts, I was broken and confined to the moving van for twelve hours but to me it felt like forever. Finally my departure was over and my legs were sore and tired, I didn't want to manouver out of my seat or even touch @ORGANIZATION1's soil. The ground was dirty and tainted and the apartment complex was old and overly occupied, the rain and mud didn't help my attitude much either. Everything about this place was digusting and the thought of still sharing a room with my younger brother made me feel sick to my stomach. I stepped foot out side and entered my apartment and went straight to my bleakly colored room. I sat down and collected my thoughts trying to determine the pros and cons of my situation. The walls were caving in on me and they seemed to take the shape of bars, I was condemed to this fait that I could not escape untill I turned @NUM1, and that was more than @NUM2 years away! I was stuck in my apartment for three days before I wandered outside, but it wasn't all that horrible concidering it was raining all the time even at the end of the @DATE2 which was abnormal for me. I didn't want to leave my room or my apartment, all I wanted to do is watch @DATE1 @TIME1 cartoons in my room. I felt alone and out of place I had no friends to talk to, my parents wouldent listen to me, and my little brother was only @NUM3 so he wouldent understand. There were no more smiles when I found out that I had to go to school the next day. Aloha park sounded like some school that would have great funding and spoiled rich kids in it but it was actually the exact opposite. It was an older school with kids that mostly lived in lower income housing at the time. In someways it was rather comforting knowing that I lived the same way temporarily. The first day of school was frightening, it was my first major transition into a new unfamilliar place. My teacher was old and grouchy, she seemed to have a major chip on her shoulder. Suddenly, out of the blue she held my hand in the hallway which was humilliating and definately not comforting. I heard my new classmates giggle and laugh when they saw me I thought I would never make any friends. The humiliation was withstandable but the thought of being in this class for the next nine months was a fear beyond belief. My teacher told me to take a seat on the far side of the room next to three boys, they all had the same expression which was an amalgamation of both alienated confusion and territorial pride. The feeling of being unwelcome would be an understament of the new nervous sensation that had surrounded me. I sat down unaware of the actions that the three boys might deal on to me, surprisingly the only occurence was a series of temporary stares and an aquard silence. As the day continued life had again had become somewhat casual, until the boys had started to talk about the opposite gender and my attention was directly turned towards them. I sat there and quietly listened and smirked at the inapropriate conversation that I was clearly not supposed to be a part of. They laughed and snickerd and covered their mouths embarassingly, as I looked at them and concidered them amatures of the comical arts. I wanted to say something that I held onto for the whole conversation and then I took my chances to add a most important joke and quickly I muttered my overly inapropriate sentence. They confusingly looked at me and asked me what I had said, I wasnt sure how they would take the joke but I risked another chance and repeated it. The group of boys grew silent and the only noises were those of the other students talking to eachother, suddenly they bursted out laughing. I was overjoyed that they had a sense of humor, and after that I had friends and @CAPS1. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20963 8 " Laughter at its @CAPS1 Laughter is one ability that everyone in the world has. Not only does it help you make more friends, but it can also turn your day all the way around. The capability to laugh is a huge importance in this world. Without laughter, days would be dull, sad, and somewhat depressing. When I see someone laugh, it brightens my day, makes me smile, and causes me to laugh along with them. By laughing we become happier, learn more about others, and make our bad days better. I have experienced, first hand, the joys laughing can bring after I have had a bad moment, and that is why I believe that laughter is extremely important to have and to keep in your life. Not everyone can have a great day all the time. Bad days occur, and when they do, seeing one funny incident and laughing about it is what can turn the whole day around and make it great. Many people hear the statement, ""Laughter is the shortest distance between two people,"" or a statement similar to that one and will never agree with it. Often times we will scoff and disagree completely. It turns out that I used to be one of those people myself. Most days were not the @CAPS1 they could be, plus having to go to school all day long ruined it a little more. People kept telling me that if I laughed once in a while then I might feel better more often, and I @MONTH1 actually have fun when I participated throughout the day. I never believed them, and why should I? How could one action as simple as laughing change the way I feel about everyday life? The possibilities were just to unlikely. I didn't think I'd change my views on it either, until a few years ago. It started off like any usual day would, not so great. My hair was a mess, my sister @PERSON1 and I could not stop fighting, and my brand new phone broke right as we started our shopping trip to @LOCATION1. I had decided that the day was going to be horrible because so far, nothing had worked out well. As the day went on, nothing worse happened, but nothing better did either. @PERSON1 and I kept traveling around, going to stores, and shopping. Finally, at our last stop we saw a situation occur. As we were sitting at a stop light, waiting for traffic to move, I spotted a strange man sitting across the road all by himself. The man looked as though he had an injury on his foot, and our suspicions were confirmed when he began walking like a hurt penguin would, barely shuffling his feet and bobbing up and down as he moved forward. The sight of this man made me smile, and when I pointed him out to @PERSON1 she started laughing uncontrollably. Then I too, began cracking up. The man with his crazy way of walking had made me laugh had proceeded to turn my entire day around. What I thought was impossible turned out to be the exact opposite, possible. Laughing could bring you closer to others and make your day more amazing. As a result of my trip with my sister that day, my views and beliefs about laughing were changed greatly. Laughter actually was the shortest distance between two people. Even though my little sister and I were arguing before the funny man came, after we were done laughing about him we realized that in the span of a few minutes we had become closer than ever before. It is crazy to think that one incident can change your mind about some of your strong beliefs, but it happened, and that day is now a memory that I am going to keep with me forever. I'm happy it happened because as a result of it I have begun to think differently about laughter and the effect it can have on certain situations in my life. I now think of laughter as one of the greatest pastimes to have and do it quite often." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20964 8 " It was @DATE1 seventh and I had invited my two best friends, @PERSON1 and @PERSON2, to go to my boyfriend's football game with me. It would be the first time for them to meet him since he went to a different high school than we did. Our plan was to get off the bus at my house and then my @CAPS3 would take us to his game later. When we arrived at the end of the lane we started walking up to my house. Then all of the sudden ""ahhhhhh, @CAPS1 my god!"" @PERSON2 and I were both screaming at the top of our lungs, ""@CAPS2 a... ahhhh!"". @PERSON2 and I had almost stepped on a dead snake that was laying in the lane. While this was going on @PERSON1 had no idea what the problem was or why we were screaming. We looked back at her and saw a completely puzzled look on her face which we found absolutely hilarious so we burst out laughing. She soon figured out that we had been startled by the snake and also started in ""you guys are so funny @CAPS2 just a dead snake"". We talked and laughed our way up to my house. @CAPS4 we had caught up a little and I had changed into my boyfriends #@NUM1 jersey, we went downstairs to eat. We sat down at the table with our bowls of chili and started eating. My @CAPS3 came over and put her bowl down then went back into the kitchen to get something. When she came back she had napkins and another bowl, I playfully ask her ""are you really hungry @CAPS3?"" she said ""no..uh why?"" That's when the girls and I started laughing hysterically again, ""@CAPS3 you have two bowls you are obviously very hungry"" I giggled. She turned a little red and then said back ""well I do love chili, I can't ever seem to get enough of it"" then she laughed a little ""your probably right I should just start with one bowl."" @CAPS4 we gathered the blankets for the stands we left. On our way up we made a pit stop at the famous @ORGANIZATION1. I was so exited to see my boyfriend and to have my friends come along that coffee was probably not the best idea, but we stopped anyway. While we were in there waiting for our coffee we passed the time by making faces through the nearby window at people who happened to drive by. We were cracking up over the looks people gave us, some looked like @CAPS5 thought it was funny while others looked like @CAPS5 thought we had escaped from a nut house. Soon enough our drinks were ready and we headed out the door. Then as we were walking to the car some guy whistled at us. We hopped in the car and then lost it when we saw that it was some guy who was dressed up in one of those statue of liberty costumes. We were almost at the school and I was bouncy from the caffeine and excitement mix. My @CAPS3 had never driven to @PERSON3's school before, while my dad had only was busy that night. I was trying to keep calm while giving her directions in a very giggly manner. I started off by saying ""you go straight up here @CAPS3"" the my @CAPS3 and the girls said ""honey you can't go straight up here"". ""yes you can"" I argued then @CAPS4 a while @PERSON1 said ""girl look you could go straight but you ain't gonna see @PERSON3 if you do"". I realized @CAPS5 were right and told my @CAPS3 ""don't turn, just turn right"" she got confused cause I had said the directions wrong so she turned left. I started to freak, screaming ""no no no! we have to turn around I meant right"" @CAPS5 all burst out laughing at me ""man calm down woman, we just have to turn around"" said @PERSON2. We finally got back on track and I tried to give clear directions. I wasn't completely positive where the turn off was for his school so I told my @CAPS3 to go slow, when we passed it and I freaked out again. ""@CAPS1 @CAPS3 we have to turn around"" @CAPS5 all laughed at this and then my @CAPS3 said that she was testing me to see if I could be patient. We all laughed again. When we got there and hopped out to pay and get in. We got there in in time to see the guys come out of the locker room. I got another dose of excitement, @PERSON2 and @PERSON1 started to walk away so I could wave at @PERSON3. I pulled on their shirts and begged them to stay because I didn't want to be the only person waiting. Then I saw him run past and before I knew it I leaped off the ground and waved frantically. I saw him smiling as he ran onto the field, my friends laughed at how I jumped and we enjoyed the game." 16 20 36 3 3 4 4 4 3 4 4 4 4 4 4 +20965 8 " Outdoor @CAPS1 In sixth grade I went to outdoor @CAPS1 I got up really early and went to @CAPS1 where the bus is taking students to outdoor @CAPS1. First, of all I board on the way to outdoor @CAPS1. Then they told us in which cabin we were suppose to be I had seven cabin members including myself. I brought my electronic device but the teachers told us that we couldn't bring no devices to the trip. The next day we did some activities first we ate lunch before doing any activities. The foods that we ate were pizza, pizza pockets, and hot dogs then the activities that we did were catch some fishes and put them back to the water we were just examine them the other activities that we did was hike the mountains on the way we saw deers they were eating grass I got really tired then when we came back we were getting ready to go home. Finally I would want to help out and I really enjoyed my field trip." 15 13 28 3 3 3 3 3 3 3 2 3 3 2 3 +20966 8 " The @CAPS1 of @CAPS2 is one of the most important things in life. When im with my family, we all have such a great time together that we laugh all the time at things or memories we say we remember. While we are all gathered around the table whether it is breakfast, lunch, or dinner we always have something fun to say and laugh about all the time. To begin with, during breakfast @DATE2 @TIME1, we were all having a great time eating first thing in the @TIME1, but suddenly when my sister remembers about what had happened the day before at her job, she just had to talk about it because she wanted us to know what happened so we can also laugh with her about it. She had said that there was a banana lying on the floor, when her manager went by she didn't see it and slipped right through the hall. It was impossible not to laugh about it becuase it was the manager. Well that @TIME1 was going by so fast just by thinking about what happened with the banana and the manager that day. Every time I would remember I would start laughing so much that I couldn't stop. It was the funniest thing she had ever told us that happened ever since she starting working. On the other hand, when it was time for lunch, I was at school and my mom called me that same day. I answered fast but not knowing the reason why she was calling. Suddenly she said ""@CAPS3 you will not believe what just happend, your dog just got finished taking a shower and is running around like crazy on top of the beds and coutches trying to get dried off"" I couldn't believe it and I starting laughing so hard that I had to tell my freinds that were next to me and them too starting laughing as well. I could picture in my head how funny that would be if I was there watching her run around like a crazy dog. As the day went by, all I would do is remember how funny that is for a dog to do that, that I would just start laughing all of a sudden during class at school, but even though it was something good to laugh at I had to stop laughing because everyone was just staring. Finally, when it was time for dinner, at the table that night we all told eachother about our day. Everyone had something new to say but, when my brother started to tell us about his day at school, he couldn't even talk because it was so funny what he wanted to say that he was just laughing. He stopped after a while and calmed down but not for long. He told us that during his lunch break he went to the bathroom and when he came out he noticed that all his freinds were laughing and pointing at him. He said he had no idea what was going on but when they told him that when he came out of the bathroom he had a big piece of tiolet paper stuck to his pants. I immediatley thought he would have gotten embarrased but instead he said he thought it was funny as well. My parents, my sister and I started to laugh so hard that we had even forgotten about our dinner sitting in front of us just lying their cold on the table. Laughter is one of the most important things in life. Without laughter each day, it just wouldnt be the same. Being able to laugh during the day is very important because it's like another way to have your day go by and wait for the next. We all at the end said that our day went by so fast, that it was or couldn't be true that the day was over and it was time for bed. The day of @DATE1 third was one of many days that was the best and that we all enojoyed and had fun laughing with eachother telling about funny things that happen to us during our day." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20967 8 "I was raised with two brother that mean the world to me until my baby sister was welcome to the world in the year @DATE1 I am the second baby of seven kid's most of my family member has passed over to the other world where I know they will be better. Now I've been in locked up since I twelve in a half year's old it's been a long four year's being away from family and not being at the funerals that I have missed I can never cry at a funerals the only one I have cried for will just have to be my mother's passed over in the year @DATE2 I can never forget that women that has bring me and the others to this world before she passed way she didn't want me,my brother's, and my baby sister to get separate from each other but that didn't happen my brother's got put with my my grandpa and me and my baby sis got send with our grandma I haven't felt the same way I can't watch my little sis grow up see my brother's have their first kid and most of all see my new nieces and nephew's get welcome to this world even watch them grow up in the same world I'm in. Man I can remember when it was just me and my bro's together in @LOCATION1, Or that was all the fun times getting in trouble, running toured a park, meeting new people having both parents a wonderful mom and a awesome dad didn't have to worrier about any thing but just having fun until one night my dad hit my mom and that is when there was no more fun times my world turned upside down but no more of times like that I have realized I have to protect my family make sure that nobody will ever hurt my family like how my mom got hurt well any ways I'll tell you a funny time about my young year's just one day my brother's just had a great idea oh lets go cut our hair's I chopped off my brother's and both of them did mine put my hair didn't fall off until my mom gave me a bath she went to go get a towel and what do you know you see all my hair in the water and it look just like a boy's hair cut this all happen when when I was only in first grade I will never forget that moment with me and my brother's did to each other when mom was gone at work man I will also never ever forget my mom face that she made when she saw my hair probable because my hair was down to my butt well this is a story of a @CAPS1 @CAPS2 sixteen year old girl." 10 10 20 2 2 3 3 2 2 2 2 3 3 2 2 +20968 8 " Laughing is the key of happiness. Is a moment that is remember by many people. You share many laughs with friends, family and sometimes strangers. When you laugh with someone it shows that you have something in common; you both think something is funny and it could build a strong relationship. For me laughing means a lot, i laugh everyday. I will not forget the time when i was really mad at my dad and then laughter fixed the problem. One night me and my dad were in my house in the kitchen and he was arguing with me about my grades. I told him I could still fix them that there was a solution. He was calling me a liar, and more anger kept on building up. He was so hard headed and I couldn't get through his thoughts. He was saying that i could not fixed what i have done: whats done is done. I was getting really mad, I wanted him to go away and i thought i was not ever going to talk to him. We had a lack of trust and i just wanted to tell him he was wrong. I knew he would have got more mad and we were gonna end up screaming at each other. It got me so mad that he couldn't listen. My dad said he wanted the best from me, and he was disappointed. I got really sad because my dad was the kind of guy that was all ways telling jokes and teasing everyone. He always made my day by making me laugh. Usually when he would get me in trouble, it would end up with a joke at the end. The jokes he made when i was sad or mad would build our relationship stronger; we would always end up laughing. Later the night we were with all my family cutting my niece's cake and me and my dad were not talking. As we were singing happy birthday i would glare at him and look down. He was looking at me as if he was all tough. Then we were all saying ""-@CAPS1 le sople!"", which means blow out the candles in @CAPS2. All of the sudden my uncle blows out the candle on accident and me and my dad stared at each other and laughed so hard. We were crying of laughter and we couldn't stop laughing. It felt great laughing at the same thing and sharing a moment together and putting aside our anger. My dad would try not to laugh but the more he tried the louder his laugh was. It was only me and him who stayed laughing, everyone else giggled. As it was making my dad and my relationship better it build a connection between my family and I. Its a memory that's gonna last a life time, yet it was an important part of my dad and my relationship. Although he was still upset about my grades it was all better. There was a connection between us and we could still look back and laugh about it. I don't know what it was about the night that i found the incident so funny. As it was making my relationship stronger, the distance between me and him didn't matter it was all build up on the memory. Something me and him both share, building a part of him and a part of me. Our problem wasn't fixed but it was as if it was not important, as if laughing made you change and helped us put it aside. Every laughing moment we have now is something me and him share, its now a connection. We both can laugh about the same things and share our thoughts making us stronger. Telling me that while me and him laugh about things is just putting more the negatives away and giving life more meaning. When you know you're happy is when you have a sense of humor. Also when you have those moments with others that you will never forget. The moment when you made laughing an important part of your pass. When all those funny moments become important because that's when you showed you were happy. Its even better when you laugh most of the time because your memories will be all remembered as a happy moment. I know at times i will have moments where i am not laughing, but the key is to always look at the bright side. Even though me and my dad were mad at each other its a memory that will carry on with me forever." 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +20971 8 " @CAPS8 families @DATE1 in @LOCATION1 was one of exploration, but also one in which we came to regret our move from @LOCATION3 a little. We missed our friends, our connections, but also places. The place @CAPS8 brother and I came to miss second only to our farm was a @CAPS3 we had dubbed ""The @CAPS1, @CAPS1 @CAPS3."" The place itself was a dump. Close to a dairy farm, it reeked of cow pats mixed with cigarettes. I remember that the grass was perpetually dry, and the bridge crossing the @CAPS3 was continually squeaking; it was an old, covered bridge, and on its last leg. So, it wasn't so much the place we missed, but the happy memories associated with our special place. On one particularly mopey day, our father roused us from our rooms, saying that we were going to explore a new @CAPS3. We knew about @CAPS4's adventures; we called them ""@CAPS4-ventures"" because they were truly one of a kind. Most of the time, we ended up miles away from any civilization and stuck in the car with our lunch out of reach. Even at our young ages, we had come to be wary of ""@CAPS4-ventures."" @CAPS7, our mother was able to rouse @CAPS8 brother and I, and we were soon hustled into the car. During the trip, our father was unbearably cheerful. While @CAPS8 brother and I were in the back of the car, pining for our nice, comfortable rooms, @CAPS8 father had the audacity to laugh along to the radio, and open the windows of the car to our protests. Riding with @CAPS8 brother and I in the back were two circular lumps of rubber that had been inflated. I would soon learn that these were called inner tubes, and could be used to drift down the @CAPS3. After what seemed like hours on the road, we arrived at a place called ""@LOCATION2 bend."" @CAPS8 brother and I jumped out of the car, and were met with pristine beauty. Covered in shade, the @CAPS3 flowed noisily, and we could hear it although we were not that close to the @CAPS3 bank. The grass was green and velvety beneath our feet, and the smell of fresh water welling up from the earth was delicious. The light filtered down through the trees and had a crystalline effect on the water. @CAPS8 brother and I hurriedly dressed into our swimsuits, while @CAPS8 father began to cart our food and supplies down the the @CAPS3 bank where we would be spending the day. As soon as we finished dressing, @CAPS8 brother and I chased after him, for the day was warm and the water looked good and cool. When our hunger had been sated, it was time to pull out the inner tubes. The water was nice and fast, with some white water and a very little water fall at the end. Being a rather petite child for @CAPS8 age, even these small obstacles looked like the most insidious of rapids, and they made @CAPS8 eyes widen a little. @CAPS7, I managed to steady myself, and prepared to get wet. At @DATE1, I hung on to @CAPS8 inner tube with clutched fingers and wild eyes, but gradually, I relaxed. I let @CAPS8 hand drift out to causally trail behind me in the water, drawing circles as the sunlight filtered down through the trees. As the water grew faster, I began to feel apprehensive again. I drew sharp, quick breaths as the little waterfall approached me. In reality, it was only about four feet tall, but in @CAPS8 panicked haze, those four feet looked like twelve feet. The white water was suddenly upon me, accompanied by a large and frightful shriek I gave. Somehow, I managed to stay afloat, and @CAPS8 ride left me smiling. I broke into long peals of laughter, laughing away all @CAPS8 homesickness and heartsickness. @CAPS8 brother came down the waterfall, spluttering and giggling, and we laughed together. Our laughter healed us, and for the @DATE1 time since the move, we felt totally and completely at home." 21 25 46 4 4 5 5 5 4 5 5 5 5 5 5 +20972 8 " Falling in love, @CAPS3 @CAPS1 The falling part was easy, I remember the minute I fell in love with you. Everything about you shined, everything about you sparkled. You were infinitely beautiful in my eyes. We had the most fun that human beings were capable of. Every time we were together there was no thought in my mind that we were not happy together, no worry that you would ever leave. I never wanted to imagine life without you. As a child i had always had the title of the kid who smiles all the time, @CAPS4 when i thought of you i got this glow. Everybody saw it. they would ask, ""@CAPS2 have you been doing? Your so happy, I've never seen you like this before."" That, @CAPS2 they saw in me was the power of love. @CAPS4 something they did not see was @CAPS2 we had together. When it was just me @CAPS3 you @CAPS3 one of us would do something @CAPS3 neither of us could stop the laughter. When our stomachs hurt from @CAPS1 so hard. that is @CAPS2 I love, I grew to love every part of you. Especially your laugh. From @CAPS2 i hear, they say the laughter is the shortest distance between two people. I would have to agree. Being able to laugh with someone, @CAPS3 being able to be yourself @CAPS3 not have to hold up this front, its magical. Its something that makes a relationship last. I guess its kinda like glue in sense. My brother @CAPS3 i are the closest you can get to best friends, @CAPS3 guess @CAPS2 we do in our spare time? We laugh. Hes someone that i can be silly @CAPS3 dumb @CAPS3 goofy with @CAPS3 he still laughs, @CAPS3 he still loves me. :) @CAPS4, although he is my brother it still holds the same respect, @CAPS1 is great. It is also a stress reliever. My teacher told me so. My health teacher that is. " 16 16 32 3 3 4 3 4 3 3 3 4 4 4 3 +20973 8 " Laughter is an important part of any relationship, whether the person is a relative, friend, or someone you are dating. Laughter makes you forget your worries and problems. But with a friendship based on laughter, when do you trade in the giggles for seriousness? I believe laughter is vital in a friendship. But to have a strong, healthy, relationship you also need a level of seriousness. This is the story of how I learned to balance laughter and seriousness in one of my most important relationships. Olivia has been my best friend as long as I could remember, hanging out we laughed constantly. Laughter has always been a huge part of our friendship and always will be. But going into middle school we faced drama, boys and arguments, which we never experienced with one another. All of these small but important things to us then added up and began to make us drift apart. Our lack of sharing our feelings and instead cover it up with laughs caused us to bottle up anger towards each other. I always thought we were perfect matches for best friends because our countless inside jokes and the constant fun we would have. But our anger grew until we were ready to handle it, which we did not understand then. We started to hang out less and less, and our daily calls became weekly. Both of us noticed a change in our friendship, but didn't know how to fix it, we apologized for fighting with each other and sympathized for our boy troubles but it wasn't the same. I missed her but the longer it went on the easier it was to not talk or hang out. Summer came around and our moms planned me to stay a week at her house while my parents were on vacation. To put it nicely I was less than thrilled, how was I suppose to stay a week there when we barely talk anymore? I knew everything would be okay but I still worried that the week would be constant fighting instead of laughs. Finally the day came and my parents were driving me to her house. As I got there things were fine, we pretended nothing was going on and had fun, it was that way for a few days. But on the third day she broke the ice, asking what was wrong and why we don't talk anymore. That day something amazing happened, we talked about all our feelings and what was upsetting us. It was a little awkward at first but we got through it together. The fights got less and less because we knew the things that bugged each other, and everything slowly became better than it was before. That talk changed our relationship forever and I'm so glad she had spoken up when I didn't or else we wouldn't be as close as we are today. That day was @DATE1, but had a huge impact on our friendship.Ever since we got that mile stone in our friendship I knew better how to be more open with other people also. Olivia has taught me so much but this was among the more important lesson. Laughter is a huge part of any strong relationship but you also need to be able to share your feelings and be serious. Everyone needs a best friend to laugh with and I am grateful to have mine stick with me no matter what." 21 20 41 5 4 4 4 4 4 4 4 4 4 4 4 +20974 8 " Laughter is an important element in a relationship. It shows the chemistry in a couple, and it shows happiness within family and friends. How depressing would it be if the world had no laughter? It would be like the ""@CAPS1 @CAPS2 @CAPS3 @CAPS4"". The joyous sound of laughter that bonds relationships allows you to get to know someone better and show them you have a warm heart. Ideally, when a person has a warm heart, your conscience tells you, you can trust them. The talent to laugh is a good element to have when you are meeting someone new, and spending time with your family. Last @DATE1, my youth group and I went on a missions trip to @ORGANIZATION1, @LOCATION1. We would be reaching out to many new children as we held a @ORGANIZATION2 for a week in the small @CAPS5 town. We picked up the children from their houses and drove them to the @ORGANIZATION1 to play games and sing songs. As we met each child one by one, it was important to give them a warm smile and laugh with them. If we had come into their neighborhood with our straight serious faces in our big twelve passenger white vans, it would send out a different message to the children. Instead, we decorated our cars with crayola car paint markers and jumped out of the vans energetically with big bright smiles. We ran up to a house door, rung the doorbell, and asked the parents if their children wanted to come to our @ORGANIZATION2. We had to remember that these kids live in poverty and have gone through a lot. To share the gospel, it was important to show them that we were friendly so they could open up to us and let us tell them about @CAPS6. When we laughed with the children, their eyes would always smile and twinkle. A lot of the children just needed love and we did so by laughing with them and making jokes to one another. Assuredly, our youth group made a change in the children lives. Our @ORGANIZATION2 is probably one of the biggest highlights of the year for them. In @ORGANIZATION1, the town's appearance is flat like a desert, there's no playgrounds, parks, or places they can go to and have fun. @CAPS8 gave us the power to share the gospel with these children and give them a fun @DATE1 to remember. @CAPS8 opened the hearts of the @CAPS5 children so that they @MONTH1 hear the word of @CAPS8. I honestly don't think we could have reached out to them if we had not been a friendly bunch. It just shows how important it is to laugh with one another, whether it be with strangers or your family. If there is no laughter within your family, something is wrong. It's a sign of broken relationships and a sense of closeness that is lost. In commercials, there's always advertisements where families are around the dinner table, or at a restaurant laughing together. Not everybody has to look like that picture perfect family everyday, but when a family laughs with one another, it shows the unity they have. Usually when people laugh, they do so because they understand the situation and have respect for one another. Of course a family does not have to be related, it could be your youth group, your friends, or anyone you feel close to and comfortable with. Your comfortable person could even be your future spouse. My cousin's story on how he met his wife is like the scene in a chick-flick movie. My cousin, @PERSON1, was working at a ski resort at the rental check-outs waxing skis, when a dark haired brunette comes toward him in her baggy snow pants and says, ""I can go down the biggest hill"" with the most flirtatious eyes and grin. Now, @PERSON1 was very confused as to why this girl would walk up to him and bluntly say that to him. But @PERSON1 was mesmerized with this gorgeous girl and all he could say was, ""@CAPS9"". The girl seemed thoroughly pleased with his answer and asked him when his next shift was. An hour later, @PERSON1 and this girl were having lunch together in the cafeteria. It turns out, this girl's name is ""@PERSON2"". Apparently, @PERSON2's friends spotted @PERSON1 first and told @PERSON2 the guy had a great laugh and he looked like a good person. They urged @PERSON2 to ask him out and get to know him. @PERSON2, being the daring one, agreed. @PERSON1's story proves the point that laughter is important. You don't know @CAPS2 @MONTH1 hear you and how that person could effect your future. Laughter is an important element in your life. It brings out the joy in people's spirit, gives you opportunities to meet new people, and perhaps change their lives. It reflects @CAPS2 you are and changes the atmosphere around you. After all, we wouldn't want our world to be like ""The @CAPS1 @CAPS2 @CAPS3 Laughter"" would we?" 22 22 44 5 5 5 5 4 4 5 5 5 5 4 4 +20975 8 " Laughter is a part of life. It can help bring people together or even tear them apart if it is in bad taste. There was a time when me and my cousin @PERSON1 did not really like each other but I had to stay at his house because my mom was out of town. After that night we were closer then brothers and there is one huge funny tale behind it. I was really reluctant to even go over there that night. But my mom told me to stop complaining and to just try to have fun. When I got there we pretty much just watched @LOCATION1 in awkward silence. Then his parents informed us that they were going out and that they would not be home until it was very late. About ten minutes after they left my cousin @PERSON1 turns to me and says ""you want to do something really fun."" @CAPS1 I was at the young age of thirteen years old a could not help but to be interested. So I asked him what this fun thing was and he told me it was a surprise. We left his house and cut through his field to the wall of blackberry bushes that surrounds his field and he showed me a little path through a certain spot. After we got through the bushes we ended up on a gravel road that led to a house that had a lot of land surrounding it. And on the land were what my cousin identified as fainting goats, I had no idea what fainting goats were. So my cousin said he should just show me what they are and what they do. @PERSON1 walked right up to these goats and made a sudden noise, about a quarter of them just fell over stiffened and unmoving. I was roaring with laughter at the fact that these goats fainted when they got scared. We spent about forty five minutes scaring them and watching them faint. No matter how many times we did it, we found it no less amusing then the first time. The funniest thing by far that happened that night, started off when @PERSON1 informed me that he brought an @NUM1 firework. We put it in the middle of where all the goats had flocked to and lit it. It went off and the bang that was as loud as a gunshot. As one entity the goats all collapsed and we were doubled up with laughter, that is until the people in the house came out side. We ran like our life's depended on it, we flew down the road through the blackberry path, trough the field and straight into @PERSON1's house. We sat down on the couch then we looked at each other, we burst out laughing, my ribs were aching from it, I was light headed with laughter. His parents got home about a minute after we calmed down which we also found extremely funny. As soon as they went to bed we burst into silent giggles. That was one of the funnest times I've had with my cousin and even tough we did not like each other before hand, we ended up becoming brothers in all but blood, but we were cousins so maybe even a little bit by blood but mostly brothers in laughter." 20 16 36 4 4 4 4 4 4 4 3 4 4 3 3 +20976 8 " Laughter is an amazing thing. Laughter is bilingual. It does not need to be translated or looked up in a dictionary. It is the one form of communication that we all know and understand. Laughter has @CAPS9 boundary. @CAPS5 was the most taciturn girl in the whole school. In the mornings and during lunch, @CAPS5 would hide in the shadows hoping not to be seen by the world. @CAPS4 @CAPS10 asked @CAPS8 what @CAPS5 wanted to be, @CAPS5 would say invisible. People passed @CAPS8 by without even a glance, thinking @CAPS4 I don't see @CAPS8 than @CAPS5 can't be there. My heart was sad for the poor girl because I knew @CAPS5 needed a friend. Someone that @CAPS5 could talk to, or atleast get a smile from. However, how would I approach @CAPS8? Would @CAPS5 think that I was insane? I knew there had to be someway to get @CAPS8 to talk, or atleast smile. As I walked into school the @DATE1, the hallway was filled with the same hullabaloo as always. Paper air-planes flying one direction and mouths going off in another. I was used to being shoved around and dodging things on my way to class. It was just the fun journey of getting to your @DATE1 period. Finally, as me and my gawky self made it to fourth period, I sat down and began to look for a pencil. As I did so, I noticed someone pulling out a chair @DATE1 to me and sitting down. It was the girl! I didn't even know @CAPS5 had this class with me, let alone sit right @DATE1 to me. I began to be overwhelmed with joy, knowing that this could be my chance. Futhermore, I began thinking of ways I could start a conversation with @CAPS8. I noticed a picture on the front of @CAPS8 binder that someone had drawn. At the bottom was @CAPS8 signature. I asked @CAPS8 @CAPS4 @CAPS5 had drawn that picture. ""@CAPS1,"" @CAPS5 said in very quiet voice. My heart was pounding, almost breaking free from my chest. I knew I had to say something more. ""@CAPS2,"" I began, ""I believe @CAPS10 are a very good artist. Do @CAPS10 have any other pictures?"" ""@CAPS1,"" @CAPS5 said again, ""however, they are all at home."" ""Is there any possible way that I @MONTH1 be able to see these other pictures of your's?"" I said happily. ""@CAPS4 @CAPS10 would like, @CAPS10 are more than welcome to come over to my house after to school today and see them."" @CAPS5 said in a very joyful voice. ""I would be honored,"" I said. As we ended the conversation, the teacher began @CAPS8 lesson. @CAPS5 was really a nice girl, I thought to myself. I couldn't wait until the end of the @DATE1. When the school @DATE1 came to a close, we meant each other in the foyer. I could tell that @CAPS5 was very excited. I was excited as @CAPS2, because I knew that @CAPS5 was fnally feeling confident with herself; like a baby bird flying away from its nest for the first time. We drove over to @CAPS8 house in my mighty mule of a truck. I became very nervous as we walked to the front door. As @CAPS5 opened it, my pounding heart flew from my chest. The house was absolutely beautiful. It smelled of fresh baked cookies with a hint of cinnamon. I could not believe what was before my eyes. My mind couldn't make sense of it all. @CAPS8 mother yelled from the other room, ""is that @CAPS10 sweetie?"" ""@CAPS1 mother,"" @CAPS5 said back, ""I have a friend over."" ""@CAPS7!"" @CAPS8 mother exlaimed. We enjoyed some cookies and milk with @CAPS8 mother and then we went up to @CAPS8 room. @CAPS8 room was filled with so many beautiful drawings that @CAPS5 had done. @CAPS5 told me that there was a story behind each one of them that inspired @CAPS8 to draw it. @CAPS5 asked @CAPS4 I have ever drawn a picture before. ""@CAPS9,"" I said, ""I am what @CAPS10 call challenged in the world of art."" We both began to laugh; however, we both began drawing a picture. In the midst of it all, I looked over at @CAPS8 picture. It was a beautiful drawing of a fairytale world filled with castles and dragons. Then, @CAPS5 looked at my picture. It was a failed attempt of drawing a simple sunset with clouds and birds. We looked at each other and then began to laugh hysterically. ""@CAPS10're clouds look like potatoes,"" @CAPS5 said. Then we laughed even harder and we continued to laugh for what seemed like an hour. Finally, when i left the house and went home for the night. I realized something amazing, something that I had forgotten. It doesn't take much to reach out to someone that needs a friend. I also realized that it can be the most simple thing that can make @CAPS10 laugh; like a bad drawing. This is beacuse laughter is contagious and we all know that we all love to laugh." 20 22 42 4 4 4 4 4 4 5 5 5 4 4 4 +20977 8 " ""Laughter is the shortest distance between two people,"" @CAPS3 quote can be agreed by everyone on @LOCATION1. Everyone loves to laugh and have a good time. Especially @CAPS1 with a person you care about. @CAPS1 is something you and another person can do together with ease. @CAPS3 brings two people closer together and brightens a person's life. Some people, like me, are always looking for a guy who knows how to make me smile and laugh. I need to know that arguing isn't going to be the main part of @CAPS3 relationship. Having someone who makes you laugh is a key factor in life. At the age of sixteen I had my first boyfriend. I was the girl who kept on rejecting guys and telling them I was trying to wait for that perfect guy. In the @DATE2 I met @ORGANIZATION2. Even though he was older than me and we might be opposites, he always knows how to make me smile. My first impression of him was his cute smile. After getting to know him and talking on the phone a couple of times I realized that I started to have feelings for @CAPS3 boy. Whenever we talked he always had me @CAPS1. I found @CAPS3 very attractive. Having someone who brings some sunshine into my life made me feel like I was on top of the world. On @DATE1 there was a football game, @ORGANIZATION1 (two schools who are rivals). During @CAPS3 time him and I still weren't dating. That day I invited him to come over so we could watch the game together. I had previously told him how I love stuffed animals. That day he showed up with a fluffy stuffed animal. We were walking around the track, @CAPS2 all of a sudden I tripped. My first reaction was to use my nervous laugh. He had his arm around me and whispered in my ear ""I would never let you @DATE3."" I turned cherry red. From that day on he will remember me as the clumpsy girl who trips all the time. Now that i look back at the day I realize how funny that memory was. Looking back at embarrassing moments is always a good thing in a relationship. @CAPS2 you are looking for someone who you want to spend the rest of your life together you have to make sure you like them for whom they are. You don't want them to change. The goal is to be able to spend time with someone who you can have a good time with and crack some jokes around. I always tell my friends ""@CAPS1 is a great ab workout."" Which is true because whenever I laugh, my abs are always sore the next day. Being able to have a good time with friends, and laugh about random stuff is always something I look forward to. If there is no @CAPS1 going on, then that means I'm not having a good time. But lucky me, I have amazing friends who make jokes about everything. Whenever I'm around them there is never a moment @CAPS2 I'm not @CAPS1. Being able to make others laugh is a great characteristic in a person. @CAPS2 you meet a new person, would you rather have awkward silence? Or do you prefer someone who will make you laugh? I'm hoping we have the same answer, because I hate awkward silence. I need to know that @CAPS3 person will make me laugh and smile and not make me be thinking ""@CAPS2 will I be able to leave?"" @CAPS3 is one of the worst situations anyone would want to go through, I can say @CAPS3 from personal experience. Even though I'm not the best at saying jokes, I use all my embarrassing moments and thats my way I have people @CAPS1. I don't get mad about it, I'm the total opposite. I laugh along with them. I know I'm clumpsy, I know I have my moments, and if these things can bring a smile to a persons face, then I'm @PERCENT1 fine with it. My goal is to be able to make people smile @CAPS2 they are down. So instead of cracking a joke, I just remind them of an embarrassing thing that has happened to me. Everyone is unique in their own ways. That's what makes everyone special. Different people have different ways of making others laugh. And once a guy gets a girl to laugh, that's the first sign @CAPS3 guy was meant for them. Having someone who can make you smile is a key factor in life. @CAPS1 means that you are having a good time. @CAPS1 brings people together. @CAPS1 can brighten a persons life. So next time you meet someone, maybe a joke here and there will help you break the ice." 20 22 42 4 4 4 4 4 4 5 5 5 4 4 4 +20979 8 " My mom always say laughter is the greatist medican and it is true for me anyways. When ever I got sick or hurt I will allways laugh at a great joke and it made me feel a little better when ever my family go on a long trip we always made jokes and tease each other soon the trip dont seem that long at all. it's very short and you wish that it could of been longer. One night me and my family was going home from the store and my brother asked ""what are we having for dinner tonight"" ""hambugers"" she told us my brother kind of freaked out becouse we dont got @ORGANIZATION1's and my mom said all well and my dad then was in a smal store called @CAPS1 hopped in the car and started to drive home. ""I feel like having mexican food tonight can we eat at @ORGANIZATION2's tonight"" my mom asked ""no I thought we were having hambugers tonight"" he answered ""We have no @ORGANIZATION1's"" my mom laughed. Then my dad stopped the car and turned around ""why"" we all asked ""we don't got @ORGANIZATION1's @CAPS2 has some chips at least"" then we all started bursting out laughing. Once we got ot the place and found a place to sit we were all talking and my sister bursted out "" look dad I can move the straw from just looking at it"" and she stared at the straw in the cup and everyone whent silent. I knew that it wouldn't move so I tapped the straw so it can move ""ha look it moved"" she was laughing knowing that she did not move the straw. my mom was trying to hold the laugh becouse my dad for a second thought she could move the straw for just looking at it. ""I can't believe I fell for that"" we finished up are meal and went home laughing and joking all the way. Laughter can bring people together family, friends, even enymeys sometimes I laugh so hard that I could not breath so well. laughter bring fun in life and knowing that some other people have the same intrests and you @MONTH1 gain a friend you never know just like my family and the @LOCATION1's trip everyone laughs. When it snowed one day I graved my cell phone and gathered the neighbors and my brother and sister and went to the park together we had this idea to have a snow ball fight mixed with capture the flag. We all picked our bases and the type of flag that we want and then started the game we had fun playing we were laughing so hard that it hurt and soon before I relized it I was geting to know my nieghbor better after that day we talked to each other more and understood each other more the next time we have a snow ball fight I hope she is on my team and we will win for sure." 16 15 31 4 3 4 4 3 3 3 3 4 4 3 3 +20981 8 " My cousin @PERSON1 and I are constantly sick with laughter, he is the funniest person I know. He is hilarious when he isn't trying to be. I believe that is why he is so @NUM1king funny. @PERSON1 is a hardcore alcoholic, he is always drunk or drinking. On the rare occasion that he is doing neither of those two options, he is the dullest, most depressed, angry unfunny man around. Give him a drink or two and watch him turn into funtime @CAPS1. @PERSON1 and I have great grand wonderous times when there is an alcoholic beverage in or near his hands. @CAPS5 is sort of an awe inspiring thing to see this transformation take place. He starts as this sad, depressed, sober caged sociopath lion at the zoo with so many of society's judgemental, sour souled, pittiful excuses for men and women pointing, laughing and sobbing over this poor lion. When one of these ""people"" throw a beer his way he'll catch @CAPS5 in his fierce, angry teeth and devour a @NUM2 oz tallboy of @CAPS2 in mere seconds-- can and all! He then stands up on his gigantic feline paws and let out an amazingly deep vibrato of a purr. His big, ferocious cat teeth then smile like a @LOCATION1 lion, as his sick, beastly, blood stained fur slowly morphs into the scaley, scarred skin of a man. As he is standing there with a goofy idiotic sh!t eating grin he shouts ""I @CAPS3 @CAPS1 @PERSON1!!"" @CAPS5 really is an amazing thing, I have seen @CAPS5 so many times and I absolutely @CAPS6 find a single word to desribe this marvelous reconstruction of a living creature. Then with drinks in hand we will continue to have a great night of unknown comical amusements. I guess you could say laughter is a large part of our relationship." 20 25 40 40 4 4 4 4 4 4 5 5 5 5 5 5 4 4 4 4 4 4 +20982 8 " One day my friends and I went to a friends house and we started playing @CAPS1 box we were laughing having an awesome time. My friend @CAPS2 started telling jokes and all my friends started laughing hysterically. My friend @CAPS3 was drinking milk at that time and @CAPS5 laughed so hard that milk started coming out of his nose, that was also funny but gross at the same time. @CAPS6 was the sad one of the whole group that was there, we all asked him, @CAPS4 was @CAPS5 so sad @CAPS5 answered that @CAPS5 heard that his girlfriend wanted to break up with him. So @CAPS5 asked us how to keep her interested, and we said that @CAPS5 should tell her some jokes to make her laugh. @CAPS5 said that @CAPS5 would think about it @CAPS6 was a real funny person and a blast to hang out with, so we didn't really worry about it so much, we thought that everything would be fine. So after all that @CAPS5 left and we started hanging out in my friend, @CAPS7's living room. We were hanging out and just talking about who was the hottest girl at school. So an hour past and my friend @CAPS6 came back. @CAPS5 came and sat with us and yelled I didn't work man, I was like okay calm down, @CAPS9 happened I asked?. @CAPS5 said, she didn't think it was funny she thought that I was being dumb and just plain silly. Oh did she really say silly that's not I word i thought she knew, everyone laughed, no @CAPS6 I was just messing with you man don't get mad come on now. So @CAPS6 left after @CAPS5 yelled at me, @CAPS5 left and all of us guys started laughing I thought that @CAPS5 was just but hurt and @CAPS5 would get over it. an hour past and my phone starts ringing and I look who's calling and it @CAPS6 s ex girlfriend. Surprised I answer and I tell her that @CAPS6 wasn't with us that I would tell him to call you later, I said that because @CAPS5 would use my phone to talk to her, but then she replied that she wanted to talk to me so I was like okay so we started talking and she is telling me that she likes me... I start cracking up in laughter. She got all sad and mad at me because of me laughing. But I told that it was cool that she did so I told her I have to go and we hanged up... I couldn't help my self i started cracking up again and so that's how my day ended in laughter and it was like that all day " 17 15 32 3 3 3 3 3 4 3 3 4 3 3 3 +20983 8 " Laughter is an extremely important aspect for maintaining a relationship with someone or even a group of people. Some greatly beneficial uses of laughter include relieving tension in any intense or high pressure situation as well as connecting with other people in a more meaningful way. The implication of laughter is also a great way to create new friends. It is my opinion that healthy relationships whether they be a friendship or even greater, hardly exist without laughter and cannot flourish without it. I personally use laughter on a daily basis for these reasons among many others and it is a monumental element of my relationship with my father's side of the family. One specific example of how I utilize the essential tool of laughter in my family is to reconnect with members whom i have not seen in a long period of time. Laughter is a tremendous element of my relationship with my father's entire family, and small family meetings as well as full family reunions do not exist without it. Being that they are scattered across @LOCATION2, and very few live in the vicinity of @LOCATION1, visiting with these family members is a rare occasion. The most admirable quality of my father's side of the family is the innate sense of humor that everyone shares. Laughter simply seems to be another form of communication for our family and is the main reason we get along so well. Relationships that I share with individual family members can be observed in every family assembly as well. Just @DATE1 my sister was pregnant with her first child and her baby shower was set to be in @DATE2. This event holds a specific example where laughter was a predominant element of a relationship between myself and one of my family members. Not only was I to be the only guy there, but I was also to be placed at a table with my aunt whom I had not seen for over a year. Although we had always enjoyed eachother's company in the past, I dreaded an awkward reunion and sitting in complete silence for the entirety of the festivities. The day of my sister's baby shower inevitably arrived and to my surprise, I was nervous. I assisted with the set up of the decorations as well as the other amenities and found my seat. Within ten minutes of doing so, my aunt and table partner entered and located her seat which was adjacent to mine. However nervous I had been, the very first thing my aunt did eased any tension that had built up in me and reminded me why I get along so well with my father's family. My aunt greeted me by cracking a joke towards how I was the only guy attending the shower. For the duration of the party, all I heard was jokes coming from my aunt and the laughter shared between the two of us. We reconnected and bonded as both family members as well as good friends and the use of laughter was responsible for it all. Through the use of laughter my aunt and I reconnected with one another and possibly had the most fun out of anyone who attended. Whether we were making jokes about some of the party gifts, or simply enjoying one of the ridiculous games, my aunt and myself were laughing hysterically. on this specific day and many others before and after, laughter was not only an element, but was the sole reason for my friendly relationship with my aunt." 20 23 43 4 4 4 4 4 4 5 5 5 5 5 4 +20984 8 " LaughterLaughter can change a lot in people,it can bring people together. It can also help with relationships to make the other person laugh is always a good thing. @CAPS2 your with your friends laughter can and will always be there, well i know it is with my friends and I. @CAPS2 your in a relationship or a friendship, @CAPS1 able to laugh with that other person is important because it can make you feel more connected to them,@CAPS2 you have a big group of friends that you just met you can all laugh together that's even better because then you know your getting somewhere. My best friend and I laugh all the time, @CAPS3 can just look at me in a way I only understand and I'll know what @CAPS3 means, and then we both start laughing @CAPS2 we stand in a big group of friends and we start laughing, they all look at us funny. Then normally we tell them what were laughing about, most of the time they don't get it. My best friend and I are always together,besides school, we are always laughing no matter if its something that happened a day ago or a year ago. My best friend and i have a lot of inside jokes,we only have to bring one time of hanging out and if something funny happened we will start laughing about it again. In a relationship as in having a ""boyfriend"" or ""girlfriend"" one of the plus sides of things are to make them happy, and laugh, and love to be around you. My boyfriend does it to me, no matter if I'm not in a good mood he always tries to put a smile on my face, most of the time it works. @CAPS2 you have a boyfriend or girlfriend you always wanna try and make them happy. That means girls don't get over the stupid little things. Boys don't get mad @CAPS2 they want to hang out with there friends. The best way to have a relationship with your boyfriend and your best friend is to make sure they don't hate one another, and if they do work it out in a way that you could hang out with your boyfriend one day and your best friend the other. My relationship works out amazing, because my best friend is dating my boyfriends best friend, so we can all hang out if we really wanted to and not fight it's nice to have all of us friends, that way we can go to the coast together and we can go out to dinner as a group. At this time we are thinking about planning a trip to the coast, and going there for a day were not totally sure though. I think the best way to have a good relationship full of laughter is to make it your all. Just don't give your whole life to your boyfriend or girlfriend cause if you ever break up you won't have any friends, cause they won't want to hang out with you anymore because you left them for your boyfriend at the time. So i always try and tell my boyfriend that with out making it sound the wrong way. Normally the guys understand that you have a life too and it doesn't revolve around them. My friend did that once and @CAPS3 was not happy as all in the relationship,@CAPS3 told me they never laughed together or anything,@CAPS3 was afraid to break up with him though cause @CAPS3 would not have any friends,cause @CAPS3 made him her life. Laughter can always make you feel better, it'd kinda like a healing process it will always be there, its just a matter if someone can make you laugh. Theirs people that can make you laugh and @CAPS4 and videos and family. @CAPS2 your with someone that makes you happy it is like you full of joy and enjoyment to be around them and you care for them and you feel comfortable around them. If you have struggles and get through them and they still make you laugh and happy you will know that they are the one your happy and can laugh around. Family always makes you laugh weather you don't want to or not, i love my dad he always knows how to make me laugh. " 16 15 31 3 4 4 4 3 3 3 3 4 4 3 3 +20985 8 " The @CAPS1 @CAPS2 I was sitting in the living room with @CAPS3 family talking about how every @ORGANIZATION1 we always end up laughing. One @ORGANIZATION1 we were out at @CAPS3 great grandpas house, and we just got done opening our presents, and in the middle of the floor was a @CAPS1 @CAPS2, @CAPS3 cousin @ORGANIZATION2 thought @CAPS3 dad was inside the @CAPS2. At first we tried to convince @ORGANIZATION2 that @CAPS3 dad was out side talking to @CAPS3 uncle. @ORGANIZATION2 didn't believe us, even though @CAPS3 dad was outside talking. @ORGANIZATION2 circled the @CAPS2, and observed the @CAPS2 and was convinced @CAPS3 dad was in it. Then @ORGANIZATION2 started poking the @CAPS2. We were laughing because it was so cute that @ORGANIZATION2 thought @CAPS3 dad was in the @CAPS2. He kept saying ""I know he is in there."" @ORGANIZATION2 opened the @CAPS2 and @CAPS3 dad was not in there. @CAPS3 dad walked in to the house and asked why we were laughing. We told him the story and he started laughing too. Later on in the @TIME1 @ORGANIZATION2 was playing in the other room and wanted to show @CAPS3 dad the toy he was playing with. So @CAPS3 dad climbed in the @CAPS2 and we told @ORGANIZATION2 that @CAPS3 dad was outside. @ORGANIZATION2 went outside to look for him but @CAPS3 dad wasn't there. When @ORGANIZATION2 came inside he looked in every room and could not find @CAPS3 dad. After a while @ORGANIZATION2 was standing by the @CAPS2 and @CAPS3 dad jumped out and scared @ORGANIZATION2. @ORGANIZATION2 screamed like a little girl and we all laughed really hard. @ORGANIZATION2 was mad at first then he started laughing too. At the time @ORGANIZATION2 was only five so when @CAPS3 dad jumped out at him he got really scared. @ORGANIZATION2 thought it would be funny to scare @CAPS3 dad so @ORGANIZATION2 hid in the @CAPS2 and @CAPS3 dad came inside and we told @CAPS3 dad to look for @ORGANIZATION2. @CAPS3 dad called his name looked in every room and pretended like he couldn't find @ORGANIZATION2. @ORGANIZATION2 started laughing because @CAPS3 dad acted like he was going to sit on @ORGANIZATION2 and it made him laugh super hard. When @ORGANIZATION2 got out of the @CAPS2 he was like ""how did you know I was in the @CAPS2?"" @CAPS3 dad said ""well you started laughing silly goose."" out of all the @ORGANIZATION1's i have had that @ORGANIZATION1 was the best @ORGANIZATION1 ever. That was the time laughter brought two people together. " 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +20987 8 " While you being to make any kinda of relationship with anyone, you are usually going to start off making jokes and being silly. Whether your trying to be flirty with them, or just be the funny one and make a good, first impression. Usually all of these things lead to someone laughing; even if they really didn't have a reason to. Anyone who is shy around new people, will most likely laugh about anything they say. If it's someone you already knew, you could always be giggling about something. There are different types of relationships you build with different people and laughter is almost always the number one way to keep it together. When you have been in a strong friendship with someone, you are already very close with each other. The laughing, crying, and fighting you do with that person, will make the relationship stronger. There are times that you spend with another individual that will makes steps towards sticking together. From my experiences, i will become somebodies close friend for quite sometime; then we will get into an argument and no longer be friends. Although we fought and wished to not talk, we became good friends again because of all the time we had spent laughing together. Being sad all the time, with no one else to laugh with, made us realize how much we missed each other. Even though meeting someone new was simple; it didn't last as long as the friendship i had with the other person. Truly, when you meet someone for the first time, whether it's a boy or a girl, you will laugh and make jokes almost the whole time. That might even be how it will stay. Once you have known a person for so long, you can tell what type of relationship you will have with them. The connection you make with them is simple;you could get along, or you could always argue. No matter what relationship you make with an acquaintance, will most likely be the same all the time. When you are not as close with another person, you tend to not care about the friendship as often. You wont be as emotional, although your experiences you have with them could always lead to laughing. The time you spend with anyone should always be full of fun and laughter. Another form of laughter could be spent with a boyfriend or girlfriend. in my opinion, you will make a special connection with your other half. When two people have chosen to be together, they're choosing to spend their time getting to know each other on a different level. The fun and laughter they will create can put them on a higher level of love the you would have with a best friend. Couples should be enjoying their time together laughing, and making each other happy. Making each other laugh will allow them to be closer in friendship; becoming comfortable with one another. they will gain more confidence and ability, just by sharing the times laughing together. The laughter you laugh with anyone, will build any type of relationship. Usually the first impression will identify the connection you have with that individual. There are always ways that you will act with one person and not the other. The three different types of friendship that are most common are; acquaintances, boy friend/girl friend, and close friends. All of the friends you make, people you meet, will involve a lot of laughter." 20 15 35 4 4 4 4 4 4 3 3 3 3 3 3 +20988 8 " What's Laughter if not a smile, a small chunk of happiness like a chocolate chip cookie fresh out of the oven, chocolate oozing out of the sides like waterfalls. Laughter can come from a joke, a awkward situation or just about anything. Laughter can be the thing that bonds a friendship. I'm going to tell @CAPS5 a true story surrounding the matter of laughter and how it has been involved in a relationship of my own. It was my first day of high school, I walked in the school looking down at my shoes. I could feel the people around me staring at me but I wasn't sure if I should look back at them and smile or if I should just keep to myself, so I said nothing. I went to the office and I asked them how to find drama class, they give me a map that I had no idea how to read and sent me off. By this time I was scared. A tall @CAPS1 guy with brown shaggy hair and a flannel jacket bumps into me and instead of an ""I'm sorry"" or even a polite ""@CAPS2 me"" he looked at me disgusted and continued down the hallway. It took me some time but I finally found my drama class. The teacher wasn't nice to me, it seemed like she hated everyone. She was kind of rounder and she had short blond hair. Her name was @PERSON1 and she is not in a good mood today. There was a girl sitting next to me and she looked just as scared as I felt. During the first @NUM1 minutes of class we glanced at each other a few times but we said nothing. About half way through the class the girl next to me asked my name, I replied ""@CAPS3"" extremely quietly. As I went to turn away she grabbed my attention by whispering to me, she chuckled ""@CAPS4 @CAPS5 see what she's wearing? What are teachers thinking when they get dressed in the morning?"" I started laughing hysterically. The large teacher lurking in front of me said ""@CAPS5 two, hallway, now!"" I didn't know if laughing was an option but as soon as I stepped out of that door a grin crossed my face and I fell on the floor laughing. I couldn't control myself. Don't get me wrong I didn't think us getting into trouble was funny but this bitter teacher was such a disappointment. Drama teachers are supposed to be fun and nice, or so I thought. The next class period I walked through the auditorium doors and found myself a seat close to the back, next to @CAPS6. @PERSON1 was wearing a green top that looked like it had been spattered with baby throw up, a pair of light blue skinny jean that did not flatter her body, and a pair of hot pink @NUM2 inch high heels. Today she was in a great mood, @CAPS5 could tell by the big fat smile on her face. When anyone talked she would burn a whole in there foreheads with her eyes. It was like getting stung by a bee on a hot @DATE1 day. We would all laugh behind her back but that's the way we got through her class alive. After a few minutes of talking she sent us off to @CAPS4 our first scene. The people in my group were @CAPS6, my friend @CAPS8 who I had met in algebra the day before and a girl I didn't know named @ORGANIZATION1'montae. We all got to know each other quite quickly because we all loved the joys of laughing. @ORGANIZATION1'montae was @CAPS9 @CAPS10 as was @CAPS8. @ORGANIZATION1'montae was taller than me by about @NUM3 inches. She had blond in her hair that was only in her bangs. She was stunningly pretty. @CAPS8 was a quiet, @CAPS4 it alone type of person. She was about @NUM4 inches shorter then me and she had short black hair. It was straight, as I would quickly learn it always was. She was stylish, she had on the cutest brown belt and shoes that matched it with skinny jeans and a @CAPS12 jacket. Her whole outfit screamed adorable. We laughed the whole time, making fun of the teacher and telling jokes. We got barely any work done. That was a day I'll never forget. To this day, I'm still good friends with all three of them and often we talk about that day, and how glad we are that we met. So, as @CAPS5 can see laughing is a big part of my relationships. Its a great way to make friends and everyone loves to laugh. Even when @CAPS5 barely know someone @CAPS5 can quickly find out that laughing leads to friendships. It's like being in your favorite place on earth for just a moment. Laughter is a good way to become close to the people around @CAPS5. The next time your with your friends or grouped with strangers tell them a joke. Priceless! " 20 18 36 36 4 4 4 4 4 4 4 4 5 5 4 3 4 4 5 5 4 3 +20992 8 " So many people sing songs and write stories about sad depressing events, like it's the only thing life consists of. We seem to never stop and focus on the little things. If we could stop and appreciate those little things, everyone would realize just how much they really have. In some way or another we all seek pity and for some reason we want to have the worse story. Like it's some sort of competition. I personally don't want to have the worse story. If you just ""go with it"" things seem more lighthearted, care free, and people would rather be around someone that makes them feel good and happy than someone that makes them feel sad. There is many times where I could have chosen to stay mad and upset, but instead I chose to just laugh, and not make a big deal out of a small mistake. For example, @DATE1 was the @CAPS1 dance. I was supposed to be there early to finish decorating, but I was late (like always). It didn't really matter that I was late because when I got there I found out that it was canceled. By the time they decided to cancel it (due to a power outage) my parents already drove away and they didn't have their cell phones with them. I was stuck at the school. While I was trying to get hold of somebody to pick me up, two of my friends showed up, even though I told them that the dance was canceled. My friend's mom was nice enough to come pick us up. We met the rest of our friends downtown, where we decided to go to @LOCATION1's and play arcade games. We had an amazing time! We all got matching rings and I got two lollipops. When we were done we went up to our friends house, where we watched movies and ate popcorn. I had eaten way to much sugar and was super hyper! I kept saying a ton of random things, but it made for a great evening full of laughing. I could have been really upset that the dance was canceled, all of us could have, but we made the most out of what we had and ended up having a really good time. And I personally think it was more fun than the dance would have been. Another example is when I was a freshman. There was one day that seem particularly hard. I felt like nobody wanted to be my friend or hang out with me. I remember sitting in the hall by myself, feeling like nobody cared. A senior that year came up to me and started talking to me. I remember him telling me that it's harder frown than it is to smile. I realized that he was absolutely right. Even though smiling takes more muscles, frowning in the long run has a worse effect. If I could go back to that day I wouldn't be such a drama queen. I was making a big deal out of something that wasn't even true. I always say things that I latter regret, but if I just ""go with it"" it doesn't seem near as bad. If I could, I would write a dozen songs that have no sad or depressing meaning. Or a millions books based on the happiest things in life. If you fall down, it's better to laugh than to run away crying. What won't kill you will make you stronger. Lots of things make you stronger, like: breakups, heartaches, @CAPS2.E class, and of course laughing. Laughing also makes you live longer; so why wouldn't you laugh as much as you possible could?" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +20993 8 " Many have heard that laughing makes you live longer. I don't know if this is true but I can believe it. When I laugh I feel lighter, my stress load lightens, @PERSON1 I am able to see the world with different eyes. This change in myself is more evident sometimes than others, such as if before the miracle of laughter I was feeling overworked, worn out, or sad. It is my belief that having people to make you laugh is essential to living a fulfilling life, @PERSON1 I am grateful that my days are filled with great friends @PERSON1 funny memories. One of the things that must be present in any relationship is humor; you must be able to make each other laugh. I have had multiple times with my two best friends, @PERSON1, when we simply couldn't stop laughing. I deeply cherish all the time we spend alone together because I know that I will leave feeling happy, with a smile on my face, with many good stories to tell. One of these occasions was @PERSON1's birthday party the @DATE1 before last. @PERSON1 wanted a small party with just the people closest to her there, so @PERSON1 @PERSON1 I were the only ones invited. We live a tiny, cute town, however, there isn't much to do in the area of parties. Because of this, everyone ends up going to @CAPS1, just half an hour away. It was a blistering @DATE1 day @PERSON1 we wanted to show off our tans, so of course @PERSON1 started her party off with a float on the meandering @CAPS2 river. That's when the laughing began. Three twelve year old girls drifting down a river by themselves with a giant beach ball (early birthday present) that was promptly dubbed @CAPS3, what could be so funny? One of the things that makes our friendship so important to preserve is how we find humor in every situation when we are together. They thought it was hilarious that I have an irrational fear of seaweed (or river weed, or pond weed, or any type of water weed for that matter ) @PERSON1 that I would yelp or full out scream every time that some touched me. I thought it was fantastic that @PERSON1 just couldn't hold on to her sandals, @PERSON1 would end up making wild dives for them as they floated away. We both thought the way @PERSON1, the @CAPS4 that she is, was reluctant to get wet was preposterous. @PERSON1, naturally, we pushed her in numerous times. These are the things that make our relationship so special. We can be serious for each other when needed, @PERSON1 no one will disrespect my friends @PERSON1 get away with it, but when we are together, I can let my guard down @PERSON1 can be myself. My goofy, irrational, apparently hilarious self, @PERSON1 still have fun. Our laughter can even change how a situation is going to progress. For example, after we were done on the river, @PERSON1 @PERSON1 @PERSON1 @PERSON1 I went to @ORGANIZATION1 for an afternoon of music @PERSON1 food. We all got enormous ice cream cones, the best money can buy. My friends had already finished theirs, @PERSON1 were playing with @CAPS3 a few yards away. I was just about to take another heavenly lick of my waffle cone when the @CAPS3 the ball flies over @PERSON1 knocks all the ice cream right out of my cone! I was left with a completely intact cone, but all of the good stuff was on the ground. Needless to say, I was devastated. Who knows what would have happened if @PERSON1 @PERSON1 @PERSON1 hadn't started laughing. Maybe I would have teared up, or sulked for an hour or two. However, my face was just so comical, staring in disbelief at the empty cone, that they just couldn't help but laugh. They fell on the grass, in hysterics. Even through my disappointment I started cracking up as well, @PERSON1 then everything seemed okay. Laughter is the shortest distance between two people, or three in my case. My two best friends make me laugh like no other people I have ever met, @PERSON1 I suspect I will never meet anyone else that makes me feel as they do. This laughter we have makes us feel better. It helps us relax @PERSON1 let our guard down, so the times after we laugh together is often when we confide in each other the most. If one of us is feeling down, or is under the weather, laughter is the sure fire way to get them back on their feet @PERSON1 smiling. Even simply being with them makes me feel more exuberant, lets me abandon my troubles. This is why laughter is so important to the the three of us. Whenever we laugh, our relationship builds. It is the good times we have had that help us through the bad times, @PERSON1 I know that our good times wouldn't have been so good were it not for the way we can laugh together." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +20994 8 " The @CAPS1 of Laughter Many people think it is love that brings people together. But love is something that develops over time and brings people closer in the long run. Before you've ever loved someone though, you've laughed with them. Laughter creates conversation, mends relationships, and brings joy to people. Its an important part of any relationship and has certainly helped me make friends. In the kindergarten, everything was new to me. I got to leave my house, go to school, eat lunch, and go to recess. There were many children just like me, bouncing with excitement as our daily routine started. Although we played together at school, at home there was no one around to play with. One day after school, I noticed a boy walking around next to my yard. I walked over and remembered him from that school day in my classroom. ""@CAPS2"", was all I said. He turned around, and with all his might, burped as loud as he could. We fell into a fit of laughter and I knew I'd made a new friend that day. From then on, him and I were bestfriends. Any adventure that happened after school always ended with us laughing about something. There was no need for our parents to set up any ""playdates"" or scheduled time to meet other children because it was easier to laugh at something and make a friend naturally, not awkwardly while the parents chatted. From then on, making friends was a piece of cake.Through grade school and well into my teenage years, I had a best friend and a lot more friends, solely, because of a moment of laughter. Laughing is something that can always ""break the ice"". Whenever you meet someone new, it's always kind of hard to just talk to them. You don't know whether to be serious, outgoing, funny, or quiet. But if something happens that makes both of you laugh, then it becomes easier to communicate because that laughter eases some of the tension in between. It's like riding a bike, after the initial awkwardness, things just get easier and easier. For many, laughter helps heal pain. Tragic things happen in every persons life and it can be hard to deal with at times. Whether it's a breakup, a depressive mood, or maybe even a death of a loved one, something funny and a laugh @MONTH1 help them get their mind off of whatever is bothering them. Most of them time that's all a person wants, something to help them forget what ever troubles them, if only for a few minutes. It's how people build better relationships, they do whatever they can for each other to make each other feel better. Besides it's healing and conversation starting qualities, laughing is simply fun to do. It @MONTH1 start out as a small giggle, turn into a chuckle, and end up as a fifteen minute session of raging, side cramping laughter. And most of the time, you're with friends so they're enjoying the moment of fun and happiness right along with you. If you've never laughed once in your life, there's something wrong. It will eliminate awkward moments, relieve painful thoughts or feelings, and create instant fun. Just try it, it's not that hard. I guarantee that it will bring you closer to someone, make life less stressful, and make you happy." 20 20 40 4 4 5 5 4 4 4 4 5 4 4 4 +20996 8 "When I was younger my sister and I would fight all the time. It would either be verbally or physically. Whatever we fought about we would drag on for hours. Not only would we get more upset as time went on, but my mom and family members got fed up. It didn't help that there was only @NUM1 months between us. It would make everything ten times more tense. My mom had a few tactics to try to get us to stop. One would be grounding us. But we shared a room so that would only make it worse. Another was giving us chores which took up both our time and was annoying , the last one was making us sit criss cross apple sauce, face eachother, and hold hands. We hated this one. But every time that we did it we would end up cracking up and forgetting what we were even fighting about. After we did this we would give eachother a hug and move on. The laughter brought us closer and always helped to fix things." 19 19 38 4 3 4 4 4 4 4 3 4 4 4 4 +20998 8 " Life is so uncertain, unfair, and unforgiving, but one simple thing can change that view on the cruelty of the world; laughter. In your deepest concern in your darkest thoughts laughter can bring the sun. Laughter is a cure for the sick, a pill for the wounded, and comfort for the old. We give not even the slightest thought to laughing, when in return it gives us joy and happiness. Laughter is the light at the end of the tunnel, a flashlight for the lost, and a lifeline for the hopeless. Laughter truly is the cure for all of humanity. Explaining laughter is like explaining why we breath, we just do, it's a part of living. It's natural for people to laugh, maybe not always appropriate, but it's something we revert back to in necessary times. Laughing makes dreams, hopes, and puts to rest the thoughts of uncertainty. Laughing is a friend, a helper, and an icebreaker to many leaving joy and hope to everyone that it meets. It's part of life we must cherish every moment we can. Many times laughter has helped me, but one time sticks out more then the rest. A moment, a simple moment were laughter changed me, my views, and life itself; putting my life into motion. With shoulders slumped I listened to my six period teacher as she droned on about nothing important. I turned around hoping to find something to distract me. When I turned I met eyes with a man I had never had spoken to, he watched me with curiosity waiting for my explanation. I wanted, no, needed to talk to him so I took a chance. ""@CAPS1 you watched wrestling?"" he smiled and chuckled.without that the conversation would @CAPS1 been totally different. He could @CAPS1 ignored me, but he laughed and that altered the course of my life. Soon after that, that man became my boyfriend, because we talked after I asked him that. That laugh made everything so simple, it made the puzzle fall into place. Moments @CAPS1 arise when laughing has dug me a pit of ruins. Even though laughing is such a wonderful thing you still need to be careful and know when the right time to laugh is and when its not. Again a moment that sticks to me was a time when I was young. I played by myself for the most part picking up a barbie I brushed her hair,""@CAPS2 come here."" I heard my father call.I went to the living room where my brother already reside and waited with my barbie. My father kneel to talk,""@CAPS3 going to be leaving soon because she needs sometime. I want you to go with her and make sure everything is okay. I want you to stay with her and I'll see you when I can. I love you @CAPS2 always remember that."" I bubbled with laughter, I didn't realize or even comprehend what was really going on. I laughed as we got into the car, by the time we were gone i realized how serious this issue was. Maybe I didn't hurt anyone by laughing, but it hurt me for not taking it so serious. Life is never know, we never know where life will take us, lead us, kick us, or drop us. Laughter is an emotion and can cure the wounds, but its also a power we must not mistreat or misuse. Giving us joy and fun, it helps pick us up when we fall and it rejoices us. Laughter is a way of life and the savior of humanity." 20 16 36 4 4 4 4 4 4 3 3 3 4 4 3 +20999 8 " Laughter? What is laughter? Well laughter is a contagious disease which is passed around by a group of people from one to the other, ( @CAPS1 speaking) and should be included in every persons life while they are growing up. Here is a true story of how laughter played a key part in my life as a kid. My @CAPS5 has five days of laughter as I call them, that we all celebrate through out the year: birthdays, @LOCATION2, the @DATE1 of @DATE1, @CAPS2 , and @CAPS3. On my birthday the whole @CAPS5 gets together at my grandparents house to celebrate the day I was brought into this world. Usually a couple of days before my birthday my mom grants me the authority to invite some of my friends to come over to go see some event or go to the arcade. Then when we get home we all stay up late playing video games and watching movies. When @LOCATION2 finally decides to greet us with its colorful eggs and candy, my @CAPS5 meets at my uncles house to hide the eggs for us children to find. Which we always seem to miss at least one every year. While we are finding the eggs our parents are taking them and hiding them again. When we first noticed, it was when my uncle was climbing the willow tree in the back yard and placing the eggs back in the spots where we found them. Then watching him try to climb down again. When that is all over we play a game of hid-n-seek. Which is kinda hard to win when there is fourteen people hiding over a one acre lot. On the @DATE1 every one has their own agenda that they fallow. My dad and me go to @LOCATION1, @ORGANIZATION1 to light @CAPS6 on the third of @DATE1 for @CAPS4 @CAPS5 @CAPS6. While waiting for the show to start we play a game of laser tag which ends up being a big game of around fifty people or so. Then on the @DATE1 my dad does his own show in the back yard for us kids which is really exhilarating to watch. Then comes my favorite laughing day @CAPS2. My dad sets up his house as a haunted house. Which is fun since we all get painter and shot up with silly string being flung at us from unseen sources. When we go trick or treating I am usually a solider with a @CAPS8 gun unloaded and fully camouflaged, which makes for an interesting night when they cant find me even though I am right beside them. Later when we get back home it is a competition to see who got the most candy, I usually win because I get to stay out later than my siblings do. Well then, now for the holiday that wraps up all other holidays @CAPS3! a time of gift giving and receiving. mostly receiving for me. We all have a dish we cook and end up with part of that dish on me or whoever dares to enter the kitchen when I am cooking. After every one gets done eating we sit down and commence the opening of the presents in order from youngest to oldest. Then it is a free for all for your own presents until the adults but in and make us go in order again. Its funny to watch them when they are chasing my cousin around the house because he took a present from them. So that is my story of what a year of laughter is for me in a nut shell. That is why laughter should be in everyone's life as they are growing up. It relaxes and builds relationships at the same time. Like a saying my grandparents used to say to us kids when we were sad ""A laugh a day will keep the @CAPS10 at @LOCATION1""." 19 18 37 4 3 4 4 4 4 4 4 4 4 4 3 +21000 8 " A funny Story Many summers ago, @CAPS1 best friend @PERSON1 and I had a sleepover at @CAPS1 house. We were both excited because @CAPS1 dad would be the only one there. @CAPS1 mom and brother were out late. After eating popcorn and getting stuffed up on candy, we decided to try something new and fun. @CAPS1 house has a counter bar where four to five people can sit at and so @CAPS1 daddy decided to turn on some hip hop music. As though @PERSON1 and I could read each others minds we jumped on the counter and started doing the run way model walk. We worked it like no other. It was funny to see @CAPS1 dad pretending to be the fake photographer and say that's ""gorgeous"" as though he was a real photographer. @PERSON1 and I strutted up and down and did stops and poses and turns, until we got too dizzy. We all knew we could never do this with @CAPS1 mom @ORGANIZATION1 which made everything so funny! We all bursted out laughing until we couldn't breath! Later on after that fun model runway we decided to pillow surf down the stairs. I was a little afraid to at first but after I saw the look on @PERSON1's face, I knew I had to do it. I grabbed a big body pillow and surfed down those stairs like a champ! It was such a blast! @PERSON1 and I kept pillow @CAPS2 for what seems forever! @CAPS1 dad put on @ORGANIZATION1 and we laughed the rest of the night away. That night was one of the best and @ORGANIZATION1 memories of @CAPS1 childhood. " 15 15 30 3 3 3 3 3 3 3 3 4 4 3 3 +21001 8 " In my opinion, I think that laughter is a very important part of life. What would the world be like without laughter and jokes? It would be a very boring and dull place. I can't even imagine what it would be like. The world needs to have laughter in it. People need to make jokes and they need to have laughter and comedy in their life. I myself have a lot of laughter in my life. One day in fifth grade my best friend and I were jogging around the track for gym class. We were running together and talking and telling jokes to each other to help pass the time because it was really boring. I told this one really awesome joke, I can't remember what it was, and he started laughing so hard. We were both laughing together to the point we were crying. He fell down on the track, and rolled off into the grass. I said ""@CAPS1 on we need to keep going or the gym teacher will get mad"". He said, ""I can't, I just peed my pants!."" That made me laugh even more. He got up and walked over to the gym teacher. The gym teacher told my friend to go to the nurse's office. After gym class was over I met him back up with him in the classroom and he told me he called his mom and she brought him a new pair of underwear and pants. I wonder what his mom must have thought. It was a funny day. We have always talked about that day together from then on. I would always jokingly make fun of him for peeing his pants, but I told him a funny joke. Our whole relationship was based on making each other laugh and telling jokes. Just all around the two of us being stupid together was what we did. Jokes and laughter made our friendship so much better and gave me amazing memories that I might possibly have for the rest of my life. At the same time, if you have no jokes and laughter in your friendship, it can make your relationship very boring and lame. If you do not have any, or little laughter in your friendship, then you do not have fun with that person and it makes you not want to hang around them because it just feels boring. I have this other friend named @CAPS2, I occasionally go over to his house and we hang out and play video games together. The weird thing is, we hardly even communicate with each other. We just do stuff and don't have any fun with it. There is no jokes or laughter or anything awesome like that. We just play his video games silently not saying a word to the other person. Its the most pathetic thing I have ever seen. It is the most boring friendship two people could have. It is really boring over there because we just do the same thing over and over. I don't really like going over there that much. I would rather be at a different friends house having fun, but I still go over there anyway and I am not sure why. Without jokes and laughter in a friendship, it just makes things boring and not fun. It is something you definitely need to have. Laughter is not just an important element in a friendship, it is also an important element to have in a dating relationship. If you are dating somebody, then you absolutely need to have laughter in your relationship. If you look around you always see couples making jokes together and laughing with each other all the time, having fun. It makes their relationship interesting and enjoyable. Think about it, who wants to date a boring person that doesn't like to laugh and make jokes? Nobody wants to. So in a dating relationship you especially need laughter and comedy more than in a friendship. You want to keep things going good so the other person likes you and thinks your funny. That is one of the key things that makes a couple close. So as you can see by my three examples, laughter really makes a big difference in relationships and just in life in general. If you have laughter in a friendship it can really impact the relationship in a very good way. It makes it an interesting and fun relationship. Laughter makes people happy and get along with each other. If you are feeling down, laughter can always bring you up and make you feel better. It is almost like a medicine. If you do not have laughter, it can really make things suck, and make the relationship boring. Nobody wants that. People do not want a boring, lifeless relationship with somebody. Laughter is something that bring people together in a good way. It brings all of my friends together and makes us better friends. We have a good time and really enjoy ourselves. Laughter is a great thing that everybody needs to have in their life. " 20 21 41 4 4 4 4 4 4 5 4 5 4 4 4 +21002 8 " From Laughter to @CAPS1 @CAPS2 the first day of school last year, I walked through the doors of the school hoping I would make a friend or two. I was not sure of how this would happen but I hoped for the best. I entered my first class and sat at a table with all unknown faces. I wanted to say something but was afraid of their reactions. The teacher made us play a couple games where we had to introduce ourselves. Those didn't really help. Everybody was tense and it was all awkward. I @CAPS3 wanted to be myself already and make friends. For the rest of the day, all my classes were like that. Everybody was tense and awkward, like something was keeping us quiet. Not knowing anybody didn't help the situation a bit. That was the first day for me. The second day I walk through the school doors determined to make some friends. I thought about what jokes I could say, what interesting thing about myself I could share, but to me all those sounded like stupid ideas. I walk into humanities and sat at a table with a friendly looking girl. The teacher told us to introduce ourselves to the other students at the table we were sitting at. For a minute or so it was very silent, but i wanted to introduce myself so bad. I couldn't stand this silence any longer. I looked in by back pack to grab a pencil and I see a note from my mom saying "" @CAPS4 be yourself and make some friends honey, have a great day at school. :) "". I started laughing because I thought it was funny that my mom actually wrote me a note and stuck it in my back pack. It was so unexpected and I felt like a child. I started laughing and when I looked up, I saw that the girl next to me was laughing too. I knew I had to say something, so I did. I said, "" @CAPS5 my names @PERSON1, but you can call me @CAPS4 for short. Whats your name? "". The girl looked at me, smiled, and said, "" @CAPS5, my names @CAPS8"". Then I asked her what middle school she came from and other questions. We stared talking, we exchanged numbers, and we became good friends. From laughter to @CAPS1, who would have known? A year has gone by and we are still friends. We always laugh about how we started talking. A few days ago I told her how I felt @CAPS2 that second day of school. I told her I was scared to introduce myself. She said she felt the same way and she didn't know what to do either. Since then I thank my mom for writing that note because without it I wouldn't have laughed and made @CAPS8 laugh and I wouldn't have made such a great friend." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21003 8 " It's the first day of high school and your gut is full of butterflies that make you want to run to the bathrooms and hide from the world. I had @CAPS7 friends yet and I was to shy to go and join any of the groups so I walked to all of my classes alone. Students would get in my face wanting to know what school I came from and wanted to know all about me. I remember wanting to be left alone, hidden in my own bubble space. Girls would ask @CAPS5 I was upset since I wasn't smiling or having fun getting to know my new classes. Lunch was much more crowded than my old school. Students would sit in hallways eating their lunch or crowd around one big table chattering loudly to one another. I chewed on my lip looking for a spot that wasn't occupied by students. I found a table near the front of the lunch room that was empty and placed my brown lunch sack in front of me eating my peanut butter and jelly sandwich. Two boys and two girls rushed over and settled down next to me laughing at one another for not getting a seat next to me.""@CAPS1 I'm @PERSON3, what's your name?"" was a skinny boy in a black caps response to me. ""@PERSON1"" was all I replied to all of them who stared at me the entire time.""That's a pretty name, I'm @LOCATION1, this is @LOCATION2, you just met @PERSON3, and @PERSON4 is the funny kid next to you with his orange back pack,"" I smiled and nodded to them @ORGANIZATION2 had on a @CAPS2 @CAPS3 t-shirt and @PERSON2 had on a military uniform that said @CAPS4. They all ate lunch at the school and got pizza or sub sandwiches. They showed pictures of funny events on their phones to everyone even including me.""@CAPS5 that kid isn't careful he might get razor rash."" I said laughing a little looking at the picture of a little boy sliding down a slide that looked like a cheese grader. @PERSON3 took off all his pepperoni and was flinging it randomly in the air. @PERSON2 was going to take a picture of everyone for picture id on her phone. @PERSON4 was next for his picture to be taken when the pepperoni in @LOCATION3's hands slipped and landed smack on @ORGANIZATION1's face. I busted up laughing and everyone at the table joined in. @PERSON3 and I were clenching our stomachs and wiping away tears. @PERSON4 went to the bathroom to wash away the smell from his face and when he returned @PERSON2 said,""@CAPS6 my word you should see your face I took your picture right after the pepperoni hit your face and your picture is just hilarious, your mouth is hanging open like your going to eat something and like your angry."" @PERSON2 handed her phone to one person at a time and we all started to laugh again asking for @PERSON2 to send the picture to each of them.""I was wondering @CAPS5 I could be your guys friend?"" I asked looking them all in the eye. @ORGANIZATION2 was the only one to respond,""@CAPS7 you can't be our friend, @PERSON1 duh @CAPS5 we didn't want to be your friend then we wouldn't be hanging out with you."" @ORGANIZATION2 teased. My twisted gut loosened with re-leaf.""@CAPS8 we probably would have made some excuse to leave,"" @PERSON3 smiled. I laughed at myself for worrying that I wouldn't fit in or have friends who could make me laugh as hard as I did when the pepperoni stuck to @LOCATION4's face." 20 16 36 4 4 4 3 4 4 3 3 4 4 4 3 +21004 8 "Laughter can sometimes be something that everyone shares together, sometimes it's used only for few as it's aimed against one another. But hopefully most of the time it's something that we all can share. Laughter opens up a relationship to where people can feel more comfortable with one another. Someone could be a complete stranger to one another and then just by a simple joke, laughter could make them look like they've been friends for years. Now laughing isn't the only thing that helps people become acquainted with one another, they can share similar hobbies or likes and dislikes, but most of the time laughter is something that everyone needs in a relationship. I remember when I fisrt met my friend @PERSON1, he wasn't to outgoing, but through making jokes he seemed more comfortable in talking with others. Me and him would often talk about @CAPS1 our daily lifes where to much to handle, but instead of making jokes about it, we decided to laugh about @CAPS1 we were complaining when our lifes we easy compared to others. Some people have to work @NUM1 jobs to support a family and we're over here complaining about @CAPS1 we have to wake up and go to school, we laughed at @CAPS1 pathetic we sounded. A couple of days later we found ourselves thinking about what we wanted to do when we older and out of high school. @PERSON1 said he wants to be a taekwando instuctor and that he's already got a small job at one, I said ""@CAPS1 did you get the job?"", he replied ""I kicked a kid in the face pretty hard when my instuctor was watching"". We both laughed really hard, and just by that laugh we became even more of friends, cause it's through laughter that we can become civilized." 14 15 29 3 2 3 3 3 3 3 3 3 3 3 3 +21005 8 " Laughter @CAPS1 is one the most important things in life. People shouldn't go a day without @CAPS1. It's healthy and good in any relationship. It can also help with healing. The best kind of laughter is when you're out of breath and crying. It makes people so happy and wanting more. Don't take life too seriously, just laugh and smile all the time. Someone dying is a dreadful thing. When two high school boys die, it's even worse. On a @DATE1 @TIME1, a group of high school students were walking on the rocks by the ocean, when a sneaker wave snatched two of them. The other kids tried so hard to save them by making a rope of clothing to reach them, but it didn't work. Two beautiful lives were taken away that day, and will not be forgotten. The boys were well liked and had great lives. The families of the students, the school, friends and the community were in shock, and couldn't believe the terrible news. How could this happen to such amazing people. Hundreds of students gathered at church the following @DATE2, most in tears. They talked about the two boys, and had a huge group prayer. Friends spoke well of them, missing them greatly, talking about the good, fun, memorable times. @CAPS1 can make it better. As someone once said, smile because they lived, don't cry because they're gone. At the school's basketball game, they honored the boys, and won the game for them. Parents and friends spoke about the beautiful kids in front of almost @NUM1 people, that came to support the school. The game was a time for having a good time and not to sob and mope. This game helped heal the community just a little more. @CAPS1 and cheering really can help the heart. As days, weeks, and months go on, people will still be heartbroken. Although, as long as we laugh and smile about the good times of those who left, we can make it though anything. @CAPS1 makes you feel better. It just shows you that you have to make the best with what you have, and always have a fun time with no regrets. Always tell the people that mean something to you, that you love them. Never stop telling people you love them, and never leave in a fight. You don't know when it might be the last time you see them. @CAPS1 is so important, and without it life would not be as great as it is." 15 17 32 3 3 3 3 3 3 4 3 4 4 4 3 +21006 8 " People can share many things. DNA, clothes, feelings, beliefs, religion, and laughter. For my sister @PERSON3 and I, laughter is what made our relationship stronger than it ever would. When I was younger it was the typical older sister @LOCATION1 younger sister vibe, frankly we did not like each other at all. Through maturing, entering high school, and being part of the same cheer leading organization we have spent almost too much time together and now it's almost as if we are the best of friends. In the @DATE3 we were together constantly. We would watchJerry @PERSON1, laugh and/or make fun of the people who volunteered to be on the show. We would watch clips of the showSaturday @TIME1 @CAPS1, that's where I introduced her to the character ""@CAPS2"". @PERSON3 and I would talk to each other in the voice that we adapted from ""@CAPS2"" and laugh constantly about @NUM1 @TIME1 @CAPS1 is also where we adapted the ""demonic voice"". We would talk to each other, and our friends in these voices. Both of us still talk like that @DATE1. As we entered high school we had to start driving together everyday to and from school. We would listen to music, make up random dance moves and sometimes I would have to steer if her favorite song came on(she was a very energetic dancer). It was all in good fun though. When we would enter into the school everything would change though and I understood that after about a week. I was the annoying younger sister who couldn't say hi to her in the hall or wave at her when she was around her friends. She wanted to be left alone so she wouldn't look weird. She was a junior then, they always think their the coolest around. Once she was a senior she would say hi to me, she would smile when she saw me, I even talked to her and her friends sometime. We also grew closer once I entered the student leadership class that she was also apart of, we had the same class every other day it was hard not to talk to each other. The single thing that I believe has made our relationship closer because of laughter was the three weeks she stayed in my room. She decided to ""move in"" when she would wake up in the morning with bug bites on her arms and legs and she would have no idea what they were from. We suspected that she just didn't remember getting them when she was out the @TIME1 before, but then when she wouldn't go out she still got them. We figured out what it was when her friend @PERSON2 came over; she had bed bugs. That @TIME1 I separated the two mattresses I sleep on and made her a bed thinking she would only be there for two three nights tops so my parents had time to disinfect her room. That turned into two three weeks. We spend almost every hour of every day together those three weeks, the only peace I got was in the shower. We would stay up late talking about our day, who we didn't like, who's outfit we really liked that day, what we wanted to do in cheer practice and who could have done better at cheering. If you knew @PERSON3 you would know how scared she gets over a movie so half the time when we were up late I was next to her trying to scare her. It's quite funny to see her reaction. Finally she ""moved out"" and I got my room back though I don't think, even now it feels the same as it did. They say many things about laughter; ""Laughter is the best medicine"" ""Laughter is the shortest distance between people"" ""@CAPS5 two people in a room, they'll be laughing in @NUM2 minutes""; All of these talking about how relationships grow with laughter. I have the funniest, silliest, greatest sister in the world because we can laugh at the same things. We have the same mind people say, we do a lot of the same things, we think a lot alike, and we wear a lot of the same things as well. I am positive laughter has strengthened my sister and I's relationship. I bet if you really look at the relationship between you and someone you're close to, the first memory you think of is a happy moment of you laughing." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21007 8 "One day i was going to my friend @ORGANIZATION1 @PERSON1's house for her @NUM1 birthday party. I knew the birthday party was going to be a lot of fun even though it was only going to be @ORGANIZATION1, @CAPS1 and I. I didn't know it was going to be as fun as it turned out to be though. The whole day i was waiting for it to be @NUM2 so i could go to her house. I packed all my bags and got everything ready, because it was a sleep over. As i was one my way to her she called me and said ""before you get to my house look to the right."" The whole way my dad and i were driving to her house i kept my eyes on the right side of the rode, i wasn't quit sure what i was looking for though. As we got closer i saw something in the bushes. It was @ORGANIZATION1 and @PERSON2. I told my dad to honk at them so they knew i was there and as he did, they both pulled down there pants and mooned us! I was laughing so hard the whole night i kept thinking about the look on my dads face! Little did i know that wasn't going to be the funniest thing that happened that night. Later on @ORGANIZATION1, @PERSON2 and I went on a walk down to the dock by @LOCATION1 house. While we were on the dock a bat flew by and @PERSON2 almost fell in the water cause she was so scared. @ORGANIZATION1 and I were standing behind her laughing so hard! By that time it was getting kind of dark and her neighbors were being really loud. So we ran from the dock to her neighbors house and hid and started yelling things at them to quiet down! It was so funny because they had no idea where the yells were coming from so they just kept looking around confused. We started laughing so hard we could hardly be quiet. We had to wait a while for her neighbors to stop looking around trying to figure out who was telling them to be quiet. That's not the funniest thing that happened either! As we were walking back to @LOCATION1 house we heard a car coming so we made a plan I stood in the middle of the street and @ORGANIZATION1 stood ahead of me while @PERSON2 was hiding in the bushes. The plan was @ORGANIZATION1 and I were going to pretend to be in a fight and @PERSON2 was going to run out of the bushes and pretend to shoot me. So the car starts turning the corner and me and @ORGANIZATION1 start fake fighting. As the car gets closer it starts slowing down and here come @PERSON2 running out of the bushes and @CAPS2! Pretends to fake shoot me. I fall to the ground like i am really hurt trying to hold back my laughs, and man did we think we got the people in the car good. Then we realize there is no way she actually shot me when there was no gun shot sound at all! So the people in the car come up closer and they are laughing so hard that we can hear them before we can even see who it is. When they got closer we realized it was just some of @ORGANIZATION1's family friends coming over for the party so they knew it was fake the whole time. When it got darker outside we found a huge watermelon and took it out to a bridge by @LOCATION1 house. We brought her video camera and put it on night vision and threw the watermelon of the bridge. When it hit the water it mad a really loud sound and split into a bunch of tiny pieces! That night was one of the best and funniest nights i have ever had. The next day all the fun continued by going to the lake and swinging on rope swings into the water. @ORGANIZATION1 got a really bad rope burn and it was hilarious! @PERSON2, @ORGANIZATION1 and I always have the best time together and tons of laughs. A lot more happened that night, it was overall a great @NUM1 birthday for @ORGANIZATION1. I'm glad i got to be there with her for it." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21008 8 " We all have had times when some thing happened and you just thought of it as a nuisance. But looking back on the same occurrence you just have to laugh at how silly it was. I recall one of these experiences when I went on a motorcycle camping trip this @DATE1. It was a bright and sunny day when my dad dropped me off at the beginning of the main logging road of the area. I decided to keep my pace slow and steady and just enjoy the beautiful scenery. Later that day I found a picturesque place to camp for a few nights on the river. In the @TIME1, I remembered some spurs off the main road from when I have driven with my brother in these woods and decided to go explore some of them near my camp. I decided to go check out one across the river that looked like a fun ride. As I was crossing the it my front tire hit some lose rocks causing me to fall into the water! Thankfully I fell away from my motorcycle, if I hadn't it could very well have fallen on me which, out in the woods by myself, would have put me in quite the predicament. After getting my @ORGANIZATION1 up and out of the water I headed back to camp to dry my clothes off, seeing as how I only brought one set with me. While reading a book and waiting for my clothes to dry I fell into a deep sleep. When I woke up I realized that the sun had been up for some time now so I decided that I had better get going on another ride before the day's out. This time I stayed on my side of the water and went up a steep road that lead up to the top of the ridge. As I climbed it became increasingly warm then I broke through the woods and witnessed a glorious sight. The sun was just cresting the ridge in front of me and I had to stop and bask in the sun shine. After a while of just sitting I got going again. The road I was on started to taper down into a valley. At the bottom of it, flood waters had washed large quantity's of silt over the road and it was still muddy. As I crossed it my wheels started spinning out and flinging mud at me as a result I ended up very dirty. Once again I headed back to camp to wash my clothes in the river. This time I didn't fall a sleep for quite some time and when I did it was a fit full one.upon waking I packed up my meager supply's and headed out to complete my journey. Most of a day got me only half way to my destination so I was forced to stop and rest for the night. Just setting out my tent and getting out some food for dinner and breakfast in the @TIME1 didn't take me very long. Having little to occupy my time I just sat by my fire and pondered my trip and life in general. When I fell asleep I slept soundly until @TIME1. Waking to the sound of birds chirping and the river rushing by me was delightful and invigorating. It only took me a few hours to reach where my dad was going to meet me and take me home.This trip helped me think and gater my thoughts. It also helped me enjoy the little things in life that we so often take for granted. Looking back at it always makes me laugh and realize that my errors could have been much worse but as it turned out they were just minor set backs. All in all it was a very good time to gather my thoughts and renew my soul." 20 20 40 4 4 4 4 4 4 4 4 5 5 4 4 +21009 8 " Laughter is a natural reaction every human being has when they are either happy or have heard or seen something that is funny to them. It is healthy to be happy other than sad or mad. Laughter is pretty much a sign of happiness, as crying is of sadness. It is just another natural emotion any person is born with. I agree to the quote someone once said about laughter being the closest distance between two people because, if two people get along, they will have many moments in life together where they are happy. It is easy to get along with people who have a good sense of humor as for they won't take everything personally and can understand a joke. Its always good to have a sense of humor because its something everyone appreciates, also, that way people can see that you like to have fun when you know you don't have to be serious. When your with a group of friends that you get along with very well, one of the main things you will hear is laughter. It shows that you get along and that your having a good time. Of course there are times when its better not to laugh, or when people laugh for no reason, which often gets annoying. Yes laughing means your happy, but when its not needed and is used just to cause noise, it is better to be quiet than annoy everyone around you. In my group of friends we are always laughing and joking around with each other, i like when people have a good sense of humor, i feel more relaxed and its easier to talk to them. Unless, that is, they take everything as a joke and never take anything seriously. Even though it is natural, you have to know when you can and cant laugh. Its a way to show happiness, but in certain situations, it can be disrespectful or rude. Sometimes when I'm with my friends, they @MONTH1 joke around about a certain person, and once it happened like this;at my friends birthday party, we all went to a bowling alley and as always, were all standing around talking and having a good time. While we were talking, @PERSON3 and @PERSON4 were joking around about something so we all started listening to their conversation. They were joking around about something and then @PERSON3 said something as to turn him down in some way, ask a joke, and @PERSON4 said that hes going to get his heart broken. Right after that was said, @ORGANIZATION1 pitched in, adding again. So it turned out to sound like @PERSON4 was going to have his heart broken again. As everyone laughed at it, @PERSON4 looked at @ORGANIZATION1 with a hurt expression and was the only one not laughing. You see, @PERSON4 had a girlfriend that broke up with him about two months ago, @ORGANIZATION1 forgot about that and didn't mean anything when she added ""again"". She meant it as a joke but it turned out to sound very mean. In this case, the laughter caused by @ORGANIZATION1 was meant for @PERSON4, who was hurt by @ORGANIZATION1's comment. Good thing @ORGANIZATION1 noticed and remembered about @PERSON4's ex later that day. She ended up apologizing for saying something she should have thought through more carefully before saying. How a person takes it when people laugh at them, has a lot to do with friendship. One time, my friends were driving to a party, or home from a party and were listening to music in the car, one of the guys in the car was singing his heard out to a song by @PERSON1. At one point, while he was singing, his best friend suddenly turned down the volume so everyone in the car heard @PERSON2 sing really loud, with no music. Everyone started laughing because @PERSON2 didn't know that @CAPS1 would turn off the music in the middle of something. Even though it was kind of embarrassing, @PERSON2 laughed along because it was pretty funny. If @PERSON2 and @CAPS1 weren't such good friends, i think for sure @PERSON2 would have gotten mad at @CAPS1 for doing such a thing to him while there where other people in the car aside from just them two. Friends understand each others sense of humor, and know when doing something is going to far, or when the other person will think it's funny too and will laugh along. So as you see, laughter can be happy, thankful, annoying, and or mean, you just have to know when it's okay to do, and when it is better not to laugh. Even though it's a natural reaction, it is one that can be controlled and thought about before doing. Next time someone says something that's funny, first think about if it can be insulting to someone before laughing at it and hurting someone. Otherwise, enjoy life and be happy." 17 16 33 4 4 4 4 3 3 3 3 4 4 4 3 +21010 8 " One day I decided to go over to my friend @PERSON1's house. When I went over there we cleaned the pool and i ran from her dad because he was chasing me around with a booger on his finger. This was one of the days that me and @PERSON1 laughed more then ever! We started the day just laying in her bad and watching a movie on her tiny @CAPS1. I can't really remember what movie is was but it doesn't really matter since we were too busy talking about totally random things. After the movie was over we went out into the living room to watch @CAPS2 bob because @PERSON1 doesn't have cable in her room. At the time, I had a knee injury so it took me a minute to get comfortable. I got myself situated on the couch and @PERSON1 sat next to me. Her dad came in about @NUM1 minutes later with a booger on his index finger. He threatened to give me booger lip, which is where he puts the booger on your lip, and I got up and tried to run away. I knew if I didn't get away he would really put in on my lip because he had done it before. it hurt really bad putting that much pressure on my knee so I hoped as fast as I could on one leg. I hid in @PERSON1's closet and all I could hear in the background was @PERSON1's laughter and her dads footsteps. I waited in her closet for like @NUM2 minutes and the got out because I could tell the coast was clear. I went back out in the living room and @PERSON1 and I laughed about the whole thing. After we stopped laughing we decided to go outside and clean the pool. we were in the mood for swimming and the pool had been out all winter so it was really nasty in there. there were tat poles, dirt, some slimy green stuff, parasites and who knows what else. I wouldn't be surprised if there were fish in there. We got in and started scooping all of the water out with buckets. We didn't notice the tad poles until then. We didn't want to throw them out in the yard with all of the rest of the water because we knew that there would dry up and die. So every time we scooped a bucket full of water, we would go through it and get all of them out and put them in a little can that we had saved the tad poles and scooping all of the water out took about @NUM3 and a half hours. after that we went in the house and looked for some pool cleaner and soap. We couldn't find and so we went and got the shampoo. We poured the shampoo all over the bottom of the pool and started scrubbing. That was taking too long and it wasn't very fun so we got the brilliant idea to put shampoo all over our clothes and slide around. I slipped about a dozen times and so did she. It was hard to stay on our feet. We laughed so hard I almost peed myself but I couldn't go inside because I was soaked and I had soap all over my body. After the pool was all spick and span we had to scoop all out the soap and water out again. All of this took about @NUM4 hours but it was really and we laughed a lot. @PERSON1's mom came home from work and was so happy that we cleaned it because it meant she doesn't have to do it. After my grandpa came to get me, me and @PERSON1 said our goodbyes. I went home and thought about how that was one of the funnest days of my life. Over all, I think on this day I laughed more then ever before." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21012 8 " @CAPS4 @CAPS1 @CAPS2 @CAPS3 you ever felt like there just wasent enugh time in the day to do everything you would like to do.@CAPS7 that's how i feel every day,@CAPS4 @CAPS2 i find it very tireing and screwed up,and it all started when i got @CAPS4 job at the @ORGANIZATION1.Ever sinc i got the job i never @CAPS3 an time for school,@CAPS5,and can hardly get any rest.@CAPS4 greads @CAPS3 been dropping little by little.@CAPS10 always tired falling asleep in classes or just to lazy to do @CAPS4 work,I would cut down on @CAPS4 hours but i need as much money as i can get to help @CAPS4 mom out as much as i can.@CAPS4 mom didn't really do much with her @CAPS2 so now she has nothing really to live off of .So i feel that i @CAPS3 to help her out as much as i can,@CAPS4 older brother would @CAPS3 hade this responsibility but he got hes girlfriend pragnet and moved out to live hes own @CAPS2 at an early age.So by me being the second oldest i find it @CAPS4 responsibility to take care of @CAPS4 mom. I love @CAPS4 mom very much and she has been there all @CAPS4 @CAPS2,unlike @CAPS4 dad...so ill do as much as i can to see to it that she stays wealthy.Becuse when shes gone @CAPS10 not sure what i would do without her. @CAPS4 little brother is a pain in @CAPS4 back he never dose anything to help aroud the house or like help @CAPS4 mom out when she breings home grossuries or anything like that,so i think that @CAPS10 going to @CAPS3 to set him streath.I know mom wont like it but ""All @CAPS7""he needs to stop being so lazy and help our mom more. Now back to me @CAPS10 a pertty good kid i think anyways,@CAPS7 @CAPS10 a trubel maker dont get me wrong but if i did the right things i could be a secssful kid.I try to be that kid some times but it's just so boring and i just cant do it becuse when i try i feel like @CAPS10 tryung to be a hole different person,@CAPS9 just not me @CAPS10 a loud and hiper kid that is the class clown in the class rooms.Like pepole are always asking me if i @CAPS3 any plans for galleage and all i ever say is that i dont think that @CAPS10 calleage smart and that ill be lucky if i graduate.@CAPS10 trying to bring @CAPS4 grades back up but @CAPS9 hard when you @CAPS3 so much othere stuff to do out of school,like @CAPS4 job and now seens winter is about over spring is on it's way,that means work is going to get alot busyer and i am going to @CAPS3 to work alot more.To tell you the truth @CAPS10 not sure if or how @CAPS10 going to do it all. With all of this responsibility i am going to be one tired teen age boy,@CAPS10 pertty sure that i can handl it if i really try @CAPS4 best.All i know is that i need to find a better job thats less stressful,tireing and less days to work but get payed better money.Like at jiffy lube of someting anyting is better then working at a fast foods place." 15 15 30 3 3 3 3 3 3 3 3 4 3 3 3 +21013 8 I think that laughter is very important. It is very important to me because let's say that a student falls and you laugh at him just because you think its funny it's going to hurt that student. I think that instead of laughing at someone that you could be a good kid and ask him if he is ok and help him up. That shows that student that he really has a friend that cares about him alot and doesn't laugh at him and really cares about his best friend. You also can get rewarded for doing something good but to me it's really not about what I get it's the things i do to help out my peer's . I think that we should not laugh and have a positive attitude and be mature about what we do and what we say and reacact to things like laughing at someone else. I also think that if I would have fell and I got really hurt and kids would start laughing at me so thats what I learn respect the students the way that you want to be respected. So I wouldnt like people to make fun of me so why would I like to make fun of someone else if I wouldnt want them to make fun of me thats why you should treat your peers with respect. 10 17 24 24 2 2 3 2 2 2 4 4 4 4 3 3 3 3 3 3 2 2 +21014 8 " One day i was with my friend @PERSON1. We had been friends for a really long time. I was in a bad mood that day because my dog, taco ran away and i had gotten into an arguement with my parents. @CAPS4 asked me if i wanted to go out on a walk, and i said i did. We were really good friends at this piont, and @CAPS4 always knew when something was wrong, even though i think i hide @CAPS1 pretty well. As we wakled, we walked past children playing at the park with thier parents, and a man playing fetch with his dog, @CAPS1 was sunny and warm. @CAPS1 was durring the summer-time. We stood on the bridge for a minute, then @CAPS4 asked me ""whats wrong, @CAPS2?"" @CAPS3 @CAPS1 odl him everything that happend, i told him that my dog had ran away and that my parents were mad at me. I told him that i was sad. I dont know why i opend up to him like that we hardly ever talk about our life drama. we're always laughing and making jokes. I thought @CAPS4 liked me, actually i was hoping @CAPS4 did. I liked him, i had for a while. We started talking about everything that was going on in our lifes, school, friends, parents, and alot more. @CAPS4 put me in a better mood. We decided to go to the park and sit at the pic-nic tables. We sat across from eachother, and sat there talking for a while. Then @CAPS1 started getting late and i had to get home. I said ""thanks for cheerig me up, i really needed to laugh and smile today."" @CAPS4 looked at me, and took my hand in his and said ""@CAPS5 should always laugh, because @CAPS5 never know who is falling in love with your smile."" and then @CAPS4 kissed me. That is the a day i'll remember for a long time. I'm still with @PERSON1, we've been together for almost @NUM1 months now." 17 16 33 4 4 4 4 3 3 3 3 4 4 4 3 +21015 8 " The @CAPS1 @CAPS2 @CAPS3 extreme temperatures occur, the situation becomes very dangerous. In my case, the extreme weather was @CAPS1. I lived in @LOCATION2, @LOCATION1 at this time and was eight years old. It happened in the middle of @DATE1, @CAPS3 an almost record high temperature occurred @LOCATION2. The day had peaked at one hundred twenty five degrees @CAPS4, and to make matters much worse, our entire neighborhoods power had gone out. Nobody had air conditioning and many people ended up getting severely sick or injured. We lived in a gated community, and everyone got along great. People from the neighborhood gathered together and put up tents for shade, and provided everyone with cold water. There are important things that you must remember @CAPS3 a situation like this happens, you must have a good attitude, because it's no help to be complaining, also to not think about the @CAPS1, and to help other people who need it. I don't think that our community would have lasted, if it weren't of everyone's great attitude and spirit, and of course, the laughter. It is so important to have a good attitude during a situation like this. What is the point of complaining and getting mad for no reason? I was told that it would not last forever, and to keep my chin up. I could tell that the many other kids, and even adults who were complaining were have a much harder time coping with this situation. It was very hard for me no not complain, being an eight year-old, but I eventually managed with the help of a lot of water. If you keep your spirits up, and interact with people, the say seems to go by much faster. I remember @CAPS3 my whole family was under one of the tents, just sitting around telling funny stories, and telling jokes. I would have much rather had a day like that with my family than a normal, boring one. Out of the many important things you could possibly do, is to not think about the @CAPS1. If you don't think about it, then you will have a much better time and not be complaining. It is important in many situations to keep your mind off the topic so you won't be stressed out. I saw many people there who just couldn't take it. They would only say how bad it was, and it was very easy to tell that they were all stressed out. If you try to make the situation a good one, and not keep thinking about it, then you will get through it, no matter how bad it is. During this @CAPS2 of @CAPS1, many people needed assistance. The community was a big help because they set up tents and provided people with water and snacks. However, it started to get bad, people were suffering from @CAPS1 exhaustion, and many of them had to be put on @CAPS5's. There were several ambulances there to help people out and get them back to normal. Some people did need to go to the hospital and get further attention. The community eventually got through the day with so serious injuries. The power came back on at around six o'clock. Being exhausted the people slowly walked or drove back to their houses. Our whole family walked back to the house and immediately turned on the air conditioning. Everyone was so relieved and happy that we were finally out of that situation. Even at night, the day was at a low of one hundred twelve degrees. We played games and told jokes the rest of the night and were able to get through it all. Our family had stayed strong through the @CAPS1, while many others didn't last. It just goes to show that ,""Laughter is the shortest distance between two people.""" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21016 8 " Laughter is such a great joy in my life. If people never laughed life would be dull and boring, most of my favorite experiences involve @CAPS9 while having a good time. One of my best experiences with laughter was going camping with my friends last @DATE2. I will never forget that experience last @DATE2. During the middle of @DATE2 on a beautiful sunny @DATE1 @TIME1 my @CAPS4 @CAPS1 calls me and @CAPS2 me were getting a bunch of guys to go camping and I should come. Immediately I @CAPS3 my parents to let me go with the only exception of turning in my job application to @ORGANIZATION1 before I left for camping. After turning in my application I got in the car picked up my @CAPS4 @PERSON3 and makings for peanut butter and jelly sandwiches and left for the adventure. After I got to my destination after driving @NUM1 miles up river I didn't see anyone just two huge tents where my friends were supposed to be. Looking @CAPS5 the camp site had been attacked by bears with trash laying all around and camp fire still going i started searching for my friends. I found @CAPS1 passed out in one of the tents and tried to wake him but he was dead asleep. @PERSON3 and me not knowing what to do so we sat in the shade of the large trees surrounding us, it was a good @NUM2 degrees outside. After about five minuets we herd a splash and went to investigate. We walked towards the river and found all of out friends jumping off a @NUM3 ft rock into the river and we went to join the fun. After jumping off about @NUM4 times each we headed back to camp. @CAPS1 was awake and @PERSON1, @PERSON2, @CAPS7, @PERSON3 and myself all huddled around the camp fire @CAPS8 we returned to camp and told jokes all night. All of us really bonded that three day camping trip @CAPS9 and joking and just being boys. I wouldn't get rid of those memory's for anything. After camping i returned to home and worked a lot of the rest of @DATE2 but ever since then have had really good friendships with all of my camping buddies." 16 15 31 2 3 3 3 3 4 3 3 3 3 3 3 +21017 8 " Once upon a time on @DATE1, I had my birthday party and my friends come over. My friend tree brought his projector over and hooked his @CAPS1 to it. We played @CAPS2: @CAPS3 on his projector and on my @CAPS4.V. with my @CAPS1. Then we got bored and all of us went out into the living room with the girls and chilled and hung out for a while then we had cake, had an icing fight, and played games laughed so hard. Then we went to the park that was by our apartment. We played @CAPS6 and made jokes and laughed a lot more. Then we went back to my place and we watched @CAPS7 @CAPS8 @NUM1 and laughed at the people who screamed. Then we play spin the bottle/truth or dare and we laughed a lot." 12 15 27 2 2 3 2 2 3 3 3 3 3 3 3 +21020 8 " The only true story that I can remember that involves laughter was about @NUM1 years ago at the beach. I was with my mom and my sister @LOCATION1. I was running from incoming waves when I decided to run into just one wave which that wave sweep me off my feet and spun me around for what seemed like forever, but wasn't even @NUM2 seconds. I laughed so hard that I tripped and i started spinning again, my mom had to get me up because I could not stop. I got so many cuts from the sand that it was hilarious. after I got changed I got a big chest that my dad could fit inside it. That's the only time I remember laughter being my true friend." 18 15 33 3 3 3 3 4 4 3 3 3 4 3 3 +21021 8 " My @CAPS1 year of high school started off less favorable than most. During the end of my eighth grade year I found that my friends were not as loyal as I believed they were at the beginning of our friendship, and in turn started high school without any. It wasn't all bad because I was able to see things for myself for one of the first times in my life. Of course I sulked but looking back on it now I am appreciative of this time that helped me get to know myself better. However one can't go through life without any friends so I quickly tried to conform to what was considered 'normal'. I had luck from the start, but I was still scorned from being deserted by all the people who I once considered friends and in turn took these recipients as little more than acquaintances. Like most acquaintances we only spoke in class and kept the conversation casual about nothing more than trivial facts. I wanted to have 'real' friends, but I wasn't sure what a real friend was. I suppose that these so called acquaintance considered me a friend though I can never be sure whether or not this is true. So I continued through my days with a person to talk to in each class but no one to sit with at lunch. This circumstance however was made more desirable because my sister still attended the high school at this point. Her presence made my life slightly easier because I could confide in her and even eat lunch with her. People who have always had friends @MONTH1 not understand, but when you have no where to sit at lunch it can be kind of lonely. Fortunately my sister was always there for me, though she did skip a lot of school. And whenever she wasn't there I could rely on her friends to keep me company. I found that even if I couldn't find my own friends I could always share my sisters. This nomad existence continued until the second trimester of my @CAPS1 year. I had all knew classes and felt as if it was a new beginning and anything could happen, and truly anything I could imagine did. It started out the same as the trimester before had. I went to my first couple classes and gained more acquaintances like usual and felt as if thing might not change after all. However after five minutes of sitting alone in my apparel construction class two girls walked in and sat at my table. Their conversation caught my attention and held it. I knew that it was wrong to listen to others conversations, but I figured that if they didn't want me to hear they would have spoke quietly. Though I can't recall the actual subject of the conversation now, I remember it was a hilarious topic. Even though I took no part in the discussion, I couldn't help but be overcome with laughter as the two spoke. They then began to laugh so hard which resulted in tears filling their eyes. In turn my eyes also began to fill with tears from the extreme amounts of laughter. One of the two girls looked over at me and told her friend out loud to ""look at her, shes laughing so hard at you shes crying!"" I could hardly stop laughing long enough to introduce myself. Before i knew it we became close friends and it was all due to the amazing powers of laughter that can bring to strangers together into best friends." 20 20 40 4 4 5 5 4 4 4 4 4 4 4 4 +21022 8 " I'm going to tell you a story of smiles, laughter, and love. The story of my @DATE3 and how I changed the a girl's life and my own with only smiles and laughs. I have three major memories of my time with her, there was the first smile, the day at the beach, and the @TIME1 at the @LOCATION4. Staring with with the beginning, these memories are about me and my neighbors exchange student @PERSON1 and they are memories, they are not perfect. The @TIME1 I made @PERSON1 smile. It was a cool @DATE2 @TIME1 out on the back lawn of grandmothers house which over looks the @ORGANIZATION1 gorge, perfect for watching the firework show. The lawn was even inclined so the you don't have to sit up. @CAPS1 and @PERSON1 came over to sit with me as i waited for the show. @PERSON1 sat to the left of me and @CAPS1, my neighbor and life long friend, to the right. I was very curious about @PERSON1, what she was like, what part of @LOCATION3 she lived in, how were her costumes different than ours. So i started to ask her some questions as we waited. I didn't get much it was obvious that she was shy, very shy. Finlay I got a conversation going between the three us us about the fire works that had started. @PERSON1 was telling us how the fire works back home in @LOCATION3 were much bigger than ours. Of course me being sarcastic i said ""@CAPS2 really"". She just smiled. the rest of the @TIME1 the conversations flowed much freer between me and @PERSON1 and it was a wonderful evening. Next we have the day at the beach. This happened about @DATE1 for the @TIME1 memory. @PERSON1 and me were good friends and she had lost her shyness and i was starting to really like her. We arrived at the beach the beach down on the @ORGANIZATION1 @LOCATION1. It was starting to becoming a hot day, a perfect day for the beach. We unpacked the towels and other random beach stuff. Soon all of us were in the water, @PERSON1, @CAPS1 (@PERSON1's host sister), @CAPS4 (@CAPS1's boyfriend), and me. In a bit of a flirting mood I started to splash @PERSON1 who happened to be by @CAPS1. This started a very large splash war with every one splashing everyone else. Every one was laughing and having a great time. It abruptly stopped because everyone didn't want water in there face any more. Soon there after I dove under the water an tried to lift @PERSON1 up and then drop her in the water, it underlay failed though because I missed and only caught her right leg. Nothing happened, just more and more laughter. That was a good wet day at the beach. Finally, my @TIME1 memory is the @TIME1 at the @LOCATION4. We had just finished eating dinner and it was @PERSON1's @TIME1 in @LOCATION1 @LOCATION1. By now we were practically boyfriend girlfriend. It was getting dark at @LOCATION2 @LOCATION4 as we arrived at the @LOCATION4 forMovies in the @LOCATION4.. @TIME1 at the @CAPS7 was playing that @TIME1. I found a good spot and set out the blanket. we lay there talking as we waited for the movie to start. I had a flash back of all the laughs that had brought us close together. I knew at moment that I was really going to miss her more than i had missed anyone befor. It felt like the right moment as the sun was setting over the valley, I leaned in and kissed her and she kissed right back, I'll spare you the rest. Afterward we laughed and cried. For she was leaving early the next morning and we were in love. Yes I used the @CAPS8 world but it was and is true. We absolutely did not want the movie to end and yet it still did. As I drove her back to her host family's house we talk about the amazing @DATE3 we had together and all the smiles and laughs we shared. I smiled and laughed a lot that @DATE3 and it did bring me very close to someone. @PERSON1 and I still talk nearly every day it is hard but I've never felt as close to her as any one else. I will always have the memories of that @DATE3, the @DATE2 of @DATE2, That day at the beach, and @PERSON1""s @TIME1 @TIME1 in @LOCATION1. I hope you enjoyed the story of my @DATE3 and I hope you can have an amazing @DATE3 ,like I had." 19 18 37 4 3 4 4 4 4 4 4 4 3 4 3 +21023 8 " Summertime is always the highlight of the year for teenagers. It's when temperatures are the highest, we are able to stay out later, and its when we have the best memories of our childhood that we will never forget. It seems like there is never a dull moment when it comes to that time of year. Everyone seems to always get together and find something crazy and fun to do. @CAPS2, @LOCATION1, and I were sitting at home with nothing to do and decided that we were hungry. Without us having a car, we have to walk everywhere so we chose the closest place to @LOCATION1's house, which was at the time, @ORGANIZATION1. We left @ORGANIZATION1's at about ten o clock and started walking around, trying to find something to do. We texted @CAPS1 and found out that he was with @PERSON1 so we all decided that we wanted to hang out at @ORGANIZATION2's house. We had absolutely no idea where he lived so they told us to meet them at the skate park. By then, it was pretty dark and we were still walking. When we got to the park, it was pretty late. @CAPS1 and @PERSON1 arrived a couple minutes later so we started walking towards @ORGANIZATION2's house. @PERSON1 has the most evil cat i have ever met. @CAPS1 has told me stories and showed me videos about that cat a million times before. When we got there, it was bouncing off the walls and @LOCATION1, @CAPS2, and I were scared of it. We didn't want it anywhere close to us because we thought it was going to attack us, eventually it did a couple of times. @PERSON1 was pointing the laser pointer all over the place for the cat to chase it and we were just sitting there, still bored. They were looking through our purses and saw that we had bathing suits because we went to the beach earlier, that gave them the wonderful idea of going fishing at one in the @TIME1. We all piled in the car and headed for the dike. We got there in our tank tops and short shorts and it was freezing. We were huddling for warmth. We couldn't see the ground and kept tripping over little holes and tree trunks everywhere. We finally got to a little dock that looked like it was ready to break and sink at any moment. @PERSON1 grabbed his @CAPS3 fishing pole and marched his way to the edge of the dock. There was no way the rest of us could all stand on it without breaking. We were taking a ton of pictures and had a ton of fun watching @PERSON1 try and fish and @CAPS1 just being @CAPS1. In the end, we found something to do out of nothing. When people experience the greatness in little things they realize that they could enjoy everything a lot more. That night was one of the most memorable nights of that @DATE1. " 15 19 34 3 3 3 3 3 3 3 4 4 4 4 4 +21024 8 I was about ten when this story happened to me. I was with my grandma when the story happened. We were at the park and I put my head in the monkey bars. My grandma had went to the bathroom and I was stick in the monkey bars.The kids at the park thought it was funny and were laughing at me. I was really embarrassed.When I got my head out of the monkey bars I told the kids that they should try putting there head in the monkey bars. The other kids tried doing it and they all got there heads stuck in the monkey bars. The kid did not know that I had practiced putting my head in the monkey bars so that it would not get stuck. I was laughing very hard at what I had just done and when my grandma came out I asked if we could go home. The next day we went back to the park and I got some different kids with the same trick. What I don't get is if my head was stuck why would they try the same thing. The kids this time told there mom and dad what I did and they told my grandma and I got in a lot of trouble.We went home and I was grounded for about two weeks. The next time I went to the park I did the same thing. That shows that kids will be kids. 18 15 33 4 3 3 4 3 4 3 3 3 3 3 3 +21025 8 " Friendship and Laughter go @CAPS1 in @CAPS1 @CAPS3 best friend and I would spend hours sitting on her bed laughing at nothing. We could tell stories to each other that, to other people would just be stupid, but to us were hilarious. We would stay up all night long watching sad movies and laughing at each other when we caught each other crying. But that was all before the big fight. We have had fights before but none like this. I knew that the decision I would make would ruin our friendship, and take away all of our laughter, but I couldn't let her get away with what she had done. So i said goodbye. @CAPS3 best friends name is @CAPS4, we have known each other sense we were two and have been inseparable sense then. We love to hang out and be together. That was until the fight were I was told that she had been telling lies about a boy and I. I remember the hurt and how disappointing it was to hear that she would do that to me. But I didn't care enough to ask her about it, so I ended the friendship. It hurt but I had talked myself into believing that it was all true. But something didn't feel right, something told me that it wasn't her. But I didn't want to hear it. I ignored the feeling and just went on with life. It was one of the hardest things I have ever done in @CAPS3 life. School was a whole other story, it's really hard to stay mad at someone when you have the same friends and a couple classes together. It was like I had to keep reminding myself ""your not friends anymore, you don't have to talk to her"", like subconsciously i didn't want to end the friendship. I missed talking to her, so one day I said hello, after that we talked nonstop, it was like nothing had ever happened between us. Except there was one thing missing, the laughter. Sense then we have become closer, we hadn't talked about the fight, but it got to the point to where we could occasionally laugh or giggle at something one of us had said, but never the kind of the laughs that we used to share. I never thought that we would have been able to speak, nevertheless be friends again. After a few weeks we both sighed up for a youth camp. During that camp I found out the truth. We talked about the whole ordeal and came to the agreement that the whole fight had been both of our faults. Mine because I didn't want to know the truth, and her's because she didn't try hard enough to show me the truth. During that talk we shed a few tears and for the first time in about four months actually laughed together. The tension between us broke and fell of our shoulders like a very heavy pack that we both had been carrying. We both apologized for our parts in everything and then went to dinner, and laughed throughout the meal. I realize now that I can't take laughter for granted, it's a very important piece of life and you laugh the most when you are with people you love. Sam and I are still working things out between us but we are on our way to being closer than ever. We laugh all the time and never have a dull moment, we have both decided to work very hard at not having another fight between us. We have both realized that there are two very important things in life and they are friendship and laughter inside of the friendship. I love @CAPS3 best friend very much and I love the laughter that we share together just as much, and I don't want to lose that again. So everyday I'm going to make sure that we laugh as much as possible and I'm never going to take our friendship for granted again." 18 22 40 4 4 4 3 4 3 5 5 5 4 4 4 +21026 8 " Laughter is always the answer. It was freezing and dark outside. The walk home was to long to handle but the laughter that was filling the air made the walk home a little faster and shorter. The cars kept passing and stairing, but all we could do was laugh some more because we knew we were making fools of ourselfs, we didnt care one bit. The weird voices that kept coming out our mouths, the crazy @CAPS1 dance moves and the facial exspressions were the funniest thing to us. Stupid things that people do are the funniest things. Becasue I knew if you laugh more then usual you will build your friendship more and live your life more to the fullest. As @PERSON2 and I were walking back home from @PERSON1 we were dreding the walk home. It seemed like it was going to take two hours because of how long it took to get there when it was really about ten minutes away from my house, not even that. It also felt like we were not making it anywhere because of how slow we were walking and thinking of how long the walk would be. Cars kept passing us but they weren't stairing at us yet. It was silent until something popped up in my brain. I had the best idea so the walk would be faster. I remebered this voice my god brother @CAPS2 that was like @CAPS3 compared to me even though he is younger would always do. It always put a smile on everyone and it was entertaining. This voice I wanted to try it, so I attempted to. We weren't even half way home until I started yelling radom words at cars, it was a dark scary voice and I sounded very controlling. Then I had the bright idea to sing in this deep creepy voice. That was a bad idea also, @PERSON2 started to dance and cars started to stare at us. @PERSON2 was this tall thin girl that was my bestfriend, she loved piercings and didn't care what others thought of her. I really didnt mind what they thought of us either because people knew we were weird. Watching @PERSON2 dance to my voice was the funniest thing I could ever see. I never thought something could get funnier then that, until she wanted to try the voice. When she tried the voice and it slipped out from her lips I started to bust up laughing and fell to the floor. After about ten minutes we were almost to my house and it felt like our stomachs were going to bust open because of how long and hard we were laughing. While I was thinking to myself i thought""@CAPS4, that seemed like two minutes just to get home.""I knew that if @PERSON2 and I would just think of something to do until we got home then time would go faster. When we walked through the door of my house my mom asked us,""@CAPS5 were you guys dancing while you were waling down the @NUM1 and I just looked at eachother and laughed and told her she doesn't even know how fun it was. Laughter is the only thing that brings two people closer I think. It doesn't matter if you make fools of yourself because you know whats fun. All that matters is that you and are build a relationship together. Doesn't matter if it's just friends trying to get to know eachother more or if it is a boyfriend/girlfriend just having fun and messing around. It's always good to have that laugh here and there and no that you have that connection with the other person and no your friendship is still there. " 17 15 32 4 4 4 4 3 3 3 3 4 4 3 3 +21028 8 " In the @DATE1, a primary group of friends would search for different adventures to part take in. This group of people consisted of kids of all ages, @PERSON5@NUM1, @PERSON1@NUM2, @PERSON2@NUM3, and @PERSON4@NUM4. Around late @DATE2, on a hot day, @PERSON5 got an idea to head over to @LOCATION2, @ORGANIZATION2 and go cliff diving. He called it the ""cliffs"". So the whole group got together and took off on an hour car ride to @LOCATION2. Once they got there, it only got hotter outside, and the need for cooling off was getting to be a priority. They parked, then walked the train tracks. The closer they got to they're destination, the louder the voices that they @CAPS1 hearing became. The spot was a secluded area with a rocky floor, people getting a running start to jump off the highest peak and go crashing on to the waters surface below. Right away @PERSON5 and @PERSON1 wanted to get settled so that they could join the others. As for @PERSON4 and @PERSON2, it could wait. Once @PERSON1 and @PERSON5 got they're first couple jumps in, @PERSON4 and @PERSON2 thought that maybe it was time to try it. But not from the highest peak. Maybe something a bit lower. Something like the very bottom of the cliff, just for starters. Before they jumped off they noticed a little beach on the other side of the creek, so the girls conversed with the boys and they all decided to jump off at the same time, and swim to the little beach. Although they all jumped from different heights, they all seemed to arrive around the same time. For @PERSON5 it was a bit more of a struggle to swim that far. But @PERSON4 was right by his side helping him along the way. As the group relaxed in the @DATE1 air for a while, they became to realize that they @CAPS1 hungry, but much to lazy to swim back, climb up the rocks, and walk the train tracks back to the car. But hunger was taking over. As they swam back, climbed the rocks, gathered they're belongings and headed back, they started brainstorming for a place to eat. ""@CAPS1 going to be going through @CAPS2."" @PERSON1 said. ""@ORGANIZATION1 @ORGANIZATION1!"" @PERSON4 shouted. At that moment the decision was made. On the ride back, they switched drivers and sitting arrangements. Once they got to @CAPS2 they all stopped at @ORGANIZATION1 and filled they're stomach's up. They all chose to stop at @PERSON5 work @ORGANIZATION3, to say hi to some of his friends. @PERSON4 was @PERSON5 girlfriend so they had some showing off to do. They all finished up saying they're hello's, and went back to @LOCATION1 house where all the cars @CAPS1 parked. @PERSON4 and @PERSON5 decided to shower, while @PERSON1 wanted to play some video games, as for @PERSON2, she headed to home to shower and get ready to meet back up with her friends. @NUM5 hours later, they all headed to they're hang-out spot, which they referred to as ""the spot"". They invited a couple of they're friends @PERSON6@NUM3, and @PERSON3@NUM7. They made a camp fire while the sun was setting because it grew to get colder, and colder. While @PERSON1, @PERSON3, @PERSON6 and @PERSON2 @CAPS1 sitting around the fire in chairs, @PERSON4 and @PERSON5 @CAPS1 riding around the camp site (which was really a huge hunk of @PERSON5 mom's land) on a quad. The group would take turns riding the quad but one ride in particular, made some memories. Once @PERSON5 and @PERSON4 came back, @PERSON2 wanted to give @PERSON4 a ride around. So @PERSON5 hopped off, and @PERSON2 hopped on, as @PERSON4 wrapped her arms around her waist, and they took off. There was a certain trail where there was a long in the way of riding, so the driver would always have to find a way to maneuver around it. Usually it worked, this time it didn't. @PERSON2 hesitated to just ride right over it. She was afraid of all the power. @PERSON4 really didn't seem to care, and she took over and slammed on the gas. They high tailed it on the log and rolled the quad right over. @PERSON4 didn't weigh that much so she flew off, @PERSON2 on the other had got her foot caught under the handle. @PERSON4 got the strength to lift the quad off her foot, and @PERSON2 got right out. @PERSON4 decided to call the boys, and they hopped right into @PERSON1 to come save them. @PERSON5 flipped the quad right over and got on it and drove back behind the @PERSON1. This memory will never be forgotten with in the group, even if the group will never be the same." 17 15 32 3 3 3 4 3 4 3 3 3 3 3 3 +21029 8 " the @CAPS1 @CAPS2 trip I just woke up when I herd a laughing sorta noise from down stairs. I went down stairs and saw @PERSON2 , my manger laughing with @PERSON1 one of my staff. she drove me and @PERSON2 and @PERSON3 time for the plane ride to @LOCATION1. I was scared because my dad jack died on a plane . i wont focus on that i m going to focus on this topic.When we landed that was the funnest of the ride :) the bumps in the @CAPS2 were so bumpy ,@CAPS3 we found our luggage and went to the shuttle were we drove to the hotel .We paid for the shuttle and went on our way to the hotel rooms ( i laughed at @LOCATION2 because he spill soda on his shirt ).@CAPS3 since we only had two day park hopper we had to stay at the hotel for the first day, for dinner we had food from a restaurant named chubby s it was the nastiest food I have ever had the fries were cold and the meat was not cooked all the way and there was no ice in our soda. the next day we got ready i wore a polo and some sunglasses and some shorts and the shoes I wore were converse (low cut ) what a really fashionable dont you think @CAPS4 ( laugh out loud )" 16 10 30 30 4 3 4 4 3 3 2 2 3 3 2 2 3 3 4 4 3 3 +21030 8 " I moved to the @LOCATION4from @LOCATION5 with my family when I was just a child. We moved the small town of @CAPS1, @ORGANIZATION2, where we have lived for @NUM1 years. Over the years there have been many difficult times, but we always managed to get through them by laughing together as a family.This past year has been especially trying, and I don't think we would have survived if we hadn't been able to celebrate the tragic time with laughter. My @CAPS2 stayed in @LOCATION5 when we moved to the @LOCATION1 because he was sick and didn't think he could survive the trip. Last year we finally convinced him to @CAPS3 up here with the rest of the family. He moved in with my family and shared my bedroom. It was hard because he snored and made strange noises in his sleep, but I was glad he was with us. When I would wake up tired from lack of sleep, I would just think about the funny noises and laugh. Then, six months ago, my @CAPS2 was dianosed with a tumor in his brain. There was nothing the doctors could do for him, and they told us he only had a few weeks to live. We were devastated and I couldn't stop crying. We asked @CAPS2 what he wanted to do. He said, ""I want all of you to stop looking like I'm already dead and let's go have some fun!"" That was just like @CAPS2. He said we were going on a trip to @LOCATION2 so he could go to @LOCATION3 before he left this world. I couldn't help laughing at how crazy he could be. Sure enough, when I arrived home from school the next @DATE1, @CAPS2 told us we had ten minutes to grab what we needed and get in the van. He had gone out and rented a @NUM2 passenger van for the trip so everyone in the family could go. We just stared at him. He started laughing and told said, ""@CAPS3 it or you're staying behind!"" I started laughing too, and hurried inside to pack. It was the best trip of my life. @CAPS2 told us all kinds of crazy stories about when he was a boy. Mom wrote some of them down so we could always remember them. When we got to @LOCATION3 we went on every ride in the park. @CAPS2's favorite was @ORGANIZATION1. He wasn't supposed to ride it because of his condition, but he just laughed and said, ""I""m sure it won't kill me."" @CAPS4 though it made me sad when he said it, I still laughed because he was so happy. Two months after we went home, @CAPS2 died. @CAPS4 though it has been hard and I have cried about it often, I can't help but laugh when I think about that trip and how much fun we had. @CAPS2 taught me that laughter can make all the difference in turning any situation around." 20 24 44 4 4 5 4 4 4 5 5 5 4 4 5 +21031 8 " My newest botfriend and i have been dateing for well almost @NUM1 months on @DATE1 it will be a year. We have a lot of fun together we talk about anything we dont rreally ride bikes or go jogging we have just started to work out togther. My parents love him they call him there son in law i think its kinda cute.. but anyways we had a blast on new years eve and we were hanging out with one of joes friends his name is randy we were doing the normal thing hanging out bbqs everything. It was around like @TIME1 and we were ready to go to bed well randy had no idea that we were going to stay the night we nither did i but we did.. Randy owns a hotel place out by grayback they had no extra beds in there house so we asked randy if we could use a hotel room he said yeah of coures. The @TIME1 day we had to pay him a little bit of money not all of it yet but some of it and we went to our hotel room. Me and @CAPS1 were looking at it and it had a big hot tube bath bed king size bed i jumped on it and it was the best. So @CAPS1 @CAPS2 on a pair of shorts and i @CAPS2 my bathing suit on we @CAPS2 inside the hot tube and had a blast :) well when i was trying to get out of the hot tube i slipped and i caught myself iam so glad that i did not fall on my face then @CAPS1 @CAPS2 out and did the same thing it was kinda funny but not really but at the same time it was. Me and @CAPS1 were really hungry and all we had was a bag of chips and some cheese dip when @CAPS1 was eating the chip he was making this funny noise like the star wars person chubaka . it was the best time ever we @CAPS2 to watch sadalight t.v. i dont have that at my house so all we have to watch is dvds and maybe some vhs's but anyways we brought the @NUM2 with us. We were in the room playing this game called metal of honor it is kinda like a war game but with lots of gun we kinda had the t.v. up but i did not think it was that loud i guess the nehbordid. After about @NUM3 to @NUM4 mintues we heard a knock on the door it was the nehbor he was asking if everything was ok cause he heard loud noises and gun shots coming from the room we said yeah of course everything is ok it is just a game that we have for the playstation sorry to bother sir i did not think it was that loud. So we did turn the t.v. down and we played the game for like @NUM5 hours so by the time we went to bed it was lik @NUM6 the @TIME1 moring i was so tired that @TIME1 day and i had to go to school that very @TIME1 day. We @CAPS2 up took a shower and whent back into randy's house we sat in there had breakfast I think we had bicuts and gravy it was the best I had a lot of fun then. After we had breakfast then we went home and we ate some more at my house it was like around @NUM7 we decited that we were going to take a little nap and we winded up sleeping untill the @TIME1 day. @CAPS1 and I @CAPS2 up at @NUM8 and we could not fall asleep sp we stayed up playing the video game for like @NUM9 hours and i had to get up and go to school i went inside my dads house and took a shower @CAPS2 ready for school then went out to my house and @CAPS2 dressed in to my school clothes brushed my hair brushed my teeth and then i @CAPS2 all my stuff together and relaxed then around @NUM10 i went out to my bus stop and waited for the bus when i reilized that no one was out there i went back into my house when @CAPS1 was laughing ""I asked what are you laughing about he said that do you know today is @DATE2 and you don't have school i was like what that is crazy i thought i was @DATE3 he said no it is @DATE2.I was the best new years of my life i hope to have another one like that and maybe if we are still together on my birthday we might do something just as fun hopefully. But i think we will @CAPS1 has treated me so well and i appreciate him and what he does for me. He also has been one of the best friends i have ever and hopefully we will betogether for a long time." 13 12 25 3 3 4 4 3 2 3 3 3 3 2 2 +21032 8 "The @CAPS1 is @CAPS2 @CAPS3 great grandmother once told me that laughing adds and extra five years onto your life, she's currently @NUM1 years old. Laughing can bring a new element to relationships; they embark on a journey, whether it be between two friends, family members, or something more. More or less, laughter is an essential piece. Sometimes you feel closer to people because it breaks down that barrier between what defines acquaintance and friends, but that's actually how I met one of @CAPS3 good friends. The incoming @CAPS11 were participating a traditional ritual (name game) that the high school puts the incoming @CAPS11 through at orientation. They were placing us in long lines that faced each other. For this particular game you had to shake hands and share your first and last name with your partner along with one interesting fact about yourself. Unsurprisingly, everyone found this task ridiculous and embarrassing, but we were able to laugh if off. A whole new feeling overcame the room. That overwhelming and uneasy feeling simply floated away and all because of laughter. It broke that barrier and allowed us to open up. I guess it really is true that ""Laughter is the shortest distance between two people."" @CAPS4 back some of @CAPS3 best friendships were brought up through laughter. When I joined the cross country team for instance, the whole team unlike most other sports teams was like one big family. We share socks, @CAPS5-@CAPS6, tee shirts, shorts, water, sometimes even our watches, but we've also shared a great amount of laughs. Even while we run we talk to our friends and joke around, but trust that laughing while running is not easy! I think @CAPS3 best memory of it all was when we had our ""@CAPS7 @CAPS8 @CAPS9"". The entire team of eighteen @CAPS7 or so met up at @LOCATION1's house about a week before districts. The @CAPS10 had to bring snack foods, @CAPS11 had to bring drinks, and @CAPS12 brought the candy, and the @CAPS13 all chipped in for the ""main ingredient"". That first bit of the @CAPS8 was alright, but all were in anticipation for that hour hand to strike twelve. When it did, we were @CAPS9. The ""main ingredient"" to that @CAPS8 was the toilet paper. We were going @CAPS9 on a tee-pee raid! The first event was forking the coaches lawn; but not with just any old forks, these forks were special. For some reason the coach had this odd obsession with @CAPS14, so in spite of that a few of the @CAPS7 photo shopped his head onto the bodies of lawn @CAPS14. I was in pure amazement and not laughing was impossible. I don't think I ever could have @CAPS16 up with something so clever. After that little stop we were onto the main event, the tee-peeing. We tried to tee-pee one of the brother's from the team, but there dad had already been waiting up. The other pair of brother's were next. All the cars slowly approached the culdesac, we lowered the the radios and shut off all the headlights. Just to be safe, everybody made sure to park at least four houses away and left all the doors open for a quick escape. Almost synchronized, everybody threw there first roll towards the the big tree on the side of the house. We kept missing and the rolls were would fall back down and unravel into the street, one could have called us the worst tee-peers ever. Then all of a sudden three figures came bolting @CAPS9 on skateboards with their own rolls of toilet paper yelling, ""@CAPS15! Get back here you forgot something!"". We were being ambushed! Sprinting back, we just barely made it to the cars. Still, something just didn't feel right. There was just this eerie feeling, like being in a horror movie. Then; suddenly, as we began to drive away, something big hit the car. In panic, @ORGANIZATION1 stopped the car and had to get @CAPS9 to make sure nobody had been hit. ""@CAPS16 get your toilet paper!"", a deep voice yelled. All the @CAPS7 started screaming in terror. What was going to happen now? What was even going on? Were we going to be killed? No,and fortunately we weren't killed that @CAPS8! In relief we discovered that it was only @PERSON1, @PERSON2, and @LOCATION2, but I might as well have had a heart attack. Instantaneously, the whole group burst @CAPS9 in laughter and I had been laughing so hard that I began to cry. I've ever laughed so much or so hard in @CAPS3 life and I'll ever forget it. Laughter @MONTH1 not have brought just two people together, but nearly twenty. When districts came and passed, I know everyone was sad to see the season @CAPS16 to a close. It was the @CAPS13 last season and nobody wanted to see them leave; but all the great times we had will never be lost, and bonds are @CAPS2. " 20 20 40 4 4 4 4 4 4 4 4 5 5 4 4 +21033 8 " Whats Laughter!How many friends do you really have? What relationships do you have with others? Well, I'm in high school and I usually don't have that many friends. But I have a few and one of my friends @CAPS4 friends with someone that I truly love. (@CAPS1 didn't know that) @CAPS2 year I was a freshmen and i went to the church with some of my friends and their was an @NUM1 grader that fell in the pond/water and I wasn't sure @CAPS20 @CAPS1 was @CAPS3 or not so I end up coming up to him and asked.Me; @CAPS4 you @CAPS3?, do you need some help?@CAPS1 said; @CAPS6, its @CAPS3 I just sprained my ankle.Me; @CAPS3, see you later then.Him. Later thanks for asking though.me; @CAPS9 sure, @CAPS6 problem! The next year when I'm a sophomore I didn't realized that @CAPS1 was going to be their as a freshmen! his name is @CAPS11 I was starting to hang out with him more because @CAPS1 was really funny and sweet. We went to the @CAPS12 ball together and our other friends were their but i was worried about of some stuffs but @CAPS1 made it butter because at that time i was afraid that my ex was their. @CAPS11 was their to help me and I also didn't know how to dance and their was a song that was on and I didn't realized that i was dancing until @CAPS1 told me that I was so after was dancing with him I end up asking him @CAPS20 I can dance with one of our friends and @CAPS1 said a was able too so me and @PERSON1 ends up dancing and @CAPS1 was their when I needed him. We end up heading outside and I called @CAPS13 @CAPS14 to be picked up. So, in the mean time, we were outside waiting for her. We were laughing at some jokes that we @CAPS15 said to each other. Like one was that @CAPS1 @CAPS15 some thing in his @CAPS15 and acted like that it was a wand of some sort to the school building and @CAPS15 asked like that it was changed to a gingerbread house. Just about a week ago I end up sneaking up behind him and scared him so bad that I end up laughing and @CAPS1 was too. Because @CAPS1 usually doesn't get freaked out like that, and @CAPS1 told me that @CAPS1 is going to get me back and I'm starting to freak out from me not knowing what it @MONTH1 be. @CAPS11 is a great help when i need him! The thing about laughter in life is that you would need eat ether way your upset or not in the mood.The main thing that was funny from my family is that we prank each other; like my sister would step out of the room and her soda is in the room that I'm in she still @CAPS15 about half of soda in the can their was mustard on the table and she hates mustard form the taste of it but my dad was thinking the same thing that I was wanting to do and that was to put a little bit of mustard in her soda. When she came back to the room I was smiling and my dad was looking at me also my @CAPS17. My sister ends up having some of the soda and she was looking at my @CAPS14 and was like;@CAPS16, who put mustard in my soda? My @CAPS17, @CAPS18, @CAPS14 and myself was laughing and she hates mustard!, @CAPS20 it was something that I didn't like and that was put in my soda I would've done this too. So, mostly I'm trying to say is that their is some laughter that is funny. not all laughter is not funny. Its butter @CAPS20 you don't prank people that is close to your heart because they @MONTH1 get mad at you. Like my sister, @PERSON2 was mad at me when it wasn't me it was my dad's idea." 12 15 27 3 3 4 3 2 2 3 3 3 4 3 3 +21034 8 " The @CAPS1 @CAPS2 @CAPS3 the of day of @DATE1, I was turning @NUM1 years old and me and my best friend were at home, I called him seeing what he has planed for this nice sunny day and he told me he had nothing in mind, so we kept trying to think of something but for @NUM2 hours we had no luck. I called him again and we met up at a grade school and just sat down @CAPS3 a bench and started calling people to see whats up with everyone and no one would answer there phones. It became about @NUM3 pm when we stopped calling people to make planes, so my friend asked me if I wanted to go get something to eat, I told him sure since we had no luck for a whole @DATE2 @TIME1. What sucks was that it was the @DATE2 of the @DATE3, and school was going to begin @CAPS3 @DATE4. So while we were walking to a fast food restaurant, we noticed a flier saying @ORGANIZATION1 @CAPS3 a street that sounded familiar, so my friend asked me if I wanted to go find it and see whats up and whats happening. We followed the directions to a street that we knew pretty good, till we started hearing music bumping from a distance, so we walked -+ of a mile and saw a good friend of mine and he told me he's going to go pick up lights for a @ORGANIZATION1 and I asked him who's all there and he told me that I need to see for my self. So we walked around the corner of the street we were @CAPS3 and saw the @ORGANIZATION1, we walked up to the door and saw are other friend who was standing at the door, we asked him where is everyone, we been bored all day with nothing to do @CAPS3 my own @CAPS1 and he told me that were here now and that's all that matters, so we walked in and saw everyone we called @DATE5 and more and they screamed @CAPS5 @CAPS1 to me and I was shocked why this @ORGANIZATION1 is for me and how did I get to my own @ORGANIZATION1 @CAPS3 accident. I finally found out that it was planed for me the whole time, I guess that the flier by the restaraunt was put there @CAPS3 purpose and my friend was @CAPS3 this little @CAPS2 to get me to the @ORGANIZATION1 and it was all planed from the beginning of the day for people not to answer my calls or my friends but to get me to go buy some food and to find the flier and get me to go to my own @ORGANIZATION1 and I thanked everyone and especially my friend who got me to go get food to find my own @CAPS1 @ORGANIZATION1 flier and we all had a good laugh, The @CAPS8!" 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21035 8 " My @CAPS1, my friend, and myself were driving down the road on our way to pick up a mutual friend for youth group that night. Our conversation was anything but special. We were mainly just telling stories of fun times that we had already had with our old friend, and looking forward to making some new ones together. She was such an amazing person. Always ready to crack a joke, make new friends, and have a good time. Her smile was cute, and she was bale to talk someone into doing anything. As we pulled up to her house, we were thrilled to be able to see her again. It had been weeks since the last ""play date"", and we couldn't wait to be able to catch up with her. She walked out her front door and trotted to our car. The smile on her face was enough to tell us that the feeling, of being reunited, was mutual. Getting out of the car we received bear hugs from her. Times of fun we had had together were flashing in my minds eye, and I was hoping that there would be many more that I would be able to look back on one day. We all got in the car, pulled out of her neighborhood, and started down the road. I realized that we were going the wrong way. ""@CAPS1, we have to go back the other way, don't we?"" I asked. ""@CAPS2, but the barrier in the middle of the road won't let me make a @CAPS3 turn until up the street a little ways.""she said. ""@CAPS4, is that even legal?"" I asked, knowing the answer would be no. ""@CAPS5, I don't really have a choice now do I @CAPS6?"" I could hear the sarcasm in her voice. She could make her voice and appearance sound and look mean, but I knew that in reality, she was just messing around with me. The barrier dissipated, and she was getting ready to make the @CAPS3 turn. Cranking the wheel she was barely able to clear the end of the barrier, but was to late to be able to stop in time to clear the curb on the other side. She accidentally backed up onto the curb making those of us in the back seat jump, and sway, from the impact. My friends and I were all laughing, knowing that she was usually very careful, and had good driving skills. ""@CAPS8 everybody,"" she said. Her body language showing that she was having fun, but that she truly was @CAPS8 for giving us a jolt like that. Our reply was pure laughter. ""@CAPS5, I guess that's our fun for the month,"" she said, her eyes sparkling with joy about making us laugh. She was always very quick to make jokes about situations we were put in. She pulled forward, the back fender scraping the curb again as we drove off it. Driving away, my friends and I were still laughing , replaying what had just happened to us in our minds eye. It was one of our fondest memories together. A continual joke that we can just mention, and burst into laughter because of it. ""@CAPS10 for the ride @PERSON1,"" my friends said as we got out of the car. We walked into youth group, laughing, knowing that this would be one of the many memories that we would cherish forever. Bringing us closer than ever before." 25 20 45 5 5 5 5 5 5 4 4 4 4 4 4 +21036 8 " My best friend @CAPS1 and I have known each other since we were two years old. We've helped each other through good times and bad, and are there for each other like chocolate on a bad day. @CAPS1's best quality is the fact that she can make me laugh no matter what mood I'm in. This year @CAPS1 decided to go to @ORGANIZATION4's, an all girls @CAPS3 @ORGANIZATION2 in @LOCATION1, instead of continuing on to @ORGANIZATION1 like me. The first day of @ORGANIZATION2, I could feel that something was missing. @CAPS1. Without her cackling laugh ringing down the hallways, it felt oddly quiet. It reminded me of a place where we made most of our hilarious memories, and where we were told to ""shush"" a fair amount too. Our little brick @CAPS3 church! Most @DATE1's, I stood up on the alter with the priest and helped him prepare the bread and such. And most @DATE1's, my best friend @CAPS1 was in the pews. One particular @DATE1 I will never forget, @CAPS1 thought it would be funny to sit in the front row with my family and make faces at me all throughout the mass. See @CAPS1, she has the power to make you laugh just by smiling at you. When she makes faces, I usually and up with tears in my eyes. I was standing up in front of the whole congregation and was using every ounce of self control I had not to bust out laughing. The congregation must have thought I was really being changed by the @CAPS8 because I had the biggest smile on my face. I'm sure you've been in one of those situations where it feels like it is physically impossible to stop laughing. You have to bite you lip, think about something sad, or try breathing excercises. Every time I glanced in her direction a new wave of giggles washed over me, and every time I glanced in my mom's direction, her evil eye burned brighter. After what felt like eternity, the choir sang the closing hymn and once we left the building, I couldn't stop laughing for at least ten minutes. I had bitten my lip so hard that there were ridges indented on the inside of my mouth. Usually after church, we walk over to the @ORGANIZATION3 for coffee and doughnuts. We catch up on @ORGANIZATION2, and each others lives now that we don't see each other as often. She tells me about her new friends and I tell her about our old ones. I always look forward to hearing the hilariously stupid stories of her days, and I always inform her of the latest and greatest gossip from her hometown. But the thing that we always count on is a good laugh with a good friend. Laughter keeps @CAPS1 and I close. If laughter really does add years to your life, we are probably going to be the two old ladies that live on the hill with twenty cats, and nobody really knows how old they are because they've been around forever. I can be myself around her and know that she accepts me because if I do something stupid I know she'll laugh and then we'll go play with her cat, @LOCATION2, or make popcorn and watch @ORGANIZATION2 three. My family must be tired of our never-ending inside jokes. When I laugh, it feels like liquid gold is bubbling in my stomach and everything is at peace in the world. It is one of the most comforting feelings in the world. That's what I feel when I'm laughing with my best friend @CAPS1. " 21 20 41 5 4 5 4 4 4 4 4 4 4 4 4 +21037 8 " Shafts of light escape through fogged windows casting a shadowed glare upon the surface of the table. A tremendous sign hovers on a wide oak shelf that borders the entire dining area. @CAPS16 read's ""@CAPS1's"" in great letters buried under decades of dust. My eyes dance among the plethora of mismatched antiques and statues strung throughout the room easily filling every crevice. These objects form a family of outliers, each individually unique belonging @CAPS15 the restaurant. Huge posters of All-@CAPS2 athletes tower among @NUM1-inch flat screens while an acrid scent of molded wood and fermented beer lingers. Numerous bras fall from the ceiling of the bar that sits next @CAPS15 the entrance. The sound of crunching echoes in my ears as waitresses maneuver over fallen peanut shells. That's @CAPS4 sets this place apart from the others. The entire floor is littered with barrels of @TIME1's broken shells and mashed peanuts as @CAPS16 is custom for the customers @CAPS15 throw them on the ground. Of course there's my family; a vivacious group of five squeezing our round frames into a booth that comfortably seats four. We seem @CAPS15 mesh quite nicely with the crowd of miscellaneous objects dressed in our '@DATE1 @CAPS3' attire of skirts and dress suits. Distracted, I busy myself in the menu browsing for something with a little zest and a lot of calories. A loud smashing noise breaks my attention and I slide the newspaper style menu below my eyes. Across the table sits my grandmother; a petite old lady standing proudly at @NUM2 who devotes her free time in attempting stand up comedy. I study the glass jar of ketchup she's holding and watch her pound the corner on a single peanut. The shell cracks open and @ORGANIZATION1 picks out the nuts sweeping its kernels onto the floor. I giggle @CAPS15 myself surprised at @CAPS4 limits this old lady is willing @CAPS15 go @CAPS15. She proceeds @CAPS15 repeat this process with ten more peanuts until the entire family has stopped in curiosity. Looking up, @LOCATION1 pauses with the jar suspended in her hand. ""@CAPS4? I'm just trying new ways of cracking open the nut."" @LOCATION1 exclaims pausing for a comical response. With no reaction we resume position contemplating our meal choices. Minutes later a hefty waitress reeking of drugstore perfume and @TIME1 nights hangover sets down glasses of water and drags off sluggishly. Raising his glass, @CAPS5 motions us @CAPS15 follow. ""@CAPS6!"" @CAPS7 calls clinking each of our glasses in turn. ""@CAPS6! And @CAPS6 @CAPS15 cherry people!"" @LOCATION1 pitches in. ""@CAPS9 @CAPS10!"" I shout automatically. Immediately my parents chuckle because my grandmother has never been funny. @CAPS16's a joke that nobody in the family laughs at @LOCATION1's comments but herself and that's how @CAPS16 remains. Years ago, my brother deemed her jokes the ""@CAPS9 @CAPS10"" because she poses as a comedian but truly isn't. From then on, each time @LOCATION1 would crack a ""joke"" someone was quick @CAPS15 respond with yelling ""@CAPS9 @CAPS10!"" @CAPS15 this day, she has neither improved nor given up daily opportunities @CAPS15 attempt @CAPS15 win over her audience. In quiet defeat @LOCATION1 chuckles @CAPS15 herself and focuses down on the menu. Seconds later she's back in the ring for round two. ""@CAPS16's noon. So are we having breakfast or lunch? Or should we have..brunch?! I'm dying here just laugh already,"" she pleads. For a moment we all just stare at her. Innocent eyes gaze back; the predator calmly sits awaiting the move of its prey. Then, as if a switch had been flipped, we eye each-other and the ribbon is cut. Tea party giggles erupt into hoarse cries as rolls of thunderous laughter echo through the room. I hand my mother a napkin which she uses @CAPS15 dab jubilant tears. The thick wooden table shutters under the pound of my father's fist slapping the surface in hysteria. I laugh so hard my gut aches and yet I cannot understand why everything is so funny. All the while @ORGANIZATION1 sits in pure delight, tickled by the success of finally earning a sincere response @CAPS15 her notorious off-the-cut ""jokes."" @CAPS16's a wonder we aren't thrown out of the restaurant. Customers in surrounding booths peer over the edge of their bench eying us with distaste. However, this isn't the first and certainly wouldn't be the @TIME1 time my family causes a scene. Plain yet obnoxious jokes is a loosely run comradery in our family that always finds its spot in our books of lasting memoirs. The remainder of the meal was spent in bursts of giggles and we were more than kindly shown out the door once our meal was finished. Its when you break into hysterics for no monumented reason and can't get through retelling @CAPS16 someone else who doesn't find @CAPS16 nearly as humorous.) @CAPS16's those insignificant moments in life when we're reminded of who we are and the bonds we share. Laughter is a connection, a form of love that cultivates within society and in families with grandmothers such as mine, every ""@CAPS9 @CAPS10"" is worth @CAPS16." 25 25 50 5 5 5 5 5 5 5 5 5 5 5 5 +21038 8 " A long time ago, my family @CAPS6 I went to @LOCATION1 to see my great aunt @CAPS6 uncle. They had a log cabin right on the lake, with an @CAPS1 tepee in the back yard. They had a dock with a very big @CAPS6 nice boat. I had went with my @CAPS2, my other aunt @CAPS6 my two half sisters. I forgot why we went, but I think it was just because it was the @DATE2 @CAPS6 my great aunt @CAPS6 uncle were getting older. I was very young, @CAPS7 I only remember bits @CAPS6 pieces of the trip. I remember watching cartoons with my sister on the couch, watching ""@CAPS3 @CAPS4"" in our bedroom, having my sisters make me watch my first scary movie(I hate scary movies), going to a go cart track @CAPS6 driving for the first time, taking one of the extra little boats @CAPS6 going on the lake with one of my older half sisters, also taking the big boat @CAPS6 riding around the lake with my great uncle, he would turn in circles @CAPS7 that we would jump on the wave to make the ride more fun! We get around to the @DATE1, @CAPS6 they where selling illegal fireworks all around the state for the event of course, but I remember sitting in the car with my two half sisters,@CAPS6 my @CAPS2 had gotten out of the car to go @CAPS6 get fireworks from a stand on the side of the road. We were all @CAPS7 tired from something, @CAPS7 we all stayed in the car. Outside the little stand where they sold the fireworks was this blow up balloon guy; you know one of those blow up looking things where it has a face on it @CAPS6 it doesn't stop moving @CAPS6 dancing? Anyways my oldest half sister starts saying ""@CAPS5 look there he goes doing the macarana!' I had no idea @CAPS13 she was talking about until she pointed to the blow up guy who was just wiggling @CAPS6 springing to life every second.Then my other half sister joins in @CAPS6 starts saying ""@CAPS6 now he's doing the mash potato!"" @CAPS7 now I'm laughing because it's just @CAPS7 silly @CAPS6 funny, I actually thought he was dancing @CAPS6 doing all these dance moves! Now everyone in the car is laughing @CAPS6 giggling about something @CAPS7 silly @CAPS6 funny, I mean we were throwing out silly dance moves, some not even dances moves, just random objects! ""THE @CAPS8!"" ""THE @CAPS9 @CAPS10!"" ""THE @CAPS11!"" ""THE @CAPS12!"" we could not stop laughing! when my @CAPS2 got in the car she was like ""@CAPS13!? @CAPS13 happened?!"". I tried to explain to her @CAPS13 was @CAPS7 funny but she didn't get it. I guess you just had to be there to be a part of the ridiculous car stop at the side of the road where they sold fireworks to see why it was @CAPS7 funny!" 20 22 42 4 4 4 4 4 4 4 4 4 4 4 5 +21039 8 " Laughter can be a very important thing in everyones life because, its something that can help you in many ways. As far as I remeber laughter has helped me get thru alot of emotional problems that I would have with alot of my ex boyfriends. One day my mom saw me crying because my ex had broken up with me and I got really upset so the only thing my mom said to me was that ""laughter was the best medican""at that point I didn't understand what she was trying to say, but now that im getting older I start to realize what she ment with that is that being bummbed about something like that is just useless, and that I had to live my life to the fullest because I was to young to cry over someone who I jst had a simple crush on and she was totally right about that. But then again its not only for boyfriend and girlfriend thing it's also to keep a healthy friendship with your friends Laughter is a way to show how you feel inside. Even when I dont feel like laughing I still do because thats a way to show people that im a strong and independent girl who knows how to take care of herself and live her life. I also try to make the people around me laugh and just have a good time when we hang out because they create the best memories. I'm accually surprised in how much a simple laugh or smile can make someone feel better and sometimes one person can make another one smile just by simply laughing at the most siplest things. In the other hand there are people who fake laugh meaning that they just laugh but its not that they are laughin because they think yewr funny they are laughin becasue they think yewr acting dumb. But the truth is that sometimes its hard to see whose the real people from the fake because there are many people who fake laugh just to pretend that they like you when they really dont and i truly think thats dumb because you end up beliving that they are your friends when all they do is laugh behind your back. But i dont let that get to me because those kind of people are the kind that its not even worth to take your time with .When i make the people that i care about smile and just have a good time also makes me happy because it makes me feel like i've made a difference in that certain persons day, i kno i cant change their life but I can always try to make their day a little easier by just making them laugh. My little three month old sister is always laughin, always cracking up for no apperant reason and its kinda funny to watch becasue when she laughs I laugh to, thats kinda what I ment to say when i say that a simple smile or laugh from one person to another can make a difference. i mean shes only three months ans shes always happy and always has a smile on her face for no reason, sometimes without knowing shemakes my day even better when she starts laughing out of the blue which i think its somewhat cute. My mom sometimes tries to make laugh because she knows that I sometimes have bad days at school and she tries her best to make me laugh because when i laugh it makes me forget about al my problems and everything, but i know that laughin cant always be all good, for excample laughin at other peoples pain is just bad and thats something that isnt funny and people do laugh at other people which can really hurt someone. Meaning in many ways laughin can be good or bad but that also depends in the person who is laughin.." 20 16 36 4 4 4 4 4 4 4 3 4 4 3 3 +21042 8 " I personally do believe that laughter is very important in any relationship. Who doesn't enjoy laughter every once in a while? I know i do. My true story is on the relationship of my @NUM1 year old toddler daughter and I. I will tell you why I think laughter is important, how it is important, the part it plays in my relationships, and the benefits I believe it can have for any persons relationships. Everyone needs to smile and just laugh, forget about the things that make you frown, so you can turn it upside down. My relationship with @PERSON1(my @NUM1 year old), has mixed emotions at all times, and is constantly changing. The emotions range from complete happiness and admiration, to anger, frustration, and a whole lot of stressfulness. Of course during all of these different feelings, I always love her with every inch of my heart. But during the midst of feeling so stressed out that I want to scream, she will say the funniest thing, or make the most adorable face. And you cant help but smile and laugh, which, let me tell you, makes all the difficulties go away for that brief moment. The most cold, angry, and hurtful people in the world, never laugh. They isolate themselves and don't have good relationships with other people. We all need some laughter in order to not be depressed and sad. If you are always frowning and stressing out, there wont be any room to look at the good things and just laugh. When @PERSON1 does her little thing and it makes me laugh, then she laughs and we are all in better moods. She knows that mommy still loves her, and she knows just the right ways to make me smile and i just wanna pick her up and squeeze her. Because at the end of the day, when you think about all the things that went on in your day, good or bad, there really isn't anything you can do but laugh.And that makes your whole day worth it. It doesn't have to be your children that make you laugh, it can be any relationship with anyone. Maybe its your relationship you have with your boyfriend, and you have been together for a long time, you guys laugh right? because honestly, how could you stand being with a person all the time, and saying you love them and what not, yet you never laugh with them? They never make you laugh? that just wouldn't add up..No relationship can really be a good one, unless there is some laughter. Especially if its someone that you love, and are with constantly. The good things in life, need to exceed the bad things. so, the more laughter the better. I know that parenting is super stressful, especially as a teen mom. and when she puts that smile on my face, i forget about my stresses for that moment and it makes everything better. I wanna give an example of when laughter really made a difference in my day, even my whole week. So you know when you have those days where nothing is going right, your arguing with your parents or boyfriend or whoever, and you have just been feeling like crap all day and week. You have not laughed, smiled, or done anything fun, because the past couple of days just seem to be dragging on and on with the same old routines. Then, the weekend rolls around, and i personally find a babysitter, and you go hang out with a friend or two. We all get together and start talking about old memories, both good and bad ones, ones that make you embarrassed, or ones that make you want to cry. But then you get to the story that always makes you bust up laughing, if its told the right way. And your all laughing for hours it seems(but really,its only been @NUM3 minutes ).Finally, your forced to stop laughing because you were laughing so hard you started crying. and your stomach hurts like you did fifty crunches, and it hurts so bad, yet you feel so good.Then we would all just lay there, catching our breathe. The only noise you hear is a little sputter of a laugh coming out of someones mouth every thirty seconds or so.. So, all-in-all, that's how I see laughter, and why I think its important in everyone's lives. When your sad, it will make you happy. And when your stressed out, it makes you forget everything bad, and just think about the good for a second. When you have had the worst week of your life it seems like, and then you finally get to have your weekend with the girls, and you laugh your heart out, you feel like a new person. Laughter is good for the soul, and it exercises some kind of muscle in your stomach too, I think. Doesn't really matter who you are, or what the issue, laughter will make you feel better, and forget the bad things. " 20 16 36 4 4 4 4 4 4 3 3 4 4 4 3 +21043 8 " @LOCATION2 @LOCATION2 @CAPS1 wants to travel, and while traveling is fun, it is more exciting to go with people you love, but sometimes you go somewhere with people you @MONTH1 not know very well. Every two years or so, the choir at my @ORGANIZATION1 has an opportunity to go on a trip together. During these trips, the students are able to work with college professors, eat tons of junk food, get away from their parents, and just have a great time together. It's a experience that every @ORGANIZATION1 @CAPS2 dreams of. At the beginning of my @CAPS3 year of @ORGANIZATION1 @ORGANIZATION1, my choir director announced that we would have the opportunity to go to @LOCATION2. I was ecstatic to be going, but I'm an extremely introverted person and I knew that I didn't really have any friends in the choir. I also can't walk, and was scared I would be left behind in a store because I couldn't open the doors or they would go across a street corner that didn't have a @CAPS5 dip down into the street, and thousands of other things that were racing through my mind. I was so terrified that that I would be separated from @PERSON3, my one friend who was in choir, that I almost didn't go. I'm not really sure how, but my mother convinced me that everything would be alright, and I had nothing to fear. Once we arrived in @LOCATION2, we split up into groups to see who wanted to go to explore the @PERSON7 and who wanted to go up @ORGANIZATION2 street, one of the windiest roads in the world. My worst nightmare came true, I was separated from @LOCATION3. I tried to tell myself that nothing would go wrong and that the chaperons wouldn't leave me behind, but in the back of my mind I just kept coming to the same conclusion: I would be alone with a bunch of strangers in a city I knew nothing about. Somehow, I got on the bus that was slowly taking me away from @LOCATION3. One of the other girls, @PERSON4, came to sit by me, and attempted to start a conversation. That was one of the longest bus rides of my life. When we arrived at the bottom of @ORGANIZATION2 street we split yet again, one group was going to walk to the top of the steep hill and the other was going to ride in one of the old trolleys up to the top then walk down where the hill wasn't as steep. I was forced to go on the trolley because the hill was so steep part of the sidewalk contained steps, and since I can't walk, the only alternative was the trolly. Several of the other kids went with us and once again @PERSON4 was in my group. A couple hours later, after getting lost and turning on several wrong streets, we found the trolley station and bought our tickets. Luckily, I managed to avoid conversing with @PERSON4 this whole time, so the ride up the hill was enjoyable. Some of the local people smiled at us because we were so excited to be riding on the trolley. We saw houses, stores, and @LOCATION1 on our ride. There were six people in our group at the time, two chaperons and four kids. Once we reached the top of the hill, two of the kids, @PERSON6 and @PERSON5, decided they really had to go to the bathroom, so one of the chaperons, @PERSON6, and @PERSON5 raced back down the hill to find a public restroom. This left me, alone, with @PERSON4 and @PERSON1, who was the remaining chaperon. We walked leasiurly down the hill, @PERSON2 and @PERSON4 doing most of the talking. Every so often they would ask me a question and I would answer in as few words as possible, and that's what was going on when we walked past a group of men, arguing, in front of a store and one of them yelled, ""@CAPS4, @CAPS5 @CAPS6! Whatcha doing? You goin' to your @CAPS7's house?"" We didn't really know who he was talking to, or what he was talking about, so we just kept walking, but as we reached the end of the block @PERSON4 and I simultaneously broke into laughter. The man was talking about me. The rest of the way down the hill we started coming up with different weird responses that I should have said to the man, each one being more hilarious than the last one, and as conversations go, we eventually got on different topics, which made me realize that @PERSON4 and I really did have many similar traits. We both loved musicals, we both enjoy reading, and we both have annoying, younger brothers. Ever since that day, @PERSON4 and I have been fairly good friends, all because we took a moment to laughed together." 20 20 40 4 4 4 4 4 4 4 4 5 4 4 4 +21044 8 " I believe laughter brings many different people together. In my friendships with friends we are always laughing about random, silly, things that happen to us each day. Laughter is an important part of any friendship or relationship. One time when laughter help me out the most was the during fourth grade. Fourth grade had brought so many ups and downs with it which none of us knew it would. My friends and I had the biggest fight over the littlest reason. This fight included my best friend @PERSON2, also my neighbor, @PERSON1, @PERSON3, and @PERSON4. We all were very close until this fight which was over my favorite sport, @CAPS1, and @CAPS2. Everyone had their sides, @PERSON4 sided with @PERSON2 and I was all alone. @PERSON1 and @PERSON3 didn't side with anyone they just wanted us to get along. It was the hardest for @DATE2 and I because we were best friends and did everything together. All the students in our class knew that and could not believe we had a huge fight. @PERSON3 and @PERSON1 would try as hard as possible to hang out with both of us but somehow it didn't seem like that to @LOCATION1 and I. We both thought that @PERSON1 and @PERSON3 were never hanging out with us. Soon enough our teacher and student teacher had called our parents to tell them about this fight. I remember every other day someone would go home crying. Our parents had a meeting with our teachers and principal to discuss how they can help us. They concluded with the fact that @PERSON2, @PERSON1, and I would being going to see a councilor. @PERSON3 on the other hand got out of seeing the councilor. We found this out when our teacher announced it to the whole class. As @PERSON1 remembers it ""That was the first time, in a long time, you and @PERSON2 actually talked!"" @CAPS3 @PERSON2 or I remember talking but I guess change had start to come. When we went to the councler she was very nice and talked to us in a way we all felt comfortable. She asked us what we missed most about our friendship and all three of us answered laughing. We said that we laughed every day and now we go home crying. She asked us if we liked to play games during the times we used to spend together, we answered yes. She let us play games, such as monopoly, which was really fun. At the end of the day the three of us went back to class smiling and laughing. When we entered the classroom everyone was surprised that we were actually getting along. After school I went home and my mom asked me how the councling session had gone. I smiled and said we all had a blast! The next day the three of us went back to the councler and played more games. This session also we would be writing a paper about how the fight had changed us. When we were done writing, all of us read the paper to one another. All having the same message: I wish this had never happened, I miss the laughing, and I will laugh about this fight in the future. To most extent this message was very true. @DATE1, @PERSON1, @PERSON2 and I are still best friends. Yes, we tell this story to everyone and laugh every time. Most of our friends reactions are shocking because they cant believe we had a fight or they just laugh at how stupid the fight was. Most of our friends ask what the moral of the story was and we simply say ""don't let any little thing get in the way of your friendship and remember to laugh about the good times."" In most ways laughing about this silly fight has brought all of us closer and kept us together. Now we have more and more things we can laugh about. Every friendship has its ups and downs and along with those comes laughter or crying. In the end the only way that you and your friends can be closer is to laugh. Never miss a moment or second guess a change with your friends. They are always going to be with you along the journey of life and laughter is the key." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21045 8 "Benefits of laughter Laughter has always been a big part of my life. when you laugh you are having fun. Having fun puts you in a good mood. When my friends and I get into arguments, or disagreements laughter can be our mediator. Laughter can make a bad situation slightly bearable. Laughter even has great health benefits like working out your core, and lungs. One of my best friend's mom recently passed away right before @CAPS1. Her name was @CAPS2. She was like a second mother to me for several reasons. I had known her for @NUM1 years, and for a small amount of time i even lived at her house. She was basically a mother figure to me, because i don't live with my birth mother. I use to see her almost everyday, because of my friend @PERSON1. He is @NUM2 and we hang out just about every day. I remember the morning he called me and told me his mom was dead on the floor in her bedroom. I ran over there as fast as i could when i saw the ambulance lights. My other friend @PERSON2 spent the @TIME1 at @PERSON1 house the @TIME1 his mom died. When i made it to @PERSON1's house he instantly started to cry on my shoulder. It was wise not to try and make @PERSON1 happy with laughter, because nothing is really funny when a loved one passes away. As time went on @PERSON2 and I started to think of ways to cheer up @LOCATION1. We wanted to get his mind off of his mother. Wouldn't you know it the best way to do so was laughter. I'm the jokester in my group of friends. So some how i have the ability to make people laugh without thinking. I'm more of a doer not a thinker. Id rather see my friends in a good mood than in a bad mood. If people are in a bad mood there is this bad aura or vibe you can just feel it. Its a very undesirable feeling. Laughter cheers up my friends when they are feeling down. Laughter helped make a bad situation like my friends mom dying into a slightly more comfortable situation. Laughter along with trust, and respect are @CAPS3 bring my friends and I together." 18 19 37 4 4 4 4 4 3 3 4 4 4 4 4 +21049 8 " @CAPS2 @CAPS1 The first time i ever heard about the sport @CAPS2 @CAPS1 was the beginning of my freshman year. I was interested in doing it but i wasn't really sure about it. Though during eighth grade i had played volleyball just for the fun of it and really enjoyed it. I had decided i wanted to play volleyball once i got into high school. But when i got into high school my opinion of still playing on the high school volleyball team changed. I realized it was much more then i expected, the people, and the attitudes i realized that if i were to play on the high school volleyball team i wouldn't have any fun. So i started to look into joining the @CAPS2 @CAPS1 team. I had finally decided to sign up and join the team. I had really hope i would like @CAPS2 @CAPS1 because it was my first year on the team and i had absolutely no idea what to expect of it. The first day of practice, after school i went into the girls locker room, changed and took everything with me and went out to the track shed. When i got out there, i saw a lot of people i had never seen before, except for the kids in my grade and also my best friend. My coach @PERSON1 started to talk to everyone that was new to @CAPS2 @CAPS1. She told us that it would be a great experience and it was a a great sport and also it was more of a individual sport rather than a team sport. But also we did many things as a team. After she had talked and discussed the basics of @CAPS2 @CAPS1. We we're to jog our warm up lap and then stretch as a team. Then we were to start our run for the day and everyday was a different work out either a road run or a track work out. I began to really enjoy @CAPS2 @CAPS1. At first, i was beyond sore and couldn't move at all. But as the season started to really get going i eventually got into shape and looked forward to practice after school every day. We trained and got ready for my first race which made me very nervous i had no idea what to expect my first race ever and i was so scared and nervous. But after, i had ran my first race ever i felt good and was proud of myself. @CAPS2 @CAPS1 is something i have always loved every since my freshman year when i first started to run. One of my most favorite races we've ever done was called ""@CAPS5 @CAPS6"" the first time i ever ran in that race was my freshman year, it was like of our third or fourth races of the season. It also happen to be the first time we had done that race in over a couple years. So i was excited for it because i had heard about it and everyone was telling me how exciting it was going to be and that i would love it, the day of the race i was once again nervous like every other race I've been too and still am every since i first joined @CAPS2 @CAPS1. When we arrived at the destination we set up a tent, started to warm up for the each of the races that was going to happen a boys race and a girls race. We also went over the course and that's when i realized what everyone was telling me the mud pits and a huge steep hill and we had to @CAPS2 a river twice. After the race, i had such a great time my team and i laughed and we all enjoyed ourselves. It was so much fun, our bus rides as a team, all the fun practices. As a team we enjoyed many laughs and all the fun times we've had together. My favorite year of @CAPS2 @CAPS1 would have to be my freshman year because it was my best season, i loved it. We grew to love each other and bonded as a team. Laughter was a big part of @CAPS2 @CAPS1 we laughed and enjoyed each others company as we practices and also as we were on bus rides on the way to our meets. We had a lot of fun, and laughed often as a team and that to me was a big part of getting to know my team and being able to bond and build relationships and friendships with everybody on my team. @CAPS2 @CAPS1 is a sport where laughter is a big part of running and having fun and enjoying everyone's company, without laughter our team would not be as happy,excited, or even ready to practice. Laughter is big in @CAPS2 @CAPS1 without it our team would not have as much fun as we've had over the years. " 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +21051 8 " One of the most oddest things in life is how people can have different ways of doing things for just about anything. @CAPS1 what I see most is laughing. There is that laugh you do when you don't really understand your bosses joke and then there is that laugh that you do when it really isn't the ""right time."" @CAPS1 one of my favorite is laughing at your best friend when your crying. Sitting on the train a few weeks ago, I saw a lady with her friend sobbing about how her boyfriend just recently broke up with her. Quietly turning over my shoulder I try to hear more of the story. Her friend nodded and comfort her. @CAPS1 then said something about how gross it was when he ate. Sort of like a cow eating grass. As soon her friend said this the girls face blushed and she giggled with laughter. @CAPS1 still her eyes were red as she sniffled a little. @CAPS1 a slow smile washed over her face. The woman had more of giggle then a laugh. @CAPS1 you could tell the girl was going to be okay because she had someone to make her laugh and remember life is more then just a guy. I thought for a second how this happens more then you think with my best friend. I feel like now even that seven years have gone by it never gets old when we bust out laughing. Most of the time it's something stupid and we are just strangely thinking the same thing. @CAPS1 then there's other times where it will be like the lady's behind me. One of us is upset and we know the perfect thing to say to each other. Friendship is like that. And laughter is the medicine to any problem. After watching the two woman I turn in front of me seeing now a teenage boy and girl. The girl looks slightly nervous as she keeps smoothing her skirt out. Then the boy who keeps shaking his knee up an down. And you can tell he's trying to think of something to say while he keeps taking quick sips from his water bottle. The girl finally pointed out the window and said something about when she was a girl she would play soccer there. He looked where she was pointing and said he thought he maybe played baseball there one time. She nodded her head and they got silent again. The train came to it's next stop jerking a little making the boy spill some of his water on his pants. The girl quickly pulled some tissues out of her purse giving them to the boy. His cheeks flushed with red as he started to chuckle and explaining how nervous he was and this wasn't going to help. The girl stared at him and quickly started to smile. Then they both began to look at each other and started to laugh. The boys laugh was deep and echoed across the train the girls was contagious @CAPS1 sweet. Now the ice had been broken because of one awkward moment and had them both talking and laughing. This was the start of could maybe be even young love. I smiled and rested my head on the window. Watching the trees blur by. I knew how our world is always talked about being so melancholy @CAPS1 I think people forget moments like this. It's those brief seconds with another human relating to you. Making you laugh and caring enough to try to make you feel better that keeps our world from completely going insane. The train slams and starts to slow down as it comes to a stop. I slouch my bag on to my shoulder and get off the train. As I step outside I feel the cool air kiss my cheeks. I looked around see people hurry by me looking for their next bus or person to pick them up. I sit down on the bench and watched the teenage couple holding hands as they walk by me. As they smile and talk everything suddenly goes dark. I throw my hands up to my eyes connecting with another big cold hands. I snap around to see the person who had blinded me. It was my dad smiling ear to ear. I stood up on the bench and hugged him as I started to laugh. My laugh was high pitched @CAPS1 muffled in my dads coat. This was the best type of laugh to me. No action was funny or a friend saying something @CAPS1 because your so happy sometimes you just have to let out a little bit of joy. You just laugh, not for any reason @CAPS1 because your happy. And then in that second everything bad or what you stressed about goes away. Maybe just for a little awhile @CAPS1 it's still something that could make your whole day better." 27 18 42 42 6 5 6 6 6 5 5 3 5 4 4 3 6 5 6 5 4 3 +21052 8 "All Of us now how to laugh and all of us probably have laughed at least once in our entire lives. But I never laughed as hard as I did the day my friend @CAPS1 and I were waiting for our friends @LOCATION1, @PERSON2 and @PERSON3 to come back from getting @PERSON3 from @LOCATION3 to come down and hang out for a little while. @PERSON1 had to wait at my house for them to get back, on the way to my house I'm thinking what in the world am I supposed to do with @CAPS1 all alone? @PERSON1 and I always have a lot of fun hanging out with each other but we always have people around when we do hang out, I anticipated when @PERSON1 got there cause I couldn't think of what me and @PERSON1 could do when we were at my house with out @PERSON2 and @PERSON4 being there. We couldn't hang out in the house because my @CAPS3 had a cold, so we had to go outside in to the shop which is also called a garage, and hang out together until @PERSON2 and @PERSON4 got @NUM1 finally showed up and I didn't feel as sick as i thought that I would when she got there, she got out of the car and came in, we went straight to the shop and got started on trying to find something to do, @PERSON1 suggested that we sat down and just talked, I was up for anything as long as it was fun and didn't involve going anywhere at @NUM2: @NUM3 @CAPS4 clock at night. I sat there and asked her about her life was she happy, did she hate living in @LOCATION2 and a lot of other stuff. but then the ultimate topic of conversations came up... T.V. commercials. we talked about all of our favorite @CAPS5 commercials and why they were our favorite, I told her my favorite commercials of all time were the freecreditreport.com commercials, the old ones not the new ones, and that the reason i loved them so much was because they had real life situations in them that made them very easy to believe but they were also sort of hard to believe cause i don't know anyone who has had to work at a restaurant dressed as a pirate because of identity theft, or someone who has had to buy a really cruddy car because their credit score was whack, and I've also never heard of a used sub compact? Any-who @CAPS1 said that her favorite commercial was a car commercial that had dancing hamsters in it telling you which car would be the best choice to go with, @CAPS1 was describing the commercial to me and actually started dancing in the middle of my garage. It was quite funny but at the same time some what disturbing. @PERSON1 is a really good friend even if she is a little goofy sometimes but the best thing about having @CAPS1 is knowing that when ever i need a really good friend i have @CAPS1 after the whole dancing bit i knew what i wanted to while @CAPS1 was there... I wanted to be crazy and hyper I wanted to be so full of energy the world fastest runner wouldn't be able to keep up with me! I went into the kitchen and downed some sugar and got about as hyper as @CAPS1, only less, then the time almost flew by before we knew it @PERSON2, @LOCATION1, and @PERSON3 were there we couldn't believe it. @PERSON3 got out of the car and the first person he gave a hug to was @PERSON1 of course, then he gave me a hug, then @PERSON4, then @PERSON2. I hadn't seen @PERSON3 in so long it was like we had never met before. @CAPS1 showed everyone her dance and the song, everybody laughed so hard i thought they were gonna pass out I had a lot of fun that night mostly because of @CAPS1, she was very nice she was funny and she kept me thinking about other things then what was on my mind at the time @CAPS1 was a big ball of hyper that night, I thought that it was funny. We were just standing there in the shed and she goes ""mouse"" and I scream and jump up on to a chair and scream ""@CAPS14!"" @CAPS1 reassures me that it was in the rafters and couldn't come down and get us so for the rest of the time we just acted like he wasn't even there I'm really lucky to have @CAPS1 and I'm really glad for the day i worked up enough courage to go over and say hi to her that day in art cause other wise id be lost @PERSON1 is the best friend a girl could ever ask for and I was fortunate enough to get her for my best friend. She is smart funny and talented and I would miss her if she were gone @CAPS17 really glad she moved down here from port orford." 16 16 32 4 3 4 4 3 3 4 3 3 3 3 3 +21053 8 "I live in a life full of laughter, I can not think of a day that I have not laughed. Even when I went threw the hardest days of my life a little @DATE1, there was still someone to make me or a reason to laugh. I think laughing is the best medicine for a person. If you are someone that can go a day without laughing, I'd love to meet you and make that change! There are a few particular times I can remember that we're just full of laughter, most involving family and friends. The first one that I can remember was when my parents showed me a picture of when I was a little girl, there are many laughing episodes when it come to me as a little kid. The picture they showed me was when it was @DATE2 time and I had no shirt, just shorts on. I was sitting on a sled, facing uphill, with the sun just shining. I can not explain how hard my family and I laughed together just from looking at one picture. Another laughing moment I can remember was not when it happened but when I look back now all I can think to myself is, wow. I was about six @DATE1 old at my best friends house who owned eight lamas, who got to get tied up in the yard everyday. The one I always got to walk was named, @CAPS1. @CAPS1 was sweet, @CAPS2 I though, until one @DATE2 day she decided to drag me across a highway. While I was getting drug across a highway that was usually busy, all I could here was people yelling ""let go of her lead!"" @CAPS2 me being six I thought if I let go that the lama would get hit by a car or never come back. I regretted not letting go once an adult got to me because I was all scraped up and blistered from being drug across the pavement. That is a time in my life I will always look back and laugh, but never forget. The last one, my favorite times in life. This would be pretty much anytime I am with my boyfriend. Favorite time was our trip to the beach for the first time. We had never been there together but, it was amazing! We attempted to ride bikes on the sand, failed, and just laughed about it. Then we decided to just walk around all the beach stores and see if we could find something we might have wanted to buy. Later that day we just went to the beach, walked and felt amazing. The funny part of this trip was when we we're trying to take pictures of each other jumping in the air with the ocean behind us. People were looking at us like we were crazy but, we didn't care because we were having fun and laughing almost the whole time! I think that laughing is a very important part of everyday life, to everyone. If you don't laugh at least once in day then something is wrong. I love looking back at pictures from when I was little, having memories with best friends and their animals, as @CAPS2 as taking trips and just being with my boyfriend. Laughing has helped me a lot in life because it brings me up when I am feeling down." 13 20 30 30 2 2 3 3 3 3 4 4 4 4 4 4 3 3 4 4 3 3 +21054 8 "Laughter is the @CAPS1 @CAPS2't @CAPS6 frustrating when you can't manage to get someone to laugh? Is @CAPS6 really possible to be so upset that you can't even crack a little smile? There's something to laugh at in every situation, sometimes @CAPS6 just takes some thinking and imagination to figure out what @CAPS6 is. I personally had an experience where laughter was all I could look to in order for me to feel like everything was okay. Last @DATE1, I was babysitting, @CAPS6 was a nice and sunny day and we were all craving chocolate frostys from @ORGANIZATION1. At the time I could not legally drive anybody outside of my family, so we decided to call my sister, @LOCATION1. She had the day off work, so @CAPS6 seemed to be a perfect day for frostys. We waited for what seemed like forever for @PERSON2 to get to the house and finally, after about an hour, she pulled in the driveway. The kids were so excited. The four of us loaded into the back of @CAPS4 car and off we went to @ORGANIZATION1. When we got there, we started getting out of the car and that's when I noticed something was wrong. @PERSON2 had just locked the keys in the car, with the keys still in the ignition and the car running! I was still getting the kids out of the car so you'd think that I would just reach in and grab them, but no, that was not the case here. I asked @PERSON2 ""@CAPS3 did you leave your car running? Aren't you going to get your keys?"" @CAPS4 response was, ""@CAPS5, no! I locked @CAPS6 too! Don't close your door!"" @CAPS6 was too late. I instinctively closed the door after i was done. I hadn't really thought about the fact that I could have saved all of this from happening, especially considering that I was the one that noticed @CAPS6 first. Apparently I don't listen to people's responses after I ask them a question because the kids were all practically rolling on the ground because they were laughing so hard and I couldn't figure out what was so funny. Then @CAPS6 hit me, I felt like an idiot. We were stuck in the @LOCATION2's parking lot with three kids, locked outside of a car that was running and we didn't really know what to do from there. Our first solution to the problem was to call my mom and have @CAPS4 bring the spare @CAPS1, but we weren't really sure where the spare @CAPS1 was at the time. My mom said that she didn't have @CAPS6 so we would have to call my dad and ask him where @CAPS6 was. We called him and first he laughed at us for being so stupid, but then said the @CAPS1 was in his truck and somebody would have to come get @CAPS6 from him because he was about to go into a meeting. Obviously we couldn't go get @CAPS6 from him, so we called my mom back and she agreed to go get @CAPS6, though at this point she wasn't very happy about having to leave work to fix our stupidity. She told us to not worry about the car, nothing was going to happen to @CAPS6 with @CAPS6 locked, and just go inside @PERSON1's and get our frostys. Through all of this @PERSON2 and I were just trying to keep the kids entertained, but they didn't really need us for that. They were too busy role playing me closing the door while @PERSON2 said not to. They thought @CAPS6 was hilarious. @PERSON2 and I were not so humored by @CAPS6, although we did think @CAPS6 was pretty funny to watch them exaggerate the whole thing over and over again. Instead of us making the kids laugh, they were making us laugh. We sat at @LOCATION2's for almost two hours before my mom showed up with the @CAPS1. @CAPS6 turned out that the @CAPS1 was not in my dad's truck like we thought, @CAPS6 was at our house, hanging on the board with all of the other spare keys. That didn't matter though, all that mattered was that we get the kids back home before their mom showed up with us not there. The car sitting there using up the gas with nobody in the car was not the funny part of the day, neither was @PERSON2 blaming me for everything and making me fill @CAPS4 tank with all the money I had earned that day from babysitting. The funny part was the kids. Still today, they laugh about our little @PERSON1's adventure. @CAPS6 just makes me realize that @CAPS6's all kids that bring laughter to the world and encourage happiness in everyone. I believe everybody needs a little laughter in their day, even if they think @CAPS6's the worst day ever. Laughter really is the @CAPS1." 20 23 43 4 4 4 4 4 4 5 5 5 5 5 4 +21055 8 " Laughter is a huge part oh building friendships, relationships, and partnerships. Laughing is the first thing you learn to do you are born knowing how to laugh its the only thing that you are born to know how to do. Laughter for me is what starts a friendship if I can make someone laugh we are already closer then when we first said ""@CAPS1"". As an example when I started working at the daycare i am at now when I got the other teachers to laugh you can just tell its there way of excepting you as part of there crew. On the first day of work I walked in the the daycare nervous they sent me to the preschool classroom. I am pretty sure my boss could tell I was nervous and it made me laugh. It made me feel welcome to be there and like we could be friends. The children in that class room made me laugh the things they did. well working with children you find out if you can make them laugh or if you laugh at there jokes they are more inclined to trust you and with that you can make them feel comfortable around you. Having someones trust is sometimes hard to get but if you get it from the very beginning its easy to keep but also very easy to lose. When someone is down in the dumps making them simply laugh can make everything better laughter is like medicine in makes you feel better when nothing else can. Its safe to say making people laugh comes natural to I am just good at it and jokes come easily. When you laugh it makes everything better. Laughing is actually health and is a form of excursive. When I am at work and kids laugh it makes me feel better even if I am having the worst day ever. When I am around people that are happy it makes me feel alot better about myself. Its even better when its babies that laugh becasuse they are so cute when they do it." 15 20 35 3 3 4 4 3 3 4 4 4 4 4 4 +21056 8 "Laughter, @CAPS1 and @CAPS2 on an @CAPS3 @DATE1 @CAPS4 One of my favorite @DATE1 traditions is the visit to the house of our @CAPS2, the @CAPS5. They live on eighty forested and meadowed acres outside of a quaint, old town. Their small green house overlooks brown fields and a blue pond, with tall trees forming a backdrop. We arrive midmorning. We either find our @CAPS2 in the house or encounter them tromping out of the woods to meet us, shovels, chainsaws and other trailbuilding implements in their hands. After the customary hello, how have you been, we often wander around the yard, exclaiming at the new fruit trees or hearing stories about the latest tenants of the birdhouses. During the hottest part of the @CAPS4, we head for the shade of the lush @ORGANIZATION1 woods. A short walk will bring us to a trail. I love walking among the sun-streaked ferns and fallen logs, treading carefully the rickety bridges over burbling streams, bouncing confidently on the sturdy new bridges, and trying to avoid the dogs as they galumph in and out of the water. @PERSON2 knows all about the flora and fauna of the region, so we get a constant stream of knowledge as we hike. He also, of course, has to tell us about the trees he's planted -- a redwood here (look how well it's doing! A foot since last fall!) and a douglas fir over there (not as well. That big redwood is shading it too much). One of the best parts of the hike is when we see the dead-end section of trail that my family helped construct three years ago. We always walk to the end of it and discuss where it could go from there -- over the stream or beside it, or up the hill and if so, where would the switchbacks be? could you really bike up a trail like that? After our walk, we arrive back at the house, sweaty and talkative. Then it's time to put on swimsuits and jump in the pond! They recently built a dock that we can jump off of -- a great improvement over wading in from the edge. We swim for the majority of the @TIME1, racing from one end of the pond to the other, splashing on innertubes, having pondweed-throwing battles. Finally we get tired and sit by the side of the pond, drying off in the warm sun. By @TIME1, dinner is ready. Laura usually makes salmon, accompanied by a plethora of delicious side dishes. We drag chairs out to the hill above the pond and enjoy a leisurely supper. From the hill, we can see turtles and birds on the pond, bugs over the fields, and more birds swooping through the air feasting on the aforementioned bugs. After the meal, we haul chairs and dishes back to the house and sit on the porch into the @TIME2. @PERSON2's favorite part of the @CAPS4 is at dusk, when the sun is at just the right angle to show all the bugs swirling through the air. At one point, all the bugs gather together and create a tornado, twisting upwards into the darkening sky, and then -- they're gone, until the next @CAPS4. It's an incredible spectacle; thousands of tiny insects disappering at one swoop. The best thing about these days is the friendship and comradery we have with this wonderful family. The parents knew each other long before us kids were born, so we have a lot to talk about; @PERSON2 is very interested in science topics, and he always finds a way to bring up the latest article he read. And, as with all great @CAPS2, we laugh constantly. I consistently get hiccups at least three times just when we're lounging on the porch after our busy @CAPS4. Even on the most serious topics, my dad or the @PERSON1 boys can find a joke to make, usually ""politically incorrect"" but always very funny. Now don't even get me started on the @DATE1 camping trips, winter ski trips or autumn cider pressing we do with the @CAPS5. " 24 24 48 5 4 5 5 5 5 5 4 5 5 5 5 +21057 8 " Misunderstood ""@CAPS1 the heck is her problem,"" is @CAPS1 I thought as I glanced over and @CAPS7 gave me @CAPS15 nasty look. @CAPS27 obviously thought the new girl was weird. @CAPS7 @CAPS24 had @CAPS15 killer look in her eyes. I observed the way @CAPS7 glared at @CAPS27 in the room, and how her facial expression never changed. ""@CAPS2 huh,"" my cousin, @PERSON1, asked while staring at @CAPS3, who was, of course, the new girl. I glanced over at @CAPS3 and then back at @LOCATION1. ""@CAPS5 on! @CAPS11 can say @CAPS26! @CAPS7 can't hear us,"" @CAPS7 whispered. @PERSON1's whispers weren't exactly as quiet as @CAPS7 thought. @CAPS3 could probably hear everything we were saying. I glanced over at her again, and I noticed behind those cold eyes, @CAPS7 seemed kinda lonely and sad. I guess @CAPS26's possible, @CAPS7 has been the talk of the whole @NUM1 grade class since @CAPS7 arrived about @NUM2 days ago. ""@CAPS6 hello! Taylor? Are @CAPS11 there?"" @CAPS7 was now in my face and view of @CAPS3. ""@CAPS7 does look @CAPS2 on the outside, but maybe @CAPS7 is actually a nice person,"" is @CAPS1 I said, but I knew @CAPS15 would not satisfy @PERSON1 at all. ""@CAPS1? Definitely not. Her parents probably belong to some mafia or something. @CAPS7 gives off that type of aura."" ""@CAPS11 shouldn't judge someone @CAPS31 their looks,"" I responded. @PERSON1 gave me @CAPS15 sort of confusing look. ""I mean, @CAPS11 never know unless @CAPS11 ask."" ""@CAPS12 if your such the expert on @CAPS26 why don't @CAPS11 go sit with her at lunch, and ask her."" @CAPS13 man. There was @CAPS29 way I could possibly do that. I know I @CAPS24 said not to judge someone @CAPS31 their appearance, but @CAPS7 looks like if I even open my mouth to speak to her @CAPS7 will kick me in the shins. @CAPS1 a predicament @CAPS15 is. ""@CAPS14't @CAPS11 the one who wants to get to know her? @CAPS11 ask."" @CAPS15 one won't @CAPS31 past @PERSON1 either. ""@CAPS16? @CAPS29 way. We already decided @CAPS11 were going to ask. @CAPS11 can't @CAPS5 back with the same thing,"" @CAPS7 argued. @PERSON1 is a very stubborn girl, and though @CAPS7 likes to pick on me, @CAPS7 really is a nice person. Also, despite her obnoxious exterior @CAPS7 has a lot of friends, unlike myself who is shy. ""@CAPS17,"" I muttered. I had to give in. @CAPS29 matter @CAPS1 I say, I am going to have to face @CAPS3. ""That's @CAPS1 I thought. @CAPS26's a good opportunity to make a new friend. I am @CAPS24 helping @CAPS11 out."" @CAPS7 had @CAPS15 mischievous grin on her face. I glanced over at @CAPS3 one last time, and then at the clock. @CAPS26 was @NUM3 in the morning, give or take a minute or two since I am nearsighted, but lunch is at @NUM4. I couldn't pay attention at all during class. I was too busy playing out possible scenes that might occur at lunch. Maybe @CAPS7 isn't mean, maybe @CAPS7 is actually nice, and people are @CAPS24 misunderstanding, including me. That aside, I don't even know @CAPS1 to say; I can't @CAPS24 casually walk up, sit down in front her, look her in the eye, smile and say ""@CAPS21. How are @CAPS11?"" The impossible is @CAPS24 impossible and people should @CAPS24 except @CAPS26, in fact @CAPS26 should actually be a fundamental law. I looked over at the clock again, @CAPS26 was now @NUM5 and still ticking. ""@NUM6 minutes,"" @PERSON1 said in some type of singing tone. I sighed. ""@CAPS22? I kept watching @CAPS11 during class. Looked like @CAPS11 were going to jump through that window and run away at any second."" @CAPS7 laughed. My seat was @CAPS31 the window, and that option had not slipped my mind. ""I have @CAPS29 clue @CAPS1 I am going to say,"" I finally said. ""@CAPS24 say anything that won't offend her. Ask about her hobbies or @CAPS1 @CAPS7 likes. Talk about school even,"" @CAPS7 replied. ""@CAPS26's time. Go."" @CAPS27 piled out of the class room and in to the cafeteria. After I got my lunch, I started walking toward the table @CAPS3 was at; @CAPS29 one was around her, @CAPS29 surprise there. ""@CAPS6, @MONTH1 I sit here,"" I asked. My voice was kinda shaky and I thought I was about to have a heart attack from nervousness and from surprise at @CAPS1 @CAPS7 said. ""@CAPS31 all means, go ahead,"" @CAPS7 smiled. Wow, @CAPS7 is really cute when @CAPS7 smiles. I smiled back and sat down. I created a conversation @CAPS31 introducing myself and asking how @CAPS7 was and how @CAPS7 liked @CAPS15 school. To my surprise we actually shared a common interest, and bonded. @CAPS7 was laughing. I was laughing. We were laughing together. After that day, and even still today we are the best of friends. That slight feeling of laughter is @CAPS24 so nostalgic, @CAPS26's almost indescribable. @CAPS24 something so minor such as laughter, or even a little giggle, can bring anybody together to form a simple bond, friendship. Laughter is truly an essential part of life." 20 20 40 4 4 5 4 4 4 4 4 4 4 4 4 +21058 8 " It is often said that laughter can bring people together. I hold that knowledge to be true. We've all laughed at one point in our lives, whether it was in a group of people, or just laughing, and having a @CAPS9 time. Reality is we are all connected to each other in one very simple way, we all have laughed in our lives. Laughter to everyone means something different. To @CAPS15 laughter can mean that I'm happy and full of life and other times it can simply mean that I feel I really don't know @CAPS22 to do. There's one time though that it meant both. It was a cold, and rainy @DATE1 day in @DATE2. I was with my friends watching movies. When I'm with my friends typically that means we're talking about the latest thing, guys, hair, and whatever else. ""@CAPS1 my gosh @PERSON3!"" We heard @PERSON2 scream as @PERSON1 and I walked into my room. ""@CAPS1 boy."" I thought, ""@CAPS3 we @CAPS7 again. I new it would be a mistake to have both of them @CAPS3 at the same time."" @PERSON1 and I exchanged glances, I new she had the same thought going through @CAPS28 head. ""@CAPS4, @CAPS22 happened this time?"" @PERSON1 sighed as we entered the room only to see the two of them going at each other, violently tugging each others hair, slapping each other, @CAPS29 did everything imaginable to each other before I lost it. I hate seeing my friends @CAPS7 at each other the way @CAPS29 were. ""@CAPS4!"" I finally yell. ""@CAPS3's @CAPS22 we're going to do. You,"" I pointed to @PERSON3, ""@CAPS7 and sit over there."" @PERSON3 walked out of my room and sat down. ""@CAPS4, @CAPS9. @CAPS14 can't you two just relax and enjoy this time and act like you two are friends? For at least another six hours?"" I looked at each of them, @CAPS29 nodded in response. ""@CAPS9, @CAPS14 lets @CAPS7 finish the rest of this movie, or play a nice quiet game."" I sighed, hoping the worst was over. @PERSON3 walked back into my room, and laid on my bed, we continued through the movie peacefully. ""@CAPS10't @CAPS11 @CAPS12 just a comical genius?"" @PERSON2 said starring at the screen. We started laughing at @CAPS28 because @CAPS28 eyes seemed to be stuck on only him. ""@CAPS1 my gosh @PERSON2!"" @PERSON3 said laughing. ""@CAPS14 who's calling who crazy?"" @CAPS15 and @PERSON1 both looked at each other and started nervously chuckling. The tension in the air was almost to thick. @PERSON2 had on @CAPS28 game face for that comment. I leaned over to @PERSON1 and whispered, ""@CAPS1 this is not going to be pretty."" We started preparing for the worst. ""@CAPS17 grab @PERSON3's arm and drag @CAPS28 if you have to, out of this room."" @PERSON1 jumped to @CAPS28 feet and got @PERSON3 out of the room, with just enough time for @CAPS15 to pin @LOCATION1 to my bed. When @CAPS29 had left and the door was closed I let @CAPS28 up but kept myself between @CAPS28 and the door. ""@CAPS4, @CAPS22 is going on with you two?"" I nervously asked @CAPS28. @PERSON2 started to laugh a sort of villainous cackle that sent chills running down my spine. I couldn't help but give out a scared sounding chuckle, that only influenced the situation more. This could only mean one thing, my original intent, to not invite one of them, had just been confirmed, we were in for it. I slowly started backing away and headed out of my room to see @CAPS22 @PERSON3 had to say, since I never actually got anything out of @LOCATION1. I inhaled and headed down the hall to them. ""@CAPS4 @CAPS22's going on? You two haven't ever had this big of a fight before."" @CAPS20 started flowing down @CAPS28 cheeks, like a stream flowing steadily down a hill. ""I...I don't know @CAPS22 h..happened."" @PERSON3 said still weeping. ""I j..just wanted to a..ask @CAPS28 @CAPS22 ha..happened today."" @CAPS21 and @PERSON1's faces just had that looked of, @CAPS22 happened that we missed. ""@CAPS22 did you mean when you said @CAPS22 happened today?"" I asked. I was at a loss of words when she gave @CAPS15 @CAPS28 response. ""@CAPS23 that's all that happened? You two were going to rip each others hair out over a guy?"" @PERSON3 looked at @CAPS15 and simply said yes. ""@CAPS4 come in @CAPS3."" All three of us walked inside. I sat on the bed next to @LOCATION1, @PERSON1 was in the middle protecting @PERSON3. ""@CAPS4, this is pointless. @CAPS23 you both like the same guy. Big deal get over it! @CAPS29 just make things more complicated anyway."" I looked to both of them, @CAPS20 streaming down both their rosie cheeks. ""@CAPS14 can we just forgive and forget?"" @CAPS27 filled the room. @PERSON3 crawled over, the metal frame of the bed squeaking as she did. ""I'm @CAPS23 sorry, @PERSON2. Can you forgive @CAPS15?"" @CAPS28 face tear stained and red eyed, @PERSON2 was @CAPS17 to reply. ""Of course I forgive you."" @CAPS29 hugged with @CAPS20 still streaming down their faces. All was well again." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21059 8 " Laughter is one of the most important elements in one's life. If you're down, one smile, or laugh, causes your body to send messages throughout you body making you feel better. Scientists also say that it takes more muscles to frown than smile. I believe that this is true, because in order to frown, you have to make your whole body look like it's frowning, like your shoulders and your face, but only a little smile shows people that you're happy. In that way, my family is extremely beneficial to each other. Everyday when we're having a conversation, someone will bring up a story, or movie quote that they were reminded of and say it out loud to everybody with just the right accent so that it sounds exactly like the movie, and cause everyone to laugh. For example, every now and again, my brother or sister will bring up a quote from @PERSON1 or @PERSON2, two comedians we really enjoy listening to, and every person in the room would pitch in with hilarious quotes they said and this could go on all night. Or, a little while ago, my favorite movie wasGet @CAPS1 because it was quite entertaining, so we would have rampages over supper or just randomly in the kitchen quoting that one movie for at least half an hour and the room would be filled with non-stop laughter. On the other hand, someone will make a random comment because they heard wrong, or just don't understand. Like when we were having a dinner party at my house. My family and our guests were sitting at the table just finished eating when we got onto the topic of @CAPS2 @CAPS3 because my little sister was learning about them in school. We verbally completed the train of ""Which @CAPS4 ruled @CAPS5, who they came from, and @CAPS5 they're other names were"". But according to my little sister, we missed one. So, out of the blue comes ""@CAPS5 about @CAPS6?!"". Her intentions were about the @CAPS4, but I believe everyone in the room heard ""@CAPS5 about @CAPS9 @CAPS10?!"", until we paused for a second and processed @CAPS5 she meant, and we all laughed and she had no idea why until she stopped to think about it herself. Our family has good times filled with laughter and jokes, but there are also a few very depressing times. About four years ago, an incident happened with my next door neighbor that caused him to be brutally attacked and pass away on our door step. He was very dear to my family and the rest of the cul-de-sac we live in, and for him to die like that was extremely unexpected and terrible to wake up to in the middle of night. After that, there was a period of not very much laughter and fun because we were all haunted by this horror. But, we all knew that his spirit was there to protect us, and so whenever we thought of that, there was a gap between the mourning of his loss, only to be filled in with happiness and laughter. I believe that my family and I have a really tight connection between each other, because we're so funny. There's never any stress between us, but always a calm sense of familiarity and bonding. Someone once said ""Laughter is the shortest distance between two people."" I believe that, whoever that person is, is right. Even between two strangers that run into each other on the street, if they stop and have a conversation, and one person cracks a joke causing them both to laugh, it's the spark to an immediate connection, and they could become friends for a long time. This is one of the most important values that people have, and most people overlook how much it really matters to humanity." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21060 8 " The human brain is a piece of work. Its the kingdom to our lives. It infuriates us, guides us, helps us and destroys us. Our brains can make our bodies feel anything it wants to. Its really something else. One of the most valuable things are brains are capable of is a sense of humor. Laughter. The ability to not take life to seriously for a moment. That light switch in @CAPS7 body that causes @CAPS7 brain to reach a state of uncontrollable happiness. Laughter is our brains only way of coping with the world. Scoping out the comical events life has to offer us. I am personally one of those people that finds everything in life funny, or will find a way to make it funny. I am hardly ever serious nor take things seriously. The same with my friends, we are always the people having a good time because we make life interesting. Maybe its our gnarly facial expressions we exchange one another, or we @MONTH1 just be funny looking. Either way we have a sense of humor. That's @CAPS4 life is about, @CAPS1 @CAPS7 happiness with people who fill @CAPS7 life with joy. @PERSON1 said, ""live simply, so that others can simply live."" I @CAPS9 we all can with a little sense of humor. Last year a couple friends and I went to mission ridge for a weekend to go snowboarding. We had it made, our own hotel suite with two king sized beds and a plasma @CAPS2. @PERSON2 and I slept on one bed and @PERSON3 on the other. We all have always gotten along perfectly and have shared the biggest laughs together. Nothing could come between any of us. Other than a little midnight prank. On the second night at the hotel, @PERSON3 fell asleep first. @PERSON2 and I were watching some ghost movie that bored us to tears. @PERSON2 was eating a bag of pop corn and started throwing little kettle pieces at @LOCATION1, trying to wake him up. ""@CAPS3, I have the funniest idea."" @PERSON2 whispered over to me. ""@CAPS4?"" I mouthed back lazily. Without a word @PERSON2 jumped out of bed and ran into the bathroom. She returned with a tube of @ORGANIZATION2 tooth paste, a sack of coins and a package of peach rings. ""I had nothing to do with this."" I stated, continuing to glare at the television set. @PERSON2 began squirting out tooth paste onto @PERSON3's arms, she ran the creamy solution down his legs, back up to his face and into his hair. She stuck quarters, dimes, and penny's into the minty cement, along with the sugary peach rings. ""@CAPS5 is going to kill you."" I gasped. ""@CAPS6 @CAPS5 wont! It will be hilarious."" @PERSON2 blurted and then plopped back onto the hotel bed, admiring her work. @PERSON2 then picked up her bag of popcorn and resumed throwing pieces of kettle at @LOCATION1's face. The next morning was not how @PERSON2 planned. @PERSON3 woke up alright, but did not have the expression on his face @PERSON2 intended on. ""@CAPS7 done for @PERSON2!"" @PERSON3 hollered. @PERSON2 smiled, still convinced this was all a joke. I saw the fury in @LOCATION1's eyes. @CAPS5 was beyond irate. His body crusted over with dried tooth paste. Quarters, dimes and penny's drilled into his skin and peach rings dangled moldy off his legs. @PERSON3 rushed into the bathroom to look into the mirror. @CAPS5 stormed back into the room with a shampoo bottle clenched in his hand. @PERSON2 turned to face him and her smile disintegrated. ""@CAPS4 are you gonna do with that shampoo bottle?"" @PERSON2 questioned, confused. @PERSON3 grew closer to @PERSON2, she backed away slowly, not quite sure @CAPS4 his intentions were. They both switched positions, her back now facing the door and @PERSON3 across the room by the window. @PERSON3 raised the shampoo bottle over his head. ""@CAPS9 fast."" @PERSON3 shouted and chucked the bottle as hard as @CAPS5 could at @ORGANIZATION1's face. But sadly, @PERSON2 ducked just in time for the bottle to miss her face and create a nuclear explosion on the door behind her. Blue liquid spewed out all over the walls. There was an indent of where the bottle hit the door. @PERSON2's whole back side was covered in blue sludge. I hopped out of bed and ran to the entrance where the explosion took place. @PERSON3 reached @PERSON2 and immediately burst into roaring laughter. @PERSON2 sat down in a puddle of shampoo and ruptured in chuckles. I stood there, smiling at them. @PERSON3 still crusted over, @PERSON2 covered in blue goop that looked like someone threw up a blueberry smoothie on her back. I sat down with them, we all starred at each other without a word. everything was fine. It then occurred to me that @CAPS6 matter @CAPS4 we do to each other, enrage or try to explode one another, we will always find a way to laugh about it. A sense of humor is merely our souls telling us everything will be okay. Its that one value in life we can cherish forever." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21061 8 " It was my thirteenth birthday. I woke up on a sunny day which was odd for @ORGANIZATION1 because it was late @DATE1. I got up with excitement. I ran to the kitchen where my parents were. My dad asked me if I wanted to go to work with him and i said yes. My dad is a roofer so i couldn't go on top of the houses because i was to young. I had to stay on the bottom and pick up trash that they would throw. I was doing that for a while, then i got my soccer ball out of my dads truck and i started running around kicking the ball. As i was running i noticed this slippery spot. I had in mind not to go there but i forgot and i stepped on the slippery spot. i fell but while i was falling some how i kicked the soccer ball and it hit the wall and it came back to hit me in the face. My dad and uncles were laughing their lungs out while i was turning red and embarrassed. They were telling me how funny it would be if it was slow motion.i was so embarrassed i put the ball back in my dads truck and i went back to work. The sun was coming down, and we were heading home. we arrived at my house and i walk towards the house door and i opened it and i hear ""@CAPS1!"" @CAPS2, i looked around and my friends and family were there. the reason my dad took me to work was because my mom was going to throw me a @CAPS1 party.i go and say hi to my family and friends. Then i went to go take a shower, iwas in the shower putting soap when all of a sudden the lights go out. I got scared and screamedas loud as i could. I ran out of the bathroom. Went to the the living room and the lights turn back on. My family and friends looked at me and started to laugh. In my head im thinking why are they laughing at me? I looked down and im naked. Everybody was laughing and enjoying the moment, while i was turning pitch red and about to cry. I ran to my room, i put some clothes on. I went back to the living room and i enjoyed my party." 15 15 30 3 3 3 3 3 3 3 3 4 4 3 3 +21063 8 " What would you do in a world with @CAPS4 laughter? Everyday everyone smiles or laughs. It makes a person feel better. Laughing is a healthy drug it affects you and other people for the best. There are many times in my life where all I needed was to laugh. All I wanted was to have someone there to make me smile and bring up my spirits. I have an example. I just moved again it was my @NUM1 high school. I felt totally alone I knew nobody, and nobody was there to help me feel less alone. I wanted a friendly face to smile at me, or talk to me. The whole @NUM2 hours at this new school was dreadful. When waiting for my mom to come get me I was hating my new life here. ""@CAPS1 @CAPS4 one talked to me on the first day, then @CAPS4 one will talk to me at all"" is what kept passing through my mind. I remembered everyday after school walking home with my group of friends, we would all tease each other, or just say something stupid. We were always laughing and happy. As I was sitting there waiting for my mom, I heard my name being called by a familiar voice. As I looked up I found my friends @PERSON5, @PERSON1 and @PERSON2 sticking their heads out my moms car window waving at me. Seeing how school just barely got out there were tons of teenagers still @NUM3, @PERSON2, @PERSON6!!"" I exclaimed. My unhappy thoughts disappeared and I was smiling. I could feel people starring at me as my friends got out of the car to give me a hug. For some reason I didn't care all I cared about was being able to smile again, and be truly happy with my closest friends. I grabbed my purse and ran over to them to give them all hugs. They missed two classes to come pick me up from school. My mom told them how unhappy I was, and that what I needed was a friendly face. She couldn't have been more right. After hugs, smiles, and laughs were exchanged my friend @PERSON5 said his classic line.""@CAPS2 @CAPS3 @PERSON3?"" @CAPS4 one could help but laugh even my mom broke a smile. When getting in the car I forgot all about my bad day and how horrible I felt. I forgot about how badly I wanted my friends there to make me feel me. When they actually came I couldn't have been more happier. My life felt great, school after that was great. I made great friends there because my three buddies reminded me who I was, and pushed me to be me. They made me laugh and when I smiled at my new high school people were more open and welcoming to me. It wasn't long after that I @PERSON4 was able to go to school with a smile and laugh everyday. Friends have a great influence in your life they remind you to smile and how great a laugh is. Laughing is the truth between happiness I would have to say. It was because of me smiling and laughing that I made new friends and had another great high school life. Laughing brought people to me because it made me seem like a friendly fun person that I am. I see laughing being the cure to all unhappiness." 20 17 37 4 4 4 4 4 4 4 4 4 4 3 3 +21064 8 "@PERSON1 of laughter Once upon a time there once lived a girl named @PERSON1. The year was two thousand and fourty eight and there were only a few people that were alive after @DATE1, thats @CAPS7 the world ended. @PERSON1's friend @PERSON2 was a huge @CAPS1 freak. She would, by herself, make funny vidoes and put them on @CAPS2 @CAPS3 @CAPS4. One day she was so bored that she went and sat in front of her computer camera and made an "I'm a @ORGANIZATION1" video. It was the funniest thing @PERSON1 had ever seen. She was wearing a a @ORGANIZATION1 hat that was part of the @CAPS1 uniform, and was wearing a @CAPS1 shirt with some of the known characters. @PERSON2 was singing, "I'm a @ORGANIZATION1. I'm a little @ORGANIZATION1 @ORGANIZATION1. I'm slitherin' slitherin' in the garden, snatching me up a mouse, a mousey mouse. I'm going to move my tongue to taste you." @CAPS7 she was finished she posted it on the web site. @PERSON1 showed all her friends what an epic faliure that video was, @PERSON2 of course loved it and so did @PERSON1. Once the video wasnt that cool or funny anymore, which that took about two point five days, no one really watched it and no one really laughed about it, which it was made for that purpose. But @CAPS7 someone would watch it for the first time they would go to school, laugh their butts off and feel like an idiot because everybody had already watched it, and they didnt think it was funny anymore. So from then on people called this kid all sorts of names, but the one that really stuck was @ORGANIZATION1. Eeveryone in @LOCATION1 and @ORGANIZATION2's friend group all laughed and @CAPS7 @PERSON1 and @PERSON2 didnt laugh, their friends would call them losers because they weren't laughing at the kid who was getting teased. Laughing @CAPS7 someone is being teased isn't funny. The reason why people laugh and put down others is because they are insecure about themselves and it's not a laughing matter. @CAPS7 people watch the video of @PERSON2 saying she was a @ORGANIZATION1, that was made to make people laugh and to think was funny, @CAPS8 didn't make the rude words people say to be used to put others down. Laughing is a key thing to a conversation but also it's healthy for people to laugh. @CAPS7 others see that people are getting made fun of, it's not a time to laugh at them, it @MONTH1 be funny in some case but, put yourself in that persons shoes, feel what they are feeling @CAPS7 people say rude and hurtful things, people could stop the people who are throwing out put downs and stand for the ones who are getting their feelings hurt. Laughing was made for things that are actually funny. Say you walk down the street, on a sidewalk, and you walk by these punk kids who think they are the bown diggity, and they are poking sticks and throwing bottles and trash on at a homeless man with his dog, while the man is on the ground in pain from thses kids kicking him to where he cant move, are you just going to walk by and laugh because you think it's funny? No @CAPS2 not, @CAPS2 going to walk, or run, over to the poor man and see if he is oaky, then you maight call the police and see if they can find the kids who did this to this poor old man. See laughing at people who are down because of words or getting beat up isn't right and peeple need to stop, this is a world that if you are the last few people on the planet, and they have known about you laughing at others pain, do you really think that they are going to help you, or just walk by and laugh like you have? People are cruel in this world and we all need someone that is going to help us if we are hurt or down because of hurtful words. One way you benefit from laughter, you feel good and you have people that will help you in the time of need, if you laugh about the right things. Tell @CAPS2 friends that if they laugh at peoples pain and anger, that one of these days no one is going to be there to stand up for them. You could be the change we have in schools, in work envirnment, in life in genral, be the change for @CAPS2 kids and grandkids, for @CAPS2 future friends, for the future world." 20 18 38 4 4 4 4 4 4 3 3 4 4 4 4 +21065 8 " When we look back on the past, everything seems to have had a deeper meaning. When we grow older, however, we see the world with new eyes. We see the truth, harsh, stripped of the glossy film that hid it. Laughter helps us see the joy once again, to remember it is there. When is the last time you got lost in laughter? Studies have shown that laughter releases feel-good chemicals in the body. It can add years to a life because, believe it or not, our bodies like to be happy. Laughter is a highly addictive and contagious drug and the best part is that it is free, legal and healthy! Laughter makes us feel better in times of need and brings us closer together. Through whatever is happening in our lives, laughter is one of the only things that can distract us from the pain and stress. As life gets more and more complicated as we grow older, we find that laughter is harder to come by, but no less needed. I remember a time when I was excited every day to go to school. I loved to arrive at the familiar classroom and see everyone who made my days brighter. We would tell jokes and reminisce of fond memories and in the process would make brand new ones for the future. Life was simpler, the worst of our worries surrounded the desperation to be older, to shed our youth and step out of the powerless shells we were imprisoned in. Of only we knew what that really meant. Smiles were not hard to come by and we all enjoyed the simplicity that our lives had to offer. Through all the memories and laughter, I began to realize that love existed aside from movies and family, the love that you find for a friend that you treasure. Laughter was the key variable, revealed in understanding my relationships. When you learn how to fall deeply in love as a kid, that patience and trust can get you through ever day of the rest of your life. All we need to do is to is remember not to forget. The simplicity of childhood is what makes it so precious. Unfortunately as we all grown older, the future looms over our heads, casting a shadow over the things we cherish. There is a predetermined way we are supposed to live our lives that for some reason, erases the plausibility of our true aspirations. Laughter gives way to sighs and tears while dimples are forgotten and replaced with furrowed brows. Everything in adulthood orbits around the office and is held to a nine to five obligation. Businessmen walk past looking like identical mindless penguins. Where did all the fun go? It seems that the pleasure is evaporated with every passing day. We no longer get to know our colleagues around a circle of carpet squares. Instead we are confined to our felt paddock and swivel chair. All the stress makes us forget to laugh, but we simply can't forget. Laughter is the amnesia that makes the cubicle into a fort and the chair into a rocket ship that will take us from our fort to follow our dreams. So when is the last time you got lost in laughter? Make it now. Take the pen and turn it into a quill. Step out of your cubicle and find the world that you enjoy. Laugh every day because life is too short to forget." 25 22 47 5 5 5 5 5 5 5 4 4 5 5 4 +21067 8 " It all started with a book @DATE1 @DATE1 ago. My mom had noticed I was struggling to find friends, so she took it upon herself to help me make some. She had a few friends from school who had kids of their own, some my age. I had been around these girls a few times as a child, but not recently. I'm not sure today what my mom saw in @LOCATION1 that made her think we would click, but she was right. What seemed like such a small action would change my life drastically. In @DATE2, in my new house I first met @PERSON1. That evening before she arrived I couldn't help but be very upset at my mom for doing this. I felt I was fine and fully capable of making friends myself. She acted like she knew me, but the few acquaintances I had she didn't believe would be good for me. I didn't think she could be right this time and I didn't want to waste my time. An abrupt knock on the door interrupted my train of thought, I could her muffled voices and footsteps downstairs. Quickly I retreated to my room and onto my bed. The bulky front door opened and closed again followed by footsteps coming up to my room. When @PERSON1 first walked into my room my first thought there was no way we would get along. She was a gorgeous blond girl, obviously popular and very confident. I couldn't stop thinking how she was going to call me freak and poke at my differences like the other girls at school did. ""@CAPS1, what are you reading?"" @PERSON1 asked as she sat on my bed. Come look for yourself."" I replied offering her the book in my hands. I knew she would hate this book. It was about all the microorganisms that live and feed off your body. I was right and as she leaned over cautiously @PERSON1 read the book with a disgusted look on her face. Laughter was boiling up inside me, I couldn't hold it much longer. My small, dull room buzzed with my laughter. @PERSON1 looked over at me with another strange look on her face and began to laugh along with me. Once the laughter had stopped and the ice was broken we began to talk about other interests. @DATE1 short hours flew by and we were finding plenty of things we had in common. We shared funny stories, introduced new music to one another, and talked about hobbies. I couldn't remember the last time I felt so in-tune with someone, especially someone I had just met! Suddenly our conversation was interrupted by a brisk knock on the door downstairs, we looked at each other and smiled. In that smile I saw a real person smiling at me with real pleasure showing through. Very much unlike previous encounters with kids at school. Downstairs we said our good-bye's to one another. As the new, cool @DATE3 air began to rush through the opened door I reached out to hug her. To my surprise she took my gesture and ran back to hug me. Her hair smelled of hair products and powder, a smell very unfamiliar but surprisingly comforting. Once she was gone for the night I began to think. I really liked @PERSON1 and I wanted to see her again soon. I felt accomplished in some way and fulfilled to have this bright future opportunity brought to me so easily and perfectly. Guilt also struck me as I realized how I had felt about @PERSON1 at first. For someone who had been judged through most of school I had been very hypocritical. That night I stayed up later than usual thinking about the next time I could see her, how she had looked and tried to understand how we could get along so well. Despite these questions haunting the edge of my every thought I slept happily, thinking of the next time I would get to see her. All of those @DATE1 questions and concerns have been answered in the @DATE1, and we are the closest friends. Not long after we started hanging out more often, we began to like one another a lot. One of my favorite parts about our relationship is how people get so confused to see us two different so close to one another. We can take the stares, comments and anything else we struggle with today and find a way to laugh together to reduce the importance of it. I have thanked my mom over these @DATE1 for many things, but mostly for what she has done for my relationship. If it hadn't of been for her my life would probably of been much darker. No one on that cold night expected this one meeting to evolve into our beautiful relationship. Laughter is an extremely vital part of a relationship whether it is being built or being kept up. Thanks to laughter excelling conversation @DATE1 @DATE1 ago, I have had the best experience I could of ever asked for." 20 21 41 5 3 4 5 4 4 4 4 5 4 5 4 +21068 8 " Sence I was a little girl I' ve lived without my bio mom, @CAPS1 gave me up for adaption when @CAPS1 was only @NUM1, @CAPS1 wasn't ready @CAPS8 be a mom. @CAPS1 has always been a risk taker an never thought about her concequences. My adoptive parents have always been truthful @CAPS4 me about her an why @CAPS1 gave me up. I accept how my life has turned out an im very grateful, @CAPS2 i wasn't adopted i wouldnt have gotton @CAPS8 know my @PERSON1, The most loving, adventurous, funny, wise women you would ever meet. As soon as i could walk @PERSON1 would have me out camping and hiking @CAPS4 her. @CAPS2 @CAPS6 was a nice sunny day no one would have any doubt were we would be. @CAPS2 we were at @PERSON1's house in the @DATE1 or @DATE2 we would always be out in her garden boy how @PERSON1 @CAPS3 her gardens and flowers. No wait thats a lie @PERSON1 @CAPS3 nature period. @CAPS1 has taught me how @CAPS8 appreciate everything around me exspecially nature, @CAPS4 me an her we are closer then anything you could think of, @CAPS2 shes the sky im her stars, @CAPS2 i' m a bird @CAPS1's my wings. @CAPS6's that simply. @CAPS6 hasn't always been easy for her an me, but the way we know how @CAPS8 cope is @CAPS8 laugh at everything an everyone, not in a bully or make fun of kind a way, but a good way. Laughin for me an my @PERSON1 comes like a second nature @CAPS8 us, @CAPS6's what keeps us going an know that everything will be okay. A few months ago my favorite cousin @CAPS7 had passed away, @PERSON1 and I had barley seen each other in a while or had talked, but then everything happend so fast @CAPS4 @PERSON2. That when we saw each other @CAPS6 was at his funeral. My sizemore family was all there, even tho @PERSON2 was gone he had a presence that was still there. That night after the funeral everyone went @CAPS8 my aunties house an just spent time together. Finally @PERSON1 and I got the chance @CAPS8 talk yes we were both teary eyed but we were laughing @CAPS8.We were laughin at all the funny times we had @CAPS4 @PERSON2 an all the crazy things he did. One time he had went @CAPS8 go get my uncle from the airport an he was waiting there in his elvis costum holding a sizemore sign..Boy was @PERSON2 a goof. @PERSON1 was just telling me all these things, and @CAPS6 was then that i relized @PERSON1 had tought me something else @CAPS8 appreciate. @PERSON1 had taught me how @CAPS8 appreciate laughter at a time @CAPS4 sorrow. @CAPS8 rejoice in a time of dealth, @CAPS8 have hope when you felt like you had none left. I learned that even tho people might not think so, laughter is the key medicine @CAPS8 everyones pain. People don't think of laughter as a cure they think of @CAPS6 as something you do after you hear a joke. Laughter is so much more then people give @CAPS6 credit for. My @PERSON1 taught me all those things, plus the real meaning of laughter, and that will always be @CAPS4 me." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21069 8 "Laughing is one of the things we do best. @PERSON1 and I talk almost everyday and never get tired of laughing. We talk about everything and even if it is the saddest thing in the world we will be able to make it funny in a way, it's just one of those things we do. As best friends it's our job to make each other feel better, and if one calls the other crying it's their job to make the them laugh and if it is funny for both @CAPS2 know it was a job well done. In @DATE3, my uncle died, I called her crying my eyes out, she said, everything was going to be okay and to just think of all the good memories I had of him. One of the only ones I could think of was the funniest story of my life and even though I was still crying, through those tears there was laughter and I knew my uncle would want me to laugh and he was right there laughing with me. @PERSON1 and I met @DATE1, at @ORGANIZATION1, where we spent a week out of our @DATE1 to get to know new people and getting closer to @CAPS1. That week was one of the funniest weeks out of my whole @DATE1, though me and @PERSON1 didn't ""click"" at @ORGANIZATION1 that week, we later found out we were more alike then we thought. Some people say when two people are to much alike the friendship doesn't work. Well, this is true yet false. When @CAPS2 are alike @CAPS2 can talk to each other about everything, yet when @CAPS2 hit those differences, and the other disagrees it starts a fight, but fights just bring people closer together. Even though me and @PERSON1 don't see each other much, doesn't mean we can't be best friends. What if your best friend lived in a different state, does that mean they aren't your best friend anymore? No, it just means @CAPS2 don't see them as much as @CAPS2 would like to. Even though we live close to each other we don't always have time to see one another, but, when we do finally get to see each other there isn't a dull moment. About a month after @PERSON1 had gotten in a bad car accident, we went to skate world, @PERSON1 was on crutches so she couldn't skate, but that didn't stop her from having fun and making the @TIME1 full of laughter. She was up dancing to the music, on top of seats yelling, ""@CAPS2 wont ever see these people again in your life, why not just have a little fun? "". By the @DATE2 @TIME1 she got almost everyone in our group dancing up on the stools and I don't regret one thing that happened that @TIME1, it was the most I had laughed in about a year. We were dancing and screaming for about three hours, before one the parents got their and after that we all went home. That is a @TIME1 I will never forget. A girl that was recovering from a horrible car accident made the best out of what she had! When things don't work out the way we wanted, we just go on with life wishing that it had happen differently, but when we look back a couple years down the road we will see that it was just fine, and it @MONTH1 just make @CAPS2 laugh. somethings are hard to laugh about, but a good thing to do when @CAPS2 get to that point is think of something happy, or funny and try to laugh. Laughing has always made me feel better, and knowing that I can make someone with a difficult life laugh until they are about to pee makes me feel good. It makes me feel like I have done something good with my life that I was willing to help @PERSON1 with her struggles. To me that makes this life, a life worth living. Though @CAPS2 cant help everyone through every single one of their struggles, just being there sometimes helps them more then @CAPS2 @MONTH1 know. @PERSON1 and I have planed out many lives we would like to live and looking back now on them all I can do is laugh, because in my heart I know they will never happen. Even if we try our best to make them happen I doubt they will. But, it was worth the laughter and a good time to make them up, and Believe they were going to happen for awhile and I know looking back in a few years we will both laugh. Laughing is a good way to get rid of fear, anger, and stress. It makes @CAPS2 think of all the good times @CAPS2 have had in your life, and lets @CAPS2 know that @CAPS2 had fun in your life. Though we fight, in the @DATE2, I don't think anyone will be able to tear @PERSON1 and I apart, with all the laughter that is done. We are true friends." 19 24 42 42 4 4 4 4 3 4 5 4 6 5 5 5 5 4 5 4 4 4 +21070 8 " Laughter. Something everyone does. Its natural, organic, normal. They say children laugh more than adults, maybe that's @CAPS6 keeps them children. They can still let that deep instinct to enjoy themselves be expressed in bursts of happy noise. Laughter is always unique to every person. Some have musical laughs, others have deep belly laughs. Then there @CAPS10 those or snort or snicker, the kind of laugh that makes @CAPS8 laugh because @CAPS8 hear it. Those @CAPS10 my favorite. Someone once said, ""Laughter is the shortest distance between two people"" and I couldn't agree more. Laughing with people has been the greatest influence in my relationships with my friends. I have five girlfriends that I would not be able to live without. They support me, love me, and get me to be bold and get out of my comfort zone. There have been many sleepovers where at two in the morning all @CAPS8 here is the laughter of all of us at some shocking @TIME1 confession or horror at the ""would @CAPS8 rather?"" someone just came up with. One @TIME1 in particular was especially funny. It was last @DATE1 and we were sleeping on @ORGANIZATION1's porch. It was a spectacular @TIME1, the stars were out the air was cool but comfortable and a meteor shower was happening later on that evening. @PERSON3 started the conversation with her favorite catch phrase, ""@CAPS1 guys, hows life?"" We all @CAPS16 because if @CAPS8 @CAPS10 around @PERSON3 for more than and hour @CAPS8 will here this saying a @CAPS2 times. ""@CAPS3 as five minutes ago,"" I replied. ""@CAPS4 guys my life has completely changed,"" said @PERSON1 sarcastically. ""@CAPS5 really?"" @LOCATION1 asked, her little body curled up in her sleeping bag, ""@CAPS6 have @CAPS8 had a personality flip, @CAPS11 @CAPS8'@CAPS20 now blond and stupid?"" ""@CAPS7."" @PERSON1 said sarcastically, rolling her eyes, a very @ORGANIZATION1 gesture. We @CAPS16 at the ridiculous mental picture of ""the brain""being stupid. ""@CAPS8 guys want to play would @CAPS8 rather?"" @ORGANIZATION2 piped in. I had thought she was asleep by now. All I could see was her red hair covering her face. ""@CAPS9!"" yelled @PERSON2, ""I can't handle my mind being filled with horrible mental pictures!"" she buried her face in her pillow trying to block the images. ""@CAPS10 @CAPS8 sure? I have some new ones."" @PERSON1 said with her best evil voice, ""@CAPS11 would @CAPS8 rather have to..."" ""@CAPS9!"" we all yelled together and the laughter ensued. ""@CAPS13 or @CAPS14?"" @PERSON3 suggested. An unintelligible noise came from @ORGANIZATION2's pillow. ""@CAPS6 did @CAPS8 say?"" I asked. She raised her sleepy eyed face. ""I'@CAPS23 too lazy, and unless the @CAPS14 is to be the first one asleep then I'@CAPS23 not playing!"" she dropped her head back onto her pillow. ""I agree,"" @LOCATION1 added, ""I'@CAPS23 too lazy."" ""@LOCATION1 it would take @CAPS8 four hours just to get out off this porch cause @CAPS8'@CAPS20 so @CAPS21."" @CAPS16 @PERSON1. ""@PERSON1 I'@CAPS23 not @CAPS21. I'@CAPS23 @CAPS17!"" ""@CAPS5 just accept it @LOCATION1, @CAPS8'@CAPS20 @CAPS21!"" ""@CAPS9 @PERSON1 I'@CAPS23 @CAPS17!""We continued @CAPS11 this, bantering back and forth till slowly people began to fall asleep, drifting off in the cool @TIME1 air. I was the last awake, and as I watched the meteor shower I had a sudden epiphany. My life was pretty awesome right now. It was @DATE1, @CAPS9 school, @CAPS9 stress. I was laying on a porch watching a meteor shower listening the @TIME1 sounds and feeling perfectly safe, and I had the best five friends I could ever wish for. We joked and @CAPS16 with each other, but this is the first step to being so comfortable with people that @CAPS8 can tell them everything. Laughing with someone breaks the ice, it brings us closer together. Laying there I suddenly realized that because of all of our joking I felt comfortable enough with these girls to tell them just about everything, and I wanted to. I had never felt @CAPS11 this before. That I could do anything because there were five people that had my back through anything. I smiled to myself and as I closed my eyes I imagined all of the laughter I would get to enjoy with these friends." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21071 8 " One day, a day before the party for my brother's @DATE1 to be exact. We were setting up party stuff and cleaning the house and the apartment because that's were the boy's will be hanging out and sleeping. My cousin @PERSON4 and I were helping mom and the boy's that were already here and their names would be @PERSON5 , @CAPS1 and @CAPS2. @PERSON6 was already here of course because he's the @DATE1 boy. The boy's were suppose to be cleaning the apartment but their boy's and the only things on theirs minds are girls and video games. They played video games instead of cleaning and mom got mad. Lucky for them mom was in a very good mood or they would have got @CAPS7. The last to boy's showed up now. The last two boy's showed up and their names are @PERSON2 and @PERSON3 and @PERSON1 is showing up tomorrow after noon. @PERSON6 was so exited that he was turning @NUM1 years old , he said "" I'm @NUM1 years old now no one can tell me what to do"" and I laughed and said ""@PERSON6 go make me a sandwich"" and he said ""@CAPS3"" and I said ""so much for no one can tell me what to do"" and everyone laughed at him. He gave me my sandwich and all the boy's went to the apartment to clean @CAPS7 but when I got in there they set up @PERSON5's x-box @NUM3 and was playing @CAPS7. I told them to get cleaning but they decided not to listen so I got mom and they sure listened to her. She took @CAPS7 and put @CAPS7 on the kitchen table. They were not happy. They finally cleaned the apartment and got the x-bow back. @TIME1 all of us were watching movies and playing broad games then mom told @PERSON4 and I to clean my room , maybe a hour after that she walked by and said "" bed time"" and boy's go to the apartment. The next mourning. The next mourning @PERSON4 and I woke up to the sun hitting us in the eyes and I said ""what a great way to start off the day"" and @PERSON4 said ""I know"". The best part of today is that we get to hang out with the boy's. When @PERSON4 and I got into the living room everybody was in the kitchen and partly in the living room. @TIME1 that @TIME1 the boy's thought @CAPS7 would be fun if they played cops and rubbers. The apartment was the jail. @PERSON2 , @CAPS2 , @PERSON6 were the cops and @PERSON5 and @CAPS1 were the rubbers. @PERSON4 and I wanted to play so we went outside and ran into @PERSON5 on the otter side of the apartment , he was the only one who knew we were outside. When I was running to hide behind the trees I felling in the hole that turns off the water for the apartment and my leg looked like cottage cheese and @CAPS7 was gushing blood and you could see my bone. I had to stop playing for the @TIME1. Mom told @PERSON4 and I to go to bed. The next mourning mom woke us up and asked if we want eggs and bacon and we said ""yes"". I crawled out of bed because I needed to go to the bathroom so @PERSON4 helped me up the stairs and when we were coming down the stairs @PERSON5 saw me hurting and being the amazing boyfriend he is he picked me up and carried me to the couch in the living room and sat me down on the couch and kissed the top of my head and said ""good mourning beautiful"" and I said ""good mourning to you to baby"". Now everybody is standing around for their food to be done. The boy's are making pizza if you wanted to know. Then my little sister @CAPS6 walked in to the kitchen and said ""ma'am I want a cookie"" and mom said "" okay , here you go baby"". @CAPS6 ran off with a very big smile on her face. The boy's got their pizza now and they just went back to the apartment. @PERSON4 and I looked at mom and said ""wow"" mom's like i know. We all laughed and started talking about boy's and friends , family , animals. @CAPS7 was a very fun weekend and even though I got hurt we still made the best of @CAPS7. Even though I got hurt and cant do anything for the next two months or so , we still had a blast with each other and @PERSON6 said "" @CAPS7 was his most favorite @DATE1 he's ever had so far . @CAPS6 wanted her friend to come over but she had fun with mom and @PERSON4 , the boy's when they came in the house and I. Sometimes you got to work with what you got and @CAPS7 might turn out more fun than your normal plan you made. Just make sure your happy with the people around you. " 15 15 30 3 3 4 4 3 3 3 3 4 3 3 3 +21072 8 " The @CAPS1 @CAPS2 @CAPS3 @CAPS4 @CAPS5 @PERSON1 is an essential for me to survive this crazy thing called life. So instead of writing about one experience where laughter is a key element I am going to write a montage of true events where laughter shows my true colors as to who I am. I think I should start with my blond moments first seems how that's my natural hair color. When I was little I would take my shirt off, throw it on the ground and be like ""mommy, I can't find my shirt"" @CAPS6 would tell me, ""@PERSON1 @CAPS21 just threw it on the ground"", I would look in all the wrong places and result to crying on the floor. @CAPS6 would pick my shirt off the floor hand it to me and then I would do the same thing all over again. Yeah @CAPS21 could say I was a little embarrassed when I got older and they had it on video camera, but that's what I love @CAPS21 grow up and laugh about what was once embarrassing and @CAPS21 move on. There was another time when we figured out my initials spell @CAPS7, so whenever I go swimming with my brother and our friends, they start singing the @CAPS8 theme song and I start laughing because if I let them think I don't care they will eventually @CAPS4. Guess what, they still haven't stopped and I am beginning to think I @MONTH1 be stuck with the nickname @CAPS8 for the rest of my life. The @CAPS1 @CAPS2 kept rolling when I was in first grade my brother, who @CAPS5 the way was in second grade, decided to tell my first grade teacher I had @CAPS10, @CAPS6 called my parents, who began to laugh like crazy and told her yeah, @CAPS6 does its a little thing called @CAPS12 @CAPS13 @CAPS14. Looking back its funny because I remember the look on @PERSON2's face; @CAPS21 could say it was classic. As I advanced in my @CAPS16 years moving into @CAPS15 @CAPS16, I joined an organization; the @CAPS17 @CAPS18 of the @CAPS19 for @CAPS20, where I learned later on that the color black is prohibited at any and all @CAPS19 functions. Well, the night I was initiated I wore all black from my hair accessories to my shoes. I felt no embarrassment just the need to laugh. I found later that I like to make jokes or funny comments whenever I get nervous during a speech, so when I had to get up and give a speech in front of approximately one-hundred and twenty people I made little efforts at making jokes and comments, did I mention I wasn't very @CAPS1 at jokes, but the ceremony went on and people went along and laughed with me, even though I hit my head against a dream catcher. @CAPS19 has taught me its okay to cry at the depressing things in life, its okay to fear the things that frighten @CAPS21, its okay to love anyone @CAPS21 want, its okay to live your life, but most importantly its okay to laugh at your mistakes. I think that is one thing I will always remember and pass on to my children when I settle down with a family, which won't be for awhile I learned that lesson when I was babysitting my little cousins, who were sick, its a lot of responsibility, its a @CAPS1 thing my brother helped because I would of been nearly lost without him. I know that because of the people who surround me with their positive attitudes and hearts gold that they have formed me to become a better person, to laugh when there seems no way out, to not only learn from your mistakes, but to laugh at them as well, to show that @CAPS21 have a deeper meaning for the way your life was meant to be lived. Remember that when life hands @CAPS21 lemons take the opportunity to make some sweet lemonade and then throw it on yourself so @CAPS21 and your friends can get a @CAPS1 laugh every once in a while. Thank @CAPS21." 20 15 35 4 4 4 4 4 4 3 3 4 3 3 3 +21073 8 " Twins For a @CAPS1 Laughter is a large part of who I am. I am a very happy, outgoing person, and I love to laugh. I especially the laughs that make your stomach feel like its going to fall out of your body and continue laughing on the floor. That's @CAPS23 I surround myself with people that are like me, that's my best friend @PERSON1 and I are like two peas in a pod. People tell us all the time that we look like twins, and when we're together @CAPS24's like a hurricane of loud, crazy laughter. The best part of our friendship is that we are alike I think, and we use @CAPS24 to our advantage. One @CAPS1 @PERSON1 and I were taking a stroll downtown. We were just window shopping,when we past a clothing store that had on display a auburn tank top that had blue swirls coming up from the bottom and up one side, also a pair of dark blue jeans with a rip in the knee. @PERSON1 and I fell in love with the outfit, and as we stood outside the window like ravenous dogs drooling over a piece of freshly cut meat, an idea hit me.When I turned to @PERSON1 and said "" @PERSON2? (her nickname) @CAPS2 if I was you and you were me when we @CAPS14 meet @CAPS3 later?"". She turned to look at me, and her eyes lit up like @CAPS24 was @CAPS4. We ran into the store and bought the outfit. We looked in the mirror and we both knew we could pull this betrayal off. The pants fit our curves, that were identical, like a glove, and the tank top rested on our bodies in the same pattern. The only difference was she was a bit taller than me and my hair was longer than hers, but we deiced that showing a little neck wouldn't be to bad, @CAPS7 we just threw our hair up in buns and called @CAPS24 good. As we left the store, we got asked if we were sisters, and we replied in a simultaneous ""@CAPS5, kinda"" @CAPS24 was reassurance that if we could trick them, then we could trick anyone. We comfortably walked towards the county library lawn where we were meeting @CAPS3. when we were close to the lawn of the library @PERSON1 turned to me and said ""hide behind this tree, tell I head back, and then sneak around back and freak him out!""@CAPS7 I hid behind the tree while she went up to say hello, he asked where I was and she said ""I do not know actually""while she dug in her bag, ""but I think I dropped something down there, I'll be right back, stay put."" ""@CAPS8"" he replied. All the while I was sneaking around the back of the garden and I hopped down off of an embankment and said ""@CAPS9 I am!"" he was gawking off at a car that was parked a little ways down the road, he jumped a little, and I said ""@CAPS10 did I scare you?"" in an little school girl voice, and he replied ""@CAPS5, of course not! A man does not get scared."" I just rolled my eyes and him and said ""I have something for you, but you have to close your eyes"". He was apprehensive at first but he did as I @NUM1 had managed to sneak up behind him, and when she tapped him on the shoulder he turned, but he gave me a look of bafflement as he did. When they were face to face @PERSON1 shouted ""@CAPS9 @CAPS13 @CAPS14!"" and @CAPS3 nearly jumped to the moon. @PERSON1 and I were laughing @CAPS7 hard we nearly peed our brand new pants. @CAPS3 in confusion whipped his head between @PERSON1 and I, and said ""@CAPS16 this is interesting"" we continued laughing like buffoons, and @CAPS3 even giggled a little. He told us ""@CAPS18't you two ever do this again!"" and I said ""@CAPS19! We basically are sisters @CAPS7 @CAPS23 not play the part?"" he just glared at me in discontent and @PERSON1 rolled her eyes and said ""@CAPS2? Did the man get scared?"". We both cracked up again and @CAPS3 just smiled cause he knew we were playing around. @CAPS24 was just a blast after that, @PERSON1 and I continued to torment the town as twins. We ran around cars and into stores and had a stupendous time being absolute fools. We even got @CAPS3 to laugh hard enough to clutch his stomach. When @CAPS24 was time to @CAPS14, we ventured to the parking lot where @PERSON1's mother was going to pick us up, she did a triple take when she saw us, she just laughed at us when we got in and asked ""@CAPS23 are you two wearing the same @NUM2 and I just looked at each other and busted out laughing, and we replied ""@CAPS24's a long story"". @CAPS24 was the perfect end to an amazing @CAPS1 being my best friend." 20 20 40 4 4 4 5 4 4 4 4 4 4 4 4 +21074 8 " Somewhere along the road a guy once said ""a laugh a day keeps the doctor away."" @CAPS1 the hell was he talking about? I didn't really know or understand the importance of it either. Until i found out first hand how important those words could be, and how right that unknown genius was. It was just a few years ago when the most traumatic event happened to me.Do you remember that first girl or guy you thought you loved? If you can, do u recall that feeling of heartbreak and utter distraught? Well, if u can then u might understand how I felt...and sometimes do feel. If not you @MONTH1 learn something of importance to which you might realize why you're single. Before that certain event,when @CAPS2 and I would end up fighting, we'd end up making jokes about it to get through. We'd sometimes intentionally go to see romantic movies to laugh at how the girl or guy in them would break down crying. In one of those sobbing weeping, just obnoxious sounding cries. The kind that pisses you off more than making you feel sympathetic. Back to the later and key point of all of this, when the horrible situation occurred @CAPS2 and i were together for years, two and a half to be specific. yeah, long time I know. The day it ended it happened to be in the middle of math class (can you believe that? the middle of freaking class!) @CAPS4 convinced me to go sit back in the corner of the room with her. It'd be just us, no interruptions. We did this everyday so it wasn't anything to unusual to me. I was thinking ""yeah! i get to work alone with my amazing girlfriend!"" I was such a idiot. I do fondly remember glancing her over before sitting down. @CAPS4 was wearing white bleached jeans and a black band t-shirt. @CAPS4 had skin so white and unblemished a porcelain doll would be jealous. To top it all off dirty blond hair, rose petal lips and believe me on this one unending curves. I was dressed similar. I was in my @PERSON1 t-shirt, black jeans and my signature burgundy beanie. I had natural tan glowing skin and dark brown curly hair that covered my dark green eyes. When I sat down I'm not exactly sure @CAPS1 it was, but I felt like something bad was going to happen. Almost like a oncoming thunder storm or that paranoid feeling of being watched. The most dreadful words fell out of her mouth like water coming out of a faucet. ""We have to break up"" my heart seized in my chest her other words blurred into one becoming inaudible. I remained not moving and completely silent like a stone gargoyle. I couldn't help, but laugh at myself silently inside my head. I didn't ever say anything back. I didn't trust my voice enough to be steady and unwavering. Even if my words didn't...my body did. I couldn't control the shaking of my body as if it was having one big muscle spasm. I quietly and quickly walked out of the room making sure to have my bag in hand. I didn't want a reason to have to come back. The hallways along with the tiles and eventually grass along with the pouring rain all blurred into one. I just kept on walking and walking, with no wear in mind. Until when i was finally to tired to stop. My cheeks were tear streaked to my jawline and my eyes were red and bloodshot. The most wonderful thing in the world to me in my life had ended. As i look back at @CAPS2 and I's relationship, laughter was how we survived and got through a lot. It was however not enough. No amount of trying to laugh it off would help, like those petty arguments we had. I will sometimes though look back on how I reacted and that by itself will make me laugh. I was no better than those people in those movies. Unlike them however, I did not weep and bawl obnoxiously." 20 17 37 4 4 5 5 4 4 3 4 5 4 4 3 +21075 8 " Side by side with my best friend @PERSON1 we begin to walk to the park. The rained on @DATE1 @TIME1 wasn't very pretty or warm but the pleasures of watching lost and the hopeless at this particular park in @LOCATION1 was enough for us. Approaching the grass to the benches, mud was dominating my shoes when I was starting to think other wise of such fun. Sitting on the damp leaf filled benches we notice a man and his child walking toward us. Although this man was quite odd looking we quickly grew excited for what he had to say to us was more than likely going to match his appearance. The fellow looked to be in his late thirty's with tight pants covered in what appeared as sharpie written all over him. A knitted scarf and with a small hat to match he had this flaming homely look about him. Beside him, a stroller with two small children, one at hand while the other lounging in a storage pocket below. The father we later find out, pretends his @NUM1 year old daughter is whispering in his ear, shouting things like ""@CAPS1 WAS THAT""?! suggesting he hadn't heard her although we knew she hadn't said anything at all. ""@CAPS2 want me to ask the girls if they want any raisins, is that what @CAPS2 want""? odd enough we look the raisins bushing them between the cracks of the benches on the few times he looked away. @PERSON1 an I then look at each other when he starts ranting how beautiful and striking her eyes were. The laughter was watering out of our eyes and being under such pressure to redeem, it was wanting to burst out of us both. The man then take out his phone with a video of a country singer compare their faces toward one another. Minutes into the video I look away since the phone was now in @LOCATION2's hands. I feel her nudging me from leaving her even just with my eyes and hadn't continued suffering with the ridiculous video. Looking up I see the father staring at her as if waiting for some kind of reaction. Back to @PERSON1 I notice how uncomfortable we all were including his kids and he hadn't even a clue. throughout this whole interaction I hadn't said more than @NUM1 words in between the silent laughter and looking always that I couldn't control. My persistent friend who also hates being impolite then hands over the phone with a smile on her face and cheeks of red. ""@CAPS2 really look just like her @CAPS2 know""? All these questions he had for us and no answers but laughter prancing inside us. The boiling silence was rising between us and very little we could handle next. Pulling out a script the man then asks to see our acting skills and would like to direct us sometime. Once he spilled those beans on us we jolted directly toward her house while pouring out our enormous amount of laughs being held in and effecting our ability to talk. breathe by breath running I could finally speak causing me to blurt how i could hardly fathom the reality of his request. Just another day in @LOCATION1 we thought, but for us everyday was just something to laugh about." 20 15 35 4 4 4 4 4 4 3 3 3 3 3 3 +21076 8 " Have you ever got a detention from laughing an inordinate amount in class? If you haven't, you're very lucky. I know that teachers absolutely hate students that don't pay attention in class, or students that will randomly start laughing when they're giving a lecture. I'm that student that will randomly bust up laughing (preferably at my own jokes) in class. In other words, I'm a teachers worst nightmare. Ring....ring....ring, time for @CAPS1. It was a beautiful afternoon and I was feeling great! When I walked into the class, I automatically noticed that our teacher wasn't his blessedly self. But I ignored it and went on with what I normally do, which is get out my @CAPS2 and crank up the tunes. I like to listen to music because it relaxes me and helps me focus more. The downside to listening to music is that you can't exactly hear everything that great. When I listen to music I have those moments when I feel like I'm in a movie that everything seems like it's in slow motion but you can't hear anything. It's almost like I'm secluded in my own little world and no one can see me or hear me, until I start laughing that is. Finally class started and everyone was being abnormally loud, at this point I was starting to see the steam come out of our teachers ears. He looked like a cartoon character off of bugs bunny. The teacher was getting very indignant and impatient with the class. I didn't exactly pay much attention to him so I went back to listening to my music. After a while, our teacher was now starting to get frenzied with the class even more so he told everyone whoever talks again will get their name written up on the board and you will receive detention. About five minutes later my friend @PERSON1 comes and walks by me and starts talking to me. When I listen to music, I have a tendency to talk loud because I feel like they can't even hear me. So I start yelling, and she starts to giggle because when I wasn't looking my teacher was just staring at me wondering why I was talking so loud. He turns around and writes my name on the board (that meant I was given a warning). I turn to look at the teacher, oh no here it comes, @NUM1 my laughter is out, I couldn't control myself. When I laugh uncontrollably, I laugh like there's no tomorrow. ""@CAPS3! You owe me thirty minutes of detention!"" said my teacher. One of the biggest problems that I have is I'm very easily amused, I laugh at mainly everything and anything. When my teacher yelled at me, his facial expression was just way too funny, so I began to laugh even harder. When I start laughing, my friend @PERSON1 usually can't help herself but start laughing with me. She tells the teacher that she was the one that made me laugh so she thought she deserved detention too. So she got what she wanted, detention! One week later, @PERSON1 and I arrived in good old detention with all the other ""rebels"" (that's what I call myself now) it makes me feel tough. The thing that we have learned is that we should never be sitting next to each other. When we sit by each other, we can't stop laughing, but we decided to sit by each other anyways. What do you know, we almost got more detention while in detention, imagine that. ""@CAPS4's to short to live with tension and regrets, so just laugh it off!"" That motto is what I try to live by everyday. I feel like laughing is a very important part in my @CAPS4, it really helps me forget what is bothering me. Even though I @MONTH1 get in trouble from laughing, I don't regret it one bit. Some people are very serious and they don't know how to let things go so they're always tense. Laughing releases tension and for me I feel like it brings me closer to my friends. I love laughing with my friends and the feeling of your abs hurting from laughing is awesome!Live your live, laugh as much as you can, and love those that mean the most to you." 19 20 40 40 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +21077 8 "How Laughter @CAPS1 Laughter can be a huge help when going through difficult times. Like the time when my brother got ran over by a skid steer(tracked loader) at our farm. We didn't know how bad it was going to be @CAPS2 through our time of uncertainty our family was there to be with us and help us through and keep us from getting down. It was just another day on the farm and we were out running the machines. The day was going just fine until after dinner my mom had told me and my brother to go out and cut corn. ""@CAPS2 mom"" me and my brother said in unison. She wouldn't hear it and told us to hurry up and leave. So we went down to the shop and got the skid steer out. My brother, @PERSON1 still hadn't come down and so I started it and started driving towards the garden. I saw my brother coming from the corner of my eye. He was running as fast as he could and I yelled at him to stop and wait @CAPS2 he kept coming. He tried to jump on the front forks @CAPS2 missed and fell. I got out of the cab and saw him lying on the ground crying. My uncle was standing near by when it happened and he called the ambulance. We didn't know what was wrong with him @CAPS2 his leg looked a little funny so we looked closer and saw the bone sticking out of his leg. Finally when the ambulance came they looked him over and asked me some questions about what had happened. I told them all that i could and went back to the house. It was nerve racking to not know what was going to happen to his leg @CAPS2 we just hoped that it wouldn't be very serious. I spent the night at my grandparents house. I had a lot of trouble falling a sleep that night though. The next morning was @DATE1 so I had to go to school. I still didn't know a lot @CAPS2 i did know my brother's leg broke in a compound fracture. The whole school day my friends were helping me feel better by telling jokes and funny stuff and just keeping my mind off the accident. It was hard not knowing what was going on with him. Later that night we went to see him. We learned that he had just broken the big bone in his leg and that it had gone back together just fine. My mom stayed with him the whole time he was in the hospital so things around the house was a little bit different. Me, my dad, and sisters had to clean and take care of the house. It was a pain because I hate doing house work and having to do it all the time was vary boring. When my mom and brother finally got back after about a week things went somewhat back to normal. My brother had to ware a thing on his leg that sucked the fluids out of the wound to help it heal faster. There was giant screws coming out of his leg that attached to a bar on the outside of his leg. He has healed up just fine though and has a giant scar where the bone came through his leg. It was very nice to have family and friends there to cheer us up and help us get through. And that is why laughter @CAPS1. " 20 18 40 40 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 +21078 8 " We all understand the benefits of laughter. Laughter can show emotions, but can also go to the distance of strengthening a friendship, or relationship. To many people laughter is a very important part of any relationship. First, Laughter is very important in a friendship. If you cant have a fun happy friendship then you wont have a good friendship. Building up to a friendship is always sometimes difficult. It can take up to a good laugh, to not laughing at all to determine your friendship. Having a friendship with someone is one of the best feelings. Knowing that you have someone you can trust, talk to, be there for you, and the most important laugh with is a great feeling. Also, laughter is important in every childhood memories. Thinking back to when i was little i was always laughing. Even though my mom and dad left me and my brothers i always had my grandparents, brothers, cousins, even aunt and uncles to keep my busy and always have a good time. I think laughter is an important thing being a child because its healthy, you can learn to keep others spirits high and keep others laughing and happy, . and its always good to have a strong, fun, happy relationship with your family. Last, laughter is very important in a relationship. I think it will build character to your relationship and shows everyone that your happy with the person that your with. Laughter will also build a good and strong healthy relationship and will lead to good things. If you think about it laughter is probably the most important in a relationship because when you decide to marry the person your with it will lead to not getting a divorce and fighting and you will have a strong relationship. So, therefore after pointing out that laughter is important no matter what age, what gender, friendship, childhood, or relationship you should see that my point is that laughter is important no matter the situation. It helps build a strong person and also builds character to yourself." 15 20 35 3 3 3 3 3 3 4 4 4 4 4 4 +21079 8 " Have you ever been in an an awkward situation and lightened the mood with laughter? I have, as have many. I find that laughter makes people more comfortable, which allows them to be their own person. Laughter @MONTH1 even help some to attract a positive, friendly crowd, who enjoy funny, happy people. Laughter @MONTH1 not work in this way for everyone, but here are some ways it has helped me. I was at a homeschoolers' group in @LOCATION1 years ago and didn't know anyone there. After walking around a while this girl talked to me. She was funny, and being able to laugh made me more comfortable and I had a fun time. I just had to fin d the right person. Another time where laughter might've helped was when I was invited to a birthday party of a friend I hadn't seen in over two years. Several others were there I hadn't seen in a long while. The whole visit was awkward and all I wanted to do was blend in. I acted like everyone else, but if I'd had laughed and been more comfortable I would've been my own person. When I first came to public school I was nervous to meet new people, and what kind of people there would be. After a week or so people got to see my personality, the funny, happy, laughable person inside, and that clicked with a lot of people. That's why I'm friends with the people I'm friends with now, because our alike personalities matched. Laughter brought me to a good place in life. Laughter can make a lot of people happy and comfortable in awkward situations. It can encourage people to show their own personality and attract people like themselves. I think the world would be a happier place if everyone could laugh." 19 15 34 3 4 3 3 4 4 3 3 3 3 3 3 +21081 8 "@CAPS1 up kids my mother said as she was scrambling to get her stuff packed and ready.I knew exactly what i did wrong, I didn't set my alarm on my phone for six am. I set it for six pm and now we are late. Thinking to my self I hurried to get my clothes packed for the week. six pairs of pants, six pairs of shirts, six pairs of underwear, and six pairs of socks. I put my bag next to the front door realizing now that it was next to my other bag I had already packed the day before. My sisters were worse, as girls they take for ever putting on there makeup and and straightening their hair.Finally everyone is packed, but it was now seven am and we were supposed to be to @LOCATION2 by now and were still sitting here at our house. As my sisters are now done and we are in the car we can finally get off to @LOCATION3. We as a family have been planning @CAPS2 for a month and now it's @DATE2! I was really exited to go. By @CAPS2 point I had butterfly's in my stomach.We lived in @LOCATION1, we were only half way through @LOCATION2 with eight out of ten hours left to get to my mom's cousins house. I feel asleep for the first two hours of the ride and I can no longer sleep. I was stuck in the back seat with nothing to do. so I started to sing the never ending song. "@CAPS2 is the song that never ends, and it goes on and on my friends." @CAPS3 my sister in the front seat yelled at me very harshly to shut up. I didn't stop and she yet again yelled at me to stop singing. For a third time I annoyed my sister and she responded with a punch on my arm. For some reason I started to laugh. It didn't hurt and I thought it was funny that she hit me for just singing a silly song.I had a really strange laugh so my little sister started to laugh because I was laughing, then my older sister quite harshly screamed at me and my younger sister to be quite. My older sister yet again punched me trying to get me to stop laughing. By now I was laughing so hard I could hardly breath and my face was turning into a shade of purple. It really was funny when my mom couldn't hold it back any longer and started cracking up and laughing with me and my younger sister. My mom wears dentures, and she was laughing so hard they almost fell out of her mouth while she was driving, we started laughing harder. My stomach felt like it was going to explode from all the laughter.My older sister now turning a dark shade of blue from yelling at us so hard to get us to shut up. She was throwing her arms into the air and screaming one last time to shut up and threw herself back into her seat with a very nasty look of disgust on her face.over the next minute we all stopped laughing and was quiet for the next hour @CAPS3 we stopped and ate. We enjoyed our lunch and got on the road because we still had a long trip on our hands.I very soon felt tired and fell asleep in the most awkward of positions you could ever find in a car. I had my head against the door, my arm over the front passenger seat, one of my legs was on the seat and the other in between the driver and passenger seats.I thought I was pretty lucky sleeping most of the way for we only now had about a half hour till we got to my mom's cousins house. We were in the middle west of @LOCATION3 and the mountains were so beautiful. They were full of color and life with gigantic trees swinging in the wind, squirrels moving about from tree to tree, planting nuts in the ground. It was the farthest I have ever been away from where I lived in @LOCATION1. I was glad it was with my family.My stay in @LOCATION3 was a blur. I can hardly remember most of what happened there. I played with a neighbor kid around the same age as me playing video games and eating unhealthy junk food. My mom was the happiest of us all to get out of @LOCATION1 for a weekend. She had not seen her cousin in about three years and was very happy to see her.It was now @DATE1 was time to get back to our normal lives, so we packed up our stuff and were headed back to our home. I was doing amazing at not talking and making my sister mad for the first minute or so. @CAPS3 I started to sing the never ending song again. I have never laughed so hard in my life. " 20 16 36 4 4 4 4 4 4 3 3 4 4 4 3 +21083 8 " The members of my immediate family are known to be both incredibly clumsy and easily startled. Broken dishes are a common occurrence in our house; as are spilled drinks, stubbed toes, and blood-chilling screams whenever the toaster pops up. Though all of us are used to these types of things, not everyone around us is, which can lead to interesting encounters. Many people find pleasure in jabbing me in the sides to hear me scream, and laugh when I trip over the slightest crack in the floor. Though it can get annoying sometimes, it @MONTH1 also give me a reason to get over my pride and laugh at myself, thus relieving any tensions I @MONTH1 have been feeling about the social setting. For example, a few years ago I was staying with my @CAPS1 @CAPS2 troop at @LOCATION1. Any situation involving large groups of people can be intimidating, but it is increasingly terrifying when the group is made up of girls, ages four to eighteen, with only a few adults thrown in to make sure the girls do not bludgeon each other to death. Worse still was that where I was staying, which was a hybrid somewhere between a cabin and a tent, the majority of the girls were in middle school and, needless to say, we did not always get along. Despite the fact that we were not all the best of friends, though, there were times when we were able to get past the petty differences, such as who was cool and who was not, and enjoy the time we had to talk and joke around with people who were in similar places in life. On one such occasion, I was attempting to make my bed on one of the top bunks, and was in the process of stretching my sheet over the petrified mattress which @MONTH1 have possibly been around in @NUM1 @CAPS3.C. Being the intelligent person that I am, I decided to lean against the wall behind me for balance, forgetting, of course, that there was in fact no wall, but only a thin, cloth-like material which could not support my weight. The second I realized what I had done, I reached about frantically for something to hold on to and tried in vain to keep myself from plummeting backwards to the floor and my certain death. Milliseconds before I would smash into the hard wood floor, I managed to grab a hold of one of the bars on the side of the bed and hung on for dear life, swinging back and forth and back and forth. Finally, I let go and propelled myself, almost gracefully, onto the bed sitting underneath mine. It was a very long time before the laughter died down. In that short amount of time, cliques and biases and grudges were all forgotten as we became not just a bunch of random girls placed in a room together, but a group with our own strengths and weaknesses; passions and flaws. Though the adolescent years are incredibly difficult and there are many times when it feels like you are the loneliest person in the world, it is always comforting to know that there are other people who laugh and cry just like you and experience many of the same joys and embarrassments as you do. One of the most essential skills to learn is that you have to be able to laugh at yourself from time to time and let yourself be vulnerable in front of other people. We @MONTH1 not all be the same, but we all have the same basic desires for love, acceptance, and laughter." 20 21 41 4 4 5 5 4 4 4 4 4 5 5 4 +21085 8 "While living in @LOCATION5 I met the two people, whom are now my best friends, @PERSON1 @CAPS14 @CAPS1 @PERSON6. I met them both in entirely different ways. @PERSON1 threw school, @CAPS14 @CAPS1 threw paintball. I met @PERSON1 when she moved from @LOCATION3, @LOCATION1. her dad was in the @ORGANIZATION1, @CAPS14 had been transferred to the base that was close to where I lived. We had two classes @CAPS14 lunch together. At first her @CAPS14 I didn't really talk much. It wasn't until one of my friends, @PERSON3, brought her to sit with us during lunch. Our friend @PERSON4 was overly hyper that day @CAPS14 ended up falling backwards in his chair @CAPS14 scaring some girls who'd been walking by at the time. We laughed so hard our faces went cherry red. After lunch we had class together, so we walked together @CAPS14 talked about lunch. I then asked her to sit with me during @CAPS3. We could not stop talking to save our lives. Luckily it was a free sketch day, for had it not have been we might have been in some trouble. After about a week had gone by @PERSON1 @CAPS14 I found out we had so much in common, it seemed almost unreal. Never had I met a girl who could make me laugh so hard that I actually enjoyed hanging out with every day. She'd make faces @CAPS14 tell me stories about her past that would make me just bust out laughing. We talk almost every other day threw the internet, @CAPS14 even though she's over @NUM1 miles away, she can still make my stomach hurt from all the laughing. As for @CAPS1, he grew up in @LOCATION2, @LOCATION5, then later on moved to @LOCATION4. We met while my dad, brother, @CAPS14 I went paint balling at a place called ""The @CAPS5"". It was a slow day. Not as many people were at the fields as normal, @CAPS6 some how there weren't enough tables. We offered to share ours with two guys whom I found out on were @CAPS7 friends, @CAPS8 @CAPS14 @CAPS9. As it got later in the day @CAPS1 @CAPS14 a few other friends, @PERSON5 @CAPS14 @PERSON2, arrived. The games got a bit more interesting, but still not one person had been able to shoot me out before the referee called time. I was starting to get irritated with the lack of experienced players, when finally I felt two sharp paint @CAPS14 heard a splat. I'd taken shots to the leg, mask, @CAPS14 trigger finger. When the game was over I spotted the guy who'd got me out. That person being @CAPS1. I ran over to him @CAPS14 said ""@CAPS12 @CAPS13"". He laughed @CAPS14 said ""that wasn't luck, I chose get you out"". I asked ""well then why haven't you got me out before? huh? You know that was so totally a @CAPS12 @CAPS13"". He returned with ""I was just going easy on you, I didn't wanna make you feel bad"". By then I had a smile on my face @CAPS14 a giggle in my voice ""sure, that's why"". We continued to joke about the game, @CAPS14 the people who were playing that day. When it was time for me to go he wrote his e-mail on a small torn piece of cardboard, @CAPS14 asked me to keep in touch. As soon as I got home I sent an e-mail saying ""I still think it was a @CAPS12 @CAPS13"". Ever since that day we've been best friends. Still in almost every conversation one of us @CAPS8 mention the @CAPS12 @CAPS13, @CAPS14 it makes us laugh every time. Though I don't get to see my best friends every day, We still make each other laugh long distance. It's just that now I get to spread the laughter to new people, @CAPS14 hopefully I'll get to make more wonderful friends like the two I've already discovered." 17 20 37 3 4 4 4 4 3 4 4 4 4 4 4 +21086 8 " The @CAPS1 @CAPS2 @CAPS3 started out a few years back when I first met my cousin @ORGANIZATION1. For the first time I spent the night at his house, the day before we were outside all day running around his yard and jumping off their roof. @CAPS3 was all very fun and entertaining but no matter what we did @ORGANIZATION1 had something to say about every little thing we did or saw. ""this looks like that!"", or ""she sounds like this!"" @CAPS4 his tone of voice and his unique way of shouting @CAPS3, I could not stop laughing. @CAPS3 was unbearable, @CAPS3 made me laugh so hard and for so long that my stomach would begin to hurt and @ORGANIZATION1 himself would begin laughing from watching me slowly collapse from the uncontrollable laughter.@CAPS3 did not stop there, later that evening we stayed up almost the entire night watching @CAPS1 videos on @CAPS6 and playing @CAPS7 on the @NUM1. The laughter got even greater as we were both becoming extremely tired and our minds were racing all over our thoughts, we laughed until the point where I fell over laughing and holding my stomach. Every word that came out of my cousins imparable mouth made me burst out laughing as if I was hearing the funniest joke for the first time ever.The next morning I had an immense muscle pain in my chest, a sign of a fun and humorous night. even then, @ORGANIZATION1 still had a way to turn my stomach pain into a @CAPS1 subject. The next morning we had breakfast and @CAPS3 was just as fun as the night before. Listening to the nonstop comments and jokes on every thought and every subject and every thought possible. The day continued @CAPS4 the ever-lasting laughter between my cousin and I. Later as I left I though to my self how much more fun I'll have the next time I come to visit. From then on @ORGANIZATION1 and I became best of friends and the times got better and funner. Without laughter, life would be incomplete." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21087 8 " One day is was almost @CAPS1 and my sister, my mom, and I were all in the kitchen making desserts and a bunch of food for @CAPS1 eve dinner. My mom had to leave and go to the store to get more ingredients. Once my mom left my sister and I were still busy working away in the kitchen. I was working on one thing and she was working on another. Finally she was done with making the cookies and decided to help me with the lemon blossoms ( little lemon glazed cakes). The directions called for a fourth of a cup of lemon juice. @CAPS4 i told my sister to get the lemon juice out of the lemons. At this point in time I am making the little cakes, my sister yells at me and asks "" do I just squeeze @CAPS3?"" and I thinking she cut @CAPS3 says yes. Well I was wrong my sister yells at me again and says "" @CAPS3 isn't working."" @CAPS4 i turn around to find her squeezing an un-cut lemon trying to get the lemon juice out of @CAPS3 I just looked at her told her she needed to cut @CAPS3 and started laughing. I don't think I have ever laughed that hard. As I am on the floor crying because I am laughing @CAPS4 hard my mom comes into the kitchen with a bag full of grocery's and the first words out of her mouth were "" @CAPS5 did @CAPS6 do."" @CAPS7 if you can believe @CAPS3 i started laughing even harder. Also my sister to this day is still called lemons. This is because my family and I thought @CAPS3 was @CAPS4 funny that all of our family and friends should know about this little experience my sister had with lemons. From this experience i have learned that laughing is important in @CAPS4 many ways, @CAPS3 can bring friends and family closer together, @CAPS3 can make any relationship stronger. This experience in the end made my sister and I a lot closer in many ways and now we always laugh together and I would rather laugh than fight with her. My sister and I since this incident have become @CAPS4 much closer to the point now that we can tell each other anything and everything. I think everyone should laugh because you might not know that laughing over the stupidest thing could make any relationship better and make the two people closer. @CAPS4 live life to the fullest and laugh as much as you can because you never know when a good laugh could help you become friends with someone or bring you and someone closer than ever." 17 17 34 4 4 4 4 3 3 3 4 4 4 4 3 +21089 8 " After a long day at the @ORGANIZATION1 mom said it was my turn to decide where we went to dinner that night. I chose @CAPS1 @CAPS2 because I love their seafood. We got @CAPS6 legs, popcorn shrimp, and coconut battered shrimp. After the food we got two slices of double chocolate lava cake. For some reason it sent us into a fit of laughter. We laughed so hard, we started to cry. We had just finished going clothes shopping at the @ORGANIZATION1 and mom said that I could pick where we went out to eat. My brother started whining about it but mom said it was fair because he got to choose last time. I chose @CAPS1 @CAPS2 which is what my brother said he would have picked anyway. I picked that restaurant for two reasons, first because it was close to the @ORGANIZATION1, and second because I love seafood. Mom didn't have a lot of money so she said we should all share a few things instead for everybody getting their own. We bought two pounds @CAPS5 @CAPS6 legs, and order of popcorn shrimp, and coconut battered shrimp (mainly for herself). I'm kind of glad we all shared because it was cheaper and it was just the right amount of food so we didn't have to take home boxes. We never eat leftovers anyway. After our dinner my brother and I begged our mother to buy a dessert. after much thought and convincing she said alright and ordered two slices of the best cake I've ever tasted in my entire life!It was so rich my mom and I could barley finish our slice. My brother gulped his down with ease. After we were done the waiter came by and replaced our plates with the tab. We all glanced at it and decided not to get dessert again(which never actually happened). Then mom got a bad case of the giggles. Shortly after my brother and i caught the giggles like a disease. Giggles turned into laughter and the laughter became hysterical. We couldn't seem to figure out what was so funny or how it happened. People were starting to stare at us but we still couldn't contain ourselves. Pretty soon our eyes started to water and then there were tears. Tears of joy I'd assume but I new one thing for sure, we had to get out of there. Mom managed to pay the tab just fine, but as soon as she got in the car and herd me and my brother laughing, she started busting up again! She was absolutely convinced it was the cake. she said there is no other reasonable explanation that we would laugh and laugh about nothing. Now I believe that statement because we've tried every other dessert and none of them had the same effect on us. We go back whenever we know we can afford dessert and want to have a nice long laugh. I guess its not just the seafood that I like. I rather enjoy the cake too. We call it the double chocolate laugh cake." 16 20 36 3 3 4 4 4 3 4 4 4 4 4 4 +21090 8 "The @CAPS1 of Laughter @CAPS2 friends and I, always find some way to make each other laugh and have a good time. @CAPS2 friends, @PERSON2, and @ORGANIZATION1, are very similar, yet completely different. Both are active, humorous girls. You could almost say they are sisters from how close their personalities match, but it's their appearance that show's otherwise. @PERSON2 is tall and skinny, with short, black, curly hair. Her clear skin has a tint of olive green. Her looks make her seem as if she has a deep secret. The mystery is hidden behind her baby blue eyes. @CAPS2 other friend, @LOCATION1, has sunshine glowing from her hair. Each golden curl ends at her belly button. The freckles, that lightly cover her fair skin, only appear on her perky cheeks. Her eyes seem like the deep blue ocean. You can only imagine swimming in such an amazing color of blue. One @DATE1 @TIME1, while the sun was setting on a cold @DATE2 @CAPS1, @CAPS2 girls and I decided to learn the @PERSON1 @CAPS4 dance. After a night of practice, I gave up and laid on the full cushion couch, that comfort every part of @CAPS2 body. Two hours fly by and the girls got it. They both had each leg steps and every movement just like @PERSON1. They were so good that they could have been @PERSON1's back-up dancers. After a moment of accomplishment, we realized how ridiculous the idea was and stopped. @ORGANIZATION1 begged to do the dance once more, but with the camera recording. Minutes after pressuring @PERSON2, I started the music and pressed the record button. The girls were doing great, but started forgetting some of the steps. Out of nowhere, both girls, full speed, run into each other. It was silent, except for the music playing. Each of us look at each other and start dieing from laughter. @PERSON2, and @ORGANIZATION1, get up, crying from laughing and apologize to each other. All of this happened with me recording. After settling down, we watched the most amazing home video. Remembering funny moments like this make me realize how thankful I am for @CAPS2 friends. It makes me feel good to know that we can all be ourselves together. Without them I would not know what laughter is." 18 19 37 4 3 4 4 3 4 4 4 4 4 3 4 +21091 8 " Can you imagine life without laughter? Life without laughter is plain, dull, and boring. Laughter is an important part in life. There would be nothing to look forward to if laughing didn't exist. Laughter creates memories, relationships, and it fills in the awkward silence between two people. Some people don't realize how important laughing is. Life without laughter is like life without water. I think that's how important laughter really is. The quote ""Laughter is the shortest distance between two people."" is true, but laughing is more then just an element. It's way more important than that. Well I guess we could all live without laughter, but who would want to? No laughter means no fun times like: swimming, water parks, ice skating, dancing, etc. Those fun things can lead to laughing. Without anything fun to do no one would look forward to tomorrow. Everyday would be a waste, if there wasn't any laughter in the world. Some people might just think that laughing is just an element. Why is that? Laughter is important enough to be more than that. For example water is an element because it has something to do with the earth. It stands for the ocean. Laughter doesn't fit in that category. Laughing has such a huge impact on our lives. Laughing makes everything tens time better. Laughing creates memories, memories creates relationship. That's why laughter is an important part in any relationship. It's amazing how the smallest thing can make such a big difference in our lives." 15 19 34 3 3 3 3 3 3 3 4 3 4 4 4 +21092 8 "The @CAPS1 of Laughter. Laughing is a huge part of most everyday life. It is a very common emotion that I see hundreds of times a day. Whether it be from something as simple as a funny face, a joke, a picture, and even little things people do or say can bring laughter to even the most serious of people. @CAPS4 friends and I laugh constantly. We can make something funny out of pretty much anything. I think being able to laugh, and joke around are very good traits to have as a person because it makes life so much more fun and optimistic. I can't even count the number of times I have been in a complete laughing fit because of @CAPS4 friend @LOCATION1. She is by far one of the funniest people I have ever met in @CAPS4 entire life. Though she is extremely funny, she is not exactly the brightest crayon in the box. She asks questions after people already tell her the answer, she says exactly what I say after I say it without even noticing that I had already said it before her, and sometimes she even trips on the concrete while racing someone to her car after practice. The things she does @MONTH1 not be super intelligent sometimes, but they sure can give anyone a good laugh. I remember not even a week ago I was in the car with @LOCATION1 on the way to volleyball practice, and she just belted out the wrong words to the song we were listening to. What made it even more funny was the fact that even though she knew the words were wrong she kept singing like she knew every word. At the end of the song we laughed so hard we cried. By the time we got to practice her and I had been laughing for about ten minuets straight. During practice our @CAPS3 had been explaining directions to one of the drills. She told us loud and clear to serve the ball to spots one and five @CAPS2. @LOCATION1 not fully understanding the directions, decided she should ask and make sure it was all clear to her. So she put her hand up and asked, ""@CAPS3, so do we @CAPS2 serve to spots one and five?"" @CAPS4 whole team broke out into hysterical laughter. @LOCATION1 who didn't understand stood there looking confused, but when she finally understood why we were all laughing she joined in. That happened about three more times throughout our two and a half hour practice. She even got put in front row which made us all laugh because she is very short and looked really funny next to the six foot one girls standing right next to her. By the time practice was over I think we had gotten a better workout from laughing then from playing volleyball. On our way out to the car, @LOCATION1 decided she wanted to race a girl on our team to her car. @CAPS5 agreed and they took off in a dead sprint. You could see the determination to win in @LOCATION1's face, and all of a sudden they were no where to be found. I ran up the stairs to see who had won, @CAPS2 to find @LOCATION1 face down on the ground with @CAPS5 sitting next to her laughing hysterically. I felt bad, but it was so funny I couldn't help but to laugh. We sat there laughing for a good fifteen minutes, and we laughed about it all the way home. That was the icing on the cake to one of the funniest days I have ever had. I will never forget that day and all the times we laughed together. I think @LOCATION1 and I being able to laugh so much together brings us closer as friends because even if we get irritated with each other, or something bad happens, we can always find a way to laugh about it in the end, and that is something every good friendship should have. Laughter can't always make everything better, but it can bring @CAPS1 so someones day, and you never know the positive effect a little laugh can have on even the grumpiest of people. " 20 23 43 4 4 4 4 4 4 5 5 5 5 5 4 +21093 8 " Many people think that @ORGANIZATION1 is just like any other. These people are very wrong. @ORGANIZATION1 @ORGANIZATION1 is very different than most. For you see, it is filled with humorous people. These people make up a lot of the bright side of @ORGANIZATION1. Where these people are you might ask? Why, they are every where. The best place to look is in the hallways, especially @DATE1 @ORGANIZATION1, during lunch, @CAPS2 after @ORGANIZATION1. Most of the people I will tell you about are friends of mine. There are also a lot of people I don't even know the names of. There is even a teacher I'll mention something about. Well enough chit chat, lets get to it shall we? I will first start with the teacher. I forget her name but she likes to talk with a @CAPS1 accent. She is also very enthusiastic, @CAPS2 I do mean enthusiastic. She often says, ""@CAPS3 we go!"". It's very funny. I have never seen her without enthusiasm. Many of the students are really disturbed by it. It can be annoying at times but at least she's not all gloomy or other. In fact we might even need more like her at this @ORGANIZATION1 @CAPS2 many others. There is also a student who is also very enthusiastic, not all the time but quite often is he. His name is @CAPS4. @CAPS4 is quite a jolly kid. He loves to sing. I do mean he loves to sing. Even if he doesn't know the words to the song he is singing, he will sing. People always joke about him around him. The jokes are usually mean jokes, but he puts up with them @CAPS2 laughs along. I really do have to give him that much credit. It would be hard for just about anyone to put up with such rude words, let alone laugh with them. But enough of that. He is very jolly @CAPS2 really makes you laugh, which is really great. Don't stop being funny @CAPS4. There is a funny pair of boys who can knock your shoes @CAPS3, perhaps even literally with what they do. These two boys, named @PERSON3 @CAPS2 @PERSON1, are very humorous, as well as dangerously humorous. Ever heard of a @CAPS6? It is a brand of a toy that is very fun for little kids, as well as big kids. This toy is shaped like a bowl. You turn it inside out, aim the rim at the ground, @CAPS2 drop it. When it hits the ground, it pops up into the air. Well, @PERSON3 @CAPS2 @PERSON1 love playing with the @CAPS6, so much to the point that they found a new way to play with it. Instead of hitting the ground with it, they hit each other with it! They love to hurt each other. Eventually, though, the @CAPS6 got very worn out @CAPS2 tore. It needed to retire from its rough job, but @PERSON3 @CAPS2 @PERSON1 wouldn't let it. They just couldn't stop playing with it. @PERSON2, @CAPS9, @CAPS2 I haven't seen them playing with it lately. We think it might have broke. Ha ha! Never go wondering throught the hallways with @PERSON2, even if you have a destination. Trust me on this, you don't want to! @PERSON2 gets destracted very easily in the hallways. If she sees someone that she's wants to talk to, she doesn't tell you. She just twirls around @CAPS2 rushes over to them. For this, always have her take the lead if you do go with her; at least you'd know when she wonders @CAPS3 the trail. Never the less, @PERSON2 is still very humorous. She makes lots of random sounds. You get completely @CAPS3 guard @CAPS2 just can't help to laugh at how weird sounding those sounds are. @CAPS9 on the other hand, not only does sounds but also does hilarious facial expressions. She always tries to mimic the funny things her goats @CAPS2 pets do when she tells us about them. Together, @CAPS9 @CAPS2 I are very funny. In the @DATE1 finals started, we were drawing such goofy pictures of each other @CAPS2 random things. I drew her as a stick figure going to the moon, but the moon was very far away. We cracked up! She once redrew a little comic her brother thought of more than a year or two again. In the comic, it was a very ugly man who was telling his friends that they were going to a night club, but the ugly man turned out to be a woman. During finals, there was also a guy pulling is friend through the hallways by the arm. The friend said that it was very comfy. Then, they told a teacher about it! Ha ha ha! So you see, @LOCATION1 is much more than an ordinary @ORGANIZATION1. You could probably call it a clown @ORGANIZATION1 if you wanted to. Ha ha ha ha! You would never truly know just how many ha ha's I say a day until you visit, so come on over. We will let you join the fun!" 20 20 42 42 4 4 4 4 4 4 5 5 6 5 4 3 5 4 5 4 4 4 +21094 8 " Everybody knows that long car rides can be both physically, and mentally exhausting. Picture a family of four : a mother, a father, and two daughters in @CAPS1. The father is behind the wheel, the mother is in the passenger seat, the older sister is on the left side of the back seat, and the younger sister on the right side. The sun is rising, and you're still on the road. The father is tired, after driving all night. The mother just woke up, yawning, and is wondering how much further until the destination. The sisters are looking out of their windows with extremely bored expressions. Even with cups of coffee, and loud music the atmosphere is still lifeless, extremely dull. What could possibly bring up this lifeless atmosphere? My guess, a form of entertainment. As a young child, I was always on the road. Moving from place to place, because of my father's work. At the time, we were living in a state known for it's snow. @ORGANIZATION1. Wonderful wildlife, breathtaking views, and beautiful landscapes, untouched by man. During the long winter months, the snow covered the ground, like a blanket on a bed. You could wake up in the morning with two new feet of snow. Although, despite living in a cold, isolated state, the summers were extremely hot. A total twist to someone unfamiliar with @ORGANIZATION1's weather. This was around a decade ago, so the enviroment might've changed, but nevertheless, it is still a breathtaking, beautiful state. After coming home from school on a cool @DATE1 day, my mother told me to start packing my room. I knew we were due to leave that @DATE1, but I was still hesitant on leaving my friends. Every time that we moved, I had to say a heart breaking goodbye to the friends I knew for the few years I lived there. I went to my room and started to pack for a long, long trip. My father came to me and told me we are moving by car. He asked my sister and I to go with him so he could pick up the uHaul. We went to check out the sizes, and the condition it was in. As usual, the trucks weren't in the best of condition for moving over a long distance, but it's better than nothing. My father drove it back home, with my sister and I, and my father started to put the packed boxes in the truck. My mother, my sister and I finished packing the rest of the boxes. The boxes with valuable, and mandatory items were stuffed in my mom's @CAPS1, along with our cats in their cages. After getting everything packed, and loaded, the hired uHaul employees drove the uHaul away to our new destination, @LOCATION2. Everyone had mixed emotions about leaving. My mother loved her neighbours, my father had some amazing coworkers, my sister and I made some spectaular friends, but we had to say our goodbyes to our friends. It's not the first time, and it's not the last time, but every time it still hurts. The times we spent together, will always being in our memories! Off we go! To our new temporary home. Driving from @LOCATION1 to @LOCATION2. The only thing that I didn't like, was that we had to be in @LOCATION2 in less than a week. A week to drive that long way? Less stops, more driving, and no fun, or sight seeing... a total drag!! It was really chatty and energetic in the beginning, but everyone soon got sick of being on the road. My sister's body didn't handle it well in the beginning, and neither did mine. Half way to @LOCATION2, all conversations stopped. The atmosphere started to fade, and so did the excitement. There was absolutely nothing to do in such a small area. I wanted to try to make the rest of the drive fun, so I started to sing in my tone deaf way. Since I was so young, my voice cracked midway through the song we were listening to, which caused in uproar of laughter! My mother started to say that I was simply adorable, and my father started to mock me. My sister started to sing, too, and before you knew it, everyone was singing along! Spirits were high, and everyone was having fun singing, and laughing. We started being more active after that, too! The rest of the trip down south was full of energy, and both time and distance passed quickly. It's always fun to spend time with family, but it'll be even better if you spend the time in a fun, exciting way! Make things fun, keep a positive, enjoyable outlook on everything!" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21095 8 " Laughter can not only be a benefit to ourselves but to others as well. We only seem to use it whenever you feel the need to become happy, but in reality it shouldn't be the only reason why. Laughter is not only being able to feel better but to let out what you need to let out. Being able to enjoy yourself is pride and you should feel better about yourself. Whenever you laugh, how do you feel? Do you feel like the world is lifted off of your shoulders and you feel better about yourself? I don't mean you have to laugh so loud and so much that you fall off your chair and roll around but a simple chuckle would do the trick. Watch your favorite movie or go have fun with friends, as long as you are laughing you will and should feel better about yourself. That brings us to what happens around @CAPS2 family. When I was younger I would go on trips with @CAPS2 family up to @LOCATION2. At the time I lived in @LOCATION1. Every @DATE1 we would cram anywhere from five to nine people in a van and be on our way. Having hardly any space of your own you would think it wouldn't be any fun. All in all we would have some fights about where to stop on the way from food or when to turn but nothing too serious. Being younger then everybody I was wildly bored. So to fix the problem I would make @CAPS2 family tell jokes, make funny faces, do something. Right when somebody would let out a joke or made a face, I would crack up laughing. Pure bliss and pure innocent. It didn't mean that they were funny or that they were even trying but to let up the intense shoulders, I would laugh. When we would get to where we were staying on @CAPS2 great grandparents land, we would cram yet another time, in a small area for our sleeping. Everybody would get a cot and would have to endure the warm daylight and the harsh cold bitter @TIME1. The cold nights were the ones that got to all of us the most, because @CAPS2 great grandparents had land meant that the place we were to stay at wasn't filtering heat. Sleeping bag and the clothes on your back were the only thing that we were able to get. So when the sun slipped slowly from shinning its bright light among us, we'd bundle up. Knowing me I did not listen to what @CAPS2 family sad and I would drink tons of water before I rest @CAPS2 head against the cot. If you have common sense, which when I was younger did not. You would know that if you drink a lot before you go to bed and having the cold surround your body, you would have to use the restroom at some point during the @TIME1. Because @CAPS2 aunt was only @NUM1 years older then me, should would be the one that would have to wake up to walk me outside, down the driveway, to the porter potty, wait for me, then go back to sleep while trying to shake off the shivers that controlled her like the puppet master. Knowing @TIME1, she was not happy with @TIME1 situations, I'm sure nobody would be. The last time she took me, she made sure it was the last time she would get up to take me to the restroom. The @TIME1 came that she had to take me. We started walking down the driveway. The wind was not like other nights, ripping every which way and piercing through @CAPS2 skin. Another odd thing about @TIME1 was instead of the dull tired face @CAPS2 aunt usually would have, she was awake, more the awake, she seemed to have a slight grin on her face. Since it was pitch dark she had the flash light with her. She opened the door to let me in and shinned the light down in the cracks so I would be able to see more clearly. Once I was done, I felt the shaking of the porter potty and heard in the voice of a monster the ""@CAPS1 y was coming to get me, run, run run!"" @CAPS2 blood rushed all over, warmth is what I remember feeling. Pushing the door open, screaming, running for @CAPS2 ""safety"" is what went through @CAPS2 mind. As I realized @CAPS2 aunt wasn't with me, I looked back. Only to find her laughing uncontrollably at what just happened. The meaning behind @TIME1 would be that you can just turn a bad situation into a good one if you rearrange the problem. You can turn it into a laughing matter instead of a dreaded time. @CAPS2 aunt making me do something she would think was funny would be a better sense for her and relieve her from whatever she thought she felt. Its a cause and effect placement. Causing me to panic effected her to be at more of an ease." 19 16 35 3 4 4 4 4 4 3 4 4 3 3 3 +21096 8 " Have you ever felt really good after you laughed a lot? Well studies have shown that after you laugh you not only feel better, but it's a great way to lose calories. One time when I felt bad my cousin came over and made me laugh. It was a very important part of our relationship, she to only made the day better but put more energy in it. When people don't laugh how can you have as much fun? Studies have shown laughing does a lot for your health. It increases a certain blood flow in your brain which helps a person to be more energetic and happy. It has also shown that laughing leads to a longer life span. Also every time a person laughs it helps a person burn calories. If it's healthy for you why not laugh a lot? Just think, if nobody laughed how would this world be? It would be dull and full of unhappy people, just like this one time when my cousin came over to see me. One day I was feeling down and depressed. Nothing was going my way and it was ending up a very bad day. Then all of a sudden my cousin came to @ORGANIZATION1 and surprised me. I was in @ORGANIZATION1 one day after school and looking at some things when she came in @ORGANIZATION1 and snuck up in back of me and scared me. We both started laughing so hard. She made a bad day turn into a fun one. We had a movie night and ate candy and pickles all night. We made songs up and sang them. We had the best time of our lives. All night long we had this party. I don't know what would happen to everybody if none of us ever laughed. If we didn't laugh then our relationship certainly wouldn't be as strong. It would seem like we were sad or depressed all the time. If their was no laughing I wouldn't look forward to seeing her as much if we just sat around and didn't laugh. Laughing for me is a huge part of having fun in any relationship. It shows your comfortable with the person and are having fun also. If you have ever been down and wanted to give up, you know that's not fun at all. But whether you watch a funny movie or talk to your friend and it makes you laugh, you know what joy it puts in your life. So laughing must be an important part of you life or in any relationship you have. Overall laughing for me is one of the most important things a person can do to make another person feel welcome and comfortable around you. Also a great way to have fun and lose calories at the same time. If you need some happiness in your life then watch a funny movie or hang out with people that make you laugh." 20 17 37 4 4 4 4 4 4 3 4 4 4 4 3 +21097 8 "Social @CAPS1 @CAPS2 people think of laughter as a way of showing how you feel, almost like an emotion. I look at laughter in a different way. Laughter is a form of communication. Sure you @MONTH1 laugh when something is funny, but the truth is that you can control it. So @CAPS5 do people laugh? They laugh to convey a message; basically they are letting you know that what you said or did was amusing to them. Overtime, laughter can build relationships, or even start them, all because when someone laughs at you or with you, you are sharing a common ground. I know that laughter is an important thing in my life because, without it, I would have never met my best friend. When I began sixth grade, I was scared. I was scared that I would lose all of my old friends and become one of those kids who sits alone in the cafeteria every day wishing that he had someone to eat his greasy pizza with. Of course I was overreacting, but the thought was always lingering in my mind all through the first few days. Soon I even began to notice that my friends were actually find new people to hang out with, and I was beginning to feel as though I was becoming that outcast I had feared to be. Then I met him. He was a skater kid with dark hair down past his eyes and white, almost pale, skin. I was with one of my few friends, @CAPS3, when I saw him riding around near the front of the school. I didn't really think much of him besides the fact that he had some of the coolest shoes I had ever seen. I was actually surprised when @CAPS3 walked up and started to talk to him like he had known him forever. I walked with him to avoid the image of being any more of an outcast. As soon as we are standing in front of him, he says something like an insult that I would usually brush off as nothing, but this time for some reason made me really mad. I said things back and before I knew it, we were in verbal warfare. In the end I knew one thing: I hated that kid, and he hated me. Towards the middle of the year, our school had a dance. It was the first dance I had ever been to and I had butterfly's in my stomach. I got a ride with one of my old friends, @DATE1. I liked @DATE1 because he was never judgmental or anything like that, he was just friendly. When we were in the car driving to the middle school, he told me that he had to pick some else up, which didn't really bother me at all until we got to the house. The house wasn't very impressive it could have been a cardboard box for all I cared. When i saw the the kid's left foot step out of the house I knew exactly who's shoe it was. As he got in to the car, I pretended as if I hadn't seen him. I failed. The whole car ride was nothing but awkward. When we got to the dance I walked on the right side of @DATE1 to avoid confrontation. @DATE1 scenced the tension and stopped walking. What he said next surprised me a little. ""@CAPS5 don't you guys just get along?"" We both stood there, eyes locked, when skater kid made another one of his ""nice comments"". I thought it was going to be the beginning of the year all over again, but I did something I didn't expect to do: I laughed. He laughed too. It was almost as if for the first time ever, we were friends. The whole night we hung out and danced like crazy. We had become friends. During the rest of the year, we became better and better friends. We went over to eachother's houses and hung out at school. That was when I realized that we were best friends. Even now, in ninth grade we are still best friends. It's crazy how one small giggle can escalate into that, but that's what happened. I don't know how laughter can do that, or @CAPS5 I even laughed that night, but one thing is certain: laughter is important. " 25 21 46 5 5 5 5 5 5 4 5 4 4 4 4 +21098 8 " Entering into the classroom, I began to shiver from anxiety. I was the new student in the fourth grade, transferring from a public grade school to a @CAPS1 school kept my head swimming with questions, which I put aside as I stepped into the room with a large white ""@NUM1"" on the exterior wall. I swear, I could feel my bones literally shaking because of my nerves. Surprisingly, no one approached me as I came in. I noticed that they were all surrounding this @CAPS4-go-lucky brunette. No one really even took note that I was there until the teacher looked up. After introducing myself to her and the class, I looked back at that brunette who was previously surrounded by the group of my to-be peers. She smiled at me as I stood there, with my feet uncontrollably glued to the ground, looking blankly at her for a few seconds. When someone told me this girl was the other new student in their class, I understood why everyone was staring at her. I soon became green with envy over her because of all the attention she got. I was unintentionally a fairly jealous child, and when I noticed that everyone wanted to be her friend and I got somewhat ignored, I stomach slowly twisted in knots more and more each day as I began to form feelings of suspicion and dislike towards this girl. Even her name sounded suspicious to me. @PERSON1. I had never in my life heard of anyone named @PERSON1 before. Luckily, I sat on the opposite side of the classroom as her. And even as a month passed, I still felt uncomfortable being near her, so I stubbornly avoided her. My birthday soon began to creep up after the first month at @LOCATION1. I was beginning to find out which people I wanted to be friends with, and which people to avoid. Unfortunately, even the people I had gradually grown weary of, had to be invited to my birthday party because it was a class party and I didn't want anyone to be left out and since the class only had thirty people in it, I could only deduce that word about the party would spread around and people would begin to talk. I knew that I hadn't built up enough of a reputation for people to know who I really was or what my personality was actually like. As, I was putting an invitation in everyone's beige, square cubby, I hesitated when I came across ""#@NUM2"". This was her number. The number of that girl with the bizarre name that I had an undeserved, grudge-like suspicion of. I cursed myself violently after I put that birthday party invitation into her cubby. When the day for the party finally rolled around, I had everything set up just how I imagined. I even had the perfect @CAPS2 @CAPS3 cake picked out for myself. The guests began to arrive knocking at the glass door, temporarily staining it little grimy knuckle prints. @PERSON1 came alone. As I opened the door, she timidly and immediately shoved a gift at me and shyly muttered under her breath ""@CAPS4 birthday @CAPS5"". I welcomed her traditionally, as I did with everyone else and showed her to the backyard. The party continued to go in several directions until my mom gathered everyone around, so I could blow out the candles. @PERSON1 stepped up next to me. With a confused expression on my face, my mom leaned down to whisper that @PERSON1 had the same birthday as me and she would blow out the candles with me. I couldn't believe it. The person who I had selfishly pretended to not exist, was the person who I had to share my cake with. After blowing out the candles, everyone left because the party ended and I silently pouted for having to share my birthday with another person. After the party, I walked into the house, only to find @PERSON1 sitting on my steps. Her mom apparently couldn't pick her up for another hour. I came over to her and casually started making small talk with her. A few minutes later, my brother ran in with a huge glob of frosting in his hand. He yelled @CAPS4 birthday to me and threw it at my face. I was shocked and didn't know what to do. He ran downstairs to his room as I continued to stand there with my mouth gaping. Then, I heard someone laughing behind me. I turned around to see @PERSON1 giggling. And without warning I started laughing too. And neither one of us could stop. It was at that moment when I realized I was wrong about her. We spent the rest of the hour playing and laughing, and by the time her mom came, we were begging for a sleepover. Although we were unsuccessful, I had grown to understand that this girl was someone I wanted to get close to. @PERSON1, through that first laugh, became my best friend and continues to be my best and closest friend today." 23 20 43 5 5 5 5 5 4 4 4 5 4 4 4 +21099 8 " My best friend @PERSON2 and I have a tradition that we made up. Every time she comes over to my house we always slide down the stairs in a sleeping bag. We came up with @TIME1 @CAPS4 she was spending the @TIME1 at my house. While sitting on the staircase with nothing to do it suddenly hit me. I turned to @PERSON2 and said""@CAPS1 could two little girls possibly do to have fun in the middle of the @TIME1, @CAPS4 all they have to work with is a long staircase that has been sitting right under their noses the whole time?"" and to @TIME1 she says ""I'm listening."" @CAPS2 we were both getting excited because we finally found something fun to do.I said ""I'll show you. We just need to get all the pillows we can find."" The two of us scampered around the house looking in every room and brought all the pillows we could find back to the staircase.""@CAPS3 @CAPS1 do we need all these pillows for?"" @PERSON2 asked and was surprised @CAPS4 i said ""for padding."" @CAPS4 the pillows were set up at the foot of the stairs, I told her of my brilliant plan. She loved it! We couldn't wait to get started. ""@CAPS5 purple sleeping bag will be perfect for @TIME1"" said @PERSON2. I ran down the hallway to my room, snatched my sleeping bag, and sprinted back towards the staircase. My purple sleeping bag is super slick and was just the thing we needed to glide down the stairs. @CAPS2, @DATE1, we are fourteen and fifteen @DATE1 old, we still have fun doing @TIME1. Over the @DATE1 we have improved it, making it nerve racking and loads more fun. @PERSON2 and I have agreed on some safety precautions, which we thought were necessary. @CAPS4 we are just using the sleeping bag we don't need them, but as we have added on to that we have agreed to wear a helmet and sometimes add a few pillows. The helmet kind of scares my mom because it's even needed. One @TIME1, while my parents were out, @PERSON2 and I had been eating way too much sugar and were extremely hyper. The two of us were sliding down the stairs but it was starting to get too easy,and wasn't as much fun as it was @CAPS4 we were about @DATE1 @DATE1 old. We wanted to make it even bigger and better than ever before! We started brainstorming. My brothers room was upstairs and we somehow wanted to incorporate his mattress into our fun. @PERSON2 and I dragged the mattress out onto the staircase. We both sat down on the mattress, pushed off, and went shooting down the stairs. We could barely keep a hold of the mattress. The farther we went down the staircase, the farther we slid off of the mattress. We were laughing @CAPS3 hard @CAPS4 we got to the bottom, we almost slammed into the wall! It was @CAPS3 much fun. After that first ride we decided we had better put an extra pillow up on the wall somehow. One thing we hadn't thought about before we went crashing down the stairs, was how heavy the mattress was. It was very hard to get back up the stairs, but we didn't mind because we were having @CAPS3 much fun. @PERSON2 and I were getting tired @CAPS3 we decided to take a break. The two of us hauled the mattress up the stairs , it one last time before plopping down on the couch in the opposite room. Not too long ago my mom had bought an inflatable exercise bean. Shaped just like a real bean and had handles on both sides. @PERSON2 started messing around with it, and @CAPS4 she said ""@CAPS6 try it?""We both rushed back to the stairs, ready to have some more of the reckless fun that we love. Our imaginations were bouncing off the walls. @TIME1 time the two of us felt it was time to mix everything together for the ultimate ride. We kept the mattress on the top of the stairs and measured out just where we needed my sleeping bag to be. Our idea was to be sitting on the exercise bean, on top of the mattress, slide down off the mattress, land on the sleeping bag waiting on the stairs to give us a turbo boost, and finally be sent flying into the pillows at the bottom of the staircase. I found some duct tape @CAPS3 the @PERSON2 could tape the sleeping bag to the floor. @PERSON2 let me go first. I was nervous because we'd never done @TIME1 before. After a minute a finally pushed off. It was a bigger drop from the mattress to the stairs than I thought it would be. @CAPS4 I landed on the sleeping bag it was like being inside of the @PERSON1 video game, and hitting the turbo boost. It was scary but @CAPS4 I got to the bottom the two of us were laughing uncontrollably. We had @CAPS3 much fun. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21101 8 " THE @CAPS1 A couple of weekends ago me and my cusin were at my grandmas house. She lives up in the woods and has a bunch of quads and motorcycles. All me and my cusin did was ride,have airsoft gun wars, and build giant forts. We planned on only staying one night but ended up staying three. So the first night we were there we built a fort out in the woods. The fort seemed really good at the time, but the next morning we had other ideas. So the next morning we were getting ready to go outside and work on the fort. He got done before me so he went down there first. By the time I got half way down there I heard him scream and come running out of the fort. He was yelling @CAPS2 .....MICCCCEEEEE! So i figued we must have a little @CAPS2 problem and laughed to myself. So I walked in there to see for myself and sure enough there was a bunch of little @CAPS2 running around in there. That was the end of forts on the ground for us. The next day we decided to have airsoft wars(guns that shoot little plastic bb's). We were having alot of fun shooting eachother mainly because it hurt. Like I said we were having alot of fun until I decided to try and hid up in a little tree. He found me and shot me I fell out of the tree and broke my gun. That was the end of the wars plus I almost broke my leg. I guess that was payback for laughing about the mouse thing. After the wars ending we decided to go ride quads for a while. There are alot of trails around her house to ride on. He road a dirtbike and I rode a quad, I road a quad so I could make new trails. We made some really good trails up there. It was really muddy up there and very wet. While we were way out in the woods on a long ride I ran out of gas. So I had to walk all the way back to the house for gas then walk all the was back up there. The last day we were up there we got up early. We wanted to go out and look for a place to build a new fort. This time we were going to make a tree fort so we didnt have to worry about critters. We spent from the time we got up till the time we went home on this awsome tree for. My granndpa has alot of wood that he dosn't use because he really to old to build anything so we never ran out of wood. " 20 20 40 40 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +21102 8 " We were all ging out in to the woods to go ride quads and trikes, @PERSON1 and @ORGANIZATION1 and @PERSON1 had quads I was the only on with the trike. We loaded the trike and quads in the back of the truck and trailer and was off to the woods. We get out their and uloaded our rides, we get all of them warmed up but the one with a clutch. the only way to get that one started is to pull it with the automatic quadWilber says to @PERSON1 that he will get it started so u pull me. I get up their and hook the rope on to aech quad @PERSON1 says hes ready,so @PERSON1 is taking off fast and some how the hook just comes off and hits him prfectly on his back he gets up and it looks like hes dancing. He lifted up his shirt and asked s if there was any mark, oh man was there the hook hit him perfectly, it looked judt like a hook wa printd on his back. @PERSON1 starts to taer up a liitle bit while holding his back. i didnt blame him i would of to, u could hear it snap when it hit him. I look over at @PERSON1 and hes trying not to laugh, @PERSON1 looks over at @PERSON1 and gets off the quad and started to chase him. I finally got there attention and said,""we came out here to ride not to kick some ass."" we finally get the bike going but @PERSON1 was to scared to pull the quad so i had to do it, as soon as we get the quad with the clutch to warm up, a cop car comes down by us then turns his lights on. We new what we were going to have to do so as soon as i see @PERSON1 take off i took off. @PERSON1 and I look back to see if @PERSON1 was behind us and no he was not. @PERSON1 told me we should just leave him ,but i told him that would be way to mest up we come back and the cop told us he was suprized that we came back. we asked @PERSON1 what happend and he didnt know after dealing with the cops for the day, we tried to figure out what was rong with the bike and we found out some one was messing with the carbrator and they were totally off. it sucked we dont get our licences tikll we eighteen ,but for @PERSON1 its twenty one, that really sucks for him. After that one day @PERSON1 promised that he would never go with @PERSON1 and I again. " 16 15 31 3 3 3 3 4 3 3 3 3 4 3 3 +21103 8 " My family and I went to our vacation house once in awhile to see how things were going. We would spend a couple days or a week there. It was nice, got to hang out with our neighbors, ride quads, feed the rabbits, horses and cows, put on make-up. Sometimes my dad and i would be sitting on the porch and look at the scenery. The beautiful suset, the trees and their colors. A crowd of deer wandering around, picking on the groumd eating the scraps of food. The cows walking along the fence line waiting for dinner to go their way. While we were sitting there we would talk about random things or play jokes on eacother and just laugh and have a good time. One evening when we were sitting on the porch my dad asked if i would like to take a walk. I said yes and so we went into the pasture, and somehow he had a camera. We walked and talked and he took pictures of everything. I wasn't looking but suddenly he was taking pictures of me. I looked at him and i saw that the camera was facing me and his finger was holding the button and wasn't letting go of it. I ran in circles and laughing so hard that i was crying and i couldn't stop. He kept going in circles, as me, still taking pictures of me and we were just laughing and laughing." 15 17 32 3 3 3 3 3 3 4 4 4 3 3 3 +21105 8 " Laughter @CAPS1 @CAPS2 @CAPS3 Laughter I believe can snatch me out of the awful crater which I hide away in. It creates a bubble of joy in the pit of @CAPS1 stomach, and it finally bursts joy throughout me. Laughter feels like a @DATE1 day hearing the bugs hum with the warm breeze, and knowng I am able to float up into the cotton candy clouds, then not realizing I'm laughing at everything I do. Laughter flips @CAPS1 gloomy days upside down, and makes me realize every reason I have to be happy. Sixth grade is a big mile stone in everyone's @CAPS2. Getting lockers, having more freedom, being able to be around older kids, and so much more. I always had a dream of laughing with @CAPS1 old best friend and giving boys our numbers, except it all changed when she moved away. No one talked to me or hung out with me at school. @CAPS1 old best friend never left @CAPS1 side no matter what, so it was uncomfortable walking thruogh the crammed hallways of a huge school with just air breezing by me. School became unpleasent to go to everyday for eight hours. Most sixth graders don't like school because of the homework and would rather social with other classmates, but not me. I felt alone when other sixth graders (mainly girls), made jokes about @CAPS1 appearence or how I always got good grades in school. They would steal the projects that I made and worked really hard on. They also took books, papers, and supplies like pencils and pens. I learned new formulas and facts, but never did I learn how to socialize with other peers. Three quarters went by of @CAPS1 sixth grade year and I felt alone like suddenly the rest of the world shriveled up and died, or moved far far away. At night, @CAPS1 eyes would spew gallons of salt water tears down @CAPS1 face splashing @CAPS1 pillows. @PERSON1 was @CAPS1 other best friend and never teased me or talk behind @CAPS1 back, but she stuck to the people who did. It overwhelmed me walking near the group of girls who would put other people down, but hid it with their cartain acts around specific people. They would tell other students rumors about innocent people and how gross and weird they were. I didn't want them telling people rude comments about me, so I ignored them the best I could by doing activities on @CAPS1 own. A girl from the other elementary school noticed @CAPS1 loneliness at school and decided to talk to me. I was shy and felt @CAPS1 stomach starting to do flips which was never a good sign. All I could do before I looked like a scared kitten was smile and nod. She told me that next lunch I should come hang out with her and her friends, but those girls were the girls who teased me. The next lunch I went with her feeling sweaty-hand nervous the entire time. Once I started talking to them about myself they just smiled and said I was adorable and a really awesome person, which made me smile from cheek to cheek. It felt good to smile for the first time in a long time. A couple of days later, the girls told other sixth graders I was a goody two-shoes that is so dreadfully boring. @CAPS1 smile faded quickly once I heard those rumors that spread through @CAPS1 class like a disease. @PERSON1 left the group of girls one day at lunch to talk to me about what had happened. I told her how I felt about what those girls did to me and how it felt like the world always would agree with whatever they said. She confessed to me that she truly didn't know why she was hanging out with them in the first place. I was relieved to hear her say those words and for her to not agree with what that group was saying about me. The girls who talked bad about me behind @CAPS1 back were left to do whatever they desired, while @PERSON1 filled the breezy air by @CAPS1 side with laughter. Together we laughed at everything that amused us. Sometimes we would even laugh at each other during boring assemblies or at a ridiculous person attempting an act that everyone knows they cannot do. When she had a bump in the road in @CAPS2 I supported her and did what a true friend would and just laughed at how dumb the other person was being just to make her laugh at the situation. In other words laughter pulled me out of @CAPS1 awful pit I hid away in and made me find @CAPS1 true friends in @CAPS2. Laughing has made me forget bad times and people, and has made me realize when they bring me down I have a million reasons to laugh until I have to gasp for a sip of air. Laughter has been a huge part of any relationship for me because I can have an enjoyable time. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21106 8 "Water @CAPS1 of @CAPS2 @CAPS3 we think that laughter is just an emotion, but in all actuality it's practically a way of life. We use laughter to cheer people up, or get out of trouble. People do stupid things just to make others laugh. I personally think laughter is a reason to live, and that every one needs more of it in their daily lives. I have always been the type to make every one laugh and feel better, and I would always put myself in pain just to cheer someone else up. When I was a child my friend would always be picked on at school, for no reason really. And I wasn't the type to take action, or try and get back at someone. But that all changed when my friend came home covered with food crying before school was even let out. She told me that these girls threw their lunches at her and were calling her names. So the next day I went to school with her in the morning and I took @CAPS1 filled with chocolate milk, smoothie, egg yolks and soured milk. When she pointed the girls out to me I grabbed the balloon with chocolate milk and threw it right at one of them and it hit her in the chest. She started screaming that her clothes were designer, like someone would actually care. I looked at my friends face, she was awe shock, but I could tell she was trying to hold back her joy because she knew I was not yet finished. I then threw one with egg yolks in it and got in a girls hair, her scream was earsplitting. The smoothie filled one got two of the girls who were hugging to try and keep each other safe (or trying to use each other as a shield) but it wouldn't work with my throws. They started to freak out and run to the others, which was a bad idea because they were all hudled together trying to figure out who it was. By the time they figured it out it was too late, I was already throwing the biggest balloon filled with soured milk at them and they couldn't get out of there fast enough. It landed in between all of them and exploded when they had turned to see what it was that was thrown. It covered all of them and they started screaming so loud that the school officials started coming out of the building to see what all the screaming was about. I could see everyone of the kids who saw the whole show coming over to me, they started to tell me how amazing it was and how funny the girl's reactions were. Some kids were still on the ground laughing so hard they couldn't breathe. Some thanked me and told me that these girls had been picking on them for a while. I looked at my friend who was on the verge of tears. She ran over and hugged me so tightly I thought the air was going to be squeezed out of me. It's been ten years since then and I still talk to my friend, she even occasionally calls me if she's having trouble with someone at school. As for the girls? I haven't heard anything about them since they all got transferred to different schools. I guess laughter is the source of all joy in our lives, and helps people become closer then ever before. My friend still says that it was the best day of her life. Some of the other kids who witnessed the event go to high school with her now, and all ask how I am and want to see me do something like it again. Unfortunately I had to turn them down and tell them they have to learn how to deal with their own bullies themselves. I imagine that some of them have come up with very creative ways to get back at people by going off of what I did." 22 18 40 5 5 5 4 4 4 4 4 5 4 4 3 +21107 8 " Laughter is an essential component to any relationship, as it can erase any previous uneasy feelings and has a tendency to bring two people together. This phenomenon stays true whether the individuals involved are in the same room, talking over the telephone, or even communicating over the internet. My best friend and I share a special bond in which laughing has played a large role in keeping us together. Laughter can keep people together even in times of hardship. My best friend, @LOCATION1, is @CAPS1, and we have shared many laughs over the @DATE1 years we have been friends. We first met while playing an online computer game and immediately enjoyed each others comments and comical statements. We would immediately burst into laughter when one of us would say something that could be considered even the slightest bit funny. He and I shared many laughs over the next two and a half years. Recently his family had financial troubles and was not able to pay the internet and phone bills for several months. Work during this time seemed to be more of a burden than usual, as I had few people I could truly relax and have a laugh. Only the occasional laugh with my friends who live locally could cause me to forget the disappointment I had from missing one of my greatest friends. @DATE1 weeks ago there seemed to be some hope that my best friend and I would be again able to communicate as before. While staying up @TIME1 one @TIME1 doing homework, I noticed that I had received a message from the long-lost @LOCATION1. I immediately chuckled inside, thinking of the good times we had shared just a month earlier. To my disappointment, the message which I received was not to tell me that he had internet at his house once again, but to thank me for the @CAPS2 gift and to tell me he was at another friends house for the @TIME1. He also mentioned that he would enjoy playing a game or two with me during this time. While this provided some comfort, it did not fully satisfy my hunger for laughter because his computer which he had taken with him was missing the drivers which allowed the use of a microphone. That afternoon, though somewhat disappointing, reminded me of the many great times we had shared together. One @DATE1 ago, my hopes were finally confirmed when @LOCATION1 messaged me to tell me that he had internet again. Though we had missed being together during the @DATE1 break, we were thrilled to once again be able to communicate. I am glad the @TIME1 he chose to get internet was a @DATE2, because we played and laughed till @TIME1. The laughter which we shared that @TIME1 washed the disappointment far from both our minds. My days are once again complete, as they are now an almost perfect balance of work and laughter. Laughter truly does bring people together, far more than I had previously realized. Though my best friend and I are thousands of miles apart, when we talk and laugh together, it seems as though he is in the same room with me. I hope that some day soon we @MONTH1 be able to actually be in the same room, sharing laughs and enjoying life. This example is just one of the many where laughter has greatly improved the outcome of a particular situation, making the individuals involved even closer together than they had been before." 20 20 40 4 4 5 4 4 4 4 4 4 4 4 4 +21109 8 " Laughter is a important part of my life.The best way to pass the time is laughing with friends and family. Think back on all the fun times you've had, if you do you'll find that most of them you are laughing. That's because laughter and fun go hand in hand. Everyone likes to have fun, therefor everyone likes to laugh. Laughing is good for you in many ways, it keeps you happy, helps maintain healthy relationships with others, and it relieves stress. Also a lot of people laugh when there nervous, I'm one of these people. Especially when you're put in a awkward situation. Like when you have to do a speech in front of the class. I remember my first speech in high school, it's one of the scariest things I've done. It was @CAPS1 year and I slouched down in my chair and tried to get as low as possible so the teacher couldn't see me. I wouldn't make any eye contact with her either. I put my back pack in front of me in order to block her view. Every time she'd look around the room to pick another person to go I'd hold my breath and hope it wasn't me. Every time it wasn't me I would breath out in relief. Finally it was getting down to a few people and I knew my doom would soon await me. I decided to take a chance and peek over my back pack to see who the teacher was looking at for her next victim. What I saw when I looked at her was her eyes meet mine. I tried to hind behind my back pack again but it was to late. She had already started to call my name out. What should I do? I thought to myself. Should I tell her I'm not ready? Should I try to get out of it? I wiped my sweaty palms on my blue jeans.Then I stood up and started to walk toward the front of the room. I could feel a nervous knot building up in my stomach. With note card in hand, I began to speak. My words were quiet and shaky. My speech was about uniforms in school and if I agreed with them or not. As I went on I could feel myself start to trip over my words. Then I started to laugh, which I always do when I'm nervous. I could hear other people in the room start to snicker. I smiled and looked down at my note card and continued my speech. After wards I felt a big relief to get it over with. It wasn't perfect but laughing at myself when I messed up helped me get through it without falling apart from my nervous. Although not everyone reacts this way, laughing can help relieve tension in some situations.But always be careful not to laugh in situations were it's not appropriate. It's not good for you to have constant stress. Finding things to laugh about can be a good way to relieve stress. Laughing might not be the right behavior to get a A on your speech but it did help me keep it together to make it through. Laughter is important to everyone. It's a good way to have fun with others and it keeps you happy. Laughing is a good way to relieve stress. Your relationships will grow stronger if you find things in common to laugh about. If you learn to laugh you're sure to have a fun and happy life, I know I do. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21110 8 " Laughter is a part of life that doesn't need to be taught. We're all born with the ability to laugh. Laughter and being able to laugh has been with us since the beginning so we don't really think about how important laughing can be. It gives us a sense of relief, a feeling of joy, and it also brings people together despite barriers like background or language. I think one of the most important things laughter does for people is bring them together. When you meet with someone you haven't seen in a long time or you have to be in a group of people you don't know, a little laughter can break the ice and bring you closer. I want to tell of a time when I visited my family in @LOCATION2 who I hadn't seen since I was two years old. My brother and I were the only ones visiting from our family. So we didn't get to have our mom there to make us feel comfortable, or introduce people. I was quite worried about being able to communicate with my family in @LOCATION2 because although I can understand and speak in @CAPS1, I'm not fluent. Being able to bond with the part of my family I never knew was very important to me and I was afraid that language would prevent that. I was also concerned for my brother because he can't speak @CAPS1 very well at all. While on the plane I contemplated how I should introduce myself, topics to talk about, and prepare answers for certain questions. I didn't want the language barrier to cause an awkward atmosphere. Finally it was time to arrive in @LOCATION2. We landed in @ORGANIZATION1, @LOCATION2 where a lot of my relatives live. My brother and I collected our baggage and went to go look for our uncles and aunts. We saw them waiting for us and @CAPS3 waved enthusiastically. Then naturally we responded with the same enthusiastic feeling. As we met them for the first time we exchanged hugs and phrases like ""I'm happy to meet you."" @CAPS3 were very kind to us and welcoming, but it still didn't feel like I was meeting my family. Things were very different and new for us. It was a lot to take in for two people experiencing jet lag. The first night, we stayed at our oldest uncle and aunt's house. We had dinner together and talked about how our family is doing back in @LOCATION1. It was pretty awkward. Communicating with elder relatives who can't speak @CAPS4 was a lot harder then I had thought. The first night passed as I slept in the uncomfortable humidity. The next morning our uncle and aunt had planned for us to have dinner with our cousins and other uncle and aunt. I was excited to meet more of my family so soon, but until then we had to pass the time exploring our new surroundings. My brother and I checked out the house and walked up and down the streets. Immediately we could see the differences from what we were used to. We had a lot of fun embracing the fact that we were in a different country we have been familiar with, but never really known. At last it was time to meet up for dinner with our other relatives. We drove into the downtown area of @ORGANIZATION1 and met up in a restaurant that overlooked the ocean, as @ORGANIZATION1 is right on the coast. I related to my cousins more because @CAPS3 were younger, in @CAPS3're mid twenty, and generally I can get along easier with young people. We gathered in the noisy restaurant and were seated in an area sectioned off for more privacy. As we were ordering our food and admiring the scenery from the window, I felt more at ease. Our food came and we started to eat. While we were eating, my cousin started cracking jokes which made everyone laugh. My brother and I were laughing so hard we teared up. During the whole dinner there was laughter and smiles. At that time I really began to feel like @CAPS3 were my family. I was really thankful for my cousin who started the laughter, because with out all the laughing I don't think we would have bonded so quickly.That was the time I felt that laughter is very important and brought me closer with the people I love." 23 22 45 4 4 4 4 5 5 5 5 5 4 4 4 +21111 8 " Everyone knows that when it comes to coach @PERSON2 sr. theres always going to be a bunch of laughs, giggles, jokes, and pranks. If you dont experience any of the above, then you are absolutely lame. It all started when my lovely sister @PERSON3 decided to make it to @CAPS1 in @LOCATION2, @ORGANIZATION2, of course she wasn't going to want to go alone. That is why she brought @PERSON1, @PERSON4, and me. We promised to eachother that we were going to make the best of memories. Nothing in the world is better than sharing emotions with those who care for eachother. We had arrived in @LOCATION2, @LOCATION1 on a lovely morning, we were all a little tired, but for the most part we were all hungry for sure, that is why coach took us to @ORGANIZATION1 so that we could buy some snacks. He, of course, ran straight to the @CAPS2.Pepper That old man always had to have one of those with him no matter what. Being a cross country coach and all, he wasn't a very good influence over his athletes. Anyway, if you are a @LOCATION3 fan you either know, or should know that he never liked when people touched his stuff, especially his @CAPS2.Pepper! oh man, god forbid you touch his pop. So seeing @PERSON2 all jittery and bouncy walking down the aisle gave us girls a wonderful idea, we were going to take his @CAPS2. Pepper, and drink it! ok maybe not drink it, but we were for sure going to take the pop from the old man. It's like stealing candy from a baby. We arrived at the hotel and coach told us to upack our stuffso that we could tour the place a bit. So while coach was getting our room keys, we decided that we were going to do a little unpacking for him as well. @PERSON1 and I took all of his @CAPS2.Peppers and stuffed them in our bag and acted like nothing ever happened. We got our keys and he told us that he would stay down and unpack the rest of the things, we didnt want him to do that because he would then realize that we had took his pop, so we immedietly ran to the rooms and threw everything on the floor so that we could come back and make him forget about unpacking and we would go straight to exoeriencing another one of those @LOCATION3 tours. It wasn't 'till the night time that we arrived back to the hotel and @PERSON2 hadn't said a single word about his @CAPS2.Peppers. We thought we were the coolest people ever! it was already late so we had no other choice but to head up to our rooms and stay there. We all thought that was kind of lame because none of us girls we tired, not even @PERSON3, and she raced in the morning. She was the rebel one out of all of us by the way. Tme passed and we were all still awake, we were absolutely bored and had nothing to do, so we decided that we would unpack @PERSON2's pop. We starred them down as if they were some prized possesion or something. We thought about drinking them, but that would have been bad. We couldn't leave our room or start a rave, therefore, we just decided to hit the sheets and get some shut eye because the morning was going to be big for us girls and coach. It was the morning that the second biggest race of @PERSON3's life was going to take place, and ... we were still in bed! of course @PERSON2 got up before everyone. We were awakened by a loud knock, we figured it would be @PERSON2 because who else would it be. We opened the door and big old bald man was standing there and said "" i'm only going to say this once"". I need my @CAPS2.Pepper. It was so funny we acted like we didn't know what he was talking about. We found it hilarious because old bald man was turning beet red, apparently he didn't find it funny. We kind of sorta in a way found that out when he pulled the @PERSON3 not racing card, we were terrified for our lives!, especially @PERSON3, since she was the one that was going to be racing. We played the dumb people for about five minutes until he actually was being serious, then we decided to play the nice guys. Yes, we gave him back his @CAPS2.Pepper. We learned a very valuable lesson that day, ""messing with @PERSON2 is like messing with a pig, you're both going to get messy, but the pig likes it""" 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +21112 8 " Laughter plays a huge part in my life, my family loves to laugh. We are always making each other and people around us laugh. @CAPS8 you put two or more @CAPS1's together someone is going to start cracking up. Sometimes the kids in my family have games to make each other start @CAPS4. There is this one @CAPS2 that a couple of us play; no one ever oficaly gave it a name so we just call it theLaughing @CAPS2. The @CAPS2 starts out with one person standing in froung of everone else thats playing. The goal of the @CAPS2 is to try to get one of the other people to start @CAPS4, and the first one to laugh has to trade places with them to do the same thing. We really dont play that often just @CAPS8 their'se nothing else to do. One night my two nefues and I were just siting around looking for something to do @CAPS8 my little nefue @PERSON2 said ""@CAPS3 play the @CAPS4 @CAPS2"". His older brother @PERSON1 and I didnt really want to play but there was nothing else to do so we bouth said that we would. It started out like it always did nobody really wanted to go first, but @CAPS7 sombody finly maned up and just went. @CAPS7 it got started. After that everbody was @CAPS4 and having a good time. It went on like this for a while, but after about a houre or so it started to get boaring. @PERSON1 and I were strating to get board out of our minds so we were going to ouit, but my little nefue didnt want us to. @PERSON2 went up to take a turn. @CAPS8 @PERSON2 went up for his turn, he started out like he usually did just making stupid faces and funny sounds to try to get people to laugh. We had seen all of his faces and herd all of his noises so it wasnt going to work. @CAPS7 after he realised that we wernt going to laugh he started telling us a story. He started the story out by saying ""@CAPS6 this guy right; he didnt have anything besides his chair and his box. He loved his chair and his box."" The story wasnt very funny yet but he went with it. ""@CAPS7 the guy went to bed because he was tired and all, and @CAPS8 he woke up his stuff was gone. His chair and his box the only two things that he had in this world were gone. So he went looking for his things. He was searching all day and night but he couldnt find anything not his chair, his box, or even a clue of where they could have gone. So he disides to go to bed and maybe they would be back in the morning like maybe it was all a dream; but @CAPS8 he woke up he had turned into a wild boar."" @CAPS8 he said that @PERSON2 started running around acting like a pig. That got us @CAPS4 but he didnt want to stop there he just kept telling his story. In the story it turnd out that everytime the ""guy"" went to bed something strange would change and it just got more and more funny. My family loves to laugh and have others laugh with us. Just like my nefue @PERSON2 he didnt want to stop telling his story because he had us cracking up. Weather were just hanging out and telling a couple of joaks or making up a @CAPS2 we love to laugh. Lauchter has a huge part in my life." 17 18 35 4 4 4 4 3 3 4 4 4 4 4 3 +21113 8 "@CAPS1 do @CAPS2 know were my wax for my skin board is? I yelled to my @CAPS1 as i walked out of my room."I think it is on @CAPS8 book shelve but why do @CAPS2 need it?" my father replied.It's for @PERSON1's birthday present, I don't @CAPS4 any money for him and i promised him something amazing this year so i am going to take him to @PERSON2 @PERSON2 and we are going to ride are canoe down the giant sand dune.why cant @CAPS2 just get money from us or something and then buy him a card at the dollar tree? my @CAPS1 responded to me with a look on his face as if he were saying @CAPS8 the stupidest kid i know.@CAPS2 know i don't take handouts @CAPS1 i would @CAPS4 to work for that money and i don't @CAPS4 enough time to work for it and hangout with @PERSON1 all day, I mean it is his birthday after all and besides this is more fun I said with a mischievous grin on my face.Well alright the canoe is already hooked up to the truck, my @CAPS1 replied.That's fine with me pops, but can @CAPS2 give us a ride out there and back? I asked him trying that puppy dog face my sister always makes to get what she wants.Only if @CAPS2 stop making that weird face at me, do @CAPS2 want to drive? He asked me as we walked out the door to go pick up @PERSON1.Yes please, I said as he flipped me the keys.Pulling into @PERSON1's drive way i shut off the truck and stuffing the keys into my left front pocket i walked into @PERSON1's house. Walking into it i knocked on the wall and two heads turned to look up at me. One my best friend @PERSON3 a sandy short hair boy with a white face and the other was the birthday boy @PERSON1 who much like @PERSON3 had the same hair color but had pink rose cheeks. I thought i would fine @CAPS2 here i said . What's this adventure @CAPS8 taking me on today he asked? @CAPS2 will see soon enough i replied now throw on some shorts and get a crappy pair of shows I will be out in @CAPS8 living room watching the @ORGANIZATION1 win there game when @CAPS8 done. So leaving @PERSON3 and @PERSON1 to change I waited outside @PERSON1's room. Alright, said @PERSON3 we're ready now tell us. Not yet I replied with a mischievous grin on my face. @PERSON1 yelled goodbye to his mom as he closed the door behind us and we headed for the truck were my @CAPS1 was still waiting. So @PERSON1 said to my @CAPS1 as he got into the back seat do @CAPS2 know what @CAPS8 son is going to make us do today? Yes but @CAPS2 will probably want this one to be a surprise. Well why is there a canoe on top of the truck, are @CAPS2 going fishing @PERSON1? @PERSON3 asked as he climbed in next to @PERSON1. HA I wished laughed my pa as I started up his truck. Pulling out of @PERSON1's driveway I headed off towards the bridge and out of town, going straight towards @PERSON2. Turning into @PERSON2 I found a parking spot on the other side of an old car and shut off the truck, I tossed the keys to my @CAPS1 saying I don't think @CAPS2 will want me to @CAPS4 these in my pockets I said to my pa. There was only one other person there a drunk man waving a beer bottle around and sitting on a log. Putting the canoe into the water i tossed each person a paddle and said row to the other bank. As we reached the other bank we all jumped out and i pulled the canoe up onto the sand at the bottom of a massive sand duneWe are going to push this up the dune then wax the bottom and ride down the hill in it i said smiling madly at them bothYour stupid the commented together but were down they sad starting to push the canoe up the hill. As we reached the top we flipped the canoe over and started hurriedly waxed the bottom, then pushed it to a likely spot to slide down and all jumped in we slide forward a little but stoped. Without another word me and @PERSON3 jumped out and pushed with while running then jumping in we flew on down the sand dune and hit the water with a thud snapping the canoe in two as it flipped me out to a log ten yards away as i saw @PERSON3 fly out and hit the water with a cannon ball as @PERSON1 just fell out the side into the shallows. When i emerged i heard the drunk man yell from the other side of the bank."@CAPS2 @CAPS3 @CAPS4 THE @CAPS5 @CAPS6 IN THE @CAPS7 OF @CAPS8 @CAPS9' " 20 16 36 36 5 5 5 5 4 3 3 3 3 4 4 3 4 4 4 4 4 3 +21114 8 " Have you ever been laughing at something that someone said, and then began laughing harder at, not the joke, but at a person whose laugh was almost more humorous than the joke itself? Then were you put into a good mood after the funny laughing occurred, when just before that you could have been in the world's worst mood? Laughter is the cure for almost anything from being in a bad mood to crying because you're sad. It can also help make the mood in the room brighter or simply it makes any awkward moment disappear. One bright @DATE1 day, @PERSON1 called me and asked if I wanted to long board down to @PERSON2's and get some lunch with her. Of course I wanted to because I'm always up for my typical @PERSON2's order of a chocolate malt milkshake and some croutons and ranch. I jogged to her house down the block and we long boarded down to @PERSON2's in downtown @CAPS1. On the way to @PERSON2's I shared with @PERSON1 how I had not had a good day so far and how I needed to be cheered up. She was feeling the same way. When we arrived at @ORGANIZATION1's we were both excited to get seated so we could catch up with each others lives and eat. When we walked inside we noticed how crowded it seemed to be that day as we waited for a table. After getting seated we noticed an older couple sitting in the booth behind us, some kids from our school in the booth front of us, and a man and women across the aisle. @PERSON1 ordered a strawberry milkshake and a burger with fries, and I ordered my usual. After the lady took our order and left, @PERSON1 and I started telling each other the reasons for our bad moods. She was in a bad mood because her friend @PERSON3 was not treating her right. I was in a bad mood because my friend @CAPS2 was mad at me for something that never happened. We were both quite upset and frankly we were in no laughing mood. When all of a sudden we heard what sounded like a mixture of a goose's honking and a donkey's braying. We turned around to find it was a lady's laughter. I looked at @LOCATION1 and she looked at me and we started busting up laughing. This went on for about @NUM1 minutes straight. We both could not believe a sound like that could come out of any human being's mouth and it was probably the loudest laugh I've ever heard. We also loved the fact that all of this is happening at a public place with all these people around, and the lady was just setting herself up for being made fun of. @PERSON1 and I continued to laugh at the lady for how she was laughing and it somehow started to relieve our bad moods. @PERSON1 started smiling a little more and as for me, I couldn't stop smiling and laughing. Laughter has an unusual way of putting people in a good mood or relieving them of their bad moods. Regardless if the laugh is a normal little chuckle or an unnatural sound coming out of someone's mouth, laughter brings people together and it's great way to turn a awkward moment into a memorable moment. Someone once said, ""laughter is the shortest distance between two people,"" and that person knew what they were talking about." 20 19 40 40 4 4 4 4 4 4 4 4 5 5 3 4 4 4 4 4 4 4 +21115 8 " There are many reasons why laughter is an important part of any relationship. In my opinion you can no be serious about everything. Laughing is a way of lettting yourself go and relieve stress. Laughter also helps lighten the mood and make people more comfortable around each other. Laughter can help in many more ways then that. Being serious about everything is not always a good thing. You need to have fun in your life to keep you happy. Being around people that make you laugh is always a good way to put yourself into a good mood. Laughing is a good way to take the pressure off and not be ebarressed. Being able to have a realtionship with people where you can laugh at things when they are funny is always needed. For me i know that being around people who cant laugh things off i always feel like i need to watch what i say. Laughing is one of the best way to just relax. Laughter also helps lighten the mood and make people more comfortable around each other. If i do not feel like i can joke around and laugh with the people that i am with i usually do not feel like i can be myself. Altough if you are not comfortable with the people that you are with to start with then it might be harder for you to joke around with them. Eventually if you let yourself go and laugh you will feel closer to them. Being happy and laughing with people makes a really strong connection between people. Making things into a joke is a way alot of people keep their selfs from getting embarssed. Usually if you do something that other people think is funny and you dont, then if people laugh you might feel uncomfotable. But if you start to laugh with them it takes the pressure off you and they are not longer laughing at you but now with you. In conclusion there are many things that laughing can do for you. It makes it so you dont have to be serious about everything, it takes the pressure off and relieves stress. Laughing is one of the best things that people can do together to make a connection. No matter what laughing can always put someone in a better mood." 17 15 32 4 3 4 4 4 3 3 3 3 3 3 3 +21116 8 " What is one of the most important parts of a relationship? Laughter would be one of the most important part of a relationship in my mind. Such as my relationship with @PERSON1, and @ORGANIZATION1. We are always laughing almost every moment we are together someones is always making a joke. But when we are all together cheering is the funniest for example when our varsity cheer squad went to @LOCATION2. We got locked out of our bus then we got kick out of a @ORGANIZATION2. Last but not lest we had the funniest @CAPS1 @CAPS2 @CAPS3, that night we will never be forgotten. When we first arrived at @LOCATION2 our couch left the keys on the bus after we locked it all up. One of the girls noticed when she went out to get her ipod. We all tried to think of some ways out of this. We first tried to put @PERSON1 through the window. But that unfortunately did not work so well because we could not get any of the windows open. Our couch had to call someone to bring us another set of keys. After the game our cheer squad went to @ORGANIZATION2. Because before the game she promised we could go to get some cookie dough if we were good and didn't complain about having to sit on the stands and cheer. When pulled up to @ORGANIZATION2 @PERSON1 and I ran out of the bus screaming as loud as we could. One of the people who worked at @ORGANIZATION2 said that we could not run in the building. We followed the rules and started doing cartwheels and round offs down the halls instead. We got stopped again and they didn't mean do cartwheels or round offs down the halls either. as we were walking around to find the music box we stumbled onto a baby stroller so we took turns pushing each other in it. Turns out that's not allowed in @ORGANIZATION2 either. We got sent back to our coach. Unfortunate for us we stumbled on to another interesting thing it was a short little dresses on a clothing rack. @PERSON1 and I put them over our cheer uniforms. As @PERSON1 was about to take a picture a girl who worked there came up behind us. @PERSON1 the good friend she is ran off with out telling us. @PERSON1 decides to take the picture instead, after the lady saw what we were doing we got kicked out. The last crazy event of the night was the @CAPS1 @CAPS2 @CAPS3. For thous of you who don't know what that is it is simply when a bus stops at a stop light and everyone besides the driver of course gets out and runs around the bus like crazy people. We were just about to leave @LOCATION1 when the light turns red. I was standing by the door waiting for a light to turn red. i had to beg our couch to let us out as soon as she opened the door I ran out as fast as I could. Sadly the the road was all muddy which caused me to fall straight onto my butt. Two other people were behind me and they helped me up and then we ran around the bus. But the light turned green as soon as I rounded the corner. The people behind us were passing and we were getting honked at and not in the good way either. Honestly no body cared we were having so much fun to even think about the other people. As @CAPS7 another girl from the squad rounded the corner she fell straight onto her face. Then when everyone was back on the bus the light turned red again. we waited on the bus for it to turn green. @CAPS7 and I were covered in mud. Everyone one was taking the mud off of @CAPS7 and I then put it on them self's. But since everybody was rubbing the mud it just got really dry and uncomfortable. In conclusion laughter is an important part of a relationship. With out it our squad wouldn't have half the funny memories we do. That night was just one of the most funniest all of the things that happened that night were just so humorous. Including getting locked out of the bus, getting kicked out of @ORGANIZATION2, and the best of all the @CAPS1 @CAPS2 @CAPS3. That night will never be forgotten by me or any of the other people that were there." 17 20 37 4 3 4 4 4 3 4 4 4 4 4 4 +21118 8 " From birth to young adulthood, kids are raised by their guardians or parents. It is the parent's responsibility to convey to their children good morals, life skills, and to teach them how to cope and thrive in society. @CAPS24 parenting children requires being firm and strictly reinforcing rules. The result of this however, is the child leaves their parents prepared to live their adult lives outside the home.It is safe to say that although I am a still a teenager, I have learned quite a lot about raising kids. My knowledge mostly being based off of stories passed down to me by my parents and grandparents about their life lessons. Being ""in on"" these small, yet significant bits of history is quite enjoyable for me. I'd have to say that although many of the facts about the ""good old days"" are great, it is the almost tangible memories which my family connects with laughter that are the most significant to me. My @CAPS1 grew up in the @DATE1's living in a small yet average sized house with her @CAPS1, @CAPS3, and four brothers and sisters. The main subject which is the focus of the stories my @CAPS1 retells about her childhood come from memories made at the dinner table. It was her @CAPS5's (my @CAPS6's) goal, for his children to learn proper manners and standard etiquette. It was expected of the @PERSON3 children to practice this by being calm, courteous, and mindful of their physical actions when gathered around the table for dinner. For an average, fun, causal, and not so dignified @CAPS7 family, that was a lot to ask. Throughout their childhood my @CAPS1 and her siblings tried their very best to behave and do as they were told at the dinner table. The only common occurrence that was particularly displeasing to my @CAPS6 was when someone spilled their milk. This fateful event happened almost every night. When milk was spilled it was either the cause of a child engaging in funny business, or it was a result of reaching to far to retrieve the butter dish. Whatever the reason, it was somehow hysterically funny when this occurred. The only catch was, that laughing at the table was frowned upon for it seemed to break the formal mood the family strove for during the evening meal. Laughing and spilling milk were two actions not encouraged at the dinner table. Spilling milk did not continue to happen as often as the children grew up, but that is not to say that is discontinued it's presence at the dinner table completely. One night it was not my @CAPS1 nor any of her siblings that spilled their milk. Instead, it was my @CAPS6. When the initial incident occurred, the whole family was in a state of shock. In effort to clean up the mess everyone donated their napkin, while their @CAPS3 maintained a controlled but disgruntled demeanor. When all was cleaned up, the family went on with their meal and on my @CAPS6's face was a subtle yet unmistakable grin. Years later my @CAPS1 (@PERSON4), @PERSON1, @CAPS15 @CAPS16, @PERSON2, and @PERSON2 @CAPS17 grew up, got married, and some even began families of their own. Most of my @CAPS1's family lives in @LOCATION2 so they enjoyed coming up to visit their @CAPS1 and @CAPS3 (my @CAPS21 and @CAPS6) at the holidays or whenever they were able. During these times when the entire family is able to gather here in @LOCATION1, there is hardly ever a somber or serious moment at the dinner table. As my @CAPS3 would say, ""@CAPS24 we laugh so hard that tears run down our legs."" I attribute to the fun we have together to this bond of love that connects us all, and I feel it would not be as prominent without the element of laughter. I feel that my @CAPS6 (who is now in heaven with @CAPS21), accomplished the goal of preparing his children for life. Now that they are all grown up, they can let loose, enjoy each others company, and feel free to bust out in laughter even if there is a risk of someone spilling their milk." 22 26 48 48 5 5 4 5 4 4 6 5 6 5 5 5 6 5 6 5 5 4 +21119 8 " Laughter leads to happiness. Happiness is a key to life. Laughing is a communication click with life, it brings you a warm feeling inside @CAPS1 you laugh. Think about it. For example, @CAPS1 you go on your first date with this wonderful guy that you are so excited but yet nervous because you don't know how he is going to act. You have all these thoughts going through your mind like, will he like what I'm wearing? Will he think I'm beautiful? What do i talk about? and trust me i bet you he is think the exact same things you are. You get to the restaurant and hes a gentlemen, he pulls your chair out for you and comes off sweet as can be. The first thing he dose is make you laugh. Laughing really changes things doesn't it? makes you feel you know comfortable. Now lets take it back. You show up with guy he says, ""hello"" you sit down and he talks about the most boring subjects, doesn't smile talks kinda of quiet, makes you bring up all the subjects to talk about.Witch couple do you think is more likely to go forward? The first example right? laughing lights up everything smiling makes people happy and it feels comforting. laughter and smiles i know falls under the same category i mean @CAPS1 you smile your happy. @CAPS1 you laugh you have to smile and usually @CAPS1 your laughing your happy about something or someone. i love @CAPS1 people make me laugh and smile it makes you feel like everything's going to be ok, @PERSON1 @CAPS1 it's not. people don't realize part of communication is smiling and laughter, they kinda ignore and come as kinda, well ya know boring witch makes a person no fun at all. Everyone has to have some joy in there life, and if not there are people out there that can help. Do you notice gloomy people? People that are sad all the time kind of afraid of life? Maye been through a lot of hard times. Gosh I cant even imagine what some people are going through what some people are going through these days but anyway, smile lightens there heart. Makes them feel just maybe not much but better than they were feeling. just by passing on a face showing that you don't know them but maybe you can feel that there not doing well, or are hurting. I work at a restaurant in my town here in @LOCATION1 as a waitress. I love my job and i enjoy making people smile and laugh, it makes them feel comfortable. This lady walked in my work and it was a late after noon. She we looking around at all the other customers, but it wasn't the people that were sitting with here sisters or brothers even kids. It was the couples she was looking at she looked very unhappy and it seemed to me that she probably was in a divorcee or break up she just looked very sad. knowing myself all i wanted to do was help her even put a smile on her face because i care. I went over to her table and sat down by here, remember i don't even know this lady. I looked at her and said "" you know everything is going to be alright"" and smiled at her. Within seconds her face lit up it was like the whole restaurant had lit up. She put a smile on her face. You know its the little things in life that make everything ok. " 17 16 33 4 4 4 4 3 3 4 3 3 4 3 3 +21120 8 " When I think of laughter, I think back to the wonder years. Although the memories are foggy, i can still recall the times where I believed friendship had no end and that laughter was the common cure to every battle. Thinking back to the @DATE2 I was twelve, I remember @CAPS7 adventures pushing me upward towards the sky. Free spirited and lacking reality, I was an unstoppable soul. I was @CAPS2 alone though. Through adventures and explorations, I brought @CAPS7 trustworthy opponent. Her name was @PERSON1 and she was @CAPS7 best friend. @PERSON1 lived out in the country, where the grass grew tall and the land came in acres. Through forests and streams, you could find our hideaway from the world; We called @CAPS3 our wonderland. Now, the small stream with a bridge is nothing but a forgotten place. On a typical @DATE1 @TIME1 in @DATE3, I drove up to @PERSON2 to @PERSON1's house. Walking in her front door, I automatically smelled fresh cinnamon scones drizzled with honey. The sweet smell sent shivers up @CAPS7 spine. @PERSON1 came down the stairs and greeted me with a hug. She wore her long, dark hair in braids and was wearing a white sundress. Her brown, shimmering skin glittered against the sunlight and her dark brown eyes sent me a happy glare. I envied her with @CAPS7 heart and soul. Next to her, i was just the simple, blond girl with a blotchy skin tone. In one moment, she fled to the window and looked out at the perfect, blue ski. ""@CAPS1 wow, finally @DATE2 has come along,"" she whispered and then exploded,"" @CAPS2 another day spent with grumpy, sleepless peers and no more stuffy classrooms or annoying teachers. @CAPS6.. its the first day of many!"" We burst into laughter as I made fun of her poetic outburst, but we both new every word of @CAPS3 was true. Sighing, I looked at her breathtaking, dress one last time and ran out to the field in her backyard. @PERSON1 grabbed a red cardigan and followed me, holding a basket in her hand as if she were little red riding hood. I frolicked through the meadow like I was a radiant fox chasing after its pray. When I stopped for breath, i encountered the wind blowing the tall, wispy grass in rhythmic motions around me. Racing towards our secret place, I looked back only once to to find @PERSON1. As I turned towards @CAPS7 destination again, a branch met @CAPS7 vision and knocked me down painfully. Blood trickled down @CAPS7 chin and left crimson droplets of blood in the green grass. I breathed in, choking on the salty fluid and then realized she was standing there. Like a worried hare, @PERSON1 sprang to @CAPS7 side and helped me to the house. We made our way into the upstairs bathroom. Standing at her bathroom sink, I wept small tears. In the mirror I could see a belligerent looking girl with a bloody slash across her chin and red, misted eyes. The pain was @CAPS2 @CAPS4 made me cry; @CAPS3 was @CAPS7 appearance that had me down. People would asked for days ""@CAPS4 is on your face"" and ""@CAPS5! How did that @NUM1 came to @CAPS7 side and squeaked, ""@CAPS6, how are you?""@CAPS7 face turned to a bright shade of red in a way that I might explode. I turned to @PERSON1 and in one fluid breath I burst out, ""@CAPS8! Wonderful! Ecstatic! Before this, I had a boring, simple look going. Now, I will look even worse with this terrible blemish! I hate how gorgeous you are @PERSON1. You are exotic, distinguished and everything about you seems extremely, perfect!""@CAPS7 friend just stood there and took in every word. A confused look came across her face but slowly turned to a crooked grin. Suddenly, @PERSON1 burst out into laughter. Embarrassed, I walked to the door wanting to leave that very second, but she grew silent and look hold of @CAPS7 arm. Shaking her off, I continued down the stairs. ""@CAPS10,"" she called out to me, "" I'm @CAPS2 agreeing with you in anyway. @CAPS6, you @MONTH1 have a small cut across your chin, but you have always been beautiful and I feel like a simple, field mouse next to you. The way your blond, thin hair becomes perfect ringlets and the way your freckles highlight your amazing, turquoise eyes. I have always been jealous of you! That's why I'm laughing!"" I took this in for a second and then erupted into laughter. Racing up the stairs, I came to her with a big, bear hug and laughed some more. Everything I had ever thought about her beauty and mine, wasn't at all relevant. Having thought this, the pain of @CAPS7 cut became apparent to me. Lee, her dad, fixed me up with his sewing skills and each stitch, I laughed along with @PERSON1 to get through the pain. Seven stitches and a nasty scar, remind me everyday that laughter gets you through the worst while @CAPS3 builds an everlasting, friendship. " 25 25 50 5 5 5 5 5 5 5 5 5 5 5 5 +21122 8 " The wind rose and fell, whipping against the side of the house with full force. My mom said she had never seen such a fierce storm before in her life. It shook the house making it creak in odd places, like the floor boards. My @CAPS2 @PERSON1 sat at the kitchen table contemplating, worrying. They had rental houses acres off that were surrounded by trees, the ground was so soft ,so saturated by the rain and flooding that had taken over the valley. There were already hundreds of trees that had come uprooted there were bound to be more. The little homesteads that rested off of @LOCATION1 @CAPS1 including my papa's were well built weathered farm houses,most were surrounded by hundreds and hundreds of acres of land. You would be surprised to find someone out there with less then @NUM1 acres of land. It's wheat fields mostly, but you can easily find fields of corn, alfalfa, you'll find rows and rows of blueberries so big only @NUM2 can fit on the palm or your hand. It is literally paradise on earth, a small piece of heaven that was thrown down to earth by either accident or purposely. The sun is so bright and the sky is the clearest, most crisp blue. When weather rolls in giant fluffy clouds make the sky look like it's dappled with giant pieces of cotton. All this stretches over land so flat you wonder if it could possibly be real. I have spent so many wonderful , laughter filled summers there. Running bare foot through the fields, playing in the large expansion of lush, green grass. Feeding the goats, chickens, and pigs with my siblings. On @DATE1 my mom said she had never seen a place so beautiful turn so ugly in such a short period of time. My mom says if she had known what was going to happen that day she never would have let them get in that car. My papa, @CAPS2, and @CAPS3 @PERSON2 pulled out of the driveway. Since it was a small car my @CAPS2 volunteered to ride in the back. The storm had been showing it's vicious temper for over two hours, and it showed no signs of letting up. They had set out to see what damage had been done on their acres of land, to see what needed fixing once this storm moved on over the mountains. There is no explanation, no one understood why my @CAPS3 walked away with not even a scratch on his body. No one knows how the tree fell or why it only landed on the back end of the car, but it did. Gods hand had swept down and caused destruction. My @CAPS2 was killed instantly, my papa was seriously injured but alive. He spent weeks in the hospital, during those weeks the news of the accident spread like wildfire as news does in a small town. Everyone loved my @CAPS2, she was social butterfly that fluttered from person to person , laughing, talking , sharing tears, and joy. She knew everybody, and everybody knew her. The heavens cried and howled that day, rain drops fell so heavily it felt as if the whole world was crying, crying just for you just to share your grief. It's painful, to lose someone so dear to your heart. My papa cried, he sobbed until he had no strength left to feel any emotion at all. he loved her so much, he needed her . Lightning struck the giant oak that stood tall and proud in my papa's backyard that day. It was the same tree that held my grandparents initials. The lightning split the top of the giant oak clean in two. Everyone saw it as a symbol, sign of how my papa and @CAPS2 had been struck apart quickly and forcefully. But, days before my papa returned home from the hospital, my dad climbed that giant oak and chained the severed part back together. With that my dad had made a symbol of his own, saying you will always be together just not physically, but you will never be truly apart. The day my papa returned home he saw the giant oak, and for the first time in weeks a glimmer of understanding shone in his eyes. A small amount of hope had settled over everything once again. Her funeral was a nice affair, elegant, simple, beautiful, just like her. The whole town came, they reminisced for hours, telling stories about my @CAPS2 and her crazy yet lovable nature. Then from across the room it came. Small at first then growing ever louder. Laughter. A smile, yes there were tears with that laughter, but it was laughter all the same I've never seen the saying "" laughter is the best medicine"" put to justice better. My @CAPS2 was one person who saw laughter, love, faith and hope as necessities in life. She brought joy to so many people, and now they were returning the favor." 25 21 46 5 5 5 5 5 5 5 4 5 5 4 4 +21123 8 " When we were little it was watching @CAPS1. In junior high, it was seeing a kid squirt milk out through his nose. But now as we approach our high school years, we stifle giggles, suppress outbursts, and laugh until we cry, for our own reasons; and we can't hold back the inevitable urge to laugh. Some say laughing is the best medicine, unfortunately for my sister an I, this was not the case; laughing just got us in more trouble. No matter how many times we were lectured, someone always found their way back into the other one's room purely because we were nosy. I remember back a few summers ago, I'd seen @PERSON1, my sister, putting a bag of chocolate under her mattress. There was a possibility it was gone, but I had no doubt in my mind that it was still there. But as the mattress was lifted up and as I was beginning to reach for it, the bed was shoved back down, very nearly smashing my fingers. there stood @PERSON1 with a vindictive look in her eyes and two hands placed on her hips. What could I say? What could I do? A shill scream escaped my lips and I bolted for door before she could unleash her wrath upon me. Up the stairs, around the couch, through the kitchen I ran; but not fast enough. Before I could lock myself in the bathroom, she caught my ponytail and yanked, hard. I was in for a nine year old, hair pulling, all-@CAPS2 beating. But lucky me, no more harm could be done because my @CAPS4 had heard my scream and had come to investigate. Fighting was taboo in our house, but that never stopped us. @CAPS4's punishments were minuscule, we could hug and make up, or stand in the corner. The anger in @LOCATION1's eyes was already gone, and a certain, significant smile played across her lips. @CAPS4 was still trying to play the strict parent, but to us, the passed four minutes were just a joke now. ""@CAPS3,""she had said, one word, one meaning, that's all it took. We exploded in a roar of giggles and laughter. Although there was no way @CAPS4 could have known this, we meant no disrespect, but be couldn't keep silent. Boisterous laughs rang through the hallway, so loud, @CAPS4's words were inaudible. Grabbing our hands and pulling us towards the living room we were half dragged because we were shaking to hard. Ten feet apart we stood, eyes focused on the ninety degree angle in front of our noses. But one look at each other and sent another tremor of giggles through our little bodies. We could have been inebriated if you didn't now any better, but really we were just two rambunctious kids playing around. We all have our reasons to laugh. Maybe your reason is as simple as reading an e-mail that made laugh so hard you cried. Maybe it is because my amateur writing style is a joke to you, or maybe you too have just witnessed a child's nose spew chocolate milk. We all have things in our life that make us want to roll on the floor, or slap our knees; but from my experience it's excruciatingly hard to hold back, so let it out." 20 23 43 4 4 4 4 4 4 5 5 5 5 5 4 +21126 8 "When my friend @PERSON2 and I went to go hang out with our friends from @LOCATION1. We knew how would get there but we didn't know how we were going to get back, but knowing us we didn't care we just wanted to have fun. we had lot's of fun hanging out but then it started getting dark we needed a ride back home. Later on I decited to call my dad to see if he would come and get us. Knowing my dad he thought it was really funny that my friend and I were stuck in @LOCATION1, so he started laughing. After he was still laughing I asked so can you come get us cause its getting ready dark and he said no, cause it's not his fault that I was stuck there. So @PERSON2 said ""why don't I call my dad to see if he would"" and so she did but just like my dad he also started laughing and said no. Later on @PERSON2 and I ran out of people who to call. So we said to each other why don't we worry about his later it's really not that dark and we can all still hang out for a while longer. After i thought that throw I knew we should start worry about because later on it well get even more darker then it already is and then we diffidently wont have a ride home. So I told @PERSON2 that we should keep on trying people while we hang out with our friends more, but she didn't care so much. I made a call to my sister @PERSON1 to see if she would do me the favor of picking us up from @LOCATION1. I called and call her but she wouldn't pick up her phone. An hour past and we still couldn't think of someone, but then I thought to my self maybe my other sister @CAPS1 she always does favors for me, I called her and I asked her if she could and she said yes ill be there in @NUM1 minuets to pick you guys up. So I went to go tell @PERSON2 the great news that I got us a ride home and we don't have to worry about it anymore. When I went back to the park she wasn't there any more I thought she went to the bathroom, so I went to checked the bathroom for her but she was not there also. I thought to my self where could she of gone. I started to get really worried about were she went so I walked around and looked for her. So I looked at my clock and saw that my sister was going to be here in ten minuet, before I realized she was at the store getting food and she didn't tell me. I got really mad at her for not telling me where she went, but I thought to myself it didn't matter so why was I going to make a big deal about it and then I heard someone beep and it was my sister @CAPS1 I got really happy to see her cause all I thought of is going home and sleeping all night and all day. We got in the car and my sister asked why didn't I call my dad for a ride? I told her I did but he didn't want to pick me up because if I could get here then why couldn't get back home. She started laughing at me and thought it was the most funniest thing my dad has ever done. After we dropped of my friend @PERSON2, we went out to eat to burger king and got two salads to go. When I got home my dad asked who brought me and I told him my sister went and got me and took me out to eat. After being stuck in @LOCATION1 so long and not having a way to get I just went to my room and went to bed because it was a very long day for me and my pore little feet. The next morning I didn't wake up until @NUM2 in the @TIME1. My dad thought i need to wake up already so he went it my room and woke me up and told me i need to eat and get fresh air. I woke up and took a shower and eat some food and took a very short walk because my feet were still hurting from yesterday. when I went on my walk I was thinking about how I shouldn't of just gone to @LOCATION1 with out making sure I had a ride back home, but I was very thankful for my sister going out of her way to pick me up and not get mad or even yelled at me. when I got back home I called my sister and told her that I was really thankful for her going to go get me and my friend and even taking me out to eat." 12 15 27 3 3 4 3 2 2 3 3 3 3 3 3 +21127 8 "It was a normal sunny day in the country hill's of @ORGANIZATION1. The sun was out and shineing on the creek that me, my twin brother and my best friend were swimming in. The creek was fantastic. It was a deep swimming hole that all the neighborhood kids would swim in. Since all the other kids were either too old and busy to swim, or they were too young it was just us three that swam in the creek that @DATE1. We loved it. It helped cool us down during the heat of the day. We would play games like @PERSON1, and tag in the water. There was even a rope swing off the little brigde that one of the older kids made. The swimming hole was the place to be that @DATE1. Eventually we got hungry and tired of swimming in the hole for a while. There was this trail we would use to walk back to my house. The trail was the fastest way to get home. From the trail you could see farm animals grazing in the sun filled fields. The day we walked this trail was a little different then normall. All the farm animals were making noise. One of the farm hands was walking the trail listening for a bell. He said one of his goats had gotten out. He warned us that the goat was alittle mean and if we saw it to keep our distance. So we took the warning and walked on. Once we reached the gravel road that lead to my house, @PERSON2 said she heard the bell. My brother and I didnt believe her at all. We thought she was playing another joke on us. We walked on for about @NUM1 seconds. All of the sudden @PERSON2 screamed run! My brother and i turned around and saw the white goat with big horns chasing us! We ran as fast as we could. I tripped over my feet and fell. I got up as fast i could and sprinted faster. I could tell my adrenaline was up because I was running really fast and i wasn't getting tired. We reached the hotwire fence that surround my house. We all stopped and questioned if we could jump over it or not. The goat was getting closer and closer, we didn't have much time to deside weather we could or not. My brother was the first to jump. Of course he made it and soo did @ORGANIZATION2. I was the last one. I started to panic in my head. I backed up alittle and ran and jumped over the fence. I thought i was gonna make it but then my foot caught the fence and i flung over the fence and face planted it. It was super embbarrasing. My friend and brother were both laughing histarically at me. I could tell my face was beat red and i was mad that i fell. Again. Although i still found myself laughing. The goat had stopped at the fence and started to charge it with his horns. That made me jump and run. I dived over a row boat were my brother and friend was and I said oh my lanta that was the funniest most scareiest thing i had experianced all @DATE1. We walked up to the house laughing and talking about eachothers faces as we where running and how funny it was that i face planted it. They made fun of the face i made when the goat started to charge the fence. Even though i was embarrased that i tripped over the fence, I still found my self laughing and making fun of myself for what had happened. I would have to say that was the best day all @DATE1. We got up to my house and went into the kitchen to find my mom laughing so hard that she was crieing. We all asked her what was soo funny and she said she saw the whole thing from the window. We all started laughing to point we all cried. We all told the story the story to our parents when they all came over for dinner and they laughed and laughed. All of our cheeks hurt by the end of @TIME1. Laughing is great. It mends the soul. Plus its a great ab work out!!!!" 17 18 35 4 3 4 4 4 3 4 4 5 4 4 3 +21129 8 " Laughter In A Relationship The most important thing in a relationship is laughter. Laughter is something we all need and it keeps us going with the world and the duties we do all day because we get frustrated a lot of times. So one thing that helps us is laughter. If someone is upset the person might watched a comedy movie or read a comic about funny or humorous characters. But many people like talking to someone when they are upset and need a uplift from them. When I was once upset regarding my school work and about not having a job. I went out for a walk after an argument with my work mother. About my grades being dropped. My mom got quite angry and my dad was also very upset with me because they knew I was much more capable than I showed in my grades. My parents knew I wanted to do a job to buy things what I wanted. They didn't think it appropriate to linger around about having a job so much and not care about my grades.When I was walking along the lake side I heard someone playing a guitar and he played it so beautifully that I wanted to meet that person instantly. I tried to find him but I couldn't and at last I just set down and wondered who that person might be. So suddenly a boy came to me with a guitar and asked me what time is it. I told him the time and asked him where he learn t to play guitar such beautifully. So he told me that he is interested in playing guitar for a long time and he wants to join a band.We both shared our feeling and we couldn't even understand that the things we never told anyone else we were telling each other @CAPS1 after that meeting we came close friends and we met everyday. He knew I was quite tensed so he used to play guitar for me and we sang songs together. He also told me jokes and I knew he was doing all this just for me and I sometimes just kept quite and didn't respond to his jokes. He got more tensed that I was not laughing or smiling. But I didn't realize that by doing this I was really making him hurt.But he never lost hope in me and he kept on telling me funny stories and we talked over the phone whole night just so that he could make my tensions a bit less and make me laugh. So one day he took me out for lunch at @ORGANIZATION1's because he knew it was my favorite place and I loved going their. He took me to a comedy movie on superheroes but neither of them were making me laugh. All the time I was just in his arms. But after the movies he took me to the most beautiful place and it was near a beach and the whole place was decorated by colorful lights and we were sitting down on a swing and talking. Now he knew how he could make me happy and he told me jokes and we read comic books and surprisingly I started loving his jokes and the comics we read. Whenever I would meet him he would do something special for me and made me laugh. He once got dressed down as clown and tried to juggle balls but he couldn't do it so well and i laughed at him so badly. I know it was being rude to laugh at him but I loved spending time with him. One day he came to my home and we were talking and he held my hands and proposed me. I was really happy to hear that and he brought me the most beautiful ring ever. He proposed me and took me out for a drive and gave me some advice in a very respectfully manner, not in a intention that he is putting me down. But I had never seen a person like him and he he told me that laughing and smiling is good for life. N o matter what happens tomorrow why should we care about it today when we have such a beautiful life waiting for us. We must live the way we want and not force our selves to change just to get serious in life. He held my hand and took me his arms and said @CAPS2 matter how much we love each other but laughter is important in a relationship I looked at him and asked him why'd? So he replied we'd must be happy and to be healthy and to be with each other. After we had some time there he dropped me home and told me live life because who knows if we will be alive tomorrow. From that moment I realized that he was right and I looked at life from a different perspective from that day and decided to live life in a better way so that I laugh and enjoy." 19 17 36 4 4 4 3 3 4 4 4 4 4 3 3 +21130 8 " I used to love hermit crabs. The cute little creatures who hid in their shells fascinated me. When I was about six my family decided to take a road trip along a @CAPS1 coastline. We were accompanied by another family with four kids. Put together there were @NUM1 kids for me to play with, but the closest one to my age was @PERSON1. He was only a couple years older than me. I adored @PERSON1. We explored, swam, giggled, and played tricks on our siblings together. Everything he did, I did. We went to so many different beaches I can't remember half of them, but one in particular stood out. It was a short and slender beach. On one side there was a cave. The cave was loaded with hermit crabs. Never in my life have I seen so many of them. There were mini hermit crabs, great big hermit crabs, and even bigger hermit crabs! It was as if our dreams had come true. @PERSON1 and I created sand castles, prisons, and water channels to keep the hermit crabs contained. Our older siblings weren't interested in them at all. That was alright though, in our eyes it only meant more for us! When it was time to leave, @PERSON1 and I were devastated. We both knew that we wouldn't just come across another beach like this is the future. It finally hit us that we wouldn't be able to keep our beloved crabs. We stayed down on the beach near the cave for hours just saying our ""good byes"". When my mom eventually yelled across the beach saying that it was time to go, we both had made a quick decision. I had watched girls stuff shells into there bathing suits before. I thought why not? @PERSON1 liked the idea, so we silently slid two hermit into our swim trunks. His crab in the pocket of his shorts, mine in my one piece swim suit. It sagged at the bottom, but I decided to ignore it and pretend like nothing was wrong. Guilt weighted down my scrawny little body, like I had stuck a ten pound rock in my suit, not a tiny little crab. My mom had asked me directly if I had left all the hermit crabs on the beach. I nodded, but my voice was absent. Back on the road my sister and I played word games. Everything was fine, the music playing, my parents talking. and our wheels rolling down the narrow dirt road.Every once in a while I would have to move a little because I could feel my little hermit crab checking out his surroundings. We had been driving for about an hour when I let out a blood curdling scream. As my dad slammed on the brakes dust swirled around the car like a hurricane. I remember my mom swiveling in her seat to look at me and ask what was wrong. I didn't answer. As the pincers grabbed on again, I let out another urgent scream. I then decided it was time to quit hiding my little friend in the bottom of my swimsuit. Letting out the last prolonged scream I pointed down to my crotch. My sister's urgent hands pulled my swimsuit off and quickly found the little devil. I was so embarrassed and guilty that my mom just laughed. She said that I had already gotten my punishment for lying, and that she thought I had learned my lesson. I sure wasn't going to disagree on that. A few minutes later, our friends pulled over too. When we asked if everything was okay, they said while laughing, that one of the girls had gotten pinched by @PERSON1's hermit crab. That sent all of us laughing. We never stopped laughing about that story. My family loves to humiliate me in front of friends, guys that I like, or adults that I don't even know. Every time my mother says that that crab grabbed right onto ""where it counts"" we all bust out laughing. And every time I turn tomato red in embarrassment, but I guess I deserve it. @PERSON1 and I both learned our lessons, although I think I learned a few extra lessons. First of all, never put and animal near your ""sensitive"" parts. The second lesson was don't lie, because eventually you will most likely be be caught and punished. The last lesson would have to be to learn how to enjoy something when you have it and when it is time to let it go, let whatever it is let it go, and be grateful for the time you got to enjoy it. If I would have been able to just say good bye to my shelled friends, I would have never lied or felt so much pain. They were all great lessons to learn, and I am very grateful for them. Not only because I became a little wiser, but also because I have a great story to tell that always sends people up in laughter." 25 20 45 5 5 5 5 5 5 4 4 4 4 4 4 +21131 8 " Laughter is huge part of life. Or so that is what I believe and grew up with. ""A day without laughing is a waste of a day."" @CAPS1 quote has greatly influenced my life. As well as the people in my life. My mother is quite the entertainer. People have told her that she should become a comedian. Apparently our family stories are very amusing. Mostly because they involve my brother in some way or another. He's adventurous, spontaneous, and is not afraid of anything. Sometimes his decisions are not the smartest. A majority of the stories my mom talks about are from when my brother was little. She loves to talk about one in particular. When my brother was younger he liked to take part in adrenaline based activities. Like extreme rollerblading, biking, and skateboarding. He would try to do every trick in the book and then some. @CAPS1 story, however, does not include him getting hurt or someone else getting hurt. Which is surprising because it seemed like every day he would injure himself or his best friend @CAPS2. When I was about eight or nine, putting my brother at age eleven or twelve, we were at one of my soccer games. My brother had to use the bathroom and when he came back, my mom was not pleased. He went to use the port-o-potty and he had just gotten two new shirts; a white t-shirt to go under a new button-up. It was a hot afternoon, so he took off his new white t-shirt but kept on the button-up. Unfortunately, he dropped the white shirt. He dropped it into the rancid, disgusting excrement. If @CAPS4 ask him, it was all an accident and my mom was not happy about it. My mom is the person in the family who thoroughly enjoys laughter. I think about her words of wisdom all the time, ""@CAPS3 when it seems like nothing can get better, think of the positives in your life and laugh. Because really, that's all @CAPS4 can do. If @CAPS4 embarrass yourself in front of a lot of people @CAPS4 need to laugh it off. If @CAPS4 can laugh about it, it won't matter if anyone else does."" @CAPS4 need to get through life somehow. Might as well make it the best, and laughter is truly the best. It makes my mood better, and makes me feel welcome and at home. There are many stories about what my brother did, or how blond I am. But ultimately, all that matters is that we can laugh about something every day. It brings us closer. ""A day without laughing is a waste of a day."" " 20 15 35 4 4 4 4 4 4 3 3 3 3 3 3 +21132 8 " Laughter is what connects me @PERSON1 my friends. It's a very important aspect in any kind of relatioship. I know that almost all the memories I have are of my friends making me laugh, @PERSON1 we have been friends for a very long time. One of my favorite funny memories is the time me @PERSON1 two of my friends went to @LOCATION1 @PERSON1 stopped at @ORGANIZATION2 @ORGANIZATION2... We sort of had a hard time getting out. Me @PERSON1 my friends, @PERSON1, went to @LOCATION1 to do a cultural performance at @ORGANIZATION1. When we were done we started heading back home. @PERSON1 kept complaining about needing to use a restroom. Her dad told her to wait until we got to @LOCATION2 so we could stop somewhere. @PERSON1 @PERSON1 I suggested @ORGANIZATION2. By the time we got to @ORGANIZATION2 was doint the potty dance. @PERSON1 @PERSON1 I got in line to order ice cream cones dipped in chocolate. While we were waiting @PERSON1 was searching for the restroom. After approximately four minutes of searching, @PERSON1 finally asked the lady working behind the counter where the bathroom was. She handed @PERSON1 a key with a large bulky wreath attached to it @PERSON1 told her it was outside behind the building. @PERSON1 took the key @PERSON1 sprinted to what appeared to be double dorrs. Little did @PERSON1 know that only the left door opens. She ran straight into the right door @PERSON1 fell over. we all started cracking up laughing... Especially @PERSON1. She laughed so hard that she didn't quite make it to the restroom. Instead she had an ""accident"" on the floor in @ORGANIZATION2 @ORGANIZATION2. When you can laugh with your friends about things that might not seem funny to other people, such as, wetting yourself in public, it only makes your friendship stronger. Laughing is a huge important benefit in any kind of relationship. It strengthens the relationships you already have @PERSON1 it helps build new ones also." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21133 8 " My @CAPS1 @CAPS2 was a warm, @DATE1 @TIME1 in @LOCATION3, @LOCATION1. The stars were out and there wasn't a cloud to be seen. As usual on the weekends, most of the family was over; as well as some friends. I was just a little girl who loved everyone and everything, especially laughing. Anyone could make me laugh, smile and have a good time. One person, however, could make me laugh for hours straight. That person was my @CAPS1. My @CAPS1, @PERSON1, came over to hang out with the rest of the family and friends that were at my house. He was talking, laughing, and having a really good time. Of course, I was only about five or six years old at the time; but to me, aside from my dad, my @CAPS1 was the coolest person in the world. That @TIME1, I was playing with my friends and not really paying attention to all of the adults. All of a sudden, my @CAPS1 came up to me, gave me a big hug and started to talk to me. I was so happy. Since I loved to joke around and laugh, I was thrilled to have all the attention. I used to call them laugh attacks. Anytime my @CAPS1 talked to me, I started laughing and I would laugh so hard that I couldn't stop. That @TIME1, I had one of them. My @CAPS1 and I were joking around and making fun of each other. Then, out of nowhere, I realized that I was laughing so hard that my stomach hurt. @CAPS2 went on for about an hour straight. That was long after my @CAPS1 left and went back to the adults. My friend, @LOCATION2, sat next to me and tried to get me to stop laughing. She was laughing too, but not as much as me. Finally, after a long hour or so, I got myself to calm down. The rest of the @TIME1 was great but every so often, I started to laugh again. There was absolutely no way that I was going to stop giggling until I went to bed. After a long @TIME1 of having a good time, everyone left and went home. When my @CAPS1 came to say goodbye to me, I was upset that he was leaving, but I knew that I would see him again. The next day, I was right about being able to stop laughing. I still smiled and hung out with my family, but I wasn't laughing uncontrollably. My @CAPS1 was and still is a huge part of my life. He is always the person that can make me laugh and forget about all of my worries. Even though I don't live near him anymore, I can still talk to him on the phone and laugh and joke around with him. When I go visit him down in @LOCATION1, @CAPS2 seems like we just pick things up where they left off. We don't even think about the fact that we haven't seen each other in a really long time. When my dad passed away, my @CAPS1 was always there for me. He is the one male figure that I still have in my life. After everything that I've gone through, I could always count on him to brighten the mood and make me laugh, or at least smile. People really do need a person like my @CAPS1 in their lives. @CAPS2 really does help to know that you have someone that loves you and can brighten your day. All you have to do is talk to him. My relationship with my @CAPS1 is very close, and the one thing that kept @CAPS2 that way is all of the laughs that we have shared through the years. Laughter is a huge part of anyone's life. I have grown up around laughter and the thought of always being happy. Throughout my life, I have had to deal with pain, loss, and sadness. However, after everything that I have come through, I can always come out laughing. When I was eleven years old, my dad passed away. At an even younger age, my parents got divorced. No matter how much those things hurt me, I never stopped laughing and moving on with my life." 20 15 35 4 4 4 4 4 4 3 3 4 4 3 3 +21134 8 " laughter @CAPS1 funny, normally when i fall of line, for some reason @CAPS1 humorous to me. I'm laughing in my head the hole way down down a rapid.I've taken plenty of beat downs whale I have been kayaking, @CAPS2 i think that my day running the upper stretch of the white salmon might have been my worst beat down yet. I like to call that day the @CAPS5 beat down. @CAPS4 was a very nice day and I felt like @CAPS4 would just be a normal day on the upper white salmon, @CAPS2 oh I was wrong. The bad news started as soon as @PERSON3, @PERSON2 and I parked the car. @PERSON3 had brought the wrong size spray skirt for his creek boat. I had no doubt that we could conquer this problem. the spray skirt ended up barely fitting, @CAPS4 took the strength of all three of us to get @CAPS4 on. After a long hike through an empty creek bed we found our selves at the put in. This is a fairly simple put in, you start off with finding a faltish spot on a @NUM1 foot rock slide. after you find your spot, you simply slide down the rock and of a seven foot drop into water. Unfortunately @CAPS4 wasn't that simple for me, I slid down the rock and of the drop perfectly fine @CAPS2 little did I know I didn't put my spray skirt on all the way so when I dropped into the water about a gallon or so rushed into my boat. I didn't think much about @CAPS4 because @CAPS4 was just a gallon. I actually thought @CAPS4 was kinda funny and that put a good feeling in my gut because that day I was paddling a big boat for my size so I thought @CAPS4 would help my weight distribution a little bit. There for I didn't empty out my boat and we just started paddling down stream. The first few rapids were no big deal I poked through all the holes there were and I felt like I was doing realitavly good because @CAPS4 had been a while scene I had paddled this stretch. We were about half way through our run when I was starting to realize the magnitude of how gnarly this river was, I was rolling in every rapid I possibly could and laughing my face of every time, @CAPS2 I couldn't quit, there was no way out of this canyon, we had at least @DATE1 foot walls on either side of us, the only way out was down stream! We were nearing the end of our trip and we had @CAPS2 only one more big drop still left to conquer. @CAPS5 falls, a @NUM2 foot drop (depends on who you ask) of pure white water. this drop isn't like any ordanry waterfall in fact this drop isn't really anything like a waterfall, sure you definitely will feel the free fall @CAPS2 the water hydrolics are nothing like a waterfall. What happens on this drop is the canyon gets narrow and when all that water goes over a ledg @CAPS4 creates a hole at the bottom. @CAPS4 is also legged out at the bottom so there's tons of water boiling back up stream, so ounce your stuck in that hole @CAPS1 like trying to paddle up hill and there's basically no way to paddle out of this hole. you just have to hope for the best, hold your breath and stay calm. We were neering @CAPS5 falls and there's only @NUM3 eddies you can catch before the falls so you can scout @CAPS4. Funny enough when I was trying to make the second @PERSON1 my boat got bumped out by @PERSON3's boat and that little bump ended up flipping me upside down and spinning me backwards, at this point there wasn't much I could do about the next few minutes of my life. So I plunged over the falls, I was mixed up in a huge whitewater mess for about a minute and a half, only having brief moments where I could possibly catch a breath of air. I toughed through @CAPS4 and didn't pull my spray skirt because i didn't want to drink from the shoe(don't ask) and because of if I ended up ejecting from my boat there's no way to know what would happen to me in this monster. I powered through @CAPS4, what was only a short minute seemed like a lifetime to me. I ended up getting flushed out down stream and rolling up perfectly unharmed. when I rolled up, I had the biggest smile on my face and my heart was racing. I don't think I would have made @CAPS4 if I didn't have a good attitude coming into this day and having the need to laugh in my head when I messed up. All in all laughing saved my life! " 16 18 34 4 3 3 3 3 3 4 4 3 4 4 3 +21135 8 " I have always tried to be a happy person, and over time I have learned that laughter is a key component to my happiness. I have succeeded in being a happy girl most of my life. Even as a baby, I hardly ever cried; I was always laughing and giggling. As I have grown up, I have tried to keep up my happy-go-lucky spirits. Sometimes this was not the case, but that is simply reality. There have been many times in my life where laughter was all that surrounded me. I rely on laughter to keep me close with my friends, and so far, this trust has always came through, and it has worked for me. I often find myself remembering that laughter and happiness is really what life is all about. When I was first born, I didn't cry. I never cried very much as a baby. My mom reminds me of this whenever I ask her about my baby years. As a young kid, I wanted to be a part of everything that surrounded me! I was always looking for laughter and exciting events; I didn't want to miss a beat! My mom would have to take drives just so I could take a nap, and even then, I would hardly ever fell asleep. For if I did, @CAPS1 forbid, I might miss a moment of laughter! If someone else was laughing, I was laughing with them. Sometimes, I had no idea what was going on, or I wondered why what they had said was so funny, but I loved the feeling laughing with other people. I am always reminded of my happy toddler years whenever I look at my baby pictures. I don't have one of those pictures where I am bawling my eyes out, like you might find in most kid's baby pictures. In every baby picture of me, I'm laughing. If I'm not laughing, then there is a wide smile spread from ear to ear! Laughter is what kept me a happy baby! As a preteen, I was still the girl who you would always see laughing and smiling. I sometimes wondered what it felt like to cry because I had never felt that type of feeling before. I was always so caught up in laughter that I never had time to think about the negative. Now, I unfortunately know the feeling of sadness and being upset, and I try incredibly hard to go back to when I didn't know these feelings. Whenever I'm feeling down, I attempt to find laughter in each thing I do. When I attempt this, I can always find laughter, and my spirits are brought back up. My friends are always a place I can go to for a pick me up. Especially @PERSON1, who is my best friend. Every time I am with her, I find myself laughing for one reason or another. @PERSON1 and I have not had the steadiest friendship, but what always brings us close again is laughter. Our fights always end when we find common ground in something funny. Usually, she is the one who finds this, and she makes me laugh. Laughter is what has kept @LOCATION1 and I so close for the past few years. If laughter didn't exist, I can assure you that we would be anything but friends right now! Not long ago, I was in the car with three of my closest friends: @LOCATION1, @CAPS2, and @PERSON2. We were all laughing and singing as loud as we could to one of our favorite songs. I looked over to my friends and saw all of their smiling faces, and I found myself smiling too. I realized then, that laughter is truly what life is all about. Laughter is what has kept me close to all of my peers throughout my life. When I was little, I was gravitated towards those who I had the most fun with, and who I laughed with the most. As I've grown older, that same thinking is still there; I want to be with the people that make me laugh. The older I have gotten, the more I've learned about what I need in a friend. My main criteria is someone who can make me laugh. If I'm with someone with a dry sense of humor, and who doesn't talk at all, then I am going to go find someone who is laughable and hilarious! Laughter is something that I am extremely thankful for. It has been the key to making me happy for all fifteen years of my life! From when I was a baby, up until now, laughter is what always has been, and what always will be, what my life is all about!" 17 23 40 40 3 4 4 4 4 3 4 4 5 5 5 5 4 4 4 4 4 4 +21136 8 " A moment that laughter made everything better was when I was with my cousin @CAPS1, in @LOCATION1. He is going off to the @CAPS2 pretty soon, so spending time together was the main goal. @CAPS1 and I have a a close bond, we talk as much as we can through the phone. This trip meant a lot to both @CAPS1 and I, we don't know how long it's going to be until we see each other again. Every laughter, and smile was something that we will always remember. My parents and I went to @LOCATION1 for @CAPS4. In @LOCATION1 I met up with my cousins, since my parents seemed to be busy all the time. Of course when there is a group of teenagers, well it's going to be loud. I remember- on our @DATE1 in @LOCATION1- my cousins and I got lost in the town we stayed. Now let me say in that town there is no way someone can get lost, it's so small. So when we got lost, we found it so funny and unbelievable that we got lost. Fortunately it was during the @DATE1, it wasn't too scary. My cousins and I say it wasn't our fault, we blame the taxi driver for not listening to our directions. Because it was such a funny mess, we didn't stop laughing until we got to our destination. In the car all three of us were argued where to go and what turn to take, while the taxi driver just listened and laughed at us. It was so embarrasing, niether of us wanted to see that taxi driver again. @CAPS1 is older and way more taller than me, he was the tallest person in town. Now @CAPS1 is always talking about how he is not afraid of anything and that he is so brave. Until one night all of that was forgotten while @CAPS1 spent the @TIME1. I shared a room with my two other cousins and @CAPS1 stayed in the room next to ours with my brother. It was about @TIME1, when we all went to bed. Out of nowhere we hear a weird noise outside our room. The next thing I hear is @CAPS1 yelling in the other room, wanting to come sleep with us. I was scared also, so my cousins and I decided to let him come in. I turned on the light while @CAPS1 and my brother were coming inside the room. My brother @PERSON3 came in with all the blankets and pillows, while @CAPS1 came in with the airbed. It was such a funny sight so we all started laughing. @CAPS1 said "" I @MONTH1 be big and tall but I get scared easily"", that made us laugh even more. The noise turned out to be two cats fighting in the street. I remember this moment so clearly in my head since it concluded our entire vacation with each other as family. While my parents and grandparents were out in the front lawn with all the guest. My cousins, @PERSON3 and I were in my room- like always the funny moments happened in my room- we were just bored and didn't know what to do. Slowly I was beginning to fall asleep on top of a suitcase. All of a sudden my cousin @PERSON1 comes up with this crazy idea of how I can fit in a suitcase. I thought she was kidding, but when I looked up to see everyone's face, I knew they were serious. So here I am opening a suitcase, taking everything out meanwhile @CAPS1 goes and gets his camera. The next thing I know I'm getting inside the suitcase. I'm no acrobat, nor am I really flexible, so when I notice that I am having no trouble getting inside the suitcase, I freak out. My brother is practically peeing his pants from laughing so hard, my cousins are just baffled at what they were witnessing. When it came to zipping up the suitcase, I told them that was to far, but they convinced me to zip up the zipper so they could roll me around. @CAPS1, @PERSON1 my brother and my third cousin @PERSON2 all took turns rolling me around. They kept saying on how we should go out in the front lawn and surprise my parents. I came out of the suitcase- I felt so dizzy- after my brother dropped the suitcase on the cement floor. We laughed and made jokes on how tiny I am as well as how much fun it was after I felt a little better. Since then @CAPS1 calls me ""@CAPS13"". Saying goodbye to everyone was hard, but saying goodbye to my cousin @CAPS1 was even harder. Knowing that I won't see him in a long time is unbearable. @CAPS1 and I have a strong bond, and I see him like a brother. In our entire trip, neither of us could speak of him going, instead we chose to just have fun and ignore the pain. Laughing made that pain go away. It made our trip worth going. " 17 16 33 4 4 4 4 3 3 3 3 4 4 4 3 +21137 8 " My best friend @PERSON2 turned thirteen on a beautiful @DATE1 day. Her family had a boat and, since it the weather was not quite uncomfortably hot but not so cold that it was chilly outside, @PERSON2 decided to have a sleepover birthday party on the deck with some of her closest freinds. I was nervous about meeting her school-going friends since I'd always been a homeschooler and wasn't going to know any of the other people there. When I arrived at the boat, @PERSON2 introduced me to her friends @PERSON1, @PERSON3, and @PERSON4. I greeted them all and @PERSON2 suggested we go @CAPS2. I was ready to walk down to the beach but @PERSON4 said she wanted to go @CAPS2 right on the docks. @CAPS2 by the boats wasn't allowed and I was certain @PERSON2 would say @CAPS1 immidiately but instead she walked over to the '@CAPS1 @CAPS2' sign, tore it down, and tossed it in the harbor. Her friends laughed and I laughed too. I'd never seen people act this way. But their disregard for rules and customs was contagious. As the day went by I watched the was they talked and behaved. The girls used bad language and spoke harshly. Everything they said was loud and shocking and everything they did was to be wild and challange authority. They acted so free but there was something about their interactions with each other that seemed forced. I wondered if they were truly this way or if they were just pretending. But I understood that to be part of them I had to act like them. It was my first expirience with peer pressure and I didn't know quite what to do. But the girls' attutudes were simple, so I adapted and started to behave like them. But it became clear to me that in order for there to be a group there has to be someone who wasn't in the group. That was @PERSON3. @PERSON2' parents had made her invite @PERSON3 and @PERSON4 and @PERSON1 knew it. They would sit close together so she didn't quite have room, they would look with disintrest at her without laughing when she tried to make a joke. I became aware that if I hadn't adapeted so quickly to the attitude of the girls, I might have been the one they left out. I also knew that they could still turn on me if I did something wrong. We were sitting on the deck of the boat talking about movies and @PERSON3 was trying to tell the group about one that she'd just seen and was now her favorite. @PERSON1 stared blankly at her, refusing to smile. @PERSON4 looked off into space. @PERSON2 rolled her eyes to me. Sudenly, @PERSON1 cut @PERSON3 off and started talking about a scary movie she'd just seen. @PERSON3's eyes widened, then she looked down at the ground. Without thinking, I laughed and reached out to her arm, telling her I wanted to hear more about the movie. I'll never forget the way she lit up at that simple kindness. She smiled and began to gush about how amazing it was with renewed enthusuasm. @PERSON1 condinuted her story while watching @PERSON3 and me. @TIME1, when we went to the movie theater and the girls chose to sit in a row that only had room for four, I moved to sit with @PERSON3 in the next row down. We talked about the absurdity of straws for drinks and how we would never, ever wear skinny jeans. It was easy to talk to her. I didn't have to run everything I said through my head to make sure it wouldn't make anyone dislike me. Even @TIME1 when we were back at the boat, I tried to behave in the same way. I'd never had to focus on being myself before but I knew if I could do it, @PERSON3 would have someone to talk to. To my surprise, everyone became more natural. Soon we were all joking about what ridiculous things @PERSON2 should wish for with her birthday wish. I suggested a lifetime supply of marshmellows. @PERSON4 suggested the original @CAPS3 of @CAPS4. @PERSON3 suggested to wish that everyone in america would speak with a @CAPS5 accent on @PERSON2' birthday from now on. Everyone laughed. I saw that day that kindness if more powerful than crulty. Making someone an enemy or an outsider doesn't make a friendship stronger. Neither does having to worry about saying or doing something that might make your friends reject you. But integrity and kindness can bring people closer." 19 20 39 5 4 5 4 4 3 4 4 5 4 4 4 +21138 8 " Closer @CAPS1 @CAPS2 In life, I think that laughter is a very important element. Without it, everything just wouldn't seem as fun. Laughter can be a great thing, or it can be a little hurtful at times. Luckily my story is of great laughter. So, i will be telling a story of one of my adventures of laughter. It all started one day when me and my cousin @ORGANIZATION1 were at home. It was pretty much a normal day. Mom was out and about town, and dad was at work. @ORGANIZATION1 and I were having a great day because it was a @DATE1. Which meant school only went until eleven o' clock. With mom out and about town, we figured she wouldn't be home until much later. That gave us plenty of time to get everything accomplished. First thing we usually do when mom's gone is go get our music, and turn it up @CAPS3 loud. Since it was just the two of us home, we didn't care how loud it was. That particular @DATE1 was a surprise to us though. For it was strange enough to seem as a ""natural high"" day. We felt very positive with high energy. We were practically ready for everything. With the music so loud while we were cleaning the kitchen, we could barely understand each other talking. Then @CAPS5 awhile when the music stopped, it was just silent rushed cleaning in the kitchen. @ORGANIZATION1 and I tend to think a lot alike. It is so weird. Sometimes I feel like she's just my sister instead of my cousin. Anyway, out of no where, and complete silence, we started to sing. I don't think we realized we were singing the same exact song, at the same exact time. Once we realized that we were doing the same exact thing, it sort of creeped us out! We thought to ourselves... ""@CAPS4, how can two people ever be so much alike?!"" @CAPS5 that happened, we went on finishing our work. '@CAPS6 this day, all the time, we do a lot of the same things. We are very @CAPS2, much like sisters. I'm going to miss her so much when she leaves!" 18 15 33 3 3 4 4 4 4 3 3 4 3 3 3 +21140 8 " Laughter...What is laughter? Laughter is what makes the world go round.Its what makes friendship and relationship click.Laughter can lead to romance to marriage.without laughter,people would be sad and depressed.They would be stubbing there feet when they walk.People would be stressed out all the time.There would be a lot more wars.The world would not survive with out laughter.That is what I know about laughter." 10 14 24 2 2 2 2 2 2 3 2 2 3 3 3 +21141 8 "Laughter, an important part of life, just the feeling of laughing is comforting because at that time everything is okay.Laughing brings people together and makes them laugh together, its like a way of communication. Once you laugh about something other people start laughing and it connects everybody together to be happy. Its like telling everybody to be happy but without even talking to them.That's when people laugh with you, but when they laugh at you, well that's a different story.I remember one day when I was home washing the dishes and everyone in my family was frustrated, even me.I hate being mad and I hate it when people get mad, so I said something, I don't remember what but then everyone started laughing,it put everyone in a good mood.I think of laughing like fire,one candle can light @NUM1 candles.When you hear people laugh, the first thing that comes to your mind is,""something must be funny"".And you want to go and see what it is so you can laugh too. that's very common for most people who like laughing. personally I love laughing because its a good weird feeling." 15 16 31 3 3 4 4 3 3 4 3 4 3 3 3 +21142 8 " Laughter between two people is one of the ways you know if you are really good friends. Laughter between each other is what cheers you up if your having a really bad day. It is the reason you know you have a great bond in your relationship. Laughter is the bond between my two best friends and I. It is why we have been friends for so long. One of my best friends is named @PERSON1 and the other is @PERSON3. I have been friends with them for @NUM1 years now. We are all very close and we do every thing together. We hang out together, we play soccer together, we live close together, and we laugh together. @PERSON1 loves to go camping with her family in the @DATE1. The past @NUM2 years she has taken @PERSON3 and I along. @CAPS2 last trip I had been texting a lot on the trip @CAPS3 i was the only one who had service at the camp site. @PERSON1's mom had yelled at me for texting so much, which had mad me kinda angry. @PERSON1 and @PERSON3 had agreed with @PERSON1's mom and yelled at me to. I yelled back @CAPS3 I didn't like how @CAPS1 were all ganging up on me. I said ""I know, I'm getting off the phone. Just shut up!"" @CAPS1 were both really surprised that I said that and became intimidated. We all stopped talking and things were really awkward for a little while. Then our friend @PERSON2 who was also on the trip with us had fallen flat on his face while he was trying to do a cartwheel. @PERSON3, @PERSON1 and I all tried not to laugh @CAPS3 we were mad at each other, but we couldn't help it, it was just too funny. So we burst out laughing together and realized that we shouldn't be mad at each other. We knew there was no way that a little fight like that was going to stop us from being friends. We all hugged each other and said ""I'm sorry."" @CAPS2 is why laughter is such a great thing, @CAPS3 there's nothing better than knowing you have friends that are there for you and can always make you laugh even when your mad at them. It can make your bond between each other stronger and can really repair any damage that has broken a relationship. In my case laughter has fixed many problems like @CAPS2 and always will." 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +21143 8 " Laughter is the key to every friendship I have. If a person is really nice, but I cannot seem to make them laugh, or vice versa, it is hard to find common ground between us. When I see my friendships and reflect on them, it reminds me of all of the great memories over the years and months that were filled with joyous laughter. The simple things that make me happy in life bring about laughter. Whenever differences become clear in friendships, it only takes a memory brought up that made us laugh, to trigger that friendship back into place. Whenever I'm with my best friend, @PERSON1, things that normally would not be funny whatsoever, are. Another element that's put in place is the fact that @PERSON1 and I don't hang out as often as we used to, when we went to the same school @DATE1 @DATE1. So, the absence of eachother makes us treasure our times together even more than usual. Three nights ago, I went to dinner with @PERSON1 and her mom at @CAPS1 @CAPS2. We had numerous amounts of laughing sessions throughout dinner. Everyone who is ever around us, either think we are very annoying because we cannot stop laughing, or understand what it's like to have a best friend that makes your @DATE2 brighter, and think we're funny. There has never been a true fight between @PERSON1 and I because of how close we've become over the @DATE1 and realized how much we are like twins. So conflicts are never really brought up. However, one of my other very close friends, @PERSON2, that goes to my previous school with @PERSON1, has been having problems with @PERSON1. The most important thing to me is that they get along, because they are two of the most important people in my life. I would do anything to make them become friends like they used to be, even though I probably don't have the power to do so. I can get close into both of their hearts and stay on a level of laughter, secrets and wonderful memories. But when they are not getting along with eachother, it's not so easy to bring them together. I had been with @PERSON2 @TIME1, so I knew what she was feeling as well as @PERSON1, who I was with currently. I tried to shortly bring up the subject and at first, she rejected it. I knew that @PERSON2 meant a lot to her, and also that they had only gotten in a small arguement over something silly. The issue was that both of them can be very stubborn, and in any type of arguement, neither will say they are sorry first. It's because they both don't believe they have done anything wrong. In this case, it was a small miscommunication. I ended up going into more detail with @PERSON1 about how @PERSON2 was feeling, because I could completely relate. She later started seeing the other side of things, once I got her laughing. The key to my friendships, is laughter. Especially while we are young. There is no way I could have gotten @PERSON1 to listen to my view on @PERSON2's feelings unless they were what she wanted to hear. So, I told her what she wanted to hear. Things that made her laugh and giggle. Things that brought back memories of the good times her, @PERSON2 and I had had. She thought about it, and even though she wasn't completely ready to full out run up to @PERSON2 and hug her over and over, and make peace, she was ready to consider communicating with @PERSON2 again. That was enough for me to feel good. The rest of the @TIME2, we put aside the drama and laid back and enjoyed the @TIME2. We played our favorite songs and were cracking up the entire @TIME2 about the tiniest things, or mistakes we made in our speech when we talked to eachother. I know that as I get older, I will look back on my two best friends, @PERSON2 and @PERSON1, and realize how they made my high school years so amazing. They brought a better person out of me, someone who can enjoy life to the fullest by being in the right crowd and having innocent fun. They taught me that you can be great friends with more than one person, and even if those two don't get along, you can find a balance and not end up excluding anyone. In the end, the important thing is that you were a good friend to everyone and weren't selfish in the mix. Laughter has brought me to that place. I find that when I'm laughing about sincerely great things, and not making fun of someone or something, I become a lot less selfish and a better friend to people, because my intent is beautiful. I wouldn't get that perspective without true friends that @CAPS3 has given me. By the @DATE2, @PERSON2 calls me and tells me that @PERSON1 called her and asked her to talk. Things will change very soon. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21144 8 " Close people to you enjoy the moment you have shared with them and remembering it back brings laughter for what had occurred in that moment. Laughter brings people you have known from a long time together because you have had a feeling for that person and for the moment. Laughing at the memories that were spent with that person and enjoying it can make you closer to that person and it can be important to that relationship. In fact, it has happened to me before; laughter came to me when i saw a special video from my past. It was when one of my favorite cousins was two years old and i was three years old at a family party. My cousin was very chubby and with straight hair, but that day she was very sick from fever. I was very different because i had curly hair and was short. We both had a dress on, but the dresses had different styles. Then everyone at the party was having fun and we were, too. The video got to the part when my cousin and i were bouncing up and down grabbing our dress and making a show for everyone at the party. In that time we were suppose to be dancing. It seemed we were having to much fun that day. Afterward, my youngest brother came close to where we were dancing to see us dance, but he was caring with him a cup of soda. Then one of the grown ups gets up from its chair and bumps into him and he drops his cup of soda which splashed my cousin and me. All of our dress were wet, dirty ,and sticky from the soda. We both stopped dancing and sat down on the ground and started to cry. My aunt and my mom changed us to something else, but later when we saw my brother we were so mad that we didn't answer him when he asked us something or wanted to talk to us for that fact. Later on, we were having fun again and talked to him back again. Finally, the video stopped. It's important that laughter gets people closer to someone because together they're having a great moment while laughing. My cousin and i watching the video remembering our memories made us laugh from what happened to both of us. We have shared the same feelings and the innocent we were at that age. We noticed how much we had changed right now from all the funny times we had enjoyed together. We did realize that it was not my brothers fault for splashing us with soda. Laughing from all the moments we shared helped my cousin and me to be more united. Obviously, in different time in life you react in a different way, but laughing in that moment or later on gets people together. Sometimes in time feelings are different, but laughing is important because you're sharing the moment of happiness with someone. I remember events from my past with my family and we get closer to each other and have some laughter for the happy moments. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21145 8 "I would say laughter is something that comes from the heart. But really it is what is on the inside and how you really feel about the person and,how they feel about you,@CAPS1 that person makes you laugh you know that they really love you and care about you. @CAPS1 you make someone laugh and they make you laugh then you are with the one and only true person.Laughter is from the heart and soul. @CAPS1 that person Tell's you something that makes you laugh then it is true between you two. Feelings,@CAPS2, @CAPS3 is a lot between two people. @CAPS3 is from the soul and down deep with in your body. as my mom would say @CAPS3 helps clear the mind and body , but what i really think is that @CAPS1 some one makes you laugh they see the real side of who you really are and what you can become. you laugh about all kinds of things like jokes, funny videos, funny stories, and more. But the real thing is that at least someone make you laugh. @CAPS1 it say it is the important part of any relationship what it is trying to say or make a point of is that you need to laugh in your relationships and, have fun. But my thought about @CAPS3 is that you clear your mind and you have to listen about things and,then @CAPS4 it is funny then you start @CAPS3 about it. Here is what my mom use to says to everyone is that ""@CAPS4 you have not laughed at all today then you do not have a clear head or body"". There are times in peoples lives where they just laugh and laugh and have a hard time stopping that, i think @CAPS3 is just a feeling that people have. You @MONTH1 tell funny jokes that make people laugh but sometimes they do not even make any since at all. You could be out with a bunch of your friends and at a party and you are just standing around and then you start @CAPS3 because one of them decided that is was to quite and we all needed a laugh. There are sometime you can play a game that is really funny and you have to make funny things or even do crazy stuff, but it all comes down to one thing and one thing only you need a laugh once and, a while. I mean don't everyone need a laugh, I tell my self almost everyday that @CAPS4 I don't laugh then I did not clear my mind or soul. But is it really about me no it is not. @CAPS1 you say you need a laugh people look at you like you are crazy but you really aren't. What you are really trying to say is can you can tell something funny then people will understand what you mean. I have been told funny things over the past few years but im a teenager what do you think i will remember them all. I am just like everyone else I will forget them over the years real easy. I not all that smart but after I think about it for a few min I finally under stand the joke. I know I am a @CAPS5 but I have those days where I am saying what to people what are you talking about, then they look at me and, they just say wow! you really are @CAPS5 and I also have @CAPS5 jokes about me and I really do not mind @CAPS1 people tell @CAPS5 jokes to me. Cause I am not affected at all I got use to it. @CAPS1 I heard my first @CAPS5 joke I had to stop and, think about it for a few mins then after about an hour I realized that they where trying to tell me that it was me. Then I walk up to them and I was like ""@CAPS6 I finally got that joke and, then I was like what a really good joke. @CAPS1 you have a laugh for the first time is because that someone special either made you laugh or they tickled you. They might even tell you a very funny story about themselves, or someone that is related to them. @CAPS1 you laugh is like your showing your feelings and, @CAPS2 to that person, because @CAPS4 you do laugh then it is just like wow you are really lost on what they where trying to tell you. I will always tell my self @CAPS4 i need a laugh or something to either call my friends up or just look in the mirror every morning. because for some odd reason i think i am just really funny looking. most people think that @CAPS4 you look at your self and make funny faces in the mirror you will laugh non stop. the reason i laugh is because i see or hear something really funny o just wanna laugh so much. @CAPS4 i have a good day or a good weekend i laugh a lot" 17 15 32 4 3 4 4 4 3 3 3 3 3 3 3 +21146 8 " Laughter is one of the many ways to share a memory. It is also a key component to story telling, it shows that the listeners are enjoying what you have to say. When you share a laugh or a smile with someone its almost as if your sharing a deep secret that no one else knows. Laughter is having something in common, it doesn't matter how much money you have or how old you are, a person always has the ability to burst out in laughter. Inside jokes are laughter's best friend, from the second they are made to the slightest mention of them, they always bring smiles and giggles to everyone's face. As a person, I feel that it is my duty to make people laugh. One example of this would be when I was seven years old and spending the night at my friend @PERSON1's house. We had just gotten done watching @CAPS1 @CAPS2 and were super hungry for lunch. As it turns out @PERSON1's big sister @PERSON2 was the only one home, and she wasn't going to have anything to do with her ""baby sister"", so we were to fend for ourselves. Being young, we didn't want a boring old @CAPS3 @CAPS4 and @CAPS5 sandwich, we wanted to make @NUM1 cupcakes! This might sound like a ridiculous objective for two seven year old girls, but we were surprisingly ambitious and tackled this with no problems, or so we thought. In reality it was a disaster, we had no idea what a mixer was so we mixed everything with our hands, which worked up until I brought the flower out. From now on I will never think of flower in the same manner, every time I open the jar of flower all I can think about is the mess @PERSON1 and I had made that day. Lets just say it was a disaster, enough flower to successfully make @NUM1 cupcakes is approximately the whole bag. As I was getting ready to pour this tremendous quantity of flower into the bowl, I slipped on some of the vegetable oil that had spilled out of the measuring cup, and the flower went everywhere! @PERSON1 started laughing as soon as the white powdery cloud filled the room. As for me, I was still in shock, not to mention covered in what felt like enough batter to feed the entire world. Now that I am a quite a bit older, I don't think I could have taken such a tremendous mess so lightly, considering I would most definitely be the one cleaning it all up. But as a little girl, laughing was the only thing that mattered. @PERSON1 couldn't stop giggling as she was looking at my whole body covered in white. We started to play in the flower, picking it up and throwing it in the air as if it was confetti. When all of the sudden @PERSON2 came down the stairs, took one look at the kitchen and started to yell, ""@CAPS6 and clean this up! I was upstairs for and hour and you manage to make this big of a mess? Mom will be home in twenty minutes and you had better have this kitchen cleaned"" @PERSON1 and I looked up at each other and back at the kitchen. Then was when it hit me just how much work we had to do. All of the sudden I started laughing uncontrollably, it felt as if I had no care in the world. It turns out that @PERSON1 and I completely ignored @PERSON2 and continued to play in the flower for those short twenty minutes. We were in the middle of building a fort in the kitchen surrounded by what we called ""snow"". I heard the slam of the front door as @PERSON1's mom walked into the house. It sounded like paper towels being ripped right from the dispenser. Because we didn't clean up anything, we in fact made the kitchen much worse, we made a split second decision to run down into the basement to pretend we had done nothing wrong at all. That @MONTH1 had been our biggest mistake, as soon as @ORGANIZATION1's mom saw the kitchen we heard a scream, ""@PERSON1! What is this??"" . Slowly we climb the stairs to the kitchen and @PERSON1 starts explaining herself. I choose to stay quiet because I had never gotten in trouble by someone that wasn't my own mom before. When @PERSON1 is done telling her story, her mom tells us to go downstairs. Both of us are on the verge of crying, when all of the sudden @PERSON1 starts laughing once again. I could think of nothing that would possibly be funny at this moment when she says, "" you still have flower in your hair"". From this experience I have learned that sometimes, laughing is the only thing that will make you feel better. Even though I have moved away since this cupcake fiasco, I know that if I ever talk to @PERSON1 again we will begin laughing at just the mention of this story. " 24 23 47 5 4 5 4 5 5 5 5 5 5 5 4 +21147 8 " Laughter is a huge part of life, in fact it is all i wanted to see my grandfather @PERSON1, do before his final days. I remember when i was about five years old i loved to draw, it didn't matter what it was as long as i had fun. My grandpa would give me helpful tips on shading, texture, and the over all image itself. One of my favorite things to see was the smile on his face after I figured out how to use his techniques. We would always have a good time together, he was an artist himself who has painted most of the pictures in his house, along with a few at restaurants. I spent most of my childhood in @LOCATION1, @LOCATION3, @ORGANIZATION2, which is where my grandparents lived. I can't remember the last time i was at @CAPS1 lanes bowling alley, but i can remember my first time. It was with my grandparents, and there was so much for a young kid like me to do there. Another time about @NUM1 years back, my grandpa went to heat up his coffee in the microwave, and instead of putting his coffee in, he found potatoes. He instantly made hash browns out of them and we had a good laugh. There is a lot i wish i got to do with my grandparents, like go fishing, or even camping. Yet there is a lot i did do with them, my grandpa also painted my boy scouts derby wooden race car. When ever i had a race or competition with boats, cars, or planes, he was the one to paint them. He would come to every race to see how i did, and for some odd reason i got @NUM2 place most of the time. My grandparents also had a collie dog named @ORGANIZATION1, i named him when i was young. He and I grew up like buddies together, and my grandpa @ORGANIZATION1 and I would always go on walks together. My grandpas favorite thing to do with the dog was train him. He's the most obedient dog I've ever seen, he would go to the mail man and get the mail to bring back, he opened and closed doors if it had a rope, he would even get my grandmas slippers in the bedroom. When i lived in @LOCATION4, @ORGANIZATION2, everyday after school i would be picked up by my grandparents and go to their house and wait to be picked up by my mom until i was old enough to be alone. Grandma would always help me with math homework and cook dinner and then afterwords grandpa would help me with drawing or turn my favorite @CAPS2 show on. When i was young i would go over to there house in the morning and grandpa would have recorded my favorite show ""@CAPS3 the @CAPS4"". Every morning that was the routine, and then breakfast. Later on in my life when I became more independent i didn't go over to their house as often as I used to and it is something I cant take back. A few home videos I've looked at recently reminded me of a good time with them, my grandpa was recording me chase the dog around the kitchen table and i stubbed my toe. Apparently it was humorous to my family, all who were laughing in hysterics. Another time when I as younger my grandpa was a barber shop owner and cut hair for years in @LOCATION2, @ORGANIZATION2, and at his house one time i didn't know what a ""mullet"" was but i knew it was a hair style. I pleaded and pleaded until he finally gave in and gave me a mullet hair cut, i was astonished to what it looked like and immediately hated it. The last @CAPS5 I spent with my grandpa I bought lot's of presents for him and my family. Thanks to the @DATE1 job i had on the eastern part of the state, i was able to get a heating blanket that covered his whole bed, a couple movies, and his favorite "" @CAPS6"" chocolates. I can honestly say it was the happiest I had saw him in a long time, which made me happy too. When the day is over and you reflect on how everything had gone, you will notice the best of times are only a laugh away." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21148 8 " Laughter. Laughter is a key thing to have in a relationship. I once knew someone that had a great relationship becuse of laughter. They didnt think that they would still be together if they ddnt have any laughter in their relationship. Laughter is the shortest distance between each other because if you dont see this person, but you can sill laugh with this personand have a great relationship with that other person. Laughter between these two people laughed all the time and they got closer then ever, even though they didnt see eachother all the time, everyday I knew that there relationship wouldnt be alive anymore if they didnt have there laughter, it means that you are happy with that person. Laughing with somone that you care about also means that you can trust that person and you are being yourself around that person and you dont have to act how you would normally with someone else that you dont trust! I had a boyfriend that i could laugh with all day everyday and thats what kept our relationship together. We laughed instead of talking because that says how we feel towards each other, and we could just tell that we were happy with each other just by laughing. Sittin on the couch staring at each other in the eyes, then we just started to laugh because we thought of something that we had said that made us bust up and just to laugh like crazy even with out saying any words. Even though we had our fights we would still laugh at eachother and things that made us laugh that one other said. I would be really upset and sad and he would would just know what to say to make me laugh, then i am happy because i know trhat he ares about me and cares if im happy or sad I am. A real relationship is very hard to find with a guy that can make you laugh when your really upset or mad by just smiling or saying somethings that is goofy. Even though he was mad at me he would still try to make me laugh or smile because thats what i relationship is about. If you cant smile or be happy with that person that you ""love"" then you shouldnt be with that person because you know that you wont be happy and you will always be depressed or just plan old mad at that person. Laughter is a key thing and its something that can bring your relationship closer in many ways. If you laugh with that person and you can be yourself that means that if you break up after if it didnt work then that is probably a good sign that you guys will be great friends after. I believe that laughter is something that makes two people closer and then it also is the shortest distance between two people, if you dont wanna talk like me and my boyfriend do we just sit or stand there and laugh because we knew that we could just laugh at eachother and im sure people that we were weird or something, but we didnt even care so we would just laugh and laugh all day everyday all night long. I think that if you arent even in a relationship and you guys or gals are just great friends like me and my friend @CAPS1 are then you can just laugh at everything that you think is funny and just have a great time, you dont have to be in a relationship with someone to laugh with someone. Laughing is great fort the soal." 16 19 35 4 3 4 4 3 3 3 4 4 4 4 4 +21149 8 " Laughter is important in all relationships of any kind. If you have a friendship where you never laugh and nothing is ever funny, what is the point? I have four friends that mean the world to me. @PERSON2, @PERSON3, @ORGANIZATION2, and @CAPS1. @CAPS1's real name is @PERSON1 but we all call her @CAPS1 because how she acts. @PERSON2 and I use to do almost everything together. We were inseperable, we went to school together, we even ate our meals talking to eachother. @PERSON2 and I can make eachother laugh no matter what the situation @MONTH1 be. I remember when @PERSON2 and I hadn't been getting along like we usually do. One day at around nine p.m. my phone rings, it was @PERSON2 I didn't know whether or not to pick up or to just pretend to be busy so the two of us didn't argue. Well I decided to pick up because it was the friendly thing to do and I knew that she would have been there for me. There was obviously a reason she called me, right? As I was about to say hello I could hear @LOCATION1 crying. I panicked, @PERSON2 was not one to just cry because of something little. I asked her what was wrong and told her to tell me all about it even though we were fighting I wanted to be there for her no matter what because she was always there for me. The @TIME1 before it had been @ORGANIZATION1 @ORGANIZATION1, our whole posse or whatever you wanted to call it went together and everything had seemed fine except the usual pointless arguements that always ended in a laugh. Little did we know that the past two weeks @PERSON2's @CAPS3 had been ""house sitting"" he hadn't planned on returning home to his family. As i listen to @PERSON2 tell me the news and how hurt she was, my heart sank. While she cried I cried. Her @CAPS3, broke the news to her @DATE1 @TIME1 after we left for @ORGANIZATION1. He will not be returning home because he hasn't been happy there for awhile and he wanted a divorce. I knew exactly how @PERSON2 felt, my parents got divorced when I was very young. Although it didn't tear me apart like it did her it still effected me. Not having a real family with one home and two parents who were married and inlove was never easy on anyone. @PERSON2 had not the slightest idea that her @CAPS3 would later get married and start a family with a woman he had been seeing for over a year while coming home to his family. She just kept telling me that she had to bring him home, that she couldn't do this. @PERSON2 and her @CAPS3 were really close, she was daddy's girl one hundred percent. I remember her telling me that she just wanted to disappear it was all her fault. All I could do as her friend was listen and tell her it would be okay. @PERSON2 began to calm down and grasp the fact that things happen and she couldn't change her @CAPS3's mind. I invited @PERSON2 over for the @TIME1 to just hangout and maybe get thigns off her mind for awhile. It couldn't be easy sitting in her home with her @CAPS3 gone knowing he wasn't coming back. So @PERSON2 came over, we played guitar hero and everytime I messed up she would laugh. Hearing @PERSON2 laugh again made me feel better about things because I knew that she had figured out it was not her fault for her @CAPS3 leaving. Without the laughter in that room I'm not sure me and @PERSON2 would have been able to ever be good friends again. Afterall laughing at me messing up on guitar hero brought me and her back to being good friends again. So it's very important to have laughter in a relationship because once the laughter is gone then the friendship or whatever you know is going dowhill. Now @PERSON2 and I talk for endless hours or text about anythign and everything and when we aren't laughing we know to ask one another what is wrong." 16 20 36 4 3 4 4 3 3 4 4 4 4 4 4 +21150 8 "A few years ago me, my mom and my sister @PERSON1 were at a sub shop for dinner. Whal we were in line waighting for our sandwiches, @PERSON1 who was severl inches shoter than me at the time, said that she was taller than me, so I stratend up and said that I was still taller. Then she stoud up on her tip-toes (making her taller than me) and said that she was too taller than me and she stuck her toung out at me, so I stoud up on my tip-toes (makimg me taller) and stuck out my toung at her. The funny part is that there was this cute guy standing behind @LOCATION1 so it looked like I was sticking my toung out at him! He had this amused look on his face like he was looking at some cute little kid. I quickly stuck my toung back in my mouth and returned to my normal hight. I then tolled my mom that @PERSON1 were going to find a place to sit. Once we found a place to sit I toled her abought the guy standing behind her and we both laughed it was really funny and we still joke about it! : )" 14 14 28 3 2 3 3 3 3 3 2 3 3 3 3 +21151 8 "Laughter can create this type of bond that's hard to sever. I can tell you how I've made some fast and true friends just by laughing at the same things. Its an amazing thing when people laugh. It doesn't always make sense or seem that funny at the time but it will make anyone I think feel better no matter what the circumstance. I can tell you how I've made some fast and true friends just by laughing at the somethings. Or how laughter can fix a fight that you and a love one have had. Well here it goes, my story of a very true and very close to home story that help me open my mind and have one of the best and true friends I well ever have in my life. To tell this story i have to go back in time to when i way around nine or so. When I was a young girl my sister, @CAPS1, or as I always called her @PERSON2, and me hated each other. We never got along, maybe that's because of sharing a room with a older sister, but i can remember her never wanting to play with me or hang out with me. My oldest sister @PERSON1 had just gone to collage so my sister @PERSON2 and me got the chance to get to know each other a whole lot more. Sure we still had fights and still didn't get along with each other very well, but we were well on are way to becoming the best friends we are today. Well one day when my parents went out shopping me and my sister @PERSON2 stayed home to clean the house. Well in my family when cleaning music is blasting no matter what kind it is. As always my big sister had to ""order"" me around, or at least that's what it felt like then, and like always i was a stubborn little sister who never liked taking orders from the big sister. Well @PERSON2 told me i had to clean the bathrooms, and I hate to clean bathrooms, I mean who does right? So I tell her that wouldn't do clean them...well that doesn't go over so well with the big sister who is charge while mom and dad are away. So we start to fight, and oh what a fight that was. I mean loud as loud can be. The music couldn't even be heard over the yelling and screaming. Like most fighting in my house goes, my sister and I go so feed up with each other that we stormed out of that room and into our own bedrooms. While the music was still blasting and even could be heard from all the way upstairs. So as I ,and I can only guess my sister was doing the same, was plotting my revenge on my oh so ""wise"" sister then music changed to a upbeat classic song that is one of the most popular songs in my house hold. This song was ""@CAPS2 @CAPS3"", because I loved this song so much I opened my door to my bedroom. I guess my sister is like me because she did the same. Well I had started singing and dancing in my room to the music, and guess my sister had heard me because she had come out of her room and into mine. I of course didn't notice her so I had keep doing my singing and dancing. Well as soon as she started to laugh at me I stop and glared at her. @CAPS1 just stands there laughing, I had said something on the lines as well you couldn't do better then that. So she tried and it was my turn to laugh. We ended up making fun of each others dances and laughed all the way down stairs were we hug and said how sorry and stupid we where for fighting. Then after all that had just happened we look around us at the work to still be done. We then looked at each other and laughed and ran to do our work before mom and dad got home. We finish just in time to, as soon as my mom and dad came home we where just doing the last bit of cleaning. @TIME1 after my mom and my dad had gone to bed my sister and I had a @TIME1 of watching movies and laughing our heads off. That's it, my story of how sisters, or more like best friends can fix and start anything with just laughing and having fun together. Now my sister lives in @LOCATION1 so i don't see her a lot, but when ever i can i web chat her or call her. We spend hours laughing, it doesn't even matter what we are laughing about. That's what laughter does, it creates this bond, a deep connection. My sister and I @MONTH1 have had our fights in the past...and the future but we have laughter that always helps us stay together no matter what happens in life." 15 20 35 3 3 3 4 3 3 4 4 4 4 4 4 +21153 8 " ""Laughter is the shortest distance between two people."" I think that laughter is really important in any part, in any kind of relationship. When people laugh, @CAPS2 get to understand each other better, @CAPS6 usually people think that you are a cool person when you say something funny, @CAPS6 laugh with them when @CAPS2 say funny stuff. It's funner with people who are laughing with you or make you laugh. There were many times throughout my life when many problems were solved by just telling a joke, saying something funny or even remembering fun memories from the past. I have many @CAPS4 that I love, but of course like in any other friendship, we've had little fights between us. I remember one time when my @CAPS4 @CAPS6 I went to hang out at the mall. Two of my @CAPS4 came into a huge conflict because of something really weird, which later became an argument. Of course we always had little conflicts, but @CAPS7 time I guess the two girls were serious @CAPS6 mad at each other! My other friend @PERSON1 @CAPS6 I were looking at them @CAPS6 didn't know what to do. @CAPS6 my friend @PERSON1 was kind of scared that @CAPS2 might hurt each other. I told them,"" @CAPS1 you guys! Don't be like that!"" @CAPS2 looked at me @CAPS6 stopped. So we started to walk. @CAPS6 I remembered something funny @CAPS6 crazy that those two girls @CAPS6 us did, at a camp the week before @CAPS7 happened, @CAPS6 after that camp I remember how @CAPS2 were saying how we are going to be ""@CAPS3 @CAPS4 For @CAPS5"" for our whole life's @CAPS6 that @CAPS2 wouldn't forget how much fun we had. I started to laugh remembering what we did that camp, @CAPS6 @CAPS2 looked at me like I'm weird or something. So I reminded them about all that fun stuff we did, @CAPS6 @CAPS2 looked at each other @CAPS6 started to laugh really hard! Because their conflict had something little to do with that camp, what @CAPS2've had forgotten! After that @CAPS2 started to talk to each other @CAPS6 forgot about that conflict that @CAPS2 had. Sometimes I remind them about the conflict, but @CAPS2 just laugh @CAPS6 say ""We were so dumb, to make that conflict!"" @CAPS6 we all laugh at them.""Laughter is the shortest distance between two people."" @CAPS7 is why I think that laughter is really imported in any friendship. @CAPS6 I think that @CAPS7 problem was solved by just saying some funny memories so @CAPS2 can laugh! @CAPS6 reminding someone a thing that @CAPS2 had forgotten." 17 16 33 3 4 3 4 4 3 3 3 4 3 4 3 +21154 8 "Laughter is a key importance in life, family, and relationships. Gets people through tough times and times when you just need a friend. Laughing is a big part in my life, joking around and having fun, when something happens I try to cover it up with laughter. People @MONTH1 say that laughing is to much in situations, but it gets a lot a people trough tough times. @CAPS1 there was no laughter in the world in would be dull and I feel that people would be without really experience laughing and making jokes. Making other people laugh gives me good feeling even @CAPS1 it is a lame joke. I think that because it gives me a good feeling about my self, one good thing I know how to do. My family has always been the joking type, messing around and just laughing about everything. There has been a lot of good memories with my family and I, jokes and what not. We enjoy every little laughing matter because its something we each treasure and its a bond that we do not want to loose.One moment in my life where laughter was really great for was in awkward situations with people. My sports team, getting down on ourselves very fast during games and we start to blame other people which is the most common thing that people do when they start to stress in situation like this. Causing so many errors my team mates and I are just not paying to one another and not acting like a team. Just after losing so many games you really start to lose hope for yourself and your team. Our coach always try's to comfort us by saying we did good or we could have tried harder. Some people take this seriously or people do not care and act nothing ever happened and those people start to shut @CAPS2 out and only care for their good friend on the team. One morning before we even started things were tense between people. The captain noticed that two of the team members where talking about her and she confronted them saying ""@CAPS1 your going to talk about me behind my back just say it to me."" @CAPS2 was in complete shock no one knew what to say, so i stated ""well this is just awkward."" The whole team just started to laugh because it loosened @CAPS2, even though it didn't totally solve things it just made the situation a little better.Another moment in my life where laughter was a key part was during road trips. Being suck in the car with my family going somewhere and on the way back from were ever we came back it is a lot of bonding time. You start to talk crazy not making an sense, not being like yourself. Then it bring out the fun of messing around then saying something or do something were it become really funny and its a moment that you don't want lost. An example that happened to me on this experience was going to @LOCATION1 and making up a lot of inside jokes of things we saw or heard. moments like these I always want to treasure because these people in your life right now will not always be their. To create memories do the basic thing and laugh with family. Laugh with your friends.I believe that in some of these situations it could help loosen some of the tension between people, and sometimes make things a little less weird between people. Just being yourself and dont change that. Having so many of these types of moments and much more are special to me, no matter good or bad. they help me remember things easier. Just having the little moments like these are special and it reminds me of how much I really did care about this one person or realize that a moment wasn't a total lost, because it had the thoughts of people laughing and its something that comforts me. " 18 16 34 4 4 4 4 4 3 3 4 3 3 3 3 +21155 8 " The @CAPS1 Of @DATE2 The warm @DATE2 sun, pools to cool down children, parents joining with friends and family to have picnics and potlucks, and late night slumber parties. Then there's my @DATE2 @CAPS1.The sunshine came in bright throughout the window illuminating the whole room, I awoke to see the bright light of the sun. I ran into my brother @PERSON2's room, to make sure he was up and ready to start the day with me. He clearly was; the early riser himself. We left his room and started to smell the sweet aroma of chocolate chip cookies, we booked it down the hall into the kitchen to talk to mom about what we were going to do that day. When we got there mom turned around to show us her gigantic belly, which was holding my soon to be baby brother, we asked her what we were doing that day. Disappointed at her answer she had nothing planned. My brother and I were bummed but we quickly got dressed and went to the backyard where we were pitching together, the ball hit softly on my nice leather glove while on my brothers it made a slap. My mom came outside and yelled to @PERSON2 to go over to the sliding glass door, for a second I thought I was in trouble for pitching too hard to @PERSON2 but luckily that wasn't the case. My mom then called me over as well to let me know my cousin was coming over. My first thought was great @ORGANIZATION2's coming over! Then I started to think, my cousin @ORGANIZATION2 is weird... she is always making up lies, telling non funny jokes, playing with @PERSON1 @CAPS2 cards, and playing weird stupid video games. I quickly ask my mom when she is coming so I can ready myself, for whatever I am going to have to put up with my mom tells me fifteen minutes. I quickly run past her into my room where my phone is, and call my neighbors @DATE1 and @ORGANIZATION1 to see if I could hang out. Their mom answers and says I can come over there as soon as the girls chores are done, excited I tell my mom I will be at the neighbors house for a little while and @PERSON2 would have to hang with @ORGANIZATION2 while I'm gone. Shes tells me that its alright as long as I leave before @ORGANIZATION2 gets here. I await the phone call telling me that I can go over to their house. Noon is rolling around and they still haven't called, @ORGANIZATION2 will be here soon and I am tired of waiting. I decide to go out front where I can roller-blade around the block, I tell @PERSON2 that I am going outside and he tags alone with me. @PERSON2 and I put on our roller blades and head out of the garage, my mom comes out right as we are about to leave and tells us @ORGANIZATION1 called and we can go over there now, we rush in and quickly try to step up the stairs in the garage to the house. Slipping as we try to shove each other out of the way with the roller blades on, I finally get inside and start unhooking the latches. Get them off and head for the door when all of the sudden I hear a knock just as I reach for the door, it's @ORGANIZATION2. I hurry out the the door saying hello to my cousin as I quickly escape to the neighbors house. I get to @ORGANIZATION1's house and we decide to go outside to play, and run with her new puppy. We play for a little while then decide we should go inside and get a snack we do, then the doorbell rings. @ORGANIZATION1 runs to the door with the puppy at her heels and lets the people in, I turn around from the table to see who it is and see @ORGANIZATION2 and @PERSON2 standing inside the door. They came over to play too, I let @DATE1 know we should watch a movie. She went over to the movie cabinet and pulled out the brand new @CAPS3 movie! We all sit down and start to watch the movie each with a bowl of popcorn. We watched almost all of it when the doorbell rang, the puppy bolted to the door and @DATE1 got up to answer it this time my mom stepped inside and told @ORGANIZATION2, @PERSON2 and I that it was time to leave. The puppy was ecstatic to see my mother so she peed all over the linoleum floor. @ORGANIZATION2 didn't notice the dog pee on the floor, so she ran for the door to get her shoes on and she went flying backwards into the dog pee everyone was laughing even @ORGANIZATION2. We said our thank you's and headed back to my house to eat dinner and get @ORGANIZATION2 ready to leave. The most enjoyable moments are with the people you love, they can make you laugh and cry. : @CAPS4." 16 20 36 3 3 4 4 4 3 4 4 4 4 4 4 +21156 8 " It was a cloudy @DATE1, but nothing to be sad about when among friends. This circle of friends had just spent the whole weekend together, and they were heading home. I was among this group as a young @CAPS6 who had known this group for three years. Three years before, I was shy, but something changed that. The group was called @ORGANIZATION2. This @ORGANIZATION2 was for teenagers and even some collage students. There were very few of us though. It was our last year as @ORGANIZATION2, then we would be kicked out of the church we were meeting at. Together, we made that weekend be are best and last @ORGANIZATION1. The boys were very comfortable around the girls, so much in fact, that they were going to make a deal with us. The deal was that during the car ride, if we rubbed their backs, then they would rub our feet. At @CAPS2 the girls thought this to be a crazy idea, but as time went on, that foot rub seemed really good. Three pairs were made, with a boy and a @CAPS6 in each. The boys sat in the second to last row in the car, and the girls sat in the back. I rubbed @PERSON3's back, but it's okay. Out of all the girls there besides his sister, I know @PERSON3 the best, so I was perfect for the job. This moment was a very giggly time for the girls, and a very relaxed time for the boys. While the boys were falling asleep, the girls were laughing hysterically. Since we had our feet right beside the boys for them to rub, then the easiest way to wake them up was to kick them. This just caused more laughter, and more alert boys. After we had enough with the foot and back rubs, then we needed to find something new to laugh about to make the time pass faster. It was the @DATE1 before @DATE1, so our @ORGANIZATION2 leader gave us each a bag of candy hearts. The little messages on those candy hearts could entertain us for about an hour and a half. We would pick one randomly out of the bag and hand it to someone. I ended up giving both @PERSON3 and @PERSON1 candy hearts that said, ""@CAPS1"". They were very confused, but again it caused more laughter. @PERSON3 accidentally gave one to @PERSON1 that said, ""@CAPS2 @CAPS3"". Andrew got hearts multiple times that said, ""@CAPS4 @CAPS5 @CAPS6"". Once that was beginning to become boring, then we found a new way to make the candy hearts entertaining. We would read the heart @CAPS2, then give it to someone saying it was from someone else. Kyrene gave one to @PERSON4 saying it was from @PERSON2 that said, ""@CAPS7 @NUM1 @CAPS4"". Whenever we had one that said, ""@CAPS9"", then we would give it to @PERSON1 saying it was from @LOCATION1. Earlier she had said to him, ""I thought you were @CAPS10 for a moment there"", but numerous people thought she said, ""I thought you were @CAPS9 for a moment there."" @CAPS11, we try to make it up to @PERSON1 for @PERSON2 by giving him ""@CAPS9"" candy hearts. We ended that @DATE1 with hugs, goodbyes, and laughter of retold inside jokes. A few phone numbers were exchanged, and a few that should have been weren't. The trip ended well, and everyone felt just a little bit closer. We could hug this person @CAPS11, or we could get this person's phone number. Something in us changed that we could be a little closer. In my experience, I would say that laughter is only one element, because to get laughter you need to love who your laughing with. If I didn't love the people I was in the car with then I would have not laughed with them. They say, ""Laughter is the shortest distance between two people."" I don't believe this is true. I think it's love that is the shortest distance and laughter is just love being shown. The statement that laughter is the shortest distance is assuming that laughter is the cause, but in truth, it is the effect. Love is the cause of laughter. If laughter was the cause of love, then this world would be doomed to never know either. Without love, there can be no laughter. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21157 8 " Sound @CAPS1 @CAPS2 someone hears something funny, said person begins to laugh. @CAPS2 the funny thing being heard was someone else laughing, the whole room begins to engage in laughter. This has happened to myself many times, but the one time I remember most, was @CAPS2 I began making strange noises. I normally make sound @CAPS1 and such @CAPS2 I'm bored and want to start a conversation, but I had never laughed and made sounds like that before. That moment changed the way I laugh today. The date was @DATE1, it was my birthday, so I decided to have my party at @ORGANIZATION1. I invited my two best friends, @PERSON4 and @PERSON3, to tag along. We love to laugh and just have fun. So, inviting them was a no-brainer. Immediately, we decided that our favorite water slide in the park was the grand and slightly over sized @ORGANIZATION2' @CAPS3. It was a large funnel with flashing red and @CAPS15 lights inside. We went on it over, and over, and over again. The adrenaline was pumping through our veins as the ride would end and we'd leaped from the inter tube and rush to the stairs where the waiting line was held. We talked, chatted, sang, yelled, and most likely annoyed every other person in line. Then, @CAPS2 we finally got to the top of the stairs, we became in awe of the lifeguard. But, not because he was gorgeous. He looked as if he was a wee little leprechaun! We stifled a small laugh and got on the ride. @PERSON4 asked him to turn the inter tube around so that she could go down the ride backwards. He then began to talk, and we couldn't help but smirk. He began flirting with us by saying in his manly voice, ""@CAPS4 want me to ride down with @CAPS4 ladies?"" @CAPS2 he said that, @PERSON3 was the first to break. Then me. Then @PERSON4. We couldn't hold it in anymore. He then awkwardly cackled and pushed the inter tube down the slide. We were laughing so hard that we weren't even paying attention to the ride. Then it hit me. ""That dude looks like @PERSON1 @PERSON1!!"" I screamed to @PERSON3. @CAPS2 the ride ended, we thought for a second. Then undoubtedly went again. Truth be told, he @CAPS8 look like @PERSON1. We began laughing again throughout the ride, up until I made a strangely abnormal sound. I made a noise that sounded as if a pig had just had it's tail yanked. It was almost a shriek, but more of a squeal. @CAPS6 just happened? @CAPS8 I seriously just...just...@CAPS9?! Note: A best friend will always be there for @CAPS4, especially @CAPS2 @CAPS4 @CAPS8 something embarrassing. It's their job to poke fun at one's strangeness. So of course, @PERSON4 was the first to say, ""@CAPS6 the heck was that?"" @CAPS7 followed by @PERSON3's expression of, ""@CAPS8 @CAPS4 just @CAPS9?"" That's @CAPS2 we began to laugh and then I started making even more unusual noises. I started squealing, snorting, and hiccuping. We were still laughing at my crazy squel @CAPS2 we got off the inter tube. Later after we had our fill of the @ORGANIZATION2' @CAPS3, @PERSON4 decided we should go in the wave pool. Of course, @PERSON3 and I agreed. The speaker system in the area started blaring the song ""@CAPS11"" by @PERSON2. @PERSON3 is my go-to-gal @CAPS2 it comes to breaking out in song. She began singing, then we all joined in. But @CAPS2 it got to the chorus, ""I throw my hands up in the air sometimes..."" we all said, ""I throw my banana in the air sometimes..."" ""@CAPS12 my @CAPS13, we should totally make a song of our own."" @PERSON4 said. We began thinking of different lyrics we could say in our song. At first, we knew exactly @CAPS6 to say to fill in the chorus, then we decided that the song needed more lyrics. That was harder to think up. But, then we decided that we should make the song about food and the way we eat it. We had so much fun. Eventually, we came up with the entire song and people were staring at us as we screamed it to the world. Then, the terible noise arrived again. @PERSON4 began to laugh, then @PERSON3 and I joined in harmony, then a rude interruption by my @CAPS9. @PERSON4 and @PERSON3 continued to laugh at my sound @CAPS1. I joined in with them, laughing at myself. That night we went to bed, humming the tune of our new song, ""@CAPS14 @CAPS15"" out loud. Now, whenever we hang out, we begin to sing our song, and sometimes, even dance! People still look at us strange, but then we just start laughing, and I start making sound @CAPS1." 20 20 40 4 4 5 4 4 4 4 4 4 4 4 4 +21158 8 " How @CAPS1 @CAPS2 @CAPS3 only took one @DATE3 to change the whole purose of my @CAPS1. Two things that made my @CAPS1 more than I ever thought @CAPS3 could be; @CAPS4 and one girl. I realized over just one @DATE3 that there is more to @CAPS1 than what we see or hear. Emotions that you can't describe. Something that you have to live out for yourself. Looking back on three months of @CAPS1 changing events, I laugh at how fast my @CAPS1 turned and started heading the right way. Also how one girl can bring me to church and how @CAPS4 can keep a relationship moving strongly. We're part of a movement that will last forever. Her and I moving on the perfect path to eternity with eachother. Have you ever had a person in your @CAPS1 that made you so overwelmingly happy that @CAPS3 caused you to change your @CAPS1 plan forever? I have found some things on this earth that explain my whole purpose on earth. The first time I ever saw this girl. @CAPS3 was like a instant shock through my body. @CAPS3 felt like I needed her, like something was whispering in my ear,""go get her."" One day talking to my friend about this girl I couldn't get out of my head. I told him how I was going to talk to her @DATE4 and there was nothing that was going to stop me. @CAPS6 said,""I have a class with her."" @CAPS6 thought about her and I together; like in a relationship. In a intense thought @CAPS6 looked up at me and said,""actually I think you guys would be perfect together."" @CAPS7 that @CAPS6 said that I said, ""sweet."" I talked to her that day. She was better than I expected. I needed back up though. I had a different friend come with me to talk to her and her friends. I saw her in the hall. So we started to walk over. We got to them and my friend just kept walking. Thinking in my head, ""what a great friend."" @CAPS3 was me alone with seven other girls. Trying to look the best I could look. What @CAPS7 me is I actually pulled @CAPS3 off. She actually thought i was attractive. Was @CAPS3 love at first sight? I don't know you tell me. Getting close to @DATE3. I got my license. Looking forward to what my @DATE3 was going to look like. All was looking really good. Until i found a job at a ice cream factory. Waking up at four in the @TIME1 wasn't the best way to start out my @DATE3. I still wanted to impress her and be with her all @DATE3. I met a guy named @PERSON1. @CAPS6 asked if I wanted to study the bible with him. I knew that @PERSON2 went to the same church. So i wanted to do @CAPS3. About two months @DATE2 they went to a church thing over in @LOCATION1. @PERSON2 was baptized there. Then @DATE2; after they got back. I was baptized. We both had @CAPS4 with us. Love was building up between us. What better to do than date? We started dating on @DATE1. Wonderful moments that I will never forget. That look she gave me like fire burning in her eye's with love. Going to the beach, driving around, fair rides, picking her up and never letting go. Still with love burning inside of us. I went to her house. Lost track of time and noticed I was going to be late getting home. @CAPS3 was a rainy night. Saying good bye to her parents and giving her a big hug. I ran out the door, got in my truck, and took off. Couldn't see well. A corner popped out of no where. Started slidding across the road. A tree was moving toward me. I hit the tree. In mid flight. Time slowed way down. I thought is this @CAPS3. One picture popped into my head. @CAPS3 was her face. I landed with a big screaming sound. I got out as fast as possible. I came out with cuts and bruises but that was @CAPS3. I thank @CAPS4 that I survied my crash. I am so lucky I didn't die. main oint is. I think I was put on this earth to be with her and thats what I'm sticking to. @CAPS3's times like these that make you realize how amazing @CAPS1 is. Laughing at @CAPS3 now. How laughter can change your @CAPS1 around. I finally said I love you girl. We are together to this day." 15 20 35 3 3 3 3 3 3 4 4 4 4 4 4 +21159 8 " My cousin @PERSON1 and her boyfriend, @PERSON2, had been dating for three years and they had planned a special date for their anniversary. They made reservations at the @ORGANIZATION2 in @LOCATION1 and then take a walk on the beach after-wards. For @PERSON1 this was a small step up from an ordinary date but for @PERSON2 this was the biggest day of his life. This late @DATE2 evening was the day he would ask @PERSON1 to be his wife! @PERSON2 pulled up to @PERSON1's house at precisely five-o'clock pm. In his hands he held a bouquet of roses which were handed to the most beautiful girl on the @ORGANIZATION1. She was dressed in a white and pink dress with matching pink heels and her hair was all done up fancy. @PERSON2 was speechless as he handed her the bouquet. After the roses were placed in some water, he escorted her down the steps to his car, @CAPS1 number one. @PERSON2 couldn't start his car. In utter embarrassment @PERSON2 asked @PERSON1 to drive her car to dinner. She giggled and assured him that she didn't mind. When they arrived at @ORGANIZATION2 @ORGANIZATION2 they were sad to find that their reservation had been double booked and the other couple had arrived only moments before them. In despair, they set off in search of something else. Everything else that @DATE1 @TIME1 seemed to be full so @PERSON1 decided on @CAPS2's, her favorite restaurant. After a good forty-five minutes of waiting to be seated they were lucky enough to get a window seat. @PERSON2 ordered a burger and fries because he is not a seafood fan. In contrary, @PERSON1 loves seafood so she had a bowl of @CAPS2's world famous clam chowder. When dinner was finished @PERSON2 excused himself to use the restroom before they left but as he was getting up, he knocked over his @ORGANIZATION3 and it spilled all over @PERSON1's new dress, creating a brown, sticky mess. @PERSON1 cleaned up the best she could but there was almost no use. So far so bad, but the worst was still yet to come. When they came to pay the bill @PERSON2 began panicking. He realized that he had left his wallet in his car! @PERSON2's face turned bright red as he watched his girlfriend pay the bill. Good thing we didn't go to the @ORGANIZATION2 @ORGANIZATION2! he thought. @PERSON1 was ready to go home but @PERSON2 was determined to propose to her so he begged her to walk on the beach and watch the sun set. She agreed. With @CAPS6 step, @PERSON2's heart began to beat faster, his throat dry, his hands sweat, and his body shake. They sat on the warm sand and talked for ten minutes. Finally @PERSON1 was really ready to go so this was his last chance. He reached into his pocket and pulled out the lone ring. As he got on one knee, the ring fell into the sand. It was getting dark so after a minute or two of frantic searching, he gave up and began to cry. @PERSON1 was so confused and thought he was crying because she wanted to leave but as soon as @PERSON2 calmed himself he told his story and how this was supposed to be the perfect proposal for the perfect girl but it turned out the be the worst @TIME1 of his life. @PERSON1 just laughed which made @PERSON2 think she was mocking him but he continued anyway. ""@PERSON1, will you be my wife?"" @CAPS4 tears of joy she said, ""@CAPS5! As long as @CAPS6 day can be an adventure like tonight."" @CAPS6 time they mention this story they bust out laughing even though it wasn't funny at the time. Ever since then they have had many hilarious and embarrassing stories that they can laugh at now." 21 25 46 5 4 4 4 4 4 5 5 5 5 5 5 +21160 8 "It was another warm muggy @DATE1 @TIME1, when @LOCATION1 my best friend and i decided to go to our friend @PERSON1's house. As soon as we we walked the three mile walk to get to @PERSON1's house @LOCATION1 realizes that he forgot his phone charger at my house. We didn't want to walk all the way back to my house and we had no ride either because none of us have our license yet and and @PERSON1's parents aren't home. So @PERSON1 and i start brainstorm on how to get back to my house to retrieve @LOCATION1's cell phone charger, when suddenly...We heard a loud bang come from the backyard from the old rugged y shed in the back dark corner of the yard; @LOCATION1 and I go to check it out to see what the noise was. we open the shed and one of @PERSON1's dirt bikes had fallen over. @PERSON1 and I pull the dirt bike out of the old spider-web infested shed. @PERSON1 and i both got a light-bulb above our heads and suddenly looked up at each other with the same idea. not being so smart we figure @LOCATION1 can just ride the dirt bike the three mils back to my house on main roads and he will be fine. @PERSON1 tells @PERSON1 about are idea and @PERSON1 says its a bad idea because he mom is not home and he doesn't want us getting in trouble for a phone charger. @PERSON1 repeatedly tells us to put the dirt bikes back, but next thing you know @LOCATION1 has the bike out front testing it out around the neighbor hood. I tell @LOCATION1 ""since there is only one dirt bike you take it and ill follow on the @CAPS1 bike!"" next thing you know me and @PERSON1 are side by side riding a dirt bike and a @CAPS1 bike down the busiest road in town and its pitch black outside. ""@PERSON1 you go and ill meet you there!"" i yell. @PERSON1 takes off down the road at about @NUM1 mph and im about @NUM1 yards behind him. suddenly I see a white figure start to creep out from a driveway, i cant quite make out what it is... When suddenly i see flashing red and blue lights! i try to warn @LOCATION1 and shout ""@PERSON1 @NUM3!!!"" yet he is to far away to hear me but since its pitch black outside the lights light up the whole street, @LOCATION1 tries to loose him by going down a side road but its no match for a charger cop car. It's out of my hands now so I bike back to jeremys house and get him and we run the the scene of the crime to see whats happening. we keep are distance and act like we don't know him. the cop has @PERSON1 in cuffs standing behind the cop car and the cop goes back to his car to write @PERSON1 a ticket and I see @LOCATION1 shadows under the street light throw something into the bush's.. Since it wasn't his dirt bike and he couldn't ride it him the cop calls a tow truck and has him take the bike and the cop gives @LOCATION1 a ride home with @MONEY1 in tickets.. As soon as they leave the scene I go check to see what @LOCATION1 threw in the bush's and it was a can of chew because he is a minor.. so i grab it. the next day @LOCATION1 is home and his parents are at work so I bring him his chew, and he starts to tel us what his mom punished him with when suddenly we heard the garage door start to open; his mom was home from work so i hand him his chew and I run out the backyard and over the fence. he tells me to not tell to many people because he doesn't want everyone knowing but its already the talk of the town..." 16 18 34 4 3 4 4 3 3 3 3 4 4 4 4 +21161 8 " It was a day like any other. I was going to chess club to challenge the board one holder. I had never piercingly met him for I was new to the club, but I knew that if I didn't play @CAPS7 best I would lose. I entered the room hoping to see that the holder was not there, @CAPS2 was. @CAPS2 had on a blue baseball cap, a blue t-shirt, a pair of blue jeans, and a pair of black shoes. His hair was as dark as his shoes and looked as if @CAPS2 had not brushed it in years, his skin was very pale I wondered how @CAPS2 could go out in sun with out some way to block it. The board was set up and ready, @CAPS1 was the clock. the clock had an hour on each side. I walked up to him, @CAPS2 didn't even seem to notice me until I spoke, ""@CAPS1 @CAPS12 guna beat me fast. I know I'm guna lose."" @CAPS2 just sat there, staring at me like I had insulted him. ""@CAPS1,"" @CAPS2 scoffed, ""your the kid they think can beat me."" ""I guess. I never really thought about it."" I was unsure as to why that would mater, but I was playing him, @CAPS1 I was absolutely sure that it was or was going to mater very soon. ""@CAPS4 please take @CAPS12 seat @CAPS1 we can begin the matches!"" the coach called out, ""@CAPS5, we all know the rules, the black player @MONTH1 start the white @CAPS4 clocks. No talking."" ""@CAPS1."" I said, ""your name is what."" ""@CAPS7 name is @CAPS8."" I hit the clock. Expecting him to be like lightning and move, I moved @CAPS7 piece. Bad move. @CAPS2 called and pointed out that I had moved a piece when it was not @CAPS7 turn. The coach came up to the clock and pressed some buttons, @CAPS2 didn't even look like @CAPS2 cared about the game and if a board ten holder could beat a board one holder. When @CAPS2 set the clock down the clock showed fifty to fifty five. I was already down on time and the game hadn't even really began. @CAPS8 picked up the kings bishops pawn and moved it up one square. @CAPS2 hit the clock like lightning. That was wired @CAPS2 moved the weakest piece on the board. I had to stop and think for a vary long time or what felt like it. I looked over at the clock to see how I was doing on time. It was terrible I had been sitting there for about ten minutes and I hadn't even moved one lousy piece. @CAPS1 I picked up @CAPS7 king's pawn and moved up two squares hopping @CAPS2 wouldn't do anything that could hurt @CAPS7 in @CAPS13 game. I hit @CAPS7 clock. We sat there for what must have been half an hour. @CAPS1 I got up and went to the bathroom. When I came back I checked on how the other @CAPS4 were doing. Only one game was done it was @PERSON1 and a kid I didn't know. I asked who won, it was the kid I didn't know as odd as that was I had to get back to @CAPS7 game. @CAPS2 still hadn't moved, for a minute I thought @CAPS2 was having a problem breathing. @CAPS2 let out a yawn and moved his king's knight's pawn up two squares and hit the clock. That was weird, @CAPS2 just did fools @CAPS10. I didn't think for a minute, I piked up @CAPS7 queen and brought it all the way to one square in front of his rook pawn. I said ""@CAPS9 @CAPS10."" in a loud voice. @CAPS2 started to laugh, at first I was confused for I beat him.Then @CAPS2 said,""I do @CAPS13 with every one I play for the first time, @CAPS13 opening.""@CAPS2 started to laugh again, @CAPS13 time I joined him we both were laughing because I beat him. Then @CAPS2 said, ""@CAPS12 are the first one to see that they could win in the first two."" That surprised me I thought that @CAPS2 won all the time when really @CAPS2 had been giving people games and the didn't know it. We started to laugh again, the coach came over and saw that I won @CAPS2 said good job and walked away. @CAPS8 said, ""@CAPS13 is the start of a new beginning I can quit board one now for there is someone who can beat me."" @CAPS2 walked up to the coach and must have told him that @CAPS2 wanted me on board one for now I'm on board one and @CAPS7 new friend, @CAPS8 is there with me on board two. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21163 8 " ""Laughter is the shortest distance between two people."" Many people say that laughter is the key to life. If you can't laugh, then you are not a fun person to be around. Many other people believe that laughter is a very important part of relationships that they are having. In my opinion, I think that laughter is very important also. It lightens the mood in awkward situations, and laughter also just makes you and other people happy. And I personally, would rather be around a happy person, than one that isn't. A few days ago, my mom, sister and I decided to go to the bowling alley in @LOCATION1. We were all three invited to go, along with about @NUM1 other women from the @ORGANIZATION1 we attend. We attend the @ORGANIZATION1. We had all made reservations at @CAPS1 @CAPS2 at @NUM2 @CAPS3. We arrived first and sat there and waited for about @NUM3 minutes. Then finally we seen some of our friends walking in. We ran over there to greet them and to show them where we were sitting. Our friends started getting their bowling shoes from the counter and then they ventured over towards us. Once all our friends got there, we began to bowl. We had a total of three @CAPS2 for everyone. My mom, sister and I were all three at one lane, and with us was two other friends. The first game we bowled a normal game. As usual, everyone was getting strikes except for me. I was getting pretty discouraged. So our second game around and we all decided to change the rules up a little bit. This round we could not bowl like we normally do. Each time it is our turn we have come up with a new way and new position of sending the ball down the lane. After awhile everyone was running out of things to try so people started laying and sitting on bowling balls and then sending a different ball down the lane. That was really hard. Towards the end of the second game, everyone was tired. Their arms hurt and so did their fingers. My last frame I got up and picked the ball I wanted to use. I waited for the people in the @CAPS2 next to me to get done with their turn and then I went up to bowl. I got ready, and brought my arm back before I flung the ball down the lane. Just as I did that, my fingers let go of the ball and I dropped it. The whole side of the bowling alley I was on just busted up laughing. I was so embarrassed. My face was beet red. It was horrible. Then on my next turn I brought ball back, and then brought it forward and I literally threw it into the other lane. I fell to the floor laughing my head off. It was so funny. That night by far, was the best night I have had in quite a long while. " 20 19 40 40 4 4 5 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 +21164 8 "The @CAPS1 We @CAPS2 in @CAPS3 Laughter is a usual @CAPS1 used in many different ways, to release tension, to appreciate a funny joke, or maybe just to express a giggly mood. I find that laughter is the key to having a close relationship with people. It could be because each persons laugh is personal and every time someone laughs they aren't thinking about how they look or what they should say next to fill the awkward silence, their guard is completely down for just an instant. Growing up with my father has proven this fact to me by having our relationship based off of laughing our problems, or difficulties with one another, away. Although I @CAPS2 a good relationship with my @CAPS4 the relationship with my @CAPS7 has always been a silent and guarded one because we @CAPS2 been unsuccessful in bringing humor to the relationship. Which proves to me the point that laughter and humor are two very important things in creating a bond between two people. Ever since I was a young girl my father and I @CAPS2 always been very close and I @CAPS2 begun to realize that whenever I speak of him to an adult or anyone really, they will know him. Everyone always seems to know my @CAPS4. It might be because of his humor, or maybe because older women find him attractive, or maybe because he's nice, either way he's been popular his whole life. Also, ever since I've known my @CAPS4 he has never been much of a serious type of guy, he will make some sort of humorous comment or joke no matter the circumstance. It doesn't matter if I'm sad, or enraged under the spell of my adolescence and hormones, my mood will completely change and because of this it has shown me the power of laughter. The relationship between my @CAPS7 and I, however, has always been a rocky one, for several reasons I'm sure but one of them I believe is we were never capable of laughing together, or enjoying ourselves. See, she comes from @LOCATION1, @LOCATION2 and in @LOCATION3 things are done a bit differently. Laughing or fooling around for instance is considered being disrespectful or immature, everyone is to act properly and children are to respect their elders. So when my @CAPS4 married her, I introduced her to sarcasm and jokes. I never got the reaction I was looking for, and since there was never that connection through laughs and humor I felt guarded around her. I @CAPS2 never been able to feel like I can express myself around her. I constantly feel judged and awkward and this has allowed me to see the effects of absence of laughter. A human beings laughter is emotional and personal, like crying, it immediately allows you to feel happy, sort of like a drug. Once you get someone to laugh you are allowing them to open up to you in a small way, and not only are they opening up to you, but by the good reaction you received you begin to create a connection with them. If there is no laughter in a relationship with two people it tends to get awkward and neither person can feel comfortable opening up to each other. Since I am my @CAPS9 daughter, I tend to apply jokes in the same way he does. When there's tension, when someone's upset and I want to immediately solve the problem, I make them laugh. Someone once said that ""Laughter is the shortest distance between two people"", how I interpret this quote is that laughter is the one @CAPS1 everyone enjoys doing, it can either build or keep relationships going. It's the one @CAPS1 we will always @CAPS2 in @CAPS3. So c'mon guys laugh a little." 20 25 45 4 4 4 4 4 4 5 5 5 4 5 5 +21166 8 " The day was not a fun one. We all just heard really bad news. None of us were even close to smiling. None of us. Even the people that you always see smiling, they had the most serious look on they're face. it was just a bad day. But then one of our friends, @PERSON1, had a great idea of going online to find something to cheer us up. It truly was a amazing idea. We spent hours on the computer just sitting there looking up ridiculous videos that we knew about. Trying to make each other laugh. That's when our day started to be a bit better. But it went back down a bit when a few people left to go home. Only three of us were still at @LOCATION1's house. @PERSON2, @PERSON1, and I were all sitting there watching @LOCATION2 when a show we all loved came on. Psych. It was a new episode too! what a great day it turned out to be. The show is full of really puny and dumb humor but it fit all three of us. @PERSON1 the most. We were all laughing and having a good time. @PERSON1 was laughing after the show was over. So we asked what was so funny. He just kept laughing. For five minuets he was laughing. when he finally stopped we asked again. What was so darn funny. then he told us. "" I was laughing at my own laugh. I sound really weird. "" that's when we all started laughing. how could he be laughing at his own laugh. we soon realized how hard it was to stop. it turned out to be a okay day after all of what happened. Now, when ever we are having a bad day. we just bring up that day where we laughed at our selves for ten minuets. And the day is all better." 15 16 31 3 3 4 3 3 3 3 3 4 4 4 3 +21167 8 " Recently over the @DATE2 of @DATE1 I was fortunate enough to meet my uncle whom I have never consciously met. This to me was a major part of learning about my family because I met up with not only my uncle , but my legitimate comedian aunt who I have known since I could remember ,and my father at a local @CAPS1 restaurant called @ORGANIZATION2. These three were all siblings, and this allowed me to peer into what siblings will joke about , talk about , and bring forth a feeling of nostalgia for each other. I myself have a stepsister, but the degree of nonsense being presented before me was of a much greater magnitude than I could ever fathom. Everyone was constantly in a state of laughter from the stories of the shenanigans that my father and his brother and @CAPS2 managed to get into. At one point I started having a very hard time breathing.The stories and all-together bad jokes being distributed made me understand that in my family there have been a long line of relatives who inherited some gene that forces us to tell bad jokes. Not even inappropriate but plain stupid jokes. I realized that my children will be telling bad jokes. We dined there for a couple of hours before my dad had to leave for his home up in @LOCATION3, and I needed to be taken home to my family here in @LOCATION4. But tomorrow was planned for a day of exploration of @ORGANIZATION3 and plenty of stupid jokes to be exchanged. I woke up the next day got dressed and prepared myself for laughter I was aware I would be keeling over because of. When I met with uncle and my aunt as well as my uncle's girlfriend we set off towards the fish hatchery on what I believe was the @LOCATION1. All the jokes started slow because everyone was tired and still waking for the rest of the day's trip. We arrived at the hatchery and we began by feeding some fish they have out in a pond.We watched the fish as they swam around in their concrete canals for at least twenty minutes. We then progressed through the hatchery and soon returned to the car and made our trip to @ORGANIZATION1. Once we had parked outside the @ORGANIZATION1 we could hear the beautiful sound of rushing, so beautiful I really needed to pee. We walked along the paths and eventually climbed up a an outlined path to get a get closer view of the @ORGANIZATION1 and we were enthralled. I was being tortured by the thought of using the restroom. I was able to hold it, but it shortened our visit to the @ORGANIZATION1 which was an inconvenience to everyone else but they obliged. I will remember the @ORGANIZATION1 for it's pure natural beauty. After visiting the @ORGANIZATION1 we were going to the very tourist friendly town of @CAPS2's @ORGANIZATION3. We drove by and I nearly lost my mind when I saw the alpacas. Before we did anything at @CAPS2's I first found a restroom and we were later all in agreement that we should get something to eat. A @CAPS4 themed restaurant was an obvious choice and we decided to satisfy our hunger at this fine establishment. They seated us and our host was a very nice young woman. we scanned the menu for something that sounded appetizing. I had found this restaurant was a winner of tastiest burger awards. Falling into temptation I had to order one of these burgers. I do not regret doing this because it was one of the best burgers I have ever had the delight of eating. After satisfying the hunger plaguing us , our group began to browse the gift-shops and the silly novelties that they carried. From bookstores to art galleries to a shop that sold nuts and spices until we came upon an @CAPS5-cream shop. After walking around for the day, @CAPS5-cream was the best thing in our mind to have at the time. I had a very peculiar flavor with berries in it. But I've yet to try a significantly better flavor. When we got our @CAPS5-cream my uncle began to share stories of @LOCATION5 which is where he was visiting from. Quite honestly I wish I could have gone back with him to @LOCATION5, it sounded like a grand city with plenty of places to explore. Sadly I could not, but it is now my goal to eventually visit him where he is living in @LOCATION5. We finished our @CAPS5-cream and then made our way toward the car and drove to @PERSON1 to eat at a very good @CAPS9 restaurant @NUM1o @CAPS10's. We dined there and our stomach was full of exquisite food, almost an entire day of very tasty and savory delights. That was my uncle's @DATE1 day in @LOCATION2. I now wish he would visit more often because of the good time we had on our little expedition across @LOCATION2 with the plethora of bad jokes and stories along with it." 20 20 40 40 4 4 4 3 4 4 4 4 4 5 4 4 4 4 4 4 4 4 +21168 8 " I was late like usual for the bus; barley having any time to sit before it moved. I saw my friends sitting in seats directly behind one in other @CAPS2 I stopped and said to them, ""@CAPS1 guys make it @CAPS2 hard to choose."" I smiled sarcastically. @PERSON1 who was sitting behind @CAPS3 motioned for me to sit with her. I gave @PERSON1 a quick smile and told her that @CAPS3 and I would turn around and talk with her. @PERSON1 smiled as @CAPS21 leaned her head against my seat. @CAPS3 and I gave @PERSON1 about five minutes of quiet, then we started talking with her. About the time we arrived at the middle school, we all were having a swell time. Until then @CAPS3 and I were fine! But as soon as the bus left the middle school, we were in an uproar of laughter! Everything @CAPS21 said made me laugh and everything I said made her laugh too! After we left the middle school though, this little sixth grader came to sit in front of us and boy was he annoying! He kept turning around, giving @CAPS3 and I weird stares and asking us how many joints we had smoked. Of course that made @CAPS3 and I crack up even more! I was blabbing about how I had stuff in my biology book. But I was talking about notes! The boy obviously thought I was talking about joints. Well for one, I will not smoke, try it, or let it ever come near me. @CAPS2 I thought it was absolutely hilarious that he thought I meant joints. @CAPS3 who was sitting to the left of me, had her head on the seat crying because @CAPS21 was laughing @CAPS2 hard. Seeing this, I laughed even harder @CAPS2 that the sounds coming out of both of us, were the silent and deadly laughter. The boy still turned around with stares and added eyebrows. As soon as we passed the fruit packing company, he started taking in @CAPS8 to us. Now I'm trying to learn @CAPS8, @CAPS2 I didn't have the faintest idea of what he was saying to us. Neither did @CAPS3. Of course he didn't know what he was talking about either. He was leaning over in the isle to talk to these native @CAPS8 speakers who were also watching us with huge smiles on their faces. Being the comedian that I am, I decided to start talking about how he could know more @CAPS8, then me when he was only in sixth grade!He of course quieted right down, but the @CAPS8 speakers were howling with laughter. I mean I was shedding tears the time @CAPS3 got off the bus. After @CAPS21 got off, I decided to check in on ol' @PERSON1. @CAPS21 looked like @CAPS21 was trying to sleep, @CAPS2 I gently nudged her and @CAPS21 looked up at me. I had personally forgotten about @PERSON1 in the back until @CAPS3 got off at her stop. ""@CAPS16 @CAPS1 @CAPS17.k? Do @CAPS1 need a doctor?"" @PERSON1 asked with a confused grin on her face.I tried to talk, but was laughing in between all of my words,@CAPS2 it came out as pea soup! ""@CAPS17.k, now @CAPS1 really scare me!"" @PERSON1 retorted with a serious face. ""@CAPS18 come on @PERSON1! I'm suppose to scare @CAPS1! The freshman scare sophomores, sophomores - juniors,and juniors scare the seniors?"" I explained, laughing in between it all. Still my @CAPS19 sounded like pea soup. ""@CAPS20, but @CAPS1 still scare my personally. Don't do that!"" @CAPS21 belted out laughing. I had put my face over the seat, then lowered my head @CAPS2 that all @CAPS21 could see were my eyes. I then did my @CAPS22 @CAPS23 eyebrow thing in which I move my eyebrows from one side of my forehead to the other, in a wave motion. I thought that I was making her laugh! Which I was, but the outburst made even more people look at us. I mean the attention was fine. But the boy still would interrupt @PERSON1 and I. He was just blurt out,"" @CAPS24 bueno? @CAPS24 bueno?"" @PERSON1 and I again would just look at him. He of course was soaking all the attention in. He then I think, insulted my mother, which @PERSON1 pointed out.But I didn't care at that point because I was in such a happy mood, that I wasn't going to let someone who I didn't even know, ruin it. Both @PERSON1 and I looked up to see her stop coming up. It was really something to think back to all we have done together on the bus. The famous disappearing bus driver ride was a hilarious day and @CAPS2 was the proof reading my @CAPS19 paper bus ride. Good times. I told her this as @CAPS21 was getting off the bus. @CAPS21 laughed and @CAPS2 did I. Finally, when the bus reached my stop, I crossed over the road and headed home. For fun I decided to look back at the bus. I did and saw the boy starring at me. I lost it then." 20 15 40 40 4 4 5 4 4 4 3 3 3 3 3 3 4 4 5 4 4 4 +21170 8 " I met my best friend @PERSON2 when we were in kindergarten. At the time we were both shy, and we looked to one another for comfort. Little did we know the acquaintances we made with each other would soon blossom into a wonderful friendship full of good memories, and plenty of laughter. Last @DATE1, my family took a trip to my grandparents' house in @LOCATION1, @LOCATION3. My grandparents usually only used the house once a year in the @DATE2, so while they were home in @LOCATION4 my parents decided to take advantage of the empty house. Both of my siblings are in their twenties and are busy with college, so my parents invited @PERSON2 to attend. We were so excited, for this was our first time to @LOCATION3 together. @PERSON2 and I had many activities planned and I couldn't wait to show her around @ORGANIZATION1 (@LOCATION1 @PERSON1). The only downside of the trip was that we would be driving, we would be in the car for about @NUM1 hours. I had known this since we used to go to @ORGANIZATION1 a lot when I was little so I brought along a notebook that we could draw in and write in. By the time we got to @ORGANIZATION1 that notebook had been filled from cover to cover with drawings and funny sayings that @PERSON2 and I had quoted each other for. @PERSON2 and I have an odd kind of humor, we think everything is funny when were together. It can be the most ridiculous thing and we will burst out laughing and no one will know why. Finally, a good @NUM1 hours later we arrived in @LOCATION2, it was late though and we had to unpack, therefore I wouldn't be showing @PERSON2 around until the next day. That didn't mean our night wasn't exciting, in the backyard of the house there is a pool house, and in order to keep someone at the home when no one is there my grandparents rent out the pool house. My parents had known that a man named @CAPS1 lived in the pool house. None of us had met him, only heard stories from when my brother lived in the main house when he attended college in @ORGANIZATION1. That night my mom asked me to go get my dad from the back yard because dinner was ready, it was dark outside so I made @PERSON2 come with me. When we got outside we saw my dad had introduced himself to @CAPS1. @CAPS1 looked exactly how I imagined him, he had on red shorts, no shoes and a peach colored t-shirt. He had sandy blond hair and was pretty scruffy, he looked like a big beach bum. @CAPS1 quickly made his way over to me and @PERSON2 and introduced himself. He was pretty nice and very goofy. Throughout our whole conversation @PERSON2 and I couldn't keep straight faces.@CAPS1 said that he had to go so he wanted to teach us a handshake that he made up. He stuck his hand out and curled his index, ring, and middle finger so that they were in towards his palm and the only remaining fingers sticking out were his pinky and thumb. He gestured us to do the same thing. We all did as he told us and stuck our hands in the center of where we were standing and he tapped his pinky and thumb against our pinkies and thumbs, he said good evening and ran back to the pool house. It was very odd, but so funny that my dad, @PERSON2 and I still do this on occasion. The next day, I took @PERSON2 downtown, and showed her around. When we were on our way back we stopped inside a craft store, that I, nor @PERSON2 had ever been in. When we walked in it looked like any other average craft store, but as we explored a little more we noticed there was a huge section of armor and helmets that @CAPS3 soldiers wore. Us being big dorks decided that we had to put them on, so we put on the helmets and armor and stood by the windows in the front shop and waved at people. The ladies working in the craft shop were laughing at us and it had us laughing at ourselves too. We fell down from laughing so hard, at this point the people who were working were not laughing anymore they were mad that we had fallen while wearing the armor. They came over and told us to take it off and that we needed to leave. We did what they told us to do. By the end of the trip we had made so many memories, and we couldn't wait to return the following year. In my opinion laughter is very important in relationships, it is healthy and it means that sometimes you don't need words to express how you feel. This @DATE1 @PERSON2 and I will be returning to @LOCATION1 @PERSON1 and are looking forward to many new memories and laughs that we will share. " 22 17 39 5 5 5 4 4 4 4 4 4 4 3 3 +21171 8 " In the @DATE1 on the month of @DATE2, I experienced laughter on a grand scale. If I recall the memories correctly, the event began on the day of @CAPS1, when my family gathered for a celebration. The day began normally as any @CAPS1, when all were busy attempting to prepare for a feast, and I lobbying around, careless and oblivious to the world around me. Even so, I am able to work with my parents and complete the preparations for that day. It was a sudden burst of joy that finally did me in. A burst of laughter and joy came to me without reason or sanity, I just enjoyed. People, my family, looked upon me with confused eyes, bewildered by my actions and expressions, kept distance from me. Though I continued I still felt a sense of worry, for if I had lost my mind they too would lose faith in my social prowess. For that very day, I noticed a different side to me, a side that I wish would vanish from my being. Never again will I look into a mirror and unto myself, see the sane person I use to acknowledge. The day after the bizarre and unkind gesture I had made among my peers, I attempted to apologize for my actions. Although the first attempt seemed to startle them, seemingly due to the nature of my conversations and excuses made during the short interviews. So onward I continued in my life, again oblivious to my surroundings, yet it differed in my earlier life. I felt a kind and gentle side of myself be released, a relentless stress was lifted from my shoulders and allowed me to continue in my daily life. This is when I noticed another person burrowed into my soul, my alter-ego coming to light and possessing my body. This other being, this alter-ego, I gave the name @PERSON1, and with these new emotions that came with I accomplished great feats. Even today he sometimes comes out in times when I have accomplished feats of knowledge or endurance. He gives strength to me, by providing a promise of laughter to me and all peers surrounding me. I view him, as not another person so to say, however as another part of my being. Never before that day did this other side of me come into light so clearly and with such promise. I do believe that we all have this person, this personality within us, empowering us to drive forth and never look back.End." 20 15 35 4 4 4 4 4 4 3 3 3 3 3 3 +21174 8 " Laughter is the Shortest Distance Between Two People A thing we have done since birth is laugh. Laughter is something incredible in the world of human existence, it is something that relieves awkward situations, brings people together, and makes life a little bit easier. Laughter is something that everyone shares in common. Some people find laughter in different things than others but still we can all laugh together. Many times in my life has laughter helped me through tough situations, brought me close to someone, and just made life more enjoyable. I remember once I was trying out for a volleyball team. It was the first day of tryouts and I was really nervous because I didn't know anyone. I had never even heard of these people and now I was going to be competing against them. There was one thing I knew about them though. It was that we all shared a common goal of making the team and being successful. Tryouts began and I felt like they were wondering why I was even there, but I ignored them and just kept working hard. Tryouts went okay for the rest of the week but still something just didn't feel right. I still felt like I didn't belong there. It was the last day of tryouts and the girls had warmed up a little, but I still felt a little uncomfortable. After the last practice it was time to announce the teams. I was really nervous cause what if I didn't make it? Or what if I did, but everyone hated me on the team? He announced the names and I was beginning to give up hope when he said my name. I was so excited, but the girls seemed to be annoyed by my name getting called. When I got home I told my parents and they were excited for me. I then told them how I didn't really know anybody and kind of felt like an outsider. They asked me if I had tried talking to anyone, and I said no not really they didn't try talking to me so I thought why should I? My mom then told me that I could only get to know them if put myself out there. I thought about it and realized I really hadn't. I ignored them as much as they ignored me. I also wasn't myself, because I really am a cool person and I am fun to be around, I just for some reason I crawled into a shell this time. I decided the next day at practice I would put myself out there. The next practice I showed up and was partnered up with a girl named @PERSON1. It was so awkward and at first we were just quiet passing the ball back an forth. Then I started talking to her and making jokes she laughed and I laughed and we had a great time. The rest of the practice went great. The awkward moments faded away into laughter. We all worked hard and joked around with each other, laughed, and I really felt like we were bonding. They laughter had brought us together. All this time it felt like we were so far away and different and really it wasn't like that at all. Having fun and laughing together showed us how much we had in common and that we were all the same. I believe that day that laughter brought our team together. I will never forget that day. It was the day I learned how important laughter was in a relationship, getting to know someone, and how well it brings people together. That season of volleyball I made many new friends. I also learned a valuable lesson that and awkward situation can always be turned around by laughter. Today I still talk to those girls on the team and still today we all laugh together, just because you known someone for a while doesn't mean the fun and laughter has to fade away, because I believe it should get stronger. Whenever I am meeting new people I always try to break the ice and lighten up the mood with something funny, because I think that a big point in our lives is to be happy, have fun, and all laugh togther. That is exactly what I plan to do." 20 22 42 4 4 4 4 4 4 5 5 5 4 4 4 +21175 8 " Day after day, people laugh. For many different reasons, only those who are laughing @MONTH1 know.There have been times in everyone's lives, where they just need to laugh. Maybe because we are upset, or to make a situation more comfortable, to get to know someone better, even to just get a conversation started. I was @NUM1 years old, I was finally hired for a job. I am now an employee for @ORGANIZATION1. Being the youngest guy @CAPS1 the crew, I had to make an impression. I didn't know @CAPS11 to do. My first few days were awkward and silent.I was so nervous, i kept thinking to myself "" @CAPS11 am I doing, I don't belong here. I don't know anyone, don't knowwhat i am doing."" @CAPS1 one of the hottest days of the year, we had finished our work for the day and everyone @CAPS1 the crewwas going to the river. I wasn't planning @CAPS1 going, until @CAPS2, one of the guys that i will also be going to school with came up to me and said "" hey @CAPS3 @CAPS21 need a ride to the river?"" and @CAPS6 laughed. "" @CAPS4 could @CAPS21 give me a ride to my house to grab a pair of shorts?"" I replied. "" @CAPS5 I'll lend @CAPS21 a pair."" @CAPS6 said. "" I don't think @CAPS21'll have a pair that will fit my fat ass."" I replied. "" @CAPS7 @CAPS7 @CAPS17 i do lets go."" @CAPS6 said @CAPS2, and I walked over to his truck and went to his house. I noticed something as soon as I got into his truck, a bottle with @CAPS11 I thought was coffee in it. I asked him. "" @CAPS10 do @CAPS21 need coffee in the morning?"" I said "" @CAPS11 are @CAPS21 talking about?"" @CAPS6 replied "" The bottle."" I said "" @CAPS7 @CAPS7 @CAPS21 dumb ass, that's not coffee that chew spit."" @CAPS6 repliedI just left it at that. We got to his house, walked in through the garage, and there was the cutest dog i had ever seen,her name was @ORGANIZATION3. She followed us though the house, and @CAPS6 gave me the tour. Then handed me a pair of shorts and we went @CAPS1 our way. We all met back up at work, and went from there. This being my first time going to the river with them, I saw so much of the property that i had never seen before. We went past our hay barn and down a gravel road. to this gate, which led to the river. I had never seen the gate, I'm riding in the bed of @CAPS2's truck, bouncing around. The road has so many ruts. Once we reach the river,everyone starts changing. My bosses daughter is there and our crew leader's girlfriend. And I glance over at them once there dressedand my crew leader, @PERSON1, looks at me and says ""@CAPS16"". and so I turn around and @CAPS6's tossing the cooler at me. I try and @CAPS16 the cooler but it throws me to my butt. Everyone starts laughing even I do, @CAPS6 comes over and helps me up and says, "" that's for looking at my cousin and girlfriend."""" @CAPS17 I looked, hell i aint got no chance of hooking up with them anyway"" I replied. Everyone laughed, and that's how we started out day at the river. In a great mood. We sit around and listen to music talking and having fun.Then @CAPS2 and @PERSON1, start floating down the river. So we all go, all of us trying to @CAPS16 up. We finally do all of us are sore from the rocks @CAPS1 our rears. There is this log I see, sitting in the river. I climb to the top, and try a back flip. Only to show off of course. some how @CAPS19 perfectly in the river. All of us start jumping off and having a good old time. It starts to get dark, and we get to the bank, start walking back. everyone going a different way because we all know the best way back.we all finally make it back. And go up to @CAPS6 house, once we reach the house, they decide we're going out to eat. Once we get to @ORGANIZATION2 all order, @PERSON1 says to me "" @CAPS20 o, @CAPS21 know we were all kinda worried about @CAPS21, @CAPS21 never spoke."" "" I had nothing to say"" I replied."" @CAPS21 know, your gonna get yourself in trouble checking out a guys family and girl"". @CAPS6 said."" I know, but i cant help it"". I replied. I looked over at his cousin and winked."" @CAPS21 have some balls, but I'm glad @CAPS21 @CAPS1 the crew"". @CAPS6 said. That's when I knew, I was finally welcomed. That night I stayed at @CAPS2's, and we just sat up watching @CAPS24 and joking back and forth.Now after looking back, I see that a good sense of humor can go a long ways. creates a good relationship. Now to me @CAPS2 is an olderto me." 18 20 38 3 3 3 4 4 4 4 4 4 4 4 4 +21176 8 " Laughter is how me and my friends connect most of the time, and that's how i became friends with a lot of them. You know when your in a new class and you don't know anybody in there so its kinda awkward because you feel like your a loner. I try to make the best of a situation and try to make new friends but I'm not always the best at it, so when i get a chance i make them laugh. First we take baby steps and the more we laugh together it seems like the closer we are to each other. By the end of the semester you don't really like the class but you don't want it to be over because you made such a good friend. The next semester you find out you have a class with that person but they don't like the class so they move out. Then you realize you guys kinda grow apart because you never see each other and if you never talk then it gets kinda awkward. The way we started off our friendship was really by accident but i didn't know many people in the class and the people that i did know weren't really my friends. We sat by each other, and after so long of awkward silence between us two she made a joke and i started to laugh. The next thing we know is within a week and would talk to each other and soon enough we hung out some. About half way through the semester we would get in trouble in class for talking to much and we started to realize we were starting to be best friends. The semester went on and we were hanging out more and more and she was the only one i would hang out with sometimes. By the time the semester was almost over we didn't know what our classes were so we thought we would be split up. The day we got our schedules we talked to each other and seen what our classes were. We seen we had one class together and we were excited. The first day of the second semester we went into the art class that we had together and we were laughing the whole time. At the end of the period she told me she didn't want to be in that class because shes not an artsy type of person. I went to my sixth period and was wondering if she was actually going to switch out like she said or not. At the end of sixth period I seen her and she told me that she got switched out and went to a class that she wanted. I know people in that class still but its not the same because I knew we were going to lose our friendship because we would never see each other. Its a couple weeks into the last semester and we hardly ever talk sometimes it gets awkward just to be around her because its not like how it used to be. Laughter is how me and her became friends and classes is what tore us apart." 19 15 34 3 4 4 4 4 4 3 3 3 3 3 3 +21177 8 "The mood was sweet and the room was worm with most of my family and friends. except for my brother and at the time i was only about @NUM1 or @NUM2? Hell i can't really remember so I'm just going to guess on the age. Whatever getting back to the story, so I'm looking all around our @NUM1 story house trying to find my brother but for some reason this time it just seems impossible. And all I can hear in the back ground is my family laughing as this little @NUM1 or @NUM2 year old is running full speed up and down hallways and opening and closing doors to rooms that hes never been in be for. And also shouting at the top of his lungs ""@CAPS1 where you be at i can't finded you"". And with one more door to open that's at the beginning of the hallway where every one is sitting or standing. This little boy comes running down the hall in a panic who can't find his brother. And opens up the door and out pops @PERSON1 his brother who is wearing the scary monster mask and says ""I will get you tonight if you don't eat all your dinner"". So know what I did just as he told me to do. I ate my dinner so fast I ended up throwing up because a was so scared that he was going to come after me that night! And the funny thing is that this happened for the @DATE1 of my life so that the funny thing." 12 15 26 26 1 2 3 3 3 3 3 3 3 3 3 3 2 2 3 3 3 3 +21178 8 " @CAPS1 is laughter important? In my opinion, laughter is very important! How could laughter affect someones life? If there was any, or not? Also, @CAPS1 is laughter important to me? Laughter is important for so many reasons. In a relationship, every day life, and with the ones you have in your life. How would the world be if there wasn't any laughter in this world? It would be very dry and dull. It helps connect people together, if they have the same sense of humor. Having a good sense of humor is very important these days. A lot of people use sarcasm which isn't ""laughter"" but to some people it could be or some could feel hurt by it. However, most people that feel hurt by it,don't have a sense of humor in any way, shape or form. Most people have heard the saying, ""it takes more muscles to frown then smile,"" that is a very true and factual fact! Having a glorious relationship is the best thing with my significant other. The affectionate that he can be by sharing our laughter together, brings us closer to a point where we couldn't be at all if there wasn't for laughter and communication. Having a a sense of humor is a important thing in a relationship, to most people. @CAPS1 would you want to be with someone who bores you? Who @CAPS2't make you laugh when your sad? I sure wouldn't want that. Laughter brings out great communication skills, by laughing with someone it shows your type of opinion on the subject you are talking about. In a relationship, could you imagine if there wasn't no laughter in it? Would you feel the same about the person your with if there isn't any laughter? How would you feel knowing the person you love isn't very ""humorous"" and @CAPS2't like to laugh often? I couldn't handle that. I would want to love someone who is very funny with a great sense of humor. Laughter is important to me for so many reasons. I would rather be around very ecstatic people then someone who brings me down! I consider, laughter to be one of the most important things in my life, and in my relationship with my significant other. It brings us closer. People ask, "" @CAPS2't it ever get old being happy all the time?"" ""Of course not!"" I would say in defense. @CAPS1 would someone think that way? Being in a phenomenal mood all the time, would be the most amazing place I would want to be in my life and with my partner. In my opinion, I would think that almost everyone would feel close to what I'm saying. However, people have their own opinions about laughter and how and @CAPS1 it's important, there are titled to their opinion. I know a few people, that don't like to be in a very cheery mood, that would prefer to be sad all the time and not care. Laughter could raise you up from that!" 15 16 31 3 3 4 4 3 3 3 4 4 4 3 3 +21179 8 " When i think of a day where laughter was the element, i think of @DATE1. That was one of the worst days of my life. I had plans to break up with my girlfriend. That morning, my decision was final, and i was going to do it. For some reason when i woke up, i felt sick. That day, everything was falling apart. Around @NUM1 @CAPS1, i went to my girlfriends house, and broke up with her. The next day, i couldn't smile to save my life. The whole day my friends were making me smile, and showing me they cared. The next day i felt so much better. I was smiling and laughing like nothing ever happened. All day my friends were telling me jokes, and being really stupid. They made me laugh so much. Throughout those upcoming weeks, i met another girl. I couldn't be anymore positive about my life. All i do now is just smile and laugh. I don't need to live my life with sadness. All i can do is just be positive, and smile. Laughter is very important. No one should go a day without it. Just lets just lives our lives to the fullest, and put the past behind us. Just think on the bright side, and smile." 15 16 31 2 3 3 4 4 3 3 3 3 3 4 3 +21180 8 " My high school @CAPS1 basketball team isn't the best team, but the one thing that we do have, is the ability to make each other laugh. At the start of @DATE1 the school held try outs and the teams were decided. After graduating seniors and some players not coming out, or team was brand new. Full with all different ages of players. we all were civil with each other at practices but we weren't all best friends that wanted to hang out outside of practice. The @CAPS1 team decided to take a retreat to the beach and stay @CAPS2 for a weekend. When we went to leave to the beach our phones were taken and we had assigned seats in the cars. This trip seemed like it was going to be a long one with out my phone. We arrived at the house @TIME1. As we all found somewhere to relax, shower or sleep myself and most of the team ended up in the living room conversing with the coaches. we all sat on the floor recalling stories about the game from that @TIME1 or funny stories from our past. By the time we finished telling stories it had reached @TIME2 and everyone in the house was either tired or hungry. As we sat on the floor complaining about tiredness or hunger we all started to turn our attention to @LOCATION1. @PERSON1 was starting to go on a tirade about how hungry she was. In her opinion she thought the house we were staying in should of already been stoked with food for us for when we got @CAPS2, but @CAPS2 was no food. As she continued on her rant she became more and more mad which made us laugh harder and harder. Finally she reached her point. ""@CAPS2's no steak or chicken up in these mother freak-in cabinets."" @PERSON1 proclaimed. At that point the coaches and players started laughing uncontrollable. @PERSON1 didn't understand why it was so funny, but we kept laughing and laughing at the fact that she just said that @CAPS2 should be steak and chicken in the cabinets. The outburst of laughter continued on for the next five to ten minutes. When we finally started to calm down @PERSON2 came down stairs. She had missed everything that had happened and as we went to fill her in @LOCATION1 stopped us. ""@PERSON2 @CAPS4 up on the counter and look in the cabinet,"" @PERSON1 said. @PERSON2 hesitantly got up on the counter and slowly started to open the cabinet. When she opened the cabinet she looked inside and all she could see was chips. She turned around and looked at @LOCATION1. ""@CAPS3?"" asked @PERSON2. As she turned to @LOCATION1, @PERSON1 just sat @CAPS2 smiling. Then she finally answered the question. ""@CAPS4 me some of those chips right @CAPS2!"" @PERSON1 said. Everyone in the room started laughing as @PERSON2 was so confused to why she was asked to @CAPS4 on a counter just so she could @CAPS4 @PERSON1 chips, who had been sitting next to the counter the whole @TIME1. The whole basketball team started laughing again. @PERSON2 got down from the counter but with no chips in hand. We all continued laughing and kept talking about @CAPS3 had just happened for the next @NUM1 minutes. As everyone finally started to settle into their beds for the @TIME1 @CAPS2 were still those moments of ""@CAPS5 when this was said"", and ""@CAPS5 when she did this"". That first @TIME1 that we spent at the beach did more for us then we realized. By going to the beach and making memories together we were brought together by two common things. The love for basketball, and most of all the ability to be able to come together as a team all because of the memories we shared that @TIME1 in the kitchen. Today we still @CAPS4 on each others nerves and sometimes we lose our tempers with another but, we will always laugh about the crazy things that happened on the trip but the thing we laugh about the most is @CAPS3 happened that @TIME1 in the kitchen. " 20 19 40 40 4 4 4 4 4 4 3 4 3 4 4 4 4 4 4 4 4 4 +21181 8 " It was a regular day in @LOCATION2, @LOCATION1. That special day we were supposed to start our state writing tests. I wasn't necessarily worried about it due to the fact that I have always done good on state testing, and never failed at test for state testing. @CAPS22 it was pretty much a regular day for @PERSON1. But I didn't know @CAPS18 awaited me in the computer lab..... Thanks to new @ORGANIZATION1 state testing laws, we have to take the writing test on the computer. The only place in the school that has enough computers for the whole class to take was the either the @ORGANIZATION1 computer lab, or the old computer lab (I don't know why we used the @ORGANIZATION1 computer lab, but we did). @CAPS22, I was already in a hyper mood because @CAPS1's sense of humor normally cheers me up and puts me in a hyper mood. @CAPS22, as we were walking to the computer lab, me and @CAPS1 started cracking jokes about @PERSON3 mainly because everyone else does, @CAPS22 we just add to the effect. @CAPS19 we reached the computer lab, but the door was locked. @CAPS22 while we waited for @PERSON2 to lock her door and come down to the computer lab, me and @CAPS1 made a few more jokes about @PERSON3, but little did I know the real humor was awaiting for me in the computer lab. When @PERSON2 got to the door and unlocked it, I was the @ORGANIZATION1 to come in and sit down in the seat I desired. @PERSON4 followed next to me, and @CAPS4 next to him. I remember a trick with the computer when you push @CAPS5 @CAPS19 @CAPS6 @CAPS19 @CAPS7 and when it goes to a different screen, you push @CAPS8 and it will put the computer to sleep. I tried it a couple times while he was looking and he would always swat my hand away. After a while, I decided the best way to pull this trick was to make him forget about it, @CAPS19 do it when he was least expecting it. @CAPS22 about @NUM1 minutes later after I planned my trick, I tried it again. I caught him looking away at @CAPS4. @CAPS22 I pushed @CAPS5 @CAPS19 @CAPS6 @CAPS19 @CAPS7. @CAPS19 it went to a different screen and I pushed @CAPS8. My plan had worked. @CAPS19 @PERSON4 turned around right as soon as the computer was going to sleep and freaked out. He started cussing and hitting me. I thought this was mildly funny @CAPS22 I got a couple laughs out of it, but nothing could have prepared me for @CAPS18 was about to happen. After @PERSON4 woke his computer up and got started with his test, @CAPS4 asked @CAPS18 I was laughing about. I told him, ""@CAPS15, you should have seen it. I put @PERSON4's computer to sleep and he flipped out on me."" @CAPS4 laughed and went back to his test. Two minutes went by and @CAPS4 tapped on my shoulder. I looked at him and asked, ""@CAPS18 up kid?"" @CAPS19 @CAPS4 said, ""@CAPS21 this."" @CAPS22 I sat up straight and looked at him. @CAPS19 he asked @PERSON4, ""@CAPS18 did @PERSON1 do to your computer? This?"" and he held the power button down and shut the computer off right in the middle of @PERSON4's test. I thought I was going to cry. It was @CAPS22 funny me and @CAPS4 started laughing as loud as possible. @PERSON2, of course, wasn't happy about it. @CAPS22 she told me and @CAPS4 to quiet down. But it didn't matter. A little scolding didn't compare to how funny it was. @CAPS22 we ended up going back to our own tests. I hope I do good on this. I really need the grade to pass." 15 22 40 40 3 3 4 4 3 3 5 5 5 4 4 4 4 4 4 4 4 4 +21182 8 " Have @CAPS3 ever been in that mood were @CAPS3 just can not stop laughing, and no matter what, @CAPS3 just can't stop? That is the problem my good friend, @PERSON1. @PERSON1 and I have when we are together. Most of the time we are just talking about random things and we both find it hilarious. Luckily, for the teachers, we only have two classes together. In both of those classes we sit next to each other though. So the teachers didn't luck out too much. Just the other day, in @CAPS1 @CAPS2, we were allowed to move are seats around and have that be our new spot in the class. The girl that was sitting next to me moved and sat next to @PERSON1. Now, @ORGANIZATION1 doesn't like this girl very much, so I spoke up and said ""@PERSON1, @CAPS3 can sit next to me!"". @PERSON1 grabbed her stuff in an unusually quick manner, and came and sat next to me. The funny thing was when she sat down she said ""@CAPS3 saved my life."". For some reason @PERSON1 and I just started laughing non-stop. We couldn't control it. To be honest, it wasn't that funny. I guess it was just in the way she said I saved her life. I'm glad @PERSON1 sits next to me in @CAPS1 @CAPS2. With out her, it would be so boring. In @CAPS6, we sit next to each other and we have a good time. Our @CAPS6 class is at the end of the day so we are just ready to go home by then. @PERSON1 and I sit next to each other and when we are taking notes, @PERSON1 and I pass notes back-and-forth to each other. She and I talk about everything, from the predicaments a teenage girl runs into in high school, to boys and parents. I can pretty much tell her everything, and that's a good friend. Over the years @PERSON1 and I have become closer and closer friends. Last year, she and I had at least three or four classes together. So we have been in classes together previously. @PERSON1 and I have become more acquainted and more open with things. I tell her everything and she tells me everything. One reason why I think we've become good friends is because she and I find the same things funny. We have the same interests in things.She is a good friend and I'm glad she's my friend . Laughter is the shortest distance between two people. I am going to definitely have to agree with that." 15 16 31 3 3 3 3 3 3 3 3 4 4 4 3 +21183 8 " Hi my name is @CAPS1. I am just an ordinary girl with a story like every other girls. I'm writing this because this story means something to me and I would like to share @CAPS2. Honestly I depend on a good laugh during my day. Without laughter life would never be the same for me. Laughing has brought me to who I am today. Not only has @CAPS2 made me the person I am but @CAPS2 has brought me to all my friends and the people I love. For example I use laughter between me and my boyfriend @PERSON1. @PERSON1 and I are just like any other couple. We have fun, do stuff together and we argue. The worst part is when we fight. just like everyone else we have hard time and we have good times. Our hard times all start when we wake up. When i wake up its still really dark outside. The smell of fresh @TIME1 air makes me feel refreshed. I always feel like the happiest girl in the world. A little while after i wake up i text @PERSON1 good @TIME1 and we usually, always talk through out the @TIME1. Some times he comes to see me or i just see him at school. When i see him i am happy and my toes curl. We will go for a walk and talk about everything and anything, just life. At this point he thinks its time to say something funny. So he does, he will make fun of how i look, what i am wearing and what i say. He doesn't find @CAPS2 hurtful but to me @CAPS2 is. Many times i might even say something mean back which doesn't help @CAPS2 just makes @CAPS2 worse. Not long goes by, maybe a few seconds and we start to fight. He doesn't understand he has hurt me or he doesn't care. @PERSON1 tells me he has done nothing wrong. So i try to explain @CAPS2 and he doesn't listen. I just stop trying and if he realizes how he hurt me or what happened that bothered me that's fine but i am not going to fight anymore so i just stop explaining things. Enough has gone through my mind so i cry, and he gives me a dumbness look. This just makes everything worse so of course our fight breaks out and gets even worse. There is yelling and screaming with tears and mean, rotten words tossed all over the place its a mess. I usually storm of in the middle @CAPS2 cause i cant take anymore. Finally time goes by and we haven't talked all day. We don't have anything to say to each other. Eventually someone gets the nerve to talk or say something to another. Still each of us on edge so i say something stupid or funny to lighten the mood. I will do anything to see a smile on his face, even if we have done each other wrong i still love him and cant stand for @CAPS2 to be like this anymore. Of course he smiles, just what i was looking for this makes me happy and laugh. @PERSON1 will than ask for a hug and so he hugs me even if i don't answer or if i say no, @CAPS2 doesn't matter to him. He apologizes and explains a couple things to me. I feel bad cause i hate the stress and the fight, so we work @CAPS2 out. Now you can see if i didn't have laughter i might be depressed. Without laughter things would be harder and more complicated. But a good laugh or a simple joke can ease things and make them a lot better in life. I just want people to understand what a small laugh can do to your day. If @CAPS2 can change your day in such a big way than @CAPS2 can change your life in a major way. Things @MONTH1 come across as hard of rough. When i look back on my life and see what @CAPS2 has done to me and for me i realize i laughed at something each one of those days even though i was done and @CAPS2 brought me back up again." 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +21185 8 "It's true @CAPS8 they say, time flies when you're having fun. On a particularly warm @DATE1 @TIME1, a rehearsal was in session for the wonderful production of ""The @CAPS1 @CAPS2"" and I was bringing my best friend, @PERSON2 some cheap but delicious food. We talked and ate for a while but eventually it was time for me to go. @CAPS3 we were walking down the stairs to get to the back doors of the building I asked if they needed any help with the play. ""@CAPS3 a matter of fact we do!"" @CAPS7 said enthusiastically. ""We need a ladies costume @CAPS4.""I had absolutely no idea @CAPS8 that meant, but I felt that the position had potential. ""@CAPS5, I can do that. Just one question..."" I said a little confused.""@CAPS6?"" @CAPS7 replied, slightly amused.""@CAPS8 exactly am I going to @CAPS12 doing?"" I asked her.We changed course and headed for the costume room so that @CAPS7 could introduce me to, @PERSON1 who would @CAPS12 my boss for the next two weeks. We arrived to find that @CAPS7 had already gone home for the night. A little exasperated, @PERSON2 told me the basic idea of the job.""@CAPS9 basically @CAPS8's going to happen is that you are going to @CAPS12 in charge of the changing rooms and the costume changes on stage."" @CAPS7 said quickly.""@CAPS11 okay, I can do that."" I replied with confidence.@CAPS3 I began to talk to her more about @CAPS8 I would @CAPS12 doing @CAPS7 said that @CAPS7 had to go because break was over. ""@CAPS12 here at @NUM1 tomorrow morning and you'll learn everything you need!"" @CAPS7 said hurriedly.@CAPS3 @CAPS7 ran off into the theatre I could hear the lead of the play beginning his lines. ""In my younger and more vulnerable years, my father gave me some advice....""I left feeling more happy and excited than I have felt in months. The next morning I made my way to the theatre which is located at the school which I previously attended. It felt odd going back there but at the same time so completely normal. I was even more comforted by knowing that I could see my friends everyday. I could hug them and laugh with them, I could have social interaction! Something that because of online school I have been lacking. I walked into the theatre and @CAPS3 soon @CAPS3 I did I was bombarded with excited people asking why I was there while hugging me tight. ""I'm helping out with the costuming!"" I said just @CAPS3 excited @CAPS3 they were. I broke away from the group of people and found, @PERSON2 who was on stage directing the lighting people. We talked for a while and then @CAPS7 took me to the costume room where, @PERSON1 was waiting for me. @PERSON1, was a classy looking lady. @CAPS7 wore a light grey cardigan and a colored top with some corduroy pants and sensible shoes. Immediately @CAPS7 started to tell me @CAPS8 my duties were and @CAPS8 I was going to @CAPS12 doing that day.""I'm just going to have you watch the rehearsal today, just to get a feel of @CAPS8's going on."" @CAPS7 handed me a pen and a pad of paper""@CAPS15 notes about where the lighting ques are and that kind of thing."" @CAPS7 said.I walked out and wondered to the auditorium and took my seat in the second row of seats. The lights were lowered and rehearsal began. ""In my younger and more vulnerable years, my father gave me some advice...""@CAPS16 I knew it, the end of the day had come and I wasn't in any hurry to leave. The actors and crew were doing such an amazing job with the play but I knew I had my work cut out for me. In the end it all worked out beautifully, we had some good shows and some @CAPS1 shows but the most important part of this experience was the time I got to spend with the people I love. I am going to miss them so much when I'm sitting in my room all alone doing the school work that consumes my happiness and laughter into the internet. on the other hand, I am all lined up to help with the next two productions going on at that old school of mine." 20 22 42 4 4 4 4 4 4 5 5 5 4 4 4 +21186 8 " In life @CAPS13 share many of your moments laughing and enjoying the sweet and gentle sound of the chorus that @CAPS13 and the people in your life share. Laughter can bring @CAPS13 instantly to enjoyment no matter how unbearable the struggles in your life @MONTH1 be. I've had many moments in my life that became enjoyable because of laughing and smiling. But one moment sticks out above the others. This moment is the @CAPS1 before my grandpa passed away. This @CAPS1 was the best of all. It was a white @CAPS1, and for once the snow wasn't the only thing that was gleaming. On this day, everyone in my family was smiling, we were all thankful that my grandpa survived his sudden heart-attack that happened the week before and we all knew that his time was near. We had to make his last @CAPS1 a great one to end on. My grandpa was the sweetest old man, he could always make @CAPS13 smile no matter how sad @CAPS13 were. He was a man, who enjoyed the laughter of his grandchildren and he made sure that he made an impact in our lives. This @CAPS1 though was one where our laughter made the largest impact. On @DATE1, everyone on my dad's side of the family drove over the hills to their destination; my house. The house was covered in @CAPS1 decor and was gleaming with the happiness that each one of us held inside of us. My grandpa was the first to walk in. I leaped into his arms and said ""I love @CAPS13 grandpa with all my heart! Merry @CAPS1!"" @CAPS8 this he smiled and began to tickle me like he always did ever since I was little. He grabbed my hands and began twirling me around, humming his favorite song. As we were twirling to the tune of his favorite song, my laughter broke out. When this happened, I looked straight into my grandpa's eyes and saw the love that he had. He always said that ""The laughter of a young child can always bring joy to anyone, even the cruelest of people."" @CAPS9 we were still twirling, all my other family members walked into the house. They smiled and laughed at us, but we didn't care. This was going to be a great @CAPS1, nothing could ruin it for us. When everyone got into the house we all sat down in the living room sharing stories of all the old and good times that we shared. We all knew that this was what my grandpa needed, and in his eyes we could all see that he was happy that he had a family, that could put away all of the hardships we were going through and allow ourselves to sit as a family and enjoy each other. Everyone was laughing now, remembering the stories that made our family what is was. My aunt @PERSON2 was the one that knew all of them by heart, she could even act them out. My grandpa sat there and laughed. He was filled with enjoyment as he watched his only daughter do what she did best. When dinner was almost ready, my grandpa and I sat down at the dinner table all by ourselves. We began playing the game that we always played. I got underneath the table and hopped up in random seats acting like a cat. My grandpa would always say "" @CAPS11 down @PERSON1, that food isn't for @CAPS13."" then I would go and sit next to him and meow at his side, and we would just laugh. No one else understood the bond that my grandpa and I had. But that didn't matter, every holiday we were the ones that were always laughing; we enjoyed life and we never let anything @CAPS11 to us. He was the only one in my family that understood enjoyment and he helped me live my life that way. Dinner was served and we all took our normal seats. My mother's food looked amazing like usual. My grandpa and I sat right across from each other like we always would and made the most unusual faces at each other. Our laughter filled the room and made that @CAPS1 even better. As we were all finishing our dinner, my grandpa got up and walked to the door looking outside at the beautiful landscape covered in a white blanket. I walked to his side and looked up at him. He smiled down at me and said ""@CAPS13 never realize the beautiful things in life, until your life is fading. The most beautiful thing to me is your laugh. It always brings joy to my heart. If I could only hear one more sound, it would be your laugh @PERSON1, and if I could only see one more thing it would be your smile. I'm happy to be your grandpa and I'm glad that I got to live and see @CAPS13 grow up to be such a beautiful and sweet girl. Always remember, enjoy ever moment. Especially the moments with the ones that @CAPS13 love.""" 21 18 39 5 4 5 4 4 4 4 4 5 4 4 3 +21188 8 " Allot of people say that laughter is a big part of any relationship, and i agree allot of people don't always laugh and in every relationship laughter is a big component to make someones day of the greatest day they have ever had. There is always someone who is having a bad time in school or at home or any other place and when you see someone like that you should always cheer them up like saying something nice or just even saying something like hope you have a good day @DATE3, give them a smile so that can put there bad thing that is avoiding them from laughing aside and you have just made there day by sharing your smile and laughter with them. Allot of people need someone they can go to when they are going through a very hard situation or problem they are going through that they cant go through it alone in there home or even at school and they need someone they can talk to and share there feelings with a shoulder they can cry on and that always makes someone feel good letting all that pain and inner self out to others we all need to make someone who is going through a hard time smile and laugh and that is always something very healthy in a relationship and it is a way to offer that person who is in pain or sad have e healing. This reminds me of a true story i know because i was there. One time there was a girl who i had in my elementary school she was a very happy girl she shared her laughter and happiness with others she was someone anyone could go to when they had a problem or they just needed someone to talk to she was one of the nicest girl in school everyone liked her and she tended to always show love and respect to others it always seemed as if her life was so perfect she had no worries she was just full of joy and she was only child in her family so of course her parents would always give her what she wanted or at least that's what we all thought. It had been a @DATE1 and we it came to be @DATE2 and we were all in school except this girl, she never missed a day of school so it was very strange for her not to be there, but just as every other person she must have been sick so that's what we thought except she missed another day and then another, and another, so i was starting to think she had moved away and she was probably never coming back, but the next week after that she showed up i was very happy to see her i had missed that girl except there was something very different about her she wasn't the same she wasn't laughing or smiling anymore she had lost that sparkle that made her so different. I thought to myself ""what is wrong with her?"" i finally found out that she had been gone because her mom had past away i was so sad i didn't know what to say she was just so happy and from one day to another she didn't have her mom anymore i thought i have both of my parents and she doesn't i should share the happiness she had share with me and others right back to her and be there for her now that she was gong through the hardest time of her life. That's why being happy and sharing your happiness with others always is the greatest thing you can do for someone because you never know what kind of things there going through and they need someone to make them smile and laugh." 17 20 37 4 4 4 3 3 3 4 4 4 4 4 4 +21189 8 " Building the @CAPS1 with Laughter @CAPS2 a very early age my uncle would bring the funniest cards to mine and my brothers birthdays, just to see our reaction. Then when my uncle moved to the west coast, near us, we would piss each other off just see each others reaction. We have always known when each other is having a bad day and when to lift them up when they are down. When my family and I would go back to @CAPS3 at an early age, we would always celebrate each others birthdays with our uncle. He would bring the funniest cards to give us and we would sit there and laugh about them for hours. Then when he moved to @LOCATION1 my older brother, @PERSON1, and I started to get him funny cards to see who had the best one. We got each other cards that had sexual humor to gross humor. We would come to each others birthdays with a grin, @CAPS2 one ear to the other, waiting for the person to open up the card. One year, for his birthday, I got him a card that had some older ladies on it and had some sexual humor towards it. Lets just say nobody has beaten that card. My uncle and I work in the same building but doing way different jobs. He is the sales manager and I put the items together for him to sell. When I walk into work, I always pass by him to see how he is doing. For the most part, he is either laughing or pissed off about something in his day. On days that he is upset and walks outside to make a label for @ORGANIZATION1, I start to make fun of him right away. Sometimes he gets even more angry. But when he does, he always seems to laugh after the fact, or come back at me with a rude remark. Everyday this happens and it always seems to brighten up our days. We bought two season passes to @CAPS4.Hood this year. At first I wasn't very good at skiing, and would always fall. When I would fall, he would board down to me while laughing and I would get very upset. We would laugh on the way home talking about how I would always fall. But as time went on, I slowly got better than him and would be waiting for him at the bottom of the run. One time, when we went up, he just couldn't seem to stay on his board and would fall non-stop. This was the time when I could finally get him back for all the times when he laughed at me for not being able to stay on my skis. I never laughed so hard in my life on that ride home. Coming down and making remarks at him about not being able to stay on his board was one of the most warming things I have ever felt. It wasn't warming for me to make rude remarks. It was warming to me, to see that he couldn't say anything back, because his time finally came to be made fun of. My uncle and I have the relationship we do today, because of his impact on me at an early age. Him being able to make me laugh at his jokes and knowing when to brighten up my day has been one of the best things that has happened to me to date. Changing my life for the best and changing my personality for the best. These laughing experiences have turned our ""uncle-nephew"" relationship into a friend relationship. My life is full of laughter and will be full of laughter for my life because of one person." 19 18 37 3 4 4 4 4 4 4 4 4 4 4 3 +21190 8 " When I was in what I believe to be the sixth grade I went to @ORGANIZATION1. This year I felt as if I was old enough to ride the "" big kid"" rides which I had never done before. I remember walking up to the entrance of the @CAPS1 @CAPS2 hotel with my mom, older sister @PERSON1, @ORGANIZATION1 little sister @CAPS3. We had to go though there because it was the fastest way in to the park. There were to giant stain glass like windows that led into the lobby of the hotel. The door were beautiful. They had an outdoor seen on them there were bears, fish, trees, rivers @ORGANIZATION1 mountains. We all walked in to the hotel. The ceilings must have been twenty feet tall. We walk all the way though the lobby @ORGANIZATION1 followed the signs till we got to the park entrance. There was a man made mountain in the middle shaped like a grizzly bear that one of the rides was built around. It was early in the morning so the @LOCATION1 heat had not yet set in completely. We started out with the smaller rides @ORGANIZATION1 side attractions like it's tough to be a bug @NUM1,shopping in the park @ORGANIZATION1 parades. My mom was determent to get back in time to see @LOCATION2 on stage but we never made it back in time. It was about noon @ORGANIZATION1 the sun was hot. We were making our way to the pier. the song @ORGANIZATION3 by the @CAPS4 @CAPS5 was playing in the back ground. There were old sunscreen advertisements painted on the fence that was surrounding that end of the park. on the opposite side of the pier was a man made ocean that was so blue from all the dye it was unbelievable. It kinda looked like the water in the toilet when you put the blue cleaning product in it. The air smelled like fried food @ORGANIZATION1 popcorn, it was making me @LOCATION3. We continued walking until be got to the roller coaster @ORGANIZATION2'. There was a fifteen minuet wait time for the ride which wasn't long. my older sister @ORGANIZATION1 i jumped in line @ORGANIZATION1 began to wait. I had never been on a roller coaster this big before so I didn't know what to expect. I had butterfly in my stomach, I was getting nervous but didn't want to back down. finally we came to the front of the line. the man standing there working the ride asked ""how many?"". my sister held up two fingers @ORGANIZATION1 the man pointed at the ground next to him @ORGANIZATION1 said ""row eight"". The next set of cars came in @ORGANIZATION1 they ushered us into the the eighth car in the row. I pulled down the safety bar. The ride began. The roller coaster cars pulled around the corner @ORGANIZATION1 stopped. There were speakers on both sides of my head that i had not noticed until the moment sound began to come out of them. It was a mans voice @ORGANIZATION1 some background music. the voice did a count down form ten @ORGANIZATION1 the yelled "" blast off"" @ORGANIZATION1 the ride took of at high speeds. It was going so fast my face was being pushed back into a smile. The ride then slowly climbed to the top of a giant hill @ORGANIZATION1 plummeted to the bottom. There were so many twists @ORGANIZATION1 turns the ride even when upside down! when it came time to take the picture at the end I was crying I was laughing so hard. my sister @ORGANIZATION1 I exited the ride @ORGANIZATION1 walked over to the booth were they show the pictures that they had taken of the people on the ride. Both of our faces were priceless. We then road the ride five more times before heading back to the hotel for dinner. From that day on I was addicted to roller coasters, @ORGANIZATION1 have ridden many since." 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +21191 8 "It was @DATE2 around @NUM1 degrees in west @LOCATION1 me and a couple of friend was really bored and hot all we really had to do was stay home and play video game. So I ended up coming up with the idea of going out side and maybe riding our bikes to the store, an grabbing some ice cream and water then ride up hamburger hill and possibly sit under the shade. Everyone agreed to the plan so all my friends left we all took showers at our homes and met me up at the corner and then rode our bikes off to the store got all the items and as we were making our way to the hill a couple of the big kids who were in middle school came and jumped us all and stole all our of food supplies. Now these guys have always been picking on us for some reason and till this day @CAPS1 still never understood why maybe it was because we didn't like what they did or maybe they hate us cause my friend @PERSON3 stole one of the kids girlfriends but that's a different story. So after they got done pounding our faces into the dirt they got on their bikes and rode off into the sunset like if they were proud of themselves for beating on @NUM2 yr old, our day was ruined i had a black eye,@PERSON3 threw up, @PERSON2 was walking with a limp and poor little @PERSON1 had a little scratch on his tiny little head. After the brutal beating the next day I called a group meeting in our tree house to be for real i was tired of them constantly beating on us stealing our food and giving us ultra wedgies we needed to make a stand against our oppressors cause for too long this has been going on so i devised a plan a perfect plan to make sure they never hurt us again and the plan went like this, @PERSON2 and @PERSON1 would talk to all of the kids that have been abused by them and get them to join our revolt,then we would get all of the water balloons eggs and rotten food we could. One of the kids knew that they always left their houses and got on their bikes at @NUM3 pm so at @NUM4 at night me and @PERSON3 would flatten a couple of their tires, each thing that came into my tiny little mind was just genius so after day's of planning and hard labor and complaining to our parents for money the plan was finally set, and so we waited and just like the kid said they all came out at @NUM3 once they noticed their tires had been slashed a couple of the kids jumped out of the bushes and started hurling food at them then me and a couple of the kids was riding past them on our bikes and threw water balloons at them they all split up the ones who's bikes weren't slashed they chased after us they were going pretty fast and nearly caught up with us when i gave the signal @PERSON2 and @PERSON1 pulled the rope and the big kids flew off their bikes and face planted like in the movies and it really seemed like the plan was going pretty well and it seemed like we were winning the war but as usual some thing are to good to be true it seems that we forgot about the other big kids in the neighborhood and when they saw this all hell broke loose soon after their reinforcements came in they over powered us like a lion on a gazelle beating each and everyone of us like we stole something but good thing i was being smart and told my parents and my friends parents on the kids and sooner our parents came yelled and screamed at them and told their parents what's been going on and as a godd ending they were grounded for the rest of them @DATE1 and finally we all played in peace without no fears." 11 18 34 34 3 2 3 3 2 2 4 4 4 4 4 3 4 4 4 4 3 3 +21192 8 Have you ever laughed so hard that you peed?That @MONTH1 or @MONTH1 not have happened to me. In my story I'm going to talk about the funniest time I have ever had with my best friend @CAPS1. How it all started was that it was my best friends birthday and she was going to spend the night at her grandmas house. She invite only me to come with her so I couldn't say no. @CAPS1's grandma owned a @CAPS2 @CAPS3. She was old and was in a @CAPS2 @CAPS3 club. I don't know about you but it always seems to me that old people have to be in some kinda of club. So anyways in her her club what the did was go on trips. @CAPS1 and I thought that would be fun to go on a trip. So we meant everyone at @ORGANIZATION1. @CAPS1's grandma let us go intro the store to buy drinks for that trip. I wanted @CAPS4. The bottle was really cool. It had a top like a water bottle would have. I got the red kind cause it the best. We got are drinks and @CAPS1's grandma said to go to the car while she talked to the adults about the trip. So here is the funny part of the story. I got into the car first. I was pretty thirsty so I decided to unscrew the cap it pulled open to paper back on the sell. I twisted the cap back on and took a drink. Mean while @CAPS1 got into the car and closed the door behind her cause her grandma was talking to the adults. While she was closing it she got her hair caught in the door. She was laughing and yelling at me to come help her. I was laughing too hard to come help her. I had my drink between my legs and the cap was open and remember its like a water bottle cap. I laughed so hard that I squeezed my legs together and my juice went straight into the front seat. It didn't get and were else just into her grandma seat. It was like a rocket it was so funny. @CAPS1 with her head still stuck in the door asked what that notice was on the seat. I told her it was my juice. Then was both started laughing. I don't know why but @CAPS1 just pulled on her head and her head was no longer stuck. The was like ten pieces of her hair stuck in the car door. She looked at the seat and said we have to tell her grandma about it. I didn't want her to be mad at me cause her seats were white. I thought it would stain. But we ended up telling her. She told us to go get napkins from the bathroom. The whole time we were going to the bath room me and @CAPS1 were just laughing so hard. We cleaned up the mess and I didn't get in trouble. I guess that I have never peed my pants laughing but I almost did that day. After that day me and my best friend @CAPS1 always laugh at that story. I am so glad we went on an old people @CAPS2 @CAPS3 club trip. 15 20 35 3 3 3 3 3 3 4 4 4 4 4 4 +21193 8 " For a year and two months I'd devoted my life to horses, school, and @CAPS1. We started off as friends in @CAPS2 grade, and it escalated to a relationship in @LOCATION1 grade. We ended up breaking up later on that year, but we continued to remain 'friends'. Obviously I still cared for @CAPS1, but I didn't believe he'd felt the same. But apparently I was wrong, we began a new relationship on @DATE1 at @NUM1 pm. It was the perfect start to our 'perfect relationship'. He and I were inseperable from the get go, we literally did everything together. I was @PERCENT1 irrevocably in love with @CAPS1. Between the two of us, we shared some crazy memories and inside jokes. I could probably write a best selling novel of all the memories we had, and I honestly believed that @CAPS1 and I were going to be together forever. I thought everythign was going fine, till he had to lay it out, he liked someone else. At that point, I had no idea where our relationship (or I) stood. I didn't want to know. I couldnt keep putting my heart in the open if it was going to get stomped on, but I loved @CAPS1 and was willing to do anything to make it work. I stayed the night with @CAPS1, and we talked till @NUM2. He and I decided to attempt to make it work, but there was no guarantee it was going to. The next day, everything seemed fine. I was still extremely irritated that he liked another girl, but I was using all my power to make the best of what we had. We decidded to take his dog, @CAPS3, on a walk. We held hands as we walked, but it was too quiet. Why? He was texting @CAPS4. By that time, I decided that was the final straw. It felt like I was getting in the way, so I felt that the only choice I had left was to leave @CAPS1. I walked in the door an hour later absolutely devistated. I cried till I felt I couldn't cry anymore, and then I would cry more. At the time, I truly felt that the world was ending right before me. My life was over. My days became long and depressing, and I felt that all I could do was give up. My heart shattered everytime I saw @CAPS1, and it made it even worse when people constantly asked about what had happened. I couldn't tell them, it wasn't a moment I would want to relive. I couldn't stop thinking about @CAPS1, and about all the memories we'd shared. That year and two months has been the greatest period of my life. Almost everytime I thought about @CAPS1 I would cry. I couldn't stand the thought of not having @CAPS1, and thinking about @CAPS1 all the time made me into a walking zombie. I couldn't eat, I couldn't drink, and I would vomit because of the stress. But as I sat there in alone thinking of the memories, a miracle happened: I laughed. I was shocked, but it made me realize that I needed to keep living. I don't regret any of the time I spent with @CAPS1, he changed my life. He taught me so much about loving someone. I knew from that small laugh, that things were going to get better. A spark of hope, I would be happy again. " 15 20 40 40 3 3 3 3 3 3 4 4 5 4 4 4 4 4 4 4 4 4 +21194 8 " The word (laughter) @MONTH1 mean a smile or something nice that has happened to someone or even a thank you, but for many people it means the action or sound of laughing. For many people the felling they get inside when they laugh is the felling of happiness. The sense of felling good inside is the meaning that ones in while you have to be happy in life; have a balance in your life. For me the word (laughter) means being happy and the felling of doing something good in life. For instance when a couple get married they need a sense of laughter in there life's so they can enjoy their companies. It was @DATE1, @NUM1, @NUM2 early in the morning I was extremely exited to leave because that was the day I was going to go visit my grandmothers, grandfathers, aunts, uncle, and cousins that I had not seen for about eight years. I remember that morning I felt a sense of happiness and sadness at the same time.I was about to leave for two months in a half I was going to miss my family and friends, but at the same time I felt happy and exited to go. That morning we arrived at the air port; I was about to ride on my very first airplane. As I tried to find my seat through the big line of people that were finding their seats as well; I sat down and buckled my self into the seat and looked out the window and all over the place. My stomach was turning in circles round and round and I had the felling of a roller coaster about to take off really fast. The next thing I knew the plane was moving I got kinda of scared, but at the same time I was excited. During the flight I felt a sense of laughter in my soul; the memories of a childhood in @LOCATION2 were turning my emotions into laughter and tears that made me fell good I had never felt. The idea of seeing all my family and friend was captivate to my hear and emotions. As we arrived at the @LOCATION1 airport; my emotions were turning in circles back and forth. We only had two more flights left to get to our destinations. I was getting tired and sleepy, my legs and arm's hurt so bad, they felt like if you were caring two big bags of potatoes on each side of my leg and arms . We decided go eat some place as we walked around to see what we could find to eat we found pizza huts. The next thing I knew was that we had only one hour our to the next flight, so we agreed to head to our next flight. As we arrived to the gate people were already going in through the hallway to get into the plane so we hurried. Three hours past buy and we had landed in @LOCATION3, @LOCATION2 that was our destination. I felt a sense of laughter inside of me as we waited for our ride home; the feeling I got was as if someone had token something from me and gave it back. I started to cry at that moment, but at the same time I was laughing. We arrived that late afternoon to my grandparents house, as I looked at them I felt a happy inside, they were happy as well. we decided to spend the @TIME1 over at my grandparents house, that @TIME1 nobody had gone to sleep every one was to busy talking with each other and catching up. The next day every one was tired and sleepy, but they were all happy and full of laughter inside. We had spent a mouth in a half with family members that I had not seen in a while we all felt happy and with a sense of laughter inside. Everyone had an incredible time catching up with family and friend. We did not get to do all the things we wanted to, but the best part was the time I has with my family and friends. The word laughter to me mean the best thing that has happens to you and makes you fell good inside, or even the memories you think about when you are alone and sad, those are the memories that will make you laugh and fell good about yourself. Other people @MONTH1 say that laughter is the felling you get when you laugh, but laughter is the best felling in the world when you are happy. In this part of my life laughter was an important element of my whole life and it still is a great part in my life. Over many generations people have used the benefits of laughter in their life's for instance many famous and non- famous people, important people or non- important. Many people say that when you are not happy you are going to die not knowing what happy is. People really enjoy those moments that they spend with a special someone." 22 20 42 5 5 5 4 4 4 4 4 5 5 4 4 +21195 8 " There will always be moments in your life when your emotions will take control and motivate you. whether your happy, sad, angry or frustrated. At times like this I use my gift, the gift of laughter. My best friend, @PERSON1 looked at me with her big blue eyes, they were swelled up with tears. We had just finished packing the rest of her clothes and we knew it was time to say goodbye. It hurt me deeply to see her go after five years of friendship but, we had postponed this moment long enough. There the boxes sat waiting, each with their own label, they had all of our memories inside. We were never very serious, we liked to joke a lot and she always knew how to make me smile, today that would be hard though. After we put @PERSON1's stuff in the moving van I noticed her dog, @PERSON2 wasn't outside like he normally is. When I went inside I found out he hadn't been hiding in there either. This was strange because @PERSON2 was the type of dog that liked to have a lot of attention so he was always near you. When I told @PERSON1 that @PERSON2 was missing, we went to look for him. It was @DATE1 time, my favorite time of year and the sun felt warm against my skin. I remember this moment very clearly, it was a memory I was sure I would want to savor. As we walked along @PERSON1 and I talked about all sorts of things, this made me almost forget she was going to have to leave in a few hours. Just then I noticed a shinny silver object laying in the ground, from where I was standing I couldn't quite read what the engrave stated but I could see the one letter that said it all, the letter @CAPS1. It was @PERSON2's red and blue collar, I reached down and picked it up I figured he must be somewhere near. Fate must have been with us that day because as soon as we glanced up the road we saw @PERSON2 riding in the back of someones old @ORGANIZATION1 truck. We started running after that truck as fast as we could and we were screaming, ""@CAPS2! Finally the truck stopped in front of our local store, the guy stepped out and he seemed aggravated with us.""That's my dog."" @PERSON1 stated, and I just shook my head in agreement. The strange man looked at us in wonderment and then looked at @LOCATION1. His face turned red in embarrassment as he too realized the dog in the back did not belong to him. This whole situation was funny and all we could do was laugh. With @PERSON2 beside us we started walking home, taking our time, dreading what would take place when we arrived back at @LOCATION2's house. That night I stayed up thinking about @PERSON1 and @LOCATION1, I was great full to that dog for running off so we could spend more time together. Also I was thinking that maybe he had a reason for leaving, maybe he knew that we weren't ready to say goodbye and we had to have one last adventure, one last laugh. When we laughed together for the last time that day, I knew that we would truly be friends forever no matter if she lived near or far." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21198 8 " On the year of @DATE1, my brother had the worst birthday headache ever. We lived in a nice big brown house. with great to loving parents. we had a nice big back yard, my brother and I loved that the most. @CAPS1 was down stars making my brother and i school lunches for school. It was my brothers first day of school and he was so happy. I mean its his birthday and he also starts school on the same day, thats awsome. @CAPS1 let my brother walk to school with me, it was only down the road. The school my brother and i went to is called @LOCATION1. When we got to the school, I could tell my brother was worried. School to me didn't seem that bad but I wasn't the one who was caught eating glue ether. Yeah my brother was caught eating glue during arts and crafts before lunch. When I was on my way to the office I say him through the window. He turned his head and smilled, I could see all the glue still wet and it's everywhere. My brother and me always had a good relationship, we both mad each other laugh all the time. If my brother and I didn't laugh at each other, we probable wouldn't talk to each other. Laughter to me is a very importent part to any kind of relationship. It alows poth people to share their emotions in a positive way. It also helps people see what kind of sence of humor you have. As we approched the house, we saw @CAPS1 sitting on the porch waitting for us. After we got home my brother went straight to his room to get cleaned up for his birthday. @CAPS1 had my brother do the dishes, and I do the vacuming in the living room. She always wanted the house cleaned even if people dont come over. @CAPS1 said the whole family was coming over. My brother and i were so happy, we both new grandma was coming. When everyone got here we both were very happy. Grandma showed up alittle after dad did. @CAPS1 was in such a hurry, she wanted to see my brothers face when he saw his birthday cake. When grandma comes she always brings gifts for both of us on are birthdays. When my brother was at the table @CAPS1 brang in the cake. I always see my brother happy, but not like this. I could tell that nothing could make his day any happier. When the birthday cake was over and the presients, my brother and i went out to the back yard to play kickball. My brother wouldnt use his new soccer ball, we were stuck with a basketball to play with. @CAPS1 and grandma were watching us play, we both were having fun. We laught every time I kicked the ball wrong, or if he missed when he tried to kick the ball. As we were kicking the ball I got an idea. I wound my leg back and as the ball came close i kicked it. I kicked the ball so hard and so fast, insted of the ball going to his feet it went to his head. When the ball conected to his head he did a back flip off the ground. @CAPS1 and grandma were in aw, i was frozen still. When he got up he looked straight at me and laught. @CAPS1 started to laugh so did grandma, i was still frozen. I finaily went with it and by the time I started i couldnt stop. it was so funny, he got pickup off the ground and hit in the head with a ball and still laughs. When it was time for everyone to go, @CAPS1 said her good byes and then it was grandmas turn. Grandma gave my brother the first kiss on the forhead than me. As grandma was leaving my brother and i sat on moms lap and gave her a big hug and said ""I love you @CAPS1"". @CAPS1 was tcking us in bed and was about to leave when my brother said "" @CAPS1 my head hurts"". I love my family and even today we look back on this and laugh. This has been a joy to write i hope you think so to. Short story by @ORGANIZATION1 @NUM1" 17 17 34 4 3 4 4 4 3 4 4 4 4 3 3 +21199 8 " Laughter, what is the meaning; to show mirth, joy, or scorn with a chuckle or explosive vocal sound. People without laughter in there life go through stages of depression or feel a sadness inside them; they never seem to be able to find the light at the end of the tunnel, ""the light being happiness."" The days @MONTH1 turn into to months or even years, life seems to be at a standstill. When you feel there is no happiness you begin to have doubts on your decisions in life; the choices you have made in life seem to all be wrong. This is what my life felt like when the world turned around and I found out my best friend just flipped her car. I was traumatized, in shock; I didn't know so many things could rush through your head in that given moment. I instantly started to ask a million questions to see if she was okay. All they could share with me at the time was that she was being rushed to the hospital. All I could do once I got home was lay in my bed and think; what could I have done so she would not have been in that car-- all i felt was guilt! That night was wretched my mind just kept wrapping around all the times my best friend and I spent together, the laughter we shared between each other, stupid fights, and all the dumb pranks. What was eating at me most though was we had gotten in a fight not to long before she wrecked; the worst part was it was over the stupidest thing. I had got irritated at her for constantly ditching out on our plans we had together to go spend time with her boyfriend. Now that I look back at it, all I felt was jealousy. If only I could take it all back, then maybe she would not have been distracted while she was driving and missed her turn. That next morning her mother called me and said ""she is asking for you, you @MONTH1 come to the hospital and see her if you please."" I was ecstatic, I got ready faster than I ever have before; within a few minutes I was ready and in my pick-up driving myself to the @LOCATION1 hospital. It only took me thirty-five minutes to get there, when it should take you around forty -five. I instantly jumped out of my truck, rushed into the hospital and went to the check-in desk to see what room she would be in. They told me she was in room @NUM1 right down the hall on the left. I got to room @NUM1, there was a crack in the door so I peeked in before trying to open the door the rest of the way; I finally got the confidence to open the door and go talk to her. She instantly had a smile on her face when she saw me, I pulled up a chair and sat right next to her. We talked for about an hour just about random things; including the wreck. She told me she had a few broken rips and a minor concussion, so she should be able to be out by that afternoon. When she told me that, I was one of the happiest people right at that moment. All I could do was laugh when she told me everything was fine; almost like laughter of relief. It did not take long before both of us started laughing, most of it was out of excitement and having nothing else to say; except the beautiful sound of laughter coming out of our mouths. I have to say it felt good just to be by my friends side again being able to share happy moments with each other. So what is the meaning of Laughter to me; shall you ask? It is the most meaningful thing that anyone could possible do. Laughter is to show signs of happiness, a giggle or an outburst; sharing unforgettable moments with a loved one.Without laughter your life can not be complete, make jokes, just laugh make life have meaning again. Do not go through life being @PERSON2, instead be @PERSON1. Go ahead test it out and see what laughter can do for you in your life!" 18 17 35 4 4 4 4 4 3 4 4 4 4 3 3 +21200 8 " @CAPS4 whole life, I've been a child of laughter, one who did all @CAPS5 could to find the joy in existence. As I've grown, @CAPS4 hunger for delight hasn't ceased, and when I fell through a metal roof a few years back, @CAPS4 joyous obsession remained. The woman who gave me life is an only child. @CAPS5 has a few step-siblings, but it's a crew we never see. When I think of @CAPS4 relatives, those people never cross @CAPS4 mind. I actually can't even remember them. That fact makes @CAPS4 childhood seem void or vacant (considering that @CAPS4 father died when I was a tiny toddler), but there's no need to feel sympathetic towards me. I mean, sure, growing up in a low-income household, with a single mother and two young children was a hard thing to handle, but I made it through. Have you ever had a best friend that you considered to be family in some way? That's all that @CAPS4 mother had. Unlike myself, her only savior in life was her closest confidant, @PERSON1. @CAPS5 and @CAPS4 mother had been best friends since before high school - before I was even thought of. @PERSON1's always been there for us. @CAPS5 even stood by @CAPS4 mother's side when I was born. I'm sure as teenagers, having babies was something outlandish, but a mere two years after @CAPS4 arrival, @PERSON1 found herself giving birth to her own beautiful daughter, @PERSON2. They've been @CAPS4 family ever since; @CAPS4 aunt and cousin. For all of @CAPS4 childhood, I grew up in one house. Throughout the years that I resided there, @PERSON1 and her daughter had taken multiple occasions to go on and join us. I used to share a room with @PERSON2, and we fought like rivals, but loved like sisters. @CAPS4 brother was born five years after I and three years after @PERSON2. @CAPS6 was always too small for us to play with, so having other girls in the house was convenient. The both of them served as the family I never had... but it wasn't always such a dandy thing. @PERSON2 and I did a lot of cruel fighting in our time, but I never once thought that maybe our fights would cause them to leave us. One @DATE1 @TIME1, on a warm and bare day, I awoke to find those people of @CAPS4 life missing. They had left. A year or so passed by, and we didn't see them around. @PERSON1 didn't drop by. @CAPS5 didn't send a letter. It was as if they fell off the face of the @LOCATION1. @CAPS4 heart was hurt, but it soon became healed. Our land-line phone began buzzing off the hook one evening, and to our surprise, @PERSON1 was on the other line, ""We just moved in. You have to come see our new place."" @CAPS1, it was as if nothing between the two adults ever went wrong. When we arrived to visit them in their new adobe, @PERSON2 took me to one of her friend's houses to climb their shed. I didn't object, I wanted to be friends again... though if I had known what was in store for me, I wouldn't have gone. As we walked from the crime scene and along the mile road, the most you could hear from our direction was @CAPS4 sobbing. A young boy who didn't seem much older than I turned the corner facing us. When @CAPS6 saw what a mess I was, @CAPS6 laughed. ""@CAPS2 isn't funny!"" I cried. His expression became serious, ""@CAPS3, I... what happened?"" @CAPS4 face was too buried in @CAPS4 hands for me to speak, so @PERSON2 took over, ""@CAPS5 fell through a metal roof!"" The both of us were thinking it, but neither of us said a thing: ""jerk!"" @CAPS6 turned sympathetic and offered a helping hand, but I turned him away. The further @PERSON2 and I paced down the stretch of cement, the more tolerable the wounds on @CAPS4 body became. ""@CAPS7,"" glancing over at @PERSON2, I smiled, ""@CAPS6 was really cute,"" I cradled @CAPS4 face out of embarrassment. @PERSON2 blushed, agreeing with @CAPS4 opinion. ""and it sucks because I'm crying, and dirty, and limping, and a huge bloody mess... and the world just always works @CAPS2 way! Of course I'd run into a cute guy looking like @CAPS2!"" @CAPS4 cousin laughed; @CAPS5 full on cracked up, amused by me. I didn't quite understand it at the time, but something that stirred up in the situation tickled against @CAPS4 inner stomach, and I laughed as @CAPS3. The two of us spent the rest of the distance laughing about the incident and sharing stories similar to our problem. Looking back on all of @CAPS2, I'd like to think that being a young, unintelligent, and naive adolescent brought @CAPS4 cousin and I back to common grounds, but then I'd be lying. In all honesty, it was our laughter. Even in the most scary and tense situations of the world, laughing for any reason makes a person feel better. Laughing heals feelings, arises thoughts, and brings people together." 15 22 40 40 3 3 4 4 3 3 4 4 4 5 4 5 4 4 4 4 4 4 +21202 8 "Warm @CAPS1 Laughter @MONTH1 be the best medicine, but it @MONTH1 also be the best glue. When one laughs, especially with another, it brings a sense of relaxation and happiness. Laughter is a release of amusement, and that literally means ""not thinking"". In this moment, people open themselves up and it brings a warm feeling of the heart that is shared between each other. Without this connection or ability to jest, people begin to think too much and become overly critical about relationships. To flirt is to make fun or light of a situation, the point of this is to put people at ease so they @MONTH1 open up. Flirting can consist of many things, such as joking, impressing, or complementing; usually this leads to laughing or excessive giggling. When this warming connection begins, so does the bond between the people, such as it was with my own girlfriend. I just came off the back end of a hurtful experience with another girl, so I had become tough at heart. I was a bit of a nervous kid, so when she started to be pleasant and kind to me, I started to grow out of my shell and laugh with her. Our first date was to see some silly yo-yo man who had come to their church. It was a great way to start off what we have been building now for two years, as well as comfortable setting to meet the parents. Sometimes the key to opening up, or bonding, is to make a fool of oneself. It's hard to laugh with someone who is being prideful or too analytical; laughter is a crucial mental break from routine thinking. Being a dork @MONTH1 just be the best way to be in a healthy relationship. My relationship is very well balanced between supporting each other, being critical, and being idiots. I take sacrifices to make her laugh, and she does the same for me, but mostly this results in both of us being profusely happy and laughing together. Being a man is not the same as being stubborn or powerful, I feel it's more about being open and compassionate. To be open enough to have someone to laugh with, one has to be able to laugh at themselves. Laughter is an @CAPS2, a socially transforming device, and it spreads rapidly. The same goes for a simple social gathering. Does anyone become the ""life of the party"" without laughing at themselves? They are typically the ones going out of their way to be ridiculous for everyone else to see, because once it starts, it spreads exponentially. Being comfortable is the foundation of having a good time, otherwise people are acting paranoid, refuse to participate, and downright seem cold. Laughter's bright tone is a good way to get people comfortable and relaxed. Think of people as @CAPS1. @CAPS1 is difficult to pour and spread around when it's cold, it's thick and condensed. You can't do much with cold @CAPS1, so you have to warm it up. One can't heat @CAPS1 up in a flash or else it could become tasteless, but once it is gradually heated it becomes easy to spread and very useful. This warm @CAPS1 is quick to mix with about anything and sticks to things all the same. My relationship has been sticky, sweet, and warming beyond compare, but nothing without a little work, or a little laughter. " 25 20 45 5 5 5 5 5 5 4 4 5 5 4 4 +21203 8 " The @CAPS1 and Benefits of @CAPS2 is really an important thing in life. Laughter lightens mood and makes you feel more happy. If people laugh more often their days are more happier, lighter and much more shorter. Little children are the ones who laugh more often. Making adults laugh is not very easy because they are more serious. There are a lot of stories that laughter is the important element. Laughter can connect with many other nice elements, such as being glad or happy. I have once read a story about a little girl named @CAPS3 who liked to make people glad. And through gladness, people were made to laugh more often. And through laughter, the sick people became healthier and stopped being sick. Laughter consists of many different factors. For example, being glad leads to laughing more, being happy, and of course smiling more. When you are felling down and some stranger for example smiles to you, you feel happier and maybe your mood is going to lighten. The morning dawned to be gray and rainy. The people of the household woke up irritable and grumpy. Everything was going up-side down. No one was smiling. The breakfast was a very monotonous one, because no one felt like talking. It seemed that the day is going to end like this. @CAPS4 was also very grumpy this day. She didn't want to go to school at all. She was mad at everyone and everything. She was mad at rain. Rain was her worst enemy because then she couldn't go out for a walk with her friends. She was mad at her maid because she has forgotten to fill her pitcher with warm water, as she always did. She was mad at her little sister for taking her blue hair ribbons. To tell the truth, she was mad at everyone, and she has not even thought that if she had been more happier today, then everything will seem okay. Well, so, she still had to go to school, wanted she or not. At school, the little teacher was merry as usual. She wasn't a bit grumpy, even if it was a rainy and gloomy day. Some of the student had the same mood as the teacher, but there were very few of them. The school work seemed endless to @CAPS4, especially her mathematics. But everything changed after the teacher has told everyone that it was story time. The story was about a little orphan girl who had to go live with her mean relatives. But she wasn't at all affected by their moods. She was very simple and always happy. Over a period of time, the people she was visiting (especially the sick and old) begin to be happy, just like her. And when she had to go away from that village, everyone was sad to see her go. With lightness of heart and being happy, the girl has left the most precious gift, being always happy which led to laughter more often. Even when she was gone, a passing stranger might always hear happiness and laughter. And it was even enjoyable to stay in that place a little while before continuing your journey. Because the passer-by's always felt themselves feeling much better in health, because of laughing. After the teacher has finished the story, @CAPS4 thought, why wouldn't she try to cheer her family up? Even though it was raining, it didn't mean that everyone should be gloomy. So after the school was finished, @CAPS4 ran home to cheer everyone up. In the @TIME1, when everyone was finished with their day's tasks and relaxing, there was laughter heard through the windows. Seems like @CAPS4 has found a way to lead laughter into her household too. The story she had heard earlier in the day has helped her today, and all through her long life. She has remembered this special rule of home happiness. And always in her home there was happiness and laughter even on really gloomy and dark days. We can see that this small factor, which doesn't seem to big @CAPS1 to us has made @CAPS4's life more happy. I hope that this little factor can help you too." 19 20 40 40 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +21204 8 " It was the first day of sophomore year. I had just moved to @LOCATION1 during the @DATE1 so I was nervous about the new school just like any kid would be. I walked into the school and checked out @CAPS4 surroundings. Everything seemed normal enough until I saw it. Near the middle of the sea of tables in the cafeteria was about four tables with around @NUM1 people at each one, but it wasn'@CAPS5 the fact that they were there that caught @CAPS4 attention it was what they were doing. They were dueling with @CAPS1-@CAPS2-@CAPS3 cards right there in the middle of the cafeteria where all could see! I was baffled, I mean I used to duel when I was younger in elementary school when the game was newer, but I had to quit cause everyone in @CAPS4 school stopped dueling, and here I am looking at at least @NUM2 highschoolers just dueling away. What surprised me most of all was that they were right there in the open where everyone could see, and worst of all judge. I moved to a table nearby them and began to watch a kid named @PERSON1 (who later has become one of @CAPS4 best friends.) mop the floor with his opponent. I quickly caught back on to most of the rules, and went home that day thinking ""I'm gonna get back into that game!"". So I bought a deck, and continued @CAPS4 recon of the tables, @CAPS4 deck sitting in front of me waiting for someone to challenge it's master. A few days went by as I continued @CAPS4 silent observation of the duelists. Finally a duelist named @CAPS5.J (another one of @CAPS4 now good friends) challenged me. I accepted and began. He then proceeded to thoroughly kick @CAPS4 butt in the space of what seemed like five rounds into the game. @PERSON1 then taught me he how to play better and we became best friends. He is a really funny guy, and to this day I cant hang around him without laughing. Through him I have met tons of great friends. Even now I wonder what @CAPS4 high school life would be like if they didn'@CAPS5 attend @CAPS4 new school." 16 15 31 3 3 4 4 4 3 3 3 4 4 3 3 +21205 8 "JJ @NUM1 Laughter @CAPS1 people @MONTH1 say laughter isn't important in any relationship, but I think other wise. Laughter can always lighten up the mood no matter what it is, the laughing @MONTH1 only last a few seconds but that's alright as long as it's there. Maybe you would laugh because somethings funny or just because your tired. My cousin and I laugh for both those reasons every time we are together. There are many stories I could tell you about laughing with my cousin. @CAPS1 of the best happened in @ORGANIZATION1! We have @CAPS1 pretty funny time in there. Like just the other day we went into @ORGANIZATION1 with one of our friends. Our friend went to go get @CAPS1 candy, and as she left me and my cousin ran way. As we were running away and hiding or as we call it ""being ninjas"" we couldn't stop laughing the hole time. She tried calling us , and finding us, but we didn't answer or let her see us. Then my cousin and I saw her walking the other direction, so we ran up behind her and scared her. That is one of the many times that laughing was a part in my life." 16 15 31 3 3 4 3 4 3 3 3 3 3 3 3 +21206 8 "One day I woke @CAPS6 staring out my window and was listening to the birds chirp out my window I usually leave my window open to sleep with fresh air because I hate breathing in my own breath its to warm anyways as I woke @CAPS6 I walked out and ate some rice crispy s with my to sisters @PERSON2 and @PERSON3. As I was about to finish I had realized I was late for school I was only I @NUM1 grade so I ran got dressed and told my sisters to @CAPS5 and get ready but you no how girls can be putting @CAPS4 there make-@CAPS6 and doing there hair. My sister @PERSON2 was in @NUM2 grade and my other sister was in @NUM3 grade our schools were right next to each other so they finally got ready and we were @CAPS4 our way heading off to school ready for an awesome day with my teacher @PERSON4hawk. She wasn't the nicest teacher in the world but I only liked her was because when we were cleaning our desk she gave us shaving cream and me and my friend @PERSON1 would have so much fun playing in the cream. We began the day with a book and the book was by ""@CAPS1 foul"" I can't recall the name but I remember the cover was gold an was about ghouls and monsters the way she read it was like if we were there that book was so intense even tho i really didn't understand it. Next she would give us a math worksheet I know right math in @NUM1 grade but I was really smart at math and she would always pick @CAPS4 me and give me harder math then others and when I asked her why I was getting harder math then the other kids she had told me I was different. I new I was smarter then some kids but not all so I never knew if that was a complement or an insult but I really didn't care. So now that we got that out of the way we can get to the fun part were all the laughter is so school is over right and I'm trying to find my sister to walk me home, after @NUM5 min looking for i find her walking to the cross walk I yell her name ""@CAPS2"". She looks and I'm running to her and her friends as you no she didn't want to be seen with an annoying little brother so she ran across the street. My dad was waiting in the car and my sister got to the car before me and I was in a @CAPS5 to get to the car and I had to wait for the cross guard lady to @CAPS3 to me. At last she finally had noticed me, I was @CAPS4 walking in an hurried past to get to the car because I had herd my dad yelling ""@CAPS3 @CAPS4 @CAPS5 @CAPS6""so I was walking faster and faster and as I was walking I herd from a distance a car speeding down the street, but what I hadn't noticed it was it was heading straight for me. The car came flying around the corner nearly hit the cross guard lady, the car had hit the crossing stick the out of no were I was hit flying and rolling down the street. I was hit and bruised cuts every were my dad was panicking ran out of the car screaming at the lady who had hit me and getting her information license plate number. As I was laying @CAPS4 the ground my dad came to me and was trying to get me @CAPS6 he pulled down my pants to see the damage and remember I had my scooby-doo underwear @CAPS4 and every one was staring at me I was more embarrassed then hurt I didn't feel the pain until the next day so I was all good I couldn't walk so my dad ran put me in the car and every one was laughing at me because they saw my underwear @CAPS4 and my dad rushed me to the house and then called the ambulance. they told my dad that I would be able to walk again but would have trouble doing sports because i have a fractured hip. i was living the dream my sisters were spoiling me giving me candy and my dad giving me ice cream and @CAPS4 top of that I couldn't feel the pain. Bu t the fireman said I should be able to go to school the next day and I did and my mean old teacher saw me and i was limping and what she told me got me mad she had told me to ""stop faking it"". I had told my mom that and she got so mad man you would not want to be that teacher so lets say it wasn't pretty. You're probably wondering what happened to the lady who hit me she pays for my docter bills. " 12 18 34 34 3 3 3 3 2 2 4 4 4 4 4 3 3 4 4 4 4 3 +21207 8 " My knees were weak and my hands were slightly shaking as my rapid heartbeat was causing my breathing to increase speed and time. I wanted to get this over with, but at the same time, I hadn't the intentions to ever start a conversation, yet alone, @CAPS3 him. It had been a whole @DATE1 since I had seen my dad and I wasn't sure whether to expect a relaxed, laid back man, or an uptight, cranky one. So, I closed my eyes, took deep breaths, and decided to put this in the hands of @CAPS1. It was obvious that once I saw my dad, it would be a natural thing to talk to him, but I suspicious of his mood and if it would affect mine at all! If for any reason this did happen for the worse, we probably wouldn't be the best of friends for a matter of weeks. He'd then continue to pull the, ""@CAPS2 think now that @CAPS2're a teenager, @CAPS2 can do and act however @CAPS2 want?"" Or the, ""I'm your father, I deserve more respect!"" @CAPS3, the funny thing is, I never start any of these things. He chooses to start them when he's bored, I guess. Then, he continues to make me feel bad for his wrongdoings. When my mother, sister and I arrived at the airport, (I'm not going to lie) I wanted to go home. My sister would crack a few jokes here and there and my mother would let her wittiness shine on me; even in the mist of all of this, they could only get a small giggle out of me because I let my nerves get the best of me. I didn't want my past three months of @DATE1 to be ruined by his coming home. But once I looked back at all I had done: two weeks in @LOCATION1, rafting, etc., I realized that I did miss him and did want him back. Don't get me wrong, my dad is a super nice, funny, and hardworking guy, it's just hard to work with him sometimes. My dad's flight had landed, and after a solid hour of waiting for him, he came out of the airplane. We could @CAPS3 his eyes frantically scouring the airport for us, and when he found us, he gave the warmest, friendliest smile I had ever seen upon his face. Tears welded up in his eyes as my sister raced for him and my mom quickly walked behind. My legs carried me toward him and I soon found that my sister and I were competing to be the first to hug him! One hundred feet never felt so close yet so far away. Panting, we reached him with heavy legs and full hearts, now that we were with him. The good thing is, an awkward moment never appeared. It knocked, but we didn't let it come through the door ; instead laughter came in its place. All of my troubles and worries were gone when he opened his mouth, and those soothing waves of laughter came out and were welcomed into our ears. My heart was lifted and my smile brightened. I knew that my father could not have been gone any longer. I love him! Laughter soothes the soul and brings joy to any situation. It is kind and has no regrets. The only mistake is not taking the chance to laugh in the first place. Laughter is one of the many things that holds me so close to my father today. Our sense of humor when we're together is never dull and is unforgettable. I trust him with my life and ever since I was born, he has found a way to make the best out of every situation by laughter. @CAPS2 can count on his laugh to make anyone smile and it is without a doubt, the most contagious thing @CAPS2'll ever hear. ""Laughter is the shortest distance between two people,"" including me and my father." 21 23 44 5 4 5 4 4 4 5 5 5 5 5 4 +21208 8 " The first day I met her, I knew @CAPS4 was the right dog for me. Her black and white fur was as soft as cotton, and her eyes as brown as the bark on a tree. @CAPS4 had a genuine personality no other dog could possess. Which was something I could tell right away @CAPS4 was the dog for me. Over the next couple of months, our friendship grew, as I taught her to talk, smile, and stand on two legs and dance with me. A black lab @PERSON1, instantly became her best friend, as the two ran over the property barking and playing. Everynight the two would cuddle up next to eachother and sleep. The times @CAPS1 (my new dog) would lay on her side and relax, I would call her an oreo. Her middle belly was white and her sides were black, making her look like a large-breathing oreo @CAPS1. @CAPS5 her name had come from. The seventh month had came along fast, but it was enjoyable every day with my @CAPS1 at my side.@CAPS4 gave me the best comfort when I needed it, always giving me a smile when the day was rainy, or sleeping next to me when I didnt feel the best. It was kind of like @CAPS4 was my own special dose of medicine, her presence made me feel well again. Her love had grown deep into all of our hearts at that house and @CAPS4 was one of a kind, but something began to change about her as the days went on. Her food bowl would be nearly full everytime we fed her, @CAPS4 wouldnt run with @PERSON1 anymore, @CAPS4 wouldnt talk, and @CAPS4 wouldnt smile. I knew something was wrong. We didnt know @CAPS4 was sick until it was too late. The first day @CAPS4 had thrown up blood. That was when the worrying began between my boyfriend, his mother, and I. We wanted to find a vet to help her, but none of us had the money to do it. The second day in the @TIME1, I couldnt find @CAPS1 anywhere on the property. I thought that maybe @CAPS4 had just gone for a walk around the outskirts of the house, until it reached @NUM1 pm and there was still no sign of her. Panick spread throughout my body and I gave up looking for her and turned towards @PERSON1. ""@PERSON1,"" I looked at her straight into her eyes, ""I know you can hear me."" @CAPS4 looked at me with big brown eyes and wagged her tail. ""@CAPS5 is @CAPS1, @PERSON1?"" I knew @CAPS4 understood me as @CAPS4 began to sniff around the areas of the property and suddenly as if @CAPS4 had picked up a trace, had followed a line of scent to an old opal car. @PERSON1 wagged her tail looked at me and looked back under the car. There @CAPS1 was sick looking. So I pulled her back up onto the property for my boyfriends mother to look at her. We werent sure if it was poisoning or something else. So we called a animal expert and asked. @CAPS4 said it sounded most likely like parvo, since we hadnt gotten @CAPS1 her parvo shot yet. So over the night to help her feel better, I and my boyfriend stayed up shooting water into her dehydrated body, and spinach juice hoping it would help, but all @CAPS4 wanted to do was sleep. So we left her alone in peace and decided we would check up on her in the @TIME1. In the @TIME1 my boyfriend had to go to work and I was left alone with @CAPS1 to take care of her. I sang songs to her as @CAPS4 layed on the porch sad looking and in despair, I stroked her on her head telling her how much @CAPS4 was my best friend and my favorite dog that meant so much to me, and I told her I loved her. I tried getting her to eat but @CAPS4 would only puke it back up. Finally after a day of crying next to her I noticed @CAPS4 kept walking to the pond behind the house and sitting in it. It gave me the insentive to check her butt. As I pulled up her tail, i noticed a large bloody hole @CAPS5 flies were flying out of. @CAPS4 was rotting from the inside out. I cried. It was time to decide whether to put her down or not, and I, my boyfriend, and his father just looked at her watching her be in pain. It was time. As soon as we got to the vet office, they took her inside and layed her on a table @CAPS5 I was told to hold onto her as they shot an overdose of anasthesia into her. it was only seconds before @CAPS4 was gone and everyone in the room was silent and I cried over her limp no longer smiling body. We dug a hole and buried her under the tree @CAPS4 played under. ""@CAPS1 my mama bear. @NUM2 @CAPS11 @CAPS12 you in heaven.""" 23 18 38 38 5 4 5 4 4 5 4 4 4 4 4 3 5 4 5 4 4 3 +21209 8 "Fishing trip gone wrong @CAPS1 me introduce you to what I will be talking about today, fishing. Fishing has been a big part of @CAPS7 life ever since I was born. When I was little I used to go out with @CAPS7 dad and brother to go fishing. @CAPS7 dad loved to take us to go lake fishing. Ive fished every lake around these parts. When I was five years old I got a brand new @CAPS2 @CAPS3 fishing pole it was so shiny and had a great ball bearing spinning reel. It even had some chrome going up the handle so when the sun hit it just right it would shoot a beams of bright light @CAPS18 the ground. Well as I grew older so did @CAPS7 fishing pole. The reel didn't turn as well and the chrome didn't shine like it used to. When I turned @MONEY1 @CAPS7 pole was a broken down and just wouldn't work for @CAPS7 fishing needs anymore. So @CAPS18 the day of @CAPS7 tenth birthday @CAPS7 family and friends gave me a some money. I told them that I wanted to buy a new @CAPS2 @CAPS3 fishing pole. So after @CAPS7 birthday I had acquired one hundred and @MONEY1. I thought I was the richest man in the whole wide world. Latter that night @CAPS7 dad came up to me and told me that @CAPS7 cousins wedding was this @DATE1 and that we might have time after to @CAPS15 a little bit of fishing. I went into the garage and packed @CAPS7 tackle box with pliers, hooks, spinners and all the fishing gear I would need. After the @CAPS7 cousins wedding @CAPS7 dad said ""@CAPS6 go fishing."" @CAPS7 dad and I changed into our fishing clothes and were off but I had remembered that I needed a fishing pole so I asked ""@CAPS8 dad we need to stop at @ORGANIZATION1 quickly"". It turned out that there was a @ORGANIZATION1 @CAPS18 the way. We pulled into the @ORGANIZATION1 parking lot and I went in. I ran over to there sporting goods and found the last @CAPS2 @CAPS3 fishing pole siting @CAPS18 the shelf so I got it down and looked it over. This was the pole for me, the only downside was the price that happened to be seventy @MONEY1. I bought it anyways. I walked out of the store with @CAPS7 new @CAPS2 @CAPS3 fishing pole feeling like I was a million bucks. As we arrived at our fishing spot I noticed that we were not at a lake but a large river. @CAPS7 dad explained that I needed to be safe around the river cause you can get swept away if you fall in. I got out of our car and the wind was harsh. It was chilling to the bone. I took out @CAPS7 new pole and tackle box and started to setup @CAPS7 pole for river fishing. I put @CAPS18 one large weight and big hook. I was ready for anything or at least I thought. I then reached down into @CAPS7 big red tackle box and pulled out a large worm. ""I think the fish will love this."" I say aloud to @CAPS7 dad. Staring out at the fast flowing water and toss @CAPS7 baited fishing line off shore. A big splash of water then ripples, @CAPS7 dad and I smile with satisfaction. Right next to me was a branch buried within the embankment. Setting @CAPS7 pole down rather softly I look upon @CAPS7 dad as he pulls in a fish. Well @CAPS18 our walk down to river there was this @CAPS13 @CAPS14 outhouse. Me needing to use the restroom, I turned to @CAPS7 right and said to @CAPS7 dad ""@CAPS15 not lose @CAPS7 fishing pole, I don't want it to going flying into the river if I get a big fish @CAPS18."" @CAPS7 dad reply's ""@CAPS17, @CAPS17 just go to the bathroom already."" @CAPS18 @CAPS7 walk to the bathroom I didn't see the big @CAPS19 that had landed near @CAPS7 fishing line. @CAPS7 dad saw them getting closer and closer to @CAPS7 line so he thought it would be a good idea to scare them away. As soon as I walk out of the bathroom @CAPS7 dad goes running and waving his arms at the @CAPS19. They all take off into the air, but something was trailing behind one of them weighing it down. What was it you @MONTH1 ask? It was @CAPS7 brand new fishing pole! It was at least @NUM1 maybe @NUM2 feet in the air. As soon as @CAPS7 pole took off flying it started falling. It didn't land @CAPS18 shore but it landed in the middle of this big wide river. @CAPS7 dad looks at me and says with a smile ""That's the first fishing pole that I've ever seen fly."" I start laughing uncontrollably then @CAPS7 dad starts cracking up. After the laughter was done @CAPS7 dad looked @CAPS18 shore for something to pull @CAPS7 pole in with but to @CAPS7 surprise he found it @CAPS18 shore down river.Will @CAPS20" 20 22 42 4 4 4 4 4 4 5 5 5 4 4 4 +21210 8 " @DATE1 my birthday, my boyfriend @PERSON2 took me to @LOCATION1 to @ORGANIZATION2's. I had never been there it was exciting and a new food experience for me. My dad had promised me that he would take me because it was my @NUM1 birthday and he wasn't there for my @NUM2 birthday. But he forgot so my dads girlfriend called the restaurant and told the manager that it was my birthday and to give me anything that i wanted and just to charge it on her credit card. This is where mine and @PERSON2's adventure started.. The beging of our adventure. Driving on the old back roads of @CAPS1 in the old @ORGANIZATION1 on our way to @LOCATION1. Just @PERSON2 and I, the roads were damp with the mid-afternoon dew, the trees with their beautiful leaves of all different color's of red's, green's, and orange. Bouncing around from the dips in the old road. @NUM3 bumpin on the stereo, only singing the parts we know. When we got to @CAPS2 we got lost because we took the wrong exit and ended up in @LOCATION2 the other side of where we were supposed to be. Being lost in a way bigger city than @PERSON1 or @CAPS1 wasn't good, We had no clue where we were. First place we go to was a strip mall that had a big party store. we go inside and theirs @CAPS4 decorations as far as the eye could see. Monster's, whitche's, and goblin's. We got side tracked by all the scary things I realized that I had to go to the bathroom. While I went to the bathroom @PERSON2 asked one of the store clerks where we could find this @CAPS5. The guy tells us hes never heard of a place like that. So we got back into the @ORGANIZATION1, there was a lady getting out of her car so we asked her. She said yeah its just down a couple of streets. As we drive down the highway we couldn't find it anywhere. Somehow we are lost all over again so we find another covenant store up this really big hill. we didn't think that the little @ORGANIZATION1 could make it up such a big hill. We made it to the top, went inside and had the clerk look up on his phone were we needed to go. As we waited all I could think about was how bad my feet were hurting in those shoes. We got the address and took off again for our search. About twenty minutes later we still had no luck at finding this restaurant and to top it off we had a reservation so we couldn't be late. We find another covenant store and @PERSON2 ran in to ask. The clerk told us to get back on the highway I was like no no stay on this road. We followed the empty road and right around the corner there it was @CAPS5. We were happy to have found it finally and we weren't even late. All @PERSON2 and I could do was laugh because we had gotten so frustrated to find the stupid place that it was just so funny you couldn't help but not to laugh. It brought @PERSON2 and I just that much closer we had gotten through that by laughing instead of fighting. And that we our funny adventure story. " 18 17 35 4 4 3 4 4 3 4 4 4 4 3 3 +21211 8 "Ever since I was born laughter has been a big part of my life without it I would be a very boring and grumpy person. Even tough I have experienced many moments full of laughter one specific moment always comes to mind. About a year ago my mom and I went on a trip down to @LOCATION1 to visit her family. It was the first time we had been there in over twelve years because my mom and I could not go visit them do to immigration problems. After all toughs years had past by my mom and I managed to get our legal residency in the united states. As soon as we got the residency we were free and could go visit her family without having to come back illegally. When my mom and I got to the airport in @LOCATION1 my mom started crying because she was full of emotions, for the first time in twelve years she was going to see her mom, dad, brothers, and sisters. As soon as we had gone trough all the airport security and baggage claim we made our way out to the exit where my grandpa had agreed to pick us up. When we got outside the airport a small little red @ORGANIZATION1 started getting closer and closer driving towards my mom and I. The car was no further then forty feet away when my mom suddenly dropped her luggage and started running toward the small red car I had no idea who the elderly person driving the car was. When the car parked an aged man stepped out of the vehicle and gave my mom one of the longest and most emotional hugs I had ever experienced in my entire life they must of been hugging for at least fifteen minutes just crying on each-others shoulders. When they had finished hugging my mom calls out my name and I start walking toward her. When I was face to face with my mom and the older man my mom tells me that the man was my grandfather then she looks at her dad and tells him to meet his grandson. For the first time in a very long time I had a grandfather I stood in shock for a while and so did he. He was amazed of how big and how much I had changed in toughs long twelve years that he had gone without seeing me or having contact with me. When I reached out to hug him he griped me hard and didn't let go he told me that this day had been the happiest day of his life. Me and my grandpa started loading the luggage into his car so we could head home to meet the rest of my family. When we got done loading everything into the car we headed home. The long ride home was a bit weird and uncomfortable because there wasn't much talk in the car. It was about a fifty minute ride home when we reached our destination in a small little town out of the @LOCATION1 called texcoco. It was a nice little clean town with a lot of small stores and lots of two story middle class houses the streets full of cars and people walking or on bicycles very different to what I was used to back in the united states. When we got to our house there was a group of about twenty people that were family and friends outside the gate waiting for us. When we were done seedling in and got done meeting all our relatives we got together and had a family dinner. One of my uncles really stood out because he was really funny and always was acting like a clown he was the one that set the mood in the house or wherever he went. As days past by I was getting more and more comfortable with the people around me and started having fun. About two weeks past and my uncle @CAPS1 invited me to one of his stand up comedy shows. that day I experienced more laughter then ever before his jokes where original and true.In cunclusion laughter is one of the elements to life without I could not be happy." 17 16 33 4 4 4 4 3 3 3 3 4 4 4 3 +21213 8 " Its my sophomore year and some of my friends were going to try out softball. After thinking about it I joined and I fell in love with this sport. I am not that good but like they say practice makes perfect. We all laugh and have a good time and everyone likes everyone and its fun to be apart of a team that is always laughing and having a great time together. This is about a time when my friends and I started laughing so hard we almost started cried and now its one of our little joke between all of us girls. Once my friends and I were out catching pop fly's and it was my turn to go catch the ball. I went out there skipping and just being my normal weird self. They hit the ball and it started to come toward me and I went running for it and slipped and fell right on my butt. Everyone including me started laugh because I fell in the mud and got all dirty. About ten minutes later we all were standing there and talking about how funny it was when I fell and how it made everyone's day. Then I saw some mud on the ground and I wanted to roll in it but didn't want to just lay down and start rolling in mud. So I asked my friend @PERSON1 to push me into the mud so I could fall in and roll in it. After she pushed me into the mud I got up and started laughing my head off. My knees were covered in mud and so was my butt and legs. They all started to say who shied on you because we are not aloud to curse, so we made something else to replace it. Now when I walk in the hall ways and see someone from the softball team we both just start laughing and say who shied on you in the middle of what ever we are doing right then. This is the first year I have ever played a sport in high school and I am glad I did it because I am having so much fun. When it ends in a few months I am going to be really upset. All these girls and I have became so close in the last @NUM1 weeks that they are like family to me now. Most of us use to just know each other and not really were friends and never talked at all but now we all do. We love to do silly things like sing in the locker room randomly or make the most dumbest jokes ever. But we all have fun and we don't care. We have had lots of laughs and many more to come this season. Like when we have games on the buses or just even at practice. We have an amazing couch that makes us laugh and makes jokes everyday. This season should be interesting with all of us because we all like to laugh and make joke and sing and just have a great time with each other and that's all that matters to make a good softball team and a great season." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21214 8 "The Benefits of Laughter Laughter has always been a major part of my life. Most of the relationships that I have with my friends are great , because i can make them laugh and cheer them up when they feel down. When a person laughs it makes them completely forget about anything that brought them down, and now they just focus on what made them laugh and feel that joy and happiness. When you laugh , the only thing on your mind is the thing that made you laugh, nothing else. laughter in many cases has brought people from an absolute low self-esteem to a high self-esteem in a very short amount of time. An example in where laughter was very beneficial to a person happened with one of my friends. One of my good friends seemed to be really down and didn't want to talk about what was going on with anyone. With him not telling anyone what was wrong it kind of leaves you guessing, what could have happened? After about a week of pretty much isolating himself from others, he was ready to talk and hang out with some of his close friends, which included me. Me, and two other people that were friends with me and him, decided to go golfing which was a new hobby of ours. It was that day that he told us how his mom was cheating on his dad for over a year, and how she was also hiding alcohol in all different kinds of places. and was over-drinking. By him just being around his friends, laughing and having a good time, he found himself focusing on other things other than what was going wrong in his life. Even laughing at yourself can be a good way of coping with your problems. even when there seems that nothing will go right in your life, something always will, you just have to give it time. The moral of the story that i have just told is that no matter how sad you feel, laughter can always help ease the pain. Even laughing about a bad situation could help you to feel better. " 20 19 40 40 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 +21215 8 " Laughter is huge part of everyone's life. It's used to express several different emotions. It's used to bridge the gap between people and break the awkward barrier. People laugh at their own mistakes which show others that they too make mistakes. Some people can communicate through laughter and know what the other is feeling. For instance one time while i was on a long car ride and very bored and about to fall asleep. So out of no where I began laughing with my friend and laughing different ways and carried on a whole conversation just with laughter. Laughing can bring others together by sharing common interests; everyone laughs. I laugh more than others I'm sure of it. Laughter is a huge part of my life, honestly with out it my life would be boring and depressing. I laugh so much sometimes that my side and stomach hurts so bad. I also make a lot of mistakes and am very clumsy so i get laughed at a lot. My family is a very close and hilarious family we make a lot of mistakes constantly everyday. For my great grandma's @DATE1 we were planning a surprise party. While we were planning it my grandma kept getting suspicious and asking what we were doing. So we kept telling her that we were going to get her a stripper for her @DATE1. So we managed to talk my uncle bobby into being a stripper and climbing out of a box and so he did and it ended up scaring my grandma. Until this day we still talk about that day and laugh about it all the time. Everyday my aunt acts in a ridiculous and funny way and so most of the time i laugh at her. She is always dancing at music on commercials or singing opera. My great grandma always eats foods that make her pass gas, and it's hilarious because sometimes she doesn't even realize that she is doing it. My great grandma also likes to dance and it also hilarious because the dance moves that she knows are far different then the ones today. I believe that with out laughter my family would not be as close as we are. With out laughter i would not be as close to my friends. You can bond over laughter it sometimes forces you to ask questions and get to know people in other ways you would not. It makes you comfortable around people and able to share things and act silly and not worry about your appearance. Laughter can also change your emotion from mad to happy in an instance. For example i was riding dirt bikes with my younger cousin and he decided that he wanted to go through this swamp with his bike. I told him it wasn't very wise because i knew it was not possible for him to go through there with out getting stuck and yet he tried it anyway. So as i assumed he got the bike stuck and since i was the only one with him i had to help him get the bike unstuck. It took forever for us to get the bike out. As soon as we did he tried to drive through again and got it stuck yet another time. I was very upset with my cousin but as i was getting ready to yell and leave him he fell in the mud head first and it instantly changed my mood. Even still today i laugh about the matter even though i didn't think it was very funny at the time. Even though laughter is good it can also be bad; @CAPS1 laughing at others while they are hurt and crying, or laughing at stupid ignorant pranks, or even laughing at people while they are making bad decisions. Decisions @CAPS1 drinking, drunk people are funny but the fact of being drunk or drinking at all is not. You can actually influence people to make bad decisions by laughing at them. Laughing at them makes them think that it's @CAPS2 to do what they are doing because it is making others laugh. So laughter is healthy but it is also unhealthy in a way." 21 20 41 5 4 4 4 4 4 4 4 4 4 4 4 +21217 8 "So my friends and i got into a heated discusion on how we need to keep things to our selves cause one of my friends told people some personal things about us. He caused us allot of problems in school and around town, @CAPS1 he started to lie to us one of my other friends lost it and went after him and tackled him down told him to quite lying. By the time he let him up and we all got back in are seats he started to spill his guts to us, he told us some rumers he started about us and some other things he did we kinda all lost it. So we calmed down a little then took turns talking to him, after my two friends talked it was my turn i was talking to him and he kept interupting me, finally i got mad and i grabed something off the floor to throw at him. Don't git me wrong not to hurt im to stop him from interupting me. I reached down grabed something soft without looking picked it up and threatened to throw it at him and he started to point and laugh, I stoped turned my head to look at what was in my hand. now remember it was an intense conversation you could cut the tension with a nife, for him to start laughing and everyone join in i didnt want to know. But i turned my head looked and fell over laughing it was a stuffed fairy i picked up off his floor i did through it at him, but playfully. We all finally stoped laughing and sat back down. I believe that it calmed us down enough to help exsplain and make things better for him and all of us. the moral of the story is even though your mad something will always make you smile and make your day better ." 11 16 30 30 3 2 3 3 2 2 3 3 3 4 4 3 3 3 3 3 3 3 +21218 8 " Every fiber of my being was urging me to talk to her, but my gut churned with anxiety every time I gathered up the courage to do @CAPS6. Then she glanced at me. Just for a second, but enough to gather information about me. Enough to tell that I wasn't just looking around the room vacantly, but I was focusing on her dark brown eyes, and hers only. I sheepishly flickered my eyes away, quickly counseling myself, why did you keep looking at her? You knew that she was going to notice! But somehow I knew I wanted her to. I wanted her to look back at me. I didn't feeling her gaze upon me anymore, even though it was only a second before that we made eye contact. I darted my eyes in her direction again. This time she was looking at me first and I fell into her sight. I didn't know what to do about this, I haven't been in this situation before. @CAPS5 girl has ever beaten me to first glance. She smiled, a cute little smile, I've noticed you noticing me, I don't see why you need to hide it. I have my eye on you. All I could do was focus on not looking like a moron. I willed myself to smile, but only slightly, enough to let her know i saw her smile, and it was at me! There was @PERSON1, smiling at me, giving me a chance to show her what makes me a guy for her. Then @DATE1 came. The ice rink in @LOCATION1 was about @NUM1 minutes away, which seemed short because of the @NUM2 friends that were howling and talking crap about each other in the back. We drove up and parked next to the rink. As we stepped out of my mom's minivan we could all hear the hustle and bustle of kids strapping on their rental skates and awkwardly walking towards the thick glass doors that lead to the oval arena of dry frigid air accompanied by a thick bed of cut up ice.Our group of friends all traded in our money and received our own pair of worn, probably never cleaned, ice skates. Absently we slide on the uncomfortable bladed shoes and waddled for the glass doors. One-by-one each of us stepped cautiously on to the ice, making sure we didn't look silly by sliding forward and performing the splits in front of everyone around us. When we finally conquered that challenge we proceeded to slide our way along with the current of skaters flowing in the counterclockwise loop around the rink. Every once in a while we'd race each other for a lap around the rink, but besides that we just talked about @CAPS1 of @CAPS2: @CAPS3 @CAPS4 and the various other games that held our interest. But as usual that conversation turned into a debate about ""over powered classes"". One side complaining that they can never win against that class, the other saying that it's very easy to ""destroy"" them with a simple trick. I proceeded to daze off out of the fight, looking around the rink, watching people stumble along their path or glide gracefully through the awkwardly skating participants. Then I saw her again. Her hair was the first thing that caught my eye, it acting as a blanket would being hung on a clothes line out in a @DATE2's breeze. Then as she looping around the end of the rink her face started to be revealed, just as beautiful as before. She wasn't having the hardest time skating, but every once in a while she would slide a skate too far to one side, lose her balance, but was able to regain her composure within a second or two. I smiled as she looked around, checking if anyone had seen her little mishap. ""@CAPS5 the sniper is @CAPS6 @LOCATION2, you don't know what you're talking about!""my friends sneered at one another. I had @CAPS5 interest in being pulled into this argument. As I sped up away from my friends, and weaved my way through the crowd, I eased my way towards @PERSON2. As i approached her I was running one-liners through my head to use as an icebreaker with her. I noticed her feet slide outwards on both sides of her, and I smiled at what I could do to be able to engage her. As she began to stumble, I had to time my entry perfectly as to seem like a random bystander just there to help her back up, rather than an anxious boy trying to find a way to talk to her. Right when she was about to fall over I sped up and placed my hand on her back and gave her a little push upwards. But she was too far gone. She tumbled on top of me as we fell to the hard ice. As the commotion seized, she quickly jumped off and apologized for her clumsiness. But all she noticed was my hysterical laughing. All she could do was laugh along." 22 20 42 5 5 5 5 4 4 4 4 4 4 4 4 +21219 8 " Laughter I have many friends. My friends and I are always doing silly things to have a good time, and pass the time. We are laughing all the time. There is not one day where we are together and we do not laugh. My friends and I believe that laughter is an essential element of life. One, blazing, @DATE1 day my friends, @PERSON2, @LOCATION3, @PERSON1, @LOCATION1, and @PERSON3 , all came over to my house. We were all bored, and hot, so we wanted to decide on something exciting to do. @LOCATION3 said, ""@CAPS1 don't we go swimming you guy's?"" We all agreed. My friends and I could not agree on where to go swimming though. We couldn't go to the pool near my house, because it was to crowded. We also, could not go to the lake, because it was too far, and we had no way to get there. My mother was working, so she could not give us a ride. @CAPS6 then said, ""I know you guy's! @CAPS1 don't we just have a water balloon fight right here at @CAPS2's house?"" We all responded, ""@CAPS3 let's do it!"" A little after, the @CAPS4 went to the store nearest by, which was @ORGANIZATION1, to buy water balloons, and water guns. Once they got back, they started filling them up right away. While us ladies changed into our bathing suits. After, we all decided on who was going to be on what team. The first team was @PERSON2, @PERSON3, and @LOCATION1. The second team, and the best team, was @LOCATION3, @PERSON1, and I. Both teams were all ready to go. Each team had buckets full of water balloons, and water guns. The teams were on different sides of my mom's green suburban. We were going to start throwing water balloons at the count of three, but the opposite team cheated and threw a water balloon before. Oh, but they did not realize that we had the hose on our side. @PERSON4 chased @PERSON1 across the yard. She caught up to her and soaked her with her water gun, but @PERSON1 threw a huge water balloon at her. It exploded right on her face. We all started laughing. Then, @PERSON2 and I started throwing water balloons at each other. We ran out, so we started using our water guns. Those too eventually ran out. @PERSON2 was all out of resources. I grabbed the hose, and I turned it up to full power. @PERSON2 tried to run but he slipped and fell. I completely hosed him down. My team had won the first @CAPS5. It was time for @CAPS5 two now. We had filled up more water balloons, refilled our water guns, and gone to our sides. We all counted, ""One! Two! Three!"" @CAPS5 two had started. @LOCATION3 started chasing @PERSON3. They went around the suburban at least five times before he caught up to her. He caught up to her on the grass. The grass was really slippery from when I got @CAPS6 wet, so they slipped, and fell down. @PERSON3 slipped first, but she took @LOCATION3 down with her when she was trying to get back up. We all started throwing water balloons at them, which made it harder for them to get up. @PERSON3 managed to get up she went on the side where her team was. They started throwing everything they had at us. They soaked us up. We had lost the second @CAPS5. Now it was time for the final @CAPS5. The @CAPS5 that decided who won, and who lost. We filled up double the water balloons, and double the water guns. No one got the hose that time. We thought it was not fair. Both teams lined up on different sides of my front yard. My team was on the right side, and the opposite team was on the left side. We were against who ever was lined up in front of us. I threw the first water balloon at @LOCATION1. Then @LOCATION3 threw at @PERSON2, and after @PERSON3 at @LOCATION2. Who ever moved out of line lost. @PERSON1 was the first to lose. @PERSON3 had thrown a big water balloon at her that knocked her out of line. We moved a step closer. It was now three against two. @LOCATION3 then water gunned @CAPS6 down. We walked another step closer. @PERSON4 and I were going back and forth at each other, but @PERSON4 had no more water balloons after a while and her water gun was empty so I beat her. We moved another step closer. @LOCATION3, and I easily soaked @PERSON3 down. My team had had won! We all cheered, then went back inside to dry off, and have some ice cream to celebrate my teams success. That day we proved that anyone can have a great time with some good friends, imagination, and a lot of laughter. I believe that everyone should laugh on regular basis. There is no need for sadness of anger in life." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21220 8 " Well it all started with the day he came to the airport. Missing him so much hardly ever getting to see him or have him return your phone calls like a @CAPS2 brother should, but it is always a blessing t see him and have him over for the holidays its amazing how he found time during the @DATE1 to come and visit us. it was well fortunate because now i didn't have to hear him cry all the time on its too cold and wet out here. So it was pretty good but because it was the @DATE1 it was normally about the time i go out and hang out with my friends and girls and now that started talking to this really beautiful girl that lives right around the corner from my house i was dying to go out and be with her but since time was really short with him i had to put my @CAPS2 brother first before anything.But then again every chance i got man i left and sneaked away to go see her. she was so beautiful so funny man she was s perfect to me it was crazy like a dream. I would tell my brother all the time about her. He would always tell me even if she was real it was impossible for a girl to be like that. It was the first day he spent the night everybody was so happy in the house from the time we picked up from the airport to the drive home talking making jokes about how much he changed how tight his cloths are. It was good we even stopped at burger-vile to get a couple burgers cause fat boy was so hungry all the time non stop eating. We shortly arrived home and the look on my little brother and sisters face was priceless there mouths open so wide like if they just saw god. As they came running towards he wasn't so prepared for it slowly still putting his bags down by the door he gets tackled and ruined over by a @NUM1 year old girl and a @NUM2 year old boy it was funny seeing them so happy and excited it was a surprise for them we were only supposed to get gas ha ha ha. Then after we sat down and talked all night when we rented movies earlier that day to watch, as a family but like my family nothing ever happens accordingly or on time. You know when your having fun and laughing you don't want it to end and you forget about everything let time go by and keep on doing what you do. But as time catch's up to you ad running on low energy because you been excited all day to see your @CAPS2 brother and to share story's tell jokes and laugh having a good time you get sleepy and in some real need of some rest like sleep in your bed in the covers and with the lights off, in silence. Oh good times having pleasant dreams of food and girls. Most of the time there put together in one hole dream after dream ha ha ha. Then we woke up had a great time shared some laughs in the morning cracking joke nonstop. Talking hanging out i got to take my @CAPS2 brother to some party's of mine which really scared my parents but it was funny at the same time cause before we left my mom was like okay we letting you g out don't get yourself into any shit @CAPS1 don't alright your dads going to b picking you up so don't be acting stupid look after your brother okay and right after i said yeah alright bet. i questioned it and was like what the hell? why do i have to look after my @CAPS2 brother he should be looking out for me. but i guess that's what made it funny. ever since then we had a good time and that's where this story ends with me saying goodbye at the airport to him. hoping that one day soon ill see him again soon." 15 15 30 3 3 4 4 3 3 3 3 3 3 3 3 +21221 8 " My Laughter Story @CAPS1 you know that laughing really adds time to your life? Well you do now. Laughter is a great thing to have, because without laughter our world would be dull and pointless. On a day to day basis you should laugh everyday. Laughing can really help you get through a tough time.Me, @PERSON3, @PERSON1, and @PERSON4 were just hanging out up at @ORGANIZATION4's house one day and @PERSON4 was being really funny, all of us were laughing hysterically at what @PERSON4 was saying, then suddenly @PERSON2 calls us and wants to hangout and for us to come to @LOCATION1, but she said only @NUM1 of us can go. So we all debated on who was going to go. We came to a decision and @PERSON4 was the one having to stay back, but @PERSON1 gave him something to keep him occupied. So @PERSON1, @PERSON3, and I were mobbing the bus to @LOCATION1 @LOCATION1. There was a tweaker on the bus and he was making us laugh so hard, but he wasn't even trying. So we arrived at @ORGANIZATION1. We were all hungry so we decided to get some @ORGANIZATION2. When we got to @ORGANIZATION2 we all just got a dollar burger which were rip offs so we all saved our pickles that were on the burger so when we left we could stick them on the windows. We @CAPS1 and it made us laugh so hard we could barley run away. When we arrived at @ORGANIZATION3's apartment we knocked on her door, no one answered, so we knocked again, no answer again. We were just about to call her when she walks out of a different apartment and we all just started laughing because we pounded on someone elses door. When we walked in there was a party going on so we were like nice. When we got there we all had a couple of beers. We were having such a good time we were all just laughing and have the greatest time. That next morning we woke up at @NUM2 a.m because we had to ride the bus back to @LOCATION2 early because it was @DATE1 and the buses run only for a little bit. When we got on the bus the bus driver was making weird faces like he was constipated or something but he made me laugh really hard.When we arrived back in @LOCATION2 we called up @PERSON4 to see what he was doing, he was just hanging out in town so we just went and kicked it with him for the rest of the day and later we all went home. It was a good weekend." 15 16 31 3 3 4 4 3 3 3 3 3 4 4 3 +21222 8 " laughter is the best medicine,well that is what some people say. I think that laughter is good for you and if you are in a relationship laughing is really good for that. @CAPS1 here are some of the ways laughing is good for you. laughing in a relationship is good because if you can't laugh together you probably not be together. If you can't laugh with your boyfriend/girlfriend you will not have a very good relationship with him/her. @CAPS1 don't be scared to laugh a little with your boyfriend or girlfriend. I think and I think most people will say the same thing to that if you want a good relationship you need to laugh.laughing is good when you are sad because you can get told a joke and if it is a good joke it can make you feel better.It works at school to you laugh with your friends and all your stress will go away.if we all just laugh about more things and not take things @CAPS1 sonorously we would not have @CAPS1 many bad stuff happen in the world. we will all get along better and not get in fights in school,wouldn't have @CAPS1 many people in jail or person, @CAPS1 that is why i think laughter is the best medicine for people who are sad,stress,and in relationship. But you think what you want but this is what i think is good about laughing." 15 12 27 3 3 4 3 3 3 3 3 3 3 2 2 +21223 8 " Have you ever laughed so hard that you started crying? Were you alone? Most of the time when you are laughing about something you are with someone else. I believe that laughter brings two people closer because it's something you guys both share, a moment you and that other person can think of and picture over and over again in the future. Even if that person is miles away. I can remember it as if it just happened a couple weeks ago. I had just finished a conversation with @CAPS3 mom. I went into @CAPS3 room and unplugged @CAPS3 little black phone from the charger. I opened it and a blinking light flickered saying ""@NUM1 missed calls from @PERSON1."" I called her back to apologize for missing her phone call. I heard someone pick up, but nobody talked on the other end. "" @CAPS1, @PERSON1 you there?"" I had asked hoping I would get a reply out of her. I sure got a reply just not the one I was wanting. She started bawling. Trying to catch her breathe, the words barely escaping her mouth. ""@CAPS2, @CAPS3 grandpa just died."" @CAPS3 heart sank into @CAPS3 stomach. @CAPS3 eyes started to water up and @CAPS3 throat started to close, making it harder to breathe. @CAPS3 voice was all shaky and rough. I said, ""I'm sorry @PERSON1."" and I started crying. Us both crying wasn't make anything better anytime soon. She then had explained that he had a heart attack and asked me how something could happen to someone that didn't deserve it. I didn't have an answer to give her though. I had never been in the position she was in. Who was I to know what to say, or do to help her? So I thought hard of what to say to her that would clear her mind a little bit. @CAPS3 brain started hurting when I finally found something from the heart to tell her, something I would want to hear if @CAPS3 grandpa passed away. I said in a low calming voice, ""there isn't much I can tell you because I don't know from experience, but you're family needs you right now as much as you need them. Think about the good times you had with you're grandpa @CAPS4. The laughs you guys enjoyed together. I heard a slight giggle underneath her sniffling. She started telling me a story about how every year her family would take a weekend beach trip. How it was a time for her family to bond and how she would miss it. When she told me that story @CAPS3 heart warmed and the corners of @CAPS3 mouth went up a little. I was proud of myself for sticking in there and being strong for @CAPS3 friend. Even though @PERSON1 will never see her grandpa @CAPS4 again she will always have him with her. Through memories, with in her heart, and by laughter." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21224 8 " Laughter is one of the most amazing things that the human body is able to do. The sound of laughter is as unique as the sound of crying. There are many things that can cause people to laugh. And once you start laughing, you can't stop. Laughter is caused by something that is humorous, so it's mostly the cause of laughter that makes it so much more fun. And it usually depends on who you are with, where you are, and in what kind of situation you're in before you can actually start laughing. Kind of like the time when I was in @LOCATION2 baking a pie with my @CAPS1 @CAPS2..... It was a nice warm evening in @LOCATION2, and I was making a pie with my @CAPS1 @CAPS2. We had out all the ingredients necessary to make the pie until my @CAPS1 points out there's no more sugar. She tells me to go to the covers and grab a jar of sugar. So I went, and there were two jars when I opened the covers I asked her which of the two jars is the sugar because they had no lables on them. ""I think its the the jar on the left"", she said. I grab the jar on the left side without another word. Later on while everyone was sitting down talking with one another, my @CAPS1 and I go and get the pie to serve to the family. They all looked at the pie in awe as we took it out and started slicing it. After everyone was served they all took a bite out of it. Imidiately in just seconds everybody starts spitting it out like it was the worst thing that they have ever put in there mouths'. Suddenly my @LOCATION1 makes a comment saying that the pie is too salty..... not exactly the kind of comment I was expecting. Then my @CAPS1 @CAPS2 goes and checks to see the jar that I had grabbed from the covers. She sticks her finger in the jar and tastes it. Luckily enough, it was the salt jar. Then out of no where everyone starts to laugh into tears at the thought of what just happened. It was the most fun I had that evening, nobody could stop laughing. Clearly, the situation with the pie was something that I will surely never forget, and it'll probably never happen again. And after all that happend with the pie ended up being the kind of situation that makes you laugh. This shows that the three causes of laughter is real. First, I was with my @CAPS1. Secondly, I was in my @LOCATION1's house where there has to be at least one funny thing that can happen there. And also what happened with the salt and the sugar was a completely unexpected situation that turned out to be unmistakeably hilarious. And to think that this event happened all because of the three main causes of laughter. Laughter is one of the most amazing things that the human body is able to do. Laughter will always be one of those things in life that cannot ever be destroyed. If you are a person who says that they've never laughed, then you are a liar and a hypocrite. Being able to laugh is good for you and your health. It gives you extra oxygen in your lungs to help you breathe easier and it's a lot of fun. So if you ever notice that you haven't laughed, stop imidiately and take the time to have a laugh. " 20 23 43 4 4 4 4 4 4 5 5 5 4 5 4 +21225 8 " Laughter--as we all know @CAPS4--is a visual expression of happiness, or in inward feeling of joy. @CAPS4 @MONTH1 insure from telling a joke, being tickled, or from some other random stimuli. @CAPS4 is in most cases, a very pleasant sensation. By that means, laughing has an enormous impact on each and every one of us throughout our everyday lives. Laughter tends to enlighten our emotions by expressing them in many good, cheerful, and lastly, positive ways. However, @CAPS4 is proven that laughter is far more contagious than any cough, sniffle, or sneeze.When laughter is shared, @CAPS4 binds people together and increases the intimacy and happiness. Around @TIME1--which happens to be exactly when my third period class begins, I was supposed to be in my @CAPS1 class at the time, but with my luck--I wasn't. You are probably thinking, ""@CAPS2, if she is not in her third period class, then where is she?"" I actually ended up in the computer lab, beginning my state writing test once again. I defiantly wasn't too thrilled about taking the writing test over again, but in my heart, I knew deep down inside that I could pass the state writing test this time without any if, and, or buts, which are also known as the worst things ever--excuses. There was absolutely no doubt in my mind that I was going to walk out of the room, realizing that I could of done better--that's for sure. My self confidence was set to an exceedingly high standard with absolutely no negatives thoughts to think of. I was ready to face the test--once again. As soon as I entered the computer lab, I almost nearly sat down as fast as a fly trying to dodge a fly swatter. I took an immense deep breath--like usual, and began to log into the computer. In between the time I was waiting for my computer to get logged in, I sat there gazing around the room, with nothing more to do, then to visualize what I was going to type my state writing test about. Once the teacher approved my log-in, I started typing all of my private information into the blank squares, so that I could begin my next steps.Within seconds I was ready to begin my test. On the screen appeared several topics that were listed below to choose from, but there was only one of them that I felt most satisfied with, and that I felt I could score exceedingly high in. The topic was, ""We all understand the benefits of laughter. For example, someone once said, ""Laughter is the shortest distance between two people."" Many other people believe that laughter is an important part of any relationship. Tell a true story in which laughter was on element or part."" The minute I selected that subject, I honestly had no idea what I was going to write about because during my childhood life I had numerous laughter moments that had occurred, and nearly every story that I could remember had to of been more than @NUM1 words. So, I quietly sat there thinking-- just how I knew I would be. During the moment, I heard this very irritating sound, which was the from the many taps from the kid's keyboards, and numerous annoying clicks from the computer mouses. @CAPS4 was very obvious that the students understood their topic quite @CAPS2--unlike me. Minutes had flew by so quickly, and yet, still nothing. Not a single story to share about laughter. By then, I was very upset with myself, because if you really think about @CAPS4, who does not have a story to write about that deals with laughter? I knew I had some sort or kind of story to share, @CAPS4 was just harder for me to summarize one up and type about @CAPS4. Just then, as I was going to begin my essay, a younger student, (that had been taking a state reading test), loudly shouted, ""@CAPS3!"" The little kid not only caught myself, but the rest of the class as @CAPS2. I honestly swear @CAPS4 was a ""had to of been there moments."" @CAPS4 wasn't just for the fact that he said @CAPS3 exceedingly loud, but the expression that was on his face, and the way he announced @CAPS4 to everyone in the computer lab--@CAPS4 nearly killed me inside. The little boy was so thrilled and proud of himself that he had passed. Obviously he was very eager to let the entire class know--which is probably something I would have done as @CAPS2. Almost as quickly as he announced @CAPS4, I knew this was a laughing moment to not only remember, but to share with others as @CAPS2. In fact, if truth be told, this short story just so happened to not only make my day, but he had made my state writing assessment topic many times less stressing for me. Clearly as you can see, laughing indeed does seem to have an enormous impact on each and everyone of us throughout our everyday lives, and sometimes those moments are meant to be shared." 25 25 50 5 5 5 5 5 5 5 5 5 5 5 5 +21227 8 " For me there are so many parts in my life that involve laughter. Having fun and laughing are the main things that I do in my life. When I laugh I feel happy, so whenever I'm sad or mad people can always tell a joke or something to make me giggle and then I'm happy again. I love making people laugh. Sometimes when I try and make people laugh I tell a joke but I'm not that funny. When I just be myself, people laugh. I guess I can be funny without even trying. I have amazing friends, I mean absolutely amazing, although we have our rough days I still love them and thank @CAPS1 for them everyday. My friends and I are always cooking up some way to have fun, and every time we find something to do @CAPS2 always turns out to be funny. Even the little things, such as facial expressions, the way we pronounce a word, or even the way we eat our food makes us laugh. @CAPS2's actually pretty ridiculous. When my friends and I try to tell other people about our extremely hilarious adventures, they all just stare at us as we burst into laughter. @CAPS2's possible that people don't think @CAPS2's funny because they weren't there. This year my family has an exchange student named, @PERSON1. She is from @LOCATION2. She is very shy and quiet. @PERSON1 never seemed like the type to make me laugh, @CAPS5 boy was I wrong. She is possibly the funniest thing to walk the @LOCATION4. I sure think she's funny, anyway. Sometimes she is so oblivious that @CAPS2 is just hard not to laugh at her. I have a best friend named @PERSON2. We have so many fun memories together. She is amazing and funny. She is so short, people call her a midget, she is quick to reply, ""I am not a midget! I am @NUM1' @NUM2'', you have to be @NUM1' @NUM4'' to be a midget!"" @CAPS2 is so cute when she does this. I recently moved back from living with my grandparents in @LOCATION1. While I was living there I had been informed (over the phone I might add) that there was a girl living in my old bedroom. ""@CAPS2's a foreign exchange student from @LOCATION2,"" my family told me. I flew back up to @LOCATION3 for @CAPS4 with my family. When I got here I met @PERSON1. She seemed so quiet and sweet. @CAPS2 was late when we got home so I immediately went to sleep. The next day I woke up, called my grandma, then called @PERSON2 and asked her to come over and hang out with me. She came and met @PERSON1. @PERSON1 told us she wanted to get my mom a birthday gift and I replied, ""@CAPS5, that's tomorrow, lets go into town."" All three of us went to town and went to @ORGANIZATION1 For @CAPS6. When we got there we all looked around for something we thought she might like. Somehow, we ended up in the underwear aisle. @PERSON2 picked out a tiny sized pair of underwear and shouted, ""@CAPS7 @PERSON1, what about these?"" @PERSON1 looked at her with the funniest facial expression and shouted back,""@CAPS8, I don't think my thighs would fit through that!"" @PERSON2 and I literally fell onto the floor and laughed so hard that our faces were bright red. Based on our first impression, we thought she was a quiet, ""keep to herself"" kind of girl so we just thought @CAPS2 was hilarious. We tease @PERSON1 about this quite often and she teases back about other funny things we've encountered. I've grown to love @PERSON1 and I love being with her and making fun out of all situations. " 20 19 40 40 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 +21229 8 " As warm @DATE1 days turned into chilly winter nights, the girls (@PERSON3, @PERSON5, @PERSON2, @CAPS1 and @PERSON4) and I were wondering what we should do to add a little pizazz to our life's. No one knew what was to come or the laughter we would experience. It was one of the biggest games in the @ORGANIZATION1 season. It was to determine whether or not they would go to the playoffs to compete for the @CAPS2. @CAPS1 is the biggest @ORGANIZATION1 fan known to man. She was of coarse, all decked out in @CAPS3 attire. We watched the game, had a few shots of apple juice and pigged out on @ORGANIZATION2. Halftime was coming right around the corner and to say the least, the halftime show wasn't going to be all that and a bag of chips. I pulled my camera from my @PERSON1 look alike bag and pressed record. While I was walking around in a circle trying to get everyone in the video, @PERSON3 was having a little too much fun on a red exercise ball. She was bouncing up and down at least @NUM1 or three inches into the @CAPS7. A light bulb went off in my head. I handed the camera to @PERSON4 and slowly moved over to where @PERSON3 was bouncing. Just as @PERSON3 screamed, ""@CAPS4 @CAPS5 @CAPS6 @CAPS7!"" I kicked the exercise ball out from under her and when she came back down she was straight on her back! @PERSON3 was too busy laughing and trying to breath to tell @CAPS5 how stupid I was. I was on the floor curled into a ball trying really hard not to pee my pants when all of sudden I hear this bang sound. I look up and the camera was lying on the floor next to @PERSON4, @PERSON5, and @PERSON2 who were laughing along with @CAPS5. @PERSON3 finally got the strength to get up. She came over and smacked @CAPS5 across the head and said, ""@CAPS8't ever do that again."" I'd say we had a better halftime show then the @ORGANIZATION1 did. As the game ended, the weather changed and it began to snow. While everyone scurried to find their shoes, knocking into one another, I grabbed the camera not worrying if I got sick or not. We spent the last hour doing two of my favorite things; taking pictures and making memories. We went back inside and slowly went into slumber after drinking a little too much hot chocolate and apple juice. @PERSON3 has always been an early bird. I felt this sharp pain in my back and I shot straight up. Only to quickly realize that it was only her fist. Soon after everyone else arose from their warm blankets. Everyone @CAPS9 @CAPS1. We let her sleep and wondered outside again. It snowed. A @CAPS11. We thought of a plan and began to gather all the snow into one giant pile. @CAPS1 is a heavy sleeper so we picked her up, open the door that led to the backyard and plopped her right down in the center of the pile. @CAPS1's eyes opened big and wide. Her mouth followed doing the same thing. She used every bad word she could possibly think of, including some in @CAPS12 that even she didn't know the meaning of. Soon, we were all in the snow laughing so hard we couldn't even @CAPS6 our breaths to apologize. @CAPS1 came to realize that it was an exceptionally good joke and began laughing along with the rest of us. In the end, we all had a good laugh and a cold to share that night. Laughter is the most important element in any relationship. It makes the bond between you and others stronger. Whoever said, ""Laughter is the shortest distance between two people,"" was @PERCENT1 right." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21230 8 " FUN @CAPS1 @CAPS2 I've had the same best @CAPS2 for about three years now. There are a lot of times where laughter was the biggest part of our friendship. But @CAPS3 not sure if we just think were funny or if people think were funny. My two best @CAPS2 are @LOCATION2 and @PERSON2. I've actually know both of them since we were little. It was about second grade when we became @CAPS2. Although we were never really close until about sixth grade. Now days @CAPS3 closer @CAPS1 @LOCATION2, then I am to @LOCATION1. I remember when @LOCATION2 and I would throw little pieces of eraser at each other across the room nearly missing our teacher. The first memory I remember @CAPS1 @PERSON2 was maybe when we were in third grade. We would goof off and mess around in @LOCATION3. The three of us haven't hangout a lot since high school started. It also doesn't help when we each go to different schools. But when @LOCATION2, @PERSON2 and I do hangout were always laughing and having a good time. One example of laughter bringing us together, is when we went to @PERSON1 skate park for my birthday a few years back. @PERSON2's grandma was taking us there and along the way we asked if we could stop and get @ORGANIZATION1. I just got an @CAPS4 camera for my birthday so I decided to bring that along. We went the the @ORGANIZATION1's located on @NUM1 street. As we were going through the drive-thru and @PERSON2's grandma was ordering. @PERSON2 decided to roll his window down and started ordering stuff for himself at the same time his grandma was. He asked for a @ORGANIZATION2 and a large fry. What made this really funny was that his grandma was getting mad. She told @PERSON2 to stop and told the person over the mic not to listen to the male voice in the background. But @PERSON2 kept doing it anyways. When we were pulling up to the window to get the food @PERSON2 told his grandma to pull up far enough so he could get the food. So as we were pulling up @PERSON2 rolled his window up down and got the food. @CAPS3 so glad I brought my camera and recorded the whole thing. When we got there we hopped out of the car and went to the park. It was later in the day when we got there, probably about three or four. At first none of us really skated cause we were looking around. But when we did start skating we stayed there for about four or five hours. Cause when we left it was dark outside. There are four stair sets there, the two stair, the three stretch, the three block and the five stair. That's the order they go in from size and how hard it is to @PERSON3 them. Cause we were there for so long we had a lot of videos recorded. Some where of us skating, some where really random and funny, then others I don't know what the heck was going on in them. Later that day when we were tired and bored of being there @PERSON2's grandma came and picked us up. They both came over to my house when we got back. We just watched @CAPS5 and played video games. Its always funny to watch one of us get frustrated because were not winning. Eventually we stopped and listened to music. Around @NUM2 p.m @PERSON2 went home and @LOCATION2 stayed the @TIME1. As we were in my living room he was messing around @CAPS1 the tri-pod I had got @CAPS1 my camera. As he has it in his hands, he's unscrewing it and it falls apart. We both laught at first but then I got mad cause I just got that. This day was really fun, it was full of laughing, dedication to skating, and our friendship. It was a day that I felt closer to @LOCATION2 and @PERSON2. " 16 20 36 3 3 4 4 4 3 4 4 4 4 4 4 +21233 8 " Laughter @CAPS1 @CAPS2 @CAPS3 @CAPS4 @CAPS1 your little, your exactly that, little. You look up at everyone with not a faint clue of @CAPS6 to do anything. Now, this is usually @CAPS1 your parents step in. They feed, and love and take care of you, but @CAPS4 importantly, they teach you what you need to know. Growing up I've learned that you need to help others, not just yourself. One way I find easy for me to help others is with laughter. Laughter isn't something that just effects the people around you, @CAPS2 also effects you. You can ask anyone if once in they're life anyone has ever made a difference by making them laugh. Or could have made a difference my making them laugh. @CAPS4 will be able to think of a time this has happened, some @MONTH1 not. Though I know for a fact, someone has made a difference in my life just by making me giggle. For instance, I remember a day @CAPS1 I had felt so alone and forgotten. I felt used, betrayed even. Growing up I knew my friends as a second family. They were always there for me. Though like @CAPS4 kids we fought, but by the end of the day everything was backed to normal. People say, ""@CAPS6 come I never noticed @CAPS6 easy I had @CAPS2 @CAPS1 I was little? I thought I had @CAPS2 bad then?"" @CAPS7 @CAPS2 doesn't matter @CAPS6 the problems change its all the same. @CAPS2 still hurts to fight with friends. You still have days you feel horribly alone, but your not quite sure why. One of those days where the littlest thing seem to cut the deepest. This day was one of those kind of days. Now see, I was young then; I was only in the third grade, and my best friend had been a girl named @PERSON1. I don't remember exactly what we had fought over, but I do remember @CAPS6 if felt. I remember walking in the classroom, near tears by then. I'd dealt with @PERSON1 being so cruel before, but whatever she had said that day had really hurt me. I was always the first in the classroom, I'm not sure exactly @CAPS6 I was, but I always was. In my seat I sat down and didn't move. My brain had taken me to my own little world of sorrow. That's @CAPS1 she asked me what was wrong. Even as a child I hated @CAPS2 @CAPS1 people I didn't really know asked me if I was okay. @CAPS2 embarrassed me, for @CAPS2 was just another reminder that I was showing weakness to people who probably didn't care. Though this time @CAPS2 was different, and in a weird way @CAPS2 helped. I explained to my teacher what had happened in a rush of tears and details. What really made a difference is that after everything, my teacher tried to comfort me and make me feel better, she made me laugh. Whatever exactly I had told her, her response didn't just make me feel better, but made me realize @CAPS2 wasn't that big of a deal. I giggled for a while to myself, and by the time everyone was in the class I was happy. At the end of the day me and @PERSON1 were back to being best friends. My teacher honestly did me a favor. As a kid your vulnerable. You don't look at the world as a harsh, unforgivable place. That's why people turn out like they do. Its all about the environment they grew up around. I believe I was changed by that small effort. That one little joke made me realize everything's going to get better in the long run. Laughter's been important to me ever since. I helped me realize the effect you have on people. Even at a small age you still can make a difference. Since then I've used what my teacher had taught me. I learned that sometimes, even if you couldn't make them laugh, smile or just be happy; the fact that you tried really made the difference. Laughing is important. @CAPS2 changes people, no matter what the age." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21235 8 " A great day for an adventure @CAPS5 my sister invited me to her christion school called @PERSON1 , @CAPS1 was a nice sunny day and then @CAPS1 turned in to a not so sunny day. Woke up first day of visiting my sister in her new school ,went to all her classes with her ,the teachers were kinda wired and so were her friends ,after second period in @PERSON1 we went to her @CAPS2.E class the teacher said to put on running shose besause we are going to run up a mountian, my sister had forgoten to put on her running shose so the teacher sent me and her to go get them after we got the shose the class was already a quarter of a mile away from the school so me and my sister desided to take a short cut so we took the off road ""the seanic root"". We had ran down a hill and @CAPS1 was really a steep , my sister got half way down the hill and slid on her butt all the way down after she went I went so I ran down the hill faster then I had ever ran in my life and I hit the pavement at the bottom I was like a tumble-weed in a huricane my sister helped me up and we started running tword the class and they were in ""shock"" of what me and my sister looked like my sister looked like she had just got done playing in the mud me on the other hand looked like I got hit by a truck and my face was covered in dirt, @CAPS3 after me and my sister got back we decided to get cleaned up, so we went to the showers the showers at @PERSON1 are similer to the ones in @CAPS4.H.S but with shower curtins the shower that I had used the curtin had came off this medel hook and I wasnt being smart and used a plastic stepping stool the ground was still wet from @CAPS5 I had took a shower and the stool sliped and my pinkey got cought on the hook and I sliced @CAPS1 open on a main vain in my pinky I started getting light-headed and I passed out my sister and her friends took me to my sisters room and put a band-ade on @CAPS1 @CAPS5 i was still passed out. After i woke up i found my self between a blanket and a really uncomferterbul bet my sister was waiting for me to wakr up and told me to never scare her like that agien , @CAPS5 she said that I told her how I thought @CAPS1 was funny @CAPS5 we ran down the hill I didnt do much damage except for give me some scrapes and how my pinky made me pass out." 12 16 28 3 3 3 3 2 2 4 3 4 4 3 3 +21236 8 " Every @DATE1 my family, friends, and I pack up for an exciting trip to @ORGANIZATION1. we always take our @CAPS3 runner, and boat along with us. We rent a large cabin that is right on the water side. We stay for about one week and it is always around one hundred degree's, so we normally spend the majority of the day swimming in the water. It is located over the pass about an hour from @CAPS1. Their are many fun activities to do at @ORGANIZATION1 like @CAPS2, kayaking, aqua cycling, bike riding, boating, and lots more. This was the first year that my brother had his boating permit and I was very excited because it is way more exciting to have him take us out tubing rather then my parents who go very slow, and they don't make it that much fun. He would always put one of us on the @CAPS3 runner to @CAPS3 the flag when one of us fell off, and one of us would be on the tube. One time he took me and my friend @PERSON1 out. It was in the latter afternoon, and that's when the water gets rough, and choppy. First @PERSON1 was on the tube and I was flagging on the back of the @CAPS3 runner with my brother. He would have us going around in circles at about @NUM1 mph. She ended up flying off right away. Once @PERSON1 got up on the @CAPS3 runner I hopped on the the tube and i told my brother I was ready. We would do thumbs up to go faster, thumbs down to slow down, and @CAPS3 your arms around like your crazy to stop. He started going and I had my thumb up for a while waiting for him to get going. He started going really fast and I was flying every which way going in circles. Every time I would hit a @CAPS3 I would get whip flash. I put my thumb down to go slower and he didn't slow down he kept going faster, and faster. Then I waved my arms around to make him stop. @PERSON1 was the one watching me, and she thought it would be funny if she told my brother that I wanted to keep going faster. Finally I did about two back flips into the water. I hit the water so fast that it felt like my skin was going to fall off, it hurt so bad. It took about a minute for me to finally get to the top of the water when I took a huge gasp of air. I was sitting in the water waiting for my brother to drive over and pick me up. Something didn't feel right, I didn't have my bikini bottoms on any more. I started panicking and told my brother not to come over. I looked all around in the water for them but they were no were to be seen. I told my brother and he called my dad. My dad and mom were on there way to bring me a pair of shorts because their was no way I was getting out of the water with no shorts on. I had a blast at @ORGANIZATION1 and I have a great story that I will be telling for the rest of my life. I cant wait to go back next year and i know that I will be bringing an super tight shorts to go tubing in." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21237 8 " When you laugh, what are you thinking about? Who are you with? What are you doing ? When you were three you laughed because someone went, ""@CAPS1-a-boo""and they contorted their face. When you were thirteen you laughed because someone looked different and wasn't wearing clothes that were ""in"". By the time your twenty-three you laugh with your friends because your friend is drunk and doing something stupid in the middle of the party. But when you find yourself at thirty-three your laughing while your husband is wrestling your five year old. Well about three years back my brother and I finally figured out how to have a relationship. The @PERSON1 family has always been complicated. When we tell people how we are related, their response is always, ""@CAPS2...What? Start over!"", so we try to avoid the topic. My brother @PERSON2 has lived in @LOCATION2 his whole life with his mother and step @CAPS3, so neither our @CAPS3 or I really had a close relationship with him. Although it wasn't our dads fault, we only saw @PERSON2 maybe twice a year. In those two times a year, @PERSON2 and my sister @PERSON3, would always pick on me, hide from me and laugh at me because I couldn't do what they could. I used to hate it when he was coming down, because I knew I would spend most of that time crying and getting in trouble for things I didn't do. When three kids grow up together they find that they like each other better when they get along. My brother wasn't so mean to me anymore and he figured out that we were on the same side against the common enemy: @CAPS3. Our relationship has always grown around laughter, we get along because we are able to make jokes about one another everyday and know that it means nothing. Its our way of showing we care about each other, sometimes we laugh at other people and sometimes we laugh at ourselves. Now that my brother is off at college, we actually miss each other, and the key to our relationship is the laughter we share. When my brother found that he actually liked me, he taught me everything about video games and helped me, we were not only on the same team in the video game, but also in real life. Summer @DATE1 my brother and I were sitting at home, bored because @CAPS3 was at work and @PERSON2 didn't have a car in @LOCATION1. We decided to play all the video games at least once throughout that endless day. That challenge didn't last long because the first and last game we played that day was @CAPS4 @NUM1. We started off just figuring out how it worked and where to go and we fought about it for a good hour. Then we started playing just to see who's team won, we started making jokes about each others players and we gave all the bad players, mean, really weird names, we laughed through the whole game. Then to make things more interesting we got into making our own characters and building a fantasy draft. @PERSON2, being a guy, came up with the grossest names and made the players look either really scary or really funny, he stacked their stats so they had an overall team average of @PERCENT1 in everything. I, being a girl, made all my guys really hot and muscular with funny names and only stacked their stats to what I thought was reasonable, depending on their good looks, so my team average was only @PERCENT2. From the moment of the tip, to the the moment we looked at the final stats for the game, we were laughing. Every time the announcer said one of our players names in that basketball context, it was so wrong but so funny, ""@CAPS5 @CAPS6 for two"". When both teams made every shot and then by some chance somebody missed one, we made so many comments and jokes. By the time @CAPS3 had gotten home, he thought something was wrong because we were crying so hard from laughing, that our tan carpet had turned brown . Even through dinner, when we had calmed down, @PERSON2 would say something only I would know what it meant and we would just burst out laughing and @CAPS3 would look at us with a dumbfounded expression. Looking back I wouldn't trade anything for that day. Now @PERSON2 and I sometimes bring up that day when we start playing a sports game or were just talking on the phone. We laugh and use context to make fun of each other. Ya you could say its not a very normal relationship, but that's how we know we love each other, because truth is, I don't even like video games, I only ever play a video game when he wants to. So since that day we have become closer, we don't fight, and we actually stand up for each other. So who ever said, "" Laughter is the shortest distance between to people."" is right." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21238 8 " It seems like everyday of everyone's life they are being tested in every way shape and form and it seems like it will never end. It gets to be stressful and complicated but this is what makes us human. Something else that makes us human is laughter but no matter how bad things get to be it can always be changed by a knock knock joke, comic ad, or just one word from a best friend. Iv been with my dad and a couple of his high school buddies as they are telling stories about some of the crazy stuff they did when they were in high school. My dad and his friend @CAPS1 went off into a story about when they bought a @NUM1 @LOCATION1 tempest for @MONEY1. It turned out to be the greatest life lesson and some of the funniest stories in my life. This was my dad's second car he ever had with a @NUM2 and a @NUM3 speed anything was possible. It started out when my dad first drove it to school which didn't last long, because an hour later. @CAPS1 and my dad left doing a burn out on speed bumps in the school parking lot. This car was a burn out animal backing up then side stepping the clutch to second and it would all be up in smoke. One day my dad was sliding around gravel corners and one of the rear bias ply tires blown out it thrown that car into the ditch and messed up the side pretty bad. Joe enders pulled him out and half a gallon of dera glass a hammer and a can of paint later it was ready to go again. The next story I heard was when my dad's friend borrowed the car he needed something to get him back and forth to work. So my dad hands him the keys and says ""keep it on @NUM3 wheels"". Two weeks later on a weekend he was out messing around and the car slid off the road and rolled a few times and buckled the roof. I never heard how he got out but somehow he did and returned the car to my dad. After that it had an organ transplant of a roof from a @CAPS2 that hit a tree, @NUM5 weeks later and it's ready to go again. Now it's just something about a rear wheel drive car and snow that makes us kids again. sliding around in snow was the last thing this car ever did. My dad and @CAPS1 were driving in the snow having fun when the back end decided to trade places with the front. They lost control as they slid across the winter wonderland to a lonely telephone pole. The car slid into the pole and it was the end of fun. Finally the car had died and my dad had brought the car back home. He decided not to fix it and parted it out he sold the @NUM3 speed for @NUM7 @MONEY1 the engine for @NUM8 and the rear end for @NUM9 the trunk and hood weren't far behind for another @NUM9 the seat, steering column and radio my dad kept, the rest was scrap. So all in all my dad had some of the greatest moments of his life for no more than gas money and a few spare parts. God bless @LOCATION2 and I hope someday soon I can have memories like that. " 20 17 37 4 4 4 4 4 4 3 4 3 4 4 3 +21240 8 "I think that laughter is a very important part of life and sometimes it helps people when there down.One time I was with my cousin and she was having a bad day she was stressed, upset and she didn't know what to do so she came over and she got real emotional and I told her it was okay to cry.Then after a while when she calmed down I told her that life wasn't always going to be easy that a lot of people said life was life a box a chocolate you just gotta eat @NUM1 at a time some @MONTH1 be sweet and the others might not be so good, but I told her that life was more like a jar of jalapenos what you do now @MONTH1 burn your butt tomorrow and she just laughed and right then and there she smiled and laughed so I knew she was going to be okay she just needed some time to cool off and be okay and then after all that she had a good day she stayed the @TIME1 and we just watched movies and listened to music and that's why i think its good to laugh and besides you lose calories that way ha-ha. " 11 15 26 2 3 3 2 2 2 3 3 3 3 3 3 +21241 8 " Laughter is important The last two weeks of school, and I was told the best news ever. My mom had told me that I would be flying to @LOCATION1, by myself. I was excited because I haven't seen my family in awhile. Even though @CAPS1 been on a plane a couple of times, I was still scared, I have never flew by myself, so this was going to be something extremely new. Even though I was excited and scared at the same time, I just kept thinking about seeing everyone in my family, and even meeting family members that I have never seen or heard from before. School seemed to be going by very slow, and I was very anxious. When two weeks passed I already had my bags packed and was ready to go. My mom was trying not to cry, but she did anyways. I walked threw the metal detectors then down a long hall way, finally I had got on the plane. On the plane ride I was thinking about meeting my real dad, and that's all I was thinking about the whole time I was on the plane. I landed in @LOCATION1 at @NUM1 pm that day. I was glad too because I was tired. My sister picked me up from the airport. Me and my sister didn't have a close relationship, so it was kind of awkward. She started talking about times when we were younger, and how we had fun. Since I was in @LOCATION1 I wanted to see a lot of my family members, most of my family members already knew that I was in town, news travels fast. When my aunt's seen me they were in shock, they said that I had grew so much. I was so happy because it was one of the best moments ever. I met so many people, especially family friends, it was a amazing because I even met some of my moms school friends. Days after, I had got a text message from one of my sisters that I have never seen or met before, and she was so happy to know that I was in town. She told me that she and my dad wanted to see me, and spend some time together, so we made plans. I was really nervous, because the only time that I have seen my dad was when I was really young. That was fifteen years ago. I really didn't know what I was going to do or say when I was finally going to meet them, I was very scared, so I decided to take my sister and my cousin just so it wouldn't be awkward. We decided to meet at my grandmas house. I haven't seen her in awhile, and unfortunately she wasn't there. When my dad got there, I didn't know what to do, I didn't recognize him, or even my other sister. We gave each other hugs. When we got into the house we were all quiet, and all my dad could say was ""@CAPS2"" because I grew so much. He then started talking about the silly little things I did when I was a little girl, and it made us all laugh. All we did was laugh, and it made me cry a little. If it wasn't for laughing my relationship with my dad couldn't have been better. " 15 15 30 3 3 4 3 3 3 3 3 3 3 3 3 +21244 8 "so one time my friends chad, justin and i ding dong ditched this old man. the reason we did this is because we would walk by his house everyday and he would turn on his sprinkler and this annoying alarm thing. so at like nine or ten at night we walked over to his house, banged on his door and ran. it was so funny cuz when we got back from running we went to our friend taylors house and we where sittting in the garage just basking in the glory of what we had just accomplished. about ten seconds later we heard banging on the garage door. at first we where kinda startled so we ran into taylors room, and thats when it happend... the funniest shit ever, the old mad just started scearming and banging on the door then he yelled ""come out boys what are you afraind of?!"" and we just crack up in laughter. well he totally knew we where in there so he went to the front door and started banging on that, waking up taylors mom. wel we ended up going out and talking to the guy and he said he called the cops cause he said it happened all the time. and we denied it was us, but it totally was so we couldnt help but laugh in his ugly face. he seriously looked like a turtle crossed with an eighty year old rapest. he had liver spots on his face and a terrible grey combover that wasnt fooling anyone. by the time the cops showed up the guy was long gone and we told the cop he was senile and didnt know what the hell he was talking about. so we got off scotfree. it was funny and awesome." 15 15 30 3 3 4 3 3 3 3 3 3 3 3 3 +21245 8 " What exactly is laughter? Is it when something virtuous happens and it makes a person joyful? According to @PERSON1's @CAPS1, laughter is a cause of merriment. In other words a light heart-ed fun spirit. Laughter is not only an important role in relationships, but plays a big role in life itself. An example of laughter being important in relationships is, when a very good friend of mine stopped speaking to me over this empty-headed quarrel we had about some animal becoming instinct. It had been almost two years exactly, since her and I haven't spoken. I thought nothing would brings us together, until one day when I was at the store and we ran into each other. We just looked at one another and just started laughing. Right than and there we figured out that the argument we had was pointless, and not worth talking about. To be more clear with this story is that without laughter my friend and I would have never been reunited. When you meet new people what's the first thing you tend to do to get them to enjoy you? You usually tell jokes, or say something funny just to get a chuckle or two out of them. This is where laughter ties into life, physical and mental experiences that make up the existence of an individual. When you meet a new person you often see those individuals have at least one thing in common. I guarantee that in every single friendship laughter is the most common thing people share together. There is no possible way of getting around it. Another example of why laughter is important in life is when someone is looking for a job, or going to a job interview and the one who is in charge of making the decision of whether or not you get the job has no personality. What do you most often do in this type of situation, either show your serious side or possibly crack a few jokes. If this doesn't work well at least that person has a good idea about your personality. Learning how to handle life can become very stressful, also trying to handle it mentally can be quite a challenge. A friend of mine just graduated from college and she was struggling on trying to find a job that she studied in. She was very stressed out, and also very depressed because her grandma was in the hospital and ready to pass on. @CAPS3 didn't know what to do, no money was coming in yet, and she couldn't find an apartment she just was a mess. Until one day she told me that she revived a call from her sister and her sister mentioned that their grandma couldn't hold on and she was ready to pass. @CAPS3 rushed to the hospital and went to go see the last of her grandma before she passed. Her grandma grabbed her hand and told her, ""I know life can be mean and just give you no chances but you have to get through that and enjoy life. Life's to short to be worrying about what tomorrow will bring. Just put that smile on your face and laugh when life gives you the worst."" @CAPS2 and there @CAPS3 realized that what her grandma had said was true. You can't live through life in a drag, just have to get up and take it. @CAPS3 was very devastated about her grandmas lost, but @CAPS2 again she felt it was meant to happen because without her grandma telling her about this she wouldn't have never known that her grandma experienced the same thing as she did. She didn't feel like she was the only one in the world that was going through these difficult crisis. She will always love her grandma. When you learn how to take life as it comes people tend to notice it is indeed a very hard step to achieve. Individuals learn in many other ways or some just don't learn at all. For example, @CAPS3 learned from experience going on with school and struggling with tying to find a job. Her grandma told her right before she passed on because her grandma probably most likely experienced it as well. Other people learn form meeting new people, and just having fun with life, or like me I learned the hard way by not talking to a very good friend of mine over a empty- headed argument. Laughter comes in different shapes and sizes, we as human beings have to approach it, whether it's an argument or learning it as it comes. One way or another it will come and we have to be ready for it, its not a scary thing. The benefits of laughter is it makes you happy and people tend to be having a good time. Laughter is a positive thing, and people shouldn't ignore it, its a good stress reliever as well. Laughter is a cause of merriment, a light heart-ed fun spirit. Laughter is not only an important role in relationships but plays a big role in life itself." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21246 8 " Laughing at @CAPS1 bell. @CAPS11 best friend and I have a lot of funny, hilarious memories together. We are always laughing about something even if @CAPS7's something completely stupid or actually really funny. We laugh at things like people that look funny, or people that say stupid things. Also we laugh at funny things we do. @CAPS8 one thing that has always stuck to @CAPS11 head, the time at @CAPS1 bell. One day after school, me and @CAPS11 best friend @PERSON1 decided to go across the street from our school and eat lunch at @CAPS1 bell. We ordered our food and went to sit down and wait for @CAPS7. A few minuets later our food was ready and we sat down to eat @CAPS7. ""@CAPS4"" I said to @LOCATION1 as i took a bite of @CAPS11 @CAPS5 five layer burrito. ""@CAPS6""@CAPS7 was really hot and burned @CAPS11 mouth. I had to wait for a few minuets to eat @CAPS11 burrito. So we both just sat, waiting for our burritos to cool off, an talked about school and other things that was going on with our lives. A couple minuets later a man walked in, he was about @NUM1 or @NUM2 years old, and he had his back against us so we couldn't see his face. The man ordered his food and turned around to take a seat. Meanwhile I thought @CAPS11 burrito was cooled down enough and i went to take a bite, at the same time the man looked at us and he was wearing a clown mask and he had a little dog with a tiara on his head. Next thing i knew @CAPS11 burrito was coming out of @CAPS11 mouth and I was dieing of laughter. @CAPS11 burrito was spit completely out of @CAPS11 mouth, and all over me an @LOCATION1. All over @CAPS11 hair, mouth, clothes, and all over the table. I was so embarrassed that i couldn't help @CAPS8 to laugh. I think the main reason i was laughing so hard was because the man was just so scary looking, @CAPS8 wow we were laughing for what seemed like an hour straight. You might think this was the end of @CAPS11 bad day, @CAPS8 @CAPS7 only gets worse. Eating @CAPS11 burrito seemed forever, because we were laughing forever. @CAPS7 probable took me a good ten minutes to eat a single burrito. Meanwhile i got thirsty and needed something to drink. So I went to order a small drink and get some @CAPS10. As i was returning to @CAPS11 table i wasn't looking and ran into a man that was in line. I almost spilled @CAPS11 @CAPS10 @CAPS8 luckily I didn't. Returning to @CAPS11 seat i was talking to @PERSON1 about how bad @CAPS11 day was, and how @CAPS7 couldn't get any worse. Then i took a drink an I started to choke on @CAPS11 @CAPS10, @CAPS7 was so bad that i spit everything out onto @LOCATION1, @CAPS10 went flying everywhere, @CAPS7 even came out of @CAPS11 noes. So i went into the bathroom, and cleaned @CAPS11 self up, caught @CAPS11 breath, and told @PERSON1 i was ready to go home. When i look back and think about the day at @CAPS1 bell with @CAPS11 best friend, I not only think about how embarrassing @CAPS7 was for me and her, @CAPS8 also that @CAPS7 was a really great, hilarious memory that i will probably remember for the rest of @CAPS11 life. As i said before @CAPS11 best friend and I have a lot of funny memories together, and still we are making more everyday." 17 20 37 4 4 4 4 3 3 4 4 4 4 4 4 +21247 8 " There is a difference between right and wrong. Most of us learn from it and most of us don't. We all have a choice either to face of @CAPS3 we have done wrong, or just lie about it and get into even more trouble then you already are. Ever wondered when you are about to do something wrong and you don't think first? Well this was one of those times when I wasn't thinking first. I was nine year's old, @ORGANIZATION1, @PERSON1 and I, were playing at the park joking around, playing on the old rusted blue swing set, just having a good time. Nothing much to do at a park but shoot hoop's, run around, go on the monkey bar's that have ton's of bacteria on them, down the drenched slide, and play tag if we had the energy. @ORGANIZATION1 see's two rusted broke down car's that look like they have been there for centuries. @ORGANIZATION1 say's out of his dumb brain of his "" We should go over there and throw rocks at those car's you guy's."" I shack my head, nodding at @ORGANIZATION1 with a wide grin on my face. @PERSON1 say's with zero tolerance for any negatively say's "" @CAPS1 we shouldn't those car's are owned by somebody. How would you feel if someone idiot kid's came and wrecked your car's?"" I think for a second, well he does have a point. I would flip my chicken if some idiot kid's did that to my car. We are all looking at each other thinking @CAPS3 to do. Sixteen minutes go by and still nothing. With my idiot brain i say "" @CAPS2's, do those car's don't belong to anyone? They don't even look like then can move, look's like they have been sitting there sense the dinosaurs were here."" @PERSON1 walks off and mumbles to him self "" @CAPS3 idiot kid's I already know they're going to get into trouble."" @ORGANIZATION1 and I look at each other like we just saw a ghost. We finally start heading towards the rusty broken down car's. On the way there with @ORGANIZATION1's clumsy feet trip's over a piece of wood. Finally get to the two rusty broken down car's, I pick up a rock. I think for a second to ask me is this okay? should I be doing this? Just with pure pressure and the guilty conscience, I threw the rock. One after the other, just kept on throwing rocks, pipes, car parts, logs, and beating it with a gigantic metal pipe. @ORGANIZATION1 and I leave, now we are exhausted we take a break and look at @CAPS3 we have done to those rusty broken down car's. The two car's look like the just been hit with a tornado. @ORGANIZATION1 and I just start laughing our head's off. We kept on laughing almost until we were about to wet our selves. There was @CAPS1 one around and @CAPS1 one saw us. At least that's @CAPS3 we thought. Was about four day's later and back at the park @PERSON1 and I, and @CAPS1 sign of @ORGANIZATION1. About to go home from the park a tall, blond, old, big feet, lady walk's up to us and asks us out of @CAPS1 @CAPS4 "" @CAPS4 do you to live?"" We were just kid's at the time and I say without even thinking one tiny bit "" I leave right down the street, it's the second to the last house. I'll show you if you would like?"" The lady with big feet reply's "" @CAPS5 that would be great, thanks."" @PERSON1 and I start walking home just wondering why did that lady want to know @CAPS4 we live? Get around the block and we see that lady's car in front of my house. @PERSON1 and I look at each other and I knew @CAPS3 he was thinking. @PERSON1 was thinking that I'm screwed. The lady with the big feet ended up being the owner of those two rusty broken down car's. I didn't know @CAPS3 to say or do. Just the thought going through my mind that was telling me I'm screwed. Never been so grounded and whooped hard in my life. If there are some lesson's of @CAPS3 @ORGANIZATION1, @PERSON1, and I have learned it would be don't touch anything that is not yours, be respectful of @CAPS3 is not yours, treat everything with respect even if it's not yours, and not to be idiot kid's again. This has shown @ORGANIZATION1, @PERSON1 and I right from wrong, telling the truth, face @CAPS3 we have done wrong, and think about doing something before your actions get's you in trouble. " 17 17 34 4 4 4 4 3 3 4 4 4 4 3 3 +21248 8 " Dozey off into space, relaxed as I could be in a hot stuffy room. @CAPS1 is laying next to me, both thinking of things we could do. Nothing is coming to mind. We both decided that it was to hot do anything outside, and nothing was on tv. We thought we were just going to be laying in bed all day, roting away in the heat. But then @CAPS1 comes up with this idea to play some video games. @CAPS6 we turn up some music, blast the streo. Put in some @CAPS2 Of @CAPS3 and start killing people. @CAPS6 were killing people, whipping butt if i could say. Then @CAPS1 says ""@CAPS5 im getting really tired, plus it's gettig really warm."" @CAPS6 then i try fixing the ac. @CAPS6 im working on the the ac and are is just laying in bed. Time went bye, seems like it was taking forever for the day to end. We had nothing to do. We were stuck. Then @CAPS1 started telling me a joke. I was a chessy one but it still made me laugh. @CAPS6 here were sitting on her bed telling each other some jokes to pass time away. After awile the jokes get old, now were sitting on her bed again. Falling asleep because there's nothing else we can do. Music is off, window is open, @CAPS6 all you can hear is the cars driving by one the street. Out of no where @CAPS1 farts, and it wa snot no girly fart. It was loud and stinky. Right away I start to laugh. While she is getting enbarested, I don't remeber why but then I farted to. She started to crack up laughing. Her face was truning red. @CAPS6 we both started farting back and forth, reminder we were in the sixth grade. But nothing was as funny as it was when what is bpout to happen in my life. It's @CAPS1's turn to fart, and she is getting all ready than she farts. But this was not like any other one! She stopped laughing right away, looked at me with a frown on her poor little face and said""@CAPS10 i think i just pooped my pants!"" I started laughing @CAPS6 freking hard, i started to cry. IT was that bad. You could smell it to. @CAPS6 she starting walking to the bathroom, and all i hear is ""@CAPS10 i just pooped my freking pants!!"" " 13 15 28 3 3 3 3 3 2 3 3 4 3 3 3 +21249 8 " It was the first day of the ninth grade, that terrifying day when one must choose how they are to be percieved for the next four years. I walked into my first class looking like a hippie on steroids, just over six feet tall and nearly two hundred and sixty pounds of long haired, freckled teenager. I was a giant, and that made it difficult for bullies to muster up the machismo to treat me as the freshman that I was. I sat down in my designated seat, next to one of the girls I could tell thought too highly of herself. Despite this off putting first impression, I atteampted friendship. My atteampt was met with confusion and disgust. As I turned to face the front of the class once more, there stood the teacher. @PERSON1 announced that our first assignment was to create a presentation, one that would show the rest of the class who we are. I was excited at the prospect of a presentation. I have always been a showman, and the limelight is a very dear friend. I love to act, sing, and in general entertain. My crown jewel however, is humor. I have found that I can captivate an audience no matter the number, with humor. With this I designed a presentation to entrap and engage my class in the reality of who, and what I am. I wrote a speech in which I explained my talents and the many things I enjoy. In this speech were many twists and turns of phrase, punchlines and puns. There was such laughter that other teachers came to see what was causing the noise. I took a bow and sat in my seat, looking around at the shining faces of my new friends. I knew then and there that laughter would be the tool with which i would build my highschool life. I could make someone forget about their troubles for a spell, or brighten someones day with a few words. I wasn't a star athlete. I wasn't even a star pupil. But I seemed to collect friends like I was made of fly paper. There is no better feeling i have yet felt, that compares to the company of friends. As long as i have humor, I shall never be without that feeling." 22 20 42 5 4 4 5 5 4 4 4 5 5 4 4 +21250 8 " I met my best friend, @PERSON1, in the third grade. Best friends are the people who come into your lives and stay with you for the rest of it, through the easy moments and the hard times. We learn from our best friends and share experiences with each other. No matter the distance, their friendship is always there for you, even if you are thousands of miles apart or just a few houses away. The laughter between two best friends is an element that bonds them for life, because when two friends truly laugh together, they will always have a small moment in their lives intertwined for as long as they live. @PERSON1 and I have grown up together. We were there for each other from learning how to jump rope at school through broken bones, school-girl drama, crushes, boyfriends, heartbreaks, weddings and funerals. We helped each other get through everything from hard classes to family pets dying. We offered advice and brought hot chocolate, but this is only the beginning of our friendship. After the problems were solved, we learned how to laugh at our mistakes and move on. Together, we have gotten past slip-ups in what we say, to slipping on the floor. After we have giggled over what the other did or said, we helped them up and moved on. @PERSON1 and I know that, no matter what situation arises, we will always be there for each other, because we have the each others backs. @PERSON1 can make a joke out of any occasion. She is one of those friends that can make you smile just by seeing her face or hearing her voice. Most of the best moments in my life have usually involved @PERSON1 in some way. We have memories from lying in the driveway and watching the stars at night, to cracking up while working backstage for the local drama club. @PERSON1 can always crack me up with her perfect imitations of anyone, no matter how bad of a mood I am in. I crack @PERSON1 up all the time, usually unintentionally, by saying or doing something ridiculous, which shows my true blond side. We laugh over lines from our favorite movies and write down the funniest moments. We have shared so many memories together that we laugh over everything from driving around town and listening to music to being followed by the kiosk workers at the mall. One of the funniest times we ever spent around each other was while we worked backstage during a production by our local theater club. We laughed about everything from building sets to mistakes on stage. We had to open and close curtains in the dark, while wearing full black. I stubbed every single one of my toes that week while rolling the sets on and off stage. My hair was impossible to miss from the audience's point of view, even though I kept cramming it under a black ski hat. @PERSON1 would always have a problem opening one of the curtains that would get stuck when it was halfway open. She had to frantically tug on the rope even thought it kept getting caught in the pulley. I would laugh at her mistakes and she would laugh at mine. We both had a lot of fun watching the audience, director, and actors all at the same time. @PERSON1 and I got to stand in the back and watch all of the actors mistakes, giggling silently with each other. Every time one of the actors would make a mistake, we could watch the audience laugh and the director's face, which was usually horrified for a moment. Now whenever we mention any word or line from that play, we both start cracking up and remembering the entire weekend. There were more jokes then could ever be written down, and every time it is brought up, we remember even more funny moments. When we are near each other, one quick look or a single word muttered under our breath can crack us both up. We can make each other laugh without even explaining what we meant, because we have shared so many experiences that we can read each others minds. Just one key expression or a twinkle in our eyes can crack the other up. Most other people around us probably would not even notice the small crinkle in the corner of our eyes or a slight smile. Those are the best codes ever imagined, because only the person that it is meant for could figure it out. The messages shared through the eyes a best friend can silently bring up subjects never spoken about and make us laugh. This is why true best friends are bonded by laughter, because it keeps them close no matter what comes, and for every moment of sadness, there are two moments of laughter and happiness." 26 22 44 44 5 5 5 6 6 5 4 5 5 4 5 4 5 5 5 5 4 4 +21251 8 " Laughter has many benefits; happiness, joy, bonding with others,adreneline, the helping of releasing tension, and the joking that is made on a daily basis around you. Laughter is something that can be shared among people especially when they're in the dumps. This emotion is the one that will brighten up anyday and bring enjoyment. Laughter has been a huge part of my life. From family, friends, boyfriends, and stangers laughing has always been a big deal to me. I love being able to look at someone and see that they smile alot, which means that they probaly laugh alot and that they are a happy person. How can I tell this. Well for starters there is dimples in their cheeks and crows feet in the corner of their eyes. Really the crows feet don't matter about how old you are they can happen from laughing, smiling all the time, and squinting in the sun. The biggest part of laughter that has contributed to my life is having a relationship. Usually when you have laughter in the relationship it will make it last longer. The reason the relationships will last longer is because you can be yourself and let the other person see that you are fine with laughing and being part of their life. I believe that laughing in an relationship is the best part. Lets say your partner is in the dumps, are you just going to let them be moody all day or are you going to try to make them laugh and cheer them up. When I'm in a relationship and my partner is being moody I try my hardest to cheer them up. I love to make people laugh. And when I'm being a grouch my boyfriend is helpful and tries to make me feel better or they just comfort me to see what is wrong. So if there is not laughter in your relationship then obviously there will be no happiness. Therefore it will not work out between you and the person you're with. So spread the joyfullness of life and and make people happy. Another part that laughter that has been in my life is friends. If you don't know me well let me tell you I'm shy at first, but once I warm up to you, you'll see that I'm a very outgoing person. Like most of my friends will say is that I am weird, but I enjoy laughing alot and making others laugh too. When I'm around my friends and in the dumps someone will always in the end will get me to laugh. No matter how upset I am they can always get me to laugh at pretty much anything, since I am a really easy person to entertain. Being around these people is like watching a comedy movie or act. They are always finding some way to be funny and annoying. Such as being obnoxious and doing stupid things that others will never do because it's embarassing. Well just because it is embarassing doesn't mean you shouldn't at least do it. If you don't do it, it will give us more to do and give us all the attention to ourselves. How are you suppose to know whether or not it's funny if you don't want to try something new. How are you suppose to laugh at yourself and have others laugh with and at you no matter how stupid it is. So don't knock it until you try it. The person that once said, "" laughter is the shortest distance between two people."" is it true or false? Is this really the shortest distance or the longest? I honestly believe that is could be the a short distance. You don't want to be snooty or crabby all the time or you will never make friends or have any relationships. And if you don't have friends or any relationships then who will make you laugh and enjoy yourself. If you're not a happy person then how are you to experience the joys of life and everything around you. You won't, so put a smile on you face and be a spontaneous person who is not afraid. Laughter is a benefit to all man kind. And laughter in my life has showed me so much, it has brought me and others so much experience to enjoy. Those enjoyments that have been explored, are having boyfriends, friends, and family around me all the time. This is one emotion that is definitely one that will brighten up anyday and bring happy expressions to every ones faces. Share the laughter." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21253 8 " Laughter is the best way to bring people closer together. It creates a bond that makes you feel a little more comfortable and secure. Life would be sad and depressing if there was no such thing as laughter. Everyone has a different type of laugh some peoples are loud, quiet,weird, or funny.But our laughter is what makes us who we are. There are so many effects in the process of laughing.Your laugh can have such a strong effect on your body that it can cause your eyes to become a little teary. Sometime when u laugh its also harder to breath and your stomach might start to hurt. When somethings really funny I usually have a hard time to get another gasp of air because i cant stop laughing.That's one of the effects that happens to me while I'm laughing. Everyone knows that when someone thinks somethings funny they laugh. We can laugh at a movie, a joke,or even a simple mistake.My family always makes me laugh.When we have party's were always laughing and cracking up jokes.One of the jokes that my cousins said is that my aunts baby was so white that it look like a came out of la lechera. Lechera is a @CAPS1 word. Another thing that also made me laugh is when i went to my cousins house. We were watching a movie and i had to go use the restroom so i went and when i came out she jump out from around the corner and scared me. I screamed so loud that my other cousin yelled from up stairs to be quiet. I couldn't stop laughing i was scared but it was funny because she scared me out of nowhere and i never expected her to do that. I think of laughing as a gift. It is something that can always brighten our day.I love to laugh and there's so many unforgettable moments were i almost laughed till i peed my pants.I think the people with the best personality are the people who can make someone else laugh." 19 20 40 40 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +21255 8 "A @CAPS1 Laughter @CAPS2 you hear a child laugh what do you think? Do you think peace and happyness or what do you think? @CAPS2 I hear a child laugh I think of my little sister. @CAPS2 were outside playing peter pan or inside playing doll's, she just brights up like a light and I can see her happyness. It's not just my sisters laugh that brings me joy it's everyones! I do think a @CAPS1 laugh is the most unique though! @CAPS2 you hear your child, niece, nephew, or grandchild laugh you should hear there happyness. A laugh changes @CAPS2 you grow older. I remember hearing my sisters and brothers laugh at the simplest things @CAPS2 they were younger. But now they never do, now they laugh at sick and disgusting jokes and they laugh @CAPS2 someone gets teased. But thats not my case. I am the one who laughs @CAPS2 someone does something sill like on americas funiest home videos. But a child laughs @CAPS2 you make a funny face or @CAPS2 an animal does something funny. They laugh at the littlest things. To me a smile is just a silent laugh. I remember hearing a saying ""A smile is worth a thousand words"" and I think that goes for laughter too! Even though there is no sound in a smile, there is sound waiting to come out of that person! I know for a fact that @CAPS2 I was younger I was abused and so @CAPS2 ever something good happened which was hardly ever but I had a huge smile on my face then some one would do something funny and I would try not to laugh but I only lasted like @NUM1 seconds, then I would start laughing so hard that I would start to cry! Theres this one specific time that was the high light of my life. One day I was just hanging out with my sister linda and we were playing dolls. My dad had happened to walk in and he accidently stepped on one of the dolls. Linda started to cry cause the arm had been broken off. But @CAPS2 she started to cry my dad started hopping on one foot and held the other then he fell on his butt. I laughed so hard that afternoon! Then later that day he took me and linda to the store to each buy one new doll! Again I @MONTH1 say that a @CAPS1 laughter is the most beautiful thing on earth! Just for some reason it heals the soul! You @MONTH1 start off on a bad day then you could come home at the end of the day and walk into your house to your child laughing. Then your day gets suddenly better! I wish I were a child again so i could rewind and make things so much better than @CAPS2 I was little! I started off in a bad situation but now I am a smart intelegent young lady! Every laugh is unique in there own way cause every one is different. Just because you grow older doesn't mean your laugh does. But every laugh does change in some way I'm not sure how but it happens as you grow older! You laugh at different things and you laugh not as much as you used to!" 20 21 41 4 4 4 4 4 4 5 4 5 4 4 4 +21256 8 " Boy says too @CAPS2:@CAPS1 weigh?, @CAPS2: what? Boy:@CAPS3 i just wanted too say something to break the ice!Laughter is the greatest thing too have in any kind of relationship, such as family, friends, and a romantic type relationship. It bring each other great bondage and makes the relationship playful.It was @DATE1 and i was on my way too pick up a long time no see friend too go to a warped tour concert. We haven't been in the greatest terms because of an issue that was upon us a few months ago. I figure to take my friend @CAPS4 to a concert shes been wanting to go too all year long. When we finally picked her up there was all sorts of tension of unleft said words to each other, but i wasn't gonna wait any longer too see what was about too happen.Before we headed too the concert my parents decided too get a car wash, @CAPS5 then i automatically thought of a few funny things i could do to make her laugh. The car moved as slow as a turtle into the car wash machine. I had left the window crack open to were enough water would crawl in. We were kinda talking about the concert and i had looked very unaware that my window was open, i actually had too no idea that a lot more of water then i expect had came in. She looked across at me and was like laughing so hard see couldn't even speck of what was happening. I looked at her and was like what? She was your windows open and i had turned and came too find water was rushing its way down and sorta frightened me and i jumped into the air and rushed too close the window. She was laughing like there was no tomorrow and so was i. From that moment on it was such an ice breaker for all the tension that was happening. the elephant had left or side and we had a great rest of the day. See, it true""Laughter is the shortest distance between two people"". When laughter is happening no one is truly sad, mad or anything else. Laughter can bring too people who just meet good greetings, too couples closer together, friend and family joy and happiness. Laughter is truly the key to happiness. " 18 15 33 4 4 4 4 4 3 3 3 3 3 3 3 +21257 8 " Laughter is one of the most impotent things in life to have around. even if from a simple joke to something that was unbelievable that hap-end to make a grate event in time to share on in history of family members. This helps you threw hard times or just makes somebody day better for them and puts a smile on there face, or gives them a joke to say to somebody else to continue a chain of laughter thew people. Sometimes it can be the most embarrassing thing that people remember about u but in the end the other person that laughs at you for your indecent probably did something like that a long time a go so in the end there laughing at them selves to and don't even realize it. I remember on my fifteenth birthday my grandma toke the hole family out to dinner at a chines restaurant. It was quiet except for the adults discussing what they should order form the family meals. I was siting by me sister looking at a menu just to see what they had to drink, well her mined was on other things because out of no were all u heard was ""they have no fricken chicken"". Every one busted up laughing at her even the waitresses son that was standing behind the both and his mother. It made every ones day because it wasn't the best of days at the time. But u could tell she was embarrassed but laughed at her self to her comment to the table was ""i thought i said it in my head"", i looked at here and said ""no u didn't"" so she just shrugged about it. To this day when ever we go to a chines restaurant my mom looks at here and ""says they got your fricken chicken""so she looks at here and ""says will that ever die""we all looked at here and said"" no its going to be passed down to your children they'll here about there mothers fricken chicken day"".It was that bad of a indecent that she gets up set that it wont go away but it still gives every one else a laugh. even though it was so long ago that it happened are parents joke that its going to be her wedding toast it went kinda like this"" as long as you give her, her fricken chicken you @CAPS1 will last forever"" it was not the nicest of comments to be said about that day but it was still funny to the rest of us. this is something that will last in the family for years to come ,and hopefully will be passed down in the generations to come.Even if she doesn't want it to be just think in time ens-ted of us telling every one about the incident she will tell them her self and just laugh about it because it was just that much of an out off nowhere thing to happen. We still pick on her about it and many other things she says out loud with out noticing she says them. But those are story's for another time and day you never know what could happen. just remember to laugh its true what they say its healthy for you so make the best of some of the worst days possible. So if your having a not so good of a day,u never know what could happen to give u a smile and a laugh even if your the one that makes every one laugh. So just think of something that makes u laugh and tell the people that are special in your life about it to give them a laugh and make there day a little better then most.Even if its one of the most embarrassing events to happen to you in your life time. When we all were little and crying that was always the cure for some of the worst things even though u grow up it docent mean u cant laugh or that it means different things then it used to, when your down u need to laugh to feel better about your self don't let people put you down." 13 17 30 3 3 3 3 3 2 4 4 4 3 3 3 +21258 8 " I think that laughter is a key element to any lasting relationship, because if you didnt have laughter then that would be one boring relationship. Let me share with you a personal story of my own. I recently just started dating my boyfriend and his name is @CAPS1. We first met here at school and then he transfered and moved away, then a few months ago he added me on facebook and we started talking again. At the time we had started talking he had a girlfriend but shortly after finding me again he realized that she was not the one for him anymore. It was rough for him to break up with her but he did it and i am proud of him, becuase she treated him very bad. In the beggining of our relationship we were both really shy and didnt talk much but the more and more that we hang out the more we start talking. We want to be the type of couple that can talk to each other about anything in person the way that we do in texts. Everytime i see him i get really nervous and it almost seeems as if my heart skips a beat. Whenever we are walking down a street i cannot help but to smile. And when we lay on the cowtch and watch movies i can't help but to laugh when he tickles me. We laugh at each other all the time, wether its when one of us makes a mistake or what not. I believe that laughter and the way we get along is what keeps us going strong. Everytime he leaves i cannot wait to see him again. Laughter is what keeps most relationships going because without it i feel like it would be a really boing and if it is boring than you wouldn't want to spend time with one another. I personally think that every moment with your significant other should be fully taken advantage of." 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +21259 8 " Everyone in life has siblings that they grew up with and that they love unconditionally, but for some of us, we didn't know our siblings until later in life. I myself was one of those people but with a slight difference than some others. I had what I like to call a @PERSON1 who in actuality in my biological father. Up until I was seven years old I thought that my dad @PERSON2 was my quote on quote ""real dad"", but one evening I heard my mother down stairs yelling at someone on the phone. My mom was yelling at this unknown figure about child support and signing over his rights to my dad. I had no idea that who she was talking about was me and in fact the one on the other @DATE1 of the line was my biological father. The moment I heard your son deserves better than this I ran upstairs to my room and began to weep because I thought that @PERSON2 was my dad but now this new figure in my life is claiming to be. My mom had heard me run up the stairs and came to tell me the story of what was really going on. As it had turned out my biological father had rights to my last name and unless he signed these over to my dad, my mom would take him to court and force him to pay the thousands he owed her for child's support. During this little story that she was unveiling I had learned that I have other siblings out there in the world. Over the next eight years of my life I would spend countless hours running through old phone numbers and email address's trying to find my other siblings. It wasn't up until my freshman year that I met a guy who went to my school and was in the same grade as me, named @PERSON3. He quickly became one of my good friends and we hung out every other @DATE1. On one occasion that he was at my house playing video games with me, he chanced upon a question of what my last name was. I thought to myself that this was a peculiar question but in the @DATE1 I told him. All of the sudden a smile crept across his face and he asked if I had a biological father named @CAPS1. My mind started to reel over this sudden question. @PERSON3 started to explain to me that he was half brother to my sister @CAPS2 who was one of the siblings that I had been searching for. Almost before I @CAPS3 think to ask the question of how; he had called my sister and explained to her he had found her brother. As it had turned out, she had been looking for me just as hard as I was looking for her. @PERSON3 asked her if she would like to meet me and I heard a high pitched squeal of joy from my sister saying yes on the phone. I to was overjoyed at the thought but I had no idea of how awkward it would be to finally meet her the next @DATE1. On the @DATE1 that I met my sister, @CAPS4 mom had come to pick me up to take me to her house. As we were driving so many thought were racing through my head that I thought I would puke in the car. When we finally arrived at her house @PERSON4 who is @CAPS4 mom, urged me out of the car and into the house where my sister that I realized looked almost the same as me was sitting on the couch looking just as nervous as I was. During the next four long nerve racking hours, my sister and I played @NUM1 questions with each other to get to know one another. After doing this we were more comfortable with each other and she looked a lot more accepting that I was truly her older brother. By the @DATE1 we were telling jokes and laughing hysterically. We realized that we even had the same obnoxious laugh (that every one hated) and that to made us hit the floor laughing. At one point in time her mom had to tell us to quiet down because we were going to wake the baby if we didn't and by the @DATE1 of the @DATE1 we had connected with each other so much that she even gave me a hug before I left. @CAPS2 and I connected most through our laughter the first time we met and from that @DATE1 to even now; every time we see each other we giggle and smirk. Since we found each other or in my case her brother found me; I have gone to her house every other weekend. My sister is one of the most precious people I have in my life and that will never change because nothing we say or do will ever stop the laughing and joy we hold towards one another." 20 23 43 4 4 4 4 4 4 5 4 4 4 4 5 +21261 8 " We couldn't control our selves, our eyes watering, and our stomachs hurting so much we can't move. I was choking on my words as I talk to my best friend @PERSON1. Every time we talked to each other some one would say something that we thought was funny and we would start laughing and laughing. When I look back on the things that we talked about most of what we said didn't make any sense at all and I don't know why we laughed so hard. One day at our bus stop @PERSON1 said something very funny and we laughed until the bus came. Than I said something funny and we laughed the whole bus ride to school. This happened almost every day for us. On this particular day we couldn't stop laughing not even when we got to our class room. Our @CAPS2 grade teacher had lots of pets in her class room and one of her pets was a tree frog named @CAPS1. That week was @PERSON1's and my week to take care of him. When we went to feed him @PERSON1 grabbed him and made him dance all over his cage. We both thought this was the most hilarious thing ever. Our eyes started watering and we were chocking on our words as we took our seats for class. We laughed through the teacher giving instructions and while we were doing our class work. Eventually our teacher had to come up to us and tell us to be quite. This didn't stop us from laughing. We tried and tried to stay calm and do our work but we just couldn't stop. On this day lots of people in our class were chatty but no one was laughing as hard as @LOCATION1 and I were. We were so loud I thought the people in the class below us would hear us for sure. It wasn't just us being loud it was the whole class. Our teacher stood in front of the class and yelled at us to be quite but that didn't stop us. In fact it made @LOCATION1 and I laugh even more. I thought I was going to pee my pants I was laughing so hard. Now @PERSON1 and I weren't the kind of girls who giggled quiet about things. We were the kind of girls who laughed really hard and loud with our eyes watering and our stomach muscles hurting us for the rest of the day. Our teacher wanted the whole class to be quite so she got in front of the class while we were doing our math problems. She told us to put down our pencils, push in our chairs and stand behind them, so we did. Then she told us to take a really big deep breath in, and we did. Next she told us to let out our breath as big as we cold. Lastly we were suppose to do that five times and then sit back down in our chairs and do our math problems silently with out talking to anyone. When @PERSON1 and I were taking our five deep breaths we did them very fast and very short to get them over with. We thought it was very funny and so did the rest of the class that saw us. The class started to laugh there heads off and the teacher didn't know what to do so she told us we would all have to stay in at recess if we didn't behave. Eventually the class settled back down and started doing there work quietly. Except for @PERSON1 and I. We kept laughing until the bell rang for school to be over. We got on to the bus and started talking about how much fun we had that day and how funny it was when we were breathing really fast and not slowly like we were suppose to. Even to this day every time a teacher or someone tells us to take deep breaths for something @PERSON1 and I look at each and start laughing, and than we breath really fast. Now we are sophomores in high school and we still have times where we laugh uncontrollably for no reason at all. I think its just a part of being best friends with someone. Some times we even laugh all day long like our day in the @CAPS2 grade. Through out our friendship we have learned to be much quieter when we do our breathing and when we laugh during a class or something important. I believe that @PERSON1 and I will always be best friends and we will always have our laughing moments together weather it's in a class, on the bus, while we are driving, at college, or on the phone. Laughing is something that everyone needs to experience in there life time. Not a giggle or a small laugh out loud but a really hardy laugh were you can't control yourself, your eyes are watering and your stomach hurts to bad to move just like @PERSON1 and I did in @CAPS2 grade. " 20 18 36 36 4 4 4 4 4 4 4 4 5 4 4 3 4 4 4 4 4 3 +21262 8 " It all started one @DATE1 after school, when my girlfriend and I decided to make a plan to go to my house. We were not planning to walk home, we missed the bus. @CAPS6 we began to walk down the ramp from the high school. While we were walking we got hungry. @CAPS6 we went to the @ORGANIZATION1. We ordered a @CAPS1 and some drinks. @PERSON1 decided to shake up my soda @CAPS13 hand it to me. Me not knowing what's up @CAPS6 I asked, ""@CAPS2 you shake up my soda?"" @CAPS3 said, ""@CAPS4 I @CAPS2 here's mine, let's trade."" I @CAPS2 and ended up opening the one @CAPS3 shook for real. "" That was a lil devious!"" I said. @CAPS6 when I stood up to chase her and poor soda on her, I tripped and fell on some goat heads. While I was in pain, @PERSON1 was cracking up with laughter @CAPS13 said, ""@CAPS5 @CAPS6 stupid, who falls over a stump!"" @CAPS6 I got up from the ground and pulled all of the thorns out, @CAPS13 continued to walk home. We were already more than half way to my house, when @PERSON1 decided to hit me in the shin and run. Of course not learning my lesson the first time, I chased her. I chased her for about a block and a half. Basically to my yard before I slid on mud, and @CAPS13 fell in a puddle of water. I thought I was going to loose it when @PERSON1 was laughing too dramaticly. Out of @CAPS14 were, I jumped up and was going to put her face in it. @CAPS3 ended up running inside my house, and locking the door. The reason I knew @CAPS3 @CAPS2 lock it, was because I ran @CAPS6 fast to bust in. before I @CAPS2 I turned the knob, but it didn't open though. Instead the impact forced me to fly back, and land on poop. The bad part was that it was fresh, why, well because my back was warm in a certain spot. I quickly took off my shirt and threw it away, @CAPS13 headed inside to shower. @PERSON1 asked me why I was going to shower, but I decided to lie to her. @CAPS12 I told her what really happen, @CAPS13 @CAPS3 will laugh and make fun of me. After I was done showering I asked @PERSON1, ""@CAPS7 you want to go shoot some glass bottles in the back?"" @CAPS3 replied, ""@CAPS9 I'm down let's go!"" @CAPS6 I set up six bottles and was ready to shoot. First @PERSON1 tried and hit four out of six. That's pretty good for being a girl. @CAPS6 I went to replace the four bottle @CAPS3 shot. As I was doing @CAPS6 @CAPS3 shot me in the butt.""@CAPS11!"" I yelled and wanted to cry, but I didn't. The only thing I @CAPS2 was swore like @CAPS14 other, and aimed my gun to @PERSON1 to get her back. @CAPS3 was quick to run upstairs and grab my @NUM1. @CAPS3 said with a freaked out voice, ""@CAPS12 you come any closer I'll throw this out the window!"" @CAPS13 I said to her, ""@CAPS14 you won't, you know how much I paid for that!"" @CAPS15 my luck shot her in the leg. Well turns out @CAPS3 wasn't lieing bout throwing it out the window. It was ok though, because I could get another one. That @DATE1 with @PERSON1 was great, but @CAPS3 laughed at me most of the time. I didn't care, whatever makes her happy. I really @CAPS7 like making her smile. I delt with a lot of pain that day, and lost a shirt with poop. It's all good though, it's going to be a great memory when we look back on this day. " 18 20 36 36 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 3 +21263 8 "I could just laugh to death. someone said. I sacned the area. ""@CAPS37?"" I said. ""@CAPS1 here son."" I looked @CAPS1 the stairs leading to @CAPS2 avenue. There was the sorce of the voice i had herd. @CAPS35 was only an old man probualy homeless by the looks of him. He had worn shoes, dirty blue jeans, a riped shirt under a worn jacket. ""@CAPS3, @CAPS31 @CAPS33 a little lost""The old man said. ""@CAPS4, I'm @CAPS73 lost"" said @PERSON1. His pocket started to vibrate. @PERSON1 reached into his pocket an pulled out his cell. He fliped @CAPS35 open and read: @CAPS31 going to be here soon? Tommey typed: ya bro just going onto @CAPS2 ave now. Message sent. @PERSON1 started to climb the steps. ""@CAPS5 @CAPS31 later old man"" said @PERSON1 as he dashed of to meet his friends. @PERSON1 saw his friends in site @CAPS62 were all standing outside of the @CAPS6 @CAPS7 bakery. ""@CAPS3,guys @CAPS33 @CAPS35's @PERSON1!"" @CAPS34 @PERSON2. @PERSON2 ran at @LOCATION1. @PERSON1 scuped her @CAPS1 and spun her around one before puting her @CAPS66 @CAPS19. @CAPS62 proceeded to walk over to the group. ""@CAPS37 took @CAPS31 so long dude"" said @CAPS9 @CAPS10. ""@CAPS11, @CAPS63 the short cut i took turned out to be, @CAPS73 to short"" @PERSON1 repiled. ""@CAPS12 don't mind him he's just in a bad mood"" said @CAPS13. ""@CAPS14"" replied @CAPS9 @CAPS10. ""@CAPS3, guys can we go into the @CAPS18 @CAPS19's toy store!!"" inqured @PERSON2. ""@CAPS20 that's fine"" replied @CAPS13 @CAPS22. The group proceeded @CAPS19 @CAPS2 avenue @CAPS24 turned right onto @ORGANIZATION1 street, @CAPS24 another right onto @CAPS25 avenue. The store was located halfway @CAPS19 in the middle of other boutiques. ""@CAPS26 were here"" said @PERSON2 as she spun around around from excitement. ""@CAPS24 let's go in"" said @CAPS9 @CAPS10. ""@CAPS30 old greblin!"" said @PERSON2. ""shh mu ha ha ha"" @CAPS31 got told said @CAPS13. ""@CAPS32"" he grumbled. Once inside the store @CAPS35 was like somone turned @CAPS9 the lights @CAPS9 bright. @CAPS73 only that but the store was filled from top to bottom with @CAPS38 but toys. The toys ranged from small to large to huge. There were all sorts of diffrent types. ""@CAPS33"" @CAPS34 @PERSON2. ""@CAPS35's a @CAPS43 bunny!""""@CAPS35'll smother @CAPS31 in your sleep twerp"" ""@CAPS37's eating @CAPS31?"" said @PERSON1. ""@CAPS38"" grumbbled @CAPS9 @CAPS10. WACK! The bunney conected with @CAPS9 @CAPS10's face. ""@CAPS43 meenie""""@CAPS44, that does @CAPS35"" he took a lion off the shelf and tossed @CAPS35 at @LOCATION2. ""@CAPS3, don't be mean to her!"" said @CAPS13 as she picted @CAPS1 a monester an flung @CAPS35 at @CAPS9 @CAPS10. @CAPS35 missed and hit @PERSON1. @PERSON1 flung @CAPS35 @CAPS66 at @CAPS9 @CAPS10. ""That's @CAPS35"" I @CAPS9 @CAPS10 challege @CAPS31. SMAK. ""@CAPS52"" @CAPS53 this. @CAPS53 that. @CAPS54 @CAPS54 @CAPS31 scum. @CAPS31 can't get me. WAM! Ha ha i'm ausome. TWACK! ""@CAPS55"" @CAPS34 some one. @CAPS62 @CAPS56.""@CAPS31 kids are in @CAPS43 trouble!"" the owner was yelling. ""@CAPS31 better put all these toys @CAPS66 where @CAPS62 were"" he warned.""@CAPS59! I think we got a little caried away"" said @CAPS13. ""A little!! My toy store is a mess!now get cleaning"" ""@CAPS61"" @CAPS62 all sighed. ""@CAPS63 that was cool"" siad @CAPS9 @CAPS10. ""@CAPS66 from planet meanie are we?"" teased @PERSON1. ""@CAPS67 i @CAPS20 am"" replied @CAPS9 @CAPS10. ""ya, that was fun"" said @CAPS13. ""@CAPS71 @CAPS35 was!!"" replied @PERSON2. ""We all looked pretty stupid hu"" said @CAPS13 blushing. "" @CAPS67, but how many people can say @CAPS62 had a toy fight in a toy store"" replied @PERSON1. ""@CAPS73 many i guess!""""@CAPS74 talking more cleaning, clean, clean!"" @CAPS34 the store owner.""yes, sir"" @PERSON2 soluted the owner.""@CAPS76 @CAPS31...""""@CAPS77"" The group of kids laughed." 16 16 32 3 3 3 4 4 3 3 3 3 4 4 3 +21264 8 "I tend to always get myself into awkward situations with the people i love, but that's just life right? When your a kid you tend to be dramatic about every little thing, an to those who love you @DATE1 are trying to teach you something @DATE1 or lead you the right way. Or maybe that was just me, haha? I moved out of my dads, with a horrible bang. I wanted to live life my way, which was only pushing the people i needed most away. I realized that a little too late. But again, that's just life right? Just about @DATE1 i finally ""rekindled the flame"" with my dad again. It was the hardest thing to do, considering my step mom hates me. @DATE1 that's obviously never going to change. So that's just something i'll have to deal with. My dad @DATE1 i still had the most awkward relationship, till about a few months ago when we had gone on a fishing trip together. Standing there, casting away there was nothing said. We both consider ourselfves fairily humorous people, but even our jokes wern't breaking through the ice. We finally started making conversation @DATE1 he started to tell me about when i was a kid going @DATE1 visiting my mom for the first time, then coming back to my grandmas @DATE1 calling her a......bad word...but i wont say which one. My dad hasnt every really cursed around me before, i guess that's time away for you. It was pretty funny all these stories he was telling me, @DATE1 the way he was explaing them. That brought pretty happy laughter to us both. @DATE1 really brought us back together again." 17 19 36 4 3 4 4 4 3 4 3 4 4 4 4 +21265 8 " Have you ever laughed so hard that you couldn't really breathe or you started to cry? well I can tell you that I do that all the time and that laughter is a big part of my life. I remember when my family and I all went out to eat for dinner one night. My grandpa wanted to go out to chinse food in @LOCATION1, so my mom, little brother, my grandma, grandpa, my friend @CAPS1 and I all went out to the chinse @CAPS2. That ngith was memorible because that was the night that we had the whole table laughing at @CAPS1 and I. When @CAPS1 and I got done orering our food the waiter brought us our appitzers and thats when the trears and laughter came out. It was ten minuates of talking to @CAPS1 about this boy that she liked and when she said the name my crab puff went launching toward her i couldn't help but laugh so loud, and hard. As @CAPS1 and I sat there and laughed about what had just happened, I had seen that @CAPS1 couldn't really open her mouth because she was laughing to hard and her cheeks hurt from laughing, she ended up drooling into the little sauce bowl that at soy sauce in it, and when seeing that I new that I couldn't help but not tell her at all. The night came to an end when @CAPS1 ended up dumping her water all over the waiters son. I had to appologized to the waiter that night and her son to. Her son said that it was ok because it happens to him all the time. Laughter is a big part of peoples lives because laughing can make you happy, bring smiles to peoples faces, and make memories." 17 18 35 4 3 4 4 4 3 4 4 4 4 4 3 +21266 8 " This is the second time I have been to @ORGANIZATION1 and I can't wait to go on all the rides. The lines are extremely long but I am with some family that I haven't seen for a while so we talk and catch up. My uncle who is there with us tends to play tricks on the kids and embarrass me. He has given me wedgies, put his kids diapers under my pillow, and many more crazy tricks. I knew this trip would be no different so I tried to stay clear of any plans he had in mind. @CAPS1 was going to be a rather warm day today so I put on some basketball shorts and a t-shirt. We headed out with five kids under the age of @NUM1 so I knew we would be going on some smaller rides. After we went on ""@CAPS1's a small @ORGANIZATION1"", we decided @CAPS1 was time to go to the bigger rides but we would need some lunch first. We went to a burger shop and were waiting to get our food, so me and my uncle decided to have a spit ball war. We were shooting across the isle from table to table trying to dodge people walking by. I hit him twice in the side of the cheek so he told me I had won. Once we ate our food and went outside to leave he told me, ""@CAPS2 see who can hold your little brother above their head for the longest"". I not thinking about @CAPS1 said, ""That's easy!"" and lifted my brother up. Little did I know that was a big mistake. He walked over and pants-ed me in the middle of the walk way. I stood there with a kid above my head and my pant's at my ankles. People sitting down at tables stared and laughed as they saw all this happen. I was so embarrassed, how could I be so stupid to fall for his trick. I couldn't believe I had fallen for @CAPS1 again. @CAPS1 happened so fast and I didn't know what to do other then chuckle inside. After that we decided to head to space mountain to get some fast passes. They allowed for you to not have to wait in line and go to the front, but they could only be used for certain times. We had to wait for about twenty minutes and @CAPS1 was raining. So we put on our blue @ORGANIZATION2 ponchos and the kids were playing tag. My brothers were the loud crazy kids that always have energy and don't stop running. They would keep coming up behind me and hitting me in the back and running away. After about the fifth time I couldn't take @CAPS1 anymore so I told them if they hit me again, they were going to get hit back. After about two minutes I got hit in the back again so I turned around and walked up to a kid in a blue poncho and hit him on the back of the head. Little did I know I had just hit a random little kid in the back of the head. I felt horrible as the kid looked up at me with a blank stare wondering what had just happened. I was so embarrassed that I ran and hid behind a tree as my my uncle and parents were apologizing for what I had done. Although my family was embarrassed for what I had done they were laughing hysterically inside at the same time. I had no idea that the kid wasn't my brother and could only imagine what that kid was feeling like." 19 19 38 4 3 4 4 4 4 4 3 4 4 4 4 +21268 8 " Laughter is a part of my life. When I laugh, I always have this feeling of happiness and a connection with others. Laughter makes any relationship stronger. I remember when I was sad, I would go and talk to my friend @PERSON2. I went to him because we could talk about why I was feeling that way. Then after a while we would be laughing - being happy. Laughter brought me closer to my friend. We were able to understand each other. We have been friends since we were in elementary. Because of laughter in our relationship and memories of days when we laughed, it has made this relationship last. I have been mad at my friend and he has been mad at me. But because of all those good times we have had laughing . We are still great friends.Here is a time when laughter was in one of my friend relationships. @PERSON2, @PERSON1 and I were at @ORGANIZATION1's house. It was a @DATE1. We were listening to music and talking about stuff. We didn't do much that day. Except the thing that they were about to do. Out of nowhere @PERSON2's little nephew starts dancing and laughing while doing it. @PERSON1 gets up and does the same. @PERSON2 then gets up too- it was something I didn't expect to happen. They chose a certain song and made a dance for it. The whole time this was happening we were all having a good time. They all looked funny doing their dance. After a while @PERSON2 and @PERSON1 got tired. But we kept on laughing because @PERSON2's nephew kept on dancing. They danced to this song a few other times that @DATE1. It was still funny to me the last time as it was the first time they did it. Laughter connected my friendship many other times. This one though, is the one I mostly remember because it was funny. I remember it like if it was just last week. Being happy in a relationship makes it last a long time. That is why I think laughter is important and it does really make any relationship stronger. I have this story to prove it." 20 18 38 4 4 4 4 4 4 4 3 4 4 3 4 +21269 8 " Middle school was a challenging environment. Not only are kids subjected to a rapid advancement in the academic environment, but a maturing social environment as well. The rapidly growing need for social dominance and in turn inflating egos makes for a bully breeding ground. Without the skill to be able to laugh it off, I would fear for anyone's mental well being in that environment. Throughout my first @NUM1 years in middle school, I struggled with the building social discomfort of classmates higher in the social chain, making for a severe toll @CAPS1 not only my self-esteem, but my academics as well. The stress of my own social stature plummeted my grades continuing a cycle resulting in even more stress. The whole situation seemed hopeless and depressing. I could not believe that in only a little over a decade of life, my outlook had become so grim. I wondered how I would make it through the rest my school years. Everyday I had the pleasure of hearing any number of new insults made up by those higher in the social ladder, attempting to supplement their growing self-esteem and inflating egos; @CAPS1 some days even those who I previously believed to be my friends joined in with them. Except for a few trusted companions, it seemed the whole world was out to further themselves by bashing me with any number of new insults. Being made fun of daily had continued until I realized something; That laughter is key in social survival. Without laughter there was no way I could have survived those school years. After this revelation I was able to laugh at things said to me and laugh at myself as well. I was able to take the the cacophony and learn with it, taking it as critique to better myself. Through laughter and their jarring remarks I was able to secure my position in the social scheme as well as improve my intelligence, as well as make new, better friends and come to peace with others, while maintaining the the hurt I experienced earlier to be ""popular"" without having to make fun out of those who were like who I used to be; @CAPS2 a win-win scenario. Laughter is key in any situation, whether it be a conversation with a friend, or experiencing the penned up frustrations of immature adolescents. From laughter I learned a great lesson, one that I hope everyone has not learned should. Without the lesson of laughter, I don't know how anyone could lead a successful and pleasurable life. " 20 20 40 4 4 5 5 4 4 4 4 4 5 4 4 +21271 8 " They say laughter is the best kind of medicine their is. So to tell you the truth on that qoate I will tell you a true story on laughter and how its a medicine. I already have recognized in believing it my self. I also will explain its key element in part of the world. So to start us off I will tell you a story that has laughter in which fixed a few ed between my grandpa @CAPS1 and my cousin @PERSON1. To start off it had happened about some time during the @DATE1. We were all having a blast. There was my cousins @PERSON2, @PERSON4, and his little brother @PERSON3, @PERSON1 and I. So @PERSON2, @PERSON4 and I were minding are business playing games while our grandpa was watching us play and then out of no were we here a loud smack and then crying and screaming. So it had turned out that @PERSON1 ""slipped"" and smacked @PERSON3 who is only seven years old.Then our grandpa starts yelling and trying to figure out what the heck went down. After seeing @PERSON3's back with a big red hand mark on it that's when grandpa really let loose and just started going ballistic all over @PERSON1 but then @PERSON1 went home all piste. So later on @PERSON1 came back and then grandpa and I sat at the table talking to him. That's when I mentioned something that started to make every one laugh so hard that they all forgot what happened then he said sorry to @PERSON3 and we were all happy by the time grandma got home from work.So to conclude my story I wish to remind you on why laughter is an element or if it plays a part in something which was a true story in part of my life. So thanks for listening and when you or someone is down in the dumps or just really mad, laughter is the medicine for the job." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21272 8 " I have heard people say that a smile makes a big difference in a first meeting, a relationship, or just walking past people on the street. If someone has had a bad @CAPS2, not only should a smile make it better, but also some laughter along to accompany that sincere smile. I enjoy walking down the street on a nice, beautiful @CAPS2 and walking by locals I know that smile, laugh, and give a little wave to show that they are enjoying the @CAPS2 as much as I am. Walking past someone I @MONTH1 not know also has its positives. One look to see their face can tell me if they are having a good @CAPS2 or a bad @CAPS2. Either way, I give a smile. A smile to show that it is a good @CAPS2 or a smile of encouragement to let them know it will get better. I enjoy the feeling I get @CAPS12 I meet someone and I know that we connected great. A good first impression is very important for me because it can determine how the friendship will go and how long it can last. I now know that I enjoy being around someone like me who enjoys to smile and laugh. I can't really seem to see myself around a serious person and I know if I was, we would clash and have problems because I am loud and if they are serious, there would be problems and not be able to collaborate on decisions. @CAPS12 I first met my friend @CAPS1, I was nervous and scared because we were set up as a blind date by a mutual friend. It was a @ORGANIZATION1's @CAPS2 double date with our friend and my cousin. @CAPS12 the guys first picked us, I got into the car and the first thing that I remember was seeing a big smile on this guy's face. I ended up getting more nervous and began to stutter as we started to talk. As the date went on, he seemed like a down to earth guy and always seemed to have a smile on his face and laughter seemed to flow right out of him. As time went on, we became closer than what I would have ever thought of. I was not sure where our friendship would lead us, but soon after, it became noticeable that he liked me and I liked him. We took it slow, not rushing into things. We had long conversations that would last us hours at a time and we always seemed to laugh about everything. He made everything seem better and better each and every time we talked. Pretty much having the same personality and both always smiling and laughing helped us connect right away. Just the other night , @CAPS1 and @CAPS4, our mutual friend, came over to visit my cousin @PERSON1 and me at her house. We were all laughing and enjoying each others company @CAPS12 @CAPS4 and @PERSON1 decided to go to the store and buy some things using @CAPS1's car. Since they weren't going to be gone for long, @CAPS1 and I decided to wait inside. Minutes after that, as we sat, talking to each other, @CAPS4 and @PERSON1 run into the house looking flushed, out of breath, scared and nervous about something. @CAPS4 wouldn't look at us, so @PERSON1 told us to go outside, something had happened to the car. As we stood there, I realized that the car was no where in sight in the driveway, so I became suspicious. We asked them where the car was and they pointed to the road and in the dark all we could see was the faint outline of a car in the ditch. I was expecting @CAPS1 to get mad and say something to @CAPS4, who seemed to not know what to say, but instead he smiled, walked towards the car and said, ""@CAPS11't worry, the car is fine."" @CAPS12 he said that, he started laughing, his amazing laugh. I was still in the state of shock and so @CAPS12 I heard that laugh of his, I turned and looked at him, and realizing that he was happy and didn't seem to mind the accident, I began laughing as well and in less than @NUM1 seconds of him beginning to laugh, not only was it us four laughing, but also two of my other cousins that had joined us outside. Laughter made the situation better and I enjoyed the fact that we could all laugh about the smallest, the unexpected and the worst as well as the best. What also made me happy, was the fact that that very same night after the incident, @CAPS1 asked me the question I was hoping to hear and the way he said it made me laugh which then caused him to laugh. I answered his question with a hug and a yes and he brought out a banquet of roses. As we walked inside, my cousins and my aunt started to applaud and we all started to laugh with smiles on our faces." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21273 8 "Most people think that laughter helps you live longer, love longer, and show who you really are. I believe all of that is true, laughter is one of the most important things a person can do. In my life laughter has helped me threw the hardest situations and made them a lot better. You can laugh a lot with friends, family, or people you barely even know. Laughing can mend relationships and help you get threw anything, in my life i have found that out many times.My mother and myself haven't always had the best relationship, we don't always get along, and since i have a severe separation anxiety from her we spend a lot of time together which can cause friction from being together too much. There was a certain time when we had just gotten into a fight about me wanting to go somewhere and her not letting me, i was expecting her to be mad at me for awhile for how rude i was being. We didn't talk for a couple hours and tried to stay away from each other, we would only talk to each other if it was really important. After a couple days of this going on i went into her room to talk to her about it all, when we talked i understood why she was so mad at me and i apologized and left her room, but i could still feel that there was some tension between us. I wanted to make things better more then i have ever wanted anything, i wasn't really sure if she was ready to get over this fight, so i thought it would be better to give her some space and let her come to me when she was ready to talk. We both tried to stay away from each other for the rest of the day trying to cool off and really think about what we were truly mad about. The next day we went to go do somethings around town, some grocery shopping and to see some family. In the beginning we didn't really talk much or anything. Within an hour of us leaving the house and having our alone time together we were joking around and laughing at everything each other said. After our errands we went out to lunch, it was the funnest time i had ever had with my mom, we talked about everything and laughed and had an amazing time. The days after that were wonderful also, we spent a lot of time together and felt like we didn't want to leave each other, i know that laughing together and talking really helped with that, we opened up to each other like we never had before. I love my mother and care for her more then anyone in the world, when we got into that fight i was scared out relationship would never be the same again, we were able to work it out by laughing. I honestly think that laughter can cure anything, from a broken heart to a broken family." 17 17 34 3 4 4 4 4 3 4 4 4 4 3 3 +21274 8 " Laughter is important in many ways. It can help you solve an argument with a friend, improve your health, and help in akward situations. All relationships need a little laughter to lighten the mood once in awhile. If we didn't have it, everything would be taken seriously all the time, and there would be many more feuds. One instence where laughter has helped, was when my best friend, @PERSON1, and I were in a big fight about someone spilling paint on a pair of shorts she owned. We were both accusing one another, and the more that happened, the worse the fight became overall. I remember right in the middle of the fight, @PERSON1 made a face that for some reason made me laugh. Once I laughed I could tell she wasn't amused. She began questioning why I was laughing. So I explained to her why I had been laughing, and she ran to the bathroom and looking into the mirror, made the same face that I had been laughing over. To my surprise, she started laughing as well. After the ten-minute laughing fit, I made a joke about the paint on her shorts, and we decided to splatter them with paint for a rather ""unique"" look. Needless to say, laughing saved us from getting into an even bigger argument. When people are angry or upset, physically they probably don't feel that good. They @MONTH1 feel angry for days, which in turn can give them physical pain. I know for me if I'm angry long enough I'll succumb to a headache and ironically, I get more angry at people around me because my head hurts and they're making it worse. Laughing is a way of @CAPS1 things go. Not necessarily being carefree, but learning to let go and live. Physical health is greatly affected by laughter. As well as mental health. Everyone needs to laugh to stay sane. Learning to not sweat the small stuff is really important. My favorite thing to hear is ""let go laughing."" @CAPS1 go of a problem while laughing is the best way to get rid of problems. I've also noticed that when you laugh more you feel better overall. You have more energy, but that's usually from the endorphines kicking in when you have a crazy fit of laughter. But also it lightens the mood tons when you're with other people. All people need to laugh. Married couples, students, teachers, and best friends. Laughing can bring people together. In the end, laughing can benefit you in many ways. It can help resolve feuds, lighten moods, and have good effects on your mental and physical health. And the best thing to always remember is to let go laughing." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21275 8 " There is @CAPS28 more fun than going to a friends house after church. It is like a comic relief in life after a r rough message to @CAPS10 heart. In @CAPS1, going to your friend's house is even better when your friend is, to say lightly, kind of crazy like @CAPS10 are. Which for my story, could be interpenetrated as a bad thing, but for me it is @CAPS28 but a great thing. My friend and I have had some of the craziest time together, and the funny thing is we @CAPS6't have to be doing anything illegal too! Its such a bonus! We get our giggles from cleaning, playing with magnets, and watching theVampire @CAPS2, and much more. Strange? Yes. Fun? To much. Let me tell @CAPS10 of somethings that have happened to my lovely friend and I . First, like always, there is a @DATE1 and I'm heading over to my good friend's house. Its a very short walk, I leave my church by twelve and am there by twelve o' five. I'm up the steps, I'm to her door, I open it. Bark bark bark! ""@CAPS3 up, @PERSON1,"" @CAPS4 yells from another room. The snowzer pup come and greet me. He knows @CAPS11 better. The one dog eats rocks for @CAPS5 sakes. But @DATE2, @CAPS15 has her reasons to yell, and be a little grouchy. ""I didn't realize how many dishes there were! My sister will freak if @CAPS15 knows your here and they are not done."" ""@CAPS6't worry, I'll help @CAPS10, and we'll get them done before your sister notices."" @CAPS7, we are off. @CAPS4 wonders the house frantically for dishes and putting them in the sink. @CAPS7, I work on putting the clean ones in the dishwasher away. We hear a sound from her sisters room, and we jump. @CAPS4's sister sounds like @CAPS15 is waking up but @CAPS7 snorts and the noise ends. @CAPS7 we get back to work. When we got done, we @CAPS21 slumped on to the couch looked at each other. We @CAPS21 were tired and our hearts were still pounding. @CAPS7, her sister snorts again. we laugh hysterically, and her sister tells us to @CAPS3 up. @CAPS7 another day, I come over and we are @CAPS21 really hungry. We @CAPS21 haven't eaten all day long and go into her kitchen. ""@CAPS8 do @CAPS10 wanna eat,"" @CAPS15 asked me. ""I @CAPS6't know. @CAPS8 do @CAPS10 wanna eat, "" I replied back. ""I @CAPS6't know, "" the endless cycle. But, @CAPS7 my eyes cross paths with a bag of chocolate mint chocolate chips. @CAPS4 fallows my gaze and see the bag, and smiles. ""@CAPS9!!"" I'm delighted, "" @CAPS9!!"" we @CAPS21 shout in joy of the idea. We get everything together, and begin making @CAPS9. Now, @CAPS21 of @CAPS16 are really, ""great cooks,"" so when we were faced with ""who should flip the @CAPS9"", it was a @CAPS11 brain-er. ""@CAPS10 do it!"" ""@CAPS11, @CAPS10 do it!!"" We argued till I realized the pancake was about to burn, and @CAPS7 I did indeed, ""do it,"" for the sake of chocolate mint chocolate chips @CAPS9. But, when I flipped it, it didn't really want to end its embrace with the hot pan, and broke into pieces. Many ""stupid pancake's"" were said and spread all over her kitchen. But, eventually we ate and were happily full. @CAPS7 came another @DATE1, and this time @CAPS4 had a surprise. ""I found this really cool show!! Its calledVampire @CAPS2!"" I thought for a moment, ""@CAPS14."" @CAPS15 immediately dragged me to her computer where @CAPS15 had them down loaded. I thought to myself, ""are these a cheep knock-off ofTwilight?"" We began watching them and they did seem cool, I liked them a lot. The vampire brothers were in turmoil with each other, yelling and interrogating each other. ""@CAPS16 @CAPS19 of how her blood tastes!"" I paused the none existent thought in my head, ""@CAPS8 did he say?"" ""@CAPS16 @CAPS19 of how her blood tastes,"" @CAPS15 looked at me. I crack up laughing, ""@CAPS20. I thought he said, @CAPS16 @CAPS19 @CAPS8 her butt tastes like, wow I feel bright!"" @CAPS21 of us start laughing like crazy at the very stupid thing I had said. We laughed the rest of the night with @CAPS16 that. We finish watching a couple episodes and @CAPS7 my mom shows up. I get my coat and the rest of my junk, and head out the door. the dog is still barking, but @CAPS4 comes out the door with me, we give each other a hug and say our good byes. ""@CAPS23 I'll talk to @CAPS10 later, @CAPS4, "" I say heading down the steps ""@CAPS25, see @CAPS10 at school tomorrow."" ""@CAPS26. And see @CAPS10 next @DATE1!"" I yell from the car window. @CAPS15 yells back, ""@CAPS27!"" @CAPS28 is more fun than that, a friends house on a @DATE1 @TIME1. Especially with a couple of crazies things, like me and my buddy, dirty dishes, a stupid dog, @CAPS9 that stick to the pan, andVampire @CAPS2 with my poor hearing." 19 20 40 40 3 4 4 4 4 4 4 4 5 4 4 4 4 4 5 4 4 4 +21276 8 " ""@PERSON1, @CAPS1 up! It's almost time you to go to school!"" @CAPS2 mom yelled at fuzzy hair, half-opened eyes, and yawing boy. That's me. Today is a first day of @CAPS2 first new middle school. Our family moved to a new place, that's why I had to move a school too. I woke up and took a shower and wore @CAPS2 school uniforms with exciting and nervous mind, because I didn't know anyone from @CAPS6 new school. When I arrived to the school, students who are same age as me started to scream out loud for sadness of school days that are coming up or excitement of meeting their friends again. On the other hand, I was depressed and confused because of these hyper students and the new school. I shook @CAPS2 head off and started to concentrate finding @CAPS2 classroom. '@CAPS3 hah! There it is.' @CAPS4, I found @CAPS2 classroom and when I stepped in, @CAPS5 looked at me curiously for a while, since I was the ""new"" kid to @CAPS6 school. I sat alone and waited for teacher to come. During I was waiting, I put @CAPS2 head down and slept a little bit with no smile on @CAPS2 face. Suddenly, teacher opened the door and spoke loudly, ""@CAPS5 sit down and be quiet!"" @CAPS6 teacher must be the most strict teacher I've never seen. While teacher was writing down something on the whiteboard, the students were trash-talking about the first sight of the teacher. It was terrible for yelling at the student when you saw for the first time. For example, I knew a kid who went to a private school and transferred to a public school. I had a same class with him and I was his partner. Since I didn't know him very well, I started to ask questions about him. At first, he answered back nicely to me and I thought, 'We could be close friends from @CAPS6 class.' @CAPS7 it was wrong. He started to talk loud to me when teacher was explaining something to us and it got me into trouble for talking with him. Other students hated him for being distracted during class and he often asked useless questions to the teacher really loudly. Also, he had weirdest perfume smell that he thought it was cool to wear. @CAPS5 thought he was annoying which caused to a small fight. @CAPS8 arguing with other friends, he stopped coming school and now we don't even know where he is at. Like @CAPS6, it shows that the first sight is really important to have in relationships with other people. When I heard that the first sight is really important from other students who were sitting behind me, it changed @CAPS2 mind to an open mind such as having a smile on @CAPS2 face. I though, ' I shouldn't be like that kind of teacher's first sight. Maybe I should change @CAPS2 face looking with smiling and some confidence on it.' @CAPS8 that class, I started to put smile on @CAPS2 face and thought positively. I tried to be participate for the class and worked hard for making new friends in the new school. Therefore, the other student opened their mind as well and started to ask things about me. For example, it was like these questions; 'why did you come to @CAPS6 school?', 'what sports do you like most?', 'what game do you play?', and etc. From those aggressive questions, laughter can change @CAPS2 looking and make good relationships. How did I know? When I first entered to @CAPS2 classroom with concerning face on it, @CAPS5 just stared at me and looked like they didn't want to know about me. @CAPS8 putting laughter on @CAPS2 face, they started to feel comfortable than the first time. Changing me depressed face was @CAPS2 starting point in the new school. I started to make a lot of friends which it became a way for me to be a class leader. I felt really amazing and awesome that how ""the new guy"" can be the leader of @CAPS6 class. I felt proud of myself and thought of happiness that I actually started to have laughter on @CAPS2 face since the teacher didn't look good without a laughter." 17 17 34 4 4 4 4 3 3 4 4 4 3 3 3 +21277 8 "You know how people say that school is the most fun place to be during the day? Well i would have to be agree to that because when I'm at school I would laugh all day long when i see my friend name @PERSON1. We would have fun all day long just the three of us in the same classes but two classes but we still be laughing in the halls and in the class rooms some times at each other and people that we don't know. I always loved coming to school last year but this year is not that much fun because @PERSON1 moved into the @CAPS1-es and I don't know where she lives now but after @PERSON1 left the good old days was fun with her it sucks that we are not going to the same schools with her or her still coming to school with us now it is just the two of us @LOCATION1 and my self we hardly have some fun in class without her but most of the days we do. I remember when @PERSON1 first came to this school she look like the other girls in our class but once we got to know her we became best friends. the next day she though that we would not like her because is a new kid at the school and that stuff we got to know her all to well because we would hang out with etcher teacher back from the seventh grade we would hang out. The thing that i always love about @PERSON1 is that she would turn anyone whom is having a bad day and turn it into a really good day for you she would always do things like that but there are some days when she is felling down and blue and @PERSON2 and me would try to make her feel but she would just get mad at us because we wasn't there for her when she needed us. I felt so bad after that but we are friends and friends so post to be there no matter what. The next day she wouldn't remember what was going on yesterday because she wouldn't remember that much when she is really mad at someone. one time in one of my classes we was not doing much in that class because there was not that much people in there we were painting and me and @PERSON1 was painting bulletin board. the colors was white and brown we kinda of got it all over the place and each other i panted her hand haft brown and the other side white and she got some of it on the paper that we was using to let it dry up so we can paint again but that did not work out so good because we had to go yo our next class. The next day we was in that class we almost the same thing but we kinda of got it on the grand, sink, sops descender, and each other we draw a little something on each other i draw a heart that has her name in it her name was in pen and the heart was in paint. In our next class we was laughing the rest of the day we even got my sister @LOCATION1 to laugh with us even through it was not that funny because we ate a lot of candy and candy makes us laughter all the time. these days are the days that I'll remember all the time because @PERSON1, @LOCATION1, and I are always laughing all that time because we always find something to laugh about and talk about. Out of all the times that i laugh the most fun ones are with my friend @PERSON1 because we would have lots of fun when we are with her she is the glue that was holding us together. I think when all of us are together we are always laughing every scent of the day. No matter what we did or didn't do we would laugh all that time. This one we would say ""like"" all the time in one of our classes that we would have all that time during fifth because we was the only two girls in there with four boys and a guy teacher so @PERSON1 and me would do almost anything in that class because we would not do anything that would get us in troble." 15 15 30 3 3 3 3 3 3 3 3 3 4 3 3 +21279 8 " @DATE2 @CAPS1 @CAPS2 was a warm day, and @CAPS3 and I were on our way to my family reunion, in @ORGANIZATION1, @LOCATION2. Our car was crammed, and with my mom, grandma, cousin, and us two girls, @CAPS2 got really hot. @CAPS2 was about the @NUM1 of @DATE1, in @DATE3. I swear I thought we were all going to die in that car! We had the air conditioning on, but @CAPS2 didn't help much, I was in the middle of my cousin, @CAPS4, and @CAPS3. We finally got to a rest stop, and we all kinda stumbled out of the car. @CAPS3 wanted to go get a drink, so I followed. I'm pretty sure we were getting weird looks from all the people around us at this point. I was in my @LOCATION1 @CAPS6's, and @CAPS3 was in @CAPS8 @CAPS9. @CAPS2 felt like @CAPS2 had taken @NUM2 minutes to just walk to the drinking fountain. @CAPS2 was really that hot. I opened a cliff bar, while @CAPS3 was getting a drink. That is when I heard her scream. Of course, I busted up laughing, even though I didn't know what had happened. @CAPS3 turned around, and that laughter, turned to hysterical screaming. The mouth thing on the fountain had been turned towards you when you drink, so @CAPS3 was drenched. I sarcastically said, ""@CAPS12, you won't be hot for a while now will ya?"" We both laughed, and she chased me, trying to get me soaked. Sometimes, all you can do is laugh together. Later that day, when we finally reached the family reunion, they had a pool. She tried to push me in, but I took her with me. Everyone was laughing at that point. I don't think I have ever laughed so hard, than I did last @DATE2. Those were good times." 18 15 33 3 3 4 4 4 4 3 3 4 4 3 3 +21280 8 " Laughter @CAPS1 @CAPS2 For the @ORGANIZATION1 is a very important thing in life , I personally could not live without laughter in my life I honestly could not do it. I would not be me if I didn't have laughter in my life . All relationships should have laughter involved in some way ,what would a relationship be without laughter! Laughter is a beautiful thing , when I am laughing I am enjoying life in in my own way and my worries instantly go away and some how I feel like I am ""carefree "" . Laughter makes us healthy both physically and mentally . Through out my life there have been many times where laughter has been involved in many relationships . But let me tell you about a time where laughter really stood out and was and still is a big part of my relationship with my dad. I have always been very close to my dad , you might even say I am a daddy's little girl .Laughter has played a very important role in my relationship with my dad. It somehow always found its way into our relationship. The @CAPS1 times of laughter are what I valued and treasured so much that whenever I think about it I cant help but smile . I remember when I was little if I ever needed a @CAPS1 laugh my dad was the person to call . The laughter grew stronger through out the years , I cannot recall a time where my dad and I had a moment where laughter was not involved . We always used to watch these @CAPS3 shows together that we would almost always laugh so hard it was impossible to get through the show without making noise or miss something because we were both laughing so hard .We would laugh so hard we would wake up the whole family ,sometimes we didn't even know why we were laughing it would just happen . I can just hear those sweet sounds of laughter between my dad and I oh how I miss those @CAPS1 @NUM1 nights were what I looked forward to, I knew that I would soon be laughing along with my dad and tears of joy would be running down our faces . I looked forward to that sweet sound of laughter it was almost impossible to go through the entire show without laughing ,oh what @CAPS1 times those were . Since my dad moved to @LOCATION1 ,we haven't had those beautiful times of laughter that I miss so much, but I can always treasure them in my heart. Those moments of laughter were the best moments I have ever had with my dad,since I was little girl till now almost an adult . I don't know if my dad and I would be as close today if we hadn't had all that laughter throughout our lives. Whenever I am sad or miss my dad , I go back to those times we had filled with laughter, and listen to his laugh playing in my head. I never knew how important laughter would be to me. I am glad laughter played such an important part in my life. Laughter is such an important part of life/relationships because it brings joy and happiness. Laughter is the type of thing that no matter what , should always be a part of any relationship. I think laughter is healthy for our bodies, for example if you're sad ,depressed ,or just not having a @CAPS1 day a @CAPS1 laugh will change that and make you feel a lot better ,like it did for my dad and I. Laughter also makes relationships last longer , the reason why I am so close to my dad , best friend, mom, boy friend , sisters etc is because of laughter itself . If laughter was not involved in my relationships , I could not handle being sad all the time everyone needs a little laughter sometime in their life. My dad is the reason why I laugh so much , he showed me how laughter is such a powerful thing but yet so simple. I never thought laughter would be such an important part of my life until my dad showed me just how valuable it really is. Where I would be today without laughter I truly have no idea. My dad taught me how laughter can change your attitude on things and how important it is to have laughter in your relationship. If laughter was not involved in any relationship , the world would be very boring no laughter or smiles,can you imagine having no laughter at all! I certainly cant imagine life without laughter. If my relationship with my dad had no laughter we would not be the same people we are today in fact , we would be completely different people and we would not be as close as we are today. What do you think about laughter? Has laughter ever played an important part in any of your relationships? " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21281 8 " Laughter: The @CAPS1 to @CAPS2 Laughter, they say, is the best medicine. We all know that every relationship needs a heaping dosage of medicine every once and a while. @CAPS3 younger brother, @PERSON1, and I, we have a pretty good relationship. Sometimes we argue, other times we can get along like we are the best of friends. When we were going to the same school together, I would go out of @CAPS3 way to say hi to @CAPS3 brother. Almost every time I would get shut down and ignored, by @CAPS3 own brother. @PERSON1 is going to be a freshman next year and I will be a junior, so we will be attending high school together. One night, at the dinner table, @CAPS3 family was discussing what the change would be like with both children in high school. I brought up the fact that @PERSON1 never says hi to me or even waves at me and how I didn't really appreciate it. Some how we got to talking about how he would be known as @LOCATION1's brother because I am so awesome. The next thing I know @PERSON1 blurted out, ""yeah, @LOCATION1, I'm going to embarrass you because I am so butt-ugly."" @CAPS3 parents and I looked at each other and instantly started laughing and couldn't stop! When we had semi regained our composure, we asked @PERSON1 why he would say something like that about himself. @PERSON1 said he didn't really know why he said that, he thought it would be funny. Yes, @PERSON1, it was!! It was @CAPS3 turn to pray for dinner that night. As much and as hard as I tried to compose myself long enough to pray, I couldn't do it. Every time I thought I had pulled myself together again, I would start busting up yet again. After a while, @CAPS3 parents asked me what was wrong. I replied, ""I was going to ask @CAPS4 to make @PERSON1 more beautiful so he wouldn't embarrass me."" I started laughing so hard that I was crying. I couldn't see anything because the tears had blurred @CAPS3 vision. Now, after what I said, it took me twice as long to control @CAPS3 laughter. @CAPS3 parents calmed down before I did, so @CAPS3 mom had to pray because I couldn't contain myself. The whole time @CAPS3 mom was praying, I had to clamp @CAPS3 hand over @CAPS3 mouth to keep from laughing. @CAPS3 grip was so hard that it made @CAPS3 teeth hurt. That night I think @CAPS3 whole family got a few spoonfuls of medicine. Probably enough to last us another week or so. I can't wait until I get 'sick' again and need another serving of medicine! " 20 20 40 4 4 4 4 4 4 4 4 5 5 4 4 +21284 8 "The @CAPS1 @CAPS2 in @ORGANIZATION1 is the shortest distance between two people. They express happiness, belonging and they let you forget your worries for a few seconds. Who does not like to laugh? I will be writing a true story in which laughter will be one important part. My story will be about myself, who is an exchange student and @CAPS1 in high school, and how I got to know my today's best friend.It all started in the morning of my first day in a @CAPS1 high school. I remember clearly how nervous and excited I was. I was not able to focus on my breakfast because my mind was full of thoughts and questions. How is the school going to look like? And what are the students going to think about me? I have never been in the @LOCATION1 before and I have never been an exchange student. Because of all the worries, which were running through my mind, I did not even notice that it was already time to leave the house. This moment which I have been envision for month, finally arrived. My host-mom said good-bye to me and wished me a great day. Now I was totally by myself. I walked in the high school and went to my first class: @CAPS3. On the way to the classroom, people stared at me, but nobody said a word. Have you ever felt like you are alone even though hundreds of people are around you? This is exactly the way I felt in that moment. My first class went well, as well as my second class: @CAPS4. During @CAPS4, some guys asked me if we have cars in @LOCATION2. Although this question seemed really stupid to me, I answered nicely with yes. My next period was drama. I had trouble finding the drama room, but luckily I met a girl on the way who showed me where I was supposed to go.Her name was @PERSON1 and she told me that she moved here last year from @LOCATION3. From the first moment I saw her, she seemed really nice to me. On the way to the classroom, she asked me questions about the difference of @LOCATION2 and the @LOCATION1. She also appeared quite interested to me. While our drama teacher was preparing a scene, we continued talking. I had the strange feeling that I have known her forever. The whole nervousness I had at the beginning of the day was gone. I told her that some guys asked me if we have cars in @LOCATION2. She answered that they asked her the exact same question, but about @LOCATION3. Suddenly, she started to laugh. It was a happy and friendly laugh and soon I started to laugh as well. It did not feel awkward for me, sitting next to a girl I just met and we were laughing so hard. I knew that this moment, this laughter was special. I felt so happy and belonged and it let me forget all the fear and doubt for a few seconds. What I did not know in this moment, though, was that she will become my best friend. This was my true story, in which laughter was an important part. It is not easy to be @CAPS1 in school, especially if you are an exchange student. My story showed that a laughter is able to change people's thoughts and to short the distance between two people. In my case, it made me feel more comfortable and confident, which was the start of a great relationship, as well as an awesome time in the @LOCATION1. The end" 20 19 38 38 4 4 4 4 4 4 4 3 4 4 4 4 4 3 4 4 4 4 +21285 8 " High school years are tough for many teenagers if you don't have a friend that is always willing to put a smile on your face during the worst times. I had a great friend named @PERSON1. She had that special power of making me laugh no matter what. We stopped being each others friends around the end of our sophmore year. It was both our faults for letting our friendship come to a closer. It wasn't like we made enemys with each other. But we didn't end our friendship so nice and peacefully. The @DATE1 going into my junior year i had forgotten why we weren't friends anymore. If I didn't remember why we weren't friends anymore, then obviously it was a stupid thing to fight about. But things were said to one another. So it would be a lot harder to make-up. I really didn't want to be the one to apologise first. I did the worst thing to our friendship and just let it stay like that. It was the first day of my junior year. I hadn't seen one sign of @PERSON1 anywhere. It worried me because I thought she might of moved away and I didn't get the chance to say good-bye to her. Lunch had past and that is when I mostly saw everyone. And there was still no sign of her anywhere. As I walked to my last class of the day, I was seated in the front row. Once I was settled there walked in @LOCATION1. I had a little smirk on my face knowing she was still she hadn't moved away. She turned to look at me with a serious look. For that one sceond I had forgotten we weren't friends. My face bacame serious as well. It was great knowing she was still living here, but horrible knowing we still hadn't made peace with each other. But I didn't want to be the one to apoligise first, beacause I knew she would think I was the one to blame. So leaving it like that was all I could think of. The semester went by really fast. Seeing her everyday during class made it harder for me to even be in there. I lost a really good friend from something I don't even remember. I've noticed she's made new friends and has moved on with our friendship. She still once in a while hung out with my group of friends. When we both joined cheerleading we saw each other more after school. But we still didn't talk. It really felt like she was acting as if I never was a part of her life. At first I hated her for treating me that way. But I also had to take responsiblitie for what I had done to her. One night I felt so out of it. I really needed a friend that could just let me forget about my problems and bring a smile to my face. The only person that came to mind was @PERSON1. I felt very alone at that time. So I decided to write her an e-mail. It would have been better to have aid it to her face but I know I would have chickened out if I did it face to face. So an e-mail was better than nothing. I told her I was wrong about a lot of the things that came out of my mouth. I told her how much I missed her friendship and how much I missed her presents around me. I woke up the next morning feeling very sick to my stomach. I didn't want to go to school but I did anyways. During lunch time I sat at my usual place in the hall. @PERSON1 came out of no where and sat next to me. She smiled and said ""remember when you tripped in the @NUM1 grade?"" I could not stop laughing when she said that. Tears came down face face for how hard I was laughing. It felt like its been forever since I laughed that hard. We talked a lot about our summers and about what news have been happening in our lives. We laughed more than we talked. I really had my funny best friends back. And the laughs can go on again." 17 20 37 4 4 4 4 3 3 4 4 4 4 4 4 +21286 8 "Laughter is a important part of life. It is important in my life because it makes me happy. I am going to tell a true story about why laughter is so important to me and to my life. On days that I would be sad because of some stressful and unhappy things that were happening in my life at the moment. My friend @CAPS1 would come to my house to cheer me up. He would cheer me up by making me laugh, a lot. The main ways that he could make me laugh, when he would notice that I am sad were, tickling me randomly a lot, saying a funny joke or asking me a silly question and by making me play a video game or two, that I was very embarrassingly bad at. The first way he can get me to laugh is by tickling me. When he would come over we would just sit around and talk about random stuff that popped into our heads. He would notice me getting sad at some point and he would say that if I didn't cheer up he would tickle me so that I laughed to get cheered up. I wouldn't really cheer up so that he could make me laugh, to cheer me up. So, he would start to tickle me a lot. I am ticklish basically everywhere, so I would laugh hysterically and it was so much fun. After he would finally stop tickling me, I would still be laughing. If I were to get sad again, he would just keep on tickling me until he was sure that I was happy. I would get happy that day because of laughter.Another day that he was over just hanging out with me. I might not have been having that great of day. We would be watching a movie and eating pop corn or watching t.v., and he would notice that I wasn't really that happy. So, he would try and make me laugh to cheer me up. He would get me to laugh by saying some funny silly joke or asking me a weird random question. Little funny things like that will always make me laugh. Through out the day or while watching the movie. He would say something like it is so nice outside. When it really wasn't, he was just making me laugh. Or, something in the movie would happen and he would say how that would never be possible in real life. He would just get me to laugh to cheer me up. In addition to tickling me and saying something funny to make me laugh, he would also make me play a video game to get my mind off things. At his house one time he said that we should play some fun video games for something to do, because it would be rainy outside. At first he would show me how good he is at one of his favorite video games, likeAssassins @CAPS2. Then he would say that I should try to play it. I was not very good at it but it was fun. I am not used to the controls of an @CAPS3 @CAPS4 so I wouldn't know how to do some things, and he would make fun of me for it because it was actually supposed to be easy. When I couldn't do something I would laugh about it and give the controller to him because I couldn't do it and he could. That would make me laugh because I couldn't do something simple like run up a wall in the game, so, I would have to give it to him to do and that was funny to us. Being bad a video games is funny to me and it make me laugh. In turn that would make me happy which is important.In conclusion, by my friend @CAPS1 tickling me a lot, saying something weird and random, that is silly and funny or, by getting me to play video games that I was bad at and had to have him do it for me, would make me laugh. By him making me laugh, a lot, it made me very happy. Laughing is very important part of my life and this story. It is important because if I didn't laugh as much as he makes me, I would not be as happy. If I am not happy, that isn't a good thing. Because, being happy is a very important part of any life and relationship. Most of the ways I can get happy are by laughing. So, this story shows that laughing is very important part of my life. You could also say that is important in my relationship with @CAPS1. He make me laugh which makes me happy. That is very important to me." 16 20 36 3 4 4 3 3 3 4 4 4 4 4 4 +21287 8 "Laughter is the shortest distance between two peopleFor the longest time I never thought that I could be happy. I felt as if every time I tried, someone was always there to say ""@CAPS1 no, she's about to be happy. Better take everything away from her."" That's @CAPS2 always happened; I was the one being dumped, cheated on, or losing a best friend. I would lie awake at night sometimes and wish that maybe someday someone out there would listen and care and understand. I didn't think that wish would come true, but somehow it did. @PERSON2 was the type of guy you could tell anything to. He would listen and care as if it was his problem also. That's @CAPS2 attracted me most to him. His sense of knowing when things weren't right and attempting to make them better. The thing I loved most about him was how he could make me happy when I felt so down. He didn't live close to me, he never came over and we barely knew each other but he made me smile better then anyone I've know for years. I guess I never believed laughter is the shortest distance between two people. It didn't take long for that to be proven wrong.Freshman year and I was lost. I just wanted to be popular, make friends and get a good boyfriend. My main focus that drove me through each class period was boys. It wasn't the best thing I could have focused on but hey, they got me through. I still remember sitting in my math class when a tall boy with brown-blond hair sat in the front row. @PERSON2 was his name, and I suddenly became attached. I did @CAPS2 most girls do when they see a cute guy. Made a fool of myself. I was so sure that I was never going to get a chance with him until I got his number. The story goes on from there, we dated and dumped. For a while we didn't talk. But that's @CAPS2 made us bond even more. We later became best friends, and that is how I became happy.My boyfriend, was not a good boyfriend at all. It took me a while to realize this because I was entranced on his ability to make me feel important. I assumed I wasn't important when I called @PERSON2, crying the night he cheated on me. Usually when you ask a boy to help you with your problems, they don't know @CAPS2 to say. But when I talked to @PERSON2 he seemed as if he was going through the same thing. His perspective on the dilemma helped me get through it. I talked to him for the longest time that night, explaining how I felt. To my surprise, he actually cared and listened. After hours upon hours of talking, @PERSON2 and I finally realized that we have to be related in someway. Him and I have so much in common. We have both been through the same scenarios and we both help each other get past it. One time after a dance @PERSON2 called me saying, ""I cried, when @PERSON1 left tonight."" I helped him. Then later that month, he thought she was cheating on him. I helped him. I remember calling him one night and he woke up just to hear me tell him I quit the dance team. People tell me not to get too attached to him, but I cant help it. We don't even have to be in the same room and he makes me smile. All the things we have been through make me laugh. He makes me laugh. He isn't the class clown or the comedian, but its just something in the way he can be himself and not get embarrassed that's @CAPS2 makes him so fun to be around. We @MONTH1 fight and not get along sometimes but I know he will always be there when I need him.Sometimes I sit and think back to the beginning of the year. When I was timid, quiet and unhappy. I think of how @PERSON2 is the most caring guy but you wouldn't notice it unless you got to know him. I think, ""@CAPS2 if I never met @PERSON2"" and I wonder if I would be the same person I am today. I now recognize that I have changed so much over these few months. Maybe its from @PERSON2, or maybe its just myself. But I'm pretty sure laughter has something to do with it. It brought me and @PERSON2 together in the beginning and it keeps us together even now. From being total strangers and now best friends. Maybe it is true; laughter is the shortest distance between two people." 20 20 40 40 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +21288 8 "Sometimes, @CAPS1 @CAPS2 @CAPS3 to @CAPS4 I glanced around nervously as much mother drove up to the strange and unfamiliar building that was to be @CAPS6 new @ORGANIZATION2. ""@CAPS5 around! We can come back another time...or @CAPS2 not come back at all."" @CAPS6 mother laughed and continued to search for a parking spot. I slumped down in @CAPS6 seat, discouraged and lonely. @DATE1 was the first day of @CAPS6 sophomore year in @ORGANIZATION2 @ORGANIZATION2, and I had to spend it at a new @ORGANIZATION2 @ORGANIZATION2; @ORGANIZATION1. Transferring to a new @ORGANIZATION2 would not @CAPS3 been so bad if I hadn't been forced to leave the @ORGANIZATION2 I loved, the @ORGANIZATION2 I had friends in, the @ORGANIZATION2 which met @CAPS6 selective needs and wants. I was dreading this day and only wished I could go home and sleep this vivid nightmare away. @CAPS6 mom had to practically drag me from our minivan to the @ORGANIZATION2 doors, for both @CAPS6 body and mind were aching to run in the opposite direction. There was a massive crowd of students swarming around the room, which would later be known to me as ""the commons."" @CAPS6 mom introduced me to the woman in charge, @PERSON3, then waved goodbye and headed back to the car. I felt nauseous, and @CAPS6 heart was pounding as I glanced around at @CAPS6 new peers. I did not see even one familiar or friendly face. Not being an outgoing person was a struggle for me, especially when I was faced with new surroundings, such as this @ORGANIZATION2. The truth was, I didn't even want to make any friends. I @CAPS2 wanted to go back to @ORGANIZATION2;@CAPS6 @ORGANIZATION2. As the day progressed, @CAPS6 mood only got worse. No one had even tried to be nice to me, and I wasn't really trying either. As the students were taking a field trip down to the @CAPS9 campus down the street, I ran into a girl who looked @CAPS2 as uncomfortable as I did. @CAPS14 had long, blond, straight hair, brown eyes, and a pierced nose. We started walking together, our steps in sync with each other, although no words were exchanged. We both @CAPS2 felt more comfortable standing next to each other, rather than standing alone. At the @CAPS9 campus, I decided to abandon @CAPS6 timid, protective shell, and I asked her where @CAPS14 was from. ""@LOCATION1,"" @CAPS14 replied. ""@CAPS6 family moved here last @DATE2, so I was home schooled until the end of the year,"" @CAPS14 informed me, her voice laced with nervousness. We continued to make small talk as our group took a tour through the building. I still had not learned her name though because I couldn't read the handwriting on her name tag, and I was too embarrassed to ask what it was. Fortunately @CAPS14 started talking about her name. ""@CAPS6 parents named me @PERSON1 because @CAPS6 mom is @CAPS13, and I guess @CAPS14 really liked that name."" @CAPS14 shrugged and rolled her eyes. @CAPS14 told me I could call her by her nickname, @PERSON2, because @CAPS14 didn't like people talking to her using her full name. After our tour, all the groups of students headed back to the @ORGANIZATION2, for we were going to @CAPS3 a pizza party for lunch. As @PERSON2 and I sat in the corner munching on our food, we studied the kids around us. ""@CAPS15...This is going to be the worst year ever,"" I said gloomily. We stared pitifully at each other for a moment, sizing up the difficult times ahead of us. Then, simultaneously, we both cracked a smile. Next thing I knew, we were laughing hysterically, our bodies rocking back and forth with every breathe that managed to escape our lips. Sometimes, when life throws me lemons, instead of making lemonade, I pucker up @CAPS6 lips at the thought of how sour they are, and I @CAPS2 @CAPS3 to @CAPS4. Although laughing did not automatically make @CAPS6 new @ORGANIZATION2 a fun and welcoming place, it made it @CAPS2 a little more bearable. Laughter truly is the best medicine, no matter what the illness or problem is, and it can make two strangers into friends almost immediately." 23 23 46 5 5 5 5 5 4 5 5 5 5 5 4 +21289 8 " I once learned something very valuable in school. I didn't learn it in a class room, or even form a book. I learned this lesson in a hallway near the copy room. One @MONTH1 be prompted to ask, what kind of lesson could you possibly learn in a hall? All I will tell you is this, it's not one I'll be forgetting any time soon. In order to completely understand what exactly I was doing roaming the halls and learning lessons, you're going to need a little bit of background. I was in my third period class; which was leadership at the time. Leadership isn't really your conventional class from the perspective of an outsider. Kids running about the school like loose mice @MONTH1 give off an appearance of impropriety, but an appearance is all it was. We weren't doing anything bad, it's just that most of the time you would have to leave the class room in order to do what needed to be done that day. Leadership directly preceded myleast favorite class of the day, @CAPS1 @CAPS2. I simply detested that class. I had been in @CAPS1 classes ever since I was in kindergarten at @ORGANIZATION1. I was a sophomore at the time and that language had been bugging me for the past ten years. It wasn't that I was bad at it or anything because really, I wasn't. I just had a strong contempt for @CAPS1 class. The teacher always gave me a hard time, probably because I had a big mouth and I tended to talk a lot. She was that type of person who had @CAPS10 posture and was a stickler for the rules. The the type of person you could see wielding a yard stick as a deadly weapon. In leadership that specific class period, the teacher was taking a particularly long time explaining what we were supposed to do that day. He sometimes did this, he was famous for being long winded. He could take the entire @NUM1 minute class period just talking about an assignment that would have taken ten minutes to do. That day however, we weren't doing an assignment. At least not what a normal person would consider to be your typical assignment. Another girl from the class, @CAPS5; and myself were working on a special project. We had to retrieve something very important from my car. We waited for the teacher to finish talking and asked if we could go, he said yes. We walked out the double doors of the classroom and into the main hallway, we then proceeded on down toward the parking lot. As we were walking we passed by the office doors, the @CAPS6 hall, and the library. Just as we were about to walk by the copy room door, I saw @PERSON2. @PERSON2 was in my @CAPS1 Two class the year before and I thought that I would say hi to him. I did, I then asked if he was taking @CAPS1 @CAPS2 that year. He replied with a no. I told him, ""@CAPS10 thing, because @CAPS1 @CAPS2 sucks!"" I didn't know it at the time, but I would be eating those words by the truck load in just a short while. Not five seconds after I had said that to @PERSON2, @CAPS5 was tugging on my shirt sleeve trying to get me out of the building. I told her to calm down and that it was rude to interrupt people when they are talking. After I had said bye to @PERSON2, @CAPS5 hurried me out the door and she burst into laughter. I was taken-aback by her sudden outburst of laughter and questioned her as to what she was laughing about. It was right then that @LOCATION1, my @CAPS1 teacher, poked her head out the door and said to me in her thick accent, ""@PERSON1, I hear you don't like my class!"" I must have been as red as a tomato. I just stood there with the dumbest look on my face. The kind of look that jumps on your face when you wish you had a rewind button for your mouth. I looked over my right shoulder just in time to see @CAPS5 gasping for air because she was laughing so hard. I redirected my attention to @LOCATION1, she was just standing there with an angry face covering up the laughter that was trying to break through. There I was, not ten steps away from my car and I, for once, had nothing to say. The lesson I learned that day was to never insult an alligator until you've crossed the river. Or at least make sure the alligator isn't in the next room. Especially if the alligator teaches your next class. " 23 26 49 5 5 5 5 5 4 6 5 6 5 5 5 +21290 8 " Laughter is a Element of @CAPS1 Laughter is a huge element of @CAPS1, without laughter @CAPS1 wouldn't be what it is today. Laughing is actually a element of why I am in my relationship with my boyfriend as of right now. I also believe ""Laughter is the shortest distance between two people"" Someone once said. Laughter also breaks the ice with people either when their mad, sad, or just meeting the person. Also laughter can bring two people very close together. Here is a true story about how laughter is a element of @CAPS1. One day while I was with my best friend @PERSON1, we met up with her cousin @CAPS2 friend's @PERSON2 and @PERSON3. @PERSON2 and I started talking and hanging out a lot that night. I'm a very shy person but he kept making me laugh. This is no love story but he making me laugh broke the wall I had put up because I was shy and very uncomfortable. The more we laughed together the more closer i felt to him and comfortable I was around him. Eventually we started dating. Too this day we are still together and we have a very strong relationship because of laughter, if it wasn't for the laughter @PERSON2 and I would not be as close as we are now. ""Laughter is the shortest distance between two people."" I believe that because laughter gives you that feeling of security, like the sense that it is okay to be your self around strangers. Laughing makes you feel warm and invited to have fun. Makes you feel like at this moment your bonding with this person. It doesn't make you feel uncomfortable when using laughter for the right reason, for example breaking the ice with someone or just meeting someone that can bring them closer. Breaking the ice with laughter. Meeting someone for the first time can be very uncomfortable for some people making conversation and laughing could do that trick to make them feel not so shy and set back to talking. When I first meet people I am very shy until someone makes me laugh then I am very comfortable. Sometimes making people laugh when they are sad or mad could also bring you very close with someone. But laughter could always push you away from someone. When I was upset about me and my ex fiance breaking up for the first time after year and a half no one for a day or two could make me happy. My best friend @PERSON1 brought me out to the state fair, being on the rides and laughing with her, brought her and I closer also I was not mad anymore. She broke that anger and hurt inside of me just by laughing. A huge element of @CAPS1 is laughter, there is no doubt about that. Depending on the persons perspective laughing @MONTH1 not be a element of @CAPS1 to them but to me it is. With out the feeling of security when laughing with @PERSON2 we wouldn't be as close as we are now. With out laughter @PERSON1 and I wouldn't feel as warm and comfortable as we are together. ""Laughter is the shortest distance between two people."" Someone once said. @CAPS1 would be a whole lot different without this element of laughter. " 17 20 37 4 4 4 4 3 3 4 4 4 4 4 4 +21291 8 " My friend @ORGANIZATION2 received a random phone call in the @TIME1. It was his friends from high school there were three of them. The weird thing about that is they haven't talked much since high school. Surprised @ORGANIZATION2 asked what was going on and how they were doing: assuming they were in jail or something in that matter. Instead the friends replied and told him how they was doing and then told @ORGANIZATION2 they wanted to go on a road trip. @ORGANIZATION2 thought to himself ""why the heck are you telling me about this"", and then said cool. what do you need from me? The friend replied saying he needed @ORGANIZATION2 to plan the trip because they did not have computers and they couldn't read maps. at the end of the phone call @ORGANIZATION2 finally said he would help and plan the trip out. Then asked the friend were he would want to go for this trip, The friend replied I don't know i wanna see a professional baseball game and were ever @ORGANIZATION1 land is i would love to go there. A week and a half went by later @ORGANIZATION2 called his friends back to tell them the plans. Proudly he said after his hard work of planning for them. its a ten day trip for you guys starting in @LOCATION1 then driving down to @LOCATION2's @ORGANIZATION1 and on the way down and back hit up (watch) a game from all five of the professional baseball teams down in @LOCATION2, then go to six flags another amusement park like @ORGANIZATION1. The friends replied what do you mean you guys? You are coming with us. @ORGANIZATION2 was super surprised and told them :you guys haven't talked to me in about five years and then you randomly want to go on a road trip with me he said sounding kind of confused. The friends replied well we need your car and we don't know how to drive and again we don't know how to read maps. Thinking hard about the situation @ORGANIZATION2 finally caved in and told them yes but then gave conditions. He split up tasks for his friends so he wouldn't be stuck with all of the work.For example he gave one of the guys the task of finding hotels and places to stay, another was finding gas stations, and the other friend had to find all the restaurants they were going to eat at. The trip had started and for @ORGANIZATION2 the vacation was much needed and unexpectedly fun and relaxing. At lest for now. Everything was going through and working according to plan they hit up and joyfully watched four of the five baseball games and had a great time, then @ORGANIZATION1 land went above and beyond expectation, and even six flags was exiting and brought @ORGANIZATION2 and his friends back to feeling like they were in the good old high school days.The only slight bit of worry for trouble was one of the friends became behind on his task of finding hotels and places to stay for everyone. the friend had the nights were they stayed at a relatives or friends lived mostly setup. but for the hotels they were kind of last minuet. Last few days before heading back plans were still going accordingly.They just had one more event. the giants baseball game, then stay with there old high school buddy who moved down to @LOCATION2. making sure they would have a place to stay for sure @ORGANIZATION2 asked the friend in charge of finding places to stay. The friend replayed with a""no i haven't talked to him yet. i will call him later.""this made @ORGANIZATION2 a little uneasy, so he told his friend no call him now.the friend did.There other friend picked up to bring bad news he was back in @LOCATION1. @ORGANIZATION2 thought to him self I knew this trip was to good to be true. On the @TIME1 of the baseball game things felt rushed. @ORGANIZATION2 and his friends had to leave really early because the traffic in @LOCATION2 is so random and bad. Mean while @ORGANIZATION2 for got to use the restroom and two hours into the trip to the giants game things started to take a bad turn. @ORGANIZATION2 had to go bad. But his friends kept him going saying the traffic is good we need to keep going. which @ORGANIZATION2 listened and kept going. Then traffic came to a stand still. @ORGANIZATION2 was going to go in his pants!so he pulled off and drove down the side of the high way surprised he didn't get pulled over he miraculously ended up at giants stadium then he saw a portable potty he pulled over and raced to it,it was locked. @ORGANIZATION2 looked around and saw another one. he takes off as fast as he could for it. And yes it was open finally @ORGANIZATION2 thought to him self ecstatically! he stepped inside but then looking at the urinal he realizes he didn't get there fast enough and embarrassingly he went in his pants." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21292 8 " Laughter can change any situation. It can be used to break the awkward silence after a bad joke is told, to reminisce about a fond memory, or to clear ones head and create the feeling of calmness. In @DATE1 opinion laughter is a form of communication. I discovered this through the coarse of the @DATE1 through many different situations. Many of the experiences were with people who spoke different languages or young children who I was able to connect with through laughter. One of @DATE1 experiences with laughter has been with the many different exchange students that @DATE1 family has hosted. We have gotten exchange students from @LOCATION1, @LOCATION3, and @LOCATION4. Most of them have rather good broken @CAPS1, but there were some words that proved difficult to describe and translate. @DATE1 favorite exchange students was @PERSON1, a student from @LOCATION3. She lives in the northern part of the @LOCATION3, in the @LOCATION2 country. In the @LOCATION2 country they speak @CAPS2 and @LOCATION2 and culture is slightly different form the rest of @LOCATION3. What made @PERSON1 so enjoyable was her cheerful personality, her empathy, and her ability to make anyone in the room genuinely burst in to fits of laughter. I believe that this incredible ability of her's was one of the reasons that the summers I spend with her are some of @DATE1 happiest memories. @PERSON1 could turn any activity into a lighthearted experience. I would do tasks with her like washing the dishes, a chore I didn't usually enjoy, and the entire time we would guffaw at the most outrageous things. Together we would laugh until tears were streaming from our eyes and we felt the need to go to the bathroom. Once @PERSON1, @DATE1 best friend @PERSON2, and I spent an entire day laying in the grass at a park putting on ridiculous skits for each other, and telling comical stories, laughing until our bellies hurt. Between out bursts of laughter @PERSON1 would exclaim ""@CAPS3 you have got to stop this or I will surely explode, I have to use the restroom every ten minutes!"" @CAPS4 she would say this we would look at each other and be back to rolling on the ground laughing. When I went to visit @PERSON1 in @LOCATION3 we had many similar situations of outrageous, uncontrollable laughter. One day we went to the @LOCATION2 parliament building with our families, @PERSON1, her sister @CAPS5, @DATE1 sister @PERSON3, and I couldn't stop acting goofy and cracking up. We toured through the serious quiet building unable to be silent or stoic, laughing at each other uncontrollably, making funny faces and dancing around, unable to contain our joy. I don't know @PERSON1 @CAPS4 well @CAPS4 @DATE1 friends back home, but I think I will always feel a deeper connection to her then most people because with her I feel the free ability to laugh at every and anything. I have heard many different facts about laughter; if you laugh before an exam you will do better on it, moments of laughter are more prominent in your memories, and a person that laughs daily is more likely to feel less stressed and have a happier @DATE1, but the reason that I love to laugh is that it makes me feel really fantastic." 25 25 50 5 5 5 5 5 5 5 5 5 5 5 5 +21293 8 "What's a @CAPS1 @CAPS2 Laughter? Would me and @PERSON1 be best friends @CAPS2 ever laughing? That would be a negative. I honestly think laughter is the biggest part of @CAPS1. What kind of @CAPS1 is two friends who never laugh? If there are any people in the world that don't laugh, I bet they don't have any friends, well at least true friends. I feel sorry for these people. I can't even imagine life @CAPS2 laughter. All of my friends and I laugh all the time. Especially with me and @PERSON1. When @PERSON1 and I are around each other, @CAPS5's usually non stop laughter. @PERSON1 and I laugh about almost everything. We have so many inside jokes its not even funny (well to me and her @CAPS5 is), such as ""an upstairs @CAPS3 @CAPS4!"" or ""john, john, john, john"". See there things people wouldn't think where funny, but whenever one of us blurts one of our stupid inside jokes out, we start laughing until we ball our eyes out. If I imagine me and @PERSON1 never laughing, then that would be the worst @CAPS1. I hate to even think about us never laughing. @CAPS5 sounds horrible. If me and @PERSON1 never laughed, then we most likely would not be friends. I'm so glad I have so much laughter in my life. I don't know what I would do @CAPS2 @CAPS5." 18 15 33 3 3 4 4 4 4 3 3 3 3 3 3 +21294 8 "@ORGANIZATION1 you think of a relationship, what do you think of? Do you think laughter is a big element in a relationship? Laughter meaning laughing sounds indicating merriment or derision. Many people have been in a relationship before from excellent to bad they knew @ORGANIZATION1 laughing with each other they enjoyed the enjoyment from one another. First of all @ORGANIZATION1 a couple is laughing they enjoy being together therefore it makes them want to spend more time with one another. Laughing by it's self let's the couple have a better beyond with each other. The couple would obtained a better connection to. Thus they would be able to understand each other. for example @ORGANIZATION1 a couple is just out having a excellent time they would want to keep sharing the wonderful beyond with each other. Another reason laughter is a element of a relationship it will end up letting the couple have a stronger relationship because thy would have a marvelous connection with each other therefore they would be able to understand each other. Therefore things between them would succeed in a stronger and better relationship. Next time you are in a relationship think about how laughter,is a element and how enjoyment, connection, more time with each other and stronger relationship all some how benefits just from laughter. So the next time you are laughing with your boyfriend or girlfriend think about what you guys are benefiting from just laughing with one another." 17 13 34 34 4 4 4 4 3 3 3 3 3 2 3 2 4 4 4 4 3 3 +21295 8 " It has been said that ""Laughter is the spark of the soul."" I agree with this statement wholeheartedly. Laughter can do wonders for the soul; it truly does ignite a spark. And once that spark has been ignited watch out, it will burn like a wild fire. As the fire burns it will go on a rampage throughout the the body. First its that uncontrollably smile that brings an ache to your cheeks, then the butterflies that marvelously flutters through your stomach, next comes the tingling sensation deep within your toes, and last but not least the tears of joy come streaming from your eyes. Had these feelings before? That'@CAPS5 the rampage I'm talking about; let the fire burn. Laughter is an extraordinary thing--it can turn an awkward or embarrassing situation into a much more relaxed one. Unfortunately, in my story about laughter I wasn't the one laughing...About three weeks ago while my sister was at gymnastics, my mom, my best friend @CAPS1, and I went to visit my grandparents and to see how the work on our new barn was progressing. After spending sometime at their house it was time to pick up my sister, @CAPS2. My grandpa ever so kindly offered to go pick her up but then I mentioned that @CAPS1 and I could go do it. As we were driving to town in my grandpas @LOCATION1, everything seemed fine; just another ordinary day. After we had arrived at the gymnastics center we headed inside and waited for @PERSON1 to finish. However, as we were walking out my sister said she was hungry and asked me to stop at @ORGANIZATION1. I pulled up to the order board and ordered her food. The lady then asked me to drive around to the first window to pay. After doing as she asked, I received my change, put the truck in drive, and began pulling forward--when all of the sudden I heard a loud crunch! My heart dropped as I looked in my side mirror. I hadn't pulled out far enough and had hit the side of the building. Now before I go on I just want you to know that I have been driving since I was about seven and am usually a very good driver. But hey, that first crash happens to all of us, right? Well back to my story, as I was driving back to my grandparents house it took everything I had not to cry. After we arrived back at their house @CAPS1 and I ran into the house and got a cup of hot water, soap, toothbrushes, and a @CAPS5.O.@CAPS5. pad. We scrubbed and scrubbed until all the red paint from the side of the the building was gone. The dent didn't look so bad once the paint was gone and the truck was back to white. I was absolutely terrified to tell my grandparents about the truck! After waiting about an hour I finally got up the courage to tell them what had happened. My grandpa put on his shoes and we went out to look at the damage. As I started crying because I felt so bad, my grandpa just started laughing and reminding me that it was just a truck and it can be fixed.The fact that he just laughed really made the situation a lot less stressful. Laughter brings people together and creates bonds that will last a lifetime. So no matter if you're laughing about something that makes you happy or a situation that maybe isn't so good, let the fire burn." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21296 8 " School had just gotten out. It was the @DATE2 before my senior year. We had been planning this camping trip for the @DATE1 few weeks. We were so excited about it that that's all we could talk about. This would be the first camping trip we had been on without our parents. It would be the best four days of our lives. Sand, the beach, friends, quads, no parents; how could it possibly get any better than that? We invited as many people as we could think of. The more people that were there, the more fun it would be. @ORGANIZATION1 and I did all the shopping the day before. We got lots of yummy stuff to make. After we got home from shopping we had to load all the bikes in the toy hauler. We each took two bikes, and we took @ORGANIZATION1's boyfriends bikes over so he could just drive over after work. We were up almost all night packing, trying to figure out the perfect outfits to wear each day. It was going to be a nice weekend at the coast, we could already tell. It was the middle of @DATE3, the sun was shining and it was beautiful outside. The next morning we got up and double checked everything to make sure we had the most important things like flags, helmets, clothes, and those sorts of things. Then it was off to get gas and finally head to the coast! Once we got on the road the music was blaring and the windows were down, just like always. The trip there seemed to take forever because we were so excited to get there. When we finally did get there, there was a really cute guy setting up his tent in one of our camp sights. I asked @ORGANIZATION1 who he was and @CAPS2 told me it was @CAPS1 (her boyfriend) best friend, @PERSON1. We parked the toy hauler and got out to unload and he came over to help. The second I layed my eyes on him, I knew he had to be mine. In the next hour or so we got all unloaded and set up. By then many more people had shown up.We helped everyone else get all their things unpacked and set up so we could go on a ride. Our first trip out on the sand was absolutely perfect. It was warm enough to ride in t-shirts. We didn't stay out for long though. People started to get hungry so we went back to camp, made dinner and sat around the fire. There was probably twenty or so of us sitting around the fire, talking about everything from the stars in the sky, to the sand on the ground. Every time I would look up I noticed that @PERSON1 was looking at me. He would just smile, and look away like it was nothing at all. As usual, @ORGANIZATION1 started telling us about a funny incident that had happened to her in the @DATE1 ( @CAPS2 was such a klutz.)We all started laughing as @CAPS2 was showing us her bruises from falling down the stairs. @PERSON1 and i locked eyes. Later that night @PERSON1 asked me if I wanted to go on a walk. We walked all the way on the sand trail out to the dunes, and all the way to the top of a giant dune called @CAPS3 @CAPS4. When we got to the top we sat there, staring at the stars, talking. We realized we had lots of things in common. We liked to do all the same things, and we had the ability to make each other laugh. Laughter really is the shortest distance between two people. If you can make someone laugh, it means a lot. No one has ever been able to make me laugh the way that he does. I never knew that laughing could bring two people together the way that it did that one night at the dunes.." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21297 8 " It all started at the play ground @CAPS9 me my friend @PERSON3 and @PERSON2 were just sitting around and we saw these two girls walk up and it was these girls from school @PERSON1 and @CAPS1. We didn't know who it was at first so we sat back all cool like tell i noticed it was them @CAPS9 they got closer. They ran up and said ""hey guys want to go on a adventure to the woods"" ""sure why not"" we all said ""we ain't got nothing better to do so we walked which seemed like @NUM1 miles @CAPS9 it was only @NUM2 feet from the play ground it felt like a long way either way i was lazy at the time. @CAPS9 we got into the @CAPS2 it had a lot of bushes and trees that we thought we could make a fort out of bushes and chill and eat donuts from @ORGANIZATION1 there but what we didn't know was there was something living in that @CAPS2 that we were not aware of. Turns out we went into the wrong @CAPS2 and there was a lot of animals in the place we went into. So as i was sitting on the long by the creek i saw a brownish figure walk by deep into to the woods them closet person to me was @PERSON1 and i jumped up and grabbed her and from there i knew were going on adventure to go find whatever was living out there. @CAPS9 we started walking all i could see was trees and bushes tell i heard @PERSON1 say ""there is something over there by the big tree with vines so we approached the tree with caution not knowing what was going to happen. We stood behind a little fallen over log that was there for awhile.As we watched the big tree and the huge hollow hole that was in the side of it we heard a loud growling nose from inside the tree i got up from behind the tree and went over to check it out but before i could take a step @PERSON1 grabbed my jacket and told it look to dangerous ""alright"" i said with disappointment cause i really want to go see what was in that tree. We started walking back to get the others turns out they have been looking for us for over @NUM3 minutes ""sorry"" we both said"" but you guys have to check this out @CAPS7 so narly"" i said with animosity. ""@CAPS5 what is it"" @PERSON3 said ""don't know but it sounds big and scary and mean"" said @PERSON1 "" ""oh daaanngg"" @PERSON2 said ""i think were gonna die if we got back over there"" @CAPS1 complained. ""@CAPS7 gonna be just fine"" i said so we all looked at each other alright everyone said in a scared voice. ""@CAPS8 is gonna be alright trust me i know a spot were we can watch the tree without getting close to the animal or whatever is in there""I said @CAPS9 we were walking down there to go see the animal @CAPS1 didn't want to go see the animal anymore so we argued for a little bit then we all came to a agreement that @PERSON2 and @CAPS1 stay up the hill a little ways and we will run back if anything is wrong. We got behind the tree and watched the tree me @PERSON3 and @PERSON1 didnt know what to see or wait for @CAPS9 something would come out of that tree. I could not wait any longer it was begining to take forever then i got up and said ""lets go see what is in that tree"" ""im with you so lets @NUM4 said. We walking around the tree keeping our distance @CAPS9 we heard that growling noise again we backed off a little bit but kept going we got a little bit closer @CAPS9 i saw something some out of the tree. It was a huge mountain loin we ran as fast as we could up the hill. I was looking back trying to follow the sound of screaming from @LOCATION1 but @CAPS9 i looked up it was really @PERSON3 i could not help laughing @CAPS9 we got @PERSON2 and @CAPS1 i kept laughing all the way to @ORGANIZATION1. As soon as we got into @ORGANIZATION1 we were all out of breath especially me cause i could not stop laughing about @PERSON3 and how i thought he was @PERSON1 cause he was screaming like a girl. ""@CAPS13 up"" he said ""that wasn't me it was @PERSON1"" even though @PERSON1 was running beside me the hole time. We walked into a little more into @ORGANIZATION1 and there was a big box of donuts sitting right by the deli and we ran over there and got two box's which had a total of @NUM5 donuts in them then we got a big gallon of soda and chilled in @ORGANIZATION1 and ate the hole thing in @NUM6 minutes. I will always remember that day as one of the craziest days of my life. " 15 17 32 3 3 3 3 3 3 4 4 4 4 3 3 +21298 8 " One stormy winter night my girlfriend and I wanted to go to dinner, so we did. When we got there the restaurant was almost full so we got a table fast. While waiting for food we started talking about our friends and having a good time. I then said something really mean about someone she knew and did not know it. She got really upset and stormed out of the place leaving me alone. I finally got up and went home after paying to bill for the food I did not eat. The next mourning I got up and started cleaning up the house, mowing the yard and doing all my chores. She came over to my house and apologized for what she did, so I apologized for saying something mean about one of her friends. I told her that I will call her after my chores where done and go out for lunch. Finally I finished the chores, took a shower, and got dressed. I then called her and told her to meet me at the restaurant of her choice. About an hour later she shows up finds me waiting for at the table farthest from the door. She then sat down and asked if I was going to be mean again. I said that I will be nice and considerate today and not be mean. I then proceeded to tell her about a funny memory. She laughed and tell told me one. This went on until we left. Up until she broke up with me for my friend, laughter was to one thing that held us together." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21299 8 " Laughter is said that it is the medicine for happiness. Those who laugh frequently end up having an overall better life. They are in better moods throughout the @DATE1 and affect people around them with their upbeat mood. Many solid friendships involve laughing frequently. I am lucky to have friends that never cease to make me or each other laugh. Their was one time when we all laughed intently at my house late at @TIME1. My freshmen in high school was my second year total in public school because I was previously home schooled by my parents. I just established friendships with four other people earlier that year. They were my friends @PERSON4, @PERSON1, @PERSON2, and @PERSON3. None of us ever been to eachother's houses yet, so I suggested to be the first one to all have them over on a @DATE1. We did not know yet exactly what we wanted to do at my house, but we knew with our creativity we could find anything to entertain us. As they came over one by one we watched football on the @CAPS1 until the entire gang was at the house. Once the last person, @PERSON2, came to my house we all went outside to find something to do. All of us are football players so we decided to play some backyard football. Unfortunately all of us were linemen except for @PERSON4. The problem was that we had what is called ""linemen hands"" which means that we could not catch a football due to having hard hands. This created quite a spectacle of a bunch of linemen trying to be wide receivers. We ended up not finishing the game because it was way to funny. Later that @TIME1 we all decide to grab the immense amount of junk around my property ,and like most boys our age, started to fight with them. This battle continued for most the @TIME1 and people got hit in the funniest of ways. After we were all tired from the running around we decided to make scary movie with my mom's video camera. This is when the most laughter of the whole @TIME1 came. We all sat down to make out a plot for our movie and kept distorting it in different ways to come to some agreement on what to base it off of. We decided to make the movie seem like it was off of ""@CAPS2-field"", a movie about aliens invading earth, but we replaced the aliens with a psychopath chasing us. As we began the movie all seemed like it was following the script perfectly. Unfortunately we found out that we could not act at all when the first serious scene came up. @PERSON4 was supposed to be on the ground with a gash down his side when we found him, but when we filmed that scene @PERSON4, who was supposed to be unconscious, could not keep a straight face when we found him. Since he had a goofy smile when we picked him up and with the awkwardly said line from @PERSON3 ""The window is open, @PERSON2 is gone"" we all started to burst out laughing. After we calmed down we went to film the next scene where we wake @PERSON4 up and try to find out what happened. @PERSON4 said ""I'm hurt really bad! I think I need an ambulance"" and then @PERSON1 responded ""@CAPS3 that's not gonna happen!"". That line that @PERSON1 said was not in the script and was just way to funny to keep it in and in a result we all started bursting out laughing once again. We tried to redo the scene, but when I said ""@CAPS4 are you laughing"" we all burst right back into uncontrollable laughing. Later in the movie the last guys alive were @PERSON1, @PERSON3, and me. We were casing the psychopath outside in the pitch-black dark. Randomly @PERSON4 and @PERSON2 run in front of the camera when they were not supposed to. This caused us to laugh yet again because of the way the short fat one ran. After all the scenes were done and we finished the movie, we all went back into my living room, spooked from being outside in the dark for so long making a scary movie. My sister randomly comes home without us noticing. She stares through the locked front door with out making a sound in a very creepy way until we all notice her. We all jumped about ten feet in the air due to being extremely scared. After we settled down we all joined in the laughing once again as we looked back and saw how stupid we were. In conclusion, the laughing that went on throughout @TIME1 made us closer as friends. Every time we get together at my house we look at that tape and remember the good times and laugh until we cry. The benefit of laughter in my life was being able to create a strong bond with now my best friends. My life is truly blessed that way. END " 20 21 41 4 4 4 4 4 4 5 4 5 4 4 4 +21300 8 " Bright blue waves of morning light streamed over the hill tops as the waking sun began to rise to its daily position. The crisp, chill air arose the slumbering birds. Soon, the dusk setting transformed into a vibrant morning where the birds chattered with their mellifluous tone of song. Gentle breezes swept through the trees causing the leaves to dance. The green grass appeared to flow like an ocean while the cracked gravestones remained stationary; just as anchored ships at sea. Any spectator @MONTH1 agree that this particular graveyard scene presents a prodigious feeling; however, when one is to catch a glimpse of the stoical man who stands before the silent tombstone, the spectator's heart fills with empathy and despair. Motionless, young @PERSON1 stood before the tombstone. The gentle, but quick breeze began to accelerate into a harsh wind. @PERSON1's teary eyes and wet face began to dry. Although the windy weather was not uncommon for @PERSON2, @LOCATION1, a long lost memory interrupted @PERSON1's thought for an unknown reason. For a split moment, his mind drifted back to sixteen years ago when @CAPS5 was still alive. His eyes closed as the wind began to calm. He could nearly hear her voice. ""@CAPS1, I would like you to meet someone,"" @CAPS5 yelled from upstairs. It was @DATE1, and six-year-old @PERSON1 came zealously running up the stairs. Breathing rapidly, he arrived at the top of the creaky stair case and skipped to his parent's room. ""@CAPS2 @CAPS3?"" he asked as he began to turn the cold, brass door knob. He opened the door just a crack and peered into the room. His blue eyes sparkled with curiosity. He observed how the mid-wife gracefully glided to his mother's bedside to prop her head up with another pillow. His attention then altered to his father who was sitting on the edge of the bed cradling a small bundle of pink blankets. ""@CAPS4 hello to your new baby sister,""said @PERSON1's mother. Still clutching the brass knob, @PERSON1 pushed open the door with the palm of his left hand. The door moaned as @PERSON1 began to place the tip of his @CAPS7 light-up sneaker onto the roan colored carpet in his parent's bedroom. Carefully and cautiously, he advanced to the foot of his parent's bed where his father sat. He stood in front of his father with wide eyes. ""@CAPS5 was born less that an hour ago,"" said his father. @PERSON1 then looked to the heap of pink blankets. He nervously reached out his clammy hand and gently pinched the top layer of blankets to uncover the face of his little sister. All was silent except for the wind outside. Inch-by-inch, he slowly began to peal back the top blanket; but, before @PERSON1 could even finish this task, the new-born baby let out a startling exhale. @PERSON1 lurched back and slammed against the bedroom door. His father jumped because of @PERSON1's reaction, but was careful no to wake the baby. @PERSON1 felt as if his heart was about to jump out of his chest. Wide-eyed and out of breath, he looked to his mother. To @PERSON1's surprise, he found his mother quite amused. The corners of her moth began to curl up and a slight giggle leaked out. Soon enough, both his parents were immersed in a hypnotic laughter; their bodies shaking rhythmically. @PERSON1 began to relax and smiled at this mother. ""@CAPS6 @CAPS5 scare you a little?"" @CAPS5 asked. His father chimed in, I would think so!"" The three of them laughed for the next five minutes while the mid-wife simply smiled and the baby lay sound asleep in the strong arms of her father. @PERSON1 could feel the overwhelming essence of reality rushing back to him; just as the wind flowed through his brown hair. He missed her. He cried for her. He wished @CAPS5 could of won the ferocious battle fought between the human body and cancer; but, @CAPS5 didn't. Now @CAPS5 was gone. He would never see his mother on @LOCATION2 again. Although this memory succeeded in bringing him sadness, it failed to push @PERSON1 into depression. Instead, he suddenly recalled an ancient saying: ""Laughter is the shortest distance between two people."" @CAPS7 then, @PERSON1 suddenly realized how unbelievably close he was to his precious mother. He possessed eight years of memories made with his mother and many of these memories involved laughter. @PERSON1 tilted his head to the sun as tears of joy rushed down his face. Now he understood the fact that love is never dependent on time. Granted, he only knew his mother for a small chapter of his life; however, the memories made and laughter shared still continues to engulf @PERSON1 with his mother's love. In my mind, @PERSON1 is classified as a superior individual. As I am his only full sister, he never fails to educate me of his past memories with our mother. I love her and miss her, but know I will see her again someday; and when I do, we will be bound together with joy and laughter. " 23 21 44 5 5 5 5 5 4 4 4 5 5 5 4 +21301 8 "I was selling some cookie dough for school and i waent to this olderly guys house. I went through the hole deal of raising money for my school and he said he was not interested. After that we got to talking i started making him laugh and eventaully he said ""you make me laugh i like that i will buy some"". I think that the laughter pklayed a key roll in him buying the cookie dough." 10 11 21 2 2 2 2 2 2 2 2 2 3 3 2 +21302 8 " We all understand the benefits of laughter. I believe that laughter is an important part of life that everybody should experience. The time that I remember most where I have laughed and enjoyed myself was when my family and I went to @ORGANIZATION1 in @LOCATION3.It all started with @DATE1. We were opening our presents when my @CAPS1 and @CAPS2 told me and my siblings that they had one last present for us but it was a surprise; in order to know what it was we had to find it. So they told us as a hint, that it was someplace that we sleep. As soon as they told us that I knew exactly where to look, our bedrooms. So we raced up the stairs to our bedrooms and looked around. To our delight, sitting on our nightstands where four packets full of info about @ORGANIZATION1. We were so excited and happy. My little sister said that it was the best @DATE1 present ever. We ran down the stairs, hugged @CAPS1 and @CAPS2, and told them that they are the best @CAPS1 and @CAPS2 ever. What made it even better was that we would miss school. Then we found out that the trip was scheduled for the month of @DATE2. So we had to wait for four months. Those four months were the longest of my life. Four months later it was finally time to go. We had to wake up around @NUM1 a.m because our plane was scheduled to depart at @TIME1. Before we left our house I asked my @CAPS1 if I could bring my @CAPS3 @CAPS4 @CAPS5 @CAPS6 with me so that I was not bored on the plane. She told me that I could, only if I share it with my little brother. Once we had finally left home I started feeling like I had butterflies in my stomach. I guess it was because something fun and exciting was about to happen to me. When we got to the airport it was @NUM2 so we had about an hour and fifty-five minutes till the plane left. Luckily I had my @CAPS3 @CAPS4. Since my brother was only six years old he easily gets bored, I let him play my @CAPS3 @CAPS4 @CAPS5 @CAPS6 till we had to board. When it was finally time to board one of my sisters had to use the restroom. My @CAPS1 ended up taking her while my @CAPS2 stayed with us and boarded the plane .My other sister did not like that my @CAPS1 was not on the plane with us yet. So my @CAPS2 told me to keep my brother and sister in their seats while he went o find my @CAPS1 and sister. Five minutes later they all came back, and just in time too. The plane had just finished refueling and we were on the way to the runway. One of my favorite parts of being on a plane is when it's speeding down the runway at amazing speed. And when we finally reached the speed we needed to be at, we launched in to the air and my stomach felt like it was in the open air. My little brother is holding on to my hand so tight that his little knuckles turn white. It gave me the impression that he was scared so I told him to just think about it as a really fast car that goes over a bump. That seemed to help a lot because he started laughing when the plane left the ground. He said that it was fun and wanted to do it again. I reminded him that once we got to @ORGANIZATION1 we would go on all the rides that we want. Three hours later we arrived in @LOCATION2, @LOCATION3. Once we got off the plane we went to pick up our bags from the baggage claim. My @CAPS2 went to see when the next @CAPS11 @CAPS12 was scheduled to arrive. As he came back the @CAPS12 was just coming down the road. The @CAPS12 was blue with @CAPS11 characters. The driver showed us a lot of cool things and places. The @CAPS15 that we were staying in was called The @CAPS14 @CAPS15. It had a huge pool shaped like a guitar. Once we were settled in we went in to @LOCATION1. It was really fun because my sisters and I got all the @CAPS11 characters autographs and pictures. My favorite one was @CAPS17 because he reminds me of myself. We got to stay in the park for about three hours when we started getting hungry so we left and went back to the @CAPS15. After dinner we went down to the pool to go swimming. It seemed to be funner than @ORGANIZATION1 because in the week we were there we spent more time laughing and swimming down by the pool than actually in @LOCATION1. That is the best time that I had ever had in my life and I owe it all to my parents. I love them very much. Thank you." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21304 8 " My best friend and I have been friends since third grade. We've shared many laughs, memories, and tears, yet to this day we're still closer than ever. One of the key reasons we've been able to stay friends for so long is because we make each other laugh. We joke around and we make any boring time into a good one. This is the story of how our relationship came to be and some of the reasons why we are still best friends. It started in third grade. I was walking alone on the playground when she asked me to play with her, having nothing else to do, I agreed. We played for the whole recess, and it eventually became a regular thing for us to spend recess together. The first time she invited me to her house, I was kind of nervous. I was afraid it was going to be awkward, or that we wouldn't have a good time. When we got to her house after school, we went to her room, played video games for a little bit, and then we had a snack. We brought our crackers to her room, sat on the ground, and started to eat. Out of no where we just looked at each other, and we started laughing like crazy. They weren't little giggles either, we laughed so hard it brought tears to our eyes. From that day forward we hung out as often as we could. A couple of years went by, we hung out more often, and declared ourselves best friends. When fifth grade came around, we were glued to the hip. Her dad was our teacher, so he already knew how close we both were. We never really got to sit next to each other, but we still managed to talk a lot. One day at recess we were joking around and she said your butt is so big, you're going to break a chair. These days it doesn't seem that funny, but in fifth grade it was hilarious. When we got inside we played this math game, I got the question wrong so I plopped down in my chair, sure enough, it broke. Other kids that heard what she said laughed, but no one really quite laughed as much as we both did. Fifth grade was also when boys started coming into the picture. During @DATE1 break she really liked this one guy, and when he said he didn't like her, she was completely broken. That night she came over to talk with me about it, but we never ended up talking about it at all. Instead, we watched funny movies and I would do things on purpose to make her laugh. Even though we were already really close, that night made us grow even closer. At the end of fifth grade we had a little graduation ceremony. Towards the end they put on a slide show of everyone in the fifth grade class. One of the pictures was of @PERSON1 and I with mud masks on, we were both embarrassed, but we also laughed because we had a lot of fun that night, and we wondered how the picture got on the slide show. After the ceremony @PERSON1 and I threw a party. We shared many laughs and still that made us grow even closer, even though we had made new friends that night, our bond was unbreakable. Middle school was a whole new experience. New friends, different classes, and more drama. I hate to say it, but we grew apart those three years. We had none of the same classes and we both met new people, but every time I went over to her house, or every time we hung out, we laughed till we were crying, and gasping for air. A lot of things happened, our different friends fought, some of them moved, but our ability to make each other laugh kept us together through thick and thin. Towards the end of our middle school lives, we grew closer again, and things were pretty much back to normal. Today @PERSON1 and I are as close as we were in fifth grade if not closer. When we are together not only do we make ourselves laugh, but we make other people laugh as well. We are together almost every weekend, and we @MONTH1 not do much, but we always end up laughing like crazy. Doing cheer, we also spend even more time together. Other things in our relationship are important too, like trust, loyalty, and kindness, but laughter is what has kept us together through everything we have been through. Laughter is also the reason we have become friends in the first place and I am happy to call her my best friend. Without her, my life would be very boring, and I hope we stay friends for the rest of our lives. Laughing keeps people together and makes relationships grow stronger. This was an example of how it helped me and my best friend become friends and stay friends through everything life has thrown at us." 17 20 37 3 4 4 4 4 3 4 4 4 4 4 4 +21306 8 "Don't speak, laugh. I love @CAPS11 little brother. We're @NUM1 years apart in age @CAPS7 from the way we act, @CAPS3'd think we were twins. @CAPS7 @CAPS5 matter how close we are, we still are siblings, and we still fight. Usually they're just petty little fights that we get over in a matter of seconds, @CAPS7 this one was one @CAPS4 could not back down from. I beat him at @CAPS1 tennis. @CAPS14 was a warm afternoon, and me and @CAPS11 brother had just gotten back from school. We usually relax for a little before we do our homework by challenging each other at playing @CAPS1. ""@CAPS3 cheated."" @CAPS4 said firmly. ""@CAPS5 I didn't!"" I snapped back. I could tell that @CAPS4 was getting really upset about this, @CAPS7 I didn't care. I wasn't going to let him win this one. ""@CAPS6 yes @CAPS3 did. @CAPS3 always do! @CAPS14's not fair."" ""@CAPS7 I didn't this time."" @CAPS4 was telling the truth. There are times when I cheat by distracting him during a game, @CAPS7 I won fair and square. ""@CAPS3're just mad because @CAPS3 lost. Get over yourself and take @CAPS14 like a man."" That's all I had to say to make him throw down his controller and make him run upstairs crying. ""@CAPS6! What did @CAPS3 do to your brother?"" @CAPS11 mom yelled. ""@CAPS4 beat him at a game and now @CAPS4's mad."" I knew @CAPS4 would do that. @CAPS17 and report me to @CAPS11 mom hoping that she would save him and get me in trouble. ""@CAPS13 @CAPS14's just a game. @CAPS3 can't win every time."" ""@CAPS14's just not fair!"" @CAPS4 said before slamming the door of his room. Sweet, sweet victory. I love when I win. @CAPS14 makes me feel superior. @CAPS7 of course that little feeling of guilt of making your little brother cry came over me, so I went to @CAPS17 and apologize. ""@CAPS13?"" I knocked on his door. ""I'm sorry for making @CAPS3 cry. @CAPS14's just a game though. @CAPS3 win some and @CAPS3 lose some. Don't be mad."" I gave the most heart-felt apology I could think of at the moment. ""@CAPS17 away. I don't want to talk to @CAPS3."" @CAPS17 away?! I walked all the way upstairs to tell him I was sorry for something that I didn't even need to say sorry for, and @CAPS4 tells me to @CAPS17 away? Oh @CAPS5. @CAPS5. @CAPS5. @CAPS5. After processing what had just happened all that could come out of @CAPS11 mouth was, ""@CAPS19."". And I walked off. The rest of the day went on. We passed each other many times without even acknowledging one another. I couldn't believe that @CAPS4 was this upset about @CAPS14. @CAPS14 was probably one of the longest periods of times @CAPS4 didn't talk to me by choice. I started feeling really bad, even sad that @CAPS4 wasn't talking to me. I decided to try talking to him again. Only problem was, @CAPS4 was downstairs playing the @CAPS1 again and I was upstairs this time. I came out of @CAPS11 room and started to walking down the stairs. @CAPS4 could hear me coming, so @CAPS4 turned down the volume of the @CAPS21. ""@CAPS13 listen. Are @CAPS3 really not going to talk to me over a game I-"" @CAPS23! All of a sudden, I was sliding down the stairs. ""@CAPS24!"" @CAPS4 was laughing at me! I landed at the bottom of the staircase and started to laugh too. We were both laughing! That's all we needed to start up conversation again. Just a little laugh." 20 26 46 46 4 4 4 4 4 4 6 5 6 5 5 5 4 4 5 4 5 5 +21307 8 " laughter why do people have so much trouble trying to laugh?Is laughter a healthy thing you should have in your health chart?This are some questions you might ask yourself.But when you do have you thought of yourself, and maby have you thought of how much you and your family laugh all together at the dinner table or maby the family room anywere as long as you hear laughter coming out of your mouth.It doesn't matter an what you laugh about, it can be one of your family members telling a joke or even a funny show or a funny commercial. it doesnt matter as long as you laugh.in my opinion laughter is an important part in your life.if you dont laugh then you must be a very seriouse person or you might even think that the world is a very boring place to be in.some how i cant really imagine a person never laughing in their life. Some examples of people that dont really laugh anymore is probably a person that lost someone close to them or that just doesnt have anybody to tell jokes with in my opinion you have to have someone to share stuff with or that will tell you jokes when your in a really bad mood.I always used to remember my mom telling my little brother an i to quiet sown whaen we would talk in the family table during dinner one day. One day i went to school and i went into health class it was weird because the teacher was talking about how we should share stuff in the dinner table and have some laughing moments. So when i got home a told my mother all about what the teacher had taught us during health class. She said ok and we tried it .It really was a good experience we were all laughing telling jokes all the time and since then we tell jokes in the family table. It really does give you some energy sometimes but at the same time if you laugh way too much your stomach will eventually start hurting.Like i told you in the first paragraph theres many different ways you can laugh for example if you watch a comody show i very good idea would be @PERSON1 that show always mekes me crack up sometimes my mom thinks im crazy. Or ever family @CAPS1 thats such a great show to watch wene your really in a bad mood. Another way to make someone laugh is telling jokes theres the knock knock shows and then theres the guess what i am jokes . but one way your really going to make somebody really laugh is tikling that always works theres no way you cant ever make someone laugh. Eather have someone always do it for you because i know that you cant do it to yourself that would be really weird or have a @CAPS2 see who laughs first contest.It wont always help you with your problems all the way but it will make you feel good for a little bit it will really make you forget about the bad things for a while. I heard tha t if you laugh alot suposlly you live longer so i think it does help you with your problems." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21308 8 "During the @DATE1 I decided to join @ORGANIZATION2, I raised a market pig and was determined to sell it at the @LOCATION1. Raising a pig was time consuming and hard work. Without patience, great teachers, and having fun I wouldn't have been able to do it. That @DATE1 I had some great experiences and some of them, not so great. This was my first time being involved with @ORGANIZATION2, also my first time raising a pig. I never thought that I would have so many awkward moments. One of my awkward, yet funny moments happened when I was shoveling pig poop with my friend @ORGANIZATION1. This was also @ORGANIZATION1's first time being involved with @ORGANIZATION2 and raising a pig. @ORGANIZATION1 and I were just trying to hurry and get our work finished so that we could go back to our homes and shower. Turns out I was in to much of a hurry. My boots sank into the mud and poop which made me lose my balance, I tried using the shovel to catch my self but it was too late. I was covered in pig poop and mud from head to toe, I had fallen in it. @ORGANIZATION1 and I looked at each other for what seemed to be two minutes, but was only about six seconds, then we busted out in laughter. After our laughing was under control she helped me get up and we went to go find our agriculture teacher @PERSON1. When @PERSON1 saw my once blue pants now brown, he couldn't help but laugh at me. He got his camera out and took some picture of me that are very embarrassing but make myself and others smile. After all the joking, laughing, and pictures were finished @PERSON1 gave some old clothes to wear for my ride home. I had to roll the window down because the car got pretty smelly. When I arrived home, I headed straight for the shower. This is an experience I will never forget. If I didn't have friends around me I don't think I would have thought of the experience as something positive and funny. Because @PERSON1 and @ORGANIZATION1 were there to help me and laugh with me, I got some pretty fun memories out of that @DATE1 raising a pig. Without the laughter it might of been a little negative, I might have been mad, or embarrassed, or sad. Laughter is an important element to have in a positive healthy lifestyle." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21309 8 " Some people say that laughter is the best medicine. I strongly agree with these people, because I believe that any funny situation in which there is laughter can put anyone into a better mood. Just taking the time to laugh at something or yourself is something that every person should do. Having agood time with friends and family and laughing with them is truly something to be greatful for. I have had several situations filled with laughter. @CAPS2 I am greatful for. My two best friends, @PERSON2@NUM1, and I, well lets just say there is hardly a time when we are together that there is not laughter involved. So many times we've laughed at ourselves and each other I've lost count. It's so amazing to have these two great friends to laugh along with. There are so many times that we have laughed at eachother I don't even know where to begin. One time we were all at @ORGANIZATION1's house and we were playing hide and seek in her back yard. It was my turn to be the seeker. I came out of the house after counting to @NUM2. As I searched the yard I found everyoneeventually, except @PERSON2. As I wondered the yard looking for her the others started helping me look for her.We could hear her laughter coming from somewhere, but we couldn't tell where. She started talking to us saying things like ""@CAPS1 here!"" or ""@CAPS2 way!"". After getting frustrated and giving up, she finally revealed herself...on the roof of her house! We all laughed so hard, not even knowing how she got up there in the firstplace. Another time we had gone to pizza for my @NUM3 birthday party. We went into the arcade room with the moneywe had ready to play some games. We told ourselves to avoid the claw machine, because we knew we would not want to stop and waste all of our money. But of course @ORGANIZATION2 had to try it just once. Next thing we, knewwe were using all of our money trying to win at @CAPS2 game. We each eventually won something, screaming, cheering, and laughing hysterically like kindergartners. We had also played @CAPS2 race car game at least ten timesand we were running out of games to play. So to relieve our boredom we started playing the race car game driving with our feet instead of our hands. It was a very fun time. I couldn't possibly tell all of these stories. That would take hours, days, maybe even weeks. But I can tell youthat laughter is definitely a huge part of our day to day lives. I consider myself a very lucky person to have suchgreat friends that laughter is such a common thing for us. Not a lot of people are fortunate enough to have thisopportunity. A little laughter can go a long way. So the next time you see someone who looks like they need a friend or like they could just use a good laugh, talk to them, attempt to be their friend, make them laugh. The resultwill be its own reward. Trust me." 20 18 38 4 4 4 4 4 4 4 3 4 4 3 4 +21310 8 " I believe that laughter and joy are key elements that bring families and friends together. Being able to be in the company of those who make you laugh, is a greatly valued thing. Sometimes just sitting around and telling old stories, or playing board games can leave you with a sore gut because you have been laughing so hard. Many people these days have become so caught up in their lives and sometimes forget to take a moment and just laugh. I feel sorry for these people because they are missing out on the joy and enlightenment they could be sharing with the people around them. Family vacations are always chaotic, at least in my family, but they always turn out to be a memorable experience one way or another. Every winter our family gets together and goes to @ORGANIZATION1 to stay in our cabin there. A long weekend full of good food, trips to the mountain, snowball fights and family games, is a great environment to spark some laughter. Every year we bring big family games such as @LOCATION2, @CAPS1 and @LOCATION1. My family members and I tend to be very competitive people and the volume of the room in which the game is being played, tends to escalate almost through the roof. The whole house is filled with laughter and funny arguments over things like ""how in the world is that a picture of a sock!"" or ""That's not fair, you know the actual definition!"" I enjoy these times because they are memories that you can hold onto forever. Laughter is a part of happiness, and happiness needs to be a part of life. Spending time with those who make you laugh, are those that are worthy of your time. Wiser people than myself say that ""life is short."" I'm starting to realize that this statement is true. If life is short, then that time should be spent in the best way it can be; moments filled with laughter. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21312 8 " My boyfriend and I planned to go to the @NUM1 @CAPS1 @CAPS2 fair that they put in @LOCATION1, OR. He asked my mom if she would let me go with him to the fair @LOCATION1 @LOCATION1 and surprisingly my mom said ""yeah you can go"" i was really exited cause that would be our first @NUM1 @CAPS1 @CAPS2 together. We were thinking of how it would be and we laughed because we were saying ""what if we were on a ride and we fell out,"" but knowing it wouldn't really happen. The day before @NUM1 @CAPS1 @CAPS2 i got all my things ready for that day. i was really exited and nervous cause I've never been on rides like that so i probably didn't go to sleep till @NUM4 in the @TIME1. @NUM1 @CAPS1 @CAPS2 was on a @DATE1, I didn't wanna go to school so my mom let me go to the fair instead of school. I woke up laughing and with a smile on my face because of all the things that were going through my head. I got ready, my boyfriend @PERSON1 his brother and his sister came to pick me and my friend up around @TIME3. We drove to the @CAPS9 station, parked and got our bus fare. After we got on the @CAPS9, we took a seat and we were taking pictures and making jokes. Since we got in the @CAPS9 it their was nothing but laughter. I'm pretty sure the rest of the passengers thought we were crazy. It took about @NUM6 minutes to get to were the fair was at, when we got off the @CAPS9. We ran to the gates to get our tickets. But it wasn't @NUM7 so they weren't opened so we had to wait @NUM8 minutes till they opened the gates. Once we got in this lady was selling a card that had the tokens in it, so we bought it and got on a spider ride which at first didn't look as scary but it moved really fast so i was sliding everywhere. @PERSON1 and his brother were laughing at me and my friend @ORGANIZATION2 cause we were yelling but after a couple of seconds i stopped yelling and i ended up laughing for no reason i just laughed and laughed until i finally stopped and we got off. After that ride i wasn't really in the mood of yelling or looking dumb in front of the other people that were at the fair so we didn't get on any for a while until we saw the @ORGANIZATION3 wheel we got on it. It was fun but it moved a lot so it reminded me of what @PERSON1 and I were talking about ""that how funny would it be if we fell out."" so i held the pole that was in the middle and @PERSON1 and them started to laugh so i let go and started laughing to cause the were making weird faces at me. When the ride was over we got off and went to go get something to eat from a tent that they had at the fair that was selling food, drinks and a lot of other things. We all bought a big bean and cheese burrito, @ORGANIZATION1, churros and an elephant ear. It was so good we wanted to buy more but we didn't have enough money. So we bought another elephant ear and I was the only one that actually ate all of it. So they started laughing because they we saying ""if you could eat two big elephant ears you could probably eat an entire elephant"" I laughed with then then said ""I bet I could, I'm just playing but these elephant ears are really good so I would eat twenty elephant ears"" they laughed and laughed so i just laughed with them as well. After I got done eating, we walked around the fair looking at the other tents they had. Their was a tent that spray painted your name or whatever you wanted on the shirt or sweater. But the bad thing was that we didn't have enough money for the sweater or for the rides so we just choose to go on all the rides and if we had left over money we would go back to buy a sweater. Then we pasted by a photo booth were they took a picture of you dressed up as if you were a pilgrim. I thought it was funny so i started laughing and my friends started to laugh as well because they didn't know what i was laughing about until i told them. Then they started laughing even more. We got on the last four rides and it was about @TIME2 we had to leave so we left waited for the @CAPS9. As we were waiting for the @CAPS9 two security guys come on their two horses and I thought its weird seeing horses in the city, we started to laugh. We got on the @CAPS9, took some pictures and went home." 15 17 32 3 3 4 3 3 3 4 4 4 3 3 3 +21315 8 "Laughter: A @CAPS1 @CAPS2 @CAPS3 of the variety of emotions expressed by humans, there are emotions that represent different qualities. While furrowed brows @MONTH1 be associated with displeasure, anger, or even confusion, laughter is an action connotative to mainly one emotion - happiness. Although emotions are relative aspects of human nature, actions such as laughter exist to transcribe an emotion like happiness into physiological expressions that humans are able to understand. Due to this unique quality as an action, laughter is often a key element in developing relationships. Over the years, I have found that laughter is crucial because of three various reasons - laughter does not separate, it is an ability that all members of the human race have in common, and additionally, it brings down personal barriers. In many aspects, ""Laughter is the shortest distance between two people""; instances of laughter are @CAPS1 anecdotes. Unlike sentiments such as jealousy, fury, or sorrow, happiness is an emotion that tends not to separate. While jealousy, fury, and sorrow can cause such discontentment between people to the point of physically and emotionally driving them apart from each other, happiness does no such thing. Happiness is conducive to laughter, and because of this, laughter congregates people together, rather than dispelling them apart. In addition to its compelling nature, laughter is also a @CAPS1 action. In a general view, laughter gives humans another point at which they are equal; the ability to laugh is one quality humans share. Even infants, in their states of vulnerable dependency, are able to emit laughter. Laughter is also able to establish starting points for new relationships, because sharing a laugh is akin to establishing commonalities between people. Whether the commonality be a sense of humor, similar experiences, or a surprise, sharing a laugh automatically institutes a link between two or more people. Additionally, while laughter can begin new relationships, it can also solidify them. Often, as laughter is shared through common experiences, having common experiences to laugh about symbolizes a relationship between people in itself. Since laughter is mainly about relationships and interactions between people, it is also about building trust. Establishing connections between one person and another, regardless of how weak the connection might be, requires some form of trust. Laughter is often able to bring down emotional barriers because it requires a sense of kinship and camaraderie. Through laughter, we as humans are able to bring down notions of suspicion or anxiety. As stated before, laughter establishes commonalities and therefore is an activity that exudes a sense of trust and reliability. This razing of emotional barriers is another way in which laughter is able to bring people closer together. Laughter is a @CAPS1 action that ""personifies"" how similar members of the human race are. It is astounding how man is able to discern qualities such as reliability and trustworthiness simply through the complex, yet basic, act of sharing a laugh. Through laughter, people are subconsciously able to make emotional connections with their fellow human entities and in doing so, are able to take interaction to an emotional level. Laughter is the true story behind human relationships worldwide. Not only is laughter the @CAPS1 language, laughter's intimate nature renders it the shortest distance between two people." 20 15 35 4 4 4 4 4 4 3 3 3 3 3 3 +21318 8 " Laughter is a good part of any relationship. In some relationship with out laughter do not end well but some do but other don't. I had a relationship were that we did not laugh that much and it end shortly but I found a girl that we laugh when we need make other person happy. The relationship I'm in now with the most amzaing girl. We have a relationship with a lot of laughter. We can laugh at each other sometimes and we try to keep each of happy by making them laugh and feel good.That enough about my girlfriend and me . Now my friends and I can laugh at each when we do dumb thing in front of each other . We try to push each other on to try dumb thing so we can get some laughter in our life when we don't have girlfriends and when we are bored . when all get together that inquired are my friends and there girlfriends, and my girlfriend and me. Sometime some dumb get said and we start laughing as hard as when and sometime we don't know why we do it but it fun when we do it. Laughter is one the best thing in any relationship because it bring happiness in our lifes. So try to get some laughter in your life. Thank you for reading this." 14 15 29 3 3 3 2 2 3 3 3 3 3 3 3 +21319 8 " The snow shimmered in the sunlight like sequins. @CAPS1 and I rushed to her bedroom window to get a better look. A blanket of white covered the ground. Quickly we strapped ourselves into air-restricting snowsuits. She opened the wooden front door and the chilly air stung my nose. @CAPS6 we hurried out into any @NUM1 graders paradise. @CAPS1 and I had both been through some rough times in the past few months. I shielded myself from the fact that recently my muscular brown horse was put to death by a giant bolt of light and a loud thunder clap. @CAPS1 had just learned her parents were getting a divorce. Being best friends, we had been through a trail of tears that year, but all was forgotten when our legs hit the cold wet snow. We raced to her garage in panic to find sleds. As we ran through the house to the back door we were stopped by @CAPS1's short tan mom. She refused to let us go outside until we ate breakfast. We chomped down a bowl of the always tasty @CAPS2 @CAPS3 and gulped down a tall glass of juice. @CAPS6 we flew out the back door with our sleds. There the giant hill waited for us. It slopped downward in a perfect @NUM2 degree angle with only a few turns. The wood piles and thorny blackberry bushes that lined our sledding course taunted us. As my eyes wandered down the path of snow I heard @CAPS1 yell, ""@CAPS5!"" @CAPS6 I saw her whipping her way down the slope. I grabbed my red racer sled and took off after her. I approached my first turn. It hooked around left like the start of a figure eight. With ease I glided around the corner and saw a snapshot of the woodpile that sat on my right. I looked up to see the old pond at the bottom of the hill. The sun shone through slivers of the trees surrounding it like moonlight dancing on ice. Confidently I approached my second turn. I spun around the corner sharply. I stared up ahead to see @CAPS1's bright blue sled reaching the finish line. That was when my eyes caught a glimpse of her neighbors bay horse and all my happiness floated away. As I got lost in my thoughts about @LOCATION1, I also lost focus. My shoulders hit the snow as if it were concrete. My legs tangled into knots and I could feel my head pounding. The sled had abandoned me. I tumbled down the hill like an avalanche. Eventually, the kind hands of a blackberry bush reached out to stop me. The thorns stabbed my neck. Carefully, I plucked each thorn from my neck and retreated to the bottom of the hill by foot. By the time I reached my final destination, @CAPS1 couldn't breath. With her head buried in the snow, her abs were bouncing up and down with the rhythm of her laugh. She looked up at me, her bright green eyes and flushed pink cheeks told me how silly I had looked tumbling down the hill. She started to laugh one last time when a giant snot bubble burst out of her nostril. She started to crack up and I fell to the ground in a burst of laughter. I couldn't look at her anymore. Every time I glanced in her direction it became even more funny. I nudged my head into the snow just as she had done earlier. Finally when we had ourselves under control we looked up at each other. Our mascara was smeared around our eyes and down our cheeks. We resembled either clowns with a horrible makeup job or strange looking raccoons. Our laughs started to grow again, but quickly died down. Together we stood up. We spotted my bright red sled down by the frozen pond. ""@CAPS9 like a nice hike,"" I said. @CAPS6 we both started on our journey through the forest to retrieve it. When I came shooting down the hill like a meteor, and she shot that snot bubble out of her nose like a rocket ship, I forgot everything. It was the first time in months that both of us felt at ease with our hardships. Laughter is the biggest connection we have with each other. When I laughed, my mind shut out the whole world. On snow days we now laugh to remember that cold @DATE2 day, but on that @DATE1 day we were laughing to forget. " 23 23 46 5 5 5 5 5 4 5 5 5 5 5 4 +21321 8 " My friends and I have a relationship that can not be matched. We do everything together and we always have each others back. A key element in our relationship is laughter. If we did not laugh with and at each other, we would most likely be at each others throats. We do many things that turn out in raging laughter, but there was one particular event that occurred that did not seem humorous at first, but as the event came to an end it quickly became humorous. The story starts at @TIME1 as i arrived at the school to depart on a grueling five hour bus ride to @CAPS1 @CAPS2 for a wrestling tournament the following day. I slept for a solid @TIME1 hours before being awoken by my coach screaming at someone for spilling soda on the bus. We were almost in @CAPS1 @CAPS2 so i just turned on my @CAPS5 and listened to music the rest of the way. When we finally arrived at our @CAPS13, we were instructed to go work off some extra weight before we could eat dinner. After we had finished working out, we set off to get some dinner that way long overdue at this point. I was with my best friends, @CAPS6 and @CAPS7, both with appetites as big as mine. We past many fast food restaurants, but we did not want any old burger, we wanted the masterpiece that is called a @ORGANIZATION1. We had heard rumor that there was a @ORGANIZATION1 @CAPS8 establishment somewhere in @CAPS1 @CAPS2, so we set out on our journey to @ORGANIZATION1.We walked a good two miles along a highway, and took a few random alleys that we thought were shortcuts. I started to feel like we should go back and search more around the @CAPS13, but against my better judgment we trudged forward towards where we thought the marvelous @ORGANIZATION1 @ORGANIZATION1 was. We soon found ourselves in an unknown part of town. We walked as quickly as possible to avoid the awkward stares from the people outside of their houses and the people roaming the streets. We tried to crack jokes to lighten the mood and to help ease the pain of realizing that we were tragically lost in @CAPS1 @CAPS2. Stupidly, we all forgot our cell phones back at our @CAPS13 so we had no way to call for help. We started walking back the way we thought we had come, but all we saw were more old, weathered houses and buildings that were completely unfamiliar. We were all scared, but we masked our fears in hopes of not starting a state of panic. We were all guessing that is was about nine-thirty, and we had to be back before ten to go to bed. This sent us into a panic more that anything. Our minds filled with images of our coach screaming at us with all his might, then making us run an agonizing five miles. We started frantically running down streets and alleys in hopes of seeing a familiar scene. After not seeing anything, and running for about ten minutes, we regrouped and continued walking. The fear that was once masked, was now clearly visible in all of our faces. We came upon a digital billboard that displayed the time, and temperature. We only had ten minutes to make it back to our @CAPS13 or our fate was sealed. We began running again praying that we would arrive back on time. As we ran, we came upon the side of a big @CAPS13. We did not know the name of the @CAPS13 we were staying at, so we decided to ask the person inside if they knew where it could be. The lady at the front counter informed us that were were now at the @CAPS13 @NUM1, but she had just started her shift and did not know where we could be. As we thanked her and walked out the door, we were greeted with a strong slap to the head. we turned in shock to see our coach, red at a beat, pointing at his watch. We had almost made it, only @TIME1 minutes late. after being screamed at for a solid twenty minutes, he sent us up to our room to sleep for the long day ahead of us. I was about to crawl in bed when i glanced out the bedroom window and saw what my heart so deeply longed for; the marvelous @ORGANIZATION1. My friends and I immediately broke into hysterical laughter. We had gotten lost searching for the treasure that is @ORGANIZATION1 @ORGANIZATION1, and it turned out the treasure was in our own back yard. We hardly got any sleep that night due to all of the ironic laughter and the thoughts of what had just taken place. I never got to sink my teeth into one of those tasty, succulent @ORGANIZATION1, but we did have a very funny and ironic experience that still makes me laugh to this very moment." 20 18 40 40 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 +21322 8 " Folded In @DATE1 it was right around @DATE2, two of my friends and I were out riding quads laughing and having a great old time. They were teaching me how to do a wheelie on a quad. Soon after they started teaching me i figured out that what I had to do was hit all of my weight on the back end of the quad and f lore the gas so I could pop the front end up and I was just doing it fairly well from there on out. Well, when we were about ready to to go back up to the house one of my friends thought it would be super cool if we got a picture of one of us up on the front of the quad while the person driving pops a wheelie. To do this one of us sat on the front of the quad, one of us sat on the back of the quad and, one of us was driving. first thing we do when were all situated in the quad is that the driver pulls back a f lore's the quad (the driver doesn't need to slam down on the back of the quad because there is the extra weight from the person on the back)Which in turn pops the front end up. Then the person on the back jumps off and snaps a picture on their phone and then the person driving is supposed to brake and set the quad down. Lucky me I was the one that decided to sit on the front of the quad while my friend does a wheelie. While he was popping the wheelie either he pulled back to far and hard or he flored it for too long. So I was sitting on the front and it stayed up in the air for about five seconds and then the scary thing happened. The quad started leaning back so my friend jumped off and tried to hold it so I had some time to jump off but, I panicked and froze to the bar i was holding on to. Then the whole quad came down on me because my friend couldn't hold me up any longer. It slammed me into the ground, all @NUM1 lbs. of it, it caused my shins to hit me in the face( I have a hard time bending my head to my knees let alone my shins)and it super hyper-extended my back so much that I was lucky I didn't break it. When it hit me into the ground it felt like my legs sprung the quad off of myself but, it was really just my friend pushing it off. After the pushed the quad off of me I was laying there for like @NUM2 minutes laughing in pain for some reason that I can't remember. After I was done screaming, yelling, and laughing in pain I got up and they drove me back up to the house. When we got back up there they handed me an ice pack and told me to go sit on the couch, I couldn't bend my back so I could sit down so I had to turn my back to the couch and basically fall onto the couch. While I was sitting there my back started to hurt excruciatingly bad so i thought if I lay flat on the floor it wouldn't hurt as bad and just like I thought it did. So I slept on the floor until morning because that was the only way I could get comfortable. The next day I woke up in really bad pain, it took me like two minutes to get off the floor it hurt so bad. shortly after I woke up I called my parents and had them come and pick me up from the house, I just barely got into the truck and my dad and I drove back to my house and i told my parents the whole story and my mom freaked out and thought I hurt myself extremely bad so she took me to the doctors office and he looked me over and told me I would just have to wait for my back to heal it's self and then i went home. " 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +21323 8 " Most people believe that laughter is an essential need for your heath, not only physically, but socially as well. In a socially tense environment it is hard to achieve what is expected of you, but if someone will introduce laughter into the environment, it quickly changes into one that becomes more simplistic, and you are able to get done what is expected of you. With this mindset I proceeded into the conference room for the first time since @PERSON1 had left. @PERSON1 was the adviser for the @ORGANIZATION1, or what we call @ORGANIZATION2. @PERSON1 was the reason that a student from each school in @LOCATION1 had any say in what the @ORGANIZATION1 did or received school wise. She helped us voice our opinions and that made her a hero in the eyes of many high school students! Soon, @PERSON1's time as adviser had expired and she announced her departure from her position. After a few weeks had gone by she had found a new adviser to take her place, @PERSON2. I'm a person who is excepting of change, but the other members are not. This particular change was much to hefty for them; they just wanted things to go back to normal. When I sat down in my usual chair, the room seemed much less homely and I soon felt a sick feeling building up inside. I did not know who this woman was or what she was going to do; all I knew was that she was not @PERSON1, and she did not make the @ORGANIZATION2 members very happy. @PERSON2 glided into the room with a welcoming spirit about her. She stood at the head of the room and smiled. The rest of the members sunk a little further into their chairs, as if they were protesting her arrival. I thought to myself, she doesn't stand a chance, as I sat a little taller and began to listen to what she had to say. She spoke in a cheerful tone and seemed to giggle after every sentence. Although her posture provoked confidence, her giggle struck nervousness. There was only one way we, as a @ORGANIZATION2, were going to get done what was needed. We had to see @PERSON2 as a friend not a foe. Immediately I decided to lighten the dank feeling in the room by starting a name game. This is a fun activity to learn a little more about people and to help @PERSON2 to remember our names. @PERSON2 seemed much more relaxed after the game so we continued with the meeting. With every second getting more serious I proposed that the meeting be done for the week and we spend the rest of the time talking and laughing about what had gone on that week. This made everyone smile. Time went on and with every passing moment the stress in the room became lighter and lighter, until the whole room was filled with laughter. It was as if @PERSON1 had never left! Soon the gathering came to a close and we all went home. On my way out @PERSON2 stopped me and told of her nervousness before the meeting because she wasn't sure how well everything was going to go. She was thankful that I jumped right in and helped brighten the spirits of the members. This eventually lead to the acceptance of the change and the effectiveness of @ORGANIZATION2. By the next meeting the members were all anxious to go back and learn a little more about @PERSON2, and were able to more fully concentrate on the matters at hand. Laughter helped the members of the @ORGANIZATION2 accept what they could not control and ultimately lead to our success today. Laughter is primarily the key to all success in the social society we live in today; with laughter anything is possible! Although the laughter was only for that one meeting, it allowed the members to be more welcoming to the idea of @PERSON2, and made for a life long friendship between our adviser, and the members of our @ORGANIZATION2. My relationship with @PERSON2 would not be as strong as it is today, if I did not share the opportunity to laugh at @PERSON2's first @ORGANIZATION2 meeting." 23 20 43 4 5 4 4 4 5 4 4 4 4 4 4 +21324 8 "@PERSON1 In a mother and daughter relationship @CAPS2 need laughter. It's so important to have that connection with someone that is so important and close to @CAPS2. Just in general @CAPS2 need laughter, it shows how @CAPS2 express yourself and it brings out your character. This one laughing experience, it was the @DATE1 of my eighth grade year, so I was @NUM1 or @NUM2. My family and family friends went on a camping trip. So the day before we were suppose to leave, my mother, brother and myself went up to set up camp. We when got to the campground, we immediately started putting everything together and organizing. It was a lot of fun but it was getting dark fast so we moved faster until it was completely finished. On our way out we noticed that we forgot something in the truck so my mom stopped the truck and looked at me and asked, "@CAPS1 @CAPS2 want to drive right now?". Of course I didn't think twice. I jumped out of the truck and ran to other side. All sorts of excitement was going through my body. When I got to the other side I hopped right onto the driver seat, with the biggest smile on my face. My mom was giving me all the steps on before starting the truck. Examples; seat belt, steering wheel, mirrors and adjusting the seat. The family vehicle was a stick shift so I was all sorts of nervous. I had no idea on how to shift and when to exactly. I used to watch my mom and step dad when they shifted and when, I would make humming noises but that obviously didn't help me any. The first thing I had to @CAPS1 was to start the truck because mom turned it off before she got out. I had to put the clutch in all the way and make sure it was in neutral. So I started that thing up, thinking to myself on how cool I probably look right now, the average @NUM1 year old ego. The going part was the worst! I probably killed the truck about @NUM4 times before the tires actually went at a constant speed that they should be going at. My mom said, "The fifteenth time is a charm". She probably thought she was being funny but trust me it was not a funny moment. I gave a nervous laugh right back at her, which probably didn't make me feel any better. So I started the truck once again and go to moving. I wasn't going very fast, more like the speed of a turtle but that was alright with me because I had no idea what was going on. The truck was going too slow to go anywhere, so I pushed in the gas a little bit harder. Coming around the bin, going about roughly @NUM4 miles per hour, still at a slow pace as before. The camp ground was only about @NUM6 to @NUM7 miles away. Which seemed like it was taking forever! We were coming up to the campground. I could tell because we had a sign that said @PERSON1 with a arrow pointing left. So I took that left and saw all of our stuff. There was a river on the back side of where of our camp was and trees were circling all around us. So it was an enclosed area, except for one side. Where @CAPS2 could see to the other side of the river and there were other people camping on the other side. Which was kind of nice because they had kids my age. My mom pointed and told me to go over by the tent and park. For an inexperience driver I got anxious and put my foot onto the gas instead of the break so that @NUM4 m.p.h went up to about @NUM9 in the matter of seconds. We were going so fast that I couldn't really react to what was going on. All I could hear was my brother in the back seat yelling like when a little girl finds a spider. My mom grabbed onto the steering wheel as fast as she could because we were heading right towards the river and was about to make a quick visit to the people across the way. Instead of going that direction we went into a pick-nick table and pushed that right into another one and landed right onto a third table. We were at least @NUM10 feet off the ground onto the pile of broken tables. I had a adrenaline rush and I'm pretty sure the passengers did too. We all got out of the truck and literally stopped and starred at the situation for a good @NUM11 minutes before we started busting up laughing. We all looked over across the river and saw their entire family just starring and laughing at us. My mom looked at them for a few seconds and then looked at us and said, "@CAPS2 all can come over later for a fire!"" 18 20 40 40 4 4 5 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +21325 8 " The night was a cool, @DATE1 night, not too cold but definetly not the muggy temperatures @DATE2 brought you. This was the type of @NUM1 degree weather that would allow you to wear jeans and a t-shirt and still be comfortable. The air hugged my skin as I walked up the path that led to my friends front door. Overhead I knew the stars hung in the sky but they were paid no attention by me. Inside the house I knew both of my bestfriends were awaiting my arrival. I also knew that there was a potential of them being angry with me. For what, I did not know. I did know that when I left school that day there was a feeling in my gut that told me something wasn't right. Walking home, as I increased the distance between them and me, there was a churning in my stomach that prodded me to look back. When I did, they were both staring at me with looks I couldn't (or didn't want to) place on their faces. All of that made my heart give occasional, hard, thumps on my chest from the nervousness. Yet, I pretended that everything was okay. ""For all I know"", I told myself, ""it might as well be, and I'm overreacting."" I knocked on the white-painted wooden door and stared at the maroon side-paneling, waiting for an answer. My friend @LOCATION1 answered the door. From somewhere inside I could hear my other friend @PERSON1 laughing. I knew that I had missed out on something, the laughter explained that to me as I stepped inside. There was a hollow feeling in my chest. I wanted to know what I had missed out on. I hated not knowing. A mix of emotions jumped around inside my body, causing my head to be a jumbled mess that I couldn't make sense of. I gently pushed open @LOCATION1's bedroom door with my fingertips. Like always, the turquoise walls and the sound of radio station music jumped out to greet me. @PERSON1 was laughing and dancing to the music, but when she saw me, she stopped and stared. The moment seemed to stretch and expand in time. I felt my guard go up. If she was mad, fine. I didn't do anything wrong and I would maintain my innocence. The moment was stretching and stretching to the point I thought it might break, then @CAPS1 hugged me, completely catching me off gaurd, but filling me with a sense of right, because I'd known I hadn't done anything wrong. Everything seemed normal for what felt like a second and then @PERSON1 explained the gut feeling I had when I was walking home from school that day. I was being accused of not putting in any work into a reading project. The accusation appalled me and deflated my pride. Instead, a mild anger boiled up and I simply walked out the door and into the cool night. I heard my friends calling my name and following me down the street but I kept walking. I told myself this was out of anger, but @DATE3 I know it was for the sake of making a scene. The footsteps I listened for behind me suddenly came at a faster pace. I glanced over my shoulder and saw @PERSON1 running at me. Against my will, I let out a high-pitched scream and started running, digging my feet into the concrete sidewalk. I felt determination flow through my veins. I would walk all the way home in the dark to make my point. @PERSON1 caught up to me and tried to pull me back to the house but I resisted with all my might. I knew I couldn't get out of her grip, out of sheer stubborness, I planted my butt on the curb and refused to budge. I realized I had only passed two houses. My friends exchanged glances and picked me up by my arms and legs and started carrying me towards the direction of the house. I grasped for the anger that was slipping from my hands. I wanted to stay mad but I couldn't. I started laughing and any tension I still felt swarming around me lifted up and flew away. A grin decorated my face from one ear to the other and my good sense came back to me gracefully. They set me down in the middle of the road. I looked up and admired the stars, that I had missed before, winking at me from above. The last ribbons of laughter still danced around in the air and whispered to me that everything was going to be okay." 25 20 45 5 5 5 5 5 5 4 4 4 4 4 4 +21327 8 " I was in @NUM1 grade; when it was almost the last day of school so since middle school years have been the lamest years of my life. I thought of my brothers pranks he had done while he was in middle school and one of them that was the funnest was the fire alarm prank. He told me the story to me all the time and that he did it a lot of times and also got away with it. I know I should at least try it since this was my last year in middle school and I should just go for it. well @NUM2 days before school was out I had a lighter with me and I had went into the girls bathroom, I noticed there was a alarm on the top of the roof so I stood on top sink and turned on the lighter, waved it around the white round fire alarm and then once I knew it, it went off. My friend was with me at the time I was thinking about it and told her before i did what i was going to do at the time and so she knew what i was about to do. But anyways back to what had happened... We all went outside, me and my friend were laughing so hard that everyone was looking at us with weird faces but then we told our closest friends what I had done and they all cracked up, even some lower grade kids herd about it but that's because they were by us and at the end it didn't get pretty. It was last period and I was in computer class when my vice principal came and got me from class then took me into her room and she asked me if I was the person who turned off the fire alarm and I was like no then asked me again and I still said no. Finally she told me that when I was doing whatever I was doing to make it go off; did I notice if there were people in the stalls at that time? I said no and she told me that there were two people in there and one of them had told on me. So it ended up with me getting in big trouble with being on probation, going to the fire department to apologize for what I had did and how much time it takes for them to do there job on fires at school, then had community service the whole @DATE1, and almost didn't get to walk in my promotion with the @DATE2 class which got me down. I do regret doing what I had done since I think of it all now, it was something childish and stupid. For some reason it was my funniest moment of my life and I'll always have that as one of my @NUM3 top favorite memories and moments of any school year. True Story." 16 17 33 4 3 4 4 3 3 4 4 3 3 3 3 +21329 8 "My story about laughter is going to be a true story about me. This story is about my trip to the doctors. I love to play sports always have, always will. Iv been playing football for about @NUM1 years now and iv never been hurt, except one pracitce. It was in @NUM2 grade. My football team always does one hitting drill once a week. The drill is called truck and trailer. Its where you have @NUM3 people. Two people on offence and two peole on defense. The two people on offence are trying to score and the two people on defence are trying to stop them. Of course I get stuck with running the ball and not to mention the worst person on the whole team blocking for me. This kid couldn't do anything on the football field other then keep the bench warm. The two biggest and best hitters were on defence trying to kill me. I knew that this was going to be bad. All I could do was run fast, so i do. My coach (my dad) hikes the ball and I take off. Soon enough they catch up with me and take me off my feet. One went high and the other went low. I hit the ground and stayed down. I hear my teammates start screaming. I thought it was because i got ''cracked"". I thought wrong. I sit up and my knee kinda hurts. I look at it and it looks like rubber. My leg was pointing the opposite way that it's supposed to go. Iv only seen a brake like that on tv and youtube. My dad doesnt hesitate too call @NUM4. The ambulance came to the field @NUM5 minutes later. They came down to the field and put my on a strecher. My team wasnt the only team that used that field. About @NUM5 other teams practiced at the same time. All eyes were on me. And on my leg. The other teams didnt know what happened except that they had a big ice back on my private area. All my friends thought I hurt my man parts. It was embarrasing and funny at the same time. When they all found out it was my leg they still woud make fun of me. I had horrible nicknames for a long time. It wasnt fun for me and especially not funny. But all my friends thought it was hilasious." 15 15 30 3 3 4 4 3 3 3 3 4 3 3 3 +21330 8 " Being on a team doesn't always mean that everyone is the best of friends; most of the time the case is that you really don't get along with the people on your team. That was the case for the @ORGANIZATION2 (@CAPS1 @CAPS2 of @LOCATION4) @CAPS3 that I'm a member of. Everything changed after our trip to @LOCATION1, @LOCATION1 for @ORGANIZATION2. It was late, twelve members of the @ORGANIZATION3 @CAPS3 were shuffling into the @LOCATION2 to check-in. Everyone was in their group of friends talking and anxiously waiting to leave @ORGANIZATION4 for our eight day trip. Each group of people didn't always get along with the people in the other groups (even though we were a team) other people got along with everyone they just had their own close friends that they stuck with. Emotions were at a wide variety that night between the tension of conflict between people, nervousness, and excitement. When our plane had finally landed in @LOCATION1 everyone was completely drained of energy, but once again everyone split up into their own groups and we moved through the @LOCATION1. @CAPS5 we walked through the @LOCATION2 to the luggage claim I began to wonder, "" @CAPS4 is it that we are all together and a team, but we separate ourselves to different groups amongst our team and everyone notices, but it doesn't change?"" @CAPS5 I pondered the thought we headed out to the rental vehicles and loaded everything up and started the day. After the long day of flying and touring places around downtown @LOCATION1 we finally were at the hotel checking in. @CAPS5 we checked in everyone separated vastly with their groups of friends who they rooming with to check-in to their rooms. Later that evening a few us that were really close friends went outside to hang out by the campfires they had at the hotel we were staying at. @CAPS5 we sat there talking and laughing, having a great time there was a moment when we just sitting there quietly, and I proceeded to ask them about what I been thinking about back at the @LOCATION2. The response I got back from everyone was blank stares and a change of subject. The next morning came early, we went off to breakfast then left for the day to go do some touring. The first place we went to out of three place we were to be touring that day was the @ORGANIZATION1. At the @ORGANIZATION1 our @CAPS3 faced our first team building/bonding activity. The task we were to accomplish with one another was difficult at first for everyone, but we all slowly began having a fun time laughing and working to accomplish what we needed. After we had finished the activity everyone began to slowly mingle with people outside their normal group. Later that same day we had a second team building/bonding activity. After we finished that activity there was a sense of less tension between everyone, even less than from after the morning activity. The following day we had two more team building/bonding activities. Each time we had an activity everyone began to connect more and more and each time came more laughter. We also began to spend more @CAPS5 a whole @CAPS3 and got have an even better time of fun and laughter filled adventures. By the time we were all heading to the @LOCATION2 to fly back to @LOCATION3 everyone was hanging out and there was no conflict. @CAPS5 the plane took off the realization of everything had came to me of @CAPS4 before there was so much conflict and everyone being split up into separate groups. I realized that we had always been on a ""business like"" relationship with one another we never gave the chance to laugh, have a good time, and connect and allow us to get to know each other. Once we took the time to allow all of those things we learned who everyone was and made friendships." 17 20 37 4 4 4 4 3 3 4 4 4 4 4 4 +21331 8 " They say that ""laughter is the shortest distance between two people"" and I agree completely. You can't be in an relationship or have a friendship with someone and not share laughter with them. It makes things last between one another and makes both partners happy. If there's no laughter between the two, that connection will be more difficult to have. I have a bestfriend and her names @CAPS1. We were bestfriends ever since the day we found out we had the same birthday. But to us, that meant we were twin sisters." 10 19 26 26 2 2 3 2 2 2 4 3 4 4 4 4 2 2 2 3 3 3 +21332 8 "Laughing @CAPS1 you remember when you would laugh so hard you couldn't breathe? Or when you started crying because you were laughing? When ever I start laughing I am always with my best friend, @PERSON1. We sometimes even when things aren't funny. We giggle at everything. Memories, the future, or even just looking at each other we laugh. You name it, we've laughed at it. @PERSON1 and I have almost always laughed together. From when we first met in seventh grade, and now when I am a freshman, we still don't ever stop. She was in my sixth period class and we sat by each other. After the first couple of minutes we talked we both knew something good was going to come from this. So of course, from that moment on we had to be best friends. I couldn't ask for a friend better then her. She is the best. All of our free time was spent with one another. Even some time when we were busy we were still together. @PERSON1 and I were together basically every day and every night. We would camp out in my backyard, or ride bikes around the town. I would go swimming with her family. She would go to @LOCATION1 with ours. Both of both of our families would go and @CAPS1 things together. We did all sorts of things together. No matter what we always laughed. Growing up can be pretty tough sometimes for anybody. @PERSON1 and I were no exception to this. After a bad day, you would know you could find us on the phone talking to each other. We could talk for hours and hours about the littlest things. I think we have talked for three hours before just about what we were going to wear the next day. Never hanging up until one of us getting told to get off the phone. I think I can speak for the both of us when I say, we hung up with a completely different outlook on life. Even on the worst of our days, we were still laughing. I don't think I would ever be able to grow up with out her. @PERSON1 is such a big part of my life. I would be nothing without her. @PERSON1 and I @CAPS1 not go to the same school anymore, but that still doesn't prevent us from laughing. If you have ever had a friend as close to you as @PERSON1 is to me, you know how great it feels to be close to somebody. Just think about the feeling of never ending laughter. I strongly believe with all of my being, it is one of the best feelings in the world. @PERSON1 and I never stop, why should I let anybody else. With out laughter, we wouldn't be as close as we are today. With out laughter the world wouldn't be how it is today. So find a friend and start laughing. You'll see how great it is to laugh with someone. I guarantee it." 19 20 40 40 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +21333 8 " Isnt it funny how just a laugh can change a senery, a mood like someones face expression, and make a person laugh out of nowhere just because it is outrageous, or the laugh they hear sounded funny. I personaly have been through all of these stages of what I like to call, the contagious circle of laughs. In the past I have been cheered up by laughing, and hearing others laugh. At times even I have cheered others by makeing them laugh, or laughing at @CAPS3 own humourless jokes. It feel good to laugh, and at the end of @CAPS3 long lasting giggles I feel refreshed from useing all that energy just to make a noise. @CAPS3 friends pick me out to be the clown in our group. They all think im this hilarious joke popper ( I pop out all these funny jokes ) I personaly dont think im that funny, but for some reason just by makeing them laugh I laugh too. There is this one joke I made up all by myself to cheer up @CAPS3 friend @LOCATION2. It made everyone fall on the floor laughing. It is about walking through the store, and seeing the different nationalitys of mothers with there baby's. How each mother treats there baby's differently. At the end I tell how the african american mother yells at her baby to shut up. I use a cuss word but thats inappropriate for this writeing piece. You get the idea. Anyway @CAPS3 friends still to this day ask me to tell them that joke, and they always laugh just as loud as the first time I told them. There is always one person in your life that your totaly obbsesed about there laugh, only because you love the way it sounds. I personaly fell in love with @CAPS3 boyfreinds laugh, and that was why he looked so darn cute to me. The very first time we met he was picking on his cousin @CAPS1 in a park up in @LOCATION1. I was with @CAPS3 friend @PERSON1 in the trailer park where her dad lived at the time. Malikye ( @CAPS3 boyfriend ) had this laugh that made me want to scream ""@CAPS2 @CAPS3 @CAPS4!"", it was so funny. I wanted to run over to him and tickle him to death so he couldnt ever stop laughing. Most of the people that know him hate his laugh, and think it is obnoxious. He even hates his own laugh. I dont know why but I was addicted to it. It is funny how even hearing someones laugh can give you feelings for them. A laugh not only shows you sound, but shows you personality, and charecter. Laughing is a big importance in life. It shows so much about a person, and helps so many people. I love laughing. People should be full of laughter, because without it the world would be a dull and unhappy place. I dont know anyone who would want that. Evil @CAPS5 maybe, but he even has his evil laugh that shows his charecter...." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21334 8 " My father is a stone cold mean man. About the only time he smiles is when hes has a beer or when hes with friends. Last @DATE1 we where at my grandparent's house for a family barbecue when we got a call from mt @CAPS3 cousin @PERSON1 she told us that my @CAPS1 was in my great aunts will, a few days earlier we had gotten a call saying that great aunt @PERSON2 had died. My grandpa thought he was going to be in the will but he wasn't. Two weeks latter my @CAPS1, @CAPS2, and me went to @LOCATION2 for my great aunts funeral. When we got to @LOCATION2 we drove to the upper peninsula. It turns out that we where going to a island on lake @LOCATION3 called @LOCATION1 island. Then when we got to my @CAPS3 cousin @PERSON1's house she toke us through the will. My @CAPS1 got @NUM1 acres, @NUM2 acres of forest, @NUM3 acres meadow, and @NUM3 acres with a two bedroom house, barn, and smoke shed. " 15 16 30 30 3 3 3 3 3 3 3 4 3 3 3 3 3 3 3 3 3 3 +21336 8 " When I had turned fifteen I was so anxious to get my permit. I didn't study for it, but I thought to myself how hard could this really be? The first time I went to take the test I went with my best friend @PERSON1. @PERSON1 had already taken the test once and failed so she was trying again. We got to the @ORGANIZATION1 at @NUM1 a.m sharp. I was anxiously sitting there waiting to take my test and that's when they called my number. The women at the @ORGANIZATION1 was very nice to me she said ""all I need is your birth certificate, your social security, and proof of enrollment"" I handed the envelope to her that I had containing all of these. She okay'd me to go and take my test I sat at computer number six. I was not nervous at all I thought how could I not pass this.When the test began there was so many questions of things I didn't know like motorcycles,left turns, and things about animals that were on the road. I finished the test with @PERCENT1 I only needed to get @PERCENT2 to pass, I was bummed out that I had failed. @PERSON1 however had passed her test I was happy for her and I congratulated her but I was still in a way jealous of her. My @CAPS2 and @PERSON1 told me ""it's okay you will get it for sure next time!"" @CAPS1 they were wrong. I was supposed to be one of the first people out of my group of friends who was going to get there permit. I had no idea that all of my other friends would get it before I did. It seemed like every week one of my friends would get their permit and just pass me up. I was extremely discouraged and sad about this because in a way I felt like a failure but I was determined to get my permit no matter how many times it took me. I went back @DATE1 after taking my permit test for the first time to take my test again I failed, I had failed for the second time. I went back again five more times I failed my permit test five times. My @CAPS2 and I were driving back one morning after I had failed I was very sad because I was going to have to wait a whole month again before I could take it. That is when my @CAPS2 just started cracking up laughing hysterically at me. I was very confused at why she would act this way. She told me ""sometimes you just have to relax in situations and learn it is okay to not always get things right the first time life is about sticking to things and having fun if you can't laugh at mistakes that are made then what is the fun in that?"" I realized she was completely right and that's when I stopped beating myself up over not getting my permit. I laughed hysterically the rest of the car ride home. I didn't mind that I didn't pass because I knew I was going to get it if I just relaxed and studied. The next month I went back to take the test again. I went through all the steps in the @ORGANIZATION1 again I waited for them to call my number, I gave the women my information, and I sat down at the computer. I got @PERCENT3 this time! I was so stoked and so happy that I had passed I was mostly just surprised my @CAPS2's advice had worked. @DATE1 that day I was driving home from the store with my @CAPS2. I was not the best driver I think because it was only my first day, and she was yelling at me to slow down and hit the brakes as I pulled into the driveway. I had mistaken the gas for the break and I ran into the garage door. Surprisingly she had started laughing and this made me laugh. Instead of yelling at me and reaming me for this mistake we were able to laugh about it and I think that is what made a world of difference, because if she would have yelled at me I would have been discouraged to try driving again. Now I have had my permit for four months not only am I a better driver but I have learned to relax a little bit more I have learned to laugh a lot more and not take so many great simple things in the world for granite. I also think that it made me closer to my @CAPS2 in a way so I guess it is true what they say ""Laughter is the shortest distance between two people.""" 18 20 36 36 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 3 +21338 8 " About @NUM1 years ago, my best friend @LOCATION1 @CAPS6 I were having a sleep over at her house. We were in her moms room playing with this huge exercise ball. We had been jumping, standing, flipping, @CAPS6 everything you could think of but trying to do that with out falling off of it! @LOCATION1 went to go do this flip on to the ball @CAPS6 she said "" @CAPS1 @CAPS2 watch this cool thing I just did!"" @CAPS3 she try's to do the same thing she did, but she messes up, @CAPS6 the giant ball went flying out from under her! We started laughing @CAPS3 hard! It was @CAPS3 funny that she almost peed her pants! But then her older sister came in, @CAPS6 that's when it all started... @PERSON1, (@LOCATION1's older sister) was always much bigger than us @CAPS3 we did @CAPS8 she said no matter @CAPS8. As soon as she walked in we stopped @CAPS8 we were doing! She said that she wanted to play a game with us, @CAPS3 we decided to play too. @PERSON1 told us to get on the bed @CAPS6 go under the blankets. @CAPS3 we did @CAPS6 right when we did the light shut off! @CAPS6 the door slammed shut! We didn't know if she was still in the room or not @CAPS3 we didn't say a word. The next thing you know, the door barley creeks open @CAPS6 you can see a little bit of light through the crack. She was back, @CAPS6 with supplies! It was silent for about @NUM2 minutes, then @LOCATION1 starts screaming! Right when I look over @LOCATION1 is getting dragged out of the bed by her feet. While I'm trying to bring her back up I feel someone grabbing my feet! There I go, right where @LOCATION1 is! We kept trying to hide,@CAPS6 get back up on the bed, but we eventually gave up because our plan didn't work that well. All of a sudden my feet were tied together! Then my hands @CAPS6 mouth! @PERSON1 kept throwing us around the room @CAPS6 hitting us, she thought it was the funniest thing in the whole world! She was laughing @CAPS3 hard, especially when we kept trying to get back on the bed with tied hands @CAPS6 feet. After an hour of struggling me @CAPS6 @LOCATION1 had an idea! We thought if we hid in the bathroom she couldn't get us anymore @CAPS6 we would try to un-tie each others bandannas @CAPS6 ropes. But before we could do that @PERSON1 beat us to it! She had thrown us into the bathroom corner with the lights off! It was silent. ""@LOCATION1 @CAPS8 is that noise? "" I said. ""@CAPS4 the bath!"" she said. We tried to get out, but right when we did, @PERSON1 picked us up @CAPS6 threw us in! She was laughing the whole time! While we were screaming yelling for each other. @CAPS6 for help! When we got out of the bathtub she threw us back up on the bed @CAPS6 finally untied our bandannas @CAPS6 ropes! After she turned the light back on we looked at our wrists @CAPS6 ankles @CAPS6 there was red marks all over them. @LOCATION1 said ""@CAPS5! Your crazy, we told you to stop @CAPS6 you didn't!"" @CAPS6 right after she screamed that @LOCATION1's @CAPS7 walks in. ""@CAPS8 is all the yelling for girls?"" @CAPS6 then it all came out! In the end @ORGANIZATION1 got in trouble @CAPS6 we got out of it. @LOCATION1 @CAPS6 I learned a huge lesson. Never ""play a game"" with your older sister when she has bandannas @CAPS6 ropes!" 16 18 34 3 3 4 4 4 3 4 4 4 4 4 3 +21339 8 "@PERSON1 @CAPS1 @CAPS2 One @DATE1 of @DATE1 break me and a @CAPS3 went @CAPS1 with my @CAPS5 on the boat in @LOCATION1. We have been waiting all week for to go catch some @DATE1 @CAPS4 salmon. That @DATE3 @TIME1 we had to get the boat ready so we can leave that day. Our boat is big so we just put all our stuff in it, like sleeping bags, coolers of food, and all the @CAPS1 gear we would need for salmon. we also brought a camp stove for our food we make on the boat. There was also another guy named @PERSON2 but we call him big @PERSON2 hes very funny guy that provided a lot of laughter on the boat.When we get there we had to stop at a bait shop to get some prawns and spinner blades, that's what we use to catch the salmon. We leave and soon as we get to the boat ramp were we launch the boat my @CAPS5 realizes that he forget to get hooks while we were at the shop. So we pull the boat out of the water, luckily the boat was still on the trailer, we get all the stuff all secure in the boat again and leave to the shop. Right as we get to the bait place the lady we talk to earlier said we forgot to grab the hooks we bought, some how we did forget I don't know how though. So we say thanks and headed back to the river. We finally get our boat in the water and head up river to were we are going to do our @CAPS1, and it is a popular place there would be a line of boats called a hog line and some how we would always some how get in the middle where the best @CAPS1 is. There would be some days usually @DATE2 like @NUM1 boats on each side of us and it got hectic and some times funny because some of the guys out there don't even know how to operate a boat. When we got there after we geared our poles up we put them out in the water, my pole went down and hooked a nice bright @CAPS4 and fought him for about fifth teen minutes and my @CAPS5 netted it and it was a keeper fish. After all that my @CAPS5 said that was a small fish. Right around dark we reeled are poles in and put them away neatly in the boat. Right when it got dark it was time for bed and it was quite on the river there was no one on the river besides so we didn't have to worry about other people rocking our boat while we were sleeping. The next morning was cold and windy but luckily we brought our top to cover us from getting wind burn, because last time we went we got wind burnt so bad it hurt for about a week. finally my buddies pole goes down and hes all excited about hooking a fish, about ten minutes go by and he realizes he hooked on a log that floated by, me and my @CAPS5 knew he hooked on it but we didn't want to say any thing because it would be funny him getting all excited. My @CAPS5's pole goes down and it was fish on, so i throw the anchor out we float down get it in the net another fish too take home and we had two in the boat but my buddy is the only one that needs to get a fish so we all have one to take home. After all day of being on the boat it was about time to head off home and get ready for the begging of the week. Right about two o clock, I look over my pole tip slams to the water another fish on hand it to my buddy he's fighting it, he was having trouble reeling though because the drag was tight but then i fix it he gets in the boat, his first salmon ever he was happy. perfect timing, because about fifteenth minutes later we leave to go home. the @CAPS2 was fun we got some fish, we had some funny moments, and most of all I got my buddy his first salmon. " 17 17 34 4 4 4 4 3 3 3 4 4 4 4 3 +21340 8 " There have been many times in my life in which laughter was the key ingredient. My family is always laughing. We could be laughing at a movie, or a joke someone just made. We even laugh when the jokes are aimed at us. The same thing can be said about me and my friends. My friends and I laugh at almost anything. I believe that laughter has been one of the most important pieces of my life, without it life would be almost meaningless. I can remember one @DATE2 when my friends and I decided to go camping at a lake for a week. We all packed up our tents, sleeping bags and other camping necessities. When we got to the lake it wasn't very crowded so we had no difficulty picking a camping spot. Once we finished unpacking our gear and setting up our tents we decided to go swimming. One of my friends shouted, ""I'll race you down to the lake!"" @CAPS1 took about five steps before @CAPS1 stepped in a small hole the perfect size for his foot to fit in and @CAPS1 fell flat on his face. Everyone started busting up laughing, it was like we couldn't stop. When my friend who had fallen finally got up @CAPS1 was laughing too. We spent the rest of the @DATE1 swimming and making fun of his fall, the best part about it was @CAPS1 joked around too. That night we stayed up eating junk food hot dogs and smores till we almost burst then one by one we all passed out. over the next couple days we did pretty much the same things. We swam in the lake, took hikes in the woods, fished for a little while, and made fun of each other laughing almost the entire time. On the @DATE1 that we were there we all decided to wake up early and take one @DATE1 hike to the top of the nearest mountain. The trip to the top went smoothly and no one fell or got hurt. The only eventful thing that happened on the way up was that one of my friends dropped his water bottle and had to chase it halfway down the mountain. To us this was funny but not nearly as funny as what happened next. Before going down we all took a ""potty break"" as one of my friends called it, the only problem with this was that one of my friends decided to pee in what @CAPS1 thought was an empty hole. As it turned out the whole was not empty but home to hundreds of underground wasps. Unfortunately for us @CAPS1 didn't realize this until it was too late. Wasps began pouring out of there home searching for whoever was disturbing them, which happened to be us. My screamed in horror, ""@CAPS2 crap its a bees nest!"" The next thing I knew we were running as fast as we could down the mountain with seemingly thousands of wasps following us. The lucky ones had finished relieving themselves and ran away with ease, the unlucky ones were not quite finished and had yet to pull up their pants. Running with your pants around your ankles is not an easy thing to do just in case your wondering and two of my friends found this out the hard way. As they tried to run away they tripped over themselves and started to roll all @CAPS1 while they were being stung by the wasps. We all made it down the mountain with very few injuries and not too many bee stings. I remember the first thing we did when we got back was laugh till we cried. Once we were out of danger this instance seemed like the funniest thing that had ever happened. My friends and I still bring up stories about our crazy camping trip and the run in with the cranky underground wasps to this @DATE1. I still think its one of the funniest things that will ever happen in my life and I am looking forward to the next crazy event. I believe that laughter has been one of the most important pieces of my life, without it life would be almost meaningless." 20 17 37 4 4 4 4 4 4 4 4 4 4 3 3 +21342 8 " My alarm went on at @TIME1. It was another normal @DATE1 for all of my friends, but a big day for me. It was time to get up, eat breakfast, brush my teeth, put the last couple things in my suitcase, and head to the airport. For the @CAPS1 time I was going to fly on a plane across the ocean, and it was the last day with my family in @LOCATION3 for a whole year. The next time I'll wake up will be in a totally different place, country, and family, where I have never been before. It will be a new start for me and my life won't be the same anymore. I will be an exchange student on a high school in the @LOCATION1. After changing planes @NUM1 times and @NUM2 hours of traveling, I was finally at the airport in @LOCATION2, where my host parents were waiting for me with a big sign which said my name on it. I was very happy and excited that I finally arrived, but primarily I was really tired. We took off and headed ""home"". My new home was a little green house on a small ranch in the high desert of @LOCATION4, @NUM3 minutes out of town, and without public transportations. Due to the hot temperatures and the dry air I was very tired the @CAPS1 weeks. Adjusting myself took me about a month. Before school started, I visited my new high school and met the school principle. I also got my schedule and signed up for the soccer team, which had their @CAPS1 meeting the following @DATE2. It was good to see kids that will be on my school and in my classes. Finally my @CAPS1 day of high school was coming up. It was exciting for me, but I couldn't hide that I was very nervous. After a one hour drive to the school I got off the school bus and walked into the building. It felt like thousands of people were in the hallway looking at me. I walked faster. I was hoping my @CAPS1 day would start out good. Finally, I reached my locker, and pulled out the little peace of paper with my locker combination on it out and tried to open it. Even though, I did it @NUM1 times my locker won't open. ""@CAPS1 spin it @NUM1 times right, go to the @CAPS1 number, go left, pass the second number once..."", I was whispering to myself. The bell already rang, and thankfully a friend that I knew from soccer stopped by and asked me if I needed help. We both started laughing and I was so glad she helped me out or I would have been late to class on my @CAPS1 day. For the next couple times I needed her help again, until I figured out how to open my locker three days later. Being open-minded, being friendly and smile are three things that are very important in life. Besides that another very important one for me is also to laugh about mistakes I make. More than anything else, coming to a new culture, land and meeting new people gave me a lot of experience for my life. Especially learning how to laugh about mistakes or situations to not get frustrated. Getting frustrated would have made my time harder and not as enjoyable. Laughing makes it easier for me to learn from mistakes I made and to move on. My mom once told me to be courageous to make mistakes, and I don't regret any mistake I made." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21343 8 " He laughed, I hadn't heard his laugh all day. It was just after @DATE1 and @PERSON2 and I had just fixed our off and on relationship. He had picked @CAPS1 up from my house so we could hangout at his. He had seemed upset since he had picked @CAPS1 up which was completely out of the norm for him. He was always smiling or laughing and had some funny story to tell @CAPS1, but not today. Today he was quite, we had been together for about two hours already and he'd said all of about a sentence to @CAPS1 and I had only gotten one of those lame half smiles that really meant ""I'm not in the mood so just stop"". We were watchingDespicable @CAPS1 for about the third time when the yelling started, he was standing against the wall next to his bed when his dad just started shouting, his voice was followed by a higher softer voice yelling back, it was @PERSON2's step mom. The were arguing about cheating or drinking or staying out to late, I really don't remember, I couldn't hear to well and I was paying attention to @PERSON2 to watch for his reaction. He stood where he was for a couple minutes just staring straight in front of him, he looked like he was going to cry. Then he slumped to the ground, pulled his knees up, crossed his arms over them and put his head on his arms, for a second I thought he was crying. My big tough guy who didn't ever deal with anyone's crap looked as hurt and helpless as he could get, he looked more helpless then I felt. I mean what could I do, I had no idea whether he would want to be left alone or if he'd want someone to hug him and make him feel better so I sat where I was, on his bed, leaning against the wall just looking at him hoping he do something to help @CAPS1 decide what would help him feel better. In the living room his parents were still screaming and yelling at one another when another voice joined in, it was his step mom's friend, @PERSON1. She was trying to stop them from fighting, trying to help but @PERSON2's dad, @PERSON3, wasn't one to interrupt, when he was mad you simply stayed out of his way. @PERSON1 had made a mistake. Suddenly there was a crash, @PERSON2 jumped, and the sound of cupboards being slammed and glass being broken, the only statement I could make out was ""that was your grandma's, your mom is gonna be pissed!"" from @PERSON2's step mom. @PERSON2 got up, walked over to his door, and locked it. He stood there for a second with his forehead against the door then he turned and walked over to @CAPS1, he laid @CAPS1 down and cuddled with @CAPS1. There was more shouting now, something about food, cars, and getting all of someones crap out of the house. There was the sound of food being thrown, then a door slamming and tires screeching. Finally they were done. @PERSON3 was leaving too, you could tell by the sound of a big diesel truck driving off. Now we were alone, @PERSON2 finally looked at @CAPS1, I could tell he was sad, he still looked like he wanted to cry. I could tell he hated the fighting and that's when I realized that's what had been wrong with him all day, they had been fighting like this all week, they were getting divorced. It wasn't the first divorce he had been through either, that was his dads third wife that had just walked out the door. ""@CAPS2, that's hell and really scary. Promise @CAPS1 WE will @CAPS3 fight like that?"" I said. I had @CAPS3 heard anyone fight like that and frankly it scared @CAPS1, I would @CAPS3 want that kind of thing going on in my house. ""I promise.""he smiled. I kissed him on the nose and went to get up but he pulled @CAPS1 back down and kissed my nosed, I looked at him and smiled "" @CAPS4, I really really gotta pee."" That was all it took, he laughed, I hadn't heard his laugh all day." 25 22 47 5 5 5 5 5 5 5 5 6 4 4 4 +21344 8 " Dog @CAPS1 Of @DATE1 @CAPS2 made me laugh every time I saw her droopy ears and pointy little nose. @CAPS2 was my best friend, my dog. @CAPS3 brought me happiness every moment I was with her. Barking at the squirrels in the backyard to keeping me warm at night. All the crazy stuff that amazing dog did, brought a smile to my face. The laughter and joy to my heart. Every @DATE1 when we went camping with the @PERSON1 family, we had to bring her with us. We had to bring her her own sleeping bag and camping chair to sit in. After a long day of swimming and walking around the lake,@CAPS2 would hop up in her chair and go to sleep by the warm fire. When we walked with the other families dog @PERSON2, @CAPS3 would carry her own leash like in her mouth like I would've been holding it. Every little thing @CAPS2 did differently than the average dog made us laugh. @CAPS2 was ""@CAPS4,"" as we called her. @CAPS3 also loved to ""log."" @CAPS2 pulled around giant logs or sticks in the water and chewed on them until there was nothing left but back. All of the grandparents loved her too. Grandpa had special cookies just for her because @CAPS2 didn't like just any cookie. The time @CAPS2 went over to his house on his birthday wearing her own party hat, jumping on his lap to give him a birthday kiss. He laughed so hard his eyes started to water. Every time we went somewhere the other grandma would beg to ""@CAPS6-sit,"" @CAPS3. Che loved her so much. When @CAPS2 was there @CAPS2 didn't get a kennel or a dog bed, @CAPS2 got the couch. @CAPS2 would take @CAPS3 into town to buy her a cheeseburger and go to the park. I taught her to do tricks like the @LOCATION1 where @CAPS2 bounced on her hind legs in circles, and I also taught her @CAPS16 to speak. I would say ""@CAPS9's on top a house?"" ""@CAPS10. (@CAPS11),"" ""who was the greatest @CAPS12 player ever?"" ""@CAPS10 (@CAPS14 @CAPS15),"" and ""@CAPS16 does sandpaper feel?"" ""@CAPS10."" That made everyone laugh. We would spend hours doing nothing but tricks and playing in the back yard. Our family took her on @CAPS9 we called ""@CAPS3 @CAPS1,"" to the river to go swim and fish with us. @CAPS2 had fun running and splashing with us in the water. We also took her to the coast to play on the beach.We took her everywhere with us, and @CAPS2 loved it. @CAPS2 was also the only dog at the park that knew @CAPS16 to slide. Everyone was so amazed at @CAPS9 @CAPS2 could do. They had never seen anything like her before. @CAPS3 made many people laugh and smile when they saw her. @CAPS2 was my best friend and the smartest dog I knew. From going to the park to slide, camping and swimming to just being a lazy dog, @CAPS2 made me laugh. @CAPS2's gone now, but her memory still remains. @CAPS2 will never be forgotten. " 22 25 47 5 5 5 4 4 4 5 5 5 5 5 5 +21345 8 "Laughters importance in human life In life there are many things that make a person happy but none come close to the joy of laughter. @CAPS1 and friends always come together and share a good laugh, it's why we get together, to have a great time with the ones we love and enjoy being around. My @CAPS1 every year gets together on thanksgiving and it is always one of my favorite times becuase when my @CAPS2 shows up he really knows how to make you laugh until you drop to the floor crying becuase you are laughing so hard. He has that sense of knowing how people work and he knows that a smile and a laugh could turn someones bad day into a fantastic day. @CAPS1 is the greatest thing someone could ask for and when every one is together it only makes the time sweeter, now add a laugh, a few smiles and you have yourself a great time! My @CAPS2 has so many jokes and corny lines that he can use to to try and make somebody laugh but its not just what he says that makes it so funny, it is the timeing in which he does it. I wish to learn from him and use his people skills to return the favor and help people have a better day just by sharing a good laugh and put a bit smile on there face becuase not only does it make them feel good but it also can make yourself feel better knowing that you just helped somebody else have a better day just by telling a small joke or saying something funny that got there attention enough, and you never know taht person could one day turn back and remember what you did for them and tell somebody else and then it's a domino affect. He/she will tell somebody about what happened it and they will make somebody else's day better just by a small and simple laugh. Most friendships and relationships start with laughter because one of you had the confidence to break the ice with one another, sometimes thats all it takes to start a friendship that will last a lifetime. So every one can share a good laugh, it doesn't matter who you are or where you come from everybody is subject to a ""hoot and a holler"" every now and then. When I met now my best friend who is like a brother to me, it all started with a joke that brought a smile to both of our faces and an unforgetable laugh. From that day to now we are the best of friends that life could have handed us, so all it takes is for you to want to really go out and just be yourself and make somebody laugh. Laughter is the greatest thing in life that people need to do every day to keep their spirits high and lively no matter the circumstances that your in. The military has to go to war and live in an hostile inviroment but they still find time to sit down as a unit and share a drink and luagh about something. It is in our blood to enjoy life so don't try to avoid people or the luaghter that wants to come out. When your having a terrible day the best thing to do is go to a buddies house and just hang out becuase the people that truely care about you will find a way to enliven your spirit and make you laugh which will bring a smile to your face and whole new start to the day, it's like a refreshment for your body. When i am having a bad day all i have to do is think about something that me and a friend did that was funny and it will bring either a smile across my face or laugh coming out and sometimes both. Laughter is the key to life becuase it can turn anything negative into a positive. When you go to a party with @CAPS1 or friends do you sit in the back and think about nothing, no you get up and have a great time with your friends and always end sharing a good laugh with somebody. I believe with all my heart that laughter is not just the key to life but the key to the inside a person, it shows who they are becuase nobody can hide or shake the want to laugh at something funny, it's just not possible for somebody to do. Laughter comes from the heart and the soul inside a person and those two things alone are very powerful and when they want to sing and rejoice which comes out as laughter you can't deny the need. When two or more people are gathered the ability to create an enviroment where anyone can be themselves and enjoy the laugh not just fake it it what every person looks for so when someone said this, it is so true ""Laughter is the shortest distance between two people""." 15 17 32 3 3 4 4 3 3 4 4 4 4 3 3 +21346 8 " A @CAPS1 time ago when I was about @NUM1 years old. I had moved to @LOCATION1, after @NUM2 weeks went by @CAPS2 parents started going to church, while we was at church I meet some other kid who was about @CAPS2 age. I didn't know but I saw in his hand. @CAPS6 hasa deck of card. I noticed it right away that @CAPS6 liked to play yu-gi-oh which is a card game, which is very fun to play when I was @NUM1..., I wanted to ask him if @CAPS6 wanted to play the card game yu-gi-oh but I was too nervous to ask him, after church ended and @CAPS2 parents and I went home the day passed by. The next morning I had to get ready for @CAPS2 first day in school in @LOCATION1, it was kinda hard since I am going to be in that new school with no friends but once I got their I notice something right away i saw that same kid from yesterday I was kinda surprise since @CAPS6'd go to the same church as me. After @CAPS2 teacher told me to sit down I took a seat, @CAPS2 teacher begin roll call saying each students in are class name, each students replied and said ""here!"" when it came to that other kids turn his name was @PERSON1,once class started it went by kinda fast when you are busy doing class work so once lunch started I went to have lunch and surprisingly a lot of students in @CAPS2 class are nice to me they asked if I wanted to be their friends. I was happy since they asked but that one kid @PERSON1 didn't ask. So I thought @CAPS6 was mad at me later on after school before I gotten on the bus to go home I saw that @PERSON1 kid again so I ran to him and asked if @CAPS6 liked playing yu-gi-oh? @CAPS6 ""replied yea what bout you?"" I ""told em yea we should play yu-gi-oh sometimes"" @CAPS6 said we could play this @DATE1 at church. I told em @CAPS3. later on that day I told @CAPS2 older brother @CAPS4, I made some friends at are school, and this @DATE1 I'm going to play yu-gi-oh card with one of them named @PERSON1 who goes to are church, @CAPS2 brother @CAPS4 told me oh... @PERSON1 goes to are school? I said yea and @CAPS6 said I played yu-gi-oh card game with him last time at church. I was shock since @CAPS2 older brother knew @CAPS6 was and i didn't that time. I asked him why @CAPS6 didn't tell me @CAPS6 knew someone that play yu-gi-oh card, @CAPS6 said "" cause you didn't ask"" I was like... Oh..... Me and @CAPS2 brother started to laugh cause i didn't know @PERSON1 was @CAPS2 older brother friend and @CAPS6 laughed at me cause I never asked him if @CAPS6 knew anyone that played yu-gi-oh card game." 15 16 31 3 3 3 3 3 3 4 3 3 3 3 3 +21347 8 " It was @DATE1. The day was beautiful and full of happy faces. A perfect day to be at the fair. I was sitting on a bench next to @PERSON1 this guy I really liked, but I doubted @CAPS6 liked me of course. I had caught him staring at me a couple of times and I just thought I had something on my face that really cached his attention, like a piece of food since we had just at a couple minutes before or something. I looked at him and asked ""@CAPS1?""""@CAPS2"" @CAPS6 said with a huge smile on his face.""@CAPS3 tell me @CAPS1 @CAPS14 funny"" I demanded throwing a smile back at him.""@CAPS2 is funny, but.."" @CAPS6 paused for a moment.""@CAPS5 can i ask @CAPS13 out?"" @PERSON1 asked. I felt my face turn red, my body temperature raised and my leg began to move without control. ""@CAPS6 cant know I have strong feelings for him"" I thought to my self. ""@CAPS7 just play it off like @CAPS10 hes joking..because @CAPS6 is joking right?""""@CAPS8 @PERSON2? are @CAPS13 okay?"" @CAPS6 asked as @CAPS6 put his hand on my lap.""@CAPS9 I'm fine, its just.."" I paused for a long time.""@CAPS10 @CAPS13 say @CAPS3 I @CAPS17 understand"" @CAPS6 said as his head slowly faced the ground. I didn't know @CAPS1 to say, I felt stuck. I wanted to say @CAPS14 much but the words wouldn't come out.""@CAPS11 don't mess with me like that, I know your joking @PERSON1"" I laughed nervously. @PERSON1 looked at me with a confused face like @CAPS10 @CAPS6 was saying ""Was I not clear enough"" or ""@CAPS12 I just walk away?"". His smile turned into a serious expression and the glow of his eyes had disappeared. I felt something on my throat, words were stuck and they needed to come out!.""@CAPS13 can ask me out any time and my answer @CAPS17 always be @CAPS9"" I said feeling relived.""@CAPS14 does that make @CAPS13 my girlfriend @PERSON2?""""I don't know @PERSON1..@CAPS13 have not asked me out yet"" I said with a grin on my face. We looked at each other for a second and busted out laughing, like @CAPS10 it was the funniest thing in the world. I didn't fully understand why we were laughing and @CAPS6 probably didn't either, but that didn't stop us. I started feeling a cramp in my stomach from all the force I was putting on my it which maid me to stop laughing. @PERSON1 took my hand and we walked towards the roller coaster ride. In my head I imagined him kneeling down on one knee and asking me to be his girlfriend, and at that moment the noises in the background would disappear, and the camera would only be focused on us. Although that probably only happens in the end of a romantic movie were everyone lives ""happily ever after"". I looked over at @PERSON1 realizing I wasn't in a movie, I was in this place called reality. @CAPS6 was looking at me like @CAPS10 I had something on my face again, but it didn't really bother me any more. We got on the roller coaster and a few other rides, which totally made me feel like I needed to throw up. I was standing in the ticket line wen for some reason I felt this joy inside of me, like @CAPS10 I was the happiest person on this world. @CAPS2 bothered me that day not even wen something was supposed to bother me, I just ignored it because I felt like @CAPS10 it really didn't matter. I had the biggest smile on my face like @CAPS10 I had just got bot-ox and couldn't make any other expression except for that one. The sun hid behind the clouds, and the day darkened right before my eyes. I had felt like the day hadn't been long enough because of all the fun I had been having. I was starting to believe that time really does fly, even though i knew better than that. The time to go home had come and the people heading out of the fair had exhausted looks that didn't even let them smile because they were @CAPS14 worn out. @PERSON1 and I walked towards the car. As we walked @CAPS6 seemed kind of worried. ""@CAPS15 wrong @PERSON1"" I asked noticing his not @CAPS14 happy expression. ""I haven't officially asked @CAPS13 out"" @PERSON1 said. ""@CAPS16 ask me I'm ready"" I repliedJorge hurried in front of me and stopped me from walking. ""@CAPS17 @CAPS13 be my girlfriend @PERSON2..Again?"" @CAPS6 grindButterflies ran down and up my stomach, and my feet weakened. ""uhhhh..I mean @CAPS9 of course @CAPS7 be your girlfriend"" I stuttered. I guess the expression on my face was hilarious or something because @CAPS6 began to giggle. @CAPS14 i decided to laugh too even though I didn't know @CAPS1 was funny but oh well. We got in the car and drove home. On the way it was kind of quiet but it was somehow worth it. " 19 15 32 32 4 5 4 4 4 3 3 3 3 3 3 3 3 3 4 4 4 3 +21348 8 " In all of our lives there is that one person that is so special you would never do anything to hurt them. Whether that person be a close friend, a significant other, or a family member. The people that are involved in our lives significantly are there to help us through the rough patches, bring us up when we are down, and be there for us. Friends are one of the most important people we have in life. Friends are someone we can talk to and they understand, someone we share everything with including clothes, food, etc. They are the ones that get us through each day with a smile. High school is filled with drama, it's the same old story just, a different day. I have the best group of friends, we are very close and spend a lot of time with each other at school and outside of school. They are there for me when I need them the most. Recently this guy, @PERSON1 and I have been trying to work on our relationship but he had been lying to me and cheating on me but everyone of my friends that I talk to abut the situation say the same thing, ""he is going to hurt you"" and ""he's not worth your tears."" I have class with him every other day. It's not like I get to choose when I want and don't want to see him, some days are just better than others. The bell rang, right after lunch, and I wasn't in any hurry to get to the band room. The band room is very big, smells like old cheese and is like a trampoline for sound to bounce off of and explode in your face. I don't enjoy that class at all. I walked in the room nonchalantly and set all my books on my chair and began walking to my cubby. I grabbed my instrument walked back to set it on my chair and went to talk with some of my friends. It hadn't been a bad day so far, it was just a regular day at school. Entering the band room I had a feeling that @DATE1 was different. He walked through the band door with a huge smile on his face but I couldn't help but look away and frown. Mixed emotions are the worst, he does one thing and you love him and he does another thing that drives you insane and makes you want to hurt him. He sits right behind me in band and I am constantly turning around to talk to him but we never seem to get in trouble except for @DATE1, we were supposedly talking to much. I don't believe we were talking to much, because @DATE1 was where I wanted nothing to do with him. He was upset with me and I was upset with him, so we were even. Twenty-five minutes passed by, each minute dragging on longer and all I was thinking about was him and what I had heard he was doing. It's never a good feeling when you know something is wrong. I confronted him about what people were telling me. His response was ""don't believe what you hear, believe what you see."" I didn't know what was going on, but tears started pouring out of my eyes, running down my face like a crystal clear waterfall. I asked my teacher if i could take a minute out in the hall, and she agreed, so I sat in the hall, with tears running down my face. One of my friends walked out the door and sat with me to comfort me. We started talking and I told her everything that was going on. She gave me a hug, and start making jokes about him. I couldn't help but laugh. I even smiled and made my own remarks that got her to laugh as well. After a few jokes, and a bunch of hugs, the tears went away and I was smiling. Neither of us wanted to go back in class but we didn't really have any other options. We weren't very close friends, but our talk during class, made us grow stronger. Even when everything is going wrong, you should count on your friends to tell you the truth, and give their advice, because they are always right so don't second guess them. They know how to make you feel better and it always seems to work. Laughter is much more than an emotion. It gives you strength when you are weak. It builds you up when you are down. Laughter brings relationships closer, and sometimes all we need is to smile. Laughter also helps create memories, the nights you stay up talking and laughing until two in the morning are the ones you will remember forever. Laughter is an important aspect to everyone, we all need a day to just relax and take a step back to laugh." 20 19 40 40 4 4 4 4 4 4 3 4 3 3 4 4 4 4 4 4 4 4 +21350 8 " Laughter is the only expression in my opinion to always be positive. My dad claims laughter is the reason for his six pack, it works your muscles. @CAPS3 is very important in a relationship. If @CAPS5 don't have any kind of sense of humor, consider yours self inhumane. When it comes to my family, I am always @CAPS3. @CAPS3 is always positive and happiness follows is in life. If I have a problem I think of something that would make me laugh, a laugh is always nice.. Relationships can be created by having things in common, see my dad and I don't always get along. When we laugh everything else is silent, it sets the mood. If @CAPS5 didn't laugh around my dad he would ask ""@CAPS1 @CAPS5 got a sore sense of humor?"" @CAPS2 again if your not @CAPS3 with me at something funny, @CAPS5 must be an outsider. @CAPS3 is positive and positive energy is good. I laugh a lot, I laugh out loud. @CAPS5 would not have the relations @CAPS5 have @DATE1 if it wasn't for @CAPS3. Some people say laughter is the shortest distance between two people. I agree with that statement. If it wasn't for laughter I think that I would be very negative, I would be disciplined more and to think I would be more distant with my dad. As I grow older I see me maturing, I laugh a lot less... My dad also see's the change, we have grown further apart witch is normal with every teenager growing up. My dad is very funny, and even know I'm glad to be growing up I wouldn't trade the world for the humorous relations I have with my dad. Laughter is all around, I see people walking down the street @CAPS3 on their cell phone. I hear of the phrase ""@CAPS3 all the way to the bank,"" I would be @CAPS3 if I was rich too. Being rich is a positive thing, but if @CAPS5 are not @CAPS3 and happy in life then money doesn't mean a thing. I could be poor and @CAPS3, and still be happy. If @CAPS5 are not happy in life then everything @CAPS5 have or worked for means nothing. Laughter brings people togethe,r @CAPS2 is no doubt. I've met many people by just simply ""@CAPS3."" @CAPS5 will be surprised what @CAPS5 can get by just putting a smile on your face, or if @CAPS5 find something funny, ""@CAPS6."" I have a very humorous dad, I would not change it. I believe everything happens for a reason, and I believe that everyone deserves a good laugh and to be happy. I think they deserve it, it's unfortunate not everyone is happy in life, so why don't @CAPS5 personally go out of your way and make someone laugh? @CAPS5 don't know their situation, it is nearly possible a laugh can take @CAPS5 many places. @CAPS5 never know what a laugh will bring @CAPS5 until @CAPS5 find out? Laughter is a strong element in relations, and can base a personality profile of someone and who they are." 18 18 36 4 4 4 4 4 3 3 3 4 4 4 4 +21351 8 "Have you ever seen the phrase @CAPS1,@CAPS2,Laughter? Have you ever asked yourself what it means? I believe it can mean many different things for many different people. There are some people that can take it negativly andthen there's some that take it positivley i believe that those @NUM1 words in that phrase are everything you need to have a perfect life. A perfect life isn't about having the best car the most expensive clothes or the nicest physical appearence. Im going to tell you why laughter is very important in any kind of relationship. Im @NUM2 years old now but i was @NUM3 when i met the person who makes me laugh no matter the situation. He is a male tall, brown skin. He is @NUM4 years old now. but he was @NUM2 when i met him.It all started at school thats where we met. He always made me laugh i remember once i was very upset because i was having some issues at home and being with him was something i needed to actually forget what was going on he is a very honest person and thats what was good about him he would make any situation into a joke. even emberassing things that either happend to me or him he would turn them around to the piont where i wouldn't feel emberassed anymore. I @CAPS1 it how i can be myself with him. He was the uphill on a rocky roll-a-coaster. @NUM1 years have gone by and i am now married with that best friend that i had and we have two beautiful twin daughets together and i @CAPS2 my life to the fullest because he makes me happy. Instead of arguing its laughter and life is just better that way not only it makes me laugh but thats what makes him a good person and other people feel good around him. Laughter not only is good in a male and female relationship but it is also good in a female and female relationship. I have a best friend. not only is she my best friend because she's honest, and kind but because she's funny she makes me laugh we can laugh at the simplist things ever most people @MONTH1 think we are crazy, we aren't that just the sound of a happy life. I believe a life without laughter is like a straight road boring and long. life with laughter is like a curvey road you just dont know what to expect. My mother and I have a pretty solid relationship we do alot of things together but what i enjoy most is the laughs we have sometimes when something occurs at that momment it might be downhill but a year from that day you look back and its funny its always better to enojy laughing with somebody that you can consider dear to you. Laughing at the memmories is what i enjoy most with anyone because that memory you will always carry with you and sooner or later you are going to laugh at the fact that it happend, when and where. So when ever something happens to you that you @MONTH1 consider emberassing look back at it a year from that day im sure you will get a laugh or atleast a smile out of it. " 15 16 31 3 3 4 4 3 3 4 3 4 3 3 3 +21352 8 " The @CAPS1 of The @CAPS2 @CAPS3 I was @NUM1 years old, and I lived on a farm out side of @LOCATION1 OR. I spent most my time playing with my brothers, @PERSON1, @CAPS4, and @CAPS5. We did everything together, from caching frogs to eating bugs. We had just moved to a new house, and my dad had a lot of stuff to do to make it a safe and fun environment. His first thing he had to do, was to build a pull @CAPS3, which is a building on top of a garage. He started by poring cement on to the freshly bulldozed land. He made square holes in the cement to put the poles in, so it would hold the @CAPS3 up. Then he started to make the main building on top of the garage he made. I was so exited to see my dad building this @CAPS3 with his bare hands. Once he made the whole inside safe i was let in. I walked in and was amazed by how beautiful it was, and how perfectly built it was. But there was still stuff to do. My dad and my oldest brother @PERSON2 were putting the shingles on, so the rain and other crap could not get in. The next day I woke up to them hooting and hollering, like a bunch of chickens when they lay their first egg. They just finished the pull @CAPS3. I sprung to my feet like a cat that just got shot by an air-soft gun, and ran down stairs to meet them. When they came in, it looked like they fell in a pond. They were soaked in sweat. Right away my brothers and I ran as fast as we could to the brand new @CAPS2 @CAPS3. When we entered the @CAPS3, we felt a weird sensation, like if something just got cold and wet on our feet. Then we know what we had just done, we had just ran on the freshly painted floor. We all looked at each other and started trying to find away back with making the least mess. We walked backwards in our previous foot prints. When we finally reached the stairs, we had to find a way to cover our mess we had just made, or else we would be in a lot of trouble. So we all came up with a plan, it was to paint over our foot prints with the left over paint. So right away we started to paint over our mess we had made, with the left over paint we found from the project. Soon we were all done, and it was a great relief that we would not get cot. Later that day my dad and older brother went to the @CAPS3 to see if the paint had dried. to their surprise they sow a bunch of little foot prints on the stairs leading to the freshly painted floor. As they went up the stairs they kept seen more and more foot prints. Ones they reached the top they looked at the wet floor and they only sow wet paint, no foot prints. As all this is happening my brothers and i were watching from our window, we could see everything. Soon we sow them coming back so we went down to meet them. As they walked in i could see a puzzled look on there face, it was a look of confusion. They entered the door and looked right at me, it was like if i just stole a hundred dollars and just got cot. My dad politely said ""can i see your feet?"" ""@CAPS6"" i replied with a scared face. I showed him my feet and then he said ""did you perhaps go in the @CAPS2 @CAPS3, then try to fix your mess by painting over it?"" I looked at him with a dumb face and said ""@CAPS6"". He just had a great big smile and said, ""go wash your feet"". Later that day the floor dried and we all went up there and ate dinner." 17 20 37 3 4 3 4 4 3 4 4 4 4 4 4 +21354 8 " i woke up at @NUM1 from a cal from my cousin saying he wanted to hang out and introduce me to my cousin i have never met before. after we got off the phone i hung up and scurried into the shower and got ready as fast as i could. once they got to my house i frantically ran to the door and opened it really fast expecting some kind of reaction from my new cousin, but the one i got wasn't what i expected. right when i opened the door he began cracking up laughing at my for a couple of minutes. i got kinda mad at him because i didn't know what he was laughing at , until i looked down and realized i had no pants on, i rushed back into my room and put some shorts on and came back into the living room while they were still on the coach laughing at my stupid mistake. i sat down on the couch across from them and asked them what they were laughing about and that i did it on purpose for a joke, they didn't believe me at all, i don't blame them because that was the stupidest thing to say in that circumstance. after they stopped laughing my cousin asked me if that was the only thing iv done like that,i replied no, and he started on about some stories about him doing dumb stuff like i did, that ended up being the only topic we talked about for half the day, just reciting dumb stories about ourselves that were embarrassing. it turns out that just because i made that dumb mistake it made it easy for us to get along and start talking as soon as he walked in and just for that reason we have had a good relationship since we met .in the end i was glad i did that because it made us really close because we can now just laugh at each other when either of us do stupid stuff. and that's my story in which laughter was an element in a relationship between my cousin and i." 17 18 35 4 3 3 4 4 3 4 4 4 4 4 3 +21355 8 "It was @NUM1 pm. at night i was watchin @CAPS1.V my dad said that he was go to the store I waned to go with him, my mom said no because he was goin to be back soon that he was only goin to get a few things from the store. My dad said it was okay so i want with him, on the way there we saw a man on his bick he didnt have much control on his bike it look like he was ging to crash on one of the poles, we passed by him we looked back and the man on the bick was on the ground it was funny me and my dad were laughing but we stoped and helped the man, at the store me and my dad went sepret ways i went to the candy aera and he went the other way. I was done looking at the candys so i went to look for my dad i couldnt find him eney where at the store so i went outside to look for him the car wasnt there i thought he went to the other store I went he was not there so i went to the store to look agen one more time he was gone so i started walking to my house whle I was walking a car pulls over and aks me if I waned a ride i said no thanks they insisted but i told them once agen that it was okay that i lived in the next block, they left so i kept walking. Sedently i heard a noise behind me i turned back and it was a black tall shadow i got scared i thought i was gana get robed, i kept walking faster and faster then i started runing i turned back and the shadow was far behind me. A car passes me i looked and it was my dad I tried calling him but he couldnt hear me he was geting way so i throw a rock at the car my dad stoped imidiatly i ran to it, my dad seen me he told me that he had forgot that he toke me with him. At the end we both started laughing we didnt tell my mom because she would get made at my dad." 13 15 28 3 3 3 3 3 2 3 3 3 3 3 3 +21356 8 " In all of the times people paid a lot of attention to laughter. We can't imagine our lives without @CAPS9. We @CAPS8 every day, make jokes,smile. For me laughter always was one of the best things in the world! @CAPS9 helped me so many times in the most difficult situations. I want to tell you one story of my life when laughter played a huge role.@CAPS9 all started @DATE1 in @DATE2. I was living in @LOCATION2 at that time and was trying to get a scholarship to go to the @LOCATION2 for one @DATE1 as an exchange student. To do this I had to pass a lot of tests, to write millions of essays, go through all the paper work... One of the things that i had to do was to talk to the group of other participants and two @CAPS1 for about one hour. So, people who chose the kids to go abroad will look at how we can communicate with others. Can you imagine speaking foreign language with group of people who you have never seen before? No. Especially when all of you know that only one from the whole group will go to @LOCATION1. You know that everyone will try to be the best, the leader, and hardly ever will let others to say something. But I still hoped everything would be fine.I remember that day as if @CAPS9 was yesterday. Everything in details. @CAPS9 was @DATE3 @TIME1, when I came into the white big building of @ORGANIZATION1 where the competition was going to be.I came in the class and two @CAPS1 introduces us to each other. And at that exact moment, when I saw other three people, at that exact second I realized that I actually had to worry! I saw their faces. They thought the same. We had nothing in common. At all. They all looked different. One girl was all in black. No kidding. black big shoes looked alike to old army ones that my grandfather has, black skirt was longer then the girl, black ties, dark t-shirt, three or four sizes bigger then the girl; you can not even imagine how dark her short straight hair were. She looked like if she was a part of the darkest night of the @DATE1. Another girl was a complete ""barbie girl"". You know, typical @CAPS3- two good for everyone. She was tall, thin, long blond hair and pink clothes. All pink. Bright-pink jeans, light-pink top and high heels. I remember her saying the girl in black something like "" @CAPS4, I am the best one here"". Nothing else about her, just @CAPS3. Also there was one boy. He was a wonderful example of rap person. All his look from shoes to attitude were just screaming about how much he likes rap. No, loves rap. Big blue jeans, cool in rep companies @ORGANIZATION2 shoes, white tee-shirt with a face of popular in @LOCATION2 rap musician, a hoodoo and a big hat. Also, he had a backpack and i was able to hear music from his I-pod. Well, me, I was in new green pants, grey top, black cardigan, nice grey purse and black flats.. I looked like a girl who loves style, I guess. I can not tell you what they thought about me. I just don not know. But I'm pretty sure that I was a person who just reads magazines all the time and watching @CAPS6 fashion shows. So, we all looked super different from each other and seemed as we were interested just in our own thing. And in nothing else.I didn't understand how we were able to be in the same group. But we were. The first ten minutes were awkward. We did not know what to talk about since we all were so different. Two @CAPS1 who were making notes on how how our conversation is going decided to help us.They gave us a random word, something like "" jungadzhumba"" and told us to think about what @CAPS9 is and to perform @CAPS9. That seemed to be an interesting thing to me but not for others. The girl-in-black said that @CAPS9 is stupid. And then, the next second the thing that changed everything happened. The boy said a joke about @CAPS9. Yes, just a joke, and i do not even remember what @CAPS9 was, the only thing is that @CAPS9 was really funny. We started to @CAPS8. And the laughter helped us. We were talking so long, more than one hour, but @CAPS9 seemed for us so fast! We were talking about everything in the world! So many topics, we were talking in that room, and then after in the restaurant, and in the subway on the way home... @CAPS9 was wonderful time! That day is very important for me now, because at that day I realized that laughter is a key for everything. I've heard @CAPS9 before, but the real understanding was at that @DATE3. Now my favorite phrase is: ""@CAPS8, if you don't know what to do, just @CAPS8!"" @CAPS9 will help you." 17 20 37 4 4 4 4 3 3 4 4 5 4 4 4 +21357 8 "Laughter is an amazing feeling. @CAPS1 feel good, @CAPS1 feel wonderful, happy, secure, and loved. It is what brings the best out of people, in my opinion. People laugh to show a sense of humor, and to show love. I am more of a depressed person, and my therepst always told me, ""@CAPS1 don't want wrinkles, so smile, and laugh it out.""I predict that laughing is what makes people who they really are. When @CAPS1 are mad, or even sad. What do @CAPS1 want to do? I don't think @CAPS1 would want to be grouchy all day? I would think @CAPS1 would want your friends or family make @CAPS1 laugh, so @CAPS1 can get over what your upset about, move on and be happy. In life, nothing is more important than love, and laughter. There is no love with no laughter. No laughter without love. We need one another to keep our days going. Especially for those who have been through a lot in life. Like me. I have family problems, I'm a sophomore, yet I am still standing tall with a bright smile on my face. I know, that everything will be @CAPS2 fine, @CAPS4 I @CAPS2 laugh it out. It makes me feel safe, makes me feel like, I am needed in this world. I ve have been through so much, that others look up to me. Wwhen it comes to that, I know exactly @CAPS2 what to do. Make them laugh. Nothing stands out more beautiful than a human laughing. A lot of people has always wondered how I could be so strong, because of all the horrible situations I have been through since middle school. Aand I tell them, ""@CAPS2 laugh it out. It makes @CAPS1 feel way better in the end."" I mean, @CAPS1 @MONTH1 feel silly when your done laughing, but also feel great. That @CAPS1 can @CAPS2 laugh, and move on. Because it is life. Notihng is perfect, things will get messed up, people come and go. There will be tears, and there will be laughter. When it comes to an end, let it go. Laugh, and @CAPS2 be happy that he/she was once yours. Memories last forever, cherish every moment @CAPS1 have, laugh and live life as it is, because it is too short to waste time, and frown. Laughter is the beauty of a person's voice. Some are high, and some are low. Some are loud, some are very quiet, and giggly.I have a loud mouth. Also a loud laugh. I am very tiny, yet the volume that comes out of me when I laugh makes @CAPS3 so surprised. I entertain people with my laugh, depending on my mood, my laugh will change tone. Sometimes @CAPS1 can say my laugh is annoying, but I'm not afraid to laugh. I'm not, so don't be afraid, speak out, and like text messages that @CAPS3 sends to eachother, laugh out loud. Everything will be okay. It takes a lot of strength to make me stop laughing. Because I am a ""blonde."" @CAPS3 says. No matter what, I'll always be laughing. In fourth grade my teacher once said, ""@CAPS4 @CAPS1 laugh a lot. @CAPS1 will live life longer.""I still remember it from then on, I still, and will believe in that quote. Laughter is what makes me who I am today, and it has made me become a better, and stronger person. The most common thing that people do is laugh. @CAPS1 can walk down the hall, in the mall, next door, outside, at a park, where ever else. There will always be people lauhging, and sharing jokes all over the world. I'm glad people can speak through laughter." 20 21 41 4 4 4 4 4 4 5 4 4 4 4 4 +21358 8 "Laughter is a @CAPS1 @CAPS2 do things like music, tears and laughter have in common? @CAPS19're all universal languages- @CAPS19 surpass any @CAPS1 barriers to get the point across without words. @CAPS21 was definitely the case the time my @CAPS3's best friend @PERSON3 came to visit from @LOCATION2. I was eight at the time. I'd lived in @LOCATION1 all my life, and hearing other languages wasn't something that happened on a regular basis. When my @CAPS3 announced that her college roommate @PERSON3 was coming for a few days along with her family, I felt some apprehension at the idea of trying to talk to them. However, my @CAPS3 was encouraging. ""@CAPS4 will be a learning experience!"" was her enthusiastic war cry any time I whined. ""@CAPS5'll learn some @CAPS6, and @CAPS19'll learn some @CAPS7."" @CAPS4 was a cold, stormy @ORGANIZATION2 day when @CAPS19 arrived. As @CAPS19 pulled their blue minivan into our driveway, I @CAPS12 felt shy. After all, I only had faint memories of my ""@CAPS9"" @PERSON3's visit years ago, and I'd never met the rest of her family. However, my sense of worry was soon replaced by @CAPS9 @PERSON3's rich voice: ""@CAPS11! @CAPS5've gotten so tall!"" @CAPS12 I was enfolded in her warm embrace, and I smelled the familiar smell of my @CAPS9: chocolate, detergent, and something spicy as if she'd just been cooking. Soon @ORGANIZATION1 had moved on to greeting my younger sister and I was left awkwardly standing next to @ORGANIZATION1's three children. I realized that I didn't know @CAPS2 to say- or even how to say anything to them. While @PERSON3 was bilingual, yet she didn't speak @CAPS7 around her children. There was a total @CAPS1 barrier. The awkwardness passed momentarily when the adults intervened. @PERSON3 bustled into our silent mass and began introducing us. Her oldest was tall, dark haired @PERSON1, who was the ancient and worldly age of twelve. Closest to my age was nine year old @CAPS14, who had a quick smile and a mischievous glint in her eye. The youngest, @PERSON2, was petite even for her tender age of four. I smiled and nodded as each was introduced, and smiled and nodded some more as @PERSON3 introduced me and my sister @CAPS15 to them. As @CAPS19 chattered back at her in @CAPS6, I marveled at how clever @CAPS19 seemed for speaking another @CAPS1. How, I wondered, did my @CAPS7 sound to them? My @CAPS3 soon ushered us into the house. She had begun making dinner, and @PERSON3 joined her in our small kitchen to ""catch up on life."" For a while, we kids stayed close to our parents, like birds hesitating to leave the nest. Soon, however, @CAPS4 became apparent that seven people was too many to fit in one kitchen. ""@CAPS18 don't @CAPS5 go show them your rooms?"" my @CAPS3 suggested. ""@CAPS19 still haven't met @CAPS20!"" @CAPS21 seemed like a good idea, since @CAPS20, our cat, was friendly to anyone and everyone. @CAPS15 and I led the way to to find him while the @CAPS23 talked in hushed @CAPS6 voices behind us. As we got to the living room, @PERSON2 @CAPS12 let out a squeal. She ran across the floor to @CAPS20, who had been napping in the sun. I was worried that she would startle him, but the overweight tabby simply got up sleepily and yawned. And then, to our amazement, @CAPS20 did something he'd never done before. He jumped up and placed his hind legs on @PERSON2's chest. He was a large cat, and she was small, so @CAPS4 turned out so that he was looking her in the eye. For a moment, @CAPS19 looked at each other, surprised, and then she fell down into a sitting position. Worried she might cry, I started to go over to help, but then something entirely different escaped out of her mouth: the contagious laugh of a four year old. For a moment, there was a surprised silence from the rest of us as she howled at the hilarity of @CAPS4, but soon we couldn't help but join in. And in that moment, I realized that we didn't even have to learn each other's languages- the laughter that we'd shared had broken the ice and the @CAPS1 barrier. I still remember that visit fondly today, because @CAPS4's the first time that I realized how alike other cultures are to our own. True, we had a hard time relating at the beginning. But by the end, we had become friends, all because of a cat, a four year old, and the one @CAPS1 we did have in common- laughter." 23 23 46 5 5 5 5 5 4 5 5 5 5 5 4 +21360 8 " One day my brother and I were at the mall looking for a hat to buy. My brother came up to me and asked if he should get it, I told him he shouldn't so then he put it back. Later on we went on our ways to look at a different store, I was at one store while my brother was at another. As I was about to make a purchase I felt a tap on my shoulder and I looked and saw a guy that was working at the last store we were at with two cops with him. I was curious why he was talking to me. He said to me ""hey where is the hat you stole from my store?"" ""I didn't steal a hat bro"" I answered back. ""@CAPS1 you did, we got it on tape that you had the hat."" said the guy. "" @CAPS2 dude I did not take a hat"" I replied. ""@CAPS3.k. then what about your brother, where is he?"" questioned the guy. I told him where he was and he went there with one of the cops while the other stayed with me while I was making a purchase. At this point I was pretty upset that my brother and I were accused of stealing a hat. The cops started to ask me questions that were personal. I told I wanted to talk to my dad and tell him what is happening. My dad was pretty upset that my brother and I were accused of stealing. My dad was asking me questions of what happened, I told him the truth of what happened. As the cop, my dad and I were walking back to watch the film of the whole incident. We saw my brother walking back with the other cop. ""I'm good to go, the video shows me putting the hat back on the rack"" said my brother. I was still upset that the guy who worked at the store did not watch the whole film only bits and pieces of it. The guy apologized to my dad and I. I was still mad, because the guy did watch the whole film, and I didn't want the people who saw me with the cop to think I was a troubled kid. As my brother and I look back at this experience we laugh about it and make jokes. There is @CAPS2 reason to be mad about we didn't steal the hat and we knew it. Laughter makes us forget about it. I think without our laughter about it this, could have been different. Laughter makes experiences more fun there is always something to laugh about. It feels like you are take a bunch of weight of your shoulder makes you relived. I could have called the manager about how I felt, and what the guy did with the video, but I just forget about it and crack a few jokes to make myself laugh about it." 18 17 35 4 4 4 4 4 3 3 4 4 4 4 3 +21361 8 " @DATE2 I woke up on a very beautiful day. The sky was clear and the sun was shining, which was unusual for a day in @DATE1. I got out of bed, as I usually do. I ate my breakfast, went to the bathroom, and brushed my teeth. I left the house feeling a bit tired but great. As I walked to my bus stop, I watched people go by, saying @CAPS4 every now and then. When I got to my bus stop, @CAPS5 one was there. I thought that maybe the bus had already come and picked the kids up. I waited and waited. Almost fifteen minutes went by. I was starting to get worried. If I had missed the bus, I couldn't go to @ORGANIZATION1. My parents worked until the @TIME1 and there was @CAPS5 one to drive me there. I then decided to walk to the next stop. @CAPS5 one was there either. By that time, I was sure that the bus had come earlier and left me behind. I started to walk back to my house. When I got there, I opened the door and went to check the @ORGANIZATION1 calender hanging on the wall. There was nothing written on @DATE3. @CAPS7 was a normal @ORGANIZATION1 day. @CAPS2 could I have missed the bus? I never miss the bus! I started to ask myself of other possibilities. Maybe there were weather problems and the schools got closed. That wasn't possible because the weather was great. Maybe something happened to the bus, like an accident and @CAPS7 couldn't come, but that wasn't @CAPS7 either because then the kids would have been at their bus stops. The more I thought about @CAPS7, the less @CAPS7 made sense to me. What was going on that day? I got frustrated. I set my backpack down so that I could look for my daily planner. I opened @CAPS7 up and searched for the @ORGANIZATION1's phone number. Then, I took the phone and called the @ORGANIZATION1. ""@CAPS1've reached @ORGANIZATION1,"" a woman on the phone said. "" @CAPS2 @MONTH1 I help @CAPS1?"" ""@CAPS3, I'm a student there and I was wondering if something was wrong because I didn't see the bus today?"" I said. There was a moment of silence. The woman didn't answer me. This was making me angry. ""@CAPS4, are @CAPS1 still there?"" I asked, with anger showing through my voice. Nothing. Then, the woman started laughing. @CAPS8 laughed for almost a minute. This had made me mad. What had I said that would make her laugh like that? ""Was @CAPS7 something that I said?"" I asked. ""@CAPS5, @CAPS5, I'm so sorry,"" @CAPS8 said, trying to keep herself from laughing. "" @CAPS5, @CAPS7's just that, do @CAPS1 know what day is today?"" ""@CAPS7's @DATE3, isn't @CAPS7?"" @CAPS8 laughed again. ""@CAPS5, today isn't @DATE3, @CAPS7's @DATE2."" I was shocked to hear that. I had spent all of my time trying to figure out what had happened. The only possibility that I hadn't thought of was that @CAPS7 was @DATE2. I felt like an idiot. I set down the phone and started to laugh. I laughed and laughed like I hadn't in years." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21364 8 " ""Laughter"" Laughter is a very big part of my life. I love to laugh, whether it is about something, at something, about someone, at someone, a funny event, a funny face, or just a funny joke. I heard once that the more you laugh the longer you live; if that is true I'm gonna live forever. I'm going to tell you a story about laughter because it is a big part of my life. I laugh the most when I am with my family and friends. They are all very funny people that are cracking jokes any chance they get. There hasn't been one family gathering or friend hangout where I didn't laugh. A very funny moment in my life that I will never forget is the time my sister and I were starting to get to know our new step-mom, @CAPS1.We were all playing this game where one person throws a football into a group of people, and whoever catches it gets the amount of points the thrower calls out. We were all getting points left and right; however, @CAPS1 wasn't doing so hot. She came up with a plan that she said would make her win. Actually, it just ended with all of us on the floor crying from laughing so hard. I had thrown the ball and called out ""@NUM1 points!"" @CAPS1 turned around. My eyes opened wide. Shayna screamed in laughter as @CAPS1 had pulled down her pants to moon us. The foot ball hits the grass, as do all of us.We laughed until our stomachs ached and our eyes watered. I really think that moment brought all of us closer together. I believe laughter brings everyone closer together. My boyfriend and I are very close because we laugh all the time; it is a very big part of our relationship. Just think for a minute. All the emotions that we humans have and deal with on a regular basis, which one is truly universal? We can love, cry, feel hate and disrespect. Most of us have sympathy and empathy, but the one true feeling we humans share with and between another person is a smile along with laughter. If you can give a person a reason to laugh, then you have connected and made a mile into an inch. It's even bigger than that. The internet has provided us in ways to reachout through laughter. Not just in miles, but in counties. You-tube is a social network of laughter. I have put many funny videos on you-tube and watched many that made me laugh. One day I made this video of my friends and I playing @CAPS5. It was so funny I thought I would put it on you-tube. I shared it with my mom who laughed very hard. She shared it with family who shared it with co workers who shared it with there family and friends.They all laughed.Laughter is all around. Laughter can start in one place like @PERSON1 and reach out all the way to @LOCATION1. Laughter also isn't always a good thing. People can go from laughing at a funny joke to laughing and making fun of a kid on the play ground. Laughter doesn't always feel good, if you're the one being laughed at. I don't like to think of laughed that way. I like to remember all the times I laughed and shared that special moment with a loved one. Laughter is in my everyday schedule. I would have to write a book in order to tell you all the times that laughter was one element in my life because it happens every day. I enjoy laughter. I hope you do,too." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21365 8 " People say ""laughter can cure anything"", @CAPS6 you know what I totally believe it to. There has been multiple times when I was sad or angry that someone made me laugh, and I have made almost everyone I know laugh when they were down our frustrated. Now, many people have made me laugh throughout my whole sixteen years that i have been alive. To be completely honest, I only really remember one moment in my life that really laughter was all I needed to pull me back to reality. My best friend @PERSON2 really knew what i need to help me out. her humor made my life real again, and because of it I was able to except life. It was @DATE1, when I got really upset because I knew that the guy I loved since seventh grade wouldn't date me again. His reason for this was because he didn't want to ruin our great and close friendship. Just because he said that didn't mean I would just give up. I tried @CAPS2 to win him back, but it just seemed like nothing was working. At this point I knew I needed to talk to my best friend, so I text-ed @PERSON2. I told her @CAPS2 I was doing, and how none of it was working. If you knew @PERSON2, you would know that @CAPS1 sees a bright side to anything @PERSON2 told me at that time, ""@PERSON1, you can have any guy ion the world, and yet, you can't seem to realize it. I don't know about you, but you must be really @CAPS3 sick!"" @CAPS1 said that once or twice because @CAPS1 knew it was true. I still just couldn't except what @CAPS1 was telling me. that never stopped me from smiling or laughing though. I'll admit those words really dried my tears up. and helped me move forward. Now it is @DATE2 time, school is out, and it's time for me to step my game up. I was still trying to win @PERSON3, the @CAPS3 of my life back. Once again I tried @CAPS2! I even asked @PERSON2 to ask @PERSON3 if he still had feelings for me. He never gave her an answer. When I asked @PERSON2 for more advice, @CAPS1 responded like usual. ""@PERSON1, @PERSON3 is just one guy, there are plenty of guys out there for you. You just need to look and stop trying for just one guy"". This got me thinking. @CAPS6 @CAPS1 is totally right, I just need to find a guy that makes me feel the same way @PERSON3 makes me feel. Don't get me wrong though, even though @PERSON2 was trying to be serious, I couldn't help but smile a little, and giggle. As I was giggling, I though t to myself. I still @CAPS3 @PERSON3 like crazy. It's the beginning of @DATE2, and I am just relaxing at my house like usual, when I get a text from @PERSON3 saying he might be moving to @LOCATION1. I just started bawling like a baby who is hungry. I quickly text ed @PERSON2 to tell her, but @CAPS1 already knew. I had one more plan to win @PERSON3 back, and I told @PERSON2 all about it. My plan is to ask @PERSON3 if he wants to hike @CAPS4. Pisqah with me before he moves. When we hiked all the way to the top I am going to tell him how I truly still feel about him, then I am going to kiss him.m @CAPS5 @PERSON2 read this, her first response was, "" @CAPS6 shoot girly, aren't you just a spitball of @CAPS3 and romance!"" I almost peed my pants when I read that. It was hysterical! My plan never happened because @PERSON3 ended up not moving thankfully. Quintin and I still haven't got back together, but I am fine with that. His and I's friendship has grown tremendously. I'll admit though that I can't help but flirt with him a lot. Luckily though, I had my best friend @PERSON2 to talk to. @CAPS1 is the reason my tears and moans turned to tears of happiness and laughter. @PERSON2's humor brought me to except-ants. laughter kept me in perspective of @CAPS2. I owe all my thanks to @PERSON2, who kept me from going insane or crazy about @CAPS2. Laughter helped mend my heart, and change my whole life dramatically. " 19 18 37 3 4 4 4 4 4 4 4 4 4 4 3 +21366 8 " I slowly got up and watched as paint dripped off my face, my hair and clothes. A trail of paint followed me as I tried to hop from one clear spot on the floor to the next, but there weren't many clear spots. All that I could think of, was if I was going to make @CAPS5 to high school, or not. Trying my hardest not to get anymore paint on the ground, I opened the door carefully, and called out. ""@CAPS1...Hey mom?"" I yelled half-halfheartedly, as I glanced back at the ""painted"" room. ""@CAPS2?"" she hollered back up the stairs.My mouth wouldn't open, I was afraid to answer. I've messed up millions of times, but none have been this bad. ""@CAPS3, you see... I've had a paint withdraw from the paint pan."" I replied softly, hoping she would not hear me. ""A paint withdraw?"" she asked in a confused tone, as she walked up the stairs to see what has happened. I closed my eyes in fear as she turned the corner.My mind raced as I tried to prepare myself for a rant about how I have to be more careful, and punishment. Neither came. She started to crack up. I was @CAPS8 confused at the sight of my mom sitting on the floor, almost peeing her pants. I then realized that I was probably a sight to see. I was covered in paint from head to toe. I started to giggle as I took in the situation, only something like this would happen to me. Minutes later we finial got a hold of ourselves and mom went to go get some paper towels to clean up my mess. She came back upstairs carrying a role of paper towels and a plastic garbage bags.""@CAPS4 thing I put the plastic covering over everything, before I let you paint."" she stated, smiling at me. ""@CAPS5 would have been way worse, if I spilled the paint all over the carpet."" I replied, returning her smile. I started to gather up the plastic covering, revealing the unsoiled carpet. The garbage-can was as full as a stuffed @LOCATION1 on @CAPS6. After we gathered up the last of the plastic covering, I slammed the garbage-cans lid as I put the last bit of plastic covering in. My mom came in carrying @CAPS7, and a handful of paper-towels. ""@CAPS8 what made the paint pan have sudden withdraw of paint, @CAPS9?, @CAPS10 you trip on the plastic covering, or drop the paintbrush in the pan?"" she questioned me, as she gave me a confused facial expression. I didn't know what to say. "" I...@CAPS1, @CAPS3, I was on my way to paint the edges against the ceiling, when I took my first step on the ladder and slipped. Landing in the paint pan and receiving the paintbrush in my face"" I didn't mention the fact that I tripped on my shoelace. My mom always got on me, for leaving my shoes untied. My mom started to laugh uncontrollably again. She started to turn beat-red. I could not believe her reaction. The situation was @CAPS8 funny, I started to laugh again as-@CAPS3. Never in my wildest dreams would I have imagined anyone forgiving me in such a big way. Once we finally stopped laughing, my mom and I finished cleaning the mess. My mom and I remember this day as a time we got to bond. I now realize that my mom will understand, and forgive me for my mistakes, no matter how big they are. " 20 21 41 4 4 4 4 4 4 5 4 5 4 4 4 +21367 8 "@CAPS1 @CAPS2 @CAPS3 in to the school's office was a usual thing for me. I was only in elementary school and had already developed the habit of making myself "sick" so I could go home. It had worked several @CAPS2 but the reality was that some how adults could outsmart "my sickness". As a kid I was a perfect actor but apparently my acting skills were fading. All the staff new me by then and by now it was harder for me to make my ways out. I remember being in forth grade when I made an appearance at the office but not really by choice and in my innocence I never knew what could happen next. My cousin @PERSON2 and I were in the same classes, we used to look alike when we were kids and teachers would often confuse who we were because we looked like twins. One day my cousin was struggling with a couple math problems and @PERSON1, our math teacher decided to stay a few minutes after school to help her. However we also use to ride the same bus and I decided to wait for her in order to catch the bus together. Those few minutes became more and once @PERSON2 was out we had already missed the bus. That's when we made our appearance in the office and there she was the chunky old lady that new me by heart. I would always remember her sitting in a chair in front of the computer and filling out some papers.This time she knew it wasn't one of those "wanna go home" days. "We missed the bus" we said, she then asked us why, we both gave our explanations. In the meantime she called @PERSON1 to make sure we were telling the truth. When @PERSON1 showed up, the office lady explained what we had said, but the problem was that she confused our explanations thinking we both missed the bus for the same reason making me look like a liar. When @PERSON1 heard this she said that I wasn't telling the truth and when I tried to explain to her that the lady had been mistaken there was no use even my cousin tried to defend me but the office lady said she was sure of what I had said. Being a kid and all I felt ashamed even though I knew I was telling the truth. Mrs. @PERSON1 decided to give me a demerit but deep inside I knew I said the truth and that's what matters. As a kid it seems like the end of the world in these situations. Feeling anger because I wasn't able to do anything about it but now that I look back it brings a smile to my face because in my poor judgment I could just think of the teacher as being mean but now I see that it was just a big misunderstanding. Now around @NUM1 years have passed and this memory is still with me but I only get the best of it. When I hang out with my cousin @PERSON2 the base of our conversations are these funny moments of our childhood that only bring laughter, just remembering the foolish things we did when we were young. Sharing these moments bring us closer not only as a family but as friends and there is no better thing than enjoying moments of long lasting laughter with the people we love." 19 20 39 5 4 4 4 4 3 4 4 4 4 4 4 +21369 8 " Laughter is the key I think that being happy is a big part in life because, being happy feels so good. If I was in a relation ship that was not happy I would not like it at all. In a happy relationship comes laughter,the first thing I do wen I meet someone I always smiling and telling jokes because if I tell jokes and they are laughing they know that I am a happy person. If you meet any person weather it is a grown up to a friend to a person you want to go out with they will always enjoy laughter. Lets just say me and my girlfriend when I first saw her she was sitting in a desk in my history class crying and I asked if she is okay and she told me her story after she told me her story I told her how it feel and then I told her a joke and she laughed.After she got done laughing she ask me for my phone number and then that night we started dating. I asked her what she likes about me and she said the way I make her laugh. I always love to make my family and friends laugh because if they smile it makes me smile. I use laughter as a way to make people feel better about themselves and my self. If the world can learn to laugh and be happy it would be a better place because I rather laugh and be happy then be mad or sad about something. when I was growing up I was by myself all the time so i had to learn how to keep myself happy so I would think about funny stuff I have seen or said in the past and try to make a story about it and it worked.When I got older i started doing stand up comedy. It made me feel so good seeing all the people laugh. then after the show seeing all the people walk out with big smiles on there faces it was a night I will never forget that night.If i had to pick what I wold want to do for fun I wold be a comedian.Thank you for reading this and have a nice day" 15 14 29 3 3 4 4 3 3 3 3 3 3 2 3 +21370 8 " My smile is a mask. It disguises all the past trageties, future mishaps, and current mistakes--loss. Life is a puzzle i can not figure out. I am lost, and I am losing myself the more I pounce into life. Isolate myself from the world, sleep in a bed of tear soaked tissues, and stare at my face in the mirror that I despise so much. Laughter or even just a smile goes a long way--to long. It sends the wrong message to those who can not tell if the mask is real, or perfectively put on. That is the message I want to give, right? Pretty soon, my laughter diminishes, my smile lowers, and my lips began to quiver. It feels as though my heart is bleeding, and being squeezed at the same time. The eyes are becoming moist, they began to sting, and reden as if infected. Do not ask me if I am okay, ask to do anything for me, or hug me. Only pushing me to breakdown, which is something that is unexceptable. Peace, is the only thing needed at the moment; and of course, my best friend, tissue." 16 15 31 3 3 3 4 4 3 3 3 3 3 3 3 +21373 8 " In the ninth grade I was required to give a speech about a book. The speech was to be persuasive, like a television or radio advertisement. I am awful at giving speeches. Before speeches my hands get clammy and cold, I experience ""hot flashes,"" and occasionally get nauseous. During speeches my eyes frantically glance around the room, my breathing pattern changes to quick short breathes. Almost in sync with my glances. At the end of my speeches I begin shaking and am nearly in a state of shock. I do not speak, I do not laugh, and I feel like hiding. Luckily, @CAPS4 speech was different. My @CAPS1 class had all girls and one boy. Not to say I am sexist, but having the majority of the room being female did help. Girls have a way of acceptance, or at least creating a facade of acceptance, and that does make me feel relaxed and calmer. So when the time came for me to stand up in front of the room nearly everyone in the class had a slight smile of ambition and readiness to listen to what I had to say. Everyone was making eye contact with me. Compared to the average classroom setting of ""speech giving time,"" (when people are doodling or mouthing words to each other) the classroom was zoned in on me. Today @CAPS5 felt like everyone was ready to hear me no matter what I really had to say, and how professional @CAPS5 came out. I felt superior, as if I had the power to alter their lives, almost so superior that I could spit propaganda at them and they would eat @CAPS5 up (@CAPS2't that what advertisment is? Telling a group of people the good things about a product or idea, and hiding the bad things?). The group looked so innocent. Today I was ready to give my speech, just because of that spark of acceptance, and a smile. I began. My speech was told with puppets with a cardboard box around @CAPS5 to serve the purpose of a television. @CAPS4 also made me feel better because all the audience saw was my puppets and all they heard was the voices of the ""actors."" @CAPS3 the first few lines of the speech my group of classroom peers laughed, @CAPS4 was not what they had expected. I am a shy, quiet girl who barely has the courage to raise her hand in class. I wear things like semi-large coats to set a barrier between myself and the world. A lot of times when I give speeches people laugh, but usually a negative laugh. The kind of laugh that the teacher has to hush everyone. @CAPS5's also the kind of laugh that makes me cut my speech shorter, that just makes the speech a introduction and an ending, bodiless. So for me to break out of my shell was a big step in what most think of as the correct direction. The sound of @CAPS4 laughter coaxed me to continue forward with my speech. At the end of my speech everyone clapped. They always clap. @CAPS5 is required to clap. @CAPS4 clap was different, @CAPS5 was clapping for the success of the speaker, a clap that said ""@CAPS4 speech had a clear purpose, and made the audience want to keep listening."" @CAPS5 was not a pity clap. Then I smiled. My smile represented that I knew I had succeeded. That I had gotten a group of people together and focused on hearing what I had to say, and that they had comprehended @CAPS5, and maybe that they would now want to read the book. @CAPS4 was one of the first speeches I had ever met all of the requirements on. The length of the speech was good, not long enough to make the audience fall asleep and not quick enough for them to forget the true purpose of the speech. I enunciated all of my words so everyone could understand what I was saying, @CAPS4 was a definite improvement, and also a factor of why they laughed. They could hear my witty jokes and comments. Lastly, my puppets also had a introduction, body, and conclusion to their babble. Usually I get so nervous I forget to say the body of the speech. Laughter can be mean, cruel and disrespectful. My speech story is an example of how laughter can effect people positively. The laughter of the audience was cheery, happy, encouraging, and accepting." 20 20 40 4 4 5 5 4 4 4 4 4 5 4 4 +21374 8 " Love in @LOCATION1 was a small boy, who didn't have very much ambition in life, he was taunted and teased to the point where he would just hide away in his house and not talk to anyone. The other boys at school would laugh at @ORGANIZATION1 for being so much smaller than themselves. He was never the fastest, strongest, or coolest but he was the smartest. He knew how to twist and turn any phrase to make himself feel superior to others. @ORGANIZATION1 was in truth lonely, he had never laughed or felt the cool touch of a lover. He wished dearly that he could be more outgoing to the point where a girl would fall in love with him. There was in fact a girl he had his eye on for months, her name was @PERSON1. She was the most beautiful girl he had have laid eyes on. He had followed her all over town, and rode his bicycle past her almost everyday when she was with her friend @CAPS1. @ORGANIZATION1 hated @CAPS1 for he had gotten to be with @PERSON1 everyday, and got to hold her and talk to her. @ORGANIZATION1 had envied @CAPS1 for around four months before he had messaged her on a website called ""myyeabook"" a place to meet new people and make friends. @ORGANIZATION1 had sent her a friend request and asked for her digits. Hoping she would find him attractive and let him text her. @PERSON1 accepted his request and sent him a message saying ""@CAPS4 I see your from the town next to mine, we should hang out sometime it would be cool."" @ORGANIZATION1 had almost lost it when he had read this, he went and got a hair cut, and new clothes just so that she would think he was attractive and cool. @PERSON1 had went to the park with her friend @PERSON2 and waited for this fellow named @ORGANIZATION1. She and @PERSON2 had played on the swings, and spun each other on the spinning wheel. @ORGANIZATION1 had been riding his bike and set it down a hundred yards away from where they were. He walked over said ""@CAPS4."" to @PERSON2 and proceeded to walk over to @LOCATION2. He told her he thought she was beautiful and had an amazing smile. @PERSON1 blushed and asked him if he wanted to swing for a while. @PERSON2 took off home, seeing that @PERSON1 was going to be okay with this guy, and little did they know, they were made for each other. @ORGANIZATION1 let his guard down and told her some jokes, he laid out his life story almost with her, he was so comfortable around her and he didn't know why. @PERSON1 felt the same way, she laughed at his jokes, and told him her life story. In this one short meeting they had connected on a level that was far from their ages. @ORGANIZATION1 found out that @PERSON1 was smart, and loved to be outdoors, she was practically the female version of himself. After a month of conversation and hanging out off and on, @ORGANIZATION1 sent @PERSON1 a text message saying ""@CAPS6 you down to be my partner in life?"" @PERSON1 was stunned and excited that @ORGANIZATION1 wanted her to be his girlfriend. @PERSON1 simply replied ""@CAPS6 you down to be mine?"" @ORGANIZATION1 replied back to her ""I love you."" @PERSON1 was the happiest girl in the world that night of @DATE1, @NUM1 @DATE2. The two went everywhere together and did everything together, everyone knew that they were perfect for each other. @PERSON1 began to fall in love with @ORGANIZATION1 and after four months of being together told him finally. @ORGANIZATION1 was so elated that he went out and bought her a ring, and she graciously accepted it. @PERSON1 and @ORGANIZATION1 moved in together and started a family. A little laughter can go a long way, in anything you do, a job, a family, or even in the hopes of finding your perfect someone. @PERSON1 and @ORGANIZATION1 found that their love had come from that day many months ago in that park, laughing about even the smallest of things such as a corny joke, or an adventure of another can lead the way to a lifetime of true love. All it takes is a little bit of laughter." 19 20 38 38 4 3 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 +21375 8 " Moving schools is never easy, especially for a fourth grader. I had been dreading going back to a new school all @DATE2 and the day had arrived. My @CAPS1 reassured me as I reluctantly walked onto the bus. As I scanned the seats it became apparent to me that I needed to try to make new friends or live out my fourth grade career a loner. The bus ride was a quiet one, I did not talk to anyone nor did they talk to me. The school day started like any other. First the teacher assigned everyone their seats in groups of two, I sat by a boy named @PERSON1. At first I thought my school life would remain a solo one, I wasn't sure what my seating partners problem was but no words were being exchanged. The rest of the day went by rather fast, before I knew it it was over. I had made it though my first day of school. The bus ride home was not much different than the ride to school, as I got off the bus at my house my mother was there to ask how my day went. After telling her all about it she said that I should try to just be myself and eventually I would make friends. It was @DATE1, I got up that morning with a sense of new found motivation. I got ready for the day and waited at my bus stop, I kept waiting for almost a half hour before I went to my mom. After phoning the school we discovered that my bus had been in a minor accident so I had to be driven to school that day. My mom was surprised but told me to get into the car and she would take me to school, just as we were pulling out of our driveway I notice @PERSON1, my seating partner, was waiting at his bus stop oblivious to what had happened. Screeching to a halt my mom rolled down her window to ask him if he wanted a ride. At first he seemed unsure but he took us up on the offer. The car ride was spent in silence, listening to the radio. We made it to school and me and @PERSON1 start walking to class. I don't know what got into me but I felt like running down the sidewalk to our classroom. Sprinting down the sidewalk while @PERSON1 is watching, I almost made it to class until one of the teachers decided to open their door. At full speed I ran head first into the door and fell backwards onto the sidewalk. After rubbing a major bump on my head I turn around to see @PERSON1 laughing hysterically. I got somewhat mad at first until I thought about it, and it was probably funny to the onlookers. Scraping my self off the cement I walk over to @PERSON1, We laugh about the incident and head to class. That day we spent the entire class talking, even getting into trouble a time of two. Ever since that day @PERSON1 has been a good friend of mine, its been eight years since we met and there is no end in sight. Overall in my opinion laughter is an important part of daily life, and a great way to make friends." 17 20 37 4 4 4 4 3 3 4 4 4 4 4 4 +21377 8 " When I was young me and my friends would play at @CAPS1 @CAPS2. @CAPS1 @CAPS2 was a @CAPS2 in the middle of a orchard, there was a slide, diving bored, and two rope swings. All @DATE1 long we would sit, play, swim, and laugh down at the @CAPS2. We would have are @CAPS4 day party, and calibrate the @CAPS5 of @DATE2 down at the @CAPS2. There is one day I can remember so well that its like it was yesterday. The last day of school had just ended, my friends and I got on the bus as fast as we could. When the bus stopped at the @CAPS2 we all started running and striping down to are swim trunks. I was the first one in, as a result I was the first one to relies the water was as cold as the river, it felt like a thousand little nettles stabbing me over and over again. My friends described me as a bouncy ball because I got out as fast as I got in. As soon as my friends saw my blue lips the all started laughing so hard that some of them fell in to the freezing water themselves. After that we walked you to @CAPS1 house and asked him to turn on the generator, after about an hour the lake was warm enough to swim in. After a we all had swam around for a bit we decided to go of the rope swing. After a while we started doing back flips, when we stopped are backs and chests were as red as the apples in the orchard, and are throats hurt from laughter. As well as being sore from hitting the water over and over again, we were also hungry so we fired up the grill and started making burgers. When the first and second batches resembled a mound of coal, we decided to order pizza. We spent the time by air soft, when the pizza arrived the lake had thousands of air soft @CAPS7's floating in it. As we ate we sat on the small dock and stuck are legs in and collected what ever @CAPS7's came near. Soon after eating we started playing hide and seek in the orchard. After ten or so rounds we were all scraped up by running throw the trees, so of course we pored soda on are cuts, to this day I still wonder why we did that because it really hurt. Once we were done being stupid we laughed at are self's, then we laughed at each other. It wasn't long before we played swimming base ball, the bases were the corners of the docks and the pitcher was on the floating plat form. we used floating balls and swam from base to base. Eventually the sun started to set and we made a fire by the side of the @CAPS2 and roasted marshmallows over it. When are @CAPS9 came to get us we were in the middle of a belly-flop contest. Before we left we promised that we would never forget that day, and that we would be friends forever and laughter would always be the glue. That night I stayed up all night thinking of all the fun and all the laughs we had that day, it was definitely the start of one of the best and one of the most memorable summers of my life." 16 18 34 4 3 4 4 3 3 4 4 4 4 4 3 +21379 8 " It was @CAPS1 @ORGANIZATION1 of @DATE1, the sun was shining and the birds were chirping. It was a great @ORGANIZATION1 to be outside doing something unique to enjoy the nice weather. There was a parade in @LOCATION1, the parade that I was in. I loved being the center of attention, I loved to be seen; and whats a better way for that to happen then being in a parade? I was with my best friend @PERSON2 and her family. There float was for @ORGANIZATION1. Which is the @ORGANIZATION1 @ORGANIZATION1 that they had owned at the time. We had a lot of children on the float, probably about twenty. With only @PERSON2, @PERSON2's mom, and the manager of the @ORGANIZATION1 @ORGANIZATION1 to help watch the kids. The children were dressed up in animal costumes. The older kids were passing out candy while the toddlers were on the float. @PERSON2 and I were laughing the whole time, I had almost forgotten that there were hundreds of people watching us. We were carrying the two twin baby's. I cant remember their names. We switched off a few times but for the most part I was holding the boy while she was holding the girl. They were well behaved baby's, they didn't cry often unless we had laughed to hard. Or yelled at the crowd too loudly. We passed a bunch of people that we knew. I had seen my cousins, and a few aunts and uncles. I could only wave at them because the parade was moving oddly fast. After a while @PERSON2 and I had started to get tired from holding the baby's and walking around. So we stood at the front of the float and leaned against the wooden rail. The rail was only nailed in so it wasn't very sturdy. We figured that it would be fine though. The parade continued we started to become even more tired and hot from the sun. We felt like we could have fallen asleep right there in front of everyone. We leaned more and more against the rail from exhaustion. We were still laughing and having a good time, but we became more and more relaxed and ended up with all of our weight pushing against the rail. Next thing we knew the rail had broken and we fell. There was a bunch of people watching and we were still holding the baby's. At the time I was holding the girl and @PERSON2 was holding the boy. The boy had just fallen to sleep. The baby's were fine but the boy started to cry, he wasn't hurt he was just shocked. It was the most embarrassing moment that we had ever had. The crowd started to laugh at us and our faces got beat red. Baileys mom came over to us to make sure we were all okay. She handed the baby's off to the @ORGANIZATION1 @ORGANIZATION1 manager who was there. Then @PERSON2's mom helped us up. Then we all burst into laughter. Not only was it the most embarrassing moment of our lives, but it was the funniest moment as well. Our butts were sore so we walked funny for the rest of the parade. One time @PERSON2 even stood up on the float and she went to lean against the rail again until she had realized that it wasn't there anymore. At the end of the parade @PERSON2's family stood there waiting for us. Uncle marks kids, @PERSON1 and @PERSON3, came up and laughed at us and made fun. Papa @PERSON4 had asked if we were okay. When he asked that @PERSON2 and I looked at each other and burst into laughter again. Papa just looked puzzled and then joined in our laughter. He was glad that we had just laughed the embarrassment off. Then we went home after that. That @ORGANIZATION1 was a good @ORGANIZATION1 for us. We went home and talked about what had happened. We both realized that if we wouldn't have laughed at our selves then we would have probably ended up crying of embarrassment. We realized that when something bad happens its best to look at the bright side, make a joke out of it, or just laugh at yourself. @PERSON2 and I have made a fool of our selves many times ever sense, and laughing at our selves had made us much closer. Every relationship whether its intimate, family, or just friendship needs laughter; or else the tough things in life will bring you down. Laughing is what keeps you bold, and strong. If something embarrassing happens and you don't laugh about it that embarrassing moment can stick with you forever, and it will effect you in the long run. If you were to never laugh in a relationship, then it wouldn't be a relationship at all. That's why laughing is very important in everybody's lives." 18 17 35 4 4 4 4 4 3 4 4 4 4 3 3 +21380 8 " When I was fourteen years old I think my family and I started riding four wheelers out in the sand. My parents friends are the one who got us started riding. The first time I went out there I had a @NUM1 @ORGANIZATION2 four wheeler and i couldn't stop laughing because it was so small and everybody had big four wheelers and dirt bikes, but riding out there with that thing was fun and my family would laugh every time my brother rode it up a hill because he would just ride the crap out of that thing. After that ride we sold my four wheeler and got a @NUM2 @ORGANIZATION1. Its the first time going to the dunes with my new four wheeler and I can't wait. We get to the dunes unload everything get our riding gear on and our helmets with our goggles on. It was thirty minutes of riding and my brother was jumping his four wheeler when some people showed up and was video taping him, which made him show off a little bit. So he was jumping in front of those people going further and further every time. My family couldn't stop smiling and laughing because he was showing up everybody there who was trying to out jump him. So when he got don't jumping the guys who were video taping him came up to us and they told us that he is really good and that we should follow them to another jump.So my brother trying to be cool whipped his bike around and wrecked it was funny my dad and I were laughing so hard our eyes were tearing up but lucky for him my dad and I were the only ones to see his little crash. So we went to go see if hes okay and he said yea so we took off. My brother and I were right behind them and our parents were no where in sight. I turned my head to look and see if they were behind us and when I look ahead of me all I see is a roost of sand in my face, which made me turn my handle bars so I hit a grass mound and the bike flew up in the air rolled off a little little hill and landed on my leg, my brother didn't knew he did that to me so I was stranded until my parents came. I don't know why but i couldn't stop laughing because believe it or not that wreck was actually kinda fun and funny because no matter what I did I couldn't seem to get that four wheeler off my leg. About ten minutes passed by with my four wheeler on my leg and I finally heard a loud noise it was my dad and he came to save me so I told him what happened and he couldn't stop laughing at me. He told me he would get my brother back. So when we were on our way back to the truck my brother was behind my dad and my dad roosted him with sand so bad it made his goggles fall off! My parents and I couldn't stop laughing and we ended up pulling over so we could stop laughing at my brother. After that my brother doesn't roost me anymore. It's been a year since we have started riding and still my brother has not yet roosted me. He still tends to show off. This one time my moms friends came out and my brother was trying to be cool and ride really fast from coming out of the dunes and he slid on the concrete and he wrecked in front of us and maybe like seven people, it was hilarious everybody was laughing besides my mom. He looked at his arm and he had road rash all down his arm. Well I guess that's what he gets for trying to show off. It's like every time he tries to show off he wrecks, so why does he keep doing it? I don't know why but maybe he should stop sometime so he doesn't wreck every time we go out there. Just kidding it doesn't bother me when he wrecks because they are usually funny. I thinks that's why we have so much fun out there because of him." 17 20 37 4 4 4 4 3 3 4 4 4 4 4 4 +21382 8 " Have you ever had a friend who when your with them you seem to be able to do nothing but laugh? I have, his name is @PERSON1. Together, him and I do nothing but spend countless hours making jokes, smiling, and enjoying ourselves. In any relationship, or friendship, laughter is an important quality. In the next few paragraphs I will explain why laughter is so important, and how it made his and our friendship so strong and compatible. To begin with, @PERSON1 is my closest friend. We both are very fun and outgoing people. We tend to put tense situations at ease by our sense of humors. This is important because without laughter you don't enjoy things as much. Someone once told me ""for every minute you laugh, it adds a year to your life."" That is important because nobody wants to live a short miserable life. Together we make the @CAPS7 of the worst situations and move on from them. Laughing is something that no one can live without. It is one of those things can make the biggest change in someones life, whether that be in a good way, or even in a bad way. Laughter in our relationship is like glue. When things between us ever got rough, or just things in general got hard, we made it a point to make a joke out of it and try to forget what was wrong. One of the ways our sense of humor came in handy was when we found out he was getting deployed. If you have never been through that before, let me tell you, it's hard. I remember everything about that day, I was outside fixing our fence when i got a call from @CAPS1. When I answered his voice was timid and shaken, I had never heard him sound like that before. He then told me that he was going to come over and that he had something he needed to tell me. At first i wasn't too concerned because he has a tendency to joke around and almost never be serious, this time I was wrong. Within twenty minutes I could hear the roar of his red diesel pulling in our driveway. When he got to the door, instead of just walking in like normal, he knocked. To my surprise, as he peeked his head in, his face was as red as a cherry, eyes swollen and watering, and his voice quivering with sadness. I knew then that this was serious. After a miserable three hours of sobbing and hugs he explained to me that he would be leaving in four days to @LOCATION1. Taking all that in at once was hard. I knew he was in the army but I guess I just never thought that day would come. Finally we began talking more and more about it the exact details. We then started to @ORGANIZATION1 things that he could find there that would remind him of home. This turned into a day of jokes. Our first mission was to find a @CAPS2 @ORGANIZATION2, fail. Our second mission, @CAPS3-@CAPS4, another fail. And finally our third mission, was to find anything that reminded him of me. We came to the conclusion our @CAPS7 idea would be @CAPS5 @CAPS6. In return we got in his truck ad drove to @CAPS7 @CAPS8 and purchased two high-tech @CAPS5 cams, and went home to set them up. That in itself was a memory I will never forget. When the day finally came to an end we realized that yes it would be hard for us, but we would not let that break us down. We then spent the next four days doing things he convinced himself ""he @MONTH1 never get to do again."" We spent hours playing @CAPS9-box, hours playing football in the yard, and even hours playing in a park swinging and sliding. The reality of it is, without laughter and fun, we would have most likely not have been able to deal with it. To this day we still plan a specific time, and ""@CAPS6 it up"" together. In conclusion, although things get tough and overbearing, there is always an escape. That escape for me and my @CAPS7 friend is laughter. When worse comes to worst, turn your favorite cartoon on, call the person who can always make you laugh, spend hours doing pointless, yet fun things, enjoy what you have at your fingertips, and laugh, you @MONTH1 never know when those things can up and walk away." 22 20 42 5 4 5 4 5 4 4 4 4 4 4 4 +21383 8 "Many things are said to bring people together. These things can vary from favorite foods to fashion taste or even disliking the same people, but nothing can bring two people as close as a good laugh can. Laughing will always lighten the mood, bring out a winning smile and from time to time, a tear to the eye. Laughing makes the bad days manageable and the great days fantastic. In my perspective, the world wouldn't go around without a good laugh every now and then. By 'good laugh', I @CAPS5't mean the kind that makes you happy for a moment, I mean the kind that brings tears to your eyes and creates a shaking feeling in your stomach. The kind of laugh that you remember. I've had many of those moments, but one that I cherish most just happened to occur during a school day. A couple weeks ago I was having a pretty nice day, sure its @CAPS1 so the weather dampened my spirits a little, but I was doing alright. I had my normal classes, got my average homework load, and then it came time for @CAPS2. @CAPS2 is basically study hall at my school. I sit at a round table in there with a few of my friends and we talk about nearly everything. Everyday, I sit by @PERSON1. @PERSON1 and I occasionally sit and talk with everyone else, but we tend to disingage ourselfs from the others and lock ourselves in our own private world of inside jokes, smart ass laughs and people watching. So that day during @CAPS2, I can't quite recall what we were talking about at our table, we all just couldn't keep ourselfs from laughing. Most of the laughing was just giggles, and some of it was straight up, hardcore red faced laughing. After we all settled down from the most recent up roar of chuckling, @PERSON1 started talking. She somehow spit out the words, ""@CAPS4 it you guys! You're making my eyes hurt!"" amoungst the giggles still blossoming out of her mouth. After she said that, I became puzzled.I just stared at her and stuttered, ""...what?"". I was sure she made a mistake and said eyes instead of stomach, but after she replied with ""@CAPS5't your eyes hurt when you laugh really hard?!"" I lost control. I was laughing so hard I couldn't breathe and I felt like I was going to pee! See, the funny part is, @PERSON1 is @CAPS6. So the idea of her eyes hurting from laughing really hard is just uncontrollably funny. After @PERSON1 and I caught our breath, we asked other @CAPS7 around the room if their eyes hurt when they laugh and guess what? They @CAPS8! This only made us laugh harder. This occasion instantly became another inside joke we treasure.That inside joke is by far one of the funniest ones, and it being funny, just makes it funnier! Everytime she laughs I ask, ""@CAPS8 your eyes hurt?"" and we just burst into more laughter. The idea of the joke alone brings a smile to my face, that being the reason why laughing is such a big part in our world. It brings happiness, joy and love. Well, actually it brings just about every possitive emotion. I @MONTH1 not be a doctor yet, but I know I'm right when I say; everyone should get their daily dose of laughter. Laughter can cure just about anything. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21384 8 " It was the @DATE1 and my friend @PERSON1 was going to come home with @CAPS2. We talked about our plans for the week all @DATE1 at @DATE1. Some of our ideas that we had thought up included going to a movie, hanging out at my house and doing our nails while telling stories, or going on an adventure around my neighborhood. At lunch that @DATE1 we decided on trying to do all of the ideas because we had @DATE1 days to hang out. After lunch we went to our next two classes and the classes seemed to go by really slow. Finally the @DATE1 bell of the @DATE1 rang and @PERSON1 and I ran to our locker to meet up and get all of our stuff to go home. We went outside the front doors of the @DATE1 and waited on the front steps for my mom. We waited for twenty minutes @DATE1 we remembered that my mom told @CAPS2 that we would have to walk home after @DATE1 because she had to work late. @PERSON1 and I looked over at each other and started laughing, because we had totally forgotten about having to walk home. Finally we stopped laughing and got up to walk home. On our way home we had my i-pod out and the volume turned to max so we could listen to music and dance around. We finally made it home and dropped all of our stuff off and got something to drink. On our way to my moms work, we stopped at the local gas station to get something to eat . We left the gas station and continued to my moms work. On the way to the bank where my mom works we came across a dog chasing a squirrel. The dog was running so fast that the fur on its face was pushed back and it looked like it was going to rip off. The squirrel ran up a tree that was nearby, but the dog didn't realize that he couldn't climb the trunk and ended up running head first into the tree. @PERSON1 and I started laughing at the dog because it stumbled around for a few minutes and then decided to sit down and just bark at he tree. We left the dog and squirrel and continued to the bank. We arrived at the bank twenty minutes later and talked to my mom. She gave us money to go buy a coffee and then she told us to go back home. On our way home we stopped at @ORGANIZATION2 and got coffee. On our way back to my house from @ORGANIZATION2 we watched the people drive by and laughed at all the people singing in their cars while stopped at the light. We arrived back at my house and decided to put a movie in. We watched @CAPS1 @CAPS2 and ate popcorn. Any time the little yellow people came into the movie we laughed because we both thought they were cute. After the movie my parents got home, and we had pizza and @CAPS3. Pepper for dinner. After dinner we played the wii and then fell asleep. The next @DATE1 when we woke up my dad made us pancakes and eggs for breakfast. After breakfast we got ready to go and my mom took us to the mall. At the mall my mom told @PERSON1 and I to meet her back at food court around two. We left my mom and headed to the first store. While we were walking to one of the store we saw a guy with a mowhak and a green beard. We looked at each other and started laughing because his beard looked like a @CAPS4 tree tipped over. At @NUM1-o'clock we left to go back to food court to meet up with my mom. She bought us @ORGANIZATION1 and told us that if we left now we could go see a movie. We decided to stay for one more hour and then we left to go home. On our way home we danced around in the backseat and sang to all of the songs that we knew. When we arrived home we played the wii until my dad got there. After my dad got home we ate dinner and then played the wii again. This time when we played the wii we got my parents to play too. Whenever it was my moms turn we would laugh because of how she would set herself up to bowl. After we finished playing the wii @PERSON1 and I went into my room and talked about all of the guys that we liked. We laughed at some of our choices because of the reasons that we liked them. We talked for about two hours and then fell asleep. The next @DATE1 we woke up and had eggs and toast for breakfast. After breakfast @PERSON1 got dressed to go home. After she left we talked over text about all the fun we had, and how we couldn't wait for tomorrow." 19 20 38 38 3 4 3 4 4 4 4 4 4 4 4 4 3 4 3 4 4 4 +21385 8 " All of the memories that I've shared with my friends over the years are marked by the expression of an emotion. Usually they include an abundance of laughter and happiness, just enjoying life and being teenagers. But on the other hand, sometimes these memories are tinged with sadness: day-to-day frustrations, vital playoff games that we've lost by small margins, or the passing of important people in our lives. I think that these highs and lows are remembered most in our minds because they are accompanied by things that are auditory (laughing and crying) and our brains recognize them as being more important than a typical day. As children we're very impressionable, so if something makes us extremely happy or unusually sad, it's going to have an effect on us and be remembered. I think it's known by everyone that teenagers aren't necessarily the most logical thinkers. Some people speculate that it is genetically programmed into our unborn brains that when we reach our teen years we will make a few silly decisions and possibly get into a small amount of trouble. I'll speak for my generation when I say that our actions aren't always completely thought out and sometimes we simply don't have a reason to explain the strange things that we do. For instance, my friend @PERSON1 has a peculiar and almost obsessive need to keep her car clean at all times. She washes it on multiple occasions throughout the month, and is convinced that driving slower helps to keep the dirt and debris from her mile-long gravel drive away from the candy-apple red paint on her @ORGANIZATION1. This wouldn't bother me, except that every day after school I go to her house along with our other friends, @CAPS1 and @PERSON2, to kill time before practice. The group is always anxious to get away from school because we're tired, hungry, and just want to get to her house and relax, but @PERSON1 never gives in to our persistent begging and is perfectly content to drive at turtle speed. One day, @PERSON2 became fed up and said that she could probably run faster than @PERSON1 was driving. @PERSON1 decided to take her up on the offer, stopped her car, and @PERSON2 proceeded to get out and jog down the driveway alongside the car. Soon she was a good distance ahead of us, dancing and skipping toward our destination. However, she soon changed her mind and since the car was going slow enough, she climbed on the hood and we continued driving, slowly. We were about two hundred feet from @LOCATION1's house, just one small bend before we'd be there, when @PERSON1 realized that if her grandparents, who live right next door, saw us, then she'd be in trouble. She didn't care to enlighten the rest of us with the details of her mental observation and suddenly stopped in the middle of the driveway. @PERSON2 slid off the hood, granted we were only going about eight miles an hour, and momentum pushed her forward at a trot. She slid on the gravel road, landed on her rear, skipped across the ground, and then stopped. Those of us who had remained in the car were in shock, our mouths agape, and we stared at her for the few seconds she remained sitting. She then stood up, turned to face us, and burst into hysteric laughter. We all let out a collective sigh and burst into hysterics as well, remaining in the same spot for a good five minutes. All of us were near tears and out of breath from laughing about the sight, we laughed randomly together throughout the rest of the day, and told all of our other friends about it. We had realized that it was a stupid thing to do, and @PERSON2 could have been hurt. But she wasn't, and so we all shared in the camaraderie of the moment. Laughter has that ability to connect people. It takes effort to make someone laugh, to spark the emotional trigger inside them that tells their brain, ""@CAPS2, I'm having fun."" @CAPS3 crying is a sign of extreme sadness, laughter is a sign of joy and elation, an indication of happiness. It shows that you're enjoying what you're doing and want those around you to recognize it. I really enjoy my memories that involve laughter, and when I think of those memories I always laugh again. I think that laughter is one of the rare simple joys in life. You don't have to spend money or drive somewhere, there's virtually no expense. It's timeless, simple, fun." 25 25 50 5 5 5 5 5 5 5 5 5 5 5 5 +21386 8 " During the @DATE1 of the sixth grade @CAPS4 parents decided they were getting a divorce. I got the phone call when I was at @CAPS4 best friend @PERSON1's house. ""@CAPS1, @CAPS2 @CAPS3 father"" @CAPS4 @CAPS5 said through the phone to me. ""@CAPS6 @CAPS5, @CAPS8's @CAPS9?"" I asked him. ""@CAPS10 need to come home, @CAPS10 @CAPS18 has served me today with divorce papers."" @CAPS12 told me. I could feel the tears starting to swell @CAPS9 in @CAPS4 eyes. I had no clue @CAPS8 was happening, I was only @NUM1 and vaguely knew @CAPS8 divorce was. Without saying a word to him, I hung @CAPS9 the phone and ran into @PERSON1's room. I knew that the divorce would change things for me, but I didn't realize to @CAPS8 extent. I stayed at @LOCATION1's house for the next two weeks. There was no way I was going home. I didn't want to see @CAPS4 @CAPS18 or @CAPS4 father. At night I drempt about @CAPS8 @CAPS4 sisters were going through, the horror that they had to endure while I was away. I wondered @CAPS8 @CAPS4 father was doing, where @CAPS4 @CAPS18 was, and whether or not @CAPS4 sisters were @CAPS13. Even though I knew I should have gone home at one point during those two weeks, I didn't. During those two weeks at @LOCATION1's house, I felt safe and secure, but not once did I feel happy. It was an emotion that I had longed for, but all the times that I tried to smile, tried to laugh, tried to be myself, I couldn't. I knew that something had changed in me when I hung @CAPS9 the phone on @CAPS4 father. I had never hung @CAPS9 on anyone before. It was something that I knew I shouldn't have done, but I was so upset, I did it anyways. When @CAPS4 @CAPS18 came to pick me @CAPS9 after @CAPS4 two week extended stay at @LOCATION1's, she looked at me with concern in her eyes. I had never seen this emotion in @CAPS4 @CAPS18 before. She usually was so calm and in control. I had never seen her so concerned or upset. I knew that she was concerned for me. I also knew that @PERSON1's @CAPS14 had called mine several times during @CAPS4 stay. I assume she told her about how I was acting, but @CAPS8 was I supposed to do? @CAPS4 parents were splitting @CAPS9! @CAPS4 whole life was being flushed down the toilet. I knew that nothing would ever be the same and it killed me inside. No one spoke on the ride home. I could feel the tension building as we turned onto @CAPS4 street and drove towards @CAPS4 house. When we pulled into the driveway, I got out of the car and ran to @CAPS4 room, leaving @CAPS4 things on the back seat of the sedan. For two days, I didn't eat or sleep. I just laid in @CAPS4 bed longing for @CAPS4 father to come home. I had never gone to bed without @CAPS4 father tucking me in, never woke @CAPS9 in the @TIME1 on @CAPS4 own. There were so many things that @CAPS4 father did that @CAPS12 wasn't there to do anymore. Things didn't start to get better until @CAPS4 @CAPS18 sent me and @CAPS4 sisters to @CAPS4 @CAPS15 house in @LOCATION2. I don't know why, but when I was there, I felt that same sense of safeness and security that I felt when I was at @LOCATION1's house. Even though I felt safe and secure, it still wasn't the same. It had been several weeks since I had visited @PERSON1, and I was dying to go back to her house. I knew that that was the only place that I could actually recover from @CAPS8 was happening. @CAPS4 @CAPS15 house was nice and all, but it didn't feel like home, I didn't think that anywhere I stayed would feel right. All I knew is that I needed @CAPS4 @CAPS5, not @CAPS4 @CAPS17 or @CAPS4 @CAPS18, just @CAPS4 @CAPS5, and maybe @PERSON1. When I came home from @CAPS4 @CAPS15 house, I made arrangements to go over to @LOCATION1 house. I knew that I would be staying awhile, so I packed extra. When I got there, I told her about @CAPS8 was going on and how @CAPS4 sisters were doing. On the night that I arrived, we decided that we would go to the river the next day. I thought it was an alright idea. The next day we went to the river, her brothers decided to join us. Her brother @PERSON2 wanted to prove to us how much of a man @CAPS12 was, so @CAPS12 jumped off of the largest rock at the river. I thought it would be a perfect cannon ball, but it wasn't. @CAPS12 landed on his stomach for the perfect belly flop. I couldn't contain myself, I burst out laughing, I don't think i stopped laughing for several minutes. It was by far the best day I had since the day @CAPS4 father called me at @LOCATION1's house." 21 19 42 42 4 5 5 4 4 4 4 3 4 4 4 4 4 5 5 4 4 4 +21387 8 " @CAPS10 you laughed today? Many believe that laughing is beneficial in our everyday lives. @CAPS10 you heard the saying ""laughter is the best medicine."" @CAPS1 comes from the idea that having a positive mood will make you feel better. Close to the idea of @CAPS2. Laughing has been said to relieve stress and makes you seem more approachable to someone you @MONTH1 not know yet. The quote ""Laughter is the shortest distance between two people"" is accurate in my opinion. I relate @CAPS1 to the way my friends and I act and the way I act towards strangers. When meeting someone new making a joke or laughing kind of breaks the ice, and can make the conversation more lighthearted and easy. When I was younger my best friends name was @PERSON1, and we hung out nearly everyday after school. We shared everything we had the same favorite color same hair we even had the same friends. We were girls that everyone though were sister because we hung out so much. We were the kind of friends who could take one look at each other and start laughing thinking about a past memory we had. Like the time we went into the wrong movie or the time we went out to lunch together. I remember going to lunch like @CAPS1 was just the other day though @CAPS1 was easily years ago. One day we went to our daily kindergarten class together just like always except today @PERSON1 was going to get to come home with me and my @CAPS3. My @CAPS3 knew she was going to need to take the car into the shop that day and told us we could tag along and if we were good we would go out to lunch. All day we were on our best behavior because we wanted to go to lunch and then hang out for the rest of the day. @CAPS1 was around lunch time and my @CAPS3 thought, well the car will be a while so I'll take the girls to lunch and then we will pick @CAPS1 up on the way home. So we dropped the car off and headed to @ORGANIZATION1's (a local @CAPS6 restaurant) for a @CAPS7 lunch. When we got to the restaurant they took our drink orders and I decided @CAPS1 would be a good idea to get a big blackberry slushy type drink. When @CAPS1 came to our table I was really excited and I started to drink @CAPS1 really fast. maybe a little too fast. When all of the sudden ""whoosh"" @CAPS1 had spilled all over my face and clothes, @CAPS1 was everywhere, in my hair, on my face, in my eyes. I was so embarrassed. I was so surprised at how hast the the ice fell on my face that I started crying right in front of my best friend. She was trying so hard not to laugh, she had the biggest smile on her face. When I looked over my @CAPS3 was laughing too I was humiliated. I was so worried my friend and my @CAPS3 would make fun of me being so clumsy, but they both said that @CAPS1 has happened to them too. After I got cleaned up I realized how silly I had been. I was so embarrassed at the time and at them laughing at me. But when I thought about @CAPS1 I would @CAPS10 laughed too. The whole car ride home we giggled about my little drink disaster and we could hardly look at each other without saying something about my spill, or we would both think about @CAPS1 and start cracking up again. Even though at first I though she would make fun of me and laugh at me for making such a silly accident, we ended up laughing together and @CAPS1 made us closer as friends. Our memories from when we were little girls last in our minds and we remember they silly and creative things we used to do and the little things that would be fun to us. We were and always will be great friends. We are still best friends and every once in a while one of us will bring something up that makes us think of that day when we were little girls and we will bust out laughing again. I do believe laughter is the best medicine. Although of course laughter will never conquer or cure diseases or fight off cancers I think @CAPS1 makes you stronger to take the treatment if you are happy and @CAPS10 a positive outlook, if you @CAPS10 something to look forward too, something you don't want to miss. Laughter can make a sick person forget about their illness, @CAPS1 can make them carefree and living in the moment. I think laughter is so much more powerful than we realize. So consider this question instead: @CAPS10 you made someone laugh today?" 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +21388 8 " Family trip @CAPS1 the @DATE1 my family and I decided to have a trip to @LOCATION2. My father, who had recently woken up from a comma, was in a state of depression. The doctor recommended that my mother should start planning family activities and do some over the @DATE1 break. I was twelve at the time, and noticed how my father was coping with the fact that he had both of lost his arms. He tried to hide the fact that it was too much for him to handle, but that only worried us more about his health. My mother, along with my sister @CAPS2 and I decided to go out on a trip -to distract my father- and hopefully get him out of his depression. On the day of the trip we headed out at about @NUM1 am from the apartments. My mother was the type of person who would always be early for anything. Overnight we had packed our bags and already had the stuff in the car. Since we lived in the upper apartments, my mother and I helped my father -since there was no way for him to keep himself balanced- while going down the stairs. He didn't seem enthusiastic about the whole trip, but I made sure to get my sisters excited and they kept on talking with my father in the car. A few hours later, one by one my sisters started falling asleep then my father started sleeping. My mother was starting to get drowsy so I stayed up and started talking to her about random subjects. As I kept her company she began telling me stories about her childhood - the laughs she would get when her cousins pranked one another- and so on. Some of the stories were so funny we tried not to wake everyone up with our laughter. Even though she had lived a rough childhood, her cousin @PERSON2 was the one that had always known how to make her laugh. My father and sisters woke up and started to get carsick, so my mother ended up exiting towards @LOCATION3, @LOCATION1. As we began to look for a gas station we began to hear loud music, and as we got closer we noticed that there was a carnival in the middle of the city. My sister @CAPS2 who was @NUM2-years-old at the time began complaining along with @PERSON1 who was eight-years-old. I tried to convince my parents, and my mother agreed but my father only got mad. That was until my sister @CAPS4 who was @NUM3-years-old began on ranting on and on, until my father finally agreed. My mother parked the car at the nearby park and my sisters ran ahead of us to the carnival. My mother tried to catch up with them while I locked the car from the inside. As we arrived to the carnival, we saw stands filled with jewelry, clothing, and other small items. We kept on walking and saw a group of gypsies dancing on stage. Later on a comedian went up and he made everyone laugh in the audience. After watching the gypsies and the comedian, we started to look around. We ended up buying three @CAPS5 parasols and the fourth parasol was free. We thanked the saleswoman as we opened our parasols for some shade. The @DATE1 heat was starting to get worse, so we headed towards the car. As we reached the car, my mother's face turned pale, she had left the car keys inside. She began arguing with me, and I began regretting the whole trip. I was exhausted and didn't want to argue. My father finally interrupted by telling us that he was going to search for a wire hanger from one of the stands in the carnival. As he left with my sister @PERSON1, the rest of us began walking towards the park. @CAPS4 began pouting and my mother kept on blaming me for locking the car, meanwhile I pretended I was deaf. After my father came back with a wire hanger, I began straightening it out and bending one side to create a hook. After many tries I still couldn't open the car, and my arms began to hurt. An old couple riding on a motorcycle parked next to us and asked us what we were doing. My father told them we had left the keys inside car. The old man helped us open one of the car doors. We thanked him and said goodbye as we went inside the car. We decided to head home, exhausted from the whole trip. Even though the destination had changed we enjoyed the trip, and everyone quickly forgot about the incident with the keys. My mother and sisters started joking around, and for the first time since coming out of the hospital my father began laughing." 20 18 40 40 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 +21389 8 "Its said that laughing is a good part of life, its also said that its healthy to get your chucks here and there. its ture its good to laugh makes everyone a better person" 10 10 20 2 2 2 2 2 2 2 2 2 2 2 2 +21390 8 " I think laughter is good for a relationships and here is why . When I first got to @CAPS1 @CAPS2 @CAPS3 i was trying to be myself and make friends. One day I was in class and @CAPS4 came into my class room and came up to me and she started talking to me and I started laughing .The she told me that she liked my laugh so she stared laughing like me. So that I would laugh more an @CAPS5 felt good knowing that she was making fun of my laugh she was enjoying @CAPS5 . She was trying to get me to laugh cause she thought @CAPS5 was funny because she had never heard anyone laugh like that. Everyone has a different laugh i have two laughs which she found out funny . @CAPS5 was the best day of my life because i was being myself and I know she wasn't laughing at me. Every time she hears me laugh she laughs and tries to make me laugh so that she can laugh and we all have a good time. For me @CAPS5 is funny because lot's of people don't notice how other people laugh. @CAPS5 feel good that she noticed and liked @CAPS5 and wanted to have a good time. Most people when they make fun of someone they say hurtful things @CAPS4 wanted to make me laugh again i know she wasn't making fun of me. She just thought @CAPS5 was unique and funny but not a haha you are weird funny but like a omg i love your laugh, its cute and funny. Now every time she sees me she tries to make me laugh @CAPS5 makes me feel good every time she does @CAPS5.When you are new at @CAPS3 good to make other people laugh specially when its not at you directly. To be honest @CAPS5 made me feel like people were startling to like me and not knowing me as ""the new kid"" but as a human being an actual person and that they say me for me not for what i wanna be or for what people see me as. That's all i could really ask for. So my opinion is yes laughter is good for relationships @CAPS5 shows that you have a sense of humor and that there is a actual person inside that body not just bones. Another reason is @CAPS5 shows your personalty your real self. Isn't that what people, to want people to see them for who they are not what people say there are.At least that's what i want. that's why i will never forget that class period. @CAPS4 showed me that if i just laugh with other people ill know that the aren't laughing at me like making fun of me they are saying that i am funny. That's what people want is to see people for who they are. The teacher was a substitute for that day and she kept on getting mad at us for laughing but we couldn't help @CAPS5 because @CAPS5 was so funny. That period i laughed the whole time. I was laughing so @CAPS8 that i peed my pants a little. She made fish faces and sounds like she pretended to be a monkey in a tree. She laughed how I laugh she did everything to make me laugh. @CAPS5 was so funny @CAPS5 took up the whole period. That's is how much i was laughing. I got up and was going to go to the bathroom and when i got back she was still there and i sat down and so she started making me laugh. So then i sat down and @CAPS7 and @PERSON1 came in and there was something in his pocket and i poked at @CAPS5 and said what is that its @CAPS8. We all started laughing cause @CAPS5 was funny @CAPS5 was is wallet. I didn't get why they were still laughing when I stopped but then I continued to still laugh because the way they were laughing. We all were laughing and then we all stopped at the same time and because we all stopped at the same time we all started laughing cause @CAPS5 was funny.The sub came and stood there by us and we all got quit and then started laughing again. I think that the reason why we were laughing was because we were doing dumb stuff. I turned around to do my work and then @CAPS4 spinned me around so that i would start laughing again. Then i started laughing again @CAPS5 I started crying. I was laughing so @CAPS8. @CAPS4 started laughing so @CAPS8 that she started laughing. At the end of the period I had to pee so bad. @CAPS4 wouldn't let me go she just kept on making me laugh more and more. Sometimes just laughing for no reason is the most fun. I guss my whole belief is that laughter is one of the best things that a person can do. Not only is @CAPS5 fun but @CAPS5 is also a very healthy thing to do." 20 16 36 4 4 4 4 4 4 3 4 4 3 3 3 +21391 8 " I have been waiting a whole year for @TIME1 day to come, @DATE1. Today is my birthday! I just cant wait to open presents and eat cake. I am turning @NUM1 and all my friends are coming over and everything. It should be a great day! First I have to wait for my mom to @CAPS2 home from work. So today I am going to go swimming then going to go on a hike then finally my friends can come over and the party we start. We will have games, presents and cake. My mom said my sister were automatically invited but I dont like that rule. Maybe next birthday @CAPS1 can uninvited them. My mom is at work. She left at @TIME1 and me and my sister just ate breakfast now we are going to go swimming. We have a pool right beside the patio in the front yard. Sometimes when my sister is mad she just throws me in. Other times she just does it because she is bigger then me and she can. My older sister @PERSON1 friend @PERSON2 was spending the week with us because she had moved away over the @DATE2 and decided she would come visit. Thats when they decided to start throwing me in the pool. One would always grab my legs the other would grab my arms and they would swing me until they just t threw me in the pool. well I got mad after it kept happening and threw a fit and cried. @PERSON1 told me if i was going to acting like a baby then i deserved to be treated like one, so she put me in a diaper and in the highchair and forced me to eat baby food. Of course I was crying now because I do not like baby food and to be in a highchair or be put in a diaper. By @TIME1 time i didnt want to go on a hike and was just wanting my mom to be home. Finally my mom was home and even better she brought pizza. I was so excited that she did because all my friends were coming over and pizza was perfect.My mom change out of her work clothes then she decided it was time for me to take a nap. well I am @NUM1 i dont need a nap so thats when knew something was up. now that I decided it was @CAPS3 I went and took a nap and actually really did fall asleep. my mom at @TIME1 time cleaned, decorated and went and got all my friends. when i woke up and walked out of the living room mom and all my friends screamed ""surprise"" and I was definitely surprised. After a long fun party it was time that we cleaned up and put all the garbage away and the cake in the over so no flies would @CAPS2 to it. The next day my mom went back to work and I swam and played all day! It was a great day got to wear my new swim suit and got to also play with my new floaty toys I got. I got a lot of @DATE2 stuff. then, me and my little sister @PERSON3 were trying to find a way to @CAPS2 hot water into the pool but we were having trouble because the house didnt fit to the faucet at the bathroom. so thats when we went to my moms room and used the bathtub and put the hose all the way out the back door. We definitely accomplished that mission! By @TIME1 time we heard a lot of craziness and I went to go see what was going on and it was smoky all over. I went into the kitchen and my sister yelled"" @CAPS2 your sisters and @CAPS2 out of the house meet you at the road"" I ran and got them and then i saw fire trucks speeding up the drive way and here comes my mom racing over and she was freaking out making sure everyone was @CAPS3. In the end I found out that she had burn my birthday cake trying to preheat the over for pizza. I was kinda upset that it was burnt but now I am @CAPS3 with it because I look back and laugh because my sister to @TIME1 day still has the burnt spoon and the lock. the lock is from our gate it was a simple dummy lock and the fire fighters didnt know so they just cut the chains. I guess the lesson learned here is that before you preheat the over you should always make sure nothing is in there." 16 18 34 3 3 4 4 4 3 4 4 4 4 4 3 +21392 8 " Gym clothes @CAPS1 People say laughter can bring together anyone. I do not know if that is true but, I do know that it can bring together two very unlikely @CAPS1 . Me and my best friend are complete opposite yet we became best @CAPS1 over a simple joke in the locker room. It happened on a @TIME1 that was not going to great for me, or her. It was @DATE1 @TIME1 I had to go to school. I had woken up late just the missed, walked all the way to school and had already dropped my lunch in the hallway about three times when, I walked straight into @PERSON1. (my soon to be best friend) ""@CAPS2 where your going."" she said to me in a catty voice and stuck me with a pointed glare. Me being shy, i just ducked my head and kept walking. @PERSON1 was one of the prettiest girls in school and hung out with the "" In "" clique I, well I didn't. Most of the time I hung out by my self. Her @TIME1 had been going just about as well as mine was. Her @CAPS3 had broken up with her ,for her best friend, at the time,she also had stayed the night in the hospital with her brother who had been in a car accident. So she was in the same mood I was.What was even worse was our next class was @CAPS4.E.! I got into the locker room and as soon as I walked in I realized I had forgotten my gym clothes. @PERSON1 had just entered behind me and by the sigh she let out I knew she had forgotten hers to . We were going to have to use some from the bucket... The bucket was where all lost or unwanted items ended up @CAPS5 there was cool stuff like sweat shirts and @CAPS5 neat tee shirts but you could never be sure if they were clean. Today though, it looked like there was only guy clothes. I walked over to the bucket and @PERSON1 came over next to me. We both began to dig through the bucket. Finding nothing but over sized sweat pants and extra large shirts we @CAPS6 out the ones we thought were the best. We changed and as soon as our eyes met we both started cracking up. We looked like two little kids playing in their dads clothes. She could not let go of her pants or else they would drop around her ankles and the shirt I was wearing hung down past my knees. Neither of us stopped laughing until our sides ached and there were tears running down our faces. When the @ORGANIZATION1 teacher banged on the door we walked out of the locker room and the whole gym stared at us but we had found confidence and friendship in each other so, we didn't care. Sense that day @PERSON1 and I have been glued to each others sides as best @CAPS1. We have been through many fights but every time I think about that day in the locker room I can't help but to laugh. That is how laughter brought @PERSON1 and I to be best @CAPS1." 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +21393 8 " Imagine this, flying past trees on a @CAPS1 @NUM1, four wheeler trying to keep up with everybody that's in front of you. That is how it was on new years eve. We headed out from the house at about @NUM2 o'clock pm. When we left the house we headed for one of our friends house because we asked them earlier if they wanted to go. So when we left we had to leave fast so we were not on the the road for a long time. When we got to our friends house we hung out for a little while then asked them if they still wanted to go on a ride with us. They got all ready then at about @NUM2:45 we all headed out. All together now there was about @TIME1 of us about to head up on gillhooly on this ride. When we finally got to the top of the mountain it was about @NUM4 o'clock pm. So we just hung out until @NUM5 o'clock. When I say hangout I mean we hit some mud holes and played around a little bit. By the time we were all muddy it was about @NUM4:55 pm. So we set up some fireworks to shoot off. Then about @TIME1 we shot all of them off. There was only about @TIME1 or @NUM7 of them. We started to head back home at about @NUM8 in the @TIME2 but one of our friends got stuck in some snow off the side of the road. We spent about a half hour digging him out before we finally headed back home. We arrived back at the house at @NUM9 in the @TIME2. We all got something to eat because we were all hungry then we watched a little @CAPS2 then headed to bed for the night. " 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21394 8 " I believe that laughter is a healthy way to get a along with someone, and have fun! I think that the more you laugh the more fun you're having with someone or a group of people. One time me and my friend @PERSON1 were hanging out at my house and we literally couldn't stop laughing, every little thing was hilarious to us for some reason! It makes us have so much more fun together, when we can just laugh together instead of fighting. I love to laugh; all my friends call me obnoxious because I laugh all the time. I feel like if you're laughing and laughing with someone it makes you closer and it's way more healthier and better if you just laugh! For example I always want to hang out with @PERSON1 because we always laugh together and have a good time. It's like when you have a group of friends and some of them you always disagree on something or fighting, its never fun. If you have a boyfriend/girlfriend and you always laugh with her/him it just makes you want to be around them so much more, because your having a good time. Fighting just does the opposite! I've recently realized who my good friends and who are my bad friends. Laughing is the biggest quality to have in someone. The girls I fight with are usually the ones who have no personality and are very negative and are just mad people. My friends that I do get along with we always laugh and have a good time, the only time I've got in a fight with one of my good friends is because the downers always say random stuff that's not true and hurtful so that person will be right there down with you! I have realized the more you laugh the more fun you will have and the more people want to be around you! I've also noticed that my mom and dad are completely different people. My mom is a sweetheart who always laughs and I can always have fun with. My dad on the other hand never laughs. I honestly can not remember the last time I heard him laugh. He is such a downer and no one ever wants to be around him. That's probably why my parents are divorced! You can just tell that my mom has more fun and my dad doesn't. In life you really just have to have fun do what your supposed to do and laugh. So really what I'm trying to say is laughing is a important part of any relationship; whether its with friends family dating, just anything! It's definitely a good quality to have. If a person is always happy and always wanting to have a good time, I think its how they're raised. If you think about it I get my mom @PERCENT1 of the time and my dad @PERCENT1 of the time. Whenever I'm with my dad I'm always in a worse mood, I never want to do what he's asking. I basically want to rebel. When I'm with my mom I literally do the opposite I'm always happier and will do what she wants, and we always laugh and have a way better relationship then me and my dad do. I think laughing and being happier has a lot to do with who you look up to and how they act, and what they do. I can definitely tell my mood change from parent to parent. It has a lot to do with how the parents are raising their kids. I think as a adult you need to be a positive influence on your kid/teenager. I think its good to have a healthy laughing relationship with your kid. Life is to short to spend it hating someone, I believe you should spend your life having a good time and fulfilling your dreams, and mostly laughing. " 16 15 31 4 3 4 4 3 3 3 3 4 4 3 3 +21397 8 " When I was in third grade my parents decided that we should move to where my @CAPS1 was born and raised and where my @CAPS2 lived. I, being a determined third grader, was angry and told them that I would not move and even sat on the floor and told them that I was not going. Needless to say I did not get very far, but I was still not happy about being moved from my friends and my @CAPS3's side of the family that I had been around since I was little. My friends were all I had known through my years in elementary school and I was no where near ready to say goodbye to them. It was very hard saying goodbye to them even though we came back and visited later on. We moved three hours away from my hometown. It was a pretty big move, especially for a ten year old who had never really been anywhere else. Being a new student is never easy. Especially with a shy, quiet personality like mine is and the first day was a scary one. I remember it very vividly. I walked in with my @CAPS4 and my new teacher happened to be in the office at the time, so she took me down to the class and showed me around the school. I was still frightened and was upset that my parents were making me go through this huge change. When class started the teacher made me stand up in front of the class and tell them about myself. I have never been much of a public speaker and it is hard for me to believe that I actually did stand there and talk about myself. I can not even do that very well today, and I am way less shy then I was back then. It was very terrifying to say the least even more so when I was done speaking and the class sat in dead silence. Then I slowly walked to my seat and being the shy person I am, did not talk for the rest of the time until lunch. At lunch a little girl with freckles and glasses, like myself, came and sat with me. Once she broke down my shy exterior we were laughing, playing and having a real good time. And for the first time that day I thought to myself that moving might turn out to be okay. Me and her became really good friends along with the other girls she hung out with. We sat next to each other in class, talked on the phone, had sleepovers and spent recess together everyday. She was the first best friend I had made when I moved and I was glad it was her and not someone else. Today I am very thankful to her for taking the time to get to know me when I at first was shy and not saying much, because I know how it feels to approach someone you do not know. The laughter that we shared that first day at lunch and her willingness to break down my walls of shyness really brought us close together. Without her that first day I am unsure how the rest of that day or week would have gone. Without people like her who are willing to make a new friend it would have been a lonely first couple of days for me. Laughter is an important part of a relationship because it brings people closer together and shows that even if you do not know someone very well you still can have a good time. The rest of that day is a better memory because we shared laughter and became friends. It made moving to a new school less scary and helped me to find a place to fit in." 20 20 40 4 4 4 4 4 4 4 4 5 4 4 4 +21398 8 " ""@CAPS1 to @CAPS2"" @CAPS3 you ever seen the little signs that say, ""@CAPS4, @CAPS5, @CAPS2""? People often @CAPS3 them in their homes as a reminder on how one should @CAPS4 their life. Well, I believe that laughing is one of the most important elements you need, in order to @CAPS4 your life to the fullest. Laughter keeps the soul young, the heart happy, and the spirit joyful. Without laughter, one @MONTH1 feel that they @CAPS3 an emptiness inside that they are unable to fill. Laughter has played a huge role in my life and has created some of the best memories. If luaghter was not a part of me, my life would be like a house without furniture; empty, boring, and over all, pointless. Some memories will never leave my mind, and looking back, I still @CAPS2 my brains out. My favorite, and most hilarious memory that I can think of, occurred about two years ago at my grandparents house. My family and I were staying with my grandparents for the weekend up at their house in @CAPS7, which I absolutely loved because there was so much to do there! They had go-carts, golf carts, acreage, and a gigantic swimming pool! What more could someone want? The weather was always nice and warm as well, so I had no complaints. It was a beautiful evening, my brother, his best friend, and I decided to take the golf carts out for a spin. My brother was in his own golf cart zooming by, and I was in one with his friend @PERSON1. Now, @ORGANIZATION1 must @CAPS3 seen something in the road because he told me to stop, then he hopped out. As he curiously made his way to the front of the golf cart, I pressed gently on the gas inching forward in a sort of fast manner just to scare him a little. As I did that, he frantically jumped on the hood like a cat that had just been frightened. I then decided to slam on the brakes, and when that happened, @PERSON1 launched off like a rocket, but then tried to hop back on the hood. I guess you could say we developed a game. I would go a few inches or so, then slam on the brakes! At that point I was practically crying from laughing so hard. That is until something very unexpected happened...I drove fast, and then stopped very quickly, but as i did so, this time @PERSON1 tripped! I didn't notice because I was carelessly driving like a maniac, but soon enough the golf cart was on top of him! All I remember hearing was a @CAPS8 @CAPS9! and then a loud shrilll. He was laying face first, cart on his back, and I had no idea what to do! My heart quickly sped up, and a gust of fear came over me. I looked to my right to find my brother rolling around on his back laughing like a hyena! I was still sitting in the golf cart, still unable to move in my state of shock. My brother finally got up and @PERSON1 was yelling, ""@CAPS10't move @CAPS11!"" @CAPS12 I had to do something! My brother was trying to tell me that we should lift the heavy cart from his back but in my head, I knew that both of us together wouldn't @CAPS3 been able to do that. Taking matters into my own hands, I shifted into reverse very carefully and slowly. Biting down on my lower lip, closing my eyes tightly, I pounded the gas to the ground, flying backwards off of his helpless body. Luckily no damage was done, and @ORGANIZATION1 was perfectly fine. A gigantic weight was lifted from my back and I was able to breathe again. Looking back, I am able to @CAPS2 and joke about that wonderful day that went so wonderfully wrong, though I am very thankful that nothing extremely harmful happened to the poor guy I dreadfully ran over that day. I can tell you one thing, as the day carried on, we had a blast. Carelessly being the great teenagers we are, and without a worry in the world; we laughed, swam, drove the golf carts, and enjoyed the wind swooping our hair up, then down, then all around. I take back two things from this crazy day. One, make smart decisions, and be prepared for the consequences that you @MONTH1 be faced with, and two, enjoy your life. @CAPS2 like there's no tomorrow. Be careless yet careful, and enjoy every second of it! I've learned that when faced with a tough decision; for example...do I roll off of my brothersfriend? or do I continue to sit here and listen to him yell? In that case I took a big leap of faith, and went with my gut instinct. Which I believe was most definitley the right decision. Go with your gut instinct in life, and @CAPS1 to @CAPS2." 25 25 50 5 5 5 5 5 5 5 5 5 5 5 5 +21399 8 " Laughter Laughter, how do you define it? The non-existence of happiness? Without laughter, @CAPS1 would be no smiles. Without smiles, @CAPS1 would be no affection. Without affection @CAPS1 would be no emotion. Without emotion, @CAPS1 would be no re-action. Without a re-action, everyone around you would be blank. Laughter; it can do so many things. It can bring people together or even tear people apart. It can be a way @CAPS2 express yourself, or even a way @CAPS2 put up ""your walls."" Laughter could mean so many different things. It can show so many different different things. It can show so many emotions, or even hide them. For example: @CAPS1's those people who laugh when they cry, when @CAPS1 mad, when @CAPS1 sad ect. But look beyond the picture why do you think @CAPS1 laughing at these times? When really that's not at all the emotion they are feeling. @CAPS1 not laughing because @CAPS1 all around a happy person. @CAPS1 laughing @CAPS2 hide the true pain they are feeling inside, because whether they like it or not no human can completely let ""it all on the line."" @CAPS2 be so vulnerable anyone could get in and cause pain. So how important is laughter @CAPS2 you? In and kind of relationship laughter is important. W heather it be a friendship, a marriage, an engagement ect. @CAPS2 know how your partner is feeling can make all the difference. So one laugh or giggle could make turn it all around. Laughter it's the shortest distance between two people." 15 10 25 3 3 3 3 3 3 2 2 2 2 2 2 +21403 8 " Laughter @CAPS1 us @CAPS2 @CAPS3 was the @DATE1 of middle school and the entire music department was going on our @DATE1 field trip. Everyone was going to @LOCATION2 for the biggest concert any one has ever been to. Only the students in eighth grade in either band, choir, jazz band, or jazz choir were able to go; if @CAPS16 didn't pay all your funds, then @CAPS16 were left behind. We were going to a hotel, attending a concert, and going to a @CAPS4 @CAPS5. My friends, @PERSON3, @PERSON2, and @PERSON4 were without a doubt excited. We have never been on the longest road trip till then. @CAPS3 seemed to have taken days to get to @LOCATION2. We left at five in the morning with over one hundred kids packed into two buses. One bus was for the boys and one for the girls, yet there were more girls then boys so we split the boys bus. I was stuck sitting with @CAPS6. @CAPS6 is a nice girl, but @CAPS3 was difficult to start conversations with her. @CAPS17 wanted to be back home in @LOCATION1. I never found out why @CAPS17 was so upset; which made my ride there unbelievably boring. Until @PERSON3's accident. @CAPS17 snorted a pretzel up her nose. Overall @CAPS17 was okay and everyone besides @CAPS6 laughed along with her. By the third hour of sitting in a cramped bus, us girls had to go to the bathroom. Complaining to the bus driver @CAPS17 replied, ""We're almost to the pit stop. Just another hour or so."" The choir girls began singing about going to the bathroom. Soon the bus was filled with our melodious song and laughter. Finally @CAPS8, the bus driver, pulled over. A line of dancing girls bulged out of the bathroom laughing at each other. Once we were done we said our farewells to the boys as they piled onto the bus and took off. ""@CAPS9 down. Lets get to @LOCATION2."" @CAPS8 said. We cheered as we drove off. Four hours later, we were stopped yet again, at another gas station eating our lunch. The boys were fine with how much progress we made; starting calling everyone of us girls the boys were getting annoying. Us girls ignored all calls from boys for the rest of our trip. Finally we got to our hotel. At the hotel the boys got the top story while the girls got the lower story near the swimming pool. When dinner came along @PERSON1, our music director, aloud everyone to roam around the stores near by and buy our dinners. Luckily we were near @ORGANIZATION3, @ORGANIZATION1, @ORGANIZATION2, and a numerous amount of fast food places. @PERSON4 and I went to @ORGANIZATION1 while @PERSON3 and @PERSON2 got our drinks; since we didn't want @ORGANIZATION1 drinks they went to @ORGANIZATION3 to buy @CAPS11. We met back at our room with our goods. We gorged ourselves till our abdomens seemed to explode. Dancing her way into the bathroom, @PERSON3 apeard with a broom as her dancing partner. Our laughter filled the room. We partied on till we realized we had a concert to attend. We had two hours till the concert and thirty dollars was missing. @PERSON3, @PERSON2, @PERSON4 and I searched our room almost missing breakfast and ending up empty handed. When we found the girls across the hall all except one of them were there. The remaining girls looked at each other. "" @CAPS6 was out of money yesterday and now all of the sudden @CAPS17 has money to buy food. We're missing fifty dollars."" @CAPS13 replied. @PERSON1 then came in, ""@CAPS14 up. We got a concert to attend."" @CAPS15 at each other with disapointment we all left. Running to the back stage door I dropped my music. @PERSON2 laughed picking @CAPS3 up. ""@CAPS16'll do great."" @CAPS17 said smiling. I smiled back, ""@CAPS18 @CAPS16."" I turned and stepped out onto the empty stage and took my seat in the front of the band. Picking up my flute I began my solo. The soft chords filled my ears as I imagined myself alone. Although I was nervous my stage fright gracefully vanished. I ran out the auditorium doors. Girls and boys laughing with me as we raced to the buses. The bus drivers hurried their way to the @CAPS4 @CAPS5. Once we were there, @PERSON1 payed for everyone and we were off. Laughing at ourselves @PERSON3, @PERSON2, @PERSON4 and I screamed at the top of our lungs when the @CAPS19 shock dropped. When the ride was over, we all laughed seeming to have come @CAPS2. I didn't want to leave, but I knew I had to. Everyone piled back on the bus and called our parents to let them know we were coming home. Laughing at every mistake we made, @PERSON3, @PERSON2, @PERSON4 and I took a group picture to remember the trip. Some how amongst the trip we laughed together at everything. Nothing stood in our way when we laughed. In the end laughing @CAPS1 us @CAPS2. " 20 21 41 4 4 4 4 4 4 5 4 4 4 4 4 +21404 8 " Laughter is one of the best things people can learn to do. Laughter is one of the many things I enjoy doing. I love how everyone has their own distinctive laugh, some are loud and some are quiet almost like a giggle. Not only do I enjoy it but I love that is helps me relieve stress, which is a major part of relationships. My boyfriend and I met about three years ago. Today we have been going out for a year and three months. We met whenI was mowing my yard, and my neighbor @LOCATION1 brought him over to introduce us to each other. I mean she couldn't have brought him over at a worse time; I was hot and sweaty because it was eighty degrees out side, I had no make-up on, and I smelled like fresh cut grass what a great first impression huh? ""@CAPS1 @CAPS2 this is @PERSON1"" she said with a smile. ""@CAPS3 timing @CAPS4"" I replied with a tone of anger in my voice. ""sorry"" she said, ""but he said he wanted to meet you , and he wouldn't shut up about it."" I looked over at him and noticed that he blushed a little and I laughed. From then on I knew that @PERSON1 and I were going to have something great together. Till this day our relationship is stronger than ever, and it's because we can make each other laugh. Now don't get me wrong, trust, honesty, communication, listening, are all still a big part and those are important too, but I think that having humor and being able to laugh in a relationship is one of the key things to a healthy and long lasting relationship. My boyfriend and I have great sense of humor, and we defiantly like to use it in our relationship. I could have the worst day of my life;and when I talk to him on the phone I know my day is going to change from horrible to fantastic. Just because I know that within the first few minutes of talking to him and hearing his voice, he's going to say something funny and I can't help but to laugh. I honestly believe you need a good sense of humor in your relationship if you want it to last. When you don't have laughter in your relationship, it tends to get very dull and boring. You can't be serious twenty-four seven, that's way too stressful. Since laughter helps relieve stress, you will defiantly need it during your relationship so it doesn't get stressful and turn into nothing but a bunch of fighting and arguing. So in conclusion, I know your thoughts about what I just talked about might not be the same, but I hope after reading this you will be more willing to consider my opinions on the subject of laughter in a relationship, based on being able to enjoy and know what laughter is, and also how great of a thing it is. How it relieves stress, if you have a bunch of stress in your relationship try cracking a couple jokes you will be amazed at what a little bit of laughing can do. Especially if you want to keep your relationship with your significant other happy, fun, and not only that but also full of life. Laughter is bliss" 17 20 37 4 4 4 4 3 3 4 4 4 4 4 4 +21405 8 " I don't think people today laugh enough. Laughing is said to be one of the healthiest things out there. I've heard that the more you laugh, the longer you live. If that's true, I should live forever! I believe laughing really is healthy for you. I have a friend who's really sick right now, but when I'm with her I can make her laugh like crazy and it seems to make the pain go away. If I could cheer her up @NUM1 I'd be happy to do so. Yesterday her and I were together and I can't remember what we were talking about but it must of been good because she got me to laugh to hard that I threw up! I know that doesn't sound very fun, but even as I was coming up from doing that we were both still laughing. Times like that I can definitely look back and smile on. I love the effect laughter has on people. I've been sitting down at a bus stop and giggling or laughing for absolutely no reason and the people next to me will start laughing! That only makes me laugh harder then everyone's doing it! Also as long as you're with friends, or anyone for that matter, and you can laugh, that means you're having fun and enjoy each others company. I don't see the point in being friends with someone who can't at least make you giggle a bit. The other day me and my friend were sitting in the car, it was dark, quiet and we were just talking. Out of no where my mom pops up saying, ""@CAPS1!"" (this always happens though.) @CAPS2 did we scream our lungs out. I guess we should have expected her to do something like that though. After we caught our breath, we both looked at each other only to start laughing hysterically at how silly that was. Laughter really does bring people together, whether you're strangers or best friends. When you're laughing with someone you're usually laughing for the same reason, right? Just as my friend and I were in the car. That's what I love, because that means we have things in common." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21407 8 "The @CAPS1 of @CAPS2 @CAPS3 I think of laughter I think of my @CAPS2, of all the things that got me rolling on the ground with no breath left in my lungs, enjoying the life that @CAPS4 gave me. We all know that most children find absolutely everything funny. @CAPS3 I was about ten my parents bought my siblings and I a puppy. This was no ordinary puppy, it was the runt of the litter, and it had some kind of mental disorder. Oh, how we loved that puppy. Every day @CAPS3 I got home from school I would go in the back yard and play with the puppy for hours and hours. We finally found a name for @CAPS10 a few days later; his name was @CAPS5. The reason we named @CAPS10 @CAPS5 was because @CAPS9 would literally tip over while just walking. One day @CAPS3 I got home from school I took @CAPS5 to the top of the hill in our back yard, I was playing with @CAPS10 and running around and laughing. Every time @CAPS5 would run down the hill his little legs would get tangled up and @CAPS9 would nose dive and start tumbling down the hill until @CAPS9 could get back up again, which normally wasn't until @CAPS9 was at the bottom of the hill. @CAPS3 @CAPS9 did that my sister and I would laugh so hard because it was so cute and we just loved it! As children we lived life for the moment, and enjoyed our lives. I think that we still need to do that now. We need laughter and @CAPS1 in our lives, we need to focus on the positive and not dwell on the negative. The laughter of your @CAPS2 should carry on through the rest of your life. @CAPS4 has blessed us with so much, @CAPS9 has given us more than we give @CAPS10 credit for. Laugh for the moment, take @CAPS1 in the small things in life, embrace the amazing creation set before you, and love others like @CAPS4 loves you, because you never know @CAPS3 your time on this earth is over." 19 20 40 40 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +21408 8 " In life every individual has their good days or there bad days. The last thing a person wants to do is be happy or laugh when that day has arrived. Some times a person has to look outside the box to look at the whole picture to feel happy about the people That individual is around, laughter also helps the time that you spend more enjoyable yourself. You might sometimes have to figure out if he/she is going to be a person full of laughter or excitement you got to put in consideration the people that influence you might even be the people that drag their feet day on. The more insight you can feel about a persons feelings the more laughter you can find deep inside a individuals well being. " 11 10 21 2 3 2 3 2 2 2 2 3 3 2 2 +21409 8 " Growing up with both of my parents and having my dads parents (my grandparents) has been the best thing for me. I spent a ton of time at my grandparents house when I was @CAPS3. Every @DATE1 we got out of @CAPS1 an hour early. And every @DATE1 of elementary school, my grandpa would be waiting for me to get out of school. He would pick me up and then we would go to either @ORGANIZATION1 or @CAPS2's for lunch. I always wanted to go to @ORGANIZATION1 because they had a play structure. But growing up, I became really close with my grandma and grandpa. My parents didn't need to worry about babysitters because we always had my grandparents that would take care of me. So the bond with them just got stronger and stronger. I would always do my homework with my grandma, and then when I was done I would go out with my grandpa and do yard work or tinker on something in the garage. A lot of what I know now was taught to me by my grandparents. I was a very lucky @CAPS3 @CAPS5 to grow up having them in my life. Doing yard work with my @CAPS6 (which is what I called my grandpa when I was @CAPS3) was actually fun. I loved yard work. He taught me how to use the riding lawn mower at a very young age. So by the time i was @NUM1 years old I could start it up, mow the lawn, empty the grass from the catcher, and put the mower back in the garage when I was done without any help. Well one sunny @DATE2 day, when I finished mowing the lawn my grandpa was sitting on the patio drinking @NUM2, like always. So I grabbed myself one and went and joined him because that is where he always sat and watched me mow the lawn and that's where we always hung out together. We're sitting there just talking, and he asks me if I hooked the hose back up to the fosit. Well of course I didn't because I wanted to go sit on the patio with my @CAPS6. So him and I walked over to the fosit to hook it back up. But for whatever reason he told me to take the nozzle end out to some flowers. Now here is a @NUM1 year old kid standing behind his @CAPS6 with the nozzle end of a hose with @CAPS6 bending over in front of me. So I did what any other @CAPS3 @CAPS4 @CAPS5 would do. I held the nozzle up, aimed right at that big booty of his, and pulled the trigger. After about a good @NUM4 second soaking of his bum, I dropped the nozzle and ran as fast as I could to my grandma. And when I got to her she was wondering why I was so scared. Well all I would say was, ""@CAPS6 is gonna kill me!"". Here comes @CAPS6 walking up the front door which just happened to be where grandma and I were standing. He had just the most straight angry look on this face. I literally thought that my butt was going to hurt forever after he spanked me. And so there the @NUM5 of us were standing there. Me thinking that I'm going to die. And all of the sudden my grandpa gets the biggest smile on his face and both him and my grandma start cracking up. He wasn't mad, he thought it was hilarious! So of course I start laughing too! @CAPS6 came inside and changed his now water soaked pants and underwear and then all @NUM5 of us went out on the patio and just chilled and talked and drank some great @NUM2. After a couple hours of relaxing with the best grandparents in the world, my grandma went inside to make dinner. So @CAPS6 and I stayed out on the patio and shot pine cones out of the tree with a @CAPS7 gun, seeing who could shoot more down before dinner was ready. Grandma called us in for dinner. And that night was one of the best dinners that I ever had with my grandparents, because all we did was eat, and laugh, and eat, and laugh, and eat a @CAPS3 more, and laugh a @CAPS3 more! Well @CAPS6 and I had a tradition that was started when I was old enough to talk, drink root beer floats and watch @CAPS8's together. And from that night on to the day he died, my best friend was my @CAPS6. He passed away about a year ago. Life hasn't been the same since then. But when he passed he left me his truck. Every morning when I get in and start it up, the sound of the engine just brings back memories of him and I. The sound of the blinker even brings some memories too. But I know that everyday he looks down on me and thinks back to all of the good times that we had. Ah, how I miss the good times." 22 22 44 5 5 5 5 4 4 5 5 5 4 4 4 +21410 8 " When people think of football they think of the quarter back. When people think of basketball they think of the point guard. When people think of soccer they think of the goalie. Well when people think of softball they think of the pitcher. All these sports have one position where they are automatically put in a leader position. In softball the game always starts with the pitcher and usually ends with the pitcher. The pitcher is in every single play. Sometimes the pitcher pitches it and the big @NUM1 inch softball comes darting back at you before you even blink your eye and then the ball that you just threw underhand you now have to throw overhand to any of the four bases in a matter of seconds. To play a major position on a team and be a successful leader you need to be encouraging, helpful, and most importantly when the game is not going the way you want it to go, be able to stay calm and laugh and joke about the situation.I have been pitching fast pitch softball for ten years, and the compliment I get the most often is ""you have the best pitcher's mentality I have ever seen"". It is so stressful to be in a really competitive game and have the whole game on your shoulders. Three people on base, one bad pitch right down the middle and it is over the fence. One pitch can completely change the game! At times like these when the pitch just didn't go the way it was supposed to go and your whole time just looks at you with this gloomy expression on their face. As the leader on the team you can't just act defeated as you feel. I have observed numerous pitchers who just completely give up and look defeated. By being a leader, the other athletes look to you to see your reaction. If you look like you have no hope, then players assume that the game is over and the very next play they will mess up and so on and it will just get worse. By smiling and encouraging your teammates, they see that the leader hasn't given up and neither should they, this is always better in the long run. Players tend to look at who as the most authority on the field and respond the exact same way as they do.I play for a team that most of the players this is their second to third year. We are not a very good team but we practice hard and we never give up, it doesn't matter what the score is. In our league out of the seven other teams four are in the top ten in the entire state. One team in particular is @LOCATION1, they were first in state last year and were are very first game last year. By the third inning we were losing @NUM2. Even though I knew there was no possible way we were going to catch up, my goal was not to let them score again. In between innings I talked to every single player on my team, I tried cheesy jokes, inside jokes, anything to get rid of the tension. It worked and we played much better by having fun and being relaxed. Being in stressful situations people just have to find a way to laugh it off and see the bright side of any predicament and be able to get through it." 18 15 33 4 4 4 4 4 3 3 3 3 3 3 3 +21411 8 "We all need laughter once in our life!, but why do we need it? or why is it important to us?. We need laughter to have a great time with our friends and family because with out laughter our life's would be black and white we would be empty from inside with no spark of happiness and we would be grumpy all the time. Laughter is also important to us because that also gets us as people be in a relationship with someone we really like it maybe a female or a male it's also important that in the relationship you also have a great time when you are with that special person and not be bored and talk about things that really don't matter when you are with that person. Its fun when you make someone laugh because that shows that @CAPS6 are having a great time with you and might want to hang out some other day again and that's why we need laughter in a relationship or in friendships. Once I use to live in @LOCATION3 till my parents decided to move to @PERSON2.@CAPS5 my parents told me I was going to go to @LOCATION1 I knew a few people from this @LOCATION1.The people I knew were @NUM1,and @PERSON1 but I didnt really talk with @LOCATION2 or @CAPS1 before I only talked with @PERSON1. On my first day of @LOCATION1 he presented @CAPS2 friends to me because I didn't really know anybody else besides them three he would make up any kind of jokes and would involve me in it so I would be able to meet this friends better and maybe be friends with them but laughter always make friends and boy friends because I started dating when I was in middle @LOCATION1 I dated three guys my third boyfriend was the best he was sweet and nice he would do @CAPS3 ever just to make me laugh we only dated for @NUM2 years but @CAPS5 there was too much drama that I broke up with him it was really hard because I really liked him but we would still talk and make fun of each other he would still be nice to me even if we were not together like he wanted and me to but just because of the drama we had we broke up.always laugh dont get down just because of a relationship smile and laugh.After a year with out dating he decided to ask me if I wanted to be @CAPS2 girlfriend again and I thought about it a lot because I didn't want to go through the same drama as before.While we were not dating he would always find away to make me laugh or smile. when he sees me down @CAPS2 always there for me to support me and make me laugh that's @CAPS3 I like about him that @CAPS2 sweet and nice but if he only didn't believe @CAPS3 @CAPS2 friends tell him we would still be together and we would be laughing at everything together. We would make fun of each other we would never stop laughing it was some great times when I was with him but he still try's to keep a smile on my face even if I'm mad sad or not in the mood of doing something that's why we need laughter in our life's because it brings joy to does people that love us and care for us and by us having a smile in our face @CAPS6 are happy. Always make a relationship good by having a good time and making each other laugh one way or another it doesn't matter of @CAPS3 you laugh the thing is that you have fun. Another way to have fun and enjoy your relationship and friends at the same time is to have a time and maybe go to the movies with all your friends and boyfriend and go watch a movie or go to the fair were ever you think you want to go but also think about your friends and boyfriend if @CAPS6 are going to have fun there or if @CAPS6 will get bored. When you go with them make sure you make them laugh at least so @CAPS6 know that you are having fun make up a joke but don't say a joke that will make them fall asleep like my little sister @CAPS4 told us a joke it goes like this (guy on the @NUM3 I speak to your dad?"" the little boy whisper and said ""@CAPS2 busy!"",""@CAPS3 about your mom?"" said the man on the phone, @CAPS5 the kid said ""@CAPS4 is busy too!"" @CAPS5 the man asked him ""@CAPS5 @CAPS3 are @CAPS6 doing?"" and the boy says""@CAPS6 are looking for me!"" we didn't get it at first @CAPS5 my sister told us that the boy was hiding from @CAPS2 parents because he took the phone with him as in the boy don't tell jokes like does make it more funner. and thats why we need laughter in our life's. " 15 16 31 3 3 3 3 3 3 4 3 4 4 3 3 +21412 8 " embarrassing laughterHave you ever thought some thing was really funny where you felt like you where going to pee your pants? Or have you felt like the side of your stomach was going to explode because you where laughing @CAPS1 hard? well this happened to me it was all @CAPS1 crazy like a dream it was during my @NUM1 grad @DATE1 to be exact. My brother @PERSON3 and my friend @PERSON1 and i where walking through the park minding are own bissness just trying to have a good time. My brother was talking to @LOCATION1 about this really funny joke that he herd at school i don't remember the joke but i do remember how funny it was because i nearly peed my pants it was @CAPS1 embarrassing but at the same time funny i don't no why though. @CAPS1 i told them if they don't stop telling each other jokes i might pee my pants. But of cores what any brother would do is just keep on going they thought it was just @CAPS1 funny well not me i thought it was mean and painful if you no what i mean because i had a full balder. My friend @PERSON1 the sweet, loving person she is suggested to go find a bathroom, @CAPS1 off we went on the mission to find a bathroom @PERSON3 my brother said ""well i believe that there is a bathroom up this hill lets check it out and see if it is open @CAPS1 @PERSON2 can go to the bathroom"". little did we no that it was @DATE2 and the bathrooms where closed for the workers to come in and clean.when we mad it all the way up the hill i latterly ran to the bathroom i never felt this way before it was just @CAPS1 painful i could not put it into words.soon enough i found out the doors where locked i was @CAPS1 mad and devastated. @PERSON3 and @ORGANIZATION1 thought it was funny because i had to pee really bad and the bathroom was close they where laughing @CAPS1 hard, but i got tired of hearing them @CAPS1 i ditched them to go find the closes bathroom sadly it was a mile away that mad me @CAPS1 mad i wanted to cry. But of course that would get me no where! this is what i sad in my head ""that means i need to run"". I ran back up the hill a crossed the bridge and tors the nearest store as possible. FINALLY!!! I found a store it was a sigh ofreal eff I was @CAPS1 happy i could barely breath at this point. i walk into the store up to the store clerk and ask them @MONTH1 i use your restroom they point me to the detraction i walk in there head held high and felt like i accomplished something even though i did not except the fact i did not pee my self thank god!! @PERSON1 and @PERSON3 finally cough up with me they walk into the sore looking for me i walk out of the bathroom to find them standing by the door waiting for me then all the sounded i see a change in there face they are laughing i ask them whats @CAPS1 funny and they point at my paints, i looked down and i see water all over my pants i must off got water on me when i was washing my hands well that's embarrassing. but to this vary day when i look back to that moment i laugh to every time i hear it because it was s embarrassing but at the same time it was funny as it can get." 15 17 32 4 4 4 4 3 2 4 4 4 3 3 3 +21413 8 " Laughter is the only characteristic a person could perfect. Laughter is the element that could bring a group of people into a tight bond of friends. Laughter is the ultimate answer to success and happiness in life, and this is what the story of mine demanded me to say about laughter. Many times my family of four departs to go camping during the @DATE1. Family friends enjoy coming along with us on these vacations. A couple summers ago while on a camping trip with my family and lots of friends, I experienced and learned what true, rich laughter could do that changed my life. Whether I learned from the telling of funny stories at campfire, playing little practical jokes on each other, or just some old friendly card games of hearts, I really began to realize what the these times had meant to me. My best gal friend and I were expecting these three boys to join us all week. When the time came that they should arrive my friend and I started plotting out our secret plan. It was the boys duty before they could go out to the lake and start boating, to set up their tent. They managed to make a @NUM1 minute task take two hours, bravo to them. The three lost boys were at the water now as they had finally finished and could stand not to be anywhere but the lake any longer. While they were down swimming my friend and I took their hard worked tent and ripped out the stakes to collapse it first, only to then turn it inside out second. What better way to welcome new comers then to start off things with a good sense of humor. The boys however didn't think it was quite so funny, however by @TIME1 fall they had a plan rising within them that my friend nor I knew was coming for us. Wake up call rolled around at about four in the @TIME2 for us two girls in a non-sound proof tent. We had a very loud wake up call that sounded as if the ducks were in a war zone against each other. We found out later, that the ducks found sandwiches mysteriously placed in a direct circle all around our tent. It was game on after the boys pulled that prank. It's hard for guys to get you back, if they're stuck in a tent. A zip tie would do the job. In the middle of the @TIME1, sneakily crawl over and zip tie their zippers together. Just as my friend and I thought this was the perfect way to get the boys back, one of our co-partners went and told the guys our plan. The three amigos then wanted to turn around and do it to us first. The next @TIME2 my friend and I woke, we tried to climb out of the tent and that was a little hard to do. Our zippers were tied together and that's not so great of mix when you have us girls that really need to use the restroom. One of the boys had a pocket knife with him and he was playing like cat and mouse with us, barely letting the knife out of our reach. When I finally had hold of the small blade, I ripped open the zippers, gently tossed the knife to the ground and ran to the ladies room. When I got back to blood on the ground, I found that it wasn't as gentle of a toss as I thought it was. The same guy that gave us the knife to use, put his foot in the way of the ever so slightly tossed knife. Once he was home his mom took him to the hospital to get stitches. Campfire that @TIME1 was a hoot. Cards together was hilarious too because by the end we knew how each person was going to play, pretty much we knew who would win and who would come in dead @TIME1. Even with someone having a cut open foot we were on the ground rolling around because we're laughing so hard. My gal friend and I took off the make up and jeans, put on a baggy sweatshirt and up do with our hair and really just had a great time that @TIME1. It was the @TIME1 together there on the camping trip and it was nice to know we were having a good time laughing, with just being our self's and expressing without trying to impress. Later as we're all talking about these stories and jokes pulled on each other, we came to recognize that these are the kinds of moments people live for. Laughing brought us closer together, we weren't friends before and now after our times shared we're exceptionally close best friends. Our friend relationship with each other was brought into contact by laughing in harmony together, by the @TIME1 spent together, by harmless little jokes played on each other, by turning a camping trip in to something much more meaningful." 25 21 46 5 5 5 5 5 5 5 4 5 5 4 4 +21414 8 " Can you imagine life without laughter? Life would be so serious, and relationships would be so boring. That favorite comedy? Not funny. America's @CAPS1 @CAPS2 @CAPS3's, how can you not laugh! Laughter is a way to express emotions in a positive manor. What is it that relationships are built off of? Honesty, trust, understanding, and humor. Do you really want to be around someone @CAPS4 is boring? Because I don't. I believe strong friendships and relationships need laughter in them to keep them interesting. Many of my relationships have begun from a joke, laughter, or me being clumsy. I remember being in a class where I knew no one, and this is a very awkward situation to be in. I sat in the back of the class, with one other person, her name was @PERSON1. It started off quite and no on saying anything, so I decided to tell an extremely cheesy joke. As soon as I told it, there was a silence afterward, where we just stared at each other. Seconds later we busted out in laughter, you know the kind of uncontrollable laugh, where you cannot breath, and your tear ducts are overwhelmed to the point where tears slide down your cheeks? When this happened there is a sudden bond, a spark of friendship between the two of us. From that point we were inseparable. For the rest of the school year, we were partners on every project, multitasking our way through them. Half the time we would be making up funny scenarios, and laughing until we cried. The other half we would have make a fantastic project using the inspiration of each other to get the work done. I am an all around ""laughter enthusiast!"" I can make the smallest things funny, its a quality I enjoy very much @CAPS4 knew a silly joke could go so far? Laughter cannot be the only element to a developed relationship, you need trust, honesty and various qualities to keep a healthy relationship. My point is, how can you maintain a friendship with someone @CAPS4 you can laugh with, or be yourself with? It is human nature to laugh, you can't always be serious. I don't think that I could go a day without laughing. Laughing can be the antidote for a frown. Moral of the story, laugh!" 21 20 41 4 4 5 4 5 4 4 4 4 4 4 4 +21415 8 " For my family laughter is important to us because it just means that my parents aren't fighting that day. I was about nine years old and it was the week of @DATE1. My parents had been fighting all day, for me it seemed like it would never end. Usually @DATE1 was what I looked forward to all year, but now I just wanted it to be over. I hated seeing my parents fight, because it always scared my little brother. My little sister was too young to know what was going on, but whenever they started fighting around her, she started to scream and yell. When my parents fought I tried to keep my brother and sister busy but that never kept me busy. I still heard everything they said and it seemed to never stop. My sister was about one year old and when my parents fought she came into my room a lot because it was the farthest room from where the yelling was going on. We would watch @CAPS1 and play games until it stopped. Once, it went on for so long that she fell asleep in my room and I ended up taking her to her bed that night. There were so many times where I wished my parents would just stop fighting and realize that it not only makes them upset, it made all of us upset. Well, the day before @DATE1 eve my mom was at work and my dad had to go to work too. Since my moms work doesn't allow kids to be there, my dad took us along. I could tell he had been up late because he had dark circles under his eyes and he had forgotten to shave that @TIME1. Since, we were all on break from school, my whole day was spent making sure my little sister didn't get into mischief or get hurt. I had fun at my dads work because I loved playing with my little sister. My sister still wobbled when she walked so it made me laugh when we would play tag because she could never run fast enough and it made me laugh just to see her try. She loved it too because walking now gave her so much more freedom but she got herself into a lot more mischief now. On days when my dad didn't have much to do, he would have me help him try and teach my brother how to ride a two wheeler. It was a lot of fun seeing my brother try new things and have fun with it. It made us all laugh that day because he was so excited and happy that he could do something that he couldn't do before. When @DATE1 eve came my parents agreed to stop fighting for the next few days because they wanted us to be happy on @DATE1 @TIME1. Except that night they had a really big fight after they thought all of us had gone to bed. I had stayed up that night really late cause I was watching a bunch of my favorite @CAPS2 movies. I had just turned the @CAPS1 off when I heard them yelling. I didn't get much sleep that night because of all the yelling and screaming. Luckily, my brother and sister were already asleep and I didn't have to worry about them. The next @TIME1, I didn't know what to expect from my parents. Everything was how it normally was on @DATE1 @TIME1. There were gifts under the tree and stuff in our stockings. My brother came in and woke me up and said that everyone was out in the living room waiting for me to get my butt out of bed. I got out of bed, put my robe and my slippers on and went out to the living room. What I saw when I got out there was not at all what I had expected. My brother was sorting the presents so that everyone had their own pile. My dad was laughing at my sister, who was trying to pick up a presents that was as tall as her. And my mom was in the kitchen making everyones favorite breakfast, chocolate chip pancakes, bacon, and sausage. Everyone seemed so much happier then they had been the last few days. As we all ate our breakfast and opened presents, I realized this was the first @TIME1 in a while that my parents haven't fought. It made me really happy to see them getting along. We all laughed and had a great time that @DATE1 @TIME1. The rest of the day was great too. Laughter is still a big part in my family, even though my parents are separated now. It's a lot better now because we have a lot more moments of laughter and being happy then being upset and having to listen to them fight all the time. Now that we are happy and laugh a lot more, being at home is alot better. I really do believe laughter plays a big part in any family." 20 15 35 4 4 5 4 4 4 3 3 4 4 3 3 +21416 8 "Many people believe that laughter is a key part of any relationship. There are many times when even the slightest laugh is needed to break the tension, or even just relieve some stress every once in a while. It is often said that laughter is the best medicine, and also the cheapest. Laughter is easily found and common to come by. In my case, laughter comes naturally to my sister and I and for no particular reason at all; it not only saved, but it built our relationship to what it is today. When we were younger, my older sister and I did not get along very well at all. She would always tease me, then laugh about it; and I too would laugh at things that she did not find humorous in any way, shape, or form. This constantly caused conflict and many arguments between the two of us; therefore we hated each other and, in a sense, wanted nothing to do with each other. As my sister and I grew older and wiser, we started to become much more alike. We still made fun of, teased, antagonized, and pulled childish pranks on each other; but instead of getting angry, we would just laugh about it instead. As we continued to make each other laugh, we found ourselves getting along so much better. Soon after that, we began hanging out more and more and just for the fun of it, not because our parents told us too. Before we knew it, my sister and I were best friends. It is rare to hear about siblings being best friends. I am lucky to be able to say that my older sister is my best friend. Personally, I feel that laughter has played a huge roll in the relationship between my older sister and I. Now we depend on each other because we both know that no matter what, we can always make one another laugh and virtually cheer each other up. We hang out when we need to get away or when we have something that we need to get off our chests. We know we have each other for that because we know we can always laugh about it in the end." 20 19 40 40 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 +21418 8 " Laughter is an interesting emotion. It's one that you expect to feel when you are happy or humorous. This, however, isn't always the case. Some people laugh when they're embarrassed or uncomfortable. Others, when they're enraged and upset. And then, there are people who laugh when they are grieving or sad. People don't expect that to happen. To laugh when you are depressed. It is strange but true. I know this from personal experience, which led up to one of the most tragic events of my short life. I was about nine. The age @CAPS4 you're hyper and energetic almost nonstop. I had just arrived home from school and walked in the front door. My mom was waiting for @CAPS3 inside. ""@CAPS1 on @CAPS2,"" she said. ""We're going to see your grandparents for a few hours."" I was upset. I was not only tired and hungry, but I had to drive almost an hour away to see my grandparents. So I did what any nine year old would do. I cried, whined and pleaded her not to go. She didn't listen of course. She toned @CAPS3 out, waited until I was out of air, and then picked @CAPS3 up and tossed @CAPS3 in the car. Isn't taking a nap great? That's exactly what I did on the ride over. I was clapped-out, so I felt it was alright to have a little ""@CAPS3"" time. When we got to their house, I had just woken up and didn't feel like moving. I had to force myself to get up and say hello. It was depressing, yet fascinating really. Seeing your grandparents is like seeing a glimpse of the future. In the sense that you know what your going to look like when you're old. They had candy though, which was tasty and mouth-watering. We actually stayed for quite a few hours. My mom called my dad a couple of times asking if we could go home, but we never did. She just had a conversation with my grandparents while I watched television. At last, my dad finally called to say we could @CAPS1 home. We said goodbye and booked it before it was too dark out. By the time we got home, it was pitch-black outside. We still hadn't eaten yet and I was starving. I jumped out of the car and walked over to the gate that separated the front yard from the back. I shook the gate, expecting three delighted dogs to run up and start jumping on the gate wanting to play. Instead, only two showed. ""@CAPS4's @CAPS5?"" I wondered. I thought he was most likely eating or sleeping so I decided to just go inside and eat. When I opened the door to the house, both of my parents were standing in the entry way. I could tell they were trying to hold back tears. Then it hit @CAPS3 like a ton of bricks. ""@CAPS5 passed away,"" my mom said. I froze. I didn't believe them. I couldn't. My best friend in the world was gone. I cried for hours, possibly more. I didn't know what to do. Then something weird happened. I started to laugh. I don't know why I did. Maybe it's because I wanted to try to cheer myself up. Or maybe, I realized he was in a better place. To this day I still feel an empty space in my heart @CAPS4 my best friend once was. I still think about why I laughed that day. I think about why we laugh in general. Whether it's when you're happy, angry, or even sad, we laugh to try to get by and make the best of both good and bad situations. As tragic as the situation was, I can't help but feel happy. My best friend was in pain and could barely walk, so we had to euthanize him. I knew it was the right thing to do, and quite frankly, I don't think I would have felt better if I hadn't laughed that night. It was awkward at first. It felt wrong and terrible, but it helped @CAPS3 more than I could have ever anticipated." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21419 8 "The @CAPS1 of Laughter The @CAPS1 of a single laugh is quite an astonishing thing. Laughter has a strange way to either bring two people together or when used wrongly tear those people apart. In all of my relationships I have realized that being able to joke around and laugh with one another is a big deal. I have come to notice lately that I have an amazing best friend. @PERSON1 is always here for me even after the mistake I made that ended tearing us apart. Now that we have gotten over The @CAPS2 and can laugh about it, I've realized it makes being embarrassed a lot easier and brings me and my friends together. Even when a best friend does something that wasn't right and neither one wants to fix it. The @CAPS2 began last @DATE1 during my @CAPS4 soccer season, and should have never gone as far as it did or involved one of my friends. It was the hardest thing to admit that I had done wrong; both to her and him. The day we had gotten caught is now what I consider the scariest and worst day of my life. The @CAPS2 has also become a big learning point in my life, I've learned that all my actions do have consequences and how to balance what I want with what I should actually do. When I first started soccer for @CAPS4, I had never played with any of the people and I realized that by being the youngest on a @NUM1 team I would have to stand out and prove myself. Which is exactly what I did; just not to the whole team. After playing for about two weeks I had started to notice one of the boys who was on my team. I hadn't really thought much about it but when both me and him started to pursue our relationship it became a whole other thing. The boy and I had been dating for about a month and a half when this began to involve @PERSON1. See we weren't exactly allowed to hang out or even date for that matter, but we knew that we would take the chance of getting into trouble for each other. And as time went on and we had began to get closer to each other, we also had began falling in love. That @MONTH1 have been the reason I had chosen what I had but at the time it all seemed to make perfect sense. Then the @ORGANIZATION1 came around and we thought it would be the perfect time to see each other, little did we know this choice would result in us losing each other, me losing my freedom, both of us ruining my parent's trust and the worst of all me throwing away a great friend. We didn't think of these consequences so we went through with it. He would meet me at the @ORGANIZATION1 and I would tell my parents that I was just going to be with @PERSON1. At the beginning and throughout most of the time everything was going well me and him were having an amazing time because we could finally hang out with one another and nobody knew what was really going on. Little did I know that my mother had called @PERSON1's mom to make sure that I was going to be were I said and with who I said, and as soon as she found out I wasn't everything went down hill from there. It had already been a couple hours and we were starting to get hungry but neither of us wanted to eat the greasy food at the @ORGANIZATION1 so we decided to take yet another chance and leave, with me leaving @PERSON1 at the @ORGANIZATION1 and her not knowing were I went. As my mom became more and more worried she starting calling @PERSON1 to see were I was and of course @PERSON1 had no idea. On her list to call next was me. When my mom first tried calling me I decided not to answer and have her think i was just on a ride or something, but when she kept calling I knew that something was wrong. As I answered the phone I knew that she knew what I had been doing, but I still didn't want to believe what was happening. I thought that the only way my mom could have found out was because @PERSON1 called and told her that she couldn't find me and who I was with. So that is what I ended up accusing @PERSON1 of for at least a month after it happened. I couldn't look at her or even talk to her with out feeling resentment and embarrassment. When everything finally settled down, from being caught to being grounded the whole @DATE2, I knew that I needed to apologize for the position I put @PERSON1 in. It was the hardest thing I have ever done. But now knowing that @PERSON1 and I can laugh about it makes remembering that time so much easier and better." 20 23 43 4 4 4 4 4 4 5 5 5 5 5 4 +21421 8 " Green is not my favorite colorLaughter is an indulging part of life that a variety of people @MONTH1 enjoy or @MONTH1 not enjoy. Humor happens to be infectious. The sound of roaring laughter is far more contagious than any cough, sniffle, or sneeze. When laughter is shared upon one another, it binds people together and increases happiness and intimacy. Having to pick out one of the million laughter memories I have had was nearly impossible for me to decide, because every moment I spend opening my mouth and bursting out my ""ha-ha-ha"" with joy and excitement. I try to indulge the person I spent it with and the exact memory that happened. It was the @DATE1, @CAPS1 for many of us @DATE1 is one of the most enthusiastic times of our twelve months in the year. I was going to be hosting a pool party with all of my friends, @CAPS12 I needed to clean it out because it happened to be awfully disgusting from all the year long seasons that the weather decided to bring down. I didn't think it would be that much of a deal because that was the only way I would be able to host my party with my parents permission. @CAPS1 if you know me well enough, I am the average typical teenage girl that probably texts more than @NUM1 texts a day. So since I can't keep my white, somewhat sweaty hands off my phone you @MONTH1 already have a feeling of what happens next. If you taught I dropped it. Your absolutely wrong. Not surprisingly after cleaning out my pool for about one hour I finally finished, @CAPS2 I texted my boyfriend telling him that my pool was no longer green anymore. He replied with "".......?"" I questioned myself if I had sent the wrong message to the wrong person so I checked my history and it turns out that I had wrote to him, "" @CAPS3 my poop is no longer green anymore."" I was literally mortified. I didn't know what emotion to feel or what to expect from him later that day. I decided to just pretend it didn't happen anymore. So later that day my pool party started. Everyone showed up and looked at me in a weird way then usual @CAPS12 I was to ecstatic and pumped to my favorite song by my favorite singer @NUM2. As everyone showed up they all had a present bag in there hand, I wondered to myself why they brought presents if it wasn't anybody's birthday it was just a casual pool party to welcome everyone's favorite season, @DATE1. So I asked the question to my best friend and she told me, ""@CAPS4 we know its nobody's birthday @CAPS12 @CAPS5 texted all of us telling us you had green poop, and you were not feeling well so we went to @CAPS6 to buy you @CAPS7-@CAPS8, and @CAPS9 @CAPS10 ."" I was petrified and to be honest actually laughing insanely hard. So I stood up in front of all my guest and told them what had really happened and we all laughed historically. Without exception we kept the party going, and I eventually saw my boyfriend coming. I walked up to him and all we did was laugh with compassion and didn't mention one word about what had happened. Once the party was over and it became dawn we decided to have a bonfire and get cozy with our loved one, and just all us friends bond with one another. You can guess what happened next, we began to talk about what had happened earlier and I can honestly say I don't think I have laughed that hard in my fifteen years alive. Rapidly our curfew had almost expired for the day, so all my friends left and they made a nickname for me, ""@CAPS11."" @CAPS12 the funniest part about this story that I will never forget is, that when all my friends left, my boyfriend decided to take me out and get a burger at our local, also known as the best hamburgers in our town. As we finished eating a mother came along with her baby boy. I had to take a few seconds out of my life to carry it, and make my dummy looking face in order to make it jiggle a bit. @CAPS12 little did I know that the baby had just eaten. So you can imagine what happens next, green vomit gets all over me. I was honestly not mad, nor embarrassed. I just laughed so hard that I could feel my abs working out and tears from my eyes coming out. I believe in each and everyone of our lives we all have a special moment we desire to worship forever. It @MONTH1 be sad, embarrassing or even a comical quality type of moment we indulge in our memory. So till this day I am still known as ""@CAPS11"" to my friends, and there is no doubt that I will ever forget this memory." 18 23 41 4 4 4 4 4 3 5 5 5 5 5 4 +21422 8 " Laughter in someones life is very important for many different reasons. You can get to know someone by what they think is funny, show emotion and become closer to others by simply laughing together. The memories that are the clearest to anyone or are most personal might have laughter in them. These are also the memories that people would want to remember vividly. I think the quote ""Laughter is the shortest distance between two people."" is extremely accurate for most. I have many memories of laughter with my friends, family and loved ones around me. I will never forget some stories I have had in life because of all the laughter in them. When I was about six and my brother was about nine we didn't always get along, being the typical brother and sister that we were. We both had very outgoing personalities and had to be doing something at all times. When we did get along we usually had so much fun, ended up rolling around laughing together, and forgetting that we were ever mad at each other. Some of the things we would do would be to play hide and seek inside and outside our house, tag, bored games, and our favorite thing of all was tickle monster. Sometimes our closest friends would play with us but it was usually just something my family did. Most of the time me and my brother would ask my dad to play with us because playing games with two people wasn't very fun at the time. He usually agreed because he enjoyed watching us laugh together and create new memories and stories. When the three of us got together and played games I felt like I was on top of the world and I was really happy at that point in my life. My favorite time that I can think of playing games with them was when we started off by playing hide and seek in our house. Me and my brother usually crammed into little spaces like under the sink, under beds and in closets. We couldn't fit in them for very long because they were very hard to get into even for a little kid. My dad being a lot bigger than us kids would always hide in the shower or behind doors. He was really easy to find but we still found it really fun and laughed every time we found him. One of the times when it was his turn to hide me and my brother went to my room to count to any number we felt like. We were inpatient little kids so we didn't usually count all the way to the number my dad told us to. Then we ran down our stairs, turned the corner, ran down the hall and found him hiding behind the bathroom door. You could always tell if he was there or not because if he was the door wouldn't open all the way. Instead of coming out of hiding when we found him and counting for us while we hid, he started to chase us around the house. We weren't expecting it at all so we were laughing and running and it was hard to breath. Eventually he caught up to us and our game of hide and seek turned into the best game of tickle monster ever! My brother thought we should hide under my parents blanket on their bed but that just made us an easier target for my dad the tickle monster. By the time he was done tickling us, our faces were red, we were out of breath, tired and had the biggest smiles on our faces from laughing. Trying to breath, trying to get away and laugh all at the same time really tired us out. My dad eventually got us out to the table where we had our lunch and then we all fell asleep with our belly's full and as happy as could be. That was a really fun memory I have with lots of laughter and good times. To me, laughing is a big part of getting to know someone and strengthening already existing relationships. It puts everyone in a good mood and keeps people happy." 21 20 41 4 4 4 4 5 4 4 4 4 4 4 4 +21424 8 " Laughter is the expression of being happy, being able to be yourself around the people you care about, and expressing your feelings. Anyone can share laughter with anyone, even if someone you dont know very well or someone you have known for a long time and dont talk anymore, make someone else feel good by sharing a laugh with them. Last year my close friend, @LOCATION1 and I were together all the time almost everyday. We always make other laugh at the silliest little things, even if no one else understands what we are talking about. We can make laughter out of any small thing. We hang out a lot so that makes it easier to share our laughter with each other. One day in class we were just sitting in class reading a book and I turn around, there she is sleeping, with drool coming out of her mouth. The room was quiet, I was trying not to laugh really hard I started giggling. I poked her and she woke up and had her hair stuck to the side of her face. It was so funny, I couldnt hold it in anymore. She had a confused look on her face then I pulled out my mirror and showed her what I was laughing at, then she started laughing too. She fixed her hair and wiped the drool away. Then the teacher walked over to us and asked us if we had a problem. We looked at each other and giggled then replied with no we do not have a problem here. The next day we were walking to the commons after we had come back from @ORGANIZATION1 and we heard one girl say to another girl, ""is that all you do is talk crap about your sister?"" @CAPS1 girl was not a regular girl, she had purple faded dyed hair and teeth that stuck out over her bottom lip, which made the whole thing even more hilarious. @LOCATION1 and I looked at each other and were like holy crap did that really just happen right there? We started laughing after we were out of ear shot so she could not hear us laughing at her. We laughed about that for the rest of the year. Everytime we saw her after that we called her ""girl with purple hair"", because no other girl at our school at the time had purple hair so it was really easy to spot her out of a crowd. Still to @CAPS1 day laugh every once in a while about that situation. A few weeks later after @CAPS1 had happened we had seen her former boyfriend hanging out with a group of girls so we went closer to see who they were, I did not know any of them, but I saw a couple of them and knew that they were freshman. @LOCATION1 gives them a dirty look and says he definately down graded since I dated him. There was one certain girl that was literally hanging all over him. She was not even pretty at all. She had a short hair cut, but her hair was all greasy, it was like she had put lots of gel or had not taken a shower in two days. The girl was wearing clothes that were obviously way too small for her, you could see half of her upper body just exposed there. It was really trashy. We started laughing really hard because it was so obvious she was trying to get his attention and he was totally ignoring her. @LOCATION1 looked at me and we both starting laughing. I am not really sure what she was laughing at, because I was laughing at the girl hanging all over @LOCATION1's former boyfriend. The next day we were in @CAPS2 @CAPS3 class and I made a comment about someone was being stupid and a student in the classroom tried to get me in trouble fo rit, but luckily my teacher liked me a lot better than the other student, because that person got in trouble way more frequently than I have. Later on in the day I got called down to the office because the vice principal needed to speak to me. He said @CAPS1 student has a problem with me calling him stupid. I have had lots of issues with @CAPS1 person and I told the vice principal that he is very obnxious, and I also explained everything else that happened earlier. The vice principal told me that I am not in trouble because he was trying to start an issue. We laughed because he tried to get me in trouble and it did not work, then we both laughed because that student is a trouble maker. I have learned that throughout life you need to have a good laugh every now and then because laughter expresses your feelings and sometimes it just makes you feel really good. I know that with my experience I need to have those close people to make me laugh, also to get me through anything that I am going through." 20 18 36 36 4 4 4 4 4 4 4 4 4 3 4 3 4 4 4 3 4 3 +21425 8 " Many people say that the people who laugh more live longer. I remember when I was ten years old, I was going to learn how to ride a bike. Little did I know it was going to be a hard task. My brother said I didn't need training wheels. Although I was scared, looking at other kids ride their bikes made me gather up courage to learn how to ride a bike. It was the big day, it was a perfect day to learn how to ride a bike. As I walked down the stairs all geared up and ready I began to feel @LOCATION1. I went outside, my big brother was waiting for me. He had a helmet and the bike, he began to go over the basic rules. Slowly I started to get on the bike, I was confident I could do it. Next it was time to gear up and put my helmet on. My heart was pounding, I could feel my blood going through my veins. Giving the first peddle I fell and hit the ground extremely hard. All I wanted to do was run home and cry on my moms lap. I looked up at my brother, he asked me if I was okay. Up until this day I can remember laughing instead of crying, after all crying wasn't going to make the pain go away nor teach me how to ride a bike. Finally, I got back on that bike and peddled and peddled. I can remember my brother telling me that laughter is the best medicine around. I was laughing as a peddled, sometimes I think that maybe laughter is what made me accomplish my goal to learn how to ride a bike. in my life laughing and smiling and having fun is a big deal. You can't always take laugh too seriously." 16 18 34 3 3 4 4 4 3 4 4 4 4 4 3 +21426 8 " When I was adopted, I didn't know what to expect. Thoughts ran through my mind of what the @CAPS1 and @CAPS2 were like, what the home was like, and if they would like me or not. I was told I was going to have two new sisters named @PERSON2 and @CAPS3. Sitting in the passenger seat of the black @ORGANIZATION3 @CAPS4 my heart began to pound harder and harder at the passing of every street, coming closer each second to the home that I would soon be able to call my own. Approaching the driveway I saw a well laid out, one story blue house. The door was opened by a really tall well built man, who appeared to just have gotten off of work. He was very welcoming and said his name was @CAPS5, as he invited me in I was greeted by a white pit bull whose name was @CAPS6. To the right was a girl with short hair who was a little bit taller than little five foot three inch me, whose name was @CAPS3. I was a year older than her though, so I saw it as a fun thing to have a little sister. At first I didn't notice she was observing me and then finally when I did notice, she gave me a really big smile exposing her beautiful straight teeth. When I met @CAPS1 who said her name was @PERSON1, I automatically felt this warm feeling of acceptance right away. She was also a little bit taller than me, and was very pretty. They told me that I would be meeting @PERSON2, my older sister the following @DATE1 because she was attending college in @LOCATION1 at @ORGANIZATION1. We stood in the kitchen and talked a little bit trying to get to know the basics about each other. I became very talkative as little electric currents of anxiety drifted through my body. We talked about our interests for a while, and then I finally asked them what the rules were. The response I got was quite different than what I thought I was going to get. I learned that they have never had to ground any of the girls, the only thing that I should make sure to do is simply respect everyone in the household. Finally @CAPS2 decided it was time for the grand tour of the home. My room was a bed room that at the moment was being used as a storage room, so I had to stay with @CAPS3 in her room for a few weeks until @CAPS2 could get all of the things taken out into a shed he was going to built outside in the back yard. The continuous rain kept him from being able to do anything outside, so instead he built a desk for the computer that would fit in the bay window next to the kitchen. Since plan A didn't work out for my room, @CAPS1 ended up having the office be converted into my room and the bay window area was converted into an office space for @CAPS2 to be able to run his business. Each week that passed I began to feel more comfortable, my favorite part of the day was dinner because @CAPS1 was a really great cook. @CAPS1 would take me to counseling sessions to make the transition into the family an easy one. I have never had any one put my needs first before, and it made me feel loved for once in my life. It was always really easy to talk to @CAPS1 and @CAPS2, but I would always find it a little bit harder to talk to @CAPS3. I was always worrying about saying too much or not saying enough, even not being able to say the right thing at the right time. Trying to connect with my sister was a challenge for me. I wanted to get to know what her interests were, but she would constantly be with her friends or be doing her homework. It wasn't until my @ORGANIZATION1 was having a @CAPS18 @CAPS19 fundraiser that we decided to go. She invited her friend @PERSON3 and I went along to pay for their ice cream. When we arrived and got our ice creams we all sat down at a table when all of a sudden, @ORGANIZATION2's @ORGANIZATION1 friends show up and decide to leave @CAPS3. I see the hurt in @CAPS3's stare right away, so I began to tell her a funny story of something that had happened to me. After I was done we laughed and then she replied with a story of her own. We kept talking back and forth in a reciprocal conversation, and without realizing it we were really enjoying ourselves. It wasn't until later that week when I went to see the counselor that I learned laughter brings people together and connects them in ways one cannot imagine. To this day @CAPS3 and I are really close, and we even prank each other now. I love my little sister @CAPS3." 21 20 41 5 4 5 4 4 4 4 4 4 4 4 4 +21427 8 " Laughter helps in so many situations throughout life. When your angry, sad, nervous or even mourning. Laughing about the good times @CAPS1 had with an old friend, or realizing a situation isn't scary or sad but is really quite hilarious. Many times throughout my life when things happened that made me in someway or another upset, the people close to me always helped by making me laugh. Realizing whatever was happening was not as bad as I had thought. Which made me look on the positive and light-hearted side of things. A specific situation happened when I was about nine years old. In school most kids at some time or another say something hurtful or without thinking. While parents should teach their children better it seems to be in their nature to make thoughtless observations, some times hurting others by drawing attention to flaws. I was sitting in class working on an art project. There was three other kids at my group and we were talking about who knows what, it was so many years ago. But then on boy starts talking about weight and how he is so tough and muscular, and yes were all eight or nine years old but he thought he was being cool. So he turns to me and says ""@CAPS1 are not in shape, your fat"". This crushed me how was I suppose to reply to this. I tried to act as if it didn't bother me. I went on to finish my art project. I could not help but hear repeating in my head those evil words that stung me. My eyes started to tear up and soon a drop of water appeared on my paper, I could not hold back the tears. I was waiting for the bell to ring so I could get out if this terrible place and go home to people who were smarter then to say things like that boy did. As I got off the bus I was already feeling the emotions rising to the surface. Starting to bawl as my mom opened the door. She exclaimed ""@CAPS2 what's the matter, what happened?"" @CAPS3 tears I relayed the terrible scene. She felt bad for me and asked the boys name. I told her @PERSON1. She began to laugh and say ""That chubby kid with the buck teeth?, oh honey don't let that bother @CAPS1 he isn't in shape at all"". I started to laugh realizing he did have buck teeth. The tears stopped coming to my eyes and I really realized the whole situation. He was being thoughtless and bragging about himself, which the statement were not even true and I was not fat. Laughing made me feel better and realize how silly it all was. Laughter really did help me realize it wasn't so bad. I was still a little embarrassed but I was over it. Laughing also got my mind off of what @PERSON1 said to me. Of course even though he said a thoughtless comment to me, I would not have said a thoughtless commend about any of this flaws. But laughing about how he had buck teeth made me feel better. Laughing also made me see how I was making a big deal out of a little situation, also. " 17 18 35 4 4 4 4 3 3 4 4 4 4 4 3 +21428 8 " In order to to laugh you have to be happy. I was once happy until I made mistakes. The mistakes I've made me more dissapointed in myself than anything else I could think of. I sit in a room that I don't want to because of my actions. My life was perfect before I had my brothers my parents and my love of my life. Now I look back on how nothing is worth taking me away from them. The laughs I'm missing out on right now is what hurts most, because I could be at home or even at school right now. Instead I'm here without my laughs, my brothers, my parents, and my love. Trying to put a smile on my face even though I know I'm happy. My life was one of the best lives you could have asked for, but because of my actions I ruined it. Every moment I got to have with my beautiful babygirl, in other words my love. I cherished the time I had with her and now i have to wait to have a laugh with her. I get about fourty five minutes to and hour and a half every day to talk to her and my family and it deffinently hurts more then what you could imagine. having to talk on the phone that you can barely hear their threw it just kills me. Knowing that everything I've done has effected me and my family. Alot effects my brothers though and I know they don't understand but hopefully one day they will. hearing my little brother @CAPS1 over the phone crying because he can't see me. It just hurts inside even writing about this right now makes me want to just break down in tears. I almost fell like could in front of these other kids that are in here too. My family is my main priority and when i get out I gonna make sure to get back on track for my family. So I can have the laughs that I want now. In the @DATE1 I would have never guessed that I'd be here where I'm at now but when I get home I'm gonna put a smile on my brothers face and my parents and when I see my girl I'm gonna go give her the biggest smoochie boo kiss of her life so she'll cry and laugh." 15 15 30 3 3 3 3 3 3 3 3 4 3 3 3 +21429 8 "The @CAPS1-inspirational, @CAPS2 @CAPS3 of @CAPS4 I @CAPS5 the @CAPS6 of @CAPS7 -- @PERSON1. What is @CAPS13, exactly? Some might say, ""@CAPS8, that's obvious. @CAPS13's a sound, emitted from a person when they think something is funny!"" That's as good a response as any other, and certainly quite believable. But I believe laughter has a much deeper definition; a definition that can only be explained through a marginally-humorous, less-than-inspirational story about my experiences as a @CAPS9-@CAPS10-@CAPS11 basketball player. This year, as a high school sophomore, I decided to do something I'd never done before: go out for the basketball team. I was inspired by a longing to become more involved in the school district, and to be able to exercise throughout the rain-drenched winter months in which @CAPS13 took place. Having only picked up a basketball in order to steer clear of the ""sit-outs"" zone in middle school @LOCATION1, my performance at early practices was comparable to that of a high school dropout determining the orbit of the planets around the sun; and at least they get a calculator. Naturally the year I decided to give basketball a shot, the coaches informed us that seven unlucky individuals would be plucked from the team with joyous abandon. Through sheer force of determination, I improved enough in our first few weeks to be deemed ""better than dirt"" by the coaches; narrowly avoiding losing my spot on the team. In the months ahead, I would learn that my job wouldn't be making baskets and stealing balls... As astonishing as @CAPS13 was, my ability to imagine myself playing basketball far surpassed my actual skills on the court. I soon found that my place on the team wouldn't be aggressively running up and down the court fighting for control of an orange ball; I would be on the sidelines, cheeks firmly planted on the bench upon which my teammates would take breathers before going back into the action. Our team could play basketball, but not often on the same level as the teams we faced. As each game came and went, I could see the fighting spirit fizzling out of my peers' eyes; their morale was simply dropping, and no amount of my ball-playing abilities could change that. @CAPS13 was one game in particular twhen I discovered I didn't have to play in order to help my team. @CAPS13 was a home game, in our lower gym; we were down by about @NUM1 points against a team we had fared @CAPS8 against previously. Needless to say, players were becoming very frustrated. One of our star players, @PERSON2, was becoming so frustrated that our coaches decided to pull him out for a breather. He was raging, spitting profanities. He dropped himself on the bench with the elegance of an enraged walrus. His mom came down from the stands to give him water, which only made him embarrassed him more. Sitting beside @PERSON2, I could feel the anger radiating off of him. He was ranting under his breath over number @NUM2, the opposing team's point guard. I noticed that while @NUM2's fast legs and swift hands made him a great ball-player, his voice -- a good octave above his teammates' -- was much more @CAPS8 suited for covering @ORGANIZATION1 songs than calling out plays. I turned towards @PERSON2, tapping him on the shoulder, and informed him of my insight. He looked at me for a moment, a mixture of anguish and ""don't-talk-to-me-or-I-will-murder-@CAPS12"" on his face before bursting out laughing. Clapping me on the back, he said with a smile: ""@CAPS12 always know @CAPS4 to make us laugh, @PERSON1"". Suddenly @CAPS13 dawned on me that my banter and dripping sarcasm was quite often the one thing keeping smiles on my teammates' faces. I was able to use @CAPS7 to diffuse tense situations, and allow emotions to flow freely in a more positive manner. We lost the game. In fact, we lost all but one game the entire season; and so I made @CAPS13 my personal duty to keep the entire team in good spirits even in the worst of times. As the weeks went by, I started to feel more and more an integral part of the team; making teammates laugh kept their minds clear of anger and frustration, and allowed them to play to the best of their abilities. And so @CAPS13 was. Some players had quick hands, others had a flawless shot. Me? I made people laugh. I gave my peers, my friends, the ability to see light in even the most dire of situations. I didn't receive an award, a recognition of athletic ability. Instead I found the satisfaction of making people smile, of watching the enraged despair on their faces disappear -- replaced with optimism and hope. Laughter is what pushed my teammates past anger, to be the best they could be. So, @CAPS12 tell me: Is laughter simply noise that a person makes when something is funny, or is @CAPS13 something more? Spoiler alert: @CAPS13's much, much more." 30 25 55 6 6 6 6 6 6 5 5 5 5 5 5 +21431 8 " Laughter plays an important role in everyone's lives. Different laughs represent various things. For instance, have @CAPS2 ever heard someone chuckle and know right away that they are being sarcastic, or maybe even sympathetic? A laugh can say a lot. I'm going to tell @CAPS2 about the time my friend fell into an @NUM1 pond. In early @DATE1, my friend was visiting me at my house for a week. The third morning of her stay, we woke up and it had snowed seven inches @TIME1. I was used to the soft, white flakes spiraling through the air, @CAPS1 @CAPS1 was from @LOCATION1 and had never seen snow before. As my friend was listing all of the things @CAPS1 wanted to do that day, @CAPS1 let out the most anxious laugh I had ever heard. I could tell @CAPS1 just wanted to go outside that very moment. Of course @CAPS1 knew it was going to be cold but I didn't think @CAPS1 knew how cold. I told her it was going to be chillier than what @CAPS1 might be expecting. We got dressed in numerous layers of clothing: socks, pants, shirts, and jackets so we could head out. As we were walking down the snowy hill @CAPS1 spotted the @NUM1 pond on the lower half of my property and hurled towards it. @CAPS1 asked if we could go swimming, I laughed a sarcastic laugh and answered, ""heck no!"" @CAPS1 walked toward a massive log that lays across the water and decided to cross it. @CAPS1 said that if I didn't go with her @CAPS1 would push me in. So I took a step back, @CAPS1 just looked down and continued walking. As @CAPS1 stepped onto the log that was glazed with ice @CAPS1 got a little cocky and decided to jump around to show me it was ""fun."" I laughed at the funny movements @CAPS1 was making and whispered, ""@CAPS2're going to fall."" All of a sudden @CAPS1 slipped and the ice cracked. It reminded me of glass shattering on a cement floor. This picture in front of me was almost as if it was in slow motion; I can remember her hands reaching up to grasp the log before @CAPS1 fell in to the freezing water. @CAPS1 fell through, I bounded @TIME1 to help her out, I slowly pulled her out of the pond. I looked at her after I had harpooned onto the log and we both burst out in laughter...although her teeth were chattering and her multiple layers of clothing we soaked, I knew @CAPS1 was @CAPS3 going to cherish this moment because it was her first snow experience. Walking up to the house @CAPS1 giggled, ""I should have listened to @CAPS2 huh?"" I nodded my head and suggested we take off her clothes to ring out and put in the dryer.We changed into pajamas and sipped on hot chocolate and coffee all day long, sharing laughter and smiles. I will @CAPS3 remember this day because there were so many different stories I can tell from it." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21432 8 " Laughter forms a bond between two people; a good laugh can turn an uncomfortable situation into a pleasant one. A fantastic example of the power of laughter would be the first time I met my mother's boyfriend. My father died when I was thirteen and since then I had stubbornly resented each new man my mother attempted to bring into my life. This iron clad resolution ended when my two sisters and myself sat down to dinner with @ORGANIZATION1. One @DATE1 @TIME1, my mother announced that she had invited her new boyfriend over meet her children. My sisters and I were forced to scrub the house from top to bottom in order to prepare for our guest, while my mother cooked a giant pan of lasagna. When the house was clean and the dinner was cooked, I dressed for this most grievous occasion. My obsessive compulsive mother made me change clothes at least thirty times before she deemed me presentable enough to meet the man whose existence I was beginning to despise. At precisely six thirty in the @TIME2, @PERSON1's blue @ORGANIZATION2 pulled into our driveway. I shot my mother a steely eyed glare as I opened the door for the buffoon; thus, a most dreaded dinner began. My determined hatred began to soften as soon as I saw @PERSON1, but it was by no means expired. @PERSON1 was tall and tan, a few years older than my mother judging by his wrinkle strewn skin and the silver streaked through his dark hair and matching mustache. He had the sort friendly, pleasant appearance that makes him immediately likable. My now giddy mother and her sullen children sat down to eat with the cheerful stranger. My younger sister warmed up to him first. She and @PERSON1 share a love of snakes, lizards and all things I deem ""creepy crawly."" A common interest brought them together before I knew it. My older sister adored @PERSON1 after a lively conversation about football ensued. @PERSON1 and my sister discovered they were both @CAPS1 fans, and consequently formed a bond over their team. After winning my siblings over, @PERSON1 tried to charm me into liking him to. He attempted to talk of movies, music, sports, animals, even politics, but nut nothing he said could melt my icy disposition. I was determined to hate him from the start of the @TIME2, and no amount of charisma would break my persistent stubbornness. Eventually he gave up on me, and focused on entertaining the people who did like him. Over dessert he jumped into a stand-up comedy routine cleverly disguised as a story about his recent flight to @LOCATION1. He went on about the ridiculous security checks, the overly cheerful flight attendants who really hate their job, and the corny safety videos. I had tears of laughter in my eyes before I remembered that I had made a solemn vow to loath @PERSON1. I fought hard to resume my former demeanor, but my will did not stand a chance against @ORGANIZATION1's sense of humor. The triumphant smile and slick wink he shot me from across the table told me that he had won. Sure enough, we were the best of friends before the night ended. Eventually @PERSON1 and I conversed about movies and music and found we had similar tastes in both, but our common interests had nothing to do with our friendship. They simply fueled the fire. The power of laughter brought us together like a magnet and a washer. Just as the shortest distance between to points is a straight line, laughter was the straight line between myself and @PERSON1. He and my mother are still together, and ever since he came into our lives, laughter has been our constant companion." 27 20 50 50 6 5 6 6 6 5 4 4 5 4 4 4 5 5 5 5 5 5 +21433 8 " A @CAPS1 @CAPS2 The @CAPS3 @CAPS4 was a warm @DATE1 @CAPS1, some of my friends and I had planned to spend a @CAPS1 @CAPS2 the @CAPS3. We had decided on walking around and looking @CAPS2 all the cool stores. Eventually we would all get lunch and go out to the park near the river right next to the @CAPS3. We all agreed that @CAPS4 was a great plan and we would all have a wonderful @CAPS1. To start off, we all met @CAPS2 the bus stop by the movies. @PERSON3, @PERSON4, @PERSON2, @CAPS5 and I were all there. We decided to go look inside @CAPS6 @CAPS7 first because they have all the crazy things we love. Inside the store, I found a dress that was to die for. @CAPS4 was small and grey with skulls all over @CAPS4. Unfortunately, @CAPS4 costed @MONEY1 that i did not have, so we left @CAPS6 @CAPS7. Next, we went to @NUM1 @CAPS10 to see what they had in store for us. @PERSON3 and I created a black teddy @PERSON1 with a studded leather jacket. We gave @CAPS4 an awsome top hat and named @CAPS4 @CAPS11 @PERSON1. We all thought @CAPS4 was pretty funny because teddy bears are supposed to be cute and this one was kind of scary. We paid @MONEY2 for @CAPS4 and continued on our little adventure. We all decided @CAPS4 was about lunch time so we went and got chineese food from @ORGANIZATION1, left the @CAPS3, and headed down to the park next to the river. Before we got to the park, we stopped to go see what @CAPS4 was like under the bridge. There were towers of rocks all over the place, so we decided to build one of our own. We stacked @CAPS4 up almost as tall as me before @CAPS4 toppled over, almost crushing @PERSON4 on the way down. We followed the little path away from the rock towers down to the river. @CAPS4 lead us to a little beach next to the water. There was a huge pillar separating the trees and bushes from the water. We decided to eat lunch here instead of going to the park. After eating lunch, we were all full of energy again. @CAPS5 started a pine cone war by tagging me in the back of the head with one. After a few minutes, all of us were involved. We used the giant pillar from the bridge as a shield but @CAPS4 didn't quite work. @PERSON4, who had a better aim than all of us, was hitting everyone left and right, so the rest of us teamed up on him. We all threw pine cones one after the other untill @PERSON4 had to start backing away. As he reached the edge of the shore, he tripped over a big rock and fell backwards into the shallow water. Instantly, we all busted out in a roar of laughter that continued on for a good couple of minutes before @CAPS5 finally decided on helping @PERSON4 out of the water. He was very unhappy about the situation while we were all quite pleased. Jesica had managed to get a vidio of the whole thing and when we played @CAPS4 back to @PERSON4 he couldn't help but laugh with us. After that, we went to the park. Immediately, we all ran for the slide. ""I wanna go first!"" screamed @PERSON3 as we all made @CAPS4 up the jungle jim to the slide. All of us pushed and shoved to get to the slide before I finally suggested going down the big, swirly slide all together. Everyone els thought @CAPS4 was a great idea so we attempted @CAPS4. @PERSON3 was first, as she wanted, I was second, followed by @PERSON2, @PERSON4, and then @CAPS5. We started off realy slow and progressed in speed as more of us piled onto the slide. We ended in a pile @CAPS2 the bottom, all laughing histarically. When we all came back to reality we realized @CAPS4 was time to head home so we all grabbed our things and headed for the bus stop. In the end, @CAPS4 had turned out to be an even better @CAPS1 than we had expected. The whole @CAPS1 was full of joy and laughter, whitch are a few of the key aspects of life. Without laughter, there would be no way to @ORGANIZATION1 when you are extremely happy or when you think something is funny. Happiness is one thing you need to live a fun, fulfilling life. I feel like the ability to laugh is one thing that makes a person fun to have around. Do you think you laugh often enough?" 20 15 35 4 4 4 4 4 4 3 3 3 3 3 3 +21434 8 "The time i went @CAPS1-wheeling!One time when i went @CAPS1-wheeling with @PERSON3, @PERSON5, @PERSON1, @PERSON4 and i we went up @ORGANIZATION1. This is the arrangements of who was in what trucks. It was @PERSON2 and I in my @CAPS2 @NUM1, @PERSON1 and @PERSON4 in his tracker @NUM1, and @PERSON3 and @PERSON5 in his @NUM3 wheel drive jeep @CAPS3. When we started to head back down the mountain @PERSON3 let @PERSON5 drive down. @PERSON5 can't see very well at night because she wears glasses and her eye sights not very good. Well i was following them down the mountain and we finally got to the pavement and @PERSON5 was going pretty fast for that road because its a narrow curving road and that was the first time she had ever been on it before. She went to go around a really sharp corner and got up on two wheels and flipped over right in front of me so i had to slam on the brakes so that i wouldn't run into them. So i shut my truck off run over there as fast as i could and helped @PERSON5 out of the truck and when i turn back around to go help @PERSON3 out hes already on top of the truck.He looks at @PERSON5 ans says ""@CAPS4 look at what you did to my truck, i have tried many of times to roll it and never have been able to god damn you!"". So we all started laughing and then i got a chain out of the back of my truck and pulled him back over. Then it was really quite and @PERSON4 farted and we all started to laugh again. Well then @PERSON3 found out that he got a hole in his radiator i had to pull him back to his house and it seemed like the longest drive ever because his truck weighs way more than mine so i had to pull him home in @CAPS1 wheel drive and you cant go over thirty in @CAPS1 wheel drive because stuff can break. So we finally get to his house and his dad comes out side and he saw the truck and was really pissed because he gave that truck to him for a graduation present and he messed it all up. Then he finally cooled of cause he said no one was hurt and he was glad for that so we went in the house and ate dinner and went to bed. So the moral of the story is be very careful because things can happen when they are unexpected." 15 17 32 3 3 3 3 3 3 4 4 4 4 3 3 +21436 8 " We all know the benefits of laughter. Many people believe that laughter is an important part of any relationship. Is there anything more to laughter? Can one person be happy without laughing? I have never gone a day without laughing. I know the benefits of laughter. Do you? I know the benefits of laughter. Its truly amazing how something so simple can bring people together, make friends and fix relationships, or make someones day a little better if they are having a rough time. There was a time in ninth grade when my best friend and I got into an argument because I didn't ask him to be on our basketball team for a tournament that happened once a year. After talking it out, and my best friend cracking a few jokes, it had fixed everything. My point is that laughing can release tension, not make everything so serious. Laughing can help you make friends too. Around the world, simple laughter can bring two or more people together. What about enemies? Laughter could possibly show you something you like in that person your not too fond of. Laughter happens to be great for health too, and its a proven fact. What happens when you are really stressed about a test you had recently taken or something different? There are a lot of ways to handle stress, but a really good technique is simply laughter. Try going onto the internet to find something funny that will make you laugh, go hangout with a friend or group of friends, or go and find something else that might have you laugh a little. A famous @CAPS1 @CAPS2 @CAPS3 always gets nervous before one of his shows, and it just so happens that laughter is something he uses to shake off his butterflies. Its quite amazing how laughter can help you in many situations. Do you ever find yourself feeling down or stressed? Have you had a good laugh recently? Laughing will probably help. If you are having trouble bonding with a friend or simply having a bad day laughter will be a great cure. Laughter is great for your health, and laughter has helped me in my life so far. and whether you realize it or not laughter helps you to. Your laughter can help others too! Next time you feel down or need something to lift your spirits have some fun with friends or do something you enjoy that might give you a good laugh." 18 19 37 3 4 4 4 3 4 4 3 4 3 4 4 +21437 8 " Laughter is the most important part when you meet other people. Even a light smile can change the image of whole person. Sometimes, people practice their laughter to get better image of themselves. I believe that every people contain their own personality in their laughter. How you laugh is the way to express how you feel. For example, you can tell you are not comfortable by chuckling nervously, or you can tell it wasn't actually funny sarcastically by laughing without any tone or emotions like a robot. You can tell lots of things with a laughter. Usually, friendships are made automatically when two people have something in common and agree with each other. And a laughter is the best way to agree with somebody else. As an @CAPS1, I had very hard time expressing my emotions with my laughter. As I know, many @CAPS2 people don't know that @CAPS1 can't smile as well as white people because their facial muscles are not very much developed. That's why other people think @CAPS4 are always angry and doesn't like humor. Thanks to that, I had lots of misunderstandings about my laughter. When I laugh, I don't look like I'm laughing which makes an unnatural laughter. When I first got here, it was in middle of semester and I couldn't speak @CAPS5 as well as I do now. I had no friends at all. It was a really hard job becoming a friend of someone without knowing what they know, or what their sense of humor is. In @LOCATION1, I usually made friends by making them laugh, but in here, I didn't know how to make them laugh. I had to listen to them quietly what they were laughing about, and I had to figure out what kind of sense of humor they had. Finally, when I made one friend, I still couldn't laugh. I didn't understand any of words what they were talking about. I didn't know when to laugh and where to laugh. It seems quite silly when I look back then right now, but I was really serious. I really missed @LOCATION1 where I had friends I can understand and laugh together. Living without sense of humor made me very depressed. I suddenly stopped laughing at all because I thought laughing alone would look stupid. I kept searching about this country's culture, and I tried to watch television more to learn what they have in their heads. And then, I finally understood those slang words they used and I could laugh when other laughed. I was really happy. I was so happy that I could make other people laugh. I made lots of friends and I laughed with them. But I still couldn't understand some of the language or some other things they laugh about, but I just laughed when they laughed. It made me feel I was one of them when I laughed with them, and I was really happy about it. There was a research about laughter and life, and it said that you live longer when you laugh more. They say that even fake laughter can fool your brain and it can be healthy. Then I saw a doctor who can cure people only by laughter. There are some groups of people who laugh together to be healthy. They gather around and starts laughing. It was really strange when I first saw that group on @CAPS6, but I saw people's effort to be healthy. I figured that fake laughter makes everyone happy, and laughter can cover every person's mistake. I also figured that there are still many ways to laugh in this world. By a small laughter, or even a fake laughter, we can make a better society and live a better life." 17 17 34 4 4 5 4 3 3 4 4 4 4 3 3 +21438 8 " Many people love to laugh and others just don't like it as much. I'm one of those people who love laughing and will laugh when my @CAPS1 tell a very good joke. I believe that it's important to laugh because it just feels good, it makes you feel that everything is going okay. With the people that you can laugh the most with are obviously your @CAPS1. When you are feeling down who is there to support you, your @CAPS1 are, and what they try to do is to make you laugh. My best friend @PERSON3 and I have the tendency to always laugh, especially if we have a class together it's all about laughter. We have fun in class, we do pay attention but we just make it interesting and we just laugh so much that it can distract others. Our teacher from sophomore year @PERSON1 always told us that we're very giggly and that it was a good thing. She also told us that she had never seen anyone laugh so much in her class. For example that year we were studying vocabulary and when @PERSON3 and I saw the word countenance we started laughing so much because it means the face and it reminded us about the tv show @CAPS1. Every time that word came up during that week we would laugh so hard that our stomachs started to hurt. Her face would turn as red as a tomato and I just couldn't even say a word. Even now that we're juniors we still remember that and we just start laughing so hard that it gets to the point that if I'm standing up I will let myself drop to the floor and move my feet as if i was kicking something. Now that's when my @CAPS1 start laughing more because they say I'm hilarious. @PERSON3 and I are the kind of people that if something is very boring to us there has to be a way to make it fun. Some teachers appreciate that we actually have fun in their class but others just don't like it at all. Like last year in @CAPS2 @CAPS3 our teacher @PERSON2 completely freaked out because @PERSON3 and I were laughing. We were paying attention but we only laughed when we were doing our work but he didn't like it. To us that class was extremely boring and we just made it fun but @PERSON2 decided to make a sitting chart. Well you would think that by having a sitting chart @PERSON3 and I wouldn't talk or laugh at all but that didn't happen. That didn't stop her or me from talking to the people around us. We would talk to them and we made class fun. When he thought that we weren't paying attention he would ask us questions and we answered them correctly. Even though @PERSON3 and I were sitting far away from each other we would move our hands around until we got each others attention and then we just started laughing because we looked funny doing all of that without saying a word. Every day when my @CAPS1 and I eat lunch at school at our usual spot we're always laughing. People that don't really know me think I'm crazy or weird but I say that I'm just myself and that I'm very optimistic. @PERSON3 and I say ""@CAPS4 sad panda's today"" we say that when we see that one of our @CAPS1 is quiet or looks sad. The most weirdest thing is that when @PERSON3 and I laugh at the same time it sounds like one laugh. The first time we realized that we had the same laugh we just started laughing even more that we couldn't even breathe. It's important to laugh because it feels so good and you feel relieved even if you're having a really bad day, like health teachers say it takes more muscles to frown then to smile." 23 23 46 5 5 5 5 5 4 5 5 6 5 5 4 +21440 8 " Laughter is used as a ""cure"" for everything. Through out life, people underestimate the power of laughter. Laughter and joy have always been my personal way of getting to know other people better. I personally use laughter to create a bond that another person and I can relate at a level to be able to share our thoughts and our feelings through laughter. Laughter is very important through life. Laughter can help someone find people that have similar and common interests as one's self, laughter can create good relationships between compatible people, and to help create stories that are explained later in life. Throughout life, there will always be that one person or that group of people that can enjoy similar things. I have been involved in a lot of social groups. In most of these groups laughter is a common thing between all of these groups. Without this similar interest, Laughter would not exist through life. Laughter helps through every day life. People find these common interests between people and start to create relationships between people that did not exist before. These relationships might be shown through co-workers, through authoritative figures, and friends and family throughout every day life. Someone once said, ""Laughter is the shortest distance between two people."" The relationships between people are built from laughter and enjoyment of being with other people. These relationships are formed at a social level with friendly people. Without these relationships, people would never have good times throughout their life. These relationships are created to help introduce the the stories about life. In my life I have had bad times and good times. The bad times that have occurred through my life are when family member have died. My great grandparents on both of my sides of my family have died. Another horrible thing that has happened in my life is that is that one of my friends died at an early age. What happened is that he was riding an all terrain vehicle. But the good things through my life have been breath taking. The one thing that has been breath taking from my life is most of my conversations with my friends. Laughter is the key point in conversation. When I first started my relationship with @PERSON1 all I could think about was being able to enjoy the times that I have with her. On the first day that we started spending time with each other we could not stop laughing. Everything that either I said or something she did was hilarious to me. The most common thing that we had in common was laughter. At every basketball game we would try and spend as much time as we can together. We try to get to know each other a little bit better by finding common interests through laughing because, ""Laughter is the shortest distance between two people."" Laughter can help someone find people that have common interests as one's self, laughter can create good relationships between compatible people, and to help create stories that are explained later in life. Laughter is used in a personal level to become closer to that person. Laughter can be used through every day life. Laughter is an element to a relationship that should always exist." 15 19 34 3 3 3 3 3 3 4 4 4 4 3 4 +21441 8 " An argument is defined as ""A discussion in which disagreement is expressed."" In many cases, a proverbial ""@CAPS1"" is created between the two conflicting parties. Without a way to bridge this gap, the two groups, or individuals, will not come to a settlement, and continue arguing until one or the other backs down and accepts the others point of view. Laughter, can serve as this bridge. The door slammed shut and I went straight to my room. I had returned home from what had started out as a good time with one of my oldest friends. Looking back I do not remember what it was about, all I knew was that I was not going to speak to him ever again; but being as young as I was, these such thoughts rarely last. I would see him every day during the school week, but it would not matter whether he was there or not. He was absent to me as long as we fought. This seemed like a good plan, to completely ignore each other until we had calmed down, but as with any plan, things never go quite as well as you want them to, especially when you are in the same elementary school, and in the same class. In elementary school, or at least in my case, there were many group activities, and when you are paired with the person whom you are not on the best terms with, things become difficult. Whether it was to build something, write together, or solve a math problem as a group, communication and teamwork are both important, and us fighting did not effect the group well. We would each discuss the best way to go about performing the task at hand with another member of the group with whom we were not fighting with, and then they would discuss and consult each of us separately. In short, it was a mess, and much more difficult than it should have been. Outside the classroom, the fighting persisted. At recess we would not agree to be on the same team, or even be on the same side of the field as one another. After about a week of this, I realized this needed to stop. At recess, I tried to get him to talk out our problem instead of shouting at, or ignoring each other. The calm resolution to the problem started out well, but being children, ended in a shouting match, to which I lost. I began to wonder if we would ever resolve this. When I got home that day, my mother, being a mother and always knowing when something is wrong, asked me what was bothering me. I was resistant at first to explain things, but, being a mother, she talked me into telling her. She started to go on about how I needed to be the mature one and that we needed to calmly talk out our differences, which I had already tried. I began to tune her out and imagined my friends mother giving him the exact same speech. By the time she was done, all I had received from the lecture was that I needed to try again. The next day at recess, I searched for him with the intent of resolving things today, no matter the circumstances. When I found him and attempted to talk things out, it once again turned into a shouting match. Nearby friends started to crowd and we kept at it. Suddenly, in the midst of the yelling, my friend, with whom I had been fighting with for the last few weeks began laughing. I was taken aback and thought about what could possibly have happened for angry shouting to turn into laughter. Looking around I saw nothing out of the ordinary, only a few snickering bystanders. I ran what had just occurred back through my mind. Just as I reached the point where he started laughing I had realized I had inadvertently made a joke while we were yelling at each other. This realization caused me to laugh, and everyone else nearby to laugh. After we stopped laughing, we sat down and talked things out like we should have done from the start. We questioned why we were still fighting over something as unimportant and trivial as this. After about five minutes of talking, we agreed to still be friends and that we would try to talk things out in the future before shouting at each other. When a teacher blew a whistle and recess had ended, I walked back to class feeling happy, and relieved that we had finally worked things out and could continue being friends. If I had not made that joke in the middle of our fight, I am not sure if we would have made up, even in the event we realized how pointless it was. Laughing during an argument will not solve your problems for you. However, laughter can create a bridge across the @CAPS1, and provide a common ground in which problems @MONTH1 be solved." 18 23 41 4 4 4 4 4 3 5 5 5 5 5 4 +21442 8 " Laughter @CAPS1 I first meet someone there is always a small wall to climb before we can really get to know eachother: @CAPS2 laugh. I have this weird awkward nervous laugh, almost like a giggle, that I don't even hear. Others do though. Especially when they first meet me. I think that most times it helps people get to know me faster. But other times, I think it is a hindrance to getting to know me. When someone first meets me they usually always comment on @CAPS2 laugh. They either seem slightly thrown off by it, or they easily open up and joke around with me. They always tell me about it: @CAPS3 odd it is, @CAPS3 much I do it, what it's like, etc. As if I've never been told about it before. But, this is fine. I don't hear it come out and I don't mind being told. I don't really think of it as a bad thing. When they seem thrown off by @CAPS2 laughing, I get more awkward and try to control it, but usually end up doing it even more. If it seems to make them laugh and they don't make fun of me for it, I just let it come out, and it becomes very easy to get to know that person. I never really realized just @CAPS3 bad it was, until one weekend at the beach. I was on a beach retreat with @CAPS2 youth group, and one of the activities was a video scavenger hunt. We went around town and took videos of different things, actions, situations, and people. One of these things we had to get a video of was one of us playing rock paper scissors with a stranger. So I promptly went up to two older women and asked to play a game with them. When we all watched the videos later I saw and heard just @CAPS3 weird @CAPS2 voice, laugh, and mannerisms are with strangers. People had told me about them from time to time, but I'd never seen it. It was weird! Another situation was working at @LOCATION1 this @DATE1. When we did icebreaker games to break tension and meet the people on our teams more easily. Everyone on @CAPS2 team seemed slightly weirded out by me. I couldn't figure out why, until one person would just step up and be straightforward: and inform me of @CAPS2 laugh. As the first week went by though, I was the person that knew everyone on the team the best. Laughter is the shortest distance between two people. It can be bridged quickly, or made greater: depending on @CAPS3 people react to it. If they join in it together, the distance is destroyed. When, however, one person doesn't join into the laughter, or doesn't enjoy the other person's laugh, this distance is greatly increased. It becomes hard to breach this distance, and the chance to do so is probably lost. And that is just too bad. We should all be able to laugh together and share in eachother's joy." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21443 8 " Every time I walk down the hall and I see a couple, they are either laughing with each other or doing other things that could disqualify my test. I know for a fact that the people that get voted cutest couple at our school are the ones that are laughing as opposed to the later. Not only does laughing create couples, then families, and eventually the next generation, but it creates friendships within schools, families, activites, etc. That's why personally I believe that laughing is the single most powerful action a person can do. Every person I am friends with have laughed with me and vice-versa. Especially one friend who I've gotten even closer since we met. I was very adament about going to church when I was young. I have always been shy and church allows me to be social with others without reticule. However I saw one girl sitting in the back corner who I felt was scared just like I probably would have been if it was anywhere else. My parents always wanted me to be more social and they said that one way to do that was to go out of my way to meet new people. I did that for maybe the first time in my life to say ""hi"" to her. She replied by giving me her name. However I went back into my shy self and walked back terrified to talk to her or any one else again. However, I was only in third grade when all this happened so as time passed by things changed. About @NUM1 years after that a new church opened with a new class being open to children of all age groups. I had cemented myself into that classroom as one of two who regularly showed up. However this one day I was the only one who was there for my age group. Well actually I was the only one from my age group that was there on time. I saw a girl walking in with her dad who you could tell had forced her to go to the class. It took me a while to picture who it was but eventually I realized who it was. It was the girl who was scared to be in church and now she was the girl who was scared to be in class. She could clearly recognize me. I made a hand gesture telling her to come in. then you saw her smile. She shortly proceded to laughing a little bit. This was when I realized I met someone special. Now everytime I see her she smiles. That's how I know she will be a friend for a long time. Laughing can't be put into quotes, but it can be put into someone's memories for the rest of your life. I know this for a fact cause a lot of days have passed since and I still have these memories. Laughing is the easiest way to tell if a person is a true friend, something more, or should and will be forgotten." 17 25 34 34 4 4 4 4 3 3 5 5 5 5 5 5 4 4 4 4 3 3 +21444 8 I was hanging out with my friends and we were siting at the park just talking about life and school I guess you could say it was fun so we stated to play games and run aound laughing so hard we were going to have to go to the bathroom when we got home. So we got tired and so we layed in the grass and wached the clouds we just layed there and looked and pointed at all the coulds that were in funny shapes and formed like peoples faces it was funny so we stared to make funny voies to go along with with the clouds as they went by us we hade so much fun just laying there and laughing and waching the clouds go by. So went home went to and drank some water and went to the bathroom then we played the wii and and we laughed some more that was fun. Laughing is like medicine it makes all the bad seem better and just helps you fell good when you are down you just have to find something that makes you happy and that will and can make you laugh life is not the same with out laughing it helps the world go around and around. Do you like to laugh and dose it help you feel better when you are down and dont konow what to do there are ways to make you feel better and to help you get far in your life and can just put a smile on your face and to put one other peoples faces to its nice to make other people feel good. 15 15 30 3 3 4 4 3 3 3 3 3 3 3 3 +21446 8 " Once, a very long time ago I laughed very hard with a friend is when some kid hit the floor falling and started to cry.There was water on the ground and he was soaked. The janitor was wiping the floor with water. the kid was not payingany attention at all to the janitor. The janitor was also a mean person, he was mad at the boy for stealing stuff from the school janitor's closet. The boy was also mad because the janitor was mean to him I was in @NUM1 grade and I didn't know any better. I had to say that I was sorry because the teacher caught meand my friend laughing,and told me the boy was not mentally well or stable. I felt bad, and apologized right away. I told the kid that I didn't mean anything by it, that it was just a reaction.The boy was able to laugh at himself and he and I became friends. I feel that this small event in my life changes me for the better. I am not so quick to laugh at others misfortunes @CAPS1, people are stupid all over the world, no one is perfect. Everyone is different and unique in the own way. The world never be as one, their will always be war all the time forever on earth." 16 14 30 3 3 4 4 4 3 3 2 3 3 3 3 +21447 8 " A time laughter has been in one of my relationships, was when I was down in the dumps and my cousin made me smile. It was a rainy @DATE1 @TIME1 and I just woke up, my dad had asked me to make him some of breakfast; while I was making the hash browns, eggs, and toast I thought of how little me and my dad spend together, and how unsteady and rocky our father-daughter relationship was and I thought of things we could do together. When I brought his breakfast up to him I proposed the idea of going to the movies, he said he would think about it and told me to go get started on my chores. When I was finally done I got on facebook and talked to my cousin @CAPS1; I told him how excited I was to go with my dad to the movies and how we were finally spending more time together.By the time it reached five o'clock in the afternoon, I went back upstairs to talk to my dad. I asked him what time we would be leaving, he said around eight and that is when I got the feeling we were not going to go after all. I walked out of his room and strolled down the stairs only to find myself swelling up with tears; I curled up in my @CAPS2-boy chair in the living room and waited for eight to be come. The time it came I was full of disappointment, and my father said we would go the next day but he was going to bring a friend. Because his friend was going to see his daughter (and also my friend since the age of three) at her gymnastics's meet, I didn't have a problem with seeing the meet or her. I did have a problem though with someone else coming with my dad and I to the movies. Though I wanted to spend quality time with him; it made me upset that my dad didn't want to spend quality time with me, we hardly even talked and that is hard to do when you live under the same roof.I went back down stairs and climbed back in my chair and cried, and decided that it must have been my fault,and that I did something wrong. So i got up and talked to someone I know could help me out of the dumps. He is one of the only people who I absolutely love talking to, and someone who knows me very well. It is my cousin, we have a very strong relationship that has almost nothing but laughter in it. At first he tried reassuring me but it didn't work, so he did something he knows best he made me laugh by doing or saying silly random things; he even said he would eat my poor little kitty if I didn't smile for him. That is when I started giggling and he kept going to keep me laughing, until the only tears I was crying from trying to breathe. He always has been the one who can always turn my frown upside down. And I can do the same for him, he @MONTH1 be my cousin but he's also my best friend and that makes me feel the love I need from my family that only he can give me, and I hope I will never ever forget or lose that with him.Before I became friends with @CAPS1 I never thought I could have someone I could really talk to about my home life. He understands me and what I've been through and knows me as well as I know him and I enjoy that. I could have never have asked for anything better. He's my favorite cousin and the best out of my best friends, who loves talking to me and making me laugh until I'm trying to breathe for air. I will never forget what he's done for me, but this stands out more then every other time and I thank him for that. That is how and why laughter has and is a important part in all and in every relationship to and for everyone." 17 19 36 4 4 4 4 3 3 4 4 4 3 3 4 +21448 8 A time when laughter was one element or part was when my brother showed a youtube video to my family. The video was about a guy who was talking about his childhood when his dad told him to go to the store to get bread to make sandwiches for dinner and was told to not to get into any trouble. To avoid getting into trouble his dad told him to go across the street because there was three boys down the block that looked like trouble. So he did what his dad told him to do and he went across the street but when he was passing the boys they stopped him. One of the boys yelled out something and a bunch of their friends came flying from a that was barbershop across the street and surrounded him. He managed to get free and ran as fast as he could. He said that he was running so fast that he knew that he passed a @ORGANIZATION1 because he said he was behind it and then was in front of the car running to get to his house. When he got to his house he told his dad that he did what he told. The dad was only worried about is if he got the bread and the guy was upset that his dad was worried about bread instead of him. The way the guy told his childhood memory was funny and even though I was already shown the video by brother the night before we both still thought it was funny and so did my family and we would burst out laughing at times. 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21449 8 "One day my friend and I were waking up late in the day and his brother came in screaming and yelling at the top of his lungs ""bro bro""! This was the nickname he called him because he was only two years old, so my friend spencer calmed him down and we started watching t.v. We were talking about what we were going to do for the day so, we started throwing out ideas till we made one where we were going to swim later and play some games now. Spencers mom asked us when we were going to swim and that we had to take his little borther. So we went early so his little bro could swim and we could sit around and listen to music. Unlike everyone who uses an ipod I use my phone because then I can text and listen to music plus when someone calls it shuts off music so I'll know. It was a brand new phone too and i was loving every moment of having it. So when we dropped his little brother off we went back too the pool and sat in the hot tub for a while. I put my phone on my shirt and my towl over both so when spencer got out too use the towl he jerked the towl out and my phone flew up hit the ground slid on the floor all the way too the hot tub. That moment I look down and see it and freak I took it out ripped the back off and dried the battery with the towl hoping it would still work and it wouldn't stop dialing zero and nine so I took the battery out again. When we got back to his moms i plugged in the charger with no battery and spencer kept saying sorry and I kept answering ""its ok"". The next morning his mom asked why we didn't use a pot of rice and we started laughing because we freaked out so bad over a phone. I forgot all about the phone after that just kept laughing and the phone worked it is one of the funniest stories. " 16 16 32 3 3 4 4 4 3 4 3 4 4 3 3 +21450 8 "@DATE1 what a night!! Me and my friends we were going to a @CAPS1 party at our dance coaches work. we had to dress up as elves and play with kids. It was fun, but after we were done with the party that's when the real fun began! After we changed out of our costumes and back into our regular clothes we started taking pictures. @CAPS3 were funny ones,cute one, and weird ones,all kinds of pictures. Anyways my friends and i didn't want to go home just yet so we decided that we should go to some places to take more pictures and have more fun! First stop was a school play ground but we couldn't stay because it was late and we weren't allowed inside so we decided to go to the discovery park i was driving and one of my friends in the passenger seat was taking pictures that turned out really funny. so when we got to the park my friend that was taking the pictures said " @CAPS2 i drive around the parking lot?" I said sure. we switched spots and off we went. She was a pretty good driver, but @CAPS3 was some scary moments that i felt we were going to die. ha ha. So she drove around and then went to the stop sign by a main road where she decided it would be a good time to switch back and i was yelling at her "@CAPS3's a car coming we @CAPS2 get in trouble", but no she didn't listen to me she got out so then i had to get out and we were yelling at each other and my friends in the back seat were yelling also not because we were mad but we didn't want to get caught and we were having a lot of fun. so i get back in the driver seat and we are all yelling " get in the car" but she laughing really hard saying " I wet my pants." we all started laughing because we thought she was kidding but oh no she was serious she was laughing so hard that she actually wet her pants! It was a good thing she had extra pants with her. So i had to back up the car so she could change behind this big metal thing. As she was changing we thought it would be really funny if we got a picture of her changing so i got the camera and stuck it out the window, but it was really dark even with the flash on so the picture didn't come out! she was laughing so hard that we teased her saying " keep it in". We still tease her a lot about it even though it's been two months. When ever we are laughing really hard and someone says " oh i think I'm gonna pee my pants" we look at @PERSON1 and say " @PERSON1 knows what that's like" we have too much fun teasing her about things she's done. the next day we go and tell the rest of our friends that weren't with us what happened and they all started laughing as hard as we did. At the time she wasn't in the room with us when we told the rest of our friends, but when she walked in and we all stopped and saw her it was really hard to keep from laughing. now everyone knows about that night and @PERSON1's " accident". every now and then we make fun of her but she laughs along because we all know it could have been anyone of us. It still makes me laugh today not as much as it did back when it really happened, but you @CAPS2 still get a laugh on it every now and then." 17 18 35 4 4 3 3 3 3 4 4 4 4 4 3 +21451 8 " A @CAPS1 @CAPS2 For me laughter is a huge part of life. I cannot, nor wish to escape it. @CAPS1 is fun in itself. It always makes tense situations become relaxed and enjoyable. No feeling is more perfect than falling head first into uncontrollable laughter. @CAPS1 is the best way to unite people together and form memories and bonds. In my home and family, too many situations arise that cause the potential, and often result, of laughter. It is the same way with my distant families such as my friends at school. Life growing up with a brother, wonderfully fun neighbors, and cousins have produced most of my @CAPS1 memories. One such time, in which laughter flowed freely, happened rather recently. The situation began when my brother, @PERSON1, had to do a school assignment. @PERSON1 was assigned, by his history teacher, to write a diary entry as if he were a mountain man in the @DATE1's. I did not set out to help him with his homework, but considering the end result, I was thoroughly glad I did. It seemed so unlikely that this task would be so fun. I guess that just shows how laughter can crop up so suddenly and in such unpredictable places. I came into @PERSON1's room and he told me what he was working on, so I leaned over his shoulder and helped him with a few ideas. We were making progress and once reaching a certain point, we both contributed to a subtle humorous comment we decided to add to the entry. Reading our creation, nothing less than an explosion of laughter was triggered. The noise poured out of @PERSON1's room like lava from a volcano! My parents could hear us and likely thought we were crazy! Another person reading our literature might not have laughed at all, but to us it was hilarious. Being in a good mood, and considering @PERSON1's history teacher said to make the entries creative, more humorous and quite witty sentences were added. By this time I was doubled over struggling to speak through all the @CAPS1 I was consumed by. @PERSON1 was hardly better. Homework had @CAPS3 been more fun. We finished quicker than if @PERSON1 was working by himself and came away with the greatest feeling. @PERSON1 ended up getting full points on the entry when he turned it into his teacher. This is just one example of thousands I could think of in which laughter @CAPS4 the moment. This particular instance helped with work and yet @CAPS4 the work not a chore, but rather a tremendously happy event. Perhaps more laughter in the workplace would lead to better production. All things considered, laughter, in my opinion, makes for the greatest @CAPS2." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21452 8 " I believe laughter is an important part of any relationship. In all my relationships whether it be friends,family,or a girlfriend laughter is always an important element of all of them. the best relationship i have is with my best friend @PERSON1 and it is filled with laughter. We always have a great time together, like last @DATE1 when she and I went to snow peak with some friends and I tore ligaments in my knee when I jumped @PERSON2's quad. We laughed about me being stupid and getting hurt for it and we laughed about @CAPS1 big ears and how they make him look like @CAPS2 the elephant. I think what makes us so close and such good friends is how much we make each other laugh. The first time we met she was dating one of my friends and the first thing I did was make her laugh and ever since then we have been awesome friends. Then she asked me if I wanted to work at the harvest fest, with her and I did and a made her laugh the whole time. Now I'm her dork and she is my best friend. The biggest thing I did to make her laugh at the harvest fest, was when I did a wheelie in the tractor down the whole track with a cowboy hat on and a huge dip of @LOCATION1 in my lip. The moral of this story is the more you make people laugh the stronger and closer the relationships you will have whether it be with friends,family,or a significant other." 17 16 33 3 4 3 4 4 3 3 4 4 4 3 3 +21453 8 " Just One @CAPS1 @CAPS2 @CAPS3 A @CAPS4 @CAPS5 the @DATE1 of us, @PERSON2, @LOCATION1 and I, walk under the cover of the trees, we decided to stop by the lake, in our usual meeting place where we have a perfect view, to have a chat. @LOCATION1, who is six foot @DATE1, has long raven-black hair that just barely tickles his chin, deep blue eyes, and is extremely attractive, plopped down in the wet green grass. But @PERSON2, who is six foot, has short brown hair, dark ocher colored eyes, chose to stand about @DATE1 paces in front of us. To any person strolling by, he would have looked @CAPS5 if he was just enjoying the amazing view of the crystal water, but to us, who knew him all too well, knew he was thinking about his brother, @PERSON1, who was in the hospital. @PERSON1 had been in the wrong place at the wrong time, got in the middle of a homeless persons fight, not to mention the guy was drunk, and got stabbed with a rusty switch-blade. @PERSON2 felt like it was his fault that this had happened, and this made him so depressed that he would not @CAPS1 at any of our idiocy, or even eat for that matter. @PERSON2's feeling that way made @LOCATION1 and I feel completely horrible and there was nothing we could do to cheer him up. @PERSON2 was usually the most exuberant out of all of us, and we did every single thing we could possibly so to make him feel better, or, at the very least, get him to @CAPS1 again. But not once could we budge him, or even get one little giggle out of his tightened jaw. Not one of our pathetic attempts even touched his eyes, but we never gave up, in fact, we tried for days on end to get him to smile again. We got to the point of desperation that we even dressed ourselves up @CAPS5 teletubies, went to @PERSON2's house, dragged him off of his couch, and took him downtown. Yet not one second of it did his mouth even twitch upwards. Although we did some of the most outrageous, unimaginably embarrassing things we could possibly think of, and trust me, we though about it for days. We got absolutely no response what so ever out of him, except, of course, his enormous yawns. Finally, about @DATE1, we got him to giggle, which eventually turned into a full on, body shaking @CAPS1. You will never guess what finally got him to crack. @CAPS6-@CAPS6 joke. Of all the horrendously obnoxious deeds we had done, cheesy, idiotic @CAPS6-@CAPS6 jokes are what got to him. Although @LOCATION1 and I felt like complete idiots, we could not help but @CAPS1 with him. After that day it was no longer a difficult process for him. @PERSON2 was almost, but not quite, back to his normal self. So our lives went on, and @PERSON1 got out of the hospital perfectly fine." 18 20 36 36 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 3 +21454 8 " Sometime life is complicated. Nothing is ever black and white. This is a short glance of my childhood. I think the best placed to start is the beginning. When I was about @NUM1 years of age I had my first memory. My dad, @PERSON3, my brothers and I were all at a pond over in @LOCATION1. We were racing @CAPS1 boats that my dad had build. We would go there every other @DATE1 after school, from the moment I get out of school till it is so dark outside you can'@CAPS4 see you hand right in front of your face. One particular time I remember going, was the time my brother decided I need to go for a swim. My brothers and I got along but were never really close to one another. @CAPS9 loved pulling pranks on me, being that I was the youngest. So I was standing next to my dad and brother, there was a whole bunch of small ferns around us. My brother @PERSON2 jumped out of one of the bushes behind me and it made me jump. Meanwhile my brother @PERSON1 was on his hands and knees waiting for be to jump so he can make me trip over him. Well I did, there was a drop off at the edge of the pond that no one really noticed and I went tumbling down the hill. My elbow ran into stomach and my head hit a rock, then a @CAPS2! I was now soaked laying there a gooey green monster. At the moment no one was laughing but later on we did. The rest of that night no one really talked. The sun was just starting to set and I was sitting on the tail of a truck covered with blankets as my dad, brothers and @PERSON3 stood in the setting sun. I will never forget that loomenesint sight. As years pasted things gradually got worse between my brothers and myself. Things weren'@CAPS4 quit as easy. There wasn'@CAPS4 a forgive and forget. My brother @PERSON2 is five years older than me. He has @CAPS3 and serious relationship problems. One day he decided he was going to take out his problems on me. I was about @NUM2 years old. I loved my brothers and I didn'@CAPS4 know his ulterior motive at the time. My whole family except my dad was watching @CAPS4.V. in the living room. My brother @PERSON2 went back to his room and put spider man into his mini @CAPS5 player and climbed up the ladder into his bed. It was a titanium bed with a desk on the bottom, the top bunk was nearly kissing the sealing. He came out of his room and went into the kitchen and filled up his water bottle. As he filled his bottle up he asked if anyone wanted to watch spider man. Being my mother was watching the news I took him up on his offer. We both climbed up into the top bunk and watched the movie. We watched it for a little. I was cold so he offered me a blankets I got him last @CAPS6. It was fuzzy thick and warm with a huge tiger on it. Like most boys he slept in boxers and that was kinda weird seeing him walk around in them. But I never said anything. As we laid there he stuck his hand into my pants. I pushed him away and continued to watch the movie. He tried it several more times but I wouldn'@CAPS4 let him. I didn'@CAPS4 think it was right. But then he pinned my down with his leg across mine. I didn'@CAPS4 scream. He started to wiggle his finger around in my pants, it stung. I told him deliberately to stop, he didn'@CAPS4. Then he grabbed a pencil from behind him and stuck it in my vagina. Seconds later my dad walked in and said it was bed time. My brother threw himself back and I went soaring out of his room. That night was the first time my dad didn'@CAPS4 read me a bedtime story. A few months later my brother @PERSON1 started acting weird too. He was always jittery around me and was never relaxed. One day he went out and bought a whole bunch of my favorite candy. Those @CAPS7 ""@CAPS8 @ORGANIZATION1's."" @CAPS9 look like a @ORGANIZATION1 that was white and crunchy on the outside and the inside is full of chocolate. He would bribe me with these, saying, ""I will give you one box of @CAPS8 @ORGANIZATION1's if you let me touch you in three places of my choice."" I didn'@CAPS4 know it was wrong. I just wanted the candy, so I let him. This interaction went on for about a year. He never did anything to invasive. After all this stuff happened I really didn'@CAPS4 know what to do with myself. Once I knew it was wrong I cried but that didn'@CAPS4 help. So I tried laughing and it worked. Knowing that laughter is a key part in forgetting things, helped me move on." 21 21 42 42 5 4 5 4 4 4 5 4 5 4 4 4 5 4 5 4 4 4 +21456 8 " ""Laughter"" @CAPS1 you ever felt it? The feeling of uncontrollable joy building up inside you? The one feeling you @CAPS11 never explain in any word but one. Laughter. This is a wondrous feeling, it @CAPS11 make you do so many things, like scream, and yell! Someone once said, Laughter, is the beauty of life. It helps us get out of hard times, and @CAPS11 always put a smile on our face when we @CAPS2 down.It will make good times even better and never be forgotten. Laughter is something everyone needs. It helps us connect with people. It will causes you to be come one with another. This is the story of me. The story of how laughter caused me to meet the love of @CAPS7 life. How the connection of joy between us will last forever, and how the memories of his smile will last in me forever. @DATE1 was the day i met him. It was a gorgeous day, snow was covering the ground for miles, and I was surrounded by @CAPS7 amazing friends. The feeling of boredom quickly flew over our heads. So we decided it was time to @CAPS1 some fun. We quickly put our snow cloths on and began running for the door. The moment we stepped out side everyone but me stopped. I kept going into the ice cold air. I slowly began to realized they had stopped and I tried to come to an immediate halt. They all began to laugh as i laid on the icy growned holding @CAPS7 soar butt. I was so embarrassed, and so shocked by @CAPS4 had just happened that i didn't move, I just laid back and closed @CAPS7 eyes. As I was laying there I began hearing foot steps. I figured they were just @CAPS7 friends coming to help me. But when i opened @CAPS7 eyes, it wasn't @CAPS7 friends I saw. It was a hansom man, one I had seen few times before in @CAPS7 high school. @CAPS3 leans down and ask me, ""@CAPS2 you okay?"" I reply in a shy tone,""yes..."" @CAPS3 smiles and reaches down to help me up. As our skin gently touches I get butterfly's all through out @CAPS7 body. I look at him and @CAPS11 tell @CAPS3 was getting the same feeling. As i stand to @CAPS7 feet we both smile and begin to laugh. I still to this day don't understand why we laughed... I am wondering a million things at once, but the first question that exits @CAPS7 mouth is, ""@CAPS4 is your name?""@CAPS3 reply's with a smile and says, "" @CAPS6 and you?""""@CAPS7 name is @CAPS8."" I reply.I begin to thank him and ask if @CAPS3 would like some hot chocolate or coffee. @CAPS3 reply's in a cute tone that sent chills up @CAPS7 spine. @CAPS3 says ""I would rather take you to get a burger, will you come?""A huge smile washes over @CAPS7 face as i say ""yes."" @CAPS3 grabs @CAPS7 hand and walks me closer to @CAPS7 friends. They all began to smile and turn and walk away quickly into the depths of @CAPS7 house. @CAPS3 smiles and decides not to follow. We both begin to laugh as we run over to his car. I @CAPS1 heard a lot about @CAPS6, @CAPS7 friends @CAPS2 always talking about how cute and muscular @CAPS3 is. The first thought that went streaming through @CAPS7 head was, I cant believe @CAPS3 wants to take me out to lunch! We sit awkwardly in the car all the way to a small dinner called @ORGANIZATION1. When we stop @CAPS3 jumps out of the car and rushes to @CAPS7 door to open it. @CAPS3 is such a gentle men i thought to myself. When we get to our table @CAPS3 orders for us both and asks me all sorts of questions. @CAPS3 kept me smiling the hole time! I don't think any boy has ever done that. After we ate and @CAPS3 drove me home we smiled and laughed as @CAPS3 told me joke after joke. When we reach @CAPS7 house @CAPS3 asks me a question. A question i will never forget. ""@CAPS11 i kiss you?"" @CAPS3 asks. I do not answer but lean in and kiss him. We look into each others eyes after wards and begin to laugh.. Why we laughed i still will never know. But at that moment i fell in love. At that moment i realized laughter will be the connection between us forever. The laughter is in remembrance of him. @MONTH1 @CAPS3 rest in peace... " 21 18 39 4 4 4 4 5 4 4 4 4 4 4 3 +21457 8 "Like all great things in life, laughter is the thing that keeps me going. Without laughter I'm depleted. I'll tell you about the three things that make me laugh the most in life. First is @CAPS1 mom. (@LOCATION1) @CAPS1 mom is the one that showed me, laughing is the key to almost everything. She showed me it's okay to fall down. Laugh at the fact you're silly, you messed up but make sure to get back up. @CAPS1 mom can make me laugh no matter what is going on in @CAPS1 teenage ""drama"" life. The biggest thing I've learned is when I'm emotionally broken, when I feel the whole world is against me and I just don't want to be me anymore to laugh through it. When me and @CAPS1 best friend got into a fight @TIME1 @DATE1 I didn't come out of @CAPS1 house for about a week and a half, I didn't want to talk to any of @CAPS1 friends. @CAPS1 mom tried to get me to call her but I never did, till one day @CAPS1 mom sat down on @CAPS1 bed and said ""@CAPS2 it's not want happens to you it's what you do with it, do you hear me laughing all the time, when I'm upset, sad and happy...that's what I want you to do no matter what is going on in your ""drama"" teenage life don't shrug it off @CAPS2 laugh it off, call her.""@CAPS1 @CAPS5 friends definitely take second place. Like @CAPS1 friends, I also have @CAPS5. When I'm with them nothing else phases me, the whole world could be ending and I wouldn't notice a thing. I feel since I have @CAPS5 I speak a different language that most people can't understand besides @CAPS1 friends with @CAPS5. @CAPS1 friends are very random and have a lot of energy. One thing that they taught me is having @CAPS5 is a gift and a curse. When @PERSON1 and I are hanging out it doesn't matter who we're around we make there day, we can't help feeling goofy plus the non-stop laughing. Sometimes it gets us into things like people our age think we're laughing at them when we're really not.Third place is me. I make myself laugh more than anyone or anything. I'm a total comedian. When I try to be funny I'm not that funny but when I don't try I make people laugh so hard they cry. @CAPS1 whole life I've been told ""@CAPS2, wow you really are something no matter what mood someone's in you just make life seem so amazing."" @CAPS11 people laugh is one thing but @CAPS11 myself laugh is very different. When I was sitting on the floor in @CAPS1 room @TIME1 I was thinking about @CAPS1 past life and became pretty upset but to pull myself out of the negative thinking I started thinking about the good times I've and within five minutes I was laughing so hard @CAPS1 stomach hurt. Like I said ""like all great things"" laughter is @CAPS1 greatest. Laughing really can open someones eyes. I will continue to live laughing and eventually pass it down when the time comes. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21458 8 "In any relationship, things like physical contact, verbal conversations, or any kind of outward expression at all is very important. More particularly, laughing is key as well, to any kind of iteracton with someone. Laughing says,""what you are saying is funny"" or, I'm enjoying this"". Laughing says a lot without saying a word. Think about someone you know very well. It might be your best friend, or it might be a family member. If you think about it, you can tell when they are mad, sad, angry, frustrated, just by looking at their facial expressions or looking into their eyes. When you see them laugh, you see happiness. Its so obvious, because their eyes sparkle, their face lights up, and you just know that they are cheery. Now think about when you are hanging out with your friends. Being with friends is always fun, and we love it. That's why we go do things with them right? And when we are with them, we laugh a lot. We tell funny stories, we share inside jokes, and fun memories that make us laugh, and we love that, we love the feeling we get when we are with them,and most of all, we love the moments that make us laugh. Maybe its a long car ride, a sleepover, or maybe its at a party or church perhaps. Have you ever noticed that when one person laughs, the rest of the group follows in unison? Laughter is contagious, making it hard to resist most of the time. Whether it be a joke that was told, or that someone made a fool of themselves, its always a favorite part of any gathering or party, or whatever it @MONTH1 be. Some people say that each time you laugh, a few seconds are added to your life. Im not so sure I believe that, but I do believe laughing is healthy. I know that when I laugh, i feel so much better. Whenever I get back from hanging out with my three closest friends, I feel great. It's like whatever else that was getting to me that week or day is just forgotten, and especially if we laugh a lot, it makes me feel good. When a friend or someone else we know is down in the dumps,what is the first thing most of us resort to? It's going to be making them laugh right? Because laughter is a big part of being happy. When someone laughs, they find it hard to resist being cheered up. For this reason, I believe that laughter is the best medicine of all. It's so hard not to feel better when laughing. Once again, I believe that laughter is important in any human relationship, because laughing shows that you are either enjoying their company, just like smiling at all the right moments, or making the right face when they are telling a story, and showing them that you are engaged in the conversation. If someone is telling a funny story, or a joke, laughing shows that you get the humor in what they are saying. If you are enjoying being with that person, laugh a lot. Show them that you love hanging out with them. People love making other people laugh. Whether you are laughing at a joke, a funny story, or a face they made, or all of the above, laughing is just as important in any situation. Just like the saying goes for smiling, everyone laughs in the same language. Laughter says the same thing all around the world. Laughter is is almost always a good sign, and means something is going right." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21459 8 " The @CAPS1 of Laughter Laughter can be used in many different ways, you could either laugh because something is funny, to be rude, or just because you enjoy what people are doing and @CAPS3 brings a smile to your face. Sometimes we shouldn't laugh at other people because @CAPS3 could hurt them even more then we imagine, and @CAPS3 could even affect their life @CAPS2 they grow older. When I was younger I faced a situation which affected me @CAPS2 I grew up. I have always enjoyed singing ever since I could remember, but up to one point I couldn't bare to sing in front of a crowd or even my family. I was about four years old. @CAPS3 was a dark @DATE1 @TIME1, my family decided that we were going to go out to have some fun at a place called @ORGANIZATION1. This @ORGANIZATION1 was where family and friends could get together to have a great time, there would be a band playing, bright round colorful tables to sit at, drinks, and @CAPS3 had a game room for the children to play at. My cousin's and their band were going to playing that @TIME1. My family and I got all dressed up, I wore a beautiful white dress that my mother had chose for me to wear. I looked like a star in my own eyes and I was satisfied. When we arrived my family and I sat at a bright, lime green, glow in the dark, round table and watched the performance. I danced with my parents for a long time and then I would play games with my brother and friends. My cousin who is the lead singer of the band was calling out in the microphone if anyone would like to sing a @CAPS1 to the crowd. I ran to my parents and told them that this was my chance to shine and that I wanted to do @CAPS3. They smiled at me and said ""yes sweetheart, of course you can do @CAPS3!"" @CAPS2 I ran up to where my cousin was standing, I pushed through the bundle of children so that I could be in the front. I looked up smiled, and raised my hand at my cousin shouting for her to chose me. My cousin smiled back and picked me up and placed me on the speaker! I was so delighted, I couldn't even breath. @CAPS3 was my biggest dream to stand up here with a microphone in my hand. @CAPS2 I stood on the big speaker box, I looked at the crowd of people and took a deep breath and I began to sing. I was singing my most favorite @CAPS1 that I knew by memory. The crowd smiled and clapped, but @CAPS2 soon @CAPS2 I sang the chorus of the @CAPS1 everyone started to laugh. I didn't know why they were laughing. Was @CAPS3 because I accidentally forgot to take my gum out of my mouth? Because I did happen to forget. Or was @CAPS3 because I sounded really bad? I was so scared, the gum that I was chewing in my mouth started to harden and my voice grew faint. I began to panic, my eyes started to become watery. I noticed tears coming down all over my face. I couldn't even bare being up in front of all these people if they were going to laugh at me. So I jumped off the speaker, ran to my mother, and began to cry in her lap. I cried for a long hour, my family tried telling me that everything was fine and that I did a magnificent job, but @CAPS3 wasn't enough for me to believe @CAPS3. Over the years I always detested singing in front of people. @CAPS3 scared me just having the thought of maybe someone would burst out laughing because I was either bad, or off key. After that I always began to tell myself that I had a horrible voice and I knew @CAPS3 was the reason why the crowd at the @ORGANIZATION1 laughed at me. Every time my parents would ask me to sing a @CAPS1 I would tell them ""no thank you, I don't like to sing anymore."" @CAPS3 wasn't true at all, I lied about @CAPS3 to my own parents, but I still had that horrible feeling in my heart and soul. Now that I am older I understand why I was so terrified, and the reason why the people laughed wasn't at all what I thought @CAPS3 was. My parents told me that @CAPS3 was because the people thought that I was adorable, and since I was young I couldn't really pronounce some words right. I giggled at @CAPS3, and now I just keep telling myself that I can sing because nothing else is going to bring me down, and I am trying to stay positive about @CAPS3. @CAPS3's still very hard for me to sing a solo, but after a certain period of time I will have the strength and courage to sing to anyone. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21460 8 " I am going to tell you a story about when I was a young boy and, how I used to go on long trip with my father because he was a long-haul truck driver. Me and mi dad went many places around the @LOCATION2 all of them being very fun and amazing. And we all had a lot of laughs The one that i liked the most though was when we went to @LOCATION1 that place was so amazing there are so many things to do, as well as so many things to visit. Things that you could just see like the @ORGANIZATION1 @ORGANIZATION1 that was pretty cool i thought and all of the monuments. My dad told me to go and see if i could get past security at the @ORGANIZATION1 and i was like nah i am good you can though and i laughed at him; @CAPS1 place that i liked a lot that we went to would have to be @LOCATION3, even though it was very hot and muggy it was still fun. I remember my dad telling us that we had a lot of extra time and that he was going to be taking us to the zoo man was that cool we got to see all of the awesome animals such as the lions, the crocodiles, monkeys, gorillas , and the penguins. It was one of the best trips that my father ever took me on i liked it a lot. One of the funniest memories that i do remember is when we were driving throught the desert and there was this paper in the air and i did not know what it was so i was like, ""dad what is that""? and he says ""that is a falling star"" i was like ""in the middle of the day""? and it took me till about a couple years to figure out what it really was but now i know what it was and i just look back to that day and laugh." 15 17 32 3 3 4 4 3 3 4 3 4 3 4 3 +21462 8 " There was a memory of mine that was full of laughter and fun. Then it also turned into a serious and none joking around madder. It all started on a @DATE1 @TIME1, my brother @ORGANIZATION1 called me and told me to come come over I hadn't been over at my moms house in a while. I replied yeah sure man ill be over in a hour. I jumped in my truck and headed to my mothers house.While on the way I stopped to get some gas at the gas station. Fifteenth minutes later I arrived at my moms house. once arrived my brother was out side waiting for me. @ORGANIZATION1 came up to the truck and helped me with my bag and the door. Once I was in the house I walked over to the kitchen saw my @CAPS1, and gave her a hug, and asked her how she was doing? She replied, I'm alright hunny, then asked me what was new, with myself? I said nothing much @CAPS1, hanging out trying to stay out of trouble. I asked her is there anything she needed me to do? Or needs to be done? My om named off a couple things that needed to be done around the house. After she was done telling me some of the things i headed to my room to change into my work cloths, then headed out side. I grabbed my brother on the way because he was going to help me out. While we were down at the garage @ORGANIZATION1 brings up the fact that I haven't been there in a while he said party tonight. I replied ok. While I was done working on the garage, my dad came down and said the fence needs to be fixed, so we moved the tractor over and fixed the fence. Its was @NUM1 at night already people were already showing up. When we got to the house my @CAPS1 comes out and says, what you guys doing out here? Get in the party already, it's a full house there were @NUM2 people in my moms house that night. Drinking and just having a good time. When i walked up to the living room i noticed the girls were making food for the guys while the guys were playing drinking games. There were a couple games going on, for example there was beer pong, shots, and beer bong. There was always someone that wanted to beat the drinking record in the house, to be the best drinker. The drinking record in the house for one night of drinking was @NUM3 shots and @NUM4 beers. To this day the record still stands and the person who holds the record is me. I look over at shots and a friend of my @CAPS1 said i wanna challenge you. I said ok. It did not end up well @NUM5 shots, and the guy that was against me was passed out on the table. Hours later everyone was sleeping but me, my brother and one of our friends. We were out side chewing while @ORGANIZATION1 was peeing on his dads car. All of the sudden I look over and @ORGANIZATION1 is puking all over on the ground. I laughed so hard i feel over because the look on his face while smiling when he was throwing up. My friend @PERSON1 and I took @ORGANIZATION1 down stairs to his bed put him to sleep and went back up stairs, to lay down. Before we when it the door opened and it's @ORGANIZATION1 he wanted to say he loves us and good night. We replied thanks bro same to you. Less that thirty seconds later We heard oh crap and a loud noise falling down the stairs, it was @ORGANIZATION1. The next @TIME1 I woke up and I did not feel so good, I told my @CAPS1 about it. She said ok well ill make you some food. So she did I did not feel better so I just went home to sleep. I opened my door I saw my @CAPS1 at my house and said, @TIME1 @CAPS1. She replied you drank? I said yes, and i don't feel so good. she said ok well ill take you to the doctor if it does not get better. A month went by of me not eating right or drinking, so i went to the doctor and they told me i messed up my liver so bad I had the liver of a @NUM6 year old, all i remember was crying and saying to my @CAPS1 never again. I realized drinking and having fun is all ok until someone gets hurt. The doctor told me if i was to drink again I could die, I made the best choice of my life there i believe. To this day I have not drank any alcohol at all it has been a year and @NUM7 days. Laughing and having a good time is great but there are always some thing that go wrong, @CAPS2 under age drinking is aloud at my moms house now." 20 15 35 4 4 4 4 4 4 3 3 3 3 3 3 +21463 8 "@NUM1)I heard one true story about one normal @CAPS1 businessman. he wasn't that high levelin his company. @CAPS2 he always say hello to everyone in company with his big laugh.One day, the boss of company came to his company and asked everyone " who doingwork hardest?" @CAPS2 nobody didn't answer that question. then the boss said "or recommendsomeone for promote level" and then everyone recommended that business man. Becausehe always say hello to everyone with big laugh. and he goes to highest level in his company except the boss. what I'm trying to say is the laugh make people happier. and when i was with my friends,laugh was make us more friendly. also laugh is good for health too. If you laugh a lotyour life is getting way more longer than before. of course it is good for mind too.that business man wasn't very good worker. He just made everyone happier to his laugh.that's why he could be a highest level of the company.I think laugh is really good for everything. and I also laugh a lot. I want people make happier." 13 12 25 3 3 3 3 3 2 3 3 3 3 2 2 +21465 8 " Laugh @CAPS1 @CAPS2 @CAPS3 @CAPS4 someone who laughs a lot or a little? If @CAPS4 @CAPS3 the kind of person that can laugh about any and everything, then I'm sure we would get along well. Laughter plays a key part in my life. @CAPS1 is a part in about three different ways, in that I joke around a lot about numerous things, I do funny things such as make funny faces, and last I also laugh about me being a klutz. When @CAPS4 see me or talk to me for either a short amount of time or an abundant amount of time I guarantee I can and will make @CAPS4 laugh. Laughter can be an amazing thing, when in any kind of situation as in an awkward one, an embarrassing time, or just any kind of situation when @CAPS4 don't know what @CAPS4 should do; just remember @CAPS4 can laugh in those times. Ever since I was just a young girl no matter where or what I was doing I always seemed to be a huge klutz. My mom would always say, "" @CAPS4 @CAPS3 worse then a bull in a @LOCATION1 shop."" @CAPS5 was so right. If @CAPS1 was just as simple as me dropping things, maybe even breaking glass, or falling; that statement was always true. All @CAPS5 could ever do when I did do something like that was just laugh, because @CAPS5 knew that @CAPS5 has a clumsy daughter. Such as this one time when I was in elementary school, we had award assemblies every month, these were to recognize students who had been doing well that month and was following the rules of a certain characteristic. This was the day I had hoped for; my name to get called. When the teachers were up on the stage calling names, I was anticipating for @CAPS1 to be my turn. Then next up my name was called. I got up and was so excited and nervous to go in front of the crowd and get my award. When I had gotten up there I got my award then went back down the stairs. Not a great idea when I was so excited. When I was going down, I literally went down the stairs. My feet had missed a stair, and I went flying down on my behind. Now tell me what would @CAPS4 do in this situation? In front of over two-hundred kids and about thirty parents? Well I just had to laugh @CAPS1 @CAPS2, get up, and go back to my seat. Another thing about laughter @CAPS1 really makes me who I am to this day. I don't know where or what I would be doing if @CAPS1 weren't for me lacking dexterity when I was younger. Laughter has brought me closer to my family and friends. They know when I am looking gloomy; that if they want me to not look so gloomy that they will have to make me laugh. My closest friends and I joke around and laugh about numerous things. Sometimes @CAPS1 might be facetious, so we have to catch ourselves on those ones. From my experience of being clumsy no matter the situation, I learned that instead of being embarrassed and not wanting to bring up what happened ever again, that making @CAPS1 funny, and something @CAPS4 can laugh about is much better. Learning from a young age to laugh and have fun, @CAPS1 really has made me a better person; in that people know me me for many different things, but one of them is that I am a happy and funny girl and laugh a lot.That is something that I am proud of, just knowing that I can make my peers and other adults laugh and have good time. So therefore laughter is not just one element or part in my life, @CAPS1 plays a huge part." 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +21467 8 " It was my first year of @CAPS1. high school and I was feeling pretty confident. I had great teachers and all the classes I wanted. My first day was going awesome! I had woken up on time, eaten a good breakfast, and I didn't even miss the school bus. My first few classes were fabulous and I was about to go to lunch. As the bell rang I hurried to the cafeteria to get a good spot in line. One of my close friends had called my name so I turned to wave and when I turned back I ran directly into @LOCATION1. We hit hard. I flew backwards dropping everything I was carrying. I tried to say I was sorry but all she did was glare at me and walk away. As I picked up my books I realized I didn't want anything to do with that girl and decided I'd just forget about what had just happened. After lunch I had @CAPS2. I was extra excited for this class because the boy of my dreams, @PERSON1, was in it. On my way there I made a quick pit-stop to the ladies room to make sure I still looked decent and then headed to class. As I walked in the room the first thing I saw was @PERSON1's beautiful blond hair and his dazzling blue eye. Then I registered the whole scene. Guess who was twirling her hair and batting her eye lashes at my dream guy! You got it, @LOCATION1. From that moment on it was war! As the year progressed @LOCATION1 and I constantly strove to out do each other. We'd race each other to class to see who would get to sit behind @PERSON1. She always had to have the best hair. I would get a cute new hair cut and she would get high lights. I received a phone. So she went out and bought the latest and greatest phone with the built in music player. I remember getting to class early one day, so excited to show @PERSON1 this new game I'd learned. But of course when I walked in the room @LOCATION1 was already showing him the exact same game. There was one thing I always had over @LOCATION1, books. Both @PERSON1 and I loved books. We would sit and talk about the latest and greatest books for hours. This always made @LOCATION1 jealous. Our childish behavior went on like this for three or four months. One day at lunch I was just sitting, eating my food, and minding my own business. All of the sudden @LOCATION1 appeared out of nowhere and spit soda at my face. That did it. This was the last straw. I grabbed my milk carton and dumped it on her head. The cafeteria went silent for about a minute. @LOCATION1 and I stood there glaring at each other, rage searing from our eyes until some one broke the silence with a loud laugh. Soon everyone was laughing, including @LOCATION1 and I. We realized just how stupid we'd been acting and for the first time we were laughing together not at each other. We both apologized and helped each other get cleaned up. Eventually we became really good friends. To this day we still laugh about or @NUM1 grade rivalry." 25 20 45 5 5 5 5 5 5 4 4 4 4 4 4 +21468 8 "All the great memories that @LOCATION2 and I, spent and shared together when we were really good bestfriends. We were around @NUM1 years old and in @NUM2 through @NUM3 grade. Ofcourse we got older as the years went by, but we had soo many great times together. When ever we hung out, we would always laugh about almost everything, and most of the time we would just never let alot of stupid things get to us. Whenever I needed someone to talk to she would be the one. She went through a life that was almost the same as what I went through in life, and so she knows what I or even she needs to do or say. Even though we would always have lots of fun, we would have our moments and fight, but alwways work things out. We'd always have each others back for everything. I guess what im trying to say is that, two people who are close always have their great needs and feelings, and especially their laughter in the relationship. Here are some times that @LOCATION2 and I shared and spent together that pretty much led up to laughter.I remember in @NUM2 grade, both of us would always try to hang out whenever we could. We were still young so it was hard to do be able to do anything becuase our parents wouldnt let us most the time. Whenever we did though, we would think about random games, and go to different places just to have fun. As we got older though we were trusted more and could do lots more of things, which was a good thing. Then I moved to @LOCATION1, not the greatest thing, but it was for love. What made it better was that she still came over all the time. We would go and pick her up on @DATE1 and then on @DATE2 my mom would drive to school because my mom still went to work there in florence. Every night that she was there we would always stay up. I remember that I would always keep these little hot chocalate packages in my room and after my parents went to bed we'd sneak out to go get hot water for it so that we would have hot chocalate to drink. Some other times we would make coffee so that we could stay up longer. It was hard sometimes because my room was right across from my parents room and at the time I had beads hanging from my door. Fun times trying to keep quiet and not get caught. Sometimes when she came over she would bring all her make up and things so that we could dress each other up. One night we had blind folds on and do each others makeup." 16 19 35 3 3 4 4 4 3 4 3 4 4 4 4 +21470 8 "Laughing is something that everyone experiences. It changes situations from bad to funny. It's like magic. I mean you don't need a wand or anything, just a twisted sense of humor. You just need a little common sense and a little bit of illogical thinking. I know that those are two entirely different things but isn't that what makes us @CAPS4? isn't laughter just the response to hearing something illogical that differs from your common sense? No. It's not. Laughter is also an extremely helpful tool. you can do a lot of things with laughter. you can get out of trouble, get into trouble, start a friendship, end a friendship, get a job, lose a job, win a game and, lose a game. and that's not everything, mind you. But I'm not here to talk about all of those things, just one of them. making friends with laughter. just sit back and listen and maybe you'll learn something.Before we begin the story, let me just start by saying that I'm not exactly the nicest guy on the planet, and i know this, but I'm good at making people @CAPS4. It's not even on purpose half of the time. the majority of my jokes and humor consists of depressing things. I honestly think that I get that response from people because they don't know how else to react. And this is why @CAPS1 or @CAPS2 or whoever invented sadists and masochists. Anyway lets get back on track. Once upon a time where teens were desensitized to the harsh reality of modern living there was a kid. that kids name was @PERSON1. now I really hadn't known @PERSON1 for very long and, to be quite honest, i didn't really want to but he tagged along with me and grant and @PERSON3 back in the day. he always wore these awesome iron maiden t-shirts and listened to the type of music that i liked so i guess you could say it was fated but that's neither here nor there. One day we got to talking. We were both thinking about this big barrel that had been left in the track at our school. it was empty and plastic and when you're @NUM1 everything big and red and plastic looks fun. we decided that we would take the barrel and stand on it. Yes that was all we wanted to do with it. It never really crossed our minds that we could have taken it or built something with it. no, the only upstanding conclusion we could come to was to stand on it. and we did. and it was fun. the next day we came to school and @PERSON1 was handing out invitations to his birthday party. i was pretty excited so i went. as it turns out, our lives are very very much alike. i think the first thing i noticed when i went to his house was the kitchen. it was like they took my kitchen and painted it a different color and then put it there. honestly i thought i was the only kid who lived the way i did. i used to get mad because my mom wouldn't ever buy matching dishes or silverware because we never really had the money and this kid had the most random assortment of dishes and such in his house. collectible versions of different pint glasses, mismatched silverware, logical dish placement. i know it sounds stupid but it used to make me happy. When the other guys arrived we started to talk, or at least i did. we talked about some random stuff too like @CAPS3 videos and good movies we had seen recently. @PERSON1 and i always ended up talking about other stuff like travel and the future and dogs but that's just because we agreed that newer movies kind of sucked, too many explosions and not enough character development. eventually we started a fire and moved our conversations outside. see, it always seems like things are better when you look into the fire. and when the fire goes out, you want that feeling again. well i was prepared to fix it but everybody went inside except me and @PERSON2 (another guy at the party) so we decided to play around a bit. we went into @PERSON1 garage and found his @NUM2 and brake fluid. we sprayed it on the fire and i think my face got a little sunburned after that. The flames had gotten so close to my face that i could feel my eyelashes burning on the tips. Then we grabbed some more wood and dropped it on the fire. everybody came back outside to play around with it. i know I'm kind of a bad influence but when life gives you an opportunity to do something fun, you can't pass it up. We spent the rest of the night talking about girls and cracking jokes. I just wish we had a @CAPS4-@CAPS5-@CAPS6. That night, i made some eternal friends." 16 20 36 3 3 4 4 4 3 4 4 4 4 4 4 +21471 8 " Laughter, one of the greatest gifts in life. It's what helps you get through the day, the year and in the long term, your life. For me, many things can go wrong in a day. For example, I could forget about an assignment that ends up being a big part of my grade or just have a difficult day. All i need to make those bad things seem like old memories is to have a long and pleasant laugh. It is ten times better if that laugh is shared with someone else. That's why when i moved to @LOCATION1,@CAPS1 I tried to keep a look out for kids like me, who loved to laugh and make other people laugh. The first days were rough. I met a lot of new people that were all the same. Some just wanted to know my name and others to get to know me better, and that was fine. There was one person that I noticed was in multiple of my classes. So one day when our @CAPS2 teacher asked us to partner up and write a myth of creation or how something got to be the way it is. Quickly, I looked around to choose someone before every one would have a partner and I would be sitting there awkwardly without a partner. I asked a boy who was in few other of my classes. I had not really noticed or even heard him talk. He agreed to be my partner. We introduced ourselves and he told me his name was @PERSON1. He had a very quite voice. I had barely understood his name, so i had to read it from his paper. We had to work on the paper together but it felt more like if we were doing it individually. I began by throwing some ideas around. @PERSON1 would then say something and laugh but I could never hear what he would say. We worked on the paper for a couple of days, continuing to only interchange some words. Meanwhile I was still trying to make at least one good friend. I thought maybe threw that friend i could meet some of his friends and in time I would have my own set of friends. In the meantime I ate lunch with my sister @PERSON2. You would think it would be slightly awkward or uncomfortable. It wasn't though, it was actually pretty nice because our bond had become stronger. That would work well for both of us until we made some friends. After some time she had made a couple of friends and was ready to move on. So one day while we were both eating lunch one of her new friends passed by and asked her to go sit with her. I hoped so bad that she would just say no or even say, maybe tomorrow, but no. There I was sitting by myself in a lunch room full of eyes that were just judging who you were sitting with, if anyone. I began to eat my lunch faster than you could say sternocleidomastoid, and I was out of there. Panicking in the inside but completely calm on the outside, I paced the hallways looking for someone to hang out with. Then I saw ""That @CAPS3"" from three of my classes. I casually walked up to him and tried to start a conversation. For some reason i felt relaxed not as if I was trying to make a new friend but as if I was already talking to one. In the beginning, we were just two guys that talked about classes and how this school was different from my previous. Then all of a sudden we began to talk about movies especially the resent more funny ones. We could not stop laughing in all of our classes, especially auto mechanics. We would use up all of our shop time just trying to remember all of the funny lines from the movies and trying to say them or act them out the best we could. Soon we also found out that we watched many of the same t.v. shows. We could make each other laugh with pretty much anything one of us said. I had noticed this special quality in @PERSON1 that made him extremely funny. I wasn't sure what it was,but with anything he said I would just laugh uncontrollably. We were laughing buddies, but soon we actually became great friends. We had really bonded in between the laughter. During that time we would find out new things about each other. That made us realize that we were a lot alike. Its been a few months and we have only become greater friends. I had made friends before by making them laugh or laughing at there jokes. I knew this was different tho. I had made the greatest friend I had ever had. Now I'm moving and that's the worst part. I know that with the bond of sharing some of the greatest laughs of my life we will continue to stay friends for a long time." 20 18 40 40 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 +21472 8 "I have lived in @CAPS1 @CAPS2 almost my whole life, I went to pre @CAPS5 all the way up to @NUM1 grade. @CAPS7 was about half way into my @DATE1 when my mom had told me the ""@CAPS3"" news. Honey we are moving, i froze in shock i didn't know what to think, no we can't move. why she said, um maybe because im going into @CAPS4 @CAPS5. I don't want to go somewhere where i have no clue who anybody is. Don't worry my mom said you will make some friends. Where are we moving any wise i asked? Lebanon she answered me in a soft @CAPS1 voice. @CAPS6 i guess its not that far away from here. There you go she said @CAPS7 wont be that bad once we get there and get everything settled in and unpacked. Yeah @CAPS13 i still don't know anybody there, @CAPS6 your cousin @PERSON2 goes there and he is a junior so he could maybe drive you to @CAPS5 everyday if you wanted and introduce you to some people. Okay i said i was excited @CAPS13 i didn't want to move away from @CAPS8. We started to pack up our things, @CAPS7 took us about a week to get everything out of the old house into the new one. After the house was all packed and our things where out we started to clean. We cleaned from the up stares all the way down, head to toe that took us about two days tops to do. So in all total @CAPS7 took us about a week and two days to get everything packed, moved out, and cleaned. We said our @CAPS11 byes to our friends and family and where on our way. Its not like we will never see them again i said to my brothers. We finally pulled up to the house, @CAPS8 was so anxious to see what @CAPS7 looked like. My mom opened the doors go check @CAPS7 out she said, wow this place is amazing we love @CAPS7 the boys said. I told you that you guys would love @CAPS7. We went up stares and picked out our rooms. there was only four bedrooms so the two younger boys had to share. When we where all done with that we stared to unpack our stuff. I was so tired from doing everything that after i was done unpacking my room i went and took a nape on my bed. When i woke up i realized that i have not unpacked everything like i though i did, so i finished with that. @CAPS5 started in about a week i was so excited @CAPS13 nervous @TIME1 the same time to see what @CAPS7 would be like. Finally the day was here, honey wake up time for @CAPS5 mom said already @CAPS13... oh forget @CAPS7 i said im groin to @CAPS5 no matter what. I get out of bed brush my teeth, hair, do my make up and get dressed. ""@CAPS9"" ""@CAPS9"" @PERSON2 is here time to go. I rush down stares get my back pack and get in the car. @CAPS11 morning he said @CAPS11 morning, you excited for @CAPS5 he asked yeah kinda just a little nervous.Don t be i will introduce you to my girlfriend she is a fresh man also k sounds @CAPS11 i said. We pull into the @CAPS5 wow that's a a lot of kids i said yea there is @NUM2 freshman this year. We get out of the car and go inside. Lets go show you around to your classes alright i said. This is you first period @PERSON1 she teaches @CAPS12 arts. He shows me the rest of the six and sends me to class. I walk in @CAPS8 staring @TIME1 me, my sstomach turning into notes wanting to fall out of my stomach. Welcome @LOCATION1 just sit down i will be with you shortly the teacher says. She shows me where to sit ans introduces me to the class. Finally the class is over, @CAPS13 i still have to go to six more. This day feels like its going bye for ever, i walk to the rest of my classes wondering if they will not be that scary @CAPS13 no i was wrong. Most of the teachers made me introduce my self in the front of the class @CAPS7 was terrifying! I get on the bus can't wait to get @CAPS2. I walk threw the doors, how was your day, did you make friends, mom calm down i said to her sorry i just want to know. My day was @CAPS11, can i go take a shower now? Yeah just don't take long k. I get out and go lay on my bed awww time to go to sleep i though @CAPS13 no my brothers had to come bum rush me and tell me about there day. @CAPS7 was about @TIME1 okay i though time to go to bed. ""@CAPS14"" ""@CAPS15"" time to get up @LOCATION1, oh no not again!." 17 16 33 4 3 4 4 4 3 4 3 3 3 3 3 +21473 8 " When we all get together on my dad side, we just all sit, laugh, and talk loud. I all ways say that we are one big fake @CAPS1 family. All the aunts, uncles, and cousin come around my grandma's small kitchen table and talk. There is so many conversation going on and people talking loud and laughing, that to me it make feel like a home away from home. This was the case when some of us got together for a late birthday party for me, when I was in @LOCATION1 @DATE2. It was @DATE1, my grandma, uncle, aunt, dad, my two cousin, and I; were sitting around the kitchen table eating cake and talking. We were talking about a problem that I was having. Some how my dad deiced to pretend like we were in court. My aunt said to @PERSON2 to go and get a wig for the judge, which was my uncle. @PERSON2 brought back this blond wig and she puts it on my dad's head, he looked so funny. Aunt @PERSON3 was fixing the front of the wig for him. I grab his phone and start taking a bunch of pictures of him in the wig. I send one to my mom saying, ""@CAPS2 mom dad is pretty."" We were all laughing so hard. Then my grandma deices to put on the wig. Grandma keep saying that it was itchy and tickling her. After she took off the wig, she stared to tell us a story about the time when my grandpa pocked her in the left side of her rump with a compass. She first set up the story for us, by telling us who the teacher was. It was a funny @DATE2 name that I don't remember. Uncle @CAPS3 was doing an impression of what he thought the teacher would be like. His impression was like the old bank owner on @PERSON1. We all stared to laugh really hard. When my grandma finally got to the main part of the story, he was so mad at her, because she wrote his name down for talking in class and he also liked her. So he took a compass and poked her in the rump. For some reason my dad and uncle thought it was so funny that they made her say it over and over again in a rime. She couldn't say rump with out laughing. We all stared to laugh really hard because she couldn't say rump. Grandma was laughing so hard she would fall back into her chair and I though she was going to die of over laughter. The laughing got so bad we were starting to cry of laughing so much. As you can see, my dad side really like to laugh and be funny.We are a great big fake @CAPS1 family. I believe that laughter is a very important part in any relationship you have with any one you meet. One of my favorite things to do is laugh and I will most likely laugh at anything some one says. When my dad and his younger brother get together prepare to laugh really, really hard." 17 22 39 4 4 4 4 3 3 5 5 5 4 4 4 +21475 8 " Do you remember the first day of @NUM1 grade? Everyone is awkwardly and excitedly standing there waiting for their seating arrangement. You have the middle school jidders and everything is just happening to fast, I remember all that. I went to school at @CAPS1 for my middle school years, my teacher was @PERSON3. She was the type of teacher that was strict when it came to where you sat in class. If you didn't like someone, she would probably sit you by them thinking that you two would magically become friends. I was standing there in the corner with my best friend @CAPS2, we were of course hoping that we would be seated next to each other. After we finally got our seating arrangements, we were not seated together. I was sat next to @PERSON4-- a girl that I didn't know at all-- @PERSON5, @PERSON1 and @PERSON2. I was friends with everyone except @PERSON4, who I have never saw before in my life. As class went on @PERSON6 talked about middle school and how it is so important to get good grades and be prepared for high school, we all sat there and as to what it looked liked day dreamed. No one really talked to anyone, there was still that awkward first day thing going on. @PERSON4 looked like a girl that would rip your head off if you said anything to her, so I kept my mouth shut. @PERSON6 went on with her ""first day lecture"" and all of a sudden she cracked a joke in the middle of her speech, to get our attention. We all started laughing. I would have to say that it was a very good ice breaker. After everyone after everyone laughed for a while, it seemed like everyone loosened up a bit. @PERSON4 and I started talking about how that joke was only funny because it was so dang stupid. From then on we kept talking and she seemed like a cool person. @PERSON4 and I became partners for every project that we did and we were always together, she became my best friend after @NUM2 days; all because of laughter. I would have to say that the reason @PERSON4 and I became friends is because of laughter. I probably never would have talked to her in the first place; even though I am glad I did because now I have an awesome best friend! Middle school can be scary, excpecially on the first day of school. That's why I think laughter is such an important part in someones relationship, you can't get by without it! " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21476 8 "One time I was sick, and I told my mom ""I need to get some ice tea"" so I get up and go to the freezer. Suddenly my throat gets irritated and I feel the need to cough, so I do and instead of coughing on the side I do it right into the ice bucket. And it just so happens that my mom was standing next to me, and she says ""@CAPS1 god! son what was that?"" so we started laughing. It was ironic because the germs would be preserved in the ice box it was funny I was keeping my germs alive and my mom used that ice." 14 14 28 3 2 3 3 3 3 3 2 3 3 3 3 +21477 8 "It was a cold @DATE1 @TIME1 when I decided to go to @CAPS1 @CAPS2 with my friends @CAPS3, @CAPS4, @PERSON1, @CAPS5 and @CAPS6. We had a ride to @LOCATION1 and back so we rode along with @CAPS4's dad, on the way we listened to some A @CAPS8 @CAPS9 and @CAPS10 @CAPS11 (which i recommend to any @CAPS12 fans) once we got there i told a joke and we all laughed so hard they all pooped themselves and died. The @CAPS13" 14 9 28 28 3 2 3 3 3 3 1 2 2 3 2 2 3 2 3 3 3 3 +21478 8 " I always wished that I could go back in time and relive @CAPS7 childhood. Knowing that that was the time when I was most happiest and the time I was just living life with no purpose, no plans. Looking down on @CAPS7 little cousins or brother, I see joy, and laughter, and silliness. I see innocent soft faces who have no idea nor understanding for what is going on around them. As I watch them slowly grow out of their unusual habits, I find myself back @CAPS4 the year @DATE1. A little girl, not in school yet, runs in her grandmother's yard on a @DATE4's mid day. She flops her pig tails back and forth while hiding her hands in her size @NUM1 trousers with one eye closed and the other slightly opened watching her older sister run around looking for a place @CAPS4 hide. ""@CAPS1, nine, eight, seven..."" ""@CAPS2 @CAPS3 @CAPS4 @CAPS5 @CAPS6!"" @CAPS7 sister, @PERSON1, yells out @CAPS4 me from behind one of the giant oak trees.I giggle @CAPS4 myself a little and start at @CAPS8. ""@CAPS8, four.. three.. two.."" I slow down dramatically, ""ONE!"" and like a rocket, I blast off the front porch with @CAPS7 arms spread out on each side, making engine noises, and pretended I was a pilot ""@CAPS9 on lock! Mayday, mayday! CRASH!"". I tackle @CAPS7 sister @CAPS4 the ground. I remember the look on our mothers face as we lay there rolling around in the grass laughing. I closed @CAPS7 eyes and reopened them @CAPS4 find myself in @DATE2. It was a few days after the tragic happening of @NUM2. Everyone met at grandma's house as always, kids in one room and adults in the other. I was playing in our small ball pit with the two youngest cousins, @PERSON2 and @ORGANIZATION1, when we noticed that there was a small hole in the wall. ""@CAPS6, look through."" @PERSON2 demanded.I took a deep breath and did what he asked. ""@CAPS11!"" I yelled The little hole gave us a vision of what was happening in the room next @CAPS4 us which held all the parents and old people with straight looks and serious tones. I let the little ones have a look, they didn't find it as interesting as I did but they wouldn't give me another chance @CAPS4 see. I pushed @CAPS7 way through. All three of us looking through something so small. We kept giggling, and talking. We did this for about @CAPS1 minutes, not knowing that our uncle was watching us for at least @CAPS8 minutes. He motioned the other adults @CAPS4 see what we were doing. One by one, noticing that the amount of people in the next room was decreasing. Soon, there wasn't any of them in sight. ""@CAPS12 did they all go?"" We panicked.Light, quite laughing was going on behind us. @PERSON2 looked toward @ORGANIZATION1, @ORGANIZATION1 looked at me, I looked down @CAPS4 @PERSON2, and at the same time we turned around and saw everyone smiling, laughing, and taking pictures of us. We stood still with red faces and soon started pointing fingers about who gave us the crazy idea of spying. After that, it was like any day with family; everyone in the living room, food in the kitchen, warm hugs and kisses from grandma, people pinching @CAPS2 cheeks, big smiles and long loud laughs. I see friends shaking hands and kids yelling and screaming, people telling they're loved ones ""I love you"". I look down at @CAPS7 feet and with a blink of an eye, I'm back @CAPS4 @DATE3. I raise @CAPS7 head up over @CAPS7 shoulders, see that I'm in grandmas living room babysitting the kids. I'm sixteen this year, and I don't believe that there is one day when I don't laugh. Of course I can't laugh when it comes @CAPS4 all seriousness , but other than that, laughing is part of humor/youth. When someone tells a joke and you think it was funny you don't just stand there and say that was funny and not laugh. Everyone knows that, once in a while, they have @CAPS4 take a step back and laugh. I always wished that I could go back in time and relive @CAPS7 childhood. Knowing that that was the time when I was most happiest and the time I was just living life with no purpose, no plans. I had no desire @CAPS4 impress anybody. I lived @CAPS7 childhood well and when I think about it, I just sit back, look at everything that I have done, and laugh. " 20 27 42 42 4 4 4 4 4 4 5 6 5 5 6 5 4 4 5 5 5 4 +21479 8 " Laughter can be helpful in many ways and with many things. Like, if your having a bad day, a friend can try and make you laugh to help you feel better. Or maybe something like you lost a loved one. Yes it's a very tragic thing, especially if you really close to that family member. People will still try and make you laugh and tell you that there in a better place and won't be in pain anymore. I have had some moments like this and I sometimes felt better after the person or persons have made me laugh. I also know that I have people that care for me and want me to be happy and full of laughter. The most recent time I have needed someone to help me laugh was yesterday. It was yesterday night, I had math homework that I needed too do. It frustrated me so much, I started too cry. i told my boyfriend this and he just started telling all of these silly jokes. They kind of helped. What helped the most though was when he had said he could come over this @DATE1. I started smiling and laughing because I was so happy that he could. Another time that I have had laughter help me was when I was at @CAPS1 with my mom, dad, brother, and little sister about @NUM1 years ago. My brother decided that he want too take me on @CAPS2 @CAPS3. I can't remember if that was the ride though. Anyway, he took me in it about @NUM2 or @NUM3 time. I was so scared, and wet that I didn't talk too him for the rest of the day. He finally apologized and took me too a face painter lady in one of the stores. I chose what I wanted on my face, I can't quite remember what it was though, I think it was some kind of fish. But, after she had finished, I looked in the mirror she had and I burst out laughing. I laughed for about ten minutes and said that I accepted his apology. When we arrived home a few days later, I took the hose and sprayed him with it just too get him back. And too be a little stinker of a sister, like all little sisters should be every once and a while in my opinion. Thank gosh it was during the @DATE2 because me and him did it a few more times just too be brats too mom and dad. Lastly, I remember this one time in @NUM4 grade when my best friend @CAPS4 was moving. I cried for days and days. Then finally he calls me and we talked for about @NUM5 hours, and talking too him just made me laugh, and wish that he hadn't of moved. At least I still got too talk too him. Only about once or twice though. anyway, those times talking too him made me so happy. We talked about his dogs. One of his dogs names is @CAPS5, she was about @NUM6 months at the time. She started chasing her tail and when she went around about @NUM6 times, she tripped over her feet and fell on her rump. So, to end this trip down memory lane. Those three blasts from the pasts were the ones that made me laugh too help me feel better when I was feeling upset, or down." 16 15 31 3 3 4 4 4 3 3 3 3 3 3 3 +21480 8 " Laughter in life is a good thing to have I believe. Once @CAPS3 I was @NUM1 year's old I had a and @CAPS1. We always loved to hang out and do things together like take walks, or go to the beach, or go to the parks. What was so funny was that that we also loved to eat together too, maybe not out his dog bowl, but off of plates or on a picnic table. He was a cute dog. He had four little puppies named @CAPS5-@CAPS6, popcorn,big tail, and mountain. I named them all weird animal names because that's either what they smelled like or that's what they looked or loved doing. Why we named my dog @CAPS1 was because he always smelt like @CAPS1. I always took him on walks to make him a healthy dog. It made me very angry @CAPS3 he had puppies and a mate. I don't know why maybe just because head I really loved my dog and i wanted him to be mine only. My favorite friend. I thought in my head hey! that's my dog and you leave him alone and do not touch him. Well @CAPS3 he had puppies i finally realized in my head @CAPS1 just wanted a life of his own too, a family, and be a big boy dog. He didn't hate me, he loved me and giving him a family is what I allowed and it made him happy. What was funny about the little puppies was that they smelt like odd food, like @CAPS1, @CAPS5 chops, or popcorn. My favorite puppy was @CAPS5 @CAPS6 because that's what he smelt like, not @CAPS1 but @CAPS5. POPCORN was a good dog too so was the other dogs but @CAPS5 @CAPS6 was a biter. It's funny because those little puppies love to bite and chew on stuff. The second you leave my puppies alone they will so eat everything. One time @CAPS3 we went on a trip to another state he had to leave the puppies alone with a babysitter, and @CAPS3 we came back they ate up a lot of the clothes and destroyed everything. I also had @CAPS11 too but they weren't good animals or pets to have they also ate everything up, and they stink. No not like @CAPS1 or popcorn but something else gross. The puppies loved to nibble on your toes and your hair. They had small teeth but oh they hurt. Stinky breath those dogs had I don't know why but there stinky. One of my favorite story about @CAPS1 was that he never liked to swim. It was odd to me because you would have thought cats hate water more than dogs. Well @CAPS1 did not know how to swim so I had to teach him myself as a good owner and all. Well @CAPS3 ever he doggy-paddled, he stuck his head underwater and swam forward. I don't know why, but I always thought can he breath like that? or is it just a doggy thing. Well eventually I got him over that, I don't think it was good for him to swim underwater. Like cats he used to never like water, it was just a phobia my dog had I guess. But I tried my best to get him over it. @CAPS3 I moved around states I had to leave him it was the saddest thing in my life ever. But we all move on right. Laughter I think is so good to have in your life because it can help you become more anti-depressed and not have to focus on the bad things in life. Every now and then @CAPS3 I am sad i just go and think of @CAPS1. I had other animals like @CAPS10, @CAPS11, @CAPS12, and cats. Personally I love cats more than dogs but @CAPS1 will always be the first. My cats weren't really that social to me, there lazy.What was so funny about my cats was that I named one of them @CAPS14. Why I named that cat @CAPS14 was because he was all black but with white feet. It was funny because @CAPS3 ever he got mad he did a lot of turning and jumping around. He was a wild kitty. I named one of my cats @CAPS15 because he was so fast at everything. What was funny about him was @CAPS3 ever you play around with him he charged off like he ate a bowl of cat nip. Having animals in my life to be with gave me a story of laughter in my life, and happiness. Laughter I think is a good important part of relationships too. If you do not laugh in your relationship then I believe that the couple are not so happy. Laughter can be good many time's, but also can be a insult too. If it means becoming a insult to some people or even laughing at people is rude. Having laughter in your life is something you should always keep because it can help you become happy in many situations and problems you encounter in life. To be happy you should have laughter." 15 17 32 3 3 3 3 3 3 4 4 4 4 3 3 +21481 8 "Have @CAPS3 ever had that one moment with some that @CAPS3'll remember forever and laugh about every time @CAPS3 think about @CAPS2.? @CAPS8 I have and I think that everyone should have a moment of laughter in there life. On the day of @DATE1 was the day that I will laugh about for the rest of my life. On this day my boyfriend @PERSON1 from @LOCATION1 decided that @CAPS1 wanted to take me out to an early breakfast. @CAPS1 called me around four in the morning saying that @CAPS1 was starving and that @CAPS1 needed some food in his stomach. So @CAPS1 picked me up around five am and we went to @ORGANIZATION1. We sat there drank coffee and ate pancakes. We finished very early so @PERSON1 wanted to go for a drive, let me remind @CAPS3 @CAPS1's from @LOCATION1 so @CAPS1 has @CAPS6 clue where anything is in @LOCATION2. So as we head out of town I am giving him directions to where the best place is to go for a drive. We are in his @DATE2 poniac which is not the greatest vehicle to be going for a ride in around this town, because around here @CAPS3 need a four wheel drive vehicle otherwise @CAPS3're probably going to get stuck where ever @CAPS3 go. We were doing great at first because we stayed on the pavement roads, but @PERSON1 wanted to explore the gravel roads. So we started to go down a gravel road and we both decided that maybe @CAPS2 was time to go home. When we came up to another road @CAPS1 decided @CAPS1 was going to turn around. That was not the greatest idea. @CAPS1 seen the sign for the street but @CAPS1 turned the wrong way into a field. @CAPS2 was okay, @CAPS8 as first @CAPS2 was . Until @CAPS1 went to back up, and the car wouldn't move. I looked at him and laughed and said ""I told @CAPS3 that @CAPS3 needed to go right not left."" @CAPS1 then looked at me and said, ""@CAPS2's not stuck I just need to try a little more, and we'll be out."" One thing that @PERSON1 did not know is that @CAPS2 had been warm in @LOCATION2 the last couple of days, so all the fields were very wet and soft. I looked at him and told him that @CAPS1 might not want to @CAPS5 that but @CAPS1 said that is was fine @CAPS1's done this before. So I got out of the car and went and stood by the road. @PERSON1 tried to get the car out of the mud for at least ten minutes, and that was not the greatest thing to @CAPS5, because now the tires were berried under the mud. I started to laugh so hard because @CAPS1 got out of the car and looked at me and said I should have listened. @PERSON1 had one more thing that @CAPS1 wanted to try, because @CAPS6 offense but @CAPS1's a boy and they can @CAPS5 everything themselves. So @CAPS1 told me to get into the car and put @CAPS2 in reverse so I did as @CAPS1 said, then @CAPS1 said okay lightly push on the gas as I push, @CAPS8 I did a little more then lightly push on the gas. I looked up and @PERSON1 was covered in mud from head to toe. @CAPS2 was the greatest thing I have seen in my life, my boyfriend had got what @CAPS1 deserved because @CAPS1 wouldn't listen to me. I looked at him and my eyes instantly started to water, I was trying to hold my laugh in, but @CAPS2 just wasn't working. I started to laugh and @CAPS1 looked at me and said, ""@CAPS3 think this is funny?"" @CAPS1 then pulled me out of the car and shut the door and started to wipe mud all over my face, I was laughing so hard that i fell and took him down with me right into the mud. @CAPS8 to make the story even better, we went to go open the doors to the car, and @CAPS3 remember how I told @CAPS3 that I put the car in reverse @CAPS8 when @CAPS1 pulled me out i didn't take @CAPS2 out of reverse, and his car locks when its not in park. I then looked at him and said, "" @CAPS5 @CAPS3 have an extra key on @CAPS3 by chance?"" ""@CAPS6"", @CAPS1 said, ""@CAPS7?"" I looked at him and said, ""@CAPS8 lets see the car is still running, the windows are up, our phones are still in the car, and @CAPS8 to finish @CAPS2 off the doors are locked."" @CAPS1 looked at me and his mouth dropped. We sat there waiting for almost an hour and a half before anyone came down the road. @CAPS2 took use about forty-three minutes to get the doors unlocked, and then @CAPS2 took us about thirty minutes to get @CAPS2 unstuck. When I got home I told my family the story, and we still laugh about @CAPS2 to this day." 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +21482 8 " Laughter Was One @CAPS1'm going to wright my paper on how important laughter is. I believe it can really cure people. Like when someone's upset, @CAPS2 just a have a good laugh and make yourself feel better. Ok I know I crack a few jokes here and there, @CAPS2 what i like to laugh alot it feels good, it makes me happy, and other people happy. I'm in foster care and i can't get out @CAPS2 laughter is an important part to my life at the moment. Even if I'm down it makes me happy to hear some one else having a good time.I miss hearing my parents laugh.My mom was an amazing mother, she had a funny laugh that would get me to grine, smile and just bust out laughing. We always had a good time, I remember when my mom took her meds @TIME1 and the pills make her a little hiper. @CAPS2 my own mother wanted to box me.@CAPS2 i had boxing gloves and she just had her fists, @CAPS3 my mom knew how to fight and every thing. @CAPS2 that experionce was a little scary. Ok enough @CAPS5 my mom, @CAPS4 my dad he was an exepttional man and father.He worked hard to support me and my brother. When my brother and I were younger my dad would always put on funny masks and do funny things to get me and my brother to laugh. Or he would put on a scary mask and scare us tp have himself a laugh.My father would go roller blading with us and try and trip us but he couldnt always keep up and if you got going to fast his legs would wobble and he would fall and me and my friends would just laugh.Every my parents past me and my family has been seperated and it sucks but laughter to me is there world right @CAPS4. I could have been my fathers twin, think hard @CAPS5 that.What Laughter Is All @CAPS5 ''Laughter Is The Shortest Distance Between Two People''. And ''I @CAPS6 Believe Laughter Between Two Or @CAPS7 People Is An Important Part Of Any @CAPS8 Of @CAPS9.''" 15 15 30 3 3 4 4 3 3 3 3 3 4 3 3 +21483 8 " My grandfather always used to say, ""life is like a kaleidoscope, you can keep turning and turning and it @MONTH1 seem like it is changing, @CAPS1 really it's just repeating itself."" @CAPS1 i have always wondered if the statement really applies to life, and if it does why would we want life to continue in the same pattern, if it isn't going like we had planned. When i was twelve me and my two little sisters were split up and three thousand miles were crammed in between us. i was put here in @LOCATION2 while they remained in @LOCATION1, where i was born. At first the pain of those three thousand miles was devastating. it was like i had two of my essential organs removed from my body. Eventually though time passed and the agony lessened @CAPS2 grip on our lives. It @MONTH1 seem cruel @CAPS1 most of the time now the thought of them doesn't cross my mind. maybe @CAPS2 true what they say, ""out of sight, out of mind."" @CAPS2 sad to think of how close my sisters and I were before the change. we did everything together. we are very close in age, the youngest and I are only @NUM1 years apart. i remember all the times we would spend outside on humid @DATE1 days. We would look as white as ghosts because of all the sunscreen my mother would generously apply to our skin. Times were different then, they were happy, i was happy. If i think really hard I can see us sitting on the shag carpet in my room, playing with dolls until the sunlight melted slowly into darkness. If only i could have that moment again even for a second, then maybe i could feel that happy content feeling once again. Although much time has passed since our separation i still have those days when i feel that my world is caving in around me because they are so far away. I'll give them a call and the questions are always uncomfortable at first, like between strangers meeting for the first time. i can feel the three thousand mile scab on my heart reopen and it bleeds as though i am leaving all over again. I ask myself why do i bother to call if it hurts this bad? And then i hear it, like the beautiful sound of classical music to my ears, I hear them laugh. I have that feeling i needed all of a sudden, i am happy. With every small giggle my smile grows because i know i have made them feel whole again and for a second i have let them forget about for far i really am. Their laughter makes those three thousand miles evaporate into the air. In those moments of laughter i know that we are close again that we are sisters, not strangers. It's true what my grandfather says, because no matter how my life changes i will always have that feeling of total bliss when i hear the sweet laughs of my little sisters." 20 21 41 4 4 4 4 4 4 4 5 5 5 4 4 +21484 8 " I rested my back on the cool steel of the lockers trying to ease my nerves. ""@CAPS1 game is everything we have worked for- every excruciating practice, every tedious drill, and every game film we have studied down to the minutia. It was all to prepare us for tonight. @CAPS7 we lose tonight, everything we have worked was for nothing."" I listened attentively as @PERSON1, our team captain, spoke. The words she chose for our pre-game speech were straight to the point, and anything but sugar coated. As I glanced around the locker room it was easy to observe that everyone one of my teammates was anxious. Emilie was vigorously chewing what was left of her nails, while @LOCATION1 preferred to show her uneasiness by the constant tapping of her foot. @PERSON1 finished her speech, and with the break of our huddle we entered the gymnasium. The stands were packed with familiar faces of our small town. In a small section of the stands there was a group of people wearing colors not native to our school. @CAPS1 brutal reminder brought my attention back to warm ups. The twenty minutes we had for warm ups seemed to last no longer than two minutes. The announcer began to state our starting line up, but it was no use. The roar of the crowd overpowered the speaker system. It seemed as @CAPS7 everyone from our town of five thousand was attending the game. Not an empty space was left in the bleachers. The bench vibrated from the stomping and clapping of the crowd, threatening with every shake to collapse. The starting five for each team walked out to the center of the court for tip off. With the loss of the tip off our team was quickly put under pressure. From the first possession of the game we were chasing our opponent. The first two quarters ended with a dead even score. Feeling discouraged my team regrouped in the locker room for @DATE2 time. We entered the locker room a moment before my @CAPS3. I took @CAPS1 opportunity to @CAPS2 around at the expressions' of my teammates. Nothing, but disappointment and fear crossed their face's. My @CAPS3 opened the door, and I instinctively braced myself for the throwing of keys against the wall, or the smash of the clip board. My team had witnessed these acts of rage countless times before. To my surprise, my @CAPS3 entered with complete poise and composure, as @CAPS7 our first @DATE2 of treacherous play didn't phase him. We were not yelled at, or criticized. Instead, he rubbed his eyes, face down and shoulders hunched over. His belly began to shake, shortly followed by his shoulders. My first hypothesis was that he was crying, but then to my amazement, I heard the soft chuckle of our @CAPS3. Soon that soft chuckle metamorphosised into a stomach thrusting, loud cackle. My team exchanged confused glances, and waited for my @CAPS3's explanation in anticipation. ""@CAPS2 at yourself!"" @CAPS3 @CAPS4 ordered. ""@CAPS5 are all more tentative than when I asked @PERSON2 out to my first dance!"" We could always rely on @CAPS3 for an unrelated metaphor. Even @CAPS7 it wasn't related to basketball, the point was clear. ""@CAPS7 @CAPS5 guys would just believe in yourself the way I believe in @CAPS5, @CAPS1 game would be a blow out! Instead, @CAPS5 are playing like a bunch of bunny foo-foos!"" We all laughed with the thought of playing like the nursery rhyme we had hear so frequently when we were children. The speech @CAPS3 @CAPS4 gave eased us all. The confident team we should have been from the start of the match was now prepared to win the @DATE2. To think that @CAPS1 confidence came from just one comforting laugh seemed almost improbable. The whistle blew to start the @DATE2. We played with such assertiveness and confidence that @CAPS7 @CAPS5 were to compare one @DATE2 with the other, it would @CAPS2 like two different teams. We grasped the lead early in the @DATE1, and sustained it for the rest of the game. The victory of that night's game lead us one round deeper into the state tournament. As I walked back to the locker room I glanced around the massive gym. I looked at: the crowd, score board, opponents, referees and news reporters. I realized how easy it is to get caught up everything that shouldn't effect @CAPS5. All the distractions easily make @CAPS5 forget the main purpose of why @CAPS5 play the game. Occasionally we need reminders, like the calming laugh of @CAPS3 @CAPS4. Without that reassuring laugh, my team never would have united, and defeated our opponent." 25 25 50 5 5 5 5 5 5 5 5 5 5 5 5 +21485 8 "Freshmen year, @CAPS1 season. I have been @CAPS1 for about eight years now, I made varsity in a @NUM1 school in @LOCATION1 my first year in high school. Being the only freshmen on the varsity squad, everybody knew who I was, ""The short kid on the varsity @CAPS1 squad."" @CAPS2 a eighth grader I won junior state and wrestled all the way through the brackets without @CAPS1 a full match. Meaning that I pinned everyone in the first round. I couldn't be touched. Going into high school I knew that I wouldn't have @CAPS2 easy of a time like in grade school. I was completely right. My coach had to be the funniest person that I have ever met in my life. @PERSON1 was my @CAPS3 teacher since the @NUM2 grade and has been my role model all the way through life. He made the funniest jokes about wrestlers on the team. A lot of people disliked @PERSON1 @CAPS12 @CAPS4 and him got along great. I ended the season freshmen year with @NUM3 wins, @NUM4 pins, and @NUM4 losses. I still to @CAPS13 day haven't been pinned. Which got @CAPS4 the wrestler of the year awarded by my @CAPS1 coach @PERSON4. When the season rolled around to regionals I knew that I had a shot to go to state. There were six guys in my weight class and four of the six I have previously beaten in early season. I had to just worry about my match ahead of @CAPS4 and wrestle mistake free. At the @NUM6 pound weight class there is a bunch of little kids. I was definitely the most experienced in my weight class. I got seated first seed. The second seed was @PERSON2 from @ORGANIZATION1. He dropped weight so he could try and take my seating for state. My first match I wrestled @CAPS5 from @CAPS6-@CAPS7-@CAPS8. The match was very short-lived. I pinned him in about @NUM4 seconds. After my match with @CAPS5 I walked to my coach and he told @CAPS4 a quote that I will never forget, ""@CAPS10, @CAPS11's lonely at the top, @CAPS12 the view is excellent."" @CAPS13 quote stuck in my head throughout all of my next matches. I won my second and third matches and was in the semi-finals. I was one round away from going to state automatically. I wrestled @CAPS5 from @PERSON3 and he weighed @NUM8 lbs. I knew that he was a good wrestler even though I had about @NUM9 pounds on him. I was getting ready to wrestle and I seen @CAPS5 warming up across the gym from @CAPS4. @CAPS2 he was jumping around getting warmed up I see him trip and fall on his face. My coach had seen the same thing and started making fun of him. @CAPS11 was the funniest thing that I have ever witnessed. I wrestled through the match and pinned him in double overtime to go to state. My coach walks up to @CAPS4 and says ""@CAPS11 took you that long to pin someone who can't even warm up without falling on his face."" @PERSON1 had about three teeth total in his mouth. He lost them from a lot of different ways. He was a adventure man. He loved white water rafting and loved the sport of @CAPS1. When I moved, I was far away from my idolized @CAPS1 coach, @CAPS12 we still hit @CAPS11 up on the facebook and chitchat. To @CAPS13 day, he is still the funniest man I know and still my idol." 20 16 36 4 4 4 4 4 4 3 4 4 3 3 3 +21487 8 "Many people @MONTH1 think that laughter is not a big part of a relationship. i truly think that have a good laugh with your spouse is a good thing because it means that you are having a good time with each other. I will tell you a true story when i and my girlfriend were laughing and having a good time, and i will talk about another time when laughter was a big part in my life. In the next @NUM1 paragraphs i will decide how laughter help @CAPS1 out a lot in my life. laughter is all about having fun and it should be meant to hurt someone or make them upset or mad at you. I think some people really mean to hurt people because they don't care what they say to others and that's why laughter sometimes can hurt people. I have said some things to people that i thought were funny but the person i was saying it to didn't think it was funny. This first story I'm going to tell you is about @CAPS1 and @LOCATION1. I have been dating @PERSON2 for about a month now and laughter is a big part in our relationship. @PERSON2 and i like to tell jokes to each other and make each other laugh and smile. If we didn't laugh and have a good time with each other than were would this relationship go. It wouldn't go the way i would want it t go. So i try everyday to make her laugh and smile at some of the things that i say because its a important thing in life to @CAPS1 anyways. @PERSON2 makes @CAPS1 laugh all the time and i think thats a good thing to her because she can be a very funny person all the time. So as long relationships have some laughter in it most of them will go for a while. The one person i think that has made @CAPS1 laugh the most is probably my dad. My dad every day when he comes to pick @CAPS1 up he always has something funny to say. I don't think he has not said something funny one day for a long time. The times when my dad is having a bad day at work and then when he comes home and is still in a bad mood i try to say something funny to get him out of his bad mood, and if that doesn't work i just go to my room to get away from him. But most of the time my dad comes home in a good mood because his job is very easy and he likes the people that he works with. Now that would have been a different story if we still lived in I'm @ORGANIZATION1. When we lived in @ORGANIZATION1 my dad had to commute back and forth to work from @LOCATION2 to @ORGANIZATION1. That was about a hour drive one way, so it put him not in a very good mood.but i didn't get to really see him much when we lived over in the @LOCATION4. so anything that funny i think i always try to say just to keep the laughter going.I believe that laughter is a big part in having friends. most friends like to joke around and laugh at things that are funny to them. so when you have a friend that likes to smile or likes to tell jokes usually they become friends and that person gets more friends and they whole community starts to like him in-till he says something that makes a lot of people mad. At our baseball practices @CAPS1, @PERSON3, @PERSON4, and @CAPS2 we like to tell jokes jokes or say something that will make the whole team laugh. another person that is funny to @CAPS1 is @LOCATION3. @LOCATION3 tells a lot of jokes and has funny face exasperation, and the last person that is funny to @CAPS1 is @PERSON1 is one of those guys that thinks he inst funny but really is. I think i have a good friend relationship with all those people.I just told you why i think a good laugh is a good thing in a relationship. It is good around your parents so you can have a good relationship with them. I hope you liked my story. I enjoyed writing on this topic because it explains about @CAPS1 and it explains what i do with my spouse and my friends. I think that everybody has laughter in there life day in and day out to keep a good attitude wit people." 15 15 30 3 3 4 4 3 3 3 3 4 3 3 3 +21488 8 " When I was a young boy I used to laugh at anything I could, but as a kid who didn't? As I got older and grew more, I developed a great sense of humor that to my advantage made me a young people pleas-er. I grew more and more developing a stronger, more confident sense of humor. I could always remember making people laugh and loving the attention I received from humor. As my body grew older and my humor grew more funny I had made myself more dependent on my people pleasing personality. In addition, I then taught myself how to alter my voice and change my tone for a more humorous effect. It was a step I knew was appropriate to advance my humorous personality. I had no intention of loosing my humor, so I used it to my advantage. I used my humor to boost my @CAPS1 count, to get attention from non-accepting peers, and to get the attention that I thrived on. I had began to be accepted by higher peer groups that used to look down on me and it seemed as if I had a lot of the attention. Anything I could do to make my fellow peers laugh was a goal for me. Anything from rolling down stairs, telling jokes, making teachers angry which students thought was funny, and occasionally destroying things. All this just so I could fit into the crowd that used to reject me. As I advanced into high school I knew my humor needed work to keep my peers still laughing, I just didn't know what kind of work I needed. That was when I started to ultimately loose my funny, humorous personality. I had then dropped in the peer ranks, down to the kids I thought were once called strange. I was friends with people who didn't always keep their heads up and were constantly down and seemed never positive. I was letting people that I called friends drag me to the bottom when I knew I should be more at the top. This was my first major downfall in which I had successfully lost my humorous personality. One of my friends especially brought me down more than anyone else, down to a father level of being unhappy. That so called ""@CAPS1"" took me down so far that I needed therapy to help me get back up to a normal level of happiness. I finally realized that it wasn't fun to be someones @CAPS1 who only drags you down. I finally broke free of that clutch when she moved, I wasn't mean enough to say I didn't wanna be friends with her, it was just to hard for me. When she moved it allowed me to heal myself and pay more attention to my humor. I had broke my dark days away and started back on my endless trail of humor. It was hard to accept the fact that I had lost my humor for what seemed to be forever, and lost my spot in the social bracket which would be hard to regain. But after a month of hard work and focus on both school and humor I had got my personality back to normal! Instantly after I regained my humor I began to feel more happy. I received more attention and felt like I was back to were I should be, although I was just a little lower. Back in the saddle of humor, back the laughs of my peers, back to the smiles, and most importantly back to the way I used to be. I had to regain all of my humor and personality, my tones, voices, and jokes but it was worth it, in a strange way. As I now continue my humor as a junior and I have not successfully lost it yet, but there is always a future. I managed to turn the best thing I had to the worst I have felt in a matter of weeks, then right back up again. In the end its not what you have that matters it is what you can do to please yourself and in the end I would not change a thing!" 21 20 41 5 4 4 4 4 4 4 4 4 4 4 4 +21489 8 in @NUM1 grade to @NUM2 grade was the happy time of my life. i had a teacher name @PERSON1. she love mickey mouse. i wish that sometime can go back there. in @NUM1 grade i was to the class room i know my of friends was with but did know the teacher. i didn't know what think of her at the @CAPS1 but i know have to get know her because she was my teacher for @NUM4 years. at one of my meeting my p.e. teacher teach me how to try my shoes.everyday we in ours journal we have did to tell a story about something i all ways talk about @PERSON2 and she will all ways tell me don't writer about her tell something new.in @NUM1 grade. my class and i we got to coffer shop for a frip trip. in @NUM6 my class read over @NUM7 book we have a party. sometime in the @DATE1 time we all get together and we will have a ice cream party. when @DATE2 come around we all ways do a musical every years. in @NUM8 i when to outdoor school it was fun and cool. 11 11 22 22 3 2 4 3 2 2 3 2 3 3 2 2 3 2 3 3 2 2 +21490 8 " Laughter saved my life. Growing up, my life was pretty normal. Me, my little brother, mom, and dad, all living happily together in a nice suburban area. But two years ago, everything changed; and it seemed as though it wasn't for the better. My parents got a divorce. It was all very strange because at that time in my life I thought that that couldn't happen to me; it was impossible. As I talked to my friends and family about it, I learned to live with the fact that my family would never be the same again. But thought I came to grips with my new life, I still was unhappy a lot of the time. But the times when I was with my best friends and caring family, were the times that I forgot about all of the things going on at home. George and I have been really close friends since the @NUM1 grade. We are inseparable. Though I have many other friends, he is the one I would always turn to if there's a problem. He knows me better than anybody else. We talk every day at school, we text message each other every night, and hang out almost every weekend. The night that my parents told me they were getting a divorce I called him crying. He told me that in the end it would all be okay, and he told me that he was always there for me if I needed anything. At that point in time it was clear to me that I had something that not a lot of people can say they had in their lifetime: A true friend who would be there through anything with me. He and I would joke about all my problems. To some, that @MONTH1 seem a little strange; but it was almost therapeutic to me. Making fun of my life, made it easier to live it in a sense. It helped me to realize that I need to let go of the past, and that just because there's a rough patch, doesn't mean that the rest of my life is destined to be this way. George knew how to cheer me up, and he could always tell when I needed a good talk, or a good laugh to make my day better. A girl always needs another girl in her life to tell secrets, to do crazy things, and to lay on the couch all day watching sappy love movies with. For me, its @CAPS1. When we're together there is no stopping us. She was always right by my side through my parents divorce. She was there with me, my last night in my house before we moved out. We sat on my bed in my empty room, recalling all the memories the house had given us. Some would think this would be a sad time, but all we did was laugh. Because all of the memories were good ones.We weren't crying because we were upset; we were crying from laughing about all of our insane adventures for hours. To me, that's a pretty good reason to cry.We re-lived our best moments that night, and we weren't going to let the situation make us upset. We wanted to make our last memory in my house a good one; that we would always remember. My family is quite strange; but we do know how to have a good time. I don't have many family members, but I think that because we are so tightly knit, we get along really well. Whether we're out in the backyard playing a game of wiffle ball, or in the house playing pranks with whoopie cushions, it's always a fun time at my @CAPS2 @PERSON1's house. During the rough times of the divorce, I would spend a lot of time at my @CAPS2's house because I didn't have to worry about being questioned all the time about how I was feeling; I just had to worry about if I should bring sneakers to go on a hike, or if I should bring my pajamas in case we decided to have a movie night sleepover. That house is a place I still go to just relax, and forget about whatever @MONTH1 be worrying me. @CAPS2 @PERSON1's is a safe haven for me to just let go, and have a good time with some of my favorite people in the world; my family. If I didn't have all these important people in my life, I don't know what would have become of me. As I grow up, I'm realizing that these people have molded the person I am today. They helped me through the roughest time in my life, and that proves how much they really care about me. Some say laughter is the best medicine; I say it's love. Laughing helps to get you through terrible times, but the people who make you laugh are really what matter most. I can honestly say that every one of these people have made me a better person, and I love them with all my heart." 25 25 50 5 5 5 5 5 5 5 5 5 4 5 5 +21491 8 " Life is a serious matter that should be taken into consideration. Life is what you make it and I have gave my best efforts to achieve this goal; even when it seems senseless. It maybe be hard to not be an effect of the worlds chaos and daily epidemic but doesn't seem easier or less stressful to smile than to frown. To live life in the moment with no worries of what is gonna happen just to be care free, I would consider it exhilarating. To be nothing but the purest form of tranquility. My memories as a child are faint, but I am glad to say that I have some. Happiness as a child is most pure in my position . I long for that purity I once had, as most do. It was my favorite pair of plastic barbie high heal shoes or my special princess backpack with every princess or @CAPS1 @CAPS2. It was my parents making funny faces that made me explode in laughter because I could not possible hold it in any longer. All I longed for was a pick-nick under my favorite long green haired willow tree, to feel as free as the birds, to sing their beautiful songs, and to dance around with a never ending smile. It's the fragile youth of a child I longed for. It's a fragile youth of a child. As life goes on my purity has faded and the distance from people, the community, and myself has extended till I felt alone in sol om. I had changed as person when life when life burned me one to many times. I felt god had betray me if not hated me. I then had became a stone cold wall that no one could penetrate. But as I gazed into the mirror I no longer seen a @CAPS3 for life just hatred. This moment in time changed my life perspective. My strong hatred for the world was begin to handicap me in various if not most important aspect. If couldn't open up to myself - how could I open up to the world? To @CAPS3, to learn, to be free, and to grow was my ultimate goal. Within myself I learned the most important lesson; laughter and wiliness to be optimistic, compassionate, and understanding. Someone once said ,""Laughter is the shortest distance between two people.""I believe this is an honest opinion worth trying to prove. Laughter changed my life, my world, and it's a reoccurring symptom that take pride in everyday. In my most embarrassing moments, most angry of times, and even within my deepest sorrows I still manage to scrap up a smile. Helping people helped me realize and understand this is passion of mine. I want to help the world not hide from their pain but just to realize life can take a twisted turn and still end up being alright. Even within the deepest darkest caves, their is always a rock awaiting to crumb to bring light. To me their is always a light at the end of the tunnel. In my light -- a smile can carry. I want to be that light. I want to be that re-leaving feeling that everything will be all right. so I live me life through a gracious smile. In my perspective if you create a smile and you will receive three more. This is my motto,"" @CAPS3 life for what it's new adventures bring, just smile, the world will continuously turn as life rolls on.""" 15 15 30 3 3 3 3 3 3 3 3 4 4 3 3 +21494 8 "Laughter. Some might think of it as just a simple reaction to something funny, but in reality laughter can be many things such as a way to cope with situations, a way to express yourself, or just a simple way to enjoy yourself when you are around friends. For me the meaning of laughing has changed a lot during my lifetime, when I was younger I used to laugh to enjoy myself or just to have fun with peers, but as I have grown older I have used laughter to cope with situations. On @DATE1 the morning of my @NUM1 birthday I found out some disturbing and disappointing news, that day I found out that my mom had passed away. When I first found out I didn't know what to do the only thing that I felt I could do was cry and grief about it and shut down into a depressed stage, many of my friends tried to help me and tried to tell me that ""things were going to be okay"". I knew they were right, but the only thing I could think was even if things turn out okay things will never be the same. At this time I thought to myself what will @CAPS1 be like? what am I going to do on mothers day?, and my biggest question of all how was I supposed to celebrate my own birthday?. It's hard knowing that someone that I love and had been with for @NUM2 years of my life is gone, but since my mom has passed away I have tried to stay focused on the positives and what she would have wanted for me like graduating high school, becoming successful, and not letting my life spiral down hill. Even though everyday for me is hard I still try to push through it and just remember that my mom wouldn't want me to give up on my life over her passing. You might ask yourself how I am coping with this loss, and the answer to that is that I have learned to cope with my situation with laughter. Growing up my mom always told me that ""laughter is the best medicine"". And after losing her I realized that that statement was true.Now whenever I get upset or sad I remind myself to think about the memories that I have had with my mom and laugh about the good experiences and times we had , and I sometimes even find myself laughing at some of the arguments we had. Laughing has been helping me cope fairly well in the past four months since my mom has passed away, and I hope it continues to help in the future, but I continuously think that ""sure I can laugh about things now, but what about in ten years?"" I guess the future is just going to remain a mystery for that, but one thing I do know about my future is that I will become successful, and even if laughter doesn't always work for me I will stay strong and be sure to live my life the way I would if I still had my mom, it will be hard doing it without the guidance and authority of having my mother there, but fortunately I am not dealing with any of this alone.One person that has been there through the whole situation has been my aunt, she has been in my life since day one, my mom and I even lived with her. I am grateful that my aunt has been there for me during my life, if she wasn't I don't know where I would be right now, she has taught me that I can't isolate myself or stop being a teenager just because I don't have my mom, but to live life to the fullest and live the life my mom would have wanted to see me live, she also tells me that laughing at bad situations is okay and to not keep things bottled up and I am very happy I have someone to go through this with.Having someone there for me in such a tough situation is very reassuring to me. Knowing that I have someone to go to and just talk about the past and be able to have someone to laugh with about it. Laughing is hard when you do it by yourself but one thing that I have noticed is that when you have friends and family that are going through the same situation as you it is easier to share your feelings and I think it also makes it easier to laugh when you have people that you are close to and people that care about you around. In some situations laughter might not be the best thing to do, but the best advice I can give to someone who might happen to be going through a similar situation is to not stop living your life and be something great and try to release some of the stress of a situation by laughing with friends." 20 20 40 4 4 4 4 4 4 5 5 5 4 4 3 +21495 8 " Every one laughs, i love to laugh in fact that's one of my favorite things to do. If your in a bad mood or just cant get happy, laugh at things cause i am sure it will lighten up your mood and i will tell you what, its also very good for you in many ways. If people didn't laugh then this world world would be a very depressing, you smile at someone who isn't the happiest could totally change their mood. So as i have told you before i am a very happy and energetic person and laughing is what i do best,and i smile at everyone around me. well i have a story for you, i like to volunteer at homeless shelters and old folks home cause i believe i should share my happiness with everyone else around me it makes my soul feel good to help people out. This one after noon i was doing what i do best laughing and having a good time at the old folks home making people smile, they all love having me around cause they say i cheer them up. I run around room to room bringing in vases of flowers opening their curtains to let the beautiful sunshine in, i always told them vitamin @CAPS1 is good to warm up the soul. There was this one man there who had never have a smile on his face and i did the same to him as i did to the other residents and no matter what i did he would never smile. When ever i came in he was always gazing out the window with a dead look on his face, so i had ask the nurses why he was so grumpy and quiet and they had told me he was a veteran. He didn't have much family from what i understood, or well at least they didn't visit him much they just dropped him off cause they didn't want to deal with the grumpiness any more. but i have a heart of gold and i feel like i should share. I had decided one day that i was going to turn that frown on his cute little face upside down, and make him feel happy and smile and interact with the other residents. So as usual i went in and did my daily routine to all the other rooms, we talked did some laughing and all sorts of stuff. I had saved the little old man for last i wasn't sure what his name was or what the what his whole background was like but i was going to go for it! I went in and he was staring out the window as usual, i hesitated for a minute cause i didn't know how he would react. So i went up and started talking to him, i introduced m self but he didn't seem to pleased. I asked him his name and he told me it was none of my business and that totally shot me down made me feel like i was the bad guy. So i started talking to him and asked him about his life, he had slowly opened up to and told me about all the stuff he had seen in the @LOCATION1 war. He turned out to be a nice guy, all those nurses were wrong about him they didn't even try. We laughed for hours me and him, and it didn't get old. Ever since i talked to him he has been progressively started interacting with the others, they just didn't give him the time of day to explain his feelings or someone to talk to. So think about it next time your going to the store and you see someone who doesn't look like they're having the best day, and shot them a smile!!! :)" 18 18 36 4 4 5 3 4 3 4 4 5 4 4 3 +21500 8 " Do you ever have those weekends when you hang out your best friend and just spend the whole time laughing? Many people don't get the chance to have a day filled with laughter because they don't have people to laugh with. In my case I am always laughing and always surrounded with people that never stop laughing. My best friend is one of the funniest people I know. I could be in the worst of moods and @CAPS14 always knows how to put a smile on my face. @ORGANIZATION1 and I hang out all the time. Every time we @CAPS11 together we @CAPS11 constantly laughing to the point to where we cant breathe. One day we were both just having a rough day. All the drama with friends and boyfriends was putting so much weight on our shoulders. I was sitting at home on the couch when I get a phone call from @ORGANIZATION1. ""@CAPS1 @CAPS11 you doing today?"" @ORGANIZATION1 asked. ""@CAPS2 just sitting at home watching movies. You?"" I replied ""@CAPS3 i am having a bad day, would you wanna come over or something?"" @ORGANIZATION1 said in an upset tone. ""@CAPS4. Hold on, let me ask."" I said as I was running to my parents room. My parents of course said yes. About an hour later I got picked up by @CAPS5 dad. When I got in the car I could just tell by the way @CAPS14 looked that @CAPS14 was having a bad day and just needed to have some fun. When we got back to her house we went in her room and started talking. About five minutes after the conversation had started we were both crying like babies because of the problems that were going on. we weren't only crying because of sad things. There was a point in the conversation where we were laughing so hard that we started to cry again. @ORGANIZATION1 and I could sit there for hours and laugh to the point where there was no stopping us. @CAPS3 that day was the day. @CAPS5 dad walked in the room because of all the noise. ""@CAPS1 is going on in here?"" @CAPS7 asked with a stern voice. ""@CAPS8 dad."" We said still laughing. ""@CAPS9 then."" @CAPS7 replied with a really confused face walking out of the room. Closing the door behind him. That made us laugh even harder. We were laughing so hard that @ORGANIZATION1 fell off of her bed. ""@CAPS11 you @CAPS9!"" I tried asking but it didn't really come out because I was laughing so hard. All @ORGANIZATION1 could do was roll on the floor laughing. @CAPS13 you knew @ORGANIZATION1 you would know that once @CAPS14 gets going @CAPS14 thinks that everything in the universe is funny, literally. The rest of the night we just sat on her bed and talked about everything. Stuff that either happened two years ago or just happened that week. I remember her telling me a story about when @CAPS14 lived somewhere else and it was seriously the funniest story i have ever heard. I've been best friends with her for three years now and I never get sick of her. Some people that hang out with @ORGANIZATION1 and I don't really understand why half the stuff we say is funny. A few months ago we were hanging out with some friends and all of the sudden @ORGANIZATION1 screamed, ""@CAPS12 on my finger!"" @CAPS13 you were to just hear that from someone you would @CAPS2 be disgusted but when @CAPS14 screamed that I started laughing so hard my stomach hurt. One time when we were sitting in her room @CAPS14 wanted to paint my nails and @CAPS14 picked this ugly brownish gold color. @CAPS14 started to paint my nails. ""@ORGANIZATION1 it looks like i have @CAPS12 on my finger!"" I said in a loud voice. ""I think it looks very nice."" @CAPS14 replied with this certain smile on her face. Ever since that night @CAPS12 on my finger has always been our inside joke. @ORGANIZATION1 and I have the funnest times together. Times that you can only have with a best friend. The hours we spend just sitting there laughing over the simplest things you couldn't do with anyone else. I am so thankful to have someone that I can share all this laughter with. Remember, you @CAPS11 lucky that you have people that can make you laugh. Like I said not everyone has that person in there life." 17 20 37 4 3 4 4 4 3 4 4 4 4 4 4 +21501 8 " Laughter ""Laughter is the shortest distance between two people.""-unknown. This quote has a lot of meaning to a lot of of people. I am one of those people that believes that this quote has a ton of truth and meaning. The best true story that I could tell you that involves me and laughter is about my dad and I. When I was little and still living with my dad, my mom fought with my dad all the time and neither one of them where ever happy. My dad and mom both had good jobs but they never had money to do anything because my mom loved spending money and got them both into dept. My dad had to sell stuff of his all the time to help pay off all the dept. My parents got divorced wich was a good thing for us all. I got to hang out with my dad and I found out how much fun he is and how funny he can be. My dad and I started going hunting and all sorts of stuff like that. I found that my mom is even worse when she is happy because she gets vary hyper and loud, or you could just say annoying. She gets me to laugh every once and a while but its always at her rather than with her. I love being with my dad because I always have fun and learn something that will be vary helpful to me. I think that laughter is important to have in any kind of friendship. If you pay attention to how you are around the people you like the most you will see that most of what you do is make each other laugh. " 13 15 28 2 2 3 3 3 3 3 3 3 3 3 3 +21502 8 "A @CAPS1 @CAPS2 @CAPS3 A @CAPS4 @CAPS5. I felt simply @CAPS5. I was very stoical; my life was nadir. Helplessly. I had written a @CAPS2 to my hero; no reply. I was determine to wait @CAPS3 see if my hero would ever reply.... My hero is amazing, lighting, astounding; his name is @PERSON6. I understand his music. My best friend @PERSON4 @CAPS3 I, would always talk about how awesome his music is; in fact @CAPS6 @CAPS4 started because of @ORGANIZATION1. We were two different people; I didn'@CAPS8 even think we could be friends, or have anything in common. @CAPS20' music brought us together. @CAPS17 @CAPS3 I wrote a @CAPS2 to @LOCATION1; I thought to myself ""@PERSON6 is not even going to look at it,"" but I watched @PERSON4 write the @CAPS2. Weeks @CAPS3 weeks past by @CAPS3 I really thought @ORGANIZATION1 wasn'@CAPS8 going to read or reply. After that @CAPS6 @CAPS4 started to dilapidated. I felt discourage; we only talked about @PERSON6 @CAPS3 @CAPS6 photography project. We were really procrastinating toward @CAPS6 project; I had been a little distracted with cheer-leading @CAPS3 homework form the high school; not college homework. I was ignoring @PERSON4 calls @CAPS3 texts. Until I realize I had made a wrong choice; @CAPS15 I called my friend @PERSON4--thank god I did. A week later @PERSON4 @CAPS3 I @CAPS3 two of my friends: @PERSON5, my best friend since seventh grade; @LOCATION2, my best friend since eighth grade, had went to watch this really vehement movie. After the movie we went to meet up with some friends at the dorms. On @CAPS6 way there, @PERSON2 @CAPS3 I were telling @PERSON5 @CAPS3 @PERSON4 about @CAPS6 amazing experience in health: @CAPS6 health teacher had given us an assignment about what a perfect body should look like. @PERSON2 @CAPS3 I, facetious made an alien-looking body. The toes of this alien were coming out of its shoes @CAPS3 @CAPS6 alien had warts all over. We laughed non-stop, obviously we didn'@CAPS8 turn it in. When we arrived to the dorms, @CAPS3 @PERSON4 presented me to his friend @CAPS8.J; @CAPS18 was a big fan of @ORGANIZATION1. ""@CAPS9."" @CAPS10 we played various games I notice @CAPS8.J, had some warts on his hands, @CAPS3 when @CAPS18 took off his shoes; to put on his saddles, I couldn'@CAPS8 help but notice @CAPS18 somewhat reminded me of @CAPS6 drawing. I hysterically started to laugh non-stop, my friend @CAPS12 kept asking me why I was laughing, I said ""@CAPS8.J looks like my alien,"" @CAPS18 said ""wow that's rude."" I said ""In my eyes that's the perfect body."" We all had a good laugh @CAPS3 kept playing games @CAPS3 listening to @ORGANIZATION1. The next day @PERSON4 @CAPS3 I had to meet, to work on @CAPS6 photography project. All we had to accomplish was to take pictures of each-other @CAPS3 the things that we like @CAPS3 dislike. It was called: getting to really know a person. I learned a lot about @PERSON4 threw this project. In my opinion, I sometimes live life to fast, @CAPS3 I can barely catch my breath. I want to do everything but school @CAPS3 sports sometimes held me back; not in a bad way. I just have less time to hangout with friends or simply rest. But I love my life @CAPS3 wouldn'@CAPS8 trade it; everything that I do gets me closer to my goal: @CAPS14.B.I agent. This project was vehement. To me it was a @CAPS1, a way of life telling me ""hang on, you'll make it;"" all due to a simple call. We were working hard, when @PERSON4 phone kept ringing. I was a little cantankerous. I said "" @PERSON4 answer the phone!"" @CAPS15 @CAPS18 did. @CAPS18 said "" oh my god, @CAPS16 is @PERSON6, I said ""stop messing around, now lets get back to work!"" @CAPS17 put his phone on speaker, @CAPS3 there it was; my hero on the phone! I was @CAPS15 happy that I started to cry, how could this be happening to us! I blacked-out, it was like I was stoical. How could this ever happen to ""quotidian teens."" I could hear @PERSON4 talking to @ORGANIZATION1 but I was making my my mind convoluted. I took a gasp of air, @CAPS3 said ""hello."" (I was still in shock.) @CAPS18 said "" hello @PERSON3, good luck in track."" @CAPS3 that's when I past-out. When I woke up @PERSON4 @CAPS3 I couldn'@CAPS8 believe it. We cried, then to ease the tension, @PERSON4 said ""@CAPS16, you talked to your husband."" We laughed for a long time. @CAPS17 @CAPS3 I have the best memory together. @CAPS6 @CAPS4 started because of @CAPS20 music, @CAPS3 it will never end. That day I realized: one: miracles happen; two: laugh heals the heart; @CAPS3 three: always have faith, never give up, someone will always hear you @CAPS3 give you advice when everything feels like is coming down on you @CAPS3 if it is as @PERSON1 said ""jump of a cliff, @CAPS3 built your wings on the way down,"" or someone will help you built them! As @PERSON6 said ""come take my hand, we'll walk this road together."" " 20 18 38 4 4 4 4 4 4 3 3 3 3 4 4 +21503 8 " On a hot @DATE3 day during the middle of @DATE1 and I were having a blast camping in @LOCATION2. @PERSON1 and her family took me along on their camping trip we stayed in their @CAPS1, our campsite was right by the ocean so we would go on daily walks there. We stayed in @LOCATION2 for a week. During that week, i believe on @DATE2 her older sister went into labor she lives in @LOCATION1 which is a pretty long drive from @LOCATION2. That morning @PERSON1's mom and dad woke us up very early in the morning around six thirty A.M, @PERSON1 and i had stayed up @TIME1 before until about three thirty in the morning so we were pretty tired at that point. We found out that we were going to take a little plane from @LOCATION5 to @LOCATION4 airport and we got it fairly cheap because @PERSON1's brother works there. Sense we knew we had a long day ahead of us on only about three hours of sleep we both drank very strong coffee to keep us going. Then we were off to the airport the whole way there we were laughing about everything street signs, names of buildings, funny looking birds, songs, also we have @CAPS2 accents that we say every word with so it was that much funnier. My stomach muscles hurt so bad i don't know if we were laughing because things were actually funny or if we were delirious from not having much sleep and on top of that on a caffeine high and sugar rush. Once we got to the actual airport we still could not stop laughing @PERSON1's parents were getting frustrated with us even though we were making them crack up also. We all boarded the plane and we sat next to each other of course. We swear still to this day that we had a secret agent sitting behind us he had on spy glasses, a suit and an ear piece @CAPS3 the secret agents wear that protect the president we kept making up stories about what he does we couldn't stop laughing. Finally he started to talk to us. We were very enthused he was telling us all the places he was going the place I remember the most is @LOCATION3 a secret agent! We knew it at this point. We thought how awesome of a job! Of course @PERSON1's parents interrupted ""I'm sorry sir, are they bothering you?"" @CAPS3 we were some kind of pest, he replied ""of course not, i have nothing better to do."" We even had him laughing so hard that he was crying i guess you could say we are pretty funny when we are together. The best part was when her mom was having anxiety about flying i mean its not funny but she mad it funny because she was saying things such as ""oh my goodness were gonna crash, girls be quiet your freaking me out"" etc. @PERSON1 and I took advantage of the situation and made her even more scared. finally we landed. At the airport we went to the restroom and there was free toothbrushes so we took some @PERSON1 took a green one and I took a pink one. we used them all day in pictures and everything. Then we got a rental car and went to the hospital still laughing about everything we got into the hospital and finally seen the baby she was so cute. We started to settle down once we were in the room. After about an hour we went out to eat we were all so hungry. We ate then had to sit around and waste three hours we went to the mall then to @PERSON1's family's house we crashed! @PERSON1 and I were dead! but we still had the flight home, dreading every step we didn't know how we were going to make it. Finally we got on the plane went back to camp and went to sleep. It was one of those ""had to be there"" days i cant put the emotion and laughter into words it was that funny. We are best friends for a reason were definitely not boring which i think keeps us so close." 17 15 32 4 4 4 4 3 3 3 3 4 4 3 3 +21505 8 " Laughter to me is the best medicine there is, and indeed a big role in any good relationship. It's especially good for a couple who's serious and has forgotten how to laugh. Also for those who could use their mood lifted. I know that laughter made my relationship so much better. In the begginging my relationship with my boyfriend wasn't so great. We barely laughed with eachother, let alone spoke very much. Only with friends would we laugh and have a good time. Though we weren't much of jokers anyway. All we could do was get upset or just not say anything. Even if the joke was funny. Well that all changed one night when we decided to go to the @LOCATION1 and play a few rounds of @CAPS1. When we got there we were kind of moody, and I was very short tempered. After we sat down the mood lightened a little. Then we finally got to talking and then one little outburst sent us practically rolling on the ground. We were cracking up. Faces red and gasping for air. We laughed so hard we almost cried, and the jokes didn't stop. Our moods totally changed once that happened. We couldn't even remember why we were upset. Almost like the anger just vanished. Soon after we realized how rediculous we were and that it's alright to joke around, just so long as it's not mean. Later on we went to a friend's house and had an awsome time. We told a few good jokes, laughed an awful lot, and really had fun. Then when it got dark we decided to go home and were still cracking jokes. I don't know what it was about that night that but for the first time in a long time we were smiling and happy. Sharing that experience allowed us to really connect with eachother. Not only that, but it strenthened our bond, and brought us closer. Our relationship has been great ever since then. We can laugh and have a good time, without being so serious all the time. I know now why laughter is very important in a relationship. Despite our little run in with moodiness, all that joking around reminded me that laughter is by far the best medicine there is. It did some things that others never could. Some @MONTH1 not think that laughing is best, but i believe it is. Those little giggles every now and then @MONTH1 not seem like much, but believe me there is so much more than you think. Laughter is everything to me. After what it did for me and my boyfriend, i don't know how i would live without it. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21506 8 " I love laughing! Laughing makes me feel satisfied and happy. When I laugh with someone I don't know, I feel like I've known them for a long time. When I laugh with someone I do know, I feel fully content. But there is one person with whom I love to laugh with most of all, my cousin @PERSON1. I think that laughing is an important part of our relationship because when we laugh, its magical. Magical as in how fast and @CAPS5 it takes to make one of us laugh. We will say almost anything, the most random but humorous things, then we will laugh until we literally cry. One @TIME1, when we were talking on the phone, we decided to call up our other cousin anonymously. When he didn't pick up we hung up disappointed. I was thinking of the @CAPS1 movie that I had just watched a few hours ago and an idea slowly started coming to me. I started talking in @CAPS1 to my cousin, pretending that I was our aunt from @LOCATION2. I told her how I was coming over for a visit in the @DATE1 @CAPS11 they had better be prepared. I like my bed nice and soft, fluffy pillows, and my own bathroom. I was the picky aunt. I want everything perfect for when I come. We laughed and laughed. Then @PERSON1 says to me, ""@CAPS3 don't we call @CAPS4 again and if he doesn't pick up, we'll leave a message."" ""@CAPS5 will we say in the message?"", I asked. ""@CAPS6'll just say that @CAPS6're his aunt from @LOCATION2 and that @CAPS6're coming for a visit and all the rest @CAPS6'll just make up.""""@CAPS7"", I said hesitantly. I dialed star six seven then his number and pressed talk. Luckily, no one picked up. But when the answering machine beeped allowing me to record a message, I was speechless. Then I started in my high picky aunt voice, ""@CAPS8 @CAPS4, this is your aunt @LOCATION1 and I..."" I burst out laughing before I could continue. ""I.. I'm coming over for a visit in.."", again I exploded. I could hear @PERSON1 laughing in the background, which made me laugh even harder. I tried again this time getting farther into the story laughing here and there. By the time I had reached the maximum amount of time for the message, I was @CAPS11 into it that I didn't want to stop. When the message ended, I was only half way done. @CAPS11 after the answering machine was done talking, I pressed two to here my message. As I listened, I couldn't help thinking about @CAPS5 a complete fool I sounded like. @PERSON1 kept shushing me each time I laughed to loud, but I could tell she wanted to laugh too. She was just holding it in. When I hung up, I called her back and when she answered I said, ""@CAPS10 do it again because I didn't finish.""@CAPS11 we called again and this time I said the rest more willingly and I barely laughed. I was saving it for when we listened to it. When we had our fill of laughter and wiping tears, @PERSON1 said, ""That was the most hilarious thing we ever did together, we have to do it again sometime."" ""For sure"", I told her. But it was late into the @TIME1, and time to go. When we had finished our good bye's and I love @CAPS6's we hung up. That @TIME1 and every other time I laugh, I think @CAPS5 would it be like if no one could laugh. @CAPS5 a boring place this would be, @CAPS5 a lifeless life. When I laugh, I feel lively. I want to live to laugh another day. If there were no laughter, that would be a shame, for I dearly love to laugh. " 25 20 45 5 5 5 5 5 5 4 4 4 4 4 4 +21507 8 " To me laughter shows the importance of life. I have always felt that in any situation whether @CAPS3 or bad laughter can completely change the way people handle those situations. When it comes to a relationship simply laughing can help anyone. Laughing symbolizes happiness and it is more than important for the people in a relationship to be happy. I have had many horrible situations where just laughing has helped us work through it. Laughing has always changed @CAPS1 mood and helped me through situations. When you get yourself so worked up about little things you forget about the @CAPS3 things in life and begin to lose your patients with each other, this has happened to me a lot. A time this happened to me was when me and @CAPS1 boyfriend were on our way to @LOCATION1 and it seemed like everything about that trip was going wrong. We went to @LOCATION1 for a vacation away from our hectic home life's and ended up wishing we were anywhere but where we were! They had over booked our hotel, our car broke down, @CAPS1 credit card account was being help for @NUM1 hours and it seemed as if that trip was the biggest mistake we had ever made. There was so much tension between us that we couldn't even look at each other without getting into a fight. We ended up going to some cheap hotel and spending the only cash we had. The next morning things got so bad that just being in the same room made us want to lash out and kill each other. He ended up leaving for the day and we didn't talk @TIME1 when he came back, but even when he got back after not being together or a day it was still hard being around each other. The next morning we woke up and by this time we were both fed up and have had more then enough. The only thing we did was mope around and fight, this made us realize we were really stuck and this vacation could no longer be called a vacation. There was no one we knew around to loan us money, no banks only an @CAPS2 and we realized we were not at our dream vacation destination more like in a nightmare. We had pretty much given up and lost faith in actually having a ""@CAPS3 vacation"" and had given up on each other. We were done, wanted nothing to do with each other or this nightmare anymore. This nightmare had ruined who we thought we were and we no longer looked at each other as a happy couple anymore, but more as two people who completely despised each other. The next day I decided to call @CAPS1 bank and see what was going on with @CAPS1 account, it turned out i forgot i changed @CAPS1 pin number to access @CAPS1 account. The entire time i kept entering the wrong pin so they locked @CAPS1 account to be sure someone was trying to break into it. I could not even describe how dumb I felt. I knew that as soon as I came back with the news even though it seemed like things would be alright, they wouldn't. When i arrived back at the hotel I could feel the tension as soon as I walked into the room. I began packing @CAPS1 stuff and when he caught on to what i was doing he asked where I was going, I replied ""to luxury"". Instantly his face lit up and he asked ""how"" and after I explained to him what had happened he instantly began laughing and hugged me. I knew as soon as i saw that smile on his face and heard laughter that things between us would be alright after all. We finally had the money to rent a car, and get to our dream destination. When we arrived at the hotel things were going great, we were smiling and laughing and actually enjoying ourselves. I can honestly say that even though all those horrible situations happened that I enjoyed our trip. I strongly believe that everything happens for a reason and that reason led us to a week full of laughter and true happiness." 20 16 36 4 4 4 4 4 4 3 3 4 4 4 3 +21508 8 " Laughter is necessary to survive in this crazy and beautiful world. It is something we possess with us throughout our lifetime. As humans, we grow old and eventually die, but laughter never does. It lives on forever. Laughter is often referred to as 'the best medicine', and why shouldn't it be? It brings joy to the sad, relief to the burdened, and life to the depressed. The best part about laughing is that it is completely and unchangeably free! Never will someone have to pay to gain a drop of laughter. On the other hand, laughter is also contagious. A single smile, throw back of a head, and a gut busting laugh can cause an entire room to become ill to this glorified epidemic. Laughter is the best release. When I was younger I had a neighbor named @ORGANIZATION2. @PERSON1 was an older man who spent most of his time in his carpentering shop. He never talked to the rest of us on our street nor did we attempt to strike up a conversation with him. Day in and day out I would notice his little red pick-up leave in the morning and return at night. His life seemed like more of a routine and I was curious to find out why. @PERSON1 had a wife who, as well, became a vampire to the rest of us. This was completely fine, because to us, she was a monster. Countless times soccer balls would be kicked into her yard by pure accident and she would come out of her quiet house yelling and waving her hands in our direction. She even left a note on my family's front door telling them to ""take better care of your lawn"". I sympathized with @PERSON1 for having to live with the woman. Something in her voice seemed off, as if she was deaf. That aspect of her life always made me feel a little bad for her. Being different could have been a possible explanation to why she treated people the way that she did. I will never forget the day the ambulance pulled up in front of their perfectly serene house. I sat on my front porch silently watching the medics go inside the house. Not long after, I heard the little red pick-up coming up the road. I knew, as far as everyone else on @ORGANIZATION1, that this was not part of the routine. After about @NUM1 minutes, a body was carried out on a stretcher. My heart sank. Even though I was young, I knew the significance of a hovering white sheet over a being. @PERSON1 was very secluded after his wife passed away. Nobody could blame him for that. He lost the love of his life; he lost his routine. My family discussed and decided to bring him meals. The food was never anything particularly fancy, just something that would keep him going. I've never seen anyone so appreciative. Still, we knew to stay off of his lawn. His wife loved it and he must have felt like she was still attached to it somehow. He was lonely and my family wanted to be there for him. Soon after we brought over meals, my younger sister and I started walking his small, white, fluffy dog and invited him over for dinner as often as our mom would let us. He became more like a grandfather than a neighbor. One day, my friends and I were outside playing soccer on our small street. It was sunny and warm outside. Life was good. I could feel the vivacity of youth pulsing through my veins as I ran around. As of on its own, the ball rolled into @ORGANIZATION2's yard. We all hesitated when we saw his door open. He looked pestered and quite upset as he slowly bent down to pick up our ball. I winced, knowing I'd hear about this later from my parents. Then the unexpected happened, @PERSON1 started laughing. The kind of laugh where a person might be considered crazy for being that happy. The kind of laugh where tears run down a person's face. Not knowing what to do, my friends and I started giggling to ourselves. @PERSON1 threw us the ball and went back inside. His laugh was a clear signal, @ORGANIZATION2's grieving and unhappy soul had been relieved. From then on, laughter has meant a great deal to me. Laughing can direct you straight to a person's soul. It can be the connection between people. Without laughter, life can seem dull. Once it is brought into your life, it has the powers to heal and restart. That is exactly what it did for @ORGANIZATION2. Through laughter, he got his life back." 25 20 45 5 5 5 5 5 5 4 4 4 4 4 4 +21509 8 "So one day I was at home babysitting my little brother. It was a super boring day. So go check my email, and I get an email from my boyfriend. I got excited to talk to him becuase I got my phone taken away. I open it, and it was a break up email. It was so shocking. I wanted to cry. So I called my mom on the home phone, and asked if my best friend @PERSON1 could come over. My mom said yes. I called my best friend @PERSON1 and tolled her what had happened, and asked her to come over. By this time I was crying my eyes out. @PERSON1 said yes to comeing over! @PERSON1 is my best friend in the whole world! She always knows what to do, and say when I'm upset. I was waiting for her for a long time. Her mom always takes forever when she out doing things. She finally gets to my house, and she gives me a big hug! We are always there for one a other. I have always been there when all of @CAPS1 boyfriends had dumped her so it felt nice for her to be for me this time. I haven't had as any boyfriends as she had. So we go to my room, and I'm still crying. I couldn't stop. It was like a river fellowing down my face. Being dumped really is a horriable feeling. He was the best boyfriend ever, so the he dmped me was very unlike him. @PERSON1 was just sitting there texting. I was think why are you just texting you should comforting me. I didn't want to say it so I didn't. So started to talk and we desided to go to the mall. Thats always a fun place to be. So we ask my mom. She just got home. She said no. I really didn't want to be home anywhere was better any home at that time. So we went back to my room, I was crying again. So @PERSON1 started to say bad things about my ex-boyfriend. I knew the things weren't true, but it was really really funny. We were both laughing really hard and I was starting to feel better! Yay @PERSON1 making up stupid ex-boyfriend jokes! Laughter is the best way to make everthing better!" 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21510 8 " The thought of seeing him and hearing his laugh never failed to make me smile. I was beginning to accept the fact that this was an urge I couldn't fight anymore. His sense of humor was the best I had encountered and it made my heart run wild. To me, the best piece of a relationship is learning about one another and exploring the little things that make that person who they are. A trait I always search for is someones humor and when I can easily find it, I thrive on it. My story takes place nearly a year ago, while my freshmen school year was coming to an end. I had a suitcase of new memories I planned to carry with with me, but one more was still to be added. I strolled into art class merely @NUM1 seconds late on a particularly average day. The musty smell of rain and old paint settled in the air, something I had come accustom to. Instinct told me to take my seat, so with my headphones blocking the rest of the world out, I did. I paused my music to allow my surroundings to come into focus. A voice with a highly sarcastic tone came from in front of me. ""@CAPS1 to go! You're late."" @CAPS2 the teacher had moved all of our seats, I couldn't help but to laugh at myself as well. However, my seat remained unchanged, the only new aspect was the people sitting around me. I greeted the familiar faces with a smile as class began. The teacher went on about art related topics that I was far beyond, so by habit I vaguely payed any attention. I was far more focused on the person sitting in front of me. I had never talked to this boy but there was something very intriguing about him. We barley said a few words on that day of class. As the next day approached, I continued my usual pattern of entering the room and sitting in the same place. It had slipped my mind that a stranger was going to sit in front of me. He turned into the room took his seat. @CAPS2 what I had forgotten made me excited. Today was a free work day, a time to be social and work at our own pace. Perfect opportunity for me to learn something not related to art. I casually introduced myself, trying to fit personality into my words. His introduction was far less enthusiastic. Him being uninterested made me thrive to try harder. I began to be myself and act as if I had known him for years, even though his name was brand new to me. It was then I had caught his interest and the conversations started flowing. By the end of that day I hadn't finished any of the work I was supposed to have, but I couldn't bring myself to care. I had just met such an alluring new person. Each day went on similarly but I had taught myself a good balance of work and talk. I couldn't get enough of this person I had just let into my life. Everything he said interested me and each word pulled me in. I'm positive everyone in the room knew of how funny I found him because of how often my laughter filled the room. It didn't take long for me to become very attached to him and each hysterical thing he said. After a couple weeks, the hour of class wasn't enough for us, and he made the decision to give me a call. I intrigued him as well. So our time spent talking didn't stop at the end of the school day but spilled over into our phone conversations. More time passed and it became a usual thing to talk with him often. I no longer needed to act as if I had known him for years. It was well over a month and a half into our relationship when comfort was starting to set in for me. Although, along with familiarity came a sense of question. I was beginning to very well open up to him but was not getting the same in return. I would tell him something of my past and he would make a joke of it; I would explain an opinion of mine and he would pretend to have the same. I had never laughed so much in such a short amount of days, but it was coming time to feel more then pretend hysteria. I wanted to be able to tell him personal things, but get something from him too. I began to realize I was digging deep into shallow waters. The amount of laughter in this relationship of mine was clouding my judgment of the person underneath the humor. I couldn't connect with him on anything more then simple things. I still wished to have him be apart of my life, to still enjoy his company, but I had no need to dig deeper. It was time for me find new waters to swim in." 23 20 43 5 5 5 5 5 4 4 4 4 4 4 4 +21511 8 " One day on a stormy night i had gone to the wood shed to get some wood. The wind was thrashing the trees and all of the coyotes in the distance were barking to the moon. I was taking one piece at at time trying to make sure that the pile would not fall on me. As I watched my step i lost my footing on a small cylindrical log about a foot long and hit my head. My brother came out to find out what was taking me so long and arrived to my body unconscious. He took me into the shop which is connected to the woodshed out of the cold and turned on the furnace to keep me warm. In doing so he accidentally locked the door from the outside which locked him and me in the shop. As I woke up from my faint sleep with a splitting headache all i could remember happening was the rain pounding against the side of the woodshed. @CAPS2 was sitting next to me with a sad look on his face and also some shock as well. He told me what had happened with the door getting locked and how we would never get out till morning. I looked around trying to find something to get the door off but couldn't find out what anything was. My parents could not hear us over the storm since they were asleep and we were helpless no matter what we tried. So instead of looking on the gloomy side we decided to make some stories and tell jokes to pass the time till it was morning again. As we made up a game called @CAPS1 we found that we had a lot of similar interests and also we laughed at the same jokes. as we laughed the time seemed to fly by as if we were in a time warp. after three hours it seemed that we were both getting hungry and i had a couple snacks in my pockets. so we sat by the furnace and ate and told jokes about our friends and our parents and the laughing kept us cheered up for another three hours. After a while we started to hear the storm start to leave the sky like a ghost leaving this world to the next life. We started making fun of different movies and they're actors and actresses. I started talking about how big @PERSON1's ears were and we both started cracking up with laughter uncontrollably he then came back to me with how big @ORGANIZATION1's lips were and i laughed so hard i couldn't breath. we looked through the holes in the shop to see the morning dew on the grass and birds chirping in trees and i knew it wouldn't be long before we were found. As we waited for our parents to come find us we looked at each other and said thank you. We both knew by saying that it wasn't meant for all the times I tried to get us out of the shop or for @CAPS2 pulling me into the shop, no it was for the time we spent together and laughed. It made us closer than we already were and it also gave us a memory of laughter that we spent together instead of a night of disaster and horror. We have cherished that memory ever since it happened even though we @MONTH1 fight over the most tiny inconsiderate things sometimes and make fun of each other, we know that deep down we do it out of love. " 20 17 37 4 4 4 4 4 4 4 4 4 4 3 3 +21512 8 "@PERSON1 The @CAPS1 @CAPS2 @CAPS3 out with buddies are some of the best @CAPS2 of my life if its an adventure or just a @CAPS1 time @CAPS3 out. I wen stergion fishing for the first time in my life with my buddy @PERSON2, i haven't known him vary long because i just moved to a new school so i just meet him and thought he was a pretty cool guy, he invited me to go fishing with him so i decided to give it a shot. We woke up after only sleeping two hours the night before because we were up all night messing around having a @CAPS1 time. The alarm went off at @TIME2 and we were dead tired, we got the boat ready and we were on our way to the @LOCATION1 river, we go there and unloaded the boat in the river it was by far the coldest i have been and not sure if i was going to have fun because i was wet cold and tired finally the sun came out and it started warming up and we were out on the water by @TIME1 and had the polls ready. We drove the boat to the spot were we were going to fish everyone was saying we are dumb for going to that spot because it was no @CAPS1 but my friends dad was one of the best fisherman i have met so i just went with the flow they taught me a few pointers and before i knew it we were catching fish having a @CAPS1 'ol time. By about the middle of the day it was lunch time but no one really wanted to eat because we were catching so many fish so we waited a while and finally started lunch, talking about all the fish we have caught and all the fun we have had. as the day went on and the sun got lower and lower a long with the tempeture we caught a bunch more fish and it was about time to get off the water so we all limited out and went back to the dock to load the boat back on the trailer and head back home, on the way home all we could talk about was fishing that day and how much fun it was and how many fish we caught." 13 15 28 3 3 3 3 3 2 3 3 3 4 3 3 +21513 8 " Laughter @CAPS1 is like a drug that works better than any other painkiller, or anti-depressant out there. It makes angry people happy, and happy people ecstatic. One of the best ways and more common ways to have a good laugh is by watching a funny movie. Any time I'm asked @CAPS10's your favorite comedy I say ""@CAPS2 with @PERSON1"". I remember the first time I watched a @PERSON1 movie. I was about @NUM1 years young; I was in second grade, it was towards the end of the school year, and I couldn't wait to get out for the @DATE1 and just have fun. It was any ordinary boring day @CAPS7 school and I remember walking home hoping there would be something fun to do when I got home. I walked in the door to see my brother watching @CAPS3, I asked him @CAPS10 he was watching but he just ignored me so I went to my room to do homework. I finished my homework and walked into the living room and plopped down on the couch next to my brother, I asked @CAPS10 he was watching a second time, he let out an annoyed sigh and said some movie called ""@CAPS4 @CAPS5"" was about to start. Within the first five minutes we were already @CAPS1, not just giggling or slightly chuckling, tears were rolling down our faces from all the @CAPS1. I remember saying to my brother ""@CAPS6 is the funniest movie I've ever seen!"" @CAPS7 the end of the movie my brother and I couldn't stop quoting the movie, every @NUM2 seconds we'd quote it, it was non stop laughter. We sat there on the couch patiently waiting to see @CAPS10 was on next wishing and hoping it was another movie as incredible as the one we just watched, and sure enough after the commercial break we learned that it was a @PERSON1 marathon, and on next was ""@CAPS8 @CAPS9"". The movie started out just as funny as the last one, with @PERSON1 doing something completely idiotic, yet absolutely hilarious, like growling @CAPS7 some dogs over a loudspeaker. We couldn't get enough of @CAPS6 guy, my brother was rolling on the floor @CAPS1 and crying, and I was still watching waiting to see @CAPS10 happened next. About half way through the movie my mom got home from work, she walked in to see my brother and I in hysterics, she said ""@CAPS10's so funny?"" We just pointed @CAPS7 the @CAPS3 right as @PERSON1 started rolling down a hill. Soon enough our mom was watching it too, @CAPS1 just as hard as we were. I was having a great time, a genuinely great time with my family, @CAPS10 more could I ask for? How about another @PERSON1 movie? On next was a movie called ""@CAPS12 @CAPS13 @CAPS14"", completely ridiculous, and completely hilarious, @CAPS10's funnier than an overweight guy trying to be a @CAPS14? We continued to watch the movie until dinner time, we inhaled our food as fast as we could and then raced back to the couch to continue watching. When it was time for bed I remember staying up late reciting quotes from the movie in our bunk beds until our mom came in and told us to be quiet. I don't know how we slept @CAPS7 all after @CAPS1 all night. The movies left us speechless, we had never seen @CAPS2 funnier, they made us laugh, they made us cry, they made our stomachs ache, and through it all it brought my brother and I closer. To @CAPS6 day my brother and I can sit down and watch one of those movies and laugh and remember all the times we have watched them before and all the laughs we shared, I swear half of my childhood consisted of @CAPS1, and @PERCENT1 of that @CAPS1 came from those movies. The movies helped me to develop a funny personality, they shaped @CAPS10 I think is humorous, and they make me realize that after sharing something so funny with someone I love, that laughter is an important aspect in our lives, without it life would be plain and dull like a meaningless blob of clay. Have you ever gone a day without @CAPS1? If so you know how long and dull it can get without having something that brings a smile to your face there. Laughter brings people together, it brings out the best in us, when you're mad or upset the best way to cure your anger or frustration is by having a good laugh. " 18 19 37 4 4 4 4 4 3 5 4 5 4 4 3 +21514 8 " I think laughter should be a huge part in everyoneas life. For examlpe; laughter has brought my mother and I closer than we have ever been before. One time we were sitting in her camper and we had not been with each other for a whole month so we just let everything out, and laughing was one of the things. We were laughing about fake teeth, we laughed so hard that I made my mom tinkle her pants. We talked about fake teeth for about an hour. I think laughing makes everyone feel better about themselves, it does me. Laughing is a good way to show someone that you know how to have fun and it's not a bad thing. For someone to know how to laugh and to have fun is a good way to start a friendship or even a relationship. Another example is; @CAPS1 I'm with all of my friends I can never stop laughing, and I love it because I'm not sad. @CAPS1 I was a little girl my family and I went to disneyland and it was the beast time of my life there was not one moment @CAPS1 I was not laughing with all of them. One thing I don't understand is how someone couldn't be laughing or smiling at least @CAPS1 someone says or does something funny. Well back to my story of my mother and I, We were all tired and had a long day and fake teeth just made us all laugh, and laugh it was the best time I think I have ever ahd with my mother. I have always said to everyone I know ""live life while you can you don't know how long you'll have it."" I think that those words are very true and while your living life, laugh. My grandfather is pretty funny to @CAPS1 he is in a good mood he is always making everyone around him laugh. One time he had seen this commercial and it was a plastic grandpa singing ""I'm not your daddy I'm your grandpa"" and it said that maybe four times, and ever since he heard that he sings it all over the house. In conclusion laughing is the best way to feel better about anything. So @CAPS1 your blue just think about something that will always make you laugh and laugh about it." 15 19 34 3 3 3 3 3 3 4 3 4 4 4 4 +21515 8 " Well since you guys want to hear a funny story, I got a couple but I'm only going to tell you about one of them. This one starts in my @DATE1. I was living out in @LOCATION1 and it gets pretty hot in the @DATE1. I lived there a couple summers @CAPS1 I know how hot it gets. This @DATE1 I wanted to get a pool for the fun and to stay cool. But I didn't want a pool that just I could hangout in. I wanted to get a really nice pool for everyone. I already knew that those kind costed a bunch of money but, I wanted to get a big pool @CAPS1 I could have all my friends come over , hangout , swim and play my favorite game mar-co polo.I went to go talk to my dad about my pool idea. He said ""that he would love to get a pool for the @DATE1"" cause he would come in and swim with me and hangout but, like I was saying @CAPS2 are expensive and @NUM1 exactly what my dad said. I told him that I would pay for half of what ever it costed. My dad finally agreed with me @CAPS1 we go down to walmart and look at there pools. There was some cheap small ones and there was a lot of huge expensive ones but, I was looking for one right in the middle, not to small , and not to much money. I found one for eight hundred that was perfect for what I wanted. I went to go asked my dad if I could get this one. He said ""that if I pay for four hundred of it like the original deal that i could get it"". Like I told him @NUM1 what I said I was going to do and @NUM1 what i needed to do"". We finally came to an agreement that we had to get the money first , @CAPS1 I went back to my house in @LOCATION1 to make a plan to get four hundred dollars, my dad was doing the same, but he has a job @CAPS1 its not that hard for him cause he gets paid. @NUM4 a lot harder on me cause I have no job. @CAPS1 I decided to fix my bike and go looking around for any jobs available. I went door to door to find people that needed any help around there house. I found a couple of people who needed some stuff done and @CAPS2 both agreed to pay me fifty bucks, @CAPS1 out of each I could get a hundred right off the bat.I had to haul a bunch of old tree branches and garbage away. When I was done I put that money in my pool savings for later. I also went to this place called @ORGANIZATION1 and I was good friends with one of the kids that was related to them. I talked to him about him asking them if I could do any work for a little cash. @CAPS2 said that ""I could go to every tree and put a pink tag on him and @CAPS2 agreed to give me eighty five bucks. I took there deal but, my bike can't go threw the mud where the trees were planted. My friend said that ""I could barrow his little fifty dirt bike and take it to put those tags on the trees"". @CAPS1 I borrowed it and got that eighty five bucks. I gave my friend ten cause he let me borrow his dirt bike.I'm almost half way to my four hundred. When I was thinking, I got @CAPS1 caught up in buying this pool that I forgot my birthday was coming up tomorrow. I told my dad that I wanted that pool for my birthday and @NUM5 like ""yeah I already knew that @CAPS1 I already bought it"". I was @CAPS1 happy that I got my pool. Now I have like two hundred bucks to spend and I didn't know what to buy. @CAPS1 I bought a bunch of food and stuff for the pool party. On my birthday I invited a bunch of friends over to my house. We all got in the pool even the parents.We decided to play mar-co polo. Cause I wanted to play. My friend @PERSON1@NUM6 dad who is a huge dude was playing. I said mar-co and he lunged at me. I moved but he kept going, he went straight threw my pools wall and everyone fell out of the pool. i was laughing @CAPS1 hard but I was also upset cause my pool is already broken. Luckily @PERSON1@NUM6 dad is rich, @CAPS1 he bought me another pool. He seen how crushed I was on my birthday and because he knew I wanted that pool. He also bought me a new bike and it was sick. During the @DATE1 I had a blast in my pool and if I wasn't in my pool, I was on my new bike." 15 18 36 36 3 3 3 3 3 3 4 4 4 3 4 3 4 4 4 3 4 3 +21516 8 "@CAPS4- @CAPS1 Laughter @CAPS2 a @CAPS3 I cannot imagine where my life would be right now with out laughter, who my friends would be, or @CAPS1 I would get through my day. Laughter is what created what has been one of the most important relationships in my life thus far. Laughter is what unifies us, it gives each of us something in common despite our differences. This has been proven true in my life, especially with one person, @CAPS4. I met @CAPS4 a year ago in a class of mine, we never really talked much or knew each other until that one day when she @CAPS2 me laugh. It was juts another day in class doing a lab when I see this short ginger hair girl twitching on a bar stole, I of course immediately begin to laugh. This girl was twitching around on a stole making awkward hand gestures and laughing, making me crack up, and not a single other person finds this funny, they are just giving us the "you girls are insane" stare. Others inquire what she is doing, @CAPS4 too hysterical to form actual words, I say "hello dudes she is a dinosaur like from @CAPS7 the @CAPS8, 'I have a bid head and little arms.... I don't think this plan was though out very well....'" @CAPS4 response with a point to me and a head shake, I knew this was the beginning a beautiful, laughter filled, @CAPS3. There are countless times where laughter was been the center piece of my time with @CAPS4. When we are hanging out it seems that we effortlessly humor not only ourselves but others even the complete stranger. The best example I can give is when we were at @ORGANIZATION1, a hotel with an in door water park, for my birthday with two of our best friends. Our time there had already been full of laughs, pictures and a good time, but when we were all dressed up looking your something to do was the high light of the @TIME1. Two nights of no sleep, loads of sugar, and energy drinks @CAPS2 our little foursome more insane than usual, giving @CAPS4 the courage to saunter up to very attractive complete stranger and get him to say hello to the birthday girl, me. @CAPS4 and I start to bust a move and proceed to fall to the ground in laughter, at this point most people would think these @NUM1 girls are strange I am leaving now, but this guy was entertained by our laughter even he joined in on the laughter. Perhaps the best memory of @CAPS4's contagious laughter was when we went to see @CAPS1 to @CAPS14 your @CAPS15, believe me when I say this night could have easily down hill very quickly. Basically @CAPS4 was yelling at the movie, cracking, jokes, texting, making us laugh, so all the things that get you kicked out of a movie and make the people around you angry. But for some reason the people around us ate up her humor and found it hilarious, they were laughing along with us. It was one of the best nights at the movies I have ever had, I have never been on such an adventure. They way laughter has impacted my life is by giving me this amazing best friends who is crazy and humorous. @CAPS4 is one of those people who makes you realize that laughter is what unifies us and is something to do. So go ahead, act like your @NUM2 even if your @NUM3, you never know who you @MONTH1 make laugh and what friends you could make." 17 18 35 4 4 4 4 3 3 4 4 4 4 4 3 +21517 8 " My sister @PERSON3 and my niece @PERSON2 had just came down from @LOCATION2. It had been three years since I last seen them. When my brother @PERSON1, my sister @CAPS1, and I went over to my dads for the weekend we all decided we would go camping over by the beach. That morning we all woke up early and packed everything in the car. My dad and brother did most of the work while us girls got ready. After everything was packed we were off to @LOCATION1. @LOCATION1 is a small little town surrounded by mountains with absolutely nothing but a couple of houses, a park, a river, and forests all around you. My dad built a small one roomed cabin there a few summers back. It had a wood stove in one corner, bunk beds fulfilling almost half the cabin, and a counter that was always messy with all the food and supplies that we would bring. The whole ride over we were all messing with each other giving one another horse bits, the claw, and pulling on other peoples seat belts so that it would tighten across there chest. We were also telling @PERSON3 funny stories about one another trying to embarrass them. When we got on the gravel road my dad started making the car slide back and fourth scarring @CAPS1. While everyone else was laughing about it she was screaming. That @TIME1 we all decided to go to bed early so we could wake up and get ready to go to the beach before noon. @CAPS1 was the only one actually wanting to go to sleep. Everyone but @CAPS1 was trying to make fun out of the rest of the @TIME1. While everyone else was taking @CAPS1 was yelling at them to go to sleep and be quite. @PERSON3 and @PERSON1 started yelling random stuff just to make her mad. When everything was silent one of them would yell something like, its not to late to sleep like a baby @CAPS5 @CAPS6. @CAPS1 would start yelling while everyone else just busted up laughing. That @TIME1 was one of the funnest nights there. Everything was hilarious that @TIME1 but when look at it now it wasn't all that funny it was just stupid. I believe we made the most fun out of the @TIME1 as we possibly could. It has become one of my most vivid memories. We all look back at it and laugh." 16 16 32 3 3 4 4 4 3 3 3 3 3 4 3 +21518 8 " Laughter is almost always a good thing, mainly because when people laugh it means their happy or something is funny. It can be very beneficial at times, for instance when someone is not feeling to happy people always try to make them laugh to make them feel better. When I am faced with someone I don't know usually my first instinct is to try to and them laugh. laughter has always been a source of enjoyment and it still is today, We have certain advantages now than we had one hundred years ago. For instance now @CAPS2 we want to laugh we need only to pick up remote and turn on the @CAPS1, we can even choose what we want to laugh at and we even have the ability to go and search for something to laugh at on the internet. Sometimes people go to comedy clubs to go and see a stand up comedians. Comedy and laughter go hand in hand, from the very first time someone laughed comedy was born and will be around forever unless being happy becomes outlawed. I remember that when ever my parents would have a new friend over then only thing I would hear when they were at my house was then sound of both my parents and our new guest laughing. Soon the new guest was over much more often. Laughing is also a very important part of any relationship because it makes the person whom is making the other laugh more of a pleasure to be around and thus makes them sometimes like them more, @CAPS2 you have ever noticed men usually try to make the women laugh in order to try to get that member of the opposite sex to like them. This and the accompanying of physical attraction help start the relationship. I have herd but am not certain that laughter can also be therapeutic, sometimes I like to laugh when I'm not felling so good so it @MONTH1 possibly be therapeutic for me. @CAPS2 this is so than people have been going through therapy for many years. Sometimes people laugh even @CAPS2 the subject is not funny they only do this because otherwise the situation would be somewhat awkward and one might fell kind of out of place. Everyone has a different laugh some are louder than others and some have a type of rhythm to them, my mother has a very loud and high pitched laugh and my grandpa has a low and scratchy laugh, no matter what your laugh is like it can help you feel better it can also help you become closer to someone. laughing is just one of life's greatest pleasures and we should all take a chance to just sit and laugh." 19 20 40 40 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 +21519 8 "Library @CAPS1 @CAPS2 past @DATE1 instead of sitting at home doing nothing, I decided to get a volunteer job at the library. Some @MONTH1 say that a library is not a funny place but to my best friend @PERSON1 and I it was full of numerous and humerous adventures. There was the time with the creepy, stalker guy whom we like to call @CAPS3 @CAPS4, the time that we decided to be super spies, and the different people who decided that we were to loud and weren't to nice about telling us. We worked hard in that library but who says you can't laugh a little on the job? @CAPS3 @CAPS4, by definition it means he is some one who likes to @CAPS3, but @CAPS2 guy was just to funny. One day @PERSON1 and I had just got done working and we were waiting for her grandma to pick us up, when some strange guy sits down and starts staring at @ORGANIZATION1 like he knew her. He then preceded to ask us countless questions like, ""@CAPS6 your names?"" and ""@CAPS7 you guys have boyfriends?"". Being me I didn't say a word and let @PERSON1 talk the whole time. He also kept telling us how beautiful we were, which made us laugh even harder because @CAPS2 situation just kept getting weirder and weirder. Since his nickname is @CAPS3 @CAPS4 you can only guess @CAPS6 he asked us next. Oh yes he asked us if we wanted to start a @CAPS3 line in the middle of the library. Thankfully @PERSON1's grandma showed up just in time to save us and we only saw the @CAPS3 @CAPS4 once or twice after that because he moved away shortly after @CAPS2 encounter. Being a spy was one of the most hardest and funniest things that @PERSON1 and I ever did at the library. It all started when we noticed @CAPS2 cute guy sitting all by himself at a table that we could clearly see through some book shelves not that far away. Being the adventurous type I talked @PERSON1 into letting me use her iPhone to take pictures of @CAPS2 guy without him knowing. Now some people would think that that was kind of like a stalker, I just saw as a chance to brush up on my spy skills. After successfully getting a couple of pictures undetected, I decided to get just one more before we went back to the other side of the library to see @CAPS6 we had. I was just about to take the picture when I locked eyes with the guy who was not supposed to see me. We then had to abort the mission and crawl all the way to the other side of the library so he wasn't able to see us again, so that he couldn't confront us about why we were taking pictures of him. The funny thing is the pictures were not that good and that just shows how bad of a spy we actually were. Normally libraries are quiet, right? Well @PERSON1 and I had a little problem with people wanting the library to be to quiet. On one such occasion a nice looking middle aged women was doing some homework at a table not to far away form where we were sitting. We were watching some videos on @ORGANIZATION1's iPhone and we had the speakers on low. @CAPS2 lady told us very rudely that she wanted is to move somewhere else if we were going to have the volume up because she needed to get her work done. Not one please or thank you were said as we walked away. On a similar occasion an elderly lady who was sitting a few book shelves away form us also asked us to be quiet so that she could finish her book. @CAPS2 time the elderly lady used her manners but she had a very rude tone of voice. On both of these occasions @PERSON1 and I started laughing shortly afterward. @CAPS2 just goes to show how ""nice"" people can be when they want to get something done. All and all that @DATE1 was one of the most funniest summers I have ever had. Whether we were getting talked to by some guy who wanted to start a @CAPS3 line or getting caught trying to spy on a cute guy or even getting reprimanded by not so nice people, we could always find @CAPS1 somewhere. Not many people could say that the library was ever a place where they laughed so much they nearly peed there pants, but @PERSON1 and I can." 20 17 37 4 4 4 4 4 4 4 4 4 4 3 3 +21521 8 " Coleslaw""@CAPS1's get out of here before they wake up @CAPS2."" @PERSON2 said, standing up with her blanket wrapped around her. I did the same, brushing grass of my pillow. Disappointment was rushing over me, I actually wanted to see the meteor shower. ""@CAPS3 coming @PERSON5?"" I asked, looking at my old friend in a new light. ""@CAPS4!"" @CAPS14 said and gave me a look of pure anger. All of us were supposed to be in bed at ten, it was @NUM1 am. It was week five at @CAPS5 @CAPS6. We had made new friends and met new people. @PERSON2 and I were @CAPS15 to help disabled children and @PERSON5 was @CAPS15 to hit on all of the cute guys the worked up @CAPS15 all @DATE1. As @PERSON2 and I walked @CAPS9 to @LOCATION1's camper to return her sleeping bags, I couldn't help @CAPS16 feel mad. That was the third time @PERSON5 had been rude to me @DATE2 and i didn't understand what her problem was. It could have been jealousy, @CAPS16 @PERSON5 didn't like @PERSON3. My mind was going a thousand miles a minute and I knew it was going to be a @TIME1. We reached @LOCATION1's trailer and opened the squeaky door. @CAPS15 @CAPS14 was, laying on the couch in her pajamas. Her daughter, @PERSON1, safely tucked away in bed. ""@CAPS7 girls!"" @CAPS14 exclaimed, ""@CAPS8's @PERSON5?"" ""@CAPS9 on the field watching the shower with her real friends"" I said, making air quotations with my fingers. @PERSON2 rolled her eyes and re gripped her pillow and blankets. ""@CAPS10! @PERSON4, can we sleep in here tonight?"" ""@CAPS11!"" @PERSON4 said, ""@CAPS12 in and lock the door behind @CAPS3."" We walked in to the trailer and locked the door. As we plopped down on the beds @PERSON4 made some chocolate milk. ""@CAPS13, ladies!"" @PERSON4 started out, handing us each a glass full to the brim with delicious milk, ""I want to know the good gossip! Why is everyone mad at @ORGANIZATION1?"" ""@CAPS14 is mad at me because your daughter likes me more."" @PERSON2 said, shrugging and taking a long draw of her drink. ""@CAPS15 is that."" I said, ""@CAPS16 the other part is a long story. So yesterday I was talking to her about @PERSON3. @CAPS3 know cute core-guy @PERSON3?"" they nodded, ""@CAPS17 I told her about a conversation @CAPS20 and I had @CAPS8 I told a @CAPS18 stupid joke and out of pity @CAPS20 laughed and said 'that's cool' I was @CAPS18 excited and @CAPS14 was laughing at me because i was jumping up and down."" ""That doesn't sound mean."" @PERSON2 stated. ""@CAPS19! @CAPS14 then went on to tell me that @PERSON3 doesn't, and never will, like me. @CAPS14 said that @CAPS20 just thinks am stupid and feels sorry for me."" I was almost shouting, ""I mean out loud I agreed with her @CAPS16 in my head i was scream furiously @CAPS20 loves me! We are gonna get married someday!! I decoded his words with my heart!!"" I slammed my palm against my chest and pretended to cry. Then I couldn't help @CAPS16 laugh. All three of us were laughing hysterically at my faked passion. ""@CAPS3 should right skits for @CAPS22!"" @PERSON4 said, gasping between fits of laughter. Suddenly @PERSON2 stopped laughing and said, ""I @CAPS18 want some coleslaw! Random @CAPS23!"" ""I could go for some coleslaw right about now."" @PERSON4 shrugged. ""I could go for some @PERSON3-slaw right about now!"" I said, smiling. Instantly new laughter erupted from everyone. I thought about how much humor this story would lose every time i retold it in the future. Some how I knew that I couldn't do it the justice it deserved. The laughter started to settle. We sipped our milk quietly, thinking. As we did i looked out the window to see @PERSON5 walking our way from across the field. With a groan I got up to unlock the door. ""@CAPS24 it!"" @PERSON4 said, ""and turn off the light. Anyone who hate my @NUM2 year old daughter doesn't need to be here."" I flicked out the light and made my way @CAPS9 to the bed. @PERSON5 got to the door and tried the handle. When @CAPS14 found that it was locked @CAPS14 softly knocked on the door. Then @CAPS14 waited. We stuck our faces in pillows to muffle our uncontrollably laughing. Giving up, @CAPS14 walked away through the gravel. We all burst out laughing, unable to control ourselves. Looking at the clock, @PERSON4 gasped, it was @NUM2 in the morning and @CAPS5 would be starting in @NUM4 hours. It was time to get some sleep. @PERSON4 went @CAPS9 to her bed while @PERSON2 and I said our good-nights and rolled over. The trailer went quiet. Laying @CAPS15 I thought about the happiness created by us. I knew that @ORGANIZATION1 would be @CAPS25. @CAPS16 her being mad was worth what I learned. That @TIME1 I found out that if your happiness makes someone mad, that's @CAPS15 fault. Be happy and enjoy life! Anger is bred from the joy of others. So why not be @CAPS26? It beats the alternative, doesn't it?" 18 20 38 3 3 4 4 4 4 4 4 4 4 4 4 +21522 8 " It was the middle of @DATE1 and I was ten, bored and constantly sleeping. Even at ten I still played with toys, and that was the highlight of most days. All of my friends from fifth grade were on vacation surfing in @LOCATION1, or roasting marshmallows over the roaring fire with their families at camp, while I was stuck at home with nothing to do. That was about to be the most boring @DATE1 break anyone has ever had until one day in @DATE3. The day I met @PERSON1 was the day I gained my best friend. I met @PERSON1 because of my brother and his sister, they had had crushes on each other and wanted to start dating. That was fine with our parents but, that also meant that her brother @PERSON1, and I, would have to tag along also. I remember the first day being so uncomfortable and stiff. I could tell he didn't like me, he only chuckled when I would crack a joke here an there. As time went on though, I must have grew on him, because a few days later he was laughing at practically every joke I made. Those jokes had eventually led up to a friendship that would last a lifetime. Which really started when his birthday had come up in late @DATE2. He was having a small overnight birthday party which included me, his family, and his good friend @CAPS1. @CAPS1 couldn't stay overnight, so it was just me and @PERSON1. I didn't get much sleep at all that night, but that was fine with me because why i hadn't was a good enough reason not to. We spent half the night talking, and laughing, and really just getting to know each other better. Anyone with eyes could see that we were becoming close friends. Even after our siblings separated from each other we would still hang out as just us two. The real test of our friendship took place shortly after his birthday when @PERSON1, and his family moved to @LOCATION2, where they were from. After they moved I still had contact with him and we talked to each other frequently. They had been gone for about a year when I got a call from @PERSON1, telling me that they were going to move back. I had so many questions that needed to be answered, but he had a really bad connection and the call was dropped quickly after I heard him say that. With many things left unsaid my overall emotion was obviously happy, but also slightly confused. Was he really coming back? That was the question that kept me wondering. It was days after that I had gotten another call from him, and this time we actually had a chance to talk. It was true, he was coming back, but as it turns out not forever. @PERSON1 came back for about another solid @NUM1 years, having fun and being the best of friends, but his parents already wanted to move back to @LOCATION2 again. This time was different because he wasn't coming back. He was going to stay there, without a thought of going back. @PERSON1 had left my life as quickly as he entered. He's halfway across the country now, with new friends and a renewed life, probably laughing at a new friend's jokes." 20 18 40 40 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 +21525 8 " Laughter can be a good think and sometimes it could be a sad thing. When me and my family went to @LOCATION3 we went for my two little brothers appointment. We left a little early so we could have some vacation time. When we arrived to where were going we got onto a fairy to go to a island up in @LOCATION1. On are way there my sister @PERSON1 was acting like she was on the titanic she had the dress and everything. My brothers and dad and i just couldn't stop laughing at her because she is eighteen. @CAPS5 while we stayed down there we were at are uncles house and they have a little dog and she was running from it and she fell so hard and my family and i weren't trying to laugh at her but it's kinda hard. After we went to lunch with are uncle and aunt we went to there military base @PERSON1 would not keep here hands off of the jets. What my family and i thought was so funny is @PERSON1 is eighteen and the rest of us are fourteen or younger so i guess we just like to pick on @LOCATION2. When we went to @LOCATION3 it was the night before the boy's appointment and are family and us went to the under ground tour of @LOCATION3. Well after that was all done we went to the gift shop that come's up at the end of the tour well @PERSON1 buys a pin that said something no so good and after she bought it are @CAPS4 had seen it she threw it away because she doesn't like things like that but @PERSON1 pulled out of the trash. After that all of us got hungry so we went to this place where they sale some really @CAPS1 tacos and we got a order and we sat down well we also got some sodas and my other sister and i took a bite of are food and took a drink of are food @CAPS5 @PERSON1 says ""oh my gosh there are two really hot guys right there"" @CAPS5 sierra take the biggest gulp of tapattao and i don't remember what @PERSON1 said but she said something and it made me and sierra bust up laughing and we spit are food all over @LOCATION2 she gets up and screams. So of course are parents and family don't want to be there anymore because we embarrassed them so we all started to walk up to the car and right when are uncle @PERSON3 yelled @PERSON1 don't fall because thins is where i fell all you hear is are sister falling behind us is was so funny. What made it even more funny was that me and sierra just started to stop laughing and oh my goodness we were laughing the whole way to the car. Are whole way home @PERSON1 was mad at us because we were still laughing at her but we went to the beach she was over it. I think when we went to the beach that was the place where we started to bond a lot more because we were all playing no cell phones lots of picture rock climbing that was fun we left @PERSON1 and my brother @CAPS2 behind a couple of times @CAPS5 @PERSON2 tried to keep throwing me into the water so i would pushed him back @CAPS5 @PERSON2 threw a rock at @LOCATION2 and she fell over. When we were all taking a picture on a @CAPS1 log we were all shaking it and @PERSON1 sierra and i all fell of and i hurt my arm so we had to go to the doctors. A month after we got home are @CAPS4 took @PERSON1, sierra, aunt @PERSON4 and i to @CAPS3 on ice and that was probably the best time of my life. Are @CAPS4 says ""i don't know what's funnier @PERSON1 waving to the actors on the ice that cant see her in the dark or the show."" @CAPS5 are aunt said""yeah thank you @CAPS6 for making me sit next to her."" @CAPS5 when the cartoon toys story came on sierra and i said""look @PERSON1 what are you doing on the ice arena and she thought that we were talking about the pig and we were all no the little troll and @CAPS4 and aunt @PERSON4 just busted up laughing it was hilarious. When we went home we were all talking about it and laughing and she got mad because were always making fun of her because she is short but when it comes to us she thinks its so funny. There is a lot of laughter in our family and i cant wait to have more in it so that when i grow up I'll have a lot of good memories beside me and I'll still look back like i am now and I'll say wow what good times i have had since i grew up. When we are family laughs together i think that is the time when we actually communicate" 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21526 8 " I have a friend and her name is @PERSON1. I have known her since we were both in the fifth grade and in the same class. We have been friends for about five to six years now and it has been a great friendship. About two years ago for her fifteenth bithday party she invited a couple of her friends and I to spend the day over at her dads house in @LOCATION1. The plan was to hang out, have fun ,and pretty much do whatever we wanted to do because it was her birthday. There was a pool to swim in, and flatscreen television to watch movies, plenty of board games top go around, and quite a few people to have a conversation with. On the morning of @DATE1 we all loaded up the car around noon and made our way to her dads appartment in @LOCATION1. A short @NUM1 minutes later we had arrived at the appartment complex. We were all so excited to get the entire day to hang out, and have an amazing sleepover for @ORGANIZATION1's birthday. The second that the van had stopped all five of the people that were in the car including me unbuckled our seat belts as fast as we could and got up out of the seats to head to the house. Everybody had gotten there seatbelt unbuckled except for @CAPS4 friend @PERSON2. She had thought she heard, and felt the seatbelt button click to release it, but it never disengaged. While the seat belt was still on she attempted to jump up out of her seat but at the last second the seatbelt caught her by the waste and jerked her back down to her spot. She had layed there with her arms to her sides with her head all the way back against the head rest and moaned for a good ten seconds. This was one of the many events of laughter that had happened that day. A good two hours had gone by and the five of us were chillin' out in the living room and talking about what to do next. @PERSON1 had suggested ""@CAPS1 guys, we should all go to the pool for a couple of hours, swim, and tan."" The rest of us were all for it concidering the fact that it was probably one hundred degrees outside, the weather was super sunny, and clear, and because it was @CAPS2 @PERSON1 birthday, and she should be able to do whatever she wants. Then after the conversation we all got our swim suites on, grabbed our towls, and whatever else we needed for the pool, and headed out the door. Little did we know but the blacktop outside was boiling! Of course we were all barefoot because we were just going to go jump in the pool anyways. We all then took one step out on the blacktop, and all you could here was screaming, and yelling. ""@CAPS3 @CAPS4 @CAPS5! @CAPS4 feet are on fire!"" @PERSON2 remarked. We had all agreed with her at that very moment of time. Since the blacktop was outrageously hot @PERSON2 started running for the grass that was about two hundred feet away. I would say thirty seconds later @PERSON2 had finally reached the grass and all we heard was. ""@CAPS6!"" all of us looked up at @LOCATION2. She was laying flat on her back because the sprinklers had been on recently and she didnt know so her feet flew right out in front of her and landed on her back. We all started laughing but running at the same time. I helped @PERSON2 get up off of the ground and then we all continued our journey to the pool. I think you can guess that something else funny happened with @PERSON2." 20 19 40 40 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 +21529 8 " ""@CAPS1 @DATE1"" @CAPS2 my brother graduated @CAPS1 year it was a great time in our lives . We all were having fun daily because it was like my brother didn't have rules any more this made him a lot more fun to be around. At the beginning of the @DATE1 my brother and I were going fishing almost daily with our friends. It was a very fun for all of us. We all got to hang out and stay connected because there is nothing ells to do in our small town except for go to the lake and fish for bass. @CAPS2 he graduated everyone close to the family gave him gifts like money or presents. My mother however couldn't decide what she wanted to get him. @CAPS2 she saw us always going up to the lake to go bass fishing she had an idea, she would send my brother and a couple of his friends on a fishing trip. My brother was very excited to here her plan. They spent many hours searching for a place for him and his friends to travel to. They decided on going into the deserts of @LOCATION1 to a huge lake to camp at. I myself thought this was a very cool plan and i was happy for my brother. Little had I known my brother was planing on taking me with him. He told me his plans of who he would be taking a couple weeks before it was time to depart. I was so excited! My brother said we would be taking our friend @PERSON1 on the trip with us witch was cool because he is a fun person to be around. He was so so happy @CAPS2 we told him he was going because he loves bass fishing more than us. Immediately @PERSON1 ran out to the garage to get his camping and fishing gear ready for the trip as did we @CAPS2 we got home that night. Two weeks later we all departed for a two week trip to the deserts of eastern @ORGANIZATION1. The first day we were in eastern @ORGANIZATION1 before we even found the place we were going to stay at we went to a huge reservoir to go fishing. @PERSON1 almost caught a huge @NUM1 inch bass however his line on his fishing rod broke. My brother and I laughed at him and he was mad. We spent the first night on the side of the road in the near freezing dry @LOCATION1 air because we had accidentally gone a day early and our camp sight was occupied in the campground. We were unhappy about it at the time but now we look back on that night with great laughter. The next few days went by with much fun. We met some collage students from @ORGANIZATION1, they were very chill people to hang out with we all joined around the camp fire and told jokes. We laughed for probably a half an hour @CAPS2 one of the guys told us about some funny collage party things that had happened. @CAPS1 @DATE1 was a very interesting @DATE1 that was full of laughter and joy. " 20 18 38 4 4 4 4 4 4 3 3 4 3 4 4 +21530 8 " Laughter, one of the most joyous things there is to experience in this world. Everyone can relate to it and there's no one out there who would say that they don't enjoy laughing. It's human nature to want and to need to be connected to other people; we are social beings, and laughter is the best way to connect to other people. There is no negativity in laughing, unless that is if you are laughing at a rude comment, and in general, if people are laughing, they would say they're having a good time. People build relationships around experiences that they have with other people, for example dating. On a first date, it's to be expected, and an important factor, for the two people to be having fun and laughing. Other wise, when they separate from each other and are only left with their thoughts, their impression could make or break the relationship. That's why a first impression is so important. When the two people are reminiscing about the date that they just had, if they remember smiling and laughing, then they will most likely have a positive memory of their experience and want to hang out again. Think about any experience you have ever had with another person. If you remember the first time you met them, and how you felt afterward, the way you felt then, could tell you a lot about how the relationship went. Meeting new people, it's difficult, but you ask anyone about how to start a conversation with someone new, and they will usually tell you, ""make them laugh"". It's a universal term, anyone can do it. This past month, basketball season has started and I am playing on a whole different team then I did last year. Only half the girls on my team last year are still here, and I have had to make a connection with girls who are younger then me, and who I haven't yet gotten to know. I start to think about all the new girls, and who I have already made connections with and how I'm now good friends with most of them because of laughter. Everyday we get closer and closer because we find ways to laugh with each other out on the court. No matter how difficult the practice @MONTH1 get, you can never become to exhausted when someone is making you laugh. Laughter is needed in life to make it more livable. Think about it. If you could never laugh again, what would be fun about life? Image life if it were like detention all the time, never being able to just let loose, relax and have a good time. No one would want that. People would go insane, laughter calms people down and mellows them out. It helps create people's personalities and can affect others as well. Laughter is like a ripple in the water, it starts as just one single person, then expands out touching anyone near it. Laughing is contagious, like a @CAPS1 in mid @DATE1, and brings joy to you and the people you can touch. Laughter, it's the foundation of happiness." 25 21 46 5 5 5 5 5 5 5 4 5 4 4 4 +21531 8 " @LOCATION3 has always been my place of choice to travel to whenever my parents question me of where I would like to go during the @DATE1. The rolling green hills, stunning sunsets, and thrilling thunderstorms are certainly a large part for my reason to go, but the idea of seeing my @CAPS7's side of the family again overpowers all of my other reasons. The core of my @LOCATION3 family has always been my @CAPS1 @CAPS2; with her friendly smile, caring personality, and a sharp sense of humor, she makes friends and acquaintances wherever she goes. Yet, due to the fact that we live hundreds of miles apart, I'm only able to see @CAPS1 @CAPS2 three times each year: my family drives up to her house twice every @DATE1, and she drives down to my grandparent's house for a few weeks in the @DATE2. I cherish every moment I spend with her, especially when she accidentally makes a fool of herself and causes hysterics. A few summers ago, @CAPS1 @CAPS2, my @CAPS7, and I traveled up to @LOCATION2 to check out some of the town's antique and flower shops before dinner. We had spent a few hours driving around town, scoping out all of these shops to raid them of any gems that either @CAPS7 or @CAPS1 @CAPS2 must have for their already old-fashioned homes. I had lost interest after the first few hours; antique shopping was never a passion of mine, and I was ready to take the one hour trip back to @LOCATION1 to go swimming with my cousins. Once @CAPS7 and @CAPS1 @CAPS2 had spent most of their money on a couple of ""treasures"" a few hours later, we were exhausted and prepared to head home when we happened upon a pizza shop down the main street. Our mouths watered at the thought of eating a slice, but rather than going inside to eat, we ordered a pizza to take home and bake instead. In her white @ORGANIZATION2 pick-up, my @CAPS1 pulled into the shop's parking lot, leaving @CAPS7 and I inside while she grabbed the pizza. Upon her return a few minutes later, the aroma of the pizza wafted through the cab, making our mouths water and our desire to get home to grow exponentially. @CAPS1 @CAPS2 placed the pizza in the back seat, grabbed her coffee, and revved up the engine. We were all lost in our own thoughts about sneaking a slice of pizza when suddenly the front tires of the pick up dipped down and thumped onto the road. @CAPS1 @CAPS2 nearly dropped her hot coffee all over her lap, while @CAPS7 panicked and grabbed the handle on the door in reflex. We were all flabbergasted, stunned as little kids trying to grasp that the @ORGANIZATION1 didn't exist. Moments after the initial panic, we realized that @CAPS1 @CAPS2 had accidentally driven over the curb. We burst into laughter while poor @CAPS1 @CAPS2 had a red-rose face and an apologetic smile wider than the @ORGANIZATION3. She cautiously drove with the traffic, laughing hysterically with tears in her sea blue eyes along with @CAPS7 and I. Our hysteria episode lasted for a few minutes, in which time @CAPS1 @CAPS2 had pulled into a vacant parking lot; none of us wanted another unplanned adventure on the road. I wiped the tears from my eyes, trying to stifle the laughter and recompose myself. @CAPS7 was still giggling and wiping the mascara off her face. @CAPS1 @CAPS2 was doing the same, and then turned around to look at me. She locked her bright eyes with mine and smiled as sweetly as only she could, and we burst into more hysterics. After @CAPS28 next small hysterical episode was over, we were finally able to pull back onto the street with the rest of civilization. As @CAPS1 @CAPS2 pulled out cautiously, I burst out, ""@CAPS27 not to run over anymore curbs!"" @CAPS28 drew up another round of laughter. @CAPS1 @CAPS2 has always been there for me, through the laughter and the tears. Because we are family, we have a natural bond between each other. Yet without laughter, @CAPS28 bond would not be nearly as close and glued together as it currently is. Hundreds of miles of farmland and open road separates us. The occasional phone calls and e-mails are all we have to communicate between each other. My @CAPS1 is the most caring, humorous, and loving person I have ever encountered, and I unfortunately don't get to spend as much time with her as I would like. But every time I see her, I smile and think of the comical stories we have between each other. Without the humor and laughter we share, our bond would not be as close as it is, and we would both be clueless to our current world of joy." 23 27 50 50 4 4 4 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 +21532 8 " ""@CAPS1 days are diamonds and @CAPS1 days are stone,"" are the famous, melodic words of @LOCATION1. He was absolutely right and the day of @DATE1, was a very stony day. It began when I woke up late, having stayed up until eleven o'clock the night before in order to finish my homework. As I hurriedly pulled a sweater over my head, I ran downstairs and out the door, to school. Running under the dreary gray clouds, I suddenly remembered the geometry test that was scheduled for today. By my seventh period geometry class, the sleep deprivation was kicking in and my head was pounding. Of course, this had to be the day that @PERSON1 decided to cheat off my test. As his eyes swept over my paper for the third time, I sighed and stared pointedly at his own paper. I should have simply shifted in my seat so he could not see my test, but I wanted him to get the point. @PERSON2, however, seemed to think I was cheating off of @PERSON1. I took the reprimands silently and went to my locker. After collecting my belongings, I turned to go home. A loud ripping noise caught my attention and I realized, with a groan, that I had just torn my sweater on the corner of my locker. Without acknowledging the stares of my peers, I turned and ran out into the pouring rain. Once I had reached my quiet road, I could not contain myself. With my face turned towards the stony sky, I shouted until I my throat felt like sandpaper. I had never had any sort of emotional breakdown before and the feeling was strange and alien to me. I hoped that no one would ever see me like that, as I had transformed into a stranger, hurt and lost. Following my explosion, I trudged slowly home and entered the house to find my @NUM1-year-old sister, @PERSON3, begging me for macaroni and cheese. I sighed and put a pot of water on the stove. Maybe it was cruel fate or possibly just stupidity, but either way I ended up with half a pot of steaming water spilled down the front of my body. Granted, it was not very hot, as I had just put it on the stove, but all I could do was sit down on the cold kitchen floor, put my head in my hands, and cry. My sobs sounded like a frog croaking. I looked up suddenly, however, when I felt a small hand tapping my shoulder. ""@CAPS2?"" @PERSON3 asked tentavely. ""@CAPS3 did the dog say to the cat?"" I just stared at her with leaking eyes. ""@CAPS4 are a cat-astrophe,"" she answered herself. A small smile was set on her pink lips as she started giggling. Then I started giggling, too, which led to uncontrollable laughter. It was a ridiculously humorless joke, but the laughter felt like cold water running over the painful burns the day had forced upon me. There we sat, a giggling little girl and a messy, laughing teenager, sitting on their kitchen floor on a very grey day. One little joke, with just one fit of laughter, had transformed my entirely stoney day into a perfect little diamond." 25 25 50 5 5 5 5 5 5 5 5 5 5 5 5 +21533 8 " My dad and i went out to teach me how to drive after recently getting my permit. I was nervous in the beginning ofcourse, but quickly became comfortable behind the wheel. I drove all over town completeing some errands we had to do along the way. Now it was time to go through the car wash, my first time in a carwash with me in control. I didnt think a car wash would be difficult to achieve after driving all around town, but i was wrong. After having a hard time pulling up to the right spot so the wash could start i had to roll up all the windows and fold the side view mirrors. Before i could do all that the wash had started! As a hurricane of soap swirled around the car i rushed to fold the side view mirror and was succesful. Unfortunately due to my slow reaction times i could not also roll up my driver window as the soap came back around and enveloped me in white foam. My dad and i were all wet and the inside of the car got all cleaned even though that wasnt the plan at first. I finally rolled up my window looked at my dad. He looked back at me not saying anything, the car was silent. After our minds finally developed wat happened we broke out in laughter. We had not stoppped laughing through the whole car wash and after because of the rarity of that situation. All i could say after that was that people go there whole lives without having that type of car wash incident, so why did it have to happen to me!" 17 18 35 3 3 4 3 3 4 4 4 4 4 4 3 +21535 8 " You know when you're talking to a friend and they tell a hilarious story about that one time @DATE1 when they spilt soda all over the person next to them at the neighborhood barbecue, or they tripped in front of an entire classroom full of people on the first day of school? And then you think its so funny that you laugh so hard you cry? I remember days like those, you always tend to feel better when you laugh. When friends hang out laughter is usually involved. To be able to joke around with someone and be able to laugh you usually need to be comfortable to be able to find something funny. Laughter brings people together even on the worst days. Everyone has those awkward times when you're talking to someone who you aren't having the best of relationship with but yet you have to make due and try to make it less awkward. There's also the random joke when someones upset to try to lighten the mood. When you get someone to laugh its so much less awkward because then you know they are in a somewhat of a good mood and its easier to talk with less tension. I've had plenty of days when I've gotten into a fight with a friend and I've had to talk to them for class or they insisted on talking. It's just like they just keep talking or just listening to you and you don't know what they are thinking or if they are judging you as you speak. But you know they aren't when you can get them to laugh because then they aren't really thinking badly of you. It also helps the tension. There's also the time when one of your friends is crying over something which makes you want to cheer them up or let them talk to you. Sure there's still tension cause of the fact that they are crying but joking about it or trying to get them to smile or laugh does help distract them and get them in a better mood. It's said that ""Laughter is the shortest distant between two people."" and I think that's true because when you joke with someone you learn more about them and they are more comfortable to open up with you. Also if you can have a good laugh with someone they are more likely to become a friend of yours since you know how to make them laugh and it's fun to talk to you. The more you and a friend can joke and laugh together the more close you usually tend to get with them cause you enjoy spending time with them and you're more comfortable with them and you know them better. And also when you can joke freely with someone you can usually also talk freely to them about anything and you know they'll be there for you when you need a good joke or someone to talk to. I know that I personally love to hear funny stories, I never really have many of my own that I remember. I love hearing jokes and laughing with my friends. It always brightens your day to have a good laugh with someone you know. But most people tend to giggle or smile when uncomfortable too. You know those times when someones having an awkward conversation with you and they ask a question you don't want to answer or don't know how to answer and all you cam do is giggle and smile when they look at you expecting to answer. Or when you have to talk to someone you don't know and you just laugh and keep messing up your sentences cause you don't want to mess up. I don't know if laughing when you're uncomfortable is just a way to make it less awkward or because you're too confused on what else to do. Sometimes when you get awkward and laugh it can make it even more awkward when they just find it weird and sometimes it helps when they then joke with you or just keep the conversation going and make it less awkward. Even when you know someone you can still have those awkward conversations or those moments of laughing so hard you cry. It is also said that's ""Laughter is the greatest medicine."" I also agree with that because when you laugh you always tend to be in a greater mood and when you're in a better mood you tend to feel better in any way and you also tend to be more positive about things. Laughter brings people together in awkward, sad, good, or just normal conversations. The better you can relate to someone, the more you guys can joke together, the more comfortable you are with that person. Your day is always brightened when you share a good laugh with a friend, a classmate, a parent, anyone, even a stranger. It always helps lighten your mood even on the most stressful depressing days." 20 15 35 4 4 4 4 4 4 3 3 4 4 3 3 +21536 8 " Have you ever had a memorable time, where you laughed so hard with friends or family? Well I know I have had several of those times with my friends and family. I love those times that you laugh so hard your stomach starts aching really bad. First, one of my most recent memorable laughing moments I spent with my mom that I don't see often. So this moment meant a lot to me as you can imagine. The last time she came to see my older brother and I we went bowling. She brought her friend down with her as well. My brother and I hadn't bowled in a very long time, but we knew we would still beat them. It turns out my mom beat me though. We had a lot of great laughs over that, actually I think that was the first time I wasn't a sore loser. Although, I'm still not sure how she beat me, she would through the ball down the lane sideways and some how it would go right down the middle. When you have moments like these, that you can look back on to help you through the hard times, it's really inspirational. All in all we had some really great laughs that day that were shared with my mom. Another memorable laughing moment was spent with my dad and brother. Every once in awhile my dad, brother and I sit in our living room and talk about several different things, some good and some bad. They can be about my mom, school, our animals or all three of our compassion for sports. These talks always mean a lot to me because we never spend much time together. We don't get to spend much time together because my brother and me are always at school or in some kind of sport and my dad is always at work. These conversations have several effects on me sometimes they are sad and other times they make me feel better about things. There are so many laughable moments just in our living room. One thing we always like to laugh about is the way my dad always says album. For some reason he thinks he has to add another @CAPS1 in front of the @CAPS2 so it spells alblum. My brother and I enjoy making fun of him for that but we all have our moments we like to laugh at each other for. That was just one of the many things we love to laugh about. Sometimes laughter is a very important part in someones life. For someone who is on the edge, or upset, just saying something little to make them smile or laugh makes all the difference in the world. Laughter is a great way to make people feel loved and excepted, also a great way to put people back on track when they're down. I know smiles and laughing makes me feel so much better inside. I hope you have had some great laughing moments spent with the people you love and care about." 15 20 35 3 3 4 4 3 3 4 4 4 4 4 4 +21537 8 " In the @DATE1 of @NUM1' I spent two weeks at my aunt's house. At the time my cousins were living with her. My cousins and I are very close so we liked to spend time together. On evening we decided to watch a movie. I remember it was called my bestfriend's girl. So we started to watch the movie and it was super funny, we laughed constantly through out it. My cousin named @PERSON1 has an awesome laugh, everytime he started to laugh I couldn't help but laugh too. We watched the movie and afterwards we went to go get some food. We were all in a very good mood, making jokes and doing crazy things to make each other laugh or be funny. My cousins would change their voices, making then higher or lower repeating lines from the movie or just making things up. That night we ate @ORGANIZATION1. When we got back to my aunt's house none of us were tired so we decided to watch a late night program called @CAPS1 @CAPS2. It was a program composed of a bunch of short cartoons. They were all very funny. We would make fun of them and laugh and mimic what the characters did. We stopped watching it at about @NUM2 in the @TIME1, I was very tired but my cousins were not. For awhile we just sat on the couches and talked, continuing to make jokes and say stupid things that would make us laugh. About a hour later we all fell asleep and continued to watch movies and just hang out for the two weeks while I was staying there. It was probably the best time of that @DATE1. I was very happy and enjoyed my @DATE1 because of my two cousins and the time we spend together. I laughed so much that my stomach would hurt all the time, but I didn't care because I was happy. I still spend time with my cousins and laugh a lot. I believe that our time spent together and shared laughter has brought us closer and more involed in each others lives. A person who can laugh, knows how to have a good time, and is fun to be around." 16 17 33 4 3 4 4 3 3 3 4 4 4 4 3 +21539 8 "@CAPS1 as long as you breathe, love as long as you live. @CAPS2 was impossible, there was absolutely no way @CAPS2 could be real. Breathing seemed virtually unachievable, as if I was choking on air. Everything around me blurred, spinning viciously as I clung to the fresh cut grass. Tears diluted the burn in my eyes, but not the sting in my nose, though neither caused my body to tremble as @CAPS2 did. Attempted screams came out as muffled moans. Alone @CAPS8 helpless, I could feel her staring at me, unsure of what to @CAPS7. My best friend stood @CAPS8 watched as I grew more violent, pounding the dew soaked lawn with my fists, whimpers transforming into shrieks. A door slammed behind me @CAPS8 I felt the arms of my father, trying to guide me towards the house. Once inside, my dad buried my face in his chest in more of an attempt to silence my obnoxious wailing rather than comfort me. He apologized repeatedly, I imagine he didn't know what else to @CAPS7. @CAPS2 was too early for the "In a better place" speech, but too late for everything to be okay. I continued to cry as stumbled up the stairs to my bedroom, @PERSON2 trailing close behind. Sitting on my bed @CAPS2 seemed like nothing was worse in the world. Suddenly, I was over-whelmed by the feeling I was missing something, like he was closer than I knew. I sat up to see his plastic sunglasses sat staring at me from my dresser. A black frame with neon blue sides. He @CAPS8 his "stunna-shades" danced through my head. Him standing out the car sunroof flexing shirtless, to propping himself up pretending to be awake in class. Seeing the glasses was like looking into his eyes. In my mind, his face held grief @CAPS8 frustration, he didn't want me crying. The few times tears fell down my face he'd say, "@CAPS3 on, suck @CAPS2 up @CAPS8 take @CAPS2 like a man!" I knew in my heart he wanted me to be with the people he loved @CAPS8 he wanted us to be smiling. With the morning sun beating on my back, I pedaled my bike as fast as my legs would allow. Reaching her front porch, I realized immediately the time I was about to spend in that house, would be like none before. When I let myself in as I always did @CAPS6 peered around the corner, eyes swollen @CAPS8 discolored. I took four steps forward @CAPS8 met her with a tearful embrace, in which I apprehended @CAPS6 wished I was him. @CAPS6 loved him in a way I'd never fathomed, but the desperate longing to be held by a loved one, I knew all too well. We cried @CAPS8 held each other because there was nothing more we could @CAPS7. When there was a pause in the sobs @CAPS8 @PERSON3 actually looked at me for the first time, noticing I looked just as terrible as @CAPS6 did. I reached into my pocket @CAPS8 pulled out his sunglasses. @CAPS2 was hard not be selfish at a time where all I wanted was to be comforted, but I knew what I had to @CAPS7. Forcing a smile seemed infeasible, but I knew @CAPS2 was my next step. Her gaze drifted down to the palms of my hands. "@CAPS4 @CAPS5." @CAPS6 started weeping once more, I held her @CAPS8 tried to be strong. More of my friends crept out of the kitchen, tear stained @CAPS8 reddened as well. I smiled at them gently. They all took notice to the sunglasses in my hand, but didn't understand, they hadn't know him the way @CAPS6 @CAPS8 I did. We spent the day gathered around with a loss of words @CAPS8 hunger, our pizza sat untouched, the television on just to break the silence. No one said much, about anything. "@CAPS7 you remember the time he hid our biology project in the freezer?" I felt the question @CAPS3 up like vomit, too large to swallow. They just looked at me, not sure what to think. I feared I spoke too soon, I began to assume all of the melancholy @CAPS8 crying was supposed to continue uninterrupted for longer than @CAPS2 had. @PERSON3 smiled @CAPS8 nodded to my relief. "@CAPS8 you got mad because he kept putting the nuts in your noodles." I laughed aloud, I couldn't help @CAPS2. I was flooded by the memory of him trying to act confused as to why the boiling water had cashews floating on top. "@CAPS7 you remember how he'd always braid your hair?" @PERSON3 smiled even greater. The rest of that month was filled to the brim with tears, but @CAPS2 overflowed with laughter. When @PERSON1 died, laughing was the last thing I wanted to @CAPS7. @PERSON1 always generated the larger portion of my laughter, @CAPS8 with him gone I never imagined I would @CAPS1 again. But in reality, just because he left too soon doesn't mean the laughter did. My beatitude in his memory will never die." 20 25 45 4 4 5 5 4 4 5 5 5 5 5 5 +21540 8 " Laughter in my life is one of the most important things, because it is often the motivation I need. Whether it be an embarrassing situation that I laugh at looking back on, or when I'm feeling angry and my best friend does something to make me crack up. Sometimes I just feel sad, and if I'm around the right people, the ones who bring the laughter out in me, I know it won't last long. I know that to get my mind off of something, all I need are a few giggle here and there. Recently, I started going to the gym. I have always been overweight and out of shape, so the gym, like many other attempts, seemed like it wouldn't last long. When taking the tour of my gym originally with my mom, who suggested we try it out, I was pretty excited. Of course this was because it was something new, and I was pumped up enough that I wanted to start that day. My mom, being the more logical one, and of course, the one who would be paying monthly for the membership, wanted to think and talk it over a bit more. In the end, my mom decided that it was right for us. At first my mom kept me motivated. Because I was so out of shape, I got tired after five minutes on the elliptical, at the easiest setting. Seeing my mom beside me on the treadmill, working at it and not even slowing, kept me motivated. Just looking at her made me so happy that every now and then I'd just let out a short burst of laughter, followed by a questioning look from her, but then she would also laugh. Sometimes I thought it was just because I was tired and somewhat delirious from the exertion, but looking back on it now I know I was just happy that my mom and I finally had something to do together. The happy gym days were short-lived, because as usual, my mom was too tired and whatnot to go anymore. I promised myself to go once I was able to drive myself regularly. A few weeks after my birthday, I got my license, but another thing got in the way; my car was a @NUM1-speed, and I only knew @CAPS1 to drive automatic. So after begging my mom almost every day to take me to practice on my new car, she finally took me. In the dark church parking lot, the same one I started driving automatic in, more laughter between us started. She would have me close my eyes and ""feel"" where the clutch and accelerator @CAPS2 about halfway. At first I thought this was so absurd that I would just start cracking up, and my mom would join in with her laugh. Once I finally got the hang of taking off, which to me is the hardest part, but, like always, laughter was there to make things easier. I learned to drive stick quickly, and because I had made that promise to myself, my first trip for myself was to the gym. My motivation that time was being able to finally do something progressive just for me, and the satisfaction was doing it by myself. The whole way to the gym, I sang @PERSON1 in the twangiest voice I could muster, which led to more laughter. The first few times of going to the gym were based solely on the knowledge that I was doing something good for myself. After about the fourth time, though, my motivation started to dwindle. Instead of listening to my iPod while on the elliptical, I started to watch ""@CAPS1 I @CAPS2 @CAPS3 @CAPS4,"" because it would get laughs out of me while I was still working my butt off. Before I knew it, the episode was over and I had been going strong for almost an hour, burning @NUM2 calories. I was so impressed with what I had accomplished that it felt like the motivation was fully replenished. I started going daily again. In a week and a half, I had lost @NUM3 pounds just by going to the gym, working out, and most of all, laughing. Part of it was self-motivation, but another part was the laughter that so easily distracted me from the task at hand. Because I had been getting into shape, I was also able to increase the ""@CAPS5"" level on the machine, and am still going every day. Each day it feels easier and easier, and now I have ""@CAPS6"" and ""@CAPS7 @CAPS8"" to make me laugh even more while working out. I believe that in many cases, laughter has saved me. Whether I be sad, mad, down, or in this case, not motivated enough, it was always an option. Knowing I have those laughs to look forward to at the end of the day makes me keep getting in my car to drive to the gym. I'm still losing weight, and this is the first time in my life I've felt truly energized. Laughter was a huge part." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21541 8 " Laughter and @CAPS1 @CAPS2 @CAPS3 @CAPS4 Laughter is the key component in anything in life. @CAPS2 is able to turn any sad moment good and any great moment even greater. Here is an example in which laughter brought my boyfriend and I together. I had been crushing on the same guy, @PERSON1, for two months. I was way too nervous to speak to him. One day my friends and I were walking down the hall where he happened to be. When i saw him I tried to turn around and walk the other way, but my friends pulled me back. They then told me they heard from a ""little bird"" he liked me too, so we continued to walk in his direction. We stopped walking right in front of him and my friends pushed me into him then ran off. I told him sorry as I turned bright red. My best friends had set me up. We stood there for five minutes in an awkward silence. All I did was stare into his beautiful blue eyes. All i could think about was how hot he looked in his black wrestling shirt and his faded blue jeans. He probably thought i was a freak. He had been leaning against the wall standing mostly on his right leg. Then when he went to switch to his left leg he let out the biggest fart i have ever heard. We started laughing. After we had settled down from laughing hysterically, we started talking. We ended up talking for two hours. A couple weeks had gone by and we had been talking more and more each day. Another week had flew by and we went to our first movie. I called @CAPS2 our first date. That night he asked me to be his girlfriend. I of course said yes. Ever since the day he farted I have thanked @CAPS5 for @CAPS2. I wouldn't have him as my boyfriend if @CAPS2 weren't for him braking the ice with his embarrassing moment. Most of all I thank my friends for shoving me into him that day. There could not have been a better way to meet a guy. This is just one example of laughter and how much @CAPS2 @CAPS3 change or affect a situation. Laughter is the medicines of all medicines. @CAPS2 is one of the most important tools a person @CAPS3 have." 20 18 40 40 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 +21542 8 " Laughter is what I'd like to call a ""@CAPS1 @CAPS2 of @CAPS3"". Because no matter what language or tongue you speak, when something funny occurs, the natural reaction is to laugh. This reaction is present for all people, and when it takes place; it's contagious and helps to bring everyone together. Laughter also emits a sense of happiness and joy, which in return makes people feel more free and open to join in and laugh as well. In many instances, if there is an awkward situation at hand, laughter plays a big role in lightening the mood; and making the atmosphere a little more comfortable. In @DATE1 laughter was a big key in the success of our annual @ORGANIZATION1. Our @ORGANIZATION1 consists of around @NUM1 people (including cousins, and some close friends); so as you can see it @MONTH1 not be easy to get to know and interact with everyone. However, at dinner time we like to switch it up, and sit next to relatives that you wouldn't normally sit next to. At first, it's usually very awkward, and sometimes even frightening for the younger kids, when they end up to sitting next to our very loud and opinionated aunts and uncles. That is until my @LOCATION1 decides to crack one of his hilarious jokes. My @LOCATION1 is somewhat of a @CAPS4 of awkwardness. Not necessarily that he enjoys being in awkward situations, but rather that he enjoys watching them play out. Eventually about halfway through the meal, after eating in close to utter silence; he decides to stand up and give a little toast to the @ORGANIZATION1. Following the speech, he always concludes with a well rehearsed joke; which, gets everyone laughing. Some of the younger cousins don't always understand the play on words. But what really gets them going, is listening to all of our aunts and uncles hoot and holler things like ""@CAPS5 @CAPS6"" and ""@CAPS7 help me"" mixed in with their obnoxious laughs. After all the fun dies down, the awkwardness always seems to drift away, leaving us with the feelings of happiness and joy that I described earlier. I believe that those feelings directly correlate to lightening the mood, and in helping to get everyone more comfortable with who they happen to be sitting by. Once all these things occur, conversation gets flowing and everyone ends up getting to know a @ORGANIZATION1 member, that they otherwise might have not gotten the chance to truly meet. Laughter is one of the keys to happiness in life; because without it, life would be very dull and boring. Laughter also has the power to change situations, and to make them better for the most part. In @DATE1, laughter changed a situation in my life for the better, just like it has done so many times since then. In my eyes, laughter is the best @CAPS2 of @CAPS3 out there. If you really want to get to know a person, all you have to do is make them laugh!" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21544 8 " I choose to have a positive out look on life and I'm generally a happy person. Who wants to go through life mad all the time? Even at my lowest I know that I have a lot to be thankful for. Because of this, laughter is an every day factor of my life. When I'm with friends and family I am always laughing. Laughter is my medicine and I wouldn't be the same girl with out it. When I was in the fourth grade my family and I began going to a new @CAPS3 I didn't know any one there and I was really nervous about going to @DATE1 @TIME1. Mom walked me down the stairs to the classroom and the teacher introduced herself to me. Her name was @PERSON1. She was pretty and very tall with a funny australian accent. She was wearing alligator skin boots with black jeans and a pink top. Ms. @PERSON1 introduced me to the class stating my name and grade. after taking my seat we recited @CAPS1 versus and read short clips of @CAPS2 stories. When @CAPS3 had ended mom came downstairs to gt me. Reculctant as I was to see her I took hold of her hand, said bye to @PERSON1,and went back upstairs without one word from any of the other kids, but on our way upstairs a girl about my age, from which i recognized from the class said goodbye to me. I returned her nice gesture with a smile and a wave. One week later mom took me downstairs to @ORGANIZATION1. This time I was relentless and determined to make a new friend. I went and sat down next to the girl who said goodbye to me last week. I introduced myself to her and she told me her name was @PERSON2. We soon became very close. Every week I was so excited for @CAPS3 so I could spend time with @ORGANIZATION2. We became best friends! We played on the same soccer team together and we pretty much live at one anothers houses. In fact @PERSON2 has her own toothbrush at my house and I have one at her house as well. One time @PERSON2 and I were in @CAPS3, and now that we are older we go to the main service, we laughed so hard we almost peed our pants! @PERSON2 and I have so many great memories together and though we are becoming older the memories will last forever." 15 16 31 3 3 3 4 3 3 4 3 4 4 3 3 +21545 8 " Making jokes or just talking about funny stuff and laughing with people can make conversations comfortable and lets people see your true self . In my opinion. Laughing is one of the most important things you should have in a relationship with someone because you need to keep having fun and laughing about funny things. Laughing also make you feel close too people because once you and that person get to know each other you'll just laugh about anything even if its not that funny.For example when i first meet people i am very shy, I don't really say much but if the person that i am talking to makes me laugh, it makes me feel comfortable and makes me want to joke around with them, it makes the conversation fun. If there is no laughter in a relationship the relationship is practically dead. No one wants to be around a person with no sense of humor. In my opinion everyone has a funny side, some people like to show it and some people like to keep it to themselves. Some people might be funnier but the things is we can all be funny in our own way. I've had many experiences where laughing has benefited my relationship with people. Me and my friend met in middle school ,I was good friends with his sister but i never really got to know him until I went to high school. I had a lot of classes with him so i started talking to him, but because i already knew him I wasn't very shy. The first day that I talked to him at school he was making fun of me but not an a mean he was joking around how I brought chocolates to his house and I didn't offer him any , it was more of like an inside joke. The thing is our relationship started off with us laughing and joking around. So I immediately felt like i could be my self around my new friend and not worry about what he would think. Now we are best of friends,we laugh about everything and we have are own little inside jokes.When I am talking to my friend I can say anything that I think is funny and I know he will laugh at it. Laughter has really made my friendship with my friend fun. One of the best relationships I have with a person is with my sister and its because we just laugh all the time when we are together . When either of us is going through a ruff time we still find a way to make each other laugh and forget about all our problems for a while. Even though we are sisters and we naturally have a bond, laughter just makes are sisterly bond ten times better. We have very similar personalities, and we are both pretty funny so the laughing never stops between us there is always something we laugh about. Laughing in my opinion is very important to have in a relationship, without laughter it would be a miserable, unhappy relationship. Laughing brings out the good side of people in most cases, it brings out truth in people. when you first meet people, laughing really makes conversation comfortable and not awkward. Starting a relationship with laughter can really make you good friends for example like my friendship with my friend. When you are sad or mad,it really makes you feel better when you have someone that makes you laugh it just makes everything better it really can change some peoples mood and make them forget about the negative stuff in their life for a while. Laughter is just a great way to bond with people. Having someone to laugh with is just very important to have in life." 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21546 8 " When I was about thirteen me and my older brother dissuaded we where going to spend the day fishing. I got out of bed that morning, throw on a pair of old torn up blue jeans and when downstairs to get some breakfast. On my way I could smell the sweet aroma of eggs and hash browns that made my mouth water. My brother was up and about and had just finished his plate. My mom handed me my plate and and I reached for the bottle of @CAPS1.Ethan was sitting across from me as i ate and said""We'll leave in an hour or so"".I said okay and went on eating.After breakfast we gathered our poles and tackle boxes and put them in the car along with an old boat we kind of jacked of the old neighbor lady. We put our stuff in the van and mom drove us into town. It was about eight in the morning so we wouldn't get back home till about three or four in the afternoon depending on how the fishing is. There was a little store in town and the creek went right behind it. It was a small creek. I grew up on it so I thought i knew what to expect. We put in behind the store and our mom left after telling us to be safe. It was a chilly @DATE1 morning and a little cloudy. The water was cold and my brother said I should wear his waiters. I thought it was silly seeing as we would be in a boat. Burt I put them on and we put the boat in the water. This was the first time we ever even used the boat so it was exciting. As we went down stream the water got fast and loud and the embankment was like a wall to the outside world. As we took the next corner there it was. A water fall about as tall as a man. Not the kind you would see in the movies but it was good enough for our eyes. Right in the middle of it was a big rock and water went around both sides of it. We where pushed right up agenced the rock and where all most thrown from the boat and we grabbed the rock for dear life.We where stuck and I looked at my brother and he kneaded as if to say down is the only way.So with that being said we both let go and let the water have us. As soon as we let go it was like being om the back of a two thousand pound animal in a rodeo the only lasts a second. When the boat sunk my waiters filled up instantly and and it took all i had just to hold on to that boat that was pulling us down stream now. We lost all of our gear except the tackle boxes, an oar and that stupid boat. It took all we had but we finally got the boat out of the water and poured the water out of it and the water out of me. I was scared for my life now. This was suppose to be a fun fishing trip but it was now a game of survival. We couldn't turn back now. the only way to got home was to go the rest of the way. I was cold and wet and didn't have any options. We had to continue so we tried it again just to sink. We spent most of that day carrieing the boat around rapids and throw brush all day until it mellowed down and we could put the boat back in. We got to a big pool, so big you could fit a house in it. There where some small rapids running right throw the middle of it. It dint look bad but with what we had bean in we dissuaded to be extra car full. We went around the rapids through the pool. As we went we burly braised the end of the rapids with the boat and we went in. I tried to keep from sinking but my waiters where to heavy. As i tried to swim to shore my shoe fell off and went down stream. Being stupid a chased after it on my belly to get it. The water was faster then I thought as I let it @CAPS2 me. I was swallowing so much water and i couldn't breath. I could feel it begin to get deeper and soon I couldn't touch bottom at all. My shoe was right in front of me and I finally got to it with burly anything left. I got to shore and just law there choking up water. After ten minuets I got up and went back. I think it was freak luck we survived that day but some how we did. I learn a lot that day and laugh about it now." 17 18 35 4 4 4 3 3 3 4 4 4 4 4 3 +21547 8 " It is true that laughter is important in any relationship, friendship, and in life sometime laughter gets you out of trouble sometimes get you in to trouble. but the more we laugh the more we are going to be happy. I time that laughing came in handy was in @CAPS2 school. In the @NUM1 grade @CAPS3 person was split into a group. The popular girls, band nerds, hippies, and the jocks. The lunch room was always how you knew who was who. The popular girls would sit with the jocks everyone of the girls had a boy to flirt with, the band nerds on the floor making straw recorders and drums out of milk cartons, the hippies all in a circle eating salad out of one tray. None of these groups ever intercepted each other. I fell into the group of the hippies. we wore green everyday and peace signs on as many clothing we were able to get on our tiny little bodies. We were the nicest group, We helped with @CAPS3 @CAPS1 friendly activity there was to do. We did recycling everyday. My @CAPS2 school experiences was outstanding. The best thing about our group was that we knew how to laugh, we would giggle chuckle, or laugh so hard that our mouths were open and we were holding our gut but no sound would come out. On a beautiful @DATE1 @TIME1 we decided to sneak out of the lunch room, why did we? I don't know. We all just really wanted to sit outside and eat. The golden rule at lunch time was: @CAPS3 person had to raise their hand to be excused and then take a green card to be able to @CAPS4 outside. After you got a green card you had to take it to the outside teacher which showed her/him that you could be outside. But instead of waiting to get excused, we walked all the way around the other side of the building to sneak around to the bright green lawn that was filled with flowers. I don't know how we managed to sneak around with no teacher seeing us, but we did. When we saw that bright green lawn we ran to it like a four year old running to a ice cream truck. We all skipped, danced and ate our lunches that our mom's packed us. we all sat in a circle and passed around food. the day couldn't get any better. In a matter of fact it got worse. when we were done eating we went and played on the play ground forgetting that we weren't aloud outside in the first place. We swung on the swings, climbed on the monkey bars. we were screaming, laughing talking. Which led to a teacher coming over and told all of us to come to her. Her voice was calm like she was trying to keep a bear down her throat so it wouldn't come out and eat us. We sat there with big bug eyes and all held hands. The teacher said we were in really big trouble, and there would be really bad consequences. And we all knew that before she told us. A few seconds after she told us that, I just started laughing really hard. I couldn't stop, it was like someone put a spell on me to never stop laughing. Everyone looked at me like seriously you pick right now to bust out laughing. I was on the ground curled up in a ball with my hands holding my stomach and my face was bright red. I couldn't stop laughing. Finally i got a hold of myself i looked up at everyone around me looking down at me. I looked at the teacher and she started busting out laughing. We all sat there in silence staring at her. Now she was the one on the ground, I couldn't even believe it. she looked at all of us, and said ""@CAPS4 have fun, it is a beautiful day out and you girls are nice ones, i will let it @CAPS4 this time, but just don't do it again"". We all hugged her and ran off to the swings and monkey bars. To this day i will never forget that moment. Just a simple laugh got us out of being in so much trouble. who would of thought. it is true that, laughter is important in any relationship, friendship, and in life. having laughter in life makes the world @CAPS4 round. " 20 22 42 4 4 4 4 4 4 5 5 5 4 4 4 +21548 8 " Laughter, one of the wonderful things that we humans can enjoy. Laughter with friends, family, and with people we do not even know. We all can enjoy and share laughter, it is one of the amazing things that can bring us together no matter what ethnicity, age, gender, or disability. We all can enjoy it together, and no one can take it away from us. Laughter is simple, but yet complex in many ways. It is like falling into a pool of @CAPS1. Laughter, just the word ""laughter"" brings me joy! When our days go sour laughter is there to sweeten it up. Where would we be without the wonders of laughter? Laughter, it is like a tool. It is the thing that has helped me make new friends. Also, laughter has helped me get out of conflicts from both friends and enemies. It has also aided me into achieving the things I want. Laughter is @CAPS2 my middle school years. My family and I moved a lot, and every time I moved I had to make new friends. It got very difficult for me to make new friends every time I transferred to a new school. After I have settled down and got used to the surroundings of the new school I then started to make friends. I noticed that laughter was a key element on making people like you, and then later consider you to be what is known as a friend. After I have made new friends, and became very comfortable with my school the time to move came again. It gets difficult to make new friends, but its even harder when you have to leave the new friends you just made behind. After moving so much I just got used to making new friends, and later on laughter slowly became more like a tool than something that I should enjoy. A tool for just making friends. After I got into high school I just stopped trying to make new friends, because I felt that I knew I was going to make new friends, and then transfer to another school, and then start all over and make new friends again. I gave up trying and decided to get more involved in school and achieve good grades. Later in the year I felt like a kid with no friends, because I stopped trying. I decided to go and make new friends, but somehow it became a lot harder to make friends in high school than middle school. I tried to be the funny guy like I was in middle school, but I just didn't have it in me anymore. Also, when people get older the type of humor people enjoy changes. As time went by I realized that you don't have to make everyone laugh, so they can be your friend. It was about getting to now the person, and to be able to relate and to be a there when they needed you the most. Making friends at a new school is not easy, but it also is not very hard. All you got to do is be open to people and let them know who you are. This is what I learned about making friends. You can't make everyone laugh, because everyone has a different taste in humor. Humor and laughter are different from each other. Everyone has a different taste in humor, but we can all come together and have a good laugh. Laughter is wonderful. It is what puts people in a good mood. We as people @MONTH1 have our differences, but we can still all laugh together. It feels very good when you get a good laugh, but its even better when you know that the person who made you laugh did it so you can be happy. We should not take laughter for granted for it is something that puts a smile on our faces. " 15 20 35 3 3 3 3 3 3 4 4 4 4 4 4 +21549 8 " In the story i am going to tell you, it involves one of my friends and myself. After school one day meself and a buddy of mine went to my house for the night. It was alot of fun, we started off playing video games and laugh really hard when one of us would die in the game. Then after awhile of that it was dinner time and my mom told us to get off and come eat. it was really fun at dinner, we throw stuff at each other when my parents weren't looking. It was a blasted, until dinner was over and we didn't have anything to throw at each other anymore. But now it was time to start playing games again. Now at this time it was about teen o'clock and we were getting really tried so we put in the movie step brother and watched it. It was the best time we had all day we were laughing non stop at everything that was said in the movie and it was great. We both loved it and really wanted to watch it the next morning. But before we could my friends dad was there to pick him up so that was the end of the best time with my friend and the funnyest time ever too. It was great we laught non stop the whole night. Now that just shows that laughter is the shortest distance between two people." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21550 8 "Have @CAPS1 ever had that one friend who was your best friend, that @CAPS1 could go to for anything, that @CAPS1 were so close to that @CAPS1 guys knew everything about each other, from the way their nose flared when they laughed to their deepest darkest secret. Well @PERSON2 was that type of best friend to me. Us two crazy monkeys became friends in first grade. We were never the type of girls to sit down in class and read a book or stay calm all throughout school, no, we were the girls playing sports with the boys, getting dirty and scratched up. We always were laughing and playing and having a great time. Laughter was a big part of our friendship because,well, we were always laughing. We would get in trouble for keeping our parents up late at @TIME2 with our crazy jokes, loud laughing, and hyper psychotic ninja adventures we would take during the middle of the @TIME2. No matter what we were doing, we could always make a joke out of it all. "" @CAPS1 guys are perfect together"" said my mom one day, and all I had to say in reply to that was "" I know, we are two monkey ninjas."" @PERSON2 and I had this one restaurant that we loved to go to, it was @PERSON1 @PERSON1. @CAPS2, @PERSON2 s @CAPS5 would take us to there at least twice a month and we would always get the same exact thing every single time. @PERSON2 and I could make some things funny that no one else understood. We would sit there in the booth with @CAPS2 and talk about the funny times, the stupid fights, and end up laughing uncontrollably throughout the time we were at @ORGANIZATION1. It was a warm @DATE1 @TIME1, @PERSON2 had come over to my house and was planning on spending the @TIME2. We had our whole @TIME2 planned out, we were going to call her @CAPS5 and talk him into taking us to @PERSON1, and when we got back home we were going to go on a jog, then get ready to go on an ""adventure"" is what we liked to call them. So we called @CAPS2 and had creatively talked him into taking us. But the catch was, was that we had to go over to @LOCATION1 s house mow the yard, plant some plants, weed some of the garden and then he would take us. So we went of course and did all the work that we agreed on doing, and we went to @ORGANIZATION1, dirty, sweaty, and exhausted. By this time everyone at @ORGANIZATION1 knew our names by heart. We made jokes with them and sometimes even got to go in the back room and get our ranch if there wasn't too many people there. We ate our food, got extra fries, extra ranch, and were sitting there with full bellies. We were all ready to leave, but @CAPS2 had to go to the bathroom. So @PERSON2 and I sat there and waited while he was in the restroom. He was taking a longer amount of time than he usually does, which was fine with us because we wanted to talk about this one boy that @PERSON2 was having a ""thing"" with, which we couldn't talk about while her @CAPS5 was around. Finally he comes out of the bathroom, and i notice his zipper is down but he is so close I didn't want to say anything to @PERSON2 about it until we were further away from him, and him being in his playful hyper mood wouldn't let us get far enough away from him so I could tell her. As we were walking out of the door, I finally told @PERSON2 to tell her @CAPS5 that his zipper was down. So as she turns and looks she bursts out into laughter because while his zipper is down he is talking to a group of people that work there. So as we are both laughing hysterically we are trying to tell him. We finally got him to start walking out of the door, and at that time @PERSON2 says between giggles "" @CAPS5 your zipper is down,"" he looks down and does his nervous/oh my goodness laugh and zips it up. The whole ride home, @PERSON2 and I are busting a nut laughing as hard as we could. Our stomachs were about to explode because of laughing so hard. @CAPS2 was in the front seat occasionally giggling because he couldn't believe that his zipper was down the whole time. And as we were nearing my house he says "" there was a song playing, and I wanted to hurry and write the lyrics before they were over, I really liked that song ."" That to me, was the funniest thing @CAPS2 ever said. @CAPS2 went home and bought the song on i @CAPS7, and also learned to check his zipper more often. @PERSON2 is the perfect best friend for me, we are just a like in many ways. But our sense of humor is the most alike." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21552 8 " Laughter is the best medicine for a friend in pain. My friend @CAPS1 and I were best friends, he came to my house every weekend. So while I waited for him I decided to ride my bike. I road around the block a couple of times, when I hit a curb and crashed. My handle bar hit me in the lower rib cage. My mom took my to the doctors office to see if I broke a rib. The doctor said I had only bruised it. On the way home I was in so much pain, my mom made a stop for some ice cream, that didn't help. When we got home I just lade on the couch for a while. I heard knocking, it was @CAPS1. The first thing he did was asked what happened, I said I didn't wont to talk about it rite now. We ate diner then played a game. Then we watched some movies eventually we both fell asleep. We woke to the smell of bacon. I was still a little asleep, by the time I realized that I had woke up @CAPS1 was down stars. I was in so much pain I couldn't get up. So I just lade there for a short while. @CAPS1 came back up the stares to see why I didn't get up. He seen me just laying there. We just started to laugh, I noticed that i felt a little better but I didn't think much of it. After we ate we turned on the @NUM1, my mom said for every one to clean but @CAPS1 and I could play, cause I was hurt and @CAPS1 was a guest. We play mortal combat @NUM2, @CAPS6 and @PERSON1, and @CAPS7 and @ORGANIZATION1. I won most of the time, tell he started to cheat, but it was still pretty fun. When we were done we watched a funny movie, we laugh so much, that when it was I almost for got about my rib cage. We went to the park to shoot some hoops. As soon as he shot it then it bounced off the rim and hit him in the face, I thought that was funny, he didn't seem to think so. When we got bored we headed down to the market to get a snack. When we were eating I told him what happened with my bike, he ask if it made a visible mark, we look and seen it look just liked a smile face, it was funny but creepy. When we got home, he said that he wanted to ride bikes. At first I was a little scared, but nothing big. We rode around my yard for while. His mom got their shortly after. Then I went inside and just sat there. My mom asked how i felt, but it didn't hurt any more. I got better because laughter is the best medicine." 15 18 33 3 3 3 3 3 3 4 4 4 4 4 3 +21553 8 " One rainy, @DATE1 day in a far away place their was a soccer game.that i was in. I remember that day like it was yesterday.It was the last game of the season,so it was important to me but some things went wrong in the process. I was going to the same like I said. I was just wearing my uniform my aunt said bye as I did. but out of the deep blue shy a big black rain cloud comes out. Oh @CAPS1. so I'm in on the beach thinking to my self the game going to get called off. On it my turn to go in. now in font ready for the for the ball,@CAPS2 I fall on my face. then i fall again coach take me out. so he did, i go back on the beach hopeful the team can do it with out me. game over we lose by two points, its time to leave now but where is my aunt? i called her on my coach's phone , @CAPS1 answer. I think to my self ok shes a little late, but as i look at the time ten go the @NUM1 then a hour. finally shes here. cold, wet and mad from the game. all my aunt said is @PERSON1 don't get mud on the seat. well that's a little hard to do that when it's all over me. my aunt says @PERSON1 you are not going the party looking like that, i said but i have to there is not time to waste. after a little argument my aunt says ok, so i get there and see all that food and all my team mates muddy as me. it's seems like a could move to show the heavens, what a day." 15 10 25 3 3 3 3 3 3 2 2 3 2 2 2 +21554 8 Have u ever been hit by a basketball in the face?. One day I was playing basketball whit my friends I had no school so I think it was like @NUM1 pm. We were having a blast playing my favorite sport and making jokes. The day was going good I was making hoops and I had some good jokes every one was laughing. My friend @CAPS1 ask me a question about some girl so I turn my face to him and then the basketball hit me right in the face hard at first I ti-rent get angry it was and accident so it was all good but then my friends started laughing that made there day they current stop it so I lost it I wanted to hit them all of them. I started to think if one of them had had got-ting hit in the face the same way I did I would of been laughing too but they ti-rent I did so I just left home angry. When I got home I was still angry so I went to the garage I have a punching bag in there. I started hitting it to get my anger out that's what my dad told me when I was a little kid when am angry don't take out on the family go run or hit something but don't take it out on the family. I was in there for like half and hour then I went inside to the kitchen to get something to eat my mom was there then she saw my face it was still red from the hit. She started screaming at me saying what happen was I fighting stuff like that. I was still angry and then she was screaming at me that made more angry I just current take it no more so I left to my room put some music on I was in there for like and hour then my phone was ringing it was my friends I had like five miss call and three messages from them saying if I was crying and things like that still making jokes. The time went by and I was still angry I current forget about what had happen. My younger brother @CAPS2 came into my room whit food I was still hungry because I ti-rent get nothing from the kitchen because my mom was screaming at me so a left whit no food and a empty stomach he was eating it in front of me making faces and saying that was the best sandwich ever man I current take it I took it from him he wanted that then I sat down starting eating it he comes up to me and ask me why was I angry and I told him he started to lough a punching him slowly he ask me if I wanted to go play video games. So we went to play @NUM2 is a army game his really good at it I suck every time he kills me he starts saying jokes like who's your daddy and stuff like that. After a while I forget about what happen I begging to smile so me and my brother go outside the house to play soccer we were there for like ten minutes then my friends were walking by @CAPS3 screams my name I turn my face to him again I got hit again my brother kick the ball hard it was going fast when I saw it I had already got hit by it but this time was in my stomach every one loughs at first I ti-rent but then hearing every one loughs and thinking about it to get hit twice the same day and way because I turn my face I tough it was funny so I start loathing too. My friends came over and say they were sorry for laughing at me but it was funny and the one the hit me said that it was my fault because I wasn't looking I was like whatever. I ask them if they wanted to play soccer whit us they said yes we were playing for like five minutes when my brother kick the ball and hit my friend right in the face the one the hit me whit the basketball I start cracking up and I told him why wasn't he looking and that what goes around comes. That put a big smile on my face and after a while it was all good again we were having fun whit no anger to each other that's one time laughter change how i felt. 15 16 31 3 3 3 3 3 3 4 3 4 4 3 3 +21555 8 " The elements of laughter is to show emotion to other to let them know that you had a great time or to show that there are special. Laughter is some times in me. I laught when I have a great time. The greates laughter I always have is with friends saying crazy thing when we go to the bus after school. That the joy from friend and you to reales the tens strees from school. I always go home with a smile. Theres always jokes to tell to have joy. When the bell rings with in the end of my last class, I am tierd from working hard. When I go to my bus located on the front of the school. I feel strees out from the work I had to do. But I can't wait till my friends come to the bus. We always have a great time. I comepletely forget about school and laugh with the jokes and rediculace story we say. When we get to the first stop everyone gets out with joy even me. This prosses has lasted for three years. But the next year is going to be ower last ride from the bus @NUM1 my favorite number. I hope we will still have the great time." 10 15 25 2 2 2 2 2 2 3 3 3 3 3 3 +21556 8 " The new trimester had started and leadership was my second period. With no idea of what the responsibilities of a leadership student were, I was skeptical on taking the class. After days of taking the class, I began to enjoy it more and more. After a week or so, the teacher announced we would be on stage helping set up and organize the upcoming assembly. I had never done anything of the sort so I was somewhat excited. Days went by and the entire class practiced setting up the assembly, running to our places, moving props, and stacking chairs. The day of the assembly finally arrived, it was time for the show. The students poured into their seats as we scurried around behind the curtains. Everything was set up perfectly. The curtains rose and the assembly began. My peers and I stood behind the stage watching the assembly unfold. The school band preformed a long boring set of songs, the curtains fell and the entire leadership class ran out on stage, picked up and stacked the chairs that the band just used. After, we all ran to get the bleachers and dragged them out to the front of the stage. The choir was now going to preform, we then retreated back behind the curtains. The choir sang their songs, and we watched, but as they proceeded to set up for their last song, students moved around leaving a large open spot in the top row. With the choirs last song, they preformed a simple swaying dance to go along with their song. My leadership class friends and I, noticed this large open spot in the choir and thought it would be hilarious if one of us went up there and pretended to sing and dance. However, none of us had enough courage to do it. The choir finished their song and dance, the first assembly was over. We then cleaned up and got ready for the second assembly. It was time for the second assembly and everything was going to be preformed again. The students came in, sat in their seats, the band played, we stacked chairs and moved bleachers. It was time for the choir to come out and sing once more. The thought of how funny it would be to go up on the bleachers and dance came upon us once again. Finally we convinced one of our classmates to do it. She ran to the choir room and put on a choir robe, put her hair in a funny bun fixed on her forehead, and stepped up onto the bleachers. She took the open spot in the top row. The song began as well as the dance. She broke into random dancing, not in any way matching up with the other dancing choir members. It was obvious she did not belong up there. The crowd soon began to realize what was going on. Laughter broke out in the seats, but soon after laughter broke out behind the stage as well. I was laughing like I had never laughed before. It was painful, tears pouring down my face, I was gasping for air. Running out of breath and bracing myself for a deep inhale, when right at that moment the song had a dead silent pause. The auditorium went completely silent, I inhaled in, and as I took in that air, my body managed to let out an extremely loud embarrassing screeching noise. People behind the curtain stared at me, I knew that it was heard throughout the auditorium. Embarrassed I laughed even harder, causing more pain, tears, and lack of oxygen. The song ended followed by the end of the laughter, then by the end of the assembly. The girl stepped down from the bleachers and we all scrambled out of the building, hiding the robe along the way. We laughed all the way to our next period, listening to the students in the hallway talking about it. Giggles filled the school for hours. Talk of who it was, what actually happened, and why it happened were on everyone's minds, except for ours. The second period leadership students knew exactly what had happened. We had the pleasure of telling everyone in school about the dirty little details. The following days however, the teachers also got word of it. Not thinking our actions all the way through, we would soon have to face the consequences. We were told it was irresponsible and child-like. We had a plethora of possible punishments, in school suspension, @DATE1 school, a referral, an apology to the choir class, and loss of the privilege of being in leadership. After the school board talked to our parents and gave the event serious consideration, we got out of it with having one day of @DATE1 school and apologizing to the entire choir class. The school board, realized it was just a joke, letting us off easier than it could have been. In my eyes the prank was well worth it. For weeks on end, every night I would go to bed laughing about that leadership assembly." 23 21 44 5 5 5 4 5 4 5 4 4 4 4 4 +21557 8 " Have you ever laughed so hard that you cry? Your chest is bubbling with the laughter, and tears spilling out of your eyes; faces turn bright red and your body is practically having convulsions. This is not the forced kind of laughter, this is uncontrollable. This is pure joy. I laugh like this at least twice a day, tears and all. If it is even possible for your laugh reflexes to be connected to tear ducts, I swear I would have it. If I have a good laugh during the day, then I wont be so sad later to come. It has made me a much happier person. And it has even been able to bring me together with other people. @ORGANIZATION1 @ORGANIZATION1 was not a time when laughter was abundant in my life. This was a time in my life where I worried and would dwell on the past. I was a deep fourth grader. But my friends were much different. @CAPS4 did have their bad moods on occasion, and whenever we were feeling down we would sit on the @CAPS1 @CAPS2. Very creative, I know. This @CAPS2 was navy blue, and sat right at the corner of the playground right where the baseball field started. We would sit there and watch the whole playground during recess while reflecting on our stressful lives. One day as we were dismissed to recess, four of my close friends and I went over to the @CAPS2. We watched as the boys ran as fast as @CAPS4 could to the field to get their daily game of football started. Almost every guy in the @ORGANIZATION1 would go to the baseball field and play touch football. It was the cool thing for the @ORGANIZATION1 studs. And sometimes the girls joined in too. While we were sitting there sulking on the @CAPS2, a few boys walked up to us. ""@CAPS3 to play some football with us? We could use more people!"" @CAPS4 said. We weren't in the mood for playing football, but with the persistent nagging, we had to give in. The square field was soggy from the @ORGANIZATION2 rain, and the grass turned into muddy mush wherever you stepped. Us girls would avoid any contact and we ran much slower then the boys. But we managed to score a few points for our team, and duck for cover when needed. The football lightened our moods, and was much better at making us happy then the @CAPS1 @CAPS2. So a new tradition was formed. Every day we would go out with the boys and not have a care in the world as we chased each other around. We dove into the mushy mess of a field to save a ball, and lunged to tag any person we could get to. The @CAPS2 was out of all of our minds as we ran around having fun. But one day while we were playing it was extra muddy from a storm the night before. It was hard to navigate as you were running around on the slick field. People were slipping and falling constantly. And then something amazing happened, it started raining all over again. But nobody had even thought of quitting. We just laughed and kept going. The rain blinded us, and the slick ground was no help. So a collision was inevitable. One of the girls picked up the football. The ball had been through a lot, and now it was covered in mud. She had a clear shot of the end zone, and sprinted the best she could given the circumstance. When out of nowhere a boy from the other team popped up in front of her. But instead of swerving to miss hitting him, she slid. It was a priceless moment, almost taken from a cartoon. Her legs slid out from under her and she landed square on her butt. Everyone on the field was already peeling over, clutching their stomachs from the laughter. But she continued to slide. The boy in front of her was too busy laughing to notice she was headed in his direction. That is when she took him out too. But he was unfortunate enough to land on his face. His body sprawled on top of hers with his head directly in the brown wet ground. Even the two that fell couldn't help but laughing. The game was halted as we all shared this priceless moment. We were brought together by a simple game of football, and uncontrollable laughter." 18 25 42 42 4 4 4 4 4 3 5 5 5 5 5 5 5 4 5 5 4 4 +21558 8 " Many believe that laughter is the key to the start of a great friendship. @CAPS1 can mend the broken bridges between people and even make awesome relationships even better. Laughter can be such a powerful thing and most don't understand @CAPS7 powerful. I especially didn't know until two years ago when I met @PERSON1. @CAPS1 only took the move of my former @CAPS3 @CAPS2 to understand laughter's full potential of the beginning of a great friendship @CAPS1 all started a couple weeks before school ended when the news was received. At the time i was part of a small @CAPS3 group, in a small church, in a small town. @CAPS3 @CAPS2, @PERSON2 and @PERSON3 were moving, and would no longer be able to lead the @CAPS3 group. The entire church congregation was saddened by the sudden news. But none were as depressed as the @CAPS3 that they had touched in their many years in ministry. We had grown used to the couple. Many of the few that had been around the longest , including myself, had spent nights at their house, or in my case babysat their young daughter. They were like family to all of us and no one wanted to see them go. But sometimes I wonder if they hadn't what would have happened. Many well wishes and tears were exchanged between the day they had departed. As a congregation everyone thought that no one could ever touch our hearts they way that they had. But that was just a thought. Two short months later, word had gotten around that someone from @LOCATION1 was traveling here to our small town in @LOCATION2 for an interview for the newly open position. All the teenagers were guarded the moment that he had walked through the door. His name was @PERSON1, only in his early twenties, but had quite a lot of experience in ministry. My first thought was that this must be some kind of joke! @CAPS7 could he lead a group of kids if he's only a kid himself!? I wasn't very keen of him. Neither was anybody else. But something was very different about him. He wasn't afraid to tell us about his life, @CAPS7 he had grown up, and seemed to be totally honest with everyone of our questions we asked. And that was when we knew as a @CAPS3 group that maybe he was the one. Even though I knew @PERSON1 would be our new @CAPS3 @CAPS4 I still didn't want to accept @CAPS1. I tried and tried to avoid him although @CAPS1 always seemed we were having to deal with each other more than either of us wanted to. So finally, @PERSON1 decided @CAPS1 was time that the two of us needed to get to know each other. One @DATE1 @TIME1 my mom got a call from someone at the church, she wouldn't tell me who, but that I needed to go. So I did. And who was there? @PERSON1, in the sanctuary just the two of us and the associate @CAPS4, because @CAPS1 would be too inappropriate for us to be by ourselves. "" your mom didn't tell you @CAPS6 your here, did she?""I laughed, "" @CAPS6 no she didn't"" "" @CAPS7 do you feel you and I talk? Go hang out, wherever you want?""""um....ok @CAPS7 do you feel about going to @ORGANIZATION1?"" The question was puzzling to him, @CAPS1 did to most, but he accepted the idea. ""@CAPS8 @CAPS6 are we going to @ORGANIZATION1?"" he said as he pulled into the parking lot."" I don't know @CAPS1 was just the first thing that popped into my head.""We both chuckled. I felt more at ease with him now and actually thought for the first time that maybe this would be a pretty fun trip. As we walked through the building @CAPS1 started to be quite boring. But the boredom faded away as we decided to pass through the toy aisle, and set off all of the toy alarms and sirens. Toy after toy had started to go off as we went through the aisle touching every toy that made some kind of absurd noise that would drive anyone up the wall, which many did. Finally we walked around the store to other departments in the store and got to know each other a little better. @CAPS1 surprised me that both of us liked a lot of the same things. He told me more of his childhood like @CAPS7 he was adopted and what @CAPS1 was like before hand and afterwards. @CAPS1 was wierd that only a short time ago I didn't want anything to do with @PERSON1 and now I was walking around @ORGANIZATION1 laughing and just having a good time. That was about three years or so ago. Shortly after @PERSON1 had to leave. Many rumors were told @CAPS6 because he didn't really tell anyone other than the fact that the council had asked him to leave. No matter the reason I still am in touch with him and am glad that the day at @ORGANIZATION1 had happended." 18 20 38 4 3 4 3 3 4 4 4 4 4 4 4 +21559 8 " Though my sister and I have very different personalities, and much of the time do not find humor in the same things we have still shared some humorous moments. It's the times you decide to just go with the flow and enjoy someones company instead of letting it bug you. One sunny day in @LOCATION1 I had some how convinced my sister to go rollerblading with me. My dad drove us to a park that had a huge pond in the middle of it. The pond was nice in the fact that there was a smooth side walk that circulated all the way around the pond for my sister and I to @CAPS1 on. The pond was not so nice in the fact that it was very littered with ducks ans geese and of course their droppings as well. We always thought of the ponds water as one of the most disgusting things on earth. We got our roller-blades on and carefully stood up. Our dad was going to take a nap in the car wile we made our laps around the lake. As we skated we noticed a man and a woman sharing a date together in a very small boat. They were totally unaware that their boat was tipping strongly to one side. My sister and I thought it would be hilarious if all of a sudden the boat tipped over.We let that thought pass and continued in our rout. On our next lap around we heard a woman yelling. we looked up and saw that it was the woman who had been in the boat. The woman was now standing on the shore yelling at the man to get all her belongings that had fallen out of the boat and were now floating in the gross pond water. The man was waiting in the water up to his chest collecting their items and trying to deal with his upside down boat. ""That date was defiantly unsuccessful"", I thought. We could hardly contain our selves from bursting out with laughter. We roller bladed back to the car as fast as we could. My sister was in front of me and when she tried to stop she couldn't. She basically body slammed the car, fell back, and rolled right underneath it. My dad rapidly opened the door to find me crying with laughter. We pulled my sister out from under the car and drove home. " 15 16 31 3 3 4 4 3 3 3 3 4 4 4 3 +21560 8 " When I told my mom that I wanted to @CAPS5 from sunset to sunrise to raise money for a trip to @LOCATION1, she laughed. Her laugh was one of utter sarcasm, as if she was saying, ""Is this a joke?"". Yet, when the crazy idea of running for @NUM1 hours straight was truly thought through, the laughter began to melt away. The idea made sense; I wanted to go to @LOCATION1 with my school's band with a cost of roughly @MONEY1. My family didn't have that money, and I certainly wasn't going to bribe my neighbors penny by penny to buy cheap cookie dough from a magazine. I needed to earn my money, in a way that not only was meaningful, but also efficient. What better way to do that then to do a long distance @CAPS5; a skill that I not only loved, but was also good at? The plan started small; I would @CAPS5 from sunset to sunrise with some friends, wanting to raise about @MONEY2. After consulting my distance coach, I realized that running for @NUM1 hours would entitle me to over @NUM3 consecutive miles.So what if I was fifteen years old and had never even ran a marathon before? Something in me told me it was possible. And so we laid out the plan; I was to @CAPS5 about @NUM4 miles a week, with three hour runs on @DATE3. I ran about ten miles a day, including hill repeats, running backwards, and many, many lunges. For some reason, both my coach and I agreed that I could do it. Running was one thing, but then there was the reason behind the running; raising money. A family friend, @PERSON1, who was both a runner and an organization whiz, helped me out. When I informed him that my goal was to raise @MONEY2, he looked at me and firmly said that I could do better. We started out with local businesses, asking for things ranging from bananas to an energy gel called ""@CAPS1"". @PERSON1 taught me how to dress, talk, and present to each business, helping me create a flier to put up in coffee houses, and a way to organize the money I brought in. Next, came the friends. Surprisingly, I found that a lot of my friends not only wanted to donate, but also wanted to participate in the all-@CAPS4 @CAPS5, and thus was created the running ""shifts"". Soon, I had about twenty people who were going to @CAPS5 with me, ten businesses who sponsoring me, and four ""drivers"" who drove cars with mattresses, food, and water in the back to support me and my ""crew"". Before I knew it, my whole community was cheering me and that crazy, laughable idea on. The @CAPS4 of the ""@CAPS2 @CAPS3 All-@CAPS4 @CAPS5"" came before I knew it. The day before my stomach was twisted in knots, and it almost impossible to rest. Yet, as people arrived ready to @CAPS5, drive, and cheer the whole event on, my fears began to subside. The weather was wonderful, with clear skies and decently warm temperatures for early @DATE4, and everybody who came were cheerful and encouraging. As the sun set on that fateful day of @DATE1, a group of roughly twenty teenagers all with a crazy goal and strong spirits, set off from my home in an awkward jog, knowing that they would return when the sun rose the next day having conquered something almost impossible. As we ran, headlamps were turned on, music was cranked up, quirky runner games played to pass the time, and silly songs were sung to keep our feet moving in the briskly cool @CAPS4. The hardest part for me was returning to my home after @NUM5 miles for a bathroom break around @TIME1 and realizing that I still had seven hours left. As the miles and minutes began to blend together in the seemingly endless @CAPS4, it became hard for me to believe that the sun would ever rise again. We all wanted so badly just to stop, rest, and sleep. That @CAPS4, with our feet pounding the cold pavement, we ran like shadows through the endless @CAPS4, our eyes searching for the sunrise that would signify our time to stop. The sunrise that rose the morning of @DATE2 at @NUM6 am was the most welcoming sight I had ever seen. @NUM7 miles behind me, and well over @NUM8 for each person in my group, we were all exhausted and cold to the bone. Everyone who had been resting jumped out of the support cars and joined me for the last mile, every one of us watching with awe as light seeped into the darkness, stunning the quiet, frost-covered world on with warm light. The sun rose big and orange, and when my feet finally stopped, an exhausted yet exuberant shout left the throats of everyone. It was then, in that gorgeous sunrise, that me and mom hugged and laughed; a laugh that was not sarcastic, but spoke of how a girl who had done the impossible." 28 22 44 44 6 6 6 6 6 5 5 5 5 4 4 4 5 5 5 5 4 4 +21561 8 " My best friend is probably my brother, @PERSON2. It was in the middle of @DATE1 and we were sitting outside on top of the wooden table in our mother's backyard. @PERSON2 started telling me how much he wanted to be done with high school and that he was, ""just done with all this."" I sat there listening attentively for maybe thirty minutes as @PERSON2 poured his heart out, and nearly broke mine with how distressed he was. @PERSON2's best friend, @PERSON1, had just told @PERSON2 that @CAPS1 he went out with the girl @PERSON2 liked, then their friendship was over. @PERSON2 was extremely hurt by this betrayal added on top of how he was afraid of getting kicked out of school because of his grades, and the amount of pressure coming from our parents at the time, was simply too much for seventeen year old @PERSON2 to handle. I talked to @PERSON2 for at least another half hour after that about what I thought he should do, at the end of our heart to heart talk I told @PERSON2 that, ""@CAPS1 you don't get it together and start geting good grades, their going to kick you out of school, @PERSON2. Honestly, @CAPS1 that happens I'm going to be really mad at you; becaus the only person @CAPS2 and @CAPS3 are going to have to nag on is me."" We both laughed quietly for a minute, paused, and laughed until we cried. I don't know to this day what was so funny, maybe how serious everything was when we were just kids or @CAPS1 it was simply a release of stress and anxiety for both of us. My tiny, little, lame joke that I dropped at the end of our talk just made it all seem okay, made us think about how young we are, how minor so many of these problems were in the grand scheme of life. That inital laughter made is possible for us to simply let go. After this happened @PERSON2 and I went on with our lives as @CAPS1 this had never happened, never speaking of it. Except that @PERSON2 never got a bad grade in the rest of his high school career, he chose his friend over a chance at the girl but found another girl who has @ORGANIZATION1's approval. Was it laughter that helped @PERSON2 get through this difficult time? I couldn't say, but what I do know is that there was laughter there and @PERSON2 did what he needed to do." 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +21563 8 " The sound of laughter could be one that breaks all barriers. Just a single giggle or quiet chuckle can expand someone's world. Laughter is a sign. It's something that tells someone new ideas, desires, or dreams are going to be created. Once one laughs, he or she getting along with someone -- they're forming a relationship. The first time @PERSON1 and I laughed together, there was no doubt in my mind it was the start of something new. Once I heard his cautious, unsure, delighted, and just @CAPS2-so-very-cute giggle, I was set and ready to be swept off my feet. I was privileged to hear that laugh for three days of my summer in the year @DATE2. It was a @DATE1, and for the past four days I was bounding and skipping throughout mountains and hills in the never ending desert of @LOCATION2, @LOCATION1. That day, my cousin @CAPS1 and I were about to wander in to a familiar territory of ours: the mall. As a bonus, that cautious, unsure, delighted, and just @CAPS2-so-very-cute giggle was bounding and skipping along with us. When @PERSON1 walked over to us in the food court, he definitely succeeded in playing it cool. You could tell he actually made time to comb his hair and decide what he was going to wear just to look as spiffy as he was. ""@CAPS2, hey guys!"" he called out smoothly. Our eyes met immediately, and already my cheeks hurt. The next few minutes that we spent together were crucial. I needed to make a good impression on this guy. We stood in the line of @ORGANIZATION1, where he would retrieve his usual order of two @CAPS3 @CAPS4' @CAPS5 without lettuce, a large order of fries, and a large @CAPS6. Pepper. As for me, all I wanted was a small vanilla ice cream cone. Glancing over at the other register, I saw @PERSON1 turn his head my way in the corner of my eye. ""@CAPS7, do you have @MONEY1?"" he hesitantly asked me. He fiddled with his pockets a little, while also brushing his luscious blond locks from his face. I chuckled silently to myself, and his reaction was one that is to this day one of my favorite things about him -- his smile. Still chuckling, I said ""@CAPS8,"" and carefully handed him the @MONEY1. To this day, @PERSON1 is my very best friend. Eventually, I did get back the @MONEY1 he owed me. Ever since that one moment when we were standing in the waiting line at @ORGANIZATION1, the next several hours were jam-packed with laughter. I don't really remember a single thing he said that didn't at the very least make me grin as hard as I could. Literally, with several leaps and flips, on that day I made a new friend. And even then, I was completely unaware of the amazing journey there was to come with this boy. It was all because of that very first natural instinct @PERSON1 and I both had towards each other; to laugh. If I had never laughed so hard my stomach was aching, or never laughed so hard tears were running down my cheeks, there is just no way we would have had the connection that we did. His unsure, delighted, and just @CAPS2-so-very-cute giggle never gets old. Laughter is one of the main keys in our friendship. One of us has to let out a little cackle every once in a while. Also, @PERSON1 is still in @LOCATION2. I'm not. As badly as we both wish we could be, we're not in the same place. We need to be able to thrive and grow in separate places. So, with that, if someone once said, ""Laughter is the shortest distance between two people."" then they were absolutely correct. When @PERSON1 and I laugh together, it doesn't feel like we're fifteen hundred miles apart. So this laughter, this just @CAPS2-so-very-cute giggle, is an element and part of my life that I am indescribably grateful for. This laughter formed one of the greatest relationships in my short fifteen years of life, and I sincerely hope it will form many more wonderful memories in the years to come." 21 25 46 5 4 5 4 4 4 5 5 5 5 5 5 +21564 8 " The surrounding area is dimly lit, accompanied by a fluorescent lamp shaded in the corner. Our blaring television screening an action packed, science fiction movie drowns out profane rap music escaping from my brothers headphones. Cuddled up on the couch my sister, @PERSON2, and I alternate braiding each others hair. Our small kittens @ORGANIZATION2 and @PERSON1 race to their food and water. As always @PERSON1 is superior and @ORGANIZATION2 scurries up the dining room chairs, defeated. Irritated @CAPS1 @CAPS2 sighs heavily with frustration once @ORGANIZATION2 trips his laptop charger and rips it out of the socket. Keys jingle, the door slams, speedy footsteps: @CAPS3's home! By now it is @NUM1 o'clock and we have settled on the couch and everybody seat checks after snatching some food. The aroma of spicy @CAPS4 food steams the entire apartment as everybody feasts on chalupas and gulps down @ORGANIZATION1 from @LOCATION1. Napkins are distributed and the cats linger around our feet, waiting for their share. The last bite of my chalupa is portioned between the cats, which causes a bit of ruckus. @PERSON1 undertakes @ORGANIZATION2! The thief in @PERSON1's attitude begin to shine through as she robs @ORGANIZATION2's portion. This causes @ORGANIZATION2 to hiss at her, and proceed to hop onto the coffee table. On the way, she charges through the five drinks at the end of the table, managing to knock over two of them. Then the nacho cheese, being very unnoticeable, coats her striped gray paw leaving one-inch, yellow-orange circles to puzzle us. Minute but sharp white teeth are exposed and she devours the remains of @PERSON2's chalupa. Raining down the coffee table are trails of blue fizzy @ORGANIZATION1, and puddles gather at my feet the new suede couch. Smothered by booming laughter, @PERSON2 screams at @ORGANIZATION2 for stealing her chalupa. Following the escape of @ORGANIZATION2, @PERSON1 trots innocently behind her. My sister is still steaming angrily so in attempt to calm her down, I take off my newly @ORGANIZATION1 @ORGANIZATION1-stained sock and catapult the mess toward her head. Instead of the sock slapping her in the face like I had hoped, it whistled past her ear and splashed in the fullness of my mothers stomach. Between the sock and the cats, the whole family is cracking up! @CAPS1 @CAPS2 reenacts the situation and his wild sound effects encourage our laughter even more. After a few minutes, the chuckles die down and we prepare ourselves for the next humorous incident. I am freezing and muddy after a rainy softball practice, my siblings are just lounging around, @CAPS1 @CAPS2 is frustrated from failure of employment, and @CAPS3 is weary and exhausted from a long day at work. We all look forward to what the night has in store for us: laying our busy brains on a fluffy pillow and allowing slumber to take over our life for the next @NUM1 hours. Looking past our sleepiness, we can still happily spend time with one another. Considering the fact that @PERSON1 is younger than @ORGANIZATION2, hilarious situations such as this, amuse my family daily. Surprisingly @ORGANIZATION2 wore the warrior suit this time which added a few extra minutes to the process of the hilarity. Not only that, by also the fact that it took a toll on everybody's dinner. My family is blessed with the knowledge of seeing light in odd situations. The main element in our memorable moments is laughter. Laughter is one of the few bonds our family will hold forever. " 21 20 41 4 5 4 5 4 4 4 4 4 4 4 4 +21566 8 " Learning to laugh @DATE1 as we were vacationing in @LOCATION2, I realized that laughter is a big part of our lives, and an important factor that can keep friends and families together. Not too long ago I also discovered that laughter can relieve you from stress, and it even helps you lose weight, which, I thought was pretty interesting. My sister on the other hand still did not quite believe that laughter could do all of that. She thought it was just being blown out of proportion. She believed that if her friends didn't want to hang around with her, then there was something wrong with them, that if we didn't have enough food in the house, it was probably my parents fault. There was always some one to blame for whatever happened to her, there was always a bad side to everything. But that @DATE1 it was going to be different she was about to find out that she didn't have to live her live that way, because there is always an alternative. The trip to @LOCATION2 was something everyone was expecting, even me. I was actually really excited to see my cousins and the rest of the family. Everybody packed their things, we got ready to leave, got on the car and left to the air port. My aunt @CAPS1 was already waiting for us at the @LOCATION2 city airport. Everything was going great. So far... When we got there, my aunt drove all of us to our little town in the state of @LOCATION1, just about an hour and a half away from the airport. As we were getting there I noticed my sister had a strange look on her face, she seemed somehow confused, lost in her own thoughts as if she was worried about something.""@CAPS2's wrong with you, are you okay? you look all weird..."" I said sounding a little sarcastic and hoping to start a conversation.""@CAPS3 face is all weird!""she said and that was the @DATE1 thing she said to me until we reached our destination. As we got to our grandparents house we begun to see all our family members already waiting for us outside. The joy of seeing them there was incredible. I looked around around and i saw my sister, I was glad that she looked happy, i thought she was actually enjoying the moment. I did not know @CAPS2 was wrong with her and her sudden attitude changes until we got to the little playground my grandma has in the backyard. During my time there I met new family members, saw some old familiar faces and remembered some good and also bad memories, memories which I thought had vanished from my mind already. Turns out they were still there, all the way at the back of my head were I had tried to hide them so that they would never come up again, but somehow they managed to get out and make their way into my thoughts again, and that is when I started to feel like a monster once again. Suddenly I had a flash back to the time when we came to visit, a couple of years ago. That's when it all came to me i saw the whole scene once again I felt horrible. There she was, my little sister @PERSON1 playing in the swings, suddenly she let go of the swing and she felt right into a mud puddle that was there. Every body laughed, I laughed. I thought it was funny, but she didn't laugh, she didn't cry either, she just got up and ran inside. I never stopped to ask her if she was okay, I didn't realize how my actions had affected her. It was all my fault, I knew she was really sensitive when it came down to some specific situations, but I did not help her, I didn't give her the comfort and support she needed from her big sister, so she never learned to laugh at herself and keep going. That would have been a nice advice to give her instead of laughing at her. Then, after a couple of minutes of reflection about it, I went up to her and apologized, she looked a little confused at first, but then she realized where i was going. This made the rest of the trip a lot more easier, now that I knew @CAPS2 was wrong, we both tried our best to fix the problem and work on her self esteem. Laughter was the perfect therapy for her. All she needed to do was to learn how to laugh about her self when things did not go the way she wanted them. It was hard but we accomplished our goal. My sister discovered the power of laughter, and she learned to get back up from her mistakes. Life taught both of us an important lesson that @DATE1. I'm sure that was one of the most exciting trips we've ever taken and the memories from that trip will stay with us forever." 19 18 37 5 4 5 4 4 3 4 4 4 4 4 3 +21567 8 "Laughter I've always been one who laughs a lot. It does not take much effort for me to bust out in a laughing fit, the topic doesn't even need to be that funny. I'm not the type to do the ""nervous laugh"" though. I think my laugh fits me well because I am quiet, just like my laugh. I always get a little embarrassed when my laugh gets louder than usual. The weather lately has been very cold with snow falling here and there. I have just been itching for some good, warm swimming weather. This past weekend my boyfriend, @PERSON1, and I went up to the mountains to play in the deep snow. After a few hours of being up in the snow we headed back down the mountain to go to his house and use his hot tub.Obviously it was very cold and me, being more of a fair weather girl, just wanted to go somewhere to warm up. First we stopped by my house so i could grab my swim suite that I recently ordered off line and was dying to use it. We left our clothes in the back room and ran out in the cold to get in the hot tub on his back patio. The hot water felt so good; it relaxed my body of ice and my tense muscles. We were in the hot tub for about forty five minutes before we noticed how hungry we were. Since we had gotten all warmed up we decided @CAPS1 sounded good. We jumped out of the hot tub and ran for the back room to dry off and get our clothes on. I had gotten all dried off and started to put my jeans back on. When I put my first leg in my jeans I just had a feeling that I was going to fall. Sure enough, when I got my second leg half way in the other side I lost my balance, tripped over a huge exercise machine, and fell hard on my butt. I started busting out laughing, along with @PERSON1, I was a bit embarrassed but at least it didn't hurt too bad. After I had gotten up and walked around for a few minutes my butt started to hurt more and more. @PERSON1 kept making jokes about me falling, even though they were pretty funny, I tried not to laugh. He was facing me while we were having a conversation, when we were done talking he turned towards the door to leave and hit his head square on the exact same exercise machine I had tripped over just minutes before. Instantly, I was bent over laughing. I could not move, I was laughing to hard. It looked like it had to hurt when he hit his head, he had a nice red bump under his eye. He didn't find it nearly as funny as I did and just walked out the door. Still, laughing hysterically I tried to follow him out the door but it was hard to move from laughing so much. My stomach was hurting from all the laughing when it finally started to subside. Still having a little giggle left in me, I walked to his pickup to wait for him while he was talking to his dad. When I turned around to see if he was coming I started laughing again just seeing him walking to the pick up. The look on his face when he seen me laughing again was just priceless. I could imagine why I looked ridiculous to him; sitting all by myself in his pickup laughing hysterically again. Laughter is one of the very few things in this world that is free. Everybody's laugh is unique and can change due to the situation. There are many different laughs a person can have such as nervous, happy, giddy, and so on. If people can share a laugh it can bring them together. Through out the world laughter is a universal sign of happiness. People of any age, race, or religion can share a laugh. Over all, laughter is just a great feeling." 20 25 45 4 4 4 4 4 4 5 5 5 5 5 5 +21568 8 " It all began one morning when I heard my hulking mass of an alarm-clock spouting off again. So I reached over and pushed the button to turn the exceedingly loud contraption off. When I noticed that I have woken up ten minutes late, and so I jumped out of the bed and sprinted to the shower. When I was finished, I got dressed in my @CAPS1-shirt and jeans, which is what I normally wear, then unplugged my cell phone from the charger and placed it in my pocket. Having dealt with the situation at hand, I went down the stairs and into the kitchen to prepare the modest meal of oatmeal. After I was finished eating, I packed up my books and walked back up the stairs to brush my teeth. After doing so, I swiped my coat and hat in one fell swoop. I secured them to my person, grabbed my back-pack , and walked out the door. I stood there on that cold and rainy morning, pondering what the day would hold for me. Suddenly , their was a great noise, I turned to face the approaching threat only to find that the bus had arrived. My mind quickly recovered from @CAPS2 slightly startled state and I stepped onto the bus. The bus ride was no different from the others, kids squawking about what happened at school yesterday, what they are doing @CAPS2 @DATE1, and other seemingly useless conversation. There I sat my eyes fixed gazing out the window of the bus, watching , studying , and mapping the present course of the massive vehicle. We stopped at one of the bus stops, and on the bus came my good friend @PERSON1. As usual she came and sat down next to me and we started talking about the usual cars, music, and the occasional jokes. As I started to develop a creative and captivating joke, she just belted one out right off the top of her head. We both just started busting up laughing, I even felt a tear form in the pit of my eye. We didn'@CAPS1 stop laughing until we got to the school,and my joke was successfully forgotten. The joke lingered in my head all day long, to @CAPS2 day I still think it is one of the best I've ever heard. Through all of the countless jokes, underhanded comments, and puns I've heard, that one brought about the most laughter of all. But then @PERSON1 moved away to another city, @CAPS2 was a sad day. The very next day I heard the age old saying, ""@CAPS2 one time at band camp....."", story and laughter was restored to my life. I learned something that day that friends my move away but the jokes that were said will still remain." 20 19 40 40 4 4 4 4 4 4 3 4 4 3 4 4 4 4 4 4 4 4 +21569 8 " It all started when my eighth grade class had a plan to go see a movie together. I had the idea to see a movie, so i picked a few movies that were in theaters. The choices were between, '@CAPS1 @CAPS2,' @CAPS3 of the @CAPS4,' and another movie that i cant remember. We, as a group, decided to go to @CAPS3 of the @CAPS4. The movie stars @PERSON1, and @CAPS7 from @CAPS8 @CAPS9. I thought that the movie was really good but there was one part in the movie that made me laugh so so hard. The scene starts out with @PERSON1 and @CAPS7 wandering around trying to find a place to stay for the night; and they seemed to have @CAPS4 @LOCATION1; @LOCATION1 plays an important part on the movie. After a long day full of scary situations, they find a good size cave that they decide is a good spot to stay for the night. Back tracking a little bit, earlier that day, and in the movie, @PERSON1 came across a native fellow named @LOCATION1. @LOCATION1 is a a man like creature that walked like a monkey but has the face of a human but has an all around harry body. They came across him while traveling through the desert and saved him from execution; for that, @LOCATION1 is very grateful and is @CAPS11 guide around the mysterious @CAPS3 that is foreign to man and that has never been seen by man. Back to what i was talking abot earlier, when @PERSON1 and @CAPS7 end up in the cave the see two full body skeletons sitting at a table that has an old record player on it, but the record is playing and making music. Just a second later @LOCATION1 comes in the frame of the scene and does a little dance that puts him close to, but in front of the table. Then @LOCATION1 does multiple pelvis thrusts to different directions, basically humping the air. Watching that scene made me laugh the hardest that i have ever laughed in my life. To this day i look back at it and laugh just as hard as i did the first time i saw the movie. About a month later, I went over to one of my good friends houses and we watched the movie again. When we got to the scene of @CAPS13 jig, we both fell down, off of the couch laughing. We replayed that scene about ten more times and ended up crying because we were laughing so hard. Laughter is good for the soul and moral, and for friendship building. Thank the @CAPS14 that he made us laugh!" 18 16 34 3 3 3 4 4 4 3 3 3 4 4 3 +21570 8 "Laughter A true story that involves @CAPS4 and laughter was when i was hanging out with my @CAPS1 @CAPS2, @PERSON1, and her fiance @PERSON4 (who is a profesional quad racer) at a @ORGANIZATION1 concert in @LOCATION2. The concert was the best concert i have ever been to and probably the best one i will ever go to because @ORGANIZATION1 is my favorite band. They even played the song that made them, its called @CAPS3 @CAPS4. When we were there the music was really loud and a bunch of people were drinking and getting drunk and doing stupid stuff. Like this one guy who was standing behind his girlfriend who was sitting down in the grass, this guy had a few too many to drink. He was standing behind his girlfriend laughing at a joke that oneof his drunk buddies told him and then he leans on his girlfriend but just falls on her and folds her right in half like a lawn chair. My @CAPS1 and @CAPS4 started laughing, it was pretty funny. But then the guys girlfriend got up and walked out of the stadium so he got pretty sad. The rest of the concert was pretty funny. The front rows seats were only for people over @NUM1 because during the concert the band would bring out some beer guns and shower the front rows with beer. The front rows were the craziest rows. The back rows were pretty crazy too, people were smoking marijuiana in the back rows, but we werent. When we left we all smelled like weed and didnt want to get pulled over for any reason and have the cop think that we were drugies. It was a long ride home, we live in @LOCATION3, @ORGANIZATION2 and we drove to @LOCATION4, @LOCATION2 and back in one day. I was so tired, we didnt even take any chairs to the concert so we had to stand up in the same spot for about @NUM2 hours. But it was all worth it to see my favorite band in concert. They had a few other bands before them that were also great. Bands like; @PERSON2, @CAPS5/@CAPS6, and @CAPS7. So it was deffinetly the best concert I have ever been to. The second best concert ive ever been to was a @CAPS8 concert in @LOCATION1 with my @CAPS9 @PERSON3 and @PERSON1 @PERSON1 during the @CAPS10 @CAPS11. There were a lot of things we did before the concert like; look at animals, eat, go on rides, buy things, eat more, get drinks, and walk around the @CAPS11. A lot of things made @CAPS4 laughlike when my @PERSON1 stepped in horse and goat poop and when my mom dropped her food on her lap. The concert was really cool, they played some songs to there new album @CAPS12 and @CAPS13. It wasnt as long as the drive to the @ORGANIZATION1 concert and it wasnt as good. But it was still awesome." 16 15 31 3 3 4 4 4 3 3 3 4 3 3 3 +21571 8 " The Laughter In @CAPS1 @CAPS2 are so many elements in a person's life that are important. Many are to make friends, be successful, but mostly to find happiness. Everyone wants happiness in their life right? The biggest form of happiness comes from your heart. Many believe that laughter comes from your heart and is believed to make you and others around you truly happy. One element to laughter being important in a relationship would be optimism to your partner and friends. This shows people that you aren't just a pessimistic, rude, unhappy person all the time. You can actually enjoy life and have a good time.After all no one wants to hang out with someone who is always negative and only looks at the bad things. Your partner will get sick of you and you will lose friends. Being able to laugh and joke around with people makes life a whole lot easier.It @MONTH1 not seem like much but it takes some stress off your shoulders if you have a good time and kick some giggle's. Another reason why laughter is so important in a relationship would be the sound of your laugh. What if you get a boyfriend our girlfriend and they had never heard your laugh before and once they heard your laugh they thought it was the most annoying thing in the world? Studies show they would be more than likely to leave you. On that note, if you do have a terribly annoying laugh and that is the reason you dont want to laugh, I would stick with smiling because us girls have pretty cute smiles that let us get away with alot. Lastly, @CAPS2 is one more main part of laughter being important in a relationship and that is happiness. You need to laugh to to be happy. Without laughter what is a smile? Without laughter how will happiness shine through? Lif e can get pretty boring when all you do is act like a mime. No smiling, no laughing, not fun! When you laugh, it helps others to laugh and have a good time. Plus, its fun! Like when you laugh so hard you cry or when you need to go to the bathroom really bad and it makes it worse when you start busting up laughing. Laughing makes memories. And memories are a very important part of growing up. So now that you have learned these three elements as to why or how laughing is important to anyones life, relationship or friendship, go out and laugh. It will make you feel a whole lot better. :)" 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21573 8 " Hello my name is @CAPS1 @CAPS11 i am going to walk you through one of the most hilarious experiences i have ever had. It is a story about me @CAPS11 my friends @CAPS11 a little adventure we had @DATE1, a day we would never forget. It starts off on one of the nicest days i had ever seen, i mean amazing, blue sky's, warm @DATE1 air, @CAPS11 the sound of the laughter coming from the children playing in the street. Me @CAPS11 my three friends @PERSON3, @PERSON1, @CAPS11 @CAPS2 were sitting on my back porch in a circle playing our guitars, as usual @CAPS11 we decided that we needed to go do something, something new. As we sat @CAPS11 thought about what we could do nothing came to mind. Until @PERSON1 suggested that we go to the beach @CAPS11 meet up with his cousin ""@CAPS3 has a nice house right on the beach @CAPS11 probably wouldn't care if we stopped by."" @CAPS3 said. The three of us looked at each other @CAPS11 looked an @PERSON1 @CAPS11 said ""lets go!"" We packed our boards, guitars, @CAPS11 food @CAPS11 we headed out. On the way we decided to go to the @CAPS4 city skate park, none of us had ever been @CAPS5. We drove around for at least an hour looking for it. Aggravated @CAPS11 about to give up on finding the park we decided to take one @DATE1 loop @CAPS11 @CAPS10 what happened. ""@CAPS5 it is"" yelled @CAPS2 ""@CAPS5's the park i found it."" We looked off in the distance @CAPS11 @CAPS5 it was. The cradle, the snake run, everything. we pulled in @CAPS11 parked. We got out of the car ready to skate, but then out of nowhere it started pouring @CAPS11 the park was soaked. we headed back to the car seeking shelter only to find that @PERSON3 had locked his keys in the car. Luckily @CAPS3 had @CAPS7 so @CAPS3 called them @CAPS11 had them come @CAPS11 unlock the car. it took them an hour @CAPS11 a half to find us @CAPS11 unlock the car. Now we were all mad @CAPS11 wondering if it was a good choice to go on this trip. @CAPS8 leaving the park we decided it would just be best if we went to @PERSON1's cousins house @CAPS11 stayed @CAPS5 for the @TIME1. When we got @CAPS5 we were greeted with open arms @CAPS11 warm clothes, ""looks like you guys have had a rough one"" @CAPS3 said, ""I'm @PERSON2, I'm sure @PERSON1 has told you all about me by now."" @CAPS8 we changed in to the clothes @PERSON2 had given us we went @CAPS11 sat by his fireplace to warm up. The five of us sat @CAPS5 @CAPS11 talk for what felt like forever. Then I said ""i wish we could have a big fire on the beach."" ""we can"" @PERSON2 said, ""i know the perfect place."" @CAPS3 took us to a small bay on the beach about @NUM1 yards away from his house, @CAPS3 called it driftwood bay. ""@CAPS10, told you i had the perfect spot."" @CAPS11 it was perfect, secluded, sandy, @CAPS11 all the firewood you could ever need. We built a fire @CAPS11 kept throwing wood on it until it was over @NUM2 feet tall. For the rest of the day @CAPS11 on through the @TIME1 we sat around the fire, playing our guitars in a circle, @CAPS11 telling the story of our day. Laughing @CAPS11 noticing that even tho the beginning of our day wasn't very fun we closed it the only way we could have wanted, sitting around a fire, music playing in the @TIME1, @CAPS11 sharing a good laugh with your friends." 17 18 35 4 4 4 4 3 3 4 4 4 4 4 3 +21574 8 " Laughter means a lot in a relationship in @CAPS4 opinion. Laughter can mean a few things. It can mean that you are having fun and that you're enjoying life. All of @CAPS4 friendships and relationships contain laughter. Half of the time we laugh, the other half we express ourselves. Laughter could also mean the beginning or ending of a relationship. A lot of people would think that laughter is a joyful reaction, but sometimes a person could be laughing because they are nervous. But I think what we are talking about here is the joyful kind. All of @CAPS4 friendships contain laughter, but they also contain the moments when someone needs to be listened to or heard. One of @CAPS4 friendships that contains a lot of laughter is with @CAPS4 friend @PERSON3. Ever since the day that I first met her, we've laughed a lot. Usually, its @PERSON3 being the joker and me being the audience along with a few other people. But, there are also moments that don't have laughing involved. Moments, when @PERSON3 can be a great listener. Making jokes and giggling can show how close you are to someone. Like @CAPS4 friend @PERSON2 and I. She's one of @CAPS4 closest friends. We share everything with each other, well at least almost everything. We tell each other whats going on in our families and all that good stuff. But there are so many moments that are just filled with laughing, giggling and making up jokes about @CAPS5 knows what. Whether its twisted in some weird way or even when it doesn't make sense we still laugh about it. It doesn't matter how stupid I @MONTH1 act around her, we always laugh it off and make fun of each other. Not in a bad way. Usually, when people fall down, they feel embarrassed or scared of what everyone else would say. There was a time that I was sitting on @CAPS4 friend, @PERSON4's skateboard, just sitting and rolling up and down the sidewalk, when I came upon a bump. I'm pretty sure you could guess what happens next. I flew off the skateboard and landed on @CAPS4 butt on the cement. I sat there for a second and just stared. Shocked that I had flew off of a skateboard while just sitting down. Pretty disappointing. But the next thing I knew, I was laughing, like it didn't even matter that I had just landed on @CAPS4 butt, infront of one of @CAPS4 friends. @PERSON4 was laughing too. I didn't mind. @PERSON4 didn't even tease me about it. Laughing can shrug things off your shoulders helping you turn it into a joke. That's what I did. @CAPS4 relationship with @CAPS4 @CAPS1 is full of jokes. @CAPS4 @CAPS1 is the type of guy @CAPS5 just loves to tell jokes and/or act like some historical figure to confuse people. When I answer the phone half of the time @CAPS4 @CAPS1 tries to see if I'll fall for one of his little tricks. One time, he tried saying that he was @PERSON1 and that he invented all these different electrical items. I shook @CAPS4 head was like, ""@CAPS1, you're not very good at acting."" @CAPS2 he said, ""I'm not your @CAPS1. this is seriously @PERSON1."" I laughed and said ""@PERSON1 is dead. How could he be talking to me over the phone when he's dead, @CAPS1? I know it's you."" @CAPS4 @CAPS1 laughed, ""@CAPS5 told you I was dead? Obviously, I'm still here, little lady."" I smiled, ""@CAPS6 huh. Sure. And I'm not a little lady."" ""@CAPS7 fine, I give up. You can't get a joke, can you?"" , he said. I frowned, ""Of course I can what are you talking about, @LOCATION1? It's just you're not very good at acting."" ""@CAPS7 sure, blame it on me."" , he laughed, ""where's your mother?"" That's when the joke ended of course, but @CAPS4 @CAPS1 and I actually have a strong relationship. He's @CAPS4 adopted @CAPS1, in case that hasn't been mentioned. So, when I first met him, we weren't as close as you could probably guess. But after a year, we got closer and I learned that I could trust him. And that half of what he says is basically a joke. Sometimes, I wonder if he ever knows how to be serious, so he doesn't confuse people, for example, me. For me, relationships should always have laughter otherwise it just makes it all serious. Making it very hard to stay close, in @CAPS4 opinion. And me, myself, I like laughing and having close friends. Because when I'm feeling down, it's always nice to have someone there to make you smile and laugh. It's a great quality to be able to laugh and help people. Without laughter in the world, like I said before the world would be too serious, way too serious. @CAPS5 would want that? I wouldn't. That would be terrible. When people laugh, it makes the world a better place to live in, in @CAPS4 opinion. Laughing is a gift, a very special gift." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21575 8 " To me laughter Is someone showing joy and excitement to the others around them. Laughter @MONTH1 some times be used In the wrong kind of way such as @CAPS1 someone where to get hurt In any kind of way the other person laughs at them when @CAPS2 hurt them. When I can make someone else laugh or giggle @CAPS2 not only makes me fill good but also the other person I was talking to. @CAPS2 shows both of us that we can be happy and that there Is joy @CAPS4 of us. I have a friend that I go to school with everyday and he always just looks so grumpy and or upset. And when someone asks him what Is wrong or @CAPS1 he Is okay @CAPS2 seems that he just gets more angry. So me being one of his closer friends I try and help him with that, and so far @CAPS2 has been working and I can make him happy by laughing and getting a big smile on his face. Every time I see him In the hall way or even out of school I will always say something to him to get him to smile and laugh. And by the way I show him I care and him knowing that I don't want him to be grumpy to others we have grew a bond and we seem to spend a lot more time together. And by him being In a better mood @CAPS2 makes his hole day of school lot funner and more enjoyable, and for all the others that are around him. @CAPS1 I were to explain who I was I would say that I am a very happy person and that I have respect for others and I express and show others that. Being happy brings joy to other people that are surrounding you witch usually leads to laughter. Laughter Is a very Important part of your daily life and I think that @CAPS2 brings people closer, so use @CAPS2 don't be afraid." 15 15 30 3 3 4 4 3 3 3 3 3 3 3 3 +21577 8 " Laughter is important in any relationship because it brings two people closer, connecting them between something they have in common forming an unbreakable bond between the two of them laughter is the glue that holds together any relationship and keeps a person from breaking into tears when something wrong happens. In fact without laughter I probably would not even get through my day to day school life. Without laughter one class in particular would be a nightmare. In @ORGANIZATION1 we are dissecting cats and we are working with a partner, if I was not making jokes and laughing while I worked, my partner and I would have hated each other. We got to choose our partner and work at a lab station with another pair of students, fortunately for me I knew all of the people I was working near and with, and I was friends with all of them. we had to wear gloves and suits so we didn't get fluids or ""cat juices"" on us. First, we had to skin the cat, of course there is more than one way to do this, you can cut, slice, rip, and pull to remove the skin. Then we had to view and identify the muscles this was especially hard because we could not tell where one muscle begins and another ends. Next we had to remove the muscles and identify the bones and digestive organs. After we identified the bones and digestive organs, we had to remove them and view the stomach, liver, intestines, and kidneys. We had to cut open the stomach, intestines, and kidneys to look at the structure of them. lastly, we had to remove the heart and lungs. The class was told we are doing dissections for about a month and it has only been three weeks. You can only imagine how horrible and fascinating it is and how much I need laughter to keep myself together and from going insane. My friends keep me from breaking into tears and keep me laughing. Dissecting cats in @ORGANIZATION1 @ORGANIZATION1 @ORGANIZATION1 was challenging not only physically, but mentally challenging as well. It stressful, fascinating, and gross, and without the jokes and the laughter I do not think I would have never made it through it. My friends support there when I needed it guided me through the terrible assignment. So as you can clearly see, without laughter I would not be able to do some of the day to day things I do at school." 18 20 40 40 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 +21578 8 " A couple years ago when I was in middle school I meet one of my bestfriend which who I have great times with. When I first meet her was in math class where she had an assigned seat next to me. We started talking and eventhough we did'nt know each other very well i could say laughter was the closest distance between me and her. We would just laugh at really random things that happened because we did'nt really know what to talk about. Sometimes it would'nt make sence of what we were laughing about. But we laughed any way eventhough we did'nt understand each others jokes.Laughing was something that keped our distance close. Time went by and we became good friends. Laughing was the one thing that keped us cose together because we had nothing better to do. We both are people that like to laugh a lot and if not we get bored. If me or her had no humor when we first meet I don't think we would of got along so well at the end. We did'nt really have anything to do because we did'nt know each other very good. We would only hang out during lunch and any other class we had together but all we did was laugh at what we thought was funny which was really dumb. We had nothing better to do. A couple months latter we seemed to become really close friends and not just in laughter. We knew each other much better and finally had things to talk about and we found out we had something in common. Laughter still had something to do with our friendship but not as much as the begining of when we first meet. During math time we were always talking and laughing at the things we would say. That had never happened before. But now we were able to talk about other things too not just things that made us laugh and we new that laughter is'nt the only thing that is keeping us colse together. Now we had other ways to get along too. We both had friends that we could get along with differenlty. I had some friends with not a really close distance but we would laugh a lot. With some of my other friends I did'nt really laugh that much and we had a very close friendship. My friends and I can get along in different ways not just in laughter. We all have differents ways to get along and have fun. Some of them are really calm and some of them like to laugh a lot like me. Mostly all of the are just the type that like to be laughing all the time but we are closer because of the way we are with each other. I think that laughing could be the shortest distance between two people. There are other things that can keep two people close together. Laughing does help people have a good time together but I don't think is a big, big part of a friendship. I think its how they get along and if the have somethings on common. It also depends on how they get along and how they treat each other. Everybody has a different way of what keeps them close to a friend so I think it's different for everybody." 16 16 32 3 4 4 3 3 3 3 4 3 3 3 3 +21579 8 One day when i was going to school with my friends i step t in dog poo and all of my friends laughed at me and it was so embarrassing and i was so mad that my shoes was dirty and now i had to go back home and clean my shoes that i just got for my birthday and now i had to tell my mom that i got dog poo on my shoes and when i told my mom was not mad at me i wood think that she wood be mad at me because she worker t to get the money to pay for my shoes.The next day i went to school all of my friends laughing at me i just went to my class and sat down and stared my math work and when my best friend came up to me and said did you really step in dog poo and she gave a peace of paper that had a dog pooping on a girl and i got so mad i stared craning.When i went home after school mom ask me how school ? Went i didn't wont to tell her that my whole day was bad everyone was laughing at me. So i just that school was good and she told me that all people are not good. 12 15 27 3 3 3 3 2 2 3 3 4 3 3 3 +21581 8 " Laughter to me seems like the foundation of a relationship; if it is a relationship with your parents, best-friend, or your spouse, it can all be formed with a single laugh or giggle. I have seen on @CAPS1 that when a guy try's to ""pick up"" or ""hit on"" a girl, most of the time he will try to be funny to ""break the ice"". When that so called ""ice"" is broken the air is open for both people to start showing each who they are. My best friend and I have been friends for five years now and I hope that we will be friends for more years to come. @PERSON1 (my best friend/and only friend) has shown me how to be myself @PERCENT1, with her and try to with others. Together @PERSON1 and I have had many funny adventures together, that I will cherish for the rest of my life. Just recently @PERSON1 and I went snowboarding at @LOCATION1 in @LOCATION2. @CAPS3 was her second time going snowboarding and I have been snowboarding for about three years now. I promised her that I would stay and help her on the slopes until she got the hang of the board under her feet, I also promised that I would fall down with her when she fell. When we got there I showed her how to clip her bindings on, what the stomp pad was used for, and also how to skate. The word skate means that your foot boot is in the front binding and your left foot is not, you push your back foot on the snow to slide or skate on to the ski lift. It took us three hours to get down the first bunny hill slope, normally it takes a person no more than ten minutes to get down. While teaching, laughing , and bonding with @PERSON1 I noticed that when I laugh with her I get feelings of love, caring, and happiness. Laughing with her always makes my day. In fact that is how we became friends; was by laughing together. After we got of the slope she said some words to me that I will not forget, ""@CAPS2 you are the best friend I could ever ask for, if you were a man I would marry you and have your children, I love you."" @CAPS3 meant a lot to me, for @PERSON1 is the kind of person that keeps her feelings of love and caring inside. @CAPS3 was the first time she has ever said she loves me. Laughing together for five years now has made it so that @PERSON1 feels more open with me, enough to say something that she never told to her family. Laughing and even giggling together is what @PERSON1 and I look forward to in our relationship. " 20 18 36 36 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 3 +21582 8 " I am so good at making people laugh, @CAPS8 is just one of my very awesome qualities. I have lots of stories of when I have maid people laugh. One time i was on my way to camp with some of my friends and I looked out the window and saw a sign. ""@CAPS1 butts, unless, that ""@CAPS2"" is an ""@CAPS3"" @CAPS7 @CAPS8 must be @CAPS1 @CAPS4."" I said. @CAPS8 was so funny i maid everyone in the car laugh. @CAPS7 later on, on the drive to camp with my friends we stopped at @CAPS5 in some city. When we stopped there I got inside a shopping basket and my friends and I were racing down the isles and maid all the other costumers laugh. When we where going to leave I bought a whole bunch of food. When we were back inside the car I crabbed the box of doughnuts I had bought and let everyone else in the car have one. We all started eating them and we had established that the doughnuts where really gross. The doughnuts tasted so dry, @CAPS8 was like they didn't even have any frosting on them. I opened my chocolate milk and I had to drink my chocolate milk with my doughnut just to make @CAPS8 taste a little bit more sweet. None of us had anymore doughnuts. @CAPS8 was so funny, we threw the doughnuts out the window. On the way back from the camp that we had gone to, my friend @PERSON1 was driving home and I sat behind him and I messed with him so much. I had turned my phone up onto its highest volume and played a scary ring-tone and I scared him and maid him jump. @CAPS7 I had licked my finger and put @CAPS8 inside his ear @CAPS7 he freaked out, because he thought @CAPS8 was really gross. After that he had his window open and I opened my window and stuck my hand around and grabbed his arm and scared him. @CAPS7 we had stopped by the store in some small town and god some soda and I bought a soda to drink. When we got back in the car and left I Said: ""@CAPS6't get pulled over, I just opened a beer. Haha."" @CAPS7 I took a drink of my soda and as I took the drink I started laughing again and some of my soda went up into my nose @CAPS7 I said: ""@CAPS8 burns so bad. My nose is burning."" All of us where laughing. The ironic part was that like thirty minutes after i had said that we got pulled over. We where driving down the highway and my friend @PERSON1 who was driving thought that the speed limit was sixty-five miles-per-hour but the speed limit was fifty-five. The cop pulled him over and clocked him doing seventy-five. I was gonna try and make the cop laugh, to see if we could lighten him up a little, but my friend @PERSON1 said no because he was so mad. He ended up getting a ticket and the cop was a real idiot. He looked at the license plate and @CAPS7 turned and asked @PERSON1 if they where @LOCATION1 plates, when clearly they said right on them @LOCATION1. Everyone in the car laughed so hard @CAPS8 was hilarious. The cop was really dumb. I @CAPS6't think that anyone who went with me to camp that weekend stopped laughing. I am so good at making people laugh, @CAPS8 is just one of my very awesome qualities." 19 15 34 3 4 3 3 4 4 3 3 4 3 3 3 +21584 8 " Laughter... what is laughter? Do you expect me to tell you what laughter is? I wish I could but I can't, describing laughter is like describing what water taste like or feels like (besides using the word wet) it's just one of those things that you think its easy to describe to someone because it's a part of your every day life but in reality it's one of the most complex things there could be out there.Even though I can't describe it I do have general concept of it. Now there's many reasons to laugh or the type of laughter or the feeling behind it. In my case I believe I'm a person that @CAPS1 @CAPS2 laughs once a day. I laugh all the time from my friend falling , hearing a joke , remembering something in the past , from just pure exhaustion (yes I laugh @CAPS1 times when I'm just so worn out and stressed) the list go's on and on. In short I live my life laughing every day. I don't think I'm such a happy go lucky person that makes others laugh alongside her, but I have gotten comments from my friends saying that's the case. This is one of the wonders of laughter if you see someone laughing enjoying their time you just somehow end up laughing along side them. It makes me happy when I hear one of my friends say "" oh @PERSON1 you just made my day..."" why? It makes me happy because I know that, that friend just now I was able to make even if just a little a nice day. One time in my life though I met someone, someone that now I hold very dear, someone who I just can't picture my life without that someone would be right to say he lost his laughter. It was @DATE1, and my friend @CAPS3 had invited me to The @CAPS4 @CAPS5 in @CAPS6 to meet up with some of her @CAPS4 friends. The reunion with her friends was @CAPS1 this coffee shop. I knew no one but her so i felt out of place. So after just sitting back like a wall flower I decided to go to the ice cream shop just next to the coffee shop and when I realized one of the boys in our group decided to come as well. We hanged out he told me about himself I told him about myself as well. After that day we stayed connected we had long hour conversations through this video calling site called @ORGANIZATION1. We chatted in @CAPS7 @CAPS8 every singled day, and pulled all nighters on the phone just talking to each other. After around a month of talking and staying connected we became more close, close enough for him to talk about more serious matters with me. Well now this boy I hold very dear to me has had such a hard life. Where could I possibly begin to tell you the hardships his been through. Oh what about the fact that his adoptive ...hhmmm nah many people out there are adopted that's not that harsh for most. Okay what about the fact that his adoptive father abused of him every chance he got and his adoptive mom literally sat back and watched him do it, not good enough? Okay what about the fact that the one thing that kept him going his friend, the one that was all ways next to him. His to say child hood friends, the child hood friend you can do @CAPS9 in the world yet would not judge, would not think the worst of you if you did something to be ashamed of, the one that was willing to stay up with you for days in a row just for you not to cry your self to sleep. That friend of him passed away in a car rec in his second year of middle school. His life consisted of waking up in the mornings walking to school and being ignore by everyone around him. Coming back from school and putting up with your adoptive family screaming @CAPS1 him, called him names ending up to being beaten just because they can. Do you think he laughed? Well actually he did but, his laugh was not a laugh of joy. Even though he laughed it was as if nothing no feeling what so ever was behind that laugh a robotic laugh. This for me is such a hard thing to stand. It tears me up because this person is someone very dear to me his such a wonderful individual his just now part of my life and I cant see him out of it now. Yet he is suffering he cant even laugh and feel joy. Up to this day I still see him and I have decide that one day for sure I will make him laugh. We laugh when we talk but I want him to experience the laugh he has yet to have experience and I know one day for sure he will." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21586 8 " When I think of laughter you think of memories you shared with people. When I was about six my family and I went to my cousins ranch in @ORGANIZATION1. The happest time started with us pulling up to the house as I slowly open my eyes from the long car ride seeing the porch light on. I quickly grabbed up all my toys and some playing cards and waited eagerly at the door for some to answer while the rest of my family are getting the suitcases. My @CAPS1 @CAPS2 came to the door first to greet us. I walk under his arm to set down my toys in the living room when I saw @PERSON1 sleeping on the coach. He was my best friend in the whole world and I always looked forward to seeing him everythime. He had brown hair always wearing wranglers with a trucker hat and his plad tucked in shirt. We always played gold fish together every time I came over, any time of the day. I was so excited to see him I started to run twards him when my other cousin @PERSON2 grabs me and starts to tickle me tell I fell on the floor and was screaming of laughter. My laughing woke up @PERSON1 as he came running to me picked me up off the ground and saved me from @LOCATION1. He put me on the couch and started watching @CAPS3 tell I feel asleep. The next morning I woke up to hear cyotes howling outside while the sun was coming up, when I smelt bacon and eggs coming from the kitchenI shot up to eat breakfast. My dad and all the boys went out to go goose hunting on the farm. Around lunch time while my mom and @PERSON3 were cooking up some hamburgers the boys all came back in time for lunch. Lunch wasn't ready right then so @PERSON1 and I startded to play gold fish tell we were told it was time to eat. After lunch we went out to the hay barns to find all the rattle snakes and bull snakes curld up by the bales. Almost every foot step we took there was another snake curld up in the bales. Every time @PERSON1 would tell me to jump back to shoot the snake in the head. After hunting @PERSON1 figured we needed a laugh so he grabbed a bull snake and we started to walk to the back yard. I wasn't to sure what he was doing tell we got in the back yard and @PERSON3 jumped out of her chair and started running to the house. Everyone started to laugh when @PERSON1 cut her off and she was running in a circle in the back yard. @PERSON1 finally let her go in the house after about five minutes of giving her a heart attack. We all came back inside to visite in the house. @PERSON1 and I headed to play more gold fish at the table for the last time of my visit. The next morning we woke up at five to start working on the farm. I went back to sleep in the tractor tell they were done. When we were done we started loading up all are clothes in the car and gave everyone a hug good bye as I stood by @PERSON1 not wanting to leave but my mom said I couldn't stay so she picked me up and put me in the car. As we pulled away I looked back to see them all waving good bye. After we visited @DATE1 we got a call from my @CAPS4 @PERSON3 with some bad news. @PERSON2 was heading home and saw @CAPS5 truck on the road but when he pulled up he saw that he killed himself two weeks before he graduated. We went to the funeral that @DATE2 and when it was all done I sat in @CAPS5 room and only could remember all the laughs we shared. I knew to always laugh and always to remember the great times I had with one true my best friend. My memory of him hasn't gone away after all these years and because of him I always laugh when I can laugh and live to the fullest. He taught me so much from the little time he was he but whenever I need a laugh I think of the last time I saw him." 18 21 39 4 4 4 4 4 3 5 4 5 5 4 4 +21587 8 "I think laughter is one of the most important things people need to do in life. The more you laugh in life it makes it so much better and easier. Its better to laugh at something that's bad, like for example falling by someone or even making a simple mistake. It makes life not so difficult and more simple and easy. Laughing can make people happy and enjoy things better and possibly help them look forward to things in the future and help them conquer things that they wanna do in life. One thing that always make me laugh is my family and friends. They make everything easier for me by making me laugh. They don't always say the smartest or funniest thing in the world but it means a lot to me that they do it that. Especially when im not feeling upset or i just happened to not in a good mood, they say something that ll make me laugh and i usually feel a lot better knowing that they made me laugh to make me feel myself again. Most simple things make me laugh more and be happy. Like for example if someone says something totally stupid and know one else laugh's but me. But one thing that normally doesn't make me laugh is if someone got hurt pretty bad, like if they tripped. I wouldn't laugh at that because i wouldn't want someone to laugh at me if i fell and got hurt. I always hate when people brag about stuff that know else knows about that happened to them, like for example if they talk about they did over the @DATE1 and how ""high"" or ""drunk"" they got. Its really annoying to me and also very pointless because when they talk about it I never pay attention or just walk away because all that stuff annoys the heck out of me. Why would i wanna hear about how your ruining your life? Especially at a young age or even at all. Well that's my story and why i think the benefits or laughter is important." 15 15 30 3 3 3 3 3 3 3 3 3 3 3 3 +21589 8 " They say laughter is the best medicine @CAPS15 I personally think that's true. For one jokes are a great thing fro laughter but it depends on the joke sometimes because some jokes are extremely funny @CAPS15 some or @CAPS14 plain horrible. Another reason why laughter is @CAPS5 great is when your laughing that automatically means that your in a good mood @CAPS15 i love to be happy or in a good mood i hate being all mad @CAPS15 upset it @CAPS14 isn't me. I @CAPS14 love it when i cant breathe i am laughing @CAPS5 hard those are the best jokes also you @CAPS11 about wet your self especially if your extremely ticklish @CAPS15 i know quite a few people that are @CAPS15 i feel sorry for them because i would be down right embarrassed if i wet myself in front of anyone. My whole life has had laughter in it to me anytime is laughter time. Well I have quite a few stories about laughter but i am only gonna tell you one @CAPS15 its one of my favorites its when me @CAPS15 my friends are all hanging out at at mt grandmas house for my @NUM1 birthday party @CAPS15 were all having a great time on the homemade slip @CAPS15 slide the food @CAPS15 the drinks (soda of coarse not alcohol). But anyway my cousin @PERSON1 has these games that he came up with like the @CAPS1 relay , @CAPS2 fishing , @CAPS3 the gum in the whip cream, @CAPS15 my favorite @CAPS4. @CAPS4 is a game where you @CAPS11 have as many players as you want @CAPS15 all the supplies you need are a lot of sting a lot of balloons @CAPS15 one person to start out as the @CAPS4. @CAPS5 say you have @NUM2 humans @CAPS15 one @CAPS4 all the humans would have balloons tied around their waists @CAPS15 they all try @CAPS15 run away from the @CAPS4 @CAPS15 the @CAPS11 hide anywhere inside the boundaries @CAPS15 it doesn't matter how your balloon pops who pops it or what pops it once it is popped @CAPS6 your a @CAPS4 until there are @CAPS12 humans left @CAPS6 you start a new game. Now you might ask yourself why this is funny @CAPS15 now I am gonna tell you why. @CAPS5 were all at my party having a great time right @CAPS5 my cousin @PERSON1 says ""@CAPS5 who wants to play the game @CAPS4? "" @CAPS6 we all say well whats that?"" @CAPS6 he goes over all the rules like a said before @CAPS15 we say ""lets play."" @CAPS5 me @CAPS15 my friend @CAPS9 are running away @CAPS15 all of the sudden we start hearing my cousins @CAPS4 noise that means he coming @CAPS15 he freaked out @CAPS15 ran away @CAPS6 when he leaves you @CAPS14 hear the screeching scream come out @CAPS15 you here his balloon pop that means that he got out @CAPS15 were all @CAPS14 laughing because when he flew he launched about @NUM3 feet backwards it was the funniest thing ever because when i got over there he was still on the ground @CAPS15 everyone @CAPS14 it trying to breathe i swear i think everyone was about to wet them selves @CAPS15 the probably would've laughed some more if it wasn't for the game @CAPS15 @CAPS6 @CAPS9 got up @CAPS15 started chasing people with my cousin @PERSON1 @CAPS15 the rest of us @CAPS14 ran out of there as quickly as possible @CAPS15 yet again you here my cousin making his @CAPS4 noise @CAPS15 people running @CAPS15 screaming @CAPS15 my friend make trying to make the same @CAPS4 noise but cant @CAPS15 one by one i hear the balloons popping @CAPS15 soon i was the last one left @CAPS15 i was gonna give up @CAPS5 i am @CAPS14 getting chased @CAPS15 chased until i am completely out of breath @CAPS15 @CAPS6 one of my friends @ORGANIZATION1 comes up in front of me @CAPS15 i @CAPS14 said ""I don't care @CAPS14 get me out i @CAPS14 wanna lay down."" @CAPS5 he took the balloon @CAPS15 @CAPS14 popped it @CAPS15 i asked ""@CAPS11 i take a nap?"" @CAPS15 he said ""@CAPS12 because we have to get ready for the next round @CAPS5 you better rest up quick or you'll be dogging."" @CAPS5 i @CAPS14 rested up as much as i could before we got everyone straped up for the next game i was hoping to get some kind of reward for winning the very first game of @CAPS4 but @CAPS12 my cousin @PERSON1 had to be a samrt alic about it @CAPS15 say"" @CAPS14 getting to play the game isn't a big enough reward for you stingy!""@CAPS15 as always everyone starts @CAPS14 busting up laughing at every single little thing that my cousin @PERSON1 does but i do have to admit that he is one of the funniest guys that i have ever met. @CAPS5 there you go there is my story about laughter but i do have plenty more but i think ive wasted to much of your time @CAPS5 thats all i have to say." 14 20 30 30 3 3 3 3 2 3 4 4 4 4 4 4 3 3 3 3 3 3 +21592 8 " We all understand the benefits of laughter. Laughter is definitely the most important part of my best friends and I relationship. Without laughter, we couldn't possibly have as much fun together as we do. If I am having a bad day, I can always count on my best friend to make me crack up, and forget about the day I have had. If we are out and about, or just relaxing at home, my best friend and I are always laughing. The end result is usually us both with tear streaked faces from laughing so hard. There are actually quite a few different instances in which I remember laughing particularity hard. This last @CAPS1 @CAPS2's eve for example, it started snowing at around three a.m, so my best friend and I ran outside screaming at the top of our lungs. Snowballs started coming from every direction. During a game of hide and go seek, we decided to bury ourselves in a snow covered leaf pile. Within ten minutes, our legs were freezing. So what did we do? We put on our swim suits and jumped into the bath tub together. Having her there to laugh with me, made the situation a lot better. Another situation in which I remember being particularly funny, was the entire third trimester of freshman @CAPS2. I needed a first period class and the only thing open was intro to manufacturing. I definitely was not looking forward to it, until I found out that my best friend had it with me. We made a bad situation a lot better by laughing at every single stupid mistake we made. Since we are not exactly experienced in the field of metal, there were quite a few mistakes. With out my best friend there to laugh with me, I have no idea what I would have done. I believe that whenever I am in a bad situation, laughter will always help me. One last situation in which laughter helped a lot, is when I used it to cheer up my best friend. A couple of days ago, my friend had, had a really bad day. Things just weren't going her way. After school I could tell something was wrong. I tried talking to her about it, but that wasn't really helping. So, I brought up some of our past experiences together. Within a few minutes she was laughing and I could tell she felt a lot better. Laughter really does help us out of some tough situations. Laughter is by far the most important factor in my best friends and I relationship. Our relationship is mainly based on laughter. Without it, we just wouldn't be as close as we are today. If we need it to cheer each other up, or cure boredom, I know that laughter will always be on our side. " 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21594 8 " It was midsummer, and i could feel the cool ocean breeze washing over my skin. You would think everything would be calm, but it was the exact oppasite.I wouldnt talk to him or even look at him. He was trying so hard to get me to laugh but i just couldnt. I was so furious with him that i thought nothing between us would ever bee the same again. I thought that our three months together was up, and it scared me so much. He left for his trip the next day, and he left without saying a word. I cried myself to sleep for a week. I knew he was back in town already, but he hadent called or said anything to me. After weeks of wondering and waiting, i could feel th at it was over. I talked to my sister and she told me that he would come around again and i had to be patient. I tried to take her words in my heart and i wanted to believe that it was true. I called his house everynight, but everynight i got the same answer, ""he's not home, but i'll let him know you called"". i wanted to believe that i would hear from him, so to pass the time i kept my self busy with cleaning and going out with my family. A couple of day's of not thinking and worrying about him did me good. I was smiling and laughing again. I felt like i could begin to breath a little and have fun. My sister's advice ended up working cos a week later he called me and told me that he wanted to see me. I told him he could come by @DATE1 and that i was very excited to see him again. The call ended and i was smiling from ear to ear. The next couple of day's i was in a complete fenzy, getting everything clean, figuring out what i was going to wear. Everyone thought i was going crazy, but the truth is that i was scared. Scared of what he will say to me, and were we would go from here. Th days seemed to fly by and the next thing i knew, he was knocking on my door. I let him in and he took my by surprise with a big hug. We sepnt hours jsut talking and listening to music. It was as if nothing had ever changed. Before we knew it it was dark out and he was leaving. I walked him to the front of my trailer park, and he sat me down on the side walk and took my hand's. I was shocked and didnt know what to do but listen. He told me that he was sorry for the way he acted and that tonight he realized how much he wanted to be with me, and that he was completely in love with me. I couldnt do anything except cry and laugh at the same time, and soon enough he was laughing with me. I couldnt have asked for a more perfect moment. It's been six months since @TIME1. We are better than ever becuase we have the laughter. It's what help's keep our relationship solid, and it keep's us close. Everyone need's a little laughter in there life. Im glad that i found someone special enough to always keep me laughing. It's like we never stopped. If you ever feel hopeless and like there's nothing for you. Remember to laugh, it's what makes the world go round." 17 15 32 4 4 4 4 3 3 3 3 3 3 3 3 +21595 8 " Have you ever experienced a time with your friends or family where you laughed so hard your stomach hurt, and your eyes were filled with tears? Laughing is something every person needs. A great laugh can make a persons day and put a smile on their face. If no one laughed the world would be a terribly sad place. My friends and I are always laughing, to the point where were rolling on the ground, clutching our stomachs laughing. We sometimes laugh over absolutely nothing. I honestly don't know who I'd be if I didn't laugh, or what I would become. I remember this one time when my friends @CAPS1 and @PERSON1, and I were having a off day. We all woke up in bad moods and everything seemed to be going wrong, especially since we were woken up by my mom in the kitchen banging pans and pots around. When we woke up our favorite cereal was gone and so we wanted to go to the donut shop but no one would take us, and even though I realize that's not the end of the world now, it seemed like it then. My brother and sisters, with the @LOCATION1 blasting and running around the house yelling, were irritating us and we were already mad. The dog and cats, who kept trying to keep sneak in the house, were annoying us too. The weather outside was all gloomy and disappointing. We were all ready done with the day before it had even started. We eventually decided to get up and get ready. We came up with a plan to walk down to river behind my house even in the poor weather. The river was after our big backyard and past the quad track so it was about a mile away. When we asked my mom if we could go down to the river she said no she didn't want us walking down there by ourselves, which we had already done a few times before. We begged until we knew she wasn't going to let us. That put us yet again in a foul mood. We had to go find something new to do and it didn't seem like there was many options. We lived clear out of town about @NUM1 miles, not exactly walking distance." 18 18 36 4 3 4 4 3 4 3 3 4 4 4 4 +21596 8 " I woke up just like any other day happy yet lacking sleep. As i got out of bed i would have never known that to day would be the funniest day of my life. I got ready for school after getting out of bed. When i got to school every thing seemed like our normal homecoming tell there was a announcement on the intercoms that had told every body out of no where there was a dance tonight. So after school was done me and my friends were going to head over to our house's to get dressed for the dance. After we were all dressed @PERSON1 picked us all up and we headed to the dance looking fly. When we got there every body was looking dressed to dance except one guy, he was wearing corduroy pants with a red tucked in flannel and some brown worn out work boots. We look at him from head to toe and we thought to our self are we in a messed up hillbilly dream? That was just the beginning of what was yet to come. As every body started to get in grove of the beat we soon all started dancing to the music the music was good and every body was having a good time even the kid with the flannel. But just as every thing was going good a song came on that was called cotton eyed @CAPS1 when the flanneled kid heard this song he almost jumped out of his corduroy pants he soon stared kicking and swinging his feet and arms like if they had no bone or joints in them. Every body started to form a circular around the kid and every body was laughing and copying the kids movement even us. He didn't rely care he just kept dancing and singing to the song. The funnest thing about this was that the dance was a formal one and yet this kid manged to pull off wearing a flannel, some boots, and a pair ofcorduroy pants this kid was out of his mind in fact we still laugh and talk about it tell this day." 15 16 31 3 3 3 3 3 3 3 3 4 4 4 3 +21598 8 " Laughter is an important part of my life, either my friends are making me laugh or i am making them laugh. One prime example is on the @DATE1 me @PERSON1 three of my closest buddy's went hunting. That trip was the bast @PERSON1 worst hunting experience of my life. it was the worst because we shot @PERSON1 missed at two bears @PERSON1 one of the biggest bucks of my life. But it was the best because we all reached that tired state when every little thing was funny. The trip turned out to be a failure but the most important thing was that we had a blast, @CAPS1 teen age boys ridding around in a pick up truck making each other laugh. Another example was one @DATE1 this @DATE2 me @PERSON1 two boat loads of my friends went trip to a nearby fishing hole called @ORGANIZATION1@NUM1 is a small quiet @ORGANIZATION1 that not very many people go to, it is very peaceful. I brought out my fifteen foot duck/fishing boat @PERSON1 my ten foot canoe. I was controlling the big boat the only boat with a motor @PERSON1 towing behind us was the canoe. Inside the canoe was @PERSON1, two kids that don't mean to be funny but you cant help but to laugh at them. We were having a good @DATE1 of fishing @PERSON1 it was starting to wrap up. On our way back we stopped to fix a pole @PERSON1 the slack in the rope that was pulling the canoe became slack. When we started to move again the slacked tightened @PERSON1 the canoe lurched forward unbeknown to @PERSON1, who was standing up at the time. caused him to almost fall out. @PERSON1 when i mean almost i mean the only thing left in the boat was his feet @PERSON1 his hands which were holding on to the side rail. The only part that was in the water was his butt. This turned out to be the high light of the trip @PERSON1 we still bring it up from time to time. My friends @PERSON1 i have a lot of adventures most of them turn out bad but, all of them turn out funny." 15 15 30 3 3 3 3 3 3 3 3 3 4 3 3 +21599 8 " I sat at the table, speechless, as they told me their story. The @CAPS1 had been through a lot in the past seven years. @PERSON1's youngest son was born three weeks early and the doctor told her he would only live for three days at the most. As she told me, she stared off into the distance as if she were reliving the moment. She told me that her baby, @PERSON2, had a rare disease. Half of his brain was smooth, instead of the the normal rigid. She told me about those first days and how scared she was. Seeing @PERSON2 next her was the only thing that kept me from bursting into tears. He had lived longer. @PERSON1 told me about how as @PERSON2 grew older he couldn't walk. His pediatrician told her that @PERSON2 would never be able to take his first steps and would have to live life confined in a wheel chair. @PERSON2 was given another miracle. He walked. With the aide of a camouflage cane he beat the odds once again. @PERSON1 told me about how @PERSON2 couldn't talk. He only speaks through sign language. She also taught me how to take care of him. He was a normal kid who liked to play with cars and @CAPS2. He wasn't any different then the rest of the kids. This was going to be a roller coaster of a week. I had only met the @CAPS1 early that @TIME1 when they had arrived to @CAPS4 @CAPS5, a @DATE1 @CAPS4 for disabled kids. I had only known them for a few hours and they were telling me their life story. I got the next week to become best friends with @PERSON2. We went swimming in the river, played with sticks, went on nature walks, even rode a horse. The smile on @ORGANIZATION1's face lit up my day every time I saw it. @PERSON2 got to experience things that a child of his kind would never be able to in a lifetime. We got to go tubing, ride on jet skis, and fish in a stock pond where we were sure to catch something. Having the best time of our lives we parted each night to bed, him in his cabin, and I in my tent. Each night as I left I could hear the family laughing and talking about how great the day was and how much fun we were having. To be a part of making a child happy was the cherry on top of my @CAPS4 experience. One event in particular from @CAPS4 that week will always stay close to my heart. @PERSON2 had been experimenting around on a tricycle made specifically for children with disabilities. He tried for hours to make it go. No matter how hard her tried he couldn't move. My heart broke when I saw him start to cry. He was so frustrated. @PERSON2 gave up and moved on to the swings instead. The rest of the day was filled with the look of sorrow and frustration on his face. I wanted to fix it. I had to fix it. He needed to be happy. That night I went to our @CAPS4 directer, @PERSON3, and I told him about what had happened and he brought me to the garage. The garage was so chaotic and unorganized. I didn't quite understand what he was doing until he emerged with a brand new shiny bike. One with foot straps and supportive seat complete with dragons, and a bell. It was the perfect thing. I was so excited to let @PERSON2 try it out in the @TIME1. The next @TIME1, after a delicious blueberry pancake breakfast, we set off to try out the new toy. This moment was big for @PERSON2 and his parents. He was told he'd never walk, or ever be able to ride a bike, or talk. He had lived through miracles before. He could do it again. @PERSON3 strapped @PERSON2 on the bike, put a helmet on him and started him off. The anticipation was almost too much. After a few seconds passed, the wheels began to turn. @PERSON2 was riding a bike. Tears streamed down our faces, this was the greatest moment of @ORGANIZATION1's life. The way he smiled and laughed at his new found capability was a great sight. To be part of something so special was an honor. @PERSON2 rode his bike all around @CAPS4 that day. He even rode it into his cabin, and continued to ride in circles around his bunk. I left the family to enjoy their night and went off to bed myself. The rest of the week was filled with a great deal of fun, but when the end came the goodbyes were hard. We didn't want to leave each other. I had become part of @LOCATION1's family, they trusted me and I felt at home with them. @PERSON2 and I were new best friends and couldn't wait until the next @DATE1 when we would meet again at @CAPS4 @CAPS5 where we could do it all over, and make new memories." 25 22 47 5 5 5 5 5 5 5 5 5 5 4 4 +21601 8 " As I remember back, it was @DATE1. It was a hot, humid day. I can remember that day like it was yesterday. I woke up that morning and decided I was going to go swimming. But the only problem was I had no one to go with me, and @CAPS2 attitude was turning for the worst. The day @CAPS1 off fairly well for the most part. I called around to all @CAPS2 friends to see what they were doing for that particular day, but as I went down @CAPS2 friend line everyone seemed to be to busy to go anywhere with me. I was most certainly bummed. @CAPS2 happy go lucky attitude turned into the dumps really fast. The only thing that was left for me to do was use @CAPS2 back up plan, @CAPS2 aunt. We gathered our swimming gear, blankets, tanning lotion, and ourselves and packed it in the back of the van and headed towards @ORGANIZATION1. I was really not in the best of moods, and it seemed that everyone that was around me was turning into a grump as well. Totally bummed that all of @CAPS2 friends had ditched me and left me to hang with @CAPS2 aunt all day wasn't @CAPS2 explanation of fun, sorry enough to say, but it wasn't. As the day went on the more I thought about @CAPS2 friends the more I got frustrated. Then finally it came to me, why let their stupidity of ditching (the best thing that had happened to them) me, ruin @CAPS2 day. I @CAPS1 laughing and having a grand time, and pretty soon, in all reality forgot why was having a bad day. When we got to our swimming hole, I looked around and noticed that everything was well. Everyone there was having fun. So I @CAPS1 to loosen up and have a good time. Jumping off rocks, making a fool of myself, laughing, and having a good time. We spent the whole day enjoying with what we had. When I got home and I had realized what an awesome day @CAPS2 day had turned out to be, I realized that I shouldn't let @CAPS2 friends get me down. Laughing and having a good time can make any day turn around for the best. The most important lesson that I have learned from @CAPS2 experience that day, is to make the best out of each situation. Don't let crushed plans crush your self confidence. Put a smile on your face and turn your frown upside down and laugh. laughter makes life better." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21603 8 " Those eyes, it was like I was looking out into a warm carribean sunset with a flash of green while relaxing on the beach without a care in the world. Her skin was kissed by the sun and flawless in every way. Those lushes ruby red lips looed about as juicy and refreshing as the taste of a freshly picked pink lady apple. From the moment she sat down across from me i couldve sworn i was dreamin. How can any woman look so perfect and exist outside of a movie or game? Thats all i could think of, thats all i wanted to imagine. Just me and her together, but the thought of it was to great to come true I couldnt find a way to bridge this gap i felt between us. Neither of us had ever met or seen each other before and yet still i couldnt resist. it was like when adam was presented with the golden apple from eve. That smile, perfectly straight teeth with that sparkling shine that could blind anyone without sunglasses. Thats when she inally spoke and said ""@CAPS1 you know the answer to number three?"". I was stunned by her voice. It reminded me of a thousend violins played by angels. my mouth droped and all I could say was ""nope"". I was a complete mook nothing more then a hoser, but then i noticed she was wearing a cross to match her outfit. So I attempted to redeem myself with ""thats an amzing cross ur wearing, what kind of gem is that in the cnter?"". She smiled and batted her eyelashes and told me ""thank you, I like your cross too. mine has a ruby in it"". I smiled back then i got a text message from my friend wth a new joke he wanted me to hear. As I read it I started to burst out laughing. The angel in front of me was then curiouse to what I was laughing about. When i finally finished the joke she too bursted out laughing and I finally gave myself a proper intruduction and told her my name. She was smiling fom ear to ear after the laugh we sared and she told me her name was ""@CAPS2"". Ah @CAPS2 surly it had to be a name given to angels. To this day I still thank my friend who gave me that joke, because if I had not made her laugh then we probably wouldnt have gotten to know each other. If we had not gotten to know each other then she probably wouldnt be my girlfriend. To this day I still feel like the luckiest man in the world and if fate see's fit to split us apart then I will always remember that laughing is the best way to get to know someone." 17 18 35 4 3 4 5 4 3 4 4 4 4 4 3 +21604 8 "Some say that laugh is the common language between people to people, nation to nation. If that is true, those laughters can speak all the languages around the world. In our lives, we all need laughters to be around. When they laugh, they don't just benefit themslves, but also all the people around them.There is a reslut from these people who study for phscology, they noticed that @CAPS1 don't cry because @CAPS1 are sad, @CAPS1 are sad because @CAPS1 cry. Same thing as laughing, @CAPS1 are happy because @CAPS1 laugh!I remember once, when I was in middle school, everyone in my class needed to go on the stage and do the presention. Before the presentation began, everyone was quiet, and there was nobody talking because we were all nervous. The classroom was dead quiet @CAPS1 could even hear a pen drop. I sat on my desk and did not know what to do. I was so neverous that I thought I would pass out in any second. I believed that was what my friends thought, too. Suddenly, we all heard a kid laughing! I did not know what he was laughing about, but the whole calss started to laugh! @CAPS1 could feel that the neverous situation was gone! Everyone started to talk and walk around. That helped me cliam myself down. I felt the big and heavy thing that was on my shoulder suddenly disappeared! The story was so unforgetable because I realized how aould a laughter change the situation from bad to good.Laugh could change the whole world from dangerous to peace. I am a laughter. I love to laugh because when I laugh, I feel everything is better. It could be both positive or negative, but laugh dose make my life better. People who are around me think that I am fun to be with because they could feel the joy I bring to them.Laugh is an important part of a relationship. My friend and I, when we get together, we always laugh about everything, from some random house to the sky. We really have fun together. There one time that I wondered, what is nobody in my group laugh when we are together? That would be no fun anymore! Without laughters, the distance between my friends and I would be a big gap, but with laughter, we would not have any distance between us! Then I noticed that the other group of people. Maybe they just had the bad day, they had no amile on their faces. When they sat together, nobody talked or laughed during the lunch time. They seemed they were not friends anymore. After dys, they started to talk again. They laughed just like they were good together! I realized that laugh could change everything. It could change not only the inside the relationship but also how people view your realationship.Laughters do help us out a lot. On mental, physical, and social, they benefit us in our lives." 16 17 33 4 3 4 4 3 3 4 4 4 3 3 3 +21605 8 " Laughter is an integral element to many situations. These situations vary greatly, disasters to the desire to be cheered up to simply wanting to be amused. Humor can make light of circumstances no matter how grave, terrifying or uneasing. The recent earthquakes and subsequent tsunami in @LOCATION2 made me very worried for my friend @CAPS1. He lives in @LOCATION1 which I at the time I, and many of my other friends thought was close to some of the more affected areas. Of course, we were all scared for him, but we tried to the best of our ability to make light of this disaster. Our fears were made even worse when he never logged onto the ning or facebook, but we know now that was just because electricity was down for him that night (night for us). When we learned he was safe, at least for the time being we were all incredibly relieved. Humor really helped diffuse the situation, as it has many times before. As of now this is still a story in the making because as this is being written there are still great dangers for that region, not the least of which is the threat of nuclear meltdown. The jokes are continuing into the week. I believe humor can be very helpful during worrying times because making light of a serious situation in a way, makes it feel less serious. Of course many people look down upon doing this, which is completely understandable. They either don't see that we are legitimately fearful or don't understand and believe we're just joking about it to be ""edgy"" or ""offensive"". People who feel the need to joke about dangerous situations aren't intent upon being malicious or uncaring, they, most often, are people with with a sense of humor and a sense of distress." 18 18 36 3 3 3 3 4 4 3 3 4 4 4 4 +21606 8 "One time I was at my friend @PERSON1's house, and her dog @PERSON3 was going crazy. She would run up and down the stairs as fast as she could and no one had any idea why. I thought it was so funny, but @PERSON1 was getting super mad at @PERSON3. So eventually @ORGANIZATION1 into her room to see if she would calm down, but to her dismay @PERSON3 did not. She was running hot laps back and forth all around the room and the more she did that the harder I laughed. It was like the most funniest thing I have ever experienced in my life. This dog had obviously gotten a hold of some kind of energy source to be this happen. Yet we still couldn't figure out what it was, but @PERSON3 was on a sugar high or something. So @PERSON1 and I went down stairs to see if her mom @CAPS1 knew why @PERSON3 was acting so ridiculous. She had no clue. So then we went and asked her dad @PERSON2, and he was convinced the dog was just crazy. Obviously the dog had some issues, but that wasn't the problem because @PERSON3 never usually acted this hyper before. Then @CAPS2, @PERSON1's sister came down stairs and told us to shut the dog up, but we couldn't. @PERSON3 was running to fast to catch her and was way to crazy to try and calm her down. So we took @PERSON3 back in @ORGANIZATION1's room and just laughed and laughed because there was nothing else to do but to sit there and wonder what the heck was wrong with this dog. To be honest, we never did find out what was wrong with @PERSON3, she was just insanely hyper and out of this world that @TIME1. So after @PERSON3 had calmed down about @NUM1 hours later, @PERSON1 and I went on a walk. We were with her friend @PERSON4 and I was trying to explain to him the story of how @PERSON3 went crazy that @TIME1 and they didn't find it as funny as me. I thought it was the most hilarious thing I have ever seen in my life! And while I was explaining it to him, they had warned me I was about to trip over a curb, but I was laughing way to hard to notice and I fell. That was like the icing on the cake of @TIME1. I just sat there on the ground and laughed, and so did they. It was pretty funny! I haven't laughed that hard since then. The end." 20 16 36 4 4 4 4 4 4 3 3 4 4 4 3 +21607 8 " LAUGHTER @CAPS1 knows that laughter is a healing medicine. It has the power to ease a lot of aches and pains, such as the hole in someone's heart after a breakup or the suffering of someone unable to provide for their family. However, the kind of aches laughter eased in my life was the pain from the loss of a dear friend and teacher. Recently, one of the best teachers I've gotten the chance to know passed away. He was trying to get into the @ORGANIZATION1 to set up his lesson plans for the @TIME1, when the fatal incident happened. <@NUM1 had a doctor's appointment that day and had gotten a substitute to take his place. It was six o'clock in the @TIME1 and still dark out as @PERSON2 tried to open the doors of the @ORGANIZATION1. Before he knew it, he was down on the ground waiting for someone to come help. Eventually, @PERSON1, the janitor, came out, spotted him and quickly called @NUM2. The ambulance hustled to come pick him up and rushed him to the hospital for emergency care. As soon as they got there, they found out he had had a heart attack. He'd had a couple minor ones before this one. However, this heart attack was big. It took his life and they weren't able to revive him. @PERSON2 was pronounced dead on the day of @DATE1. Our principle called for an emergency assembly when we all had arrived at @ORGANIZATION1 that @TIME1. We had known something was wrong, considering the strange looks on all of our teachers' faces. All the students gathered together in the small gym of our @ORGANIZATION1 @ORGANIZATION1. The air was filled with anticipation as we waited for something to happen. After a bit, a man we all knew walked out in front of us with a microphone in his hand. With slumped shoulders and a grim face, @PERSON3, our principle, told us of the tragic news. My mouth fell open and I gasped. I could hear people adjusting in their seats and murmuring among themselves as they struggled to take in the devastating news. Looking around, I saw the same shocked expressions on @CAPS1 of my classmates' faces. I didn't know what to do. I wanted to cry, but I couldn't just yet. @PERSON3 explained the situation further as we intently listened to the sickening words coming out of his mouth. I was in shock. I didn't believe that @PERSON2 was gone. After our principle was finished speaking, we were ushered out of the gym by melancholy teachers and told to report to our first period class. As I made my way to my locker, I heard sobbing, but it was mostly silent. I quickly grabbed the folder for my first class and closed the locker, wanting to get out of the hallway and into a more private area. Walking into the classroom, I sat at my desk. People in my class filed in through the door and took their seats as well. Our teacher for that class didn't talk to us, so we presumed we weren't doing anything. Sitting there in silence and feeling helpless I put my head down on my desk and started to cry. It really happened, I thought to myself. The reality of the @TIME1 was setting in. By the end of first period, the sleeve of my sweatshirt was drenched in tears and mascara. Nobody had really said anything, but that was okay. Seeing that I had been crying, people stopped to hug me as I sluggishly walked down the hallway to my second period class. I expected my next class to be a lot like the first, but it wasn't. In place of the cold silence, was the soft sound of music. Instead of crying by themselves, people were being comforted by friends. Students were making cards for @PERSON2's family. We were all reminiscing the good times we had with @PERSON2. We retold the stories he told us of his life in the classes he taught. We remembered the funny crack he would get in his voice when he raised it in even the slightest way. We laughed when we remembered how he couldn't hang up anything straight and that the evidence was on his classroom walls. For the first time in that already long day, we felt alright. We felt as if we could celebrate his life, not mourn it. The rest of the day was alright. Not because we lost a great teacher, but because we could love and appreciate a great teacher. Laughter eased the pain and sorrow of that dreadful day. We could remember and laugh about the good times we had in the classroom with him throughout our @CAPS3. @ORGANIZATION1 and @ORGANIZATION1 years. We could remember the man @PERSON2 was through the small tickle in our bellies. Laughter brought us together in a time of need." 25 23 48 5 5 5 5 5 5 5 5 5 4 5 4 +21608 8 "One thing that people in the world love to do the most is laugh. Why is it that we like to laugh? Laughter is every important in our lives because it brings us joy, happiness, and most of all it just fills our stomachs with butterflies. One major thing that about laughter is the whole point of view. Of course everyone makes jokes, dorky things, or simply a funny comment. All those things cause laughter, sometimes laughter helps people grow a good relationship and it builds up to be strong. In relationships like boyfriend/girlfriend, parents with their children, family, or even friends have to have some laughter in their relationship because if not then that would be a boring relationship. At times it's hard to bring laughter in the picture but we at least need to try to laugh it is healthy for us to laugh once in a while. In families its important to grow a relationship with the child or parents and they need some funny feelings in their stomachs that make them giggly inside and its all could laughter. Friends always will have funny moments to laugh about, it's sometimes the pranks that they do to each other, the funny comments, the jokes and it's easy as that to start laughing and creating the good relationship with just laughing with each other. Sometimes laughter could cause bad things if we use for bad things and that could cause a bad relationship. We also don't want to hurt someone's feelings by laughing at them because something that happen or if someone made a comment, because that could leave us not laughing to much after we loose a relationship with someone. The smiles that people have on their faces is a wonderful thing to see. In all relationships laughter is a big thing because it can always come in handle. People have bad days sometimes and we always try to make them happy and how do we do that, well it's called laughing. I know if I was having a bad day and I felt all depressed and mushy I would like someone to make me laugh by simply saying a hilarious joke. In my personal opinion I love laughing and especially making people around me laugh. At times I have my bad times and need some laughter in my system to make me feel at least better. I know that sadness can sometimes take over but we all need to think positive and not let the negative things take over. Life is so much better if we all have laughter in them. Imagine the world with just laughter, how life would be. i wish that could happen because that would make everyone full of happiness and smiles on the faces. In my personal life my family and friends are full of laughter. I have to make jokes at times when things are getting diffcult and everyone is freaking out. Laughter is a part of us either we like it or not it's always going to be with us no matter what. Eventually I would say that laughter is a element in my life that I will always carry and I hope that everyone in the world has the element of laughter in them because seriously it's important in this this world." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21609 8 " Laughter, to me, is an important aspect of my relationship with anyone. I cherish laughter, and I employ it at every chance that I receive. To many, laughter @MONTH1 be trivial, but to me, it holds the key to my relationships with other people. Without laughter, many of the wonderful people I have met in my life, might not be their because I used laughter to develop them into friendships. Friends were hard to come by in my childhood. I did not make good choices, not with whom I associated myself with; rather, with how I approached other people for the first time. I would come off as brash, rude, or annoying, to name a few among many. I had no experience with making relationships, and the first impression is very important. Just like any meal, the first sense that is appealed to, is sight. The image of the meal floods the mind, next, the aroma floats aimlessly towards you, and you begin to salivate in anticipation. And like any recipe, to perfect it, you must practice, and that is what I did. It was a long and arduous process, but come my sophomore year in @CAPS1 @CAPS2, I began to feel like I mastered the art of making other people laugh. As students, and individuals, people come and go, we @MONTH1 truly end up forgetting their entire being, or we @MONTH1 leave an impression on their mind. I try this through laughter; to be remembered if not, only for a day. Using laughter, I acquired new opportunities to make friends, and I did not squander those opportunities. I surrounded myself in a net of laughter, I developed the necessary skills to make people laugh. I enjoyed it, and I still do. One relationship that I built, is with a young women. I had never spoken to her before, until our teacher put us into a group together. Laughter was the essential building block of our future relationship. I was myself, I would not pretend to be someone I'm not, I would express puns that our youth are so fond of, euphemisms our generation know all to well. We would listen to the same music, and gradually, our relationship was nurtured into a stead-fast friendship. It has developed to the point were, in class, we long for each others company. We look for classes to have together because we love to make each other laugh. And because of laughter, I have made a friend with whom I share secrets, time, and moments with which I shall forever cherish. Recently she has decided to start playing tennis. Needless to say, I was ecstatic. I would like nothing more to help her, and whomever so decides to partake in my leadership. I do not necessarily claim to be the best, but I am confident in my abilities to teach the techniques, and fundamentals of the game. Their is not much more I would like to do, that is to play the sport that I love, with the women I love. And most of the credit belongs to laughter because, when her amiable face lights up from something I said, it means all the world to me, whether she knows it, or not. I have many such connections with other people from both sexes, but none so much as hers. I worked hard to build connections with other people because they would make life that mach easier, and that much more enjoyable. In @CAPS1 @CAPS2 their are no exclusive social groups, or roving bands of football players ready to pick out the weakest of the student population. We are all friends, we are all one community, we all belong, and that is due, in part, by laughter. Laughter connects people from around the world, it is the universal language every race, skin color, and religion all speak. It can bring us together or it can tear us apart, but in life, the medicine most prescribed, is laughter." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21610 8 " People always say that the worst parts of life are the sad parts, the moments where no one is there to make you laugh or smile. These sad moments trump the problems caused by work, or by the society, and show how important laughter is in our lives. A time when someone is feeling joy so strong that it pours out of them in the way of a suppressed giggle or booming laugh, are the times that make life worth living, worth the jobs and the bad breakups and the over priced society. It has been said by those infamous ""they"" that your worst most tragic moments are the ones remembered forever because they hold the most emotion, but i have to disagree with ""them"". Moments in the life whether they be seconds, hours, weeks or years, can be cherished also if they are built up by the bonds of love and laughter. Just recently was my birthday. This year it fell on a @DATE1 and I had made no plans to celebrate in any way. Sure my parents had gotten me loads of presents but the joy and jittery excitement that i had always felt previous to my birthday wasn't in me. These feelings were most likely because this year i had decided that now that i was in high school, birthday parties were a no go. With no plans or exciting activities to await, my birthday was not eagerly looked forward to as it had been every year previous. What would i do?! I definitely didn't want to spend the day home in my pajamas with my parents and two sisters, that's what i did almost every other normal @DATE1. These thoughts and realizations brought that sad lonely feeling in me, those feelings that make up the worst parts of life. My mom, noticing my birthday gloom, suggested a trip to the beach and a one night stay in a yurt. I love the beach, I would even go as far as to say that its my favorite place in the world. I also love yurts. Yurts are big round cabins made from canvas draped around a wood structure, with a skylight directly at the top of the pointed roof where you could see the stars at night. Staying in a yurt at the beach sounded better to me then being at home, so naturally I agreed to the beach trip. Way deep down I was excited, I was thrilled, a beach trip with my family! In my head I was stuck still in my foggy state of gloom as thoughts swirled in my head about how I would not have a good time if there were no friends to laugh and hang out with, and how much of a loser I was for not doing anything with friends but instead my family. Our household consists of my mom, dad, and two sisters ages four and @NUM1 months. We are not the most well functioning family. I find my older sister to be an annoying brat sent by the devil to ruin my life and make everything my fault. Two out of the three of us girls have to always be in some kind of brawl, and that drives my mother crazy which gets her all flustered and my dad angry until we realize that buzz light year has ruffled all of our feathers. This scene is exactly what I imagined my family birthday beach trip to turn out like, but caused by a long car drive and hungry kids rather than buzz light year. The day approached and we woke early to pack our bags and pack the car. My mom, bless her, made a family announcement to us that today was my day and anything I wanted was what I got. This meant that I got to choose what we would eat, what we would do and could make any comment including telling my little sisters to bug off if i wanted to. By lunch, we had visited the beach, gotten settled in our yurt, and enjoyed a lunch made up of various snacks we had brought along and I found that I was enjoying myself. No one had fought all day, raised a voice, make a snarky comment or do anything to upset the happy atmosphere we were in. I was laughing. As we visited the aquarium with all its odd fish i laughed. I laughed at my sisters when they were doing silly things. I laughed at the things my mother told me. We all laughed at a bicyclist running into a pole, and fish doing vacuum like motions with their lips. All the laughing, all the smiles did a lot for me. It pushed those negative thoughts straight out of my mind and told them never to come back. Laughing helped me to see all of the love that circled around in my family, it made the love visible. Its healthy to laugh. Without laughter in our lives, some things like love, that can sometimes be invisible, become visible again through laughter. " 20 20 40 4 4 4 4 4 4 4 4 5 4 4 4 +21611 8 " Why is it that people can look back at something and laugh, but not while the action is taking place? For example, if you were to witness someone being hit by a car. During that event, nobody would be laughing. There would most likely be people rushing frantically for help and ambulances everywhere. But we see people get hit by cars all of the time on the @CAPS1 and it is considered comedic. On a hot @DATE1 @TIME1, something quite similar happened to me and my friends. I live next to the @LOCATION1. I know of this one spot on the @LOCATION1, its called @ORGANIZATION1 @ORGANIZATION1. It has a pretty strange name due to the fact that the water is actually a greenish color because the reflection of the tree's that surround it. The @LOCATION1 is about thirty yards wide, nobody knows how deep it is because it is impossible to touch the bottom. The main attraction is a cliff-side, which ranges from @NUM1 feet too @NUM2 feet. On the other side of the @LOCATION1, there is a beautiful, golden beach with massive tree's behind it. The hike to @ORGANIZATION1 is about one mile of steep decline, which leads right to the cliff's edge. The @LOCATION1 bed and the gorge is lined up just the way that it is shaded for most of the day, except in the mornings. On this particular day, I was going to bring @CAPS2, @PERSON2, @CAPS3, and @PERSON1. My friend @CAPS2 is a dare-devil. Although he's not very good at athletic things, he is willing to try just about anything. He was also home-schooled until freshman year of high school, so he's also pretty socially awkward and definitely not used to resisting resisting negative peer pressure. On the other hand, I am the kid to do crazy things, but I can pull them off. I was doing gainers off of the cliff's edge that was only about @NUM1 feet off the water. Somehow, @CAPS2 ended up getting pressured into trying one as well. As he was getting mentally prepared for this stunt, we all gave him a count down. @NUM4, @NUM5, @NUM6, @CAPS6! We all shouted at the same time. He ran to the cliff-side, just like I showed him, he jumped out, then brought his knee's to his to his chest. Nothing happened! That was the problem, @CAPS2 tucked but he never rotated. He fell like a rock. His back aimed strait at the water. There was what seemed like a @NUM7 second pause between the moment he jumped off the cliff and the moment he smacked the water. His upper back was the first thing to make contact with the water, there was a giant splash, and the sound of a clap almost as loud as a small firecracker. @NUM5 seconds later, @CAPS2 emerged from the water, he was attempting to breathe but no air was entering his lungs. @PERSON2, @CAPS3, @PERSON1, and I were all on the shore of the beach across the lake! Simultaneously, we looked at each other, nobody was laughing, everyone looked worried. All at once we booked it into the water. It was about a @NUM9 yard swim to get all the way to @CAPS2. I was the first one there. He was panting by then, but he was still in an intense state of panic. I stayed away from him until @PERSON1 got there. @PERSON1 is almost 6'@NUM7 and @NUM11 pounds, so he grabbed @CAPS2 around the torso first. I grabbed his legs, when @CAPS3 and @PERSON2 finally got there they took hold of his arms. We all pulled him to the beach where he could safely put his feet on dry land. Who knows what would have happened if the panicked @CAPS2 would have made it to the beach all by himself. Although, it was kind of @CAPS18 fault for pressuring him in the first place. After almost @NUM5 hours of basking in the in the sun and calming down, the sun started setting behind the gorge, there were shadows closing in on us from the shoreline. It was only @NUM5 @LOCATION2. We decided to explore down the @LOCATION1 a little bit, also to find some more sunshine. We all stood up and noticed that @CAPS2's entire backside was purple! Not only because of his ginger skin, but the impact on the water created quite the contusion. Everyone except @CAPS2 saw it and busted out laughing at the memory of what had previously just happened. @CAPS2 looked behind him and saw his discolored back and couldn'@CAPS3 hold back bursts of laughter. Laughter was coming from everyone. This was the first time that @CAPS2, @CAPS3, @PERSON2, @PERSON1, and I had ever hung out. Laughter was what brought us together. Now we share @CAPS18 @LOCATION1 spot with all of @CAPS18 own other friends but nothing sticks out to me like that day did. To this day we all still reminisce about that hot @DATE1 day at @ORGANIZATION1 when @CAPS2 attempted a gainer off the cliff. ""Laughter is the shortest distance between two (or five) people."" " 22 20 42 4 4 4 4 4 5 4 4 4 4 4 4 +21613 8 " Before my best friend moved away, we would stay up at night just laughing for no reason at all. I don't know what would get us started, but it would not stop until our stomachs hurt so bad from laughing that we just fell asleep. On these nights, her mom would come in around @TIME1 and ask us nicely to please quiet down, which just made us laugh more. When we are together, it is quite dangerous to be around. We have gotten so close that we are practically sisters in a way. Laughter is important in all of my relationships. I grew up in a large family where laughter is key, and positive attitudes were expected. Over the @DATE1, @CAPS1 and I work together, so we have lots of time to get our thinking on the same track. If we are on a short car ride and we want to go somewhere, we make it happen. We are very good at manipulating our elders, a skill acquired from years of practicing on @CAPS2. All it takes is one look to see what the other is plotting, then a laugh will follow, letting the manipulated know that it is doomed, or very soon to be. Our schemes are generally harmless, possibly just a little side ache from being tickled too hard. It does not help that we are both small, strong, and packed full of energy, just waiting for the right person to come along. @CAPS1 and I find ways to stir up mischief all around us, whether it be jumping out from behind corners or taking the manager's keys. When I go somewhere, I am generally aiming for positive places with an upbeat atmosphere and people that make me happy. I dislike and avoid places I don't enjoy, I am one to make jokes or be sarcastic when things are too quiet or too serious. Serious environments intimidate me, @CAPS6 are out of my comfort zone. Laughter brings people together, and it lightens people's moods. Nobody likes the awkward situations where no one is saying anything, so I generally will break the silence with a blond joke or something. I was flying home to @ORGANIZATION2 from @LOCATION3, @CAPS3 and met a couple great people on the way. When I boarded the plane I looked around for a place to sit then decided on the seat between an elderly woman and a man who resembled my father (I was alone on the flight). I thought, for the next hour I will be with these people, so I had better make it something to remember. The man had helped me get my carry-on into the overhead storage, which was very nice of him. The elderly woman and I started talking, and the subject of horses came up, and when horses come up in conversion, @CAPS6 are usually paired with lots of falling stories. She talked about this @CAPS4 horse called @CAPS4 @CAPS5, how he had a mind of his own, and how he would do things his way. The problem with horses is this: @CAPS6 know that @CAPS6 are a slight deal bigger than us, and can really do as @CAPS6 please, but most choose to listen as @CAPS6 don't like to be corrected. I told about my first few rides, and how I didn't know much besides how to steer the massive animal beneath me. Before we knew it, we were landing in @LOCATION1, and my new friends got off the plane. When my plane landed in @LOCATION1, I figured I would be flying to @ORGANIZATION2 sitting alone. After a few minutes, a teenage girl got on and sat next to me. The first thing she did was offer me a piece of gum, which I accepted. The first bit of the ride was quiet, but after awhile the crying baby got annoying to listen to so we started talking. She was flying to @LOCATION2 to her dad's house. We talked about our families and hobbies, and had a good time. After we flew into @ORGANIZATION1, I welcomed myself back home, I was back in the eternal rain state, and couldn't see anything besides clouds out of my window. Laughter is all around us, and there are always things to laugh about, look on the bright side of life. People are more attracted to those who can make them laugh, so get a sense of humor and you will be in good company. Giggles and smiles make the world go around, so keep laughing. " 20 19 40 40 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 +21615 8 " @ORGANIZATION1 @DATE1 for my @CAPS1 birthday we went to @ORGANIZATION1 for a week, @CAPS16 was so much fun when we got there but the drive was not fun at all. When we got to the house that @TIME1 is was so beautiful the snow was falling and @CAPS16 was coming down so hard @CAPS16 looked like white cotton balls and the snow on the house was just amazingly marvelous I mean @CAPS16 seriously looked like @CAPS16 could have belonged in a story book as a princess castle. When we got in the house @CAPS16 was really relaxed and nobody really wanted to do anything we all pretty much fell asleep on the couch. The next morning when we woke up we were all eating breakfast and watching the snow @DATE2, there was a knock on the door, so of course I had to @CAPS9 get @CAPS16 because my @CAPS17 was ""too tired"" so i got up and went and opened the the door and three huge boys came in and picked me up now at first i was like ""@CAPS2 who are these boys?"" but then after they took their hoods off i noticed @CAPS16 was my cousin @PERSON1, his best friend @PERSON2 and his other friend @CAPS3. So they carried me back to the table and sat me down and @CAPS16 was funny because my whole @CAPS17 was laughing so hard they couldn't breathe and i still had a horrified look on my face. They yelled""@CAPS4"" and then went out back and started building snow ramps to snowboard off of. So i got dressed and went out back with them and at first they were like ""@CAPS5 great she is out here"". And they usually give me a lot of attention but they weren't so i decided i needed more attention so when they weren't looking i went and sat down and the snowboard ramp the had built and of course @PERSON2 knew why i was doing @CAPS16 but @CAPS3 and @PERSON1 were still clueless so of course they told me to get off but i told them ""@CAPS7"" and that irritated them so @PERSON1 said ""@CAPS8 girl if you don't move i am going to jump over you"", well of course i was super mad at this point and wanted to see if he would actually do @CAPS16 so i told him ""@CAPS9 ahead"" @PERSON1 started to @CAPS9 but then @PERSON2 grabbed him,@CAPS10 him off the snowboard and started yelling at him @CAPS11 the time the whole argument was over, witch @CAPS11 the way lasted almost the whole day. I went to bed @TIME1 and @PERSON1@NUM1 and @CAPS3 went to the bar and the next morning I was told to sleep in but i was woken up at seven o'clock @CAPS11 @PERSON2 and @CAPS3 screaming at @PERSON1 to get up but they didn't get him up they got me up I was so mad I felt like a mama bear who just got woken up in the middle of hibernation. @CAPS16 was so irritating to be a house with three hungover twenty-one @DATE1 old's but i had fun anyways, That @TIME1 they were not home @CAPS14 god but with them not there is was peace and quiet so we played @CAPS15 and @LOCATION3, @CAPS16 was so much fun we had a blast. The next morning wasn't all that fun because we had another @CAPS17, @CAPS18 us. I swear i was so irritated I wanted to pounce on them like and angry tiger getting ready to catch her prey. So i tried to stay away as much as possible, witch was kind of hard because they all love me but i just decided to lock myself in my room for the day to avoid them, @CAPS16 kind of sucked but @CAPS16 was a lot better than having them yell in my ear every five seconds. The day after we cleaned and started getting ready to leave, @CAPS16 was not fun at all but my @CAPS17 made sure i was cleaning and we ate three meals and after every meal we cleaned again but that @TIME1 we went to bed and you didn't hear a peep out of anybody because we were so tired but the next morning we left at seven o'clock and started driving back to @LOCATION2 @CAPS16 was so fun being at @LOCATION1 we have made @CAPS16 a tradition but we weren't able to @CAPS9 this @DATE1 because of winter formal but we are definitely going back this @DATE1 and we will have twice as much fun as we did two ears ago!" 15 17 32 3 3 3 3 3 3 4 4 4 4 3 3 +21617 8 " Morose and somnolent, I woke up. I woke up to go to @LOCATION1. Going to @LOCATION1 to watch a few basketball games, I was. Although I was unable to partake in the activity because I was @CAPS1 injured in the previous week of practice. Unfortunately though, I still had to go and support my friends and teammates. It was about @NUM1 o'clock when we all got onto the bus and set off to @LOCATION1. All of my friends were mirthful and talkative; but me on the other hand, I was in a lackadaisical stare. The bus ride seemed to last a whole lifetime; but in two hours we arrived at our destination. @LOCATION1 had a nice school; but we were all about to find that it sometimes resembled a ghost town. The high school seemed lifeless in comparison with other schools we had played at in the past. There was nobody around and not a soul to be heard. We all sat there patiently waiting; then, after maybe five minutes or so a man showed up and led us to the locker rooms. The boys had to wait till the girls were done playing their game; so, we all went and started shooting on one of the auxiliary courts. Although, sadly due to my injury I could not participate in the activity. They were all having so much fun screwing around down there. Just the thought of not being down there with them made me ill. After the girls game we all went to change. After that we all sat there, joking around and waiting for our coach to come in and give us our pre-game pep talk. It seemed like ages before our coach finally came into the locker room. He talked about what we should and shouldn't do in order to get the win. When the game started I was really getting depressed, but I sucked it up and cheered on my team. The first half of the game was great and we were on top. Although the second half wasn't so great. We only scored six points and ended up losing the game by a large margin. My friends tried to be stoical; but I could tell that they were ashamed. Ashamed of their performance in the second half. This once again made me feel sad and depressed. Next, I had no choice but to go and watch two more games in the old, vulgar, and uncomfortable bleachers of @LOCATION1. The first of the two games was a great one; we won by two points. The next game on the other hand, was a very boring one. It seemed to take forever; but the worst of it was the fact that we lost. After that final game I had to wait for my cousin to come out from the locker room. When he did, we went to check out with our coaches; we had to check out in order to ride home with our parents. So off we went; but first we had to get something to eat. Once again, like all the times before we chose to eat at @ORGANIZATION1. We went through the drive through, got our food, then pulled over so we could eat. At first everything seemed right; but then my cousin noticed he didn't receive the @CAPS2 he ordered. So we went in to get the problem solved. Afterwords, we were all kind of joking about the restaurant not getting the order right; then I took a bite of my burger. It was then that I realized I had received a burger without a patty. I was really upset that @ORGANIZATION1's made such a silly mistake. So once more me and my cousin went in to the restaurant. When told what the problem was they were all just in shock. They couldn't believe what they had done. So after they all settled down they made me another burger. Me and and the family were all having a ball about the events at the @ORGANIZATION1. It was a great trip home fillled with lots of fun and laughter; which was not what me, my cousin, or anybody else expected.So in the end of my once gloomy day, I found myself stricken with laughter." 18 18 36 4 4 4 4 4 3 4 4 4 4 4 3 +21618 8 " A while back my mom had decided to send me to @DATE3 camp. When I heard this I was pretty upset, @CAPS1 I wouldn't know anyone there. Before camp started I did all I could to let my mom not let me go. After a while of that I knew I wouldn't get my way, and before I knew it I was off to camp. When I got to the place that was taking us to camp, there wasn't a lot of people there. When I got to the camp I was wrong, there was a lot of people that I didn't know. It was extremely scary, but it was to late to go home now. Walking to my cabin was nerve racking, @CAPS1 I didn't know who would be in my cabin. Meeting the girls in my cabin was awkward, mainly @CAPS1 we didn't know each other and secondly our counselor was so weird. Right after meeting each other our counselor made all of us play a game of @CAPS2. Playing @CAPS2 at first with strangers was strange, but after a while we started laughing. We played and laughed for hours and hours, until it was time for lunch. Lunch with the girls was not so scary since we had so muh fun playing @CAPS2, but we still didn't really know each other. When lunch was over the first thing we did was play @CAPS2, the more we laughed and had fun the more and more we started to get to know each other. All @DATE1 we played the silly little game of @CAPS2, and just giggled and laughed. @DATE2 came along the second @DATE1 of camp and all of us had almost become friend by just laughing and playing @CAPS2. We played it so much the first @DATE1 that we just called it ""@CAPS6 @CAPS2"" instead of @CAPS2. Like other things we got tired of @CAPS2 and went our separate ways for free time. Everyone agreed that free time that @DATE1 was so boring so we played @CAPS2 again. Laughing and laughing till our stomachs hurt from laughing so hard, that I think was the @DATE1 all of us really became friends. We had become thick as thieves in just a couple of days, we did everything together. We talked,we swam, we played tennis, and most importantly we laughed together. Camp was not what I expected it to be, it was way better. All the girls in my cabin had become friends so fast that it was strange to other people,not realy but it was kind of weird to become best friends in just a couple of days. Camp was flying by for us and before we all knew it it was almost the @DATE1. Things were so good, until one of us got sick. I was the one who ended up sick, it was horrible I stayed in bed all @DATE1 missing everything that was going on. Even worse I had almost lost my voice, laying in bed without laughing with my friends and having fun was just torture. @DATE4 the @DATE1 of camp was fastly approaching, and all I could do was stay in bed. @DATE4 was there, but it was a relief when I could talk again. The rest of the @DATE1 @DATE1 of camp I could be out of bed and enjoying camp. When @DATE1 time was ending and evening was arriving, we had our cabin party. Our party was so much fun, even though we had to stay inside our cabin. We ate all of our treats we saved from the concession stand, and all of the treats our counselor brought. It was almost @TIME1 so we had to go to bed soon, @CAPS1 we where leaving in the @TIME2. There was one @DATE1 thing we had to do, and it was one @DATE1 game of @CAPS2. We played for about in hour, @CAPS1 another counselor had to come tell us to be quiet. Looking back at my first year of camp, I always remember how all of us became friends. We still talk about it every year at camp, and we do still play @CAPS2. That year at camp I think is one at my favorite memories, @CAPS1 we all became friends by just playing @CAPS2 and laughing together." 20 19 40 40 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 +21619 8 I dont like computers 5 5 10 1 1 1 1 1 1 1 1 1 1 1 1 +21620 8 " Everyone knows how important a laugh can be. Everyone has a different laugh, it can be powerful and moving or devastating and hurtful. Someone said, ""Laughter is the shortest distance between two people."" I agree with this statement, everyone has a different laugh and and laughs for many different reasons, laughing is so powerful, someone can make you laugh when your upset or unhappy and they could change everything and how you are feeling. Laughing is a way of connecting with others, you laugh when you are having a good time, are hurt and need someone. Laughs are surprising you never know when your going to laugh and for what, it could be from a little joke or a funny elaborate story being told to you. Over the @DATE1 I was moving back to @PERSON1 from @LOCATION1, and I was very nervous and scared to be the new kid again. Even though I knew some people from when I used to live here, nothing was going to change the fact that I was the new kid. Not too long after I moved I got reconnected with some old friends of mine that I have known since the second grade when I lived here before. My friends and I are always having a good time, laughing, and just being crazy. All of us girls have been through a lot the past few years and that @DATE1, and it was nice to see them and talk to them again after all that has happened to us, we have all gone of and done our own thing and became friends with different people, but we are still close friends after all this time. It was good to spend time with them and see how much they have changed. We have all changed a lot in the past few years. And we @MONTH1 have fought caused some drama and some of us moved away, but we have been through almost everything together since we were little kids and probably will still be friends through out high school and collage. @DATE1 was almost over and school would be starting again me and three other friends of mine wanted to something all together one last time before school started. So we planed to have one big sleepover. one of the friends lives in @LOCATION2, and she was able to come out to @PERSON1 and have this sleepover with us. It was just like second grade again, I don't think I have ever laughed as hard in my life. Not long after we all got there, we were laughing, talking, and having a great time. That night we were all sleeping over, we were thinking of something fun to do, and of my friends decided it would be fun to go @CAPS1'ing, so we asked her mom if it was @CAPS2 and she said as long as we don't go to far way from home and we have our phones on us in case we need to call her and have her pick us up. It was still a little too early for @CAPS1'ing, so until we waited for it to get dark, we walked to the store down the street from her house and bought bags and bags of toilet paper. It still wasn't dark or late enough to go, so we watched some movies, went to the mall, and stuck our feet in her hot tub. I was nice being back and being with all my old friends again. We stayed up and finally it was dark and late, so we put on all of the black clothes we owned and disguised our selves so no would could recognize us, we looked pretty convincing. We put on big jackets so we could hide the toilet paper in our jackets and if someone saw us walking they wouldn't see any of the toilet paper. We tried to be quit and sneak up on houses, but it dint work, we were so loud, we could not stop talking or laughing. We were being so loud we couldn't hear some other kids out late on their bikes also. They got closer and close and we realized it was some other guy friends we know from school, they got board and went for a bike ride. They helped us @CAPS1 some houses and it was getting really late, so we decided to head back. This @DATE1 was one I will never forget, we had so much fun and we agreed we have never laughed so much for anything. It was a hard year for all of us and it was great to see some familiar faces and spend time with some true friends like we used to." 18 15 33 4 4 4 4 4 3 3 3 4 4 3 3 +21621 8 " Laughter is an important part of my family. We laugh together, we breathe together, and we'll die together. When it comes to a family the most important thing that brings @CAPS1 as one besides having fun, loving each other, and spending quality time together is what makes @CAPS1 laugh and what keeps @CAPS1 close. For me, my siblings, and parents we always have to have a good time and laugh, whether one is upset or the other is mad. It doesn't matter what the situation is @CAPS3's always a time where we have the best times even @CAPS2 points when one of us doesn't want to see one another. I was spending an adventurous day with one of my close friends, @LOCATION1 and we decided it was time to go home and get ready so I could go spend the night @CAPS2 her house. When @LOCATION1 and I stepped in my house @CAPS3 was so much commotion going on and yelling that we decided maybe we should sit down and figure out what was going on. As we sat down we began to bust up laughing @CAPS2 the sight of my step dad, @PERSON1 yelling @CAPS2 my oldest sister, @ORGANIZATION1. We didn't know what had just happened, but we really wanted to find out. ""I can't believe @CAPS1 just can't go next door to @PERSON2's house and ask for toilet paper when I've been sitting anxiously on the toilet with hope @CAPS1 would bring me toilet paper for an hour. Yet, they came to our house and asked for our plunger which is far more embarrassing,"" @PERSON1 said. As soon as those words violently came out of his mouth we started cracking up laughing. It felt like my stomach was tightening so much that I couldn't breathe. With as much attitude as @CAPS1 can put in your tone of voice, @ORGANIZATION1 had said, ""@CAPS1 don't need toilet paper to clean yourself with! @CAPS1 could have easily hopped in the shower and used the shower head to wash off the poop!"" @CAPS2 that point @CAPS3 was no going back @CAPS2 what she had said. My step dad was furious that she would even say such a thing. Without any hesitation @CAPS6 quickly picked up the phone and dialed my mothers number. Waiting, and waiting for her to pick up. Suddenly, @LOCATION1 and I heard a voice on the phone. @PERSON1 began screaming telling my mom about the situation. It got to a point where @CAPS6 said some words that @CAPS6 shouldn't have said. As the words rolled off his tongue @CAPS6 began to stutter. @CAPS6 spoke, ""@CAPS3 was no toilet paper and @ORGANIZATION1 wouldn't go and grab me some from @PERSON2's house. Unfortunately, I had to get up, get my hand wet, and wash my hands after I wiped my butt with my own hand."" @CAPS3 was no stopping us from laughing as hard as we could. I had never heard of something so disgusting that made me want to throw up all over our leather couches. @CAPS6 was so anxious to take my sister's phone away that @CAPS6 immediately asked for it before confronting my mother about it. @CAPS6 didn't care even if my mom told him that @CAPS6 couldn't take it away. @CAPS6 wanted possession of it so @CAPS6 knew how my sister would feel. Not only did @CAPS6 take away her phone, but @CAPS6 took away her right to use toilet paper after using the bathroom. I don't know how long I laughed over that, but it felt like I was going to pee all over myself. As @LOCATION1 and I continued laughing @CAPS6 ran up the stairs as fast as @CAPS6 could rummaging through all the bathrooms in our house to get every last little square of toilet paper @CAPS3 was. Sad part was @CAPS6 even took off the shower head so that my sister wouldn't be able to use that also to clean herself. My mother got home and @CAPS3 was nothing to say. @CAPS6 was so embarrassed that we had heard that @CAPS6 had wiped his butt with his hand. Not only that, but i had put the story as my status on @CAPS5 and @CAPS6 had saw. I didn't mention any names besides @LOCATION1 and I's, but the fact @CAPS6 knew the story was about him made his cheeks turn as red as a cherry. @PERSON1 began to wonder. My sister had said @CAPS3 was no toilet paper and when @CAPS6 asked if @CAPS3 was napkins she also said, ""no."" @CAPS6 started looking through cabinets and soon found napkins. @CAPS6 was so mad, but @CAPS2 the same time laughing really hard. @CAPS6 felt like @CAPS6 should look for the brighter side of the situation. A week has gone by and my step dad, @PERSON1 still hasn't put one roll of toilet paper in the bathroom. @CAPS6 said, ""@CAPS1 @MONTH1 think it's funny when it happens to me, but it'll be funny when @CAPS1 don't have any toilet paper.""" 24 20 44 5 4 5 5 5 5 4 4 4 4 4 4 +21623 8 " laughter is an important part of any kind of relationship like your family, friends, or your other half. Now let me tell you why it is important, there was two weeks left of school and my family had planned out to go camping for a week. Finally school was over and as we were all saying our good byes and see you next year to all our friends. My parents came to pick us up in what my dad called an ""@CAPS1"" that looked like an ordinary school bus. We were now off on our way to go to our camping site. Now you would think that going camping would be for bringing the family together and having fun. But no my brothers were locked into their video games, my mom and sister were both on their phones while my dad was driving. I even asked them why they brought electronic devices and all i got for an answer was a ""because"". Finally i just decided to let it go and read until we got to our camp site. Finally we arrived and the first thing we did was unload the @CAPS1 and set everything up so we could get comfortable. The same night we were all by the toasty camp fire, and as usual my family was being entertained by there video games, cellphones or everything that they thought was needed out here in the wilderness. As i sat by the fire i gazed at the stars above my head and started to wonder if my family was always going to be like this and never be a close, fun or even exciting family. The next morning after we were all awake my parents were making breakfast, and my mom had asked me if i remembered to close the @CAPS1 door before going to sleep in my tent, and i said no i forgot knowing how my mom was she got a little mad and asked my sister to go close it. As she walked up to the door she heard noises and went inside to see what it was. Before i could even blink i saw her sprinting out of the @CAPS1 and screaming off the top of her lungs. Right behind her were a group or raccoons chasing her! My dad trying to be a hero runs towards them trying to scare them off, but fails and gets bit on his butt. Luckily my dad was @CAPS5 but while we were all distracted the raccoons had left with our food. My dad was so mad that he kicked the only log that kept the @CAPS1 from rolling away. And it starts moving right away, we all watch it go down the hill until it rode into a lake. Slowly it started to disappear once it was completely out of sight we all went to the lake staring at the large lake that devoured out @CAPS1 wondering what we were going to do with no vehicle. As we were heading back to the camp site all you could hear for miles was my family arguing. not paying attention of whats in front of them my mom fell in to a mud pit and my dad tried to get her out but slipped in too. Once they got out they looked so outraged and looked as if they were ready to call out mother nature to a fight. Once we made it back to the camp site we sat down and i took a good look at each one of us. Our clothes were all wet and covered with mud, we were all hungry and not really in the best mood. I sat there and said dad don't get even more mad but but i thought it was pretty funny when the raccoon bit your butt, and i showed him the picture i took when it happened. My family then all looked at it and started laughing and laughing we all suddenly started talking and actually acting like a family! We decided to just walk home and hitch hike, we walked down the road for a good hour until we got a ride from a local trucker we saw down the road. Once we got home we talked more, we spent more time together we were really like the perfect family i wished i could have. That camping trip changed us all and I'm happy that it did because now me and my family are closer than ever! And that's how I can prove that laughter is an important part of any relationship." 18 17 35 4 4 4 4 4 3 4 4 4 3 3 3 +21624 8 "Sometime ago on a hot @DATE1 day my @NUM1 ,@PERSON3 ,@PERSON1, @PERSON4 ,and @PERSON2. Wanted to do something that could give us relief from the extream heat. So we sat down and talked to find out what we could do and were we wanted to go. So @PERSON7 had a few ideas one was go over to @LOCATION3 house were there was an air conditioning his other idea was to walk @NUM2 miles to @CAPS1 swim hole, but the only reason he wanted to go was because his girlfriend would be there,really know one hates @CAPS1 but no body wanted to walk that far in the heat ,then walk back to @CAPS3 @NUM3 had three ideas number one of his ideas was walk to his uncles house @NUM4 miles away to see if we could catch a ride to @CAPS4 @CAPS5, his second idea was to go down to our friends @PERSON5's house and go swim in his built in pool, his third idea was to to go in the back yard i spray our selves with the hose. @PERSON1 had two ideas one was to see if he could get his mom to lend him some money to fill his tank and to pay her back,his other idea was to drive to the coast and camp there for a few days if he got the money from his mom.Byran had three ghetto ideas one was to go jump in the water fountain by the @ORGANIZATION1 then quickly get out before we got in trouble, second idea was to go over to the @LOCATION4...A.K.A. the @CAPS6 @CAPS7 and hop over the fence and then he was going to let us in, his third idea was to go over to the old people homes and swim in there pool there because he said he knew a @NUM5 had three ideas one was to walk a mile to to the forks , second was to walk down to the creek @NUM4 miles away third idea was to get a whole bunch of fans and run them threw out @CAPS3 room. I was with @PERSON1 on his ideas pf going to the coast and camping and what not because i love to camp at the beach it smells all pretty most of the time there is really fine chicks so yeah i was way down to go to the coast for real.So we sat and we waited and waited and waited for @PERSON1's mom to call us finally his phone rings we were all excited but it was just his grandma calling him we were bummed all hell. so there we were once again waiting for what seem to be for ever for a phone call by @ORGANIZATION3's @NUM7 phone ring we didn't have hopes up this time we figured it was some one else but guess what this time it actually was @PERSON1's mom she said that she'll lend him the money but us boys had to do something for her she wanted us to go down to the bimor and pick @CAPS9 from work then buy her some cigars for @PERSON1's grandpa so we did.After were done the earn run we packed our clothes,blankets,sleeping bag,food,camping supplies, and wood.After a good hour it was @NUM4 @CAPS10.M. we went to the chevron and fueled @PERSON1 tank then we were off to @ORGANIZATION2 city @LOCATION1 the drive to almost two hours it seemed but what a beautiful ride long tunnels beautiful river , mountains oh and who could forget the beautiful tall red woods of @LOCATION1 and the smell of that forest you can smell it through almost any car.I thought it was funny when we got close to the coast the temperature dropped like @NUM9 degrees @CAPS11 and ever-body was in a good mood and could smell the coastal air.When we got to the camp site we ran out to the beach as jumped in people look at us like we were crazy or something because we swam like @NUM10 feet out in @NUM9 degree water it was funny because people wouldn't stop talking but then we found out we were swimming a red zone were there has been rip tide advisories so after that we were really @LOCATION2 and we realizes we had no propane so we had to go into to town and get propane for our stove so we did then we ate the best hot dogs ever dipped in @ORGANIZATION4 honey it was delicious.We stayed at the coast for a night then @PERSON6 got called in to go to work so we had to leave and go back to the heat in @CAPS12 @CAPS6 @CAPS13 it was a way way big drag and it was so hot getting back we pretty upset at the weather but when we got back @CAPS3 mom wanted to go out to the river so in the end it was all good." 17 15 30 30 3 3 4 4 5 3 3 3 4 4 3 3 3 3 4 4 3 3 +21626 8 " In most stories mothers and daughters are either enemies or friends, in @CAPS13 story however, we are both enemies and friends well; at one point we were that way. Not @CAPS4 much anymore. I'm sixteen now and she's forty and were just friends, I mean she's still @CAPS13 mom and she still can punish me as her daughter as she pleases but we work it all out and laugh it off. Approximately seven months ago @CAPS13 mom moved from @LOCATION4 to @LOCATION1, @LOCATION2 I chose to stay behind to finish high school with @CAPS13 current friends. When she moved, the way we acted with eachother would be different, and it is, we act completely different with each other we now cherish the little time we have and I'll explain how. At the beginning since as early as I can remember, @CAPS13 mother and I would always fight over the dumbest things, we never got along. And here is what I think the reason is. I'm her daughter I was born just like her, her face, hair, eyes, everything, even @CAPS13 attitude and the sound of @CAPS13 laugh. She's stubborn I'm stubborn and we both like to argue, not really with other people just with us two, but if we were to go into business together things would get done, say if we became lawyers we'd work great together because I inherited her work ethic and we both like to argue valid points. But as I grew up a bit more and we experienced traumatic times together we began to see the brighter side of life, and that just having each other around is enough to keep us from falling apart. Events in our life that we went through brought us together @CAPS1 it was all finished and done. What I mean by that, is we stopped arguing, we comforted each other when we needed comfort, we became friends, and I believe laughter had a lot to do with it. @CAPS13 mom, her name by the way is @LOCATION5, once said ""Laughter brings two people together as a whole, the one thing that human beings all know how to do is laugh and its something we can all share."" @CAPS1 our life had settled down and we were able to live normal, like with a house and lights and a dog with a yard, things were good between us we still fought often but never as it used to be. Which would consist of throwing objects across the room at each other, like I said things are better now. We one night discovered, that laughter is something we both use to block out the things we no longer wanted to haunt us. I love to sing, @CAPS13 mother and @CAPS11 had me grow up around music like; The @CAPS2, @LOCATION3, @PERSON2, @PERSON4, and many others but we would sing a song together something that only the two of us shared and it was ""@CAPS3're @CAPS4 @CAPS5"" by @PERSON3. But we would sing that specific song in the car, we would sing it in front of our family and @CAPS1 the moment was over we would laugh about it, because for once was something that only @CAPS13 mom and I shared and it was special. Laughter played a big part of who we are as people today. There are always things people do together, @CAPS13 mom grew up in a strict @CAPS6 @CAPS7 home, she also had four sister's and @CAPS8 was a very serious matter. @CAPS13 mom and I went to @CAPS8 together and we always tried not to take life @CAPS4 seriously all the time, @CAPS4 while in @CAPS8 we would start @CAPS15 about some kind of ugly bug on the wall, or she would laugh at me because I would drop the prayer book on @CAPS13 foot, but we would always laugh."" @CAPS10 it or I'll bring @CAPS11 @CAPS12 over here and @CAPS3'll have to take an extra religion class.""@CAPS13 mom would say as I'm poking her or making fun of her and i would say "" @CAPS14 wont make me take an extra class I'll tell him @CAPS3 started it."" That's who @CAPS13 mom and I were and were still like that. Even though she moved to @LOCATION2 for a new job, and @CAPS4 she could see the man she loves more often than every six months, we still talk, and like I said we laugh when we cry and boy do we cry a lot, especially on the phone when I tell her I miss her. That is the story of @CAPS13 mother and the laughter that we have shared for the last sixteen years, and to quote @PERSON1 ""@CAPS15 is the best calorie burner."" I do believe that and @CAPS13 mom and I see it as that, @CAPS15 is the one thing we can do when we don't feel @CAPS4 hot or don't feel like ourselves, @CAPS4 yes she is correct when she states that laughter brings two people together, and it's positively true, we have a better relationship than ever." 17 18 35 4 3 4 4 4 3 4 4 4 4 4 3 +21628 8 " I never understood the meaning laughter is the shortest distance between two people, tell I dated @PERSON2. We started to date in the @NUM1 grade. @CAPS6 indeed, you @MONTH1 think it was puppy love, @CAPS4 i still think to this day it was real true love. We lived about an hour a half an hour away from each other and only got to see each other two or three times a month, @CAPS4 it was still the best time of my life, with all the good and fun times we had. We met through my ex boyfriend, and his best friend @PERSON1 @CAPS1. @PERSON1 went to school with me and @PERSON1's mom and nicks mom were best friends, so they grew up together and were best friends as well. To sum up how we met is, I was dating @PERSON1 and was supposed to go to the movies with him and his friend, @CAPS4 @PERSON1 didn't show so I was stuck with @PERSON2 and we hit it off right after that. The more time we spent together the more times we laughed, had fun and as well as that, made memories to last a life time. If we couldn't see each other we would talk on the phone for hours. (and when i say hours i mean like, @NUM2 hours.) or we would text nonstop. we would make funny jokes, talk crap about people we hated, talk crap about family, and last @CAPS4 not least make fun of each other. we would just have so many good time just talking and laughing our time away. After about @NUM2 months of dating, things went for the worst."" I just cant do this long distance thing anymore"" said @PERSON2."" @CAPS2? @CAPS2 cant we just work things out?"" i said with tears starting to come out."""" @CAPS3 it just isn't far to us."" @PERSON2 said with hesitance in his voice."" @CAPS4 think about all the good times we had? all the laughs and fun times we had?"" I started to smile, just thinking about all those times we had."" @CAPS5 yeah, @CAPS4 is that far to us?"" @PERSON2 Said."" @CAPS6 it is, as long as we have each other nothing it to bad for us. hehe"" I said knowing that he was changing his mind slowly. "" @CAPS7 now i know i need you."" he said laughing in the back ground.After that night everything was good, for a while. we had fights like that on and off and thing with my family and his family made it vary hard for us to be together. @CAPS4 we did it for a year and a half. @CAPS4 even after a year and a half of our life's we still couldn't make it. not ever laughter or good time kept us together. @CAPS4 it did keep us together for that long. Laughter was a big impact in that relationship and i thank god that it was.Even to this vary day, i can still look back and laugh at all the good and funny times we had together.Laughter can keep two people that leave from a far together, @CAPS4 the real question is how long can that laughter keep them together?For a day?A year?Three years?Or maybe a whole life time?Only time could tell." 15 17 32 3 3 4 3 3 3 4 3 4 4 4 3 +21629 8 "When you laugh, is @CAPS5 out of habit, or is @CAPS1 cause? What are the causes for laughing? Is @CAPS1 even such a thing as a ""cause"" for laughter? I'm sure that if you were to get a scientist's opinion, you would be given an in-depth, technical explanation for the cause of laughter; but does that mean that laughing is simply a message sent from the brain to the required muscles? Certainly not! The true cause is what was said or done to cause the brain to send the message to the required muscles to physically make a person laugh. So what makes people laugh? A funny joke, a senseless action, a misunderstanding? @CAPS5 can be anything! Without a doubt, one thing that makes people laugh is having a delightful time with a friend or two. @DATE1, @CAPS3 older sister @PERSON4 and I unknowingly went out on an adventure. We were headed to @LOCATION2, @LOCATION1 to visit our very best friends, @PERSON2 and @PERSON3, who happened to be almost completely identical to @CAPS3 sister and I in personality; @PERSON2 being like @PERSON4 and @PERSON3 being like me. Now, whenever the four of us got together, @CAPS1 was no telling what kind of humorous and insane memories we would all go home with; all we knew was that hanging out together @CAPS8 failed to brighten up our days and put a smile on our faces. This particular day, both @PERSON3 and I were in desperate need of each other's full attention and up-lifting spirits. She and I had both been going through a rough patch with some friends at our schools (oddly enough, we were both having friendship issues with someone named @PERSON1, and we didn't even go to the same school), so after some discussion between both of our sets of parents, they agreed to have @PERSON2 pick up @LOCATION3, @PERSON4 pick me up, and well all meet somewhere to take our minds off the antagonizing situations were were both suffering through. We decided to meet in @LOCATION2, at @PERSON2 and @PERSON3's house. When we pulled into their drive way, I could feel @CAPS3 body being filled with excitement, as if the emotion was trapped inside some kind of storage container inside of me that was too small to hold all the contents that were being held inside. Before the car engine was completely turned off, @CAPS3 seat belt was off and I was half-way out of the car door. I slammed @CAPS5 shut once @CAPS3 body had slithered its way free and ran for the door. To @CAPS3 surprise, @CAPS5 was unlocked! I pushed @CAPS5 open obnoxiously yelling, ""I'm heeeeeeeereeeeeeee!"" @CAPS1 was a cry of laughter that filled the room. I hugged both of them in one tight squeeze, and almost as if @PERSON3 and I had our very next move planned out, we immediately began chattering about the incidents that had occured that day as we took a seat on the couch. All that could be heard was, ""@CAPS2 @CAPS3 @CAPS4! I have to tell you what happened today!"" and "" I can't believe she said that!"" or ""...and she said...and then I was like...so then she says...""@CAPS5 was just as if we had taken up the life of a drama-ridden teen straight out of the movies. Things were going as they normally would have; @PERSON2 and @PERSON4 dwelling close to @PERSON3 and I in the dining room locatated at the far end of the couch where she and I sat, still completely involved in our similar freshman-year-of-high school worlds. They were completely immersed in their own conversations of old memories we'd had together. All of a sudden @PERSON2 shouts, ""@CAPS2! @PERSON3 and I baked you brownies!"" @CAPS7 off guard by his intejection, we all once again fell into laughter, although this time, making our way toward the kitchen in search of said brownies. When we arrived, @CAPS1 sat a pan of brownies on the middle counter. @PERSON3 uncovered @CAPS5 and gave us each a napkin with which a brownie sat on top. We stood together, leaning against the tile counters, enjoying our brownies and the company of one another. Suddenly, @CAPS1 was a dull moment; no one was saying anything. As if to fill the silence before a timer ran out, @PERSON2 blurted out, ""@PERSON4, do you wear a wig?"" @CAPS8 in our lives have any of us laughed as hard as we did at that moment. @PERSON3 fell to the ground, @PERSON2 and @PERSON4 were leaning upon each other for support to keep from falling, and I was completely doubled over, trying desperately to keep the sip of milk I had just taken inside of @CAPS3 mouth. Minutes creeped by, and we were still laughing at the off-key remark. To this day, @PERSON4 and I remenise upon that afternoon and the laughter that was shared upon us and our very, very best friends. " 20 26 40 40 4 4 4 4 4 4 6 5 5 5 5 5 4 4 4 4 4 4 +21630 8 " Trippin' on fences I am @NUM1 years young, and in those short @NUM1 years, all I can ever remember, is laughing hysterically. Whether it was about something stupid I did, or my best friend doing something stupid, or most of the time when we got together and did something outrageous. Someone once said ""Laughter is the shortest distance between two people"". With my best friend @ORGANIZATION2 and I, that's exactly the case. I always get a good ab workout whenever I'm with her, because I'm always bursting with laughter. It was my @NUM3 grade year at @ORGANIZATION1 here in @LOCATION1, @ORGANIZATION3. I was hanging out with my best friend @ORGANIZATION2 during our lunch break outside. I was showing her my new jeans I'd just gotten the day before, at @LOCATION2. I was also telling her about a note that had been passed to me, by a boy who had apparently had a crush on me for sometime, this boy had also asked me out on the note. @ORGANIZATION2 had asked me if she could see it, when I handed it over to her, all of a sudden, she chucked the note over the fence. Clearly, the guy didn't have @ORGANIZATION2's approval. I couldn't just leave the guy hanging without an answer, especially when at the time, I liked him back. I begged @ORGANIZATION2 to give me my note back, but she refused. What was I supposed to do, just let an unanswered note lay on the other side of the fence? No. The only solution was to hop over the fence and grab it. So I, in my new jeans might I add, practically straddled the fence, and ripped a big hole on the inner side of my thigh, in my brand new jeans. I was so mad. I grabbed the note, and climbed back over the fence in my new and improved hobo jeans. On my way back over, I lost my balance, and fell of the fence. I ended up losing the note again and planting head first into a pile of mud and pine cones. What an idiot I was, I'd climbed over that stupid fence, ripped my jeans, biffed it and lost my balance, and lost it again. I was so frustrated with myself, I started laughing. I'm not sure if it was because I was embarrassed or what, but I randomly started cracking up. Then @ORGANIZATION2 started laughing, and when she laughs I laugh, because her laughter is so contagious. Pretty soon, we were both hysterically laughing like a couple of dorks. ""Laughter really was the shortest distance between two people"" that day. Even though I probably should have been mad.... But why do that when @CAPS1 can just laugh about it? That's what life is all about, living. With this silly but funny memory, it'll stay with me forever. Especially now that @ORGANIZATION2 has moved away. It @MONTH1 seem stupid, but it was funny to us. I guess it really was one of those ""@CAPS1 had to be there"" kind of moments. But it reminds me of the good old days with @ORGANIZATION2. It's good to have memories filled with laughter. If @CAPS1 don't, your life can almost feel dull without it. Even if @CAPS1 laugh at just the smallest things in life. That's why to me anyways, ""Laughter is the shortest distance between two people""." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 +21633 8 " Many people believe that laughter can improve your life. Laughing lets out endorphins that give your body energy for daily activities. Relationships are usually better if both the people are happy. Happiness is like shaking up a soda bottle. Happy emotions build up in your body and when shaken, release with an explosion of positive emotions such as laughing. When I was born, my mother said that I was the most chubby baby in the world. As she said this, she laughed, in constant thought that I will eventually become a young adult. I giggled in the backseat of the car as we drove home together. I was taught by my mother, who laughed all the time until her eyes were full of tears, to laugh at every chance I had. Through my years as an infant, I giggled, chuckled, and laughed my way to adolescence. As I moved into adolescence, I was diagnosed with @ORGANIZATION1's @CAPS1, a mild autistic @CAPS1 that has a variation of side effects. Some people who have @ORGANIZATION1's @CAPS1 develop cases where their emotions do not show physically. This case is similar to the physical features of @CAPS3 @CAPS1. My main case with having @ORGANIZATION1's @CAPS1 is that I do not receive all the information given to me at one time. When people tell me a joke that they think is hilarious, I tend to miss the important parts of the joke, which are funny. As the joke comes to an end, everybody around me is laughing, but I am standing there with a blank look on my face. Sometimes I tell people I cannot laugh. Though I say this, I know it is not true. I can laugh, it is just really hard for me to find the right time. Most times, I laugh at a situation that really is not funny and everybody else has a blank gaze on their face. This usually makes me feel embarrassed and I don't feel normal. A lot of people tell me I look expressionless and then try to perk me up, or smile. I don't feel the need to smile, even in happy times in my life. I have not laughed enough, but have been learning in how to make bad situations into great and happy ones. Learning that at any moment I can laugh is important. Even if there is no joke being told, I can laugh. Most people would probably look a me in a weird way, but I wouldn't care because I am the one that feels happiness inside. Laughing relieves stress, makes other people feel good, and allows people with mental disabilities to feel more comfortable in the community they live in. I have finally learned that even with @ORGANIZATION1's @CAPS1, I can laugh just as much as anyone." 20 20 40 4 4 4 4 4 4 4 4 4 4 4 4 diff --git a/nlp/images/EscUpmPolit_p.gif b/nlp/images/EscUpmPolit_p.gif new file mode 100644 index 0000000..a821282 Binary files /dev/null and b/nlp/images/EscUpmPolit_p.gif differ